diff --git a/.cursor/rules/backend-test-conventions.mdc b/.cursor/rules/backend-test-conventions.mdc new file mode 100644 index 00000000..fb7dc504 --- /dev/null +++ b/.cursor/rules/backend-test-conventions.mdc @@ -0,0 +1,63 @@ +--- +description: Backend Python test conventions (pytest) +globs: tests/backend/**/*.py +alwaysApply: false +--- + +# Backend Test Conventions + +## File Location & Naming + +- Place tests under `tests/backend/unit/`, `tests/backend/integration/`, or `tests/backend/contract/`. +- Name files `test_.py` with descriptive snake_case names. +- Shared test data goes in `tests/backend/fixtures/`. + +## File Structure + +```python +"""One-paragraph summary of what is being tested and why. + +Background +---------- +Brief context about the feature or bug fix these tests validate. +""" +from __future__ import annotations + +import pytest + +pytestmark = [pytest.mark.backend] +``` + +## Conventions + +- Always add `pytestmark = [pytest.mark.backend]` at module level. +- Group related tests in classes prefixed with `Test` (e.g. `TestStripImageBlocks`). +- Use `pytest.mark.parametrize` for data-driven tests instead of writing repetitive cases. +- Use `pytest.fixture()` for shared setup; keep fixtures close to where they are used. +- Unit tests must **not** depend on Flask, network, or external services. +- Mock external calls with `unittest.mock.patch` / `MagicMock`; never make real API calls. +- Each test function should verify **one** behavior and have a clear name: `test__`. + +## Running Tests + +- When running pytest, use `-q` (quiet mode) instead of `-v` (verbose mode) for cleaner output. +- **Preferred:** `python -m pytest tests/backend/ -q` +- **Avoid:** `python -m pytest tests/backend/ -v 2>&1` + +## Example + +```python +# ❌ BAD – vague name, no parametrize, no marker +def test_it_works(): + assert sanitize("hello world") == "hello_world" + +# ✅ GOOD +pytestmark = [pytest.mark.backend] + +@pytest.mark.parametrize("raw,expected", [ + ("hello world", "hello_world"), + ("订单明细", "订单明细"), +]) +def test_sanitize_preserves_unicode(raw: str, expected: str) -> None: + assert sanitize(raw) == expected +``` diff --git a/.cursor/rules/error-response-safety.mdc b/.cursor/rules/error-response-safety.mdc new file mode 100644 index 00000000..f2378fbb --- /dev/null +++ b/.cursor/rules/error-response-safety.mdc @@ -0,0 +1,61 @@ +--- +description: Prevent information exposure through exception messages in HTTP responses +globs: py-src/**/*.py +alwaysApply: false +--- + +# Error Response Safety + +Never return raw exception text (`str(e)`, `f"...{e}"`) directly in HTTP responses. +Python exceptions may contain stack traces, file paths, database connection strings, +API keys, or internal IP addresses — all of which are security risks (CWE-209). + +## Rules + +1. **5xx errors** — return a fixed generic message; never expose exception details. +2. **502 errors** — return `"Upstream service unavailable"`; never include upstream error body. +3. **4xx errors** — run `sanitize_error_message(str(e))` so business-validation messages + stay useful while secrets are stripped. +4. **Logging** — always log the full exception server-side (`logger.warning` / `logger.error` + with `exc_info=True` when needed). The client never needs the stack trace. + +## How To + +For Flask route `except` blocks, use `safe_error_response`: + +```python +from data_formulator.security.sanitize import safe_error_response + +except HTTPError as e: + return safe_error_response(e, 502, log_message="Upstream call failed") +except ValueError as e: + return safe_error_response(e, 400, log_message="Invalid input") +except Exception as e: + return safe_error_response(e, 500, log_message="Unexpected error") +``` + +For non-route contexts (generators, background tasks) where a Flask response +cannot be returned, use `sanitize_error_message` directly: + +```python +from data_formulator.security.sanitize import sanitize_error_message + +except Exception as exc: + logger.error("Task failed: %s", exc, exc_info=True) + payload = {"status": "error", "message": sanitize_error_message(str(exc))} +``` + +## Common Mistakes + +```python +# ❌ BAD — raw exception leaks internal details +return jsonify({"message": str(e)}), 500 +return jsonify({"message": f"Failed: {e}"}), 502 + +# ❌ BAD — manual traceback in response +import traceback +return jsonify({"message": traceback.format_exc()}), 500 + +# ✅ GOOD +return safe_error_response(e, 500, log_message="Operation failed") +``` diff --git a/.cursor/rules/frontend-test-conventions.mdc b/.cursor/rules/frontend-test-conventions.mdc new file mode 100644 index 00000000..a9cce5c8 --- /dev/null +++ b/.cursor/rules/frontend-test-conventions.mdc @@ -0,0 +1,64 @@ +--- +description: Frontend TypeScript test conventions (Vitest) +globs: tests/frontend/**/*.test.{ts,tsx} +alwaysApply: false +--- + +# Frontend Test Conventions + +## File Location & Naming + +- Place tests under `tests/frontend/unit/` mirroring the `src/` structure: + - `tests/frontend/unit/data/` → tests for `src/data/` + - `tests/frontend/unit/app/` → tests for `src/app/` + - `tests/frontend/unit/views/` → tests for `src/views/` +- Name files `.test.ts` (or `.test.tsx` for React rendering tests). + +## File Structure + +```typescript +import { describe, it, expect } from 'vitest'; +// For React rendering tests: +// import { render } from '@testing-library/react'; + +import { myFunction } from '../../../../src/'; + +describe('myFunction', () => { + it('should handle ', () => { + expect(myFunction(input)).toBe(expected); + }); +}); +``` + +## Conventions + +- Import `describe`, `it`, `expect` explicitly from `vitest` (globals are enabled but explicit imports improve readability). +- Use `@testing-library/react` and `@testing-library/jest-dom` for component rendering tests. +- Prefer testing **exported pure functions** over testing internal component state. +- When component logic is complex, extract it into an exported helper and test that directly. +- Group tests with `describe` blocks; use section comments (`// --- Null cases ---`) for clarity. +- One assertion per `it` block when possible; name tests as `should `. +- Do **not** import from `node_modules` internals; only use public API. +- Keep tests independent — no shared mutable state between `it` blocks. + +## Example + +```typescript +// ❌ BAD – no describe, vague test name +import { expect, test } from 'vitest'; +test('works', () => { expect(fn(1)).toBe(2); }); + +// ✅ GOOD +import { describe, it, expect } from 'vitest'; +import { checkIsLikelyTextOnlyModel } from '../../../../src/views/DataLoadingThread'; + +describe('checkIsLikelyTextOnlyModel', () => { + it('returns true for deepseek-chat', () => { + expect(checkIsLikelyTextOnlyModel('deepseek-chat')).toBe(true); + }); + + it('returns false for undefined', () => { + expect(checkIsLikelyTextOnlyModel(undefined)).toBe(false); + }); +}); +``` diff --git a/.cursor/rules/i18n-no-hardcoded-strings.mdc b/.cursor/rules/i18n-no-hardcoded-strings.mdc new file mode 100644 index 00000000..365b8c52 --- /dev/null +++ b/.cursor/rules/i18n-no-hardcoded-strings.mdc @@ -0,0 +1,40 @@ +--- +description: No hardcoded UI strings — use i18n translation keys +globs: src/**/*.{ts,tsx} +alwaysApply: false +--- + +# i18n: No Hardcoded UI Strings + +All user-visible text in the frontend MUST go through the i18n system. Never hardcode Chinese, English, or any other language string directly in components. + +## How to Use + +```tsx +import { useTranslation } from 'react-i18next'; + +const { t } = useTranslation(); + +// ✅ GOOD + + + +// ❌ BAD + + + +``` + +## Translation Files + +- English: `src/i18n/locales/en/.json` +- Chinese: `src/i18n/locales/zh/.json` +- Namespaces: `common`, `upload`, `chart`, `model`, `encoding`, `messages`, `navigation` + +When adding a new key, add it to **both** `en` and `zh` locale files. Pick the namespace that fits; create a new namespace only if none applies. + +## What Counts as User-Visible + +Must use `t()`: button labels, tooltips, placeholders, error messages, dialog titles, tab names, toast notifications, table headers, empty-state text. + +May stay hardcoded: log messages (`console.log`), error messages thrown but never displayed, internal constants, CSS class names, test IDs. diff --git a/.cursor/rules/language-injection-conventions.mdc b/.cursor/rules/language-injection-conventions.mdc new file mode 100644 index 00000000..c9473fbc --- /dev/null +++ b/.cursor/rules/language-injection-conventions.mdc @@ -0,0 +1,21 @@ +--- +description: Language injection conventions for LLM Agent prompts +globs: py-src/data_formulator/agents/**/*.py,py-src/data_formulator/agent_routes.py +alwaysApply: false +--- + +# Language Injection Conventions + +Language flows per-request: `Frontend i18n → Accept-Language header → get_language_instruction() → system prompt`. + +## Rules + +1. **User-facing LLM output** MUST inject language via `get_language_instruction(mode=...)` in the route handler. +2. **Mode selection:** `"full"` for text-heavy agents, `"compact"` for code-generation agents and short-text endpoints. +3. **Inject into system prompt only** — append or insert before a marker, never into user messages. +4. **Do NOT inject** for non-user-facing calls (health checks, internal tool calls). +5. **Do NOT duplicate** — if upstream messages already contain language instruction, skip. +6. **Do NOT** use env vars, global interceptors, or hardcoded language strings (e.g. `"回答请使用中文"`) — always use `build_language_instruction()`. +7. **New language?** Add to `LANGUAGE_DISPLAY_NAMES` in `agents/agent_language.py` and add locale files in `src/i18n/locales//`. + +For detailed architecture, code examples, and anti-pattern explanations, see the language-injection skill. diff --git a/.cursor/rules/package-manager-conventions.mdc b/.cursor/rules/package-manager-conventions.mdc new file mode 100644 index 00000000..5383e30a --- /dev/null +++ b/.cursor/rules/package-manager-conventions.mdc @@ -0,0 +1,12 @@ +--- +description: Use Yarn only, never npm/pnpm +globs: package.json, yarn.lock +alwaysApply: true +--- + +# Package Manager Rules + +- Use Yarn v1.22.22 only - never use npm or pnpm +- Never manually edit yarn.lock +- Keep yarn.lock changes minimal when adding deps +- Registry must be https://registry.yarnpkg.com diff --git a/.cursor/skills/language-injection/SKILL.md b/.cursor/skills/language-injection/SKILL.md new file mode 100644 index 00000000..a49cde7e --- /dev/null +++ b/.cursor/skills/language-injection/SKILL.md @@ -0,0 +1,72 @@ +# Language Injection for Agent Prompts + +Detailed guide for the language injection system. The short version lives in `.cursor/rules/language-injection-conventions.mdc`. + +## Architecture + +``` +Frontend i18n.language → Accept-Language header → get_language_instruction() + │ + build_language_instruction() + (agents/agent_language.py) + │ + ┌────────────┴────────────┐ + ▼ ▼ + mode="full" mode="compact" + (text-heavy agents) (code-gen agents) +``` + +### Core Modules + +| Module | Role | +|--------|------| +| `agents/agent_language.py` | `build_language_instruction(lang, mode)` — generates prompt fragments; supports 20 languages; returns `""` for English | +| `agent_routes.py` → `get_language_instruction()` | Reads `Accept-Language` header, delegates to `build_language_instruction` | +| `src/app/utils.tsx` → `fetchWithIdentity()` | Sets `Accept-Language` header on every API request from `i18n.language` | + +## Code Examples + +### Route handler — inject language + +```python +# In a Flask route handler: +lang_instruction = get_language_instruction(mode="compact") +lang_suffix = f"\n\n{lang_instruction}" if lang_instruction else "" + +messages = [ + {"role": "system", "content": "You are a helpful assistant." + lang_suffix}, + {"role": "user", "content": user_input}, +] +``` + +### Agent constructor — marker-based insertion + +```python +if language_instruction: + marker = "**About the execution environment:**" + idx = self.system_prompt.find(marker) + if idx > 0: + self.system_prompt = ( + self.system_prompt[:idx] + + language_instruction + "\n\n" + + self.system_prompt[idx:] + ) + else: + self.system_prompt += "\n\n" + language_instruction +``` + +## Anti-Patterns (with explanations) + +| Pattern | Why it's wrong | +|---------|---------------| +| `os.environ.get("DF_DEFAULT_LANGUAGE")` | Process-level — all users get same language; breaks multi-user | +| Global LLM client interceptor | Hidden behavior; can't distinguish full/compact mode; fragile string detection | +| New `MessageBuilder` class | Duplicates `agent_language.py`; creates parallel conflicting abstractions | +| Hardcoded `"回答请使用中文"` in prompts | Not configurable; skips the mode system; breaks for other languages | + +## Adding a New Language + +1. Add language code + display name to `LANGUAGE_DISPLAY_NAMES` in `agents/agent_language.py`. +2. Optionally add extra rules to `LANGUAGE_EXTRA_RULES` (e.g. simplified vs traditional Chinese). +3. Add frontend translations in `src/i18n/locales//` — copy an existing locale folder as template. +4. No Agent code changes needed — the existing flow picks up new languages automatically. diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..1838bc1b --- /dev/null +++ b/.dockerignore @@ -0,0 +1,12 @@ +.git +.gitignore +node_modules +__pycache__ +*.pyc +.env +.env.* +*.egg-info +dist +build +.pytest_cache +.mypy_cache diff --git a/.env.template b/.env.template index ec44c133..d4f77721 100644 --- a/.env.template +++ b/.env.template @@ -9,6 +9,30 @@ DISABLE_DISPLAY_KEYS=false # if true, API keys will not be shown in the frontend SANDBOX=local # code execution backend: 'local' (default) or 'docker' +# LOG_LEVEL=INFO # logging level for data_formulator modules (DEBUG, INFO, WARNING, ERROR) + +# Flask session secret key — used to sign cookies and encrypt session data. +# Required for SSO and plugin auth (Superset, etc.). Generate one with: +# python -c "import secrets; print(secrets.token_hex(32))" +# FLASK_SECRET_KEY= + +# Data directory — where workspaces and user data are stored on disk. +# Useful for server deployments with large datasets or dedicated storage volumes. +# Resolution order: --data-dir CLI flag > DATA_FORMULATOR_HOME env var > ~/.data_formulator +# Directory structure: +# DATA_FORMULATOR_HOME/ +# ├── users//workspaces/ (per-user workspace data: parquet, metadata) +# ├── workspaces/ (legacy default workspace root) +# └── cache/ (local cache, only for azure_blob backend) +# DATA_FORMULATOR_HOME= + +# Available UI languages (optional, comma-separated). +# Default: en,zh — if not set, both English and Chinese are available. +# Supported values: en, zh (add more after creating locale files) +# Examples: +# AVAILABLE_LANGUAGES=zh # only Chinese, language switcher hidden +# AVAILABLE_LANGUAGES=en,zh,ja # three languages +# AVAILABLE_LANGUAGES= # ------------------------------------------------------------------- # LLM provider API keys @@ -19,13 +43,13 @@ SANDBOX=local # code execution backend: 'local' (default) or 'docke # OpenAI OPENAI_ENABLED=true OPENAI_API_KEY=#your-openai-api-key -OPENAI_MODELS=gpt-5.2,gpt-5.1 # comma separated list of models +OPENAI_MODELS=gpt-5.4,gpt-4.1 # comma separated list of models # Azure OpenAI AZURE_ENABLED=true AZURE_API_KEY=#your-azure-openai-api-key AZURE_API_BASE=https://your-azure-openai-endpoint.openai.azure.com/ -AZURE_MODELS=gpt-5.1 +AZURE_MODELS=gpt-5.4 # Anthropic ANTHROPIC_ENABLED=true @@ -35,23 +59,136 @@ ANTHROPIC_MODELS=claude-sonnet-4-20250514 # Ollama OLLAMA_ENABLED=true OLLAMA_API_BASE=http://localhost:11434 -OLLAMA_MODELS=deepseek-v3.1:latest # models with good code generation capabilities recommended +OLLAMA_MODELS=qwen3:32b # models with good code generation capabilities recommended # Add other LiteLLM-supported providers with PROVIDER_API_KEY, PROVIDER_MODELS, etc. # ------------------------------------------------------------------- -# Azure Blob Storage Workspace (optional) +# API base URL allowlist (SSRF protection) +# ------------------------------------------------------------------- +# When users add custom models via the UI, they can provide an arbitrary +# api_base URL. To prevent the server from being used as an SSRF proxy, +# set a comma-separated list of allowed URL glob patterns. +# +# Open mode (default): leave unset to allow all URLs (convenient for local dev). +# Enforce mode: set to restrict which endpoints users can target. +# +# Glob patterns use fnmatch syntax (* matches anything, case-insensitive). +# Empty api_base (provider defaults like OpenAI/Anthropic) is always allowed. +# Global models (configured above via env vars) bypass this check. +# +# Examples: +# DF_ALLOWED_API_BASES=https://api.openai.com*,https://*.openai.azure.com/* +# DF_ALLOWED_API_BASES=https://api.openai.com*,https://*.openai.azure.com/*,http://localhost:11434/* +# DF_ALLOWED_API_BASES= + +# ------------------------------------------------------------------- +# Authentication (SSO / OAuth2) # ------------------------------------------------------------------- -# Set WORKSPACE_BACKEND=azure_blob to store workspace data in Azure Blob Storage -# instead of the local filesystem. +# Single-select: only one provider can be active at a time. +# Leave unset for anonymous mode (default, no login required). +# +# AUTH_PROVIDER values: +# oidc / oauth2 — Any OAuth2/OIDC identity provider with JWT + JWKS +# (Keycloak, Auth0, Okta, Authelia, custom SSO, etc.) +# github — GitHub OAuth2 +# azure_easyauth — Azure App Service built-in auth (platform headers) +# +# --- OIDC / OAuth2 --- +# AUTH_PROVIDER=oidc +# OIDC_ISSUER_URL=https://your-idp.example.com/realms/main +# OIDC_CLIENT_ID=your-client-id +# +# Mode A — Auto-discovery (recommended for standards-compliant OIDC IdPs): +# Only the two variables above are needed. The system fetches all endpoint +# URLs from {OIDC_ISSUER_URL}/.well-known/openid-configuration automatically. +# +# Mode B — Manual endpoints (for OAuth2 servers without discovery): +# When your IdP does NOT expose /.well-known/openid-configuration, set the +# endpoint URLs explicitly. Manual values always take precedence over discovery. +# +# OIDC_AUTHORIZE_URL=https://your-idp.example.com/oauth2/authorize +# OIDC_TOKEN_URL=https://your-idp.example.com/oauth2/token +# OIDC_USERINFO_URL=https://your-idp.example.com/oauth2/userinfo +# OIDC_JWKS_URL=https://your-idp.example.com/oauth2/jwks +# +# If your IdP has no JWKS endpoint, leave OIDC_JWKS_URL unset — the backend +# will validate tokens by calling the UserInfo endpoint instead. +# +# OAuth2 scopes to request (optional — auto-selected if unset): +# Mode A default: "openid profile email" +# Mode B default: "profile email" (omits 'openid' to avoid JWT id_token issues) +# OIDC_SCOPES=profile email +# +# Client secret (only for confidential clients — most browser apps should NOT +# need this; prefer PKCE for public clients): +# OIDC_CLIENT_SECRET= +# +# The frontend redirect URI to register in your IdP: http(s):///callback +# +# --- GitHub OAuth2 --- +# AUTH_PROVIDER=github +# GITHUB_CLIENT_ID=your-github-app-client-id +# GITHUB_CLIENT_SECRET=your-github-app-client-secret +# +# Create a GitHub OAuth App at https://github.com/settings/developers +# Set the callback URL to: http(s):///api/auth/github/callback # +# --- Azure App Service EasyAuth --- +# AUTH_PROVIDER=azure_easyauth +# (No extra variables needed — Azure injects identity via platform headers) +# +# --- Common options (all providers) --- +# ALLOW_ANONYMOUS=true # allow unauthenticated access as fallback (default: true) +# AUTH_DISPLAY_NAME=SSO Login # label shown on the login button + +# ------------------------------------------------------------------- +# Workspace storage backend +# ------------------------------------------------------------------- +# Controls where workspace data (tables, sessions, metadata) is persisted. +# Also configurable via CLI: --workspace-backend +# +# Choices: +# local — (default) stores data under DATA_FORMULATOR_HOME +# azure_blob — stores data in Azure Blob Storage (see below) +# ephemeral — temp dirs; data does NOT survive restart (if you want to prevent user data retention on server disk for privacy reasons) +# +# WORKSPACE_BACKEND=local + +# ------------------------------------------------------------------- +# Azure Blob Storage settings (only when WORKSPACE_BACKEND=azure_blob) +# ------------------------------------------------------------------- # Authentication — choose ONE of the following: # Option A: Connection string (shared key / SAS) # AZURE_BLOB_CONNECTION_STRING=DefaultEndpointsProtocol=https;AccountName=... # Option B: Entra ID (Managed Identity / az login / workload identity) # AZURE_BLOB_ACCOUNT_URL=https://.blob.core.windows.net # -# WORKSPACE_BACKEND=local +# Blob container name (default: data-formulator): +# AZURE_BLOB_CONTAINER=data-formulator +# +# CLI equivalents: +# --azure-blob-connection-string, --azure-blob-account-url, --azure-blob-container +# # AZURE_BLOB_CONNECTION_STRING= # AZURE_BLOB_ACCOUNT_URL= -# AZURE_BLOB_CONTAINER=data-formulator \ No newline at end of file +# AZURE_BLOB_CONTAINER=data-formulator + +# ------------------------------------------------------------------- +# Data source plugins +# ------------------------------------------------------------------- +# Plugins are activated by setting their required env vars. +# Each plugin uses a PLG__ prefix. +# +# --- Apache Superset --- +# PLG_SUPERSET_URL=http://superset.example.com:8088 +# +# SSO login URL (optional): +# By default DF opens {PLG_SUPERSET_URL}/df-sso-bridge/ as the SSO popup. +# Override this if your Superset requires going through the login page first: +# PLG_SUPERSET_SSO_LOGIN_URL=http://superset.example.com:8088/login/?next=/df-sso-bridge/ +# +# Superset-side setup: +# The Superset instance needs a small bridge endpoint at /df-sso-bridge/ +# that converts a Superset session into a JWT and posts it back to DF. +# See: superset-sso-bridge-setup.md \ No newline at end of file diff --git a/.gitignore b/.gitignore index f4cda9a6..f43b7bd7 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,9 @@ build/ dist/ experiment_data/ +py-src/eval_rec_ts/* +py-src/evaluation_old/* + ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. ## @@ -336,6 +339,7 @@ paket-files/ # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc +*.egg-info/ # Cake - Uncomment if you are using it # tools/** @@ -408,6 +412,11 @@ FodyWeavers.xsd *.sln.iml venv +# Temporary documentation directory +tmp-docs/ \.\NUL -NUL \ No newline at end of file +NUL + +# Package manager lock files (using yarn) +package-lock.json \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..e1cb88e2 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python", + "chat.tools.terminal.autoApprove": { + "npx tsc": true, + "npx vite": true, + "npx tsx": true + } +} diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index cb9ed8e3..d5815480 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -121,6 +121,45 @@ uv run data_formulator --dev # Run backend only (for frontend development) Open [http://localhost:5567](http://localhost:5567) to view it in the browser. +## Docker + +Docker is the easiest way to run Data Formulator without installing Python or Node.js locally. + +### Quick start + +1. **Copy the environment template and add your API keys:** + + ```bash + cp .env.template .env + # Edit .env and set your OPENAI_API_KEY, ANTHROPIC_API_KEY, etc. + ``` + +2. **Build and start the container:** + + ```bash + docker compose up --build + ``` + +3. Open [http://localhost:5567](http://localhost:5567) in your browser. + +To stop the container: `docker compose down` + +Workspace data (uploaded files, sessions) is persisted in a Docker volume (`data_formulator_home`) so it survives container restarts. + +### Build the image manually + +```bash +docker build -t data-formulator . +docker run --rm -p 5567:5567 --env-file .env data-formulator +``` + +### Docker sandbox (`SANDBOX=docker`) is not supported inside a container + +The Docker sandbox backend works by calling `docker run -v :...` to bind-mount temporary workspace directories into child containers. When Data Formulator itself runs in a Docker container those paths refer to the *container* filesystem, not the host, so Docker daemon cannot mount them and the feature does not work. + +Use `SANDBOX=docker` only when running Data Formulator **directly on the host** (e.g. with `uv run data_formulator --sandbox docker` or `python -m data_formulator --sandbox docker`). When using the Docker image, keep the default `SANDBOX=local`. + + ## Sandbox AI-generated Python code runs inside a **sandbox** to isolate it from the main server process. Two backends are available: @@ -278,7 +317,7 @@ data-formulator/ ← container | Flag | Env var | Default | Description | |------|---------|---------|-------------| -| `--workspace-backend` | `WORKSPACE_BACKEND` | `local` | `local` or `azure_blob` | +| `--workspace-backend` | `WORKSPACE_BACKEND` | `local` | `local`, `azure_blob`, or `ephemeral` | | `--azure-blob-connection-string` | `AZURE_BLOB_CONNECTION_STRING` | — | Shared-key connection string | | `--azure-blob-account-url` | `AZURE_BLOB_ACCOUNT_URL` | — | Account URL for Entra ID auth | | `--azure-blob-container` | `AZURE_BLOB_CONTAINER` | `data-formulator` | Blob container name | @@ -290,23 +329,35 @@ data-formulator/ ← container When deploying Data Formulator to production, please be aware of the following security considerations: -### Database and Data Storage Security +### Data Storage + +Data Formulator supports three workspace backends: + +| Backend | Flag | Storage | Persistence | +|---------|------|---------|-------------| +| **local** (default) | `--workspace-backend local` | `~/.data_formulator/users//workspaces//` | Server filesystem | +| **azure_blob** | `--workspace-backend azure_blob` | Azure Blob container | Cloud | +| **ephemeral** | `--workspace-backend ephemeral` | Browser IndexedDB (frontend) + temp dirs (backend) | Browser session only | -1. **Workspace and table data**: Table data is stored in per-identity workspaces (e.g. parquet files). DuckDB is used only in-memory per request when needed (e.g. for SQL mode); no persistent DuckDB database files are created by the app. +Each workspace contains: +- `workspace.yaml` — table metadata +- `session_state.json` — auto-persisted frontend state +- `data/` — table data as parquet files -2. **Identity Management**: - - Each user's data is isolated by a namespaced identity key (e.g., `user:alice@example.com` or `browser:550e8400-...`) - - Anonymous users get a browser-based UUID stored in localStorage - - Authenticated users get their verified user ID from the auth provider +### Identity and Data Isolation -3. **Data persistence**: User data may be written to workspace storage (e.g. parquet) on the server. In multi-tenant deployments, ensure workspace directories are isolated and access-controlled. +- Each user's data is isolated by a namespaced identity key (e.g., `user:alice@example.com` or `browser:550e8400-...`) +- Anonymous users get a browser-based UUID stored in localStorage +- Authenticated users get their verified user ID from the auth provider +- In multi-tenant deployments, ensure workspace directories are isolated and access-controlled ### Recommended Security Measures For production deployment, consider: -1. **Use `--disable-database` flag** to disable table-connector routes when you do not need external or uploaded table support -2. **Implement proper authentication, authorization, and other security measures** as needed for your specific use case, for example: +1. **Use `--workspace-backend ephemeral`** for stateless public hosting (no server-side persistence; data lives only in the user's browser) +2. **Set `DF_ALLOWED_API_BASES`** to restrict which LLM endpoints users can target from the UI, preventing SSRF attacks (e.g. `DF_ALLOWED_API_BASES=https://api.openai.com*,https://*.openai.azure.com/*`). See `.env.template` for details. +3. **Implement proper authentication, authorization, and other security measures** as needed for your specific use case, for example: - User authentication (OAuth, JWT tokens, etc.) - Role-based access control - API rate limiting @@ -317,7 +368,7 @@ For production deployment, consider: ```bash # For stateless deployment (recommended for public hosting) -python -m data_formulator.app --disable-database +data_formulator --workspace-backend ephemeral ``` ## Authentication Architecture @@ -351,8 +402,8 @@ Data Formulator supports a **hybrid identity system** that supports both anonymo ┌─────────────────────────────────────────────────────────────────────┐ │ Storage Isolation │ ├─────────────────────────────────────────────────────────────────────┤ -│ "user:alice@example.com" → alice's DuckDB file (ONLY via auth) │ -│ "browser:550e8400-..." → anonymous user's DuckDB file │ +│ "user:alice@example.com" → alice's workspace dir (ONLY via auth) │ +│ "browser:550e8400-..." → anonymous user's workspace dir │ └─────────────────────────────────────────────────────────────────────┘ ``` @@ -374,7 +425,7 @@ The key security principle is **namespaced isolation with forced prefixing**: To add JWT-based authentication: -1. **Backend** (`tables_routes.py`): Uncomment and configure the JWT verification code in `get_identity_id()` +1. **Backend** (`security/auth.py`): Uncomment and configure the JWT verification code in `get_identity_id()` 2. **Frontend** (`utils.tsx`): Implement `getAuthToken()` to retrieve the JWT from your auth context 3. **Add JWT secret** to Flask config: `current_app.config['JWT_SECRET']` diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..d066f436 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,68 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +# --------------------------------------------------------------------------- +# Stage 1: Build the React/TypeScript frontend +# --------------------------------------------------------------------------- +FROM node:20-slim AS frontend-builder + +WORKDIR /app + +# Install dependencies +COPY package.json yarn.lock ./ +RUN yarn install --frozen-lockfile + +# Copy source and build +COPY index.html tsconfig.json vite.config.ts eslint.config.js ./ +COPY public ./public +COPY src ./src +RUN yarn build + +# --------------------------------------------------------------------------- +# Stage 2: Python runtime with the built frontend bundled in +# --------------------------------------------------------------------------- +FROM python:3.11-slim AS runtime + +# System dependencies needed by some Python packages +RUN apt-get update && apt-get install -y --no-install-recommends \ + gcc \ + g++ \ + libpq-dev \ + unixodbc-dev \ + curl \ + && rm -rf /var/lib/apt/lists/* + +# Create a non-root user to run the application +RUN useradd -m -s /bin/bash appuser + +# Ensure Unicode filenames work correctly (Chinese, Japanese, etc.) +ENV LANG=C.UTF-8 + +# Set the home directory for workspace data to a deterministic path +ENV DATA_FORMULATOR_HOME=/home/appuser/.data_formulator + +WORKDIR /app + +# Copy Python package sources +COPY pyproject.toml MANIFEST.in README.md ./ +COPY py-src ./py-src + +# Copy the compiled frontend into the package's expected location +COPY --from=frontend-builder /app/py-src/data_formulator/dist ./py-src/data_formulator/dist + +# Install the package and its dependencies +RUN pip install --no-cache-dir . + +# Switch to non-root user and ensure workspace and app directories are owned by it +RUN mkdir -p "${DATA_FORMULATOR_HOME}" && chown -R appuser:appuser /app "${DATA_FORMULATOR_HOME}" +USER appuser + +EXPOSE 5567 + +HEALTHCHECK --interval=30s --timeout=5s --retries=3 \ + CMD curl -f http://localhost:5567/ || exit 1 + +# Run the app on all interfaces so Docker port-forwarding works. +# We do not pass --dev so Flask runs in production mode (no debugger/reloader). +# webbrowser.open() fails silently in a headless container, which is harmless. +ENTRYPOINT ["python", "-m", "data_formulator", "--host", "0.0.0.0", "--port", "5567"] diff --git a/README.md b/README.md index b39d7722..19b9abfc 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ https://github.com/user-attachments/assets/8ca57b68-4d7a-42cb-bcce-43f8b1681ce2 ## News 🔥🔥🔥 -[03-02-2026] **Data Formulator 0.7 (alpha)** — More charts, new experience, enterprise-ready +[03-18-2026] **Data Formulator 0.7 (alpha)** — More charts, new experience, enterprise-ready - 📊 **30 chart types** with a new semantic chart engine (area, streamgraph, candlestick, pie, radar, maps, and more). - 💬 **Hybrid chat + data thread** — chat woven into the exploration timeline with lineage, previews, and reasoning. - 🤖 **Unified `DataAgent`** replacing four separate agents, plus new recommendation and insight agents. @@ -42,6 +42,11 @@ https://github.com/user-attachments/assets/8ca57b68-4d7a-42cb-bcce-43f8b1681ce2 - 📦 **UV-first build** — reproducible builds via `uv.lock`; `uv sync` + `uv run data_formulator`. - 📝 Detailed writeup on the new architecture coming soon — stay tuned! +> [!TIP] +> **Are you a developer?** Join us to shape the future of AI-powered data exploration! +> We're looking for help with new agents, data connectors, chart templates, and more. +> Check out the [Developers' Guide](DEVELOPMENT.md) and our [open issues](https://github.com/microsoft/data-formulator/issues). + ## Previous Updates Here are milestones that lead to the current design: @@ -60,179 +65,63 @@ Here are milestones that lead to the current design: - **Data Extraction**: Parse data from images and text ([demo](https://github.com/microsoft/data-formulator/pull/31#issuecomment-2403652717)) - **Initial Release**: [Blog](https://www.microsoft.com/en-us/research/blog/data-formulator-exploring-how-ai-can-help-analysts-create-rich-data-visualizations/) | [Video](https://youtu.be/3ndlwt0Wi3c) -
-View detailed update history - -- [07-10-2025] Data Formulator 0.2.2: Start with an analysis goal - - Some key frontend performance updates. - - You can start your exploration with a goal, or, tab and see if the agent can recommend some good exploration ideas for you. [Demo](https://github.com/microsoft/data-formulator/pull/176) - -- [05-13-2025] Data Formulator 0.2.1.3/4: External Data Loader - - We introduced external data loader class to make import data easier. [Readme](https://github.com/microsoft/data-formulator/tree/main/py-src/data_formulator/data_loader) and [Demo](https://github.com/microsoft/data-formulator/pull/155) - - Current data loaders: MySQL, Azure Data Explorer (Kusto), Azure Blob and Amazon S3 (json, parquet, csv). - - [07-01-2025] Updated with: Postgresql, mssql. - - Call for action [link](https://github.com/microsoft/data-formulator/issues/156): - - Users: let us know which data source you'd like to load data from. - - Developers: let's build more data loaders. - -- [04-23-2025] Data Formulator 0.2: working with *large* data 📦📦📦 - - Explore large data by: - 1. Upload large data file to the local database (powered by [DuckDB](https://github.com/duckdb/duckdb)). - 2. Use drag-and-drop to specify charts, and Data Formulator dynamically fetches data from the database to create visualizations (with ⚡️⚡️⚡️ speeds). - 3. Work with AI agents: they generate SQL queries to transform the data to create rich visualizations! - 4. Anchor the result / follow up / create a new branch / join tables; let's dive deeper. - - Checkout the demos at [[https://github.com/microsoft/data-formulator/releases/tag/0.2]](https://github.com/microsoft/data-formulator/releases/tag/0.2) - - Improved overall system performance, and enjoy the updated derive concept functionality. - -- [03-20-2025] Data Formulator 0.1.7: Anchoring ⚓︎ - - Anchor an intermediate dataset, so that followup data analysis are built on top of the anchored data, not the original one. - - Clean a data and work with only the cleaned data; create a subset from the original data or join multiple data, and then go from there. AI agents will be less likely to get confused and work faster. ⚡️⚡️ - - Check out the demos at [[https://github.com/microsoft/data-formulator/releases/tag/0.1.7]](https://github.com/microsoft/data-formulator/releases/tag/0.1.7) - - Don't forget to update Data Formulator to test it out! - -- [02-20-2025] Data Formulator 0.1.6 released! - - Now supports working with multiple datasets at once! Tell Data Formulator which data tables you would like to use in the encoding shelf, and it will figure out how to join the tables to create a visualization to answer your question. 🪄 - - Checkout the demo at [[https://github.com/microsoft/data-formulator/releases/tag/0.1.6]](https://github.com/microsoft/data-formulator/releases/tag/0.1.6). - - Update your Data Formulator to the latest version to play with the new features. - -- [02-12-2025] More models supported now! - - Now supports OpenAI, Azure, Ollama, and Anthropic models (and more powered by [LiteLLM](https://github.com/BerriAI/litellm)); - - Models with strong code generation and instruction following capabilities are recommended (gpt-4o, claude-3-5-sonnet etc.); - - You can store API keys in `.env` to avoid typing them every time (copy `.env.template` to `.env` and fill in your keys). - - Let us know which models you have good/bad experiences with, and what models you would like to see supported! [[comment here]](https://github.com/microsoft/data-formulator/issues/49) - -- [11-07-2024] Minor fun update: data visualization challenges! - - We added a few visualization challenges with the sample datasets. Can you complete them all? [[try them out!]](https://github.com/microsoft/data-formulator/issues/53#issue-2641841252) - - Comment in the issue when you did, or share your results/questions with others! [[comment here]](https://github.com/microsoft/data-formulator/issues/53) - -- [10-11-2024] Data Formulator python package released! - - You can now install Data Formulator using Python and run it locally, easily. [[check it out]](#get-started). - - Our Codespaces configuration is also updated for fast start up ⚡️. [[try it now!]](https://codespaces.new/microsoft/data-formulator?quickstart=1) - - New experimental feature: load an image or a messy text, and ask AI to parse and clean it for you(!). [[demo]](https://github.com/microsoft/data-formulator/pull/31#issuecomment-2403652717) - -- [10-01-2024] Initial release of Data Formulator, check out our [[blog]](https://www.microsoft.com/en-us/research/blog/data-formulator-exploring-how-ai-can-help-analysts-create-rich-data-visualizations/) and [[video]](https://youtu.be/3ndlwt0Wi3c)! - -
- ## Overview **Data Formulator** is a Microsoft Research prototype for data exploration with visualizations powered by AI agents. -Data Formulator enables analysts to iteratively explore and visualize data. Started with data in any format (screenshot, text, csv, or database), users can work with AI agents with a novel blended interface that combines *user interface interactions (UI)* and *natural language (NL) inputs* to communicate their intents, control branching exploration directions, and create reports to share their insights. +Data Formulator enables analysts to explore data with visualizations. Started with data in any format (screenshot, text, csv, or database), you can work with AI agents with a novel blended interface that combines *user interface interactions (UI)* and *natural language (NL) inputs* to communicate their intents, control branching exploration directions, and create reports to share their insights. ## Get Started -Play with Data Formulator with one of the following options: +Play with Data Formulator with one of the following options. - **Option 1: Install via uv (recommended)** [uv](https://docs.astral.sh/uv/) is an extremely fast Python package manager. If you have uv installed, you can run Data Formulator directly without any setup: ```bash - # Run data formulator directly (no install needed) uvx data_formulator ``` - Or install it in a project/virtual environment: - - ```bash - # Install data_formulator - uv pip install data_formulator - - # Run data formulator - python -m data_formulator - ``` - - Data Formulator will be automatically opened in the browser at [http://localhost:5567](http://localhost:5567). + Run `uvx data_formulator --help` to see all available options, such as custom port, sandboxing mode, and data storage location. - **Option 2: Install via pip** Use pip for installation (recommend: install it in a virtual environment). ```bash - # install data_formulator - pip install data_formulator - - # Run data formulator with this command - python -m data_formulator + pip install data_formulator # install + python -m data_formulator # run ``` Data Formulator will be automatically opened in the browser at [http://localhost:5567](http://localhost:5567). - *you can specify the port number (e.g., 8080) by `python -m data_formulator --port 8080` if the default port is occupied.* - -- **Option 3: Codespaces (5 minutes)** - - You can also run Data Formulator in Codespaces; we have everything pre-configured. For more details, see [CODESPACES.md](CODESPACES.md). - - [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/data-formulator?quickstart=1) +- **Option 3: Run with Docker** -- **Option 4: Working in the developer mode** - - You can build Data Formulator locally if you prefer full control over your development environment and develop your own version on top. For detailed instructions, refer to [DEVELOPMENT.md](DEVELOPMENT.md). + ```bash + docker compose up --build + ``` + Open [http://localhost:5567](http://localhost:5567) in your browser. To stop, press `Ctrl+C` or run `docker compose down`. -## Using Data Formulator +- **Option 4: Codespaces** -### Load Data + You can run Data Formulator in Codespaces; we have everything pre-configured. For more details, see [CODESPACES.md](CODESPACES.md). + + [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/data-formulator?quickstart=1) -Besides uploading csv, tsv or xlsx files that contain structured data, you can ask Data Formulator to extract data from screenshots, text blocks or websites, or load data from databases use connectors. Then you are ready to explore. -image +- **Option 5: Working as developer** + + You can build Data Formulator locally and develop your own version. Check out details in [DEVELOPMENT.md](DEVELOPMENT.md). -### Explore Data -There are four levels to explore data based depending on whether you want more vibe or more control: +## Using Data Formulator -- Level 1 (most control): Create charts with UI via drag-and-drop, if all fields to be visualized are already in the data. -- Level 2: Specify chart designs with natural language + NL. Describe how new fields should be visualized in your chart, AI will automatically transform data to realize the design. -- Level 3: Get recommendations: Ask AI agents to recommend charts directly from NL descriptions, or even directly ask for exploration ideas. -- Level 4 (most vibe): In agent mode, provide a high-level goal and let AI agents automatically plan and explore data in multiple turns. Exploration threads will be created automatically. +Besides uploading csv, tsv or xlsx files that contain structured data, you can ask Data Formulator to extract data from screenshots, text blocks or websites, or load data from databases use connectors. Then you are ready to explore. Ask visualizaiton questions, edit charts, or delegate some exploration tasks to agents. Then, create reports to share your insights. https://github.com/user-attachments/assets/164aff58-9f93-4792-b8ed-9944578fbb72 -- Level 5: In practice, leverage all of them to keep up with both vibe and control! - -### Create Reports - -Use the report builder to compose a report of the style you like, based on selected charts. Then share the reports to others! - - - -## Developers' Guide - -Follow the [developers' instructions](DEVELOPMENT.md) to build your new data analysis tools on top of Data Formulator. - -Help wanted: - -* Add more database connectors (https://github.com/microsoft/data-formulator/issues/156) -* Scaling up messy data extractor: more document types and larger files. -* Adding more chart templates (e.g., maps). -* other ideas? - ## Research Papers * [Data Formulator 2: Iteratively Creating Rich Visualizations with AI](https://arxiv.org/abs/2408.16119) diff --git a/design-docs/0-development-roadmap.md b/design-docs/0-development-roadmap.md new file mode 100644 index 00000000..87a0e540 --- /dev/null +++ b/design-docs/0-development-roadmap.md @@ -0,0 +1,725 @@ +# SSO + 数据源插件 开发路线图 + +> **定位**:本文档是开发实施计划,不重复设计细节。每个步骤链接到设计文档的对应章节。 +> +> **设计文档**: +> - `1-sso-plugin-architecture.md` — SSO 认证 + 统一架构(以下简称 **SSO 文档**) +> - `1-data-source-plugin-architecture.md` — 数据源插件详细设计(以下简称 **Plugin 文档**) +> - `2-external-dataloader-enhancements.md` — ExternalDataLoader 改进(独立推进,不在本路线图中) + +--- + +## 测试策略 + +### 工作流:测试先行 + +每个 Step 遵循 **测试 → 实现 → 通过** 的节奏: + +1. 先写测试 — 基于设计文档中的接口契约和预期行为 +2. 运行测试 — 确认全部失败(红) +3. 实现功能 — 写到测试通过为止(绿) +4. 重构 — 在测试保护下清理代码 + +### 测试分层与现有基础设施对齐 + +项目已有完善的测试体系(见 `tests/test_plan.md`),新增测试沿用现有分层和约定: + +| 层级 | 目录 | 运行方式 | 特征 | +|------|------|---------|------| +| 后端单元 | `tests/backend/unit/` | `pytest`(默认运行) | 纯函数、无网络、无 Docker | +| 后端安全 | `tests/backend/security/` | `pytest`(默认运行) | 认证、隔离、防伪造 | +| 后端集成 | `tests/backend/integration/` | `pytest`(默认运行) | Flask test_client、Workspace 交互 | +| 后端契约 | `tests/backend/contract/` | `pytest`(默认运行) | API 边界保证 | +| 前端单元 | `tests/frontend/unit/` | `vitest` | React 组件、工具函数 | + +新增标记(追加到 `pytest.ini`): + +```ini +markers = + ...existing... + auth: authentication provider tests + plugin: data source plugin framework tests + vault: credential vault tests +``` + +### Mock 设计原则 + +**只 mock 外部边界,不 mock 自己的代码**: + +| 边界 | Mock 方式 | 说明 | +|------|----------|------| +| OIDC IdP(JWKS 端点) | 测试时生成 RSA 密钥对 → 用私钥签 JWT → 用公钥构造 JWKS 响应 | 验证真实的 JWT 验签逻辑,而不是跳过验签 | +| GitHub API | `unittest.mock.patch("requests.get")` | 返回录制的 GitHub `/user` 响应 | +| Superset REST API | `unittest.mock.patch` on `requests.Session` in SupersetClient | 返回录制的 Superset API 响应 fixture | +| Workspace 文件系统 | `tmp_path` fixture(pytest 内置) | 真实 Parquet 读写,但在临时目录 | +| SQLite(Vault) | `tmp_path` 下的临时 DB 文件 | 真实加密/解密,无需 mock | +| 前端 OIDC UserManager | vitest mock module | 模拟登录状态和 token | + +**不要 mock 的东西**: +- Workspace 内部逻辑(`write_parquet` / `list_tables`)— 用真实 temp workspace +- Fernet 加密 — 用真实密钥,验证端到端加密/解密 +- Flask 路由注册 — 用真实 `app.test_client()` + +### Superset API Mock Fixture 设计 + +Superset 插件的测试需要模拟 Superset REST API 的响应。在 `tests/backend/fixtures/superset/` 下存放录制的 JSON 响应: + +``` +tests/backend/fixtures/superset/ +├── auth_login_200.json # POST /api/v1/security/login 成功响应 +├── auth_login_401.json # 登录失败响应 +├── me_200.json # GET /api/v1/me/ 当前用户信息 +├── datasets_list_200.json # GET /api/v1/dataset/ 数据集列表 +├── dataset_detail_42.json # GET /api/v1/dataset/42 单个数据集详情 +├── dashboard_list_200.json # GET /api/v1/dashboard/ 仪表盘列表 +├── sqllab_execute_200.json # POST /api/v1/sqllab/execute/ 查询结果 +└── csrf_token_200.json # GET /api/v1/security/csrf_token/ +``` + +这些 fixture 从真实 Superset 实例录制(`curl` 输出保存),保证字段结构与实际 API 一致。测试中通过 `patch` 注入: + +```python +@pytest.fixture +def superset_responses(fixture_dir): + """加载 Superset API fixture 响应。""" + def _load(name): + return json.loads((fixture_dir / "superset" / name).read_text()) + return _load +``` + +### 什么不测 + +- **不测 IdP 本身**:Keycloak/Auth0 的行为不是我们的代码,集成测试只验证我们的对接逻辑 +- **不测前端 UI 样式**:不做截图对比或像素级验证 +- **不测第三方库内部**:不测 PyJWT 能不能解码、Fernet 加不加密——只测我们**调用**这些库的逻辑 +- **不重复已有测试**:`test_auth.py` 中已有的 `_validate_identity_value` 测试不重复,只扩展 Provider 链部分 + +--- + +## 开发顺序与依据 + +``` +Layer 1: AuthProvider (SSO) ← 地基,确定"你是谁" + │ + ├── Layer 3: CredentialVault ← 依赖身份,按用户存取凭证 + │ + └── Layer 2: DataSourcePlugin ← 依赖 Layer 1 获取 SSO token + 依赖 Layer 3 获取已存凭证 +``` + +**先做 SSO,后做插件**。理由: + +1. **单向依赖**:插件系统的 SSO 透传、凭证保险箱、Workspace 身份隔离,全部依赖 AuthProvider 提供的用户身份([SSO 文档 § 2 架构全景](1-sso-plugin-architecture.md#2-架构全景)) +2. **插件不改 auth 代码**:先把认证层稳定下来,后续插件开发只在 `plugins/` 目录内工作,不触碰核心 +3. **渐进可验证**:每个 Phase 完成后都有独立可测试的交付物,不需要等到全部完成才能验证 + +> **注意**:Plugin 框架本身*可以*在无 SSO 时工作(匿名模式),但 SSO 透传是核心价值之一。先做 SSO 避免后期回头改 auth 代码。 + +--- + +## Phase 1:认证基础 — AuthProvider 链 + +> 对应:[SSO 文档 § 3 Layer 1](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider)、[SSO 文档 § 11 Phase 1](1-sso-plugin-architecture.md#11-实施路径) + +**目标**:将 `auth.py` 重构为可插拔 Provider,激活 OIDC + GitHub OAuth。 + +### Step 1.0 先写测试 + +在写任何实现代码之前,先创建以下测试文件。测试基于设计文档中的接口契约,此时运行应**全部失败**。 + +#### 后端测试 + +**`tests/backend/security/test_auth_provider_chain.py`** — Provider 链集成(扩展现有 `test_auth.py` 的思路) + +```python +# 要验证的行为(基于 SSO 文档 § 3.1 的优先级链): +# - AUTH_PROVIDER=oidc 时,合法 JWT → user:sub_claim +# - AUTH_PROVIDER=oidc 时,无 JWT + ALLOW_ANONYMOUS=true → browser:xxx +# - AUTH_PROVIDER=oidc 时,无 JWT + ALLOW_ANONYMOUS=false → 401 +# - AUTH_PROVIDER 未设置 → 匿名模式(与现有行为一致) +# - init_auth() 加载指定 Provider,忽略其他 +# - get_sso_token() 在 OIDC 认证后返回 access_token +# - get_sso_token() 在匿名模式下返回 None + +# mock 策略:用 cryptography 生成 RSA 密钥对, +# 用私钥签发测试 JWT,patch JWKS 端点返回对应公钥。 +``` + +**`tests/backend/unit/test_oidc_provider.py`** — OIDC Provider 单元测试 + +```python +# 要验证的行为(基于 SSO 文档 § 3.4): +# - 合法 JWT(正确 issuer + audience + 未过期)→ AuthResult(user_id=sub) +# - 过期 JWT → 抛 AuthenticationError +# - 错误 issuer → 抛 AuthenticationError +# - 错误 audience → 抛 AuthenticationError +# - 签名不匹配(用错误密钥签名)→ 抛 AuthenticationError +# - 请求无 Authorization 头 → 返回 None(此 Provider 不适用) +# - Authorization 头非 Bearer → 返回 None +# - get_auth_info() 返回 {action: "frontend", ...} 包含 OIDC 配置 +# - enabled 属性:OIDC_ISSUER_URL 缺失时返回 False + +# mock 策略:fixture 中生成 RSA 密钥对, +# 用 PyJWT 签发各种测试 JWT,monkeypatch JWKS HTTP 请求。 +``` + +**`tests/backend/unit/test_github_oauth_provider.py`** — GitHub OAuth Provider + +```python +# 要验证的行为(基于 SSO 文档 § 3.5): +# - Flask session 中有 github_user → AuthResult(user_id=github_login) +# - Flask session 为空 → 返回 None +# - get_auth_info() 返回 {action: "redirect", url: "/api/auth/github/login"} +# - enabled 属性:GITHUB_CLIENT_ID 缺失时返回 False + +# mock 策略:Flask test_request_context + session mock,无需真实 GitHub。 +``` + +**`tests/backend/unit/test_azure_easyauth_provider.py`** — Azure EasyAuth Provider(迁移验证) + +```python +# 从现有 test_auth.py 中的 Azure 测试用例迁移验证: +# - X-MS-CLIENT-PRINCIPAL-ID 存在 → AuthResult(user_id=principal_id) +# - 头不存在 → 返回 None +# - 确保迁移后行为与原 get_identity_id() 中的 Azure 逻辑一致 +``` + +**`tests/backend/integration/test_auth_info_endpoint.py`** — `/api/auth/info` 端点 + +```python +# 要验证的行为(基于 SSO 文档 § 3.2 get_auth_info 自描述): +# - OIDC Provider 激活时,返回 {action: "frontend", authority, client_id, ...} +# - GitHub Provider 激活时,返回 {action: "redirect", url: ...} +# - 匿名模式时,返回 {action: "none"} +# - 前端据此决定登录交互方式 + +# mock 策略:Flask test_client + 环境变量 patch。 +``` + +#### 前端测试 + +**`tests/frontend/unit/app/fetchWithIdentity.test.ts`** — Bearer token 附加 + 401 重试 + +```typescript +// 要验证的行为(基于 SSO 文档 § 3.8b): +// - 有 OIDC token 时,请求携带 Authorization: Bearer +// - 无 token 时(匿名模式),只携带 X-Identity-Id(现有行为) +// - 收到 401 时,触发 token 刷新后重试一次 +// - 重试后仍 401 → 不再重试,返回错误 +// - 非 401 错误不触发重试 + +// mock 策略:vitest mock fetch,模拟各种响应状态码。 +``` + +### Step 1.1 后端 AuthProvider 框架 + +| 任务 | 产出文件 | 参考 | +|------|---------|------| +| 定义基类 `AuthProvider` + `AuthResult` | `auth_providers/base.py` | [SSO § 3.2](1-sso-plugin-architecture.md#32-authprovider-基类) | +| Provider 自动发现(`pkgutil` 扫描) | `auth_providers/__init__.py` | [SSO § 3.2b](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| 迁移 Azure EasyAuth 为 Provider | `auth_providers/azure_easyauth.py` | [SSO § 3.3](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| 实现 OIDC Provider(JWT 验签) | `auth_providers/oidc.py` | [SSO § 3.4](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| 实现 GitHub OAuth Provider | `auth_providers/github_oauth.py` | [SSO § 3.5](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| GitHub 授权码交换网关 | `auth_gateways/github_gateway.py` | [SSO § 3.5](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| 重构 `auth.py` — `init_auth()` + `get_sso_token()` | `auth.py` 修改 | [SSO § 3.2](1-sso-plugin-architecture.md#32-authprovider-基类) | + +**核心逻辑**:`AUTH_PROVIDER` 环境变量选择主 Provider → 匿名回退(`ALLOW_ANONYMOUS=true`)→ `get_identity_id()` 返回值格式不变(`user:xxx` / `browser:xxx`)。 + +### Step 1.2 前端 OIDC 集成 + +| 任务 | 产出文件 | 参考 | +|------|---------|------| +| OIDC 配置 + UserManager | `src/app/oidcConfig.ts` | [SSO § 3.6](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| OIDC 回调页面 | `src/app/OidcCallback.tsx` | [SSO § 3.7](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| 统一登录面板(`/api/auth/info` 驱动) | `src/app/LoginPanel.tsx` | [SSO § 3.8](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| `fetchWithIdentity` 携带 Bearer token + 401 重试 | `src/app/utils.tsx` 修改 | [SSO § 3.8b](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | +| `App.tsx` 统一 initAuth | `src/app/App.tsx` 修改 | [SSO § 3.8](1-sso-plugin-architecture.md#3-layer-1可插拔认证体系-authprovider) | + +**依赖安装**:`pip install PyJWT cryptography`,`npm install oidc-client-ts` + +### Step 1.3 验证 + +- [ ] 配置 Keycloak → OIDC 登录成功,`get_identity_id()` 返回 `user:sub_claim` +- [ ] 配置 GitHub OAuth → OAuth 登录成功 +- [ ] 不配置任何 Provider → 匿名模式,行为与 0.7 现版本一致 +- [ ] `get_sso_token()` 返回当前用户的 OIDC access_token + +--- + +## Phase 2:插件框架 + Superset 插件 + +> 对应:[Plugin 文档 § 5~10](1-data-source-plugin-architecture.md#5-插件架构总体设计)、[SSO 文档 § 4 Layer 2](1-sso-plugin-architecture.md#4-layer-2数据源插件系统-datasourceplugin)、[SSO 文档 § 11 Phase 2](1-sso-plugin-architecture.md#11-实施路径) + +**目标**:建立插件框架,将 0.6 Superset 集成迁移为第一个插件。 + +### Step 2.0 先写测试 + +#### 2.0.1 插件框架测试(实现 Step 2.1 之前写) + +**`tests/backend/unit/test_plugin_discovery.py`** — 插件自动发现 + +```python +# 要验证的行为(基于 SSO 文档 § 4.4): +# - plugins/ 下有合法子包(含 plugin_class)→ 被发现并注册 +# - plugins/ 下有子包但缺 plugin_class → 跳过,记录警告 +# - plugin_class.manifest() 中 required_env 全满足 → 启用 +# - required_env 缺一个 → 跳过,记入 DISABLED_PLUGINS +# - PLUGIN_BLOCKLIST 中列出的 plugin_id → 强制跳过 +# - 导入异常(如缺依赖)→ 优雅降级,不影响其他插件 + +# mock 策略:在 tmp_path 下构造包含 __init__.py 的 dummy plugin 包, +# monkeypatch plugins 包的 __path__ 指向 tmp_path。 +``` + +**`tests/backend/unit/test_plugin_data_writer.py`** — PluginDataWriter 写入工具 + +```python +# 要验证的行为(基于 Plugin 文档 § 6.2): +# - write_dataframe(df, name, overwrite=True) → 写入 Parquet,返回正确元数据 +# - write_dataframe(df, name, overwrite=True) 第二次 → 覆盖同名表 +# - write_dataframe(df, name, overwrite=False) 同名已存在 → 自动加后缀 _1 +# - write_arrow(arrow_table, name) → 跳过 pandas 转换,直接写入 +# - write_batches → append → finish → 合并为一个 Parquet 文件 +# - source_metadata 完整写入 loader_metadata +# - 表名 sanitize(特殊字符替换) + +# mock 策略:Workspace 使用 tmp_path 下的真实临时目录,验证实际 Parquet 文件。 +# 使用 Flask test_request_context 提供 identity(PluginDataWriter 内部调用 get_identity_id)。 +``` + +**`tests/backend/integration/test_plugin_app_config.py`** — `/api/app-config` 插件字段 + +```python +# 要验证的行为(基于 Plugin 文档 § 8.1): +# - 有插件启用时,/api/app-config 响应包含 PLUGINS 字段 +# - PLUGINS 字段合并了 manifest() 和 get_frontend_config() 的内容 +# - 无插件启用时,PLUGINS 为空 dict 或不存在 +# - 插件的敏感配置(如 SUPERSET_URL 原始值)不暴露给前端 + +# mock 策略:注册一个 DummyPlugin 到 ENABLED_PLUGINS,用 Flask test_client 请求。 +``` + +#### 2.0.2 Superset 插件测试(实现 Step 2.2 之前写) + +先准备 Superset API 的 fixture 文件(从真实 Superset 录制或按 API 文档构造): + +``` +tests/backend/fixtures/superset/ +├── auth_login_200.json # {"access_token": "eyJ...", "refresh_token": "..."} +├── auth_login_401.json # {"message": "Invalid credentials"} +├── me_200.json # {"result": {"username": "alice", ...}} +├── datasets_list_200.json # {"result": [{"id": 42, "table_name": "sales", ...}]} +├── dataset_detail_42.json # {"result": {"id": 42, "columns": [...], ...}} +├── dashboard_list_200.json # {"result": [{"id": 7, "dashboard_title": "Sales", ...}]} +├── sqllab_execute_200.json # {"data": [{"region": "Asia", "amount": 100}, ...]} +└── csrf_token_200.json # {"result": "abc123"} +``` + +**`tests/backend/integration/test_superset_plugin.py`** — Superset 插件路由集成测试 + +```python +# 要验证的行为(基于 Plugin 文档 § 9.1 端到端流程): +# +# 认证路由: +# - POST /api/plugins/superset/auth/login {username, password} +# → mock SupersetClient 返回 auth_login_200 → 200 + session 中存入 token +# - POST /api/plugins/superset/auth/login 密码错误 +# → mock 返回 auth_login_401 → 401 +# - GET /api/plugins/superset/auth/status +# → session 无 token → {"authenticated": false} +# → session 有 token → {"authenticated": true, "user": "alice"} +# +# 目录路由: +# - GET /api/plugins/superset/catalog/datasets +# → mock 返回 datasets_list_200 → 200 + 数据集列表 +# - 未认证时访问目录 → 401 +# +# 数据加载路由: +# - POST /api/plugins/superset/data/load-dataset {dataset_id: 42} +# → mock SQL Lab 返回 sqllab_execute_200 +# → 验证 Workspace 中生成了 Parquet 文件 +# → 响应包含 {table_name, row_count, columns} +# - POST /api/plugins/superset/data/refresh +# → 用 stored load_params 重新加载 → 覆盖同名表 + +# mock 策略: +# - SupersetClient 的所有 HTTP 调用通过 patch("requests.Session.get/post") 拦截 +# - 返回 fixture 目录中对应的 JSON +# - Workspace 使用 tmp_path 真实临时目录 +# - Flask session 通过 test_client 的 session_transaction 注入 token +``` + +**`tests/backend/unit/test_superset_client.py`** — SupersetClient 单元测试 + +```python +# 要验证的行为(基于 0.6 superset_client.py 已有逻辑): +# - get_datasets() → 正确解析 /api/v1/dataset/ 响应 +# - get_dataset(42) → 正确解析单个数据集详情 +# - execute_sql() → 正确调用 SQL Lab API,返回数据行 +# - get_dashboards() → 正确解析仪表盘列表 +# - HTTP 错误(500/超时)→ 抛出有意义的异常 +# - CSRF token 在需要时自动获取 + +# mock 策略:patch requests.Session,返回 fixture JSON。 +``` + +#### 2.0.3 前端插件框架测试(实现 Step 2.3 之前写) + +**`tests/frontend/unit/plugins/registry.test.ts`** — 插件动态加载 + +```typescript +// 要验证的行为(基于 Plugin 文档 § 7.2 + SSO 文档 § 4.4): +// - 从 /api/app-config 获取的 plugins 列表 → 动态加载对应模块 +// - 插件模块导出 manifest + PanelComponent → 注册成功 +// - 插件模块导出不完整 → 跳过,console.warn +// - 空 plugins 列表 → 返回空数组,无报错 +``` + +**`tests/frontend/unit/plugins/PluginHost.test.tsx`** — 插件容器组件 + +```tsx +// 要验证的行为(基于 Plugin 文档 § 7.2): +// - 有 2 个已注册插件 → 渲染 2 个 Tab +// - 点击 Tab → 切换到对应插件面板 +// - 0 个插件 → 不渲染插件区域 +// - 插件面板调用 onDataLoaded → 触发表列表刷新 +``` + +### Step 2.1 后端插件框架 + +| 任务 | 产出文件 | 参考 | +|------|---------|------| +| 插件基类 `DataSourcePlugin` | `plugins/base.py` | [Plugin § 6.1](1-data-source-plugin-architecture.md#61-插件基类)、[SSO § 4.2](1-sso-plugin-architecture.md#4-layer-2数据源插件系统-datasourceplugin) | +| 插件自动发现 `discover_and_register()` | `plugins/__init__.py` | [SSO § 4.4](1-sso-plugin-architecture.md#44-插件注册与发现) | +| 插件数据写入工具 `PluginDataWriter` | `plugins/data_writer.py` | [Plugin § 6.2](1-data-source-plugin-architecture.md#62-插件加载的数据怎么进入-workspace) | +| `app.py` 集成 — 调用 `discover_and_register()` | `app.py` 修改 | [SSO § 4.4](1-sso-plugin-architecture.md#44-插件注册与发现) | +| `/api/app-config` 返回 plugins 字段 | `app.py` 修改 | [Plugin § 8.1](1-data-source-plugin-architecture.md#81-apiapp-config-中的插件字段组装) | + +### Step 2.2 Superset 插件后端 + +| 任务 | 产出文件 | 参考 | +|------|---------|------| +| `SupersetPlugin` 实现(manifest + blueprint) | `plugins/superset/__init__.py` | [Plugin § 10.4](1-data-source-plugin-architecture.md#104-supersetplugin-实现) | +| 迁移 `superset_client.py` | `plugins/superset/superset_client.py` | [Plugin § 4.2](1-data-source-plugin-architecture.md#42-后端模块) | +| 迁移 `auth_bridge.py` | `plugins/superset/auth_bridge.py` | 同上 | +| 迁移 `catalog.py` | `plugins/superset/catalog.py` | 同上 | +| 迁移认证路由(+ SSO 透传) | `plugins/superset/routes/auth.py` | [SSO § 4.3](1-sso-plugin-architecture.md#43-插件与-sso-的集成模式)、[SSO § 6](1-sso-plugin-architecture.md#6-sso-token-透传机制) | +| 迁移目录路由 | `plugins/superset/routes/catalog.py` | [Plugin § 4.2](1-data-source-plugin-architecture.md#42-后端模块) | +| 迁移数据加载路由(DuckDB → Workspace Parquet) | `plugins/superset/routes/data.py` | [Plugin § 10.2](1-data-source-plugin-architecture.md#102-核心改动) | + +**关键改动**:`data_routes.py` 从 0.6 的 DuckDB 写入改为 0.7 的 Workspace Parquet 写入([Plugin § 10.2](1-data-source-plugin-architecture.md#102-核心改动))。 + +> **注**:0.6 Superset 集成代码在独立的定制分支中(`data-formulator-0.6`),0.7 上游代码库不含任何 Superset 残留。此处是将 0.6 代码**迁入**0.7 插件框架,无需清理。 + +### Step 2.3 前端插件框架 + +| 任务 | 产出文件 | 参考 | +|------|---------|------| +| 插件类型定义 | `src/plugins/types.ts` | [Plugin § 7.1](1-data-source-plugin-architecture.md#71-插件面板契约) | +| 插件动态加载(`import.meta.glob`) | `src/plugins/registry.ts` | [SSO § 4.4](1-sso-plugin-architecture.md#44-插件注册与发现) | +| 插件容器组件 `PluginHost` | `src/plugins/PluginHost.tsx` | [Plugin § 7.2](1-data-source-plugin-architecture.md#72-plugin-host前端插件容器) | +| `dfSlice.tsx` 增加 `plugins` 字段 | `src/app/dfSlice.tsx` 修改 | [SSO § 10.2](1-sso-plugin-architecture.md#102-前端新增文件) | +| `UnifiedDataUploadDialog.tsx` 渲染插件 Tab | 修改 | [Plugin § 7.2](1-data-source-plugin-architecture.md#72-plugin-host前端插件容器) | +| `onDataLoaded` 回调 → 刷新表列表 / loadTable | 修改 | [Plugin § 7.3](1-data-source-plugin-architecture.md#73-数据加载完成后的流程) | + +### Step 2.4 Superset 插件前端 + +| 任务 | 产出文件 | 参考 | +|------|---------|------| +| 插件入口 + manifest | `src/plugins/superset/index.ts` | [Plugin § 10.3](1-data-source-plugin-architecture.md#103-前端) | +| 迁移 SupersetPanel | `src/plugins/superset/SupersetPanel.tsx` | [Plugin § 4.3](1-data-source-plugin-architecture.md#43-前端组件) | +| 迁移 SupersetCatalog | `src/plugins/superset/SupersetCatalog.tsx` | 同上 | +| 迁移 SupersetDashboards | `src/plugins/superset/SupersetDashboards.tsx` | 同上 | +| 迁移 SupersetFilterDialog | `src/plugins/superset/SupersetFilterDialog.tsx` | 同上 | +| 迁移 SupersetLogin | `src/plugins/superset/SupersetLogin.tsx` | 同上 | +| API 封装 | `src/plugins/superset/api.ts` | 同上 | + +### Step 2.5 验证 + +- [ ] 设置 `SUPERSET_URL` → 前端自动出现 Superset Tab +- [ ] 手动登录 Superset → 浏览数据集 → 加载数据到 Workspace +- [ ] SSO 模式(Phase 1 已完成)→ 无需输入 Superset 密码即可访问 +- [ ] 不设置 `SUPERSET_URL` → 无任何影响,行为与现版本一致 +- [ ] 数据刷新:加载后点刷新按钮 → 重新拉取最新数据([Plugin § 7.4](1-data-source-plugin-architecture.md#74-数据刷新协议)) + +--- + +## Phase 3:凭证保险箱 + +> 对应:[SSO 文档 § 5 Layer 3](1-sso-plugin-architecture.md#5-layer-3凭证保险箱-credentialvault)、[SSO 文档 § 11 Phase 3](1-sso-plugin-architecture.md#11-实施路径) + +**目标**:服务端加密凭证存储,替代 Session 级别的临时存储。 + +### Step 3.0 先写测试 + +**`tests/backend/unit/test_credential_vault.py`** — LocalCredentialVault 单元测试 + +```python +# 要验证的行为(基于 SSO 文档 § 5.2~5.3): +# - store(user_a, "superset", {username, password}) → 成功存入 +# - retrieve(user_a, "superset") → 返回明文 {username, password} +# - retrieve(user_b, "superset") → 返回 None(用户隔离) +# - store 同一 (user, source) 两次 → 后者覆盖前者 +# - delete(user_a, "superset") → 删除后 retrieve 返回 None +# - list_sources(user_a) → ["superset"],delete 后为 [] +# - 换一个 CREDENTIAL_VAULT_KEY 实例化 → 之前存的凭证解密失败,返回 None(非崩溃) +# - 空密钥 → 初始化时报错 + +# mock 策略:全部使用 tmp_path 下的真实 SQLite 文件 + 真实 Fernet 密钥。 +# 不需要 mock 任何东西——这个模块足够独立。 +``` + +**`tests/backend/unit/test_credential_vault_factory.py`** — Vault 工厂 + +```python +# 要验证的行为(基于 SSO 文档 § 5.4): +# - CREDENTIAL_VAULT_KEY 已设置 → get_credential_vault() 返回 LocalCredentialVault 实例 +# - CREDENTIAL_VAULT_KEY 未设置 → 返回 None +# - CREDENTIAL_VAULT=local → 使用 LocalCredentialVault +# - CREDENTIAL_VAULT=unknown → 返回 None,记录警告 +# - 多次调用 get_credential_vault() → 返回同一个单例 + +# mock 策略:monkeypatch 环境变量 + tmp_path。 +``` + +**`tests/backend/integration/test_credential_routes.py`** — 凭证 API 端点 + +```python +# 要验证的行为(基于 SSO 文档 § 5.5): +# - POST /api/credentials/store → 存储成功 +# - GET /api/credentials/list → 返回已存储的 source_key 列表(不含凭证内容) +# - POST /api/credentials/delete → 删除后 list 不再包含 +# - Vault 未配置时 → /store 和 /delete 返回 503 +# - 不同用户(不同 X-Identity-Id)之间凭证隔离 + +# mock 策略:Flask test_client + 真实 tmp_path Vault + X-Identity-Id 头切换身份。 +``` + +**`tests/backend/integration/test_plugin_auth_with_vault.py`** — 插件认证 + Vault 联动 + +```python +# 要验证的行为(基于 SSO 文档 § 4.3 三种认证模式): +# - Vault 中有已存凭证 → 插件 auth/login 自动取出,无需用户输入 +# - Vault 中凭证已过期(外部系统密码已改)→ 返回 vault_stale 提示 +# - 用户手动输入 + remember=true → 凭证存入 Vault +# - SSO token 可用 + 插件 supports_sso_passthrough → 自动透传 + +# mock 策略:patch SupersetClient 的认证调用 + 真实 Vault。 +``` + +### Step 3.1 后端 + +| 任务 | 产出文件 | 参考 | +|------|---------|------| +| Vault 抽象接口 | `credential_vault/base.py` | [SSO § 5.2](1-sso-plugin-architecture.md#52-credentialvault-接口) | +| 本地加密实现(SQLite + Fernet) | `credential_vault/local_vault.py` | [SSO § 5.3](1-sso-plugin-architecture.md#53-本地加密实现) | +| Vault 工厂 | `credential_vault/__init__.py` | [SSO § 5.4](1-sso-plugin-architecture.md#54-vault-工厂) | +| 凭证管理 API | `credential_routes.py` | [SSO § 5.5](1-sso-plugin-architecture.md#55-凭证管理-api) | +| 插件认证路由增强 — 自动从 Vault 取凭证 | `plugins/superset/routes/auth.py` 修改 | [SSO § 4.3](1-sso-plugin-architecture.md#43-插件与-sso-的集成模式) | + +### Step 3.2 前端 + +| 任务 | 产出文件 | 参考 | +|------|---------|------| +| 凭证管理 UI | `src/plugins/CredentialManager.tsx` | [SSO § 10.2](1-sso-plugin-architecture.md#102-前端新增文件) | + +### Step 3.3 验证 + +- [ ] 设置 `CREDENTIAL_VAULT_KEY` → 用户输入 Superset 密码后加密存储 +- [ ] 换浏览器 → SSO 登录 → 已存凭证自动可用,无需重新输入 +- [ ] 不设置 `CREDENTIAL_VAULT_KEY` → 回退到 Session 存储(现有行为) + +--- + +## Phase 4:第二个插件验证 + +> 对应:[SSO 文档 § 11 Phase 4](1-sso-plugin-architecture.md#11-实施路径) + +**目标**:用 Metabase 插件验证框架通用性 — **核心代码零修改**。 + +### Step 4.0 先写测试 — 框架通用性验证 + +Phase 4 的测试本身就是核心交付物。它验证的不是 Metabase 的业务逻辑,而是**插件框架的扩展性承诺**。 + +**`tests/backend/contract/test_plugin_zero_core_change.py`** — 核心代码零修改契约 + +```python +# 这个测试在 Metabase 插件代码写完后运行: +# - 检查 plugins/__init__.py 的 git diff → 无修改 +# - 检查 app.py 的 git diff → 无修改 +# - 检查 src/plugins/registry.ts 的 git diff → 无修改 +# - Metabase plugin 仅存在于 plugins/metabase/ 和 src/plugins/metabase/ +# - discover_and_register() 能发现 Metabase 插件 +# - /api/app-config 返回的 PLUGINS 中包含 metabase +# +# 这是一个**契约测试**:如果未来框架改动导致新增插件需要改核心代码, +# 这个测试应当失败,提醒开发者修复框架的扩展性。 +``` + +**`tests/backend/integration/test_metabase_plugin.py`** — Metabase 插件路由 + +```python +# 与 Superset 插件测试同结构,mock Metabase REST API: +# - /api/plugins/metabase/auth/login → mock Metabase session API +# - /api/plugins/metabase/catalog/questions → mock /api/card/ 列表 +# - /api/plugins/metabase/data/load-question → mock 查询结果 + 写入 Workspace +``` + +| 任务 | 产出文件 | +|------|---------| +| Metabase 插件后端 | `plugins/metabase/` | +| Metabase 插件前端 | `src/plugins/metabase/` | + +**验证标准**:仅新增目录,无需修改 `plugins/__init__.py`、`registry.ts`、`app.py` 等任何现有文件。 + +--- + +## Phase 5:完善与增强 + +> 对应:[SSO 文档 § 11 Phase 5](1-sso-plugin-architecture.md#11-实施路径)、[Plugin 文档 § 7.7](1-data-source-plugin-architecture.md#77-外部系统元数据拉取) + +| 任务 | 优先级 | 参考 | +|------|--------|------| +| 外部元数据拉取(列描述、语义类型) | P0 | [Plugin § 7.7](1-data-source-plugin-architecture.md#77-外部系统元数据拉取) | +| 多协议 SSO 支持(SAML / LDAP / CAS) | P1 | [SSO § 3.9](1-sso-plugin-architecture.md#39-多协议支持从-oidc-扩展到-saml--ldap--cas--反向代理) | +| ExternalDataLoader 改进 | P1 | [2-external-dataloader-enhancements.md](2-external-dataloader-enhancements.md) | +| 插件错误边界和降级处理 | P1 | — | +| 管理员配置 UI | P2 | — | +| 审计日志 | P2 | — | + +> 注:单元测试和集成测试已嵌入 Phase 1~4 的每个 Step 中,不再单独列为待办。 + +--- + +## 全局依赖清单 + +| 包 | 用途 | 引入阶段 | 安装 | +|----|------|---------|------| +| `PyJWT` | OIDC JWT 验签 | Phase 1 | `pip install PyJWT` | +| `cryptography` | Fernet 加密 + JWT 验签 + 测试密钥生成 | Phase 1 | `pip install cryptography` | +| `oidc-client-ts` | 前端 OIDC PKCE | Phase 1 | `npm install oidc-client-ts` | +| `requests` | 插件 HTTP 调用 | Phase 2 | 已有 | + +`cryptography` 同时用于生产代码(Fernet 加密、JWT RS256 验签)和测试(生成 RSA 密钥对签发测试 JWT),不需要额外的测试专用依赖。 + +现有 `pytest`、`vitest`、`unittest.mock`、`flask.testing` 已满足所有测试需求,**不需要引入新的测试框架或 mock 库**。 + +> 参考:[SSO 文档 附录 B](1-sso-plugin-architecture.md#附录-b关键依赖) + +--- + +## 核心代码改动范围(一次性) + +以下文件在 Phase 1~2 中需要修改。Phase 3+ 不再触碰核心代码。 + +| 文件 | 改动阶段 | 改动量 | 说明 | +|------|---------|--------|------| +| `py-src/.../auth.py` | Phase 1 | ~60 行 | Provider 自动发现 + `get_sso_token()` | +| `py-src/.../app.py` | Phase 1+2 | ~25 行 | `init_auth()` + `discover_and_register()` + app-config | +| `src/app/App.tsx` | Phase 1 | ~35 行 | 统一 initAuth + 登录 UI | +| `src/app/utils.tsx` | Phase 1 | ~15 行 | Bearer token + 401 重试 | +| `src/app/dfSlice.tsx` | Phase 2 | ~5 行 | `ServerConfig.plugins` | +| `src/views/UnifiedDataUploadDialog.tsx` | Phase 2 | ~20 行 | PluginHost 渲染 | + +> 参考:[SSO 文档 § 10.3](1-sso-plugin-architecture.md#103-对现有文件的改动清单) + +--- + +## 文件结构总览 + +完成全部 Phase 后的新增文件结构(含测试): + +``` +py-src/data_formulator/ +├── auth_providers/ ← Phase 1 +│ ├── base.py +│ ├── azure_easyauth.py +│ ├── oidc.py +│ └── github_oauth.py +├── auth_gateways/ ← Phase 1 +│ ├── github_gateway.py +│ └── logout.py +├── credential_vault/ ← Phase 3 +│ ├── base.py +│ └── local_vault.py +├── credential_routes.py ← Phase 3 +├── plugins/ ← Phase 2 +│ ├── base.py +│ ├── data_writer.py +│ └── superset/ +│ ├── __init__.py +│ ├── superset_client.py +│ ├── auth_bridge.py +│ ├── catalog.py +│ └── routes/ + +src/ +├── app/ +│ ├── oidcConfig.ts ← Phase 1 +│ └── OidcCallback.tsx ← Phase 1 +├── plugins/ ← Phase 2 +│ ├── types.ts +│ ├── registry.ts +│ ├── PluginHost.tsx +│ ├── CredentialManager.tsx ← Phase 3 +│ └── superset/ +│ ├── index.ts +│ ├── SupersetPanel.tsx +│ └── ... + +tests/ +├── backend/ +│ ├── unit/ +│ │ ├── test_oidc_provider.py ← Phase 1 +│ │ ├── test_github_oauth_provider.py ← Phase 1 +│ │ ├── test_azure_easyauth_provider.py ← Phase 1 +│ │ ├── test_plugin_discovery.py ← Phase 2 +│ │ ├── test_plugin_data_writer.py ← Phase 2 +│ │ ├── test_superset_client.py ← Phase 2 +│ │ ├── test_credential_vault.py ← Phase 3 +│ │ └── test_credential_vault_factory.py ← Phase 3 +│ ├── security/ +│ │ └── test_auth_provider_chain.py ← Phase 1 +│ ├── integration/ +│ │ ├── test_auth_info_endpoint.py ← Phase 1 +│ │ ├── test_plugin_app_config.py ← Phase 2 +│ │ ├── test_superset_plugin.py ← Phase 2 +│ │ ├── test_credential_routes.py ← Phase 3 +│ │ ├── test_plugin_auth_with_vault.py ← Phase 3 +│ │ └── test_metabase_plugin.py ← Phase 4 +│ ├── contract/ +│ │ └── test_plugin_zero_core_change.py ← Phase 4 +│ └── fixtures/ +│ └── superset/ ← Phase 2 +│ ├── auth_login_200.json +│ ├── datasets_list_200.json +│ ├── dataset_detail_42.json +│ ├── sqllab_execute_200.json +│ └── ... +├── frontend/ +│ └── unit/ +│ ├── app/ +│ │ └── fetchWithIdentity.test.ts ← Phase 1 +│ └── plugins/ +│ ├── registry.test.ts ← Phase 2 +│ └── PluginHost.test.tsx ← Phase 2 +``` + +> 参考:[SSO 文档 § 10](1-sso-plugin-architecture.md#10-目录结构) + +--- + +## 文档交付要求 + +每个 Phase 完成时,除代码和测试外,还需交付或更新以下文档: + +| Phase | 必须交付的文档 | 说明 | +|-------|-------------|------| +| Phase 1 | `auth_providers/README.md` | 如何新增一个 AuthProvider:基类契约、环境变量约定、`get_auth_info()` 返回格式、测试方法 | +| Phase 2 | `plugins/README.md` | **插件开发指南**:目录约定、`plugin_class` 暴露方式、manifest 字段说明、路由前缀规则、PluginDataWriter 用法、前端 `index.ts` 导出规范、fixture 录制方法 | +| Phase 2 | `.env.template` 更新 | 新增 `SUPERSET_URL` 等插件环境变量的说明 | +| Phase 3 | `credential_vault/README.md` | Vault 配置方式、密钥生成命令、插件如何调用 Vault API | +| Phase 4 | `plugins/README.md` 更新 | 用 Metabase 插件作为实际案例补充到指南中,验证文档的可操作性 | +| 每个 Phase | `CHANGELOG.md` 追加 | 简要记录本阶段新增的能力和配置变更 | + +**核心原则**:文档写给"下一个要开发新插件的人"看。如果按照 `plugins/README.md` 的步骤无法从零完成一个新插件,说明文档不合格。Phase 4(Metabase)就是对这份文档的实战验证。 diff --git a/design-docs/1-data-source-plugin-architecture.md b/design-docs/1-data-source-plugin-architecture.md new file mode 100644 index 00000000..f883cbd6 --- /dev/null +++ b/design-docs/1-data-source-plugin-architecture.md @@ -0,0 +1,1801 @@ +# Data Formulator 数据源插件架构设计方案 + +## 目录 + +1. [背景与动机](#1-背景与动机) +2. [部署模型分析:个人工具 vs 团队平台](#2-部署模型分析个人工具-vs-团队平台) +3. [现状分析](#3-现状分析) +4. [0.6 版本 Superset 集成回顾](#4-06-版本-superset-集成回顾) +5. [插件架构总体设计](#5-插件架构总体设计) +6. [后端插件接口](#6-后端插件接口) +7. [前端插件接口](#7-前端插件接口) +8. [插件注册与发现](#8-插件注册与发现) +9. [数据流设计](#9-数据流设计) +10. [Superset 插件迁移示例](#10-superset-插件迁移示例) +11. [与现有 ExternalDataLoader 的关系](#11-与现有-externaldataloader-的关系) +12. [插件 i18n 自包含方案](#12-插件-i18n-自包含方案) +13. [目录结构](#13-目录结构) +14. [实施路径](#14-实施路径) +15. [关键设计难点:外部系统配置与用户身份](#15-关键设计难点外部系统配置与用户身份) +16. [FAQ](#16-faq) +17. [附录 A:核心代码改动清单](#附录-a核心代码改动清单) +18. [附录 B:新增插件的完整步骤](#附录-b新增插件的完整步骤零核心改动) +19. [附录 C:关联文档](#附录-c关联文档) + +--- + +## 1. 背景与动机 + +### 1.1 核心需求 + +Data Formulator 需要对接外部 BI/报表系统(如 Apache Superset、Metabase、Power BI 等)作为数据源,让用户可以: + +- 用外部系统的**账号权限**登录 +- 浏览该用户**有权访问**的数据集、仪表盘、报表 +- 将数据拉取到 Data Formulator 中进行可视化分析 + +### 1.2 为什么需要插件机制 + +在 0.6 版本中,我们已经实现了 Superset 集成,但存在以下问题: + +| 问题 | 说明 | +|------|------| +| **对核心代码侵入较高** | 修改了 `app.py`、`dfSlice.tsx`、`App.tsx`、`utils.tsx`、`UnifiedDataUploadDialog.tsx` 等多个核心文件 | +| **不可复用** | 如果再集成一个 Metabase,需要重复修改同一批核心文件 | +| **耦合认证逻辑** | Superset 的 JWT 认证直接嵌入 Flask session,与应用认证逻辑耦合 | +| **升级困难** | 上游 Data Formulator 版本更新时,合并冲突概率高 | + +**插件机制的价值**:每个外部系统的集成代码自成一体(后端 + 前端),对核心代码的修改只需一次性地建立插件框架即可。后续新增任何 BI 系统,只需编写一个新插件,**不再需要修改核心代码**。 + +--- + +## 2. 部署模型分析:个人工具 vs 团队平台 + +### 2.1 数据存储模型 + +Data Formulator 的所有数据统一通过 **Workspace** 管理。Workspace 后端由 `WORKSPACE_BACKEND` 配置决定,支持多种部署形态: + +``` +┌────────────────────────────────────────────────────────┐ +│ Workspace 统一存储模型 │ +│ │ +│ 所有数据来源 (Upload/Paste/URL/DB/插件) │ +│ ↓ │ +│ loadTable → Workspace │ +│ ↓ │ +│ ┌──────────────────────────────────────────────────┐ │ +│ │ WORKSPACE_BACKEND = ? │ │ +│ │ │ │ +│ │ local → 本地磁盘 (~/.data_formulator/) │ │ +│ │ ephemeral → 仅内存(会话结束即消失) │ │ +│ │ cloud → 远程对象存储(未来) │ │ +│ └──────────────────────────────────────────────────┘ │ +│ │ +│ 前端始终只拿 sample rows + 元数据 │ +└────────────────────────────────────────────────────────┘ +``` + +> **历史说明**:早期版本中曾有 `storeOnServer` 用户开关和 `DISABLE_DATABASE` 环境变量, +> 分别用于让用户选择"浏览器临时存储 vs 磁盘持久化"和"禁用服务端存储"。 +> 现在这些概念已被 `WORKSPACE_BACKEND` 统一取代——`ephemeral` 模式等价于旧的纯浏览器模式。 + +### 2.2 接入 BI 系统后的模型变化 + +当需要集成 Superset 等 BI 系统时,部署模型发生了根本变化: + +``` +团队部署模式(插件场景的实际部署): + + ┌───────────┐ ┌──────────────┐ ┌────────────┐ + │ 用户A浏览器│────→│ │────→│ │ + │ 用户B浏览器│────→│ DF 服务器 │────→│ Superset │ + │ 用户C浏览器│────→│ (IT部署管理) │────→│ (IT管理) │ + └───────────┘ └──────────────┘ └────────────┘ + + 在这个模型下: + - "服务器"不再是用户自己的电脑 + - 数据必然经过服务器(插件后端调 Superset API) + - 隐私关注点变成了"谁控制服务器",而不是"数据在不在服务器上" + - BI 系统的连接地址是基础设施,由 IT 管理,不是用户自行添加 +``` + +### 2.3 团队部署下仍存在的差异 + +Workspace 统一存储解决了数据持久化的问题,但个人与团队部署之间仍有两个需要关注的差异: + +| 差异 | 个人模式 | 团队模式 | +|------|---------|---------| +| 数据库/BI 连接参数 | 前端填,自己用方便 | 应服务端集中管理(减少重复填写、防止 SSRF) | +| 模型 API Key | 前端填,自己的 Key | 服务端全局配置(0.7 已实现) | + +> 0.7 版本已将模型管理升级为"服务端全局配置"。插件系统沿着同样的方向继续——连接端点由服务端配置,用户只需认证。 + +### 2.4 对插件系统的设计决策 + +由于所有数据统一走 Workspace,插件系统只需关注两个插件特有的问题: + +**1. 插件配置(URL 等):只在服务端配置,不在前端添加。** + +- BI 系统的 URL 是**基础设施端点**,不是用户数据,由 IT 部门管理 +- 用户只需**认证**(登录 Superset),而不是"添加一个 Superset 连接" +- 禁止前端输入任意 URL(防止 SSRF) + +**2. 插件认证:per-user 凭据,服务端管理。** + +- 用户对 BI 系统的登录凭据存储在服务端(CredentialVault),不暴露给前端 +- 尊重 BI 系统自身的权限模型(RBAC / RLS) + +``` +┌──────────────────────────────────────────────────────────────┐ +│ Data Formulator │ +│ │ +│ 数据来源 │ +│ ┌────────────────────────┐ ┌───────────────────────────┐ │ +│ │ 内置来源 │ │ 插件来源 │ │ +│ │ Upload / Paste / URL │ │ Superset / Metabase / ... │ │ +│ │ Database / Extract │ │ │ │ +│ └──────────┬─────────────┘ └─────────────┬─────────────┘ │ +│ │ │ │ +│ └──────────┬───────────────────┘ │ +│ ↓ │ +│ loadTable → Workspace │ +│ (统一数据入口 → 统一存储) │ +└──────────────────────────────────────────────────────────────┘ +``` + +### 2.5 各层的配置与数据归属总结 + +| 层级 | 谁配置 | 存在哪里 | 示例 | +|------|--------|---------|------| +| **插件端点** | IT 管理员 | 服务端 `.env` | `PLG_SUPERSET_URL=http://...` | +| **用户认证** | 用户自己 | Flask Session(服务端内存) | Superset JWT Token | +| **用户数据** | 插件自动加载 | Workspace(由 `WORKSPACE_BACKEND` 决定存储位置) | 从 Superset 拉取的数据集 | +| **前端状态** | 自动管理 | Redux Store(浏览器内存) | sample rows、表元数据 | + +--- + +## 3. 现状分析 + +### 3.1 当前数据加载架构(0.7 版本) + +``` +用户操作 + ├─ Upload (本地文件) ──→ 解析 → DictTable + ├─ Paste (粘贴数据) ──→ 解析 → DictTable + ├─ URL (远程文件) ──→ fetch → 解析 → DictTable + ├─ Explore (示例数据) ──→ fetch → 解析 → DictTable + ├─ Extract (AI 提取) ──→ Agent → 解析 → DictTable + └─ Database (外部数据库) ──→ ExternalDataLoader → Arrow → Parquet + │ + 所有路径最终 → loadTable thunk → Redux Store +``` + +### 3.2 后端现有扩展点 + +**ExternalDataLoader** — 面向数据库的抽象基类: + +```python +class ExternalDataLoader(ABC): + def __init__(self, params: dict) # 连接参数 + def list_tables(...) # 列出表 + def fetch_data_as_arrow(...) # 拉取数据(→ Arrow) + def ingest_to_workspace(...) # 写入 workspace(→ Parquet) + def list_params() # 声明所需参数 + def auth_instructions() # 认证说明 +``` + +注册方式(`data_loader/__init__.py`): + +```python +_LOADER_SPECS = [ + ("mysql", "...mysql_data_loader", "MySQLDataLoader", "pymysql"), + ("postgresql", "...postgresql_data_loader", "PostgreSQLDataLoader", "psycopg2-binary"), + # ... 共 9 种 +] +``` + +**这套机制适合数据库连接器**,但 **不适合 BI 系统集成**,因为 BI 系统需要: + +| 能力 | ExternalDataLoader | BI 系统需要 | +|------|:--:|:--:| +| 连接参数 | ✅ 简单 key-value | 需要 URL + 认证流程 | +| 认证 | ✅ 用户名/密码/密钥 | JWT / OAuth / SSO | +| 列出数据 | ✅ `list_tables()` | 数据集 + 仪表盘 + 报表 + 筛选条件 | +| 拉取数据 | ✅ `fetch_data_as_arrow()` | 通过 BI 系统的 SQL Lab / API 拉取(尊重 RBAC/RLS) | +| 前端 UI | ❌ 无(通用表单) | 需要专用的目录浏览、筛选、登录等 UI | +| 自有 API 路由 | ❌ 无 | 需要注册独立的 Blueprint | + +### 3.3 前端现有扩展点 + +数据加载入口统一在 `UnifiedDataUploadDialog.tsx`,支持 6 种 Tab: + +```typescript +type UploadTabType = 'menu' | 'upload' | 'paste' | 'url' | 'database' | 'extract' | 'explore'; +``` + +数据库入口由 `DBManagerPane` 组件处理,支持上述 9 种 ExternalDataLoader。 + +所有数据加载最终通过 `loadTable` thunk 进入 Redux Store。 + +--- + +## 4. 0.6 版本 Superset 集成回顾 + +### 4.1 架构概览 + +``` +前端 后端 Superset +┌─────────────┐ HTTP ┌────────────────┐ REST ┌──────────┐ +│ LoginView │──────────→│ auth_routes │───────────→│ JWT 登录 │ +│ SupersetPanel│──────────→│ catalog_routes │───────────→│ 数据集API│ +│ SupersetCatalog│────────→│ data_routes │───────────→│ SQL Lab │ +│ SupersetDashboards│─────→│ auth_bridge │ └──────────┘ +└─────────────┘ │ superset_client│ + │ catalog │ + └────────────────┘ + │ + ↓ + 写入 DuckDB(0.6) + / Workspace Parquet(0.7 目标) +``` + +### 4.2 后端模块 + +| 文件 | 职责 | +|------|------| +| `superset_client.py` | Superset REST API 封装(数据集列表、详情、仪表盘、SQL Lab 执行) | +| `auth_bridge.py` | JWT 登录/刷新/验证 | +| `auth_routes.py` | `/api/superset/auth/*` 认证 API | +| `catalog_routes.py` | `/api/superset/catalog/*` 数据集/仪表盘目录 API | +| `data_routes.py` | `/api/superset/data/*` 数据加载 API(含筛选条件) | +| `catalog.py` | 带 TTL 缓存的数据目录(两级:摘要/详情) | + +### 4.3 前端组件 + +| 组件 | 职责 | +|------|------| +| `LoginView.tsx` | 登录页(用户名密码 / SSO 弹窗) | +| `SupersetPanel.tsx` | Tab 容器(仪表盘 + 数据集) | +| `SupersetCatalog.tsx` | 数据集目录浏览(搜索、预览、加载) | +| `SupersetDashboards.tsx` | 仪表盘列表(展开查看数据集) | +| `SupersetDashboardFilterDialog.tsx` | 仪表盘筛选条件对话框 | + +### 4.4 对核心代码的改动 + +``` +app.py +50 行 (配置、Blueprint 注册、app-config 扩展) +dfSlice.tsx +3 字段 (SUPERSET_ENABLED、SSO_LOGIN_URL、AUTH_USER) +App.tsx +20 行 (登录逻辑、LoginView) +utils.tsx +6 URL (Superset API 地址) +UnifiedDataUploadDialog.tsx +30 行 (SplitDatabasePane + SupersetPanel) +DBTableManager.tsx +4 行 (监听 superset-dataset-loaded 事件) +``` + +### 4.5 可以复用的部分 + +核心的业务逻辑(SupersetClient、AuthBridge、Catalog、FilterBuilder)可以直接迁移为 Superset 插件的实现。 + +--- + +## 5. 插件架构总体设计 + +### 5.1 设计原则 + +1. **最小侵入**:核心代码只需一次性改动来建立插件框架,后续新增插件不再修改核心 +2. **自包含**:每个插件独立提供后端路由 + 前端组件 + 配置声明 +3. **自动发现**:后端通过目录扫描、前端通过 `import.meta.glob` 自动发现插件,新增插件无需修改任何注册表 +4. **可选加载**:插件通过环境变量启用,未启用的插件不加载任何代码 +5. **统一出口**:插件加载的数据最终通过现有的 `loadTable` 进入系统 +6. **权限透传**:尊重外部系统自身的权限模型(RBAC / RLS) +7. **统一范式**:与 AuthProvider(认证)、CredentialVault(凭证)共享"抽象基类 + 动态注册 + 环境变量启用"的插件设计范式(详见 `sso-plugin-architecture.md`) + +### 5.2 环境变量命名约定 + +系统中有三类环境变量驱动的自动发现机制,各自使用不同的命名空间以避免冲突: + +| 类别 | 前缀 | 发现机制 | 示例 | +|------|------|---------|------| +| **系统配置** | 无(直接命名) | 固定读取 | `LOG_LEVEL`、`FLASK_SECRET_KEY`、`WORKSPACE_BACKEND` | +| **LLM 模型** | `{PROVIDER}_`(遗留命名) | 扫描 `*_ENABLED=true` | `DEEPSEEK_ENABLED`、`DEEPSEEK_API_KEY`、`QWEN_MODELS` | +| **数据源插件** | **`PLG_`** + `{PLUGIN}_` | manifest 中 `required_env` 全部存在 | `PLG_SUPERSET_URL`、`PLG_GRAFANA_TIMEOUT` | +| **认证 Provider** | `AUTH_PROVIDER` 单选 + Provider 自有前缀 | `AUTH_PROVIDER=xxx` 指定 | `AUTH_PROVIDER=oidc`、`OIDC_ISSUER_URL` | +| **凭证保险箱** | `CREDENTIAL_VAULT_` | `CREDENTIAL_VAULT_KEY` 存在 | `CREDENTIAL_VAULT=local`、`CREDENTIAL_VAULT_KEY=...` | + +**为什么插件需要 `PLG_` 前缀?** + +LLM 模型的自动发现靠扫描所有 `*_ENABLED=true` 的环境变量。如果插件也使用裸前缀(如 `SUPERSET_SSO_ENABLED=true`),会被模型注册器误识别为 model provider。加 `PLG_` 前缀后,命名空间彻底隔离: + +```env +# ============================================================= +# LLM 模型配置(遗留命名,{PROVIDER}_ 前缀) +# ============================================================= +DEEPSEEK_ENABLED=true +DEEPSEEK_API_KEY=sk-xxx +DEEPSEEK_API_BASE=https://api.deepseek.com +DEEPSEEK_MODELS=deepseek-chat + +# ============================================================= +# 数据源插件(PLG_{PLUGIN}_ 前缀) +# ============================================================= +PLG_SUPERSET_URL=http://superset:8088 +PLG_SUPERSET_SSO=true + +PLG_GRAFANA_URL=http://grafana.example.com:3000 +PLG_GRAFANA_TIMEOUT=10 + +# ============================================================= +# 认证(无 PLG_ 前缀,单选机制不会冲突) +# ============================================================= +AUTH_PROVIDER=oidc +OIDC_ISSUER_URL=https://login.microsoftonline.com/xxx/v2.0 +OIDC_CLIENT_ID=abc123 +``` + +> **注意**:LLM 模型的 `{PROVIDER}_` 命名是遗留约定,暂不添加 `MODEL_` 前缀以保持向后兼容。 +> 未来如需统一,可分步迁移。当前只为新增的插件系统建立 `PLG_` 前缀规范。 + +### 5.3 概念模型 + +``` +┌──────────────────────────────────────────────────────────────────────┐ +│ Data Formulator 核心 │ +│ │ +│ ┌──────────────────────────────────────────────────────────────────┐ │ +│ │ Layer 1: AuthProvider 链 (SSO / Azure EasyAuth / 浏览器 UUID) │ │ +│ │ → 确定"你是谁" │ │ +│ └──────────────────────────────────────────────────────────────────┘ │ +│ │ +│ ┌──────────────────┐ ┌───────────────┐ ┌──────────────┐ │ +│ │ 前端 Plugin Host │ │ loadTable │ │ Workspace │ │ +│ │ (渲染插件面板) │ │ (统一数据入口)│ │ (Parquet存储)│ │ +│ └────────┬─────────┘ └───────┬───────┘ └──────┬───────┘ │ +│ │ │ │ │ +│ ┌────────┴────────────────────┴──────────────────┴───────┐ │ +│ │ Layer 2: Plugin Registry (自动扫描 + 环境变量门控) │ │ +│ └────────┬──────────────┬──────────────┬─────────────────┘ │ +│ │ │ │ │ +│ ┌────────┴─────┐ ┌──────┴─────┐ ┌──────┴──────┐ │ +│ │ Superset │ │ Metabase │ │ Power BI │ ... │ +│ │ Plugin │ │ Plugin │ │ Plugin │ │ +│ │ │ │ │ │ │ │ +│ │ ┌──────────┐ │ │ ┌────────┐ │ │ ┌─────────┐ │ │ +│ │ │ 后端路由 │ │ │ │ 后端 │ │ │ │ 后端 │ │ │ +│ │ │ 前端面板 │ │ │ │ 前端 │ │ │ │ 前端 │ │ │ +│ │ │ 认证逻辑 │ │ │ │ 认证 │ │ │ │ 认证 │ │ │ +│ │ │ 目录缓存 │ │ │ │ 目录 │ │ │ │ 目录 │ │ │ +│ │ └──────────┘ │ │ └────────┘ │ │ └─────────┘ │ │ +│ └──────────────┘ └────────────┘ └─────────────┘ │ +│ │ +│ ┌──────────────────────────────────────────────────────────────────┐ │ +│ │ Layer 3: CredentialVault (加密凭证存储,per-user per-source) │ │ +│ │ → 插件认证时自动存/取凭证 │ │ +│ └──────────────────────────────────────────────────────────────────┘ │ +│ │ +│ → 三层统一范式: 抽象基类 + 动态注册 + 环境变量启用 │ +│ → 详见 sso-plugin-architecture.md │ +└──────────────────────────────────────────────────────────────────────┘ +``` + +### 5.3 核心概念 + +| 概念 | 说明 | +|------|------| +| **DataSourcePlugin** | 一个外部 BI 系统的完整集成,包含后端和前端 | +| **Plugin Manifest** | 插件的自我描述(ID、名称、图标、配置需求、启用条件) | +| **Plugin Backend** | Flask Blueprint + 认证 + 目录 + 数据拉取 | +| **Plugin Frontend** | React 组件(面板 UI),在 `UnifiedDataUploadDialog` 中以 Tab 形式呈现 | +| **Plugin Registry** | 后端的插件发现与注册中心 | +| **Plugin Host** | 前端的插件容器,负责渲染已启用插件的面板 | + +--- + +## 6. 后端插件接口 + +### 6.1 插件基类 + +```python +# py-src/data_formulator/plugins/base.py + +from abc import ABC, abstractmethod +from typing import Any +from flask import Blueprint + + +class DataSourcePlugin(ABC): + """外部数据源插件的基类。 + + 每个插件需要实现以下内容: + 1. manifest() — 描述插件自身的元数据 + 2. create_blueprint() — 提供 Flask Blueprint(后端 API 路由) + 3. get_frontend_config() — 声明前端需要的信息(组件标识、配置) + 4. on_enable() / on_disable() — 生命周期钩子 + """ + + @staticmethod + @abstractmethod + def manifest() -> dict[str, Any]: + """返回插件的自我描述。 + + manifest() 只包含后端框架需要的声明性信息。 + UI 相关配置(catalog_entry_types 等)由 get_frontend_config() 返回。 + + Returns: + { + "id": "superset", # 唯一标识符,用作路由前缀和前端标识 + "name": "Apache Superset", # 显示名称 + "icon": "superset", # 前端图标标识 + "description": "...", # 简短描述 + "version": "1.0.0", + "env_prefix": "PLG_SUPERSET", # 环境变量前缀(PLG_SUPERSET_URL, etc.) + "required_env": ["PLG_SUPERSET_URL"], # 必需的环境变量(缺失则不启用) + "optional_env": ["PLG_SUPERSET_TIMEOUT"], + "auth_modes": ["sso", "jwt", "password"], # 支持的认证方式(数组) + "capabilities": [ # 框架识别的标准能力标识 + "datasets", # 可以列出数据集 + "dashboards", # 可以列出仪表盘 + "filters", # 支持数据筛选 + "preview", # 支持预览(GET /data/preview) + "refresh", # 支持带参数刷新(POST /data/refresh) + "batch_load", # 支持分批流式加载(NDJSON) + "metadata", # 可提供列描述、表描述等外部元数据 + ], + } + """ + pass + + @abstractmethod + def create_blueprint(self) -> Blueprint: + """创建 Flask Blueprint。 + + Blueprint 的 url_prefix 应为 /api/plugins// + 插件内部路由自行组织,例如: + /api/plugins/superset/auth/login + /api/plugins/superset/catalog/datasets + /api/plugins/superset/data/load-dataset + + Returns: + 配置好路由的 Flask Blueprint + """ + pass + + @abstractmethod + def get_frontend_config(self) -> dict[str, Any]: + """返回传递给前端的配置信息。 + + 这些信息会通过 /api/app-config 的 plugins 字段下发到前端, + 前端据此决定显示哪些插件面板、如何配置。 + UI 相关的声明(如 catalog_entry_types)应放在这里而非 manifest()。 + + Returns: + { + "enabled": True, + "sso_login_url": "http://superset:8088/df-sso-bridge/", + "catalog_entry_types": [ + { + "type": "dataset", + "label": "Datasets", + "icon": "table_chart", + "supports_filters": True, + }, + { + "type": "dashboard_chart", + "label": "Dashboard Charts", + "icon": "dashboard", + "supports_filters": True, + }, + ], + # ... 其他前端需要的配置 + } + 注意:不要返回密钥等敏感信息。 + """ + pass + + def on_enable(self, app) -> None: + """插件被启用时调用(可选)。 + + 可以用来: + - 注册 Flask extensions + - 初始化连接池或缓存 + - 设置定时任务 + - 获取 CredentialVault 引用(用于 SSO token 或用户凭证的存取) + """ + pass + + def on_disable(self) -> None: + """插件被禁用时调用(可选)。""" + pass + + def get_auth_status(self, session: dict) -> dict[str, Any] | None: + """返回当前用户的认证状态(可选)。 + + 如果插件有自己的认证逻辑,实现此方法来返回当前用户信息。 + 返回 None 表示未认证。 + """ + return None + + def supports_sso_passthrough(self) -> bool: + """此插件是否支持 SSO token 透传。 + + 如果返回 True,插件可以从 auth.get_sso_token() 获取用户的 + OIDC access token,直接用于调用外部系统 API,无需用户单独登录。 + 默认 False。子类按需覆盖。 + """ + return False +``` + +### 6.2 插件加载的数据怎么进入 Workspace + +插件从外部系统拉取到数据后,需要将数据写入 DF 的 Workspace。这个过程参考了 0.6 版本 Superset 集成中的实际经验,需要解决三个问题:**表名管理**、**大数据量写入性能**、**写入方式选择**。 + +#### 5.2.1 表名管理:覆盖 vs 新建 + +0.6 版本的 Superset 集成支持两种表名策略,这个设计在实际使用中被证明非常实用: + +| 操作 | 行为 | 使用场景 | +|------|------|---------| +| **覆盖(默认)** | 用数据集原名写入,已存在则替换 | 刷新数据,获取最新版本 | +| **新建(加后缀)** | 用户指定后缀,生成 `name_suffix` 形式的新表名 | 保留历史快照,对比不同时间点的数据 | + +0.6 前端的实现方式是在每个数据集条目上提供两个按钮: +- 下载图标 → 直接覆盖加载(使用默认表名) +- 加号图标 → 弹出后缀对话框(用户输入后缀,如日期 `20250322`,生成 `sales_20250322`) + +后端通过 `table_name` 参数控制: +- 不传 `table_name`:使用数据集原名,覆盖同名表 +- 传 `table_name`:使用指定名称写入 + +在 0.7 的 Workspace 中,这映射到现有 API: + +```python +from data_formulator.workspace_factory import get_workspace +from data_formulator.datalake.parquet_utils import sanitize_table_name +from data_formulator.auth import get_identity_id + +workspace = get_workspace(get_identity_id()) +safe_name = sanitize_table_name(table_name_override or original_name) + +# write_parquet / write_parquet_from_arrow 已有覆盖逻辑: +# 如果 safe_name 已存在 → 删除旧 parquet → 写入新 parquet +workspace.write_parquet(df, safe_name, loader_metadata={ + "loader_type": "SupersetPlugin", + "loader_params": {"dataset_id": dataset_id, "filters": filters}, + "source_table": original_name, +}) +``` + +如果需要"不覆盖、自动加后缀"的行为(类似 `tables_routes.py` 中 `create_table` 的去重逻辑),可以这样处理: + +```python +# 自动去重表名(确保不覆盖已有表) +base_name = sanitize_table_name(table_name) +final_name = base_name +counter = 1 +existing_tables = workspace.list_tables() +while final_name in existing_tables: + final_name = f"{base_name}_{counter}" + counter += 1 +workspace.write_parquet(df, final_name) +``` + +#### 5.2.2 大数据量写入:插件专用写入工具函数 + +0.6 版本中,Superset 数据通过 SQL Lab 查询返回 JSON → 转 DataFrame → 写入存储。对于大数据量(10 万+ 行),有两个性能瓶颈: +1. 从外部系统拉取数据时的网络传输 +2. 写入 Workspace 时的序列化开销 + +为了让所有插件都能高效写入,我们提供一个**插件专用的写入工具函数**,封装常见的写入模式: + +```python +# py-src/data_formulator/plugins/data_writer.py + +import logging +import pandas as pd +import pyarrow as pa +from typing import Any, Optional + +from data_formulator.auth import get_identity_id +from data_formulator.workspace_factory import get_workspace +from data_formulator.datalake.parquet_utils import sanitize_table_name + +logger = logging.getLogger(__name__) + + +class PluginDataWriter: + """插件专用的数据写入工具。 + + 封装了表名管理、覆盖/新建策略、大数据量写入等常用逻辑, + 让插件开发者不需要直接操作 Workspace 底层 API。 + """ + + def __init__(self, plugin_id: str): + self.plugin_id = plugin_id + + def _get_workspace(self): + return get_workspace(get_identity_id()) + + def write_dataframe( + self, + df: pd.DataFrame, + table_name: str, + *, + overwrite: bool = True, + source_metadata: Optional[dict[str, Any]] = None, + ) -> dict[str, Any]: + """将 DataFrame 写入 Workspace。 + + Args: + df: 要写入的数据 + table_name: 目标表名(会自动 sanitize) + overwrite: True=覆盖同名表, False=自动加后缀避免冲突 + source_metadata: 来源元数据(用于刷新等场景) + + Returns: + {"table_name": str, "row_count": int, "columns": list, "is_renamed": bool} + """ + workspace = self._get_workspace() + base_name = sanitize_table_name(table_name) + final_name = base_name + is_renamed = False + + if not overwrite: + counter = 1 + existing = set(workspace.list_tables()) + while final_name in existing: + final_name = f"{base_name}_{counter}" + counter += 1 + is_renamed = True + + loader_metadata = { + "loader_type": f"plugin:{self.plugin_id}", + **(source_metadata or {}), + } + + meta = workspace.write_parquet( + df, final_name, loader_metadata=loader_metadata + ) + + logger.info( + "Plugin '%s' wrote table '%s': %d rows, %d cols", + self.plugin_id, final_name, len(df), len(df.columns), + ) + + return { + "table_name": meta.name, + "row_count": meta.row_count, + "columns": [c.name for c in (meta.columns or [])], + "is_renamed": is_renamed, + } + + def write_arrow( + self, + table: pa.Table, + table_name: str, + *, + overwrite: bool = True, + source_metadata: Optional[dict[str, Any]] = None, + ) -> dict[str, Any]: + """将 Arrow Table 写入 Workspace(更高效,跳过 pandas 转换)。""" + workspace = self._get_workspace() + base_name = sanitize_table_name(table_name) + final_name = base_name + is_renamed = False + + if not overwrite: + counter = 1 + existing = set(workspace.list_tables()) + while final_name in existing: + final_name = f"{base_name}_{counter}" + counter += 1 + is_renamed = True + + loader_metadata = { + "loader_type": f"plugin:{self.plugin_id}", + **(source_metadata or {}), + } + + meta = workspace.write_parquet_from_arrow( + table, final_name, loader_metadata=loader_metadata + ) + + return { + "table_name": meta.name, + "row_count": meta.row_count, + "columns": [c.name for c in (meta.columns or [])], + "is_renamed": is_renamed, + } + + def write_batches( + self, + first_batch: pd.DataFrame, + table_name: str, + *, + overwrite: bool = True, + source_metadata: Optional[dict[str, Any]] = None, + ) -> "BatchWriter": + """创建一个批量写入器,适用于数据需要分批拉取的场景。 + + 用法: + writer = data_writer.write_batches(first_df, "my_table") + writer.append(second_df) + writer.append(third_df) + result = writer.finish() + + 内部机制: 先将第一批数据写入临时文件,后续批次追加, + 最后合并为一个完整的 Parquet 文件。 + """ + return BatchWriter( + self, first_batch, table_name, + overwrite=overwrite, + source_metadata=source_metadata, + ) + + +class BatchWriter: + """支持分批追加写入的写入器。 + + 适用于外部系统的数据需要分页/分批拉取的场景(如 Superset SQL Lab + 有行数限制,或网络传输需要分批)。 + + 内部使用 PyArrow 的 RecordBatch 累积数据,最终一次性写入 Parquet, + 避免多次写入的 I/O 开销。 + """ + + def __init__( + self, + writer: PluginDataWriter, + first_batch: pd.DataFrame, + table_name: str, + *, + overwrite: bool, + source_metadata: Optional[dict[str, Any]], + ): + self._writer = writer + self._table_name = table_name + self._overwrite = overwrite + self._source_metadata = source_metadata + self._batches: list[pa.RecordBatch] = [] + self._total_rows = 0 + self.append(first_batch) + + def append(self, df: pd.DataFrame) -> int: + """追加一批数据。返回目前累积的总行数。""" + if len(df) == 0: + return self._total_rows + batch = pa.RecordBatch.from_pandas(df) + self._batches.append(batch) + self._total_rows += len(df) + return self._total_rows + + def finish(self) -> dict[str, Any]: + """将所有批次合并写入 Workspace,返回写入结果。""" + if not self._batches: + raise ValueError("No data batches to write") + + combined = pa.Table.from_batches(self._batches) + result = self._writer.write_arrow( + combined, + self._table_name, + overwrite=self._overwrite, + source_metadata=self._source_metadata, + ) + + logger.info( + "BatchWriter finished: %d batches, %d total rows → '%s'", + len(self._batches), self._total_rows, result["table_name"], + ) + self._batches.clear() + return result +``` + +#### 5.2.3 插件如何使用写入工具 + +以 Superset 插件的数据加载路由为例: + +```python +# plugins/superset/routes/data.py + +from data_formulator.plugins.data_writer import PluginDataWriter + +writer = PluginDataWriter("superset") + +@bp.route("/data/load-dataset", methods=["POST"]) +def load_dataset(): + # ... 认证、参数解析 ... + + # 从 Superset SQL Lab 拉取数据 + result = superset_client.execute_sql_with_session( + sql_session, db_id, full_sql, schema, row_limit + ) + all_rows = result.get("data", []) or [] + + if not all_rows: + return jsonify({"status": "error", "message": "No data returned"}), 404 + + df = pd.DataFrame(all_rows) + + # 使用写入工具:table_name_override 支持用户自定义表名 + # overwrite=True 表示覆盖同名表(0.6 中的默认下载行为) + # + # source_metadata 结构与前端 DataProvenance 对齐, + # 框架会将其完整存入 loader_metadata,用于后续刷新。 + write_result = writer.write_dataframe( + df, + table_name=table_name_override or original_table_name, + overwrite=True, + source_metadata={ + "source_type": "dataset", + "source_id": str(dataset_id), + "source_name": original_table_name, + "load_params": { + "entry_type": "dataset", + "dataset_id": dataset_id, + "database_id": database_id, + "schema": schema, + "filters": filters, + "row_limit": row_limit, + }, + "refreshable": True, + }, + ) + + return jsonify({ + "status": "ok", + **write_result, # table_name, row_count, columns, is_renamed + }) +``` + +对于需要分批拉取的大数据场景: + +```python +@bp.route("/data/load-dataset-batched", methods=["POST"]) +def load_dataset_batched(): + """分批拉取并写入,支持流式进度报告。""" + # ... 认证、参数解析 ... + + def _generate(): + batch_writer = None + offset = 0 + + while offset < row_limit: + batch_sql = f"{base_sql} LIMIT {batch_size} OFFSET {offset}" + result = superset_client.execute_sql_with_session( + sql_session, db_id, batch_sql, schema, batch_size + ) + rows = result.get("data", []) or [] + if not rows: + break + + df = pd.DataFrame(rows) + + if batch_writer is None: + batch_writer = writer.write_batches( + df, table_name, + overwrite=True, + source_metadata={...}, + ) + else: + batch_writer.append(df) + + offset += len(rows) + + # 流式报告进度 + yield json.dumps({ + "type": "progress", + "loaded_rows": offset, + "batch_size": len(rows), + }, ensure_ascii=False) + "\n" + + if len(rows) < batch_size: + break + + # 合并所有批次,写入 Parquet + if batch_writer: + result = batch_writer.finish() + yield json.dumps({ + "type": "done", + "status": "ok", + **result, + }, ensure_ascii=False) + "\n" + else: + yield json.dumps({ + "type": "done", + "status": "ok", + "row_count": 0, + }, ensure_ascii=False) + "\n" + + return Response( + stream_with_context(_generate()), + content_type="text/x-ndjson; charset=utf-8", + headers={"Cache-Control": "no-cache"}, + ) +``` + +#### 5.2.4 数据溯源描述:结构化条件 + 模板拼接 + +从外部系统加载数据时,用户通常会选择筛选条件(如地区、日期范围)。这些信息需要记录到数据上,以便后续明确"这份数据到底包含什么"。 + +**设计决策:不用 AI 生成描述,用模板拼接。** + +| | AI 生成描述 | 模板拼接 + 原始条件 | +|--|-----------|---------------------| +| 准确性 | 可能编造细节 | 100% 准确 | +| 成本 | 每次加载消耗 token | 零成本 | +| 可刷新 | 描述是文本,无法回放 | `loadParams` 原样回传即可刷新 | + +数据写入时**两层信息同时存储**,各司其职: + +``` +loader_metadata +├── loadParams ← 原始筛选条件(机器用:精确刷新) +│ {"filters": [{"col":"region","op":"==","val":"Asia"}], "row_limit": 50000} +│ +└── description ← 模板拼接的可读摘要(人/AI 用:理解数据内容) + "来源: superset · sales_data\n筛选: region = Asia, order_date >= 2025-01-01\n行数: 12,345" +``` + +`description` 会流向前端 `attachedMetadata`,AI Agent 分析数据时自动进入 prompt,帮助 AI 理解数据的子集范围。 + +**实现位置:`PluginDataWriter.write_dataframe()` 内部自动生成**,所有插件无需额外代码: + +```python +# plugins/data_writer.py — write_dataframe 内部 + +def _build_description(self, source_metadata: dict) -> str: + """从 source_metadata 模板拼接可读描述。""" + parts = [f"来源: {self.plugin_id} · {source_metadata.get('source_name', '')}"] + + load_params = source_metadata.get("load_params", {}) + + # 筛选条件(各插件格式不同,尝试通用提取) + filters = load_params.get("filters", []) + if filters: + filter_strs = [] + for f in filters: + if isinstance(f, dict) and "col" in f: + filter_strs.append(f"{f['col']} {f.get('op', '=')} {f['val']}") + if filter_strs: + parts.append(f"筛选: {', '.join(filter_strs)}") + + # 时间范围(常见于仪表盘数据) + time_range = load_params.get("time_range") + if time_range: + parts.append(f"时间范围: {time_range}") + + row_limit = load_params.get("row_limit") + if row_limit: + parts.append(f"行限制: {row_limit}") + + return "\n".join(parts) +``` + +调用时机:`write_dataframe()` / `write_arrow()` 在写入 Parquet 后,自动调用 `_build_description()` 将结果存入 `loader_metadata["description"]`。插件也可通过参数覆盖自动生成的描述。此描述与外部系统自带的表/列描述([§ 7.7](#77-外部系统元数据拉取) 中的 `table_description`、`column_metadata`)互不覆盖——前者记录"加载时用了什么条件",后者记录"这张表/列本身是什么含义",两者并存于 metadata 中。 + +> **各平台的 `filters` 格式差异很大**(见 [§ 7.5 各 BI 平台查询参数兼容性分析](#75-各-bi-平台查询参数兼容性分析))。 +> `_build_description()` 只做"尽力提取":能解析的条件拼成可读文本,无法解析的保留在 `loadParams` 中。 +> 插件也可覆盖 `_build_description()` 来提供更精确的描述。 + +#### 5.2.5 两种写入路径对比 + +| | 直接写入 Workspace(推荐) | 返回 JSON 由前端处理 | +|---|---|---| +| **流向** | 插件后端 → Workspace Parquet | 插件后端 → JSON → 前端 → loadTable → Workspace | +| **适用数据量** | 任意大小 | < 5 万行(受 HTTP 响应大小和前端内存限制) | +| **性能** | 高(Parquet 压缩存储,无 JSON 序列化开销) | 低(JSON 序列化 + 网络传输 + 前端解析) | +| **进度反馈** | 通过 NDJSON 流式响应 | 无(等待完整响应) | +| **前端通知** | 返回 `table_name` → 前端刷新 `list-tables` | 前端收到数据后走 `loadTable` thunk | +| **刷新支持** | 有(`loader_metadata` 记录来源信息,可用于 `refresh-table`) | 无 | + +**结论**:插件应默认使用"直接写入 Workspace"路径。仅在特殊场景(如用户只想预览但不保存、或 `WORKSPACE_BACKEND=ephemeral`)时才返回 JSON。 + +--- + +## 7. 前端插件接口 + +### 7.1 插件面板契约 + +每个插件需要提供一个 React 组件,该组件遵循以下接口: + +```typescript +// src/plugins/types.ts + +export interface PluginManifest { + id: string; // 与后端 manifest.id 一致 + name: string; // 显示名称 + icon: string; // MUI 图标名或 SVG 路径 + description: string; + authType: 'jwt' | 'oauth' | 'api_key' | 'none'; + capabilities: string[]; +} + +// ───── 数据溯源:记录数据从哪来、用了什么参数 ───── + +/** + * 每次插件加载数据后,随 onDataLoaded 一起返回。 + * 核心框架会将其序列化到 loader_metadata,用于刷新/重放。 + * + * 各 BI 平台的 loadParams 差异极大(见下方"兼容性分析"), + * 因此 loadParams 设计为 Record——框架不解析, + * 只原样存储,刷新时原样回传给插件后端。 + */ +export interface DataProvenance { + pluginId: string; // "superset" | "metabase" | ... + sourceType: string; // 插件自定义的来源类型,如 "dataset" | "dashboard_chart" | "question" + sourceId: string; // 外部系统中的唯一标识(dataset_id、card_id 等) + sourceName: string; // 人类可读的名称(用于 UI 显示"来自 xxx") + loadParams: Record; // 加载时使用的完整参数(过滤器、行限制、时间范围等) + loadedAt: string; // ISO 8601 时间戳 + refreshable: boolean; // 是否支持用同样的参数刷新 +} + +export interface PluginPanelProps { + pluginId: string; + config: Record; // 从 /api/app-config 获取的插件配置 + onDataLoaded: (result: { // 数据加载完成后的回调 + tableName: string; + rowCount: number; + columns: string[]; + source: 'workspace' | 'json'; // 数据在 workspace 中还是在响应 JSON 中 + rows?: any[]; // source === 'json' 时提供 + provenance: DataProvenance; // 数据溯源信息(用于刷新和 UI 显示) + }) => void; + onPreviewLoaded?: (result: { // 预览数据回调(可选,框架支持但不强制) + columns: string[]; + sampleRows: any[]; // 预览行(通常 50-100 行) + totalRowEstimate?: number; // 总行数估计 + provenance: DataProvenance; + }) => void; +} + +export interface DataSourcePluginModule { + manifest: PluginManifest; + + // 主面板组件(显示在 UnifiedDataUploadDialog 的 Tab 中) + PanelComponent: React.ComponentType; + + // 登录组件(可选,如果插件有自己的认证流程) + LoginComponent?: React.ComponentType<{ + config: Record; + onLoginSuccess: () => void; + }>; +} +``` + +### 7.2 Plugin Host(前端插件容器) + +在 `UnifiedDataUploadDialog.tsx` 中增加一个通用的插件 Tab 渲染逻辑: + +```typescript +// 伪代码:插件面板的渲染 + +// 1. 从 /api/app-config 拿到已启用插件列表 +const enabledPlugins = serverConfig.plugins; // [{ id: "superset", ... }, ...] + +// 2. 动态导入对应的插件模块 +const pluginModules = usePluginModules(enabledPlugins); + +// 3. 在数据加载对话框中,为每个插件渲染一个 Tab +{pluginModules.map(plugin => ( + + p.id === plugin.manifest.id)} + onDataLoaded={handlePluginDataLoaded} + /> + +))} +``` + +### 7.3 数据加载完成后的流程 + +插件面板通过 `onDataLoaded` 回调通知宿主。宿主根据 `source` 字段决定下一步: + +``` +onDataLoaded({ tableName, source, provenance }) + │ + ├─ source === 'workspace' + │ → 调用 GET /api/tables/list-tables 刷新表列表 + │ → 新表自动出现在左侧面板 + │ → provenance 序列化到 loader_metadata(用于刷新) + │ + └─ source === 'json' + → 构建 DictTable + → dispatch(loadTable({ table })) + → 走常规 loadTable 流程(自动写入 Workspace) + → provenance 同样保存 +``` + +### 7.4 数据刷新协议 + +当一个表的 `loader_metadata` 中包含 `provenance`(即通过插件加载的数据),前端可以在表上显示"刷新"按钮。刷新时将 `provenance` 回传给插件后端: + +``` +用户点击表上的「刷新」按钮 + → 框架取出 loader_metadata.provenance + → POST /api/plugins/{provenance.pluginId}/data/refresh + Body: { + source_type: provenance.sourceType, + source_id: provenance.sourceId, + load_params: provenance.loadParams, ← 完整的原始查询参数 + table_name: 当前表名 ← 覆盖写入 + } + → 插件后端用同样的参数重新拉取数据 + → 写入同名表(覆盖) + → 前端刷新表列表 +``` + +后端实现:每个插件可选实现 `/data/refresh` 路由。由于 `load_params` 是插件自己定义和存储的,刷新时原样取出即可: + +```python +# plugins/superset/routes/data.py 中的 refresh 路由 + +@bp.route("/data/refresh", methods=["POST"]) +def refresh_dataset(): + data = request.get_json() + source_type = data["source_type"] # "dataset" + source_id = data["source_id"] # "42" + load_params = data["load_params"] # { "filters": [...], "row_limit": 10000, ... } + table_name = data["table_name"] # 覆盖同名表 + + # 用 load_params 中的参数重新执行查询——与首次加载逻辑复用 + df = _fetch_dataset(source_id, **load_params) + + return jsonify(writer.write_dataframe(df, table_name, overwrite=True, + source_metadata={"source_type": source_type, "source_id": source_id, + "loader_params": load_params})) +``` + +**关键设计决策**:`load_params` 是个**不透明的 JSON 对象**。框架只负责存储和回传,不解析其内部结构。这样每个 BI 平台都可以在里面放自己特有的参数,框架完全不需要知道各平台的参数细节。 + +### 7.5 各 BI 平台查询参数兼容性分析 + +这是选择"参数不透明"设计的核心原因——各平台的参数差异太大,无法统一: + +#### Superset 的 `load_params` 示例 + +```json +{ + "entry_type": "dataset", + "dataset_id": 42, + "database_id": 1, + "schema": "public", + "filters": [ + { "col": "region", "op": "==", "val": "Asia" }, + { "col": "order_date", "op": ">=", "val": "2025-01-01" } + ], + "row_limit": 50000, + "sql_override": null +} +``` + +从仪表盘图表加载时: + +```json +{ + "entry_type": "dashboard_chart", + "dashboard_id": 7, + "chart_id": 123, + "dataset_id": 42, + "native_filters": { + "NATIVE_FILTER-abc": { "col": "country", "op": "IN", "val": ["CN", "JP"] } + }, + "time_range": "Last 90 days", + "granularity": "P1D", + "row_limit": 10000 +} +``` + +#### Metabase 的 `load_params` 示例 + +```json +{ + "entry_type": "question", + "card_id": 156, + "parameters": [ + { "type": "date/range", "target": ["variable", ["template-tag", "date_range"]], "value": "2025-01-01~2025-03-31" }, + { "type": "category", "target": ["dimension", ["field", 23, null]], "value": ["Active"] } + ] +} +``` + +从 Dashboard 加载时: + +```json +{ + "entry_type": "dashboard", + "dashboard_id": 8, + "card_id": 156, + "dashboard_filters": { + "Status": "Active", + "Date Range": "past30days" + } +} +``` + +#### Power BI 的 `load_params` 示例 + +```json +{ + "entry_type": "report_visual", + "workspace_id": "aaa-bbb-ccc", + "report_id": "ddd-eee-fff", + "page_name": "ReportSection1", + "visual_name": "SalesChart", + "dax_query": "EVALUATE TOPN(10000, Sales, Sales[Date], DESC)", + "slicer_state": { + "Region": ["Asia", "Europe"], + "Year": [2024, 2025] + } +} +``` + +#### Grafana 的 `load_params` 示例 + +```json +{ + "entry_type": "panel", + "dashboard_uid": "abc123", + "panel_id": 4, + "datasource_uid": "prometheus-1", + "time_range": { "from": "now-24h", "to": "now" }, + "interval": "5m", + "variables": { + "host": "server-01", + "env": "production" + }, + "max_data_points": 1000 +} +``` + +#### Looker 的 `load_params` 示例 + +```json +{ + "entry_type": "explore", + "model_name": "ecommerce", + "explore_name": "orders", + "fields": ["orders.id", "orders.total", "users.name"], + "filters": { + "orders.created_date": "90 days", + "orders.status": "complete" + }, + "sorts": ["orders.total desc"], + "limit": 5000, + "pivots": ["orders.created_month"] +} +``` + +#### 为什么不尝试统一过滤器格式 + +可以看到,每个平台的过滤器语义完全不同: + +| 平台 | 过滤器模型 | 特点 | +|------|----------|------| +| Superset | `col + op + val` + SQL WHERE | 列级过滤 + 原生 SQL | +| Metabase | Template Tag + Dimension Target | 绑定到查询模板的参数化变量 | +| Power BI | Slicer State + DAX Expression | 交互式切片器 + 查询语言 | +| Grafana | Template Variable + Ad-hoc Filter | 变量替换 + 即席过滤 | +| Looker | LookML Filter Expression | 模型驱动的过滤表达式语言 | + +如果强行定义 `UnifiedFilter = { column, operator, value }` 这样的通用格式,会导致: +1. 丢失平台特有能力(如 Metabase 的 Template Tag、Grafana 的 Variable) +2. 每个插件需要做双向转换(通用格式 ↔ 平台原生格式),增加复杂度 +3. 通用格式不可避免地变成"最大公约数",表达力反而最弱 + +**因此,`load_params` 保持为不透明 JSON 是正确的设计**:框架只负责"存储 → 回传 → 刷新",不试图理解参数内容。 + +### 7.6 预览协议(可选能力) + +部分 BI 平台支持在全量加载前预览少量数据。插件可以通过 `onPreviewLoaded` 回调返回预览结果: + +``` +用户在 Superset 数据集上点击「预览」 + → 插件前端调用 GET /api/plugins/superset/data/preview?dataset_id=42&limit=50 + → 后端拉取 50 行样本数据 + → 返回 JSON(不写入 Workspace) + → 插件前端调用 onPreviewLoaded({ columns, sampleRows, totalRowEstimate }) + → 框架在对话框中渲染预览表格 + → 用户确认后点「加载」→ 走完整的 onDataLoaded 流程 +``` + +预览是可选能力。后端路由约定为 `/data/preview`,前端通过 `manifest.capabilities` 中是否包含 `"preview"` 来判断是否显示预览按钮。 + +### 7.7 外部系统元数据拉取 + +很多 BI 平台为数据集和字段维护了丰富的元数据(描述信息、语义标签、认证状态等)。将这些元数据随数据一起拉取到 DF 有极高价值——它们可以直接填入 DF 已有的 `semanticType` 和 `attachedMetadata` 字段,大幅提升 AI Agent 的分析质量。 + +#### 7.7.1 各 BI 平台提供的元数据对比 + +| 元数据类型 | Superset | Metabase | Power BI | Looker | +|-----------|----------|----------|----------|--------| +| **表级描述** | `dataset.description` | `table.description` | `table.description` | `explore.description` | +| **表级标签** | `dataset.owners`, `is_certified` | `table.visibility_type` | — | `explore.tags` | +| **列名** | `column.column_name` | `field.name` | `column.name` | `field.name` | +| **列描述** | `column.description` | `field.description` | `column.description` | `field.description` | +| **列数据类型** | `column.type` | `field.base_type` | `column.dataType` | `field.type` | +| **列语义类型** | `column.is_dttm`, `filterable`, `groupby` | `field.semantic_type` (如 `type/Email`, `type/FK`) | `column.formatString` | `field.tags` (如 `email`, `currency`) | +| **计算列/度量** | `metric.expression`, `metric.description` | `field.formula` | `measure.expression` | `measure.sql` | +| **值域统计** | — | `field.fingerprint` (分布统计) | — | `field.enumerations` | + +#### 7.7.2 设计:不透明 blob + 文本描述(简化方案) + +> **设计决策**:不扩展 `ColumnInfo` 和 `TableMetadata` 的结构化字段。 +> 理由与 `loadParams` 保持不透明([§ 7.5](#75-各-bi-平台查询参数兼容性分析))相同——各平台元数据格式差异极大,强行统一到 `semantic_type`、`is_metric` 等字段是有损抽象。 +> +> 外部元数据的主要消费者是 **AI prompt**(文本)和 **UI tooltip**(文本),不需要结构化查询。 +> 如果未来确实出现结构化需求(如"列出所有 certified 的表"),再从 blob 中提取,成本很低。 + +**后端改动最小化**:仅在 `TableMetadata` 新增 1 个可选字段: + +```python +@dataclass +class TableMetadata: + # ... 现有字段全部不动 ... + description: str | None = None # ← 已有,复用 + + # 新增:来自外部系统的原始元数据(插件写入,框架不解析) + external_metadata: dict | None = None +``` + +`ColumnInfo` **不改**。`list-tables` API **不改**。前端 `DictTable` 类型 **不改**。 + +#### 7.7.3 插件如何提供元数据 + +插件在调用 `PluginDataWriter.write_dataframe()` 时,将外部系统的原始元数据塞入 `external_metadata`: + +```python +# plugins/superset/routes/data.py + +result = writer.write_dataframe( + df, table_name, overwrite=True, + source_metadata={...}, # 用于刷新的 loadParams(不变) + external_metadata={ # 外部系统的原始元数据(新增,blob) + "source": "superset", + "dataset_description": dataset_info.get("description"), + "owners": [o["username"] for o in dataset_info.get("owners", [])], + "certified": dataset_info.get("is_certified", False), + "columns": { + col["column_name"]: { + "description": col.get("description"), + "is_dttm": col.get("is_dttm"), + "filterable": col.get("filterable"), + } + for col in dataset_info.get("columns", []) + }, + "metrics": { + m["metric_name"]: { + "description": m.get("description"), + "expression": m.get("expression"), + } + for m in dataset_info.get("metrics", []) + }, + }, +) +``` + +Metabase 插件塞的结构完全不同也没关系——框架不解析它。 + +#### 7.7.4 元数据如何流向 AI + +`PluginDataWriter` 自动将 `external_metadata` 拼成可读文本,写入 `TableMetadata.description`(已有字段): + +``` +来源: superset · sales_data +描述: 公司季度销售数据,按区域和产品线划分 +所有者: alice@corp.com +筛选: region = Asia, order_date >= 2025-01-01 +列: region (销售区域), order_date (订单日期, 时间类型), amount (订单金额, SUM(amount)) +行数: 12,345 +``` + +这段文本通过现有的 `description` → `attachedMetadata` 链路自动进入 AI prompt,**无需修改任何前端代码**。 + +``` +外部 BI 系统 API 后端 前端 +───────────────── ───── ───── +dataset + columns + metrics → external_metadata (blob) + ↓ PluginDataWriter 拼接 + description (文本) → attachedMetadata → AI prompt + loader_params (结构化) → source_metadata → 刷新按钮 +``` + +#### 7.7.5 渐进增强 + +| 层次 | 场景 | 效果 | +|------|------|------| +| 0 | Upload/Paste/Database(现有行为) | `external_metadata=None`,AI 自行推断,完全不受影响 | +| 1 | 插件只传数据,不传元数据 | 与 Upload 行为一致 | +| 2 | 插件传了 `external_metadata` | `description` 自动丰富,AI prompt 质量提升 | + +插件开发者把能拿到的元数据原样塞进 `external_metadata` 即可。拼接逻辑在 `PluginDataWriter` 中统一处理,尽力提取可读信息;无法解析的字段静默忽略。 + +--- + +## 8. 插件注册与发现 + +> **权威定义**:插件自动发现与注册(`discover_and_register()`)的完整实现、 +> 插件约定、安全措施、发现流程图、`app.py` 集成方式、`/api/app-config` 暴露方式、 +> 以及前端 `import.meta.glob` 自动发现,均定义在 `1-sso-plugin-architecture.md` § 4.4。 +> +> 本文档不再重复这些内容。以下仅补充 Plugin 文档特有的上下文说明。 + +### 8.1 `/api/app-config` 中的插件字段组装 + +在 `get_app_config()` 中将 `manifest()` 和 `get_frontend_config()` 合并下发: + +```python +from data_formulator.plugins import ENABLED_PLUGINS + +plugins_config = {} +for plugin_id, plugin in ENABLED_PLUGINS.items(): + manifest = plugin.manifest() + frontend_config = plugin.get_frontend_config() + plugins_config[plugin_id] = { + "id": plugin_id, + "name": manifest["name"], + "icon": manifest.get("icon"), + "description": manifest.get("description"), + "auth_modes": manifest.get("auth_modes", ["none"]), + "capabilities": manifest.get("capabilities", []), + **frontend_config, # catalog_entry_types 等 UI 配置在此注入 + } +config["PLUGINS"] = plugins_config +``` + +注意 `auth_modes`(数组)取代了旧的 `auth_type`(单字符串),且 `catalog_entry_types` 由 `get_frontend_config()` 提供而非 `manifest()`。 + +--- + +## 9. 数据流设计 + +### 9.1 端到端流程 + +``` +┌─────────────────────────────────────────────────────────────────┐ +│ 启动阶段 │ +│ │ +│ 1. 环境变量设置 PLG_SUPERSET_URL=http://superset:8088 │ +│ 2. app.py → _register_blueprints() → discover_and_register() │ +│ 3. SupersetPlugin 被实例化,Blueprint 被注册 │ +│ 4. /api/app-config 返回 PLUGINS: { superset: { enabled, ... }} │ +└─────────────────────────────────────────────────────────────────┘ + │ + ↓ +┌─────────────────────────────────────────────────────────────────┐ +│ 前端初始化 │ +│ │ +│ 1. App.tsx 请求 /api/app-config │ +│ 2. 解析 PLUGINS 字段 → 存入 Redux (serverConfig.plugins) │ +│ 3. 动态加载对应的前端插件模块 │ +│ 4. 如果插件需要认证且未登录 → 显示登录入口 │ +└─────────────────────────────────────────────────────────────────┘ + │ + ↓ +┌─────────────────────────────────────────────────────────────────┐ +│ 认证阶段(以 Superset 为例) │ +│ │ +│ 用户点击「连接 Superset」 │ +│ → 显示 Superset 登录组件 │ +│ → POST /api/plugins/superset/auth/login │ +│ → 后端转发到 Superset JWT 登录 │ +│ → Token 存入 Flask Session │ +│ → 返回用户信息给前端 │ +└─────────────────────────────────────────────────────────────────┘ + │ + ↓ +┌─────────────────────────────────────────────────────────────────┐ +│ 浏览阶段 │ +│ │ +│ 用户打开「数据源」对话框 → 看到 Superset Tab │ +│ → 请求 /api/plugins/superset/catalog/datasets │ +│ → 后端用 JWT 调用 Superset API │ +│ → 返回用户有权限看到的数据集列表 │ +│ → 前端渲染数据集目录(搜索、预览等) │ +└─────────────────────────────────────────────────────────────────┘ + │ + ↓ +┌─────────────────────────────────────────────────────────────────┐ +│ 数据加载阶段 │ +│ │ +│ 用户选中一个数据集,点击「加载」 │ +│ → POST /api/plugins/superset/data/load-dataset │ +│ → 后端通过 Superset SQL Lab 执行查询(尊重 RBAC + RLS) │ +│ → pd.DataFrame → workspace.write_parquet() │ +│ → 返回 { table_name, row_count, columns } │ +│ │ +│ 前端收到响应: │ +│ → onDataLoaded({ tableName, source: 'workspace' }) │ +│ → 触发 list-tables 刷新 │ +│ → 新表出现在左侧面板 │ +│ → 用户可以开始数据分析 │ +└─────────────────────────────────────────────────────────────────┘ +``` + +### 9.2 认证会话管理 + +每个插件的认证信息独立存储在 Flask Session 中,以 `plugin_id` 为前缀隔离: + +```python +# 存储 +session[f"plugin_{plugin_id}_token"] = access_token +session[f"plugin_{plugin_id}_user"] = user_info + +# 读取 +token = session.get(f"plugin_{plugin_id}_token") +``` + +前端通过 `/api/plugins/{plugin_id}/auth/status` 查询当前认证状态。 + +#### 与 SSO 的集成(详见 `sso-plugin-architecture.md`) + +当系统配置了 OIDC SSO 后,插件的认证有三种模式自动协商: + +``` +场景 A: DF 有 SSO + 外部系统也接了同一 IdP + → 自动 SSO Token 透传(用户零交互) + +场景 B: DF 有 SSO + 外部系统没有接 SSO + → 用户首次输入凭证 → 存入 CredentialVault → 后续自动取出 + +场景 C: DF 无 SSO(本地匿名模式) + → 手动登录 → Token 存 Flask Session(现有行为) +``` + +--- + +## 10. Superset 插件迁移示例 + +将 0.6 版本的 Superset 集成迁移为插件: + +### 10.1 后端 + +``` +py-src/data_formulator/plugins/superset/ +├── __init__.py # SupersetPlugin 类(实现 DataSourcePlugin) +├── superset_client.py # ← 直接迁移自 0.6 +├── auth_bridge.py # ← 直接迁移自 0.6 +├── catalog.py # ← 直接迁移自 0.6 +├── routes/ +│ ├── __init__.py +│ ├── auth.py # ← 迁移自 0.6 auth_routes.py +│ ├── catalog.py # ← 迁移自 0.6 catalog_routes.py +│ └── data.py # ← 迁移自 0.6 data_routes.py(改用 workspace) +└── requirements.txt # requests(已内置,无额外依赖) +``` + +### 10.2 核心改动 + +**data_routes.py 的变化**:0.6 用 DuckDB,0.7 用 Workspace Parquet + +```python +# 0.6 版本:写入 DuckDB +with db_manager.connection(sid) as conn: + conn.execute(f'DROP TABLE IF EXISTS "{safe_name}"') + conn.execute(f'CREATE TABLE "{safe_name}" AS SELECT * FROM df') + +# 0.7 插件版本:写入 Workspace Parquet +from data_formulator.workspace_factory import get_workspace +from data_formulator.auth import get_identity_id + +workspace = get_workspace(get_identity_id()) +workspace.write_parquet(df, safe_name) +``` + +### 10.3 前端 + +``` +src/plugins/superset/ +├── index.ts # 导出 DataSourcePluginModule +├── SupersetPanel.tsx # ← 迁移自 0.6(Tab 容器) +├── SupersetCatalog.tsx # ← 迁移自 0.6(数据集目录) +├── SupersetDashboards.tsx # ← 迁移自 0.6(仪表盘列表) +├── SupersetFilterDialog.tsx # ← 迁移自 0.6(筛选条件对话框) +├── SupersetLogin.tsx # ← 迁移自 0.6 LoginView(Superset 部分) +└── api.ts # API 调用封装 +``` + +### 10.4 SupersetPlugin 实现 + +```python +class SupersetPlugin(DataSourcePlugin): + + @staticmethod + def manifest(): + return { + "id": "superset", + "name": "Apache Superset", + "icon": "superset", + "description": "Load data from Superset dashboards and datasets", + "version": "1.0.0", + "env_prefix": "PLG_SUPERSET", + "required_env": ["PLG_SUPERSET_URL"], + "auth_modes": ["sso", "jwt", "password"], + "capabilities": [ + "datasets", "dashboards", "filters", + "preview", "refresh", "batch_load", "metadata", + ], + } + + def create_blueprint(self): + from data_formulator.plugins.superset.routes import create_superset_blueprint + return create_superset_blueprint(self._client, self._catalog, self._bridge) + + def get_frontend_config(self): + url = os.environ.get("PLG_SUPERSET_URL", "") + return { + "enabled": True, + "sso_login_url": f"{url.rstrip('/')}/df-sso-bridge/" if url else None, + "catalog_entry_types": [ + { + "type": "dataset", + "label": "Datasets", + "icon": "table_chart", + "supports_filters": True, + }, + { + "type": "dashboard_chart", + "label": "Dashboard Charts", + "icon": "dashboard", + "supports_filters": True, + }, + ], + } + + def on_enable(self, app): + url = os.environ["PLG_SUPERSET_URL"] + self._client = SupersetClient(url) + self._bridge = SupersetAuthBridge(url) + self._catalog = SupersetCatalog(self._client) + app.extensions["superset_client"] = self._client + app.extensions["superset_bridge"] = self._bridge + app.extensions["superset_catalog"] = self._catalog +``` + +--- + +## 11. 与现有 ExternalDataLoader 的关系 + +### 11.1 两套机制并行 + +``` +数据源类型 │ 适用机制 │ 原因 +─────────────────┼─────────────────────┼────────────────────── +MySQL/PG/MSSQL │ ExternalDataLoader │ 标准数据库连接,无需额外认证/UI +MongoDB/BigQuery │ ExternalDataLoader │ 同上 +S3/Azure Blob │ ExternalDataLoader │ 文件存储,list+fetch 即可 +─────────────────┼─────────────────────┼────────────────────── +Superset │ DataSourcePlugin │ 需要认证流程、目录浏览、筛选、RBAC +Metabase │ DataSourcePlugin │ 同上 +Power BI │ DataSourcePlugin │ 同上 +Grafana │ DataSourcePlugin │ 同上 +``` + +### 11.2 判断依据 + +使用 **ExternalDataLoader** 的场景: +- 只需要连接参数 → 列出表 → 拉取数据 +- 前端用通用的 `DBManagerPane` 表单即可 + +使用 **DataSourcePlugin** 的场景: +- 有自己的认证体系(JWT / OAuth / SSO) +- 有自己的数据组织方式(仪表盘、报表、数据集等概念) +- 需要尊重外部系统的权限模型 +- 需要专用的 UI(目录浏览、筛选条件等) + +两套机制互不干扰,共存于系统中。 + +### 11.3 ExternalDataLoader 演进方向(已拆分) + +> ExternalDataLoader 的现有缺陷分析和三个改进方案(数据库元数据拉取 P0、SSO Token 透传 P1、凭证持久化 P2) +> 已拆分为独立文档:**`2-external-dataloader-enhancements.md`**。 +> +> 这些改进针对数据库连接器,与 DataSourcePlugin(BI 系统插件)互不干扰, +> 可以独立于插件框架按优先级逐步实施。 + +--- + +## 12. 插件 i18n 自包含方案 + +### 12.1 问题 + +宿主项目的翻译文件(如 `src/i18n/locales/en/common.json`)是核心项目的一部分。如果每个插件的翻译 key 都直接写入这些文件,会导致: + +1. **插件开发者被迫修改宿主项目文件** — 违反"自包含"原则 +2. **多个插件的翻译 key 混杂在同一个 JSON 中** — 职责不清 +3. **上游更新时容易冲突** — 宿主 `common.json` 频繁变动 + +### 12.2 方案:插件自带翻译 + 启动时自动合并 + +每个插件在自己的目录下维护翻译文件,通过 `DataSourcePluginModule.locales` 字段导出,框架在启动时自动合并到 i18next 的 `translation` namespace 中。 + +#### 目录结构 + +``` +src/plugins/superset/ + ├── locales/ + │ ├── en.json ← 插件自己的英文翻译 + │ └── zh.json ← 插件自己的中文翻译 + ├── api.ts + ├── SupersetPanel.tsx + └── index.tsx ← 通过 locales 字段导出翻译 +``` + +#### 翻译文件格式 + +JSON 结构保持与宿主项目相同的 key path 风格,以 `plugin..` 作为命名空间前缀: + +```json +{ + "plugin": { + "superset": { + "login": "Sign In", + "logout": "Sign Out", + "datasets": "Datasets" + } + } +} +``` + +#### 插件模块导出 + +```typescript +// src/plugins/superset/index.tsx +import en from './locales/en.json'; +import zh from './locales/zh.json'; + +const supersetPlugin: DataSourcePluginModule = { + id: 'superset', + Icon: SupersetIcon, + Panel: SupersetPanel, + locales: { en, zh }, +}; +``` + +#### 框架自动注册 + +`src/plugins/registry.ts` 提供 `registerPluginTranslations()` 函数,在应用启动时调用。该函数遍历所有已发现的插件模块,将它们的 `locales` deep-merge 到 i18next: + +```typescript +import i18n from '../i18n'; + +export function registerPluginTranslations(): void { + for (const [, mod] of _modules) { + if (!mod.locales) continue; + for (const [lang, bundle] of Object.entries(mod.locales)) { + i18n.addResourceBundle(lang, 'translation', bundle, true, true); + } + } +} +``` + +`addResourceBundle(lang, ns, bundle, deep=true, overwrite=true)` 是 i18next 内置 API,deep-merge 到已有 resources,无需重新初始化。 + +#### 调用时机 + +在 `src/index.tsx` 中,`import './i18n'`(初始化 i18next)之后、React 渲染之前调用: + +```typescript +import './i18n'; +import { registerPluginTranslations } from './plugins/registry'; +registerPluginTranslations(); +``` + +由于 `import.meta.glob` 使用 eager 模式,此时所有插件模块(包括其 locales JSON)已经加载完成。 + +### 12.3 运行机制说明 + +`locales: { en, zh }` 是**数据声明**而非语言选择——它声明"该插件提供 en 和 zh 两套翻译"。`registerPluginTranslations()` 会将**所有语言的 bundle 都注册**到 i18next 中。实际使用哪套翻译由 i18next 的语言检测器(`LanguageDetector`)或 `i18n.changeLanguage()` 决定,与宿主项目的语言切换行为完全一致。 + +### 12.4 不变的地方 + +- 所有插件组件继续使用 `useTranslation()` 不带参数 +- 所有 `t('plugin.superset.xxx')` 调用不变 +- 宿主项目自己的翻译文件和加载方式完全不变 +- 语言切换自动生效,插件翻译跟随系统设置 + +### 12.5 新增插件的 i18n 清单 + +1. 在插件目录下创建 `locales/en.json` 和 `locales/zh.json`(或其他语言) +2. JSON 顶层结构为 `{ "plugin": { "": { ... } } }` +3. 在插件的 `index.tsx` 中导入并通过 `locales` 字段导出 +4. 无需修改宿主项目的任何翻译文件 + diff --git a/design-docs/1-sso-plugin-architecture.md b/design-docs/1-sso-plugin-architecture.md new file mode 100644 index 00000000..3e0aba42 --- /dev/null +++ b/design-docs/1-sso-plugin-architecture.md @@ -0,0 +1,3695 @@ +# Data Formulator — SSO 认证 + 数据源插件 统一架构设计 + +## 目录 + +1. [概述与目标](#1-概述与目标) +2. [架构全景](#2-架构全景) +3. [Layer 1:可插拔认证体系 (AuthProvider)](#3-layer-1可插拔认证体系-authprovider) + - 3.1~3.2b — AuthProvider 基类(含 `get_auth_info()` 自描述)、Provider 自动发现 + - 3.3~3.5 — Azure EasyAuth、OIDC(仅 2 个环境变量)、GitHub OAuth、auth.py 重构(基于自动发现) + - 3.6~3.8 — 前端 OIDC 流程、回调页面、登录/登出 UI + - 3.8b — Token 生命周期管理(静默刷新、401 重试、CORS/CSP、Phase 1 不含 refresh_token 的设计决策与局限性) + - [3.9 多协议支持](#39-多协议支持从-oidc-扩展到-saml--ldap--cas--反向代理) + - 3.9.1~3.9.2 协议全景对比、双轨模型设计 + - 3.9.3~3.9.8 Phase 2+ 扩展摘要(反向代理 / SAML / LDAP / CAS) + - 3.9.9 前端适配(统一登录入口 + `/api/auth/info` 委托模式) + - 3.9.10~3.9.11 模型图、Token 透传差异 + - 3.9.12~3.9.14 协议选择指南、依赖、优先级 +4. [Layer 2:数据源插件系统 (DataSourcePlugin)](#4-layer-2数据源插件系统-datasourceplugin) +5. [Layer 3:凭证保险箱 (CredentialVault)](#5-layer-3凭证保险箱-credentialvault) +6. [SSO Token 透传机制](#6-sso-token-透传机制) +7. [现有 ExternalDataLoader 的演进路径](#7-现有-externaldataloader-的演进路径) +8. [身份管理:SSO 时代的简化](#8-身份管理sso-时代的简化) +9. [配置参考](#9-配置参考) +10. [目录结构](#10-目录结构) +11. [实施路径](#11-实施路径) +12. [安全模型](#12-安全模型) +13. [FAQ](#13-faq) + +--- + +## 1. 概述与目标 + +### 1.1 背景 + +Data Formulator 0.7 的身份体系基于两种机制: +- **Azure App Service EasyAuth** — 部署到 Azure 时由平台注入 `X-MS-CLIENT-PRINCIPAL-ID` +- **浏览器 UUID** — 本地使用时 `localStorage` 中的随机 UUID + +这套机制存在三个根本性限制: + +| 限制 | 影响 | +|------|------| +| 仅绑定 Azure 生态 | 使用 Keycloak、Okta、Auth0、Google 等 IdP 的团队无法接入 | +| 无真实用户身份 | 无法实现跨设备数据同步、审计追踪、细粒度权限 | +| 无法透传认证 | 当外部系统(Superset、Metabase)也接了同一个 IdP 时,用户仍需重复登录 | + +同时,数据源连接方面,现有的 `ExternalDataLoader` 体系面向数据库设计,无法覆盖 BI 报表系统的复杂认证、数据浏览和权限透传需求。 + +### 1.2 设计目标 + +构建一套 **SSO 认证 + 数据源插件 + 凭证管理** 的统一架构,实现: + +1. **通用 SSO 登录** — 用户通过 OIDC、SAML、LDAP、CAS 或反向代理等任意方式登录 Data Formulator +2. **插件化数据源** — BI 报表系统(Superset、Metabase、Power BI 等)以插件形式接入,新增系统不修改核心代码 +3. **SSO Token 透传** — 外部系统与 DF 共用同一 IdP 时,用户无需重复登录 +4. **凭证保险箱** — 未接 SSO 的外部系统,凭证在服务端加密存储,跨设备可用 +5. **向后兼容** — 本地个人使用场景下,匿名浏览器模式依然可用,零配置启动 + +### 1.3 设计原则 + +| 原则 | 说明 | +|------|------| +| **不自建用户管理** | 认证是 IdP 的事,DF 只做身份消费者,不管理密码和注册 | +| **插件自包含** | 每个外部系统的后端路由 + 前端 UI + 认证逻辑完全独立于核心代码 | +| **渐进式采纳** | 本地模式 → 加 SSO → 加插件 → 加凭证保险箱,每一步都可独立部署 | +| **安全纵深** | 认证链路上 OIDC JWT 验签、服务端凭证加密、Workspace 身份隔离 三层防护 | + +--- + +## 2. 架构全景 + +``` +┌─────────────────────────────────────────────────────────────────────────────┐ +│ 用户浏览器 │ +│ │ +│ ┌──────────────┐ ┌──────────────────┐ ┌──────────────────────────────┐ │ +│ │ OIDC Login │ │ Credential │ │ Data Source Dialog │ │ +│ │ (PKCE flow) │ │ Manager UI │ │ ┌──────┐ ┌────────┐ ┌────┐ │ │ +│ │ │ │ (per-source) │ │ │Upload│ │Database│ │插件│ │ │ +│ └──────┬───────┘ └────────┬─────────┘ │ │Paste │ │(现有) │ │Tab │ │ │ +│ │ │ │ │URL │ │ │ │ │ │ │ +│ ▼ ▼ │ └──────┘ └────────┘ └──┬─┘ │ │ +│ ┌─────────────────────────────────────────────────────────────────┘ │ +│ │ fetchWithIdentity (增强) │ +│ │ X-Identity-Id: user:alice@corp.com (SSO 登录后) │ +│ │ Authorization: Bearer │ +│ └──────────────────────────┬───────────────────────────────────────────┘ +│ │ │ +└──────────────────────────────┼──────────────────────────────────────────────┘ + │ HTTPS + ▼ +┌──────────────────────────────────────────────────────────────────────────────┐ +│ Flask 后端 │ +│ │ +│ ┌─────────────────────────────────────────────────────────────────────────┐ │ +│ │ auth.py — get_identity_id() │ │ +│ │ │ │ +│ │ AUTH_PROVIDER (单选) + 匿名回退: │ │ +│ │ ┌─────────────────────────────────┐ ┌───────────────────────────┐ │ │ +│ │ │ 主 Provider (由 AUTH_PROVIDER │ │ Browser UUID │ │ │ +│ │ │ 指定: oidc / github / azure / │→ │ (ALLOW_ANONYMOUS=true时) │ │ │ +│ │ │ proxy / saml / ldap / cas) │ │ │ │ │ +│ │ └─────────────────────────────────┘ └───────────────────────────┘ │ │ +│ └────────────────────────────────┬────────────────────────────────────────┘ │ +│ │ │ +│ ┌────────────────────────────────┼────────────────────────────────────────┐ │ +│ │ Plugin Registry + Credential Vault │ │ +│ │ │ │ +│ │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │ │ +│ │ │ Superset │ │ Metabase │ │ Power BI │ │ Grafana │ │ │ +│ │ │ Plugin │ │ Plugin │ │ Plugin │ │ Plugin │ ... │ │ +│ │ │ │ │ │ │ │ │ │ │ │ +│ │ │ 认证: SSO透传│ │ 认证: 用户名 │ │ 认证: OAuth │ │ 认证: API Key│ │ │ +│ │ │ 或 JWT登录 │ │ /密码+保险箱│ │ +SSO透传 │ │ +保险箱 │ │ │ +│ │ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │ │ +│ │ │ │ │ │ │ │ +│ │ ▼ ▼ ▼ ▼ │ │ +│ │ ┌─────────────────────────────────────────────────────────────┐ │ │ +│ │ │ Credential Vault (加密凭证存储) │ │ │ +│ │ │ per-user, per-source 的服务端加密存储 │ │ │ +│ │ └─────────────────────────────────────────────────────────────┘ │ │ +│ └────────────────────────────────────────────────────────────────────────┘ │ +│ │ │ +│ ┌────────────────────────────────┼────────────────────────────────────────┐ │ +│ │ Data Layer (不变) │ │ +│ │ ExternalDataLoader (9种DB) + Workspace (Parquet) + Redux Store │ │ +│ └────────────────────────────────────────────────────────────────────────┘ │ +└──────────────────────────────────────────────────────────────────────────────┘ + │ + ▼ + ┌─────────────────────┐ + │ 外部系统 │ + │ Superset / Metabase │ + │ / Power BI / ... │ + └─────────────────────┘ +``` + +**三层分工**: + +| 层 | 职责 | 状态 | +|----|------|------| +| **Layer 1: AuthProvider** | 解决"谁在用 DF" — 单一认证源 + 匿名回退 | 扩展现有 `auth.py` | +| **Layer 2: DataSourcePlugin** | 解决"从哪拉数据" — 外部 BI 系统的插件化接入 | 新建插件框架 | +| **Layer 3: CredentialVault** | 解决"用什么身份访问外部系统" — 加密凭证存储 | 新建 | + +**三层分层依赖、向上服务**:Layer 1 是地基,确定用户身份(`user:xxx` 或 `browser:xxx`);Layer 3 依赖 Layer 1 的身份信息按用户存取凭证;Layer 2 同时依赖 Layer 1(获取 SSO token)和 Layer 3(获取已存凭证)来访问外部系统。依赖方向单向向下,不存在循环依赖。 + +``` +Layer 2: DataSourcePlugin ──依赖──→ Layer 1: AuthProvider (身份 + SSO token) + │ ▲ + └──依赖──→ Layer 3: CredentialVault ────┘ (按用户身份存取) +``` + +### 统一的插件范式 + +三层虽然解决不同问题,但共享同一套 **"抽象基类 + 环境变量声明依赖 + 按需自动启用"** 的设计范式: + +| 维度 | AuthProvider | DataSourcePlugin | CredentialVault | +|------|-------------|-----------------|-----------------| +| 抽象基类 | `AuthProvider(ABC)` | `DataSourcePlugin(ABC)` | `CredentialVault(ABC)` | +| 动态加载 | `importlib.import_module` | 目录自动扫描 (`pkgutil`) | 工厂函数 `get_credential_vault()` | +| 启用判定 | `AUTH_PROVIDER` 环境变量指定 | `manifest()` 中 `required_env`(`PLG_` 前缀)全部存在 | `CREDENTIAL_VAULT_KEY` 存在 | +| 按需启用 | 未指定则匿名模式 | 缺 `required_env` 则跳过 | 缺密钥则返回 None | +| 新增方式 | **在 `auth_providers/` 下创建 `.py` 即可**(自动发现) | **在 `plugins/` 下创建目录即可**(零改动) | 写一个 `.py` + 工厂加一个分支 | +| 生命周期钩子 | `on_configure(app)` | `on_enable(app)` | — | + +**协作模式**: + +``` +AuthProvider — 单选 + 匿名回退 (Single Provider + Fallback) + ┌──────────────────┐ ┌──────────────┐ + │ 主 Provider │ ──→ │ Browser UUID │ + │ (由 AUTH_PROVIDER │ 未命中│ (匿名回退) │ + │ 环境变量指定) │ │ │ + └──────────────────┘ └──────────────┘ + ▸ Phase 1: AUTH_PROVIDER=oidc / github / azure_easyauth + ▸ Phase 2+: proxy_header / saml / ldap / cas + ▸ 同一时间只有一个主 Provider 生效 + ▸ ALLOW_ANONYMOUS=true 时允许匿名回退,否则未认证请求被拒绝 + +DataSourcePlugin — 并行 (Registry) + ┌──────────┐ ┌──────────┐ ┌──────────┐ + │ Superset │ │ Metabase │ │ Power BI │ ... + │ Plugin │ │ Plugin │ │ Plugin │ + └──────────┘ └──────────┘ └──────────┘ + ▸ 所有已启用插件同时存在(目录自动扫描,无需注册) + ▸ 每个插件注册独立的 Blueprint 路由 + ▸ 前端为每个插件渲染一个独立 Tab + ▸ 用户可以同时连多个系统 + +CredentialVault — 单例 (Strategy) + ┌──────────┐ 或 ┌──────────────┐ 或 ┌──────────────┐ + │ Local │ │ Azure │ │ HashiCorp │ + │ (SQLite) │ │ Key Vault │ │ Vault │ ... + └──────────┘ └──────────────┘ └──────────────┘ + ▸ 同一时间只有一个实现生效 + ▸ 由 CREDENTIAL_VAULT 环境变量选择 + ▸ 所有插件和 DataLoader 共享同一个 Vault 实例 +``` + +这套统一范式意味着:未来无论是新增认证方式、新增数据源(如 Grafana、Tableau)、还是新增凭证后端(如 HashiCorp Vault),步骤都是相同的 —— **写一个实现类,配置环境变量启用**。核心代码零修改。 + +认证体系进一步细分为两轨: +- **A 类(无状态)** — 直接实现 `AuthProvider.authenticate()`,无需额外路由(如 OIDC、Azure EasyAuth、反向代理头、GitHub OAuth) +- **B 类(有状态)** — 编写 Login Gateway Blueprint + 复用通用 `SessionProvider`(如 SAML、LDAP、CAS) + +详见 [3.9 多协议支持](#39-多协议支持从-oidc-扩展到-saml--ldap--cas--反向代理)。 + +--- + +## 3. Layer 1:可插拔认证体系 (AuthProvider) + +### 3.1 设计思路 + +将现有 `auth.py` 中硬编码的三级优先级,重构为 **单一 AuthProvider + 匿名回退** 模型。管理员通过 `AUTH_PROVIDER` 环境变量选择一种认证方式,框架自动加载对应的 Provider。支持无状态(OIDC/Header)和有状态(SAML/LDAP/CAS via Session)两种认证模型(详见 [3.9](#39-多协议支持从-oidc-扩展到-saml--ldap--cas--反向代理))。 + +``` +请求进入 + │ + ├─ 主 Provider (由 AUTH_PROVIDER 环境变量指定,Phase 1): + │ ├─ oidc → 检查 Authorization: Bearer → 命中 → user:xxx + │ ├─ azure_easyauth → 检查 X-MS-CLIENT-PRINCIPAL-ID → 命中 → user:xxx + │ └─ github → 检查 Flask session (OAuth) → 命中 → user:xxx + │ + │ Phase 2+ 扩展: + │ ├─ proxy_header → 检查 X-Forwarded-User (可信IP) → 命中 → user:xxx + │ ├─ saml → 检查 Flask session (SAML ACS) → 命中 → user:xxx + │ ├─ ldap → 检查 Flask session (LDAP bind) → 命中 → user:xxx + │ └─ cas → 检查 Flask session (CAS ticket) → 命中 → user:xxx + │ + ├─ 匿名回退 (ALLOW_ANONYMOUS=true 时): + │ └─ BrowserIdentity → 检查 X-Identity-Id → 命中 → browser:xxx + │ + └─ 全部未命中 → 401 Unauthorized +``` + +### 3.2 AuthProvider 基类 + +```python +# py-src/data_formulator/auth_providers/base.py + +from abc import ABC, abstractmethod +from dataclasses import dataclass +from typing import Any, Optional +from flask import Request + + +@dataclass +class AuthResult: + """认证结果(Phase 1 精简版,仅保留核心字段)。 + + 设计决策 — 不包含 refresh_token: + Phase 1 采用纯前端(oidc-client-ts)管理 token 刷新,后端保持无状态。 + refresh_token 仅存在于前端 UserManager 内部,不经过后端,不在此结构中出现。 + 局限性及未来扩展方向详见 3.8b 节"设计决策与局限性"。 + """ + user_id: str # 唯一标识 (sub claim / principal ID / UUID) + display_name: Optional[str] = None # 显示名称 + email: Optional[str] = None # 邮箱 + raw_token: Optional[str] = None # 原始 access_token (用于 SSO 透传,非 refresh_token) + + +class AuthProvider(ABC): + """认证提供者基类。 + + 每个 Provider 从 HTTP 请求中尝试提取并验证用户身份。 + 返回 None 表示此 Provider 不适用,交给链中的下一个。 + 抛出异常表示认证信息存在但无效(如 token 过期)。 + """ + + @property + @abstractmethod + def name(self) -> str: + """Provider 名称,用于日志和调试。""" + ... + + @abstractmethod + def authenticate(self, request: Request) -> Optional[AuthResult]: + """尝试从请求中提取用户身份。 + + Returns: + AuthResult — 认证成功 + None — 此 Provider 不适用(请求中没有此 Provider 的认证信息) + + Raises: + AuthenticationError — 认证信息存在但无效(token 过期、签名错误等) + """ + ... + + @property + def enabled(self) -> bool: + """Provider 是否已正确配置(必需的环境变量等)。 + + 默认返回 True。子类可覆盖此属性,当必要配置缺失时返回 False, + init_auth() 会据此拒绝激活该 Provider 并输出日志。 + """ + return True + + def on_configure(self, app) -> None: + """Flask app 创建后调用,可用于初始化(如下载 JWKS)。""" + pass + + def get_auth_info(self) -> dict[str, Any]: + """返回前端所需的认证配置信息(供 /api/auth/info 端点使用)。 + + 每个 Provider 自描述其前端交互方式,消除 auth.py 中的 switch 语句。 + 新增 Provider 时只需实现此方法,无需修改 auth.py。 + + Returns: + { + "action": "frontend" | "redirect" | "form" | "transparent" | "none", + "label": "显示名称", + ... (Provider 特定的配置) + } + """ + return {"action": "none"} + + +class AuthenticationError(Exception): + """认证信息存在但验证失败。""" + def __init__(self, message: str, provider: str = ""): + self.provider = provider + super().__init__(message) +``` + +### 3.2b Provider 自动发现(auth_providers/__init__.py) + +`auth_providers` 包在导入时自动扫描同目录下的所有模块,发现并注册所有 `AuthProvider` 子类。 +新增 Provider 只需在 `auth_providers/` 下创建 `.py` 文件并实现 `AuthProvider` 子类,**无需修改任何注册表或配置文件**。 + +```python +# py-src/data_formulator/auth_providers/__init__.py + +import importlib +import inspect +import logging +import pkgutil +from typing import Optional + +from .base import AuthProvider + +_log = logging.getLogger(__name__) + +_PROVIDER_REGISTRY: dict[str, type[AuthProvider]] = {} + +def _discover_providers() -> None: + """扫描 auth_providers/ 目录,收集所有 AuthProvider 子类。""" + for finder, module_name, ispkg in pkgutil.iter_modules(__path__): + if module_name == "base": + continue + try: + mod = importlib.import_module(f".{module_name}", __package__) + for attr_name in dir(mod): + cls = getattr(mod, attr_name) + if (isinstance(cls, type) + and issubclass(cls, AuthProvider) + and cls is not AuthProvider): + instance = cls() + _PROVIDER_REGISTRY[instance.name] = cls + _log.debug("Discovered auth provider: '%s' from %s", + instance.name, module_name) + except ImportError as e: + _log.debug("Skipped '%s' (missing dep): %s", module_name, e) + +_discover_providers() + + +def get_provider_class(name: str) -> Optional[type[AuthProvider]]: + """根据 AUTH_PROVIDER 环境变量的值获取对应的 Provider 类。""" + return _PROVIDER_REGISTRY.get(name) + + +def list_available_providers() -> list[str]: + """返回所有已发现的 Provider 名称(用于日志和错误提示)。""" + return sorted(_PROVIDER_REGISTRY.keys()) +``` + +**工作原理**: + +1. `pkgutil.iter_modules(__path__)` 扫描 `auth_providers/` 目录下的所有 `.py` 文件 +2. 跳过 `base.py`(基类不是具体 Provider) +3. 对每个模块,用 `inspect` 逻辑找出所有 `AuthProvider` 子类 +4. 实例化以获取 `name` 属性(来自子类的 `@property`),作为注册表的 key +5. 依赖缺失的模块(如 Phase 2 的 SAML 需要 `python3-saml`)会被静默跳过 + +**安全性保障**:自动发现只决定"有哪些 Provider 可用",实际激活哪个仍由 `AUTH_PROVIDER` 环境变量**单选**控制。 +未被选中的 Provider 不会执行 `on_configure()`,不会处理任何请求。 + +### 3.3 Azure EasyAuth Provider(迁移现有逻辑) + +```python +# py-src/data_formulator/auth_providers/azure_easyauth.py + +import logging +from flask import Request +from typing import Optional +from .base import AuthProvider, AuthResult + +logger = logging.getLogger(__name__) + + +class AzureEasyAuthProvider(AuthProvider): + """Azure App Service 内置认证 (EasyAuth)。 + + 当 DF 部署在 Azure App Service 并启用了身份验证时, + Azure 会在请求到达 Flask 之前验证用户身份,并注入以下头: + - X-MS-CLIENT-PRINCIPAL-ID: 用户的 Object ID + - X-MS-CLIENT-PRINCIPAL-NAME: 用户名 (可选) + + 这些头由 Azure 基础设施设置,客户端无法伪造。 + """ + + @property + def name(self) -> str: + return "azure_easyauth" + + def authenticate(self, request: Request) -> Optional[AuthResult]: + principal_id = request.headers.get("X-MS-CLIENT-PRINCIPAL-ID") + if not principal_id: + return None + + principal_name = request.headers.get("X-MS-CLIENT-PRINCIPAL-NAME", "") + logger.debug("Azure EasyAuth: principal_id=%s...", principal_id[:8]) + + return AuthResult( + user_id=principal_id.strip(), + display_name=principal_name.strip() or None, + ) +``` + +### 3.4 OIDC Provider(新增核心) + +```python +# py-src/data_formulator/auth_providers/oidc.py + +import logging +import os +import time +from typing import Optional + +import jwt +from jwt import PyJWKClient +from flask import Request + +from .base import AuthProvider, AuthResult, AuthenticationError + +logger = logging.getLogger(__name__) + + +class OIDCProvider(AuthProvider): + """通用 OIDC (OpenID Connect) 认证提供者。 + + 支持任何标准 OIDC 兼容的 Identity Provider: + - Keycloak + - Okta + - Auth0 + - Azure AD / Entra ID + - Google Identity Platform + - Authelia / Authentik + - Casdoor + + 工作流程: + 1. 前端通过 PKCE Authorization Code Flow 从 IdP 获取 access_token + 2. 前端将 access_token 放在 Authorization: Bearer 头中发送 + 3. 本 Provider 用 IdP 的 JWKS 公钥验证 token 签名和 claims + 4. 验证通过后提取 sub (用户唯一ID)、name、email 等信息 + + 配置(环境变量)— 仅需两项: + OIDC_ISSUER_URL — IdP 的 issuer URL + OIDC_CLIENT_ID — 注册的 client ID (同时用作 audience 校验) + + 其余信息(JWKS URI、签名算法)从 OIDC Discovery 自动获取, + claim 名称遵循 OIDC 标准 (sub / name / email),无需配置。 + """ + + def __init__(self): + self._issuer = os.environ.get("OIDC_ISSUER_URL", "").strip().rstrip("/") + self._client_id = os.environ.get("OIDC_CLIENT_ID", "").strip() + + self._jwks_client: Optional[PyJWKClient] = None + self._jwks_uri: Optional[str] = None + self._algorithms: list[str] = ["RS256"] + + @property + def name(self) -> str: + return "oidc" + + @property + def enabled(self) -> bool: + return bool(self._issuer and self._client_id) + + def on_configure(self, app) -> None: + if not self.enabled: + logger.info("OIDC provider not configured (OIDC_ISSUER_URL / OIDC_CLIENT_ID missing)") + return + + # 从 OIDC Discovery 自动获取 JWKS URI 和签名算法 + try: + import urllib.request, json + discovery_url = f"{self._issuer}/.well-known/openid-configuration" + with urllib.request.urlopen(discovery_url, timeout=10) as resp: + discovery = json.loads(resp.read()) + + self._jwks_uri = discovery["jwks_uri"] + self._jwks_client = PyJWKClient(self._jwks_uri, cache_keys=True) + + if "id_token_signing_alg_values_supported" in discovery: + self._algorithms = discovery["id_token_signing_alg_values_supported"] + + logger.info( + "OIDC provider configured: issuer=%s, client_id=%s", + self._issuer, self._client_id, + ) + except Exception as e: + logger.error("Failed to initialize OIDC provider: %s", e) + + def get_auth_info(self) -> dict: + """返回 OIDC 前端配置,供 /api/auth/info 端点使用。""" + return { + "action": "frontend", + "label": os.environ.get("AUTH_DISPLAY_NAME", "SSO Login"), + "oidc": { + "authority": self._issuer, + "clientId": self._client_id, + "scopes": "openid profile email", + }, + } + + def authenticate(self, request: Request) -> Optional[AuthResult]: + if not self._jwks_client: + return None + + auth_header = request.headers.get("Authorization", "") + if not auth_header.startswith("Bearer "): + return None + + token = auth_header[7:].strip() + if not token: + return None + + try: + signing_key = self._jwks_client.get_signing_key_from_jwt(token) + payload = jwt.decode( + token, + signing_key.key, + algorithms=self._algorithms, + issuer=self._issuer, + audience=self._client_id, + options={ + "verify_exp": True, + "verify_iss": True, + "verify_aud": True, + }, + ) + except jwt.ExpiredSignatureError: + raise AuthenticationError("OIDC token expired", provider=self.name) + except jwt.InvalidTokenError as e: + raise AuthenticationError(f"Invalid OIDC token: {e}", provider=self.name) + + user_id = payload.get("sub") + if not user_id: + raise AuthenticationError( + "OIDC token missing 'sub' claim", + provider=self.name, + ) + + return AuthResult( + user_id=str(user_id), + display_name=payload.get("name"), + email=payload.get("email"), + raw_token=token, + ) +``` + +#### 对接 OIDC/OAuth2 Provider 的 IdP 要求 + +> **适用范围**:任何使用 `AUTH_PROVIDER=oidc`(或别名 `oauth2`)对接的身份提供者, +> 包括 Keycloak、Auth0、Okta、自建 SSO 等。 + +**为什么既写 `oidc` 又写 `oauth2`?** + +`AUTH_PROVIDER=oidc` 和 `AUTH_PROVIDER=oauth2` 是同一个 Provider 的两个名字(别名),实际行为完全相同:后端用 JWKS 验 JWT 签名,前端用 Authorization Code + PKCE 流程。之所以加别名,是因为该 Provider 不要求严格的 OpenID Connect 协议——任何支持 JWT + JWKS 的 OAuth2 身份提供者都可以使用。 + +**Data Formulator 支持两种配置模式**: + +##### 模式 A:自动发现(推荐,适用于标准 OIDC IdP) + +只需 3 个环境变量,其余端点自动从 Discovery 获取: + +``` +AUTH_PROVIDER=oidc # 或 oauth2,等价 +OIDC_ISSUER_URL=https://your-idp.example.com/path +OIDC_CLIENT_ID=your-client-id +``` + +**工作原理**:启动时后端请求 `{OIDC_ISSUER_URL}/.well-known/openid-configuration`,从返回的 JSON 中自动提取 `authorization_endpoint`、`token_endpoint`、`userinfo_endpoint`、`jwks_uri` 等全部端点地址。前端 `oidc-client-ts` 也会独立请求同一个 Discovery 端点获取授权和 Token 地址。 + +**适用场景**:Keycloak、Auth0、Okta、Azure AD / Entra ID、Google、Authelia、Authentik、Casdoor 等标准 OIDC IdP 均原生支持 Discovery,无需额外配置。 + +**IdP 要求**: +- `{OIDC_ISSUER_URL}/.well-known/openid-configuration` 必须可访问且返回合法 JSON +- 返回的 `issuer` 字段值必须与 `OIDC_ISSUER_URL` **完全一致**(含协议、端口、路径,不含尾部 `/`) +- Discovery JSON 中必须包含 `authorization_endpoint`、`token_endpoint`、`jwks_uri` +- JWKS 端点返回的公钥用于后端本地验证 JWT 签名(高性能,无额外网络开销) + +**判断你的 IdP 是否支持**:在浏览器中直接访问 `{你的 ISSUER URL}/.well-known/openid-configuration`,如果能看到 JSON 响应则支持模式 A;如果返回 404 或错误页面,请使用模式 B。 + +##### 模式 B:手动端点(适用于无 Discovery 的 OAuth2 服务器) + +许多企业自建的 OAuth2 系统没有实现 OIDC Discovery。此时可直接配置端点 URL: + +``` +AUTH_PROVIDER=oidc +OIDC_ISSUER_URL=https://sso.example.com +OIDC_CLIENT_ID=your-client-id +OIDC_AUTHORIZE_URL=https://sso.example.com/oauth2/authorize +OIDC_TOKEN_URL=https://sso.example.com/oauth2/token +OIDC_USERINFO_URL=https://sso.example.com/oauth2/userinfo +# OIDC_JWKS_URL=... # 可选,如无则通过 UserInfo 端点验证 token +# OIDC_CLIENT_SECRET=... # 可选,机密客户端才需要 +``` + +**优先级**:手动配置的值 > Discovery 自动发现的值。两者可以混用。 + +##### 端点功能说明 + +| 环境变量 | 用途 | 必须? | +|----------|------|--------| +| `OIDC_ISSUER_URL` | IdP 标识 / Discovery 基础 URL | **必须** | +| `OIDC_CLIENT_ID` | 在 IdP 注册的应用 ID | **必须** | +| `OIDC_AUTHORIZE_URL` | 前端浏览器跳转进行用户授权 | 模式 B 必须 | +| `OIDC_TOKEN_URL` | 前端用 authorization code 换取 access_token | 模式 B 必须 | +| `OIDC_USERINFO_URL` | 后端验证 token(无 JWKS 时的回退方案) | 推荐 | +| `OIDC_JWKS_URL` | 后端本地验证 JWT 签名(更高效) | 可选 | +| `OIDC_CLIENT_SECRET` | 机密客户端的密钥 | 可选 | + +##### Token 验证策略 + +后端按以下优先级验证 access_token: + +1. **JWKS 本地验证**(首选):用 `OIDC_JWKS_URL` 提供的公钥验证 JWT 签名,校验 `iss`、`aud`、`exp` claim。性能最优,无网络开销。 +2. **UserInfo 远程验证**(回退):向 `OIDC_USERINFO_URL` 发送 `Authorization: Bearer ` 请求。如果 IdP 返回用户信息,则 token 有效。适用于无 JWKS 的 OAuth2 服务器或使用不透明 token 的场景。 + +##### Discovery 端点最小 JSON 格式(自建 SSO 如选择实现) + +```json +{ + "issuer": "https://your-sso.example.com/path", + "jwks_uri": "https://your-sso.example.com/path/jwks", + "authorization_endpoint": "https://your-sso.example.com/path/authorize", + "token_endpoint": "https://your-sso.example.com/path/token", + "userinfo_endpoint": "https://your-sso.example.com/path/userinfo" +} +``` + +> **自建 SSO 提示**:如果不想实现 Discovery,使用模式 B 手动配置端点即可,无需修改 SSO。 + +##### 回调地址 + +在 IdP 中将 `http(s):///callback` 注册为合法 redirect URI。 + +**JWT Access Token claim 要求**(使用 JWKS 验证时): + +| Claim | 用途 | 必须? | +|-------|------|--------| +| `sub` | 用户唯一 ID → `get_identity_id()` 返回 `user:` | **必须** | +| `iss` | 后端验证 token 来源 | **必须** | +| `aud` | 后端验证 token 受众 = `OIDC_CLIENT_ID` | **必须** | +| `exp` | 后端验证 token 未过期 | **必须** | +| `name` | 前端显示用户名 | 推荐 | +| `email` | 前端显示邮箱 | 推荐 | + +> 使用 UserInfo 验证时,后端从 UserInfo 响应中提取 `sub`/`id`/`user_id`、`name`/`username`、`email`,对 JWT 内部 claim 无要求。 + +### 3.4b GitHub OAuth Provider(新增 — 社交登录) + +GitHub OAuth 是纯 OAuth2(不是 OIDC,没有 `id_token`),需要后端完成授权码交换,因此属于 **B 类有状态 Provider**。 + +```python +# py-src/data_formulator/auth_providers/github_oauth.py + +import os +import logging +from typing import Optional +from flask import Request, session + +from .base import AuthProvider, AuthResult + +logger = logging.getLogger(__name__) + + +class GitHubOAuthProvider(AuthProvider): + """GitHub OAuth 2.0 认证。 + + 配置(环境变量): + GITHUB_CLIENT_ID — GitHub OAuth App 的 Client ID (必需) + GITHUB_CLIENT_SECRET — GitHub OAuth App 的 Client Secret (必需) + + 工作流程(B 类有状态): + 1. 前端重定向到 /api/auth/github/login → 302 到 GitHub 授权页 + 2. 用户授权后 GitHub 回调到 /api/auth/github/callback + 3. 后端用 code 换取 access_token,查询 /user API 获取用户信息 + 4. 写入 Flask session + 5. 后续请求由本 Provider 从 session 中读取身份 + """ + + def __init__(self): + self._client_id = os.environ.get("GITHUB_CLIENT_ID", "").strip() + self._client_secret = os.environ.get("GITHUB_CLIENT_SECRET", "").strip() + + @property + def name(self) -> str: + return "github" + + @property + def enabled(self) -> bool: + return bool(self._client_id and self._client_secret) + + def authenticate(self, request: Request) -> Optional[AuthResult]: + """从 Flask session 中读取 GitHub OAuth 认证结果。""" + user_data = session.get("df_user") + if not user_data or user_data.get("provider") != "github": + return None + + return AuthResult( + user_id=user_data["user_id"], + display_name=user_data.get("display_name"), + email=user_data.get("email"), + raw_token=user_data.get("raw_token"), + ) + + def get_auth_info(self) -> dict: + """返回 GitHub OAuth 前端配置。""" + return { + "action": "redirect", + "url": "/api/auth/github/login", + "label": os.environ.get("AUTH_DISPLAY_NAME", "GitHub Login"), + } +``` + +```python +# py-src/data_formulator/auth_gateways/github_gateway.py + +import os +import logging +import urllib.parse +from flask import Blueprint, request, redirect, session, jsonify + +from data_formulator.auth_providers.base import AuthResult + +logger = logging.getLogger(__name__) + +github_bp = Blueprint("github_auth", __name__, url_prefix="/api/auth/github") + + +@github_bp.route("/login") +def github_login(): + """重定向到 GitHub 授权页。""" + client_id = os.environ.get("GITHUB_CLIENT_ID", "") + redirect_uri = request.url_root.rstrip("/") + "/api/auth/github/callback" + scope = "read:user user:email" + params = urllib.parse.urlencode({ + "client_id": client_id, + "redirect_uri": redirect_uri, + "scope": scope, + }) + return redirect(f"https://github.com/login/oauth/authorize?{params}") + + +@github_bp.route("/callback") +def github_callback(): + """GitHub OAuth 回调 — 用授权码换取 access_token 并查询用户信息。""" + import requests as http_requests + + code = request.args.get("code") + if not code: + return jsonify({"error": "Missing authorization code"}), 400 + + client_id = os.environ.get("GITHUB_CLIENT_ID", "") + client_secret = os.environ.get("GITHUB_CLIENT_SECRET", "") + redirect_uri = request.url_root.rstrip("/") + "/api/auth/github/callback" + + # 用 code 换 access_token + token_resp = http_requests.post( + "https://github.com/login/oauth/access_token", + json={"client_id": client_id, "client_secret": client_secret, + "code": code, "redirect_uri": redirect_uri}, + headers={"Accept": "application/json"}, + timeout=10, + ) + if not token_resp.ok: + return jsonify({"error": "Failed to exchange code for token"}), 502 + + access_token = token_resp.json().get("access_token") + if not access_token: + return jsonify({"error": "No access_token in response"}), 502 + + # 查询 GitHub 用户信息 + user_resp = http_requests.get( + "https://api.github.com/user", + headers={"Authorization": f"Bearer {access_token}", "Accept": "application/json"}, + timeout=10, + ) + if not user_resp.ok: + return jsonify({"error": "Failed to fetch GitHub user info"}), 502 + + user_info = user_resp.json() + user_id = str(user_info.get("id", "")) + login = user_info.get("login", "") + + session["df_user"] = { + "user_id": f"github:{user_id}", + "display_name": user_info.get("name") or login, + "email": user_info.get("email"), + "raw_token": access_token, + "provider": "github", + } + logger.info("GitHub login successful: user=%s (%s)", login, user_id) + + return redirect("/") +``` + +### 3.5 重构后的 auth.py + +```python +# py-src/data_formulator/auth.py (重构) + +""" +Authentication and identity management for Data Formulator. + +Single AuthProvider + anonymous fallback: + AUTH_PROVIDER=oidc → OIDCProvider → user: + ALLOW_ANONYMOUS=true → Browser UUID → browser: +""" + +import logging +import re +import os +from typing import Optional +from flask import request, g, Flask + +from data_formulator.auth_providers.base import ( + AuthProvider, AuthResult, AuthenticationError, +) +from data_formulator.auth_providers import ( + get_provider_class, list_available_providers, +) + +logger = logging.getLogger(__name__) + +_MAX_IDENTITY_LENGTH = 256 +_IDENTITY_RE = re.compile(r'^[\w@.\-+/: ]+$', re.ASCII) + +# 主 Provider,由 init_auth() 初始化 +_provider: Optional[AuthProvider] = None +_allow_anonymous: bool = True + + +def _validate_identity_value(value: str, source: str) -> str: + value = value.strip() + if not value: + raise ValueError(f"Empty identity value from {source}") + if len(value) > _MAX_IDENTITY_LENGTH: + raise ValueError(f"Identity from {source} exceeds {_MAX_IDENTITY_LENGTH} chars") + if not _IDENTITY_RE.match(value): + raise ValueError(f"Identity from {source} contains disallowed characters") + return value + + +def init_auth(app: Flask) -> None: + """初始化认证。在 app 创建后调用一次。 + + 配置模型极简: + AUTH_PROVIDER=oidc ← 选一种(不设置 = 纯匿名模式) + ALLOW_ANONYMOUS=false ← 仅在需要强制登录时设置(默认 true,允许匿名回退) + """ + global _provider, _allow_anonymous + + _allow_anonymous = os.environ.get("ALLOW_ANONYMOUS", "true").lower() in ("true", "1", "yes") + provider_name = os.environ.get("AUTH_PROVIDER", "").strip().lower() + + if not provider_name or provider_name == "anonymous": + logger.info("Auth mode: anonymous only (no AUTH_PROVIDER configured)") + return + + provider_cls = get_provider_class(provider_name) + if not provider_cls: + logger.error("Unknown AUTH_PROVIDER: '%s'. Available: %s", + provider_name, ", ".join(list_available_providers())) + return + + try: + provider: AuthProvider = provider_cls() + + if not provider.enabled: + logger.error( + "AUTH_PROVIDER='%s' is set but required configuration is missing. " + "Provider will NOT be activated. Check environment variables.", + provider_name, + ) + return + + provider.on_configure(app) + _provider = provider + logger.info("Auth provider '%s' activated", provider_name) + except Exception as e: + logger.error("Auth provider '%s' failed to init: %s", provider_name, e) + + logger.info( + "Auth mode: %s%s", + provider_name or "anonymous", + " + anonymous fallback" if _allow_anonymous else " (login required)", + ) + + +def get_identity_id() -> str: + """获取当前请求的命名空间身份 ID。 + + 逻辑: + 1. 主 Provider 认证成功 → user: + 2. ALLOW_ANONYMOUS=true + X-Identity-Id 头 → browser: + 3. 以上均无 → 401 + """ + # 尝试主 Provider + if _provider: + try: + result = _provider.authenticate(request) + if result is not None: + validated = _validate_identity_value(result.user_id, _provider.name) + logger.debug("Authenticated via %s: user:%s...", _provider.name, validated[:8]) + g.df_auth_result = result + return f"user:{validated}" + except AuthenticationError as e: + logger.warning("Auth provider '%s' rejected request: %s", e.provider, e) + raise ValueError(f"Authentication failed: {e}") + + # 匿名回退 + if _allow_anonymous: + client_identity = request.headers.get("X-Identity-Id") + if client_identity: + if ":" in client_identity: + identity_value = client_identity.split(":", 1)[1] + else: + identity_value = client_identity + validated = _validate_identity_value(identity_value, "X-Identity-Id header") + return f"browser:{validated}" + + raise ValueError("Authentication required. Please log in.") + + +def get_auth_result() -> Optional[AuthResult]: + """获取当前请求的完整认证结果。 + + 仅在 get_identity_id() 通过主 Provider 认证成功后可用。 + browser 身份请求返回 None。 + + 用途: + - 获取 raw_token 用于 SSO 透传 + - 获取 display_name / email 用于 UI 显示 + """ + return getattr(g, "df_auth_result", None) + + +def get_sso_token() -> Optional[str]: + """获取当前用户的 SSO access token,用于透传给外部系统。 + + Returns: + access_token 字符串,或 None(匿名用户 / Provider 不提供 token) + """ + result = get_auth_result() + return result.raw_token if result else None +``` + +### 3.6 前端 OIDC 登录流程 + +前端使用 **PKCE (Proof Key for Code Exchange)** 流程 — 这是 SPA 的标准 OIDC 方式,不需要 client secret。 + +推荐使用 `oidc-client-ts` 库(轻量、标准兼容、维护活跃)。 + +```typescript +// src/app/oidcConfig.ts — 运行时从后端获取配置(简化版) + +import { UserManager, WebStorageStateStore, User } from "oidc-client-ts"; + +let _userManager: UserManager | null = null; +let _configPromise: Promise<{authority: string; clientId: string; redirectUri: string} | null> | null = null; + +// 从统一端点获取 OIDC 配置(无需前端编译时配置) +export async function getOidcConfig(): Promise<{authority: string; clientId: string; redirectUri: string} | null> { + if (_configPromise) return _configPromise; + + _configPromise = fetch('/api/auth/info') + .then(r => r.ok ? r.json() : null) + .then(info => { + if (info?.provider !== 'oidc' || !info?.oidc) return null; + return { + authority: info.oidc.authority, + clientId: info.oidc.clientId, + redirectUri: info.oidc.redirectUri || `${window.location.origin}/callback`, + }; + }) + .catch(() => null); + + return _configPromise; +} + +export async function getUserManager(): Promise { + if (_userManager) return _userManager; + const config = await getOidcConfig(); + if (!config) return null; + + _userManager = new UserManager({ + authority: config.authority, + client_id: config.clientId, + redirect_uri: config.redirectUri, + response_type: "code", + scope: "openid profile email", + automaticSilentRenew: true, + userStore: new WebStorageStateStore({ store: window.localStorage }), + }); + + return _userManager; +} + +export async function getAccessToken(): Promise { + const mgr = await getUserManager(); + if (!mgr) return null; + const user = await mgr.getUser(); + if (!user || user.expired) return null; + return user.access_token; +} +``` + +前端认证初始化统一通过 `/api/auth/info` 端点驱动(详见 [3.9.9 节](#399-前端适配统一登录入口)),一次请求确定认证模式,无需串行回退。 + +修改 `fetchWithIdentity` 以自动携带 OIDC token: + +```typescript +// src/app/utils.tsx — fetchWithIdentity 增强 + +export async function fetchWithIdentity( + url: string | URL, + options: RequestInit = {} +): Promise { + const urlString = typeof url === "string" ? url : url.toString(); + + if (urlString.startsWith("/api/")) { + const headers = new Headers(options.headers); + + // 身份标识 (所有请求) + const namespacedIdentity = await getCurrentNamespacedIdentity(); + headers.set("X-Identity-Id", namespacedIdentity); + headers.set("Accept-Language", getAgentLanguage()); + + // OIDC token (如果可用) + const accessToken = await getAccessToken(); // 从 oidcConfig.ts + if (accessToken) { + headers.set("Authorization", `Bearer ${accessToken}`); + } + + options = { ...options, headers }; + } + + return fetch(url, options); +} +``` + +### 3.7 OIDC 回调页面 + +> **国际化约定**:所有用户可见的文本使用 `react-i18next` 的 `useTranslation()` / `t()` 获取, +> 翻译 key 统一放在 `auth.*` 命名空间下(复用 0.6 已有的 i18n 基础设施)。 +> UI 样式对齐 0.6 `LoginView.tsx` 的 MUI Paper 居中卡片风格。 + +```typescript +// src/app/OidcCallback.tsx + +import { useEffect, useState } from "react"; +import { Box, CircularProgress, Typography, Alert, Paper, alpha, useTheme } from "@mui/material"; +import { useTranslation } from "react-i18next"; +import { getUserManager } from "./oidcConfig"; +import dfLogo from "../assets/df-logo.png"; + +export function OidcCallback() { + const { t } = useTranslation(); + const theme = useTheme(); + const [error, setError] = useState(null); + + useEffect(() => { + (async () => { + try { + const mgr = await getUserManager(); + if (mgr) { + await mgr.signinRedirectCallback(); + window.location.href = "/"; + } + } catch (err: any) { + setError(err?.message || "Unknown error"); + } + })(); + }, []); + + return ( + + + + {error ? ( + + {t("auth.callbackFailed", { message: error })} + + ) : ( + <> + + + {t("auth.completingLogin")} + + + )} + + + ); +} +``` + +在路由中注册回调路径(如使用 React Router)或在 `App.tsx` 中检测 URL path。 + +### 3.8 登录 / 登出 UI + +登录 UI 由 `/api/auth/info` 返回的 `action` 字段驱动(见 3.9.9), +沿用 0.6 `LoginView.tsx` 的居中 Paper 卡片布局和 Fluent 配色。 + +```typescript +// src/app/AuthButton.tsx — AppBar 中的登录/登出按钮 + +import { useTranslation } from "react-i18next"; + +function AuthButton() { + const { t } = useTranslation(); + const identity = useSelector((state: DataFormulatorState) => state.identity); + const [mgr, setMgr] = useState(null); + + useEffect(() => { getUserManager().then(setMgr); }, []); + + if (identity?.type === "user") { + return ( + + + {t("auth.connectedAs", { name: identity.displayName || identity.id })} + + mgr?.signoutRedirect()} + title={t("auth.signOut")} + > + + + + ); + } + + if (mgr) { + return ( + + ); + } + + return null; +} +``` + +#### 3.8a 新增 i18n key + +在 `src/i18n/locales/` 的 `en/common.json` 和 `zh/common.json` 的 `auth` 节点下新增(复用 0.6 现有 key,仅补充 OIDC 新增的): + +```json +// en/common.json — auth 节点新增 +{ + "auth": { + "completingLogin": "Completing login...", + "callbackFailed": "Login callback failed: {{message}}", + "oidcLogin": "SSO Login", + "oidcLoggingIn": "Logging in via SSO...", + "oidcDescription": "Login with your enterprise account via Single Sign-On", + "sessionExpired": "Session expired. Please sign in again.", + "silentRenewFailed": "Background token refresh failed. Redirecting to login..." + } +} +``` + +```json +// zh/common.json — auth 节点新增 +{ + "auth": { + "completingLogin": "正在完成登录...", + "callbackFailed": "登录回调失败:{{message}}", + "oidcLogin": "SSO 单点登录", + "oidcLoggingIn": "正在通过 SSO 登录...", + "oidcDescription": "使用企业账号通过单点登录系统认证", + "sessionExpired": "会话已过期,请重新登录。", + "silentRenewFailed": "后台令牌刷新失败,正在跳转到登录页..." + } +} +``` + +> **说明**:0.6 已有的 `auth.signIn`、`auth.signOut`、`auth.connectedAs`、`auth.continueAsGuest`、 +> `auth.guestDescription`、`auth.ssoLogin`、`auth.ssoPopupBlocked` 等 key 原样复用,不重复定义。 +> 新增 key 仅覆盖 OIDC PKCE 流程特有的场景(回调页、静默刷新失败等)。 + +### 3.8b Token 生命周期管理 + +OIDC access_token 有有限的有效期(通常 5~60 分钟)。前端必须妥善处理 token 过期和刷新,否则用户会在使用过程中突然收到 401 错误。 + +#### 静默刷新(Silent Renew) + +前端 `oidc-client-ts` 配置了 `automaticSilentRenew: true`,会在 token 过期前自动通过 iframe 向 IdP 发起无感刷新: + +``` +Token 有效期: 3600s (1h) + │ + ┌───────────────┼─────────────────┐ + │ │ │ + 0s 3300s (55min) 3600s + │ │ │ + 签发 自动触发 token + signinSilent() 过期 + │ + ├─ 成功 → 无缝更新 access_token + └─ 失败 → 触发重新登录 +``` + +#### 刷新失败的处理 + +静默刷新可能因以下原因失败: +- IdP session 已过期(用户在 IdP 端登出或 session 超时) +- iframe 被 CSP 策略阻止 +- 网络错误 + +```typescript +// src/app/oidcConfig.ts — 刷新失败处理 + +const mgr = await getUserManager(); +if (mgr) { + mgr.events.addSilentRenewError(() => { + console.warn("Silent renew failed, redirecting to login..."); + mgr.signinRedirect(); + }); +} +``` + +#### 后端 401 响应与前端重试 + +当后端 `OIDCProvider` 检测到过期 token 时,抛出 `AuthenticationError`,`get_identity_id()` 将其转为 `ValueError`,API 层返回 `401`。前端 `fetchWithIdentity` 应拦截 401 并触发 token 刷新: + +```typescript +// src/app/utils.tsx — fetchWithIdentity 增强:401 自动重试 + +export async function fetchWithIdentity( + url: string | URL, + options: RequestInit = {} +): Promise { + const resp = await _doFetch(url, options); + + if (resp.status === 401) { + const mgr = await getUserManager(); + if (mgr) { + try { + await mgr.signinSilent(); + return _doFetch(url, options); // 用新 token 重试一次 + } catch { + mgr.signinRedirect(); // 静默刷新失败,跳转登录 + return resp; + } + } + } + + return resp; +} +``` + +#### CORS 和 CSP 注意事项 + +OIDC PKCE 流程涉及跨域交互,生产部署需确保: + +| 配置项 | 说明 | +|-------|------| +| **CSP `frame-src`** | 允许 IdP 域名,`signinSilent()` 使用 iframe | +| **CORS** | 如果 DF 前端和后端不同源,后端需配置 `Access-Control-Allow-Origin` | +| **IdP redirect URI** | IdP 侧注册的 callback URL 必须与实际部署域名一致 | +| **HTTPS** | 生产环境必须全链路 HTTPS,否则 cookie / token 可能泄漏 | + +#### 设计决策与局限性 + +**Phase 1 决策:后端不持有 refresh_token,token 刷新完全由前端负责。** + +| 项目 | Phase 1 现状 | +|------|-------------| +| **access_token 存储** | 前端 `oidc-client-ts` UserManager 内存中 | +| **refresh_token 存储** | 前端 `oidc-client-ts` 内部管理,不传给后端 | +| **刷新方式** | 前端 `signinSilent()`(iframe 或 refresh_token grant) | +| **后端角色** | 纯无状态验证(每次请求校验 `Authorization: Bearer `) | +| **`AuthResult.raw_token`** | 仅存当次请求的 access_token,用于 SSO 透传到下游 API | + +**选择此方案的理由:** + +1. **架构简单** — 后端无需管理 token 存储、加密、过期清理等有状态逻辑,完全无状态可水平扩展。 +2. **安全边界清晰** — refresh_token 不经过 DF 后端,减少了服务端 token 泄漏的攻击面。SPA + PKCE 是 OIDC 推荐的公共客户端模式。 +3. **与 Data Formulator 使用场景匹配** — DF 是交互式数据分析工具,用户操作间隔较短(通常不超过 token 有效期),前端静默刷新足以覆盖绝大多数场景。 + +**已知局限性:** + +| 局限 | 影响 | 缓解措施 | +|------|------|---------| +| **长时间后台任务** | 如果 DF 未来支持长时间运行的后台任务(>token 有效期),后端持有的 access_token 会过期,下游 API 调用失败 | 目前不存在此场景;Phase 2 可引入后端 refresh_token 管理 | +| **IdP 不支持静默刷新** | 部分 IdP 禁用 iframe(X-Frame-Options)或不支持 `prompt=none`,导致前端 `signinSilent()` 失败 | 回退到 `signinRedirect()`(重新登录);或在 IdP 侧配置允许 iframe | +| **短有效期 token + 高频操作** | 如果 IdP 签发的 access_token 有效期极短(<5 分钟),频繁的静默刷新可能产生明显延迟 | 建议 IdP 配置合理的 token 有效期(≥15 分钟) | +| **多标签页 token 同步** | 用户同时打开多个 DF 标签页时,各自独立持有 token,刷新时机不同步 | `oidc-client-ts` 支持 `monitorSession` 跨标签页同步;Phase 2 可评估 | + +**Phase 2 可选扩展(仅规划,不在 Phase 1 实现):** + +如果未来出现后端需要长期持有 token 的场景(如后台定时任务、异步数据管道),可考虑: +- 后端 OIDC Confidential Client 模式(使用 `client_secret`),通过 Authorization Code Flow 获取 refresh_token +- 服务端加密存储 refresh_token(可复用 CredentialVault 基础设施) +- `AuthResult` 扩展 `refresh_token` 字段和 `token_expires_at` 时间戳 + +### 3.9 多协议支持:从 OIDC 扩展到 SAML / LDAP / CAS / 反向代理 + +#### 3.9.1 为什么不止 OIDC + +OIDC 覆盖了大部分现代 IdP(Keycloak、Okta、Auth0、Azure AD、Google),但企业环境中仍广泛存在其他认证协议: + +| 协议 | 验证模型 | 典型场景 | access_token 可透传 | +|------|---------|---------|:---:| +| **OAuth 2.0** | 无状态 (access_token per request) | 纯授权场景、旧系统 | **是** — access_token | +| **OIDC** | 无状态 (JWT per request,OAuth2 超集) | 现代 IdP、SaaS | **是** — access_token (同 OAuth2) | +| **Azure EasyAuth** | 无状态 (可信 Header) | Azure App Service | **是** — 通过 `/.auth/me` 获取 | +| **反向代理头** | 无状态 (可信 Header) | Authelia / Authentik / nginx / Traefik | 否 — 无 token | +| **SAML 2.0** | 有状态 (Assertion → Session) | ADFS、Shibboleth、PingFederate、OneLogin | 否 — 但可 Token Exchange 换取 | +| **LDAP / AD** | 有状态 (Bind → Session) | 无中心 IdP 的企业/高校 | 否 — 无 token | +| **CAS** | 有状态 (Ticket → Session) | 高校 (Apereo CAS) | 否 — ticket 一次性 | +| **Kerberos / SPNEGO** | 有状态 (Negotiate → Session) | Windows AD 域环境 | 否 — ticket 绑定特定服务 | + +**核心矛盾**:当前 `AuthProvider.authenticate(request)` 假设每个请求自带可验证的凭据(JWT/Header),这对 OIDC 和反向代理头完美适用。但 SAML/LDAP/CAS 需要先完成一个登录流程(浏览器重定向或表单提交),然后用服务端会话(session)识别后续请求。 + +#### 3.9.2 设计方案:双轨模型(Stateless + Session Gateway) + +解决思路是把认证协议分为两类,用不同的机制处理,但最终汇入同一条 AuthProvider 链: + +``` +┌─────────────────────────────────────────────────────────────────────┐ +│ AuthProvider 链 (per-request) │ +│ │ +│ ┌──────────────┐ ┌──────────┐ ┌──────────────┐ ┌────────────┐ │ +│ │ Azure │→ │ OIDC │→ │ Proxy Header │→ │ Session │ │ +│ │ EasyAuth │ │ (JWT) │ │ (可信头) │ │ (Cookie) │ │ +│ └──────────────┘ └──────────┘ └──────────────┘ └─────┬──────┘ │ +│ │ │ +│ A类: 无状态 A类: 无状态 B类 │ +│ (每次请求自带凭据) (每次请求自带凭据) (查session)│ +│ │ │ +│ ┌───────────────────────────────────────────────────────┘ │ +│ │ Session 中的身份从哪来? → Login Gateway 在登录时写入 │ +│ │ │ +│ │ ┌──────────────────────────────────────────────────┐ │ +│ │ │ Login Gateway (Flask routes) │ │ +│ │ │ │ │ +│ │ │ /api/auth/saml/login ←→ SAML IdP │ │ +│ │ │ /api/auth/saml/acs ← SAML Assertion (POST) │ │ +│ │ │ /api/auth/ldap/login ← username + password │ │ +│ │ │ /api/auth/cas/login ←→ CAS Server │ │ +│ │ │ /api/auth/cas/callback← CAS ticket │ │ +│ │ │ │ │ +│ │ │ 验证通过 → session["df_user"] = AuthResult │ │ +│ │ └──────────────────────────────────────────────────┘ │ +│ └─────────────────────────────────────────────────────────────── │ +│ │ +│ 最终 Fallback: Browser UUID │ +└─────────────────────────────────────────────────────────────────────┘ +``` + +**A 类 — 无状态 Provider**(现有设计已覆盖): +- 每个请求自带可独立验证的凭据(JWT Bearer / 可信 Header) +- 直接在 `authenticate(request)` 中完成验证 +- 代表:OIDC、Azure EasyAuth、反向代理头 + +**B 类 — 有状态 Provider**(新增 Login Gateway + SessionProvider): +- 登录时走协议特定的流程(SAML redirect、LDAP bind、CAS redirect) +- 登录成功后在 Flask session 中存储 `AuthResult` +- 后续请求由通用的 `SessionProvider` 从 session 中读取身份 +- 代表:SAML、LDAP、CAS、Kerberos + +**核心优势:Login Gateway 是协议特定的,但 SessionProvider 是通用的。** 新增一种有状态协议只需要写一个 Login Gateway blueprint,不需要修改 AuthProvider 链。 + +#### 3.9.3 ~ 3.9.8 Phase 2+ 扩展(反向代理 / SAML / LDAP / CAS / Login Gateway) + +> **以下内容属于 Phase 2+ 规划,此处仅记录架构扩展点,不展开实现细节。** +> 具体实现代码将在需求明确时编写独立的协议扩展文档。 + +**架构预留的扩展点:** + +1. **`AuthResult` 扩展** — 在 Phase 2 引入 `groups`、`auth_protocol`、`token_expiry`、`to_session_dict()` / `from_session_dict()` 等字段和方法,支持会话序列化。 +2. **反向代理头 Provider** — A 类无状态,通过 `PROXY_TRUSTED_IPS` 校验可信 IP,从 `X-Forwarded-User` 等 header 提取身份。 +3. **SessionProvider** — B 类通用读取端,从 Flask session 中读取 Login Gateway 写入的身份。 +4. **Login Gateway Blueprint** — SAML ACS (`/api/auth/saml/acs`)、LDAP bind (`/api/auth/ldap/login`)、CAS ticket 验证 (`/api/auth/cas/callback`) 等协议特定的登录流程。 +5. **通用登出** — 清除 session + 返回协议特定的 SLO URL。 +6. **Gateway 注册** — `_register_login_gateways(app, provider_name)` 根据 `AUTH_PROVIDER` 值按需注册对应的 Blueprint。 + +**新增 B 类协议的步骤**: +1. 在 `auth_providers/` 下创建新的 `.py` 文件,实现 `AuthProvider` 子类(自动发现,无需修改注册表) +2. 实现 Login Gateway Blueprint(完成协议特定的登录流程,写入 `session["df_user"]`) +3. 在 Provider 类中实现 `get_auth_info()` 返回前端交互方式 + +核心代码零修改 — 自动发现机制会扫描到新 Provider,`AUTH_PROVIDER` 环境变量选择激活即可。 + +#### 3.9.9 前端适配:统一登录入口 + +前端通过单一的 `/api/auth/info` 端点获取当前认证模式和所需配置,一次请求搞定。 + +**后端统一认证信息 API — 委托 Provider 自描述(消除 switch 膨胀):** + +```python +# auth.py — 新增 + +@app.route("/api/auth/info") +def auth_info(): + """返回当前认证模式 + 前端所需的配置信息。 + + 通过调用 Provider 的 get_auth_info() 方法获取 Provider 特定配置, + 而非在此处 switch 每种协议。新增 Provider 无需修改此端点。 + """ + provider_name = os.environ.get("AUTH_PROVIDER", "anonymous").strip().lower() + + info = { + "provider": provider_name, + "allow_anonymous": _allow_anonymous, + } + + if _provider: + info.update(_provider.get_auth_info()) + else: + info["action"] = "none" + + return jsonify(info) +``` + +每个 Provider 通过实现 `get_auth_info()` 声明前端交互方式(详见 3.2 节基类定义)。例如: +- `OIDCProvider.get_auth_info()` 返回 `{"action": "frontend", "oidc": {...}}` +- `GitHubOAuthProvider.get_auth_info()` 返回 `{"action": "redirect", "url": "/api/auth/github/login"}` +- `AzureEasyAuthProvider.get_auth_info()` 返回 `{"action": "transparent"}` + +新增 Provider 只需在自己的类中实现此方法,`auth.py` 无需任何修改。 + +**前端统一登录组件:** + +沿用 0.6 `LoginView.tsx` 的 Paper 居中卡片布局、Fluent 配色和 i18n 模式。 +所有用户可见文本通过 `t('auth.*')` 获取,不硬编码任何语言。 + +```typescript +// src/app/LoginPanel.tsx — 根据 /api/auth/info 渲染对应的登录 UI + +import React, { FC, useEffect, useState } from "react"; +import { + Box, Button, TextField, Typography, Divider, + CircularProgress, Alert, Paper, alpha, useTheme, +} from "@mui/material"; +import LoginIcon from "@mui/icons-material/Login"; +import OpenInNewIcon from "@mui/icons-material/OpenInNew"; +import PersonOutlineIcon from "@mui/icons-material/PersonOutline"; +import { useTranslation } from "react-i18next"; +import { getUserManager } from "./oidcConfig"; +import dfLogo from "../assets/df-logo.png"; +import { toolName } from "./App"; + +interface AuthInfo { + provider: string; + allow_anonymous: boolean; + action: "frontend" | "redirect" | "form" | "transparent" | "none"; + label?: string; + url?: string; + fields?: string[]; + oidc?: { authority: string; clientId: string; redirectUri: string; scopes: string }; +} + +interface LoginPanelProps { + onGuestContinue: () => void; +} + +export const LoginPanel: FC = ({ onGuestContinue }) => { + const theme = useTheme(); + const { t } = useTranslation(); + + const [authInfo, setAuthInfo] = useState(null); + const [formData, setFormData] = useState({ username: "", password: "" }); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + + useEffect(() => { + fetch("/api/auth/info").then(r => r.json()).then(setAuthInfo).catch(() => null); + }, []); + + if (!authInfo) return null; + if (authInfo.action === "none" || authInfo.action === "transparent") return null; + + const renderAuthAction = () => { + switch (authInfo.action) { + case "frontend": + return ( + <> + + + {t("auth.oidcDescription")} + + + ); + + case "redirect": + return ( + <> + + + {t("auth.ssoDescription")} + + + ); + + case "form": + return ( + { + e.preventDefault(); + if (!formData.username || !formData.password) return; + setLoading(true); + setError(null); + try { + const resp = await fetch(authInfo.url!, { + method: "POST", + credentials: "include", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify(formData), + }); + const data = await resp.json(); + if (resp.ok && data.status === "ok") { + window.location.reload(); + } else { + setError(data.message || t("auth.loginFailed", { message: "Unknown error" })); + } + } catch (err: any) { + setError(err.message || "Network error"); + } finally { + setLoading(false); + } + }} + sx={{ width: "100%", display: "flex", flexDirection: "column", gap: 2 }} + > + setFormData(f => ({ ...f, username: e.target.value }))} + autoComplete="username" + autoFocus + fullWidth + /> + setFormData(f => ({ ...f, password: e.target.value }))} + autoComplete="current-password" + fullWidth + /> + + + ); + + default: + return null; + } + }; + + return ( + + + + + + {toolName} + + + + + {t("auth.loginSubtitle")} + + + {error && ( + + {t("auth.loginFailed", { message: error })} + + )} + + {renderAuthAction()} + + {authInfo.allow_anonymous && ( + <> + + + {t("auth.or")} + + + + + + {t("auth.guestDescription")} + + + )} + + + ); +}; +``` + +> **说明**:组件中所有用户可见文本均通过 `t('auth.*')` 获取。 +> 复用的 0.6 已有 key:`auth.loginSubtitle`、`auth.username`、`auth.password`、`auth.signIn`、 +> `auth.signingIn`、`auth.loginFailed`、`auth.or`、`auth.continueAsGuest`、`auth.guestDescription`、 +> `auth.ssoLogin`、`auth.ssoDescription`。 +> 0.7 新增 key(已在 3.8a 中定义):`auth.oidcLogin`、`auth.oidcLoggingIn`、`auth.oidcDescription`。 + +**前端 `initAuth` — 纯 action 驱动(不按 provider 名称分支):** + +前端**只看 `action` 字段**,完全不看 `provider` 名称。这样新增 Provider 只要 +复用已有的 action 类型,前端就不用改。 + +```typescript +// src/app/App.tsx — initAuth:纯 action 驱动,零 provider 分支 + +useEffect(() => { + async function initAuth() { + const authInfo = await fetch("/api/auth/info").then(r => r.json()).catch(() => null); + if (!authInfo) { setAuthChecked(true); return; } + + switch (authInfo.action) { + case "frontend": { + // 前端管理的认证流程(OIDC PKCE 等) + // authInfo 中携带了所需配置(如 oidc.authority, oidc.clientId) + const mgr = await getUserManager(); + if (mgr) { + let user = await mgr.getUser(); + if (!user || user.expired) { + try { user = await mgr.signinSilent(); } catch { user = null; } + } + if (user) { + setUserInfo({ name: user.profile.name || "", userId: user.profile.sub }); + setAuthChecked(true); + return; + } + } + break; + } + + case "transparent": { + // 平台已完成认证(Azure EasyAuth、反向代理等),查询身份即可 + try { + const resp = await fetch("/api/auth/whoami"); + if (resp.ok) { + const data = await resp.json(); + if (data.user_id) { + setUserInfo({ name: data.display_name || "", userId: data.user_id }); + setAuthChecked(true); + return; + } + } + } catch { /* 未认证 */ } + break; + } + + case "redirect": + case "form": { + // 服务端管理的认证(GitHub OAuth、SAML、LDAP、CAS 等) + // 用户尚未登录时由 LoginPanel 渲染按钮/表单,已登录则从 session 读取 + try { + const resp = await fetch("/api/auth/whoami"); + if (resp.ok) { + const data = await resp.json(); + if (data.user_id) { + setUserInfo({ name: data.display_name || "", userId: data.user_id }); + setAuthChecked(true); + return; + } + } + } catch { /* 未登录 */ } + break; + } + + case "none": + default: + break; + } + + // 匿名模式(或 SSO 未登录 + 允许匿名) + setAuthChecked(true); + } + initAuth(); +}, []); +``` + +**关键设计约束**:`initAuth` 中没有任何 `authInfo.provider === "xxx"` 的判断。 +新增一个 Provider(如 SAML)时,只要其 `get_auth_info()` 返回已有的 action 类型 +(如 `"redirect"`),前端代码零修改。 + +**后端 `/api/auth/whoami` 端点:** + +```python +# auth.py — 新增 + +@app.route("/api/auth/whoami") +def whoami(): + """返回当前 session 中的用户信息(如有)。""" + user_data = session.get("df_user") + if user_data: + return jsonify({ + "user_id": user_data.get("user_id"), + "display_name": user_data.get("display_name"), + "email": user_data.get("email"), + }) + return jsonify({}), 401 +``` + +#### 3.9.10 AuthProvider 模型图 + +单一 Provider + 匿名回退的认证模型: + +``` +AUTH_PROVIDER=oidc (由管理员选一种) + + ┌──────────────────────┐ ┌──────────────┐ + │ 主 Provider │ │ Browser UUID │ + │ (OIDC / GitHub / │ ──→ │ (匿名回退) │ + │ Azure / SAML / LDAP │ 未命中│ │ + │ / CAS / proxy_header)│ │ 仅在 │ + │ │ │ ALLOW_ANONYMOUS│ + │ A类: 每次请求验证 │ │ =true 时生效 │ + │ B类: 从 session 读取 │ └──────────────┘ + └───────────┬───────────┘ + │ + B 类的 session 来自: + ┌────────────────┐ + │ Login Gateway │ + │ ├── GitHub OAuth│ + │ ├── SAML ACS │ + │ ├── LDAP login │ + │ └── CAS callback│ + └────────────────┘ +``` + +#### 3.9.11 SSO Token 透传的协议差异 + +不同协议对 "token 透传到下游数据源" 的支持差异很大。关键区分点是 **协议是否产出一个可作为 Bearer token 的 access_token**: + +> **OIDC 与 OAuth2 的关系**:OIDC 是 OAuth2 的超集(OIDC = OAuth2 + 身份层)。 +> OIDC 在 OAuth2 的 access_token 之上额外给出一个 id_token (JWT) 以标识"谁在用"。 +> **透传给下游 API 的始终是 OAuth2 的 access_token**,与 OIDC 的 id_token 无关。 +> 因此只要是基于 OAuth2 的流程(无论是否带 OIDC),access_token 都可以透传。 + +| 协议 | 产出物 | 能否透传 | 说明 | +|------|--------|:---:|------| +| **OAuth 2.0 / OIDC** | access_token(opaque 或 JWT) | **能** | `AuthResult.raw_token` 存储 access_token,直接作为下游 API 的 Bearer token | +| **Azure EasyAuth** | 平台托管的 token | **能** | 通过 `/.auth/me` 或 `X-MS-TOKEN-*` 头获取 access_token;本质仍是 OAuth2 | +| **反向代理头** | 无 token(仅 header) | **不能** | 代理已消费了原始 token,DF 只拿到用户名等纯文本 header | +| **SAML 2.0** | XML Assertion | **不能直接用** | Assertion 是 XML 格式且有 Audience 限制;但可通过 RFC 8693 Token Exchange 或 SAML Bearer Assertion Grant (RFC 7522) 向 IdP 换取 OAuth2 access_token | +| **LDAP / AD** | 无(仅验证密码) | **不能** | 没有任何 token 产出 | +| **CAS** | Service Ticket(一次性) | **不能** | Ticket 验证后即失效,不可复用 | +| **Kerberos** | Service Ticket | **不能直接用** | Kerberos ticket 绑定到特定服务,无法代用;但 Windows 域中 Kerberos → OAuth2 的桥接方案存在 | + +**设计应对**: + +- **OAuth2/OIDC 用户**:`AuthResult.raw_token` 持有 access_token,DataSourcePlugin 和 DataLoader 可直接用它调用共享同一 IdP 的下游 API(零额外登录)。 +- **SAML 用户(高级)**:如果 IdP 同时支持 OAuth2(如 ADFS、PingFederate 通常都支持),可在 Login Gateway 中用 SAML Assertion 通过 Token Exchange 换取 OAuth2 access_token,再存入 `AuthResult.raw_token`,从而获得透传能力。这种情况下建议直接走 OIDC 而非 SAML。 +- **LDAP / CAS / 反向代理头用户**:需要走 CredentialVault 路线 —— 用户手动配置下游数据源的凭证(或 API Key),由 CredentialVault 加密存储后供 Plugin 使用。 + +这也是为什么 **Layer 3 CredentialVault 是整个架构不可缺少的一层** —— 它为无法 token 透传的认证协议提供了凭证存储的兜底方案。同时这也说明 **OIDC 是首选协议**(P0 优先级),因为它是唯一能同时解决"身份识别"和"下游透传"两个问题的方案。 + +#### 3.9.12 协议选择指南 + +为方便运维人员选择,提供以下决策树: + +``` +你的组织使用什么身份系统? + │ + ├─ Azure AD / Entra ID + │ ├─ 部署在 Azure App Service? → 用 azure_easyauth (零配置) + │ └─ 其他部署 → 用 oidc (Azure AD 支持 OIDC) + │ + ├─ Keycloak / Okta / Auth0 / Google Workspace → 用 oidc + │ + ├─ ADFS / Shibboleth / PingFederate (仅 SAML) + │ ├─ 能配 OIDC 吗? → 优先 oidc (ADFS/Ping 一般都支持) + │ └─ 只有 SAML → 用 saml (session 模式) + │ + ├─ IC 卡 / 智能卡 / PKI 证书 + │ ├─ IdP 能签发 OAuth2 token? → 用 oidc/saml + Token Exchange (未来扩展,见 3.9.12) + │ └─ 否 → 暂不支持,建议升级 IdP 或使用 API Key + CredentialVault + │ + ├─ Authelia / Authentik / nginx / Traefik (反向代理已认证) + │ └─ 用 proxy_header + │ + ├─ 只有 LDAP / Active Directory (无 SSO 中心) + │ └─ 用 ldap (session 模式) + │ + ├─ CAS (高校) + │ └─ 用 cas (session 模式) + │ + └─ 无任何身份系统 + └─ 默认 Browser UUID (匿名模式) +``` + +#### 3.9.13 新增依赖说明 + +各协议的 Python 依赖作为 **可选依赖** 安装,基础安装不引入: + +```toml +# pyproject.toml — optional dependencies +[project.optional-dependencies] +oidc = ["PyJWT>=2.8", "cryptography>=41.0"] +saml = ["python3-saml>=1.16"] +ldap = ["ldap3>=2.9"] +cas = [] # 纯标准库实现,无额外依赖 + +# 快捷安装全部认证协议 +auth-all = ["PyJWT>=2.8", "cryptography>=41.0", "python3-saml>=1.16", "ldap3>=2.9"] +``` + +#### 3.9.14 优先级建议 + +| 优先级 | 协议 | 理由 | +|:---:|------|------| +| **P0** | OIDC | 覆盖面最广,现代 IdP 基本都支持,且是唯一支持 token 透传的协议 | +| **P0** | Browser UUID | 保持向后兼容的匿名模式 | +| **P1** | 反向代理头 | 自建部署最常见的方式,实现简单 | +| **P1** | LDAP | 覆盖没有 SSO 中心的传统企业/高校 | +| **P2** | SAML | 大型企业有时只提供 SAML,但 ADFS/PingFederate 通常也支持 OIDC | +| **P3** | CAS | 受众窄(主要是高校),需求出现时再实现 | + +--- + +## 4. Layer 2:数据源插件系统 (DataSourcePlugin) + +### 4.1 设计思路 + +BI 报表系统(Superset、Metabase、Power BI 等)的集成需求远超现有 `ExternalDataLoader` 的能力: + +| 能力 | ExternalDataLoader | BI 系统需要 | +|------|:--:|:--:| +| 连接参数 | 简单 key-value 表单 | URL + 认证流程 (JWT/OAuth/SSO) | +| 数据浏览 | `list_tables()` → 表名列表 | 数据集 + 仪表盘 + 报表 + 筛选条件 | +| 权限模型 | 无 (用数据库账号的权限) | 需尊重 BI 系统自身的 RBAC/RLS | +| 前端 UI | 通用字段表单 | 需要专用目录浏览、搜索、筛选等交互 | +| 独立 API 路由 | 无 | 需要注册 Blueprint | + +因此,BI 系统使用独立的 **DataSourcePlugin** 机制,与 `ExternalDataLoader` **并行存在**。 + +### 4.2 Plugin 基类 + +```python +# py-src/data_formulator/plugins/base.py + +from abc import ABC, abstractmethod +from typing import Any, Optional +from flask import Blueprint + + +class DataSourcePlugin(ABC): + """外部数据源插件基类。 + + 每个插件实现以下契约: + 1. manifest() — 自我描述(ID、名称、配置需求) + 2. create_blueprint() — Flask 路由(认证 + 目录 + 数据拉取) + 3. get_frontend_config() — 传给前端的非敏感配置 + 4. on_enable() / on_disable() — 生命周期钩子 + """ + + @staticmethod + @abstractmethod + def manifest() -> dict[str, Any]: + """插件元数据。 + + Returns: + { + "id": "superset", + "name": "Apache Superset", + "icon": "superset", + "description": "从 Superset 加载数据集和仪表盘数据", + "version": "1.0.0", + "env_prefix": "PLG_SUPERSET", + "required_env": ["PLG_SUPERSET_URL"], + "optional_env": ["PLG_SUPERSET_TIMEOUT"], + "auth_modes": ["sso", "jwt", "password"], + "capabilities": ["datasets", "dashboards", "filters"], + } + """ + ... + + @abstractmethod + def create_blueprint(self) -> Blueprint: + """创建 Flask Blueprint。 + + 路由前缀: /api/plugins// + 示例路由: + /api/plugins/superset/auth/login + /api/plugins/superset/auth/status + /api/plugins/superset/catalog/datasets + /api/plugins/superset/data/load-dataset + """ + ... + + @abstractmethod + def get_frontend_config(self) -> dict[str, Any]: + """返回传给前端的配置(不包含敏感信息)。 + + Returns: + { + "auth_modes": ["sso", "jwt", "password"], + "sso_login_url": "http://superset:8088/df-sso-bridge/", + "capabilities": ["datasets", "dashboards", "filters"], + } + """ + ... + + def on_enable(self, app) -> None: + """插件启用时调用。可初始化连接池、缓存等。""" + pass + + def on_disable(self) -> None: + """插件禁用时调用。""" + pass + + def get_auth_status(self, session: dict) -> Optional[dict[str, Any]]: + """返回当前用户在此插件中的认证状态。 + + Returns: + {"authenticated": True, "user": "john", ...} 或 None + """ + return None + + def supports_sso_passthrough(self) -> bool: + """此插件是否支持 SSO token 透传。 + + 如果返回 True,插件可以从 auth.get_sso_token() 获取用户的 + OIDC access token,直接用于调用外部系统 API。 + """ + return False +``` + +### 4.3 插件与 SSO 的集成模式 + +每个插件可以支持多种认证方式,根据部署环境自动选择: + +``` +┌──────────────────────────────────────────────────────────────────┐ +│ 插件认证模式选择 │ +│ │ +│ 场景 A: DF 有 SSO + 外部系统也接了同一 IdP │ +│ ───────────────────────────────────────── │ +│ → 自动使用 SSO Token 透传 │ +│ → 用户无需额外登录 │ +│ → 外部系统通过 token 识别用户,应用自身 RBAC │ +│ │ +│ 场景 B: DF 有 SSO + 外部系统没有接 SSO │ +│ ───────────────────────────────────── │ +│ → 首次使用时,用户在插件 UI 中输入外部系统的账号/密码/API Key │ +│ → 凭证存入 CredentialVault(按 SSO user_id 关联) │ +│ → 后续自动从 Vault 取出,无需重复输入 │ +│ → 换设备后只要 SSO 登录,凭证自动可用 │ +│ │ +│ 场景 C: DF 无 SSO(本地匿名模式) │ +│ ────────────────────────────── │ +│ → 用户在插件 UI 中输入外部系统的账号密码 │ +│ → Token 存在 Flask Session 中(仅当次会话有效) │ +│ → 行为与 0.6 版本一致 │ +└──────────────────────────────────────────────────────────────────┘ +``` + +插件内部的认证路由应检查这三种模式: + +```python +# 插件认证路由模板 + +@bp.route("/auth/login", methods=["POST"]) +def plugin_login(): + """处理插件认证。自动选择最佳模式。""" + + # 模式 1: SSO Token 透传 + sso_token = get_sso_token() + if sso_token and plugin.supports_sso_passthrough(): + # 用 SSO token 直接调用外部系统的 token exchange / introspection + external_token = exchange_sso_token(sso_token) + if external_token: + store_plugin_session(plugin_id, external_token) + return jsonify({"status": "ok", "auth_mode": "sso"}) + + # 模式 2: 从 Credential Vault 取已存储的凭证 + vault = get_credential_vault() + identity = get_identity_id() + stored = vault.retrieve(identity, plugin_id) if vault else None + if stored: + external_token = authenticate_with_stored_credentials(stored) + if external_token: + store_plugin_session(plugin_id, external_token) + return jsonify({"status": "ok", "auth_mode": "vault"}) + + # 模式 3: 用户手动输入 + data = request.get_json() + username = data.get("username") + password = data.get("password") + if username and password: + external_token = authenticate_with_credentials(username, password) + # 可选:存入 Vault 以便下次自动使用 + if vault and data.get("remember", True): + vault.store(identity, plugin_id, {"username": username, "password": password}) + store_plugin_session(plugin_id, external_token) + return jsonify({"status": "ok", "auth_mode": "credentials"}) + + return jsonify({"status": "needs_login", "available_modes": get_available_modes()}) +``` + +### 4.4 插件注册与发现 + +#### 4.4.1 注册机制方案选型 + +新增一个数据源插件时,注册表是否需要改代码?有三种方案: + +| 方案 | 新增插件要改代码吗 | 复杂度 | 安全性 | 适合场景 | +|------|:---:|:---:|:---:|------| +| **A. 硬编码列表** | 要,改注册表一行 | 最低 | 最高(只加载白名单) | 插件由同一团队开发,随主项目发布 | +| **B. 目录自动扫描** | 不要,放进目录就生效 | 低 | 中(需约定和校验) | 插件持续增加,希望"拖入即用" | +| **C. setuptools entry_points** | 不要,`pip install` 后自动注册 | 中 | 中 | 插件作为独立 pip 包发布 | + +**方案 A(硬编码列表)** 是现有 `ExternalDataLoader` 的做法(`_LOADER_SPECS` 列表),也是 0.7 系统的成熟模式。优点是简单透明,缺点是每加一个插件都要改 `__init__.py`。 + +**方案 C(entry_points)** 适合有第三方插件生态的平台(如 pytest、Flask 扩展),对当前项目来说过于重型,且前端部分无法通过 pip 安装(仍需编译到主 bundle)。 + +**选择方案 B(目录自动扫描)** — 理由: + +1. **插件会持续增长** — 未来对接的报表系统只会越来越多,每次加一个都改注册表是无意义的样板修改 +2. **插件都是内部开发** — 不需要跨包的 entry_points 机制 +3. **manifest 自描述** — 插件的 ID、必需环境变量等信息已经在 `manifest()` 中声明,不需要在注册表中重复 +4. **安全保底** — 通过 `PLUGIN_BLOCKLIST` 环境变量提供黑名单能力 + +> **统一范式**:AuthProvider 与 DataSourcePlugin 采用相同的目录自动扫描机制。 +> 区别仅在于激活策略 — 认证是**单选**的(`AUTH_PROVIDER` 环境变量指定唯一活跃 Provider), +> DataSourcePlugin 是**并行**的(所有已发现的插件同时存在)。详见 4.4.8 对比表。 + +#### 4.4.2 插件约定 + +每个插件是 `plugins/` 目录下的一个 Python 子包,必须满足以下约定: + +``` +plugins/superset/ +├── __init__.py ← 必须暴露 plugin_class = SupersetPlugin +├── superset_client.py +├── auth_bridge.py +├── catalog.py +└── routes/ + ├── auth.py + ├── catalog.py + └── data.py +``` + +`__init__.py` 的最低要求: + +```python +# plugins/superset/__init__.py + +from .plugin import SupersetPlugin + +# 框架通过此变量发现插件类 +plugin_class = SupersetPlugin +``` + +框架通过 `plugin_class` 变量找到插件类,再调用 `plugin_class.manifest()` 获取自描述信息(ID、必需环境变量等)。不需要在任何注册表中手动登记。 + +#### 4.4.3 自动扫描实现 + +```python +# py-src/data_formulator/plugins/__init__.py + +""" +数据源插件自动发现与注册。 + +扫描 plugins/ 目录下所有子包,查找暴露 plugin_class 变量的模块。 +通过 manifest() 中的 required_env 判断是否启用。 +通过 PLUGIN_BLOCKLIST 环境变量支持显式禁用。 + +新增插件步骤: + 1. 在 plugins/ 下创建子目录 + 2. __init__.py 中暴露 plugin_class = YourPlugin + 3. .env 中设置必需环境变量 + 4. 重启服务 → 自动发现、自动注册 + 无需修改任何现有代码。 +""" + +import importlib +import logging +import os +import pkgutil +from typing import Any + +from data_formulator.plugins.base import DataSourcePlugin + +_log = logging.getLogger(__name__) + +ENABLED_PLUGINS: dict[str, DataSourcePlugin] = {} +DISABLED_PLUGINS: dict[str, str] = {} + +# 显式黑名单:PLUGIN_BLOCKLIST=powerbi,grafana +_BLOCKLIST = set( + p.strip() + for p in os.environ.get("PLUGIN_BLOCKLIST", "").split(",") + if p.strip() +) + + +def discover_and_register(app) -> None: + """扫描 plugins/ 子包,发现并注册所有已启用的插件。 + + 在 app.py 的 _register_blueprints() 中调用一次。 + """ + for finder, pkg_name, ispkg in pkgutil.iter_modules(__path__): + # 跳过非包(如 base.py, data_writer.py)和黑名单 + if not ispkg: + continue + if pkg_name in _BLOCKLIST: + DISABLED_PLUGINS[pkg_name] = "Blocked by PLUGIN_BLOCKLIST" + _log.info("Plugin '%s' blocked by PLUGIN_BLOCKLIST", pkg_name) + continue + + try: + mod = importlib.import_module(f"data_formulator.plugins.{pkg_name}") + except ImportError as exc: + DISABLED_PLUGINS[pkg_name] = f"Missing dependency: {exc.name}" + _log.info("Plugin '%s' disabled (import error): %s", pkg_name, exc) + continue + + # 检查是否暴露了 plugin_class + plugin_cls = getattr(mod, "plugin_class", None) + if plugin_cls is None: + continue # 不是插件目录(可能是工具模块),静默跳过 + if not (isinstance(plugin_cls, type) and issubclass(plugin_cls, DataSourcePlugin)): + _log.warning( + "Plugin '%s': plugin_class is not a DataSourcePlugin subclass, skipped", + pkg_name, + ) + continue + + # 从 manifest 获取元数据 + try: + manifest = plugin_cls.manifest() + except Exception as exc: + DISABLED_PLUGINS[pkg_name] = f"manifest() failed: {exc}" + _log.error("Plugin '%s' manifest() failed: %s", pkg_name, exc) + continue + + plugin_id = manifest["id"] + required_env = manifest.get("required_env", []) + + # 检查必需环境变量 + missing_env = [e for e in required_env if not os.environ.get(e)] + if missing_env: + DISABLED_PLUGINS[plugin_id] = f"Not configured: {', '.join(missing_env)}" + _log.info( + "Plugin '%s' disabled: missing env %s", + plugin_id, ", ".join(missing_env), + ) + continue + + # 实例化、注册 Blueprint、启用 + try: + plugin: DataSourcePlugin = plugin_cls() + bp = plugin.create_blueprint() + app.register_blueprint(bp) + plugin.on_enable(app) + + ENABLED_PLUGINS[plugin_id] = plugin + _log.info( + "Plugin '%s' enabled (auto-discovered from plugins/%s/)", + plugin_id, pkg_name, + ) + except Exception as exc: + DISABLED_PLUGINS[plugin_id] = str(exc) + _log.error( + "Plugin '%s' failed to initialize: %s", + plugin_id, exc, exc_info=True, + ) +``` + +#### 4.4.4 发现流程图 + +``` +plugins/ +├── __init__.py ← discover_and_register() 在这里 +├── base.py ← DataSourcePlugin 基类 (ispkg=False, 跳过) +├── data_writer.py ← 工具模块 (ispkg=False, 跳过) +├── superset/ ← ispkg=True +│ └── __init__.py → plugin_class = SupersetPlugin +│ → manifest(): required_env=["PLG_SUPERSET_URL"] +│ → os.environ["PLG_SUPERSET_URL"] 存在? +│ → 是 → 实例化 → 注册 Blueprint → ENABLED ✅ +│ → 否 → DISABLED (Not configured) +├── metabase/ ← ispkg=True +│ └── __init__.py → plugin_class = MetabasePlugin +│ → manifest(): required_env=["PLG_METABASE_URL"] +│ → os.environ["PLG_METABASE_URL"] 不存在 +│ → DISABLED (Not configured) +└── _helpers/ ← ispkg=True, 但无 plugin_class → 静默跳过 + └── __init__.py → (没有 plugin_class 变量) +``` + +#### 4.4.5 新增插件的完整步骤 + +以新增一个 Grafana 插件为例: + +**步骤 1**:创建插件目录和代码 + +``` +plugins/grafana/ +├── __init__.py # plugin_class = GrafanaPlugin +├── plugin.py # GrafanaPlugin(DataSourcePlugin) 实现 +├── grafana_client.py # Grafana REST API 封装 +└── routes/ + ├── auth.py # /api/plugins/grafana/auth/* + ├── catalog.py # /api/plugins/grafana/catalog/* + └── data.py # /api/plugins/grafana/data/* +``` + +**步骤 2**:在 `.env` 中设置环境变量 + +```bash +PLG_GRAFANA_URL=http://grafana.example.com:3000 +``` + +**步骤 3**:重启服务 + +``` + Loading data source plugins... + Plugin 'grafana' enabled (auto-discovered from plugins/grafana/) +``` + +**核心代码改动:0 行。** 不需要修改 `__init__.py`、`app.py` 或任何其他文件。 + +#### 4.4.6 安全措施 + +| 措施 | 说明 | +|------|------| +| **类型校验** | `plugin_class` 必须是 `DataSourcePlugin` 的子类,否则跳过 | +| **环境变量门控** | `required_env` 中的变量缺失则不启用,防止未配置的插件意外加载 | +| **显式黑名单** | `PLUGIN_BLOCKLIST=powerbi,grafana` 可以禁用特定插件 | +| **Blueprint 前缀隔离** | 插件路由强制在 `/api/plugins//` 下,无法覆盖核心路由 | +| **错误隔离** | 单个插件加载失败不影响其他插件和核心系统 | + +#### 4.4.7 前端的对应扫描机制 + +前端由于 Vite/Webpack 的编译时限制,无法做到运行时自动扫描。但可以用 **Vite 的 `import.meta.glob`** 实现编译时自动发现: + +```typescript +// src/plugins/registry.ts + +import { DataSourcePluginModule } from "./types"; + +// Vite 编译时自动扫描 src/plugins/*/index.ts +// 返回 { "./superset/index.ts": () => import(...), "./metabase/index.ts": () => import(...) } +const pluginModules = import.meta.glob<{ default: DataSourcePluginModule }>( + "./*/index.ts" +); + +// 提取插件 ID → 懒加载函数的映射 +const pluginLoaders: Record Promise> = {}; +for (const [path, loader] of Object.entries(pluginModules)) { + // "./superset/index.ts" → "superset" + const match = path.match(/^\.\/([^/]+)\/index\.ts$/); + if (match) { + const pluginId = match[1]; + pluginLoaders[pluginId] = () => loader().then((m) => m.default); + } +} + +export async function loadEnabledPlugins( + enabledPluginIds: string[] +): Promise { + const modules: DataSourcePluginModule[] = []; + for (const id of enabledPluginIds) { + const loader = pluginLoaders[id]; + if (loader) { + try { + modules.push(await loader()); + } catch (e) { + console.warn(`Failed to load plugin: ${id}`, e); + } + } + } + return modules; +} +``` + +这样前端也做到了"创建 `src/plugins/grafana/index.ts` 即自动纳入编译",不需要手动维护 `pluginLoaders` 映射表。 + +> **后端自动扫描 + 前端 `import.meta.glob` = 全栈零注册新增插件。** + +#### 4.4.8 与 AuthProvider 注册机制的对比 + +| 维度 | DataSourcePlugin | AuthProvider | +|------|-----------------|-------------| +| 协作模式 | 并行(所有插件同时存在) | 单选(同一时间只有一个主 Provider) | +| 注册方式 | `plugins/` 目录自动扫描 | `auth_providers/` 目录自动扫描 | +| 激活方式 | 所有已发现的插件同时启用 | `AUTH_PROVIDER` 环境变量**单选**激活一个 | +| 新增方式 | 在 `plugins/` 下创建目录即可 | 在 `auth_providers/` 下创建 `.py` 即可 | +| 安全控制 | `PLUGIN_BLOCKLIST` 黑名单 | 仅被选中的 Provider 执行 `on_configure()` | + +**统一的设计哲学**:发现与激活分离 — 两者都通过目录扫描自动发现,但激活策略不同(插件全量启用,Provider 单选启用)。新增组件时核心代码零修改。 + +### 4.5 插件数据写入工具 + +插件从外部系统拉取到数据后,通过 `PluginDataWriter` 写入 Workspace: + +```python +# py-src/data_formulator/plugins/data_writer.py + +import logging +import pandas as pd +import pyarrow as pa +from typing import Any, Optional + +from data_formulator.auth import get_identity_id +from data_formulator.workspace_factory import get_workspace +from data_formulator.datalake.parquet_utils import sanitize_table_name + +logger = logging.getLogger(__name__) + + +class PluginDataWriter: + """插件专用的数据写入工具。""" + + def __init__(self, plugin_id: str): + self.plugin_id = plugin_id + + def _get_workspace(self): + return get_workspace(get_identity_id()) + + def write_dataframe( + self, + df: pd.DataFrame, + table_name: str, + *, + overwrite: bool = True, + source_metadata: Optional[dict[str, Any]] = None, + ) -> dict[str, Any]: + """将 DataFrame 写入当前用户的 Workspace。""" + workspace = self._get_workspace() + base_name = sanitize_table_name(table_name) + final_name = base_name + is_renamed = False + + if not overwrite: + counter = 1 + existing = set(workspace.list_tables()) + while final_name in existing: + final_name = f"{base_name}_{counter}" + counter += 1 + is_renamed = True + + loader_metadata = { + "loader_type": f"plugin:{self.plugin_id}", + **(source_metadata or {}), + } + + meta = workspace.write_parquet(df, final_name, loader_metadata=loader_metadata) + + logger.info( + "Plugin '%s' wrote '%s': %d rows, %d cols", + self.plugin_id, final_name, len(df), len(df.columns), + ) + + return { + "table_name": meta.name, + "row_count": meta.row_count, + "columns": [c.name for c in (meta.columns or [])], + "is_renamed": is_renamed, + } + + def write_arrow( + self, + table: pa.Table, + table_name: str, + *, + overwrite: bool = True, + source_metadata: Optional[dict[str, Any]] = None, + ) -> dict[str, Any]: + """将 Arrow Table 写入 Workspace(跳过 pandas 转换,更高效)。""" + workspace = self._get_workspace() + base_name = sanitize_table_name(table_name) + final_name = base_name + is_renamed = False + + if not overwrite: + counter = 1 + existing = set(workspace.list_tables()) + while final_name in existing: + final_name = f"{base_name}_{counter}" + counter += 1 + is_renamed = True + + loader_metadata = { + "loader_type": f"plugin:{self.plugin_id}", + **(source_metadata or {}), + } + + meta = workspace.write_parquet_from_arrow(table, final_name, loader_metadata=loader_metadata) + + return { + "table_name": meta.name, + "row_count": meta.row_count, + "columns": [c.name for c in (meta.columns or [])], + "is_renamed": is_renamed, + } +``` + +### 4.6 前端插件接口 + +```typescript +// src/plugins/types.ts + +export interface PluginManifest { + id: string; + name: string; + icon: string; + description: string; + authModes: Array<"sso" | "jwt" | "password" | "api_key" | "none">; + capabilities: string[]; +} + +// PluginPanelProps、DataProvenance、DataSourcePluginModule 的完整定义 +// 见 1-data-source-plugin-architecture.md § 7.1 +// +// 要点: +// - 前端组件不接收 ssoToken prop。SSO token 由插件后端通过 +// auth.get_sso_token() 从 Flask session 获取,前端无需感知。 +// - onDataLoaded 回调必须包含 DataProvenance(数据溯源), +// 以支持"用同样的参数刷新"和 UI 显示数据来源。 +// - onPreviewLoaded(可选)支持"先预览再加载"的交互。 +// - LoginComponent 不接收 ssoToken,认证流程走插件自身后端。 +``` + +前端插件注册使用 `import.meta.glob` 自动扫描(详见 4.4.7 节),此处不再重复。新增插件只需在 `src/plugins/` 下创建子目录并导出 `index.ts`,无需手动维护注册表。 + +--- + +## 5. Layer 3:凭证保险箱 (CredentialVault) + +### 5.1 设计思路 + +用户连接未接 SSO 的外部系统时,需要输入该系统的账号密码。这些凭证应该: + +| 需求 | 现状 (0.7) | 目标 | +|------|-----------|------| +| 持久化 | 浏览器 IndexedDB (redux-persist),换浏览器丢失 | 服务端加密存储,跟随用户身份 | +| 安全性 | 前端明文存储 | 服务端 Fernet 对称加密 | +| 跨设备 | 不支持 | SSO 登录后自动可用 | +| 按用户隔离 | 基于 browser UUID | 基于 SSO user_id 或 browser UUID | + +### 5.2 CredentialVault 接口 + +```python +# py-src/data_formulator/credential_vault/base.py + +from abc import ABC, abstractmethod +from typing import Optional + + +class CredentialVault(ABC): + """凭证保险箱抽象接口。 + + 按 (user_identity, source_key) 二元组存取加密凭证。 + - user_identity: 来自 auth.get_identity_id(),如 "user:alice@corp.com" + - source_key: 外部系统标识,如 "superset"、"metabase-prod" + """ + + @abstractmethod + def store(self, user_id: str, source_key: str, credentials: dict) -> None: + """存储凭证。已存在则覆盖。""" + ... + + @abstractmethod + def retrieve(self, user_id: str, source_key: str) -> Optional[dict]: + """取出凭证。不存在返回 None。""" + ... + + @abstractmethod + def delete(self, user_id: str, source_key: str) -> None: + """删除凭证。""" + ... + + @abstractmethod + def list_sources(self, user_id: str) -> list[str]: + """列出该用户所有已存储凭证的 source_key。""" + ... +``` + +### 5.3 本地加密实现 + +```python +# py-src/data_formulator/credential_vault/local_vault.py + +import json +import logging +import sqlite3 +from pathlib import Path +from typing import Optional + +from cryptography.fernet import Fernet + +from .base import CredentialVault + +logger = logging.getLogger(__name__) + + +class LocalCredentialVault(CredentialVault): + """基于 SQLite + Fernet 的本地加密凭证存储。 + + 存储位置: DATA_FORMULATOR_HOME/credentials.db + 加密密钥: CREDENTIAL_VAULT_KEY 环境变量 (Fernet key) + + 生成密钥: + python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())" + """ + + def __init__(self, db_path: str | Path, encryption_key: str): + self._db_path = str(db_path) + self._fernet = Fernet(encryption_key.encode() if isinstance(encryption_key, str) else encryption_key) + self._init_db() + + def _init_db(self): + with sqlite3.connect(self._db_path) as conn: + conn.execute(""" + CREATE TABLE IF NOT EXISTS credentials ( + user_id TEXT NOT NULL, + source_key TEXT NOT NULL, + encrypted_data BLOB NOT NULL, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (user_id, source_key) + ) + """) + + def store(self, user_id: str, source_key: str, credentials: dict) -> None: + encrypted = self._fernet.encrypt(json.dumps(credentials).encode("utf-8")) + with sqlite3.connect(self._db_path) as conn: + conn.execute( + "INSERT OR REPLACE INTO credentials (user_id, source_key, encrypted_data, updated_at) " + "VALUES (?, ?, ?, CURRENT_TIMESTAMP)", + (user_id, source_key, encrypted), + ) + logger.debug("Stored credentials for %s / %s", user_id[:16], source_key) + + def retrieve(self, user_id: str, source_key: str) -> Optional[dict]: + with sqlite3.connect(self._db_path) as conn: + row = conn.execute( + "SELECT encrypted_data FROM credentials WHERE user_id = ? AND source_key = ?", + (user_id, source_key), + ).fetchone() + if not row: + return None + try: + decrypted = self._fernet.decrypt(row[0]) + return json.loads(decrypted.decode("utf-8")) + except Exception as e: + logger.warning("Failed to decrypt credentials for %s / %s: %s", user_id[:16], source_key, e) + return None + + def delete(self, user_id: str, source_key: str) -> None: + with sqlite3.connect(self._db_path) as conn: + conn.execute( + "DELETE FROM credentials WHERE user_id = ? AND source_key = ?", + (user_id, source_key), + ) + + def list_sources(self, user_id: str) -> list[str]: + with sqlite3.connect(self._db_path) as conn: + rows = conn.execute( + "SELECT source_key FROM credentials WHERE user_id = ?", + (user_id,), + ).fetchall() + return [r[0] for r in rows] +``` + +### 5.4 Vault 工厂 + +```python +# py-src/data_formulator/credential_vault/__init__.py + +import os +import logging +from typing import Optional + +from .base import CredentialVault + +logger = logging.getLogger(__name__) + +_vault: Optional[CredentialVault] = None +_initialized = False + + +def get_credential_vault() -> Optional[CredentialVault]: + """获取全局 CredentialVault 实例。 + + 返回 None 表示 Vault 未配置(CREDENTIAL_VAULT_KEY 未设置)。 + 此时插件应回退到仅 Session 级别的凭证存储。 + """ + global _vault, _initialized + if _initialized: + return _vault + + _initialized = True + key = os.environ.get("CREDENTIAL_VAULT_KEY", "").strip() + if not key: + logger.info("Credential vault not configured (CREDENTIAL_VAULT_KEY not set)") + return None + + vault_type = os.environ.get("CREDENTIAL_VAULT", "local").strip().lower() + + if vault_type == "local": + from data_formulator.credential_vault.local_vault import LocalCredentialVault + from data_formulator.datalake.workspace import get_data_formulator_home + + db_path = get_data_formulator_home() / "credentials.db" + db_path.parent.mkdir(parents=True, exist_ok=True) + _vault = LocalCredentialVault(db_path, key) + logger.info("Credential vault initialized: local (%s)", db_path) + else: + logger.warning("Unknown credential vault type: %s", vault_type) + + return _vault +``` + +### 5.5 凭证管理 API + +```python +# py-src/data_formulator/credential_routes.py + +import flask +from flask import Blueprint, request, jsonify +from data_formulator.auth import get_identity_id +from data_formulator.credential_vault import get_credential_vault + +credential_bp = Blueprint("credentials", __name__, url_prefix="/api/credentials") + + +@credential_bp.route("/list", methods=["GET"]) +def list_credentials(): + """列出当前用户已存储凭证的外部系统。不返回凭证内容。""" + vault = get_credential_vault() + if not vault: + return jsonify({"sources": []}) + + identity = get_identity_id() + sources = vault.list_sources(identity) + return jsonify({"sources": sources}) + + +@credential_bp.route("/store", methods=["POST"]) +def store_credential(): + """存储或更新凭证。""" + vault = get_credential_vault() + if not vault: + return jsonify({"error": "Credential vault not configured"}), 503 + + data = request.get_json() + source_key = data.get("source_key") + credentials = data.get("credentials") + if not source_key or not credentials: + return jsonify({"error": "source_key and credentials required"}), 400 + + identity = get_identity_id() + vault.store(identity, source_key, credentials) + return jsonify({"status": "stored", "source_key": source_key}) + + +@credential_bp.route("/delete", methods=["POST"]) +def delete_credential(): + """删除凭证。""" + vault = get_credential_vault() + if not vault: + return jsonify({"error": "Credential vault not configured"}), 503 + + data = request.get_json() + source_key = data.get("source_key") + if not source_key: + return jsonify({"error": "source_key required"}), 400 + + identity = get_identity_id() + vault.delete(identity, source_key) + return jsonify({"status": "deleted", "source_key": source_key}) +``` + +--- + +## 6. SSO Token 透传机制 + +### 6.1 原理 + +当 Data Formulator 和外部 BI 系统(如 Superset)共用同一个 OIDC IdP 时,用户登录 DF 获得的 `access_token` 可以**直接用于调用外部系统的 API**,前提是外部系统信任同一个 Issuer。 + +``` + 同一个 IdP (Keycloak / Okta / ...) + │ + ┌──────────┼──────────┐ + │ │ + ▼ ▼ + Data Formulator Superset + (client_id: df) (client_id: superset) + │ │ + │ 用户的 access_token │ + │ (audience: df) │ + │ │ + └──────── ? ──────────┘ + +两种方式让 Superset 接受 DF 的 token: + +方式 A: Token Exchange (标准, 推荐) + DF 后端 → IdP token exchange endpoint + → 用 df 的 token 换取 superset audience 的 token + → 用新 token 调用 Superset API + +方式 B: 共享 Audience (简单, 适合内部系统) + IdP 中将 df 和 superset 配置为同一个 audience + → DF 的 token 直接被 Superset 接受 +``` + +### 6.2 插件中的 SSO 透传实现 + +```python +# 在 Superset 插件中 + +class SupersetPlugin(DataSourcePlugin): + + def supports_sso_passthrough(self) -> bool: + return bool(os.environ.get("PLG_SUPERSET_SSO", "").lower() == "true") + + def _get_superset_token_via_sso(self, sso_token: str) -> Optional[str]: + """用 DF 用户的 SSO token 获取 Superset 的 access token。""" + superset_url = os.environ["PLG_SUPERSET_URL"] + + # 方式 A: 如果 Superset 支持 OAuth token introspection / exchange + # 用 SSO token 调用 Superset 的 OAuth 端点换取 Superset session + try: + resp = requests.post( + f"{superset_url}/api/v1/security/login", + json={"token": sso_token, "provider": "oidc"}, + timeout=10, + ) + if resp.status_code == 200: + return resp.json().get("access_token") + except Exception as e: + logger.warning("SSO passthrough to Superset failed: %s", e) + + # 方式 B: 直接用 SSO token 作为 Bearer (如果 Superset 配置了同一 IdP) + try: + resp = requests.get( + f"{superset_url}/api/v1/me/", + headers={"Authorization": f"Bearer {sso_token}"}, + timeout=10, + ) + if resp.status_code == 200: + return sso_token # token 直接可用 + except Exception: + pass + + return None +``` + +### 6.3 认证模式自动协商 + +``` +用户打开插件面板 + │ + ▼ +前端: POST /api/plugins/superset/auth/status + │ + ▼ +后端检查: + ├─ Session 中已有有效 token? → {"authenticated": true} + │ + ├─ SSO token 可用 + 插件支持透传? + │ → 尝试透传 → 成功 → {"authenticated": true, "mode": "sso"} + │ → 失败 → 继续检查 + │ + ├─ Credential Vault 中有已存凭证? + │ → 尝试登录 → 成功 → {"authenticated": true, "mode": "vault"} + │ → 失败 (密码已改) → {"authenticated": false, "vault_stale": true} + │ + └─ 以上均无 → {"authenticated": false, "available_modes": ["password", "api_key"]} + +前端根据响应: + ├─ authenticated=true → 直接显示数据目录 + ├─ authenticated=false + SSO 可用 → "正在通过 SSO 登录..." (自动重试) + └─ authenticated=false + 需手动 → 显示登录表单 +``` + +--- + +## 7. 现有 ExternalDataLoader 的演进路径 + +### 7.1 短期:两套机制并行 + +``` +数据源类型 │ 使用机制 │ 原因 +───────────────────┼───────────────────────┼───────────────────────── +MySQL/PG/MSSQL │ ExternalDataLoader │ 标准数据库,通用表单即可 +MongoDB/BigQuery │ ExternalDataLoader │ 同上 +S3/Azure Blob │ ExternalDataLoader │ 文件存储 +───────────────────┼───────────────────────┼───────────────────────── +Superset │ DataSourcePlugin │ 有认证/目录/筛选/RBAC +Metabase │ DataSourcePlugin │ 同上 +Power BI │ DataSourcePlugin │ 同上 +``` + +**判断标准**:如果只需要 `连接参数 → list_tables → fetch_data`,用 DataLoader;如果需要自己的认证流程、数据浏览 UI、权限模型,用 Plugin。 + +### 7.2 中期:DataLoader 接入 CredentialVault + +现有 DataLoader 的连接参数(数据库密码等)可以选择性地存入 CredentialVault,而不是留在浏览器 IndexedDB 中: + +```python +# tables_routes.py 增强 + +@tables_bp.route("/data-loader/connect", methods=["POST"]) +def connect_data_loader(): + data = request.get_json() + data_loader_type = data["data_loader_type"] + data_loader_params = data["data_loader_params"] + remember = data.get("remember_credentials", False) + + # 正常连接逻辑... + loader = DATA_LOADERS[data_loader_type](data_loader_params) + tables = loader.list_tables() + + # 如果用户选择"记住凭证",存入 Vault + if remember: + vault = get_credential_vault() + if vault: + identity = get_identity_id() + vault.store(identity, f"dataloader:{data_loader_type}", data_loader_params) + + return jsonify({"tables": tables}) +``` + +### 7.3 长期:统一为插件体系(可选) + +如果未来需要给数据库连接器也加上专用 UI(如 schema 浏览、SQL 编辑器),可以将其包装为 Plugin。但这不是必须的 — 现有的通用表单 UI 对数据库连接器已经够用。 + +``` +未来可能的架构: + +DataSourcePlugin (统一基类) +├── BI Plugin (Superset, Metabase, ...) +│ └── 自带完整 UI + 认证流程 +├── Database Plugin (PG, MySQL, ...) ← 可选迁移 +│ └── 复用 DBManagerPane 的通用表单 +└── Storage Plugin (S3, Azure Blob, ...) ← 可选迁移 + └── 复用 DBManagerPane 的通用表单 + +ExternalDataLoader 可以作为 Database/Storage Plugin 的内部实现被保留, +外面包一层 Plugin 壳即可。 +``` + +--- + +## 8. 身份管理:SSO 时代的简化 + +### 8.1 有 SSO vs 无 SSO 的身份模型对比 + +``` +┌─────────────────────────────────────────────────────────────┐ +│ 无 SSO (现有模式) │ +│ │ +│ 电脑A: browser:aaa-111 │ +│ 电脑B: browser:bbb-222 ← 完全不同的身份,数据不通 │ +│ │ +│ 需要 IdentityStore + 身份合并 才能跨设备 (复杂) │ +└─────────────────────────────────────────────────────────────┘ + +┌─────────────────────────────────────────────────────────────┐ +│ 有 SSO (新增) │ +│ │ +│ 电脑A: user:alice@corp.com (SSO 登录) │ +│ 电脑B: user:alice@corp.com (SSO 登录) ← 同一身份! │ +│ │ +│ 天然跨设备,无需身份合并。Workspace 按 user:xxx 隔离即可。 │ +│ CredentialVault 也按 user:xxx 存取,自动跨设备可用。 │ +└─────────────────────────────────────────────────────────────┘ +``` + +**SSO 从根本上解决了身份漫游问题**。原有文档中复杂的 `IdentityStore` + 身份链接 + 合并对话框,在 SSO 模式下完全不需要。 + +### 8.2 身份管理策略 + +| 部署模式 | 身份来源 | Workspace 键 | Credential Vault 键 | 跨设备 | +|---------|---------|-------------|--------------------|----| +| 本地匿名 | 浏览器 UUID | `browser:xxx` | `browser:xxx` (不可靠) | 不支持 | +| SSO 登录 | OIDC sub claim | `user:alice@corp.com` | `user:alice@corp.com` | 自动支持 | +| Azure EasyAuth | Azure Principal | `user:guid` | `user:guid` | 自动支持 | + +### 8.3 身份迁移(匿名 → 认证用户) + +当匿名用户(`browser:xxx`)首次通过 SSO 登录后,身份变为 `user:xxx`,两者分属不同 Workspace。系统自动检测此转换并提示用户选择: + +**检测机制**(前端 `App.tsx`): +- 应用启动时,redux-persist 恢复上次 `identity`(`browser:uuid`) +- Auth useEffect 解析出新身份(`user:sub`) +- 如果 `旧.type === 'browser'` 且 `新.type === 'user'` → 触发迁移流程 + +**迁移流程**: +1. 前端调用 `GET /api/sessions/list?source_identity=browser:` 检查旧匿名身份是否有 workspace 数据 +2. 如果有 → 弹出 `IdentityMigrationDialog`,提供两个选择: + - **导入数据**:调用 `POST /api/sessions/migrate { source_identity: "browser:" }`,后端将旧身份的 workspace 文件夹复制到新身份下(不删除源数据,安全、幂等) + - **全新开始**:直接清空前端持久化状态 +3. 如果无 → 静默清空前端持久化状态,无弹窗 +4. 无论哪种选择,最后都执行 `persistor.purge()` 清除 localforage 中的旧 Redux 状态 + +**安全约束**: +- `source_identity` 参数仅接受 `browser:` 前缀,且调用者必须是 `user:` 身份 +- 迁移只做复制(`shutil.copytree`),不删除源数据 +- Ephemeral 模式下跳过(无服务端数据可迁移) + +--- + +## 9. 配置参考 + +### 9.1 完整 .env 配置示例 + +```bash +# ============================================================== +# Data Formulator — 完整配置示例 +# ============================================================== + +# -------------------------------------------------------------- +# 基础设置 +# -------------------------------------------------------------- +LOG_LEVEL=INFO +SANDBOX=local +DATA_FORMULATOR_HOME=/data/data-formulator + +# -------------------------------------------------------------- +# 认证设置(主认证 + 可选匿名回退) +# -------------------------------------------------------------- +# 主认证模式(选一种): +# anonymous(默认)| oidc / oauth2 | github | azure_easyauth | proxy_header | saml | ldap | cas +# 注:oidc 和 oauth2 是同一个 Provider 的别名,适用于任何 OAuth2/OIDC + JWT + JWKS 的 IdP +AUTH_PROVIDER=oidc + +# 是否允许匿名访问(默认 true,无需配置) +# 仅在需要强制登录时设为 false: +# ALLOW_ANONYMOUS=false + +# ─── GitHub OAuth 配置 ─── +# GITHUB_CLIENT_ID=xxx +# GITHUB_CLIENT_SECRET=xxx + +# ─── OIDC / OAuth2 配置 ─── +# 模式 A(自动发现):只需 OIDC_ISSUER_URL + OIDC_CLIENT_ID +# 模式 B(手动端点):额外配置 OIDC_AUTHORIZE_URL / OIDC_TOKEN_URL 等 +# 详见 § 3.4「对接 OIDC/OAuth2 Provider 的 IdP 要求」 +OIDC_ISSUER_URL=https://keycloak.example.com/realms/my-org +OIDC_CLIENT_ID=data-formulator +# OIDC_AUTHORIZE_URL=https://sso.example.com/oauth2/authorize # 模式 B +# OIDC_TOKEN_URL=https://sso.example.com/oauth2/token # 模式 B +# OIDC_USERINFO_URL=https://sso.example.com/oauth2/userinfo # 推荐 +# OIDC_JWKS_URL=https://sso.example.com/oauth2/jwks # 可选 +# OIDC_CLIENT_SECRET=xxx # 机密客户端 + +# -------------------------------------------------------------- +# 凭证保险箱 +# -------------------------------------------------------------- +# 存储类型: local (默认) +CREDENTIAL_VAULT=local +# 加密密钥 (Fernet) +# 生成: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())" +CREDENTIAL_VAULT_KEY=your-fernet-key-here + +# -------------------------------------------------------------- +# LLM 模型配置 +# -------------------------------------------------------------- +DEEPSEEK_ENABLED=true +DEEPSEEK_ENDPOINT=openai +DEEPSEEK_API_KEY=sk-xxx +DEEPSEEK_API_BASE=https://api.deepseek.com +DEEPSEEK_MODELS=deepseek-chat + +QWEN_ENABLED=true +QWEN_ENDPOINT=openai +QWEN_API_KEY=sk-xxx +QWEN_API_BASE=https://dashscope.aliyuncs.com/compatible-mode/v1 +QWEN_MODELS=qwen3-omni-flash + +# -------------------------------------------------------------- +# 数据源插件 +# -------------------------------------------------------------- +# Superset (配置了 PLG_SUPERSET_URL 即自动启用) +PLG_SUPERSET_URL=http://superset.example.com:8088 +PLG_SUPERSET_SSO=true # 启用 SSO token 透传到 Superset +# PLG_SUPERSET_TIMEOUT=30 # API 超时秒数 (可选) + +# Metabase (配置了 PLG_METABASE_URL 即自动启用) +# PLG_METABASE_URL=http://metabase.example.com:3000 + +# Power BI (配置了 PLG_POWERBI_TENANT_ID 即自动启用) +# PLG_POWERBI_TENANT_ID=your-tenant-id +# PLG_POWERBI_CLIENT_ID=your-client-id + +# -------------------------------------------------------------- +# Workspace 存储 +# -------------------------------------------------------------- +# WORKSPACE_BACKEND=local +# AZURE_BLOB_CONNECTION_STRING= +# AZURE_BLOB_ACCOUNT_URL= +``` + +### 9.2 免费 IdP 方案(生产可用) + +如果组织没有 Google Workspace、Microsoft 365 或 AWS 等企业订阅,以下免费方案可用于生产环境: + +| 方案 | 费用 | 适用场景 | 特点 | +|------|------|---------|------| +| **Keycloak** | 免费(自托管) | 中大型企业 | 功能最全,支持 OIDC/SAML/LDAP,需自行运维 | +| **Authelia** | 免费(自托管) | 个人/小团队 | 轻量级,与反向代理集成好,配置简单 | +| **Authentik** | 免费(自托管) | 中小团队 | 界面友好,功能丰富,支持 OIDC/SAML/LDAP | +| **Auth0 免费版** | 免费(7,500用户限制) | 小团队/初创公司 | 托管服务,无需运维,有用户数量限制 | + +#### Keycloak 配置示例 + +```bash +# 使用 Docker 运行 Keycloak +docker run -p 8080:8080 \ + -e KEYCLOAK_ADMIN=admin \ + -e KEYCLOAK_ADMIN_PASSWORD=admin \ + quay.io/keycloak/keycloak:22.0 start-dev + +# Data Formulator 配置(仅需后端配置,前端自动获取) +OIDC_ISSUER_URL=http://localhost:8080/realms/master +OIDC_CLIENT_ID=df-client +# Keycloak 中创建 client 时获取 +OIDC_CLIENT_SECRET=xxx +``` + +#### Authelia 配置示例 + +```bash +# docker-compose.yml 示例 +version: '3' +services: + authelia: + image: authelia/authelia:latest + ports: + - "9091:9091" + volumes: + - ./authelia:/config + +# Data Formulator 使用反向代理头认证 +AUTH_PROVIDER=proxy_header +PROXY_HEADER_USER=Remote-User +PROXY_HEADER_EMAIL=Remote-Email +PROXY_TRUSTED_IPS=127.0.0.1,172.16.0.0/12 +``` + +#### Auth0 免费版配置示例 + +```bash +# 在 https://auth0.com/ 注册免费账号,创建 Application +# 仅需后端配置,前端自动获取 +OIDC_ISSUER_URL=https://your-tenant.auth0.com/ +OIDC_CLIENT_ID=your-client-id +OIDC_CLIENT_SECRET=your-client-secret +``` + +**注意**:Google、Microsoft、Amazon 的 OIDC 服务都需要付费的企业订阅(Workspace、M365、AWS),个人账号无法作为 IdP 使用。 + +#### 社交登录集成(无需企业账号) + +如果不想部署自托管 IdP,可以使用社交登录平台。这些平台**不需要企业账号**,个人开发者账号即可免费使用: + +| 平台 | 需要企业账号? | 费用 | 用户群体 | 推荐度 | +|------|--------------|------|---------|--------| +| **GitHub** | ❌ 不需要 | 免费 | 开发者 | ⭐⭐⭐⭐⭐ | +| **Google** | ❌ 不需要 | 免费 | 大众用户 | ⭐⭐⭐⭐ | +| **Microsoft** | ❌ 不需要 | 免费 | 企业/个人 | ⭐⭐⭐ | + +**GitHub OAuth 配置示例**(最简单): + +```bash +# 1. 在 GitHub 注册 OAuth App +# 访问 https://github.com/settings/developers +# 点击 "New OAuth App" +# 填写: +# - Application name: Data Formulator +# - Homepage URL: https://your-domain.com +# - Authorization callback URL: https://your-domain.com/api/auth/callback + +# 2. Data Formulator 配置(仅需后端配置,前端自动获取) +AUTH_PROVIDER=github +GITHUB_CLIENT_ID=your-github-client-id +GITHUB_CLIENT_SECRET=your-github-client-secret +``` + +**简化配置模式**(主认证 + 匿名回退): + +```bash +# 模式 1:仅匿名(本地个人使用) +AUTH_PROVIDER=anonymous + +# 模式 2:GitHub OAuth + 匿名回退 +AUTH_PROVIDER=github +GITHUB_CLIENT_ID=xxx +GITHUB_CLIENT_SECRET=xxx +# ALLOW_ANONYMOUS 默认 true,匿名用户可正常使用 + +# 模式 3:企业 SSO + 匿名回退 +AUTH_PROVIDER=oidc +OIDC_ISSUER_URL=https://keycloak.company.com/realms/main +OIDC_CLIENT_ID=data-formulator +# ALLOW_ANONYMOUS 默认 true,匿名用户可正常使用 +``` + +**说明**: +- 主认证方式(github/oidc)提供完整功能(数据同步、跨设备、SSO 透传) +- 匿名模式作为回退,方便临时使用或快速体验 +- 如需强制登录,设置 `ALLOW_ANONYMOUS=false` + +#### 一键 Docker 部署方案 + +为降低配置门槛,提供开箱即用的 Docker Compose 配置: + +**方案 A:Keycloak + Data Formulator(完整 SSO)** + +```yaml +# docker-compose.sso.yml +version: '3.8' + +services: + keycloak: + image: quay.io/keycloak/keycloak:22.0 + environment: + KEYCLOAK_ADMIN: admin + KEYCLOAK_ADMIN_PASSWORD: admin + KC_DB: postgres + KC_DB_URL: jdbc:postgresql://postgres:5432/keycloak + KC_DB_USERNAME: keycloak + KC_DB_PASSWORD: keycloak + KC_HOSTNAME: localhost + ports: + - "8080:8080" + command: start-dev + depends_on: + - postgres + + postgres: + image: postgres:15 + environment: + POSTGRES_DB: keycloak + POSTGRES_USER: keycloak + POSTGRES_PASSWORD: keycloak + volumes: + - postgres_data:/var/lib/postgresql/data + + data-formulator: + image: data-formulator:latest + environment: + # 仅需后端配置,前端运行时自动获取 + AUTH_PROVIDER: oidc + OIDC_ISSUER_URL: http://keycloak:8080/realms/master + OIDC_CLIENT_ID: df-client + OIDC_CLIENT_SECRET: ${OIDC_CLIENT_SECRET} + ALLOW_ANONYMOUS: "true" + CREDENTIAL_VAULT: local + CREDENTIAL_VAULT_KEY: ${VAULT_KEY} + ports: + - "5000:5000" + depends_on: + - keycloak + +volumes: + postgres_data: +``` + +启动命令: +```bash +# 1. 生成加密密钥 +export VAULT_KEY=$(python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())") + +# 2. 在 Keycloak 中创建 client,获取 secret +# 访问 http://localhost:8080 (admin/admin) +# 创建 realm → 创建 client → 获取 secret + +# 3. 启动服务 +export OIDC_CLIENT_SECRET=your-client-secret +docker-compose -f docker-compose.sso.yml up +``` + +**方案 B:Authelia + Data Formulator(轻量级)** + +```yaml +# docker-compose.authelia.yml +version: '3.8' + +services: + authelia: + image: authelia/authelia:latest + ports: + - "9091:9091" + volumes: + - ./authelia:/config + environment: + AUTHELIA_JWT_SECRET_FILE: /config/jwt_secret + AUTHELIA_SESSION_SECRET_FILE: /config/session_secret + + redis: + image: redis:alpine + + data-formulator: + image: data-formulator:latest + environment: + AUTH_PROVIDER: proxy_header + PROXY_HEADER_USER: Remote-User + PROXY_HEADER_EMAIL: Remote-Email + PROXY_TRUSTED_IPS: 172.16.0.0/12 + ports: + - "5000:5000" +``` + +**方案 C:仅 Data Formulator(匿名模式,零配置)** + +```yaml +# docker-compose.minimal.yml +version: '3.8' + +services: + data-formulator: + image: data-formulator:latest + environment: + # 无 SSO 配置,自动使用匿名模式 + DEEPSEEK_ENABLED: "true" + DEEPSEEK_API_KEY: ${DEEPSEEK_API_KEY} + ports: + - "5000:5000" + volumes: + - df_data:/data/data-formulator + +volumes: + df_data: +``` + +启动命令: +```bash +export DEEPSEEK_API_KEY=sk-xxx +docker-compose -f docker-compose.minimal.yml up +``` + +### 9.3 最小配置(本地匿名使用) + +```bash +# 最小配置 — 本地使用,无 SSO,无插件 +DEEPSEEK_ENABLED=true +DEEPSEEK_ENDPOINT=openai +DEEPSEEK_API_KEY=sk-xxx +DEEPSEEK_API_BASE=https://api.deepseek.com +DEEPSEEK_MODELS=deepseek-chat +``` + +### 9.4 团队部署配置(SSO + Superset) + +```bash +# 团队部署 — SSO + Superset(精简版) +AUTH_PROVIDER=oidc +OIDC_ISSUER_URL=https://keycloak.internal:8443/realms/team +OIDC_CLIENT_ID=data-formulator + +PLG_SUPERSET_URL=http://superset.internal:8088 +PLG_SUPERSET_SSO=true + +DEEPSEEK_ENABLED=true +DEEPSEEK_API_KEY=sk-xxx +``` + +--- + +## 10. 目录结构 + +### 10.1 后端新增文件 + +``` +py-src/data_formulator/ +├── auth.py # 重构:Provider 自动发现 + /api/auth/info 委托 +├── auth_providers/ # 新增:认证提供者(自动发现) +│ ├── __init__.py # Provider 自动扫描 + get_provider_class() API +│ ├── base.py # AuthProvider(含 get_auth_info())/ AuthResult 基类 +│ ├── azure_easyauth.py # Azure EasyAuth (迁移现有逻辑) +│ ├── oidc.py # 通用 OIDC Provider ★(仅需 2 个环境变量) +│ └── github_oauth.py # GitHub OAuth Provider +├── auth_gateways/ # 新增:有状态协议的登录网关 +│ ├── github_gateway.py # GitHub OAuth 授权码交换 +│ └── logout.py # 通用登出 +├── credential_vault/ # 新增:凭证保险箱 +│ ├── __init__.py # get_credential_vault() 工厂 +│ ├── base.py # CredentialVault 抽象接口 +│ └── local_vault.py # SQLite + Fernet 加密实现 +├── credential_routes.py # 新增:凭证管理 API +├── plugins/ # 新增:插件系统 +│ ├── __init__.py # 插件注册中心 (discover_and_register) +│ ├── base.py # DataSourcePlugin 基类 +│ ├── data_writer.py # PluginDataWriter 写入工具 +│ ├── superset/ # Superset 插件 +│ │ ├── __init__.py # SupersetPlugin 实现 +│ │ ├── superset_client.py # Superset REST API 封装 +│ │ ├── auth_bridge.py # JWT/SSO 认证桥接 +│ │ ├── catalog.py # 带缓存的数据目录 +│ │ └── routes/ +│ │ ├── __init__.py +│ │ ├── auth.py # /api/plugins/superset/auth/* +│ │ ├── catalog.py # /api/plugins/superset/catalog/* +│ │ └── data.py # /api/plugins/superset/data/* +│ └── metabase/ # Metabase 插件 (未来) +│ └── ... +├── data_loader/ # 现有 ExternalDataLoader 体系 (不变) +│ └── ... +└── app.py # 修改:集成 init_auth() + 插件发现 +``` + +### 10.2 前端新增文件 + +``` +src/ +├── app/ +│ ├── oidcConfig.ts # 新增:OIDC 配置和 UserManager +│ ├── OidcCallback.tsx # 新增:OIDC 回调页面 +│ ├── identity.ts # 修改:增加 setBrowserId() +│ ├── utils.tsx # 修改:fetchWithIdentity 携带 Bearer token +│ ├── dfSlice.tsx # 修改:ServerConfig 增加 plugins 字段 +│ └── App.tsx # 修改:OIDC 初始化 + 登录UI +├── plugins/ # 新增:插件前端 +│ ├── types.ts # PluginManifest, PluginPanelProps 类型 +│ ├── registry.ts # 插件动态加载 +│ ├── PluginHost.tsx # 插件容器组件 +│ ├── CredentialManager.tsx # 凭证管理 UI +│ ├── superset/ # Superset 前端插件 +│ │ ├── index.ts +│ │ ├── SupersetPanel.tsx +│ │ ├── SupersetCatalog.tsx +│ │ ├── SupersetDashboards.tsx +│ │ ├── SupersetFilterDialog.tsx +│ │ ├── SupersetLogin.tsx +│ │ └── api.ts +│ └── metabase/ # Metabase 前端插件 (未来) +│ └── ... +└── views/ + └── UnifiedDataUploadDialog.tsx # 修改:增加 PluginHost 渲染 +``` + +### 10.3 对现有文件的改动清单 + +| 文件 | 改动类型 | 改动量 | 说明 | +|------|---------|--------|------| +| `py-src/.../auth.py` | 重构 | ~60 行 | 基于自动发现的 `init_auth()` + `/api/auth/info` 委托给 Provider 自描述 | +| `py-src/.../app.py` | 修改 | ~25 行 | 调用 `init_auth()`、`discover_and_register()`、注册 credential/identity blueprint、`app-config` 返回 plugins | +| `src/app/App.tsx` | 修改 | ~35 行 | 统一 initAuth(`/api/auth/info` 驱动,纯 action 分支)、登录/登出 UI | +| `src/app/utils.tsx` | 修改 | ~15 行 | `fetchWithIdentity` 携带 Bearer token + 401 自动重试 | +| `src/app/dfSlice.tsx` | 修改 | ~5 行 | `ServerConfig` 增加 `plugins` 字段 | +| `src/app/identity.ts` | 修改 | ~5 行 | 增加 `setBrowserId()` | +| `src/views/UnifiedDataUploadDialog.tsx` | 修改 | ~20 行 | 导入 PluginHost,渲染插件 Tab | + +--- + +## 11. 实施路径 + +### Phase 1:认证基础 (AuthProvider 链) + +**目标**:将现有 `auth.py` 重构为可插拔的 Provider 链,激活 OIDC Provider。 + +**交付物**: +- `auth_providers/__init__.py` — Provider 自动发现(`pkgutil` 扫描 + `get_provider_class()` API) +- `auth_providers/base.py` — 基类(含 `get_auth_info()` 自描述接口) +- `auth_providers/azure_easyauth.py` — 迁移现有 Azure 逻辑 +- `auth_providers/oidc.py` — 通用 OIDC 验签(仅需 `OIDC_ISSUER_URL` + `OIDC_CLIENT_ID`) +- `auth_providers/github_oauth.py` — GitHub OAuth Provider +- `auth_gateways/github_gateway.py` — GitHub 授权码交换 +- `auth.py` 重构 — 基于自动发现的 `init_auth()` + `/api/auth/info` 委托 +- `src/app/oidcConfig.ts` — 前端 OIDC 配置 +- `src/app/OidcCallback.tsx` — 回调页面 +- `src/app/LoginPanel.tsx` — 统一登录组件(由 `/api/auth/info` 驱动) +- `App.tsx` 修改 — 统一 initAuth(单端点驱动)+ 401 自动重试 +- `utils.tsx` 修改 — Bearer token + 401 重试逻辑 + +**验证标准**: +- 配置 Keycloak + OIDC 环境变量后,用户可以通过浏览器登录 +- 后端正确从 JWT 中提取 `sub` 作为 `user:xxx` 身份 +- 不配置 OIDC 时,行为与现有版本完全一致(浏览器 UUID) +- `get_sso_token()` 可以返回当前用户的 access token + +**依赖**:`pip install PyJWT cryptography`,`npm install oidc-client-ts` + +### Phase 2:插件框架 + Superset 插件 + +**目标**:建立插件框架,将 0.6 版本 Superset 集成迁移为第一个插件。 + +**交付物**: +- `plugins/__init__.py` — 插件注册中心 +- `plugins/base.py` — DataSourcePlugin 基类 +- `plugins/data_writer.py` — PluginDataWriter +- `plugins/superset/` — 完整的 Superset 插件 +- `src/plugins/` — 前端插件框架 +- `app.py` 修改 — 调用 `discover_and_register()` +- `UnifiedDataUploadDialog.tsx` 修改 — PluginHost + +**验证标准**: +- 配置 `PLG_SUPERSET_URL` 后,前端自动显示 Superset Tab +- 用户可以登录 Superset、浏览数据集、加载数据 +- SSO 模式下,用户无需再次输入 Superset 密码 +- 不配置 `PLG_SUPERSET_URL` 时,无任何影响 + +### Phase 3:凭证保险箱 + +**目标**:服务端加密凭证存储,替代浏览器 IndexedDB 的不安全存储。 + +**交付物**: +- `credential_vault/` — Vault 接口 + 本地加密实现 +- `credential_routes.py` — 凭证管理 API +- `src/plugins/CredentialManager.tsx` — 凭证管理 UI +- 插件认证路由增强 — 自动从 Vault 取凭证 + +**验证标准**: +- 凭证加密存储在服务端 SQLite +- SSO 用户换设备后,已存凭证自动可用 +- Vault 未配置时,回退到 Session 级别存储(现有行为) + +### Phase 4:第二个插件 (Metabase) + +**目标**:验证插件框架的通用性 —— 新增插件是否真的不需要修改核心代码。 + +**交付物**: +- `plugins/metabase/` — 完整的 Metabase 插件 + +**验证标准**: +- 仅新增 `plugins/metabase/` 目录和 `src/plugins/metabase/` 目录 +- **核心代码零修改**(目录自动扫描 + `import.meta.glob` 自动发现) + +### Phase 5:完善 + +- DataLoader 凭证接入 Vault(可选记住密码) +- 插件国际化 (i18n) +- 插件错误边界和降级处理 +- 管理员配置 UI +- 审计日志(谁在什么时候访问了哪些数据) +- 单元测试和集成测试 + +--- + +## 12. 安全模型 + +### 12.1 认证链路安全 + +``` +前端 OIDC PKCE 流程 (无 client secret 暴露) + │ + ▼ +IdP 签发 access_token (RS256 签名) + │ + ▼ +前端在 Authorization: Bearer 头中携带 + │ + ▼ +后端 OIDCProvider 用 JWKS 公钥验签 + ├─ 验证签名 (RS256) + ├─ 验证 issuer (防止跨 IdP 攻击) + ├─ 验证 audience (防止 token 被其他应用滥用) + ├─ 验证 exp (防止过期 token) + └─ 提取 sub → user:xxx +``` + +### 12.2 凭证存储安全 + +| 层次 | 措施 | +|------|------| +| 传输 | HTTPS (生产环境必须) | +| 存储加密 | Fernet 对称加密 (AES-128-CBC + HMAC-SHA256) | +| 密钥管理 | `CREDENTIAL_VAULT_KEY` 环境变量,不存在代码中 | +| 访问隔离 | 凭证按 `(user_identity, source_key)` 隔离,用户只能访问自己的 | +| 前端不触碰 | 凭证仅在服务端存取,前端只知道"有没有已存凭证",不知道内容 | + +### 12.3 插件隔离安全 + +| 风险 | 缓解 | +|------|------| +| 插件 A 访问插件 B 的 Session | Session key 按 `plugin_{id}_` 前缀隔离 | +| 插件窃取 SSO token | `get_sso_token()` 是只读的,插件不能修改;且 token 本来就是要透传的 | +| 恶意插件注册危险路由 | 插件 Blueprint 强制 prefix `/api/plugins//`,无法覆盖核心路由 | +| SSRF (前端输入任意 URL) | 插件端点 URL 在 `.env` 中由管理员配置,不接受前端输入 | + +### 12.4 匿名模式的安全限制 + +当无 SSO 时(`browser:` 身份),系统不对安全性做强保证: + +- 同一浏览器的所有 Tab 共享同一 `browser:xxx` 身份 +- 清除 localStorage 即可获得新身份 +- Credential Vault 中按 `browser:xxx` 存储的凭证仅在同一浏览器可用 +- 这与现有行为一致,且与"个人本地工具"的定位匹配 + +--- + +## 13. FAQ + +### Q1: 为什么不自建用户注册/登录系统? + +密码存储、哈希、重置、邮件验证、安全审计 —— 这些都是沉重的安全负担。Data Formulator 的核心价值是数据可视化,不是身份管理。OIDC 把这些责任交给专业的 IdP (Keycloak 一个 Docker 容器就能跑),更安全、维护成本更低。 + +### Q2: 小团队不想搭建 IdP 怎么办? + +有几个极轻量的选择: +- **Keycloak**: `docker run -p 8080:8080 quay.io/keycloak/keycloak start-dev` +- **Authelia**: 支持 OIDC 的轻量级认证网关 +- **Authentik**: 现代化的开源 IdP +- 或者直接使用 SaaS: Auth0 免费版支持 7000 月活用户 + +不搭 IdP 也没关系 —— 不配置 `OIDC_ISSUER_URL`,系统自动回退到匿名浏览器模式,与现在完全一致。 + +### Q3: 如果外部 BI 系统既没接 SSO,也不想让用户输密码? + +插件支持多种认证模式,包括 **API Key**。例如 Superset 和 Metabase 都支持生成 API Token: +- 管理员在 BI 系统中为每个用户生成 long-lived API token +- 用户在 DF 中输入一次 API token,存入 Credential Vault +- 后续自动使用 + +### Q4: 如果某个外部系统的 SDK 没有 Python 包怎么办? + +所有 BI 系统都有 REST API,插件通过 `requests` 库调用即可。不需要专用 SDK。如果某个系统需要特殊的 Python 包,在 `__init__.py` 中 `import` 即可——导入失败时插件自动扫描机制会将其标记为 `DISABLED_PLUGINS`(与 `ExternalDataLoader` 的降级机制一致)。 + +### Q5: 如何开发一个新的数据源插件? + +**最小步骤**: + +1. 创建 `py-src/data_formulator/plugins/your_system/` 目录 +2. 实现 `DataSourcePlugin` 子类 (manifest + blueprint + frontend_config) +3. 在 blueprint 中实现 `auth/login`, `catalog/list`, `data/load` 三组路由 +4. 创建 `src/plugins/your_system/` 目录,导出 `index.ts` +5. 实现 `PanelComponent` (列表浏览 + 加载按钮) +6. 在 `.env` 中设置环境变量启用 +7. 重启服务 → 后端自动扫描发现,前端 `import.meta.glob` 自动编译 + +**核心代码改动:0 行。** 无需修改任何注册表或配置文件。 + +### Q6: 现有的 ExternalDataLoader (数据库连接器) 会被废弃吗? + +不会。数据库连接器的需求(连接参数 → 列表 → 拉取)与插件不同,`ExternalDataLoader` 的通用表单 UI 完全够用。两套机制长期并行。如果未来需要给某个数据库加专用 UI,可以考虑包装为 Plugin,但不是必须的。 + +### Q7: 多个 IdP 可以同时配置吗? + +当前设计每次只有一个 OIDC issuer。如果需要支持多个 IdP(如同时支持 Google 和 Okta),有两种路径: +- **推荐**:用一个 IdP (如 Keycloak) 作为联合身份代理,配置多个上游 IdP +- **扩展**:修改 `OIDCProvider` 支持多 issuer(需在 `_providers` 中注册多个实例) + +### Q8: 这套架构对上游 Data Formulator 的兼容性如何? + +`auth.py` 的重构是最大的改动,但保持了 `get_identity_id()` 的签名和返回值格式(`user:xxx` / `browser:xxx`)不变。所有调用 `get_identity_id()` 的代码无需修改。插件系统和凭证保险箱是纯新增代码,不修改任何现有模块。 + +--- + +## 附录 A:开发新插件的检查清单 + +``` +□ 后端 + □ plugins/your_system/__init__.py — 暴露 plugin_class = YourPlugin + □ plugins/your_system/plugin.py — 实现 DataSourcePlugin (manifest + blueprint) + □ plugins/your_system/routes/ — auth, catalog, data 三组路由 + □ plugins/your_system/ — API client, auth bridge 等 + □ 无需修改 plugins/__init__.py(目录自动扫描) + □ 测试:启用/禁用切换正常 + +□ 前端 + □ src/plugins/your_system/index.ts — 导出 DataSourcePluginModule + □ src/plugins/your_system/*Panel.tsx — 主面板组件 + □ src/plugins/your_system/*Login.tsx — 登录组件 (如需要) + □ 无需修改 registry.ts(import.meta.glob 自动发现) + □ 测试:Tab 显示/隐藏正常 + +□ 配置 + □ .env.template 增加环境变量说明 + □ 文档更新 + +□ 认证模式 + □ SSO 透传测试 (如果外部系统支持) + □ Credential Vault 存取测试 + □ 手动登录测试 + □ Session 过期 / Token 刷新测试 +``` + +## 附录 B:关键依赖 + +| 包 | 用途 | 安装 | +|-----|------|------| +| `PyJWT` | OIDC JWT 验签 | `pip install PyJWT` | +| `cryptography` | Fernet 加密 (Vault + JWT) | `pip install cryptography` | +| `oidc-client-ts` | 前端 OIDC PKCE 流程 | `npm install oidc-client-ts` | +| `requests` | 插件 HTTP 调用 (已有) | — | + +## 附录 C:与原有插件架构文档的关系 + +本文档是 `data-source-plugin-architecture.md` 的**上层补充**。原文档详细描述了: +- 插件基类和前端接口的完整设计 +- Superset 0.6→0.7 迁移的具体方案 +- PluginDataWriter 和 BatchWriter 的完整实现 +- 身份链接表 (IdentityStore) 的详细设计 + +本文档新增的内容: +- **AuthProvider 可插拔认证层** — 原文档假设浏览器 UUID 为主要身份,本文档用 OIDC 替代 +- **CredentialVault 凭证保险箱** — 原文档中插件凭证存在 Flask Session,本文档增加持久化加密存储 +- **SSO Token 透传** — 原文档中每个插件独立认证,本文档增加 SSO 自动透传 +- **身份模型简化** — 有了 SSO,原文档中复杂的 IdentityStore + 身份合并被简化为一次性 browser→user 迁移 + +两份文档互补使用:本文档定义整体架构和集成方式,原文档提供插件内部的详细实现指导。 diff --git a/design-docs/2-external-dataloader-enhancements.md b/design-docs/2-external-dataloader-enhancements.md new file mode 100644 index 00000000..9ace229a --- /dev/null +++ b/design-docs/2-external-dataloader-enhancements.md @@ -0,0 +1,787 @@ +# ExternalDataLoader 演进方案 + +> **来源**:从 `1-data-source-plugin-architecture.md` Section 11.3~11.6 拆分。 +> 这些改进针对现有的 ExternalDataLoader(数据库连接器),与 DataSourcePlugin(BI 系统插件)互不干扰。 + +--- + +## 目录 + +1. [现有缺陷与演进方向](#1-现有缺陷与演进方向) +2. [改进方案一:数据库元数据拉取 (P0)](#2-改进方案一数据库元数据拉取-p0) +3. [改进方案二:SSO Token 透传到数据库 (P1)](#3-改进方案二sso-token-透传到数据库-p1) +4. [改进方案三:凭证持久化 (P2)](#4-改进方案三凭证持久化-p2) + +--- + +## 1. 现有缺陷与演进方向 + +审查了全部 9 个 DataLoader 后,发现两大类可改进的问题: + +### 缺陷一:数据库元数据(注释/描述)未拉取 + +所有 DataLoader 的 `list_tables()` 只查了 `information_schema` 的列名和数据类型,**完全忽略了数据库自带的注释系统**。这些注释是 DBA 维护的宝贵业务知识: + +| DataLoader | 只查了 | 数据库有但没查的 | 查询方法 | +|---|---|---|---| +| **PostgreSQL** | `column_name`, `data_type` | 表/列注释 (`COMMENT ON`) | `SELECT obj_description(oid) FROM pg_class` + `SELECT col_description(attrelid, attnum) FROM pg_attribute` | +| **MSSQL** | `COLUMN_NAME`, `DATA_TYPE`, `IS_NULLABLE` | 扩展属性 (`MS_Description`) | `SELECT value FROM sys.extended_properties WHERE name='MS_Description'` | +| **BigQuery** | `field.name`, `field.field_type` | `table.description`, `field.description` | `table_ref.description`, `field.description`(已有 API,一行代码) | +| **MySQL** | (预估同样缺失) | `COLUMN_COMMENT` | `SELECT COLUMN_COMMENT FROM information_schema.COLUMNS` | +| **Kusto** | `Name`, `Type` | 表和列的 DocString | `.show table T schema` 返回的 `DocString` 字段 | + +**改进方案**:扩展 `list_tables()` 返回的 `columns` 结构,增加 `description` 字段。以 PostgreSQL 为例: + +```python +# postgresql_data_loader.py — list_tables() 增加注释查询 + +# 现有查询只拿了列名和类型: +columns_query = """ + SELECT column_name, data_type + FROM information_schema.columns ... +""" + +# 改进后同时查询列注释: +columns_query = """ + SELECT + c.column_name, + c.data_type, + pgd.description AS column_comment + FROM information_schema.columns c + LEFT JOIN pg_catalog.pg_statio_all_tables st + ON st.schemaname = c.table_schema AND st.relname = c.table_name + LEFT JOIN pg_catalog.pg_description pgd + ON pgd.objoid = st.relid AND pgd.objsubid = c.ordinal_position + WHERE c.table_schema = '{schema}' AND c.table_name = '{table_name}' + ORDER BY c.ordinal_position +""" + +# 表注释也一并查询: +table_comment_query = """ + SELECT obj_description(c.oid) AS table_comment + FROM pg_catalog.pg_class c + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + WHERE n.nspname = '{schema}' AND c.relname = '{table_name}' +""" +``` + +BigQuery 改进更简单(已有现成属性,只是没用): + +```python +# bigquery_data_loader.py — list_tables() 中已经有 table_ref,只是没取 description + +table_ref = self.client.get_table(table.reference) + +# 现有代码: +columns = [{"name": field.name, "type": field.field_type} for field in table_ref.schema[:10]] + +# 改进后: +columns = [{ + "name": field.name, + "type": field.field_type, + "description": field.description, # ← 一行代码,BigQuery SDK 直接支持 +} for field in table_ref.schema[:10]] + +# 表描述也直接有: +table_description = table_ref.description # ← 同样一行 +``` + +**改进成本**:每个 DataLoader 改 5-20 行代码即可。注释不存在的列/表返回 `None`,与 `ColumnInfo` 扩展字段完美对齐——对前端和 AI prompt 的提升效果与插件拉取的元数据一致。 + +### 缺陷二:认证方式单一,缺少 SSO/集成认证 + +现有 DataLoader 的认证能力参差不齐,很多数据库明明支持 SSO 或集成认证,但 DataLoader 只实现了用户名/密码模式: + +| DataLoader | 现有认证 | 数据库支持但 DataLoader 未实现的 | +|---|---|---| +| **PostgreSQL** | user + password | Kerberos/GSSAPI; Azure AD token (`password=`); AWS IAM token | +| **MSSQL** | user/password 或 Windows Auth | Azure AD token (`Authentication=ActiveDirectoryAccessToken`) | +| **BigQuery** | Service Account JSON 或 ADC | OIDC 联邦身份 (`google.auth.identity_pool`); Workforce Identity | +| **Kusto** | App Key 或 `az login` | Azure AD user token (`with_aad_user_token_authentication`) | +| **Snowflake** | (未实现) | OAuth 2.0 token (`authenticator='oauth'`, `token=`) | +| **Databricks** | (未实现) | Azure AD token / PAT | + +Kusto 和 BigQuery 已经有了 CLI 认证(`az login` / `gcloud auth`),但这要求用户**在服务器终端上手动执行命令**——在团队部署模式下不现实。 + +**改进方案**:在 `ExternalDataLoader` 基类中增加 SSO token 注入能力。 + +```python +class ExternalDataLoader(ABC): + + @staticmethod + def supported_auth_methods() -> list[str]: + """返回支持的认证方式列表。 + + 可选值: + - "credentials" — 用户名/密码(默认,所有 loader 都支持) + - "sso_token" — OIDC/OAuth access_token + - "azure_ad_token" — Azure AD access_token + - "iam_token" — AWS IAM 认证 token + - "service_account" — 服务账号 JSON key + - "cli" — 本地 CLI 认证(az login / gcloud auth) + """ + return ["credentials"] + + def set_auth_token(self, token: str, token_type: str = "bearer") -> None: + """注入来自 DF SSO 层的认证 token(可选实现)。""" + raise NotImplementedError( + f"{self.__class__.__name__} does not support token injection" + ) +``` + +### 缺陷三:凭证不持久化 + +当前 DataLoader 的连接参数(包括密码)存在**前端 Redux Store** 中,刷新页面即丢失。用户每次打开都要重新输入。接入 CredentialVault(`sso-plugin-architecture.md` 中设计)后可以提供"记住密码"能力。 + +### 综合改进路线图 + +| 改进项 | 复杂度 | 价值 | 优先级 | 前置依赖 | +|--------|:---:|:---:|:---:|------| +| **数据库注释拉取** | 低(5-20 行/loader) | 高(直接提升 AI 分析质量) | P0 | 无(现在可做) | +| **SSO Token 透传** | 中 | 高(团队部署必需) | P1 | SSO AuthProvider 上线 | +| **凭证持久化** | 中 | 中(用户体验提升) | P2 | CredentialVault 上线 | +| **升级为 Plugin** | 高 | 低 | P3 | 仅 Snowflake 等需要 | + +--- + +## 2. 改进方案一:数据库元数据拉取 (P0) + +**目标**:让 DataLoader 在 `list_tables()` 和 `ingest_to_workspace()` 时一并拉取数据库的表/列注释,写入 `ColumnInfo` 和 `TableMetadata`,最终流入前端 AI prompt。 + +**不修改基类接口**,仅在各 DataLoader 内部实现中增强查询逻辑。对前端无感,通过现有 `list-tables` API 自然下发。 + +### 2.1 基类增加可选方法 + +```python +# external_data_loader.py — 新增可选方法 + +class ExternalDataLoader(ABC): + # ... 现有方法不变 ... + + def fetch_table_description(self, source_table: str) -> str | None: + """获取表的描述/注释(可选实现)。""" + return None + + def fetch_column_descriptions(self, source_table: str) -> dict[str, str]: + """获取各列的描述/注释(可选实现)。 + + Returns: + {"column_name": "列描述", ...},缺失注释的列不含在结果中。 + """ + return {} +``` + +这两个方法**不是 abstract 的**——默认返回空,对现有 loader 零影响。哪个 loader 想支持元数据就 override 即可。 + +### 2.2 各 DataLoader 的具体实现 + +**PostgreSQL**: + +```python +# postgresql_data_loader.py — 新增方法 + +def fetch_table_description(self, source_table: str) -> str | None: + schema, table = self._parse_table_name(source_table) + query = f""" + SELECT obj_description(c.oid) AS comment + FROM pg_catalog.pg_class c + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + WHERE n.nspname = '{schema}' AND c.relname = '{table}' + """ + result = self._read_sql(query).to_pandas() + if len(result) > 0 and result.iloc[0]['comment']: + return str(result.iloc[0]['comment']) + return None + +def fetch_column_descriptions(self, source_table: str) -> dict[str, str]: + schema, table = self._parse_table_name(source_table) + query = f""" + SELECT + a.attname AS column_name, + d.description AS comment + FROM pg_catalog.pg_attribute a + JOIN pg_catalog.pg_class c ON c.oid = a.attrelid + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + LEFT JOIN pg_catalog.pg_description d + ON d.objoid = a.attrelid AND d.objsubid = a.attnum + WHERE n.nspname = '{schema}' + AND c.relname = '{table}' + AND a.attnum > 0 + AND NOT a.attisdropped + AND d.description IS NOT NULL + """ + result = self._read_sql(query).to_pandas() + return {row['column_name']: row['comment'] for _, row in result.iterrows()} +``` + +**MSSQL**: + +```python +# mssql_data_loader.py — 新增方法 + +def fetch_table_description(self, source_table: str) -> str | None: + schema, table = self._parse_table_name(source_table) + query = f""" + SELECT CAST(ep.value AS NVARCHAR(MAX)) AS comment + FROM sys.extended_properties ep + JOIN sys.tables t ON ep.major_id = t.object_id + JOIN sys.schemas s ON t.schema_id = s.schema_id + WHERE s.name = '{schema}' AND t.name = '{table}' + AND ep.minor_id = 0 AND ep.name = 'MS_Description' + """ + result = self._execute_query(query).to_pandas() + if len(result) > 0 and result.iloc[0]['comment']: + return str(result.iloc[0]['comment']) + return None + +def fetch_column_descriptions(self, source_table: str) -> dict[str, str]: + schema, table = self._parse_table_name(source_table) + query = f""" + SELECT c.name AS column_name, + CAST(ep.value AS NVARCHAR(MAX)) AS comment + FROM sys.columns c + JOIN sys.tables t ON c.object_id = t.object_id + JOIN sys.schemas s ON t.schema_id = s.schema_id + LEFT JOIN sys.extended_properties ep + ON ep.major_id = c.object_id + AND ep.minor_id = c.column_id + AND ep.name = 'MS_Description' + WHERE s.name = '{schema}' AND t.name = '{table}' + AND ep.value IS NOT NULL + """ + result = self._execute_query(query).to_pandas() + return {row['column_name']: row['comment'] for _, row in result.iterrows()} +``` + +**BigQuery**(最简单——SDK 已有属性,只需取出): + +```python +# bigquery_data_loader.py — 新增方法 + +def fetch_table_description(self, source_table: str) -> str | None: + table_ref = self.client.get_table(source_table) + return table_ref.description or None + +def fetch_column_descriptions(self, source_table: str) -> dict[str, str]: + table_ref = self.client.get_table(source_table) + return { + field.name: field.description + for field in table_ref.schema + if field.description + } +``` + +**MySQL**: + +```python +# mysql_data_loader.py — 新增方法 + +def fetch_table_description(self, source_table: str) -> str | None: + schema, table = self._parse_table_name(source_table) + query = f""" + SELECT TABLE_COMMENT + FROM information_schema.TABLES + WHERE TABLE_SCHEMA = '{schema}' AND TABLE_NAME = '{table}' + """ + result = self._read_sql(query).to_pandas() + comment = result.iloc[0]['TABLE_COMMENT'] if len(result) > 0 else None + return comment if comment and comment.strip() else None + +def fetch_column_descriptions(self, source_table: str) -> dict[str, str]: + schema, table = self._parse_table_name(source_table) + query = f""" + SELECT COLUMN_NAME, COLUMN_COMMENT + FROM information_schema.COLUMNS + WHERE TABLE_SCHEMA = '{schema}' AND TABLE_NAME = '{table}' + AND COLUMN_COMMENT IS NOT NULL AND COLUMN_COMMENT != '' + """ + result = self._read_sql(query).to_pandas() + return {row['COLUMN_NAME']: row['COLUMN_COMMENT'] for _, row in result.iterrows()} +``` + +### 2.3 元数据如何写入 Workspace + +在 `ingest_to_workspace()` 中调用这两个方法,将注释写入 `ColumnInfo` 和 `TableMetadata`: + +```python +# external_data_loader.py — ingest_to_workspace 增强 + +def ingest_to_workspace(self, workspace, table_name, source_table, size=1000000, + sort_columns=None, sort_order='asc'): + arrow_table = self.fetch_data_as_arrow(source_table, size, sort_columns, sort_order) + + loader_metadata = { + "loader_type": self.__class__.__name__, + "loader_params": self.get_safe_params(), + "source_table": source_table, + } + + table_metadata = workspace.write_parquet_from_arrow( + table=arrow_table, table_name=table_name, loader_metadata=loader_metadata, + ) + + # ---- 新增:拉取并写入元数据 ---- + try: + table_desc = self.fetch_table_description(source_table) + col_descs = self.fetch_column_descriptions(source_table) + + if table_desc or col_descs: + from data_formulator.datalake.metadata import ColumnInfo, update_metadata + + def _enrich(meta): + tbl = meta.get_table(table_name) + if tbl is None: + return + if table_desc: + tbl.description = table_desc + if col_descs and tbl.columns: + for col in tbl.columns: + desc = col_descs.get(col.name) + if desc: + col.description = desc + + update_metadata(workspace._workspace_path, _enrich) + logger.info("Enriched metadata for '%s': table_desc=%s, col_descs=%d", + table_name, bool(table_desc), len(col_descs)) + except Exception as e: + logger.warning("Failed to fetch metadata for '%s': %s (data is still saved)", + source_table, e) + # ---- 元数据增强结束,失败不影响数据写入 ---- + + return table_metadata +``` + +**关键设计决策**:元数据拉取在数据写入**之后**,用 try/except 包裹。即使元数据查询失败(权限不足、数据库不支持等),数据本身已经安全写入 workspace。 + +### 2.4 `list_tables()` 返回值增强 + +同时在 `list_tables()` 中也返回注释信息,让前端在浏览数据库表时就能看到描述: + +```python +# postgresql_data_loader.py — list_tables 增强 + +def _list_tables(self, table_filter=None): + # ... 现有的 tables 查询 ... + + for _, row in tables_df.iterrows(): + schema = row['schemaname'] + table_name = row['tablename'] + full_table_name = f"{schema}.{table_name}" + + # 列信息(现有)+ 列注释(新增) + columns_query = f""" + SELECT + c.column_name, + c.data_type, + pgd.description AS column_comment + FROM information_schema.columns c + LEFT JOIN pg_catalog.pg_statio_all_tables st + ON st.schemaname = c.table_schema AND st.relname = c.table_name + LEFT JOIN pg_catalog.pg_description pgd + ON pgd.objoid = st.relid AND pgd.objsubid = c.ordinal_position + WHERE c.table_schema = '{schema}' AND c.table_name = '{table_name}' + ORDER BY c.ordinal_position + """ + columns_df = self._read_sql(columns_query).to_pandas() + columns = [{ + 'name': r['column_name'], + 'type': r['data_type'], + 'description': r['column_comment'] or None, # ← 新增 + } for _, r in columns_df.iterrows()] + + # 表注释(新增) + table_comment = self.fetch_table_description(full_table_name) + + table_metadata = { + "row_count": int(row_count), + "columns": columns, + "sample_rows": sample_rows, + "description": table_comment, # ← 新增 + } + results.append({"name": full_table_name, "metadata": table_metadata}) +``` + +### 2.5 前端展示(自然兼容) + +现有前端 `DBManagerPane` 已经渲染了 `columns` 列表。只需小幅调整,当 `column.description` 存在时显示 tooltip: + +``` +┌─────────────────────────────────────────────────┐ +│ public.orders — 订单主表,记录所有用户订单 │ ← table description +│ │ +│ 列名 类型 描述 │ +│ ────── ──── ──── │ +│ id integer 订单唯一标识 │ +│ customer_id integer 关联客户表 (FK) │ +│ created_at timestamp 订单创建时间(UTC) │ +│ total_amount numeric 订单总金额(含税) │ ← column descriptions +│ status varchar pending/paid/shipped │ +│ │ +│ 行数: 1,234,567 [ 加载 ▾ ] │ +└─────────────────────────────────────────────────┘ +``` + +### 2.6 改动文件清单 + +| 文件 | 改动 | 行数估计 | +|------|------|:---:| +| `external_data_loader.py` | 新增 `fetch_table_description()`、`fetch_column_descriptions()` 默认实现;`ingest_to_workspace()` 增加元数据写入 | ~30 行 | +| `postgresql_data_loader.py` | 实现两个描述方法 + `list_tables()` 查询增强 | ~25 行 | +| `mssql_data_loader.py` | 实现两个描述方法 + `list_tables()` 查询增强 | ~30 行 | +| `bigquery_data_loader.py` | 实现两个描述方法(各 3 行)+ `list_tables()` 取 description | ~10 行 | +| `mysql_data_loader.py` | 实现两个描述方法 + `list_tables()` 取 `COLUMN_COMMENT` | ~20 行 | +| `kusto_data_loader.py` | 实现两个描述方法(从 schema JSON 取 DocString) | ~15 行 | +| `metadata.py` | `ColumnInfo` 增加 `description` 字段;`TableMetadata` 增加 `description` 字段 | ~15 行 | +| **前端 `DBManagerPane`** | columns 列表显示 description tooltip | ~10 行 | +| **总计** | | **~155 行** | + +--- + +## 3. 改进方案二:SSO Token 透传到数据库 (P1) + +**目标**:当 DF 用户通过 OIDC SSO 登录后,如果目标数据库也信任同一 IdP,DataLoader 自动使用 SSO token 连接数据库,用户无需输入数据库密码。 + +**前置条件**:SSO AuthProvider 链已上线(`sso-plugin-architecture.md` Phase 1)。 + +### 3.1 基类增加认证能力声明 + +```python +# external_data_loader.py — 新增 + +class ExternalDataLoader(ABC): + # ... 现有方法 ... + + @staticmethod + def supported_auth_methods() -> list[dict]: + """声明该 loader 支持哪些认证方式。 + + 框架据此在前端渲染不同的认证 UI(密码表单 vs SSO 按钮等)。 + """ + return [ + {"method": "credentials", "label": "Username & Password", "default": True}, + ] +``` + +各 DataLoader 按实际能力 override: + +```python +# mssql_data_loader.py +@staticmethod +def supported_auth_methods(): + return [ + {"method": "credentials", "label": "SQL Server Authentication"}, + {"method": "windows_auth", "label": "Windows Integrated Authentication"}, + {"method": "azure_ad_token", "label": "Azure AD (SSO)", + "requires_sso": True, "token_audience": "https://database.windows.net/"}, + ] + +# postgresql_data_loader.py +@staticmethod +def supported_auth_methods(): + return [ + {"method": "credentials", "label": "Username & Password", "default": True}, + {"method": "azure_ad_token", "label": "Azure AD (SSO)", + "requires_sso": True, "token_audience": "https://ossrdbms-aad.database.windows.net"}, + {"method": "aws_iam_token", "label": "AWS IAM", + "requires_env": ["AWS_REGION"]}, + ] + +# bigquery_data_loader.py +@staticmethod +def supported_auth_methods(): + return [ + {"method": "service_account", "label": "Service Account JSON", "default": True}, + {"method": "cli", "label": "gcloud CLI (local dev)"}, + {"method": "oidc_federation", "label": "OIDC Federation (SSO)", + "requires_sso": True}, + ] +``` + +### 3.2 Token 注入流程 + +``` +用户通过 OIDC SSO 登录 DF + → 获得 access_token(存在 AuthResult 中) + → 用户打开数据库连接面板 + +前端渲染: + GET /api/data-loader/postgresql/auth-methods + → 返回 supported_auth_methods() + → 发现有 "azure_ad_token",且 requires_sso=true + → DF 当前有 SSO 登录 → 显示「使用 SSO 连接」按钮 + +用户点击「使用 SSO 连接」: + → 前端带上 auth_method: "azure_ad_token" + → 后端从 auth.get_sso_token() 拿到 access_token + → 如果 token_audience 不同,用 token exchange 获取目标 audience 的 token + → 将 token 注入 DataLoader 的 params + → DataLoader 用 token 连接数据库 +``` + +### 3.3 各数据库的 Token 认证实现 + +**Azure SQL / MSSQL**: + +```python +def __init__(self, params): + auth_method = params.get("auth_method", "credentials") + + if auth_method == "azure_ad_token": + token = params["access_token"] + conn_str = f"DRIVER={{{self.driver}}};SERVER={self.server},{self.port};DATABASE={self.database};" + + SQL_COPT_SS_ACCESS_TOKEN = 1256 + token_struct = struct.pack( + f' m.requires_sso); +const isSsoLoggedIn = !!serverConfig.auth_user; + +{authMethods.length > 1 && ( + + {authMethods.map(m => ( + } + /> + ))} + +)} + +{selectedAuthMethod === "credentials" && ( + <> + + + +)} +{selectedAuthMethod === "azure_ad_token" && ( + + {t('db.ssoConnectInfo', { user: serverConfig.auth_user })} + +)} +``` + +### 3.5 改动文件清单 + +| 文件 | 改动 | 行数估计 | +|------|------|:---:| +| `external_data_loader.py` | 新增 `supported_auth_methods()` 默认实现 | ~10 行 | +| `mssql_data_loader.py` | override `supported_auth_methods()`;`__init__` 增加 `azure_ad_token` 分支 | ~25 行 | +| `postgresql_data_loader.py` | 同上 | ~20 行 | +| `bigquery_data_loader.py` | 同上(OIDC federation) | ~20 行 | +| `kusto_data_loader.py` | 同上(`with_aad_user_token_authentication`) | ~15 行 | +| `tables_routes.py` | 新增 `/api/data-loader/{type}/auth-methods` 路由 | ~15 行 | +| **前端** `DBManagerPane.tsx` | 动态渲染认证方式选择 UI | ~40 行 | +| **总计** | | **~145 行** | + +--- + +## 4. 改进方案三:凭证持久化 (P2) + +**目标**:用户连接数据库后,可以选择"记住连接",凭证加密存入 CredentialVault,下次打开 DF 无需重新输入。 + +**前置条件**:CredentialVault 已上线(`sso-plugin-architecture.md` Layer 3)。 + +### 4.1 用户体验流程 + +``` +首次连接: + 用户填写 host/port/user/password → 连接成功 + → 弹出「保存此连接?」提示 + → 用户确认 → 凭证加密存入 CredentialVault + 键: credential:dataloader:postgresql:{user_id}:{host}:{database} + 值: AES 加密的 {"user": "...", "password": "...", "host": "...", ...} + +再次打开 DF: + → 前端请求 GET /api/data-loader/saved-connections + → 返回已保存的连接列表(不含明文密码,只有名称和类型) + → 用户点击已保存的连接 → 一键连接 + → 后端从 CredentialVault 解密取出凭证 → 创建 DataLoader + +管理: + → 用户可以查看、删除已保存的连接 + → 删除操作同时清除 CredentialVault 中的加密凭证 +``` + +### 4.2 后端 API + +```python +# tables_routes.py — 新增路由 + +@tables_bp.route('/data-loader/saved-connections', methods=['GET']) +def list_saved_connections(): + """列出当前用户保存的数据库连接(不含明文密码)。""" + user_id = get_identity_id() + vault = get_credential_vault() + connections = vault.list_credentials(user_id, prefix="dataloader:") + return jsonify([{ + "id": conn.credential_id, + "loader_type": conn.metadata.get("loader_type"), + "display_name": conn.metadata.get("display_name"), + "host": conn.metadata.get("host"), + "database": conn.metadata.get("database"), + "saved_at": conn.metadata.get("saved_at"), + } for conn in connections]) + +@tables_bp.route('/data-loader/saved-connections', methods=['POST']) +def save_connection(): + """保存一个数据库连接(凭证加密存储)。""" + data = request.get_json() + user_id = get_identity_id() + vault = get_credential_vault() + + loader_type = data["loader_type"] + params = data["params"] + display_name = data.get("display_name", f"{loader_type}:{params.get('host','')}/{params.get('database','')}") + + credential_id = f"dataloader:{loader_type}:{params.get('host','')}:{params.get('database','')}" + + vault.store_credential( + user_id=user_id, + credential_id=credential_id, + secret_data=params, + metadata={ + "loader_type": loader_type, + "display_name": display_name, + "host": params.get("host"), + "database": params.get("database"), + "saved_at": datetime.now(timezone.utc).isoformat(), + }, + ) + return jsonify({"status": "ok", "credential_id": credential_id}) + +@tables_bp.route('/data-loader/saved-connections//connect', methods=['POST']) +def connect_saved(): + """使用已保存的凭证连接数据库。""" + user_id = get_identity_id() + vault = get_credential_vault() + + cred = vault.get_credential(user_id, credential_id) + if cred is None: + return jsonify({"status": "error", "message": "Connection not found"}), 404 + + loader_type = cred.metadata["loader_type"] + params = cred.secret_data # 自动解密 + + loader_cls = DATA_LOADERS.get(loader_type) + loader = loader_cls(params) + # ... 后续逻辑与手动连接相同 ... +``` + +### 4.3 前端 UI + +``` +┌─────────────────────────────────────────────────────┐ +│ 数据库连接 │ +│ │ +│ ┌─── 已保存的连接 ─────────────────────────────────┐ │ +│ │ 🔗 生产 PostgreSQL (pg.company.com/analytics) │ │ +│ │ 上次连接: 2025-03-20 [ 连接 ] [ 🗑 删除 ] │ │ +│ │ │ │ +│ │ 🔗 测试 MSSQL (sql-test/reporting) │ │ +│ │ 上次连接: 2025-03-18 [ 连接 ] [ 🗑 删除 ] │ │ +│ └───────────────────────────────────────────────────┘ │ +│ │ +│ ┌─── 新建连接 ─────────────────────────────────────┐ │ +│ │ 类型: [PostgreSQL ▾] │ │ +│ │ 认证: ● 用户名密码 ○ SSO (Azure AD) │ │ +│ │ Host: [________________] │ │ +│ │ ... │ │ +│ │ ☑ 记住此连接 │ │ +│ │ │ │ +│ │ [ 连接 ] │ │ +│ └───────────────────────────────────────────────────┘ │ +└─────────────────────────────────────────────────────┘ +``` + +### 4.4 安全性 + +| 措施 | 说明 | +|------|------| +| **加密存储** | 密码等敏感字段通过 CredentialVault 使用 Fernet (AES-128-CBC) 加密 | +| **per-user 隔离** | 每个用户只能访问自己保存的连接(通过 `user_id` 隔离) | +| **不回显密码** | `list_saved_connections` 只返回元数据,不返回明文密码 | +| **手动删除** | 用户随时可以删除已保存的连接和对应的加密凭证 | +| **SSO 优先** | 如果数据库支持 SSO 且 DF 已 SSO 登录,优先推荐 SSO(无需存密码) | + +--- + +## 关联文档 + +| 文档 | 关系 | +|------|------| +| `1-data-source-plugin-architecture.md` § 11.1~11.2 | ExternalDataLoader vs DataSourcePlugin 的分工定义 | +| `1-sso-plugin-architecture.md` | SSO AuthProvider(P1 前置)、CredentialVault(P2 前置) | diff --git a/design-docs/3-language-injection-analysis.md b/design-docs/3-language-injection-analysis.md new file mode 100644 index 00000000..dbac5628 --- /dev/null +++ b/design-docs/3-language-injection-analysis.md @@ -0,0 +1,239 @@ +# Data Formulator 多语言提示词注入分析 + +## 1. 问题概述 + +项目已接入多语言(i18n)支持,核心 Agent 提示词通过 `language_instruction` 参数注入语言指令。但仍有个别 LLM 调用点遗漏了语言注入,导致部分场景下输出语言与用户界面语言不一致。 + +--- + +## 2. 现有语言注入架构 + +### 2.1 整体流程 + +``` +前端 i18n.language ──► Accept-Language header ──► get_language_instruction() + │ + ▼ + build_language_instruction() + (agent_language.py) + │ + ┌────────────┴────────────┐ + ▼ ▼ + mode="full" mode="compact" + (文本型 Agent) (代码生成 Agent) +``` + +**关键模块**: + +| 模块 | 职责 | +|------|------| +| `src/app/utils.tsx` → `getAgentLanguage()` | 从 `i18n.language` 提取语言代码 | +| `src/app/utils.tsx` → `fetchWithIdentity()` | 在每个 API 请求的 `Accept-Language` header 中注入语言代码 | +| `py-src/.../agents/agent_language.py` | `build_language_instruction(lang, mode)` — 根据语言代码和模式生成提示词片段 | +| `py-src/.../agent_routes.py` → `get_language_instruction()` | 从 `Accept-Language` header 解析语言,调用 `build_language_instruction` | + +### 2.2 已正确注入语言的 Agent + +#### `agent_data_rec.py` 和 `agent_data_transform.py` + +通过构造函数接收 `language_instruction`,注入到 system prompt 中: + +```python +if language_instruction: + marker = "**About the execution environment:**" + idx = self.system_prompt.find(marker) + if idx > 0: + self.system_prompt = ( + self.system_prompt[:idx] + + language_instruction + "\n\n" + + self.system_prompt[idx:] + ) + else: + self.system_prompt = self.system_prompt + "\n\n" + language_instruction +``` + +**注入位置策略**:在 `"**About the execution environment:**"` 标记之前插入,确保语言要求在技术细节之前被声明。如果找不到标记,则追加到末尾。 + +#### `data_agent.py` + +通过 `self.language_instruction` 实例属性,在 `_build_system_prompt()` 中注入: + +```python +def _build_system_prompt(self) -> str: + # ... 构建 prompt ... + if self.language_instruction: + prompt = prompt + "\n\n" + self.language_instruction + return prompt +``` + +#### 其他已注入的路由 + +`agent_routes.py` 中的大部分路由处理函数都已正确调用 `get_language_instruction(mode=...)` 并传入对应 Agent 构造函数。 + +### 2.3 `agent_language.py` 的两种模式 + +| 模式 | 适用场景 | 特点 | +|------|---------|------| +| `"full"` | 文本型 Agent(ChartInsight、InteractiveExplore、ReportGen 等) | 详细的逐字段规则,区分用户可见字段和内部字段 | +| `"compact"` | 代码生成 Agent(DataRec、DataTransformation、DataLoad) | 简短 3 句话指令,避免干扰模型生成代码 | + +支持 20 种语言(en、zh、ja、ko、fr、de 等),当语言为 `"en"` 时返回空字符串(无需注入)。 + +--- + +## 3. 遗漏分析 + +### 3.1 `agent_routes.py` — 工作区命名(需修复) + +```python +# L1073-1086 +messages = [ + { + "role": "system", + "content": ( + "You are a helpful assistant. Generate a very short name (3-5 words) " + "for a data analysis workspace based on the context below. " + "Return ONLY the name, no quotes, no explanation." + ), + }, + {"role": "user", "content": context_str}, +] +``` + +**问题**:工作区名称直接展示在 UI 中,应跟随用户界面语言。当前未注入语言指令,中文用户会看到英文工作区名称。 + +**影响级别**:中 — 用户可见,体验不一致。 + +### 3.2 `agent_routes.py` — 健康检查(无需修复) + +```python +# L227-230 +messages=[ + {"role": "system", "content": "You are a helpful assistant."}, + {"role": "user", "content": "Respond 'I can hear you.' if you can hear me. Do not say anything other than 'I can hear you.'"}, +] +``` + +**分析**:这是 `/test-model` 的连通性测试,期望固定返回 `"I can hear you."`。不应注入语言指令,原因: + +- 返回内容不面向最终用户展示 +- 注入语言指令会增加无意义的 token 消耗 +- 如果 LLM 遵从语言指令返回中文,可能导致连通性判断逻辑异常 + +**影响级别**:无 — 无需修改。 + +### 3.3 `agent_utils.py` — 补充代码生成(无需修复) + +```python +# L243-247 +supp_resp = client.get_completion(messages=[ + *messages, + {"role": "assistant", "content": assistant_content}, + {"role": "user", "content": prompt}, +]) +``` + +**分析**:`messages` 列表从上游 Agent 传入,上游 Agent 在构造 system prompt 时已注入了 `language_instruction`。因此补充生成继承了上游的语言指令,无需重复注入。 + +**影响级别**:无 — 无需修改。 + +--- + +## 4. 修复方案 + +### 4.1 修复工作区命名(唯一需要修改的地方) + +复用现有的 `get_language_instruction()` 函数,使用 `mode="compact"` 模式(因为工作区名称是短文本): + +```python +# agent_routes.py — workspace_summary() + +lang_instruction = get_language_instruction(mode="compact") +lang_suffix = f"\n\n{lang_instruction}" if lang_instruction else "" + +messages = [ + { + "role": "system", + "content": ( + "You are a helpful assistant. Generate a very short name (3-5 words) " + "for a data analysis workspace based on the context below. " + "Return ONLY the name, no quotes, no explanation." + + lang_suffix + ), + }, + {"role": "user", "content": context_str}, +] +``` + +**注意**:`get_language_instruction()` 在 `lang == "en"` 时返回空字符串,所以英文用户不会受影响。 + +### 4.2 不需要新建 `MessageBuilder` 或全局拦截 + +现有架构已经提供了完整的语言注入体系: + +- `agent_language.py` 管理语言模板和生成逻辑 +- `get_language_instruction()` 从请求 header 解析语言 +- 各 Agent 构造函数接收 `language_instruction` 参数 + +**不建议**引入 `MessageBuilder` 工具类或 LLMClient 全局拦截,原因: + +| 方案 | 问题 | +|------|------| +| `MessageBuilder` + 环境变量 | 语言来源从 per-request(`Accept-Language` header)退化为 per-process(环境变量),破坏多用户场景 | +| LLMClient 全局拦截 | 隐式修改 system prompt 导致调试困难;字符串检测 `"**Language Requirement:**"` 脆弱;无法区分 full/compact 模式 | + +--- + +## 5. 防止未来遗漏的建议 + +### 5.1 开发规范 + +每次新增 LLM 调用点时,开发者应检查: + +1. 该调用的输出是否面向用户展示? +2. 如果是,是否调用了 `get_language_instruction()` 并注入到 system prompt 中? +3. 选择正确的 mode:文本型用 `"full"`,短文本/代码型用 `"compact"` + +### 5.2 测试验证 + +实施完成后验证以下场景: + +- [ ] 新建工作区时生成的名称跟随 UI 语言 +- [ ] 数据推荐 Agent 的代码注释和说明跟随 UI 语言 +- [ ] 数据转换 Agent 的解释说明跟随 UI 语言 +- [ ] 数据探索 Agent 的交互内容跟随 UI 语言 +- [ ] 英文用户不受影响(`build_language_instruction("en")` 返回 `""`) + +--- + +## 6. 相关文件 + +| 文件路径 | 说明 | +|---------|------| +| `py-src/data_formulator/agents/agent_language.py` | 语言指令构建核心模块(模板、模式、多语言支持) | +| `py-src/data_formulator/agent_routes.py` | 路由层:`get_language_instruction()` + 各端点调用 | +| `py-src/data_formulator/agents/data_agent.py` | 数据探索 Agent(已有语言注入) | +| `py-src/data_formulator/agents/agent_data_rec.py` | 数据推荐 Agent(已有语言注入) | +| `py-src/data_formulator/agents/agent_data_transform.py` | 数据转换 Agent(已有语言注入) | +| `py-src/data_formulator/agents/agent_utils.py` | 补充代码生成工具(继承上游语言指令) | +| `src/app/utils.tsx` | 前端:`getAgentLanguage()` + `fetchWithIdentity()` | +| `src/i18n/index.ts` | 前端 i18n 配置(i18next + LanguageDetector) | + +--- + +## 7. 附录:`agent_language.py` 架构说明 + +### 语言注册表 + +`LANGUAGE_DISPLAY_NAMES` 定义了 20 种语言的显示名称,用于生成提示词中的语言标识。 + +### 特定语言的额外规则 + +`LANGUAGE_EXTRA_RULES` 为特定语言提供补充说明(如中文要求使用简体中文、日文要求使用敬体)。 + +### 输出逻辑 + +- 当 `language == "en"` 时,返回空字符串(不注入任何语言指令) +- 当 `language != "en"` 时,根据 `mode` 参数返回 full 或 compact 格式的语言指令 +- full 模式详细列出哪些字段用目标语言、哪些字段保持英文 +- compact 模式仅用 3 句话说明基本规则,适合代码生成场景 diff --git a/design-docs/6-path-safety-confined-dir.md b/design-docs/6-path-safety-confined-dir.md new file mode 100644 index 00000000..fd36a23c --- /dev/null +++ b/design-docs/6-path-safety-confined-dir.md @@ -0,0 +1,607 @@ +# 服务端路径安全加固 — ConfinedDir 统一防护 + +> **来源**:CodeQL `py/path-injection` 审计 + 全量代码人工审查。 +> **目标**:将"根目录 + 用户/外部输入"拼接这一高频模式收敛到单一原语,消除散落式校验遗漏。 + +--- + +## 目录 + +1. [问题分析](#1-问题分析) +2. [现有防护盘点](#2-现有防护盘点) +3. [方案设计:ConfinedDir](#3-方案设计confineddir) +4. [改造清单](#4-改造清单) +5. [HTTP 响应头注入修复](#5-http-响应头注入修复) +6. [测试计划](#6-测试计划) +7. [实施步骤](#7-实施步骤) +8. [后续防线](#8-后续防线) + +--- + +## 1. 问题分析 + +### 1.1 攻击面 + +服务端存在"根目录 + 不可信子路径"拼接的场景: + +| 场景 | 根目录 | 子路径来源 | 攻击方式 | +|------|--------|-----------|---------| +| 用户上传文件 | workspace `data/` | HTTP `filename` | `../../etc/passwd` | +| Azure Blob 物化到本地 | `tempfile.mkdtemp()` | Blob 名称 | blob key 含 `../` 段 | +| Session zip 导入 | 临时目录 | zip 内文件路径 | Zip-Slip | +| Cache 层本地镜像 | `~/.data_formulator/cache/` | blob 相对路径 | blob key 含 `../` 段 | +| Workspace ID → 目录名 | `workspaces//` | 用户/浏览器 ID | `../../other_user` | + +### 1.2 现有代码的核心问题 + +防护**分散在调用点**,每个开发者写新代码时必须主动记住调用清洗函数。遗漏 = 漏洞。 + +**已发现的 2 处遗漏**: + +1. `azure_blob_workspace.py` — `local_dir()` (第 576–598 行)、`save_workspace_snapshot()` (第 616–626 行) + - blob 相对路径直接拼接到临时目录,无 `..` 段检查或 `resolve()` 校验 + - 如果 blob 名称包含 `..` 段,可写出临时目录之外(任意文件写入) + +2. `tables_routes.py` — `export-table-csv` (第 667–672 行) + - `table_name` 直接拼入 `Content-Disposition` 响应头 + - 可注入 `"`、`\r\n` 等字符,造成 HTTP 响应头注入 + +### 1.3 为什么"每次手动校验"不可持续 + +- 0.7 已有 **87 个 Python 文件**,路径操作分布在 datalake、routes、sandbox、plugins 多个模块 +- 未来 Plugin 系统会引入第三方开发者写的路径代码,控制力更弱 +- CodeQL 对"先拼接后校验"模式报误报,开发者可能习惯性忽略告警 + +--- + +## 2. 现有防护盘点 + +### 2.1 已有的防护措施(保留并继续使用) + +| 措施 | 位置 | 作用 | +|------|------|------| +| `safe_data_filename()` | `parquet_utils.py:42-66` | 提取 basename,拒绝 `.` / `..`,保留 Unicode | +| `Workspace.get_file_path()` | `workspace.py:226-252` | `safe_data_filename` + `resolve().relative_to()` 双重校验 | +| `CachedAzureBlobWorkspace._cache_path()` | `cached_azure_blob_workspace.py:230-242` | `resolve()` + `is_relative_to()` | +| `Workspace._sanitize_identity_id()` | `workspace.py:205-218` | `secure_filename` 清洗用户 ID | +| `WorkspaceManager._safe_id()` | `workspace_manager.py:72-78` | `secure_filename` 清洗 workspace ID | +| `import_session_zip()` | `workspace.py:770-784` | 逐段 `secure_filename` + 跳过空段 | + +### 2.2 这些措施的共同模式 + +每处防护本质上在做同一件事: + +``` +给定 root_dir + untrusted_relative_path: + 1. 清洗 untrusted_relative_path(basename / 拒绝 .. / secure_filename) + 2. 拼接:candidate = root_dir / cleaned_path + 3. 校验:candidate.resolve().is_relative_to(root_dir.resolve()) + 4. 否则 raise ValueError +``` + +**ConfinedDir 就是把这四步封装成一个对象。** + +--- + +## 3. 方案设计:ConfinedDir + +### 3.1 核心类 + +新增文件 `py-src/data_formulator/security/path_safety.py`: + +```python +"""Path confinement primitive — prevents path traversal at the API level. + +Usage: + jail = ConfinedDir("/tmp/workspace") + safe = jail / "data/sales.parquet" # OK + jail / "../etc/passwd" # raises ValueError + jail.write("data/out.parquet", raw_bytes) # resolve + mkdir + write +""" + +from __future__ import annotations + +import logging +import re +from pathlib import Path + +logger = logging.getLogger(__name__) + + +class ConfinedDir: + """A directory jail that prevents any path operation from escaping its root. + + All path resolution goes through this single chokepoint. If the + resolved path escapes the root, ``ValueError`` is raised immediately. + + Thread-safe: instances are immutable after construction; Path.resolve() + and is_relative_to() are OS-level and inherently safe for concurrent use. + """ + + __slots__ = ("_root",) + + def __init__(self, root: Path | str, *, mkdir: bool = True): + self._root = Path(root).resolve() + if mkdir: + self._root.mkdir(parents=True, exist_ok=True) + + # -- properties -------------------------------------------------------- + + @property + def root(self) -> Path: + """The resolved, canonical root directory.""" + return self._root + + # -- core API ---------------------------------------------------------- + + def resolve(self, relative: str, *, mkdir_parents: bool = False) -> Path: + """Resolve *relative* within this jail. + + Raises ``ValueError`` if the result would escape the root. + + Defence is layered: + 1. Reject absolute paths outright. + 2. Reject path segments equal to ``..``. + 3. Join onto root, canonicalise with ``resolve()``, and confirm + the result is still under root (catches symlink escapes). + """ + if not relative: + raise ValueError("Empty relative path") + if Path(relative).is_absolute(): + raise ValueError(f"Absolute path not allowed: {relative!r}") + + parts = Path(relative).parts + if ".." in parts: + raise ValueError(f"Path traversal segment '..' in: {relative!r}") + + candidate = (self._root / relative).resolve() + if not candidate.is_relative_to(self._root): + raise ValueError( + f"Path escapes confined directory: {relative!r} " + f"resolves to {candidate}" + ) + + if mkdir_parents: + candidate.parent.mkdir(parents=True, exist_ok=True) + + return candidate + + def write(self, relative: str, data: bytes) -> Path: + """Resolve, create parent dirs, and write *data* atomically.""" + target = self.resolve(relative, mkdir_parents=True) + target.write_bytes(data) + return target + + def __truediv__(self, relative: str) -> Path: + """Operator overload: ``jail / "sub/path"`` → ``jail.resolve("sub/path")``.""" + return self.resolve(relative) + + def __repr__(self) -> str: + return f"ConfinedDir({self._root})" +``` + +### 3.2 设计要点 + +| 要点 | 说明 | +|------|------| +| **不可变** | 构造后 `_root` 不可修改,线程安全 | +| **三层防御** | 拒绝绝对路径 → 拒绝 `..` 段 → `resolve()` + `is_relative_to()` | +| **Symlink 安全** | `resolve()` 在 OS 层面展开符号链接后再检查包含关系 | +| **操作符重载** | `jail / "sub/path"` 语法糖,让调用点代码简洁 | +| **mkdir 内置** | `write()` 方法自动创建父目录,减少调用点样板代码 | + +### 3.3 与现有 API 的兼容策略 + +`ConfinedDir` 作为**底层原语**引入,不替换现有的 `safe_data_filename()` 或 `secure_filename()`。层次关系: + +``` +调用者传入的 filename / relative_path + │ + ▼ +safe_data_filename() / secure_filename() ← 第一层:输入清洗 + │ + ▼ +ConfinedDir.resolve() ← 第二层:路径约束(新增) + │ + ▼ +最终的 Path 对象 ← 安全的文件路径 +``` + +### 3.4 在 security 包中注册 + +更新 `py-src/data_formulator/security/__init__.py`: + +```python +from data_formulator.security.path_safety import ConfinedDir + +__all__ = [ + ..., + "ConfinedDir", +] +``` + +--- + +## 4. 改造清单 + +### 4.1 [漏洞] `AzureBlobWorkspace.local_dir()` — 中等风险 + +**文件**:`py-src/data_formulator/datalake/azure_blob_workspace.py`,第 576–598 行 + +**Before**: + +```python +@contextmanager +def local_dir(self): + tmp = tempfile.mkdtemp(prefix="df_blob_ws_") + tmp_path = Path(tmp) + try: + for blob in self._container.list_blobs(name_starts_with=self._prefix): + rel = blob.name[len(self._prefix):] + if not rel or rel == METADATA_FILENAME: + continue + local_file = tmp_path / rel # ← 无校验 + local_file.parent.mkdir(parents=True, exist_ok=True) + data = self._container.download_blob(blob.name).readall() + local_file.write_bytes(data) + yield tmp_path + finally: + shutil.rmtree(tmp, ignore_errors=True) +``` + +**After**: + +```python +from data_formulator.security.path_safety import ConfinedDir + +@contextmanager +def local_dir(self): + tmp = tempfile.mkdtemp(prefix="df_blob_ws_") + tmp_path = Path(tmp) + jail = ConfinedDir(tmp_path, mkdir=False) + try: + for blob in self._container.list_blobs(name_starts_with=self._prefix): + rel = blob.name[len(self._prefix):] + if not rel or rel == METADATA_FILENAME: + continue + try: + data = self._container.download_blob(blob.name).readall() + jail.write(rel, data) + except ValueError: + logger.warning( + "Skipping blob with unsafe path: %s", blob.name, + ) + yield tmp_path + finally: + shutil.rmtree(tmp, ignore_errors=True) +``` + +### 4.2 [漏洞] `AzureBlobWorkspace.save_workspace_snapshot()` — 中等风险 + +**文件**:同上,第 616–626 行 + +**Before**: + +```python +def save_workspace_snapshot(self, dst: Path) -> None: + for blob in self._container.list_blobs(name_starts_with=self._prefix): + rel = blob.name[len(self._prefix):] + if not rel: + continue + dst.mkdir(parents=True, exist_ok=True) + local_file = dst / rel # ← 无校验 + local_file.parent.mkdir(parents=True, exist_ok=True) + data = self._container.download_blob(blob.name).readall() + local_file.write_bytes(data) +``` + +**After**: + +```python +def save_workspace_snapshot(self, dst: Path) -> None: + jail = ConfinedDir(dst) + for blob in self._container.list_blobs(name_starts_with=self._prefix): + rel = blob.name[len(self._prefix):] + if not rel: + continue + try: + data = self._container.download_blob(blob.name).readall() + jail.write(rel, data) + except ValueError: + logger.warning( + "Skipping blob with unsafe path in snapshot: %s", blob.name, + ) +``` + +### 4.3 [加固] `CachedAzureBlobWorkspace._cache_path()` — 替换手写逻辑 + +**文件**:`py-src/data_formulator/datalake/cached_azure_blob_workspace.py`,第 230–242 行 + +**Before**: + +```python +def _cache_path(self, filename: str) -> Path: + resolved = (self._cache_dir / filename).resolve() + if not resolved.is_relative_to(self._cache_dir.resolve()): + raise ValueError( + f"Path traversal detected: {filename!r} resolves outside " + f"the cache directory" + ) + return resolved +``` + +**After**: + +```python +def __init__(self, ...): + ... + self._cache_jail = ConfinedDir(self._cache_dir, mkdir=True) + +def _cache_path(self, filename: str) -> Path: + return self._cache_jail.resolve(filename) +``` + +收益:消除 CodeQL `py/path-injection` 在此处的告警(验证逻辑在 `ConfinedDir` 内部完成,不再是"先拼接后验证")。 + +### 4.4 [加固] `Workspace.get_file_path()` — 可选改造 + +**文件**:`py-src/data_formulator/datalake/workspace.py`,第 226–252 行 + +当前已有 `safe_data_filename` + `resolve().relative_to()` 双重防护,功能正确。可选择用 `ConfinedDir` 替换以统一风格: + +```python +def __init__(self, ...): + ... + self._data_jail = ConfinedDir(self._path / "data") + +def get_file_path(self, filename: str) -> Path: + basename = safe_data_filename(filename) + return self._data_jail.resolve(basename) +``` + +此项为**可选优化**,现有逻辑已安全。 + +--- + +## 5. HTTP 响应头注入修复 + +### 5.1 工具函数 + +新增 `py-src/data_formulator/security/http_headers.py`: + +```python +"""HTTP response header safety helpers.""" + +from werkzeug.utils import secure_filename + + +def safe_download_name(name: str, fallback: str = "export") -> str: + """Sanitize a user-provided name for Content-Disposition filename. + + Strips directory components, special characters (quotes, newlines), + and falls back to *fallback* if the result is empty. + """ + safe = secure_filename(name) if name else "" + return safe or fallback +``` + +### 5.2 改造点 + +**文件**:`py-src/data_formulator/tables_routes.py`,第 667–672 行 + +**Before**: + +```python +headers={ + 'Content-Disposition': f'attachment; filename="{table_name}.{ext}"', +} +``` + +**After**: + +```python +from data_formulator.security.http_headers import safe_download_name + +safe_name = safe_download_name(table_name) +headers={ + 'Content-Disposition': f'attachment; filename="{safe_name}.{ext}"', +} +``` + +--- + +## 6. 测试计划 + +### 6.1 `ConfinedDir` 单元测试 + +**文件**:`tests/backend/security/test_path_safety.py` + +```python +# 要验证的行为: +# +# --- 正常路径 --- +# - jail.resolve("file.txt") → root/file.txt +# - jail.resolve("sub/dir/file.txt") → root/sub/dir/file.txt +# - jail / "file.txt" → 等价于 resolve +# - jail.write("out.bin", b"data") → 文件创建成功,内容正确 +# - resolve(mkdir_parents=True) → 父目录自动创建 +# +# --- 路径穿越拒绝 --- +# - jail.resolve("../etc/passwd") → raises ValueError +# - jail.resolve("sub/../../etc/passwd") → raises ValueError +# - jail.resolve("..") → raises ValueError +# - jail.resolve("/etc/passwd") → raises ValueError(绝对路径) +# - jail.resolve("") → raises ValueError(空路径) +# - jail.resolve("sub/\x00hidden") → 行为取决于 OS,至少不能逃逸 +# +# --- Symlink 逃逸 --- +# - 在 jail 内创建指向 jail 外的 symlink → resolve 后检测逃逸 → raises ValueError +# +# --- Unicode 安全 --- +# - jail.resolve("数据/报表.parquet") → 正常工作(CJK 字符保留) +# - jail.resolve("données/résumé.csv") → 正常工作(Latin 扩展字符保留) +# +# --- 边界情况 --- +# - 多层嵌套 "../../../.." → raises ValueError +# - Windows 风格分隔符 "sub\\..\\..\\etc" → raises ValueError +# - 以 "~" 开头的路径 "~root/.ssh/key" → 不逃逸即允许 + +# 测试策略:使用 pytest tmp_path fixture,真实文件系统操作 +``` + +### 6.2 Azure Blob 路径安全回归测试 + +**文件**:`tests/backend/security/test_blob_path_traversal.py` + +```python +# 要验证的行为: +# +# - local_dir() 遇到 blob key 含 "../" 时 → 跳过该 blob,不抛异常,日志 warning +# - local_dir() 正常 blob → 文件正确物化到 tmp 目录内 +# - save_workspace_snapshot() 同上 +# - 构造含 "../" 的 mock blob → 验证不会写出目标目录 +# +# Mock 策略: +# - Mock ContainerClient.list_blobs() 返回包含恶意 blob name 的列表 +# - Mock download_blob().readall() 返回测试数据 +# - 用 tmp_path 作为 local_dir / snapshot 目标 +# - 验证 tmp_path 之外没有被写入文件 +``` + +### 6.3 HTTP 响应头注入测试 + +**文件**:`tests/backend/security/test_http_headers.py` + +```python +# 要验证的行为: +# +# - safe_download_name("normal_name") → "normal_name" +# - safe_download_name('name"with"quotes') → 引号被移除 +# - safe_download_name("name\r\ninjection") → 换行被移除 +# - safe_download_name("") → "export"(fallback) +# - safe_download_name("数据报表") → "export"(secure_filename 清除非 ASCII) +# 注:下载文件名不需要保留 Unicode,不同于文件存储 +# - safe_download_name(None) → "export" +``` + +### 6.4 现有测试不受影响 + +`ConfinedDir` 是在现有防护之下的**新增底层防线**,不改变上层 API 的行为契约。以下现有测试应继续通过: + +- `test_safe_data_filename.py` — `safe_data_filename()` 功能不变 +- `test_workspace_manager.py` — Workspace ID 清洗不变 +- `test_workspace_source_file_ops.py` — `get_file_path()` 行为不变 +- `test_same_basename_upload.py` — 上传管道不变 + +--- + +## 7. 实施步骤 + +### Step 1:新增 `ConfinedDir` + 测试 (安全基础) + +| 任务 | 文件 | +|------|------| +| 实现 `ConfinedDir` | `py-src/data_formulator/security/path_safety.py` | +| 注册到 `security/__init__.py` | `py-src/data_formulator/security/__init__.py` | +| 单元测试 | `tests/backend/security/test_path_safety.py` | + +**验收标准**:`pytest tests/backend/security/test_path_safety.py` 全部通过。 + +### Step 2:修复 Azure Blob 路径穿越漏洞 + +| 任务 | 文件 | +|------|------| +| `local_dir()` 使用 `ConfinedDir` | `azure_blob_workspace.py` | +| `save_workspace_snapshot()` 使用 `ConfinedDir` | `azure_blob_workspace.py` | +| 回归测试 | `tests/backend/security/test_blob_path_traversal.py` | + +**验收标准**:恶意 blob 名称被安全跳过;正常 blob 正确物化;现有 workspace 测试全部通过。 + +### Step 3:加固 Cache 层 + Workspace + +| 任务 | 文件 | +|------|------| +| `_cache_path()` 改用 `ConfinedDir` | `cached_azure_blob_workspace.py` | +| (可选)`get_file_path()` 改用 `ConfinedDir` | `workspace.py` | + +**验收标准**:现有测试全部通过;CodeQL `py/path-injection` 告警消失或减少。 + +### Step 4:修复 HTTP 响应头注入 + +| 任务 | 文件 | +|------|------| +| 实现 `safe_download_name()` | `py-src/data_formulator/security/http_headers.py` | +| 改造 `export-table-csv` | `tables_routes.py` | +| 测试 | `tests/backend/security/test_http_headers.py` | + +**验收标准**:含特殊字符的 `table_name` 不再注入响应头。 + +### Step 5:验证与清理 + +| 任务 | 说明 | +|------|------| +| 全量测试 | `pytest tests/backend/` 全部通过 | +| CodeQL 扫描 | `py/path-injection` 告警清零或仅剩已标注的可接受误报 | +| 代码审查 | 搜索 `Path(...) / variable` 模式,确认无遗漏 | + +--- + +## 8. 后续防线 + +### 8.1 Code Review Checklist + +PR 模板中新增检查项: + +```markdown +### 安全检查 +- [ ] 文件路径操作使用了 `ConfinedDir` 或 `safe_data_filename()` +- [ ] 未直接使用 `Path(root) / user_input` 模式 +- [ ] HTTP 响应头中的用户输入已清洗 +``` + +### 8.2 Lint 规则(可选进阶) + +通过自定义 Ruff 或 Semgrep 规则,检测裸路径拼接模式: + +```yaml +# .semgrep/path-safety.yaml +rules: + - id: no-bare-path-join-with-variable + pattern: $ROOT / $USER_INPUT + message: "Use ConfinedDir instead of bare path joining with variables" + severity: WARNING + languages: [python] +``` + +### 8.3 Plugin 开发者指南 + +在 `5-plugin-development-guide.md` 中补充路径安全章节: + +- 插件代码中**禁止**直接操作 `Path`,必须通过 `ConfinedDir` 或 Workspace API +- 写入文件必须使用 `PluginDataWriter`(内部已经过 Workspace 的路径校验) +- 示例代码展示正确和错误的路径操作对比 + +### 8.4 CodeQL Annotation + +对 `ConfinedDir.resolve()` 方法添加 CodeQL 建模,告知静态分析器该方法是路径校验点: + +```python +class ConfinedDir: + def resolve(self, relative: str, ...) -> Path: + # CodeQL: this method is a path sanitizer + # See: https://codeql.github.com/docs/codeql-for-python/ + ... +``` + +具体方式是在 `.github/codeql/` 下添加自定义 query 或 `qlpack.yml` 中的 sanitizer 建模。 + +--- + +## 附录:风险矩阵 + +| 编号 | 问题 | 严重度 | 可利用性 | 修复步骤 | +|------|------|--------|---------|---------| +| V-01 | `AzureBlobWorkspace.local_dir()` 路径穿越 | 中 | 需要控制 blob 存储内容 | Step 2 | +| V-02 | `AzureBlobWorkspace.save_workspace_snapshot()` 路径穿越 | 中 | 同上 | Step 2 | +| V-03 | `export-table-csv` Content-Disposition 头注入 | 低-中 | 需要能创建含特殊字符的表名 | Step 4 | +| H-01 | `cached_azure_blob_workspace._cache_path()` CodeQL 误报 | 信息 | 已有防护,仅静态分析噪音 | Step 3 | diff --git a/design-docs/7-language-standardization-plan.md b/design-docs/7-language-standardization-plan.md new file mode 100644 index 00000000..be50d4be --- /dev/null +++ b/design-docs/7-language-standardization-plan.md @@ -0,0 +1,506 @@ +# 多语言(i18n)规范化开发计划 + +> 编号:design-doc-7 | 创建:2026-04-12 | 状态:草案 + +--- + +## 0. 背景与动机 + +项目已建立了 `agent_language.py` 作为 LLM 提示词多语言注入的核心模块,并在 `agent_routes.py` 中通过 `get_language_instruction()` 从 `Accept-Language` header 读取用户语言。然而: + +1. **调用覆盖不完整** — 部分 Agent 路由遗漏了语言注入(如 `workspace-summary`、`sort-data`) +2. **注入方式不统一** — 各 Agent 以不同方式拼接 language_instruction(有的用 marker 定位插入、有的直接追加到末尾),没有统一的接口约束 +3. **前端只支持 en/zh** — `agent_language.py` 注册了 20 种语言,但前端 i18n 翻译文件只有 `en` 和 `zh` 两组 +4. **缺少自动化保障** — 没有 lint 规则或单元测试来防止新的 LLM 调用点遗漏语言注入 +5. **已有规范文档分散** — Cursor rule、SKILL.md、design-doc-3 分别有一些约定,但开发者容易遗漏 + +本文档定义一个系统性的规范化方案,确保多语言处理有统一的模式、完整的覆盖和可持续的质量保障。 + +--- + +## 1. 现状审计 + +### 1.1 后端 Agent 语言注入覆盖表 + +| Agent 类 | 文件 | 接收 `language_instruction` | 路由注入 | mode | 状态 | +|----------|------|:---:|:---:|------|------| +| `DataRecAgent` | `agent_data_rec.py` | ✅ | ✅ `derive-data` | compact | **正常** | +| `DataTransformationAgent` | `agent_data_transform.py` | ✅ | ✅ `derive-data` / `refine-data` | compact | **正常** | +| `DataAgent` | `data_agent.py` | ✅ | ✅ `data-agent-streaming` | full + compact(rec) | **正常** | +| `DataLoadAgent` | `agent_data_load.py` | ✅ | ✅ `process-data-on-load` | compact | **正常** | +| `DataCleanAgentStream` | `agent_data_clean_stream.py` | ✅ | ✅ `clean-data-stream` | full | **正常** | +| `CodeExplanationAgent` | `agent_code_explanation.py` | ✅ | ✅ `code-expl` | full | **正常** | +| `ChartInsightAgent` | `agent_chart_insight.py` | ✅ | ✅ `chart-insight` | full | **正常** | +| `InteractiveExploreAgent` | `agent_interactive_explore.py` | ✅ | ✅ `get-recommendation-questions` | full | **正常** | +| `ReportGenAgent` | `agent_report_gen.py` | ✅ | ✅ `generate-report-stream` | full | **正常** | +| `SortDataAgent` | `agent_sort_data.py` | ❌ | ❌ `sort-data` | — | **⚠️ 遗漏** | +| *(inline)* workspace-summary | `agent_routes.py` L992-1046 | — | ❌ | — | **⚠️ 遗漏** | +| *(inline)* test-model | `agent_routes.py` L188-227 | — | ❌ | — | **无需注入**(非用户可见) | + +### 1.2 遗漏详情 + +#### SortDataAgent(`sort-data` 路由) + +`SortDataAgent.__init__()` 不接收 `language_instruction` 参数,路由处理也未调用 `get_language_instruction()`。虽然排序结果本身是数据值的重排列(不涉及翻译),但返回的 `reason` 字段是面向用户的自然语言文本,应该跟随 UI 语言。 + +**影响级别**:低 — `reason` 字段在 UI 中显示但不是核心功能文本。 + +#### workspace-summary 路由 + +工作区名称直接展示在侧边栏,但 system prompt 中未注入语言指令。中文用户会看到英文的工作区名称。 + +**影响级别**:中 — 用户每次打开应用都会看到。 + +### 1.3 注入方式一致性审计 + +| Agent | 注入方式 | 说明 | +|-------|---------|------| +| `DataRecAgent` | marker 定位插入 (`"You are a data scientist"` 之后) | 策略性插入到 role 声明之后 | +| `DataTransformationAgent` | marker 定位插入 (`"**About the execution environment:**"` 之前) | 策略性插入到技术细节之前 | +| `DataAgent` | `_build_system_prompt()` 末尾追加 | 动态构建 prompt,末尾追加 | +| `DataLoadAgent` | system prompt 末尾追加 | 简单追加 | +| `DataCleanAgentStream` | system prompt 末尾追加 | 简单追加 | +| `CodeExplanationAgent` | system prompt 末尾追加 | 简单追加 | +| `ChartInsightAgent` | system prompt 末尾追加 | 简单追加 | +| `InteractiveExploreAgent` | system prompt 末尾追加 | 简单追加 | +| `ReportGenAgent` | system prompt 末尾追加 | 简单追加 | + +**结论**:有两种注入策略(marker 定位 vs 末尾追加),两种都是可接受的。marker 策略适用于需要精确控制指令位置的复杂 prompt,末尾追加适用于简单场景。**当前不需要强制统一**,但需要在规范中明确这两种模式的适用条件。 + +### 1.4 前端 i18n 覆盖 + +| 层面 | 状态 | +|------|------| +| UI 翻译文件 (locales) | 仅 `en` 和 `zh` | +| `agent_language.py` 语言注册表 | 20 种语言 | +| 前端语言切换器 | 从 Redux `availableLanguages` 动态读取 | +| `fetchWithIdentity()` header | ✅ 正确注入 `Accept-Language` | +| Plugin 翻译 (Superset) | 仅 `en` 和 `zh` | + +--- + +## 2. 规范化目标 + +### P0(必须完成) +1. 补齐遗漏的语言注入点(SortDataAgent、workspace-summary) +2. 建立 Agent 基类或 Mixin,统一 `language_instruction` 的接收和注入接口 +3. 添加单元测试,确保所有 Agent 构造函数支持 `language_instruction` +4. 更新开发者文档,合并分散的约定到一个权威参考文档 + +### P1(应该完成) +5. 添加 lint 或静态检查规则,检测新增的 LLM 调用点是否注入了语言指令 +6. 创建语言注入集成测试,模拟不同语言请求验证完整链路 +7. 规范 `mode` 选择决策树,让新 Agent 开发者能快速判断 + +### P2(锦上添花) +8. 扩展前端翻译覆盖(优先添加 ja、ko、fr、de 等高需求语言) +9. 将 `agent_language.py` 中的模板抽象为配置文件,支持运行时热加载 +10. 建立翻译贡献流程(community translation) + +--- + +## 3. 详细方案 + +### 3.1 Phase 1:补齐遗漏(P0,预计 0.5 天) + +#### 3.1.1 SortDataAgent 添加语言支持 + +```python +# agent_sort_data.py +class SortDataAgent(object): + + def __init__(self, client, language_instruction=""): + self.client = client + self.language_instruction = language_instruction + + def run(self, name, values, n=1): + system_prompt = SYSTEM_PROMPT + if self.language_instruction: + system_prompt = system_prompt + "\n\n" + self.language_instruction + + # ... 其余不变 ... +``` + +```python +# agent_routes.py — sort_data_request() +language_instruction = get_language_instruction(mode="compact") +agent = SortDataAgent(client=client, language_instruction=language_instruction) +``` + +**mode 选择**:`"compact"` — SortDataAgent 的输出是结构化 JSON,仅 `reason` 字段面向用户,用 compact 模式足够且不干扰排序逻辑。 + +#### 3.1.2 workspace-summary 添加语言注入 + +```python +# agent_routes.py — workspace_summary() +lang_instruction = get_language_instruction(mode="compact") +lang_suffix = f"\n\n{lang_instruction}" if lang_instruction else "" + +messages = [ + { + "role": "system", + "content": ( + "You are a helpful assistant. Generate a very short name (3-5 words) " + "for a data analysis workspace based on the context below. " + "Return ONLY the name, no quotes, no explanation." + + lang_suffix + ), + }, + {"role": "user", "content": context_str}, +] +``` + +### 3.2 Phase 2:统一 Agent 接口约束(P0,预计 1 天) + +#### 3.2.1 定义 Agent 协议(Protocol/ABC) + +不强制所有 Agent 继承同一基类(避免大范围重构),而是采用 Python Protocol 约束: + +```python +# agents/agent_protocol.py +from typing import Protocol, runtime_checkable + +@runtime_checkable +class LanguageAwareAgent(Protocol): + """Any Agent that receives LLM language instructions must expose this attribute.""" + language_instruction: str +``` + +#### 3.2.2 统一注入辅助函数 + +抽取重复的 "追加到 system prompt" 逻辑为公共函数: + +```python +# agents/agent_language.py(在 build_language_instruction 之后添加) + +def inject_language_instruction( + system_prompt: str, + language_instruction: str, + *, + marker: str | None = None, +) -> str: + """Inject language instruction into a system prompt. + + Parameters + ---------- + system_prompt : str + The base system prompt. + language_instruction : str + The language instruction block (empty string = no-op). + marker : str | None + If provided, insert before this marker. Otherwise append. + """ + if not language_instruction: + return system_prompt + + if marker: + idx = system_prompt.find(marker) + if idx > 0: + return ( + system_prompt[:idx] + + language_instruction + "\n\n" + + system_prompt[idx:] + ) + + return system_prompt + "\n\n" + language_instruction +``` + +然后各 Agent 统一调用: + +```python +from data_formulator.agents.agent_language import inject_language_instruction + +# DataTransformationAgent.__init__() +self.system_prompt = inject_language_instruction( + self.system_prompt, language_instruction, + marker="**About the execution environment:**" +) + +# ChartInsightAgent.__init__() (简单场景) +system_prompt = inject_language_instruction(system_prompt, self.language_instruction) +``` + +### 3.3 Phase 3:测试保障(P1,预计 1 天) + +#### 3.3.1 单元测试:所有 Agent 支持 language_instruction + +```python +# tests/test_language_injection.py +import pytest +from data_formulator.agents.agent_language import ( + build_language_instruction, + inject_language_instruction, + LANGUAGE_DISPLAY_NAMES, +) + +ALL_AGENTS = [ + ("DataRecAgent", "data_formulator.agents.agent_data_rec", "DataRecAgent"), + ("DataTransformationAgent", "data_formulator.agents.agent_data_transform", "DataTransformationAgent"), + ("DataAgent", "data_formulator.agents.data_agent", "DataAgent"), + ("DataLoadAgent", "data_formulator.agents.agent_data_load", "DataLoadAgent"), + ("DataCleanAgentStream", "data_formulator.agents.agent_data_clean_stream", "DataCleanAgentStream"), + ("CodeExplanationAgent", "data_formulator.agents.agent_code_explanation", "CodeExplanationAgent"), + ("ChartInsightAgent", "data_formulator.agents.agent_chart_insight", "ChartInsightAgent"), + ("InteractiveExploreAgent", "data_formulator.agents.agent_interactive_explore", "InteractiveExploreAgent"), + ("ReportGenAgent", "data_formulator.agents.agent_report_gen", "ReportGenAgent"), + ("SortDataAgent", "data_formulator.agents.agent_sort_data", "SortDataAgent"), +] + + +class TestBuildLanguageInstruction: + def test_english_returns_empty(self): + assert build_language_instruction("en") == "" + + def test_non_english_returns_instruction(self): + result = build_language_instruction("zh") + assert "[LANGUAGE INSTRUCTION]" in result + assert "Simplified Chinese" in result + + def test_compact_mode(self): + full = build_language_instruction("zh", mode="full") + compact = build_language_instruction("zh", mode="compact") + assert len(compact) < len(full) + + @pytest.mark.parametrize("lang", [k for k in LANGUAGE_DISPLAY_NAMES if k != "en"]) + def test_all_registered_languages(self, lang): + result = build_language_instruction(lang) + assert result != "" + assert "[LANGUAGE INSTRUCTION]" in result + + +class TestInjectLanguageInstruction: + def test_empty_instruction_noop(self): + prompt = "You are a data scientist." + assert inject_language_instruction(prompt, "") == prompt + + def test_append_without_marker(self): + prompt = "You are a data scientist." + result = inject_language_instruction(prompt, "[LANG]") + assert result.endswith("[LANG]") + + def test_insert_before_marker(self): + prompt = "Role description.\n\n**About the execution environment:**\nDetails." + result = inject_language_instruction( + prompt, "[LANG]", + marker="**About the execution environment:**" + ) + assert result.index("[LANG]") < result.index("**About the execution environment:**") + + +class TestAgentLanguageParam: + """Verify each Agent constructor accepts language_instruction.""" + + @pytest.mark.parametrize("label,module_path,class_name", ALL_AGENTS) + def test_constructor_has_language_instruction(self, label, module_path, class_name): + import importlib, inspect + mod = importlib.import_module(module_path) + cls = getattr(mod, class_name) + sig = inspect.signature(cls.__init__) + params = list(sig.parameters.keys()) + assert "language_instruction" in params, ( + f"{label}.__init__() missing language_instruction parameter" + ) +``` + +#### 3.3.2 路由层集成测试 + +```python +# tests/test_route_language_injection.py +"""Verify that all user-facing agent routes call get_language_instruction().""" + +ROUTES_NEEDING_LANGUAGE = [ + "process-data-on-load", + "clean-data-stream", + "derive-data", + "refine-data", + "data-agent-streaming", + "code-expl", + "chart-insight", + "get-recommendation-questions", + "generate-report-stream", + "sort-data", + "workspace-summary", +] + +ROUTES_EXEMPT = [ + "test-model", + "list-global-models", + "check-available-models", + "refresh-derived-data", +] +``` + +### 3.4 Phase 4:开发者规范文档整合(P0,预计 0.5 天) + +将 `design-docs/3-language-injection-analysis.md`、`.cursor/rules/language-injection-conventions.mdc`、`.cursor/skills/language-injection/SKILL.md` 的核心约定整合为一个权威参考,避免信息分散。 + +#### 3.4.1 核心决策树:新增 LLM 调用点 + +``` +新增 LLM 调用 → 输出是否面向用户展示? + │ + ├── 否(健康检查、内部工具调用、日志) + │ └── ✅ 不需要注入语言指令 + │ + └── 是 + ├── 是否为独立 Agent 类? + │ ├── 是 → 构造函数添加 language_instruction="" 参数 + │ │ 使用 inject_language_instruction() 注入到 system prompt + │ │ 在路由中调用 get_language_instruction(mode=?) 传入 + │ │ + │ └── 否(内联 LLM 调用) + │ └── 直接在路由中拼接到 system prompt + │ + └── mode 选择: + ├── 输出主要是自然语言文本 → mode="full" + │ (ChartInsight、Report、Explore、CodeExplanation、DataClean) + │ + └── 输出主要是代码/结构化 JSON → mode="compact" + (DataRec、DataTransform、DataLoad、Sort、workspace-summary) +``` + +#### 3.4.2 开发者检查清单 + +新增或修改 Agent/LLM 调用时,PR reviewer 应检查: + +- [ ] Agent 构造函数是否接收 `language_instruction` 参数? +- [ ] 路由是否调用 `get_language_instruction(mode=...)` 并传入 Agent? +- [ ] mode 选择是否正确(full vs compact)? +- [ ] 是否使用了 `inject_language_instruction()` 辅助函数? +- [ ] 是否有硬编码的语言字符串(如 `"回答请使用中文"`)? +- [ ] `agent_diagnostics.py` 是否记录了 language_instruction? +- [ ] 是否有对应的单元测试验证 language_instruction 参数存在? + +### 3.5 Phase 5:静态检查与 CI 保障(P1,预计 0.5 天) + +#### 3.5.1 自定义 lint 脚本 + +创建一个简单的 Python 脚本检测 `agent_routes.py` 中所有调用 `client.get_completion()` 或实例化 Agent 类的地方,验证上下文中是否有 `get_language_instruction` 调用: + +```python +# scripts/check_language_injection.py +"""CI check: verify all user-facing LLM calls in agent_routes.py inject language.""" + +import ast, sys + +EXEMPT_FUNCTIONS = {"test_model", "check_available_models", "list_global_models"} + +# 解析 AST,对每个路由函数检查是否包含 get_language_instruction 调用 +# ... +``` + +#### 3.5.2 Pre-commit hook + +```yaml +# .pre-commit-config.yaml (追加) +- repo: local + hooks: + - id: check-language-injection + name: Check language injection in agent routes + entry: python scripts/check_language_injection.py + language: python + files: agent_routes\.py$ +``` + +### 3.6 Phase 6:前端翻译扩展(P2,按需) + +#### 3.6.1 优先扩展的语言 + +根据 `agent_language.py` 注册表和用户需求,推荐优先级: + +| 优先级 | 语言 | 理由 | +|--------|------|------| +| 1 | ja (日语) | 东亚高活跃用户群 | +| 2 | ko (韩语) | 东亚高活跃用户群 | +| 3 | fr (法语) | 欧洲及非洲广泛使用 | +| 4 | de (德语) | 欧洲技术社区活跃 | +| 5 | es (西班牙语) | 全球第二大母语人口 | + +#### 3.6.2 翻译文件结构 + +每种新语言需要: + +``` +src/i18n/locales// +├── common.json +├── upload.json +├── chart.json +├── model.json +├── encoding.json +├── messages.json +├── navigation.json +└── index.ts +``` + +加上 `i18n/index.ts` 和 `i18n/locales/index.ts` 的注册。 + +--- + +## 4. 实施计划 + +| Phase | 内容 | 优先级 | 预估工期 | 前置依赖 | +|-------|------|--------|---------|---------| +| **Phase 1** | 补齐 SortDataAgent、workspace-summary 的语言注入 | P0 | 0.5 天 | 无 | +| **Phase 2** | 定义 `inject_language_instruction()` 辅助函数;重构各 Agent 统一调用 | P0 | 1 天 | Phase 1 | +| **Phase 3** | 单元测试 + 路由集成测试 | P1 | 1 天 | Phase 2 | +| **Phase 4** | 整合开发者规范文档,更新 Cursor rule 和 SKILL | P0 | 0.5 天 | Phase 2 | +| **Phase 5** | 静态检查脚本 + pre-commit hook | P1 | 0.5 天 | Phase 4 | +| **Phase 6** | 前端翻译扩展(ja、ko、fr 等) | P2 | 按需 | Phase 1 | + +**总计 Phase 1-5**:约 3.5 个开发日 + +--- + +## 5. 反模式清单(明确禁止) + +| 反模式 | 为什么不行 | 正确做法 | +|--------|-----------|---------| +| 使用环境变量 `os.environ.get("DF_DEFAULT_LANGUAGE")` | 退化为 per-process 语言,破坏多用户场景 | 始终从 `Accept-Language` header 读取 | +| 在 LLM client 层做全局拦截注入 | 隐式行为、无法区分 full/compact mode、调试困难 | 在路由层显式注入 | +| 硬编码语言字符串 `"回答请使用中文"` | 不可配置、不支持其他语言 | 使用 `build_language_instruction()` | +| 新建 `MessageBuilder` 工具类 | 与 `agent_language.py` 形成并行抽象,增加维护成本 | 复用现有 `inject_language_instruction()` | +| 在 user message 中注入语言指令 | 与 OpenAI 最佳实践相悖(系统指令应在 system prompt) | 只在 system prompt 中注入 | +| 跳过 `get_language_instruction()` 直接调用 `build_language_instruction()` | 绕过了从 request header 读取语言的标准链路 | 在路由中使用 `get_language_instruction(mode=...)` | + +--- + +## 6. 风险与注意事项 + +| 风险 | 缓解措施 | +|------|---------| +| Phase 2 重构可能引入 system prompt 格式变化 | 通过对比测试确保重构前后生成的 prompt 内容一致 | +| 新增语言翻译质量难以保证 | 建立 community review 流程,先覆盖高需求语言 | +| compact mode 下语言指令过简导致 LLM 不遵从 | 对各语言进行 A/B 测试,必要时调整 compact 模板 | +| SortDataAgent 注入语言后 LLM 排序行为变化 | 排序测试用例覆盖中文、日文等非拉丁文字数据 | + +--- + +## 7. 相关文件索引 + +| 文件 | 角色 | +|------|------| +| `py-src/data_formulator/agents/agent_language.py` | 语言指令构建核心模块 | +| `py-src/data_formulator/agent_routes.py` | 路由层:`get_language_instruction()` + 各端点调用 | +| `py-src/data_formulator/agents/agent_sort_data.py` | **待修复**:缺少 language_instruction | +| `src/app/utils.tsx` | 前端:`getAgentLanguage()` + `fetchWithIdentity()` | +| `src/i18n/index.ts` | 前端 i18n 配置 | +| `src/i18n/locales/` | 前端翻译文件(当前仅 en/zh) | +| `.cursor/rules/language-injection-conventions.mdc` | Cursor 开发规范 | +| `.cursor/skills/language-injection/SKILL.md` | 详细架构说明 | +| `design-docs/3-language-injection-analysis.md` | 早期分析文档(本文档是其后续) | + +--- + +## 8. 验收标准 + +Phase 1-4 完成后,以下测试全部通过: + +- [ ] `build_language_instruction()` 对所有 20 种注册语言返回非空指令 +- [ ] 所有 Agent 构造函数均接受 `language_instruction` 参数 +- [ ] 所有面向用户的路由端点均调用 `get_language_instruction()` +- [ ] SortDataAgent 返回的 `reason` 字段跟随 UI 语言 +- [ ] workspace-summary 返回的名称跟随 UI 语言 +- [ ] 英文用户不受影响(`build_language_instruction("en")` 返回 `""`) +- [ ] `inject_language_instruction()` 辅助函数被所有 Agent 使用 +- [ ] PR review 检查清单已纳入团队流程 +- [ ] 静态检查脚本能检测到新增的未注入语言的 LLM 调用点 diff --git a/docker-compose.test.yml b/docker-compose.test.yml new file mode 100644 index 00000000..4df9d4fa --- /dev/null +++ b/docker-compose.test.yml @@ -0,0 +1,69 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +# Unified test-database stack for data-loader integration tests. +# +# Usage: +# docker compose -f docker-compose.test.yml up -d # start all +# docker compose -f docker-compose.test.yml up -d mysql # start one +# pytest tests/plugin/test_mysql/ -v # run tests +# docker compose -f docker-compose.test.yml down # tear down +# +# See tests/plugin/README.md for details. + +services: + mysql: + build: tests/plugin/test_mysql + container_name: df-test-mysql + ports: + - "${MYSQL_PORT:-3307}:3306" + environment: + MYSQL_ROOT_PASSWORD: mysql + MYSQL_DATABASE: testdb + healthcheck: + test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-pmysql"] + interval: 5s + timeout: 3s + retries: 15 + + postgres: + build: tests/plugin/test_postgres + container_name: df-test-postgres + ports: + - "${PG_PORT:-5433}:5432" + environment: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_DB: testdb + healthcheck: + test: ["CMD-SHELL", "pg_isready -U postgres"] + interval: 5s + timeout: 3s + retries: 10 + + mongodb: + build: tests/plugin/test_mongodb + container_name: df-test-mongodb + ports: + - "${MONGO_PORT:-27018}:27017" + environment: + MONGO_INITDB_ROOT_USERNAME: admin + MONGO_INITDB_ROOT_PASSWORD: admin + MONGO_INITDB_DATABASE: testdb + healthcheck: + test: ["CMD", "mongosh", "--quiet", "--eval", "db.adminCommand('ping')"] + interval: 5s + timeout: 3s + retries: 10 + + bigquery: + build: tests/plugin/test_bigquery + container_name: df-test-bigquery + ports: + - "${BQ_PORT:-9050}:9050" + - "${BQ_GRPC_PORT:-9060}:9060" + healthcheck: + test: ["CMD-SHELL", "wget -q --spider http://localhost:9050 || exit 0"] + interval: 5s + timeout: 3s + retries: 10 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..b0eb02f4 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,27 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +# Docker Compose configuration for Data Formulator. +# +# Quick start: +# 1. Copy .env.template to .env and fill in your API keys. +# 2. docker compose up --build +# 3. Open http://localhost:5567 in your browser. + +services: + data-formulator: + build: + context: . + dockerfile: Dockerfile + image: data-formulator:latest + ports: + - "5567:5567" + env_file: + - .env + volumes: + # Persist workspace data (uploaded files, sessions, etc.) across container restarts. + - data_formulator_home:/home/appuser/.data_formulator + restart: unless-stopped + +volumes: + data_formulator_home: diff --git a/docs-cn/5-datasource_plugin-development-guide.md b/docs-cn/5-datasource_plugin-development-guide.md new file mode 100644 index 00000000..f243dc60 --- /dev/null +++ b/docs-cn/5-datasource_plugin-development-guide.md @@ -0,0 +1,595 @@ +# 数据源插件开发指南 + +> **目标读者**:要为 Data Formulator 开发新数据源插件的开发者。 +> +> **前置阅读**:[1-data-source-plugin-architecture.md](1-data-source-plugin-architecture.md)(设计原理)、[1-sso-plugin-architecture.md](1-sso-plugin-architecture.md)(SSO + 凭证架构)。 +> +> **参考实现**:`plugins/superset/`(后端)+ `src/plugins/superset/`(前端)。 + +--- + +## 目录 + +1. [快速上手:新增一个插件](#1-快速上手新增一个插件) +2. [后端:目录结构与约定](#2-后端目录结构与约定) +3. [后端:基类契约](#3-后端基类契约) +4. [后端:路由设计](#4-后端路由设计) +5. [后端:PluginDataWriter](#5-后端plugindatawriter) +6. [后端:认证路由规范(三模式协商)](#6-后端认证路由规范三模式协商) +7. [后端:CredentialVault 集成](#7-后端credentialvault-集成) +8. [前端:目录结构与约定](#8-前端目录结构与约定) +9. [前端:模块契约](#9-前端模块契约) +10. [前端:国际化](#10-前端国际化) +11. [环境变量命名规范](#11-环境变量命名规范) +12. [测试规范](#12-测试规范) +13. [核心代码零修改原则](#13-核心代码零修改原则) +14. [Checklist:插件上线前检查](#14-checklist插件上线前检查) + +--- + +## 1. 快速上手:新增一个插件 + +假设要接入 Metabase,只需两步: + +**后端**:在 `py-src/data_formulator/plugins/` 下创建 `metabase/` 目录。 + +``` +plugins/ +├── base.py # 框架,不要修改 +├── data_writer.py # 框架,不要修改 +├── __init__.py # 框架,不要修改 +└── metabase/ # ← 新增 + ├── __init__.py # plugin_class = MetabasePlugin + ├── metabase_client.py + └── routes/ + ├── __init__.py + ├── auth.py + ├── catalog.py + └── data.py +``` + +**前端**:在 `src/plugins/` 下创建 `metabase/` 目录。 + +``` +src/plugins/ +├── types.ts # 框架,不要修改 +├── registry.ts # 框架,不要修改 +├── PluginHost.tsx # 框架,不要修改 +├── index.ts # 框架,不要修改 +└── metabase/ # ← 新增 + ├── index.ts # default export: DataSourcePluginModule + ├── MetabasePanel.tsx + └── locales/ + ├── en.json + └── zh.json +``` + +**配置**:在 `.env` 中设置必须环境变量: + +```bash +PLG_METABASE_URL=https://metabase.example.com +``` + +**启动**:重启 Data Formulator → 框架自动发现并启用 → 前端数据上传对话框中出现 Metabase Tab。 + +**核心原则:不修改任何框架文件。** 如果需要改 `plugins/__init__.py`、`registry.ts`、`app.py` 才能让新插件工作,说明框架有 bug,应该修框架。 + +--- + +## 2. 后端:目录结构与约定 + +``` +plugins// +├── __init__.py # 必须:暴露 plugin_class 属性 +├── _client.py # 建议:封装外部系统 HTTP API +├── auth_bridge.py # 可选:SSO 透传桥接 +├── catalog.py # 可选:目录浏览逻辑 +├── session_helpers.py # 建议:Plugin-namespaced session 操作 +└── routes/ + ├── __init__.py + ├── auth.py # 必须:认证路由 + ├── catalog.py # 建议:目录路由 + └── data.py # 必须:数据加载路由 +``` + +### 关键约定 + +- `__init__.py` 必须有一个模块级属性 `plugin_class`,指向 `DataSourcePlugin` 的具体子类。 +- 如果插件有重量级依赖(如某个 SDK),应在 `__init__.py` 的顶层 import 中引入。框架会 `try/except ImportError`,缺依赖时优雅跳过并记录原因。 +- Session key 必须用 `plugin__` 前缀隔离(如 `plugin_superset_token`、`plugin_metabase_token`),防止多插件间状态冲突。 + +--- + +## 3. 后端:基类契约 + +```python +from data_formulator.plugins.base import DataSourcePlugin + +class MetabasePlugin(DataSourcePlugin): + + @staticmethod + def manifest() -> dict: + return { + # ── 必须 ── + "id": "metabase", # 全局唯一 slug + "name": "Metabase", # 显示名 + "env_prefix": "PLG_METABASE", # 环境变量前缀 + "required_env": ["PLG_METABASE_URL"], # 全部存在才启用 + + # ── 可选 ── + "icon": "metabase", + "description": "Connect to Metabase to browse and load questions.", + "auth_modes": ["password", "sso"], # 支持的认证方式 + "capabilities": ["questions", "dashboards"], + } + + def create_blueprint(self) -> Blueprint: + """组装路由。url_prefix 必须是 /api/plugins//""" + ... + + def get_frontend_config(self) -> dict: + """返回给前端的非敏感配置。绝对不能包含密钥。""" + ... + + def on_enable(self, app) -> None: + """初始化共享服务(client、catalog 等),存到 app.extensions。""" + ... + + def supports_sso_passthrough(self) -> bool: + """外部系统与 DF 共享 IdP 时返回 True。""" + return False +``` + +### manifest 字段说明 + +| 字段 | 类型 | 必须 | 说明 | +|------|------|------|------| +| `id` | `str` | 是 | 全局唯一 slug,用作路由前缀、session key 前缀、前端匹配 key | +| `name` | `str` | 是 | 人类可读名称,显示在 UI | +| `env_prefix` | `str` | 是 | 环境变量命名前缀(如 `PLG_METABASE`) | +| `required_env` | `list[str]` | 是 | 必须环境变量列表,缺任一则插件不启用 | +| `icon` | `str` | 否 | 图标标识,前端 Icon 组件使用 | +| `description` | `str` | 否 | 简短描述 | +| `auth_modes` | `list[str]` | 否 | 支持的认证方式:`"password"` / `"sso"` / `"api_key"` | +| `capabilities` | `list[str]` | 否 | 能力声明,前端可据此决定 UI | +| `version` | `str` | 否 | 插件版本号 | +| `optional_env` | `list[str]` | 否 | 可选环境变量(缺失不影响启用) | + +--- + +## 4. 后端:路由设计 + +### URL 前缀 + +所有路由都在 `/api/plugins//` 下: + +``` +/api/plugins//auth/login POST 登录 +/api/plugins//auth/status GET 认证状态 +/api/plugins//auth/logout POST 登出 +/api/plugins//catalog/... GET 数据目录 +/api/plugins//data/load-* POST 数据加载 +``` + +### 响应格式 + +统一 JSON 格式: + +```json +// 成功 +{"status": "ok", ...payload} + +// 错误 +{"status": "error", "message": "Human-readable error description"} +``` + +HTTP 状态码语义: +- `200` — 成功 +- `400` — 请求参数错误(插件负责校验) +- `401` — 未认证或认证过期 +- `502` — 外部系统不可达或返回错误 +- `503` — 插件依赖的服务不可用(如 Vault 未配置) + +--- + +## 5. 后端:PluginDataWriter + +插件加载的数据通过 `PluginDataWriter` 写入用户 Workspace: + +```python +from data_formulator.plugins.data_writer import PluginDataWriter + +writer = PluginDataWriter("metabase") # plugin_id + +result = writer.write_dataframe( + df, # pandas DataFrame + "sales_data", # 表名 + overwrite=True, # True=覆盖同名, False=自动加后缀 + source_metadata={ # 记录来源,供刷新使用 + "plugin": "metabase", + "question_id": 42, + }, +) +# result = {"table_name": "sales_data", "row_count": 1234, "columns": [...], "is_renamed": False} +``` + +**不要直接调用 `workspace.write_parquet()`**。`PluginDataWriter` 封装了身份解析、表名清洗、元数据打标等逻辑。 + +--- + +## 6. 后端:认证路由规范(三模式协商) + +**这是插件开发中最重要的规范。** + +> **代码层面强制约束**:所有插件必须继承 `PluginAuthHandler` 基类(`plugins/auth_base.py`)。 +> 基类自动生成 `/login`、`/logout`、`/status`、`/me` 标准路由,内置 Vault 生命周期管理。 +> **插件作者无需手动处理 Vault 存储、清除、自动登录逻辑**——基类全部代劳。 + +### 三模式协商流程 + +``` +用户打开插件面板 → GET /api/plugins//auth/status + │ + ▼ +后端按优先级依次尝试: + │ + ├─ ① Session 中已有有效 token? + │ → {"authenticated": true, "mode": "session"} + │ + ├─ ② SSO token 可用 + 插件 supports_sso_passthrough()? + │ → 尝试 SSO 透传登录 + │ → 成功 → {"authenticated": true, "mode": "sso"} + │ → 失败 → 继续 + │ + ├─ ③ CredentialVault 中有已存凭证? + │ → 尝试用已存凭证登录外部系统 + │ → 成功 → {"authenticated": true, "mode": "vault"} + │ → 失败 → {"authenticated": false, "vault_stale": true} + │ + └─ 全部未命中 + → {"authenticated": false, "available_modes": ["password", "api_key"]} + +前端根据响应: + ├─ authenticated=true → 直接显示数据目录 + ├─ vault_stale=true → 显示登录表单 + 提示"已保存的凭证已失效" + └─ authenticated=false → 显示登录表单 +``` + +### 使用 PluginAuthHandler(必须) + +```python +# routes/auth.py + +from data_formulator.plugins.auth_base import PluginAuthHandler + +class MetabaseAuthHandler(PluginAuthHandler): + """插件作者只需实现以下 4 个方法。""" + + def do_login(self, username: str, password: str) -> dict: + """与外部系统认证,成功后写入 Flask session。 + 返回 {"user": {"id": ..., "username": ..., ...}} + 失败时抛异常。""" + result = _bridge().login(username, password) + save_session(result["access_token"], ...) + return {"user": {...}} + + def do_clear_session(self) -> None: + """清除插件在 Flask session 中的所有 key。""" + clear_session() + + def get_session_auth(self) -> dict | None: + """检查当前 session 是否已认证。 + 已认证返回 {"authenticated": True, "mode": "session", "user": {...}} + 未认证返回 None。""" + token, user = require_auth() + if token and user: + return {"authenticated": True, "mode": "session", "user": format_user(user)} + return None + + def get_current_user(self) -> dict | None: + """从 session 中取当前用户,或 None。""" + return get_user() + + +# 创建 handler 实例 → 生成标准路由 Blueprint +_handler = MetabaseAuthHandler("metabase") +auth_bp = _handler.create_auth_blueprint("/api/plugins/metabase/auth") + +# 如有插件专属路由,可继续追加到同一个 Blueprint +@auth_bp.route("/sso/callback", methods=["POST"]) +def sso_callback(): + ... +``` + +### 基类自动处理的路由 + +| 路由 | 方法 | 基类自动行为 | +|------|------|-------------| +| `/login` | POST | 调用 `do_login()` + remember=true 存 Vault / remember=false 清 Vault | +| `/logout` | POST | 调用 `do_clear_session()` + **强制清除 Vault**(不可遗漏) | +| `/status` | GET | Session → Vault 自动登录 → 未认证(三模式协商) | +| `/me` | GET | 返回 `get_current_user()` 或 401 | + +### 核心规则总结 + +| 规则 | 说明 | 由基类强制 | +|------|------|-----------| +| **先 Session → 再 SSO → 再 Vault → 最后手动** | 严格按优先级链,不跳步 | ✅ status 路由 | +| **Vault 凭证必须实测验证** | 从 Vault 取出后必须**实际登录**外部系统 | ✅ try_vault_login | +| **失效凭证返回 vault_stale** | 外部系统密码已改时返回 `vault_stale: true` | ✅ try_vault_login | +| **remember=true 才存 Vault** | 用户主动勾选"记住凭证"后才写入 | ✅ login 路由 | +| **remember=false 要清理 Vault** | 用户不勾选记住 → 删除旧凭证 | ✅ login 路由 | +| **退出必须同时清 Session + Vault** | 防止"退出后 Vault 自动登录回来"的死循环 | ✅ logout 路由 | +| **凭证只在服务端流转** | 前端只知道 authenticated + mode,不接触明文 | ✅ 架构设计 | +| **Vault 操作 best-effort** | 存/删/取失败时静默跳过,不阻断主流程 | ✅ vault_* 方法 | + +--- + +## 7. 后端:CredentialVault 集成 + +### 概述 + +CredentialVault 是一个可选组件(本地部署时自动零配置启用)。插件**不应假设** Vault 一定存在——Vault 不可用时,基类自动跳过,回退到纯 Session 模式。 + +> **重要**:插件作者**不需要手写** Vault 辅助函数。`PluginAuthHandler` 基类已内置 +> `vault_store()`、`vault_delete()`、`vault_retrieve()`、`try_vault_login()` 方法, +> 并在 login / logout / status 路由中自动调用。 + +### 如果需要在自定义路由中访问 Vault + +在极少数情况下(如自定义的凭证管理路由),可通过 handler 实例直接调用: + +```python +# 前提:_handler 是你的 PluginAuthHandler 子类实例 +_handler.vault_store({"username": "alice", "password": "pw"}) +_handler.vault_delete() +creds = _handler.vault_retrieve() # → dict | None +``` + +这些方法内部已处理 Vault 不可用、identity 解析失败等异常,不会抛出。 + +### Vault source_key 命名 + +`source_key` 统一使用 `manifest()["id"]`(即插件 ID),如 `"superset"`、`"metabase"`。一个插件只有一个 source_key,不需要更细粒度的区分。 + +### 匿名用户与 Vault + +Vault 按 `get_identity_id()` 的返回值隔离凭证。匿名用户的 identity 是 `browser:xxx`(来自浏览器 localStorage UUID),因此: + +- 匿名用户**可以**使用 Vault 保存凭证 +- 但凭证绑定的是浏览器 UUID,**不跨设备、不跨浏览器** +- 清除 localStorage 即失去关联 +- 这是可接受的行为——需要可靠凭证存储的用户应配置 SSO + +### Vault 不可用时的行为 + +| Vault 状态 | 插件行为 | +|------------|---------| +| 未配置(`CREDENTIAL_VAULT_KEY` 未设置) | `get_credential_vault()` 返回 None,插件跳过 Vault 步骤,直接展示登录表单 | +| 已配置但无凭证 | `vault.retrieve()` 返回 None,跳过 Vault 步骤 | +| 已配置且有凭证 | 取出并验证,成功则自动登录,失败则返回 vault_stale | +| 密钥已更换(旧凭证无法解密) | `vault.retrieve()` 返回 None(解密失败静默返回 None,不崩溃) | + +--- + +## 8. 前端:目录结构与约定 + +``` +src/plugins// +├── index.ts # 必须:default export DataSourcePluginModule +├── Panel.tsx # 必须:主面板组件 +├── Login.tsx # 建议:登录组件 +├── Catalog.tsx # 建议:数据目录组件 +├── api.ts # 建议:封装后端 API 调用 +└── locales/ + ├── en.json # 建议:英文翻译 + └── zh.json # 建议:中文翻译 +``` + +### 发现机制 + +前端使用 Vite 的 `import.meta.glob` 在**构建时**扫描 `src/plugins/*/index.{ts,tsx}`。你只需要在正确的位置创建文件,无需手动注册。 + +--- + +## 9. 前端:模块契约 + +```typescript +// src/plugins/metabase/index.ts + +import type { DataSourcePluginModule } from '../types'; +import { MetabasePanel } from './MetabasePanel'; +import en from './locales/en.json'; +import zh from './locales/zh.json'; + +const MetabaseIcon: React.FC<{ sx?: object }> = (props) => (/* SVG icon */); + +const metabasePlugin: DataSourcePluginModule = { + id: 'metabase', // 必须与后端 manifest.id 一致 + Icon: MetabaseIcon, // 数据源菜单中的图标 + Panel: MetabasePanel, // 主面板组件 + locales: { en, zh }, // 可选:国际化 +}; + +export default metabasePlugin; +``` + +### Panel 组件接口 + +```typescript +interface PluginPanelProps { + config: PluginConfig; // 后端 get_frontend_config() 的内容 + callbacks: PluginHostCallbacks; // 框架提供的回调 +} + +interface PluginHostCallbacks { + onDataLoaded: (info: DataLoadedInfo) => void; // 数据加载完成后调用 + onClose: () => void; // 关闭对话框 +} +``` + +**数据加载完成后必须调用 `callbacks.onDataLoaded()`**,框架会据此刷新 Workspace 表列表。 + +### 登录面板中的"记住凭证" + +如果插件支持密码登录,登录表单中应提供"记住凭证"(Remember credentials)复选框: + +```typescript +const [remember, setRemember] = useState(false); + +// 登录请求中传递 remember 标志 +const loginPayload = { username, password, remember }; +``` + +**复选框必须附带注释说明**,避免用户与浏览器内置的"记住密码"功能混淆: + +```typescript +} + label={t('plugin.xxx.rememberCredentials')} +/> + + {t('plugin.xxx.rememberCredentialsHint')} + +``` + +注释文案应说明:**凭证存储在服务器端(非浏览器),便于自动化 Agent 代用户拉取数据**。 + +当 `auth/status` 返回 `vault_stale: true` 时,应显示明确的提示: + +```typescript +if (authStatus.vault_stale) { + showWarning("已保存的凭证已失效,请重新输入"); +} +``` + +--- + +## 10. 前端:国际化 + +每个插件自带翻译文件,通过 `locales` 字段导出。框架在启动时自动合并到全局 i18n。 + +```json +// locales/en.json +{ + "plugin.metabase.name": "Metabase", + "plugin.metabase.login.title": "Connect to Metabase", + "plugin.metabase.login.remember": "Remember credentials" +} +``` + +**命名规范**:`plugin...`,避免与其他插件或核心翻译冲突。 + +--- + +## 11. 环境变量命名规范 + +| 前缀 | 用途 | 示例 | +|------|------|------| +| `PLG__` | 插件专属 | `PLG_SUPERSET_URL`、`PLG_METABASE_URL` | +| `PLG__SSO_*` | SSO 透传相关 | `PLG_SUPERSET_SSO_LOGIN_URL` | + +- `required_env` 中列出的变量全部存在时,插件才启用 +- 管理员通过 `.env` 文件或 Docker environment 配置 +- `get_frontend_config()` 可以暴露 URL 等非敏感值,但**绝不暴露密钥** + +--- + +## 12. 测试规范 + +### 测试文件位置 + +``` +tests/backend/unit/test__*.py # 单元测试 +tests/backend/integration/test__*.py # 集成测试 +tests/backend/fixtures// # API 响应 fixture +tests/frontend/unit/plugins// # 前端测试 +``` + +### 外部 API Mock 策略 + +不要直接调用真实外部系统。使用 fixture JSON(从真实系统录制)+ `unittest.mock.patch`: + +```python +@pytest.fixture +def mock_responses(fixture_dir): + def _load(name): + return json.loads((fixture_dir / "metabase" / name).read_text()) + return _load +``` + +### Vault 测试 + +测试 Vault 集成时使用 `tmp_path` 下的**真实 SQLite 文件 + 真实 Fernet 密钥**,不 mock 加密逻辑: + +```python +@pytest.fixture +def vault(tmp_path): + from cryptography.fernet import Fernet + key = Fernet.generate_key().decode() + return LocalCredentialVault(tmp_path / "test.db", key) +``` + +--- + +## 13. 核心代码零修改原则 + +添加新插件时,以下文件**不得修改**: + +| 文件 | 职责 | +|------|------| +| `plugins/__init__.py` | 自动发现逻辑 | +| `plugins/base.py` | 基类定义 | +| `plugins/auth_base.py` | 认证基类(Vault 生命周期) | +| `plugins/data_writer.py` | 数据写入工具 | +| `src/plugins/types.ts` | 前端类型 | +| `src/plugins/registry.ts` | 前端注册表 | +| `src/plugins/PluginHost.tsx` | 前端容器 | +| `src/plugins/index.ts` | 前端导出 | +| `app.py` | 应用入口 | +| `credential_vault/*` | 凭证保险箱框架 | +| `credential_routes.py` | 凭证管理 API | + +如果你发现必须修改以上文件才能完成新插件,请先提 issue 讨论框架层面的修复方案。 + +--- + +## 14. Checklist:插件上线前检查 + +### 后端 + +- [ ] `plugin_class` 是 `DataSourcePlugin` 子类 +- [ ] `manifest()` 包含 `id`、`name`、`env_prefix`、`required_env` +- [ ] `create_blueprint()` 的 `url_prefix` 是 `/api/plugins//` +- [ ] `get_frontend_config()` 不包含任何密钥 +- [ ] Session key 使用 `plugin__` 前缀 +- [ ] 数据写入使用 `PluginDataWriter`,不直接调用 workspace +- [ ] **认证路由继承 `PluginAuthHandler` 基类**(代码层面约束 Vault 生命周期) +- [ ] 只实现 `do_login`、`do_clear_session`、`get_session_auth`、`get_current_user` 四个方法 +- [ ] 退出时 Session + Vault 同时清除(由基类自动保证) +- [ ] Vault 不可用时优雅降级(由基类自动保证) +- [ ] HTTP 错误有意义的错误信息和正确的状态码 +- [ ] 缺少必须环境变量时不启用,不报错 + +### 前端 + +- [ ] `index.ts` default export 包含 `id`、`Icon`、`Panel` +- [ ] `id` 与后端 `manifest.id` 一致 +- [ ] 数据加载成功后调用 `callbacks.onDataLoaded()` +- [ ] 登录表单包含"记住凭证"复选框 + **注释说明**(服务器端存储,供自动化 Agent 使用) +- [ ] `vault_stale` 时显示"凭证已失效"提示 +- [ ] 翻译 key 使用 `plugin..*` 前缀 +- [ ] 不引用其他插件的代码 + +### 配置 + +- [ ] `.env.template` 中有本插件的环境变量说明 +- [ ] `required_env` 中的变量缺失时,插件自动跳过 + +### 测试 + +- [ ] 认证路由测试(含 Vault 自动取用、vault_stale、remember) +- [ ] 目录路由测试 +- [ ] 数据加载路由测试 +- [ ] fixture 文件从真实系统录制 +- [ ] 核心文件 git diff 为空(零修改验证) diff --git a/docs-cn/5.1-superset-sso-bridge-setup.md b/docs-cn/5.1-superset-sso-bridge-setup.md new file mode 100644 index 00000000..4cb646e7 --- /dev/null +++ b/docs-cn/5.1-superset-sso-bridge-setup.md @@ -0,0 +1,307 @@ +# Superset 端 SSO 桥接配置指南 + +本文档面向 **Superset 管理员**,说明如何在 Superset 端配置 SSO 桥接端点,使 Data Formulator(以下简称 DF)能通过 Superset 的 SSO 登录获取 JWT,从而调用 Superset REST API。 + +--- + +## 1. 背景 + +DF 需要调用 Superset REST API 来浏览数据集、仪表盘等。API 调用需要 Superset JWT。 + +由于 DF 和 Superset 部署在不同地址上(跨域),DF 无法直接读取 Superset 的 Session/Cookie。因此需要在 Superset 中添加一个小型桥接端点:用户通过 SSO 登录 Superset 后,该端点将 Session 转换为 JWT,通过浏览器 `postMessage` 传回 DF。 + +--- + +## 2. 工作原理 + +``` +DF 前端 Superset + │ │ + │ ① window.open(弹窗) │ + │ ──────────────────────────────────>│ /df-sso-bridge/?df_origin=http://DF地址 + │ │ + │ │ ② 如果用户未登录 → Superset 重定向到 SSO 登录 + │ │ 如果用户已登录 → 直接到步骤 ④ + │ │ + │ │ ③ 用户在 SSO 完成登录(账密/企微扫码等) + │ │ Superset 创建 Session,重定向回 /df-sso-bridge/ + │ │ + │ │ ④ bridge 端点: + │ │ - 检查 Session(用户已登录) + │ │ - 颁发 JWT access_token + refresh_token + │ │ - 返回 HTML,执行 postMessage 将 token 发给 DF + │ │ - 自动关闭弹窗 + │ ⑤ 收到 postMessage │ + │<─────────────────────────────────── │ + │ │ + │ ⑥ DF 拿到 Superset JWT,后续正常调用 API +``` + +--- + +## 3. 只需修改一个文件 + +在 Superset 服务器上编辑 `superset_config.py`,在末尾追加以下代码,然后**重启 Superset**。 + +不需要修改 Superset 源码、不需要安装额外包、不需要配置 CORS。 + +--- + +## 4. 完整代码 + +将以下代码追加到 `superset_config.py` 文件末尾: + +```python +# ============================================================================= +# Data Formulator SSO 桥接端点 +# 用途:DF 通过弹窗打开此端点,SSO 登录成功后将 Superset JWT +# 通过 postMessage 传回 DF 前端。 +# ============================================================================= + +from superset.security import SupersetSecurityManager +from flask_appbuilder import expose +from flask import request, Response +from flask_login import current_user + + +class CustomSecurityManager(SupersetSecurityManager): + + @expose("/df-sso-bridge/", methods=["GET"]) + def df_sso_bridge(self): + """ + Data Formulator SSO 桥接端点。 + + 当用户通过 SSO 登录 Superset 后,此端点: + 1. 为当前用户颁发 JWT access_token 和 refresh_token + 2. 通过 postMessage 将 token 发送给 DF 父窗口 + 3. 自动关闭弹窗 + + URL 参数: + df_origin: DF 前端的 origin(如 http://10.0.1.1:5567), + 由 DF 前端自动传入,用于 postMessage 的 targetOrigin 安全校验。 + """ + df_origin = request.args.get("df_origin", "*") + + if not current_user.is_authenticated: + return Response( + "

未登录,请关闭此窗口重试。

", + status=401, + mimetype="text/html", + ) + + from flask_jwt_extended import create_access_token, create_refresh_token + + access_token = create_access_token(identity=current_user.id, fresh=True) + refresh_token = create_refresh_token(identity=current_user.id) + + user_data = { + "id": current_user.id, + "username": current_user.username, + "first_name": getattr(current_user, "first_name", "") or "", + "last_name": getattr(current_user, "last_name", "") or "", + } + + import json + + html = f""" +SSO Bridge + +

正在完成登录...

+ +""" + return Response(html, mimetype="text/html") + + +CUSTOM_SECURITY_MANAGER_CLASS = CustomSecurityManager +``` + +--- + +## 5. 注意事项 + +### 5.1 如果已有 CustomSecurityManager + +如果 `superset_config.py` 中**已经定义**了 `CustomSecurityManager`(或其他自定义 SecurityManager 类),不要重复创建新类,只需将 `df_sso_bridge` 方法添加到现有类中即可: + +```python +# 假设已有: +class CustomSecurityManager(SupersetSecurityManager): + # ... 现有的自定义方法 ... + + # 追加这个方法: + @expose("/df-sso-bridge/", methods=["GET"]) + def df_sso_bridge(self): + # ... 上面第 4 节中的完整方法体 ... +``` + +### 5.2 如果已有 CUSTOM_SECURITY_MANAGER_CLASS + +如果已经设置了 `CUSTOM_SECURITY_MANAGER_CLASS`,确认它指向的是包含 `df_sso_bridge` 方法的那个类。不需要重复设置。 + +### 5.3 无需额外配置 + +- **不需要**在 Superset 中配置任何 DF 的地址 +- **不需要**新增环境变量 +- **不需要**修改 CORS 配置 +- DF 的地址通过 URL 参数 `df_origin` 动态传入,无需硬编码 + +--- + +## 6. DF 端配置 + +在 DF 的 `.env` 中确保 Superset 插件已启用: + +```env +# 设置 Superset URL 即可自动启用插件 +PLG_SUPERSET_URL=http://你的SUPERSET地址:8088/ +``` + +DF 会自动: + +- 生成 SSO 登录 URL:`{PLG_SUPERSET_URL}/df-sso-bridge/` +- 在 Superset 插件界面显示"SSO 登录"按钮 +- 弹窗打开时自动拼接 `?df_origin=` 参数 + +如果需要自定义 SSO 入口 URL(例如先跳转到 Superset 登录页再重定向),可设置: + +```env +# 可选:自定义 SSO 入口 URL(默认直接打开 /df-sso-bridge/) +# 如果 Superset 的桥接端点需要先经过登录页,可以设置为: +# PLG_SUPERSET_SSO_LOGIN_URL=http://你的SUPERSET地址:8088/login/?next=/df-sso-bridge/ +``` + +--- + +## 7. 验证步骤 + +部署后按以下步骤验证: + +### 7.1 未登录状态测试 + +浏览器直接访问(不要先登录 Superset): + +``` +http://SUPERSET地址:端口/df-sso-bridge/ +``` + +**预期**:返回 401 页面,显示"未登录,请关闭此窗口重试。" + +### 7.2 已登录状态测试 + +1. 先通过 Superset 正常登录(SSO 或账密都行) +2. 在同一浏览器访问: + +``` +http://SUPERSET地址:端口/df-sso-bridge/?df_origin=http://test +``` + +**预期**:页面显示"正在完成登录...",因为没有 `window.opener`(不是从弹窗打开),最终显示"登录成功,请关闭此窗口并返回 Data Formulator。" + +### 7.3 验证 JWT 有效性 + +在步骤 7.2 的页面上,打开浏览器开发者工具 → 查看页面源码中的 `access_token` 值,然后用它调用: + +```bash +curl -H "Authorization: Bearer " http://SUPERSET地址:端口/api/v1/me/ +``` + +**预期**:返回当前登录用户的信息。 + +### 7.4 完整端到端测试 + +1. 启动 DF(确保 `PLG_SUPERSET_URL` 已配置) +2. 在 DF 界面打开数据上传 → 选择 Superset 标签 +3. 点击"SSO 登录"按钮 +4. 弹窗打开 → 如果已有 SSO 会话则自动完成,否则先完成 SSO 登录 +5. 弹窗自动关闭,DF 显示 Superset 数据目录 + +--- + +## 8. 安全说明 + +| 关注点 | 说明 | +|--------|------| +| **谁能访问 bridge 端点?** | 只有已通过 Superset 认证(有有效 Session)的用户,未登录返回 401 | +| **JWT 发给谁?** | 通过 `postMessage` 只发给 `window.opener`(即打开弹窗的 DF 页面) | +| **targetOrigin 安全性** | 使用 DF 传入的 `df_origin` 作为 `targetOrigin`,浏览器会校验接收窗口的实际 origin 是否匹配,不匹配则消息被丢弃 | +| **df_origin 被伪造?** | `postMessage` 始终发给 `window.opener`,`targetOrigin` 只是过滤条件。伪造只会导致消息被丢弃,不会泄露到第三方 | +| **JWT 生命周期** | 获取的 JWT 与正常登录的完全一致,DF 后端自动处理过期刷新 | + +--- + +## 9. 故障排查 + +| 现象 | 可能原因 | 解决方法 | +|------|----------|----------| +| 弹窗显示"未登录" | 用户没有有效的 Superset Session | 先在 Superset 正常登录一次,再从 DF 发起 SSO | +| 弹窗打开后空白 | `superset_config.py` 代码未生效 | 确认已重启 Superset,检查日志是否有导入错误 | +| 弹窗显示"登录成功"但 DF 无反应 | postMessage type 不匹配 | 确认桥接代码中 `type: 'df-sso-auth'` 拼写正确 | +| curl 测试 JWT 返回 401 | `create_access_token` 异常 | 检查 Superset 日志,确认 `flask_jwt_extended` 已正确配置 | +| DF 显示"SSO 登录失败" | save-tokens 验证失败 | 检查 DF 后端日志,确认 DF 能访问 Superset `/api/v1/me/` | +| 弹窗被浏览器拦截 | 浏览器 popup 拦截 | 提示用户允许弹出窗口 | + +--- + +## 10. 技术细节:DF 端 SSO 流程(供开发者参考) + +### 10.1 前端流程(`SupersetLogin.tsx`) + +``` +用户点击"SSO 登录" + → 构造 URL: {sso_login_url}?df_origin={window.location.origin} + → window.open(url) 打开弹窗 + → window.addEventListener('message', handler) + → 同时 setInterval 检测弹窗是否关闭 + +收到 postMessage (type === 'df-sso-auth') + → 移除 listener,关闭弹窗 + → POST /api/plugins/superset/auth/sso/save-tokens + { access_token, refresh_token, user } + → 后端验证 token → 存入 Flask plugin session + → 前端标记已认证 → 展示数据目录 +``` + +### 10.2 后端 token 保存(`routes/auth.py`) + +`POST /api/plugins/superset/auth/sso/save-tokens` 接收前端传来的 Superset JWT: + +1. 用 `access_token` 调用 Superset `/api/v1/me/` 验证有效性 +2. 获取用户信息(id, username 等) +3. 存入 Flask plugin session(`plugin_superset_token`, `plugin_superset_user`) +4. 后续所有 Superset API 调用使用此 JWT + +### 10.3 postMessage 协议 + +桥接页发送的消息格式: + +```json +{ + "type": "df-sso-auth", + "access_token": "eyJhbGci...", + "refresh_token": "eyJhbGci...", + "user": { + "id": 1, + "username": "zhangsan", + "first_name": "三", + "last_name": "张" + } +} +``` + +DF 前端只接受 `type === 'df-sso-auth'` 的消息,忽略其他所有 postMessage。 diff --git a/package.json b/package.json index a421de92..96101464 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,10 @@ "@mui/lab": "^7.0.1-beta.18", "@mui/material": "^7.1.1", "@reduxjs/toolkit": "^1.8.6", + "@tiptap/extension-image": "^3.22.2", + "@tiptap/pm": "^3.22.2", + "@tiptap/react": "^3.22.2", + "@tiptap/starter-kit": "^3.22.2", "@types/dompurify": "^3.0.5", "@types/validator": "^13.12.2", "allotment": "^1.20.4", @@ -22,12 +26,14 @@ "exceljs": "^4.4.0", "gofish-graphics": "^0.0.22", "html2canvas": "^1.4.1", + "i18next": "^26.0.1", + "i18next-browser-languagedetector": "^8.2.1", "js-yaml": "^4.1.1", "katex": "^0.16.22", "localforage": "^1.10.0", "lodash": "^4.17.23", "markdown-to-jsx": "^7.4.0", - "mui-markdown": "^2.0.3", + "oidc-client-ts": "3.5.0", "prettier": "^2.8.3", "prism-react-renderer": "^1.3.5", "prismjs": "^1.30.0", @@ -38,6 +44,7 @@ "react-dnd": "^16.0.1", "react-dnd-html5-backend": "^16.0.1", "react-dom": "^18.2.0", + "react-i18next": "^16.5.4", "react-katex": "^3.1.0", "react-redux": "^8.0.4", "react-router-dom": "^6.22.0", @@ -47,6 +54,7 @@ "react-virtuoso": "^4.3.10", "redux": "^4.2.0", "redux-persist": "^6.0.0", + "tiptap-markdown": "^0.9.0", "typescript": "^4.9.5", "validator": "^13.15.20", "vega": "^6.2.0", @@ -57,7 +65,9 @@ "scripts": { "lint": "eslint -c eslint.config.js src/**/*.{ts,tsx} --fix", "start": "vite", - "build": "vite build" + "build": "vite build", + "test": "vitest run", + "test:watch": "vitest" }, "browserslist": { "production": [ @@ -73,6 +83,9 @@ }, "devDependencies": { "@eslint/js": "^9.15.0", + "@testing-library/dom": "^10.4.1", + "@testing-library/jest-dom": "^6.9.1", + "@testing-library/react": "^16.3.2", "@types/d3": "^7.4.3", "@types/lodash": "^4.17.7", "@types/node": "^20.14.10", @@ -87,8 +100,10 @@ "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-react": "^7.37.2", "globals": "^15.12.0", + "jsdom": "^29.0.1", "sass": "^1.77.6", "typescript-eslint": "^8.16.0", - "vite": "^5.4.21" + "vite": "^5.4.21", + "vitest": "^4.1.0" } } diff --git a/public/df_gas_prices.json b/public/df_gas_prices.json index a06c48c7..1cd183c8 100644 --- a/public/df_gas_prices.json +++ b/public/df_gas_prices.json @@ -1 +1 @@ -{"tables":[{"id":"weekly_gas_prices","displayId":"gas-prices","names":["date","fuel","grade","formulation","price"],"metadata":{"date":{"type":"date","semanticType":"Date"},"fuel":{"type":"string","semanticType":"String"},"grade":{"type":"string","semanticType":"String","levels":["all","regular","midgrade","premium","low_sulfur","ultra_low_sulfur"]},"formulation":{"type":"string","semanticType":"String","levels":["all","conventional","reformulated","NA"]},"price":{"type":"number","semanticType":"Number"}},"rows":[{"date":"1990-08-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.191},{"date":"1990-08-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.191},{"date":"1990-08-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.245},{"date":"1990-08-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.245},{"date":"1990-09-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.242},{"date":"1990-09-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.242},{"date":"1990-09-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.252},{"date":"1990-09-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.252},{"date":"1990-09-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.266},{"date":"1990-09-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.266},{"date":"1990-09-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.272},{"date":"1990-09-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.272},{"date":"1990-10-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.321},{"date":"1990-10-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.321},{"date":"1990-10-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.333},{"date":"1990-10-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.333},{"date":"1990-10-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.339},{"date":"1990-10-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.339},{"date":"1990-10-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.345},{"date":"1990-10-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.345},{"date":"1990-10-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.339},{"date":"1990-10-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.339},{"date":"1990-11-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.334},{"date":"1990-11-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.334},{"date":"1990-11-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.328},{"date":"1990-11-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.328},{"date":"1990-11-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.323},{"date":"1990-11-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.323},{"date":"1990-11-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.311},{"date":"1990-11-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.311},{"date":"1990-12-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.341},{"date":"1990-12-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.341},{"date":"1991-01-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.192},{"date":"1991-01-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.192},{"date":"1991-01-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.168},{"date":"1991-01-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.168},{"date":"1991-02-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.139},{"date":"1991-02-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.139},{"date":"1991-02-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.106},{"date":"1991-02-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.106},{"date":"1991-02-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.078},{"date":"1991-02-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.078},{"date":"1991-02-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.054},{"date":"1991-02-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.054},{"date":"1991-03-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.025},{"date":"1991-03-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.025},{"date":"1991-03-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.045},{"date":"1991-03-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.045},{"date":"1991-03-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.043},{"date":"1991-03-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.043},{"date":"1991-03-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.047},{"date":"1991-03-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.047},{"date":"1991-04-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.052},{"date":"1991-04-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.052},{"date":"1991-04-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.066},{"date":"1991-04-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.066},{"date":"1991-04-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.069},{"date":"1991-04-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.069},{"date":"1991-04-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.09},{"date":"1991-04-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.09},{"date":"1991-04-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.104},{"date":"1991-04-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.104},{"date":"1991-05-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.113},{"date":"1991-05-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.113},{"date":"1991-05-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.121},{"date":"1991-05-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.121},{"date":"1991-05-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.129},{"date":"1991-05-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.129},{"date":"1991-05-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.14},{"date":"1991-05-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.14},{"date":"1991-06-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.138},{"date":"1991-06-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.138},{"date":"1991-06-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.135},{"date":"1991-06-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.135},{"date":"1991-06-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.126},{"date":"1991-06-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.126},{"date":"1991-06-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.114},{"date":"1991-06-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.114},{"date":"1991-07-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.104},{"date":"1991-07-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.104},{"date":"1991-07-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.098},{"date":"1991-07-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.098},{"date":"1991-07-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.094},{"date":"1991-07-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.094},{"date":"1991-07-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.091},{"date":"1991-07-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.091},{"date":"1991-07-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.091},{"date":"1991-07-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.091},{"date":"1991-08-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.099},{"date":"1991-08-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.099},{"date":"1991-08-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.112},{"date":"1991-08-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.112},{"date":"1991-08-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.124},{"date":"1991-08-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.124},{"date":"1991-08-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.124},{"date":"1991-08-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.124},{"date":"1991-09-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.127},{"date":"1991-09-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.127},{"date":"1991-09-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.12},{"date":"1991-09-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.12},{"date":"1991-09-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.11},{"date":"1991-09-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.11},{"date":"1991-09-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.097},{"date":"1991-09-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.097},{"date":"1991-09-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.092},{"date":"1991-09-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.092},{"date":"1991-10-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.089},{"date":"1991-10-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.089},{"date":"1991-10-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.084},{"date":"1991-10-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.084},{"date":"1991-10-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.088},{"date":"1991-10-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.088},{"date":"1991-10-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.091},{"date":"1991-10-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.091},{"date":"1991-11-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.091},{"date":"1991-11-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.091},{"date":"1991-11-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.102},{"date":"1991-11-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.102},{"date":"1991-11-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.104},{"date":"1991-11-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.104},{"date":"1991-11-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.099},{"date":"1991-11-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.099},{"date":"1991-12-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.099},{"date":"1991-12-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.099},{"date":"1991-12-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.091},{"date":"1991-12-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.091},{"date":"1991-12-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.075},{"date":"1991-12-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.075},{"date":"1991-12-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.063},{"date":"1991-12-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.063},{"date":"1991-12-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.053},{"date":"1991-12-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.053},{"date":"1992-01-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.042},{"date":"1992-01-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.042},{"date":"1992-01-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.026},{"date":"1992-01-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.026},{"date":"1992-01-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.014},{"date":"1992-01-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.014},{"date":"1992-01-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.006},{"date":"1992-01-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.006},{"date":"1992-02-03","fuel":"gasoline","grade":"regular","formulation":"all","price":0.995},{"date":"1992-02-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.995},{"date":"1992-02-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.004},{"date":"1992-02-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.004},{"date":"1992-02-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.011},{"date":"1992-02-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.011},{"date":"1992-02-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.014},{"date":"1992-02-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.014},{"date":"1992-03-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.012},{"date":"1992-03-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.012},{"date":"1992-03-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.013},{"date":"1992-03-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.013},{"date":"1992-03-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.01},{"date":"1992-03-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.01},{"date":"1992-03-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.015},{"date":"1992-03-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.015},{"date":"1992-03-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.013},{"date":"1992-03-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.013},{"date":"1992-04-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.026},{"date":"1992-04-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.026},{"date":"1992-04-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.051},{"date":"1992-04-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.051},{"date":"1992-04-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.058},{"date":"1992-04-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.058},{"date":"1992-04-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.072},{"date":"1992-04-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.072},{"date":"1992-05-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.089},{"date":"1992-05-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.089},{"date":"1992-05-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.102},{"date":"1992-05-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.102},{"date":"1992-05-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.118},{"date":"1992-05-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.118},{"date":"1992-05-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.12},{"date":"1992-05-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.12},{"date":"1992-06-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.128},{"date":"1992-06-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.128},{"date":"1992-06-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.143},{"date":"1992-06-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.143},{"date":"1992-06-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.151},{"date":"1992-06-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.151},{"date":"1992-06-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.153},{"date":"1992-06-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.153},{"date":"1992-06-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.149},{"date":"1992-06-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.149},{"date":"1992-07-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.147},{"date":"1992-07-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.147},{"date":"1992-07-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.139},{"date":"1992-07-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.139},{"date":"1992-07-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.132},{"date":"1992-07-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.132},{"date":"1992-07-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.128},{"date":"1992-07-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.128},{"date":"1992-08-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.126},{"date":"1992-08-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.126},{"date":"1992-08-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.123},{"date":"1992-08-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.123},{"date":"1992-08-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.116},{"date":"1992-08-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.116},{"date":"1992-08-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.123},{"date":"1992-08-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.123},{"date":"1992-08-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.121},{"date":"1992-08-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.121},{"date":"1992-09-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.121},{"date":"1992-09-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.121},{"date":"1992-09-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.124},{"date":"1992-09-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.124},{"date":"1992-09-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.123},{"date":"1992-09-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.123},{"date":"1992-09-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.118},{"date":"1992-09-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.118},{"date":"1992-10-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.115},{"date":"1992-10-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.115},{"date":"1992-10-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.115},{"date":"1992-10-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.115},{"date":"1992-10-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.113},{"date":"1992-10-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.113},{"date":"1992-10-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.113},{"date":"1992-10-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.113},{"date":"1992-11-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.12},{"date":"1992-11-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.12},{"date":"1992-11-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.12},{"date":"1992-11-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.12},{"date":"1992-11-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.112},{"date":"1992-11-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.112},{"date":"1992-11-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.106},{"date":"1992-11-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.106},{"date":"1992-11-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.098},{"date":"1992-11-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.098},{"date":"1992-12-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.089},{"date":"1992-12-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.089},{"date":"1992-12-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.078},{"date":"1992-12-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.078},{"date":"1992-12-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.074},{"date":"1992-12-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.074},{"date":"1992-12-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.069},{"date":"1992-12-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.069},{"date":"1993-01-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.065},{"date":"1993-01-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.065},{"date":"1993-01-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.066},{"date":"1993-01-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.066},{"date":"1993-01-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.061},{"date":"1993-01-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.061},{"date":"1993-01-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.055},{"date":"1993-01-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.055},{"date":"1993-02-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.055},{"date":"1993-02-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.055},{"date":"1993-02-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.062},{"date":"1993-02-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.062},{"date":"1993-02-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.053},{"date":"1993-02-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.053},{"date":"1993-02-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.047},{"date":"1993-02-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.047},{"date":"1993-03-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.042},{"date":"1993-03-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.042},{"date":"1993-03-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.048},{"date":"1993-03-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.048},{"date":"1993-03-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.058},{"date":"1993-03-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.058},{"date":"1993-03-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.056},{"date":"1993-03-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.056},{"date":"1993-03-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.057},{"date":"1993-03-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.057},{"date":"1993-04-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.068},{"date":"1993-04-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.068},{"date":"1993-04-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.068},{"date":"1993-04-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.079},{"date":"1993-04-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.079},{"date":"1993-04-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.079},{"date":"1993-04-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.079},{"date":"1993-04-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.079},{"date":"1993-04-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.079},{"date":"1993-04-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.086},{"date":"1993-04-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.086},{"date":"1993-04-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.086},{"date":"1993-05-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.086},{"date":"1993-05-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.086},{"date":"1993-05-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.086},{"date":"1993-05-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.097},{"date":"1993-05-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.097},{"date":"1993-05-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.097},{"date":"1993-05-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.106},{"date":"1993-05-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.106},{"date":"1993-05-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.106},{"date":"1993-05-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.106},{"date":"1993-05-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.106},{"date":"1993-05-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.106},{"date":"1993-05-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.107},{"date":"1993-05-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.107},{"date":"1993-05-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.107},{"date":"1993-06-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.104},{"date":"1993-06-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.104},{"date":"1993-06-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.104},{"date":"1993-06-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.101},{"date":"1993-06-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.101},{"date":"1993-06-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.101},{"date":"1993-06-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.095},{"date":"1993-06-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.095},{"date":"1993-06-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.095},{"date":"1993-06-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.089},{"date":"1993-06-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.089},{"date":"1993-06-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.089},{"date":"1993-07-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.086},{"date":"1993-07-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.086},{"date":"1993-07-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.086},{"date":"1993-07-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.081},{"date":"1993-07-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.081},{"date":"1993-07-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.081},{"date":"1993-07-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.075},{"date":"1993-07-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.075},{"date":"1993-07-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.075},{"date":"1993-07-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.069},{"date":"1993-07-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.069},{"date":"1993-07-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.069},{"date":"1993-08-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.062},{"date":"1993-08-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.062},{"date":"1993-08-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.062},{"date":"1993-08-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.06},{"date":"1993-08-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.06},{"date":"1993-08-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.06},{"date":"1993-08-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.059},{"date":"1993-08-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.059},{"date":"1993-08-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.059},{"date":"1993-08-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.065},{"date":"1993-08-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.065},{"date":"1993-08-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.065},{"date":"1993-08-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.062},{"date":"1993-08-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.062},{"date":"1993-08-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.062},{"date":"1993-09-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.055},{"date":"1993-09-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.055},{"date":"1993-09-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.055},{"date":"1993-09-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.051},{"date":"1993-09-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.051},{"date":"1993-09-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.051},{"date":"1993-09-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.045},{"date":"1993-09-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.045},{"date":"1993-09-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.045},{"date":"1993-09-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.047},{"date":"1993-09-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.047},{"date":"1993-09-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.047},{"date":"1993-10-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.092},{"date":"1993-10-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.092},{"date":"1993-10-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.092},{"date":"1993-10-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.09},{"date":"1993-10-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.09},{"date":"1993-10-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.09},{"date":"1993-10-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.093},{"date":"1993-10-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.093},{"date":"1993-10-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.093},{"date":"1993-10-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.092},{"date":"1993-10-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.092},{"date":"1993-10-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.092},{"date":"1993-11-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.084},{"date":"1993-11-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.084},{"date":"1993-11-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.084},{"date":"1993-11-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.075},{"date":"1993-11-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.075},{"date":"1993-11-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.075},{"date":"1993-11-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.064},{"date":"1993-11-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.064},{"date":"1993-11-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.064},{"date":"1993-11-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.058},{"date":"1993-11-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.058},{"date":"1993-11-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.058},{"date":"1993-11-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.051},{"date":"1993-11-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.051},{"date":"1993-11-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.051},{"date":"1993-12-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.036},{"date":"1993-12-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.036},{"date":"1993-12-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.036},{"date":"1993-12-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.018},{"date":"1993-12-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.018},{"date":"1993-12-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.018},{"date":"1993-12-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.003},{"date":"1993-12-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.003},{"date":"1993-12-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.003},{"date":"1993-12-27","fuel":"gasoline","grade":"all","formulation":"all","price":0.999},{"date":"1993-12-27","fuel":"gasoline","grade":"regular","formulation":"all","price":0.999},{"date":"1993-12-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.999},{"date":"1994-01-03","fuel":"gasoline","grade":"all","formulation":"all","price":0.992},{"date":"1994-01-03","fuel":"gasoline","grade":"regular","formulation":"all","price":0.992},{"date":"1994-01-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.992},{"date":"1994-01-10","fuel":"gasoline","grade":"all","formulation":"all","price":0.995},{"date":"1994-01-10","fuel":"gasoline","grade":"regular","formulation":"all","price":0.995},{"date":"1994-01-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.995},{"date":"1994-01-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.001},{"date":"1994-01-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.001},{"date":"1994-01-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.001},{"date":"1994-01-24","fuel":"gasoline","grade":"all","formulation":"all","price":0.999},{"date":"1994-01-24","fuel":"gasoline","grade":"regular","formulation":"all","price":0.999},{"date":"1994-01-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.999},{"date":"1994-01-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.005},{"date":"1994-01-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.005},{"date":"1994-01-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.005},{"date":"1994-02-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.007},{"date":"1994-02-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.007},{"date":"1994-02-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.007},{"date":"1994-02-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.016},{"date":"1994-02-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.016},{"date":"1994-02-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.016},{"date":"1994-02-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.009},{"date":"1994-02-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.009},{"date":"1994-02-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.009},{"date":"1994-02-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.004},{"date":"1994-02-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.004},{"date":"1994-02-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.004},{"date":"1994-03-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.007},{"date":"1994-03-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.007},{"date":"1994-03-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.007},{"date":"1994-03-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.005},{"date":"1994-03-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.005},{"date":"1994-03-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.005},{"date":"1994-03-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.007},{"date":"1994-03-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.007},{"date":"1994-03-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.007},{"date":"1994-03-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.106},{"date":"1994-03-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.012},{"date":"1994-03-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.012},{"date":"1994-03-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.012},{"date":"1994-03-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.107},{"date":"1994-04-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.011},{"date":"1994-04-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.011},{"date":"1994-04-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.011},{"date":"1994-04-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.109},{"date":"1994-04-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.028},{"date":"1994-04-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.028},{"date":"1994-04-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.028},{"date":"1994-04-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.108},{"date":"1994-04-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.033},{"date":"1994-04-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.033},{"date":"1994-04-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.033},{"date":"1994-04-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.105},{"date":"1994-04-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.037},{"date":"1994-04-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.037},{"date":"1994-04-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.037},{"date":"1994-04-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.106},{"date":"1994-05-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.04},{"date":"1994-05-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.04},{"date":"1994-05-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.04},{"date":"1994-05-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.104},{"date":"1994-05-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.045},{"date":"1994-05-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.045},{"date":"1994-05-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.045},{"date":"1994-05-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.101},{"date":"1994-05-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.046},{"date":"1994-05-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.046},{"date":"1994-05-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.046},{"date":"1994-05-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.099},{"date":"1994-05-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.05},{"date":"1994-05-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.05},{"date":"1994-05-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.05},{"date":"1994-05-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.099},{"date":"1994-05-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.056},{"date":"1994-05-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.056},{"date":"1994-05-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.056},{"date":"1994-05-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.098},{"date":"1994-06-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.065},{"date":"1994-06-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.065},{"date":"1994-06-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.065},{"date":"1994-06-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.101},{"date":"1994-06-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.073},{"date":"1994-06-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.073},{"date":"1994-06-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.073},{"date":"1994-06-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.098},{"date":"1994-06-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.079},{"date":"1994-06-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.079},{"date":"1994-06-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.079},{"date":"1994-06-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.103},{"date":"1994-06-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.095},{"date":"1994-06-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.095},{"date":"1994-06-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.095},{"date":"1994-06-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.108},{"date":"1994-07-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.097},{"date":"1994-07-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.097},{"date":"1994-07-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.097},{"date":"1994-07-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.109},{"date":"1994-07-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.103},{"date":"1994-07-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.103},{"date":"1994-07-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.103},{"date":"1994-07-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.11},{"date":"1994-07-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.109},{"date":"1994-07-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.109},{"date":"1994-07-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.109},{"date":"1994-07-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.111},{"date":"1994-07-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.114},{"date":"1994-07-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.114},{"date":"1994-07-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.114},{"date":"1994-07-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.111},{"date":"1994-08-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.13},{"date":"1994-08-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.13},{"date":"1994-08-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.13},{"date":"1994-08-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.116},{"date":"1994-08-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.157},{"date":"1994-08-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.157},{"date":"1994-08-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.157},{"date":"1994-08-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.127},{"date":"1994-08-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.161},{"date":"1994-08-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.161},{"date":"1994-08-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.161},{"date":"1994-08-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.127},{"date":"1994-08-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.165},{"date":"1994-08-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.165},{"date":"1994-08-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.165},{"date":"1994-08-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.124},{"date":"1994-08-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.161},{"date":"1994-08-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.161},{"date":"1994-08-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.161},{"date":"1994-08-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.122},{"date":"1994-09-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.156},{"date":"1994-09-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.156},{"date":"1994-09-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.156},{"date":"1994-09-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.126},{"date":"1994-09-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.15},{"date":"1994-09-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.15},{"date":"1994-09-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.15},{"date":"1994-09-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.128},{"date":"1994-09-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.14},{"date":"1994-09-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.14},{"date":"1994-09-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.14},{"date":"1994-09-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.126},{"date":"1994-09-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.129},{"date":"1994-09-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.129},{"date":"1994-09-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.129},{"date":"1994-09-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.12},{"date":"1994-10-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.12},{"date":"1994-10-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.12},{"date":"1994-10-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.12},{"date":"1994-10-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.118},{"date":"1994-10-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.114},{"date":"1994-10-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.114},{"date":"1994-10-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.114},{"date":"1994-10-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.117},{"date":"1994-10-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.106},{"date":"1994-10-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.106},{"date":"1994-10-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.106},{"date":"1994-10-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.119},{"date":"1994-10-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.107},{"date":"1994-10-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.107},{"date":"1994-10-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.107},{"date":"1994-10-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.122},{"date":"1994-10-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.121},{"date":"1994-10-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.121},{"date":"1994-10-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.121},{"date":"1994-10-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.133},{"date":"1994-11-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.123},{"date":"1994-11-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.123},{"date":"1994-11-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.123},{"date":"1994-11-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.133},{"date":"1994-11-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.122},{"date":"1994-11-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.122},{"date":"1994-11-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.122},{"date":"1994-11-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.135},{"date":"1994-11-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.113},{"date":"1994-11-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.113},{"date":"1994-11-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.113},{"date":"1994-11-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.13},{"date":"1994-11-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.117},{"date":"1994-11-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.175},{"date":"1994-11-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.259},{"date":"1994-11-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.105},{"date":"1994-11-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.082},{"date":"1994-11-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.149},{"date":"1994-11-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.197},{"date":"1994-11-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.174},{"date":"1994-11-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.249},{"date":"1994-11-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.303},{"date":"1994-11-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.27},{"date":"1994-11-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.351},{"date":"1994-11-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.126},{"date":"1994-12-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.127},{"date":"1994-12-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.143},{"date":"1994-12-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.254},{"date":"1994-12-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.103},{"date":"1994-12-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.075},{"date":"1994-12-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.169},{"date":"1994-12-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.197},{"date":"1994-12-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.167},{"date":"1994-12-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.272},{"date":"1994-12-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.301},{"date":"1994-12-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.26},{"date":"1994-12-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.37},{"date":"1994-12-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.123},{"date":"1994-12-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.131},{"date":"1994-12-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.118},{"date":"1994-12-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.231},{"date":"1994-12-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.095},{"date":"1994-12-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.064},{"date":"1994-12-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.167},{"date":"1994-12-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.188},{"date":"1994-12-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.156},{"date":"1994-12-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.268},{"date":"1994-12-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.288},{"date":"1994-12-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.244},{"date":"1994-12-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.363},{"date":"1994-12-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.114},{"date":"1994-12-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.134},{"date":"1994-12-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.099},{"date":"1994-12-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.216},{"date":"1994-12-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.087},{"date":"1994-12-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.056},{"date":"1994-12-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.167},{"date":"1994-12-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.179},{"date":"1994-12-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.147},{"date":"1994-12-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.262},{"date":"1994-12-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.279},{"date":"1994-12-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.233},{"date":"1994-12-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.36},{"date":"1994-12-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.109},{"date":"1994-12-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.125},{"date":"1994-12-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.088},{"date":"1994-12-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.213},{"date":"1994-12-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.077},{"date":"1994-12-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.044},{"date":"1994-12-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.165},{"date":"1994-12-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.171},{"date":"1994-12-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.136},{"date":"1994-12-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.265},{"date":"1994-12-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.27},{"date":"1994-12-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.222},{"date":"1994-12-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.358},{"date":"1994-12-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.106},{"date":"1995-01-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.127},{"date":"1995-01-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.104},{"date":"1995-01-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.231},{"date":"1995-01-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.079},{"date":"1995-01-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.063},{"date":"1995-01-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.167},{"date":"1995-01-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.17},{"date":"1995-01-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.159},{"date":"1995-01-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.298},{"date":"1995-01-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.272},{"date":"1995-01-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.25},{"date":"1995-01-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.386},{"date":"1995-01-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.104},{"date":"1995-01-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.134},{"date":"1995-01-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.111},{"date":"1995-01-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.232},{"date":"1995-01-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.086},{"date":"1995-01-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.07},{"date":"1995-01-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.169},{"date":"1995-01-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.177},{"date":"1995-01-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.164},{"date":"1995-01-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.3},{"date":"1995-01-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.279},{"date":"1995-01-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.256},{"date":"1995-01-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.387},{"date":"1995-01-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.102},{"date":"1995-01-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.126},{"date":"1995-01-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.102},{"date":"1995-01-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.231},{"date":"1995-01-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.078},{"date":"1995-01-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.062},{"date":"1995-01-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.169},{"date":"1995-01-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.168},{"date":"1995-01-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.155},{"date":"1995-01-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.299},{"date":"1995-01-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.271},{"date":"1995-01-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.249},{"date":"1995-01-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.385},{"date":"1995-01-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.1},{"date":"1995-01-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.132},{"date":"1995-01-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.11},{"date":"1995-01-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.226},{"date":"1995-01-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.083},{"date":"1995-01-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.068},{"date":"1995-01-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.165},{"date":"1995-01-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.177},{"date":"1995-01-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.165},{"date":"1995-01-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.296},{"date":"1995-01-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.277},{"date":"1995-01-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.256},{"date":"1995-01-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.378},{"date":"1995-01-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.095},{"date":"1995-01-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.131},{"date":"1995-01-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.109},{"date":"1995-01-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.221},{"date":"1995-01-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.083},{"date":"1995-01-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.068},{"date":"1995-01-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.162},{"date":"1995-01-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.176},{"date":"1995-01-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.163},{"date":"1995-01-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.291},{"date":"1995-01-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.275},{"date":"1995-01-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.255},{"date":"1995-01-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.37},{"date":"1995-01-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.09},{"date":"1995-02-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.124},{"date":"1995-02-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.103},{"date":"1995-02-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.218},{"date":"1995-02-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.076},{"date":"1995-02-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.062},{"date":"1995-02-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.159},{"date":"1995-02-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.169},{"date":"1995-02-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.157},{"date":"1995-02-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.288},{"date":"1995-02-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.27},{"date":"1995-02-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.25},{"date":"1995-02-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.368},{"date":"1995-02-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.086},{"date":"1995-02-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.121},{"date":"1995-02-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.099},{"date":"1995-02-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.218},{"date":"1995-02-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.074},{"date":"1995-02-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.058},{"date":"1995-02-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.158},{"date":"1995-02-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.166},{"date":"1995-02-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.153},{"date":"1995-02-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.285},{"date":"1995-02-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.265},{"date":"1995-02-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.243},{"date":"1995-02-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.367},{"date":"1995-02-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.088},{"date":"1995-02-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.115},{"date":"1995-02-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.093},{"date":"1995-02-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.213},{"date":"1995-02-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.067},{"date":"1995-02-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.052},{"date":"1995-02-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.153},{"date":"1995-02-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.16},{"date":"1995-02-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.148},{"date":"1995-02-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.28},{"date":"1995-02-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.259},{"date":"1995-02-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.239},{"date":"1995-02-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.363},{"date":"1995-02-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.088},{"date":"1995-02-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.121},{"date":"1995-02-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.101},{"date":"1995-02-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.211},{"date":"1995-02-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.073},{"date":"1995-02-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.06},{"date":"1995-02-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.152},{"date":"1995-02-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.164},{"date":"1995-02-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.153},{"date":"1995-02-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.276},{"date":"1995-02-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.265},{"date":"1995-02-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.246},{"date":"1995-02-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.362},{"date":"1995-02-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.089},{"date":"1995-03-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.123},{"date":"1995-03-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.103},{"date":"1995-03-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.209},{"date":"1995-03-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.076},{"date":"1995-03-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.063},{"date":"1995-03-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.149},{"date":"1995-03-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.167},{"date":"1995-03-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.157},{"date":"1995-03-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.275},{"date":"1995-03-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.263},{"date":"1995-03-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.244},{"date":"1995-03-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.358},{"date":"1995-03-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.089},{"date":"1995-03-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.116},{"date":"1995-03-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.096},{"date":"1995-03-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.202},{"date":"1995-03-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.069},{"date":"1995-03-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.056},{"date":"1995-03-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.141},{"date":"1995-03-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.158},{"date":"1995-03-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.15},{"date":"1995-03-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.268},{"date":"1995-03-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.256},{"date":"1995-03-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.238},{"date":"1995-03-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.353},{"date":"1995-03-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.088},{"date":"1995-03-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.114},{"date":"1995-03-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.095},{"date":"1995-03-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.201},{"date":"1995-03-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.068},{"date":"1995-03-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.055},{"date":"1995-03-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.14},{"date":"1995-03-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.158},{"date":"1995-03-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.149},{"date":"1995-03-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.267},{"date":"1995-03-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.254},{"date":"1995-03-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.236},{"date":"1995-03-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.351},{"date":"1995-03-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.085},{"date":"1995-03-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.121},{"date":"1995-03-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.102},{"date":"1995-03-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.198},{"date":"1995-03-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.075},{"date":"1995-03-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.063},{"date":"1995-03-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.138},{"date":"1995-03-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.162},{"date":"1995-03-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.153},{"date":"1995-03-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.265},{"date":"1995-03-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.259},{"date":"1995-03-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.241},{"date":"1995-03-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.349},{"date":"1995-03-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.088},{"date":"1995-04-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.133},{"date":"1995-04-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.116},{"date":"1995-04-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.198},{"date":"1995-04-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.087},{"date":"1995-04-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.077},{"date":"1995-04-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.14},{"date":"1995-04-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.174},{"date":"1995-04-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.167},{"date":"1995-04-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.266},{"date":"1995-04-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.27},{"date":"1995-04-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.255},{"date":"1995-04-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.35},{"date":"1995-04-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.094},{"date":"1995-04-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.149},{"date":"1995-04-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.134},{"date":"1995-04-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.207},{"date":"1995-04-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.103},{"date":"1995-04-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.094},{"date":"1995-04-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.149},{"date":"1995-04-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.19},{"date":"1995-04-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.186},{"date":"1995-04-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.273},{"date":"1995-04-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.286},{"date":"1995-04-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.273},{"date":"1995-04-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.357},{"date":"1995-04-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.101},{"date":"1995-04-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.163},{"date":"1995-04-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.149},{"date":"1995-04-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.215},{"date":"1995-04-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.117},{"date":"1995-04-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.11},{"date":"1995-04-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.16},{"date":"1995-04-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.205},{"date":"1995-04-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.201},{"date":"1995-04-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.278},{"date":"1995-04-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.3},{"date":"1995-04-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.29},{"date":"1995-04-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.361},{"date":"1995-04-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.106},{"date":"1995-04-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.184},{"date":"1995-04-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.173},{"date":"1995-04-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.231},{"date":"1995-04-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.138},{"date":"1995-04-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.133},{"date":"1995-04-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.176},{"date":"1995-04-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.226},{"date":"1995-04-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.224},{"date":"1995-04-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.291},{"date":"1995-04-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.323},{"date":"1995-04-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.315},{"date":"1995-04-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.377},{"date":"1995-04-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.115},{"date":"1995-05-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.194},{"date":"1995-05-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.181},{"date":"1995-05-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.242},{"date":"1995-05-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.148},{"date":"1995-05-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.141},{"date":"1995-05-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.188},{"date":"1995-05-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.236},{"date":"1995-05-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.234},{"date":"1995-05-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.305},{"date":"1995-05-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.332},{"date":"1995-05-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.323},{"date":"1995-05-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.389},{"date":"1995-05-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.119},{"date":"1995-05-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.216},{"date":"1995-05-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.204},{"date":"1995-05-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.261},{"date":"1995-05-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.169},{"date":"1995-05-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.164},{"date":"1995-05-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.205},{"date":"1995-05-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.259},{"date":"1995-05-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.257},{"date":"1995-05-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.324},{"date":"1995-05-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.356},{"date":"1995-05-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.349},{"date":"1995-05-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.408},{"date":"1995-05-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.126},{"date":"1995-05-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.226},{"date":"1995-05-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.213},{"date":"1995-05-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.273},{"date":"1995-05-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.179},{"date":"1995-05-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.173},{"date":"1995-05-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.215},{"date":"1995-05-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.269},{"date":"1995-05-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.267},{"date":"1995-05-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.334},{"date":"1995-05-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.364},{"date":"1995-05-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.357},{"date":"1995-05-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.418},{"date":"1995-05-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.126},{"date":"1995-05-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.244},{"date":"1995-05-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.232},{"date":"1995-05-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.285},{"date":"1995-05-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.197},{"date":"1995-05-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.191},{"date":"1995-05-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.233},{"date":"1995-05-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.288},{"date":"1995-05-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.285},{"date":"1995-05-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.344},{"date":"1995-05-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.383},{"date":"1995-05-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.376},{"date":"1995-05-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.429},{"date":"1995-05-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.124},{"date":"1995-05-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.246},{"date":"1995-05-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.234},{"date":"1995-05-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.291},{"date":"1995-05-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.199},{"date":"1995-05-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.193},{"date":"1995-05-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.239},{"date":"1995-05-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.29},{"date":"1995-05-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.288},{"date":"1995-05-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.351},{"date":"1995-05-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.386},{"date":"1995-05-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.379},{"date":"1995-05-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.435},{"date":"1995-05-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.13},{"date":"1995-06-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.246},{"date":"1995-06-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.234},{"date":"1995-06-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.289},{"date":"1995-06-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.199},{"date":"1995-06-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.194},{"date":"1995-06-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.238},{"date":"1995-06-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.29},{"date":"1995-06-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.288},{"date":"1995-06-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.349},{"date":"1995-06-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.386},{"date":"1995-06-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.38},{"date":"1995-06-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.434},{"date":"1995-06-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.124},{"date":"1995-06-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.243},{"date":"1995-06-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.23},{"date":"1995-06-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.287},{"date":"1995-06-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.196},{"date":"1995-06-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.19},{"date":"1995-06-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.237},{"date":"1995-06-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.288},{"date":"1995-06-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.286},{"date":"1995-06-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.348},{"date":"1995-06-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.383},{"date":"1995-06-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.375},{"date":"1995-06-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.433},{"date":"1995-06-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.122},{"date":"1995-06-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.236},{"date":"1995-06-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.224},{"date":"1995-06-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.285},{"date":"1995-06-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.189},{"date":"1995-06-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.183},{"date":"1995-06-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.234},{"date":"1995-06-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.28},{"date":"1995-06-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.277},{"date":"1995-06-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.345},{"date":"1995-06-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.376},{"date":"1995-06-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.368},{"date":"1995-06-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.432},{"date":"1995-06-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.117},{"date":"1995-06-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.229},{"date":"1995-06-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.217},{"date":"1995-06-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.28},{"date":"1995-06-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.182},{"date":"1995-06-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.177},{"date":"1995-06-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.228},{"date":"1995-06-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.273},{"date":"1995-06-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.27},{"date":"1995-06-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.341},{"date":"1995-06-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.37},{"date":"1995-06-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.363},{"date":"1995-06-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.428},{"date":"1995-06-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.112},{"date":"1995-07-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.222},{"date":"1995-07-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.209},{"date":"1995-07-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.275},{"date":"1995-07-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.175},{"date":"1995-07-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.169},{"date":"1995-07-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.223},{"date":"1995-07-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.266},{"date":"1995-07-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.262},{"date":"1995-07-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.337},{"date":"1995-07-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.362},{"date":"1995-07-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.354},{"date":"1995-07-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.423},{"date":"1995-07-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.106},{"date":"1995-07-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.212},{"date":"1995-07-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.2},{"date":"1995-07-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.269},{"date":"1995-07-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.165},{"date":"1995-07-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.159},{"date":"1995-07-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.216},{"date":"1995-07-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.255},{"date":"1995-07-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.252},{"date":"1995-07-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.333},{"date":"1995-07-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.352},{"date":"1995-07-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.344},{"date":"1995-07-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.416},{"date":"1995-07-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.103},{"date":"1995-07-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.2},{"date":"1995-07-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.189},{"date":"1995-07-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.26},{"date":"1995-07-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.153},{"date":"1995-07-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.148},{"date":"1995-07-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.207},{"date":"1995-07-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.244},{"date":"1995-07-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.243},{"date":"1995-07-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.325},{"date":"1995-07-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.342},{"date":"1995-07-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.335},{"date":"1995-07-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.409},{"date":"1995-07-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.099},{"date":"1995-07-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.191},{"date":"1995-07-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.179},{"date":"1995-07-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.248},{"date":"1995-07-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.144},{"date":"1995-07-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.138},{"date":"1995-07-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.196},{"date":"1995-07-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.236},{"date":"1995-07-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.234},{"date":"1995-07-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.314},{"date":"1995-07-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.333},{"date":"1995-07-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.325},{"date":"1995-07-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.397},{"date":"1995-07-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.098},{"date":"1995-07-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.179},{"date":"1995-07-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.166},{"date":"1995-07-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.237},{"date":"1995-07-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.132},{"date":"1995-07-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.126},{"date":"1995-07-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.183},{"date":"1995-07-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.222},{"date":"1995-07-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.22},{"date":"1995-07-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.304},{"date":"1995-07-31","fuel":"gasoline","grade":"premium","formulation":"all","price":1.319},{"date":"1995-07-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.311},{"date":"1995-07-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.387},{"date":"1995-07-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.093},{"date":"1995-08-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.174},{"date":"1995-08-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.164},{"date":"1995-08-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.229},{"date":"1995-08-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.127},{"date":"1995-08-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.124},{"date":"1995-08-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.174},{"date":"1995-08-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.217},{"date":"1995-08-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.216},{"date":"1995-08-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.296},{"date":"1995-08-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.316},{"date":"1995-08-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.309},{"date":"1995-08-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.379},{"date":"1995-08-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.099},{"date":"1995-08-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.172},{"date":"1995-08-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.162},{"date":"1995-08-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.221},{"date":"1995-08-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.125},{"date":"1995-08-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.121},{"date":"1995-08-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.166},{"date":"1995-08-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.215},{"date":"1995-08-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.214},{"date":"1995-08-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.288},{"date":"1995-08-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.312},{"date":"1995-08-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.306},{"date":"1995-08-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.372},{"date":"1995-08-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.106},{"date":"1995-08-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.171},{"date":"1995-08-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.163},{"date":"1995-08-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.214},{"date":"1995-08-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.124},{"date":"1995-08-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.122},{"date":"1995-08-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.16},{"date":"1995-08-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.214},{"date":"1995-08-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.215},{"date":"1995-08-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.28},{"date":"1995-08-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.311},{"date":"1995-08-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.308},{"date":"1995-08-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.366},{"date":"1995-08-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.106},{"date":"1995-08-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.163},{"date":"1995-08-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.154},{"date":"1995-08-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.209},{"date":"1995-08-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.117},{"date":"1995-08-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.113},{"date":"1995-08-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.156},{"date":"1995-08-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.205},{"date":"1995-08-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.206},{"date":"1995-08-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.275},{"date":"1995-08-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.305},{"date":"1995-08-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.3},{"date":"1995-08-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.356},{"date":"1995-08-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.109},{"date":"1995-09-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.16},{"date":"1995-09-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.151},{"date":"1995-09-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.209},{"date":"1995-09-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.113},{"date":"1995-09-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.111},{"date":"1995-09-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.152},{"date":"1995-09-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.202},{"date":"1995-09-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.202},{"date":"1995-09-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.277},{"date":"1995-09-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.3},{"date":"1995-09-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.294},{"date":"1995-09-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.362},{"date":"1995-09-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.115},{"date":"1995-09-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.158},{"date":"1995-09-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.148},{"date":"1995-09-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.203},{"date":"1995-09-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.111},{"date":"1995-09-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.107},{"date":"1995-09-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.148},{"date":"1995-09-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.201},{"date":"1995-09-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.201},{"date":"1995-09-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.268},{"date":"1995-09-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.298},{"date":"1995-09-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.292},{"date":"1995-09-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.356},{"date":"1995-09-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.119},{"date":"1995-09-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.157},{"date":"1995-09-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.147},{"date":"1995-09-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.202},{"date":"1995-09-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.11},{"date":"1995-09-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.106},{"date":"1995-09-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.146},{"date":"1995-09-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.2},{"date":"1995-09-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.2},{"date":"1995-09-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.265},{"date":"1995-09-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.297},{"date":"1995-09-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.291},{"date":"1995-09-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.355},{"date":"1995-09-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.122},{"date":"1995-09-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.156},{"date":"1995-09-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.146},{"date":"1995-09-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.198},{"date":"1995-09-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.109},{"date":"1995-09-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.106},{"date":"1995-09-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.142},{"date":"1995-09-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.198},{"date":"1995-09-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.197},{"date":"1995-09-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.26},{"date":"1995-09-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.296},{"date":"1995-09-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.29},{"date":"1995-09-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.352},{"date":"1995-09-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.121},{"date":"1995-10-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.151},{"date":"1995-10-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.14},{"date":"1995-10-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.2},{"date":"1995-10-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.105},{"date":"1995-10-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.1},{"date":"1995-10-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.142},{"date":"1995-10-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.192},{"date":"1995-10-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.191},{"date":"1995-10-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.262},{"date":"1995-10-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.29},{"date":"1995-10-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.282},{"date":"1995-10-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.352},{"date":"1995-10-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.117},{"date":"1995-10-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.144},{"date":"1995-10-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.132},{"date":"1995-10-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.198},{"date":"1995-10-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.097},{"date":"1995-10-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.092},{"date":"1995-10-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.139},{"date":"1995-10-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.185},{"date":"1995-10-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.182},{"date":"1995-10-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.261},{"date":"1995-10-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.283},{"date":"1995-10-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.275},{"date":"1995-10-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.351},{"date":"1995-10-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.117},{"date":"1995-10-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.133},{"date":"1995-10-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.121},{"date":"1995-10-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.195},{"date":"1995-10-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.087},{"date":"1995-10-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.081},{"date":"1995-10-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.135},{"date":"1995-10-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.175},{"date":"1995-10-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.173},{"date":"1995-10-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.26},{"date":"1995-10-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.273},{"date":"1995-10-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.264},{"date":"1995-10-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.348},{"date":"1995-10-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.117},{"date":"1995-10-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.125},{"date":"1995-10-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.113},{"date":"1995-10-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.19},{"date":"1995-10-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.079},{"date":"1995-10-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.073},{"date":"1995-10-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.129},{"date":"1995-10-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.165},{"date":"1995-10-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.163},{"date":"1995-10-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.254},{"date":"1995-10-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.263},{"date":"1995-10-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.254},{"date":"1995-10-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.341},{"date":"1995-10-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.114},{"date":"1995-10-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.115},{"date":"1995-10-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.102},{"date":"1995-10-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.179},{"date":"1995-10-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.068},{"date":"1995-10-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.062},{"date":"1995-10-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.117},{"date":"1995-10-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.157},{"date":"1995-10-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.154},{"date":"1995-10-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.246},{"date":"1995-10-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.255},{"date":"1995-10-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.245},{"date":"1995-10-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.332},{"date":"1995-10-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.11},{"date":"1995-11-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.112},{"date":"1995-11-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.1},{"date":"1995-11-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.171},{"date":"1995-11-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.065},{"date":"1995-11-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.06},{"date":"1995-11-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.11},{"date":"1995-11-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.153},{"date":"1995-11-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.151},{"date":"1995-11-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.24},{"date":"1995-11-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.252},{"date":"1995-11-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.245},{"date":"1995-11-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.318},{"date":"1995-11-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.118},{"date":"1995-11-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.109},{"date":"1995-11-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.099},{"date":"1995-11-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.168},{"date":"1995-11-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.063},{"date":"1995-11-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.059},{"date":"1995-11-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.107},{"date":"1995-11-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.151},{"date":"1995-11-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.149},{"date":"1995-11-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.236},{"date":"1995-11-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.248},{"date":"1995-11-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.242},{"date":"1995-11-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.315},{"date":"1995-11-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.118},{"date":"1995-11-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.106},{"date":"1995-11-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.095},{"date":"1995-11-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.162},{"date":"1995-11-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.06},{"date":"1995-11-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.056},{"date":"1995-11-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.1},{"date":"1995-11-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.149},{"date":"1995-11-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.146},{"date":"1995-11-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.231},{"date":"1995-11-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.244},{"date":"1995-11-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.238},{"date":"1995-11-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.309},{"date":"1995-11-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.119},{"date":"1995-11-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.107},{"date":"1995-11-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.096},{"date":"1995-11-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.16},{"date":"1995-11-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.061},{"date":"1995-11-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.057},{"date":"1995-11-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.098},{"date":"1995-11-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.149},{"date":"1995-11-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.146},{"date":"1995-11-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.229},{"date":"1995-11-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.243},{"date":"1995-11-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.237},{"date":"1995-11-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.306},{"date":"1995-11-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.124},{"date":"1995-12-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.108},{"date":"1995-12-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.097},{"date":"1995-12-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.16},{"date":"1995-12-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.062},{"date":"1995-12-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.058},{"date":"1995-12-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.101},{"date":"1995-12-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.151},{"date":"1995-12-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.147},{"date":"1995-12-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.229},{"date":"1995-12-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.246},{"date":"1995-12-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.238},{"date":"1995-12-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.307},{"date":"1995-12-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.123},{"date":"1995-12-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.11},{"date":"1995-12-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.097},{"date":"1995-12-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.161},{"date":"1995-12-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.063},{"date":"1995-12-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.057},{"date":"1995-12-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.104},{"date":"1995-12-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.154},{"date":"1995-12-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.148},{"date":"1995-12-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.23},{"date":"1995-12-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.248},{"date":"1995-12-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.239},{"date":"1995-12-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.307},{"date":"1995-12-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.124},{"date":"1995-12-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.124},{"date":"1995-12-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.111},{"date":"1995-12-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.169},{"date":"1995-12-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.078},{"date":"1995-12-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.072},{"date":"1995-12-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.113},{"date":"1995-12-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.167},{"date":"1995-12-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.161},{"date":"1995-12-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.236},{"date":"1995-12-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.262},{"date":"1995-12-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.253},{"date":"1995-12-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.314},{"date":"1995-12-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.13},{"date":"1995-12-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.128},{"date":"1995-12-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.114},{"date":"1995-12-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.178},{"date":"1995-12-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.082},{"date":"1995-12-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.075},{"date":"1995-12-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.122},{"date":"1995-12-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.17},{"date":"1995-12-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.163},{"date":"1995-12-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.242},{"date":"1995-12-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.265},{"date":"1995-12-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.255},{"date":"1995-12-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.322},{"date":"1995-12-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.141},{"date":"1996-01-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.129},{"date":"1996-01-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.116},{"date":"1996-01-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.178},{"date":"1996-01-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.083},{"date":"1996-01-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.077},{"date":"1996-01-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.122},{"date":"1996-01-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.171},{"date":"1996-01-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.164},{"date":"1996-01-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.244},{"date":"1996-01-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.268},{"date":"1996-01-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.258},{"date":"1996-01-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.326},{"date":"1996-01-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.148},{"date":"1996-01-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.139},{"date":"1996-01-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.125},{"date":"1996-01-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.181},{"date":"1996-01-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.093},{"date":"1996-01-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.086},{"date":"1996-01-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.128},{"date":"1996-01-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.181},{"date":"1996-01-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.174},{"date":"1996-01-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.242},{"date":"1996-01-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.277},{"date":"1996-01-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.266},{"date":"1996-01-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.326},{"date":"1996-01-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.146},{"date":"1996-01-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.145},{"date":"1996-01-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.131},{"date":"1996-01-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.189},{"date":"1996-01-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.098},{"date":"1996-01-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.092},{"date":"1996-01-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.135},{"date":"1996-01-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.186},{"date":"1996-01-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.18},{"date":"1996-01-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.252},{"date":"1996-01-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.285},{"date":"1996-01-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.274},{"date":"1996-01-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.335},{"date":"1996-01-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.152},{"date":"1996-01-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.138},{"date":"1996-01-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.124},{"date":"1996-01-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.189},{"date":"1996-01-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.091},{"date":"1996-01-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.084},{"date":"1996-01-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.132},{"date":"1996-01-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.179},{"date":"1996-01-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.173},{"date":"1996-01-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.255},{"date":"1996-01-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.278},{"date":"1996-01-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.267},{"date":"1996-01-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.337},{"date":"1996-01-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.144},{"date":"1996-01-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.133},{"date":"1996-01-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.118},{"date":"1996-01-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.185},{"date":"1996-01-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.087},{"date":"1996-01-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.079},{"date":"1996-01-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.128},{"date":"1996-01-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.176},{"date":"1996-01-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.168},{"date":"1996-01-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.253},{"date":"1996-01-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.272},{"date":"1996-01-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.26},{"date":"1996-01-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.334},{"date":"1996-01-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.136},{"date":"1996-02-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.13},{"date":"1996-02-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.115},{"date":"1996-02-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.182},{"date":"1996-02-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.083},{"date":"1996-02-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.076},{"date":"1996-02-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.126},{"date":"1996-02-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.172},{"date":"1996-02-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.164},{"date":"1996-02-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.25},{"date":"1996-02-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.269},{"date":"1996-02-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.258},{"date":"1996-02-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.331},{"date":"1996-02-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.13},{"date":"1996-02-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.126},{"date":"1996-02-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.112},{"date":"1996-02-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.18},{"date":"1996-02-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.08},{"date":"1996-02-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.073},{"date":"1996-02-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.123},{"date":"1996-02-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.169},{"date":"1996-02-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.161},{"date":"1996-02-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.249},{"date":"1996-02-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.265},{"date":"1996-02-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.252},{"date":"1996-02-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.329},{"date":"1996-02-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.134},{"date":"1996-02-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.133},{"date":"1996-02-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.118},{"date":"1996-02-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.184},{"date":"1996-02-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.087},{"date":"1996-02-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.078},{"date":"1996-02-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.126},{"date":"1996-02-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.177},{"date":"1996-02-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.169},{"date":"1996-02-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.253},{"date":"1996-02-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.271},{"date":"1996-02-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.259},{"date":"1996-02-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.33},{"date":"1996-02-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.151},{"date":"1996-02-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.153},{"date":"1996-02-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.138},{"date":"1996-02-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.2},{"date":"1996-02-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.107},{"date":"1996-02-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.099},{"date":"1996-02-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.142},{"date":"1996-02-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.197},{"date":"1996-02-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.189},{"date":"1996-02-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.269},{"date":"1996-02-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.291},{"date":"1996-02-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.279},{"date":"1996-02-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.345},{"date":"1996-02-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.164},{"date":"1996-03-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.17},{"date":"1996-03-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.155},{"date":"1996-03-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.213},{"date":"1996-03-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.124},{"date":"1996-03-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.115},{"date":"1996-03-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.158},{"date":"1996-03-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.213},{"date":"1996-03-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.205},{"date":"1996-03-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.279},{"date":"1996-03-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.308},{"date":"1996-03-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.297},{"date":"1996-03-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.355},{"date":"1996-03-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.175},{"date":"1996-03-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.171},{"date":"1996-03-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.156},{"date":"1996-03-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.221},{"date":"1996-03-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.125},{"date":"1996-03-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.116},{"date":"1996-03-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.165},{"date":"1996-03-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.213},{"date":"1996-03-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.206},{"date":"1996-03-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.284},{"date":"1996-03-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.308},{"date":"1996-03-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.296},{"date":"1996-03-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.361},{"date":"1996-03-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.173},{"date":"1996-03-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.181},{"date":"1996-03-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.167},{"date":"1996-03-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.227},{"date":"1996-03-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.135},{"date":"1996-03-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.128},{"date":"1996-03-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.17},{"date":"1996-03-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.222},{"date":"1996-03-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.216},{"date":"1996-03-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.292},{"date":"1996-03-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.317},{"date":"1996-03-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.307},{"date":"1996-03-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.369},{"date":"1996-03-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.172},{"date":"1996-03-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.21},{"date":"1996-03-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.196},{"date":"1996-03-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.247},{"date":"1996-03-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.164},{"date":"1996-03-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.158},{"date":"1996-03-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.192},{"date":"1996-03-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.25},{"date":"1996-03-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.244},{"date":"1996-03-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.314},{"date":"1996-03-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.345},{"date":"1996-03-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.334},{"date":"1996-03-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.39},{"date":"1996-03-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.21},{"date":"1996-04-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.223},{"date":"1996-04-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.21},{"date":"1996-04-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.266},{"date":"1996-04-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.178},{"date":"1996-04-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.172},{"date":"1996-04-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.209},{"date":"1996-04-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.263},{"date":"1996-04-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.258},{"date":"1996-04-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.334},{"date":"1996-04-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.357},{"date":"1996-04-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.347},{"date":"1996-04-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.406},{"date":"1996-04-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.222},{"date":"1996-04-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.248},{"date":"1996-04-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.233},{"date":"1996-04-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.293},{"date":"1996-04-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.204},{"date":"1996-04-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.195},{"date":"1996-04-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.236},{"date":"1996-04-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.289},{"date":"1996-04-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.282},{"date":"1996-04-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.36},{"date":"1996-04-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.381},{"date":"1996-04-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.37},{"date":"1996-04-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.429},{"date":"1996-04-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.249},{"date":"1996-04-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.287},{"date":"1996-04-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.272},{"date":"1996-04-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.337},{"date":"1996-04-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.242},{"date":"1996-04-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.234},{"date":"1996-04-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.28},{"date":"1996-04-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.329},{"date":"1996-04-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.321},{"date":"1996-04-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.405},{"date":"1996-04-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.422},{"date":"1996-04-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.411},{"date":"1996-04-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.473},{"date":"1996-04-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.305},{"date":"1996-04-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.301},{"date":"1996-04-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.282},{"date":"1996-04-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.386},{"date":"1996-04-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.256},{"date":"1996-04-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.243},{"date":"1996-04-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.32},{"date":"1996-04-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.341},{"date":"1996-04-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.333},{"date":"1996-04-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.458},{"date":"1996-04-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.438},{"date":"1996-04-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.422},{"date":"1996-04-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.519},{"date":"1996-04-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.304},{"date":"1996-04-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.318},{"date":"1996-04-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.296},{"date":"1996-04-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.413},{"date":"1996-04-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.273},{"date":"1996-04-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.257},{"date":"1996-04-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.342},{"date":"1996-04-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.356},{"date":"1996-04-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.347},{"date":"1996-04-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.481},{"date":"1996-04-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.455},{"date":"1996-04-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.437},{"date":"1996-04-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.544},{"date":"1996-04-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.285},{"date":"1996-05-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.321},{"date":"1996-05-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.298},{"date":"1996-05-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.422},{"date":"1996-05-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.275},{"date":"1996-05-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.259},{"date":"1996-05-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.351},{"date":"1996-05-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.359},{"date":"1996-05-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.349},{"date":"1996-05-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.49},{"date":"1996-05-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.458},{"date":"1996-05-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.439},{"date":"1996-05-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.553},{"date":"1996-05-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.292},{"date":"1996-05-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.323},{"date":"1996-05-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.301},{"date":"1996-05-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.424},{"date":"1996-05-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.277},{"date":"1996-05-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.262},{"date":"1996-05-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.354},{"date":"1996-05-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.361},{"date":"1996-05-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.352},{"date":"1996-05-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.493},{"date":"1996-05-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.461},{"date":"1996-05-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.442},{"date":"1996-05-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.555},{"date":"1996-05-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.285},{"date":"1996-05-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.33},{"date":"1996-05-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.308},{"date":"1996-05-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.425},{"date":"1996-05-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.285},{"date":"1996-05-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.269},{"date":"1996-05-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.357},{"date":"1996-05-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.369},{"date":"1996-05-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.359},{"date":"1996-05-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.494},{"date":"1996-05-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.468},{"date":"1996-05-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.45},{"date":"1996-05-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.556},{"date":"1996-05-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.274},{"date":"1996-05-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.321},{"date":"1996-05-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.299},{"date":"1996-05-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.417},{"date":"1996-05-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.275},{"date":"1996-05-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.26},{"date":"1996-05-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.349},{"date":"1996-05-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.358},{"date":"1996-05-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.347},{"date":"1996-05-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.484},{"date":"1996-05-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.458},{"date":"1996-05-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.44},{"date":"1996-05-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.549},{"date":"1996-05-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.254},{"date":"1996-06-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.315},{"date":"1996-06-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.292},{"date":"1996-06-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.419},{"date":"1996-06-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.269},{"date":"1996-06-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.252},{"date":"1996-06-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.367},{"date":"1996-06-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.353},{"date":"1996-06-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.342},{"date":"1996-06-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.49},{"date":"1996-06-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.454},{"date":"1996-06-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.434},{"date":"1996-06-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.556},{"date":"1996-06-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.24},{"date":"1996-06-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.307},{"date":"1996-06-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.286},{"date":"1996-06-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.407},{"date":"1996-06-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.262},{"date":"1996-06-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.247},{"date":"1996-06-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.356},{"date":"1996-06-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.345},{"date":"1996-06-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.335},{"date":"1996-06-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.479},{"date":"1996-06-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.444},{"date":"1996-06-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.426},{"date":"1996-06-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.543},{"date":"1996-06-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.215},{"date":"1996-06-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.302},{"date":"1996-06-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.28},{"date":"1996-06-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.397},{"date":"1996-06-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.258},{"date":"1996-06-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.241},{"date":"1996-06-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.344},{"date":"1996-06-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.34},{"date":"1996-06-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.329},{"date":"1996-06-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.469},{"date":"1996-06-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.438},{"date":"1996-06-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.419},{"date":"1996-06-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.533},{"date":"1996-06-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.193},{"date":"1996-06-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.289},{"date":"1996-06-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.268},{"date":"1996-06-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.387},{"date":"1996-06-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.245},{"date":"1996-06-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.23},{"date":"1996-06-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.332},{"date":"1996-06-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.328},{"date":"1996-06-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.318},{"date":"1996-06-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.46},{"date":"1996-06-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.425},{"date":"1996-06-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.407},{"date":"1996-06-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.525},{"date":"1996-06-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.179},{"date":"1996-07-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.279},{"date":"1996-07-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.258},{"date":"1996-07-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.375},{"date":"1996-07-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.234},{"date":"1996-07-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.219},{"date":"1996-07-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.319},{"date":"1996-07-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.317},{"date":"1996-07-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.307},{"date":"1996-07-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.448},{"date":"1996-07-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.416},{"date":"1996-07-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.397},{"date":"1996-07-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.514},{"date":"1996-07-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.172},{"date":"1996-07-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.276},{"date":"1996-07-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.256},{"date":"1996-07-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.367},{"date":"1996-07-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.231},{"date":"1996-07-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.217},{"date":"1996-07-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.312},{"date":"1996-07-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.315},{"date":"1996-07-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.307},{"date":"1996-07-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.439},{"date":"1996-07-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.412},{"date":"1996-07-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.395},{"date":"1996-07-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.506},{"date":"1996-07-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.173},{"date":"1996-07-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.273},{"date":"1996-07-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.254},{"date":"1996-07-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.36},{"date":"1996-07-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.228},{"date":"1996-07-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.215},{"date":"1996-07-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.305},{"date":"1996-07-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.311},{"date":"1996-07-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.304},{"date":"1996-07-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.432},{"date":"1996-07-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.409},{"date":"1996-07-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.394},{"date":"1996-07-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.499},{"date":"1996-07-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.178},{"date":"1996-07-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.272},{"date":"1996-07-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.254},{"date":"1996-07-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.351},{"date":"1996-07-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.227},{"date":"1996-07-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.215},{"date":"1996-07-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.296},{"date":"1996-07-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.31},{"date":"1996-07-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.304},{"date":"1996-07-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.424},{"date":"1996-07-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.408},{"date":"1996-07-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.394},{"date":"1996-07-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.491},{"date":"1996-07-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.184},{"date":"1996-07-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.263},{"date":"1996-07-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.247},{"date":"1996-07-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.34},{"date":"1996-07-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.218},{"date":"1996-07-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.209},{"date":"1996-07-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.284},{"date":"1996-07-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.302},{"date":"1996-07-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.297},{"date":"1996-07-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.414},{"date":"1996-07-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.399},{"date":"1996-07-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.386},{"date":"1996-07-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.48},{"date":"1996-07-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.178},{"date":"1996-08-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.253},{"date":"1996-08-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.239},{"date":"1996-08-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.327},{"date":"1996-08-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.207},{"date":"1996-08-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.199},{"date":"1996-08-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.271},{"date":"1996-08-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.292},{"date":"1996-08-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.289},{"date":"1996-08-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.402},{"date":"1996-08-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.389},{"date":"1996-08-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.379},{"date":"1996-08-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.47},{"date":"1996-08-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.184},{"date":"1996-08-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.248},{"date":"1996-08-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.235},{"date":"1996-08-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.315},{"date":"1996-08-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.203},{"date":"1996-08-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.196},{"date":"1996-08-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.259},{"date":"1996-08-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.287},{"date":"1996-08-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.284},{"date":"1996-08-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.389},{"date":"1996-08-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.384},{"date":"1996-08-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.374},{"date":"1996-08-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.458},{"date":"1996-08-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.191},{"date":"1996-08-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.249},{"date":"1996-08-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.238},{"date":"1996-08-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.305},{"date":"1996-08-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.205},{"date":"1996-08-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.199},{"date":"1996-08-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.251},{"date":"1996-08-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.288},{"date":"1996-08-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.287},{"date":"1996-08-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.376},{"date":"1996-08-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.382},{"date":"1996-08-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.376},{"date":"1996-08-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.445},{"date":"1996-08-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.206},{"date":"1996-08-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.253},{"date":"1996-08-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.24},{"date":"1996-08-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.307},{"date":"1996-08-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.209},{"date":"1996-08-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.201},{"date":"1996-08-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.252},{"date":"1996-08-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.29},{"date":"1996-08-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.288},{"date":"1996-08-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.378},{"date":"1996-08-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.386},{"date":"1996-08-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.378},{"date":"1996-08-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.447},{"date":"1996-08-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.222},{"date":"1996-09-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.242},{"date":"1996-09-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.232},{"date":"1996-09-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.289},{"date":"1996-09-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.197},{"date":"1996-09-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.193},{"date":"1996-09-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.235},{"date":"1996-09-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.281},{"date":"1996-09-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.281},{"date":"1996-09-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.359},{"date":"1996-09-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.375},{"date":"1996-09-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.37},{"date":"1996-09-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.432},{"date":"1996-09-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.231},{"date":"1996-09-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.247},{"date":"1996-09-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.239},{"date":"1996-09-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.287},{"date":"1996-09-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.203},{"date":"1996-09-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.201},{"date":"1996-09-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.235},{"date":"1996-09-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.286},{"date":"1996-09-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.287},{"date":"1996-09-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.357},{"date":"1996-09-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.38},{"date":"1996-09-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.375},{"date":"1996-09-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.429},{"date":"1996-09-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.25},{"date":"1996-09-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.25},{"date":"1996-09-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.241},{"date":"1996-09-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.29},{"date":"1996-09-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.206},{"date":"1996-09-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.203},{"date":"1996-09-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.237},{"date":"1996-09-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.291},{"date":"1996-09-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.29},{"date":"1996-09-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.36},{"date":"1996-09-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.383},{"date":"1996-09-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.376},{"date":"1996-09-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.433},{"date":"1996-09-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.276},{"date":"1996-09-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.251},{"date":"1996-09-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.241},{"date":"1996-09-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.29},{"date":"1996-09-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.206},{"date":"1996-09-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.203},{"date":"1996-09-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.238},{"date":"1996-09-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.29},{"date":"1996-09-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.29},{"date":"1996-09-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.359},{"date":"1996-09-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.383},{"date":"1996-09-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.378},{"date":"1996-09-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.432},{"date":"1996-09-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.277},{"date":"1996-09-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.245},{"date":"1996-09-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.237},{"date":"1996-09-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.284},{"date":"1996-09-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.2},{"date":"1996-09-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.199},{"date":"1996-09-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.233},{"date":"1996-09-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.285},{"date":"1996-09-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.286},{"date":"1996-09-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.352},{"date":"1996-09-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.379},{"date":"1996-09-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.374},{"date":"1996-09-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.426},{"date":"1996-09-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.289},{"date":"1996-10-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.239},{"date":"1996-10-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.23},{"date":"1996-10-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.278},{"date":"1996-10-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.194},{"date":"1996-10-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.191},{"date":"1996-10-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.227},{"date":"1996-10-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.279},{"date":"1996-10-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.279},{"date":"1996-10-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.348},{"date":"1996-10-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.373},{"date":"1996-10-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.367},{"date":"1996-10-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.421},{"date":"1996-10-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.308},{"date":"1996-10-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.248},{"date":"1996-10-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.241},{"date":"1996-10-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.278},{"date":"1996-10-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.203},{"date":"1996-10-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.203},{"date":"1996-10-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.228},{"date":"1996-10-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.288},{"date":"1996-10-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.29},{"date":"1996-10-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.344},{"date":"1996-10-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.382},{"date":"1996-10-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.378},{"date":"1996-10-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.419},{"date":"1996-10-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.326},{"date":"1996-10-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.249},{"date":"1996-10-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.244},{"date":"1996-10-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.273},{"date":"1996-10-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.204},{"date":"1996-10-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.205},{"date":"1996-10-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.222},{"date":"1996-10-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.29},{"date":"1996-10-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.292},{"date":"1996-10-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.339},{"date":"1996-10-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.384},{"date":"1996-10-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.382},{"date":"1996-10-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.416},{"date":"1996-10-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.329},{"date":"1996-10-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.26},{"date":"1996-10-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.256},{"date":"1996-10-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.27},{"date":"1996-10-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.215},{"date":"1996-10-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.217},{"date":"1996-10-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.221},{"date":"1996-10-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.302},{"date":"1996-10-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.305},{"date":"1996-10-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.335},{"date":"1996-10-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.395},{"date":"1996-10-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.395},{"date":"1996-10-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.413},{"date":"1996-10-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.329},{"date":"1996-11-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.268},{"date":"1996-11-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.264},{"date":"1996-11-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.273},{"date":"1996-11-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.223},{"date":"1996-11-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.225},{"date":"1996-11-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.225},{"date":"1996-11-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.31},{"date":"1996-11-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.312},{"date":"1996-11-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.336},{"date":"1996-11-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.403},{"date":"1996-11-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.403},{"date":"1996-11-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.416},{"date":"1996-11-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.323},{"date":"1996-11-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.272},{"date":"1996-11-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.268},{"date":"1996-11-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.27},{"date":"1996-11-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.226},{"date":"1996-11-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.229},{"date":"1996-11-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.223},{"date":"1996-11-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.315},{"date":"1996-11-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.317},{"date":"1996-11-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.329},{"date":"1996-11-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.408},{"date":"1996-11-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.409},{"date":"1996-11-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.413},{"date":"1996-11-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.316},{"date":"1996-11-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.282},{"date":"1996-11-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.277},{"date":"1996-11-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.277},{"date":"1996-11-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.236},{"date":"1996-11-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.238},{"date":"1996-11-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.23},{"date":"1996-11-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.326},{"date":"1996-11-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.326},{"date":"1996-11-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.338},{"date":"1996-11-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.418},{"date":"1996-11-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.419},{"date":"1996-11-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.422},{"date":"1996-11-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.324},{"date":"1996-11-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.289},{"date":"1996-11-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.284},{"date":"1996-11-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.283},{"date":"1996-11-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.244},{"date":"1996-11-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.246},{"date":"1996-11-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.236},{"date":"1996-11-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.332},{"date":"1996-11-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.332},{"date":"1996-11-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.341},{"date":"1996-11-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.423},{"date":"1996-11-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.423},{"date":"1996-11-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.428},{"date":"1996-11-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.327},{"date":"1996-12-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.287},{"date":"1996-12-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.281},{"date":"1996-12-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.288},{"date":"1996-12-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.241},{"date":"1996-12-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.242},{"date":"1996-12-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.24},{"date":"1996-12-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.332},{"date":"1996-12-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.33},{"date":"1996-12-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.345},{"date":"1996-12-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.423},{"date":"1996-12-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.421},{"date":"1996-12-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.433},{"date":"1996-12-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.323},{"date":"1996-12-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.287},{"date":"1996-12-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.28},{"date":"1996-12-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.293},{"date":"1996-12-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.241},{"date":"1996-12-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.241},{"date":"1996-12-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.245},{"date":"1996-12-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.33},{"date":"1996-12-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.327},{"date":"1996-12-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.349},{"date":"1996-12-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.422},{"date":"1996-12-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.421},{"date":"1996-12-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.437},{"date":"1996-12-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.32},{"date":"1996-12-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.283},{"date":"1996-12-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.272},{"date":"1996-12-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.297},{"date":"1996-12-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.236},{"date":"1996-12-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.233},{"date":"1996-12-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.248},{"date":"1996-12-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.327},{"date":"1996-12-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.322},{"date":"1996-12-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.354},{"date":"1996-12-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.419},{"date":"1996-12-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.415},{"date":"1996-12-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.443},{"date":"1996-12-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.307},{"date":"1996-12-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.278},{"date":"1996-12-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.267},{"date":"1996-12-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.298},{"date":"1996-12-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.231},{"date":"1996-12-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.227},{"date":"1996-12-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.249},{"date":"1996-12-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.323},{"date":"1996-12-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.317},{"date":"1996-12-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.355},{"date":"1996-12-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.414},{"date":"1996-12-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.409},{"date":"1996-12-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.442},{"date":"1996-12-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.3},{"date":"1996-12-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.274},{"date":"1996-12-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.263},{"date":"1996-12-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.299},{"date":"1996-12-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.227},{"date":"1996-12-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.224},{"date":"1996-12-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.25},{"date":"1996-12-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.318},{"date":"1996-12-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.313},{"date":"1996-12-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.355},{"date":"1996-12-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.412},{"date":"1996-12-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.407},{"date":"1996-12-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.443},{"date":"1996-12-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.295},{"date":"1997-01-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.272},{"date":"1997-01-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.26},{"date":"1997-01-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.304},{"date":"1997-01-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.225},{"date":"1997-01-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.22},{"date":"1997-01-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.254},{"date":"1997-01-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.317},{"date":"1997-01-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.311},{"date":"1997-01-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.361},{"date":"1997-01-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.409},{"date":"1997-01-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.402},{"date":"1997-01-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.448},{"date":"1997-01-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.291},{"date":"1997-01-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.287},{"date":"1997-01-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.275},{"date":"1997-01-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.316},{"date":"1997-01-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.241},{"date":"1997-01-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.235},{"date":"1997-01-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.266},{"date":"1997-01-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.332},{"date":"1997-01-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.326},{"date":"1997-01-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.375},{"date":"1997-01-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.423},{"date":"1997-01-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.418},{"date":"1997-01-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.458},{"date":"1997-01-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.296},{"date":"1997-01-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.287},{"date":"1997-01-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.275},{"date":"1997-01-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.318},{"date":"1997-01-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.241},{"date":"1997-01-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.236},{"date":"1997-01-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.268},{"date":"1997-01-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.329},{"date":"1997-01-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.324},{"date":"1997-01-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.377},{"date":"1997-01-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.424},{"date":"1997-01-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.418},{"date":"1997-01-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.459},{"date":"1997-01-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.293},{"date":"1997-01-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.284},{"date":"1997-01-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.271},{"date":"1997-01-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.316},{"date":"1997-01-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.238},{"date":"1997-01-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.232},{"date":"1997-01-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.265},{"date":"1997-01-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.325},{"date":"1997-01-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.321},{"date":"1997-01-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.376},{"date":"1997-01-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.421},{"date":"1997-01-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.415},{"date":"1997-01-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.458},{"date":"1997-01-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.283},{"date":"1997-02-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.282},{"date":"1997-02-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.27},{"date":"1997-02-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.318},{"date":"1997-02-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.236},{"date":"1997-02-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.23},{"date":"1997-02-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.267},{"date":"1997-02-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.324},{"date":"1997-02-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.319},{"date":"1997-02-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.378},{"date":"1997-02-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.42},{"date":"1997-02-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.414},{"date":"1997-02-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.458},{"date":"1997-02-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.288},{"date":"1997-02-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.28},{"date":"1997-02-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.266},{"date":"1997-02-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.32},{"date":"1997-02-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.234},{"date":"1997-02-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.227},{"date":"1997-02-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.271},{"date":"1997-02-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.321},{"date":"1997-02-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.315},{"date":"1997-02-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.379},{"date":"1997-02-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.414},{"date":"1997-02-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.405},{"date":"1997-02-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.46},{"date":"1997-02-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.285},{"date":"1997-02-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.273},{"date":"1997-02-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.26},{"date":"1997-02-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.316},{"date":"1997-02-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.227},{"date":"1997-02-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.22},{"date":"1997-02-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.266},{"date":"1997-02-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.314},{"date":"1997-02-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.309},{"date":"1997-02-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.378},{"date":"1997-02-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.41},{"date":"1997-02-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.403},{"date":"1997-02-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.458},{"date":"1997-02-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.278},{"date":"1997-02-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.27},{"date":"1997-02-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.257},{"date":"1997-02-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.313},{"date":"1997-02-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.223},{"date":"1997-02-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.217},{"date":"1997-02-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.26},{"date":"1997-02-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.312},{"date":"1997-02-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.307},{"date":"1997-02-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.377},{"date":"1997-02-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.408},{"date":"1997-02-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.401},{"date":"1997-02-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.454},{"date":"1997-02-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.269},{"date":"1997-03-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.261},{"date":"1997-03-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.248},{"date":"1997-03-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.306},{"date":"1997-03-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.215},{"date":"1997-03-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.208},{"date":"1997-03-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.253},{"date":"1997-03-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.302},{"date":"1997-03-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.298},{"date":"1997-03-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.371},{"date":"1997-03-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.398},{"date":"1997-03-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.391},{"date":"1997-03-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.448},{"date":"1997-03-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.252},{"date":"1997-03-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.253},{"date":"1997-03-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.24},{"date":"1997-03-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.306},{"date":"1997-03-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.206},{"date":"1997-03-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.199},{"date":"1997-03-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.252},{"date":"1997-03-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.296},{"date":"1997-03-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.292},{"date":"1997-03-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.373},{"date":"1997-03-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.393},{"date":"1997-03-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.385},{"date":"1997-03-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.448},{"date":"1997-03-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.23},{"date":"1997-03-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.246},{"date":"1997-03-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.231},{"date":"1997-03-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.304},{"date":"1997-03-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.2},{"date":"1997-03-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.191},{"date":"1997-03-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.249},{"date":"1997-03-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.289},{"date":"1997-03-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.283},{"date":"1997-03-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.373},{"date":"1997-03-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.384},{"date":"1997-03-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.375},{"date":"1997-03-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.444},{"date":"1997-03-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.22},{"date":"1997-03-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.25},{"date":"1997-03-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.235},{"date":"1997-03-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.305},{"date":"1997-03-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.204},{"date":"1997-03-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.196},{"date":"1997-03-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.252},{"date":"1997-03-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.291},{"date":"1997-03-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.285},{"date":"1997-03-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.374},{"date":"1997-03-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.385},{"date":"1997-03-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.376},{"date":"1997-03-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.442},{"date":"1997-03-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.22},{"date":"1997-03-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.246},{"date":"1997-03-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.231},{"date":"1997-03-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.31},{"date":"1997-03-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.2},{"date":"1997-03-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.191},{"date":"1997-03-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.256},{"date":"1997-03-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.286},{"date":"1997-03-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.281},{"date":"1997-03-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.38},{"date":"1997-03-31","fuel":"gasoline","grade":"premium","formulation":"all","price":1.383},{"date":"1997-03-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.373},{"date":"1997-03-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.446},{"date":"1997-03-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.225},{"date":"1997-04-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.248},{"date":"1997-04-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.232},{"date":"1997-04-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.314},{"date":"1997-04-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.203},{"date":"1997-04-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.192},{"date":"1997-04-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.259},{"date":"1997-04-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.288},{"date":"1997-04-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.282},{"date":"1997-04-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.388},{"date":"1997-04-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.386},{"date":"1997-04-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.374},{"date":"1997-04-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.453},{"date":"1997-04-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.217},{"date":"1997-04-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.244},{"date":"1997-04-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.227},{"date":"1997-04-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.315},{"date":"1997-04-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.199},{"date":"1997-04-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.187},{"date":"1997-04-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.26},{"date":"1997-04-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.283},{"date":"1997-04-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.278},{"date":"1997-04-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.388},{"date":"1997-04-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.381},{"date":"1997-04-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.369},{"date":"1997-04-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.452},{"date":"1997-04-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.216},{"date":"1997-04-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.245},{"date":"1997-04-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.228},{"date":"1997-04-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.31},{"date":"1997-04-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.199},{"date":"1997-04-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.188},{"date":"1997-04-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.256},{"date":"1997-04-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.284},{"date":"1997-04-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.278},{"date":"1997-04-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.381},{"date":"1997-04-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.381},{"date":"1997-04-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.369},{"date":"1997-04-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.447},{"date":"1997-04-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.211},{"date":"1997-04-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.24},{"date":"1997-04-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.224},{"date":"1997-04-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.305},{"date":"1997-04-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.195},{"date":"1997-04-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.185},{"date":"1997-04-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.25},{"date":"1997-04-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.279},{"date":"1997-04-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.273},{"date":"1997-04-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.379},{"date":"1997-04-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.377},{"date":"1997-04-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.365},{"date":"1997-04-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.442},{"date":"1997-04-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.205},{"date":"1997-05-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.238},{"date":"1997-05-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.221},{"date":"1997-05-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.305},{"date":"1997-05-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.193},{"date":"1997-05-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.182},{"date":"1997-05-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.249},{"date":"1997-05-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.276},{"date":"1997-05-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.269},{"date":"1997-05-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.379},{"date":"1997-05-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.374},{"date":"1997-05-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.363},{"date":"1997-05-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.442},{"date":"1997-05-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.205},{"date":"1997-05-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.238},{"date":"1997-05-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.221},{"date":"1997-05-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.3},{"date":"1997-05-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.193},{"date":"1997-05-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.182},{"date":"1997-05-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.244},{"date":"1997-05-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.278},{"date":"1997-05-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.271},{"date":"1997-05-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.372},{"date":"1997-05-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.372},{"date":"1997-05-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.359},{"date":"1997-05-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.437},{"date":"1997-05-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.191},{"date":"1997-05-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.247},{"date":"1997-05-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.233},{"date":"1997-05-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.301},{"date":"1997-05-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.203},{"date":"1997-05-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.195},{"date":"1997-05-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.246},{"date":"1997-05-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.286},{"date":"1997-05-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.28},{"date":"1997-05-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.371},{"date":"1997-05-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.38},{"date":"1997-05-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.37},{"date":"1997-05-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.436},{"date":"1997-05-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.191},{"date":"1997-05-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.255},{"date":"1997-05-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.241},{"date":"1997-05-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.306},{"date":"1997-05-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.212},{"date":"1997-05-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.204},{"date":"1997-05-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.252},{"date":"1997-05-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.294},{"date":"1997-05-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.287},{"date":"1997-05-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.375},{"date":"1997-05-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.385},{"date":"1997-05-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.375},{"date":"1997-05-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.442},{"date":"1997-05-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.196},{"date":"1997-06-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.258},{"date":"1997-06-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.243},{"date":"1997-06-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.304},{"date":"1997-06-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.215},{"date":"1997-06-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.206},{"date":"1997-06-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.25},{"date":"1997-06-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.297},{"date":"1997-06-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.29},{"date":"1997-06-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.373},{"date":"1997-06-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.388},{"date":"1997-06-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.378},{"date":"1997-06-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.439},{"date":"1997-06-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.19},{"date":"1997-06-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.251},{"date":"1997-06-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.236},{"date":"1997-06-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.301},{"date":"1997-06-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.207},{"date":"1997-06-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.198},{"date":"1997-06-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.246},{"date":"1997-06-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.291},{"date":"1997-06-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.283},{"date":"1997-06-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.37},{"date":"1997-06-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.382},{"date":"1997-06-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.372},{"date":"1997-06-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.439},{"date":"1997-06-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.187},{"date":"1997-06-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.242},{"date":"1997-06-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.227},{"date":"1997-06-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.296},{"date":"1997-06-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.198},{"date":"1997-06-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.189},{"date":"1997-06-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.241},{"date":"1997-06-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.282},{"date":"1997-06-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.274},{"date":"1997-06-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.365},{"date":"1997-06-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.373},{"date":"1997-06-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.362},{"date":"1997-06-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.435},{"date":"1997-06-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.172},{"date":"1997-06-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.232},{"date":"1997-06-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.217},{"date":"1997-06-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.288},{"date":"1997-06-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.187},{"date":"1997-06-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.179},{"date":"1997-06-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.232},{"date":"1997-06-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.272},{"date":"1997-06-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.265},{"date":"1997-06-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.359},{"date":"1997-06-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.364},{"date":"1997-06-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.353},{"date":"1997-06-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.429},{"date":"1997-06-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.162},{"date":"1997-06-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.226},{"date":"1997-06-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.21},{"date":"1997-06-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.273},{"date":"1997-06-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.181},{"date":"1997-06-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.171},{"date":"1997-06-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.22},{"date":"1997-06-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.267},{"date":"1997-06-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.259},{"date":"1997-06-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.347},{"date":"1997-06-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.359},{"date":"1997-06-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.348},{"date":"1997-06-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.417},{"date":"1997-06-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.153},{"date":"1997-07-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.222},{"date":"1997-07-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.208},{"date":"1997-07-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.268},{"date":"1997-07-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.177},{"date":"1997-07-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.169},{"date":"1997-07-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.215},{"date":"1997-07-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.264},{"date":"1997-07-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.257},{"date":"1997-07-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.339},{"date":"1997-07-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.356},{"date":"1997-07-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.346},{"date":"1997-07-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.41},{"date":"1997-07-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.159},{"date":"1997-07-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.219},{"date":"1997-07-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.203},{"date":"1997-07-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.262},{"date":"1997-07-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.173},{"date":"1997-07-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.165},{"date":"1997-07-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.208},{"date":"1997-07-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.261},{"date":"1997-07-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.254},{"date":"1997-07-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.333},{"date":"1997-07-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.352},{"date":"1997-07-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.342},{"date":"1997-07-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.405},{"date":"1997-07-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.152},{"date":"1997-07-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.222},{"date":"1997-07-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.209},{"date":"1997-07-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.259},{"date":"1997-07-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.177},{"date":"1997-07-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.17},{"date":"1997-07-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.206},{"date":"1997-07-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.265},{"date":"1997-07-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.258},{"date":"1997-07-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.331},{"date":"1997-07-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.356},{"date":"1997-07-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.347},{"date":"1997-07-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.401},{"date":"1997-07-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.147},{"date":"1997-07-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.216},{"date":"1997-07-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.203},{"date":"1997-07-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.254},{"date":"1997-07-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.17},{"date":"1997-07-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.164},{"date":"1997-07-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.201},{"date":"1997-07-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.259},{"date":"1997-07-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.252},{"date":"1997-07-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.327},{"date":"1997-07-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.351},{"date":"1997-07-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.342},{"date":"1997-07-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.4},{"date":"1997-07-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.145},{"date":"1997-08-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.237},{"date":"1997-08-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.222},{"date":"1997-08-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.279},{"date":"1997-08-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.193},{"date":"1997-08-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.185},{"date":"1997-08-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.228},{"date":"1997-08-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.277},{"date":"1997-08-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.268},{"date":"1997-08-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.347},{"date":"1997-08-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.37},{"date":"1997-08-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.358},{"date":"1997-08-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.42},{"date":"1997-08-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.155},{"date":"1997-08-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.272},{"date":"1997-08-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.256},{"date":"1997-08-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.316},{"date":"1997-08-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.228},{"date":"1997-08-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.219},{"date":"1997-08-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.265},{"date":"1997-08-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.311},{"date":"1997-08-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.302},{"date":"1997-08-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.385},{"date":"1997-08-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.404},{"date":"1997-08-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.393},{"date":"1997-08-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.455},{"date":"1997-08-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.168},{"date":"1997-08-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.274},{"date":"1997-08-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.255},{"date":"1997-08-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.331},{"date":"1997-08-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.229},{"date":"1997-08-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.218},{"date":"1997-08-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.277},{"date":"1997-08-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.312},{"date":"1997-08-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.301},{"date":"1997-08-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.401},{"date":"1997-08-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.408},{"date":"1997-08-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.393},{"date":"1997-08-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.473},{"date":"1997-08-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.167},{"date":"1997-08-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.288},{"date":"1997-08-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.268},{"date":"1997-08-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.357},{"date":"1997-08-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.244},{"date":"1997-08-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.23},{"date":"1997-08-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.302},{"date":"1997-08-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.327},{"date":"1997-08-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.314},{"date":"1997-08-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.428},{"date":"1997-08-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.422},{"date":"1997-08-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.406},{"date":"1997-08-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.498},{"date":"1997-08-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.169},{"date":"1997-09-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.287},{"date":"1997-09-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.267},{"date":"1997-09-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.365},{"date":"1997-09-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.243},{"date":"1997-09-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.229},{"date":"1997-09-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.309},{"date":"1997-09-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.326},{"date":"1997-09-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.315},{"date":"1997-09-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.434},{"date":"1997-09-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.422},{"date":"1997-09-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.407},{"date":"1997-09-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.504},{"date":"1997-09-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.165},{"date":"1997-09-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.288},{"date":"1997-09-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.266},{"date":"1997-09-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.369},{"date":"1997-09-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.243},{"date":"1997-09-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.227},{"date":"1997-09-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.313},{"date":"1997-09-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.326},{"date":"1997-09-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.313},{"date":"1997-09-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.44},{"date":"1997-09-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.423},{"date":"1997-09-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.406},{"date":"1997-09-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.509},{"date":"1997-09-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.163},{"date":"1997-09-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.281},{"date":"1997-09-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.258},{"date":"1997-09-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.371},{"date":"1997-09-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.236},{"date":"1997-09-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.219},{"date":"1997-09-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.315},{"date":"1997-09-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.318},{"date":"1997-09-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.305},{"date":"1997-09-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.443},{"date":"1997-09-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.416},{"date":"1997-09-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.398},{"date":"1997-09-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.509},{"date":"1997-09-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.156},{"date":"1997-09-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.269},{"date":"1997-09-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.247},{"date":"1997-09-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.363},{"date":"1997-09-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.225},{"date":"1997-09-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.208},{"date":"1997-09-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.305},{"date":"1997-09-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.306},{"date":"1997-09-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.294},{"date":"1997-09-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.437},{"date":"1997-09-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.404},{"date":"1997-09-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.387},{"date":"1997-09-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.502},{"date":"1997-09-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.154},{"date":"1997-09-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.255},{"date":"1997-09-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.233},{"date":"1997-09-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.352},{"date":"1997-09-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.21},{"date":"1997-09-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.195},{"date":"1997-09-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.293},{"date":"1997-09-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.292},{"date":"1997-09-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.281},{"date":"1997-09-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.426},{"date":"1997-09-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.391},{"date":"1997-09-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.373},{"date":"1997-09-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.492},{"date":"1997-09-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.16},{"date":"1997-10-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.254},{"date":"1997-10-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.234},{"date":"1997-10-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.347},{"date":"1997-10-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.209},{"date":"1997-10-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.195},{"date":"1997-10-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.288},{"date":"1997-10-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.292},{"date":"1997-10-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.283},{"date":"1997-10-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.42},{"date":"1997-10-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.39},{"date":"1997-10-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.374},{"date":"1997-10-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.486},{"date":"1997-10-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.175},{"date":"1997-10-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.248},{"date":"1997-10-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.227},{"date":"1997-10-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.338},{"date":"1997-10-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.203},{"date":"1997-10-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.187},{"date":"1997-10-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.277},{"date":"1997-10-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.287},{"date":"1997-10-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.276},{"date":"1997-10-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.414},{"date":"1997-10-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.385},{"date":"1997-10-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.368},{"date":"1997-10-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.48},{"date":"1997-10-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.185},{"date":"1997-10-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.238},{"date":"1997-10-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.218},{"date":"1997-10-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.33},{"date":"1997-10-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.193},{"date":"1997-10-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.178},{"date":"1997-10-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.269},{"date":"1997-10-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.278},{"date":"1997-10-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.268},{"date":"1997-10-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.407},{"date":"1997-10-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.376},{"date":"1997-10-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.36},{"date":"1997-10-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.472},{"date":"1997-10-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.185},{"date":"1997-10-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.228},{"date":"1997-10-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.208},{"date":"1997-10-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.32},{"date":"1997-10-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.182},{"date":"1997-10-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.168},{"date":"1997-10-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.26},{"date":"1997-10-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.267},{"date":"1997-10-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.258},{"date":"1997-10-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.398},{"date":"1997-10-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.366},{"date":"1997-10-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.351},{"date":"1997-10-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.461},{"date":"1997-10-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.185},{"date":"1997-11-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.221},{"date":"1997-11-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.202},{"date":"1997-11-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.311},{"date":"1997-11-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.176},{"date":"1997-11-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.163},{"date":"1997-11-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.254},{"date":"1997-11-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.259},{"date":"1997-11-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.251},{"date":"1997-11-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.387},{"date":"1997-11-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.357},{"date":"1997-11-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.344},{"date":"1997-11-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.452},{"date":"1997-11-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.188},{"date":"1997-11-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.222},{"date":"1997-11-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.204},{"date":"1997-11-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.304},{"date":"1997-11-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.177},{"date":"1997-11-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.164},{"date":"1997-11-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.247},{"date":"1997-11-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.261},{"date":"1997-11-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.253},{"date":"1997-11-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.38},{"date":"1997-11-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.36},{"date":"1997-11-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.347},{"date":"1997-11-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.446},{"date":"1997-11-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.19},{"date":"1997-11-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.213},{"date":"1997-11-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.195},{"date":"1997-11-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.296},{"date":"1997-11-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.168},{"date":"1997-11-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.156},{"date":"1997-11-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.238},{"date":"1997-11-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.251},{"date":"1997-11-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.244},{"date":"1997-11-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.372},{"date":"1997-11-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.352},{"date":"1997-11-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.339},{"date":"1997-11-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.437},{"date":"1997-11-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.195},{"date":"1997-11-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.207},{"date":"1997-11-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.19},{"date":"1997-11-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.288},{"date":"1997-11-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.162},{"date":"1997-11-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.15},{"date":"1997-11-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.232},{"date":"1997-11-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.246},{"date":"1997-11-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.239},{"date":"1997-11-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.365},{"date":"1997-11-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.346},{"date":"1997-11-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.333},{"date":"1997-11-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.43},{"date":"1997-11-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.193},{"date":"1997-12-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.197},{"date":"1997-12-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.18},{"date":"1997-12-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.282},{"date":"1997-12-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.152},{"date":"1997-12-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.14},{"date":"1997-12-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.226},{"date":"1997-12-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.236},{"date":"1997-12-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.23},{"date":"1997-12-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.358},{"date":"1997-12-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.336},{"date":"1997-12-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.324},{"date":"1997-12-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.424},{"date":"1997-12-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.189},{"date":"1997-12-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.187},{"date":"1997-12-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.168},{"date":"1997-12-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.27},{"date":"1997-12-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.141},{"date":"1997-12-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.128},{"date":"1997-12-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.215},{"date":"1997-12-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.226},{"date":"1997-12-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.218},{"date":"1997-12-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.347},{"date":"1997-12-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.326},{"date":"1997-12-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.312},{"date":"1997-12-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.412},{"date":"1997-12-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.174},{"date":"1997-12-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.176},{"date":"1997-12-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.158},{"date":"1997-12-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.26},{"date":"1997-12-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.131},{"date":"1997-12-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.118},{"date":"1997-12-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.207},{"date":"1997-12-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.215},{"date":"1997-12-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.208},{"date":"1997-12-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.337},{"date":"1997-12-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.315},{"date":"1997-12-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.301},{"date":"1997-12-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.401},{"date":"1997-12-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.162},{"date":"1997-12-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.167},{"date":"1997-12-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.148},{"date":"1997-12-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.249},{"date":"1997-12-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.121},{"date":"1997-12-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.108},{"date":"1997-12-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.197},{"date":"1997-12-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.205},{"date":"1997-12-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.198},{"date":"1997-12-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.324},{"date":"1997-12-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.307},{"date":"1997-12-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.293},{"date":"1997-12-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.389},{"date":"1997-12-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.155},{"date":"1997-12-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.158},{"date":"1997-12-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.139},{"date":"1997-12-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.243},{"date":"1997-12-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.112},{"date":"1997-12-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.099},{"date":"1997-12-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.19},{"date":"1997-12-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.196},{"date":"1997-12-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.189},{"date":"1997-12-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.319},{"date":"1997-12-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.298},{"date":"1997-12-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.284},{"date":"1997-12-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.384},{"date":"1997-12-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.15},{"date":"1998-01-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.148},{"date":"1998-01-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.13},{"date":"1998-01-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.236},{"date":"1998-01-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.102},{"date":"1998-01-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.089},{"date":"1998-01-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.183},{"date":"1998-01-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.188},{"date":"1998-01-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.181},{"date":"1998-01-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.313},{"date":"1998-01-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.29},{"date":"1998-01-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.276},{"date":"1998-01-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.378},{"date":"1998-01-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.147},{"date":"1998-01-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.14},{"date":"1998-01-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.123},{"date":"1998-01-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.222},{"date":"1998-01-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.094},{"date":"1998-01-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.083},{"date":"1998-01-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.169},{"date":"1998-01-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.181},{"date":"1998-01-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.174},{"date":"1998-01-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.299},{"date":"1998-01-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.281},{"date":"1998-01-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.268},{"date":"1998-01-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.365},{"date":"1998-01-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.126},{"date":"1998-01-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.129},{"date":"1998-01-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.112},{"date":"1998-01-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.204},{"date":"1998-01-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.083},{"date":"1998-01-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.072},{"date":"1998-01-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.152},{"date":"1998-01-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.168},{"date":"1998-01-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.162},{"date":"1998-01-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.277},{"date":"1998-01-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.269},{"date":"1998-01-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.257},{"date":"1998-01-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.345},{"date":"1998-01-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.109},{"date":"1998-01-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.112},{"date":"1998-01-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.095},{"date":"1998-01-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.19},{"date":"1998-01-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.066},{"date":"1998-01-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.055},{"date":"1998-01-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.138},{"date":"1998-01-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.152},{"date":"1998-01-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.146},{"date":"1998-01-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.263},{"date":"1998-01-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.253},{"date":"1998-01-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.241},{"date":"1998-01-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.333},{"date":"1998-01-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.096},{"date":"1998-02-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.108},{"date":"1998-02-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.092},{"date":"1998-02-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.177},{"date":"1998-02-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.061},{"date":"1998-02-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.051},{"date":"1998-02-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.124},{"date":"1998-02-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.149},{"date":"1998-02-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.144},{"date":"1998-02-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.249},{"date":"1998-02-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.25},{"date":"1998-02-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.239},{"date":"1998-02-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.319},{"date":"1998-02-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.091},{"date":"1998-02-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.101},{"date":"1998-02-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.086},{"date":"1998-02-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.165},{"date":"1998-02-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.053},{"date":"1998-02-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.045},{"date":"1998-02-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.113},{"date":"1998-02-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.143},{"date":"1998-02-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.138},{"date":"1998-02-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.237},{"date":"1998-02-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.243},{"date":"1998-02-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.233},{"date":"1998-02-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.307},{"date":"1998-02-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.085},{"date":"1998-02-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.085},{"date":"1998-02-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.072},{"date":"1998-02-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.148},{"date":"1998-02-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.038},{"date":"1998-02-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.032},{"date":"1998-02-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.095},{"date":"1998-02-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.127},{"date":"1998-02-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.123},{"date":"1998-02-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.219},{"date":"1998-02-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.226},{"date":"1998-02-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.217},{"date":"1998-02-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.291},{"date":"1998-02-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.082},{"date":"1998-02-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.09},{"date":"1998-02-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.078},{"date":"1998-02-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.137},{"date":"1998-02-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.044},{"date":"1998-02-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.038},{"date":"1998-02-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.086},{"date":"1998-02-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.132},{"date":"1998-02-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.128},{"date":"1998-02-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.209},{"date":"1998-02-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.23},{"date":"1998-02-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.221},{"date":"1998-02-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.279},{"date":"1998-02-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.079},{"date":"1998-03-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.075},{"date":"1998-03-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.065},{"date":"1998-03-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.117},{"date":"1998-03-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.028},{"date":"1998-03-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.025},{"date":"1998-03-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.065},{"date":"1998-03-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.119},{"date":"1998-03-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.117},{"date":"1998-03-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.187},{"date":"1998-03-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.216},{"date":"1998-03-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.211},{"date":"1998-03-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.259},{"date":"1998-03-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.074},{"date":"1998-03-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.065},{"date":"1998-03-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.057},{"date":"1998-03-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.098},{"date":"1998-03-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.018},{"date":"1998-03-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.017},{"date":"1998-03-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.045},{"date":"1998-03-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.111},{"date":"1998-03-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.11},{"date":"1998-03-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.17},{"date":"1998-03-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.205},{"date":"1998-03-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.203},{"date":"1998-03-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.241},{"date":"1998-03-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.066},{"date":"1998-03-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.055},{"date":"1998-03-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.047},{"date":"1998-03-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.088},{"date":"1998-03-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.008},{"date":"1998-03-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.006},{"date":"1998-03-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.035},{"date":"1998-03-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.101},{"date":"1998-03-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.1},{"date":"1998-03-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.159},{"date":"1998-03-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.195},{"date":"1998-03-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.192},{"date":"1998-03-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.232},{"date":"1998-03-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.057},{"date":"1998-03-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.047},{"date":"1998-03-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.038},{"date":"1998-03-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.081},{"date":"1998-03-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1},{"date":"1998-03-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.998},{"date":"1998-03-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.029},{"date":"1998-03-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.091},{"date":"1998-03-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.09},{"date":"1998-03-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.151},{"date":"1998-03-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.185},{"date":"1998-03-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.181},{"date":"1998-03-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.225},{"date":"1998-03-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.049},{"date":"1998-03-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.077},{"date":"1998-03-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.066},{"date":"1998-03-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.107},{"date":"1998-03-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.03},{"date":"1998-03-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.026},{"date":"1998-03-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.057},{"date":"1998-03-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.121},{"date":"1998-03-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.117},{"date":"1998-03-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.177},{"date":"1998-03-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.215},{"date":"1998-03-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.21},{"date":"1998-03-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.251},{"date":"1998-03-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.068},{"date":"1998-04-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.074},{"date":"1998-04-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.063},{"date":"1998-04-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.108},{"date":"1998-04-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.028},{"date":"1998-04-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.023},{"date":"1998-04-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.059},{"date":"1998-04-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.118},{"date":"1998-04-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.114},{"date":"1998-04-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.176},{"date":"1998-04-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.212},{"date":"1998-04-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.206},{"date":"1998-04-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.248},{"date":"1998-04-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.067},{"date":"1998-04-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.072},{"date":"1998-04-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.058},{"date":"1998-04-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.113},{"date":"1998-04-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.025},{"date":"1998-04-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.018},{"date":"1998-04-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.066},{"date":"1998-04-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.115},{"date":"1998-04-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.111},{"date":"1998-04-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.181},{"date":"1998-04-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.21},{"date":"1998-04-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.203},{"date":"1998-04-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.252},{"date":"1998-04-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.065},{"date":"1998-04-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.075},{"date":"1998-04-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.062},{"date":"1998-04-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.112},{"date":"1998-04-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.028},{"date":"1998-04-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.021},{"date":"1998-04-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.065},{"date":"1998-04-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.118},{"date":"1998-04-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.114},{"date":"1998-04-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.18},{"date":"1998-04-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.214},{"date":"1998-04-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.208},{"date":"1998-04-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.251},{"date":"1998-04-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.065},{"date":"1998-04-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.086},{"date":"1998-04-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.073},{"date":"1998-04-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.123},{"date":"1998-04-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.04},{"date":"1998-04-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.032},{"date":"1998-04-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.077},{"date":"1998-04-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.128},{"date":"1998-04-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.123},{"date":"1998-04-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.191},{"date":"1998-04-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.227},{"date":"1998-04-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.22},{"date":"1998-04-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.26},{"date":"1998-04-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.07},{"date":"1998-05-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.095},{"date":"1998-05-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.079},{"date":"1998-05-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.149},{"date":"1998-05-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.049},{"date":"1998-05-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.038},{"date":"1998-05-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.101},{"date":"1998-05-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.137},{"date":"1998-05-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.131},{"date":"1998-05-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.221},{"date":"1998-05-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.236},{"date":"1998-05-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.227},{"date":"1998-05-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.283},{"date":"1998-05-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.072},{"date":"1998-05-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.109},{"date":"1998-05-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.092},{"date":"1998-05-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.161},{"date":"1998-05-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.063},{"date":"1998-05-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.052},{"date":"1998-05-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.115},{"date":"1998-05-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.15},{"date":"1998-05-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.144},{"date":"1998-05-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.232},{"date":"1998-05-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.247},{"date":"1998-05-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.237},{"date":"1998-05-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.295},{"date":"1998-05-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.075},{"date":"1998-05-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.109},{"date":"1998-05-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.092},{"date":"1998-05-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.175},{"date":"1998-05-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.072},{"date":"1998-05-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.055},{"date":"1998-05-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.12},{"date":"1998-05-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.161},{"date":"1998-05-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.137},{"date":"1998-05-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.24},{"date":"1998-05-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.246},{"date":"1998-05-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.228},{"date":"1998-05-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.308},{"date":"1998-05-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.069},{"date":"1998-05-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.108},{"date":"1998-05-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.09},{"date":"1998-05-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.175},{"date":"1998-05-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.07},{"date":"1998-05-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.052},{"date":"1998-05-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.12},{"date":"1998-05-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.16},{"date":"1998-05-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.138},{"date":"1998-05-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.236},{"date":"1998-05-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.245},{"date":"1998-05-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.226},{"date":"1998-05-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.307},{"date":"1998-05-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.06},{"date":"1998-06-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.104},{"date":"1998-06-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.086},{"date":"1998-06-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.172},{"date":"1998-06-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.066},{"date":"1998-06-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.047},{"date":"1998-06-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.119},{"date":"1998-06-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.156},{"date":"1998-06-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.132},{"date":"1998-06-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.234},{"date":"1998-06-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.242},{"date":"1998-06-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.224},{"date":"1998-06-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.304},{"date":"1998-06-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.053},{"date":"1998-06-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.113},{"date":"1998-06-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.097},{"date":"1998-06-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.17},{"date":"1998-06-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.075},{"date":"1998-06-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.06},{"date":"1998-06-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.116},{"date":"1998-06-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.164},{"date":"1998-06-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.142},{"date":"1998-06-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.232},{"date":"1998-06-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.248},{"date":"1998-06-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.232},{"date":"1998-06-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.305},{"date":"1998-06-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.045},{"date":"1998-06-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.104},{"date":"1998-06-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.087},{"date":"1998-06-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.166},{"date":"1998-06-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.066},{"date":"1998-06-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.049},{"date":"1998-06-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.111},{"date":"1998-06-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.156},{"date":"1998-06-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.134},{"date":"1998-06-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.23},{"date":"1998-06-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.243},{"date":"1998-06-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.226},{"date":"1998-06-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.302},{"date":"1998-06-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.04},{"date":"1998-06-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.096},{"date":"1998-06-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.079},{"date":"1998-06-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.161},{"date":"1998-06-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.058},{"date":"1998-06-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.041},{"date":"1998-06-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.106},{"date":"1998-06-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.15},{"date":"1998-06-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.127},{"date":"1998-06-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.226},{"date":"1998-06-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.237},{"date":"1998-06-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.218},{"date":"1998-06-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.301},{"date":"1998-06-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.033},{"date":"1998-06-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.096},{"date":"1998-06-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.081},{"date":"1998-06-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.156},{"date":"1998-06-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.057},{"date":"1998-06-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.042},{"date":"1998-06-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.099},{"date":"1998-06-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.149},{"date":"1998-06-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.128},{"date":"1998-06-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.22},{"date":"1998-06-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.237},{"date":"1998-06-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.22},{"date":"1998-06-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.296},{"date":"1998-06-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.034},{"date":"1998-07-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.097},{"date":"1998-07-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.08},{"date":"1998-07-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.157},{"date":"1998-07-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.058},{"date":"1998-07-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.041},{"date":"1998-07-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.103},{"date":"1998-07-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.149},{"date":"1998-07-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.127},{"date":"1998-07-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.22},{"date":"1998-07-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.237},{"date":"1998-07-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.219},{"date":"1998-07-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.296},{"date":"1998-07-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.036},{"date":"1998-07-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.092},{"date":"1998-07-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.076},{"date":"1998-07-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.154},{"date":"1998-07-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.054},{"date":"1998-07-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.037},{"date":"1998-07-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.099},{"date":"1998-07-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.146},{"date":"1998-07-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.123},{"date":"1998-07-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.218},{"date":"1998-07-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.233},{"date":"1998-07-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.215},{"date":"1998-07-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.294},{"date":"1998-07-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.031},{"date":"1998-07-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.097},{"date":"1998-07-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.082},{"date":"1998-07-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.153},{"date":"1998-07-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.059},{"date":"1998-07-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.044},{"date":"1998-07-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.098},{"date":"1998-07-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.149},{"date":"1998-07-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.128},{"date":"1998-07-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.217},{"date":"1998-07-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.235},{"date":"1998-07-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.217},{"date":"1998-07-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.293},{"date":"1998-07-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.027},{"date":"1998-07-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.088},{"date":"1998-07-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.073},{"date":"1998-07-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.147},{"date":"1998-07-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.05},{"date":"1998-07-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.035},{"date":"1998-07-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.09},{"date":"1998-07-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.14},{"date":"1998-07-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.118},{"date":"1998-07-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.212},{"date":"1998-07-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.229},{"date":"1998-07-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.211},{"date":"1998-07-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.289},{"date":"1998-07-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.02},{"date":"1998-08-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.077},{"date":"1998-08-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.061},{"date":"1998-08-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.139},{"date":"1998-08-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.039},{"date":"1998-08-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.023},{"date":"1998-08-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.082},{"date":"1998-08-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.131},{"date":"1998-08-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.109},{"date":"1998-08-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.204},{"date":"1998-08-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.218},{"date":"1998-08-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.199},{"date":"1998-08-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.282},{"date":"1998-08-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.016},{"date":"1998-08-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.072},{"date":"1998-08-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.056},{"date":"1998-08-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.134},{"date":"1998-08-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.033},{"date":"1998-08-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.018},{"date":"1998-08-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.076},{"date":"1998-08-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.124},{"date":"1998-08-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.102},{"date":"1998-08-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.199},{"date":"1998-08-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.214},{"date":"1998-08-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.195},{"date":"1998-08-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.278},{"date":"1998-08-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.01},{"date":"1998-08-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.065},{"date":"1998-08-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.049},{"date":"1998-08-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.13},{"date":"1998-08-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.026},{"date":"1998-08-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.011},{"date":"1998-08-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.072},{"date":"1998-08-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.119},{"date":"1998-08-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.097},{"date":"1998-08-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.194},{"date":"1998-08-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.207},{"date":"1998-08-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.188},{"date":"1998-08-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.275},{"date":"1998-08-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.007},{"date":"1998-08-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.058},{"date":"1998-08-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.042},{"date":"1998-08-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.123},{"date":"1998-08-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.019},{"date":"1998-08-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.004},{"date":"1998-08-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.065},{"date":"1998-08-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.113},{"date":"1998-08-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.09},{"date":"1998-08-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.19},{"date":"1998-08-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.2},{"date":"1998-08-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.181},{"date":"1998-08-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.268},{"date":"1998-08-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.004},{"date":"1998-08-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.053},{"date":"1998-08-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.037},{"date":"1998-08-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.116},{"date":"1998-08-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.013},{"date":"1998-08-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.998},{"date":"1998-08-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.059},{"date":"1998-08-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.107},{"date":"1998-08-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.085},{"date":"1998-08-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.181},{"date":"1998-08-31","fuel":"gasoline","grade":"premium","formulation":"all","price":1.196},{"date":"1998-08-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.178},{"date":"1998-08-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.261},{"date":"1998-08-31","fuel":"diesel","grade":"all","formulation":"NA","price":1},{"date":"1998-09-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.046},{"date":"1998-09-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.03},{"date":"1998-09-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.112},{"date":"1998-09-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.007},{"date":"1998-09-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.991},{"date":"1998-09-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.054},{"date":"1998-09-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.101},{"date":"1998-09-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.079},{"date":"1998-09-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.177},{"date":"1998-09-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.191},{"date":"1998-09-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.172},{"date":"1998-09-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.258},{"date":"1998-09-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.009},{"date":"1998-09-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.042},{"date":"1998-09-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.026},{"date":"1998-09-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.107},{"date":"1998-09-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.002},{"date":"1998-09-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.987},{"date":"1998-09-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.049},{"date":"1998-09-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.097},{"date":"1998-09-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.075},{"date":"1998-09-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.173},{"date":"1998-09-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.187},{"date":"1998-09-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.168},{"date":"1998-09-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.254},{"date":"1998-09-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.019},{"date":"1998-09-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.053},{"date":"1998-09-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.038},{"date":"1998-09-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.114},{"date":"1998-09-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.014},{"date":"1998-09-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.999},{"date":"1998-09-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.055},{"date":"1998-09-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.108},{"date":"1998-09-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.086},{"date":"1998-09-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.182},{"date":"1998-09-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.197},{"date":"1998-09-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.179},{"date":"1998-09-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.261},{"date":"1998-09-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.03},{"date":"1998-09-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.053},{"date":"1998-09-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.037},{"date":"1998-09-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.117},{"date":"1998-09-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.014},{"date":"1998-09-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.999},{"date":"1998-09-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.058},{"date":"1998-09-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.107},{"date":"1998-09-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.085},{"date":"1998-09-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.183},{"date":"1998-09-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.197},{"date":"1998-09-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.178},{"date":"1998-09-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.263},{"date":"1998-09-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.039},{"date":"1998-10-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.059},{"date":"1998-10-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.045},{"date":"1998-10-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.116},{"date":"1998-10-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.019},{"date":"1998-10-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.006},{"date":"1998-10-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.057},{"date":"1998-10-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.113},{"date":"1998-10-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.093},{"date":"1998-10-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.181},{"date":"1998-10-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.202},{"date":"1998-10-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.186},{"date":"1998-10-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.261},{"date":"1998-10-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.041},{"date":"1998-10-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.063},{"date":"1998-10-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.05},{"date":"1998-10-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.117},{"date":"1998-10-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.022},{"date":"1998-10-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.01},{"date":"1998-10-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.06},{"date":"1998-10-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.118},{"date":"1998-10-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.1},{"date":"1998-10-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.184},{"date":"1998-10-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.209},{"date":"1998-10-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.194},{"date":"1998-10-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.263},{"date":"1998-10-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.041},{"date":"1998-10-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.058},{"date":"1998-10-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.046},{"date":"1998-10-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.113},{"date":"1998-10-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.019},{"date":"1998-10-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.007},{"date":"1998-10-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.055},{"date":"1998-10-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.113},{"date":"1998-10-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.095},{"date":"1998-10-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.179},{"date":"1998-10-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.204},{"date":"1998-10-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.19},{"date":"1998-10-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.257},{"date":"1998-10-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.036},{"date":"1998-10-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.055},{"date":"1998-10-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.04},{"date":"1998-10-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.115},{"date":"1998-10-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.015},{"date":"1998-10-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.001},{"date":"1998-10-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.057},{"date":"1998-10-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.109},{"date":"1998-10-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.089},{"date":"1998-10-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.18},{"date":"1998-10-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.2},{"date":"1998-10-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.183},{"date":"1998-10-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.26},{"date":"1998-10-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.036},{"date":"1998-11-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.05},{"date":"1998-11-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.037},{"date":"1998-11-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.11},{"date":"1998-11-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.01},{"date":"1998-11-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.997},{"date":"1998-11-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.052},{"date":"1998-11-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.105},{"date":"1998-11-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.086},{"date":"1998-11-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.176},{"date":"1998-11-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.196},{"date":"1998-11-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.18},{"date":"1998-11-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.255},{"date":"1998-11-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.035},{"date":"1998-11-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.048},{"date":"1998-11-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.034},{"date":"1998-11-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.109},{"date":"1998-11-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.008},{"date":"1998-11-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.994},{"date":"1998-11-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.051},{"date":"1998-11-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.104},{"date":"1998-11-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.083},{"date":"1998-11-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.175},{"date":"1998-11-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.194},{"date":"1998-11-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.178},{"date":"1998-11-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.256},{"date":"1998-11-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.034},{"date":"1998-11-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.037},{"date":"1998-11-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.022},{"date":"1998-11-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.103},{"date":"1998-11-16","fuel":"gasoline","grade":"regular","formulation":"all","price":0.996},{"date":"1998-11-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.981},{"date":"1998-11-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.045},{"date":"1998-11-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.094},{"date":"1998-11-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.073},{"date":"1998-11-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.17},{"date":"1998-11-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.183},{"date":"1998-11-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.166},{"date":"1998-11-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.248},{"date":"1998-11-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.026},{"date":"1998-11-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.03},{"date":"1998-11-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.012},{"date":"1998-11-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.105},{"date":"1998-11-23","fuel":"gasoline","grade":"regular","formulation":"all","price":0.989},{"date":"1998-11-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.971},{"date":"1998-11-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.044},{"date":"1998-11-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.089},{"date":"1998-11-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.065},{"date":"1998-11-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.174},{"date":"1998-11-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.177},{"date":"1998-11-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.156},{"date":"1998-11-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.252},{"date":"1998-11-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.012},{"date":"1998-11-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.015},{"date":"1998-11-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.995},{"date":"1998-11-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.099},{"date":"1998-11-30","fuel":"gasoline","grade":"regular","formulation":"all","price":0.974},{"date":"1998-11-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.954},{"date":"1998-11-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.035},{"date":"1998-11-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.074},{"date":"1998-11-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.048},{"date":"1998-11-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.169},{"date":"1998-11-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.164},{"date":"1998-11-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.141},{"date":"1998-11-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.248},{"date":"1998-11-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.004},{"date":"1998-12-07","fuel":"gasoline","grade":"all","formulation":"all","price":0.996},{"date":"1998-12-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.974},{"date":"1998-12-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.088},{"date":"1998-12-07","fuel":"gasoline","grade":"regular","formulation":"all","price":0.954},{"date":"1998-12-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.933},{"date":"1998-12-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.024},{"date":"1998-12-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.056},{"date":"1998-12-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.027},{"date":"1998-12-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.157},{"date":"1998-12-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.146},{"date":"1998-12-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.12},{"date":"1998-12-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.238},{"date":"1998-12-07","fuel":"diesel","grade":"all","formulation":"NA","price":0.986},{"date":"1998-12-14","fuel":"gasoline","grade":"all","formulation":"all","price":0.987},{"date":"1998-12-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.964},{"date":"1998-12-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.081},{"date":"1998-12-14","fuel":"gasoline","grade":"regular","formulation":"all","price":0.945},{"date":"1998-12-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.923},{"date":"1998-12-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.017},{"date":"1998-12-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.046},{"date":"1998-12-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.016},{"date":"1998-12-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.152},{"date":"1998-12-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.139},{"date":"1998-12-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.112},{"date":"1998-12-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.233},{"date":"1998-12-14","fuel":"diesel","grade":"all","formulation":"NA","price":0.972},{"date":"1998-12-21","fuel":"gasoline","grade":"all","formulation":"all","price":0.986},{"date":"1998-12-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.962},{"date":"1998-12-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.079},{"date":"1998-12-21","fuel":"gasoline","grade":"regular","formulation":"all","price":0.944},{"date":"1998-12-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.921},{"date":"1998-12-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.014},{"date":"1998-12-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.044},{"date":"1998-12-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.014},{"date":"1998-12-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.152},{"date":"1998-12-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.135},{"date":"1998-12-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.107},{"date":"1998-12-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.23},{"date":"1998-12-21","fuel":"diesel","grade":"all","formulation":"NA","price":0.968},{"date":"1998-12-28","fuel":"gasoline","grade":"all","formulation":"all","price":0.979},{"date":"1998-12-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.955},{"date":"1998-12-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.074},{"date":"1998-12-28","fuel":"gasoline","grade":"regular","formulation":"all","price":0.937},{"date":"1998-12-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.914},{"date":"1998-12-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.009},{"date":"1998-12-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.038},{"date":"1998-12-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.008},{"date":"1998-12-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.147},{"date":"1998-12-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.129},{"date":"1998-12-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.1},{"date":"1998-12-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.226},{"date":"1998-12-28","fuel":"diesel","grade":"all","formulation":"NA","price":0.966},{"date":"1999-01-04","fuel":"gasoline","grade":"all","formulation":"all","price":0.977},{"date":"1999-01-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.953},{"date":"1999-01-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.071},{"date":"1999-01-04","fuel":"gasoline","grade":"regular","formulation":"all","price":0.935},{"date":"1999-01-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.913},{"date":"1999-01-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.006},{"date":"1999-01-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.036},{"date":"1999-01-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.006},{"date":"1999-01-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.143},{"date":"1999-01-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.126},{"date":"1999-01-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.098},{"date":"1999-01-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.223},{"date":"1999-01-04","fuel":"diesel","grade":"all","formulation":"NA","price":0.965},{"date":"1999-01-11","fuel":"gasoline","grade":"all","formulation":"all","price":0.982},{"date":"1999-01-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.96},{"date":"1999-01-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.068},{"date":"1999-01-11","fuel":"gasoline","grade":"regular","formulation":"all","price":0.941},{"date":"1999-01-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.92},{"date":"1999-01-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.005},{"date":"1999-01-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.039},{"date":"1999-01-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.011},{"date":"1999-01-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.139},{"date":"1999-01-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.129},{"date":"1999-01-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.102},{"date":"1999-01-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.219},{"date":"1999-01-11","fuel":"diesel","grade":"all","formulation":"NA","price":0.967},{"date":"1999-01-18","fuel":"gasoline","grade":"all","formulation":"all","price":0.985},{"date":"1999-01-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.961},{"date":"1999-01-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.073},{"date":"1999-01-18","fuel":"gasoline","grade":"regular","formulation":"all","price":0.944},{"date":"1999-01-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.921},{"date":"1999-01-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.013},{"date":"1999-01-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.042},{"date":"1999-01-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.012},{"date":"1999-01-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.143},{"date":"1999-01-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.131},{"date":"1999-01-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.104},{"date":"1999-01-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.221},{"date":"1999-01-18","fuel":"diesel","grade":"all","formulation":"NA","price":0.97},{"date":"1999-01-25","fuel":"gasoline","grade":"all","formulation":"all","price":0.977},{"date":"1999-01-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.954},{"date":"1999-01-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.067},{"date":"1999-01-25","fuel":"gasoline","grade":"regular","formulation":"all","price":0.936},{"date":"1999-01-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.913},{"date":"1999-01-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.006},{"date":"1999-01-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.035},{"date":"1999-01-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.006},{"date":"1999-01-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.137},{"date":"1999-01-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.125},{"date":"1999-01-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.098},{"date":"1999-01-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.216},{"date":"1999-01-25","fuel":"diesel","grade":"all","formulation":"NA","price":0.964},{"date":"1999-02-01","fuel":"gasoline","grade":"all","formulation":"all","price":0.971},{"date":"1999-02-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.948},{"date":"1999-02-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.056},{"date":"1999-02-01","fuel":"gasoline","grade":"regular","formulation":"all","price":0.929},{"date":"1999-02-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.908},{"date":"1999-02-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":0.994},{"date":"1999-02-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.029},{"date":"1999-02-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.002},{"date":"1999-02-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.127},{"date":"1999-02-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.12},{"date":"1999-02-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.094},{"date":"1999-02-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.207},{"date":"1999-02-01","fuel":"diesel","grade":"all","formulation":"NA","price":0.962},{"date":"1999-02-08","fuel":"gasoline","grade":"all","formulation":"all","price":0.968},{"date":"1999-02-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.947},{"date":"1999-02-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.05},{"date":"1999-02-08","fuel":"gasoline","grade":"regular","formulation":"all","price":0.927},{"date":"1999-02-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.907},{"date":"1999-02-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":0.987},{"date":"1999-02-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.026},{"date":"1999-02-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":0.999},{"date":"1999-02-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.122},{"date":"1999-02-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.117},{"date":"1999-02-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.092},{"date":"1999-02-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.203},{"date":"1999-02-08","fuel":"diesel","grade":"all","formulation":"NA","price":0.962},{"date":"1999-02-15","fuel":"gasoline","grade":"all","formulation":"all","price":0.96},{"date":"1999-02-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.939},{"date":"1999-02-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.043},{"date":"1999-02-15","fuel":"gasoline","grade":"regular","formulation":"all","price":0.919},{"date":"1999-02-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.899},{"date":"1999-02-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":0.981},{"date":"1999-02-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.018},{"date":"1999-02-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":0.99},{"date":"1999-02-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.116},{"date":"1999-02-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.109},{"date":"1999-02-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.084},{"date":"1999-02-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.195},{"date":"1999-02-15","fuel":"diesel","grade":"all","formulation":"NA","price":0.959},{"date":"1999-02-22","fuel":"gasoline","grade":"all","formulation":"all","price":0.949},{"date":"1999-02-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.926},{"date":"1999-02-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.039},{"date":"1999-02-22","fuel":"gasoline","grade":"regular","formulation":"all","price":0.907},{"date":"1999-02-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.885},{"date":"1999-02-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":0.974},{"date":"1999-02-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.008},{"date":"1999-02-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":0.979},{"date":"1999-02-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.112},{"date":"1999-02-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.1},{"date":"1999-02-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.074},{"date":"1999-02-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.191},{"date":"1999-02-22","fuel":"diesel","grade":"all","formulation":"NA","price":0.953},{"date":"1999-03-01","fuel":"gasoline","grade":"all","formulation":"all","price":0.955},{"date":"1999-03-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.932},{"date":"1999-03-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.042},{"date":"1999-03-01","fuel":"gasoline","grade":"regular","formulation":"all","price":0.913},{"date":"1999-03-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.891},{"date":"1999-03-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":0.978},{"date":"1999-03-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.016},{"date":"1999-03-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":0.987},{"date":"1999-03-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.116},{"date":"1999-03-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.104},{"date":"1999-03-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.077},{"date":"1999-03-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.192},{"date":"1999-03-01","fuel":"diesel","grade":"all","formulation":"NA","price":0.956},{"date":"1999-03-08","fuel":"gasoline","grade":"all","formulation":"all","price":0.963},{"date":"1999-03-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.941},{"date":"1999-03-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.051},{"date":"1999-03-08","fuel":"gasoline","grade":"regular","formulation":"all","price":0.921},{"date":"1999-03-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.9},{"date":"1999-03-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":0.985},{"date":"1999-03-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.024},{"date":"1999-03-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":0.995},{"date":"1999-03-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.126},{"date":"1999-03-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.11},{"date":"1999-03-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.085},{"date":"1999-03-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.198},{"date":"1999-03-08","fuel":"diesel","grade":"all","formulation":"NA","price":0.964},{"date":"1999-03-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.017},{"date":"1999-03-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":0.997},{"date":"1999-03-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.09},{"date":"1999-03-15","fuel":"gasoline","grade":"regular","formulation":"all","price":0.977},{"date":"1999-03-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.958},{"date":"1999-03-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.03},{"date":"1999-03-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.074},{"date":"1999-03-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.048},{"date":"1999-03-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.162},{"date":"1999-03-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.16},{"date":"1999-03-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.137},{"date":"1999-03-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.23},{"date":"1999-03-15","fuel":"diesel","grade":"all","formulation":"NA","price":1},{"date":"1999-03-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.056},{"date":"1999-03-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.038},{"date":"1999-03-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.126},{"date":"1999-03-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.017},{"date":"1999-03-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":0.999},{"date":"1999-03-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.067},{"date":"1999-03-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.112},{"date":"1999-03-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.086},{"date":"1999-03-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.197},{"date":"1999-03-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.199},{"date":"1999-03-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.178},{"date":"1999-03-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.262},{"date":"1999-03-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.018},{"date":"1999-03-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.121},{"date":"1999-03-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.093},{"date":"1999-03-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.225},{"date":"1999-03-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.082},{"date":"1999-03-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.055},{"date":"1999-03-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.156},{"date":"1999-03-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.177},{"date":"1999-03-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.141},{"date":"1999-03-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.303},{"date":"1999-03-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.259},{"date":"1999-03-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.229},{"date":"1999-03-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.351},{"date":"1999-03-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.046},{"date":"1999-04-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.158},{"date":"1999-04-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.125},{"date":"1999-04-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.287},{"date":"1999-04-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.118},{"date":"1999-04-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.087},{"date":"1999-04-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.21},{"date":"1999-04-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.216},{"date":"1999-04-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.172},{"date":"1999-04-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.374},{"date":"1999-04-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.296},{"date":"1999-04-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.26},{"date":"1999-04-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.412},{"date":"1999-04-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.075},{"date":"1999-04-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.179},{"date":"1999-04-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.144},{"date":"1999-04-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.316},{"date":"1999-04-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.14},{"date":"1999-04-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.107},{"date":"1999-04-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.239},{"date":"1999-04-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.238},{"date":"1999-04-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.193},{"date":"1999-04-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.403},{"date":"1999-04-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.316},{"date":"1999-04-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.277},{"date":"1999-04-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.442},{"date":"1999-04-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.084},{"date":"1999-04-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.175},{"date":"1999-04-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.14},{"date":"1999-04-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.311},{"date":"1999-04-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.135},{"date":"1999-04-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.103},{"date":"1999-04-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.234},{"date":"1999-04-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.234},{"date":"1999-04-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.19},{"date":"1999-04-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.397},{"date":"1999-04-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.314},{"date":"1999-04-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.275},{"date":"1999-04-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.442},{"date":"1999-04-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.08},{"date":"1999-04-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.171},{"date":"1999-04-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.137},{"date":"1999-04-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.306},{"date":"1999-04-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.131},{"date":"1999-04-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.099},{"date":"1999-04-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.229},{"date":"1999-04-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.231},{"date":"1999-04-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.187},{"date":"1999-04-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.392},{"date":"1999-04-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.314},{"date":"1999-04-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.275},{"date":"1999-04-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.44},{"date":"1999-04-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.078},{"date":"1999-05-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.176},{"date":"1999-05-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.145},{"date":"1999-05-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.3},{"date":"1999-05-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.136},{"date":"1999-05-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.107},{"date":"1999-05-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.224},{"date":"1999-05-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.234},{"date":"1999-05-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.194},{"date":"1999-05-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.383},{"date":"1999-05-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.316},{"date":"1999-05-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.28},{"date":"1999-05-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.433},{"date":"1999-05-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.078},{"date":"1999-05-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.18},{"date":"1999-05-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.149},{"date":"1999-05-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.302},{"date":"1999-05-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.14},{"date":"1999-05-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.109},{"date":"1999-05-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.231},{"date":"1999-05-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.24},{"date":"1999-05-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.201},{"date":"1999-05-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.38},{"date":"1999-05-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.324},{"date":"1999-05-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.288},{"date":"1999-05-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.438},{"date":"1999-05-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.083},{"date":"1999-05-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.18},{"date":"1999-05-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.151},{"date":"1999-05-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.291},{"date":"1999-05-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.14},{"date":"1999-05-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.112},{"date":"1999-05-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.221},{"date":"1999-05-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.239},{"date":"1999-05-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.203},{"date":"1999-05-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.369},{"date":"1999-05-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.323},{"date":"1999-05-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.291},{"date":"1999-05-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.427},{"date":"1999-05-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.075},{"date":"1999-05-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.166},{"date":"1999-05-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.14},{"date":"1999-05-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.269},{"date":"1999-05-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.126},{"date":"1999-05-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.101},{"date":"1999-05-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.201},{"date":"1999-05-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.224},{"date":"1999-05-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.191},{"date":"1999-05-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.343},{"date":"1999-05-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.309},{"date":"1999-05-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.279},{"date":"1999-05-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.407},{"date":"1999-05-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.066},{"date":"1999-05-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.151},{"date":"1999-05-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.128},{"date":"1999-05-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.248},{"date":"1999-05-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.111},{"date":"1999-05-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.088},{"date":"1999-05-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.182},{"date":"1999-05-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.21},{"date":"1999-05-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.18},{"date":"1999-05-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.319},{"date":"1999-05-31","fuel":"gasoline","grade":"premium","formulation":"all","price":1.297},{"date":"1999-05-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.27},{"date":"1999-05-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.389},{"date":"1999-05-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.065},{"date":"1999-06-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.152},{"date":"1999-06-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.132},{"date":"1999-06-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.235},{"date":"1999-06-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.112},{"date":"1999-06-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.092},{"date":"1999-06-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.168},{"date":"1999-06-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.21},{"date":"1999-06-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.184},{"date":"1999-06-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.306},{"date":"1999-06-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.296},{"date":"1999-06-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.272},{"date":"1999-06-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.376},{"date":"1999-06-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.059},{"date":"1999-06-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.148},{"date":"1999-06-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.127},{"date":"1999-06-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.233},{"date":"1999-06-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.108},{"date":"1999-06-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.088},{"date":"1999-06-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.169},{"date":"1999-06-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.205},{"date":"1999-06-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.178},{"date":"1999-06-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.301},{"date":"1999-06-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.292},{"date":"1999-06-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.268},{"date":"1999-06-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.371},{"date":"1999-06-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.068},{"date":"1999-06-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.163},{"date":"1999-06-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.144},{"date":"1999-06-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.239},{"date":"1999-06-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.124},{"date":"1999-06-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.105},{"date":"1999-06-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.176},{"date":"1999-06-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.219},{"date":"1999-06-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.195},{"date":"1999-06-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.307},{"date":"1999-06-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.304},{"date":"1999-06-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.282},{"date":"1999-06-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.376},{"date":"1999-06-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.082},{"date":"1999-06-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.153},{"date":"1999-06-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.134},{"date":"1999-06-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.233},{"date":"1999-06-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.113},{"date":"1999-06-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.095},{"date":"1999-06-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.168},{"date":"1999-06-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.21},{"date":"1999-06-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.185},{"date":"1999-06-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.304},{"date":"1999-06-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.296},{"date":"1999-06-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.274},{"date":"1999-06-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.371},{"date":"1999-06-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.087},{"date":"1999-07-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.165},{"date":"1999-07-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.149},{"date":"1999-07-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.233},{"date":"1999-07-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.125},{"date":"1999-07-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.11},{"date":"1999-07-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.17},{"date":"1999-07-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.221},{"date":"1999-07-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.2},{"date":"1999-07-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.302},{"date":"1999-07-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.306},{"date":"1999-07-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.289},{"date":"1999-07-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.37},{"date":"1999-07-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.102},{"date":"1999-07-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.182},{"date":"1999-07-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.161},{"date":"1999-07-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.267},{"date":"1999-07-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.143},{"date":"1999-07-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.123},{"date":"1999-07-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.203},{"date":"1999-07-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.236},{"date":"1999-07-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.21},{"date":"1999-07-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.334},{"date":"1999-07-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.322},{"date":"1999-07-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.299},{"date":"1999-07-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.402},{"date":"1999-07-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.114},{"date":"1999-07-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.208},{"date":"1999-07-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.187},{"date":"1999-07-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.301},{"date":"1999-07-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.169},{"date":"1999-07-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.148},{"date":"1999-07-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.232},{"date":"1999-07-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.265},{"date":"1999-07-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.238},{"date":"1999-07-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.372},{"date":"1999-07-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.35},{"date":"1999-07-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.326},{"date":"1999-07-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.434},{"date":"1999-07-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.133},{"date":"1999-07-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.232},{"date":"1999-07-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.211},{"date":"1999-07-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.32},{"date":"1999-07-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.193},{"date":"1999-07-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.172},{"date":"1999-07-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.252},{"date":"1999-07-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.288},{"date":"1999-07-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.261},{"date":"1999-07-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.39},{"date":"1999-07-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.371},{"date":"1999-07-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.348},{"date":"1999-07-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.451},{"date":"1999-07-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.137},{"date":"1999-08-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.234},{"date":"1999-08-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.211},{"date":"1999-08-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.331},{"date":"1999-08-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.195},{"date":"1999-08-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.172},{"date":"1999-08-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.261},{"date":"1999-08-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.292},{"date":"1999-08-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.262},{"date":"1999-08-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.405},{"date":"1999-08-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.375},{"date":"1999-08-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.35},{"date":"1999-08-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.463},{"date":"1999-08-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.146},{"date":"1999-08-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.246},{"date":"1999-08-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.222},{"date":"1999-08-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.349},{"date":"1999-08-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.206},{"date":"1999-08-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.183},{"date":"1999-08-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.275},{"date":"1999-08-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.302},{"date":"1999-08-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.27},{"date":"1999-08-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.424},{"date":"1999-08-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.387},{"date":"1999-08-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.361},{"date":"1999-08-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.482},{"date":"1999-08-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.156},{"date":"1999-08-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.275},{"date":"1999-08-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.251},{"date":"1999-08-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.369},{"date":"1999-08-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.236},{"date":"1999-08-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.214},{"date":"1999-08-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.299},{"date":"1999-08-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.331},{"date":"1999-08-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.3},{"date":"1999-08-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.441},{"date":"1999-08-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.413},{"date":"1999-08-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.388},{"date":"1999-08-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.501},{"date":"1999-08-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.178},{"date":"1999-08-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.273},{"date":"1999-08-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.25},{"date":"1999-08-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.368},{"date":"1999-08-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.234},{"date":"1999-08-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.212},{"date":"1999-08-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.298},{"date":"1999-08-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.33},{"date":"1999-08-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.301},{"date":"1999-08-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.441},{"date":"1999-08-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.414},{"date":"1999-08-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.389},{"date":"1999-08-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.501},{"date":"1999-08-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.186},{"date":"1999-08-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.273},{"date":"1999-08-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.253},{"date":"1999-08-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.361},{"date":"1999-08-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.233},{"date":"1999-08-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.214},{"date":"1999-08-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.29},{"date":"1999-08-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.329},{"date":"1999-08-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.302},{"date":"1999-08-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.433},{"date":"1999-08-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.416},{"date":"1999-08-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.393},{"date":"1999-08-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.497},{"date":"1999-08-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.194},{"date":"1999-09-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.282},{"date":"1999-09-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.262},{"date":"1999-09-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.362},{"date":"1999-09-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.242},{"date":"1999-09-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.223},{"date":"1999-09-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.297},{"date":"1999-09-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.338},{"date":"1999-09-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.311},{"date":"1999-09-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.432},{"date":"1999-09-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.423},{"date":"1999-09-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.401},{"date":"1999-09-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.499},{"date":"1999-09-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.198},{"date":"1999-09-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.29},{"date":"1999-09-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.274},{"date":"1999-09-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.359},{"date":"1999-09-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.25},{"date":"1999-09-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.234},{"date":"1999-09-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.294},{"date":"1999-09-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.346},{"date":"1999-09-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.325},{"date":"1999-09-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.428},{"date":"1999-09-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.432},{"date":"1999-09-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.415},{"date":"1999-09-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.497},{"date":"1999-09-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.209},{"date":"1999-09-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.307},{"date":"1999-09-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.292},{"date":"1999-09-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.369},{"date":"1999-09-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.268},{"date":"1999-09-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.252},{"date":"1999-09-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.311},{"date":"1999-09-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.365},{"date":"1999-09-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.345},{"date":"1999-09-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.433},{"date":"1999-09-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.448},{"date":"1999-09-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.431},{"date":"1999-09-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.506},{"date":"1999-09-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.226},{"date":"1999-09-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.302},{"date":"1999-09-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.288},{"date":"1999-09-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.359},{"date":"1999-09-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.262},{"date":"1999-09-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.248},{"date":"1999-09-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.302},{"date":"1999-09-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.359},{"date":"1999-09-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.342},{"date":"1999-09-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.422},{"date":"1999-09-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.444},{"date":"1999-09-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.429},{"date":"1999-09-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.497},{"date":"1999-09-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.226},{"date":"1999-10-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.296},{"date":"1999-10-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.282},{"date":"1999-10-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.357},{"date":"1999-10-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.255},{"date":"1999-10-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.242},{"date":"1999-10-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.297},{"date":"1999-10-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.353},{"date":"1999-10-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.335},{"date":"1999-10-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.421},{"date":"1999-10-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.441},{"date":"1999-10-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.425},{"date":"1999-10-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.5},{"date":"1999-10-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.234},{"date":"1999-10-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.29},{"date":"1999-10-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.275},{"date":"1999-10-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.36},{"date":"1999-10-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.249},{"date":"1999-10-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.234},{"date":"1999-10-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.299},{"date":"1999-10-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.347},{"date":"1999-10-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.327},{"date":"1999-10-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.424},{"date":"1999-10-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.435},{"date":"1999-10-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.418},{"date":"1999-10-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.502},{"date":"1999-10-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.228},{"date":"1999-10-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.277},{"date":"1999-10-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.261},{"date":"1999-10-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.352},{"date":"1999-10-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.236},{"date":"1999-10-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.22},{"date":"1999-10-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.288},{"date":"1999-10-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.334},{"date":"1999-10-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.314},{"date":"1999-10-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.416},{"date":"1999-10-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.424},{"date":"1999-10-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.407},{"date":"1999-10-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.495},{"date":"1999-10-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.224},{"date":"1999-10-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.277},{"date":"1999-10-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.265},{"date":"1999-10-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.34},{"date":"1999-10-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.237},{"date":"1999-10-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.225},{"date":"1999-10-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.276},{"date":"1999-10-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.336},{"date":"1999-10-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.319},{"date":"1999-10-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.404},{"date":"1999-10-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.424},{"date":"1999-10-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.41},{"date":"1999-10-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.485},{"date":"1999-10-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.226},{"date":"1999-11-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.271},{"date":"1999-11-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.258},{"date":"1999-11-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.334},{"date":"1999-11-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.23},{"date":"1999-11-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.218},{"date":"1999-11-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.272},{"date":"1999-11-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.329},{"date":"1999-11-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.312},{"date":"1999-11-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.398},{"date":"1999-11-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.417},{"date":"1999-11-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.403},{"date":"1999-11-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.477},{"date":"1999-11-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.229},{"date":"1999-11-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.274},{"date":"1999-11-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.262},{"date":"1999-11-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.33},{"date":"1999-11-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.233},{"date":"1999-11-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.222},{"date":"1999-11-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.271},{"date":"1999-11-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.33},{"date":"1999-11-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.314},{"date":"1999-11-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.393},{"date":"1999-11-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.418},{"date":"1999-11-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.405},{"date":"1999-11-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.474},{"date":"1999-11-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.234},{"date":"1999-11-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.292},{"date":"1999-11-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.281},{"date":"1999-11-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.341},{"date":"1999-11-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.251},{"date":"1999-11-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.24},{"date":"1999-11-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.284},{"date":"1999-11-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.35},{"date":"1999-11-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.334},{"date":"1999-11-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.404},{"date":"1999-11-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.436},{"date":"1999-11-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.425},{"date":"1999-11-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.481},{"date":"1999-11-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.261},{"date":"1999-11-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.309},{"date":"1999-11-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.298},{"date":"1999-11-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.355},{"date":"1999-11-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.269},{"date":"1999-11-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.258},{"date":"1999-11-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.298},{"date":"1999-11-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.367},{"date":"1999-11-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.353},{"date":"1999-11-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.419},{"date":"1999-11-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.451},{"date":"1999-11-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.44},{"date":"1999-11-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.494},{"date":"1999-11-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.289},{"date":"1999-11-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.315},{"date":"1999-11-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.303},{"date":"1999-11-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.369},{"date":"1999-11-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.274},{"date":"1999-11-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.262},{"date":"1999-11-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.312},{"date":"1999-11-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.372},{"date":"1999-11-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.357},{"date":"1999-11-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.432},{"date":"1999-11-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.457},{"date":"1999-11-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.445},{"date":"1999-11-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.508},{"date":"1999-11-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.304},{"date":"1999-12-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.313},{"date":"1999-12-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.301},{"date":"1999-12-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.372},{"date":"1999-12-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.273},{"date":"1999-12-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.26},{"date":"1999-12-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.313},{"date":"1999-12-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.37},{"date":"1999-12-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.353},{"date":"1999-12-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.437},{"date":"1999-12-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.458},{"date":"1999-12-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.445},{"date":"1999-12-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.514},{"date":"1999-12-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.294},{"date":"1999-12-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.315},{"date":"1999-12-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.303},{"date":"1999-12-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.371},{"date":"1999-12-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.275},{"date":"1999-12-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.263},{"date":"1999-12-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.312},{"date":"1999-12-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.372},{"date":"1999-12-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.356},{"date":"1999-12-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.435},{"date":"1999-12-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.459},{"date":"1999-12-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.446},{"date":"1999-12-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.51},{"date":"1999-12-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.288},{"date":"1999-12-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.31},{"date":"1999-12-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.298},{"date":"1999-12-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.365},{"date":"1999-12-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.269},{"date":"1999-12-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.257},{"date":"1999-12-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.305},{"date":"1999-12-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.367},{"date":"1999-12-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.351},{"date":"1999-12-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.429},{"date":"1999-12-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.455},{"date":"1999-12-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.442},{"date":"1999-12-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.507},{"date":"1999-12-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.287},{"date":"1999-12-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.314},{"date":"1999-12-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.304},{"date":"1999-12-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.363},{"date":"1999-12-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.273},{"date":"1999-12-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.263},{"date":"1999-12-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.303},{"date":"1999-12-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.372},{"date":"1999-12-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.358},{"date":"1999-12-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.428},{"date":"1999-12-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.459},{"date":"1999-12-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.448},{"date":"1999-12-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.505},{"date":"1999-12-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.298},{"date":"2000-01-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.312},{"date":"2000-01-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.301},{"date":"2000-01-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.365},{"date":"2000-01-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.272},{"date":"2000-01-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.26},{"date":"2000-01-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.306},{"date":"2000-01-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.369},{"date":"2000-01-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.353},{"date":"2000-01-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.428},{"date":"2000-01-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.457},{"date":"2000-01-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.444},{"date":"2000-01-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.507},{"date":"2000-01-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.309},{"date":"2000-01-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.304},{"date":"2000-01-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.292},{"date":"2000-01-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.36},{"date":"2000-01-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.264},{"date":"2000-01-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.252},{"date":"2000-01-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.301},{"date":"2000-01-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.361},{"date":"2000-01-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.345},{"date":"2000-01-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.423},{"date":"2000-01-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.45},{"date":"2000-01-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.437},{"date":"2000-01-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.502},{"date":"2000-01-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.307},{"date":"2000-01-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.318},{"date":"2000-01-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.308},{"date":"2000-01-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.36},{"date":"2000-01-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.277},{"date":"2000-01-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.268},{"date":"2000-01-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.303},{"date":"2000-01-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.375},{"date":"2000-01-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.362},{"date":"2000-01-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.423},{"date":"2000-01-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.461},{"date":"2000-01-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.451},{"date":"2000-01-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.503},{"date":"2000-01-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.307},{"date":"2000-01-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.354},{"date":"2000-01-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.346},{"date":"2000-01-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.385},{"date":"2000-01-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.315},{"date":"2000-01-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.307},{"date":"2000-01-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.335},{"date":"2000-01-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.409},{"date":"2000-01-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.397},{"date":"2000-01-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.445},{"date":"2000-01-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.493},{"date":"2000-01-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.484},{"date":"2000-01-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.524},{"date":"2000-01-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.418},{"date":"2000-01-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.355},{"date":"2000-01-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.346},{"date":"2000-01-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.394},{"date":"2000-01-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.316},{"date":"2000-01-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.307},{"date":"2000-01-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.34},{"date":"2000-01-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.411},{"date":"2000-01-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.398},{"date":"2000-01-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.457},{"date":"2000-01-31","fuel":"gasoline","grade":"premium","formulation":"all","price":1.496},{"date":"2000-01-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.485},{"date":"2000-01-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.535},{"date":"2000-01-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.439},{"date":"2000-02-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.364},{"date":"2000-02-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.358},{"date":"2000-02-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.397},{"date":"2000-02-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.325},{"date":"2000-02-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.319},{"date":"2000-02-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.343},{"date":"2000-02-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.417},{"date":"2000-02-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.406},{"date":"2000-02-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.458},{"date":"2000-02-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.504},{"date":"2000-02-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.496},{"date":"2000-02-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.538},{"date":"2000-02-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.47},{"date":"2000-02-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.394},{"date":"2000-02-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.389},{"date":"2000-02-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.419},{"date":"2000-02-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.356},{"date":"2000-02-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.35},{"date":"2000-02-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.37},{"date":"2000-02-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.447},{"date":"2000-02-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.438},{"date":"2000-02-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.477},{"date":"2000-02-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.533},{"date":"2000-02-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.527},{"date":"2000-02-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.554},{"date":"2000-02-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.456},{"date":"2000-02-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.443},{"date":"2000-02-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.438},{"date":"2000-02-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.46},{"date":"2000-02-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.406},{"date":"2000-02-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.4},{"date":"2000-02-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.414},{"date":"2000-02-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.495},{"date":"2000-02-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.487},{"date":"2000-02-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.519},{"date":"2000-02-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.577},{"date":"2000-02-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.573},{"date":"2000-02-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.59},{"date":"2000-02-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.456},{"date":"2000-02-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.458},{"date":"2000-02-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.45},{"date":"2000-02-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.489},{"date":"2000-02-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.421},{"date":"2000-02-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.413},{"date":"2000-02-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.438},{"date":"2000-02-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.511},{"date":"2000-02-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.499},{"date":"2000-02-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.551},{"date":"2000-02-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.593},{"date":"2000-02-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.584},{"date":"2000-02-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.619},{"date":"2000-02-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.461},{"date":"2000-03-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.539},{"date":"2000-03-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.528},{"date":"2000-03-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.582},{"date":"2000-03-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.501},{"date":"2000-03-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.49},{"date":"2000-03-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.529},{"date":"2000-03-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.593},{"date":"2000-03-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.579},{"date":"2000-03-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.643},{"date":"2000-03-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.674},{"date":"2000-03-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.663},{"date":"2000-03-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.709},{"date":"2000-03-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.49},{"date":"2000-03-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.566},{"date":"2000-03-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.55},{"date":"2000-03-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.637},{"date":"2000-03-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.527},{"date":"2000-03-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.511},{"date":"2000-03-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.574},{"date":"2000-03-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.621},{"date":"2000-03-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.6},{"date":"2000-03-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.703},{"date":"2000-03-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.705},{"date":"2000-03-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.689},{"date":"2000-03-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.764},{"date":"2000-03-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.496},{"date":"2000-03-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.569},{"date":"2000-03-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.548},{"date":"2000-03-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.662},{"date":"2000-03-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.529},{"date":"2000-03-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.508},{"date":"2000-03-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.592},{"date":"2000-03-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.624},{"date":"2000-03-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.597},{"date":"2000-03-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.731},{"date":"2000-03-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.711},{"date":"2000-03-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.689},{"date":"2000-03-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.791},{"date":"2000-03-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.479},{"date":"2000-03-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.549},{"date":"2000-03-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.524},{"date":"2000-03-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.655},{"date":"2000-03-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.508},{"date":"2000-03-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.484},{"date":"2000-03-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.583},{"date":"2000-03-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.606},{"date":"2000-03-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.576},{"date":"2000-03-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.725},{"date":"2000-03-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.693},{"date":"2000-03-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.667},{"date":"2000-03-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.786},{"date":"2000-03-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.451},{"date":"2000-04-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.543},{"date":"2000-04-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.518},{"date":"2000-04-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.647},{"date":"2000-04-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.503},{"date":"2000-04-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.478},{"date":"2000-04-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.578},{"date":"2000-04-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.602},{"date":"2000-04-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.572},{"date":"2000-04-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.717},{"date":"2000-04-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.687},{"date":"2000-04-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.661},{"date":"2000-04-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.776},{"date":"2000-04-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.442},{"date":"2000-04-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.516},{"date":"2000-04-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.487},{"date":"2000-04-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.63},{"date":"2000-04-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.475},{"date":"2000-04-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.447},{"date":"2000-04-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.559},{"date":"2000-04-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.575},{"date":"2000-04-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.541},{"date":"2000-04-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.702},{"date":"2000-04-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.662},{"date":"2000-04-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.632},{"date":"2000-04-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.763},{"date":"2000-04-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.419},{"date":"2000-04-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.486},{"date":"2000-04-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.455},{"date":"2000-04-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.608},{"date":"2000-04-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.444},{"date":"2000-04-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.415},{"date":"2000-04-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.534},{"date":"2000-04-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.544},{"date":"2000-04-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.508},{"date":"2000-04-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.68},{"date":"2000-04-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.634},{"date":"2000-04-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.601},{"date":"2000-04-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.745},{"date":"2000-04-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.398},{"date":"2000-04-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.478},{"date":"2000-04-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.445},{"date":"2000-04-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.599},{"date":"2000-04-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.437},{"date":"2000-04-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.406},{"date":"2000-04-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.532},{"date":"2000-04-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.535},{"date":"2000-04-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.495},{"date":"2000-04-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.669},{"date":"2000-04-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.622},{"date":"2000-04-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.587},{"date":"2000-04-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.734},{"date":"2000-04-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.428},{"date":"2000-05-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.461},{"date":"2000-05-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.426},{"date":"2000-05-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.587},{"date":"2000-05-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.42},{"date":"2000-05-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.386},{"date":"2000-05-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.522},{"date":"2000-05-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.517},{"date":"2000-05-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.477},{"date":"2000-05-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.655},{"date":"2000-05-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.607},{"date":"2000-05-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.57},{"date":"2000-05-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.723},{"date":"2000-05-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.418},{"date":"2000-05-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.495},{"date":"2000-05-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.467},{"date":"2000-05-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.593},{"date":"2000-05-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.455},{"date":"2000-05-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.427},{"date":"2000-05-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.535},{"date":"2000-05-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.552},{"date":"2000-05-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.518},{"date":"2000-05-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.659},{"date":"2000-05-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.638},{"date":"2000-05-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.609},{"date":"2000-05-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.725},{"date":"2000-05-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.402},{"date":"2000-05-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.531},{"date":"2000-05-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.505},{"date":"2000-05-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.609},{"date":"2000-05-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.492},{"date":"2000-05-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.466},{"date":"2000-05-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.562},{"date":"2000-05-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.586},{"date":"2000-05-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.556},{"date":"2000-05-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.67},{"date":"2000-05-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.672},{"date":"2000-05-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.646},{"date":"2000-05-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.738},{"date":"2000-05-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.415},{"date":"2000-05-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.566},{"date":"2000-05-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.533},{"date":"2000-05-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.623},{"date":"2000-05-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.527},{"date":"2000-05-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.494},{"date":"2000-05-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.587},{"date":"2000-05-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.618},{"date":"2000-05-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.581},{"date":"2000-05-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.682},{"date":"2000-05-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.703},{"date":"2000-05-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.674},{"date":"2000-05-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.752},{"date":"2000-05-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.432},{"date":"2000-05-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.579},{"date":"2000-05-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.547},{"date":"2000-05-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.642},{"date":"2000-05-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.54},{"date":"2000-05-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.509},{"date":"2000-05-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.603},{"date":"2000-05-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.63},{"date":"2000-05-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.594},{"date":"2000-05-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.697},{"date":"2000-05-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.713},{"date":"2000-05-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.684},{"date":"2000-05-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.767},{"date":"2000-05-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.431},{"date":"2000-06-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.599},{"date":"2000-06-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.571},{"date":"2000-06-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.66},{"date":"2000-06-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.563},{"date":"2000-06-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.535},{"date":"2000-06-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.627},{"date":"2000-06-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.646},{"date":"2000-06-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.615},{"date":"2000-06-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.712},{"date":"2000-06-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.73},{"date":"2000-06-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.703},{"date":"2000-06-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.787},{"date":"2000-06-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.419},{"date":"2000-06-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.664},{"date":"2000-06-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.64},{"date":"2000-06-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.692},{"date":"2000-06-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.631},{"date":"2000-06-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.607},{"date":"2000-06-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.669},{"date":"2000-06-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.706},{"date":"2000-06-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.68},{"date":"2000-06-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.74},{"date":"2000-06-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.785},{"date":"2000-06-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.763},{"date":"2000-06-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.816},{"date":"2000-06-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.411},{"date":"2000-06-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.711},{"date":"2000-06-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.695},{"date":"2000-06-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.715},{"date":"2000-06-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.681},{"date":"2000-06-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.664},{"date":"2000-06-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.694},{"date":"2000-06-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.751},{"date":"2000-06-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.73},{"date":"2000-06-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.762},{"date":"2000-06-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.827},{"date":"2000-06-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.811},{"date":"2000-06-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.838},{"date":"2000-06-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.423},{"date":"2000-06-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.691},{"date":"2000-06-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.674},{"date":"2000-06-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.712},{"date":"2000-06-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.658},{"date":"2000-06-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.641},{"date":"2000-06-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.679},{"date":"2000-06-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.733},{"date":"2000-06-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.712},{"date":"2000-06-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.762},{"date":"2000-06-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.813},{"date":"2000-06-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.796},{"date":"2000-06-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.839},{"date":"2000-06-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.432},{"date":"2000-07-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.661},{"date":"2000-07-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.642},{"date":"2000-07-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.716},{"date":"2000-07-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.625},{"date":"2000-07-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.606},{"date":"2000-07-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.666},{"date":"2000-07-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.707},{"date":"2000-07-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.682},{"date":"2000-07-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.774},{"date":"2000-07-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.792},{"date":"2000-07-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.772},{"date":"2000-07-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.847},{"date":"2000-07-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.453},{"date":"2000-07-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.63},{"date":"2000-07-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.608},{"date":"2000-07-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.709},{"date":"2000-07-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.593},{"date":"2000-07-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.571},{"date":"2000-07-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.651},{"date":"2000-07-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.682},{"date":"2000-07-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.654},{"date":"2000-07-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.769},{"date":"2000-07-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.769},{"date":"2000-07-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.745},{"date":"2000-07-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.843},{"date":"2000-07-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.449},{"date":"2000-07-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.586},{"date":"2000-07-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.561},{"date":"2000-07-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.686},{"date":"2000-07-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.546},{"date":"2000-07-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.521},{"date":"2000-07-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.62},{"date":"2000-07-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.64},{"date":"2000-07-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.61},{"date":"2000-07-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.749},{"date":"2000-07-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.733},{"date":"2000-07-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.708},{"date":"2000-07-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.826},{"date":"2000-07-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.435},{"date":"2000-07-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.562},{"date":"2000-07-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.539},{"date":"2000-07-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.663},{"date":"2000-07-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.52},{"date":"2000-07-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.499},{"date":"2000-07-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.59},{"date":"2000-07-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.619},{"date":"2000-07-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.591},{"date":"2000-07-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.728},{"date":"2000-07-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.711},{"date":"2000-07-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.687},{"date":"2000-07-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.807},{"date":"2000-07-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.424},{"date":"2000-07-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.514},{"date":"2000-07-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.489},{"date":"2000-07-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.631},{"date":"2000-07-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.471},{"date":"2000-07-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.447},{"date":"2000-07-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.553},{"date":"2000-07-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.573},{"date":"2000-07-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.541},{"date":"2000-07-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.699},{"date":"2000-07-31","fuel":"gasoline","grade":"premium","formulation":"all","price":1.668},{"date":"2000-07-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.641},{"date":"2000-07-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.78},{"date":"2000-07-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.408},{"date":"2000-08-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.504},{"date":"2000-08-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.479},{"date":"2000-08-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.619},{"date":"2000-08-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.462},{"date":"2000-08-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.437},{"date":"2000-08-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.54},{"date":"2000-08-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.564},{"date":"2000-08-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.532},{"date":"2000-08-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.686},{"date":"2000-08-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.656},{"date":"2000-08-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.627},{"date":"2000-08-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.77},{"date":"2000-08-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.41},{"date":"2000-08-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.489},{"date":"2000-08-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.46},{"date":"2000-08-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.614},{"date":"2000-08-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.447},{"date":"2000-08-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.42},{"date":"2000-08-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.536},{"date":"2000-08-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.546},{"date":"2000-08-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.511},{"date":"2000-08-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.682},{"date":"2000-08-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.639},{"date":"2000-08-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.607},{"date":"2000-08-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.763},{"date":"2000-08-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.447},{"date":"2000-08-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.508},{"date":"2000-08-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.484},{"date":"2000-08-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.614},{"date":"2000-08-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.468},{"date":"2000-08-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.444},{"date":"2000-08-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.54},{"date":"2000-08-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.565},{"date":"2000-08-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.534},{"date":"2000-08-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.679},{"date":"2000-08-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.654},{"date":"2000-08-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.626},{"date":"2000-08-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.759},{"date":"2000-08-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.471},{"date":"2000-08-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.521},{"date":"2000-08-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.495},{"date":"2000-08-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.629},{"date":"2000-08-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.481},{"date":"2000-08-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.456},{"date":"2000-08-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.555},{"date":"2000-08-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.577},{"date":"2000-08-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.544},{"date":"2000-08-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.697},{"date":"2000-08-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.664},{"date":"2000-08-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.635},{"date":"2000-08-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.771},{"date":"2000-08-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.536},{"date":"2000-09-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.568},{"date":"2000-09-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.539},{"date":"2000-09-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.675},{"date":"2000-09-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.53},{"date":"2000-09-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.502},{"date":"2000-09-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.605},{"date":"2000-09-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.622},{"date":"2000-09-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.586},{"date":"2000-09-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.743},{"date":"2000-09-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.706},{"date":"2000-09-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.674},{"date":"2000-09-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.808},{"date":"2000-09-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.609},{"date":"2000-09-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.598},{"date":"2000-09-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.571},{"date":"2000-09-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.704},{"date":"2000-09-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.561},{"date":"2000-09-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.535},{"date":"2000-09-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.632},{"date":"2000-09-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.65},{"date":"2000-09-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.615},{"date":"2000-09-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.773},{"date":"2000-09-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.735},{"date":"2000-09-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.704},{"date":"2000-09-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.837},{"date":"2000-09-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.629},{"date":"2000-09-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.599},{"date":"2000-09-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.575},{"date":"2000-09-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.696},{"date":"2000-09-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.562},{"date":"2000-09-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.539},{"date":"2000-09-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.624},{"date":"2000-09-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.65},{"date":"2000-09-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.619},{"date":"2000-09-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.765},{"date":"2000-09-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.733},{"date":"2000-09-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.706},{"date":"2000-09-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.827},{"date":"2000-09-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.653},{"date":"2000-09-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.586},{"date":"2000-09-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.562},{"date":"2000-09-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.69},{"date":"2000-09-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.548},{"date":"2000-09-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.525},{"date":"2000-09-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.615},{"date":"2000-09-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.639},{"date":"2000-09-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.607},{"date":"2000-09-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.761},{"date":"2000-09-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.726},{"date":"2000-09-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.698},{"date":"2000-09-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.825},{"date":"2000-09-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.657},{"date":"2000-10-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.563},{"date":"2000-10-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.536},{"date":"2000-10-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.68},{"date":"2000-10-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.524},{"date":"2000-10-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.498},{"date":"2000-10-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.601},{"date":"2000-10-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.616},{"date":"2000-10-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.58},{"date":"2000-10-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.754},{"date":"2000-10-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.704},{"date":"2000-10-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.674},{"date":"2000-10-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.817},{"date":"2000-10-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.625},{"date":"2000-10-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.541},{"date":"2000-10-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.511},{"date":"2000-10-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.668},{"date":"2000-10-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.502},{"date":"2000-10-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.473},{"date":"2000-10-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.589},{"date":"2000-10-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.593},{"date":"2000-10-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.554},{"date":"2000-10-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.742},{"date":"2000-10-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.683},{"date":"2000-10-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.649},{"date":"2000-10-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.806},{"date":"2000-10-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.614},{"date":"2000-10-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.578},{"date":"2000-10-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.554},{"date":"2000-10-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.675},{"date":"2000-10-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.539},{"date":"2000-10-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.516},{"date":"2000-10-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.603},{"date":"2000-10-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.631},{"date":"2000-10-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.6},{"date":"2000-10-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.746},{"date":"2000-10-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.717},{"date":"2000-10-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.691},{"date":"2000-10-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.811},{"date":"2000-10-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.67},{"date":"2000-10-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.588},{"date":"2000-10-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.568},{"date":"2000-10-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.67},{"date":"2000-10-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.551},{"date":"2000-10-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.532},{"date":"2000-10-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.599},{"date":"2000-10-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.641},{"date":"2000-10-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.614},{"date":"2000-10-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.74},{"date":"2000-10-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.724},{"date":"2000-10-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.7},{"date":"2000-10-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.806},{"date":"2000-10-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.648},{"date":"2000-10-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.584},{"date":"2000-10-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.561},{"date":"2000-10-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.675},{"date":"2000-10-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.545},{"date":"2000-10-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.523},{"date":"2000-10-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.606},{"date":"2000-10-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.637},{"date":"2000-10-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.608},{"date":"2000-10-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.743},{"date":"2000-10-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.722},{"date":"2000-10-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.696},{"date":"2000-10-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.811},{"date":"2000-10-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.629},{"date":"2000-11-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.565},{"date":"2000-11-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.54},{"date":"2000-11-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.666},{"date":"2000-11-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.526},{"date":"2000-11-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.502},{"date":"2000-11-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.594},{"date":"2000-11-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.618},{"date":"2000-11-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.586},{"date":"2000-11-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.735},{"date":"2000-11-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.706},{"date":"2000-11-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.679},{"date":"2000-11-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.804},{"date":"2000-11-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.61},{"date":"2000-11-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.562},{"date":"2000-11-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.539},{"date":"2000-11-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.657},{"date":"2000-11-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.523},{"date":"2000-11-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.501},{"date":"2000-11-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.587},{"date":"2000-11-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.616},{"date":"2000-11-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.587},{"date":"2000-11-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.727},{"date":"2000-11-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.701},{"date":"2000-11-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.677},{"date":"2000-11-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.792},{"date":"2000-11-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.603},{"date":"2000-11-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.55},{"date":"2000-11-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.525},{"date":"2000-11-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.648},{"date":"2000-11-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.51},{"date":"2000-11-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.487},{"date":"2000-11-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.579},{"date":"2000-11-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.605},{"date":"2000-11-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.573},{"date":"2000-11-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.719},{"date":"2000-11-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.69},{"date":"2000-11-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.664},{"date":"2000-11-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.786},{"date":"2000-11-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.627},{"date":"2000-11-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.549},{"date":"2000-11-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.527},{"date":"2000-11-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.64},{"date":"2000-11-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.51},{"date":"2000-11-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.489},{"date":"2000-11-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.571},{"date":"2000-11-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.603},{"date":"2000-11-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.575},{"date":"2000-11-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.708},{"date":"2000-11-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.69},{"date":"2000-11-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.666},{"date":"2000-11-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.779},{"date":"2000-11-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.645},{"date":"2000-12-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.526},{"date":"2000-12-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.503},{"date":"2000-12-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.623},{"date":"2000-12-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.486},{"date":"2000-12-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.464},{"date":"2000-12-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.55},{"date":"2000-12-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.581},{"date":"2000-12-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.55},{"date":"2000-12-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.695},{"date":"2000-12-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.668},{"date":"2000-12-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.643},{"date":"2000-12-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.764},{"date":"2000-12-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.622},{"date":"2000-12-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.49},{"date":"2000-12-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.465},{"date":"2000-12-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.598},{"date":"2000-12-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.449},{"date":"2000-12-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.425},{"date":"2000-12-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.524},{"date":"2000-12-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.547},{"date":"2000-12-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.514},{"date":"2000-12-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.672},{"date":"2000-12-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.636},{"date":"2000-12-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.608},{"date":"2000-12-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.743},{"date":"2000-12-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.577},{"date":"2000-12-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.462},{"date":"2000-12-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.436},{"date":"2000-12-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.575},{"date":"2000-12-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.422},{"date":"2000-12-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.396},{"date":"2000-12-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.499},{"date":"2000-12-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.518},{"date":"2000-12-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.485},{"date":"2000-12-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.647},{"date":"2000-12-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.609},{"date":"2000-12-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.579},{"date":"2000-12-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.727},{"date":"2000-12-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.545},{"date":"2000-12-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.453},{"date":"2000-12-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.426},{"date":"2000-12-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.564},{"date":"2000-12-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.414},{"date":"2000-12-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.388},{"date":"2000-12-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.491},{"date":"2000-12-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.502},{"date":"2000-12-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.467},{"date":"2000-12-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.633},{"date":"2000-12-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.597},{"date":"2000-12-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.566},{"date":"2000-12-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.711},{"date":"2000-12-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.515},{"date":"2001-01-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.446},{"date":"2001-01-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.416},{"date":"2001-01-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.558},{"date":"2001-01-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.406},{"date":"2001-01-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.377},{"date":"2001-01-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.489},{"date":"2001-01-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.503},{"date":"2001-01-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.467},{"date":"2001-01-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.628},{"date":"2001-01-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.59},{"date":"2001-01-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.559},{"date":"2001-01-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.704},{"date":"2001-01-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.522},{"date":"2001-01-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.465},{"date":"2001-01-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.439},{"date":"2001-01-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.558},{"date":"2001-01-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.425},{"date":"2001-01-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.4},{"date":"2001-01-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.492},{"date":"2001-01-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.523},{"date":"2001-01-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.492},{"date":"2001-01-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.628},{"date":"2001-01-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.606},{"date":"2001-01-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.581},{"date":"2001-01-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.696},{"date":"2001-01-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.52},{"date":"2001-01-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.513},{"date":"2001-01-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.497},{"date":"2001-01-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.569},{"date":"2001-01-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.474},{"date":"2001-01-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.458},{"date":"2001-01-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.511},{"date":"2001-01-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.566},{"date":"2001-01-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.546},{"date":"2001-01-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.631},{"date":"2001-01-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.656},{"date":"2001-01-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.639},{"date":"2001-01-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.71},{"date":"2001-01-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.509},{"date":"2001-01-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.511},{"date":"2001-01-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.496},{"date":"2001-01-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.565},{"date":"2001-01-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.471},{"date":"2001-01-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.456},{"date":"2001-01-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.509},{"date":"2001-01-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.562},{"date":"2001-01-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.543},{"date":"2001-01-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.627},{"date":"2001-01-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.656},{"date":"2001-01-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.64},{"date":"2001-01-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.708},{"date":"2001-01-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.528},{"date":"2001-01-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.5},{"date":"2001-01-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.486},{"date":"2001-01-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.554},{"date":"2001-01-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.46},{"date":"2001-01-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.446},{"date":"2001-01-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.497},{"date":"2001-01-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.551},{"date":"2001-01-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.533},{"date":"2001-01-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.616},{"date":"2001-01-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.644},{"date":"2001-01-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.628},{"date":"2001-01-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.697},{"date":"2001-01-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.539},{"date":"2001-02-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.483},{"date":"2001-02-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.466},{"date":"2001-02-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.551},{"date":"2001-02-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.443},{"date":"2001-02-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.426},{"date":"2001-02-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.489},{"date":"2001-02-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.538},{"date":"2001-02-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.517},{"date":"2001-02-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.617},{"date":"2001-02-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.63},{"date":"2001-02-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.611},{"date":"2001-02-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.696},{"date":"2001-02-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.52},{"date":"2001-02-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.515},{"date":"2001-02-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.499},{"date":"2001-02-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.575},{"date":"2001-02-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.476},{"date":"2001-02-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.46},{"date":"2001-02-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.514},{"date":"2001-02-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.568},{"date":"2001-02-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.547},{"date":"2001-02-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.64},{"date":"2001-02-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.656},{"date":"2001-02-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.639},{"date":"2001-02-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.714},{"date":"2001-02-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.518},{"date":"2001-02-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.489},{"date":"2001-02-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.468},{"date":"2001-02-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.573},{"date":"2001-02-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.449},{"date":"2001-02-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.429},{"date":"2001-02-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.507},{"date":"2001-02-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.543},{"date":"2001-02-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.517},{"date":"2001-02-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.641},{"date":"2001-02-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.634},{"date":"2001-02-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.611},{"date":"2001-02-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.713},{"date":"2001-02-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.48},{"date":"2001-02-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.471},{"date":"2001-02-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.45},{"date":"2001-02-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.561},{"date":"2001-02-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.431},{"date":"2001-02-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.41},{"date":"2001-02-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.491},{"date":"2001-02-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.526},{"date":"2001-02-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.498},{"date":"2001-02-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.631},{"date":"2001-02-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.618},{"date":"2001-02-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.594},{"date":"2001-02-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.703},{"date":"2001-02-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.451},{"date":"2001-03-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.457},{"date":"2001-03-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.433},{"date":"2001-03-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.562},{"date":"2001-03-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.417},{"date":"2001-03-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.393},{"date":"2001-03-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.489},{"date":"2001-03-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.513},{"date":"2001-03-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.482},{"date":"2001-03-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.633},{"date":"2001-03-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.605},{"date":"2001-03-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.578},{"date":"2001-03-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.701},{"date":"2001-03-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.42},{"date":"2001-03-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.453},{"date":"2001-03-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.426},{"date":"2001-03-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.558},{"date":"2001-03-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.412},{"date":"2001-03-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.387},{"date":"2001-03-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.485},{"date":"2001-03-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.51},{"date":"2001-03-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.477},{"date":"2001-03-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.632},{"date":"2001-03-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.598},{"date":"2001-03-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.569},{"date":"2001-03-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.699},{"date":"2001-03-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.406},{"date":"2001-03-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.444},{"date":"2001-03-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.416},{"date":"2001-03-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.553},{"date":"2001-03-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.404},{"date":"2001-03-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.377},{"date":"2001-03-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.482},{"date":"2001-03-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.5},{"date":"2001-03-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.464},{"date":"2001-03-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.628},{"date":"2001-03-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.589},{"date":"2001-03-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.558},{"date":"2001-03-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.695},{"date":"2001-03-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.392},{"date":"2001-03-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.445},{"date":"2001-03-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.418},{"date":"2001-03-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.545},{"date":"2001-03-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.404},{"date":"2001-03-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.379},{"date":"2001-03-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.475},{"date":"2001-03-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.502},{"date":"2001-03-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.468},{"date":"2001-03-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.621},{"date":"2001-03-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.59},{"date":"2001-03-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.56},{"date":"2001-03-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.686},{"date":"2001-03-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.379},{"date":"2001-04-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.482},{"date":"2001-04-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.451},{"date":"2001-04-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.581},{"date":"2001-04-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.442},{"date":"2001-04-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.411},{"date":"2001-04-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.518},{"date":"2001-04-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.54},{"date":"2001-04-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.502},{"date":"2001-04-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.656},{"date":"2001-04-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.624},{"date":"2001-04-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.591},{"date":"2001-04-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.718},{"date":"2001-04-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.391},{"date":"2001-04-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.54},{"date":"2001-04-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.509},{"date":"2001-04-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.632},{"date":"2001-04-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.5},{"date":"2001-04-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.469},{"date":"2001-04-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.575},{"date":"2001-04-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.596},{"date":"2001-04-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.562},{"date":"2001-04-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.702},{"date":"2001-04-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.682},{"date":"2001-04-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.651},{"date":"2001-04-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.763},{"date":"2001-04-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.397},{"date":"2001-04-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.61},{"date":"2001-04-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.575},{"date":"2001-04-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.673},{"date":"2001-04-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.571},{"date":"2001-04-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.535},{"date":"2001-04-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.631},{"date":"2001-04-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.665},{"date":"2001-04-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.625},{"date":"2001-04-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.736},{"date":"2001-04-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.753},{"date":"2001-04-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.718},{"date":"2001-04-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.817},{"date":"2001-04-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.437},{"date":"2001-04-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.658},{"date":"2001-04-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.625},{"date":"2001-04-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.736},{"date":"2001-04-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.619},{"date":"2001-04-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.586},{"date":"2001-04-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.696},{"date":"2001-04-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.712},{"date":"2001-04-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.676},{"date":"2001-04-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.792},{"date":"2001-04-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.797},{"date":"2001-04-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.766},{"date":"2001-04-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.873},{"date":"2001-04-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.443},{"date":"2001-04-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.665},{"date":"2001-04-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.624},{"date":"2001-04-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.765},{"date":"2001-04-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.626},{"date":"2001-04-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.585},{"date":"2001-04-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.724},{"date":"2001-04-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.717},{"date":"2001-04-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.671},{"date":"2001-04-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.823},{"date":"2001-04-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.806},{"date":"2001-04-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.765},{"date":"2001-04-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.907},{"date":"2001-04-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.442},{"date":"2001-05-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.739},{"date":"2001-05-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.695},{"date":"2001-05-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.833},{"date":"2001-05-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.703},{"date":"2001-05-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.659},{"date":"2001-05-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.794},{"date":"2001-05-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.788},{"date":"2001-05-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.738},{"date":"2001-05-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.889},{"date":"2001-05-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.869},{"date":"2001-05-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.826},{"date":"2001-05-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.965},{"date":"2001-05-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.47},{"date":"2001-05-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.748},{"date":"2001-05-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.697},{"date":"2001-05-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.861},{"date":"2001-05-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.713},{"date":"2001-05-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.663},{"date":"2001-05-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.821},{"date":"2001-05-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.793},{"date":"2001-05-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.735},{"date":"2001-05-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.918},{"date":"2001-05-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.876},{"date":"2001-05-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.824},{"date":"2001-05-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.995},{"date":"2001-05-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.491},{"date":"2001-05-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.724},{"date":"2001-05-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.673},{"date":"2001-05-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.842},{"date":"2001-05-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.687},{"date":"2001-05-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.637},{"date":"2001-05-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.802},{"date":"2001-05-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.773},{"date":"2001-05-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.715},{"date":"2001-05-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.903},{"date":"2001-05-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.858},{"date":"2001-05-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.805},{"date":"2001-05-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.981},{"date":"2001-05-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.494},{"date":"2001-05-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.739},{"date":"2001-05-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.691},{"date":"2001-05-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.849},{"date":"2001-05-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.704},{"date":"2001-05-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.656},{"date":"2001-05-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.807},{"date":"2001-05-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.787},{"date":"2001-05-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.73},{"date":"2001-05-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.91},{"date":"2001-05-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.871},{"date":"2001-05-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.819},{"date":"2001-05-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.991},{"date":"2001-05-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.529},{"date":"2001-06-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.715},{"date":"2001-06-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.665},{"date":"2001-06-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.831},{"date":"2001-06-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.679},{"date":"2001-06-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.63},{"date":"2001-06-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.79},{"date":"2001-06-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.762},{"date":"2001-06-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.703},{"date":"2001-06-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.893},{"date":"2001-06-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.847},{"date":"2001-06-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.794},{"date":"2001-06-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.972},{"date":"2001-06-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.514},{"date":"2001-06-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.688},{"date":"2001-06-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.617},{"date":"2001-06-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.828},{"date":"2001-06-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.647},{"date":"2001-06-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.58},{"date":"2001-06-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.783},{"date":"2001-06-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.741},{"date":"2001-06-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.66},{"date":"2001-06-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.897},{"date":"2001-06-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.829},{"date":"2001-06-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.754},{"date":"2001-06-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.968},{"date":"2001-06-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.486},{"date":"2001-06-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.644},{"date":"2001-06-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.566},{"date":"2001-06-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.797},{"date":"2001-06-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.601},{"date":"2001-06-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.526},{"date":"2001-06-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.75},{"date":"2001-06-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.7},{"date":"2001-06-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.611},{"date":"2001-06-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.869},{"date":"2001-06-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.792},{"date":"2001-06-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.71},{"date":"2001-06-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.942},{"date":"2001-06-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.48},{"date":"2001-06-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.583},{"date":"2001-06-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.495},{"date":"2001-06-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.757},{"date":"2001-06-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.538},{"date":"2001-06-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.454},{"date":"2001-06-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.708},{"date":"2001-06-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.644},{"date":"2001-06-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.546},{"date":"2001-06-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.833},{"date":"2001-06-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.737},{"date":"2001-06-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.645},{"date":"2001-06-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.907},{"date":"2001-06-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.447},{"date":"2001-07-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.52},{"date":"2001-07-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.427},{"date":"2001-07-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.703},{"date":"2001-07-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.474},{"date":"2001-07-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.384},{"date":"2001-07-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.654},{"date":"2001-07-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.585},{"date":"2001-07-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.482},{"date":"2001-07-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.784},{"date":"2001-07-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.678},{"date":"2001-07-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.582},{"date":"2001-07-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.855},{"date":"2001-07-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.407},{"date":"2001-07-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.484},{"date":"2001-07-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.392},{"date":"2001-07-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.664},{"date":"2001-07-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.437},{"date":"2001-07-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.35},{"date":"2001-07-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.613},{"date":"2001-07-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.55},{"date":"2001-07-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.448},{"date":"2001-07-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.746},{"date":"2001-07-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.641},{"date":"2001-07-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.544},{"date":"2001-07-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.821},{"date":"2001-07-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.392},{"date":"2001-07-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.459},{"date":"2001-07-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.372},{"date":"2001-07-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.63},{"date":"2001-07-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.413},{"date":"2001-07-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.33},{"date":"2001-07-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.579},{"date":"2001-07-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.524},{"date":"2001-07-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.428},{"date":"2001-07-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.71},{"date":"2001-07-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.616},{"date":"2001-07-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.525},{"date":"2001-07-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.786},{"date":"2001-07-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.38},{"date":"2001-07-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.44},{"date":"2001-07-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.358},{"date":"2001-07-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.601},{"date":"2001-07-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.395},{"date":"2001-07-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.318},{"date":"2001-07-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.55},{"date":"2001-07-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.5},{"date":"2001-07-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.408},{"date":"2001-07-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.677},{"date":"2001-07-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.595},{"date":"2001-07-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.505},{"date":"2001-07-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.761},{"date":"2001-07-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.348},{"date":"2001-07-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.428},{"date":"2001-07-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.358},{"date":"2001-07-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.565},{"date":"2001-07-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.384},{"date":"2001-07-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.319},{"date":"2001-07-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.514},{"date":"2001-07-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.486},{"date":"2001-07-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.406},{"date":"2001-07-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.641},{"date":"2001-07-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.581},{"date":"2001-07-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.503},{"date":"2001-07-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.725},{"date":"2001-07-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.347},{"date":"2001-08-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.419},{"date":"2001-08-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.358},{"date":"2001-08-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.539},{"date":"2001-08-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.376},{"date":"2001-08-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.319},{"date":"2001-08-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.49},{"date":"2001-08-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.476},{"date":"2001-08-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.406},{"date":"2001-08-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.611},{"date":"2001-08-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.57},{"date":"2001-08-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.501},{"date":"2001-08-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.696},{"date":"2001-08-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.345},{"date":"2001-08-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.434},{"date":"2001-08-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.385},{"date":"2001-08-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.53},{"date":"2001-08-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.392},{"date":"2001-08-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.347},{"date":"2001-08-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.482},{"date":"2001-08-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.487},{"date":"2001-08-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.43},{"date":"2001-08-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.596},{"date":"2001-08-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.58},{"date":"2001-08-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.524},{"date":"2001-08-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.684},{"date":"2001-08-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.367},{"date":"2001-08-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.467},{"date":"2001-08-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.435},{"date":"2001-08-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.53},{"date":"2001-08-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.427},{"date":"2001-08-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.399},{"date":"2001-08-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.485},{"date":"2001-08-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.516},{"date":"2001-08-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.476},{"date":"2001-08-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.591},{"date":"2001-08-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.608},{"date":"2001-08-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.57},{"date":"2001-08-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.677},{"date":"2001-08-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.394},{"date":"2001-08-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.523},{"date":"2001-08-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.51},{"date":"2001-08-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.547},{"date":"2001-08-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.488},{"date":"2001-08-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.48},{"date":"2001-08-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.505},{"date":"2001-08-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.561},{"date":"2001-08-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.538},{"date":"2001-08-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.604},{"date":"2001-08-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.647},{"date":"2001-08-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.626},{"date":"2001-08-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.686},{"date":"2001-08-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.452},{"date":"2001-09-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.579},{"date":"2001-09-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.568},{"date":"2001-09-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.6},{"date":"2001-09-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.545},{"date":"2001-09-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.538},{"date":"2001-09-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.559},{"date":"2001-09-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.619},{"date":"2001-09-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.599},{"date":"2001-09-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.659},{"date":"2001-09-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.698},{"date":"2001-09-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.683},{"date":"2001-09-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.728},{"date":"2001-09-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.488},{"date":"2001-09-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.562},{"date":"2001-09-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.543},{"date":"2001-09-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.601},{"date":"2001-09-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.527},{"date":"2001-09-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.511},{"date":"2001-09-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.559},{"date":"2001-09-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.604},{"date":"2001-09-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.575},{"date":"2001-09-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.661},{"date":"2001-09-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.686},{"date":"2001-09-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.662},{"date":"2001-09-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.731},{"date":"2001-09-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.492},{"date":"2001-09-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.564},{"date":"2001-09-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.548},{"date":"2001-09-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.595},{"date":"2001-09-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.529},{"date":"2001-09-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.516},{"date":"2001-09-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.554},{"date":"2001-09-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.607},{"date":"2001-09-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.58},{"date":"2001-09-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.658},{"date":"2001-09-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.689},{"date":"2001-09-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.668},{"date":"2001-09-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.727},{"date":"2001-09-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.527},{"date":"2001-09-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.522},{"date":"2001-09-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.495},{"date":"2001-09-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.577},{"date":"2001-09-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.485},{"date":"2001-09-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.46},{"date":"2001-09-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.534},{"date":"2001-09-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.569},{"date":"2001-09-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.532},{"date":"2001-09-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.641},{"date":"2001-09-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.653},{"date":"2001-09-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.622},{"date":"2001-09-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.711},{"date":"2001-09-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.473},{"date":"2001-10-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.455},{"date":"2001-10-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.417},{"date":"2001-10-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.531},{"date":"2001-10-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.416},{"date":"2001-10-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.381},{"date":"2001-10-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.487},{"date":"2001-10-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.503},{"date":"2001-10-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.455},{"date":"2001-10-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.596},{"date":"2001-10-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.591},{"date":"2001-10-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.549},{"date":"2001-10-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.669},{"date":"2001-10-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.39},{"date":"2001-10-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.393},{"date":"2001-10-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.347},{"date":"2001-10-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.483},{"date":"2001-10-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.352},{"date":"2001-10-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.31},{"date":"2001-10-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.438},{"date":"2001-10-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.444},{"date":"2001-10-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.39},{"date":"2001-10-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.548},{"date":"2001-10-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.535},{"date":"2001-10-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.486},{"date":"2001-10-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.623},{"date":"2001-10-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.371},{"date":"2001-10-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.351},{"date":"2001-10-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.303},{"date":"2001-10-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.445},{"date":"2001-10-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.309},{"date":"2001-10-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.264},{"date":"2001-10-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.401},{"date":"2001-10-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.405},{"date":"2001-10-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.349},{"date":"2001-10-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.512},{"date":"2001-10-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.495},{"date":"2001-10-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.447},{"date":"2001-10-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.585},{"date":"2001-10-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.353},{"date":"2001-10-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.307},{"date":"2001-10-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.26},{"date":"2001-10-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.4},{"date":"2001-10-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.265},{"date":"2001-10-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.221},{"date":"2001-10-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.355},{"date":"2001-10-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.361},{"date":"2001-10-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.306},{"date":"2001-10-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.467},{"date":"2001-10-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.452},{"date":"2001-10-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.402},{"date":"2001-10-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.544},{"date":"2001-10-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.318},{"date":"2001-10-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.277},{"date":"2001-10-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.233},{"date":"2001-10-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.365},{"date":"2001-10-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.235},{"date":"2001-10-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.193},{"date":"2001-10-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.319},{"date":"2001-10-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.331},{"date":"2001-10-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.278},{"date":"2001-10-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.432},{"date":"2001-10-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.423},{"date":"2001-10-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.376},{"date":"2001-10-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.509},{"date":"2001-10-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.31},{"date":"2001-11-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.249},{"date":"2001-11-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.209},{"date":"2001-11-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.327},{"date":"2001-11-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.206},{"date":"2001-11-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.17},{"date":"2001-11-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.28},{"date":"2001-11-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.303},{"date":"2001-11-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.256},{"date":"2001-11-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.394},{"date":"2001-11-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.395},{"date":"2001-11-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.353},{"date":"2001-11-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.474},{"date":"2001-11-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.291},{"date":"2001-11-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.224},{"date":"2001-11-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.186},{"date":"2001-11-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.298},{"date":"2001-11-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.182},{"date":"2001-11-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.147},{"date":"2001-11-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.253},{"date":"2001-11-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.278},{"date":"2001-11-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.233},{"date":"2001-11-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.365},{"date":"2001-11-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.368},{"date":"2001-11-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.328},{"date":"2001-11-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.442},{"date":"2001-11-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.269},{"date":"2001-11-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.208},{"date":"2001-11-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.178},{"date":"2001-11-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.268},{"date":"2001-11-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.167},{"date":"2001-11-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.14},{"date":"2001-11-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.222},{"date":"2001-11-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.26},{"date":"2001-11-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.222},{"date":"2001-11-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.333},{"date":"2001-11-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.351},{"date":"2001-11-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.317},{"date":"2001-11-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.412},{"date":"2001-11-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.252},{"date":"2001-11-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.168},{"date":"2001-11-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.136},{"date":"2001-11-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.231},{"date":"2001-11-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.127},{"date":"2001-11-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.097},{"date":"2001-11-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.186},{"date":"2001-11-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.219},{"date":"2001-11-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.18},{"date":"2001-11-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.295},{"date":"2001-11-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.312},{"date":"2001-11-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.277},{"date":"2001-11-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.376},{"date":"2001-11-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.223},{"date":"2001-12-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.149},{"date":"2001-12-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.122},{"date":"2001-12-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.201},{"date":"2001-12-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.108},{"date":"2001-12-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.084},{"date":"2001-12-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.156},{"date":"2001-12-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.2},{"date":"2001-12-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.167},{"date":"2001-12-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.264},{"date":"2001-12-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.291},{"date":"2001-12-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.263},{"date":"2001-12-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.344},{"date":"2001-12-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.194},{"date":"2001-12-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.136},{"date":"2001-12-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.114},{"date":"2001-12-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.179},{"date":"2001-12-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.095},{"date":"2001-12-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.075},{"date":"2001-12-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.134},{"date":"2001-12-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.187},{"date":"2001-12-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.161},{"date":"2001-12-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.239},{"date":"2001-12-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.28},{"date":"2001-12-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.257},{"date":"2001-12-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.322},{"date":"2001-12-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.173},{"date":"2001-12-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.101},{"date":"2001-12-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.082},{"date":"2001-12-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.139},{"date":"2001-12-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.059},{"date":"2001-12-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.042},{"date":"2001-12-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.093},{"date":"2001-12-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.154},{"date":"2001-12-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.13},{"date":"2001-12-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.201},{"date":"2001-12-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.249},{"date":"2001-12-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.229},{"date":"2001-12-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.286},{"date":"2001-12-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.143},{"date":"2001-12-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.113},{"date":"2001-12-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.103},{"date":"2001-12-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.133},{"date":"2001-12-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.072},{"date":"2001-12-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.063},{"date":"2001-12-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.088},{"date":"2001-12-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.165},{"date":"2001-12-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.151},{"date":"2001-12-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.192},{"date":"2001-12-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.257},{"date":"2001-12-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.245},{"date":"2001-12-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.279},{"date":"2001-12-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.154},{"date":"2001-12-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.137},{"date":"2001-12-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.135},{"date":"2001-12-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.14},{"date":"2001-12-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.096},{"date":"2001-12-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.096},{"date":"2001-12-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.097},{"date":"2001-12-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.187},{"date":"2001-12-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.182},{"date":"2001-12-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.196},{"date":"2001-12-31","fuel":"gasoline","grade":"premium","formulation":"all","price":1.277},{"date":"2001-12-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.275},{"date":"2001-12-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.282},{"date":"2001-12-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.169},{"date":"2002-01-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.152},{"date":"2002-01-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.148},{"date":"2002-01-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.16},{"date":"2002-01-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.112},{"date":"2002-01-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.109},{"date":"2002-01-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.117},{"date":"2002-01-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.202},{"date":"2002-01-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.194},{"date":"2002-01-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.217},{"date":"2002-01-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.293},{"date":"2002-01-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.289},{"date":"2002-01-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.301},{"date":"2002-01-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.168},{"date":"2002-01-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.152},{"date":"2002-01-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.139},{"date":"2002-01-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.178},{"date":"2002-01-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.111},{"date":"2002-01-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.099},{"date":"2002-01-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.134},{"date":"2002-01-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.202},{"date":"2002-01-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.185},{"date":"2002-01-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.236},{"date":"2002-01-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.299},{"date":"2002-01-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.287},{"date":"2002-01-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.32},{"date":"2002-01-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.159},{"date":"2002-01-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.146},{"date":"2002-01-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.127},{"date":"2002-01-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.185},{"date":"2002-01-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.105},{"date":"2002-01-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.087},{"date":"2002-01-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.141},{"date":"2002-01-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.198},{"date":"2002-01-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.175},{"date":"2002-01-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.244},{"date":"2002-01-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.289},{"date":"2002-01-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.27},{"date":"2002-01-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.325},{"date":"2002-01-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.14},{"date":"2002-01-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.142},{"date":"2002-01-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.12},{"date":"2002-01-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.185},{"date":"2002-01-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.101},{"date":"2002-01-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.081},{"date":"2002-01-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.142},{"date":"2002-01-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.194},{"date":"2002-01-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.167},{"date":"2002-01-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.246},{"date":"2002-01-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.286},{"date":"2002-01-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.264},{"date":"2002-01-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.325},{"date":"2002-01-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.144},{"date":"2002-02-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.157},{"date":"2002-02-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.137},{"date":"2002-02-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.196},{"date":"2002-02-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.116},{"date":"2002-02-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.098},{"date":"2002-02-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.154},{"date":"2002-02-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.209},{"date":"2002-02-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.184},{"date":"2002-02-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.258},{"date":"2002-02-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.297},{"date":"2002-02-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.278},{"date":"2002-02-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.333},{"date":"2002-02-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.144},{"date":"2002-02-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.148},{"date":"2002-02-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.125},{"date":"2002-02-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.195},{"date":"2002-02-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.107},{"date":"2002-02-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.085},{"date":"2002-02-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.152},{"date":"2002-02-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.201},{"date":"2002-02-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.172},{"date":"2002-02-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.258},{"date":"2002-02-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.291},{"date":"2002-02-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.269},{"date":"2002-02-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.333},{"date":"2002-02-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.153},{"date":"2002-02-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.157},{"date":"2002-02-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.129},{"date":"2002-02-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.213},{"date":"2002-02-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.116},{"date":"2002-02-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.089},{"date":"2002-02-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.169},{"date":"2002-02-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.21},{"date":"2002-02-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.175},{"date":"2002-02-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.277},{"date":"2002-02-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.3},{"date":"2002-02-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.272},{"date":"2002-02-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.352},{"date":"2002-02-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.156},{"date":"2002-02-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.157},{"date":"2002-02-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.126},{"date":"2002-02-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.219},{"date":"2002-02-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.116},{"date":"2002-02-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.087},{"date":"2002-02-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.174},{"date":"2002-02-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.21},{"date":"2002-02-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.172},{"date":"2002-02-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.285},{"date":"2002-02-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.301},{"date":"2002-02-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.27},{"date":"2002-02-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.359},{"date":"2002-02-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.154},{"date":"2002-03-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.185},{"date":"2002-03-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.157},{"date":"2002-03-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.239},{"date":"2002-03-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.144},{"date":"2002-03-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.118},{"date":"2002-03-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.196},{"date":"2002-03-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.238},{"date":"2002-03-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.204},{"date":"2002-03-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.304},{"date":"2002-03-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.326},{"date":"2002-03-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.299},{"date":"2002-03-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.377},{"date":"2002-03-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.173},{"date":"2002-03-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.262},{"date":"2002-03-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.232},{"date":"2002-03-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.322},{"date":"2002-03-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.223},{"date":"2002-03-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.194},{"date":"2002-03-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.279},{"date":"2002-03-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.316},{"date":"2002-03-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.277},{"date":"2002-03-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.39},{"date":"2002-03-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.398},{"date":"2002-03-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.368},{"date":"2002-03-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.453},{"date":"2002-03-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.216},{"date":"2002-03-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.328},{"date":"2002-03-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.3},{"date":"2002-03-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.384},{"date":"2002-03-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.288},{"date":"2002-03-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.262},{"date":"2002-03-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.341},{"date":"2002-03-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.382},{"date":"2002-03-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.346},{"date":"2002-03-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.451},{"date":"2002-03-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.466},{"date":"2002-03-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.439},{"date":"2002-03-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.516},{"date":"2002-03-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.251},{"date":"2002-03-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.382},{"date":"2002-03-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.346},{"date":"2002-03-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.451},{"date":"2002-03-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.342},{"date":"2002-03-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.308},{"date":"2002-03-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.41},{"date":"2002-03-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.435},{"date":"2002-03-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.393},{"date":"2002-03-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.515},{"date":"2002-03-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.519},{"date":"2002-03-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.486},{"date":"2002-03-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.579},{"date":"2002-03-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.281},{"date":"2002-04-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.412},{"date":"2002-04-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.379},{"date":"2002-04-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.479},{"date":"2002-04-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.371},{"date":"2002-04-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.339},{"date":"2002-04-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.436},{"date":"2002-04-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.468},{"date":"2002-04-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.428},{"date":"2002-04-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.545},{"date":"2002-04-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.554},{"date":"2002-04-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.522},{"date":"2002-04-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.613},{"date":"2002-04-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.295},{"date":"2002-04-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.454},{"date":"2002-04-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.422},{"date":"2002-04-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.518},{"date":"2002-04-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.413},{"date":"2002-04-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.382},{"date":"2002-04-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.476},{"date":"2002-04-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.509},{"date":"2002-04-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.472},{"date":"2002-04-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.582},{"date":"2002-04-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.595},{"date":"2002-04-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.564},{"date":"2002-04-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.651},{"date":"2002-04-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.323},{"date":"2002-04-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.446},{"date":"2002-04-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.408},{"date":"2002-04-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.522},{"date":"2002-04-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.404},{"date":"2002-04-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.368},{"date":"2002-04-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.478},{"date":"2002-04-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.502},{"date":"2002-04-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.457},{"date":"2002-04-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.588},{"date":"2002-04-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.591},{"date":"2002-04-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.555},{"date":"2002-04-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.659},{"date":"2002-04-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.32},{"date":"2002-04-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.446},{"date":"2002-04-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.407},{"date":"2002-04-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.523},{"date":"2002-04-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.404},{"date":"2002-04-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.367},{"date":"2002-04-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.478},{"date":"2002-04-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.502},{"date":"2002-04-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.457},{"date":"2002-04-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.589},{"date":"2002-04-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.591},{"date":"2002-04-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.553},{"date":"2002-04-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.661},{"date":"2002-04-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.304},{"date":"2002-04-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.435},{"date":"2002-04-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.393},{"date":"2002-04-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.519},{"date":"2002-04-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.393},{"date":"2002-04-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.353},{"date":"2002-04-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.475},{"date":"2002-04-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.49},{"date":"2002-04-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.44},{"date":"2002-04-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.584},{"date":"2002-04-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.581},{"date":"2002-04-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.54},{"date":"2002-04-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.659},{"date":"2002-04-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.302},{"date":"2002-05-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.437},{"date":"2002-05-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.396},{"date":"2002-05-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.518},{"date":"2002-05-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.395},{"date":"2002-05-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.356},{"date":"2002-05-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.474},{"date":"2002-05-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.493},{"date":"2002-05-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.446},{"date":"2002-05-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.582},{"date":"2002-05-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.583},{"date":"2002-05-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.542},{"date":"2002-05-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.658},{"date":"2002-05-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.305},{"date":"2002-05-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.431},{"date":"2002-05-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.389},{"date":"2002-05-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.512},{"date":"2002-05-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.388},{"date":"2002-05-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.349},{"date":"2002-05-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.467},{"date":"2002-05-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.487},{"date":"2002-05-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.439},{"date":"2002-05-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.578},{"date":"2002-05-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.577},{"date":"2002-05-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.535},{"date":"2002-05-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.655},{"date":"2002-05-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.299},{"date":"2002-05-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.439},{"date":"2002-05-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.4},{"date":"2002-05-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.517},{"date":"2002-05-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.397},{"date":"2002-05-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.36},{"date":"2002-05-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.473},{"date":"2002-05-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.494},{"date":"2002-05-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.449},{"date":"2002-05-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.579},{"date":"2002-05-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.583},{"date":"2002-05-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.543},{"date":"2002-05-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.657},{"date":"2002-05-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.309},{"date":"2002-05-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.429},{"date":"2002-05-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.389},{"date":"2002-05-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.509},{"date":"2002-05-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.387},{"date":"2002-05-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.348},{"date":"2002-05-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.465},{"date":"2002-05-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.484},{"date":"2002-05-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.438},{"date":"2002-05-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.572},{"date":"2002-05-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.576},{"date":"2002-05-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.536},{"date":"2002-05-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.65},{"date":"2002-05-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.308},{"date":"2002-06-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.433},{"date":"2002-06-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.393},{"date":"2002-06-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.512},{"date":"2002-06-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.392},{"date":"2002-06-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.353},{"date":"2002-06-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.469},{"date":"2002-06-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.488},{"date":"2002-06-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.442},{"date":"2002-06-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.574},{"date":"2002-06-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.576},{"date":"2002-06-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.536},{"date":"2002-06-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.65},{"date":"2002-06-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.3},{"date":"2002-06-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.417},{"date":"2002-06-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.372},{"date":"2002-06-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.505},{"date":"2002-06-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.375},{"date":"2002-06-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.332},{"date":"2002-06-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.462},{"date":"2002-06-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.47},{"date":"2002-06-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.42},{"date":"2002-06-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.566},{"date":"2002-06-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.561},{"date":"2002-06-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.518},{"date":"2002-06-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.642},{"date":"2002-06-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.286},{"date":"2002-06-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.419},{"date":"2002-06-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.375},{"date":"2002-06-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.508},{"date":"2002-06-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.378},{"date":"2002-06-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.335},{"date":"2002-06-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.464},{"date":"2002-06-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.474},{"date":"2002-06-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.423},{"date":"2002-06-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.573},{"date":"2002-06-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.563},{"date":"2002-06-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.518},{"date":"2002-06-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.646},{"date":"2002-06-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.275},{"date":"2002-06-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.425},{"date":"2002-06-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.381},{"date":"2002-06-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.512},{"date":"2002-06-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.384},{"date":"2002-06-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.342},{"date":"2002-06-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.468},{"date":"2002-06-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.48},{"date":"2002-06-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.428},{"date":"2002-06-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.579},{"date":"2002-06-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.567},{"date":"2002-06-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.523},{"date":"2002-06-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.65},{"date":"2002-06-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.281},{"date":"2002-07-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.433},{"date":"2002-07-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.396},{"date":"2002-07-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.506},{"date":"2002-07-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.392},{"date":"2002-07-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.357},{"date":"2002-07-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.461},{"date":"2002-07-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.489},{"date":"2002-07-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.444},{"date":"2002-07-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.574},{"date":"2002-07-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.575},{"date":"2002-07-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.538},{"date":"2002-07-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.644},{"date":"2002-07-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.289},{"date":"2002-07-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.423},{"date":"2002-07-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.384},{"date":"2002-07-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.501},{"date":"2002-07-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.382},{"date":"2002-07-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.345},{"date":"2002-07-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.456},{"date":"2002-07-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.478},{"date":"2002-07-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.431},{"date":"2002-07-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.569},{"date":"2002-07-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.567},{"date":"2002-07-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.527},{"date":"2002-07-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.641},{"date":"2002-07-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.294},{"date":"2002-07-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.435},{"date":"2002-07-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.399},{"date":"2002-07-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.506},{"date":"2002-07-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.394},{"date":"2002-07-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.361},{"date":"2002-07-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.461},{"date":"2002-07-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.488},{"date":"2002-07-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.444},{"date":"2002-07-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.573},{"date":"2002-07-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.575},{"date":"2002-07-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.538},{"date":"2002-07-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.644},{"date":"2002-07-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.3},{"date":"2002-07-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.451},{"date":"2002-07-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.419},{"date":"2002-07-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.513},{"date":"2002-07-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.41},{"date":"2002-07-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.381},{"date":"2002-07-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.469},{"date":"2002-07-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.503},{"date":"2002-07-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.465},{"date":"2002-07-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.578},{"date":"2002-07-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.592},{"date":"2002-07-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.559},{"date":"2002-07-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.653},{"date":"2002-07-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.311},{"date":"2002-07-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.447},{"date":"2002-07-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.414},{"date":"2002-07-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.513},{"date":"2002-07-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.407},{"date":"2002-07-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.376},{"date":"2002-07-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.468},{"date":"2002-07-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.5},{"date":"2002-07-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.459},{"date":"2002-07-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.577},{"date":"2002-07-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.589},{"date":"2002-07-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.553},{"date":"2002-07-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.654},{"date":"2002-07-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.303},{"date":"2002-08-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.437},{"date":"2002-08-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.395},{"date":"2002-08-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.52},{"date":"2002-08-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.395},{"date":"2002-08-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.355},{"date":"2002-08-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.475},{"date":"2002-08-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.491},{"date":"2002-08-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.443},{"date":"2002-08-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.584},{"date":"2002-08-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.582},{"date":"2002-08-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.538},{"date":"2002-08-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.662},{"date":"2002-08-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.304},{"date":"2002-08-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.435},{"date":"2002-08-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.395},{"date":"2002-08-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.514},{"date":"2002-08-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.393},{"date":"2002-08-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.355},{"date":"2002-08-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.468},{"date":"2002-08-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.488},{"date":"2002-08-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.441},{"date":"2002-08-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.579},{"date":"2002-08-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.58},{"date":"2002-08-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.538},{"date":"2002-08-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.658},{"date":"2002-08-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.303},{"date":"2002-08-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.434},{"date":"2002-08-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.397},{"date":"2002-08-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.508},{"date":"2002-08-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.392},{"date":"2002-08-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.357},{"date":"2002-08-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.462},{"date":"2002-08-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.488},{"date":"2002-08-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.443},{"date":"2002-08-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.574},{"date":"2002-08-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.58},{"date":"2002-08-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.54},{"date":"2002-08-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.652},{"date":"2002-08-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.333},{"date":"2002-08-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.444},{"date":"2002-08-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.404},{"date":"2002-08-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.525},{"date":"2002-08-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.403},{"date":"2002-08-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.365},{"date":"2002-08-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.479},{"date":"2002-08-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.498},{"date":"2002-08-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.45},{"date":"2002-08-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.59},{"date":"2002-08-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.589},{"date":"2002-08-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.546},{"date":"2002-08-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.668},{"date":"2002-08-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.37},{"date":"2002-09-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.436},{"date":"2002-09-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.393},{"date":"2002-09-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.521},{"date":"2002-09-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.394},{"date":"2002-09-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.353},{"date":"2002-09-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.476},{"date":"2002-09-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.489},{"date":"2002-09-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.438},{"date":"2002-09-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.586},{"date":"2002-09-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.581},{"date":"2002-09-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.536},{"date":"2002-09-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.665},{"date":"2002-09-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.388},{"date":"2002-09-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.437},{"date":"2002-09-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.395},{"date":"2002-09-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.52},{"date":"2002-09-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.395},{"date":"2002-09-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.355},{"date":"2002-09-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.475},{"date":"2002-09-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.49},{"date":"2002-09-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.441},{"date":"2002-09-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.585},{"date":"2002-09-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.582},{"date":"2002-09-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.539},{"date":"2002-09-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.662},{"date":"2002-09-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.396},{"date":"2002-09-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.442},{"date":"2002-09-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.406},{"date":"2002-09-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.515},{"date":"2002-09-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.401},{"date":"2002-09-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.367},{"date":"2002-09-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.469},{"date":"2002-09-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.496},{"date":"2002-09-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.452},{"date":"2002-09-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.58},{"date":"2002-09-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.587},{"date":"2002-09-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.549},{"date":"2002-09-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.658},{"date":"2002-09-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.414},{"date":"2002-09-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.436},{"date":"2002-09-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.396},{"date":"2002-09-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.516},{"date":"2002-09-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.395},{"date":"2002-09-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.357},{"date":"2002-09-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.472},{"date":"2002-09-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.488},{"date":"2002-09-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.441},{"date":"2002-09-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.579},{"date":"2002-09-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.582},{"date":"2002-09-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.541},{"date":"2002-09-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.658},{"date":"2002-09-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.417},{"date":"2002-09-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.455},{"date":"2002-09-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.424},{"date":"2002-09-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.515},{"date":"2002-09-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.413},{"date":"2002-09-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.385},{"date":"2002-09-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.47},{"date":"2002-09-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.508},{"date":"2002-09-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.471},{"date":"2002-09-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.579},{"date":"2002-09-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.6},{"date":"2002-09-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.568},{"date":"2002-09-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.658},{"date":"2002-09-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.438},{"date":"2002-10-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.48},{"date":"2002-10-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.456},{"date":"2002-10-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.527},{"date":"2002-10-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.439},{"date":"2002-10-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.416},{"date":"2002-10-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.484},{"date":"2002-10-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.531},{"date":"2002-10-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.502},{"date":"2002-10-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.587},{"date":"2002-10-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.623},{"date":"2002-10-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.598},{"date":"2002-10-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.669},{"date":"2002-10-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.46},{"date":"2002-10-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.481},{"date":"2002-10-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.461},{"date":"2002-10-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.522},{"date":"2002-10-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.44},{"date":"2002-10-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.422},{"date":"2002-10-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.478},{"date":"2002-10-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.533},{"date":"2002-10-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.507},{"date":"2002-10-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.581},{"date":"2002-10-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.625},{"date":"2002-10-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.603},{"date":"2002-10-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.665},{"date":"2002-10-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.461},{"date":"2002-10-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.499},{"date":"2002-10-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.482},{"date":"2002-10-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.532},{"date":"2002-10-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.458},{"date":"2002-10-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.443},{"date":"2002-10-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.489},{"date":"2002-10-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.549},{"date":"2002-10-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.527},{"date":"2002-10-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.59},{"date":"2002-10-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.64},{"date":"2002-10-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.622},{"date":"2002-10-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.671},{"date":"2002-10-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.469},{"date":"2002-10-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.485},{"date":"2002-10-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.466},{"date":"2002-10-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.524},{"date":"2002-10-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.444},{"date":"2002-10-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.427},{"date":"2002-10-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.48},{"date":"2002-10-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.535},{"date":"2002-10-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.51},{"date":"2002-10-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.583},{"date":"2002-10-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.629},{"date":"2002-10-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.609},{"date":"2002-10-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.668},{"date":"2002-10-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.456},{"date":"2002-11-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.489},{"date":"2002-11-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.466},{"date":"2002-11-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.534},{"date":"2002-11-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.448},{"date":"2002-11-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.427},{"date":"2002-11-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.489},{"date":"2002-11-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.541},{"date":"2002-11-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.513},{"date":"2002-11-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.596},{"date":"2002-11-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.632},{"date":"2002-11-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.608},{"date":"2002-11-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.676},{"date":"2002-11-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.442},{"date":"2002-11-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.48},{"date":"2002-11-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.445},{"date":"2002-11-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.55},{"date":"2002-11-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.439},{"date":"2002-11-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.406},{"date":"2002-11-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.505},{"date":"2002-11-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.531},{"date":"2002-11-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.489},{"date":"2002-11-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.612},{"date":"2002-11-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.624},{"date":"2002-11-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.588},{"date":"2002-11-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.693},{"date":"2002-11-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.427},{"date":"2002-11-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.451},{"date":"2002-11-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.41},{"date":"2002-11-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.531},{"date":"2002-11-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.409},{"date":"2002-11-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.37},{"date":"2002-11-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.486},{"date":"2002-11-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.503},{"date":"2002-11-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.456},{"date":"2002-11-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.594},{"date":"2002-11-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.599},{"date":"2002-11-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.556},{"date":"2002-11-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.679},{"date":"2002-11-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.405},{"date":"2002-11-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.423},{"date":"2002-11-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.376},{"date":"2002-11-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.515},{"date":"2002-11-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.38},{"date":"2002-11-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.336},{"date":"2002-11-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.468},{"date":"2002-11-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.476},{"date":"2002-11-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.423},{"date":"2002-11-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.579},{"date":"2002-11-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.573},{"date":"2002-11-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.524},{"date":"2002-11-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.665},{"date":"2002-11-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.405},{"date":"2002-12-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.408},{"date":"2002-12-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.358},{"date":"2002-12-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.507},{"date":"2002-12-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.364},{"date":"2002-12-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.316},{"date":"2002-12-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.459},{"date":"2002-12-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.464},{"date":"2002-12-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.405},{"date":"2002-12-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.575},{"date":"2002-12-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.562},{"date":"2002-12-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.509},{"date":"2002-12-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.66},{"date":"2002-12-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.407},{"date":"2002-12-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.404},{"date":"2002-12-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.357},{"date":"2002-12-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.497},{"date":"2002-12-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.36},{"date":"2002-12-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.316},{"date":"2002-12-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.448},{"date":"2002-12-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.459},{"date":"2002-12-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.405},{"date":"2002-12-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.563},{"date":"2002-12-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.557},{"date":"2002-12-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.506},{"date":"2002-12-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.651},{"date":"2002-12-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.405},{"date":"2002-12-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.407},{"date":"2002-12-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.363},{"date":"2002-12-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.494},{"date":"2002-12-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.363},{"date":"2002-12-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.322},{"date":"2002-12-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.446},{"date":"2002-12-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.462},{"date":"2002-12-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.411},{"date":"2002-12-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.56},{"date":"2002-12-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.558},{"date":"2002-12-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.51},{"date":"2002-12-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.648},{"date":"2002-12-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.401},{"date":"2002-12-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.443},{"date":"2002-12-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.411},{"date":"2002-12-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.507},{"date":"2002-12-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.401},{"date":"2002-12-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.371},{"date":"2002-12-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.46},{"date":"2002-12-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.497},{"date":"2002-12-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.459},{"date":"2002-12-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.569},{"date":"2002-12-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.592},{"date":"2002-12-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.557},{"date":"2002-12-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.658},{"date":"2002-12-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.44},{"date":"2002-12-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.484},{"date":"2002-12-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.457},{"date":"2002-12-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.536},{"date":"2002-12-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.441},{"date":"2002-12-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.417},{"date":"2002-12-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.491},{"date":"2002-12-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.537},{"date":"2002-12-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.506},{"date":"2002-12-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.598},{"date":"2002-12-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.63},{"date":"2002-12-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.602},{"date":"2002-12-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.683},{"date":"2002-12-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.491},{"date":"2003-01-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.487},{"date":"2003-01-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.453},{"date":"2003-01-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.554},{"date":"2003-01-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.444},{"date":"2003-01-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.412},{"date":"2003-01-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.507},{"date":"2003-01-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.541},{"date":"2003-01-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.502},{"date":"2003-01-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.616},{"date":"2003-01-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.639},{"date":"2003-01-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.603},{"date":"2003-01-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.704},{"date":"2003-01-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.501},{"date":"2003-01-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.496},{"date":"2003-01-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.463},{"date":"2003-01-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.562},{"date":"2003-01-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.454},{"date":"2003-01-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.423},{"date":"2003-01-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.516},{"date":"2003-01-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.551},{"date":"2003-01-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.512},{"date":"2003-01-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.625},{"date":"2003-01-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.645},{"date":"2003-01-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.61},{"date":"2003-01-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.71},{"date":"2003-01-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.478},{"date":"2003-01-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.502},{"date":"2003-01-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.463},{"date":"2003-01-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.579},{"date":"2003-01-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.459},{"date":"2003-01-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.422},{"date":"2003-01-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.534},{"date":"2003-01-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.557},{"date":"2003-01-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.512},{"date":"2003-01-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.643},{"date":"2003-01-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.651},{"date":"2003-01-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.612},{"date":"2003-01-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.724},{"date":"2003-01-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.48},{"date":"2003-01-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.515},{"date":"2003-01-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.478},{"date":"2003-01-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.589},{"date":"2003-01-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.473},{"date":"2003-01-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.437},{"date":"2003-01-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.544},{"date":"2003-01-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.569},{"date":"2003-01-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.525},{"date":"2003-01-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.653},{"date":"2003-01-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.663},{"date":"2003-01-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.624},{"date":"2003-01-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.733},{"date":"2003-01-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.492},{"date":"2003-02-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.569},{"date":"2003-02-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.539},{"date":"2003-02-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.629},{"date":"2003-02-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.527},{"date":"2003-02-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.499},{"date":"2003-02-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.585},{"date":"2003-02-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.623},{"date":"2003-02-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.588},{"date":"2003-02-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.69},{"date":"2003-02-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.713},{"date":"2003-02-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.683},{"date":"2003-02-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.769},{"date":"2003-02-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.542},{"date":"2003-02-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.649},{"date":"2003-02-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.623},{"date":"2003-02-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.701},{"date":"2003-02-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.607},{"date":"2003-02-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.582},{"date":"2003-02-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.656},{"date":"2003-02-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.705},{"date":"2003-02-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.673},{"date":"2003-02-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.765},{"date":"2003-02-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.795},{"date":"2003-02-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.769},{"date":"2003-02-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.844},{"date":"2003-02-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.662},{"date":"2003-02-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.701},{"date":"2003-02-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.668},{"date":"2003-02-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.766},{"date":"2003-02-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.66},{"date":"2003-02-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.63},{"date":"2003-02-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.722},{"date":"2003-02-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.754},{"date":"2003-02-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.716},{"date":"2003-02-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.83},{"date":"2003-02-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.841},{"date":"2003-02-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.809},{"date":"2003-02-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.903},{"date":"2003-02-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.704},{"date":"2003-02-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.699},{"date":"2003-02-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.656},{"date":"2003-02-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.785},{"date":"2003-02-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.658},{"date":"2003-02-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.617},{"date":"2003-02-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.741},{"date":"2003-02-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.752},{"date":"2003-02-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.7},{"date":"2003-02-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.852},{"date":"2003-02-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.841},{"date":"2003-02-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.797},{"date":"2003-02-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.921},{"date":"2003-02-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.709},{"date":"2003-03-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.726},{"date":"2003-03-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.679},{"date":"2003-03-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.821},{"date":"2003-03-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.686},{"date":"2003-03-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.641},{"date":"2003-03-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.778},{"date":"2003-03-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.782},{"date":"2003-03-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.725},{"date":"2003-03-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.893},{"date":"2003-03-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.865},{"date":"2003-03-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.819},{"date":"2003-03-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.952},{"date":"2003-03-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.753},{"date":"2003-03-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.752},{"date":"2003-03-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.701},{"date":"2003-03-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.854},{"date":"2003-03-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.712},{"date":"2003-03-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.663},{"date":"2003-03-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.812},{"date":"2003-03-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.809},{"date":"2003-03-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.748},{"date":"2003-03-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.927},{"date":"2003-03-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.889},{"date":"2003-03-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.839},{"date":"2003-03-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.982},{"date":"2003-03-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.771},{"date":"2003-03-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.768},{"date":"2003-03-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.712},{"date":"2003-03-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.881},{"date":"2003-03-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.728},{"date":"2003-03-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.673},{"date":"2003-03-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.838},{"date":"2003-03-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.826},{"date":"2003-03-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.758},{"date":"2003-03-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.956},{"date":"2003-03-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.906},{"date":"2003-03-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.852},{"date":"2003-03-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.009},{"date":"2003-03-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.752},{"date":"2003-03-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.732},{"date":"2003-03-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.665},{"date":"2003-03-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.864},{"date":"2003-03-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.69},{"date":"2003-03-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.626},{"date":"2003-03-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.82},{"date":"2003-03-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.791},{"date":"2003-03-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.712},{"date":"2003-03-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.943},{"date":"2003-03-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.874},{"date":"2003-03-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.808},{"date":"2003-03-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.997},{"date":"2003-03-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.662},{"date":"2003-03-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.692},{"date":"2003-03-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.618},{"date":"2003-03-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.841},{"date":"2003-03-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.649},{"date":"2003-03-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.577},{"date":"2003-03-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.795},{"date":"2003-03-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.753},{"date":"2003-03-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.666},{"date":"2003-03-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.92},{"date":"2003-03-31","fuel":"gasoline","grade":"premium","formulation":"all","price":1.84},{"date":"2003-03-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.766},{"date":"2003-03-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.977},{"date":"2003-03-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.602},{"date":"2003-04-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.673},{"date":"2003-04-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.597},{"date":"2003-04-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.824},{"date":"2003-04-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.63},{"date":"2003-04-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.557},{"date":"2003-04-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.778},{"date":"2003-04-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.735},{"date":"2003-04-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.645},{"date":"2003-04-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.907},{"date":"2003-04-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.819},{"date":"2003-04-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.743},{"date":"2003-04-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.96},{"date":"2003-04-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.554},{"date":"2003-04-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.639},{"date":"2003-04-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.561},{"date":"2003-04-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.794},{"date":"2003-04-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.595},{"date":"2003-04-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.521},{"date":"2003-04-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.747},{"date":"2003-04-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.702},{"date":"2003-04-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.611},{"date":"2003-04-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.876},{"date":"2003-04-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.788},{"date":"2003-04-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.71},{"date":"2003-04-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.934},{"date":"2003-04-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.539},{"date":"2003-04-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.618},{"date":"2003-04-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.544},{"date":"2003-04-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.764},{"date":"2003-04-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.574},{"date":"2003-04-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.504},{"date":"2003-04-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.718},{"date":"2003-04-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.678},{"date":"2003-04-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.593},{"date":"2003-04-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.842},{"date":"2003-04-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.766},{"date":"2003-04-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.691},{"date":"2003-04-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.904},{"date":"2003-04-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.529},{"date":"2003-04-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.6},{"date":"2003-04-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.526},{"date":"2003-04-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.748},{"date":"2003-04-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.557},{"date":"2003-04-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.486},{"date":"2003-04-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.701},{"date":"2003-04-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.659},{"date":"2003-04-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.574},{"date":"2003-04-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.824},{"date":"2003-04-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.748},{"date":"2003-04-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.673},{"date":"2003-04-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.888},{"date":"2003-04-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.508},{"date":"2003-05-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.556},{"date":"2003-05-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.482},{"date":"2003-05-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.706},{"date":"2003-05-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.513},{"date":"2003-05-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.441},{"date":"2003-05-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.659},{"date":"2003-05-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.615},{"date":"2003-05-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.528},{"date":"2003-05-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.782},{"date":"2003-05-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.706},{"date":"2003-05-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.629},{"date":"2003-05-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.848},{"date":"2003-05-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.484},{"date":"2003-05-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.534},{"date":"2003-05-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.467},{"date":"2003-05-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.668},{"date":"2003-05-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.491},{"date":"2003-05-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.427},{"date":"2003-05-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.62},{"date":"2003-05-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.592},{"date":"2003-05-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.514},{"date":"2003-05-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.743},{"date":"2003-05-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.682},{"date":"2003-05-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.612},{"date":"2003-05-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.813},{"date":"2003-05-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.444},{"date":"2003-05-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.539},{"date":"2003-05-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.482},{"date":"2003-05-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.653},{"date":"2003-05-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.498},{"date":"2003-05-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.444},{"date":"2003-05-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.607},{"date":"2003-05-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.592},{"date":"2003-05-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.524},{"date":"2003-05-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.725},{"date":"2003-05-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.682},{"date":"2003-05-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.621},{"date":"2003-05-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.797},{"date":"2003-05-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.443},{"date":"2003-05-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.528},{"date":"2003-05-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.477},{"date":"2003-05-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.63},{"date":"2003-05-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.487},{"date":"2003-05-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.439},{"date":"2003-05-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.584},{"date":"2003-05-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.58},{"date":"2003-05-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.517},{"date":"2003-05-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.699},{"date":"2003-05-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.672},{"date":"2003-05-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.618},{"date":"2003-05-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.772},{"date":"2003-05-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.434},{"date":"2003-06-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.514},{"date":"2003-06-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.466},{"date":"2003-06-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.61},{"date":"2003-06-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.473},{"date":"2003-06-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.428},{"date":"2003-06-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.564},{"date":"2003-06-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.566},{"date":"2003-06-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.507},{"date":"2003-06-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.68},{"date":"2003-06-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.657},{"date":"2003-06-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.605},{"date":"2003-06-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.754},{"date":"2003-06-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.423},{"date":"2003-06-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.53},{"date":"2003-06-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.492},{"date":"2003-06-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.605},{"date":"2003-06-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.49},{"date":"2003-06-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.456},{"date":"2003-06-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.56},{"date":"2003-06-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.58},{"date":"2003-06-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.534},{"date":"2003-06-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.671},{"date":"2003-06-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.668},{"date":"2003-06-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.626},{"date":"2003-06-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.745},{"date":"2003-06-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.422},{"date":"2003-06-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.558},{"date":"2003-06-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.517},{"date":"2003-06-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.642},{"date":"2003-06-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.518},{"date":"2003-06-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.48},{"date":"2003-06-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.598},{"date":"2003-06-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.611},{"date":"2003-06-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.561},{"date":"2003-06-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.71},{"date":"2003-06-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.696},{"date":"2003-06-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.654},{"date":"2003-06-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.776},{"date":"2003-06-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.432},{"date":"2003-06-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.537},{"date":"2003-06-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.489},{"date":"2003-06-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.636},{"date":"2003-06-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.496},{"date":"2003-06-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.451},{"date":"2003-06-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.591},{"date":"2003-06-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.591},{"date":"2003-06-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.532},{"date":"2003-06-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.707},{"date":"2003-06-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.678},{"date":"2003-06-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.63},{"date":"2003-06-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.769},{"date":"2003-06-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.423},{"date":"2003-06-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.528},{"date":"2003-06-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.481},{"date":"2003-06-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.625},{"date":"2003-06-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.487},{"date":"2003-06-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.443},{"date":"2003-06-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.58},{"date":"2003-06-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.584},{"date":"2003-06-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.525},{"date":"2003-06-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.697},{"date":"2003-06-30","fuel":"gasoline","grade":"premium","formulation":"all","price":1.67},{"date":"2003-06-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.622},{"date":"2003-06-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.761},{"date":"2003-06-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.42},{"date":"2003-07-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.53},{"date":"2003-07-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.485},{"date":"2003-07-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.622},{"date":"2003-07-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.489},{"date":"2003-07-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.448},{"date":"2003-07-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.577},{"date":"2003-07-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.585},{"date":"2003-07-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.529},{"date":"2003-07-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.693},{"date":"2003-07-07","fuel":"gasoline","grade":"premium","formulation":"all","price":1.672},{"date":"2003-07-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.626},{"date":"2003-07-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.757},{"date":"2003-07-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.428},{"date":"2003-07-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.563},{"date":"2003-07-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.528},{"date":"2003-07-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.635},{"date":"2003-07-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.521},{"date":"2003-07-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.489},{"date":"2003-07-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.589},{"date":"2003-07-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.617},{"date":"2003-07-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.573},{"date":"2003-07-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.704},{"date":"2003-07-14","fuel":"gasoline","grade":"premium","formulation":"all","price":1.705},{"date":"2003-07-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.67},{"date":"2003-07-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.772},{"date":"2003-07-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.435},{"date":"2003-07-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.566},{"date":"2003-07-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.534},{"date":"2003-07-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.63},{"date":"2003-07-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.524},{"date":"2003-07-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.496},{"date":"2003-07-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.584},{"date":"2003-07-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.621},{"date":"2003-07-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.582},{"date":"2003-07-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.697},{"date":"2003-07-21","fuel":"gasoline","grade":"premium","formulation":"all","price":1.71},{"date":"2003-07-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.677},{"date":"2003-07-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.771},{"date":"2003-07-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.439},{"date":"2003-07-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.558},{"date":"2003-07-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.527},{"date":"2003-07-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.621},{"date":"2003-07-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.516},{"date":"2003-07-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.488},{"date":"2003-07-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.574},{"date":"2003-07-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.613},{"date":"2003-07-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.574},{"date":"2003-07-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.688},{"date":"2003-07-28","fuel":"gasoline","grade":"premium","formulation":"all","price":1.702},{"date":"2003-07-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.67},{"date":"2003-07-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.762},{"date":"2003-07-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.438},{"date":"2003-08-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.576},{"date":"2003-08-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.553},{"date":"2003-08-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.625},{"date":"2003-08-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.536},{"date":"2003-08-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.516},{"date":"2003-08-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.579},{"date":"2003-08-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.628},{"date":"2003-08-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.596},{"date":"2003-08-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.691},{"date":"2003-08-04","fuel":"gasoline","grade":"premium","formulation":"all","price":1.716},{"date":"2003-08-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.69},{"date":"2003-08-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.765},{"date":"2003-08-04","fuel":"diesel","grade":"all","formulation":"NA","price":1.453},{"date":"2003-08-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.611},{"date":"2003-08-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.587},{"date":"2003-08-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.659},{"date":"2003-08-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.571},{"date":"2003-08-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.55},{"date":"2003-08-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.614},{"date":"2003-08-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.663},{"date":"2003-08-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.632},{"date":"2003-08-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.723},{"date":"2003-08-11","fuel":"gasoline","grade":"premium","formulation":"all","price":1.749},{"date":"2003-08-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.725},{"date":"2003-08-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.796},{"date":"2003-08-11","fuel":"diesel","grade":"all","formulation":"NA","price":1.492},{"date":"2003-08-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.668},{"date":"2003-08-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.631},{"date":"2003-08-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.742},{"date":"2003-08-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.627},{"date":"2003-08-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.594},{"date":"2003-08-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.699},{"date":"2003-08-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.721},{"date":"2003-08-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.676},{"date":"2003-08-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.81},{"date":"2003-08-18","fuel":"gasoline","grade":"premium","formulation":"all","price":1.805},{"date":"2003-08-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.769},{"date":"2003-08-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.873},{"date":"2003-08-18","fuel":"diesel","grade":"all","formulation":"NA","price":1.498},{"date":"2003-08-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.787},{"date":"2003-08-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.73},{"date":"2003-08-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.902},{"date":"2003-08-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.747},{"date":"2003-08-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.693},{"date":"2003-08-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.859},{"date":"2003-08-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.842},{"date":"2003-08-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.775},{"date":"2003-08-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.971},{"date":"2003-08-25","fuel":"gasoline","grade":"premium","formulation":"all","price":1.925},{"date":"2003-08-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.867},{"date":"2003-08-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.032},{"date":"2003-08-25","fuel":"diesel","grade":"all","formulation":"NA","price":1.503},{"date":"2003-09-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.786},{"date":"2003-09-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.724},{"date":"2003-09-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.913},{"date":"2003-09-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.746},{"date":"2003-09-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.688},{"date":"2003-09-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.868},{"date":"2003-09-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.841},{"date":"2003-09-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.767},{"date":"2003-09-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.984},{"date":"2003-09-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.924},{"date":"2003-09-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.858},{"date":"2003-09-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.047},{"date":"2003-09-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.501},{"date":"2003-09-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.758},{"date":"2003-09-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.69},{"date":"2003-09-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.896},{"date":"2003-09-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.717},{"date":"2003-09-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.653},{"date":"2003-09-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.851},{"date":"2003-09-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.814},{"date":"2003-09-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.733},{"date":"2003-09-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.969},{"date":"2003-09-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.899},{"date":"2003-09-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.828},{"date":"2003-09-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.032},{"date":"2003-09-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.488},{"date":"2003-09-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.739},{"date":"2003-09-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.674},{"date":"2003-09-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.869},{"date":"2003-09-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.697},{"date":"2003-09-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.636},{"date":"2003-09-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.824},{"date":"2003-09-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.795},{"date":"2003-09-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.721},{"date":"2003-09-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.938},{"date":"2003-09-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.88},{"date":"2003-09-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.814},{"date":"2003-09-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.004},{"date":"2003-09-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.471},{"date":"2003-09-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.686},{"date":"2003-09-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.618},{"date":"2003-09-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.823},{"date":"2003-09-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.643},{"date":"2003-09-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.58},{"date":"2003-09-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.776},{"date":"2003-09-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.742},{"date":"2003-09-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.664},{"date":"2003-09-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.893},{"date":"2003-09-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.834},{"date":"2003-09-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.761},{"date":"2003-09-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.968},{"date":"2003-09-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.444},{"date":"2003-09-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.635},{"date":"2003-09-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.564},{"date":"2003-09-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.78},{"date":"2003-09-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.591},{"date":"2003-09-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.524},{"date":"2003-09-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.732},{"date":"2003-09-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.693},{"date":"2003-09-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.613},{"date":"2003-09-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.849},{"date":"2003-09-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.787},{"date":"2003-09-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.713},{"date":"2003-09-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.926},{"date":"2003-09-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.429},{"date":"2003-10-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.617},{"date":"2003-10-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.551},{"date":"2003-10-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.751},{"date":"2003-10-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.573},{"date":"2003-10-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.511},{"date":"2003-10-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.704},{"date":"2003-10-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.674},{"date":"2003-10-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.599},{"date":"2003-10-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.82},{"date":"2003-10-06","fuel":"gasoline","grade":"premium","formulation":"all","price":1.767},{"date":"2003-10-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.697},{"date":"2003-10-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.899},{"date":"2003-10-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.445},{"date":"2003-10-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.611},{"date":"2003-10-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.553},{"date":"2003-10-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.727},{"date":"2003-10-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.568},{"date":"2003-10-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.515},{"date":"2003-10-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.68},{"date":"2003-10-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.664},{"date":"2003-10-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.597},{"date":"2003-10-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.793},{"date":"2003-10-13","fuel":"gasoline","grade":"premium","formulation":"all","price":1.758},{"date":"2003-10-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.696},{"date":"2003-10-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.874},{"date":"2003-10-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.483},{"date":"2003-10-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.612},{"date":"2003-10-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.564},{"date":"2003-10-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.71},{"date":"2003-10-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.571},{"date":"2003-10-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.527},{"date":"2003-10-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.662},{"date":"2003-10-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.664},{"date":"2003-10-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.607},{"date":"2003-10-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.774},{"date":"2003-10-20","fuel":"gasoline","grade":"premium","formulation":"all","price":1.757},{"date":"2003-10-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.703},{"date":"2003-10-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.857},{"date":"2003-10-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.502},{"date":"2003-10-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.584},{"date":"2003-10-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.536},{"date":"2003-10-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.682},{"date":"2003-10-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.542},{"date":"2003-10-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.499},{"date":"2003-10-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.634},{"date":"2003-10-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.637},{"date":"2003-10-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.579},{"date":"2003-10-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.747},{"date":"2003-10-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.73},{"date":"2003-10-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.676},{"date":"2003-10-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.832},{"date":"2003-10-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.495},{"date":"2003-11-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.577},{"date":"2003-11-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.532},{"date":"2003-11-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.668},{"date":"2003-11-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.535},{"date":"2003-11-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.494},{"date":"2003-11-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.62},{"date":"2003-11-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.63},{"date":"2003-11-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.577},{"date":"2003-11-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.733},{"date":"2003-11-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.723},{"date":"2003-11-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.672},{"date":"2003-11-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.818},{"date":"2003-11-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.481},{"date":"2003-11-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.547},{"date":"2003-11-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.502},{"date":"2003-11-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.638},{"date":"2003-11-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.504},{"date":"2003-11-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.464},{"date":"2003-11-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.59},{"date":"2003-11-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.6},{"date":"2003-11-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.547},{"date":"2003-11-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.704},{"date":"2003-11-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.694},{"date":"2003-11-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.643},{"date":"2003-11-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.789},{"date":"2003-11-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.476},{"date":"2003-11-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.54},{"date":"2003-11-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.498},{"date":"2003-11-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.625},{"date":"2003-11-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.497},{"date":"2003-11-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.459},{"date":"2003-11-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.577},{"date":"2003-11-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.593},{"date":"2003-11-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.544},{"date":"2003-11-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.69},{"date":"2003-11-17","fuel":"gasoline","grade":"premium","formulation":"all","price":1.689},{"date":"2003-11-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.642},{"date":"2003-11-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.776},{"date":"2003-11-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.481},{"date":"2003-11-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.554},{"date":"2003-11-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.517},{"date":"2003-11-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.631},{"date":"2003-11-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.512},{"date":"2003-11-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.478},{"date":"2003-11-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.584},{"date":"2003-11-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.608},{"date":"2003-11-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.563},{"date":"2003-11-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.695},{"date":"2003-11-24","fuel":"gasoline","grade":"premium","formulation":"all","price":1.701},{"date":"2003-11-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.66},{"date":"2003-11-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.778},{"date":"2003-11-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.491},{"date":"2003-12-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.533},{"date":"2003-12-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.493},{"date":"2003-12-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.615},{"date":"2003-12-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.49},{"date":"2003-12-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.454},{"date":"2003-12-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.567},{"date":"2003-12-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.588},{"date":"2003-12-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.54},{"date":"2003-12-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.68},{"date":"2003-12-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.683},{"date":"2003-12-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.639},{"date":"2003-12-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.764},{"date":"2003-12-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.476},{"date":"2003-12-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.519},{"date":"2003-12-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.481},{"date":"2003-12-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.597},{"date":"2003-12-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.476},{"date":"2003-12-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.441},{"date":"2003-12-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.549},{"date":"2003-12-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.574},{"date":"2003-12-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.528},{"date":"2003-12-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.662},{"date":"2003-12-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.67},{"date":"2003-12-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.628},{"date":"2003-12-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.747},{"date":"2003-12-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.481},{"date":"2003-12-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.509},{"date":"2003-12-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.473},{"date":"2003-12-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.58},{"date":"2003-12-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.465},{"date":"2003-12-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.433},{"date":"2003-12-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.532},{"date":"2003-12-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.563},{"date":"2003-12-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.521},{"date":"2003-12-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.645},{"date":"2003-12-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.66},{"date":"2003-12-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.622},{"date":"2003-12-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.732},{"date":"2003-12-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.486},{"date":"2003-12-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.528},{"date":"2003-12-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.499},{"date":"2003-12-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.586},{"date":"2003-12-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.485},{"date":"2003-12-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.459},{"date":"2003-12-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.538},{"date":"2003-12-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.583},{"date":"2003-12-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.549},{"date":"2003-12-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.649},{"date":"2003-12-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.678},{"date":"2003-12-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.647},{"date":"2003-12-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.737},{"date":"2003-12-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.504},{"date":"2003-12-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.521},{"date":"2003-12-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.495},{"date":"2003-12-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.575},{"date":"2003-12-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.478},{"date":"2003-12-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.454},{"date":"2003-12-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.527},{"date":"2003-12-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.577},{"date":"2003-12-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.544},{"date":"2003-12-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.639},{"date":"2003-12-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.674},{"date":"2003-12-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.645},{"date":"2003-12-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.727},{"date":"2003-12-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.502},{"date":"2004-01-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.552},{"date":"2004-01-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.532},{"date":"2004-01-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.595},{"date":"2004-01-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.51},{"date":"2004-01-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.492},{"date":"2004-01-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.547},{"date":"2004-01-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.605},{"date":"2004-01-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.578},{"date":"2004-01-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.659},{"date":"2004-01-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.701},{"date":"2004-01-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.677},{"date":"2004-01-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.744},{"date":"2004-01-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.503},{"date":"2004-01-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.603},{"date":"2004-01-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.585},{"date":"2004-01-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.641},{"date":"2004-01-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.56},{"date":"2004-01-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.544},{"date":"2004-01-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.594},{"date":"2004-01-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.657},{"date":"2004-01-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.634},{"date":"2004-01-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.703},{"date":"2004-01-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.752},{"date":"2004-01-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.733},{"date":"2004-01-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.787},{"date":"2004-01-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.551},{"date":"2004-01-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.637},{"date":"2004-01-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.619},{"date":"2004-01-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.674},{"date":"2004-01-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.595},{"date":"2004-01-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.579},{"date":"2004-01-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.628},{"date":"2004-01-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.69},{"date":"2004-01-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.667},{"date":"2004-01-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.735},{"date":"2004-01-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.785},{"date":"2004-01-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.767},{"date":"2004-01-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.819},{"date":"2004-01-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.559},{"date":"2004-01-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.664},{"date":"2004-01-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.644},{"date":"2004-01-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.707},{"date":"2004-01-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.622},{"date":"2004-01-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.604},{"date":"2004-01-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.661},{"date":"2004-01-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.717},{"date":"2004-01-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.691},{"date":"2004-01-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.766},{"date":"2004-01-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.813},{"date":"2004-01-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.793},{"date":"2004-01-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.85},{"date":"2004-01-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.591},{"date":"2004-02-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.66},{"date":"2004-02-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.632},{"date":"2004-02-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.717},{"date":"2004-02-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.616},{"date":"2004-02-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.591},{"date":"2004-02-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.67},{"date":"2004-02-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.713},{"date":"2004-02-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.679},{"date":"2004-02-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.779},{"date":"2004-02-02","fuel":"gasoline","grade":"premium","formulation":"all","price":1.811},{"date":"2004-02-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.783},{"date":"2004-02-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.862},{"date":"2004-02-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.581},{"date":"2004-02-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.681},{"date":"2004-02-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.649},{"date":"2004-02-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.746},{"date":"2004-02-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.638},{"date":"2004-02-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.609},{"date":"2004-02-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.7},{"date":"2004-02-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.734},{"date":"2004-02-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.695},{"date":"2004-02-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.809},{"date":"2004-02-09","fuel":"gasoline","grade":"premium","formulation":"all","price":1.828},{"date":"2004-02-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.797},{"date":"2004-02-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.887},{"date":"2004-02-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.568},{"date":"2004-02-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.69},{"date":"2004-02-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.656},{"date":"2004-02-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.758},{"date":"2004-02-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.648},{"date":"2004-02-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.617},{"date":"2004-02-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.714},{"date":"2004-02-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.744},{"date":"2004-02-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.703},{"date":"2004-02-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.824},{"date":"2004-02-16","fuel":"gasoline","grade":"premium","formulation":"all","price":1.836},{"date":"2004-02-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.804},{"date":"2004-02-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.895},{"date":"2004-02-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.584},{"date":"2004-02-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.73},{"date":"2004-02-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.68},{"date":"2004-02-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.83},{"date":"2004-02-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.688},{"date":"2004-02-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.641},{"date":"2004-02-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.786},{"date":"2004-02-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.786},{"date":"2004-02-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.726},{"date":"2004-02-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.901},{"date":"2004-02-23","fuel":"gasoline","grade":"premium","formulation":"all","price":1.873},{"date":"2004-02-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.827},{"date":"2004-02-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.96},{"date":"2004-02-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.595},{"date":"2004-03-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.758},{"date":"2004-03-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.703},{"date":"2004-03-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.871},{"date":"2004-03-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.717},{"date":"2004-03-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.664},{"date":"2004-03-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.826},{"date":"2004-03-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.816},{"date":"2004-03-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.749},{"date":"2004-03-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.945},{"date":"2004-03-01","fuel":"gasoline","grade":"premium","formulation":"all","price":1.902},{"date":"2004-03-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.848},{"date":"2004-03-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.001},{"date":"2004-03-01","fuel":"diesel","grade":"all","formulation":"NA","price":1.619},{"date":"2004-03-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.78},{"date":"2004-03-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.729},{"date":"2004-03-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.884},{"date":"2004-03-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.738},{"date":"2004-03-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.69},{"date":"2004-03-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.838},{"date":"2004-03-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.838},{"date":"2004-03-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.777},{"date":"2004-03-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.957},{"date":"2004-03-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.925},{"date":"2004-03-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.875},{"date":"2004-03-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.018},{"date":"2004-03-08","fuel":"diesel","grade":"all","formulation":"NA","price":1.628},{"date":"2004-03-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.767},{"date":"2004-03-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.714},{"date":"2004-03-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.874},{"date":"2004-03-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.724},{"date":"2004-03-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.675},{"date":"2004-03-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.828},{"date":"2004-03-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.826},{"date":"2004-03-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.762},{"date":"2004-03-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.949},{"date":"2004-03-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.912},{"date":"2004-03-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.86},{"date":"2004-03-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.008},{"date":"2004-03-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.617},{"date":"2004-03-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.785},{"date":"2004-03-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.737},{"date":"2004-03-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.883},{"date":"2004-03-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.743},{"date":"2004-03-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.698},{"date":"2004-03-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.838},{"date":"2004-03-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.843},{"date":"2004-03-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.784},{"date":"2004-03-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.956},{"date":"2004-03-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.93},{"date":"2004-03-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.884},{"date":"2004-03-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.017},{"date":"2004-03-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.641},{"date":"2004-03-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.8},{"date":"2004-03-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.755},{"date":"2004-03-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.892},{"date":"2004-03-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.758},{"date":"2004-03-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.716},{"date":"2004-03-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.847},{"date":"2004-03-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.857},{"date":"2004-03-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.802},{"date":"2004-03-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.963},{"date":"2004-03-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.944},{"date":"2004-03-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.901},{"date":"2004-03-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.024},{"date":"2004-03-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.642},{"date":"2004-04-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.822},{"date":"2004-04-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.776},{"date":"2004-04-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.916},{"date":"2004-04-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.78},{"date":"2004-04-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.737},{"date":"2004-04-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.871},{"date":"2004-04-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.879},{"date":"2004-04-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.823},{"date":"2004-04-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.989},{"date":"2004-04-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.963},{"date":"2004-04-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.919},{"date":"2004-04-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.047},{"date":"2004-04-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.648},{"date":"2004-04-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.827},{"date":"2004-04-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.778},{"date":"2004-04-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.927},{"date":"2004-04-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.786},{"date":"2004-04-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.74},{"date":"2004-04-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.883},{"date":"2004-04-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.885},{"date":"2004-04-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.826},{"date":"2004-04-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.001},{"date":"2004-04-12","fuel":"gasoline","grade":"premium","formulation":"all","price":1.969},{"date":"2004-04-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.921},{"date":"2004-04-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.057},{"date":"2004-04-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.679},{"date":"2004-04-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.853},{"date":"2004-04-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.81},{"date":"2004-04-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.942},{"date":"2004-04-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.813},{"date":"2004-04-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.773},{"date":"2004-04-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.899},{"date":"2004-04-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.909},{"date":"2004-04-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.856},{"date":"2004-04-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.011},{"date":"2004-04-19","fuel":"gasoline","grade":"premium","formulation":"all","price":1.991},{"date":"2004-04-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.949},{"date":"2004-04-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.069},{"date":"2004-04-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.724},{"date":"2004-04-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.853},{"date":"2004-04-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.812},{"date":"2004-04-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.935},{"date":"2004-04-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.812},{"date":"2004-04-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.774},{"date":"2004-04-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.891},{"date":"2004-04-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.908},{"date":"2004-04-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.859},{"date":"2004-04-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.005},{"date":"2004-04-26","fuel":"gasoline","grade":"premium","formulation":"all","price":1.992},{"date":"2004-04-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.952},{"date":"2004-04-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.066},{"date":"2004-04-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.718},{"date":"2004-05-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.884},{"date":"2004-05-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.848},{"date":"2004-05-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.957},{"date":"2004-05-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.844},{"date":"2004-05-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.811},{"date":"2004-05-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.913},{"date":"2004-05-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.937},{"date":"2004-05-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.892},{"date":"2004-05-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.024},{"date":"2004-05-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.021},{"date":"2004-05-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.985},{"date":"2004-05-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.089},{"date":"2004-05-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.717},{"date":"2004-05-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.979},{"date":"2004-05-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.939},{"date":"2004-05-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.06},{"date":"2004-05-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.941},{"date":"2004-05-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.904},{"date":"2004-05-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.017},{"date":"2004-05-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.031},{"date":"2004-05-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.981},{"date":"2004-05-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.128},{"date":"2004-05-10","fuel":"gasoline","grade":"premium","formulation":"all","price":2.111},{"date":"2004-05-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.07},{"date":"2004-05-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.188},{"date":"2004-05-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.745},{"date":"2004-05-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.055},{"date":"2004-05-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.015},{"date":"2004-05-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.138},{"date":"2004-05-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.017},{"date":"2004-05-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.979},{"date":"2004-05-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.095},{"date":"2004-05-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.106},{"date":"2004-05-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.056},{"date":"2004-05-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.201},{"date":"2004-05-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.189},{"date":"2004-05-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.147},{"date":"2004-05-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.267},{"date":"2004-05-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.763},{"date":"2004-05-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.104},{"date":"2004-05-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.063},{"date":"2004-05-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.189},{"date":"2004-05-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.064},{"date":"2004-05-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.026},{"date":"2004-05-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.145},{"date":"2004-05-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.155},{"date":"2004-05-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.104},{"date":"2004-05-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.253},{"date":"2004-05-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.242},{"date":"2004-05-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.199},{"date":"2004-05-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.322},{"date":"2004-05-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.761},{"date":"2004-05-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.092},{"date":"2004-05-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.041},{"date":"2004-05-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.195},{"date":"2004-05-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.051},{"date":"2004-05-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.004},{"date":"2004-05-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.15},{"date":"2004-05-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.145},{"date":"2004-05-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.084},{"date":"2004-05-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.262},{"date":"2004-05-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.234},{"date":"2004-05-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.181},{"date":"2004-05-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.332},{"date":"2004-05-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.746},{"date":"2004-06-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.075},{"date":"2004-06-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.021},{"date":"2004-06-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.186},{"date":"2004-06-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.034},{"date":"2004-06-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.983},{"date":"2004-06-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.14},{"date":"2004-06-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.128},{"date":"2004-06-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.064},{"date":"2004-06-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.253},{"date":"2004-06-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.219},{"date":"2004-06-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.163},{"date":"2004-06-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.324},{"date":"2004-06-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.734},{"date":"2004-06-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.029},{"date":"2004-06-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.966},{"date":"2004-06-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.157},{"date":"2004-06-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.985},{"date":"2004-06-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.926},{"date":"2004-06-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.11},{"date":"2004-06-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.086},{"date":"2004-06-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.014},{"date":"2004-06-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.227},{"date":"2004-06-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.178},{"date":"2004-06-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.114},{"date":"2004-06-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.298},{"date":"2004-06-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.711},{"date":"2004-06-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.981},{"date":"2004-06-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.914},{"date":"2004-06-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.12},{"date":"2004-06-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.937},{"date":"2004-06-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.873},{"date":"2004-06-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.072},{"date":"2004-06-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.039},{"date":"2004-06-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.961},{"date":"2004-06-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.189},{"date":"2004-06-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.134},{"date":"2004-06-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.064},{"date":"2004-06-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.265},{"date":"2004-06-21","fuel":"diesel","grade":"all","formulation":"NA","price":1.7},{"date":"2004-06-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.965},{"date":"2004-06-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.9},{"date":"2004-06-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.096},{"date":"2004-06-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.921},{"date":"2004-06-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.859},{"date":"2004-06-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.049},{"date":"2004-06-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.021},{"date":"2004-06-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.947},{"date":"2004-06-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.163},{"date":"2004-06-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.118},{"date":"2004-06-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.051},{"date":"2004-06-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.24},{"date":"2004-06-28","fuel":"diesel","grade":"all","formulation":"NA","price":1.7},{"date":"2004-07-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.939},{"date":"2004-07-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.875},{"date":"2004-07-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.068},{"date":"2004-07-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.895},{"date":"2004-07-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.835},{"date":"2004-07-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.02},{"date":"2004-07-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.995},{"date":"2004-07-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.922},{"date":"2004-07-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.136},{"date":"2004-07-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.091},{"date":"2004-07-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.025},{"date":"2004-07-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.215},{"date":"2004-07-05","fuel":"diesel","grade":"all","formulation":"NA","price":1.716},{"date":"2004-07-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.959},{"date":"2004-07-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.907},{"date":"2004-07-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.065},{"date":"2004-07-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.917},{"date":"2004-07-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.869},{"date":"2004-07-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.017},{"date":"2004-07-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.013},{"date":"2004-07-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.951},{"date":"2004-07-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.134},{"date":"2004-07-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.108},{"date":"2004-07-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.052},{"date":"2004-07-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.213},{"date":"2004-07-12","fuel":"diesel","grade":"all","formulation":"NA","price":1.74},{"date":"2004-07-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.971},{"date":"2004-07-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.926},{"date":"2004-07-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.062},{"date":"2004-07-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.928},{"date":"2004-07-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.888},{"date":"2004-07-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.014},{"date":"2004-07-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.025},{"date":"2004-07-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.971},{"date":"2004-07-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.13},{"date":"2004-07-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.119},{"date":"2004-07-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.07},{"date":"2004-07-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.208},{"date":"2004-07-19","fuel":"diesel","grade":"all","formulation":"NA","price":1.744},{"date":"2004-07-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.948},{"date":"2004-07-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.901},{"date":"2004-07-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.043},{"date":"2004-07-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.905},{"date":"2004-07-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.861},{"date":"2004-07-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.996},{"date":"2004-07-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.003},{"date":"2004-07-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.948},{"date":"2004-07-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.109},{"date":"2004-07-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.097},{"date":"2004-07-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.048},{"date":"2004-07-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.189},{"date":"2004-07-26","fuel":"diesel","grade":"all","formulation":"NA","price":1.754},{"date":"2004-08-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.93},{"date":"2004-08-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.885},{"date":"2004-08-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.022},{"date":"2004-08-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.888},{"date":"2004-08-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.846},{"date":"2004-08-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.975},{"date":"2004-08-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.985},{"date":"2004-08-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.931},{"date":"2004-08-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.089},{"date":"2004-08-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.078},{"date":"2004-08-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.029},{"date":"2004-08-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.168},{"date":"2004-08-02","fuel":"diesel","grade":"all","formulation":"NA","price":1.78},{"date":"2004-08-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.92},{"date":"2004-08-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.878},{"date":"2004-08-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.005},{"date":"2004-08-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.877},{"date":"2004-08-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.839},{"date":"2004-08-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.957},{"date":"2004-08-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.973},{"date":"2004-08-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.923},{"date":"2004-08-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.072},{"date":"2004-08-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.068},{"date":"2004-08-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.022},{"date":"2004-08-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.154},{"date":"2004-08-09","fuel":"diesel","grade":"all","formulation":"NA","price":1.814},{"date":"2004-08-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.917},{"date":"2004-08-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.881},{"date":"2004-08-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.992},{"date":"2004-08-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.875},{"date":"2004-08-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.842},{"date":"2004-08-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.945},{"date":"2004-08-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.97},{"date":"2004-08-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.925},{"date":"2004-08-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.056},{"date":"2004-08-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.064},{"date":"2004-08-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.023},{"date":"2004-08-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.139},{"date":"2004-08-16","fuel":"diesel","grade":"all","formulation":"NA","price":1.825},{"date":"2004-08-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.926},{"date":"2004-08-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.892},{"date":"2004-08-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.995},{"date":"2004-08-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.884},{"date":"2004-08-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.854},{"date":"2004-08-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.947},{"date":"2004-08-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.978},{"date":"2004-08-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.936},{"date":"2004-08-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.059},{"date":"2004-08-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.071},{"date":"2004-08-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.033},{"date":"2004-08-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.142},{"date":"2004-08-23","fuel":"diesel","grade":"all","formulation":"NA","price":1.874},{"date":"2004-08-30","fuel":"gasoline","grade":"all","formulation":"all","price":1.909},{"date":"2004-08-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.866},{"date":"2004-08-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.997},{"date":"2004-08-30","fuel":"gasoline","grade":"regular","formulation":"all","price":1.866},{"date":"2004-08-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.827},{"date":"2004-08-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.949},{"date":"2004-08-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.964},{"date":"2004-08-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.911},{"date":"2004-08-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.067},{"date":"2004-08-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.056},{"date":"2004-08-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.01},{"date":"2004-08-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.142},{"date":"2004-08-30","fuel":"diesel","grade":"all","formulation":"NA","price":1.871},{"date":"2004-09-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.893},{"date":"2004-09-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.854},{"date":"2004-09-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.973},{"date":"2004-09-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.85},{"date":"2004-09-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.815},{"date":"2004-09-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.924},{"date":"2004-09-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.949},{"date":"2004-09-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.901},{"date":"2004-09-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.043},{"date":"2004-09-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.043},{"date":"2004-09-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2},{"date":"2004-09-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.121},{"date":"2004-09-06","fuel":"diesel","grade":"all","formulation":"NA","price":1.869},{"date":"2004-09-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.889},{"date":"2004-09-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.852},{"date":"2004-09-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.963},{"date":"2004-09-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.846},{"date":"2004-09-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.813},{"date":"2004-09-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.915},{"date":"2004-09-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.945},{"date":"2004-09-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.9},{"date":"2004-09-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.03},{"date":"2004-09-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.037},{"date":"2004-09-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.998},{"date":"2004-09-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.11},{"date":"2004-09-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.874},{"date":"2004-09-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.908},{"date":"2004-09-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.878},{"date":"2004-09-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.969},{"date":"2004-09-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.866},{"date":"2004-09-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.839},{"date":"2004-09-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.922},{"date":"2004-09-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.962},{"date":"2004-09-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.923},{"date":"2004-09-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.036},{"date":"2004-09-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.054},{"date":"2004-09-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.023},{"date":"2004-09-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.112},{"date":"2004-09-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.912},{"date":"2004-09-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.959},{"date":"2004-09-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.934},{"date":"2004-09-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.009},{"date":"2004-09-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.917},{"date":"2004-09-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.895},{"date":"2004-09-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.963},{"date":"2004-09-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.012},{"date":"2004-09-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.979},{"date":"2004-09-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.076},{"date":"2004-09-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.103},{"date":"2004-09-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.077},{"date":"2004-09-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.151},{"date":"2004-09-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.012},{"date":"2004-10-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.98},{"date":"2004-10-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.941},{"date":"2004-10-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.058},{"date":"2004-10-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.938},{"date":"2004-10-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.902},{"date":"2004-10-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.012},{"date":"2004-10-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.035},{"date":"2004-10-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.987},{"date":"2004-10-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.127},{"date":"2004-10-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.125},{"date":"2004-10-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.087},{"date":"2004-10-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.195},{"date":"2004-10-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.053},{"date":"2004-10-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.035},{"date":"2004-10-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.988},{"date":"2004-10-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.13},{"date":"2004-10-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.993},{"date":"2004-10-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.949},{"date":"2004-10-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.086},{"date":"2004-10-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.091},{"date":"2004-10-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.035},{"date":"2004-10-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.2},{"date":"2004-10-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.179},{"date":"2004-10-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.134},{"date":"2004-10-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.263},{"date":"2004-10-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.092},{"date":"2004-10-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.077},{"date":"2004-10-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.024},{"date":"2004-10-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.187},{"date":"2004-10-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.035},{"date":"2004-10-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.984},{"date":"2004-10-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.142},{"date":"2004-10-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.133},{"date":"2004-10-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.07},{"date":"2004-10-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.256},{"date":"2004-10-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.222},{"date":"2004-10-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.17},{"date":"2004-10-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.32},{"date":"2004-10-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.18},{"date":"2004-10-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.074},{"date":"2004-10-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.02},{"date":"2004-10-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.185},{"date":"2004-10-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.032},{"date":"2004-10-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.98},{"date":"2004-10-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.14},{"date":"2004-10-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.133},{"date":"2004-10-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.068},{"date":"2004-10-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.258},{"date":"2004-10-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.221},{"date":"2004-10-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.169},{"date":"2004-10-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.317},{"date":"2004-10-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.212},{"date":"2004-11-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.076},{"date":"2004-11-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.026},{"date":"2004-11-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.179},{"date":"2004-11-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.034},{"date":"2004-11-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.986},{"date":"2004-11-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.133},{"date":"2004-11-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.134},{"date":"2004-11-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.074},{"date":"2004-11-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.252},{"date":"2004-11-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.223},{"date":"2004-11-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.173},{"date":"2004-11-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.314},{"date":"2004-11-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.206},{"date":"2004-11-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.045},{"date":"2004-11-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.992},{"date":"2004-11-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.154},{"date":"2004-11-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.001},{"date":"2004-11-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.951},{"date":"2004-11-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.107},{"date":"2004-11-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.105},{"date":"2004-11-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.042},{"date":"2004-11-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.226},{"date":"2004-11-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.196},{"date":"2004-11-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.144},{"date":"2004-11-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.292},{"date":"2004-11-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.163},{"date":"2004-11-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.014},{"date":"2004-11-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.96},{"date":"2004-11-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.124},{"date":"2004-11-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.969},{"date":"2004-11-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.918},{"date":"2004-11-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.077},{"date":"2004-11-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.075},{"date":"2004-11-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.013},{"date":"2004-11-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.197},{"date":"2004-11-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.168},{"date":"2004-11-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.114},{"date":"2004-11-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.267},{"date":"2004-11-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.132},{"date":"2004-11-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.992},{"date":"2004-11-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.943},{"date":"2004-11-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.094},{"date":"2004-11-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.948},{"date":"2004-11-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.901},{"date":"2004-11-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.046},{"date":"2004-11-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.051},{"date":"2004-11-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.993},{"date":"2004-11-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.165},{"date":"2004-11-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.146},{"date":"2004-11-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.097},{"date":"2004-11-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.238},{"date":"2004-11-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.116},{"date":"2004-11-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.989},{"date":"2004-11-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.945},{"date":"2004-11-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.078},{"date":"2004-11-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.945},{"date":"2004-11-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.903},{"date":"2004-11-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.031},{"date":"2004-11-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.047},{"date":"2004-11-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.994},{"date":"2004-11-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.149},{"date":"2004-11-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.142},{"date":"2004-11-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.099},{"date":"2004-11-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.221},{"date":"2004-11-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.116},{"date":"2004-12-06","fuel":"gasoline","grade":"all","formulation":"all","price":1.956},{"date":"2004-12-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.91},{"date":"2004-12-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.05},{"date":"2004-12-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.911},{"date":"2004-12-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.868},{"date":"2004-12-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.002},{"date":"2004-12-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.014},{"date":"2004-12-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.96},{"date":"2004-12-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.12},{"date":"2004-12-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.111},{"date":"2004-12-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.065},{"date":"2004-12-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.196},{"date":"2004-12-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.069},{"date":"2004-12-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.893},{"date":"2004-12-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.842},{"date":"2004-12-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.998},{"date":"2004-12-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.847},{"date":"2004-12-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.799},{"date":"2004-12-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.948},{"date":"2004-12-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.953},{"date":"2004-12-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.893},{"date":"2004-12-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.069},{"date":"2004-12-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.053},{"date":"2004-12-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.002},{"date":"2004-12-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.148},{"date":"2004-12-13","fuel":"diesel","grade":"all","formulation":"NA","price":1.997},{"date":"2004-12-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.861},{"date":"2004-12-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.82},{"date":"2004-12-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.944},{"date":"2004-12-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.815},{"date":"2004-12-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.777},{"date":"2004-12-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.894},{"date":"2004-12-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.921},{"date":"2004-12-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.873},{"date":"2004-12-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.014},{"date":"2004-12-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.02},{"date":"2004-12-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.978},{"date":"2004-12-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.099},{"date":"2004-12-20","fuel":"diesel","grade":"all","formulation":"NA","price":1.984},{"date":"2004-12-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.838},{"date":"2004-12-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.798},{"date":"2004-12-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.919},{"date":"2004-12-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.791},{"date":"2004-12-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.754},{"date":"2004-12-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.869},{"date":"2004-12-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.898},{"date":"2004-12-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.851},{"date":"2004-12-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.988},{"date":"2004-12-27","fuel":"gasoline","grade":"premium","formulation":"all","price":1.998},{"date":"2004-12-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.958},{"date":"2004-12-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.073},{"date":"2004-12-27","fuel":"diesel","grade":"all","formulation":"NA","price":1.987},{"date":"2005-01-03","fuel":"gasoline","grade":"all","formulation":"all","price":1.824},{"date":"2005-01-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.788},{"date":"2005-01-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.898},{"date":"2005-01-03","fuel":"gasoline","grade":"regular","formulation":"all","price":1.778},{"date":"2005-01-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.745},{"date":"2005-01-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.848},{"date":"2005-01-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.882},{"date":"2005-01-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.839},{"date":"2005-01-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.965},{"date":"2005-01-03","fuel":"gasoline","grade":"premium","formulation":"all","price":1.985},{"date":"2005-01-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.948},{"date":"2005-01-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.055},{"date":"2005-01-03","fuel":"diesel","grade":"all","formulation":"NA","price":1.957},{"date":"2005-01-10","fuel":"gasoline","grade":"all","formulation":"all","price":1.837},{"date":"2005-01-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.813},{"date":"2005-01-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.887},{"date":"2005-01-10","fuel":"gasoline","grade":"regular","formulation":"all","price":1.793},{"date":"2005-01-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.771},{"date":"2005-01-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.838},{"date":"2005-01-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.893},{"date":"2005-01-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.862},{"date":"2005-01-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.952},{"date":"2005-01-10","fuel":"gasoline","grade":"premium","formulation":"all","price":1.993},{"date":"2005-01-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.968},{"date":"2005-01-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.041},{"date":"2005-01-10","fuel":"diesel","grade":"all","formulation":"NA","price":1.934},{"date":"2005-01-17","fuel":"gasoline","grade":"all","formulation":"all","price":1.863},{"date":"2005-01-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.843},{"date":"2005-01-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.902},{"date":"2005-01-17","fuel":"gasoline","grade":"regular","formulation":"all","price":1.819},{"date":"2005-01-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.802},{"date":"2005-01-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.854},{"date":"2005-01-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.918},{"date":"2005-01-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.893},{"date":"2005-01-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.965},{"date":"2005-01-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.017},{"date":"2005-01-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.997},{"date":"2005-01-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.056},{"date":"2005-01-17","fuel":"diesel","grade":"all","formulation":"NA","price":1.952},{"date":"2005-01-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.896},{"date":"2005-01-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.88},{"date":"2005-01-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.929},{"date":"2005-01-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.853},{"date":"2005-01-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.839},{"date":"2005-01-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.882},{"date":"2005-01-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.95},{"date":"2005-01-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.929},{"date":"2005-01-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.991},{"date":"2005-01-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.046},{"date":"2005-01-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.03},{"date":"2005-01-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.078},{"date":"2005-01-24","fuel":"diesel","grade":"all","formulation":"NA","price":1.959},{"date":"2005-01-31","fuel":"gasoline","grade":"all","formulation":"all","price":1.953},{"date":"2005-01-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.936},{"date":"2005-01-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.988},{"date":"2005-01-31","fuel":"gasoline","grade":"regular","formulation":"all","price":1.911},{"date":"2005-01-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.896},{"date":"2005-01-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.941},{"date":"2005-01-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.006},{"date":"2005-01-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.982},{"date":"2005-01-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.052},{"date":"2005-01-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.103},{"date":"2005-01-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.087},{"date":"2005-01-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.133},{"date":"2005-01-31","fuel":"diesel","grade":"all","formulation":"NA","price":1.992},{"date":"2005-02-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.952},{"date":"2005-02-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.93},{"date":"2005-02-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.996},{"date":"2005-02-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.909},{"date":"2005-02-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.89},{"date":"2005-02-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.949},{"date":"2005-02-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.006},{"date":"2005-02-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.978},{"date":"2005-02-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.06},{"date":"2005-02-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.102},{"date":"2005-02-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.082},{"date":"2005-02-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.14},{"date":"2005-02-07","fuel":"diesel","grade":"all","formulation":"NA","price":1.983},{"date":"2005-02-14","fuel":"gasoline","grade":"all","formulation":"all","price":1.941},{"date":"2005-02-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.914},{"date":"2005-02-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.996},{"date":"2005-02-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.898},{"date":"2005-02-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.873},{"date":"2005-02-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.949},{"date":"2005-02-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.995},{"date":"2005-02-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.96},{"date":"2005-02-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.062},{"date":"2005-02-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.091},{"date":"2005-02-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.065},{"date":"2005-02-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.139},{"date":"2005-02-14","fuel":"diesel","grade":"all","formulation":"NA","price":1.986},{"date":"2005-02-21","fuel":"gasoline","grade":"all","formulation":"all","price":1.948},{"date":"2005-02-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.919},{"date":"2005-02-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.007},{"date":"2005-02-21","fuel":"gasoline","grade":"regular","formulation":"all","price":1.905},{"date":"2005-02-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.878},{"date":"2005-02-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.961},{"date":"2005-02-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.004},{"date":"2005-02-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.966},{"date":"2005-02-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.079},{"date":"2005-02-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.096},{"date":"2005-02-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.069},{"date":"2005-02-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.146},{"date":"2005-02-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.02},{"date":"2005-02-28","fuel":"gasoline","grade":"all","formulation":"all","price":1.969},{"date":"2005-02-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.943},{"date":"2005-02-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.023},{"date":"2005-02-28","fuel":"gasoline","grade":"regular","formulation":"all","price":1.928},{"date":"2005-02-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.904},{"date":"2005-02-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.978},{"date":"2005-02-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.025},{"date":"2005-02-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.989},{"date":"2005-02-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.094},{"date":"2005-02-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.113},{"date":"2005-02-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.088},{"date":"2005-02-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.16},{"date":"2005-02-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.118},{"date":"2005-03-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.04},{"date":"2005-03-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.018},{"date":"2005-03-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.086},{"date":"2005-03-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.999},{"date":"2005-03-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.979},{"date":"2005-03-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.041},{"date":"2005-03-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.094},{"date":"2005-03-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.063},{"date":"2005-03-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.153},{"date":"2005-03-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.182},{"date":"2005-03-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.162},{"date":"2005-03-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.221},{"date":"2005-03-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.168},{"date":"2005-03-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.098},{"date":"2005-03-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.078},{"date":"2005-03-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.138},{"date":"2005-03-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.056},{"date":"2005-03-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.039},{"date":"2005-03-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.094},{"date":"2005-03-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.151},{"date":"2005-03-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.123},{"date":"2005-03-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.206},{"date":"2005-03-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.241},{"date":"2005-03-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.224},{"date":"2005-03-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.273},{"date":"2005-03-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.194},{"date":"2005-03-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.149},{"date":"2005-03-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.134},{"date":"2005-03-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.181},{"date":"2005-03-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.109},{"date":"2005-03-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.095},{"date":"2005-03-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.138},{"date":"2005-03-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.2},{"date":"2005-03-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.177},{"date":"2005-03-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.245},{"date":"2005-03-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.292},{"date":"2005-03-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.281},{"date":"2005-03-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.313},{"date":"2005-03-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.244},{"date":"2005-03-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.194},{"date":"2005-03-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.177},{"date":"2005-03-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.229},{"date":"2005-03-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.153},{"date":"2005-03-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.137},{"date":"2005-03-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.186},{"date":"2005-03-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.25},{"date":"2005-03-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.225},{"date":"2005-03-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.297},{"date":"2005-03-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.336},{"date":"2005-03-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.322},{"date":"2005-03-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.362},{"date":"2005-03-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.249},{"date":"2005-04-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.258},{"date":"2005-04-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.236},{"date":"2005-04-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.302},{"date":"2005-04-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.217},{"date":"2005-04-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.196},{"date":"2005-04-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.26},{"date":"2005-04-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.313},{"date":"2005-04-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.284},{"date":"2005-04-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.37},{"date":"2005-04-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.4},{"date":"2005-04-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.384},{"date":"2005-04-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.43},{"date":"2005-04-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.303},{"date":"2005-04-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.321},{"date":"2005-04-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.29},{"date":"2005-04-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.384},{"date":"2005-04-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.28},{"date":"2005-04-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.251},{"date":"2005-04-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.34},{"date":"2005-04-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.377},{"date":"2005-04-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.337},{"date":"2005-04-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.455},{"date":"2005-04-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.464},{"date":"2005-04-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.436},{"date":"2005-04-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.515},{"date":"2005-04-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.316},{"date":"2005-04-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.28},{"date":"2005-04-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.239},{"date":"2005-04-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.364},{"date":"2005-04-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.237},{"date":"2005-04-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.198},{"date":"2005-04-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.319},{"date":"2005-04-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.339},{"date":"2005-04-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.288},{"date":"2005-04-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.438},{"date":"2005-04-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.427},{"date":"2005-04-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.388},{"date":"2005-04-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.498},{"date":"2005-04-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.259},{"date":"2005-04-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.279},{"date":"2005-04-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.237},{"date":"2005-04-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.364},{"date":"2005-04-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.236},{"date":"2005-04-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.197},{"date":"2005-04-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.319},{"date":"2005-04-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.337},{"date":"2005-04-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.285},{"date":"2005-04-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.437},{"date":"2005-04-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.426},{"date":"2005-04-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.386},{"date":"2005-04-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.499},{"date":"2005-04-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.289},{"date":"2005-05-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.277},{"date":"2005-05-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.231},{"date":"2005-05-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.371},{"date":"2005-05-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.235},{"date":"2005-05-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.191},{"date":"2005-05-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.326},{"date":"2005-05-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.333},{"date":"2005-05-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.278},{"date":"2005-05-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.44},{"date":"2005-05-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.425},{"date":"2005-05-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.381},{"date":"2005-05-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.506},{"date":"2005-05-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.262},{"date":"2005-05-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.231},{"date":"2005-05-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.179},{"date":"2005-05-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.336},{"date":"2005-05-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.186},{"date":"2005-05-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.137},{"date":"2005-05-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.29},{"date":"2005-05-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.291},{"date":"2005-05-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.23},{"date":"2005-05-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.407},{"date":"2005-05-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.385},{"date":"2005-05-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.336},{"date":"2005-05-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.476},{"date":"2005-05-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.227},{"date":"2005-05-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.206},{"date":"2005-05-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.156},{"date":"2005-05-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.308},{"date":"2005-05-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.163},{"date":"2005-05-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.116},{"date":"2005-05-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.262},{"date":"2005-05-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.262},{"date":"2005-05-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.202},{"date":"2005-05-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.377},{"date":"2005-05-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.357},{"date":"2005-05-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.306},{"date":"2005-05-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.45},{"date":"2005-05-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.189},{"date":"2005-05-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.169},{"date":"2005-05-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.118},{"date":"2005-05-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.274},{"date":"2005-05-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.125},{"date":"2005-05-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.077},{"date":"2005-05-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.226},{"date":"2005-05-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.226},{"date":"2005-05-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.165},{"date":"2005-05-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.344},{"date":"2005-05-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.322},{"date":"2005-05-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.27},{"date":"2005-05-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.418},{"date":"2005-05-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.156},{"date":"2005-05-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.141},{"date":"2005-05-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.092},{"date":"2005-05-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.24},{"date":"2005-05-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.097},{"date":"2005-05-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.051},{"date":"2005-05-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.192},{"date":"2005-05-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.198},{"date":"2005-05-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.14},{"date":"2005-05-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.311},{"date":"2005-05-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.295},{"date":"2005-05-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.245},{"date":"2005-05-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.388},{"date":"2005-05-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.16},{"date":"2005-06-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.159},{"date":"2005-06-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.118},{"date":"2005-06-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.242},{"date":"2005-06-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.116},{"date":"2005-06-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.078},{"date":"2005-06-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.195},{"date":"2005-06-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.214},{"date":"2005-06-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.165},{"date":"2005-06-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.308},{"date":"2005-06-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.309},{"date":"2005-06-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.267},{"date":"2005-06-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.388},{"date":"2005-06-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.234},{"date":"2005-06-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.173},{"date":"2005-06-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.139},{"date":"2005-06-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.243},{"date":"2005-06-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.13},{"date":"2005-06-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.099},{"date":"2005-06-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.196},{"date":"2005-06-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.227},{"date":"2005-06-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.186},{"date":"2005-06-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.308},{"date":"2005-06-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.323},{"date":"2005-06-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.288},{"date":"2005-06-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.389},{"date":"2005-06-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.276},{"date":"2005-06-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.204},{"date":"2005-06-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.167},{"date":"2005-06-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.278},{"date":"2005-06-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.161},{"date":"2005-06-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.128},{"date":"2005-06-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.232},{"date":"2005-06-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.257},{"date":"2005-06-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.213},{"date":"2005-06-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.342},{"date":"2005-06-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.353},{"date":"2005-06-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.314},{"date":"2005-06-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.425},{"date":"2005-06-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.313},{"date":"2005-06-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.257},{"date":"2005-06-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.224},{"date":"2005-06-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.323},{"date":"2005-06-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.215},{"date":"2005-06-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.186},{"date":"2005-06-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.278},{"date":"2005-06-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.307},{"date":"2005-06-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.266},{"date":"2005-06-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.386},{"date":"2005-06-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.402},{"date":"2005-06-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.369},{"date":"2005-06-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.465},{"date":"2005-06-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.336},{"date":"2005-07-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.268},{"date":"2005-07-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.228},{"date":"2005-07-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.35},{"date":"2005-07-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.226},{"date":"2005-07-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.189},{"date":"2005-07-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.304},{"date":"2005-07-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.321},{"date":"2005-07-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.273},{"date":"2005-07-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.413},{"date":"2005-07-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.414},{"date":"2005-07-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.374},{"date":"2005-07-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.49},{"date":"2005-07-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.348},{"date":"2005-07-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.369},{"date":"2005-07-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.331},{"date":"2005-07-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.448},{"date":"2005-07-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.328},{"date":"2005-07-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.292},{"date":"2005-07-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.402},{"date":"2005-07-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.419},{"date":"2005-07-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.373},{"date":"2005-07-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.51},{"date":"2005-07-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.517},{"date":"2005-07-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.476},{"date":"2005-07-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.593},{"date":"2005-07-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.408},{"date":"2005-07-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.36},{"date":"2005-07-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.312},{"date":"2005-07-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.458},{"date":"2005-07-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.317},{"date":"2005-07-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.272},{"date":"2005-07-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.411},{"date":"2005-07-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.41},{"date":"2005-07-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.354},{"date":"2005-07-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.519},{"date":"2005-07-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.511},{"date":"2005-07-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.46},{"date":"2005-07-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.606},{"date":"2005-07-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.392},{"date":"2005-07-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.333},{"date":"2005-07-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.276},{"date":"2005-07-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.45},{"date":"2005-07-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.289},{"date":"2005-07-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.235},{"date":"2005-07-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.403},{"date":"2005-07-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.388},{"date":"2005-07-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.323},{"date":"2005-07-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.516},{"date":"2005-07-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.488},{"date":"2005-07-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.429},{"date":"2005-07-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.598},{"date":"2005-07-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.342},{"date":"2005-08-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.335},{"date":"2005-08-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.279},{"date":"2005-08-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.449},{"date":"2005-08-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.291},{"date":"2005-08-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.239},{"date":"2005-08-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.402},{"date":"2005-08-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.389},{"date":"2005-08-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.324},{"date":"2005-08-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.514},{"date":"2005-08-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.49},{"date":"2005-08-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.433},{"date":"2005-08-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.597},{"date":"2005-08-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.348},{"date":"2005-08-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.41},{"date":"2005-08-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.363},{"date":"2005-08-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.507},{"date":"2005-08-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.368},{"date":"2005-08-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.323},{"date":"2005-08-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.461},{"date":"2005-08-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.461},{"date":"2005-08-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.404},{"date":"2005-08-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.571},{"date":"2005-08-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.56},{"date":"2005-08-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.512},{"date":"2005-08-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.65},{"date":"2005-08-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.407},{"date":"2005-08-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.592},{"date":"2005-08-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.56},{"date":"2005-08-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.659},{"date":"2005-08-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.55},{"date":"2005-08-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.519},{"date":"2005-08-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.613},{"date":"2005-08-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.643},{"date":"2005-08-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.603},{"date":"2005-08-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.718},{"date":"2005-08-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.742},{"date":"2005-08-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.711},{"date":"2005-08-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.8},{"date":"2005-08-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.567},{"date":"2005-08-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.654},{"date":"2005-08-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.622},{"date":"2005-08-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.719},{"date":"2005-08-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.612},{"date":"2005-08-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.583},{"date":"2005-08-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.674},{"date":"2005-08-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.704},{"date":"2005-08-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.666},{"date":"2005-08-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.778},{"date":"2005-08-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.802},{"date":"2005-08-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.77},{"date":"2005-08-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.862},{"date":"2005-08-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.588},{"date":"2005-08-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.653},{"date":"2005-08-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.621},{"date":"2005-08-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.718},{"date":"2005-08-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.61},{"date":"2005-08-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.581},{"date":"2005-08-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.672},{"date":"2005-08-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.705},{"date":"2005-08-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.665},{"date":"2005-08-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.781},{"date":"2005-08-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.801},{"date":"2005-08-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.768},{"date":"2005-08-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.863},{"date":"2005-08-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.59},{"date":"2005-09-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.117},{"date":"2005-09-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.083},{"date":"2005-09-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.186},{"date":"2005-09-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.069},{"date":"2005-09-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.037},{"date":"2005-09-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.137},{"date":"2005-09-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.172},{"date":"2005-09-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.138},{"date":"2005-09-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.236},{"date":"2005-09-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.285},{"date":"2005-09-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.248},{"date":"2005-09-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.353},{"date":"2005-09-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.898},{"date":"2005-09-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.002},{"date":"2005-09-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.956},{"date":"2005-09-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.096},{"date":"2005-09-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.955},{"date":"2005-09-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.912},{"date":"2005-09-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.045},{"date":"2005-09-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.054},{"date":"2005-09-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.003},{"date":"2005-09-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.151},{"date":"2005-09-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.171},{"date":"2005-09-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.121},{"date":"2005-09-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.265},{"date":"2005-09-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.847},{"date":"2005-09-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.835},{"date":"2005-09-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.776},{"date":"2005-09-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.956},{"date":"2005-09-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.786},{"date":"2005-09-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.73},{"date":"2005-09-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.904},{"date":"2005-09-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.894},{"date":"2005-09-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.831},{"date":"2005-09-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.018},{"date":"2005-09-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.009},{"date":"2005-09-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.947},{"date":"2005-09-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.123},{"date":"2005-09-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.732},{"date":"2005-09-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.851},{"date":"2005-09-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.812},{"date":"2005-09-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.929},{"date":"2005-09-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.803},{"date":"2005-09-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.767},{"date":"2005-09-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.878},{"date":"2005-09-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.909},{"date":"2005-09-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.865},{"date":"2005-09-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.995},{"date":"2005-09-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.018},{"date":"2005-09-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.978},{"date":"2005-09-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.092},{"date":"2005-09-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.798},{"date":"2005-10-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.975},{"date":"2005-10-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.968},{"date":"2005-10-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.99},{"date":"2005-10-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.928},{"date":"2005-10-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.922},{"date":"2005-10-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.941},{"date":"2005-10-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.033},{"date":"2005-10-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.023},{"date":"2005-10-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.052},{"date":"2005-10-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.139},{"date":"2005-10-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.135},{"date":"2005-10-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.147},{"date":"2005-10-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.144},{"date":"2005-10-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.896},{"date":"2005-10-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.875},{"date":"2005-10-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.939},{"date":"2005-10-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.848},{"date":"2005-10-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.828},{"date":"2005-10-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.889},{"date":"2005-10-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.959},{"date":"2005-10-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.936},{"date":"2005-10-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.004},{"date":"2005-10-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.064},{"date":"2005-10-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.046},{"date":"2005-10-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.097},{"date":"2005-10-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.15},{"date":"2005-10-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.775},{"date":"2005-10-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.741},{"date":"2005-10-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.843},{"date":"2005-10-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.725},{"date":"2005-10-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.693},{"date":"2005-10-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.794},{"date":"2005-10-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.838},{"date":"2005-10-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.801},{"date":"2005-10-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.909},{"date":"2005-10-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.947},{"date":"2005-10-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.92},{"date":"2005-10-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.998},{"date":"2005-10-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.148},{"date":"2005-10-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.652},{"date":"2005-10-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.612},{"date":"2005-10-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.732},{"date":"2005-10-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.603},{"date":"2005-10-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.564},{"date":"2005-10-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.683},{"date":"2005-10-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.716},{"date":"2005-10-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.672},{"date":"2005-10-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.8},{"date":"2005-10-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.822},{"date":"2005-10-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.787},{"date":"2005-10-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.886},{"date":"2005-10-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.157},{"date":"2005-10-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.528},{"date":"2005-10-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.485},{"date":"2005-10-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.616},{"date":"2005-10-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.48},{"date":"2005-10-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.438},{"date":"2005-10-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.567},{"date":"2005-10-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.59},{"date":"2005-10-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.542},{"date":"2005-10-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.683},{"date":"2005-10-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.698},{"date":"2005-10-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.66},{"date":"2005-10-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.767},{"date":"2005-10-31","fuel":"diesel","grade":"all","formulation":"NA","price":2.876},{"date":"2005-11-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.424},{"date":"2005-11-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.382},{"date":"2005-11-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.51},{"date":"2005-11-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.376},{"date":"2005-11-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.336},{"date":"2005-11-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.461},{"date":"2005-11-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.485},{"date":"2005-11-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.436},{"date":"2005-11-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.58},{"date":"2005-11-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.59},{"date":"2005-11-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.552},{"date":"2005-11-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.66},{"date":"2005-11-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.698},{"date":"2005-11-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.342},{"date":"2005-11-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.302},{"date":"2005-11-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.423},{"date":"2005-11-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.296},{"date":"2005-11-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.258},{"date":"2005-11-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.375},{"date":"2005-11-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.402},{"date":"2005-11-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.355},{"date":"2005-11-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.493},{"date":"2005-11-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.505},{"date":"2005-11-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.469},{"date":"2005-11-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.571},{"date":"2005-11-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.602},{"date":"2005-11-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.247},{"date":"2005-11-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.211},{"date":"2005-11-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.32},{"date":"2005-11-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.201},{"date":"2005-11-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.168},{"date":"2005-11-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.27},{"date":"2005-11-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.306},{"date":"2005-11-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.263},{"date":"2005-11-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.391},{"date":"2005-11-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.408},{"date":"2005-11-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.373},{"date":"2005-11-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.473},{"date":"2005-11-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.513},{"date":"2005-11-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.2},{"date":"2005-11-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.166},{"date":"2005-11-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.267},{"date":"2005-11-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.154},{"date":"2005-11-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.124},{"date":"2005-11-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.218},{"date":"2005-11-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.258},{"date":"2005-11-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.217},{"date":"2005-11-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.338},{"date":"2005-11-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.358},{"date":"2005-11-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.325},{"date":"2005-11-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.418},{"date":"2005-11-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.479},{"date":"2005-12-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.191},{"date":"2005-12-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.168},{"date":"2005-12-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.238},{"date":"2005-12-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.147},{"date":"2005-12-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.127},{"date":"2005-12-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.19},{"date":"2005-12-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.245},{"date":"2005-12-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.214},{"date":"2005-12-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.306},{"date":"2005-12-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.345},{"date":"2005-12-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.322},{"date":"2005-12-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.387},{"date":"2005-12-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.425},{"date":"2005-12-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.228},{"date":"2005-12-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.217},{"date":"2005-12-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.252},{"date":"2005-12-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.185},{"date":"2005-12-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.175},{"date":"2005-12-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.204},{"date":"2005-12-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.281},{"date":"2005-12-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.265},{"date":"2005-12-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.314},{"date":"2005-12-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.381},{"date":"2005-12-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.369},{"date":"2005-12-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.404},{"date":"2005-12-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.436},{"date":"2005-12-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.255},{"date":"2005-12-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.247},{"date":"2005-12-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.272},{"date":"2005-12-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.211},{"date":"2005-12-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.205},{"date":"2005-12-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.224},{"date":"2005-12-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.308},{"date":"2005-12-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.296},{"date":"2005-12-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.33},{"date":"2005-12-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.409},{"date":"2005-12-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.4},{"date":"2005-12-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.426},{"date":"2005-12-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.462},{"date":"2005-12-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.241},{"date":"2005-12-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.23},{"date":"2005-12-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.263},{"date":"2005-12-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.197},{"date":"2005-12-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.188},{"date":"2005-12-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.216},{"date":"2005-12-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.292},{"date":"2005-12-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.278},{"date":"2005-12-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.32},{"date":"2005-12-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.397},{"date":"2005-12-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.386},{"date":"2005-12-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.417},{"date":"2005-12-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.448},{"date":"2006-01-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.281},{"date":"2006-01-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.277},{"date":"2006-01-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.29},{"date":"2006-01-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.238},{"date":"2006-01-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.236},{"date":"2006-01-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.242},{"date":"2006-01-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.329},{"date":"2006-01-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.321},{"date":"2006-01-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.344},{"date":"2006-01-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.437},{"date":"2006-01-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.432},{"date":"2006-01-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.446},{"date":"2006-01-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.442},{"date":"2006-01-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.371},{"date":"2006-01-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.363},{"date":"2006-01-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.388},{"date":"2006-01-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.327},{"date":"2006-01-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.321},{"date":"2006-01-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.341},{"date":"2006-01-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.421},{"date":"2006-01-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.41},{"date":"2006-01-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.442},{"date":"2006-01-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.531},{"date":"2006-01-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.524},{"date":"2006-01-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.542},{"date":"2006-01-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.485},{"date":"2006-01-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.366},{"date":"2006-01-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.342},{"date":"2006-01-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.416},{"date":"2006-01-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.32},{"date":"2006-01-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.297},{"date":"2006-01-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.368},{"date":"2006-01-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.421},{"date":"2006-01-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.392},{"date":"2006-01-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.476},{"date":"2006-01-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.531},{"date":"2006-01-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.51},{"date":"2006-01-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.571},{"date":"2006-01-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.449},{"date":"2006-01-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.382},{"date":"2006-01-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.359},{"date":"2006-01-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.431},{"date":"2006-01-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.336},{"date":"2006-01-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.314},{"date":"2006-01-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.382},{"date":"2006-01-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.436},{"date":"2006-01-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.409},{"date":"2006-01-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.489},{"date":"2006-01-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.547},{"date":"2006-01-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.526},{"date":"2006-01-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.586},{"date":"2006-01-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.472},{"date":"2006-01-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.402},{"date":"2006-01-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.375},{"date":"2006-01-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.458},{"date":"2006-01-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.357},{"date":"2006-01-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.332},{"date":"2006-01-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.409},{"date":"2006-01-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.456},{"date":"2006-01-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.422},{"date":"2006-01-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.521},{"date":"2006-01-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.564},{"date":"2006-01-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.538},{"date":"2006-01-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.612},{"date":"2006-01-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.489},{"date":"2006-02-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.388},{"date":"2006-02-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.354},{"date":"2006-02-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.458},{"date":"2006-02-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.342},{"date":"2006-02-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.31},{"date":"2006-02-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.41},{"date":"2006-02-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.445},{"date":"2006-02-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.404},{"date":"2006-02-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.524},{"date":"2006-02-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.549},{"date":"2006-02-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.517},{"date":"2006-02-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.609},{"date":"2006-02-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.499},{"date":"2006-02-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.331},{"date":"2006-02-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.29},{"date":"2006-02-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.413},{"date":"2006-02-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.284},{"date":"2006-02-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.246},{"date":"2006-02-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.364},{"date":"2006-02-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.391},{"date":"2006-02-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.344},{"date":"2006-02-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.482},{"date":"2006-02-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.494},{"date":"2006-02-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.455},{"date":"2006-02-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.566},{"date":"2006-02-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.476},{"date":"2006-02-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.286},{"date":"2006-02-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.249},{"date":"2006-02-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.361},{"date":"2006-02-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.24},{"date":"2006-02-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.205},{"date":"2006-02-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.312},{"date":"2006-02-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.345},{"date":"2006-02-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.301},{"date":"2006-02-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.43},{"date":"2006-02-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.445},{"date":"2006-02-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.409},{"date":"2006-02-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.512},{"date":"2006-02-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.455},{"date":"2006-02-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.298},{"date":"2006-02-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.277},{"date":"2006-02-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.34},{"date":"2006-02-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.254},{"date":"2006-02-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.236},{"date":"2006-02-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.293},{"date":"2006-02-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.351},{"date":"2006-02-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.323},{"date":"2006-02-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.406},{"date":"2006-02-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.45},{"date":"2006-02-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.429},{"date":"2006-02-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.488},{"date":"2006-02-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.471},{"date":"2006-03-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.373},{"date":"2006-03-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.36},{"date":"2006-03-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.398},{"date":"2006-03-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.331},{"date":"2006-03-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.321},{"date":"2006-03-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.353},{"date":"2006-03-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.425},{"date":"2006-03-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.407},{"date":"2006-03-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.459},{"date":"2006-03-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.519},{"date":"2006-03-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.509},{"date":"2006-03-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.539},{"date":"2006-03-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.545},{"date":"2006-03-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.408},{"date":"2006-03-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.395},{"date":"2006-03-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.435},{"date":"2006-03-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.366},{"date":"2006-03-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.355},{"date":"2006-03-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.389},{"date":"2006-03-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.46},{"date":"2006-03-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.44},{"date":"2006-03-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.5},{"date":"2006-03-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.556},{"date":"2006-03-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.545},{"date":"2006-03-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.577},{"date":"2006-03-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.543},{"date":"2006-03-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.548},{"date":"2006-03-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.537},{"date":"2006-03-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.569},{"date":"2006-03-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.504},{"date":"2006-03-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.495},{"date":"2006-03-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.523},{"date":"2006-03-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.602},{"date":"2006-03-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.586},{"date":"2006-03-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.632},{"date":"2006-03-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.701},{"date":"2006-03-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.694},{"date":"2006-03-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.712},{"date":"2006-03-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.581},{"date":"2006-03-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.542},{"date":"2006-03-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.522},{"date":"2006-03-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.583},{"date":"2006-03-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.498},{"date":"2006-03-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.479},{"date":"2006-03-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.537},{"date":"2006-03-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.597},{"date":"2006-03-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.57},{"date":"2006-03-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.649},{"date":"2006-03-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.695},{"date":"2006-03-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.679},{"date":"2006-03-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.726},{"date":"2006-03-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.565},{"date":"2006-04-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.631},{"date":"2006-04-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.609},{"date":"2006-04-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.676},{"date":"2006-04-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.588},{"date":"2006-04-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.567},{"date":"2006-04-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.63},{"date":"2006-04-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.684},{"date":"2006-04-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.656},{"date":"2006-04-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.738},{"date":"2006-04-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.785},{"date":"2006-04-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.767},{"date":"2006-04-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.817},{"date":"2006-04-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.617},{"date":"2006-04-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.727},{"date":"2006-04-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.706},{"date":"2006-04-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.77},{"date":"2006-04-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.683},{"date":"2006-04-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.663},{"date":"2006-04-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.724},{"date":"2006-04-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.781},{"date":"2006-04-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.756},{"date":"2006-04-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.83},{"date":"2006-04-10","fuel":"gasoline","grade":"premium","formulation":"all","price":2.883},{"date":"2006-04-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.868},{"date":"2006-04-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.911},{"date":"2006-04-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.654},{"date":"2006-04-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.828},{"date":"2006-04-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.807},{"date":"2006-04-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.87},{"date":"2006-04-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.783},{"date":"2006-04-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.764},{"date":"2006-04-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.824},{"date":"2006-04-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.879},{"date":"2006-04-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.853},{"date":"2006-04-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.93},{"date":"2006-04-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.986},{"date":"2006-04-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.971},{"date":"2006-04-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.014},{"date":"2006-04-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.765},{"date":"2006-04-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.96},{"date":"2006-04-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.924},{"date":"2006-04-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.033},{"date":"2006-04-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.914},{"date":"2006-04-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.881},{"date":"2006-04-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.984},{"date":"2006-04-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.014},{"date":"2006-04-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.972},{"date":"2006-04-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.095},{"date":"2006-04-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.121},{"date":"2006-04-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.085},{"date":"2006-04-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.188},{"date":"2006-04-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.876},{"date":"2006-05-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.966},{"date":"2006-05-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.91},{"date":"2006-05-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.08},{"date":"2006-05-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.919},{"date":"2006-05-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.866},{"date":"2006-05-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.03},{"date":"2006-05-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.026},{"date":"2006-05-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.961},{"date":"2006-05-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.151},{"date":"2006-05-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.129},{"date":"2006-05-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.073},{"date":"2006-05-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.233},{"date":"2006-05-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.896},{"date":"2006-05-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.955},{"date":"2006-05-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.876},{"date":"2006-05-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.116},{"date":"2006-05-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.909},{"date":"2006-05-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.834},{"date":"2006-05-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.067},{"date":"2006-05-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.017},{"date":"2006-05-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.926},{"date":"2006-05-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.193},{"date":"2006-05-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.117},{"date":"2006-05-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.036},{"date":"2006-05-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.266},{"date":"2006-05-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.897},{"date":"2006-05-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.992},{"date":"2006-05-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.911},{"date":"2006-05-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.156},{"date":"2006-05-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.947},{"date":"2006-05-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.871},{"date":"2006-05-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.107},{"date":"2006-05-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.049},{"date":"2006-05-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.956},{"date":"2006-05-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.229},{"date":"2006-05-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.149},{"date":"2006-05-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.065},{"date":"2006-05-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.304},{"date":"2006-05-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.92},{"date":"2006-05-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.938},{"date":"2006-05-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.842},{"date":"2006-05-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.132},{"date":"2006-05-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.892},{"date":"2006-05-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.801},{"date":"2006-05-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.082},{"date":"2006-05-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.998},{"date":"2006-05-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.889},{"date":"2006-05-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.208},{"date":"2006-05-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.098},{"date":"2006-05-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.998},{"date":"2006-05-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.285},{"date":"2006-05-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.888},{"date":"2006-05-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.913},{"date":"2006-05-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.824},{"date":"2006-05-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.092},{"date":"2006-05-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.867},{"date":"2006-05-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.784},{"date":"2006-05-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.042},{"date":"2006-05-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.971},{"date":"2006-05-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.871},{"date":"2006-05-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.166},{"date":"2006-05-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.071},{"date":"2006-05-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.977},{"date":"2006-05-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.245},{"date":"2006-05-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.882},{"date":"2006-06-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.937},{"date":"2006-06-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.852},{"date":"2006-06-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.112},{"date":"2006-06-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.892},{"date":"2006-06-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.811},{"date":"2006-06-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.062},{"date":"2006-06-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.995},{"date":"2006-06-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.898},{"date":"2006-06-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.183},{"date":"2006-06-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.095},{"date":"2006-06-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.005},{"date":"2006-06-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.262},{"date":"2006-06-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.89},{"date":"2006-06-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.951},{"date":"2006-06-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.874},{"date":"2006-06-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.109},{"date":"2006-06-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.906},{"date":"2006-06-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.833},{"date":"2006-06-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.06},{"date":"2006-06-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.009},{"date":"2006-06-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.921},{"date":"2006-06-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.179},{"date":"2006-06-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.108},{"date":"2006-06-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.026},{"date":"2006-06-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.262},{"date":"2006-06-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.918},{"date":"2006-06-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.917},{"date":"2006-06-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.834},{"date":"2006-06-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.084},{"date":"2006-06-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.871},{"date":"2006-06-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.793},{"date":"2006-06-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.034},{"date":"2006-06-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.977},{"date":"2006-06-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.884},{"date":"2006-06-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.156},{"date":"2006-06-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.077},{"date":"2006-06-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.989},{"date":"2006-06-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.241},{"date":"2006-06-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.915},{"date":"2006-06-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.914},{"date":"2006-06-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.837},{"date":"2006-06-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.071},{"date":"2006-06-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.869},{"date":"2006-06-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.796},{"date":"2006-06-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.02},{"date":"2006-06-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.972},{"date":"2006-06-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.885},{"date":"2006-06-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.141},{"date":"2006-06-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.072},{"date":"2006-06-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.987},{"date":"2006-06-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.231},{"date":"2006-06-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.867},{"date":"2006-07-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.979},{"date":"2006-07-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.914},{"date":"2006-07-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.111},{"date":"2006-07-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.934},{"date":"2006-07-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.873},{"date":"2006-07-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.063},{"date":"2006-07-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.034},{"date":"2006-07-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.961},{"date":"2006-07-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.177},{"date":"2006-07-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.133},{"date":"2006-07-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.063},{"date":"2006-07-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.264},{"date":"2006-07-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.898},{"date":"2006-07-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.017},{"date":"2006-07-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.949},{"date":"2006-07-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.154},{"date":"2006-07-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.973},{"date":"2006-07-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.91},{"date":"2006-07-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.106},{"date":"2006-07-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.072},{"date":"2006-07-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.997},{"date":"2006-07-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.218},{"date":"2006-07-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.169},{"date":"2006-07-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.095},{"date":"2006-07-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.307},{"date":"2006-07-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.918},{"date":"2006-07-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.033},{"date":"2006-07-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.968},{"date":"2006-07-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.165},{"date":"2006-07-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.989},{"date":"2006-07-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.928},{"date":"2006-07-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.116},{"date":"2006-07-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.089},{"date":"2006-07-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.016},{"date":"2006-07-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.231},{"date":"2006-07-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.186},{"date":"2006-07-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.116},{"date":"2006-07-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.318},{"date":"2006-07-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.926},{"date":"2006-07-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.048},{"date":"2006-07-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.992},{"date":"2006-07-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.162},{"date":"2006-07-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.003},{"date":"2006-07-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.95},{"date":"2006-07-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.112},{"date":"2006-07-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.106},{"date":"2006-07-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.043},{"date":"2006-07-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.228},{"date":"2006-07-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.205},{"date":"2006-07-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.145},{"date":"2006-07-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.317},{"date":"2006-07-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.946},{"date":"2006-07-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.05},{"date":"2006-07-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.997},{"date":"2006-07-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.157},{"date":"2006-07-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.004},{"date":"2006-07-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.955},{"date":"2006-07-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.107},{"date":"2006-07-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.106},{"date":"2006-07-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.046},{"date":"2006-07-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.223},{"date":"2006-07-31","fuel":"gasoline","grade":"premium","formulation":"all","price":3.211},{"date":"2006-07-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.155},{"date":"2006-07-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.316},{"date":"2006-07-31","fuel":"diesel","grade":"all","formulation":"NA","price":2.98},{"date":"2006-08-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.083},{"date":"2006-08-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.045},{"date":"2006-08-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.16},{"date":"2006-08-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.038},{"date":"2006-08-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.004},{"date":"2006-08-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.109},{"date":"2006-08-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.137},{"date":"2006-08-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.091},{"date":"2006-08-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.227},{"date":"2006-08-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.242},{"date":"2006-08-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.2},{"date":"2006-08-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.321},{"date":"2006-08-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.055},{"date":"2006-08-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.047},{"date":"2006-08-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3},{"date":"2006-08-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.142},{"date":"2006-08-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3},{"date":"2006-08-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.958},{"date":"2006-08-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.089},{"date":"2006-08-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.104},{"date":"2006-08-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.047},{"date":"2006-08-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.215},{"date":"2006-08-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.21},{"date":"2006-08-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.157},{"date":"2006-08-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.31},{"date":"2006-08-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.065},{"date":"2006-08-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.971},{"date":"2006-08-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.919},{"date":"2006-08-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.076},{"date":"2006-08-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.924},{"date":"2006-08-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.877},{"date":"2006-08-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.021},{"date":"2006-08-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.031},{"date":"2006-08-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.968},{"date":"2006-08-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.152},{"date":"2006-08-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.136},{"date":"2006-08-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.078},{"date":"2006-08-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.244},{"date":"2006-08-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.033},{"date":"2006-08-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.893},{"date":"2006-08-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.843},{"date":"2006-08-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.996},{"date":"2006-08-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.845},{"date":"2006-08-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.8},{"date":"2006-08-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.94},{"date":"2006-08-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.953},{"date":"2006-08-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.891},{"date":"2006-08-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.073},{"date":"2006-08-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.064},{"date":"2006-08-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.008},{"date":"2006-08-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.168},{"date":"2006-08-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.027},{"date":"2006-09-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.777},{"date":"2006-09-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.725},{"date":"2006-09-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.884},{"date":"2006-09-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.727},{"date":"2006-09-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.68},{"date":"2006-09-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.828},{"date":"2006-09-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.842},{"date":"2006-09-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.777},{"date":"2006-09-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.966},{"date":"2006-09-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.952},{"date":"2006-09-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.896},{"date":"2006-09-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.056},{"date":"2006-09-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.967},{"date":"2006-09-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.67},{"date":"2006-09-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.611},{"date":"2006-09-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.79},{"date":"2006-09-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.618},{"date":"2006-09-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.563},{"date":"2006-09-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.734},{"date":"2006-09-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.739},{"date":"2006-09-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.669},{"date":"2006-09-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.873},{"date":"2006-09-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.847},{"date":"2006-09-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.788},{"date":"2006-09-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.957},{"date":"2006-09-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.857},{"date":"2006-09-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.549},{"date":"2006-09-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.489},{"date":"2006-09-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.672},{"date":"2006-09-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.497},{"date":"2006-09-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.441},{"date":"2006-09-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.616},{"date":"2006-09-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.617},{"date":"2006-09-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.545},{"date":"2006-09-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.756},{"date":"2006-09-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.729},{"date":"2006-09-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.668},{"date":"2006-09-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.843},{"date":"2006-09-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.713},{"date":"2006-09-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.429},{"date":"2006-09-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.368},{"date":"2006-09-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.554},{"date":"2006-09-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.378},{"date":"2006-09-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.32},{"date":"2006-09-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.499},{"date":"2006-09-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.498},{"date":"2006-09-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.425},{"date":"2006-09-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.64},{"date":"2006-09-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.605},{"date":"2006-09-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.542},{"date":"2006-09-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.722},{"date":"2006-09-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.595},{"date":"2006-10-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.36},{"date":"2006-10-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.309},{"date":"2006-10-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.465},{"date":"2006-10-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.31},{"date":"2006-10-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.263},{"date":"2006-10-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.409},{"date":"2006-10-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.426},{"date":"2006-10-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.362},{"date":"2006-10-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.55},{"date":"2006-10-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.531},{"date":"2006-10-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.478},{"date":"2006-10-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.631},{"date":"2006-10-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.546},{"date":"2006-10-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.31},{"date":"2006-10-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.266},{"date":"2006-10-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.399},{"date":"2006-10-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.261},{"date":"2006-10-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.222},{"date":"2006-10-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.345},{"date":"2006-10-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.373},{"date":"2006-10-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.316},{"date":"2006-10-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.483},{"date":"2006-10-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.478},{"date":"2006-10-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.433},{"date":"2006-10-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.563},{"date":"2006-10-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.506},{"date":"2006-10-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.274},{"date":"2006-10-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.239},{"date":"2006-10-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.346},{"date":"2006-10-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.226},{"date":"2006-10-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.195},{"date":"2006-10-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.291},{"date":"2006-10-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.338},{"date":"2006-10-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.291},{"date":"2006-10-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.428},{"date":"2006-10-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.44},{"date":"2006-10-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.403},{"date":"2006-10-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.509},{"date":"2006-10-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.503},{"date":"2006-10-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.255},{"date":"2006-10-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.229},{"date":"2006-10-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.307},{"date":"2006-10-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.208},{"date":"2006-10-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.186},{"date":"2006-10-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.254},{"date":"2006-10-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.315},{"date":"2006-10-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.278},{"date":"2006-10-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.386},{"date":"2006-10-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.418},{"date":"2006-10-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.391},{"date":"2006-10-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.467},{"date":"2006-10-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.524},{"date":"2006-10-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.264},{"date":"2006-10-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.247},{"date":"2006-10-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.299},{"date":"2006-10-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.218},{"date":"2006-10-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.204},{"date":"2006-10-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.247},{"date":"2006-10-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.322},{"date":"2006-10-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.294},{"date":"2006-10-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.376},{"date":"2006-10-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.424},{"date":"2006-10-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.406},{"date":"2006-10-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.459},{"date":"2006-10-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.517},{"date":"2006-11-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.246},{"date":"2006-11-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.232},{"date":"2006-11-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.276},{"date":"2006-11-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.2},{"date":"2006-11-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.189},{"date":"2006-11-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.222},{"date":"2006-11-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.306},{"date":"2006-11-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.281},{"date":"2006-11-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.354},{"date":"2006-11-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.407},{"date":"2006-11-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.39},{"date":"2006-11-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.438},{"date":"2006-11-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.506},{"date":"2006-11-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.278},{"date":"2006-11-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.259},{"date":"2006-11-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.318},{"date":"2006-11-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.232},{"date":"2006-11-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.216},{"date":"2006-11-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.266},{"date":"2006-11-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.338},{"date":"2006-11-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.308},{"date":"2006-11-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.397},{"date":"2006-11-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.437},{"date":"2006-11-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.417},{"date":"2006-11-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.474},{"date":"2006-11-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.552},{"date":"2006-11-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.285},{"date":"2006-11-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.261},{"date":"2006-11-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.336},{"date":"2006-11-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.239},{"date":"2006-11-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.218},{"date":"2006-11-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.283},{"date":"2006-11-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.346},{"date":"2006-11-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.31},{"date":"2006-11-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.416},{"date":"2006-11-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.445},{"date":"2006-11-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.418},{"date":"2006-11-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.494},{"date":"2006-11-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.553},{"date":"2006-11-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.292},{"date":"2006-11-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.264},{"date":"2006-11-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.35},{"date":"2006-11-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.246},{"date":"2006-11-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.221},{"date":"2006-11-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.298},{"date":"2006-11-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.352},{"date":"2006-11-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.314},{"date":"2006-11-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.427},{"date":"2006-11-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.453},{"date":"2006-11-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.423},{"date":"2006-11-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.508},{"date":"2006-11-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.567},{"date":"2006-12-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.342},{"date":"2006-12-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.32},{"date":"2006-12-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.388},{"date":"2006-12-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.297},{"date":"2006-12-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.277},{"date":"2006-12-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.338},{"date":"2006-12-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.399},{"date":"2006-12-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.368},{"date":"2006-12-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.46},{"date":"2006-12-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.502},{"date":"2006-12-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.479},{"date":"2006-12-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.545},{"date":"2006-12-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.618},{"date":"2006-12-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.34},{"date":"2006-12-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.311},{"date":"2006-12-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.398},{"date":"2006-12-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.293},{"date":"2006-12-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.267},{"date":"2006-12-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.348},{"date":"2006-12-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.399},{"date":"2006-12-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.362},{"date":"2006-12-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.47},{"date":"2006-12-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.502},{"date":"2006-12-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.474},{"date":"2006-12-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.555},{"date":"2006-12-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.621},{"date":"2006-12-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.366},{"date":"2006-12-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.333},{"date":"2006-12-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.433},{"date":"2006-12-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.32},{"date":"2006-12-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.29},{"date":"2006-12-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.382},{"date":"2006-12-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.424},{"date":"2006-12-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.382},{"date":"2006-12-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.505},{"date":"2006-12-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.527},{"date":"2006-12-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.494},{"date":"2006-12-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.589},{"date":"2006-12-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.606},{"date":"2006-12-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.387},{"date":"2006-12-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.346},{"date":"2006-12-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.471},{"date":"2006-12-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.341},{"date":"2006-12-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.303},{"date":"2006-12-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.421},{"date":"2006-12-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.446},{"date":"2006-12-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.396},{"date":"2006-12-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.541},{"date":"2006-12-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.548},{"date":"2006-12-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.508},{"date":"2006-12-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.624},{"date":"2006-12-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.596},{"date":"2007-01-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.382},{"date":"2007-01-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.34},{"date":"2007-01-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.465},{"date":"2007-01-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.334},{"date":"2007-01-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.296},{"date":"2007-01-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.414},{"date":"2007-01-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.442},{"date":"2007-01-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.392},{"date":"2007-01-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.54},{"date":"2007-01-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.547},{"date":"2007-01-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.505},{"date":"2007-01-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.624},{"date":"2007-01-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.58},{"date":"2007-01-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.354},{"date":"2007-01-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.304},{"date":"2007-01-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.458},{"date":"2007-01-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.306},{"date":"2007-01-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.258},{"date":"2007-01-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.406},{"date":"2007-01-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.418},{"date":"2007-01-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.357},{"date":"2007-01-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.534},{"date":"2007-01-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.523},{"date":"2007-01-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.473},{"date":"2007-01-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.614},{"date":"2007-01-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.537},{"date":"2007-01-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.28},{"date":"2007-01-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.22},{"date":"2007-01-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.401},{"date":"2007-01-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.229},{"date":"2007-01-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.173},{"date":"2007-01-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.348},{"date":"2007-01-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.347},{"date":"2007-01-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.279},{"date":"2007-01-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.48},{"date":"2007-01-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.453},{"date":"2007-01-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.394},{"date":"2007-01-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.561},{"date":"2007-01-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.463},{"date":"2007-01-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.216},{"date":"2007-01-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.155},{"date":"2007-01-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.341},{"date":"2007-01-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.165},{"date":"2007-01-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.107},{"date":"2007-01-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.287},{"date":"2007-01-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.285},{"date":"2007-01-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.213},{"date":"2007-01-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.424},{"date":"2007-01-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.391},{"date":"2007-01-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.329},{"date":"2007-01-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.507},{"date":"2007-01-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.43},{"date":"2007-01-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.213},{"date":"2007-01-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.164},{"date":"2007-01-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.313},{"date":"2007-01-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.165},{"date":"2007-01-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.119},{"date":"2007-01-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.261},{"date":"2007-01-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.277},{"date":"2007-01-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.217},{"date":"2007-01-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.392},{"date":"2007-01-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.381},{"date":"2007-01-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.331},{"date":"2007-01-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.473},{"date":"2007-01-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.413},{"date":"2007-02-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.237},{"date":"2007-02-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.194},{"date":"2007-02-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.326},{"date":"2007-02-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.191},{"date":"2007-02-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.151},{"date":"2007-02-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.275},{"date":"2007-02-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.3},{"date":"2007-02-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.244},{"date":"2007-02-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.407},{"date":"2007-02-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.396},{"date":"2007-02-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.35},{"date":"2007-02-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.481},{"date":"2007-02-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.435},{"date":"2007-02-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.463},{"date":"2007-02-05","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.379},{"date":"2007-02-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.287},{"date":"2007-02-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.24},{"date":"2007-02-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.382},{"date":"2007-02-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.241},{"date":"2007-02-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.198},{"date":"2007-02-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.332},{"date":"2007-02-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.35},{"date":"2007-02-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.292},{"date":"2007-02-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.463},{"date":"2007-02-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.442},{"date":"2007-02-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.395},{"date":"2007-02-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.531},{"date":"2007-02-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.476},{"date":"2007-02-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.502},{"date":"2007-02-12","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.42},{"date":"2007-02-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.341},{"date":"2007-02-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.292},{"date":"2007-02-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.439},{"date":"2007-02-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.296},{"date":"2007-02-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.251},{"date":"2007-02-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.39},{"date":"2007-02-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.401},{"date":"2007-02-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.339},{"date":"2007-02-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.52},{"date":"2007-02-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.495},{"date":"2007-02-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.446},{"date":"2007-02-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.585},{"date":"2007-02-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.491},{"date":"2007-02-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.515},{"date":"2007-02-19","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.437},{"date":"2007-02-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.428},{"date":"2007-02-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.379},{"date":"2007-02-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.526},{"date":"2007-02-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.383},{"date":"2007-02-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.338},{"date":"2007-02-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.477},{"date":"2007-02-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.488},{"date":"2007-02-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.426},{"date":"2007-02-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.608},{"date":"2007-02-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.581},{"date":"2007-02-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.533},{"date":"2007-02-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.67},{"date":"2007-02-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.551},{"date":"2007-02-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.571},{"date":"2007-02-26","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.505},{"date":"2007-03-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.551},{"date":"2007-03-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.504},{"date":"2007-03-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.647},{"date":"2007-03-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.505},{"date":"2007-03-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.46},{"date":"2007-03-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.599},{"date":"2007-03-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.609},{"date":"2007-03-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.549},{"date":"2007-03-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.726},{"date":"2007-03-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.709},{"date":"2007-03-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.667},{"date":"2007-03-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.786},{"date":"2007-03-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.626},{"date":"2007-03-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.64},{"date":"2007-03-05","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.584},{"date":"2007-03-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.605},{"date":"2007-03-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.542},{"date":"2007-03-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.734},{"date":"2007-03-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.559},{"date":"2007-03-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.499},{"date":"2007-03-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.686},{"date":"2007-03-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.667},{"date":"2007-03-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.589},{"date":"2007-03-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.817},{"date":"2007-03-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.763},{"date":"2007-03-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.704},{"date":"2007-03-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.873},{"date":"2007-03-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.685},{"date":"2007-03-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.695},{"date":"2007-03-12","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.657},{"date":"2007-03-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.623},{"date":"2007-03-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.554},{"date":"2007-03-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.765},{"date":"2007-03-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.577},{"date":"2007-03-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.511},{"date":"2007-03-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.716},{"date":"2007-03-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.688},{"date":"2007-03-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.605},{"date":"2007-03-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.849},{"date":"2007-03-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.781},{"date":"2007-03-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.714},{"date":"2007-03-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.905},{"date":"2007-03-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.681},{"date":"2007-03-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.694},{"date":"2007-03-19","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.644},{"date":"2007-03-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.655},{"date":"2007-03-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.582},{"date":"2007-03-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.804},{"date":"2007-03-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.61},{"date":"2007-03-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.54},{"date":"2007-03-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.755},{"date":"2007-03-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.716},{"date":"2007-03-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.628},{"date":"2007-03-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.887},{"date":"2007-03-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.812},{"date":"2007-03-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.74},{"date":"2007-03-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.945},{"date":"2007-03-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.676},{"date":"2007-03-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.69},{"date":"2007-03-26","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.634},{"date":"2007-04-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.753},{"date":"2007-04-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.678},{"date":"2007-04-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.904},{"date":"2007-04-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.707},{"date":"2007-04-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.636},{"date":"2007-04-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.855},{"date":"2007-04-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.814},{"date":"2007-04-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.725},{"date":"2007-04-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.986},{"date":"2007-04-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.912},{"date":"2007-04-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.838},{"date":"2007-04-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.048},{"date":"2007-04-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.79},{"date":"2007-04-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.803},{"date":"2007-04-02","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.751},{"date":"2007-04-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.848},{"date":"2007-04-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.79},{"date":"2007-04-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.968},{"date":"2007-04-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.802},{"date":"2007-04-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.746},{"date":"2007-04-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.92},{"date":"2007-04-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.909},{"date":"2007-04-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.838},{"date":"2007-04-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.047},{"date":"2007-04-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.007},{"date":"2007-04-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.953},{"date":"2007-04-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.108},{"date":"2007-04-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.84},{"date":"2007-04-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.853},{"date":"2007-04-09","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.799},{"date":"2007-04-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.922},{"date":"2007-04-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.866},{"date":"2007-04-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.036},{"date":"2007-04-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.876},{"date":"2007-04-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.822},{"date":"2007-04-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.988},{"date":"2007-04-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.983},{"date":"2007-04-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.916},{"date":"2007-04-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.115},{"date":"2007-04-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.083},{"date":"2007-04-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.034},{"date":"2007-04-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.174},{"date":"2007-04-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.877},{"date":"2007-04-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.887},{"date":"2007-04-16","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.845},{"date":"2007-04-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.917},{"date":"2007-04-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.857},{"date":"2007-04-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.038},{"date":"2007-04-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.869},{"date":"2007-04-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.811},{"date":"2007-04-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.988},{"date":"2007-04-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.98},{"date":"2007-04-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.908},{"date":"2007-04-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.12},{"date":"2007-04-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.082},{"date":"2007-04-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.028},{"date":"2007-04-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.181},{"date":"2007-04-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.851},{"date":"2007-04-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.863},{"date":"2007-04-23","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.811},{"date":"2007-04-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.017},{"date":"2007-04-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.966},{"date":"2007-04-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.121},{"date":"2007-04-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.971},{"date":"2007-04-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.922},{"date":"2007-04-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.073},{"date":"2007-04-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.079},{"date":"2007-04-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.016},{"date":"2007-04-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.199},{"date":"2007-04-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.176},{"date":"2007-04-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.129},{"date":"2007-04-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.262},{"date":"2007-04-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.811},{"date":"2007-04-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.831},{"date":"2007-04-30","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.746},{"date":"2007-05-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.097},{"date":"2007-05-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.043},{"date":"2007-05-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.208},{"date":"2007-05-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.054},{"date":"2007-05-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.002},{"date":"2007-05-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.162},{"date":"2007-05-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.155},{"date":"2007-05-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.089},{"date":"2007-05-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.284},{"date":"2007-05-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.247},{"date":"2007-05-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.194},{"date":"2007-05-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.345},{"date":"2007-05-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.792},{"date":"2007-05-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.816},{"date":"2007-05-07","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.716},{"date":"2007-05-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.143},{"date":"2007-05-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.106},{"date":"2007-05-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.22},{"date":"2007-05-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.103},{"date":"2007-05-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.069},{"date":"2007-05-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.173},{"date":"2007-05-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.197},{"date":"2007-05-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.146},{"date":"2007-05-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.295},{"date":"2007-05-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.284},{"date":"2007-05-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.244},{"date":"2007-05-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.359},{"date":"2007-05-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.773},{"date":"2007-05-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.797},{"date":"2007-05-14","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.695},{"date":"2007-05-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.258},{"date":"2007-05-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.247},{"date":"2007-05-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.28},{"date":"2007-05-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.218},{"date":"2007-05-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.211},{"date":"2007-05-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.233},{"date":"2007-05-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.308},{"date":"2007-05-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.286},{"date":"2007-05-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.352},{"date":"2007-05-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.398},{"date":"2007-05-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.385},{"date":"2007-05-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.422},{"date":"2007-05-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.803},{"date":"2007-05-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.822},{"date":"2007-05-21","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.74},{"date":"2007-05-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.25},{"date":"2007-05-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.233},{"date":"2007-05-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.285},{"date":"2007-05-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.209},{"date":"2007-05-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.195},{"date":"2007-05-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.238},{"date":"2007-05-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.302},{"date":"2007-05-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.274},{"date":"2007-05-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.354},{"date":"2007-05-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.395},{"date":"2007-05-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.377},{"date":"2007-05-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.429},{"date":"2007-05-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.817},{"date":"2007-05-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.836},{"date":"2007-05-28","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.752},{"date":"2007-06-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.2},{"date":"2007-06-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.172},{"date":"2007-06-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.257},{"date":"2007-06-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.157},{"date":"2007-06-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.132},{"date":"2007-06-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.208},{"date":"2007-06-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.255},{"date":"2007-06-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.218},{"date":"2007-06-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.328},{"date":"2007-06-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.351},{"date":"2007-06-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.323},{"date":"2007-06-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.405},{"date":"2007-06-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.799},{"date":"2007-06-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.819},{"date":"2007-06-04","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.732},{"date":"2007-06-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.122},{"date":"2007-06-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.083},{"date":"2007-06-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.202},{"date":"2007-06-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.076},{"date":"2007-06-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.04},{"date":"2007-06-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.151},{"date":"2007-06-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.185},{"date":"2007-06-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.138},{"date":"2007-06-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.277},{"date":"2007-06-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.281},{"date":"2007-06-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.241},{"date":"2007-06-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.355},{"date":"2007-06-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.792},{"date":"2007-06-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.814},{"date":"2007-06-11","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.716},{"date":"2007-06-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.057},{"date":"2007-06-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.018},{"date":"2007-06-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.135},{"date":"2007-06-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.009},{"date":"2007-06-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.974},{"date":"2007-06-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.083},{"date":"2007-06-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.116},{"date":"2007-06-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.068},{"date":"2007-06-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.209},{"date":"2007-06-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.222},{"date":"2007-06-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.182},{"date":"2007-06-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.297},{"date":"2007-06-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.805},{"date":"2007-06-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.822},{"date":"2007-06-18","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.748},{"date":"2007-06-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.029},{"date":"2007-06-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.995},{"date":"2007-06-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.099},{"date":"2007-06-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.982},{"date":"2007-06-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.951},{"date":"2007-06-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.046},{"date":"2007-06-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.089},{"date":"2007-06-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.046},{"date":"2007-06-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.173},{"date":"2007-06-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.196},{"date":"2007-06-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.16},{"date":"2007-06-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.262},{"date":"2007-06-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.835},{"date":"2007-06-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.847},{"date":"2007-06-25","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.786},{"date":"2007-07-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.005},{"date":"2007-07-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.976},{"date":"2007-07-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.066},{"date":"2007-07-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.959},{"date":"2007-07-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.933},{"date":"2007-07-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.012},{"date":"2007-07-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.064},{"date":"2007-07-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.025},{"date":"2007-07-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.141},{"date":"2007-07-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.168},{"date":"2007-07-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.134},{"date":"2007-07-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.233},{"date":"2007-07-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.829},{"date":"2007-07-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.842},{"date":"2007-07-02","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.779},{"date":"2007-07-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.026},{"date":"2007-07-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.01},{"date":"2007-07-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.058},{"date":"2007-07-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.981},{"date":"2007-07-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.971},{"date":"2007-07-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.004},{"date":"2007-07-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.077},{"date":"2007-07-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.048},{"date":"2007-07-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.132},{"date":"2007-07-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.182},{"date":"2007-07-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.159},{"date":"2007-07-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.224},{"date":"2007-07-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.849},{"date":"2007-07-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.859},{"date":"2007-07-09","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.809},{"date":"2007-07-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.092},{"date":"2007-07-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.084},{"date":"2007-07-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.107},{"date":"2007-07-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.049},{"date":"2007-07-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.046},{"date":"2007-07-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.055},{"date":"2007-07-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.143},{"date":"2007-07-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.125},{"date":"2007-07-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.177},{"date":"2007-07-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.242},{"date":"2007-07-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.229},{"date":"2007-07-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.267},{"date":"2007-07-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.889},{"date":"2007-07-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.902},{"date":"2007-07-16","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.834},{"date":"2007-07-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.005},{"date":"2007-07-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.98},{"date":"2007-07-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.056},{"date":"2007-07-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.958},{"date":"2007-07-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.938},{"date":"2007-07-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.001},{"date":"2007-07-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.062},{"date":"2007-07-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.026},{"date":"2007-07-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.131},{"date":"2007-07-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.168},{"date":"2007-07-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.138},{"date":"2007-07-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.225},{"date":"2007-07-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.889},{"date":"2007-07-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.903},{"date":"2007-07-23","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.829},{"date":"2007-07-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.926},{"date":"2007-07-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.894},{"date":"2007-07-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.99},{"date":"2007-07-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.876},{"date":"2007-07-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.849},{"date":"2007-07-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.934},{"date":"2007-07-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.987},{"date":"2007-07-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.944},{"date":"2007-07-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.069},{"date":"2007-07-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.099},{"date":"2007-07-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.065},{"date":"2007-07-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.164},{"date":"2007-07-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.886},{"date":"2007-07-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.899},{"date":"2007-07-30","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.831},{"date":"2007-08-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.888},{"date":"2007-08-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.861},{"date":"2007-08-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.943},{"date":"2007-08-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.838},{"date":"2007-08-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.816},{"date":"2007-08-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.885},{"date":"2007-08-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.951},{"date":"2007-08-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.912},{"date":"2007-08-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.027},{"date":"2007-08-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.062},{"date":"2007-08-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.031},{"date":"2007-08-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.12},{"date":"2007-08-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.898},{"date":"2007-08-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.91},{"date":"2007-08-06","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.846},{"date":"2007-08-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.821},{"date":"2007-08-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.797},{"date":"2007-08-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.869},{"date":"2007-08-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.771},{"date":"2007-08-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.752},{"date":"2007-08-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.813},{"date":"2007-08-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.88},{"date":"2007-08-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.845},{"date":"2007-08-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.948},{"date":"2007-08-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.995},{"date":"2007-08-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.969},{"date":"2007-08-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.044},{"date":"2007-08-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.847},{"date":"2007-08-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.861},{"date":"2007-08-13","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.79},{"date":"2007-08-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.832},{"date":"2007-08-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.825},{"date":"2007-08-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.847},{"date":"2007-08-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.785},{"date":"2007-08-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.783},{"date":"2007-08-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.791},{"date":"2007-08-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.886},{"date":"2007-08-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.867},{"date":"2007-08-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.922},{"date":"2007-08-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.997},{"date":"2007-08-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.985},{"date":"2007-08-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.021},{"date":"2007-08-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.868},{"date":"2007-08-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.878},{"date":"2007-08-20","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.826},{"date":"2007-08-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.796},{"date":"2007-08-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.799},{"date":"2007-08-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.79},{"date":"2007-08-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.749},{"date":"2007-08-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.756},{"date":"2007-08-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.734},{"date":"2007-08-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.851},{"date":"2007-08-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.843},{"date":"2007-08-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.866},{"date":"2007-08-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.963},{"date":"2007-08-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.96},{"date":"2007-08-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.968},{"date":"2007-08-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.863},{"date":"2007-08-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.873},{"date":"2007-08-27","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.821},{"date":"2007-09-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.84},{"date":"2007-09-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.857},{"date":"2007-09-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.804},{"date":"2007-09-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.796},{"date":"2007-09-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.818},{"date":"2007-09-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.749},{"date":"2007-09-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.89},{"date":"2007-09-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.897},{"date":"2007-09-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.876},{"date":"2007-09-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.997},{"date":"2007-09-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.008},{"date":"2007-09-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.975},{"date":"2007-09-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.893},{"date":"2007-09-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.901},{"date":"2007-09-03","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.859},{"date":"2007-09-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.862},{"date":"2007-09-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.879},{"date":"2007-09-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.827},{"date":"2007-09-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.818},{"date":"2007-09-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.84},{"date":"2007-09-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.773},{"date":"2007-09-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.912},{"date":"2007-09-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.918},{"date":"2007-09-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.901},{"date":"2007-09-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.018},{"date":"2007-09-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.03},{"date":"2007-09-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.994},{"date":"2007-09-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.924},{"date":"2007-09-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.932},{"date":"2007-09-10","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.891},{"date":"2007-09-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.835},{"date":"2007-09-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.836},{"date":"2007-09-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.831},{"date":"2007-09-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.787},{"date":"2007-09-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.792},{"date":"2007-09-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.776},{"date":"2007-09-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.892},{"date":"2007-09-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.882},{"date":"2007-09-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.91},{"date":"2007-09-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.001},{"date":"2007-09-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.003},{"date":"2007-09-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.999},{"date":"2007-09-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.964},{"date":"2007-09-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.971},{"date":"2007-09-17","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.934},{"date":"2007-09-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.86},{"date":"2007-09-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.861},{"date":"2007-09-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.858},{"date":"2007-09-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.812},{"date":"2007-09-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.816},{"date":"2007-09-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.804},{"date":"2007-09-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.917},{"date":"2007-09-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.906},{"date":"2007-09-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.938},{"date":"2007-09-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.029},{"date":"2007-09-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.032},{"date":"2007-09-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.023},{"date":"2007-09-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.032},{"date":"2007-09-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.038},{"date":"2007-09-24","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.008},{"date":"2007-10-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.838},{"date":"2007-10-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.832},{"date":"2007-10-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.852},{"date":"2007-10-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.788},{"date":"2007-10-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.784},{"date":"2007-10-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.796},{"date":"2007-10-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.903},{"date":"2007-10-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.887},{"date":"2007-10-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.934},{"date":"2007-10-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.013},{"date":"2007-10-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.008},{"date":"2007-10-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.022},{"date":"2007-10-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.048},{"date":"2007-10-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.055},{"date":"2007-10-01","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.017},{"date":"2007-10-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.821},{"date":"2007-10-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.809},{"date":"2007-10-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.846},{"date":"2007-10-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.77},{"date":"2007-10-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.761},{"date":"2007-10-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.789},{"date":"2007-10-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.887},{"date":"2007-10-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.863},{"date":"2007-10-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.932},{"date":"2007-10-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.997},{"date":"2007-10-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.987},{"date":"2007-10-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.017},{"date":"2007-10-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.035},{"date":"2007-10-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.046},{"date":"2007-10-08","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.985},{"date":"2007-10-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.813},{"date":"2007-10-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.793},{"date":"2007-10-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.854},{"date":"2007-10-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.762},{"date":"2007-10-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.746},{"date":"2007-10-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.796},{"date":"2007-10-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.879},{"date":"2007-10-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.846},{"date":"2007-10-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.944},{"date":"2007-10-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.99},{"date":"2007-10-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.971},{"date":"2007-10-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.025},{"date":"2007-10-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.039},{"date":"2007-10-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.053},{"date":"2007-10-15","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.976},{"date":"2007-10-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.873},{"date":"2007-10-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.853},{"date":"2007-10-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.914},{"date":"2007-10-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.823},{"date":"2007-10-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.806},{"date":"2007-10-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.859},{"date":"2007-10-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.937},{"date":"2007-10-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.904},{"date":"2007-10-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.001},{"date":"2007-10-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.046},{"date":"2007-10-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.029},{"date":"2007-10-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.077},{"date":"2007-10-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.094},{"date":"2007-10-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.11},{"date":"2007-10-22","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.023},{"date":"2007-10-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.921},{"date":"2007-10-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.905},{"date":"2007-10-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.954},{"date":"2007-10-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.872},{"date":"2007-10-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.859},{"date":"2007-10-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.9},{"date":"2007-10-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.983},{"date":"2007-10-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.955},{"date":"2007-10-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.038},{"date":"2007-10-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.092},{"date":"2007-10-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.078},{"date":"2007-10-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.116},{"date":"2007-10-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.157},{"date":"2007-10-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.171},{"date":"2007-10-29","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.095},{"date":"2007-11-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.06},{"date":"2007-11-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.051},{"date":"2007-11-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.077},{"date":"2007-11-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.013},{"date":"2007-11-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.007},{"date":"2007-11-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.025},{"date":"2007-11-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.117},{"date":"2007-11-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.097},{"date":"2007-11-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.154},{"date":"2007-11-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.224},{"date":"2007-11-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.219},{"date":"2007-11-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.234},{"date":"2007-11-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.303},{"date":"2007-11-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.314},{"date":"2007-11-05","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.257},{"date":"2007-11-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.158},{"date":"2007-11-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.146},{"date":"2007-11-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.184},{"date":"2007-11-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.111},{"date":"2007-11-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.101},{"date":"2007-11-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.13},{"date":"2007-11-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.218},{"date":"2007-11-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.195},{"date":"2007-11-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.265},{"date":"2007-11-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.325},{"date":"2007-11-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.314},{"date":"2007-11-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.345},{"date":"2007-11-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.425},{"date":"2007-11-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.438},{"date":"2007-11-12","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.368},{"date":"2007-11-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.148},{"date":"2007-11-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.123},{"date":"2007-11-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.199},{"date":"2007-11-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.099},{"date":"2007-11-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.077},{"date":"2007-11-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.144},{"date":"2007-11-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.208},{"date":"2007-11-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.17},{"date":"2007-11-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.281},{"date":"2007-11-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.32},{"date":"2007-11-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.297},{"date":"2007-11-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.362},{"date":"2007-11-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.41},{"date":"2007-11-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.426},{"date":"2007-11-19","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.333},{"date":"2007-11-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.147},{"date":"2007-11-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.118},{"date":"2007-11-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.204},{"date":"2007-11-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.097},{"date":"2007-11-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.072},{"date":"2007-11-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.149},{"date":"2007-11-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.209},{"date":"2007-11-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.168},{"date":"2007-11-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.287},{"date":"2007-11-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.319},{"date":"2007-11-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.292},{"date":"2007-11-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.369},{"date":"2007-11-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.444},{"date":"2007-11-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.456},{"date":"2007-11-26","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.382},{"date":"2007-12-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.113},{"date":"2007-12-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.077},{"date":"2007-12-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.184},{"date":"2007-12-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.061},{"date":"2007-12-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.029},{"date":"2007-12-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.128},{"date":"2007-12-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.178},{"date":"2007-12-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.131},{"date":"2007-12-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.267},{"date":"2007-12-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.292},{"date":"2007-12-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.259},{"date":"2007-12-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.354},{"date":"2007-12-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.416},{"date":"2007-12-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.433},{"date":"2007-12-03","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.33},{"date":"2007-12-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.053},{"date":"2007-12-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.007},{"date":"2007-12-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.147},{"date":"2007-12-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3},{"date":"2007-12-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.957},{"date":"2007-12-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.091},{"date":"2007-12-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.121},{"date":"2007-12-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.065},{"date":"2007-12-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.228},{"date":"2007-12-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.238},{"date":"2007-12-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.194},{"date":"2007-12-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.318},{"date":"2007-12-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.325},{"date":"2007-12-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.345},{"date":"2007-12-10","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.219},{"date":"2007-12-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.05},{"date":"2007-12-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.011},{"date":"2007-12-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.131},{"date":"2007-12-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.998},{"date":"2007-12-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.962},{"date":"2007-12-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.075},{"date":"2007-12-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.116},{"date":"2007-12-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.066},{"date":"2007-12-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.212},{"date":"2007-12-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.232},{"date":"2007-12-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.194},{"date":"2007-12-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.303},{"date":"2007-12-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.309},{"date":"2007-12-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.325},{"date":"2007-12-17","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.211},{"date":"2007-12-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.032},{"date":"2007-12-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.991},{"date":"2007-12-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.116},{"date":"2007-12-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.98},{"date":"2007-12-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.943},{"date":"2007-12-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.059},{"date":"2007-12-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.099},{"date":"2007-12-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.047},{"date":"2007-12-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.199},{"date":"2007-12-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.214},{"date":"2007-12-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.172},{"date":"2007-12-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.29},{"date":"2007-12-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.308},{"date":"2007-12-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.321},{"date":"2007-12-24","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.225},{"date":"2007-12-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.104},{"date":"2007-12-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.076},{"date":"2007-12-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.161},{"date":"2007-12-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.053},{"date":"2007-12-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.028},{"date":"2007-12-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.106},{"date":"2007-12-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.167},{"date":"2007-12-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.129},{"date":"2007-12-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.24},{"date":"2007-12-31","fuel":"gasoline","grade":"premium","formulation":"all","price":3.283},{"date":"2007-12-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.257},{"date":"2007-12-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.33},{"date":"2007-12-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.345},{"date":"2007-12-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.356},{"date":"2007-12-31","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.272},{"date":"2008-01-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.159},{"date":"2008-01-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.135},{"date":"2008-01-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.208},{"date":"2008-01-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.109},{"date":"2008-01-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.088},{"date":"2008-01-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.154},{"date":"2008-01-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.22},{"date":"2008-01-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.187},{"date":"2008-01-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.285},{"date":"2008-01-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.335},{"date":"2008-01-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.313},{"date":"2008-01-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.375},{"date":"2008-01-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.376},{"date":"2008-01-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.387},{"date":"2008-01-07","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.301},{"date":"2008-01-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.119},{"date":"2008-01-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.09},{"date":"2008-01-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.179},{"date":"2008-01-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.068},{"date":"2008-01-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.041},{"date":"2008-01-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.123},{"date":"2008-01-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.185},{"date":"2008-01-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.147},{"date":"2008-01-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.257},{"date":"2008-01-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.3},{"date":"2008-01-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.272},{"date":"2008-01-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.35},{"date":"2008-01-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.326},{"date":"2008-01-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.341},{"date":"2008-01-14","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.229},{"date":"2008-01-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.07},{"date":"2008-01-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.041},{"date":"2008-01-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.13},{"date":"2008-01-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.017},{"date":"2008-01-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.991},{"date":"2008-01-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.072},{"date":"2008-01-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.136},{"date":"2008-01-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.097},{"date":"2008-01-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.212},{"date":"2008-01-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.256},{"date":"2008-01-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.227},{"date":"2008-01-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.309},{"date":"2008-01-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.27},{"date":"2008-01-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.286},{"date":"2008-01-21","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.169},{"date":"2008-01-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.03},{"date":"2008-01-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.004},{"date":"2008-01-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.083},{"date":"2008-01-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.977},{"date":"2008-01-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.953},{"date":"2008-01-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.026},{"date":"2008-01-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.097},{"date":"2008-01-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.063},{"date":"2008-01-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.162},{"date":"2008-01-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.217},{"date":"2008-01-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.194},{"date":"2008-01-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.261},{"date":"2008-01-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.259},{"date":"2008-01-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.272},{"date":"2008-01-28","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.171},{"date":"2008-02-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.03},{"date":"2008-02-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.014},{"date":"2008-02-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.061},{"date":"2008-02-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.978},{"date":"2008-02-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.966},{"date":"2008-02-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.002},{"date":"2008-02-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.094},{"date":"2008-02-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.069},{"date":"2008-02-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.141},{"date":"2008-02-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.212},{"date":"2008-02-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.196},{"date":"2008-02-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.242},{"date":"2008-02-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.28},{"date":"2008-02-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.291},{"date":"2008-02-04","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.207},{"date":"2008-02-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.011},{"date":"2008-02-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.995},{"date":"2008-02-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.043},{"date":"2008-02-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.96},{"date":"2008-02-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.947},{"date":"2008-02-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.986},{"date":"2008-02-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.074},{"date":"2008-02-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.049},{"date":"2008-02-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.123},{"date":"2008-02-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.19},{"date":"2008-02-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.173},{"date":"2008-02-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.223},{"date":"2008-02-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.28},{"date":"2008-02-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.291},{"date":"2008-02-11","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.203},{"date":"2008-02-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.092},{"date":"2008-02-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.082},{"date":"2008-02-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.111},{"date":"2008-02-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.042},{"date":"2008-02-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.035},{"date":"2008-02-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.056},{"date":"2008-02-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.153},{"date":"2008-02-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.136},{"date":"2008-02-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.188},{"date":"2008-02-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.266},{"date":"2008-02-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.259},{"date":"2008-02-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.28},{"date":"2008-02-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.396},{"date":"2008-02-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.405},{"date":"2008-02-18","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.335},{"date":"2008-02-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.18},{"date":"2008-02-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.163},{"date":"2008-02-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.213},{"date":"2008-02-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.13},{"date":"2008-02-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.115},{"date":"2008-02-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.159},{"date":"2008-02-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.243},{"date":"2008-02-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.218},{"date":"2008-02-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.29},{"date":"2008-02-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.354},{"date":"2008-02-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.341},{"date":"2008-02-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.379},{"date":"2008-02-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.552},{"date":"2008-02-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.558},{"date":"2008-02-25","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.511},{"date":"2008-03-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.212},{"date":"2008-03-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.185},{"date":"2008-03-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.269},{"date":"2008-03-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.162},{"date":"2008-03-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.137},{"date":"2008-03-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.216},{"date":"2008-03-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.277},{"date":"2008-03-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.239},{"date":"2008-03-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.351},{"date":"2008-03-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.386},{"date":"2008-03-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.362},{"date":"2008-03-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.43},{"date":"2008-03-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.658},{"date":"2008-03-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.666},{"date":"2008-03-03","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.597},{"date":"2008-03-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.273},{"date":"2008-03-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.246},{"date":"2008-03-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.329},{"date":"2008-03-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.225},{"date":"2008-03-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.2},{"date":"2008-03-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.277},{"date":"2008-03-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.334},{"date":"2008-03-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.294},{"date":"2008-03-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.412},{"date":"2008-03-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.443},{"date":"2008-03-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.42},{"date":"2008-03-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.487},{"date":"2008-03-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.819},{"date":"2008-03-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.825},{"date":"2008-03-10","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.774},{"date":"2008-03-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.332},{"date":"2008-03-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.303},{"date":"2008-03-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.391},{"date":"2008-03-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.284},{"date":"2008-03-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.257},{"date":"2008-03-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.34},{"date":"2008-03-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.398},{"date":"2008-03-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.359},{"date":"2008-03-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.473},{"date":"2008-03-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.5},{"date":"2008-03-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.476},{"date":"2008-03-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.545},{"date":"2008-03-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.974},{"date":"2008-03-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.982},{"date":"2008-03-17","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.924},{"date":"2008-03-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.31},{"date":"2008-03-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.273},{"date":"2008-03-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.386},{"date":"2008-03-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.259},{"date":"2008-03-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.224},{"date":"2008-03-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.333},{"date":"2008-03-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.378},{"date":"2008-03-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.33},{"date":"2008-03-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.469},{"date":"2008-03-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.486},{"date":"2008-03-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.454},{"date":"2008-03-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.544},{"date":"2008-03-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.989},{"date":"2008-03-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.998},{"date":"2008-03-24","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.932},{"date":"2008-03-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.339},{"date":"2008-03-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.306},{"date":"2008-03-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.407},{"date":"2008-03-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.29},{"date":"2008-03-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.259},{"date":"2008-03-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.355},{"date":"2008-03-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.405},{"date":"2008-03-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.361},{"date":"2008-03-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.491},{"date":"2008-03-31","fuel":"gasoline","grade":"premium","formulation":"all","price":3.512},{"date":"2008-03-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.484},{"date":"2008-03-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.563},{"date":"2008-03-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.964},{"date":"2008-03-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.976},{"date":"2008-03-31","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.885},{"date":"2008-04-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.381},{"date":"2008-04-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.346},{"date":"2008-04-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.453},{"date":"2008-04-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.332},{"date":"2008-04-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.299},{"date":"2008-04-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.403},{"date":"2008-04-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.444},{"date":"2008-04-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.396},{"date":"2008-04-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.536},{"date":"2008-04-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.55},{"date":"2008-04-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.522},{"date":"2008-04-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.602},{"date":"2008-04-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.955},{"date":"2008-04-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.966},{"date":"2008-04-07","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.875},{"date":"2008-04-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.438},{"date":"2008-04-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.397},{"date":"2008-04-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.52},{"date":"2008-04-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.389},{"date":"2008-04-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.35},{"date":"2008-04-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.469},{"date":"2008-04-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.502},{"date":"2008-04-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.45},{"date":"2008-04-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.604},{"date":"2008-04-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.607},{"date":"2008-04-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.574},{"date":"2008-04-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.669},{"date":"2008-04-14","fuel":"diesel","grade":"all","formulation":"NA","price":4.059},{"date":"2008-04-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.069},{"date":"2008-04-14","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.987},{"date":"2008-04-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.557},{"date":"2008-04-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.515},{"date":"2008-04-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.645},{"date":"2008-04-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.508},{"date":"2008-04-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.467},{"date":"2008-04-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.595},{"date":"2008-04-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.621},{"date":"2008-04-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.569},{"date":"2008-04-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.722},{"date":"2008-04-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.729},{"date":"2008-04-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.693},{"date":"2008-04-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.795},{"date":"2008-04-21","fuel":"diesel","grade":"all","formulation":"NA","price":4.143},{"date":"2008-04-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.153},{"date":"2008-04-21","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.069},{"date":"2008-04-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.653},{"date":"2008-04-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.615},{"date":"2008-04-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.732},{"date":"2008-04-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.603},{"date":"2008-04-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.566},{"date":"2008-04-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.681},{"date":"2008-04-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.716},{"date":"2008-04-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.668},{"date":"2008-04-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.807},{"date":"2008-04-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.829},{"date":"2008-04-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.797},{"date":"2008-04-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.888},{"date":"2008-04-28","fuel":"diesel","grade":"all","formulation":"NA","price":4.177},{"date":"2008-04-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.187},{"date":"2008-04-28","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.098},{"date":"2008-05-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.663},{"date":"2008-05-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.62},{"date":"2008-05-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.751},{"date":"2008-05-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.613},{"date":"2008-05-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.571},{"date":"2008-05-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.699},{"date":"2008-05-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.725},{"date":"2008-05-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.673},{"date":"2008-05-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.825},{"date":"2008-05-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.842},{"date":"2008-05-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.804},{"date":"2008-05-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.911},{"date":"2008-05-05","fuel":"diesel","grade":"all","formulation":"NA","price":4.149},{"date":"2008-05-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.162},{"date":"2008-05-05","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.049},{"date":"2008-05-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.771},{"date":"2008-05-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.741},{"date":"2008-05-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.833},{"date":"2008-05-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.722},{"date":"2008-05-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.694},{"date":"2008-05-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.781},{"date":"2008-05-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.83},{"date":"2008-05-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.791},{"date":"2008-05-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.904},{"date":"2008-05-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.944},{"date":"2008-05-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.919},{"date":"2008-05-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.992},{"date":"2008-05-12","fuel":"diesel","grade":"all","formulation":"NA","price":4.331},{"date":"2008-05-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.339},{"date":"2008-05-12","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.264},{"date":"2008-05-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.84},{"date":"2008-05-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.81},{"date":"2008-05-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.903},{"date":"2008-05-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.791},{"date":"2008-05-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.762},{"date":"2008-05-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.851},{"date":"2008-05-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.897},{"date":"2008-05-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.86},{"date":"2008-05-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.97},{"date":"2008-05-19","fuel":"gasoline","grade":"premium","formulation":"all","price":4.017},{"date":"2008-05-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.991},{"date":"2008-05-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.066},{"date":"2008-05-19","fuel":"diesel","grade":"all","formulation":"NA","price":4.497},{"date":"2008-05-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.504},{"date":"2008-05-19","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.446},{"date":"2008-05-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.986},{"date":"2008-05-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.96},{"date":"2008-05-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.04},{"date":"2008-05-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.937},{"date":"2008-05-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.913},{"date":"2008-05-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.989},{"date":"2008-05-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.045},{"date":"2008-05-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.011},{"date":"2008-05-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.11},{"date":"2008-05-26","fuel":"gasoline","grade":"premium","formulation":"all","price":4.159},{"date":"2008-05-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.136},{"date":"2008-05-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.201},{"date":"2008-05-26","fuel":"diesel","grade":"all","formulation":"NA","price":4.723},{"date":"2008-05-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.731},{"date":"2008-05-26","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.659},{"date":"2008-06-02","fuel":"gasoline","grade":"all","formulation":"all","price":4.026},{"date":"2008-06-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.98},{"date":"2008-06-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.118},{"date":"2008-06-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.976},{"date":"2008-06-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.932},{"date":"2008-06-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.066},{"date":"2008-06-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.086},{"date":"2008-06-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.032},{"date":"2008-06-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.191},{"date":"2008-06-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.201},{"date":"2008-06-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.161},{"date":"2008-06-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.276},{"date":"2008-06-02","fuel":"diesel","grade":"all","formulation":"NA","price":4.707},{"date":"2008-06-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.716},{"date":"2008-06-02","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.636},{"date":"2008-06-09","fuel":"gasoline","grade":"all","formulation":"all","price":4.09},{"date":"2008-06-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.027},{"date":"2008-06-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.217},{"date":"2008-06-09","fuel":"gasoline","grade":"regular","formulation":"all","price":4.039},{"date":"2008-06-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.979},{"date":"2008-06-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.165},{"date":"2008-06-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.152},{"date":"2008-06-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.077},{"date":"2008-06-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.297},{"date":"2008-06-09","fuel":"gasoline","grade":"premium","formulation":"all","price":4.267},{"date":"2008-06-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.21},{"date":"2008-06-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.372},{"date":"2008-06-09","fuel":"diesel","grade":"all","formulation":"NA","price":4.692},{"date":"2008-06-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.702},{"date":"2008-06-09","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.61},{"date":"2008-06-16","fuel":"gasoline","grade":"all","formulation":"all","price":4.134},{"date":"2008-06-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.056},{"date":"2008-06-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.293},{"date":"2008-06-16","fuel":"gasoline","grade":"regular","formulation":"all","price":4.082},{"date":"2008-06-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.007},{"date":"2008-06-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.24},{"date":"2008-06-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.199},{"date":"2008-06-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.105},{"date":"2008-06-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.382},{"date":"2008-06-16","fuel":"gasoline","grade":"premium","formulation":"all","price":4.314},{"date":"2008-06-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.242},{"date":"2008-06-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.448},{"date":"2008-06-16","fuel":"diesel","grade":"all","formulation":"NA","price":4.692},{"date":"2008-06-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.702},{"date":"2008-06-16","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.606},{"date":"2008-06-23","fuel":"gasoline","grade":"all","formulation":"all","price":4.131},{"date":"2008-06-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.051},{"date":"2008-06-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.295},{"date":"2008-06-23","fuel":"gasoline","grade":"regular","formulation":"all","price":4.079},{"date":"2008-06-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.002},{"date":"2008-06-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.241},{"date":"2008-06-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.197},{"date":"2008-06-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.101},{"date":"2008-06-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.384},{"date":"2008-06-23","fuel":"gasoline","grade":"premium","formulation":"all","price":4.312},{"date":"2008-06-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.236},{"date":"2008-06-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.453},{"date":"2008-06-23","fuel":"diesel","grade":"all","formulation":"NA","price":4.648},{"date":"2008-06-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.659},{"date":"2008-06-23","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.552},{"date":"2008-06-30","fuel":"gasoline","grade":"all","formulation":"all","price":4.146},{"date":"2008-06-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.075},{"date":"2008-06-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.292},{"date":"2008-06-30","fuel":"gasoline","grade":"regular","formulation":"all","price":4.095},{"date":"2008-06-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.027},{"date":"2008-06-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.238},{"date":"2008-06-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.209},{"date":"2008-06-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.121},{"date":"2008-06-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.38},{"date":"2008-06-30","fuel":"gasoline","grade":"premium","formulation":"all","price":4.326},{"date":"2008-06-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.259},{"date":"2008-06-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.45},{"date":"2008-06-30","fuel":"diesel","grade":"all","formulation":"NA","price":4.645},{"date":"2008-06-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.657},{"date":"2008-06-30","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.554},{"date":"2008-07-07","fuel":"gasoline","grade":"all","formulation":"all","price":4.165},{"date":"2008-07-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.099},{"date":"2008-07-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.301},{"date":"2008-07-07","fuel":"gasoline","grade":"regular","formulation":"all","price":4.114},{"date":"2008-07-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.051},{"date":"2008-07-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.247},{"date":"2008-07-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.229},{"date":"2008-07-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.148},{"date":"2008-07-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.387},{"date":"2008-07-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.344},{"date":"2008-07-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.283},{"date":"2008-07-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.459},{"date":"2008-07-07","fuel":"diesel","grade":"all","formulation":"NA","price":4.727},{"date":"2008-07-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.733},{"date":"2008-07-07","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.676},{"date":"2008-07-14","fuel":"gasoline","grade":"all","formulation":"all","price":4.164},{"date":"2008-07-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.102},{"date":"2008-07-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.289},{"date":"2008-07-14","fuel":"gasoline","grade":"regular","formulation":"all","price":4.113},{"date":"2008-07-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.054},{"date":"2008-07-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.235},{"date":"2008-07-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.228},{"date":"2008-07-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.153},{"date":"2008-07-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.374},{"date":"2008-07-14","fuel":"gasoline","grade":"premium","formulation":"all","price":4.341},{"date":"2008-07-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.283},{"date":"2008-07-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.449},{"date":"2008-07-14","fuel":"diesel","grade":"all","formulation":"NA","price":4.764},{"date":"2008-07-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.771},{"date":"2008-07-14","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.707},{"date":"2008-07-21","fuel":"gasoline","grade":"all","formulation":"all","price":4.118},{"date":"2008-07-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.054},{"date":"2008-07-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.246},{"date":"2008-07-21","fuel":"gasoline","grade":"regular","formulation":"all","price":4.064},{"date":"2008-07-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.005},{"date":"2008-07-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.19},{"date":"2008-07-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.186},{"date":"2008-07-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.109},{"date":"2008-07-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.337},{"date":"2008-07-21","fuel":"gasoline","grade":"premium","formulation":"all","price":4.303},{"date":"2008-07-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.242},{"date":"2008-07-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.416},{"date":"2008-07-21","fuel":"diesel","grade":"all","formulation":"NA","price":4.718},{"date":"2008-07-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.729},{"date":"2008-07-21","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.629},{"date":"2008-07-28","fuel":"gasoline","grade":"all","formulation":"all","price":4.01},{"date":"2008-07-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.948},{"date":"2008-07-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.137},{"date":"2008-07-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.955},{"date":"2008-07-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.896},{"date":"2008-07-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.077},{"date":"2008-07-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.082},{"date":"2008-07-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.005},{"date":"2008-07-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.23},{"date":"2008-07-28","fuel":"gasoline","grade":"premium","formulation":"all","price":4.205},{"date":"2008-07-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.145},{"date":"2008-07-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.317},{"date":"2008-07-28","fuel":"diesel","grade":"all","formulation":"NA","price":4.603},{"date":"2008-07-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.614},{"date":"2008-07-28","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.512},{"date":"2008-08-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.935},{"date":"2008-08-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.88},{"date":"2008-08-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.048},{"date":"2008-08-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.88},{"date":"2008-08-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.828},{"date":"2008-08-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.988},{"date":"2008-08-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.006},{"date":"2008-08-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.937},{"date":"2008-08-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.141},{"date":"2008-08-04","fuel":"gasoline","grade":"premium","formulation":"all","price":4.13},{"date":"2008-08-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.075},{"date":"2008-08-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.231},{"date":"2008-08-04","fuel":"diesel","grade":"all","formulation":"NA","price":4.502},{"date":"2008-08-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.515},{"date":"2008-08-04","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.395},{"date":"2008-08-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.864},{"date":"2008-08-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.815},{"date":"2008-08-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.963},{"date":"2008-08-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.809},{"date":"2008-08-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.764},{"date":"2008-08-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.903},{"date":"2008-08-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.932},{"date":"2008-08-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.868},{"date":"2008-08-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.056},{"date":"2008-08-11","fuel":"gasoline","grade":"premium","formulation":"all","price":4.055},{"date":"2008-08-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.005},{"date":"2008-08-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.148},{"date":"2008-08-11","fuel":"diesel","grade":"all","formulation":"NA","price":4.353},{"date":"2008-08-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.368},{"date":"2008-08-11","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.24},{"date":"2008-08-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.794},{"date":"2008-08-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.754},{"date":"2008-08-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.875},{"date":"2008-08-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.74},{"date":"2008-08-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.706},{"date":"2008-08-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.813},{"date":"2008-08-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.862},{"date":"2008-08-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.805},{"date":"2008-08-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.971},{"date":"2008-08-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.979},{"date":"2008-08-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.935},{"date":"2008-08-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.06},{"date":"2008-08-18","fuel":"diesel","grade":"all","formulation":"NA","price":4.207},{"date":"2008-08-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.219},{"date":"2008-08-18","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.102},{"date":"2008-08-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.738},{"date":"2008-08-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.707},{"date":"2008-08-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.799},{"date":"2008-08-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.685},{"date":"2008-08-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.66},{"date":"2008-08-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.736},{"date":"2008-08-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.806},{"date":"2008-08-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.758},{"date":"2008-08-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.898},{"date":"2008-08-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.922},{"date":"2008-08-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.886},{"date":"2008-08-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.989},{"date":"2008-08-25","fuel":"diesel","grade":"all","formulation":"NA","price":4.145},{"date":"2008-08-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.158},{"date":"2008-08-25","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.039},{"date":"2008-09-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.733},{"date":"2008-09-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.715},{"date":"2008-09-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.769},{"date":"2008-09-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.68},{"date":"2008-09-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.667},{"date":"2008-09-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.707},{"date":"2008-09-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.802},{"date":"2008-09-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.769},{"date":"2008-09-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.867},{"date":"2008-09-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.918},{"date":"2008-09-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.897},{"date":"2008-09-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.957},{"date":"2008-09-01","fuel":"diesel","grade":"all","formulation":"NA","price":4.121},{"date":"2008-09-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.135},{"date":"2008-09-01","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":4.015},{"date":"2008-09-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.701},{"date":"2008-09-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.686},{"date":"2008-09-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.731},{"date":"2008-09-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.648},{"date":"2008-09-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.637},{"date":"2008-09-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.67},{"date":"2008-09-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.769},{"date":"2008-09-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.742},{"date":"2008-09-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.822},{"date":"2008-09-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.885},{"date":"2008-09-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.87},{"date":"2008-09-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.915},{"date":"2008-09-08","fuel":"diesel","grade":"all","formulation":"NA","price":4.059},{"date":"2008-09-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.075},{"date":"2008-09-08","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.936},{"date":"2008-09-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.887},{"date":"2008-09-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.919},{"date":"2008-09-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.822},{"date":"2008-09-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.835},{"date":"2008-09-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.867},{"date":"2008-09-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.766},{"date":"2008-09-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.948},{"date":"2008-09-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.973},{"date":"2008-09-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.898},{"date":"2008-09-15","fuel":"gasoline","grade":"premium","formulation":"all","price":4.073},{"date":"2008-09-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.115},{"date":"2008-09-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.995},{"date":"2008-09-15","fuel":"diesel","grade":"all","formulation":"NA","price":4.023},{"date":"2008-09-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.035},{"date":"2008-09-15","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.933},{"date":"2008-09-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.772},{"date":"2008-09-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.785},{"date":"2008-09-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.746},{"date":"2008-09-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.718},{"date":"2008-09-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.732},{"date":"2008-09-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.687},{"date":"2008-09-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.839},{"date":"2008-09-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.847},{"date":"2008-09-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.825},{"date":"2008-09-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.963},{"date":"2008-09-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.982},{"date":"2008-09-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.929},{"date":"2008-09-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.958},{"date":"2008-09-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.967},{"date":"2008-09-22","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.885},{"date":"2008-09-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.687},{"date":"2008-09-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.697},{"date":"2008-09-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.669},{"date":"2008-09-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.632},{"date":"2008-09-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.644},{"date":"2008-09-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.607},{"date":"2008-09-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.755},{"date":"2008-09-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.756},{"date":"2008-09-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.754},{"date":"2008-09-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.883},{"date":"2008-09-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.895},{"date":"2008-09-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.862},{"date":"2008-09-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.959},{"date":"2008-09-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.969},{"date":"2008-09-29","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.887},{"date":"2008-10-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.543},{"date":"2008-10-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.541},{"date":"2008-10-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.545},{"date":"2008-10-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.484},{"date":"2008-10-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.485},{"date":"2008-10-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.482},{"date":"2008-10-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.618},{"date":"2008-10-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.609},{"date":"2008-10-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.636},{"date":"2008-10-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.746},{"date":"2008-10-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.752},{"date":"2008-10-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.735},{"date":"2008-10-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.875},{"date":"2008-10-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.887},{"date":"2008-10-06","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.781},{"date":"2008-10-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.213},{"date":"2008-10-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.166},{"date":"2008-10-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.307},{"date":"2008-10-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.151},{"date":"2008-10-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.109},{"date":"2008-10-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.239},{"date":"2008-10-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.296},{"date":"2008-10-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.235},{"date":"2008-10-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.414},{"date":"2008-10-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.425},{"date":"2008-10-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.378},{"date":"2008-10-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.512},{"date":"2008-10-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.659},{"date":"2008-10-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.672},{"date":"2008-10-13","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.558},{"date":"2008-10-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.974},{"date":"2008-10-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.909},{"date":"2008-10-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.107},{"date":"2008-10-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.914},{"date":"2008-10-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.855},{"date":"2008-10-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.04},{"date":"2008-10-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.053},{"date":"2008-10-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.968},{"date":"2008-10-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.219},{"date":"2008-10-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.182},{"date":"2008-10-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.115},{"date":"2008-10-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.306},{"date":"2008-10-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.482},{"date":"2008-10-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.497},{"date":"2008-10-20","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.358},{"date":"2008-10-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.718},{"date":"2008-10-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.644},{"date":"2008-10-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.867},{"date":"2008-10-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.656},{"date":"2008-10-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.589},{"date":"2008-10-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.797},{"date":"2008-10-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.8},{"date":"2008-10-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.707},{"date":"2008-10-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.981},{"date":"2008-10-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.929},{"date":"2008-10-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.851},{"date":"2008-10-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.073},{"date":"2008-10-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.288},{"date":"2008-10-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.3},{"date":"2008-10-27","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":3.189},{"date":"2008-11-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.462},{"date":"2008-11-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.395},{"date":"2008-11-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.597},{"date":"2008-11-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.4},{"date":"2008-11-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.34},{"date":"2008-11-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.525},{"date":"2008-11-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.543},{"date":"2008-11-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.457},{"date":"2008-11-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.709},{"date":"2008-11-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.677},{"date":"2008-11-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.603},{"date":"2008-11-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.813},{"date":"2008-11-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.088},{"date":"2008-11-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.1},{"date":"2008-11-03","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.994},{"date":"2008-11-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.284},{"date":"2008-11-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.224},{"date":"2008-11-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.407},{"date":"2008-11-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.224},{"date":"2008-11-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.17},{"date":"2008-11-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.337},{"date":"2008-11-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.363},{"date":"2008-11-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.285},{"date":"2008-11-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.512},{"date":"2008-11-10","fuel":"gasoline","grade":"premium","formulation":"all","price":2.494},{"date":"2008-11-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.426},{"date":"2008-11-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.62},{"date":"2008-11-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.944},{"date":"2008-11-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.958},{"date":"2008-11-10","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.829},{"date":"2008-11-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.132},{"date":"2008-11-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.081},{"date":"2008-11-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.236},{"date":"2008-11-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.072},{"date":"2008-11-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.027},{"date":"2008-11-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.166},{"date":"2008-11-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.211},{"date":"2008-11-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.144},{"date":"2008-11-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.34},{"date":"2008-11-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.339},{"date":"2008-11-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.281},{"date":"2008-11-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.447},{"date":"2008-11-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.809},{"date":"2008-11-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.822},{"date":"2008-11-17","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.699},{"date":"2008-11-24","fuel":"gasoline","grade":"all","formulation":"all","price":1.952},{"date":"2008-11-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.912},{"date":"2008-11-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.035},{"date":"2008-11-24","fuel":"gasoline","grade":"regular","formulation":"all","price":1.892},{"date":"2008-11-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.857},{"date":"2008-11-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.964},{"date":"2008-11-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.029},{"date":"2008-11-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.972},{"date":"2008-11-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.138},{"date":"2008-11-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.163},{"date":"2008-11-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.115},{"date":"2008-11-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.253},{"date":"2008-11-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.664},{"date":"2008-11-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.676},{"date":"2008-11-24","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.571},{"date":"2008-12-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.87},{"date":"2008-12-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.844},{"date":"2008-12-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.924},{"date":"2008-12-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.811},{"date":"2008-12-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.79},{"date":"2008-12-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.854},{"date":"2008-12-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.945},{"date":"2008-12-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.906},{"date":"2008-12-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.021},{"date":"2008-12-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.077},{"date":"2008-12-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.044},{"date":"2008-12-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.141},{"date":"2008-12-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.615},{"date":"2008-12-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.624},{"date":"2008-12-01","fuel":"diesel","grade":"low_sulfur","formulation":"NA","price":2.544},{"date":"2008-12-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.758},{"date":"2008-12-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.734},{"date":"2008-12-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.808},{"date":"2008-12-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.699},{"date":"2008-12-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.681},{"date":"2008-12-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.738},{"date":"2008-12-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.832},{"date":"2008-12-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.797},{"date":"2008-12-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.901},{"date":"2008-12-08","fuel":"gasoline","grade":"premium","formulation":"all","price":1.965},{"date":"2008-12-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.933},{"date":"2008-12-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.025},{"date":"2008-12-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.515},{"date":"2008-12-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.523},{"date":"2008-12-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.716},{"date":"2008-12-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.699},{"date":"2008-12-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.749},{"date":"2008-12-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.659},{"date":"2008-12-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.648},{"date":"2008-12-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.682},{"date":"2008-12-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.785},{"date":"2008-12-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.758},{"date":"2008-12-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.838},{"date":"2008-12-15","fuel":"gasoline","grade":"premium","formulation":"all","price":1.915},{"date":"2008-12-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.892},{"date":"2008-12-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.958},{"date":"2008-12-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.422},{"date":"2008-12-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.43},{"date":"2008-12-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.71},{"date":"2008-12-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.685},{"date":"2008-12-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.758},{"date":"2008-12-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.653},{"date":"2008-12-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.635},{"date":"2008-12-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.692},{"date":"2008-12-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.781},{"date":"2008-12-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.744},{"date":"2008-12-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.852},{"date":"2008-12-22","fuel":"gasoline","grade":"premium","formulation":"all","price":1.907},{"date":"2008-12-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.875},{"date":"2008-12-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.965},{"date":"2008-12-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.366},{"date":"2008-12-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.373},{"date":"2008-12-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.67},{"date":"2008-12-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.642},{"date":"2008-12-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.727},{"date":"2008-12-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.613},{"date":"2008-12-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.59},{"date":"2008-12-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.662},{"date":"2008-12-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.743},{"date":"2008-12-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.702},{"date":"2008-12-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.823},{"date":"2008-12-29","fuel":"gasoline","grade":"premium","formulation":"all","price":1.866},{"date":"2008-12-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.831},{"date":"2008-12-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.929},{"date":"2008-12-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.327},{"date":"2008-12-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.335},{"date":"2009-01-05","fuel":"gasoline","grade":"all","formulation":"all","price":1.737},{"date":"2009-01-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.72},{"date":"2009-01-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.772},{"date":"2009-01-05","fuel":"gasoline","grade":"regular","formulation":"all","price":1.684},{"date":"2009-01-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.672},{"date":"2009-01-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.711},{"date":"2009-01-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.8},{"date":"2009-01-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.769},{"date":"2009-01-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.861},{"date":"2009-01-05","fuel":"gasoline","grade":"premium","formulation":"all","price":1.922},{"date":"2009-01-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":1.902},{"date":"2009-01-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":1.96},{"date":"2009-01-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.291},{"date":"2009-01-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.299},{"date":"2009-01-12","fuel":"gasoline","grade":"all","formulation":"all","price":1.835},{"date":"2009-01-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.82},{"date":"2009-01-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.866},{"date":"2009-01-12","fuel":"gasoline","grade":"regular","formulation":"all","price":1.784},{"date":"2009-01-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.772},{"date":"2009-01-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.808},{"date":"2009-01-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.9},{"date":"2009-01-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.873},{"date":"2009-01-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":1.951},{"date":"2009-01-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.015},{"date":"2009-01-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2},{"date":"2009-01-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.043},{"date":"2009-01-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.314},{"date":"2009-01-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.324},{"date":"2009-01-19","fuel":"gasoline","grade":"all","formulation":"all","price":1.898},{"date":"2009-01-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.88},{"date":"2009-01-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.935},{"date":"2009-01-19","fuel":"gasoline","grade":"regular","formulation":"all","price":1.847},{"date":"2009-01-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.832},{"date":"2009-01-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.878},{"date":"2009-01-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.961},{"date":"2009-01-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.931},{"date":"2009-01-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.02},{"date":"2009-01-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.077},{"date":"2009-01-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.061},{"date":"2009-01-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.105},{"date":"2009-01-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.296},{"date":"2009-01-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.307},{"date":"2009-01-26","fuel":"gasoline","grade":"all","formulation":"all","price":1.89},{"date":"2009-01-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.862},{"date":"2009-01-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.947},{"date":"2009-01-26","fuel":"gasoline","grade":"regular","formulation":"all","price":1.838},{"date":"2009-01-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.813},{"date":"2009-01-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.892},{"date":"2009-01-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.954},{"date":"2009-01-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.915},{"date":"2009-01-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.029},{"date":"2009-01-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.07},{"date":"2009-01-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.046},{"date":"2009-01-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.115},{"date":"2009-01-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.268},{"date":"2009-01-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.278},{"date":"2009-02-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.944},{"date":"2009-02-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.92},{"date":"2009-02-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.992},{"date":"2009-02-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.892},{"date":"2009-02-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.871},{"date":"2009-02-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.936},{"date":"2009-02-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.007},{"date":"2009-02-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.974},{"date":"2009-02-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.071},{"date":"2009-02-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.126},{"date":"2009-02-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.107},{"date":"2009-02-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.162},{"date":"2009-02-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.246},{"date":"2009-02-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.256},{"date":"2009-02-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.978},{"date":"2009-02-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.946},{"date":"2009-02-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.043},{"date":"2009-02-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.926},{"date":"2009-02-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.897},{"date":"2009-02-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.986},{"date":"2009-02-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.044},{"date":"2009-02-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.002},{"date":"2009-02-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.127},{"date":"2009-02-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.161},{"date":"2009-02-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.133},{"date":"2009-02-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.214},{"date":"2009-02-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.219},{"date":"2009-02-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.23},{"date":"2009-02-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.016},{"date":"2009-02-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.981},{"date":"2009-02-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.089},{"date":"2009-02-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.964},{"date":"2009-02-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.931},{"date":"2009-02-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.034},{"date":"2009-02-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.083},{"date":"2009-02-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.036},{"date":"2009-02-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.174},{"date":"2009-02-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.198},{"date":"2009-02-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.168},{"date":"2009-02-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.255},{"date":"2009-02-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.186},{"date":"2009-02-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.197},{"date":"2009-02-23","fuel":"gasoline","grade":"all","formulation":"all","price":1.963},{"date":"2009-02-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.919},{"date":"2009-02-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.052},{"date":"2009-02-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.909},{"date":"2009-02-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.868},{"date":"2009-02-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.995},{"date":"2009-02-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.032},{"date":"2009-02-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.976},{"date":"2009-02-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.141},{"date":"2009-02-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.153},{"date":"2009-02-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.113},{"date":"2009-02-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.227},{"date":"2009-02-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.13},{"date":"2009-02-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.138},{"date":"2009-03-02","fuel":"gasoline","grade":"all","formulation":"all","price":1.988},{"date":"2009-03-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.961},{"date":"2009-03-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.043},{"date":"2009-03-02","fuel":"gasoline","grade":"regular","formulation":"all","price":1.934},{"date":"2009-03-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.91},{"date":"2009-03-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.984},{"date":"2009-03-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.057},{"date":"2009-03-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.016},{"date":"2009-03-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.137},{"date":"2009-03-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.174},{"date":"2009-03-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.151},{"date":"2009-03-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.218},{"date":"2009-03-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.087},{"date":"2009-03-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.095},{"date":"2009-03-09","fuel":"gasoline","grade":"all","formulation":"all","price":1.993},{"date":"2009-03-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.967},{"date":"2009-03-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.046},{"date":"2009-03-09","fuel":"gasoline","grade":"regular","formulation":"all","price":1.941},{"date":"2009-03-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.918},{"date":"2009-03-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.99},{"date":"2009-03-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.059},{"date":"2009-03-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.022},{"date":"2009-03-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.131},{"date":"2009-03-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.175},{"date":"2009-03-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.154},{"date":"2009-03-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.215},{"date":"2009-03-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.045},{"date":"2009-03-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.051},{"date":"2009-03-16","fuel":"gasoline","grade":"all","formulation":"all","price":1.964},{"date":"2009-03-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.937},{"date":"2009-03-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.02},{"date":"2009-03-16","fuel":"gasoline","grade":"regular","formulation":"all","price":1.91},{"date":"2009-03-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.885},{"date":"2009-03-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.962},{"date":"2009-03-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.034},{"date":"2009-03-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.996},{"date":"2009-03-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.108},{"date":"2009-03-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.151},{"date":"2009-03-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.127},{"date":"2009-03-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.195},{"date":"2009-03-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.017},{"date":"2009-03-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.023},{"date":"2009-03-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.014},{"date":"2009-03-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.993},{"date":"2009-03-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.056},{"date":"2009-03-23","fuel":"gasoline","grade":"regular","formulation":"all","price":1.962},{"date":"2009-03-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.944},{"date":"2009-03-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.001},{"date":"2009-03-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.079},{"date":"2009-03-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.049},{"date":"2009-03-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.137},{"date":"2009-03-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.193},{"date":"2009-03-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.175},{"date":"2009-03-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.226},{"date":"2009-03-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.09},{"date":"2009-03-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.093},{"date":"2009-03-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.097},{"date":"2009-03-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.079},{"date":"2009-03-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.135},{"date":"2009-03-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.046},{"date":"2009-03-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.03},{"date":"2009-03-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.08},{"date":"2009-03-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.163},{"date":"2009-03-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.136},{"date":"2009-03-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.216},{"date":"2009-03-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.275},{"date":"2009-03-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.259},{"date":"2009-03-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.304},{"date":"2009-03-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.221},{"date":"2009-03-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.225},{"date":"2009-04-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.09},{"date":"2009-04-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.061},{"date":"2009-04-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.148},{"date":"2009-04-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.037},{"date":"2009-04-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.011},{"date":"2009-04-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.092},{"date":"2009-04-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.158},{"date":"2009-04-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.119},{"date":"2009-04-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.234},{"date":"2009-04-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.271},{"date":"2009-04-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.245},{"date":"2009-04-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.319},{"date":"2009-04-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.228},{"date":"2009-04-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.233},{"date":"2009-04-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.104},{"date":"2009-04-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.075},{"date":"2009-04-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.163},{"date":"2009-04-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.051},{"date":"2009-04-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.025},{"date":"2009-04-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.107},{"date":"2009-04-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.172},{"date":"2009-04-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.132},{"date":"2009-04-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.248},{"date":"2009-04-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.284},{"date":"2009-04-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.26},{"date":"2009-04-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.33},{"date":"2009-04-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.229},{"date":"2009-04-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.234},{"date":"2009-04-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.112},{"date":"2009-04-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.081},{"date":"2009-04-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.174},{"date":"2009-04-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.059},{"date":"2009-04-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.031},{"date":"2009-04-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.118},{"date":"2009-04-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.181},{"date":"2009-04-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.14},{"date":"2009-04-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.259},{"date":"2009-04-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.294},{"date":"2009-04-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.268},{"date":"2009-04-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.343},{"date":"2009-04-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.221},{"date":"2009-04-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.226},{"date":"2009-04-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.102},{"date":"2009-04-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.066},{"date":"2009-04-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.175},{"date":"2009-04-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.049},{"date":"2009-04-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.016},{"date":"2009-04-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.118},{"date":"2009-04-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.171},{"date":"2009-04-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.124},{"date":"2009-04-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.262},{"date":"2009-04-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.285},{"date":"2009-04-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.251},{"date":"2009-04-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.348},{"date":"2009-04-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.201},{"date":"2009-04-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.207},{"date":"2009-05-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.129},{"date":"2009-05-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.093},{"date":"2009-05-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.202},{"date":"2009-05-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.078},{"date":"2009-05-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.045},{"date":"2009-05-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.147},{"date":"2009-05-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.195},{"date":"2009-05-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.149},{"date":"2009-05-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.284},{"date":"2009-05-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.308},{"date":"2009-05-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.275},{"date":"2009-05-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.369},{"date":"2009-05-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.185},{"date":"2009-05-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.192},{"date":"2009-05-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.29},{"date":"2009-05-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.267},{"date":"2009-05-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.337},{"date":"2009-05-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.24},{"date":"2009-05-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.218},{"date":"2009-05-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.285},{"date":"2009-05-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.352},{"date":"2009-05-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.322},{"date":"2009-05-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.411},{"date":"2009-05-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.467},{"date":"2009-05-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.45},{"date":"2009-05-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.499},{"date":"2009-05-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.216},{"date":"2009-05-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.223},{"date":"2009-05-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.36},{"date":"2009-05-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.331},{"date":"2009-05-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.421},{"date":"2009-05-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.309},{"date":"2009-05-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.281},{"date":"2009-05-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.368},{"date":"2009-05-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.424},{"date":"2009-05-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.387},{"date":"2009-05-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.495},{"date":"2009-05-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.54},{"date":"2009-05-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.517},{"date":"2009-05-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.583},{"date":"2009-05-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.231},{"date":"2009-05-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.237},{"date":"2009-05-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.485},{"date":"2009-05-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.463},{"date":"2009-05-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.531},{"date":"2009-05-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.435},{"date":"2009-05-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.414},{"date":"2009-05-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.477},{"date":"2009-05-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.547},{"date":"2009-05-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.516},{"date":"2009-05-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.608},{"date":"2009-05-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.661},{"date":"2009-05-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.644},{"date":"2009-05-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.693},{"date":"2009-05-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.274},{"date":"2009-05-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.278},{"date":"2009-06-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.572},{"date":"2009-06-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.548},{"date":"2009-06-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.621},{"date":"2009-06-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.524},{"date":"2009-06-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.502},{"date":"2009-06-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.57},{"date":"2009-06-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.63},{"date":"2009-06-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.595},{"date":"2009-06-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.698},{"date":"2009-06-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.741},{"date":"2009-06-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.721},{"date":"2009-06-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.778},{"date":"2009-06-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.352},{"date":"2009-06-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.354},{"date":"2009-06-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.673},{"date":"2009-06-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.646},{"date":"2009-06-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.728},{"date":"2009-06-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.624},{"date":"2009-06-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.6},{"date":"2009-06-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.676},{"date":"2009-06-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.731},{"date":"2009-06-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.692},{"date":"2009-06-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.806},{"date":"2009-06-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.843},{"date":"2009-06-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.82},{"date":"2009-06-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.885},{"date":"2009-06-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.498},{"date":"2009-06-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.501},{"date":"2009-06-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.722},{"date":"2009-06-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.686},{"date":"2009-06-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.794},{"date":"2009-06-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.672},{"date":"2009-06-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.639},{"date":"2009-06-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.742},{"date":"2009-06-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.784},{"date":"2009-06-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.737},{"date":"2009-06-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.875},{"date":"2009-06-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.896},{"date":"2009-06-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.866},{"date":"2009-06-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.952},{"date":"2009-06-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.572},{"date":"2009-06-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.575},{"date":"2009-06-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.743},{"date":"2009-06-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.7},{"date":"2009-06-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.831},{"date":"2009-06-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.691},{"date":"2009-06-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.65},{"date":"2009-06-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.777},{"date":"2009-06-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.808},{"date":"2009-06-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.755},{"date":"2009-06-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.91},{"date":"2009-06-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.924},{"date":"2009-06-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.887},{"date":"2009-06-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.992},{"date":"2009-06-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.616},{"date":"2009-06-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.619},{"date":"2009-06-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.695},{"date":"2009-06-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.644},{"date":"2009-06-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.799},{"date":"2009-06-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.642},{"date":"2009-06-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.593},{"date":"2009-06-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.744},{"date":"2009-06-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.763},{"date":"2009-06-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.701},{"date":"2009-06-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.882},{"date":"2009-06-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.883},{"date":"2009-06-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.839},{"date":"2009-06-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.966},{"date":"2009-06-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.608},{"date":"2009-06-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.612},{"date":"2009-07-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.666},{"date":"2009-07-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.615},{"date":"2009-07-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.77},{"date":"2009-07-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.612},{"date":"2009-07-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.563},{"date":"2009-07-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.713},{"date":"2009-07-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.736},{"date":"2009-07-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.673},{"date":"2009-07-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.856},{"date":"2009-07-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.855},{"date":"2009-07-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.81},{"date":"2009-07-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.94},{"date":"2009-07-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.594},{"date":"2009-07-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.598},{"date":"2009-07-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.584},{"date":"2009-07-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.532},{"date":"2009-07-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.69},{"date":"2009-07-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.528},{"date":"2009-07-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.479},{"date":"2009-07-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.631},{"date":"2009-07-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.656},{"date":"2009-07-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.593},{"date":"2009-07-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.78},{"date":"2009-07-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.779},{"date":"2009-07-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.731},{"date":"2009-07-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.869},{"date":"2009-07-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.542},{"date":"2009-07-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.546},{"date":"2009-07-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.519},{"date":"2009-07-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.463},{"date":"2009-07-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.633},{"date":"2009-07-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.463},{"date":"2009-07-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.411},{"date":"2009-07-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.572},{"date":"2009-07-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.591},{"date":"2009-07-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.522},{"date":"2009-07-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.725},{"date":"2009-07-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.714},{"date":"2009-07-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.659},{"date":"2009-07-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.815},{"date":"2009-07-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.496},{"date":"2009-07-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.501},{"date":"2009-07-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.557},{"date":"2009-07-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.51},{"date":"2009-07-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.652},{"date":"2009-07-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.503},{"date":"2009-07-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.46},{"date":"2009-07-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.594},{"date":"2009-07-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.625},{"date":"2009-07-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.564},{"date":"2009-07-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.742},{"date":"2009-07-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.744},{"date":"2009-07-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.698},{"date":"2009-07-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.829},{"date":"2009-07-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.528},{"date":"2009-07-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.532},{"date":"2009-08-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.61},{"date":"2009-08-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.561},{"date":"2009-08-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.71},{"date":"2009-08-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.557},{"date":"2009-08-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.511},{"date":"2009-08-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.653},{"date":"2009-08-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.676},{"date":"2009-08-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.613},{"date":"2009-08-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.796},{"date":"2009-08-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.793},{"date":"2009-08-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.747},{"date":"2009-08-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.88},{"date":"2009-08-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.55},{"date":"2009-08-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.554},{"date":"2009-08-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.7},{"date":"2009-08-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.645},{"date":"2009-08-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.81},{"date":"2009-08-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.647},{"date":"2009-08-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.596},{"date":"2009-08-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.755},{"date":"2009-08-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.767},{"date":"2009-08-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.7},{"date":"2009-08-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.896},{"date":"2009-08-10","fuel":"gasoline","grade":"premium","formulation":"all","price":2.883},{"date":"2009-08-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.833},{"date":"2009-08-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.975},{"date":"2009-08-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.625},{"date":"2009-08-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.628},{"date":"2009-08-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.691},{"date":"2009-08-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.631},{"date":"2009-08-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.813},{"date":"2009-08-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.637},{"date":"2009-08-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.58},{"date":"2009-08-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.757},{"date":"2009-08-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.761},{"date":"2009-08-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.688},{"date":"2009-08-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.901},{"date":"2009-08-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.877},{"date":"2009-08-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.821},{"date":"2009-08-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.98},{"date":"2009-08-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.652},{"date":"2009-08-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.656},{"date":"2009-08-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.682},{"date":"2009-08-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.622},{"date":"2009-08-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.802},{"date":"2009-08-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.628},{"date":"2009-08-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.572},{"date":"2009-08-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.746},{"date":"2009-08-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.751},{"date":"2009-08-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.677},{"date":"2009-08-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.893},{"date":"2009-08-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.869},{"date":"2009-08-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.813},{"date":"2009-08-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.972},{"date":"2009-08-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.668},{"date":"2009-08-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.672},{"date":"2009-08-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.667},{"date":"2009-08-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.605},{"date":"2009-08-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.795},{"date":"2009-08-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.613},{"date":"2009-08-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.553},{"date":"2009-08-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.737},{"date":"2009-08-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.739},{"date":"2009-08-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.662},{"date":"2009-08-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.887},{"date":"2009-08-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.857},{"date":"2009-08-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.797},{"date":"2009-08-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.967},{"date":"2009-08-31","fuel":"diesel","grade":"all","formulation":"NA","price":2.674},{"date":"2009-08-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.679},{"date":"2009-09-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.642},{"date":"2009-09-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.569},{"date":"2009-09-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.792},{"date":"2009-09-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.588},{"date":"2009-09-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.519},{"date":"2009-09-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.733},{"date":"2009-09-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.711},{"date":"2009-09-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.619},{"date":"2009-09-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.89},{"date":"2009-09-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.831},{"date":"2009-09-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.759},{"date":"2009-09-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.965},{"date":"2009-09-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.647},{"date":"2009-09-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.65},{"date":"2009-09-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.632},{"date":"2009-09-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.55},{"date":"2009-09-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.799},{"date":"2009-09-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.577},{"date":"2009-09-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.499},{"date":"2009-09-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.741},{"date":"2009-09-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.704},{"date":"2009-09-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.603},{"date":"2009-09-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.899},{"date":"2009-09-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.818},{"date":"2009-09-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.739},{"date":"2009-09-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.964},{"date":"2009-09-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.634},{"date":"2009-09-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.638},{"date":"2009-09-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.607},{"date":"2009-09-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.526},{"date":"2009-09-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.771},{"date":"2009-09-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.552},{"date":"2009-09-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.477},{"date":"2009-09-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.712},{"date":"2009-09-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.68},{"date":"2009-09-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.58},{"date":"2009-09-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.874},{"date":"2009-09-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.793},{"date":"2009-09-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.714},{"date":"2009-09-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.941},{"date":"2009-09-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.622},{"date":"2009-09-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.626},{"date":"2009-09-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.554},{"date":"2009-09-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.475},{"date":"2009-09-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.715},{"date":"2009-09-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.499},{"date":"2009-09-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.425},{"date":"2009-09-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.655},{"date":"2009-09-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.631},{"date":"2009-09-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.531},{"date":"2009-09-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.823},{"date":"2009-09-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.741},{"date":"2009-09-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.663},{"date":"2009-09-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.886},{"date":"2009-09-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.601},{"date":"2009-09-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.606},{"date":"2009-10-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.523},{"date":"2009-10-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.446},{"date":"2009-10-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.681},{"date":"2009-10-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.468},{"date":"2009-10-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.396},{"date":"2009-10-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.621},{"date":"2009-10-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.6},{"date":"2009-10-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.502},{"date":"2009-10-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.788},{"date":"2009-10-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.711},{"date":"2009-10-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.634},{"date":"2009-10-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.853},{"date":"2009-10-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.582},{"date":"2009-10-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.588},{"date":"2009-10-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.543},{"date":"2009-10-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.48},{"date":"2009-10-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.67},{"date":"2009-10-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.489},{"date":"2009-10-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.432},{"date":"2009-10-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.611},{"date":"2009-10-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.614},{"date":"2009-10-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.532},{"date":"2009-10-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.774},{"date":"2009-10-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.727},{"date":"2009-10-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.665},{"date":"2009-10-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.841},{"date":"2009-10-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.6},{"date":"2009-10-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.604},{"date":"2009-10-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.626},{"date":"2009-10-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.58},{"date":"2009-10-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.719},{"date":"2009-10-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.574},{"date":"2009-10-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.532},{"date":"2009-10-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.663},{"date":"2009-10-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.694},{"date":"2009-10-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.633},{"date":"2009-10-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.812},{"date":"2009-10-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.807},{"date":"2009-10-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.763},{"date":"2009-10-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.887},{"date":"2009-10-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.705},{"date":"2009-10-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.708},{"date":"2009-10-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.727},{"date":"2009-10-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.691},{"date":"2009-10-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.8},{"date":"2009-10-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.674},{"date":"2009-10-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.641},{"date":"2009-10-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.744},{"date":"2009-10-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.792},{"date":"2009-10-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.744},{"date":"2009-10-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.886},{"date":"2009-10-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.909},{"date":"2009-10-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.878},{"date":"2009-10-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.968},{"date":"2009-10-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.801},{"date":"2009-10-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.805},{"date":"2009-11-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.746},{"date":"2009-11-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.71},{"date":"2009-11-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.822},{"date":"2009-11-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.694},{"date":"2009-11-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.66},{"date":"2009-11-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.766},{"date":"2009-11-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.812},{"date":"2009-11-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.764},{"date":"2009-11-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.907},{"date":"2009-11-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.93},{"date":"2009-11-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.897},{"date":"2009-11-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.991},{"date":"2009-11-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.808},{"date":"2009-11-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.811},{"date":"2009-11-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.72},{"date":"2009-11-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.678},{"date":"2009-11-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.805},{"date":"2009-11-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.666},{"date":"2009-11-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.627},{"date":"2009-11-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.748},{"date":"2009-11-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.787},{"date":"2009-11-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.733},{"date":"2009-11-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.891},{"date":"2009-11-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.908},{"date":"2009-11-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.871},{"date":"2009-11-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.977},{"date":"2009-11-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.801},{"date":"2009-11-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.805},{"date":"2009-11-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.684},{"date":"2009-11-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.638},{"date":"2009-11-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.778},{"date":"2009-11-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.629},{"date":"2009-11-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.585},{"date":"2009-11-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.72},{"date":"2009-11-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.755},{"date":"2009-11-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.697},{"date":"2009-11-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.867},{"date":"2009-11-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.877},{"date":"2009-11-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.835},{"date":"2009-11-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.955},{"date":"2009-11-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.79},{"date":"2009-11-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.795},{"date":"2009-11-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.694},{"date":"2009-11-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.655},{"date":"2009-11-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.773},{"date":"2009-11-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.639},{"date":"2009-11-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.603},{"date":"2009-11-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.714},{"date":"2009-11-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.764},{"date":"2009-11-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.713},{"date":"2009-11-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.862},{"date":"2009-11-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.883},{"date":"2009-11-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.846},{"date":"2009-11-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.951},{"date":"2009-11-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.787},{"date":"2009-11-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.792},{"date":"2009-11-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.684},{"date":"2009-11-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.646},{"date":"2009-11-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.763},{"date":"2009-11-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.629},{"date":"2009-11-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.594},{"date":"2009-11-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.704},{"date":"2009-11-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.754},{"date":"2009-11-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.704},{"date":"2009-11-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.851},{"date":"2009-11-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.875},{"date":"2009-11-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.84},{"date":"2009-11-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.941},{"date":"2009-11-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.775},{"date":"2009-11-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.78},{"date":"2009-12-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.689},{"date":"2009-12-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.653},{"date":"2009-12-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.763},{"date":"2009-12-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.634},{"date":"2009-12-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.601},{"date":"2009-12-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.703},{"date":"2009-12-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.761},{"date":"2009-12-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.715},{"date":"2009-12-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.851},{"date":"2009-12-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.882},{"date":"2009-12-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.849},{"date":"2009-12-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.942},{"date":"2009-12-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.772},{"date":"2009-12-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.777},{"date":"2009-12-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.655},{"date":"2009-12-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.613},{"date":"2009-12-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.742},{"date":"2009-12-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.599},{"date":"2009-12-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.56},{"date":"2009-12-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.681},{"date":"2009-12-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.727},{"date":"2009-12-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.672},{"date":"2009-12-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.835},{"date":"2009-12-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.849},{"date":"2009-12-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.809},{"date":"2009-12-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.925},{"date":"2009-12-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.748},{"date":"2009-12-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.753},{"date":"2009-12-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.645},{"date":"2009-12-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.599},{"date":"2009-12-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.739},{"date":"2009-12-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.589},{"date":"2009-12-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.546},{"date":"2009-12-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.679},{"date":"2009-12-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.717},{"date":"2009-12-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.658},{"date":"2009-12-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.829},{"date":"2009-12-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.839},{"date":"2009-12-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.796},{"date":"2009-12-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.918},{"date":"2009-12-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.726},{"date":"2009-12-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.731},{"date":"2009-12-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.662},{"date":"2009-12-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.616},{"date":"2009-12-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.754},{"date":"2009-12-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.607},{"date":"2009-12-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.564},{"date":"2009-12-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.696},{"date":"2009-12-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.731},{"date":"2009-12-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.673},{"date":"2009-12-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.843},{"date":"2009-12-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.853},{"date":"2009-12-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.811},{"date":"2009-12-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.93},{"date":"2009-12-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.732},{"date":"2009-12-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.736},{"date":"2010-01-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.718},{"date":"2010-01-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.677},{"date":"2010-01-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.802},{"date":"2010-01-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.665},{"date":"2010-01-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.627},{"date":"2010-01-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.745},{"date":"2010-01-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.784},{"date":"2010-01-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.73},{"date":"2010-01-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.889},{"date":"2010-01-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.905},{"date":"2010-01-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.869},{"date":"2010-01-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.972},{"date":"2010-01-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.797},{"date":"2010-01-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.801},{"date":"2010-01-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.804},{"date":"2010-01-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.768},{"date":"2010-01-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.877},{"date":"2010-01-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.751},{"date":"2010-01-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.717},{"date":"2010-01-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.822},{"date":"2010-01-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.869},{"date":"2010-01-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.823},{"date":"2010-01-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.958},{"date":"2010-01-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.988},{"date":"2010-01-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.959},{"date":"2010-01-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.042},{"date":"2010-01-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.879},{"date":"2010-01-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.882},{"date":"2010-01-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.793},{"date":"2010-01-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.755},{"date":"2010-01-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.87},{"date":"2010-01-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.739},{"date":"2010-01-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.703},{"date":"2010-01-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.813},{"date":"2010-01-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.861},{"date":"2010-01-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.813},{"date":"2010-01-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.954},{"date":"2010-01-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.983},{"date":"2010-01-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.951},{"date":"2010-01-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.041},{"date":"2010-01-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.87},{"date":"2010-01-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.874},{"date":"2010-01-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.76},{"date":"2010-01-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.719},{"date":"2010-01-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.844},{"date":"2010-01-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.705},{"date":"2010-01-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.666},{"date":"2010-01-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.787},{"date":"2010-01-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.832},{"date":"2010-01-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.78},{"date":"2010-01-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.932},{"date":"2010-01-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.953},{"date":"2010-01-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.918},{"date":"2010-01-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.018},{"date":"2010-01-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.833},{"date":"2010-01-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.838},{"date":"2010-02-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.717},{"date":"2010-02-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.672},{"date":"2010-02-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.809},{"date":"2010-02-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.661},{"date":"2010-02-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.618},{"date":"2010-02-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.75},{"date":"2010-02-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.787},{"date":"2010-02-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.731},{"date":"2010-02-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.897},{"date":"2010-02-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.911},{"date":"2010-02-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.871},{"date":"2010-02-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.984},{"date":"2010-02-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.781},{"date":"2010-02-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.787},{"date":"2010-02-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.707},{"date":"2010-02-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.664},{"date":"2010-02-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.796},{"date":"2010-02-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.652},{"date":"2010-02-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.611},{"date":"2010-02-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.738},{"date":"2010-02-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.778},{"date":"2010-02-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.723},{"date":"2010-02-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.885},{"date":"2010-02-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.9},{"date":"2010-02-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.862},{"date":"2010-02-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.973},{"date":"2010-02-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.769},{"date":"2010-02-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.775},{"date":"2010-02-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.664},{"date":"2010-02-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.617},{"date":"2010-02-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.761},{"date":"2010-02-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.608},{"date":"2010-02-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.563},{"date":"2010-02-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.701},{"date":"2010-02-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.738},{"date":"2010-02-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.678},{"date":"2010-02-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.853},{"date":"2010-02-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.862},{"date":"2010-02-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.818},{"date":"2010-02-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.943},{"date":"2010-02-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.756},{"date":"2010-02-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.761},{"date":"2010-02-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.709},{"date":"2010-02-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.673},{"date":"2010-02-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.783},{"date":"2010-02-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.655},{"date":"2010-02-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.621},{"date":"2010-02-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.726},{"date":"2010-02-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.778},{"date":"2010-02-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.731},{"date":"2010-02-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.869},{"date":"2010-02-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.899},{"date":"2010-02-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.867},{"date":"2010-02-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.958},{"date":"2010-02-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.832},{"date":"2010-02-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.834},{"date":"2010-03-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.756},{"date":"2010-03-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.723},{"date":"2010-03-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.824},{"date":"2010-03-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.702},{"date":"2010-03-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.671},{"date":"2010-03-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.768},{"date":"2010-03-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.827},{"date":"2010-03-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.784},{"date":"2010-03-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.911},{"date":"2010-03-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.943},{"date":"2010-03-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.917},{"date":"2010-03-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.992},{"date":"2010-03-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.861},{"date":"2010-03-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.865},{"date":"2010-03-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.804},{"date":"2010-03-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.773},{"date":"2010-03-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.868},{"date":"2010-03-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.751},{"date":"2010-03-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.721},{"date":"2010-03-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.813},{"date":"2010-03-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.871},{"date":"2010-03-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.829},{"date":"2010-03-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.952},{"date":"2010-03-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.988},{"date":"2010-03-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.964},{"date":"2010-03-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.034},{"date":"2010-03-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.904},{"date":"2010-03-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.906},{"date":"2010-03-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.841},{"date":"2010-03-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.812},{"date":"2010-03-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.9},{"date":"2010-03-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.788},{"date":"2010-03-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.76},{"date":"2010-03-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.846},{"date":"2010-03-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.908},{"date":"2010-03-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.87},{"date":"2010-03-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.982},{"date":"2010-03-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.024},{"date":"2010-03-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.002},{"date":"2010-03-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.063},{"date":"2010-03-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.924},{"date":"2010-03-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.926},{"date":"2010-03-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.87},{"date":"2010-03-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.842},{"date":"2010-03-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.928},{"date":"2010-03-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.819},{"date":"2010-03-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.792},{"date":"2010-03-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.875},{"date":"2010-03-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.936},{"date":"2010-03-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.897},{"date":"2010-03-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.012},{"date":"2010-03-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.05},{"date":"2010-03-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.028},{"date":"2010-03-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.09},{"date":"2010-03-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.946},{"date":"2010-03-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.949},{"date":"2010-03-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.851},{"date":"2010-03-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.816},{"date":"2010-03-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.921},{"date":"2010-03-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.798},{"date":"2010-03-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.765},{"date":"2010-03-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.867},{"date":"2010-03-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.918},{"date":"2010-03-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.873},{"date":"2010-03-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.006},{"date":"2010-03-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.034},{"date":"2010-03-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.006},{"date":"2010-03-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.086},{"date":"2010-03-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.939},{"date":"2010-03-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.942},{"date":"2010-04-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.877},{"date":"2010-04-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.844},{"date":"2010-04-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.944},{"date":"2010-04-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.826},{"date":"2010-04-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.795},{"date":"2010-04-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.891},{"date":"2010-04-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.94},{"date":"2010-04-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.897},{"date":"2010-04-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.024},{"date":"2010-04-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.056},{"date":"2010-04-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.029},{"date":"2010-04-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.106},{"date":"2010-04-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.015},{"date":"2010-04-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.017},{"date":"2010-04-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.909},{"date":"2010-04-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.879},{"date":"2010-04-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.97},{"date":"2010-04-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.858},{"date":"2010-04-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.829},{"date":"2010-04-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.917},{"date":"2010-04-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.972},{"date":"2010-04-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.933},{"date":"2010-04-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.048},{"date":"2010-04-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.088},{"date":"2010-04-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.065},{"date":"2010-04-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.131},{"date":"2010-04-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.069},{"date":"2010-04-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.073},{"date":"2010-04-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.911},{"date":"2010-04-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.881},{"date":"2010-04-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.973},{"date":"2010-04-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.86},{"date":"2010-04-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.831},{"date":"2010-04-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.92},{"date":"2010-04-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.974},{"date":"2010-04-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.935},{"date":"2010-04-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.051},{"date":"2010-04-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.091},{"date":"2010-04-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.068},{"date":"2010-04-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.135},{"date":"2010-04-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.074},{"date":"2010-04-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.078},{"date":"2010-04-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.901},{"date":"2010-04-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.865},{"date":"2010-04-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.976},{"date":"2010-04-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.849},{"date":"2010-04-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.815},{"date":"2010-04-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.922},{"date":"2010-04-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.966},{"date":"2010-04-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.92},{"date":"2010-04-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.054},{"date":"2010-04-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.083},{"date":"2010-04-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.053},{"date":"2010-04-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.141},{"date":"2010-04-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.078},{"date":"2010-04-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.082},{"date":"2010-05-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.95},{"date":"2010-05-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.914},{"date":"2010-05-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.023},{"date":"2010-05-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.898},{"date":"2010-05-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.864},{"date":"2010-05-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.97},{"date":"2010-05-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.011},{"date":"2010-05-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.967},{"date":"2010-05-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.096},{"date":"2010-05-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.131},{"date":"2010-05-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.103},{"date":"2010-05-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.185},{"date":"2010-05-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.122},{"date":"2010-05-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.126},{"date":"2010-05-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.958},{"date":"2010-05-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.921},{"date":"2010-05-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.034},{"date":"2010-05-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.905},{"date":"2010-05-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.87},{"date":"2010-05-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.979},{"date":"2010-05-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.023},{"date":"2010-05-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.976},{"date":"2010-05-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.113},{"date":"2010-05-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.142},{"date":"2010-05-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.109},{"date":"2010-05-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.202},{"date":"2010-05-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.127},{"date":"2010-05-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.131},{"date":"2010-05-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.918},{"date":"2010-05-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.874},{"date":"2010-05-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.007},{"date":"2010-05-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.864},{"date":"2010-05-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.823},{"date":"2010-05-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.95},{"date":"2010-05-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.985},{"date":"2010-05-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.932},{"date":"2010-05-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.088},{"date":"2010-05-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.107},{"date":"2010-05-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.067},{"date":"2010-05-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.181},{"date":"2010-05-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.094},{"date":"2010-05-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.098},{"date":"2010-05-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.842},{"date":"2010-05-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.794},{"date":"2010-05-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.939},{"date":"2010-05-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.786},{"date":"2010-05-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.741},{"date":"2010-05-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.88},{"date":"2010-05-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.914},{"date":"2010-05-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.856},{"date":"2010-05-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.026},{"date":"2010-05-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.037},{"date":"2010-05-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.993},{"date":"2010-05-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.12},{"date":"2010-05-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.021},{"date":"2010-05-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.025},{"date":"2010-05-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.784},{"date":"2010-05-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.731},{"date":"2010-05-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.891},{"date":"2010-05-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.728},{"date":"2010-05-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.679},{"date":"2010-05-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.83},{"date":"2010-05-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.855},{"date":"2010-05-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.789},{"date":"2010-05-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.981},{"date":"2010-05-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.98},{"date":"2010-05-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.929},{"date":"2010-05-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.074},{"date":"2010-05-31","fuel":"diesel","grade":"all","formulation":"NA","price":2.98},{"date":"2010-05-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.983},{"date":"2010-06-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.78},{"date":"2010-06-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.725},{"date":"2010-06-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.892},{"date":"2010-06-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.725},{"date":"2010-06-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.674},{"date":"2010-06-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.831},{"date":"2010-06-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.849},{"date":"2010-06-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.778},{"date":"2010-06-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.986},{"date":"2010-06-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.972},{"date":"2010-06-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.917},{"date":"2010-06-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.075},{"date":"2010-06-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.946},{"date":"2010-06-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.949},{"date":"2010-06-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.756},{"date":"2010-06-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.703},{"date":"2010-06-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.864},{"date":"2010-06-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.701},{"date":"2010-06-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.652},{"date":"2010-06-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.803},{"date":"2010-06-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.825},{"date":"2010-06-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.756},{"date":"2010-06-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.958},{"date":"2010-06-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.947},{"date":"2010-06-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.894},{"date":"2010-06-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.047},{"date":"2010-06-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.928},{"date":"2010-06-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.93},{"date":"2010-06-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.795},{"date":"2010-06-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.745},{"date":"2010-06-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.898},{"date":"2010-06-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.743},{"date":"2010-06-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.696},{"date":"2010-06-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.84},{"date":"2010-06-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.861},{"date":"2010-06-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.794},{"date":"2010-06-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.989},{"date":"2010-06-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.98},{"date":"2010-06-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.931},{"date":"2010-06-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.071},{"date":"2010-06-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.961},{"date":"2010-06-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.962},{"date":"2010-06-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.809},{"date":"2010-06-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.76},{"date":"2010-06-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.91},{"date":"2010-06-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.757},{"date":"2010-06-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.712},{"date":"2010-06-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.852},{"date":"2010-06-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.873},{"date":"2010-06-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.807},{"date":"2010-06-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3},{"date":"2010-06-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.992},{"date":"2010-06-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.944},{"date":"2010-06-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.081},{"date":"2010-06-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.956},{"date":"2010-06-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.957},{"date":"2010-07-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.779},{"date":"2010-07-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.724},{"date":"2010-07-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.889},{"date":"2010-07-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.726},{"date":"2010-07-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.676},{"date":"2010-07-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.83},{"date":"2010-07-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.846},{"date":"2010-07-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.774},{"date":"2010-07-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.984},{"date":"2010-07-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.964},{"date":"2010-07-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.91},{"date":"2010-07-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.066},{"date":"2010-07-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.924},{"date":"2010-07-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.925},{"date":"2010-07-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.771},{"date":"2010-07-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.715},{"date":"2010-07-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.885},{"date":"2010-07-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.718},{"date":"2010-07-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.666},{"date":"2010-07-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.826},{"date":"2010-07-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.838},{"date":"2010-07-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.765},{"date":"2010-07-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.98},{"date":"2010-07-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.956},{"date":"2010-07-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.901},{"date":"2010-07-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.059},{"date":"2010-07-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.903},{"date":"2010-07-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.904},{"date":"2010-07-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.775},{"date":"2010-07-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.72},{"date":"2010-07-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.886},{"date":"2010-07-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.722},{"date":"2010-07-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.672},{"date":"2010-07-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.827},{"date":"2010-07-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.843},{"date":"2010-07-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.771},{"date":"2010-07-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.981},{"date":"2010-07-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.958},{"date":"2010-07-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.904},{"date":"2010-07-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.058},{"date":"2010-07-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.899},{"date":"2010-07-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.899},{"date":"2010-07-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.801},{"date":"2010-07-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.751},{"date":"2010-07-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.901},{"date":"2010-07-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.749},{"date":"2010-07-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.703},{"date":"2010-07-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.843},{"date":"2010-07-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.867},{"date":"2010-07-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.801},{"date":"2010-07-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.995},{"date":"2010-07-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.982},{"date":"2010-07-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.933},{"date":"2010-07-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.072},{"date":"2010-07-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.919},{"date":"2010-07-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.919},{"date":"2010-08-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.788},{"date":"2010-08-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.736},{"date":"2010-08-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.894},{"date":"2010-08-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.735},{"date":"2010-08-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.687},{"date":"2010-08-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.836},{"date":"2010-08-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.856},{"date":"2010-08-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.788},{"date":"2010-08-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.988},{"date":"2010-08-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.973},{"date":"2010-08-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.922},{"date":"2010-08-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.067},{"date":"2010-08-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.928},{"date":"2010-08-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.928},{"date":"2010-08-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.835},{"date":"2010-08-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.789},{"date":"2010-08-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.929},{"date":"2010-08-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.783},{"date":"2010-08-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.74},{"date":"2010-08-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.873},{"date":"2010-08-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.903},{"date":"2010-08-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.842},{"date":"2010-08-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.021},{"date":"2010-08-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.016},{"date":"2010-08-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.973},{"date":"2010-08-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.095},{"date":"2010-08-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.991},{"date":"2010-08-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.991},{"date":"2010-08-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.798},{"date":"2010-08-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.746},{"date":"2010-08-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.904},{"date":"2010-08-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.745},{"date":"2010-08-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.696},{"date":"2010-08-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.847},{"date":"2010-08-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.869},{"date":"2010-08-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.802},{"date":"2010-08-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3},{"date":"2010-08-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.982},{"date":"2010-08-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.933},{"date":"2010-08-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.073},{"date":"2010-08-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.979},{"date":"2010-08-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.979},{"date":"2010-08-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.759},{"date":"2010-08-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.703},{"date":"2010-08-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.872},{"date":"2010-08-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.704},{"date":"2010-08-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.653},{"date":"2010-08-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.812},{"date":"2010-08-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.831},{"date":"2010-08-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.758},{"date":"2010-08-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.972},{"date":"2010-08-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.945},{"date":"2010-08-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.891},{"date":"2010-08-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.046},{"date":"2010-08-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.957},{"date":"2010-08-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.957},{"date":"2010-08-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.736},{"date":"2010-08-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.69},{"date":"2010-08-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.831},{"date":"2010-08-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.682},{"date":"2010-08-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.64},{"date":"2010-08-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.771},{"date":"2010-08-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.806},{"date":"2010-08-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.743},{"date":"2010-08-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.93},{"date":"2010-08-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.922},{"date":"2010-08-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.875},{"date":"2010-08-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.009},{"date":"2010-08-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.938},{"date":"2010-08-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.938},{"date":"2010-09-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.735},{"date":"2010-09-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.695},{"date":"2010-09-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.815},{"date":"2010-09-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.682},{"date":"2010-09-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.647},{"date":"2010-09-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.755},{"date":"2010-09-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.803},{"date":"2010-09-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.748},{"date":"2010-09-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.911},{"date":"2010-09-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.917},{"date":"2010-09-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.877},{"date":"2010-09-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.992},{"date":"2010-09-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.931},{"date":"2010-09-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.931},{"date":"2010-09-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.772},{"date":"2010-09-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.742},{"date":"2010-09-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.834},{"date":"2010-09-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.721},{"date":"2010-09-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.695},{"date":"2010-09-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.776},{"date":"2010-09-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.836},{"date":"2010-09-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.79},{"date":"2010-09-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.926},{"date":"2010-09-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.95},{"date":"2010-09-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.92},{"date":"2010-09-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.006},{"date":"2010-09-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.943},{"date":"2010-09-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.943},{"date":"2010-09-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.775},{"date":"2010-09-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.751},{"date":"2010-09-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.824},{"date":"2010-09-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.723},{"date":"2010-09-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.703},{"date":"2010-09-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.766},{"date":"2010-09-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.844},{"date":"2010-09-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.806},{"date":"2010-09-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.917},{"date":"2010-09-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.954},{"date":"2010-09-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.931},{"date":"2010-09-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.999},{"date":"2010-09-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.96},{"date":"2010-09-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.96},{"date":"2010-09-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.747},{"date":"2010-09-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.718},{"date":"2010-09-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.807},{"date":"2010-09-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.694},{"date":"2010-09-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.668},{"date":"2010-09-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.747},{"date":"2010-09-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.818},{"date":"2010-09-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.775},{"date":"2010-09-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.9},{"date":"2010-09-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.932},{"date":"2010-09-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.903},{"date":"2010-09-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.985},{"date":"2010-09-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.951},{"date":"2010-09-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.951},{"date":"2010-10-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.784},{"date":"2010-10-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.754},{"date":"2010-10-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.845},{"date":"2010-10-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.732},{"date":"2010-10-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.705},{"date":"2010-10-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.787},{"date":"2010-10-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.85},{"date":"2010-10-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.807},{"date":"2010-10-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.933},{"date":"2010-10-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.966},{"date":"2010-10-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.938},{"date":"2010-10-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.019},{"date":"2010-10-04","fuel":"diesel","grade":"all","formulation":"NA","price":3},{"date":"2010-10-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3},{"date":"2010-10-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.871},{"date":"2010-10-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.842},{"date":"2010-10-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.929},{"date":"2010-10-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.819},{"date":"2010-10-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.793},{"date":"2010-10-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.873},{"date":"2010-10-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.934},{"date":"2010-10-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.894},{"date":"2010-10-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.011},{"date":"2010-10-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.053},{"date":"2010-10-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.029},{"date":"2010-10-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.097},{"date":"2010-10-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.066},{"date":"2010-10-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.066},{"date":"2010-10-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.887},{"date":"2010-10-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.845},{"date":"2010-10-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.972},{"date":"2010-10-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.834},{"date":"2010-10-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.795},{"date":"2010-10-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.917},{"date":"2010-10-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.953},{"date":"2010-10-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.9},{"date":"2010-10-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.056},{"date":"2010-10-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.071},{"date":"2010-10-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.034},{"date":"2010-10-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.14},{"date":"2010-10-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.073},{"date":"2010-10-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.073},{"date":"2010-10-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.87},{"date":"2010-10-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.823},{"date":"2010-10-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.966},{"date":"2010-10-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.817},{"date":"2010-10-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.772},{"date":"2010-10-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.909},{"date":"2010-10-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.938},{"date":"2010-10-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.879},{"date":"2010-10-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.053},{"date":"2010-10-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.058},{"date":"2010-10-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.014},{"date":"2010-10-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.139},{"date":"2010-10-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.067},{"date":"2010-10-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.067},{"date":"2010-11-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.861},{"date":"2010-11-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.811},{"date":"2010-11-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.962},{"date":"2010-11-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.806},{"date":"2010-11-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.76},{"date":"2010-11-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.903},{"date":"2010-11-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.929},{"date":"2010-11-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.867},{"date":"2010-11-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.05},{"date":"2010-11-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.051},{"date":"2010-11-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.004},{"date":"2010-11-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.139},{"date":"2010-11-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.067},{"date":"2010-11-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.067},{"date":"2010-11-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.917},{"date":"2010-11-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.881},{"date":"2010-11-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.99},{"date":"2010-11-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.865},{"date":"2010-11-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.832},{"date":"2010-11-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.934},{"date":"2010-11-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.979},{"date":"2010-11-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.931},{"date":"2010-11-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.073},{"date":"2010-11-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.102},{"date":"2010-11-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.069},{"date":"2010-11-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.161},{"date":"2010-11-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.116},{"date":"2010-11-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.116},{"date":"2010-11-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.944},{"date":"2010-11-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.899},{"date":"2010-11-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.035},{"date":"2010-11-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.892},{"date":"2010-11-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.849},{"date":"2010-11-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.98},{"date":"2010-11-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.007},{"date":"2010-11-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.952},{"date":"2010-11-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.115},{"date":"2010-11-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.13},{"date":"2010-11-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.089},{"date":"2010-11-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.205},{"date":"2010-11-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.184},{"date":"2010-11-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.184},{"date":"2010-11-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.931},{"date":"2010-11-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.88},{"date":"2010-11-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.037},{"date":"2010-11-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.876},{"date":"2010-11-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.828},{"date":"2010-11-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.979},{"date":"2010-11-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.999},{"date":"2010-11-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.937},{"date":"2010-11-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.119},{"date":"2010-11-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.124},{"date":"2010-11-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.075},{"date":"2010-11-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.215},{"date":"2010-11-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.171},{"date":"2010-11-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.171},{"date":"2010-11-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.912},{"date":"2010-11-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.858},{"date":"2010-11-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.022},{"date":"2010-11-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.856},{"date":"2010-11-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.805},{"date":"2010-11-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.963},{"date":"2010-11-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.982},{"date":"2010-11-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.917},{"date":"2010-11-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.107},{"date":"2010-11-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.108},{"date":"2010-11-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.056},{"date":"2010-11-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.205},{"date":"2010-11-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.162},{"date":"2010-11-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.162},{"date":"2010-12-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.013},{"date":"2010-12-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.97},{"date":"2010-12-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.101},{"date":"2010-12-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.958},{"date":"2010-12-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.917},{"date":"2010-12-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.045},{"date":"2010-12-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.079},{"date":"2010-12-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.027},{"date":"2010-12-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.181},{"date":"2010-12-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.207},{"date":"2010-12-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.169},{"date":"2010-12-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.277},{"date":"2010-12-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.197},{"date":"2010-12-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.197},{"date":"2010-12-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.035},{"date":"2010-12-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.99},{"date":"2010-12-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.126},{"date":"2010-12-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.98},{"date":"2010-12-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.937},{"date":"2010-12-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.07},{"date":"2010-12-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.101},{"date":"2010-12-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.047},{"date":"2010-12-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.204},{"date":"2010-12-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.227},{"date":"2010-12-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.189},{"date":"2010-12-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.299},{"date":"2010-12-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.231},{"date":"2010-12-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.231},{"date":"2010-12-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.037},{"date":"2010-12-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.987},{"date":"2010-12-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.14},{"date":"2010-12-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.982},{"date":"2010-12-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.934},{"date":"2010-12-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.084},{"date":"2010-12-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.104},{"date":"2010-12-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.046},{"date":"2010-12-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.217},{"date":"2010-12-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.231},{"date":"2010-12-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.188},{"date":"2010-12-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.313},{"date":"2010-12-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.248},{"date":"2010-12-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.248},{"date":"2010-12-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.106},{"date":"2010-12-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.067},{"date":"2010-12-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.185},{"date":"2010-12-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.052},{"date":"2010-12-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.015},{"date":"2010-12-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.13},{"date":"2010-12-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.171},{"date":"2010-12-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.124},{"date":"2010-12-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.262},{"date":"2010-12-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.296},{"date":"2010-12-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.264},{"date":"2010-12-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.354},{"date":"2010-12-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.294},{"date":"2010-12-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.294},{"date":"2011-01-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.124},{"date":"2011-01-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.086},{"date":"2011-01-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.201},{"date":"2011-01-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.07},{"date":"2011-01-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.034},{"date":"2011-01-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.146},{"date":"2011-01-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.188},{"date":"2011-01-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.142},{"date":"2011-01-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.278},{"date":"2011-01-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.314},{"date":"2011-01-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.283},{"date":"2011-01-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.372},{"date":"2011-01-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.331},{"date":"2011-01-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.331},{"date":"2011-01-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.142},{"date":"2011-01-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.103},{"date":"2011-01-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.221},{"date":"2011-01-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.089},{"date":"2011-01-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.052},{"date":"2011-01-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.166},{"date":"2011-01-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.204},{"date":"2011-01-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.157},{"date":"2011-01-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.297},{"date":"2011-01-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.33},{"date":"2011-01-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.298},{"date":"2011-01-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.391},{"date":"2011-01-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.333},{"date":"2011-01-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.333},{"date":"2011-01-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.158},{"date":"2011-01-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.12},{"date":"2011-01-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.235},{"date":"2011-01-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.104},{"date":"2011-01-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.068},{"date":"2011-01-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.179},{"date":"2011-01-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.222},{"date":"2011-01-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.174},{"date":"2011-01-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.313},{"date":"2011-01-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.347},{"date":"2011-01-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.316},{"date":"2011-01-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.406},{"date":"2011-01-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.407},{"date":"2011-01-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.407},{"date":"2011-01-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.163},{"date":"2011-01-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.125},{"date":"2011-01-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.241},{"date":"2011-01-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.11},{"date":"2011-01-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.074},{"date":"2011-01-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.186},{"date":"2011-01-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.227},{"date":"2011-01-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.18},{"date":"2011-01-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.318},{"date":"2011-01-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.353},{"date":"2011-01-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.322},{"date":"2011-01-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.412},{"date":"2011-01-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.43},{"date":"2011-01-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.43},{"date":"2011-01-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.155},{"date":"2011-01-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.113},{"date":"2011-01-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.241},{"date":"2011-01-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.101},{"date":"2011-01-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.061},{"date":"2011-01-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.186},{"date":"2011-01-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.221},{"date":"2011-01-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.169},{"date":"2011-01-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.321},{"date":"2011-01-31","fuel":"gasoline","grade":"premium","formulation":"all","price":3.345},{"date":"2011-01-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.308},{"date":"2011-01-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.413},{"date":"2011-01-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.438},{"date":"2011-01-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.438},{"date":"2011-02-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.185},{"date":"2011-02-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.145},{"date":"2011-02-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.266},{"date":"2011-02-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.132},{"date":"2011-02-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.094},{"date":"2011-02-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.211},{"date":"2011-02-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.251},{"date":"2011-02-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.202},{"date":"2011-02-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.345},{"date":"2011-02-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.371},{"date":"2011-02-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.338},{"date":"2011-02-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.434},{"date":"2011-02-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.513},{"date":"2011-02-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.513},{"date":"2011-02-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.193},{"date":"2011-02-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.147},{"date":"2011-02-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.288},{"date":"2011-02-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.14},{"date":"2011-02-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.095},{"date":"2011-02-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.233},{"date":"2011-02-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.259},{"date":"2011-02-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.203},{"date":"2011-02-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.368},{"date":"2011-02-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.382},{"date":"2011-02-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.343},{"date":"2011-02-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.455},{"date":"2011-02-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.534},{"date":"2011-02-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.534},{"date":"2011-02-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.243},{"date":"2011-02-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.193},{"date":"2011-02-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.345},{"date":"2011-02-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.189},{"date":"2011-02-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.141},{"date":"2011-02-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.29},{"date":"2011-02-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.311},{"date":"2011-02-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.251},{"date":"2011-02-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.428},{"date":"2011-02-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.428},{"date":"2011-02-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.384},{"date":"2011-02-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.511},{"date":"2011-02-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.573},{"date":"2011-02-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.573},{"date":"2011-02-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.435},{"date":"2011-02-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.392},{"date":"2011-02-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.523},{"date":"2011-02-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.383},{"date":"2011-02-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.341},{"date":"2011-02-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.471},{"date":"2011-02-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.499},{"date":"2011-02-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.446},{"date":"2011-02-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.603},{"date":"2011-02-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.62},{"date":"2011-02-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.587},{"date":"2011-02-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.683},{"date":"2011-02-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.716},{"date":"2011-02-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.716},{"date":"2011-03-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.572},{"date":"2011-03-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.524},{"date":"2011-03-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.671},{"date":"2011-03-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.52},{"date":"2011-03-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.473},{"date":"2011-03-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.617},{"date":"2011-03-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.636},{"date":"2011-03-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.576},{"date":"2011-03-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.753},{"date":"2011-03-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.758},{"date":"2011-03-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.717},{"date":"2011-03-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.834},{"date":"2011-03-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.871},{"date":"2011-03-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.871},{"date":"2011-03-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.621},{"date":"2011-03-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.569},{"date":"2011-03-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.726},{"date":"2011-03-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.567},{"date":"2011-03-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.517},{"date":"2011-03-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.671},{"date":"2011-03-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.69},{"date":"2011-03-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.626},{"date":"2011-03-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.813},{"date":"2011-03-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.809},{"date":"2011-03-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.768},{"date":"2011-03-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.887},{"date":"2011-03-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.908},{"date":"2011-03-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.908},{"date":"2011-03-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.617},{"date":"2011-03-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.56},{"date":"2011-03-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.732},{"date":"2011-03-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.562},{"date":"2011-03-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.507},{"date":"2011-03-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.678},{"date":"2011-03-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.686},{"date":"2011-03-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.617},{"date":"2011-03-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.819},{"date":"2011-03-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.806},{"date":"2011-03-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.759},{"date":"2011-03-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.893},{"date":"2011-03-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.907},{"date":"2011-03-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.907},{"date":"2011-03-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.65},{"date":"2011-03-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.59},{"date":"2011-03-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.771},{"date":"2011-03-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.596},{"date":"2011-03-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.538},{"date":"2011-03-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.719},{"date":"2011-03-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.718},{"date":"2011-03-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.647},{"date":"2011-03-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.857},{"date":"2011-03-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.836},{"date":"2011-03-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.787},{"date":"2011-03-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.925},{"date":"2011-03-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.932},{"date":"2011-03-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.932},{"date":"2011-04-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.737},{"date":"2011-04-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.686},{"date":"2011-04-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.84},{"date":"2011-04-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.684},{"date":"2011-04-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.635},{"date":"2011-04-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.786},{"date":"2011-04-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.801},{"date":"2011-04-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.737},{"date":"2011-04-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.925},{"date":"2011-04-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.921},{"date":"2011-04-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.88},{"date":"2011-04-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.998},{"date":"2011-04-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.976},{"date":"2011-04-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.976},{"date":"2011-04-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.843},{"date":"2011-04-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.793},{"date":"2011-04-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.947},{"date":"2011-04-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.791},{"date":"2011-04-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.743},{"date":"2011-04-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.893},{"date":"2011-04-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.907},{"date":"2011-04-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.842},{"date":"2011-04-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.032},{"date":"2011-04-11","fuel":"gasoline","grade":"premium","formulation":"all","price":4.027},{"date":"2011-04-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.985},{"date":"2011-04-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.105},{"date":"2011-04-11","fuel":"diesel","grade":"all","formulation":"NA","price":4.078},{"date":"2011-04-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.078},{"date":"2011-04-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.896},{"date":"2011-04-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.837},{"date":"2011-04-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.017},{"date":"2011-04-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.844},{"date":"2011-04-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.787},{"date":"2011-04-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.964},{"date":"2011-04-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.96},{"date":"2011-04-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.887},{"date":"2011-04-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.101},{"date":"2011-04-18","fuel":"gasoline","grade":"premium","formulation":"all","price":4.08},{"date":"2011-04-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.029},{"date":"2011-04-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.177},{"date":"2011-04-18","fuel":"diesel","grade":"all","formulation":"NA","price":4.105},{"date":"2011-04-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.105},{"date":"2011-04-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.932},{"date":"2011-04-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.867},{"date":"2011-04-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.064},{"date":"2011-04-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.879},{"date":"2011-04-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.817},{"date":"2011-04-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.011},{"date":"2011-04-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.994},{"date":"2011-04-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.916},{"date":"2011-04-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.143},{"date":"2011-04-25","fuel":"gasoline","grade":"premium","formulation":"all","price":4.117},{"date":"2011-04-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.059},{"date":"2011-04-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.225},{"date":"2011-04-25","fuel":"diesel","grade":"all","formulation":"NA","price":4.098},{"date":"2011-04-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.098},{"date":"2011-05-02","fuel":"gasoline","grade":"all","formulation":"all","price":4.014},{"date":"2011-05-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.955},{"date":"2011-05-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.134},{"date":"2011-05-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.963},{"date":"2011-05-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.906},{"date":"2011-05-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.081},{"date":"2011-05-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.075},{"date":"2011-05-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.004},{"date":"2011-05-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.212},{"date":"2011-05-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.198},{"date":"2011-05-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.144},{"date":"2011-05-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.297},{"date":"2011-05-02","fuel":"diesel","grade":"all","formulation":"NA","price":4.124},{"date":"2011-05-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.124},{"date":"2011-05-09","fuel":"gasoline","grade":"all","formulation":"all","price":4.018},{"date":"2011-05-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.957},{"date":"2011-05-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.142},{"date":"2011-05-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.965},{"date":"2011-05-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.907},{"date":"2011-05-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.087},{"date":"2011-05-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.081},{"date":"2011-05-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.009},{"date":"2011-05-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.221},{"date":"2011-05-09","fuel":"gasoline","grade":"premium","formulation":"all","price":4.206},{"date":"2011-05-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.15},{"date":"2011-05-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.31},{"date":"2011-05-09","fuel":"diesel","grade":"all","formulation":"NA","price":4.104},{"date":"2011-05-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.104},{"date":"2011-05-16","fuel":"gasoline","grade":"all","formulation":"all","price":4.014},{"date":"2011-05-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.956},{"date":"2011-05-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.132},{"date":"2011-05-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.96},{"date":"2011-05-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.905},{"date":"2011-05-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.076},{"date":"2011-05-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.079},{"date":"2011-05-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.01},{"date":"2011-05-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.213},{"date":"2011-05-16","fuel":"gasoline","grade":"premium","formulation":"all","price":4.204},{"date":"2011-05-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.15},{"date":"2011-05-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.305},{"date":"2011-05-16","fuel":"diesel","grade":"all","formulation":"NA","price":4.061},{"date":"2011-05-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.061},{"date":"2011-05-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.904},{"date":"2011-05-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.84},{"date":"2011-05-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.035},{"date":"2011-05-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.849},{"date":"2011-05-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.788},{"date":"2011-05-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.976},{"date":"2011-05-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.975},{"date":"2011-05-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.9},{"date":"2011-05-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.12},{"date":"2011-05-23","fuel":"gasoline","grade":"premium","formulation":"all","price":4.1},{"date":"2011-05-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.036},{"date":"2011-05-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.218},{"date":"2011-05-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.997},{"date":"2011-05-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.997},{"date":"2011-05-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.848},{"date":"2011-05-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.791},{"date":"2011-05-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.965},{"date":"2011-05-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.794},{"date":"2011-05-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.741},{"date":"2011-05-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.905},{"date":"2011-05-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.914},{"date":"2011-05-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.842},{"date":"2011-05-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.053},{"date":"2011-05-30","fuel":"gasoline","grade":"premium","formulation":"all","price":4.041},{"date":"2011-05-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.981},{"date":"2011-05-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.15},{"date":"2011-05-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.948},{"date":"2011-05-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.948},{"date":"2011-06-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.833},{"date":"2011-06-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.785},{"date":"2011-06-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.929},{"date":"2011-06-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.781},{"date":"2011-06-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.738},{"date":"2011-06-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.87},{"date":"2011-06-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.891},{"date":"2011-06-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.827},{"date":"2011-06-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.014},{"date":"2011-06-06","fuel":"gasoline","grade":"premium","formulation":"all","price":4.02},{"date":"2011-06-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.97},{"date":"2011-06-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.112},{"date":"2011-06-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.94},{"date":"2011-06-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.94},{"date":"2011-06-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.767},{"date":"2011-06-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.713},{"date":"2011-06-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.877},{"date":"2011-06-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.713},{"date":"2011-06-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.664},{"date":"2011-06-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.816},{"date":"2011-06-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.829},{"date":"2011-06-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.761},{"date":"2011-06-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.961},{"date":"2011-06-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.958},{"date":"2011-06-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.902},{"date":"2011-06-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.063},{"date":"2011-06-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.954},{"date":"2011-06-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.954},{"date":"2011-06-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.708},{"date":"2011-06-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.647},{"date":"2011-06-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.831},{"date":"2011-06-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.652},{"date":"2011-06-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.597},{"date":"2011-06-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.769},{"date":"2011-06-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.776},{"date":"2011-06-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.702},{"date":"2011-06-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.919},{"date":"2011-06-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.904},{"date":"2011-06-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.84},{"date":"2011-06-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.022},{"date":"2011-06-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.95},{"date":"2011-06-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.95},{"date":"2011-06-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.631},{"date":"2011-06-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.565},{"date":"2011-06-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.765},{"date":"2011-06-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.574},{"date":"2011-06-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.513},{"date":"2011-06-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.702},{"date":"2011-06-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.7},{"date":"2011-06-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.621},{"date":"2011-06-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.852},{"date":"2011-06-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.833},{"date":"2011-06-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.764},{"date":"2011-06-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.959},{"date":"2011-06-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.888},{"date":"2011-06-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.888},{"date":"2011-07-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.634},{"date":"2011-07-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.584},{"date":"2011-07-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.736},{"date":"2011-07-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.579},{"date":"2011-07-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.534},{"date":"2011-07-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.674},{"date":"2011-07-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.699},{"date":"2011-07-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.635},{"date":"2011-07-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.822},{"date":"2011-07-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.829},{"date":"2011-07-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.775},{"date":"2011-07-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.929},{"date":"2011-07-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.85},{"date":"2011-07-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.85},{"date":"2011-07-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.695},{"date":"2011-07-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.658},{"date":"2011-07-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.771},{"date":"2011-07-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.641},{"date":"2011-07-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.608},{"date":"2011-07-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.71},{"date":"2011-07-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.756},{"date":"2011-07-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.707},{"date":"2011-07-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.851},{"date":"2011-07-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.889},{"date":"2011-07-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.851},{"date":"2011-07-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.96},{"date":"2011-07-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.899},{"date":"2011-07-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.899},{"date":"2011-07-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.736},{"date":"2011-07-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.699},{"date":"2011-07-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.812},{"date":"2011-07-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.682},{"date":"2011-07-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.648},{"date":"2011-07-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.753},{"date":"2011-07-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.796},{"date":"2011-07-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.75},{"date":"2011-07-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.885},{"date":"2011-07-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.932},{"date":"2011-07-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.896},{"date":"2011-07-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.998},{"date":"2011-07-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.923},{"date":"2011-07-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.923},{"date":"2011-07-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.754},{"date":"2011-07-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.72},{"date":"2011-07-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.824},{"date":"2011-07-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.699},{"date":"2011-07-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.667},{"date":"2011-07-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.766},{"date":"2011-07-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.819},{"date":"2011-07-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.777},{"date":"2011-07-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.899},{"date":"2011-07-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.951},{"date":"2011-07-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.919},{"date":"2011-07-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.01},{"date":"2011-07-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.949},{"date":"2011-07-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.949},{"date":"2011-08-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.766},{"date":"2011-08-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.737},{"date":"2011-08-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.826},{"date":"2011-08-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.711},{"date":"2011-08-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.684},{"date":"2011-08-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.768},{"date":"2011-08-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.829},{"date":"2011-08-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.792},{"date":"2011-08-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.9},{"date":"2011-08-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.963},{"date":"2011-08-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.937},{"date":"2011-08-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.013},{"date":"2011-08-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.937},{"date":"2011-08-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.937},{"date":"2011-08-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.73},{"date":"2011-08-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.698},{"date":"2011-08-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.794},{"date":"2011-08-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.674},{"date":"2011-08-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.646},{"date":"2011-08-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.733},{"date":"2011-08-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.794},{"date":"2011-08-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.753},{"date":"2011-08-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.872},{"date":"2011-08-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.927},{"date":"2011-08-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.895},{"date":"2011-08-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.985},{"date":"2011-08-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.897},{"date":"2011-08-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.897},{"date":"2011-08-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.662},{"date":"2011-08-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.629},{"date":"2011-08-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.727},{"date":"2011-08-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.604},{"date":"2011-08-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.576},{"date":"2011-08-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.664},{"date":"2011-08-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.728},{"date":"2011-08-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.686},{"date":"2011-08-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.81},{"date":"2011-08-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.865},{"date":"2011-08-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.832},{"date":"2011-08-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.927},{"date":"2011-08-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.835},{"date":"2011-08-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.835},{"date":"2011-08-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.638},{"date":"2011-08-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.605},{"date":"2011-08-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.705},{"date":"2011-08-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.581},{"date":"2011-08-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.552},{"date":"2011-08-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.641},{"date":"2011-08-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.703},{"date":"2011-08-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.658},{"date":"2011-08-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.791},{"date":"2011-08-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.839},{"date":"2011-08-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.804},{"date":"2011-08-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.904},{"date":"2011-08-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.81},{"date":"2011-08-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.81},{"date":"2011-08-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.682},{"date":"2011-08-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.651},{"date":"2011-08-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.744},{"date":"2011-08-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.627},{"date":"2011-08-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.601},{"date":"2011-08-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.683},{"date":"2011-08-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.746},{"date":"2011-08-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.703},{"date":"2011-08-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.828},{"date":"2011-08-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.874},{"date":"2011-08-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.842},{"date":"2011-08-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.933},{"date":"2011-08-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.82},{"date":"2011-08-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.82},{"date":"2011-09-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.727},{"date":"2011-09-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.692},{"date":"2011-09-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.8},{"date":"2011-09-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.674},{"date":"2011-09-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.643},{"date":"2011-09-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.741},{"date":"2011-09-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.791},{"date":"2011-09-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.742},{"date":"2011-09-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.885},{"date":"2011-09-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.914},{"date":"2011-09-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.878},{"date":"2011-09-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.98},{"date":"2011-09-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.868},{"date":"2011-09-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.868},{"date":"2011-09-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.715},{"date":"2011-09-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.678},{"date":"2011-09-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.79},{"date":"2011-09-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.661},{"date":"2011-09-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.629},{"date":"2011-09-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.729},{"date":"2011-09-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.78},{"date":"2011-09-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.728},{"date":"2011-09-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.881},{"date":"2011-09-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.904},{"date":"2011-09-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.866},{"date":"2011-09-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.974},{"date":"2011-09-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.862},{"date":"2011-09-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.862},{"date":"2011-09-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.657},{"date":"2011-09-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.611},{"date":"2011-09-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.751},{"date":"2011-09-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.601},{"date":"2011-09-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.56},{"date":"2011-09-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.688},{"date":"2011-09-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.727},{"date":"2011-09-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.666},{"date":"2011-09-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.846},{"date":"2011-09-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.853},{"date":"2011-09-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.805},{"date":"2011-09-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.941},{"date":"2011-09-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.833},{"date":"2011-09-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.833},{"date":"2011-09-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.568},{"date":"2011-09-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.514},{"date":"2011-09-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.677},{"date":"2011-09-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.509},{"date":"2011-09-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.461},{"date":"2011-09-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.612},{"date":"2011-09-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.642},{"date":"2011-09-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.573},{"date":"2011-09-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.775},{"date":"2011-09-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.77},{"date":"2011-09-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.716},{"date":"2011-09-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.871},{"date":"2011-09-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.786},{"date":"2011-09-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.786},{"date":"2011-10-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.492},{"date":"2011-10-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.435},{"date":"2011-10-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.609},{"date":"2011-10-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.433},{"date":"2011-10-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.381},{"date":"2011-10-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.543},{"date":"2011-10-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.569},{"date":"2011-10-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.495},{"date":"2011-10-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.711},{"date":"2011-10-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.698},{"date":"2011-10-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.64},{"date":"2011-10-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.806},{"date":"2011-10-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.749},{"date":"2011-10-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.749},{"date":"2011-10-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.476},{"date":"2011-10-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.422},{"date":"2011-10-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.584},{"date":"2011-10-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.417},{"date":"2011-10-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.368},{"date":"2011-10-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.52},{"date":"2011-10-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.551},{"date":"2011-10-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.481},{"date":"2011-10-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.685},{"date":"2011-10-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.679},{"date":"2011-10-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.627},{"date":"2011-10-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.777},{"date":"2011-10-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.721},{"date":"2011-10-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.721},{"date":"2011-10-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.533},{"date":"2011-10-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.484},{"date":"2011-10-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.632},{"date":"2011-10-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.476},{"date":"2011-10-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.431},{"date":"2011-10-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.571},{"date":"2011-10-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.604},{"date":"2011-10-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.54},{"date":"2011-10-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.728},{"date":"2011-10-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.73},{"date":"2011-10-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.683},{"date":"2011-10-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.818},{"date":"2011-10-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.801},{"date":"2011-10-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.801},{"date":"2011-10-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.52},{"date":"2011-10-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.469},{"date":"2011-10-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.623},{"date":"2011-10-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.462},{"date":"2011-10-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.415},{"date":"2011-10-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.56},{"date":"2011-10-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.594},{"date":"2011-10-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.529},{"date":"2011-10-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.721},{"date":"2011-10-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.721},{"date":"2011-10-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.673},{"date":"2011-10-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.811},{"date":"2011-10-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.825},{"date":"2011-10-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.825},{"date":"2011-10-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.511},{"date":"2011-10-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.46},{"date":"2011-10-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.614},{"date":"2011-10-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.452},{"date":"2011-10-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.405},{"date":"2011-10-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.551},{"date":"2011-10-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.587},{"date":"2011-10-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.52},{"date":"2011-10-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.714},{"date":"2011-10-31","fuel":"gasoline","grade":"premium","formulation":"all","price":3.713},{"date":"2011-10-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.664},{"date":"2011-10-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.803},{"date":"2011-10-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.892},{"date":"2011-10-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.892},{"date":"2011-11-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.482},{"date":"2011-11-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.424},{"date":"2011-11-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.599},{"date":"2011-11-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.424},{"date":"2011-11-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.37},{"date":"2011-11-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.535},{"date":"2011-11-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.558},{"date":"2011-11-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.483},{"date":"2011-11-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.701},{"date":"2011-11-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.683},{"date":"2011-11-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.627},{"date":"2011-11-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.788},{"date":"2011-11-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.887},{"date":"2011-11-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.887},{"date":"2011-11-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.495},{"date":"2011-11-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.442},{"date":"2011-11-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.602},{"date":"2011-11-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.436},{"date":"2011-11-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.388},{"date":"2011-11-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.538},{"date":"2011-11-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.571},{"date":"2011-11-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.502},{"date":"2011-11-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.703},{"date":"2011-11-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.697},{"date":"2011-11-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.647},{"date":"2011-11-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.792},{"date":"2011-11-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.987},{"date":"2011-11-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.987},{"date":"2011-11-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.427},{"date":"2011-11-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.367},{"date":"2011-11-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.55},{"date":"2011-11-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.368},{"date":"2011-11-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.312},{"date":"2011-11-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.485},{"date":"2011-11-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.503},{"date":"2011-11-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.426},{"date":"2011-11-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.652},{"date":"2011-11-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.634},{"date":"2011-11-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.576},{"date":"2011-11-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.741},{"date":"2011-11-21","fuel":"diesel","grade":"all","formulation":"NA","price":4.01},{"date":"2011-11-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.01},{"date":"2011-11-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.368},{"date":"2011-11-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.305},{"date":"2011-11-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.496},{"date":"2011-11-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.307},{"date":"2011-11-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.248},{"date":"2011-11-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.43},{"date":"2011-11-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.447},{"date":"2011-11-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.367},{"date":"2011-11-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.601},{"date":"2011-11-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.581},{"date":"2011-11-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.52},{"date":"2011-11-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.694},{"date":"2011-11-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.964},{"date":"2011-11-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.964},{"date":"2011-12-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.35},{"date":"2011-12-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.296},{"date":"2011-12-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.46},{"date":"2011-12-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.29},{"date":"2011-12-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.24},{"date":"2011-12-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.395},{"date":"2011-12-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.426},{"date":"2011-12-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.355},{"date":"2011-12-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.562},{"date":"2011-12-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.56},{"date":"2011-12-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.508},{"date":"2011-12-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.656},{"date":"2011-12-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.931},{"date":"2011-12-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.931},{"date":"2011-12-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.346},{"date":"2011-12-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.301},{"date":"2011-12-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.437},{"date":"2011-12-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.286},{"date":"2011-12-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.244},{"date":"2011-12-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.372},{"date":"2011-12-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.421},{"date":"2011-12-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.362},{"date":"2011-12-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.537},{"date":"2011-12-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.554},{"date":"2011-12-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.512},{"date":"2011-12-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.633},{"date":"2011-12-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.894},{"date":"2011-12-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.894},{"date":"2011-12-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.29},{"date":"2011-12-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.242},{"date":"2011-12-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.39},{"date":"2011-12-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.229},{"date":"2011-12-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.183},{"date":"2011-12-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.325},{"date":"2011-12-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.368},{"date":"2011-12-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.306},{"date":"2011-12-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.489},{"date":"2011-12-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.504},{"date":"2011-12-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.46},{"date":"2011-12-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.587},{"date":"2011-12-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.828},{"date":"2011-12-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.828},{"date":"2011-12-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.317},{"date":"2011-12-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.269},{"date":"2011-12-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.413},{"date":"2011-12-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.258},{"date":"2011-12-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.213},{"date":"2011-12-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.35},{"date":"2011-12-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.388},{"date":"2011-12-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.326},{"date":"2011-12-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.508},{"date":"2011-12-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.524},{"date":"2011-12-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.481},{"date":"2011-12-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.603},{"date":"2011-12-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.791},{"date":"2011-12-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.791},{"date":"2012-01-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.358},{"date":"2012-01-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.31},{"date":"2012-01-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.454},{"date":"2012-01-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.299},{"date":"2012-01-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.254},{"date":"2012-01-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.393},{"date":"2012-01-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.429},{"date":"2012-01-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.368},{"date":"2012-01-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.548},{"date":"2012-01-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.567},{"date":"2012-01-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.527},{"date":"2012-01-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.641},{"date":"2012-01-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.783},{"date":"2012-01-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.783},{"date":"2012-01-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.441},{"date":"2012-01-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.39},{"date":"2012-01-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.546},{"date":"2012-01-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.382},{"date":"2012-01-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.333},{"date":"2012-01-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.486},{"date":"2012-01-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.512},{"date":"2012-01-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.448},{"date":"2012-01-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.637},{"date":"2012-01-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.649},{"date":"2012-01-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.607},{"date":"2012-01-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.725},{"date":"2012-01-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.828},{"date":"2012-01-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.828},{"date":"2012-01-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.451},{"date":"2012-01-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.4},{"date":"2012-01-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.554},{"date":"2012-01-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.391},{"date":"2012-01-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.342},{"date":"2012-01-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.494},{"date":"2012-01-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.522},{"date":"2012-01-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.459},{"date":"2012-01-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.645},{"date":"2012-01-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.66},{"date":"2012-01-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.621},{"date":"2012-01-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.734},{"date":"2012-01-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.854},{"date":"2012-01-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.854},{"date":"2012-01-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.45},{"date":"2012-01-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.392},{"date":"2012-01-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.566},{"date":"2012-01-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.389},{"date":"2012-01-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.333},{"date":"2012-01-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.505},{"date":"2012-01-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.522},{"date":"2012-01-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.453},{"date":"2012-01-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.655},{"date":"2012-01-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.664},{"date":"2012-01-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.617},{"date":"2012-01-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.75},{"date":"2012-01-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.848},{"date":"2012-01-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.848},{"date":"2012-01-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.5},{"date":"2012-01-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.446},{"date":"2012-01-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.61},{"date":"2012-01-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.439},{"date":"2012-01-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.386},{"date":"2012-01-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.55},{"date":"2012-01-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.573},{"date":"2012-01-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.51},{"date":"2012-01-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.694},{"date":"2012-01-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.716},{"date":"2012-01-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.675},{"date":"2012-01-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.793},{"date":"2012-01-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.85},{"date":"2012-01-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.85},{"date":"2012-02-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.542},{"date":"2012-02-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.496},{"date":"2012-02-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.637},{"date":"2012-02-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.482},{"date":"2012-02-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.436},{"date":"2012-02-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.578},{"date":"2012-02-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.614},{"date":"2012-02-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.558},{"date":"2012-02-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.723},{"date":"2012-02-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.756},{"date":"2012-02-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.721},{"date":"2012-02-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.822},{"date":"2012-02-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.856},{"date":"2012-02-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.856},{"date":"2012-02-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.584},{"date":"2012-02-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.526},{"date":"2012-02-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.702},{"date":"2012-02-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.523},{"date":"2012-02-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.466},{"date":"2012-02-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.642},{"date":"2012-02-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.659},{"date":"2012-02-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.593},{"date":"2012-02-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.787},{"date":"2012-02-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.798},{"date":"2012-02-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.751},{"date":"2012-02-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.885},{"date":"2012-02-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.943},{"date":"2012-02-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.943},{"date":"2012-02-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.652},{"date":"2012-02-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.582},{"date":"2012-02-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.794},{"date":"2012-02-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.591},{"date":"2012-02-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.523},{"date":"2012-02-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.735},{"date":"2012-02-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.729},{"date":"2012-02-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.647},{"date":"2012-02-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.887},{"date":"2012-02-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.865},{"date":"2012-02-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.808},{"date":"2012-02-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.971},{"date":"2012-02-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.96},{"date":"2012-02-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.96},{"date":"2012-02-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.78},{"date":"2012-02-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.698},{"date":"2012-02-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.945},{"date":"2012-02-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.721},{"date":"2012-02-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.641},{"date":"2012-02-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.889},{"date":"2012-02-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.855},{"date":"2012-02-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.759},{"date":"2012-02-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.041},{"date":"2012-02-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.983},{"date":"2012-02-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.915},{"date":"2012-02-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.11},{"date":"2012-02-27","fuel":"diesel","grade":"all","formulation":"NA","price":4.051},{"date":"2012-02-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.051},{"date":"2012-03-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.849},{"date":"2012-03-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.771},{"date":"2012-03-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.009},{"date":"2012-03-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.793},{"date":"2012-03-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.717},{"date":"2012-03-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.954},{"date":"2012-03-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.92},{"date":"2012-03-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.824},{"date":"2012-03-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.104},{"date":"2012-03-05","fuel":"gasoline","grade":"premium","formulation":"all","price":4.043},{"date":"2012-03-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.977},{"date":"2012-03-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.167},{"date":"2012-03-05","fuel":"diesel","grade":"all","formulation":"NA","price":4.094},{"date":"2012-03-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.094},{"date":"2012-03-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.884},{"date":"2012-03-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.8},{"date":"2012-03-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.056},{"date":"2012-03-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.829},{"date":"2012-03-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.747},{"date":"2012-03-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.002},{"date":"2012-03-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.954},{"date":"2012-03-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.852},{"date":"2012-03-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.15},{"date":"2012-03-12","fuel":"gasoline","grade":"premium","formulation":"all","price":4.077},{"date":"2012-03-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.003},{"date":"2012-03-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.214},{"date":"2012-03-12","fuel":"diesel","grade":"all","formulation":"NA","price":4.123},{"date":"2012-03-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.123},{"date":"2012-03-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.923},{"date":"2012-03-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.841},{"date":"2012-03-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.089},{"date":"2012-03-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.867},{"date":"2012-03-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.787},{"date":"2012-03-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.034},{"date":"2012-03-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.993},{"date":"2012-03-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.895},{"date":"2012-03-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.182},{"date":"2012-03-19","fuel":"gasoline","grade":"premium","formulation":"all","price":4.117},{"date":"2012-03-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.045},{"date":"2012-03-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.249},{"date":"2012-03-19","fuel":"diesel","grade":"all","formulation":"NA","price":4.142},{"date":"2012-03-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.142},{"date":"2012-03-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.973},{"date":"2012-03-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.897},{"date":"2012-03-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.129},{"date":"2012-03-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.918},{"date":"2012-03-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.843},{"date":"2012-03-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.076},{"date":"2012-03-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.042},{"date":"2012-03-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.952},{"date":"2012-03-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.216},{"date":"2012-03-26","fuel":"gasoline","grade":"premium","formulation":"all","price":4.168},{"date":"2012-03-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.104},{"date":"2012-03-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.287},{"date":"2012-03-26","fuel":"diesel","grade":"all","formulation":"NA","price":4.147},{"date":"2012-03-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.147},{"date":"2012-04-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.996},{"date":"2012-04-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.928},{"date":"2012-04-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.135},{"date":"2012-04-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.941},{"date":"2012-04-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.874},{"date":"2012-04-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.08},{"date":"2012-04-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.063},{"date":"2012-04-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.981},{"date":"2012-04-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.222},{"date":"2012-04-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.193},{"date":"2012-04-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.136},{"date":"2012-04-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.299},{"date":"2012-04-02","fuel":"diesel","grade":"all","formulation":"NA","price":4.142},{"date":"2012-04-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.142},{"date":"2012-04-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.997},{"date":"2012-04-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.934},{"date":"2012-04-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.126},{"date":"2012-04-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.939},{"date":"2012-04-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.877},{"date":"2012-04-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.069},{"date":"2012-04-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.067},{"date":"2012-04-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.993},{"date":"2012-04-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.211},{"date":"2012-04-09","fuel":"gasoline","grade":"premium","formulation":"all","price":4.201},{"date":"2012-04-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.148},{"date":"2012-04-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.299},{"date":"2012-04-09","fuel":"diesel","grade":"all","formulation":"NA","price":4.148},{"date":"2012-04-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.148},{"date":"2012-04-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.98},{"date":"2012-04-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.923},{"date":"2012-04-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.097},{"date":"2012-04-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.922},{"date":"2012-04-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.867},{"date":"2012-04-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.039},{"date":"2012-04-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.047},{"date":"2012-04-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.978},{"date":"2012-04-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.181},{"date":"2012-04-16","fuel":"gasoline","grade":"premium","formulation":"all","price":4.183},{"date":"2012-04-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.134},{"date":"2012-04-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.275},{"date":"2012-04-16","fuel":"diesel","grade":"all","formulation":"NA","price":4.127},{"date":"2012-04-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.127},{"date":"2012-04-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.929},{"date":"2012-04-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.861},{"date":"2012-04-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.066},{"date":"2012-04-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.87},{"date":"2012-04-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.805},{"date":"2012-04-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.007},{"date":"2012-04-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.999},{"date":"2012-04-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.919},{"date":"2012-04-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.154},{"date":"2012-04-23","fuel":"gasoline","grade":"premium","formulation":"all","price":4.136},{"date":"2012-04-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.074},{"date":"2012-04-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.25},{"date":"2012-04-23","fuel":"diesel","grade":"all","formulation":"NA","price":4.085},{"date":"2012-04-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.085},{"date":"2012-04-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.889},{"date":"2012-04-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.821},{"date":"2012-04-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.027},{"date":"2012-04-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.83},{"date":"2012-04-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.764},{"date":"2012-04-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.967},{"date":"2012-04-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.962},{"date":"2012-04-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.882},{"date":"2012-04-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.116},{"date":"2012-04-30","fuel":"gasoline","grade":"premium","formulation":"all","price":4.097},{"date":"2012-04-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.036},{"date":"2012-04-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.211},{"date":"2012-04-30","fuel":"diesel","grade":"all","formulation":"NA","price":4.073},{"date":"2012-04-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.073},{"date":"2012-05-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.849},{"date":"2012-05-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.773},{"date":"2012-05-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.005},{"date":"2012-05-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.79},{"date":"2012-05-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.718},{"date":"2012-05-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.943},{"date":"2012-05-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.923},{"date":"2012-05-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.831},{"date":"2012-05-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.101},{"date":"2012-05-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.054},{"date":"2012-05-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.98},{"date":"2012-05-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.19},{"date":"2012-05-07","fuel":"diesel","grade":"all","formulation":"NA","price":4.057},{"date":"2012-05-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.057},{"date":"2012-05-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.814},{"date":"2012-05-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.713},{"date":"2012-05-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.02},{"date":"2012-05-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.754},{"date":"2012-05-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.658},{"date":"2012-05-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.956},{"date":"2012-05-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.895},{"date":"2012-05-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.774},{"date":"2012-05-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.13},{"date":"2012-05-14","fuel":"gasoline","grade":"premium","formulation":"all","price":4.02},{"date":"2012-05-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.919},{"date":"2012-05-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.207},{"date":"2012-05-14","fuel":"diesel","grade":"all","formulation":"NA","price":4.004},{"date":"2012-05-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.004},{"date":"2012-05-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.773},{"date":"2012-05-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.676},{"date":"2012-05-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.972},{"date":"2012-05-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.715},{"date":"2012-05-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.622},{"date":"2012-05-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.909},{"date":"2012-05-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.85},{"date":"2012-05-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.731},{"date":"2012-05-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.081},{"date":"2012-05-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.975},{"date":"2012-05-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.878},{"date":"2012-05-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.156},{"date":"2012-05-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.956},{"date":"2012-05-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.956},{"date":"2012-05-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.728},{"date":"2012-05-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.628},{"date":"2012-05-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.932},{"date":"2012-05-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.67},{"date":"2012-05-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.575},{"date":"2012-05-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.868},{"date":"2012-05-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.805},{"date":"2012-05-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.682},{"date":"2012-05-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.043},{"date":"2012-05-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.929},{"date":"2012-05-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.828},{"date":"2012-05-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.117},{"date":"2012-05-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.897},{"date":"2012-05-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.897},{"date":"2012-06-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.671},{"date":"2012-06-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.57},{"date":"2012-06-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.878},{"date":"2012-06-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.613},{"date":"2012-06-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.518},{"date":"2012-06-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.812},{"date":"2012-06-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.75},{"date":"2012-06-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.624},{"date":"2012-06-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.993},{"date":"2012-06-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.871},{"date":"2012-06-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.766},{"date":"2012-06-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.065},{"date":"2012-06-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.846},{"date":"2012-06-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.846},{"date":"2012-06-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.629},{"date":"2012-06-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.541},{"date":"2012-06-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.809},{"date":"2012-06-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.572},{"date":"2012-06-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.489},{"date":"2012-06-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.745},{"date":"2012-06-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.703},{"date":"2012-06-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.592},{"date":"2012-06-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.92},{"date":"2012-06-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.829},{"date":"2012-06-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.74},{"date":"2012-06-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.994},{"date":"2012-06-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.781},{"date":"2012-06-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.781},{"date":"2012-06-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.589},{"date":"2012-06-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.522},{"date":"2012-06-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.724},{"date":"2012-06-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.533},{"date":"2012-06-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.473},{"date":"2012-06-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.66},{"date":"2012-06-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.661},{"date":"2012-06-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.572},{"date":"2012-06-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.833},{"date":"2012-06-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.78},{"date":"2012-06-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.708},{"date":"2012-06-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.914},{"date":"2012-06-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.729},{"date":"2012-06-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.729},{"date":"2012-06-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.494},{"date":"2012-06-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.428},{"date":"2012-06-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.629},{"date":"2012-06-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.437},{"date":"2012-06-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.378},{"date":"2012-06-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.562},{"date":"2012-06-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.568},{"date":"2012-06-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.481},{"date":"2012-06-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.735},{"date":"2012-06-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.693},{"date":"2012-06-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.619},{"date":"2012-06-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.832},{"date":"2012-06-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.678},{"date":"2012-06-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.678},{"date":"2012-07-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.415},{"date":"2012-07-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.343},{"date":"2012-07-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.561},{"date":"2012-07-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.356},{"date":"2012-07-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.291},{"date":"2012-07-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.493},{"date":"2012-07-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.489},{"date":"2012-07-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.398},{"date":"2012-07-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.665},{"date":"2012-07-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.618},{"date":"2012-07-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.54},{"date":"2012-07-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.764},{"date":"2012-07-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.648},{"date":"2012-07-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.648},{"date":"2012-07-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.469},{"date":"2012-07-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.411},{"date":"2012-07-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.588},{"date":"2012-07-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.411},{"date":"2012-07-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.357},{"date":"2012-07-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.522},{"date":"2012-07-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.539},{"date":"2012-07-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.465},{"date":"2012-07-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.682},{"date":"2012-07-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.674},{"date":"2012-07-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.613},{"date":"2012-07-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.789},{"date":"2012-07-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.683},{"date":"2012-07-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.683},{"date":"2012-07-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.485},{"date":"2012-07-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.416},{"date":"2012-07-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.625},{"date":"2012-07-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.427},{"date":"2012-07-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.364},{"date":"2012-07-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.561},{"date":"2012-07-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.551},{"date":"2012-07-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.467},{"date":"2012-07-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.713},{"date":"2012-07-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.69},{"date":"2012-07-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.618},{"date":"2012-07-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.823},{"date":"2012-07-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.695},{"date":"2012-07-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.695},{"date":"2012-07-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.554},{"date":"2012-07-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.491},{"date":"2012-07-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.683},{"date":"2012-07-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.494},{"date":"2012-07-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.435},{"date":"2012-07-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.619},{"date":"2012-07-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.626},{"date":"2012-07-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.552},{"date":"2012-07-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.771},{"date":"2012-07-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.765},{"date":"2012-07-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.703},{"date":"2012-07-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.881},{"date":"2012-07-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.783},{"date":"2012-07-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.783},{"date":"2012-07-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.568},{"date":"2012-07-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.506},{"date":"2012-07-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.693},{"date":"2012-07-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.508},{"date":"2012-07-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.45},{"date":"2012-07-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.63},{"date":"2012-07-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.639},{"date":"2012-07-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.565},{"date":"2012-07-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.78},{"date":"2012-07-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.779},{"date":"2012-07-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.719},{"date":"2012-07-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.889},{"date":"2012-07-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.796},{"date":"2012-07-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.796},{"date":"2012-08-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.702},{"date":"2012-08-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.66},{"date":"2012-08-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.788},{"date":"2012-08-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.645},{"date":"2012-08-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.606},{"date":"2012-08-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.727},{"date":"2012-08-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.767},{"date":"2012-08-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.714},{"date":"2012-08-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.87},{"date":"2012-08-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.907},{"date":"2012-08-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.869},{"date":"2012-08-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.976},{"date":"2012-08-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.85},{"date":"2012-08-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.85},{"date":"2012-08-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.779},{"date":"2012-08-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.717},{"date":"2012-08-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.906},{"date":"2012-08-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.721},{"date":"2012-08-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.662},{"date":"2012-08-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.846},{"date":"2012-08-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.847},{"date":"2012-08-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.771},{"date":"2012-08-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.994},{"date":"2012-08-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.985},{"date":"2012-08-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.928},{"date":"2012-08-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.091},{"date":"2012-08-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.965},{"date":"2012-08-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.965},{"date":"2012-08-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.803},{"date":"2012-08-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.739},{"date":"2012-08-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.934},{"date":"2012-08-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.744},{"date":"2012-08-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.682},{"date":"2012-08-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.873},{"date":"2012-08-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.874},{"date":"2012-08-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.797},{"date":"2012-08-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.023},{"date":"2012-08-20","fuel":"gasoline","grade":"premium","formulation":"all","price":4.014},{"date":"2012-08-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.956},{"date":"2012-08-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.12},{"date":"2012-08-20","fuel":"diesel","grade":"all","formulation":"NA","price":4.026},{"date":"2012-08-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.026},{"date":"2012-08-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.837},{"date":"2012-08-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.78},{"date":"2012-08-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.951},{"date":"2012-08-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.776},{"date":"2012-08-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.722},{"date":"2012-08-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.888},{"date":"2012-08-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.909},{"date":"2012-08-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.839},{"date":"2012-08-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.044},{"date":"2012-08-27","fuel":"gasoline","grade":"premium","formulation":"all","price":4.051},{"date":"2012-08-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.003},{"date":"2012-08-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.142},{"date":"2012-08-27","fuel":"diesel","grade":"all","formulation":"NA","price":4.089},{"date":"2012-08-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.089},{"date":"2012-09-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.903},{"date":"2012-09-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.854},{"date":"2012-09-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.001},{"date":"2012-09-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.843},{"date":"2012-09-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.797},{"date":"2012-09-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.94},{"date":"2012-09-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.975},{"date":"2012-09-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.916},{"date":"2012-09-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.089},{"date":"2012-09-03","fuel":"gasoline","grade":"premium","formulation":"all","price":4.111},{"date":"2012-09-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.07},{"date":"2012-09-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.189},{"date":"2012-09-03","fuel":"diesel","grade":"all","formulation":"NA","price":4.127},{"date":"2012-09-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.127},{"date":"2012-09-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.907},{"date":"2012-09-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.856},{"date":"2012-09-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.012},{"date":"2012-09-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.847},{"date":"2012-09-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.799},{"date":"2012-09-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.949},{"date":"2012-09-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.981},{"date":"2012-09-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.919},{"date":"2012-09-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.1},{"date":"2012-09-10","fuel":"gasoline","grade":"premium","formulation":"all","price":4.119},{"date":"2012-09-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.071},{"date":"2012-09-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.208},{"date":"2012-09-10","fuel":"diesel","grade":"all","formulation":"NA","price":4.132},{"date":"2012-09-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.132},{"date":"2012-09-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.939},{"date":"2012-09-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.89},{"date":"2012-09-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.038},{"date":"2012-09-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.878},{"date":"2012-09-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.832},{"date":"2012-09-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.974},{"date":"2012-09-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.013},{"date":"2012-09-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.955},{"date":"2012-09-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.124},{"date":"2012-09-17","fuel":"gasoline","grade":"premium","formulation":"all","price":4.154},{"date":"2012-09-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.108},{"date":"2012-09-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.239},{"date":"2012-09-17","fuel":"diesel","grade":"all","formulation":"NA","price":4.135},{"date":"2012-09-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.135},{"date":"2012-09-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.889},{"date":"2012-09-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.834},{"date":"2012-09-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.002},{"date":"2012-09-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.826},{"date":"2012-09-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.775},{"date":"2012-09-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.934},{"date":"2012-09-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.966},{"date":"2012-09-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.899},{"date":"2012-09-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.098},{"date":"2012-09-24","fuel":"gasoline","grade":"premium","formulation":"all","price":4.11},{"date":"2012-09-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.056},{"date":"2012-09-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.21},{"date":"2012-09-24","fuel":"diesel","grade":"all","formulation":"NA","price":4.086},{"date":"2012-09-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.086},{"date":"2012-10-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.866},{"date":"2012-10-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.808},{"date":"2012-10-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.986},{"date":"2012-10-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.804},{"date":"2012-10-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.75},{"date":"2012-10-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.916},{"date":"2012-10-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.944},{"date":"2012-10-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.87},{"date":"2012-10-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.086},{"date":"2012-10-01","fuel":"gasoline","grade":"premium","formulation":"all","price":4.087},{"date":"2012-10-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.026},{"date":"2012-10-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.2},{"date":"2012-10-01","fuel":"diesel","grade":"all","formulation":"NA","price":4.079},{"date":"2012-10-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.079},{"date":"2012-10-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.914},{"date":"2012-10-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.8},{"date":"2012-10-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.147},{"date":"2012-10-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.85},{"date":"2012-10-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.742},{"date":"2012-10-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.078},{"date":"2012-10-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.002},{"date":"2012-10-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.864},{"date":"2012-10-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.27},{"date":"2012-10-08","fuel":"gasoline","grade":"premium","formulation":"all","price":4.133},{"date":"2012-10-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.02},{"date":"2012-10-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.344},{"date":"2012-10-08","fuel":"diesel","grade":"all","formulation":"NA","price":4.094},{"date":"2012-10-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.094},{"date":"2012-10-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.886},{"date":"2012-10-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.774},{"date":"2012-10-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.113},{"date":"2012-10-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.819},{"date":"2012-10-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.713},{"date":"2012-10-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.042},{"date":"2012-10-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.976},{"date":"2012-10-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.841},{"date":"2012-10-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.238},{"date":"2012-10-15","fuel":"gasoline","grade":"premium","formulation":"all","price":4.113},{"date":"2012-10-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.004},{"date":"2012-10-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.316},{"date":"2012-10-15","fuel":"diesel","grade":"all","formulation":"NA","price":4.15},{"date":"2012-10-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.15},{"date":"2012-10-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.756},{"date":"2012-10-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.645},{"date":"2012-10-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.981},{"date":"2012-10-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.687},{"date":"2012-10-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.582},{"date":"2012-10-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.908},{"date":"2012-10-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.85},{"date":"2012-10-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.717},{"date":"2012-10-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.107},{"date":"2012-10-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.992},{"date":"2012-10-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.884},{"date":"2012-10-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.193},{"date":"2012-10-22","fuel":"diesel","grade":"all","formulation":"NA","price":4.116},{"date":"2012-10-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.116},{"date":"2012-10-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.638},{"date":"2012-10-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.545},{"date":"2012-10-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.826},{"date":"2012-10-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.568},{"date":"2012-10-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.48},{"date":"2012-10-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.752},{"date":"2012-10-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.733},{"date":"2012-10-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.622},{"date":"2012-10-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.948},{"date":"2012-10-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.878},{"date":"2012-10-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.788},{"date":"2012-10-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.044},{"date":"2012-10-29","fuel":"diesel","grade":"all","formulation":"NA","price":4.03},{"date":"2012-10-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.03},{"date":"2012-11-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.563},{"date":"2012-11-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.471},{"date":"2012-11-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.749},{"date":"2012-11-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.492},{"date":"2012-11-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.406},{"date":"2012-11-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.673},{"date":"2012-11-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.652},{"date":"2012-11-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.542},{"date":"2012-11-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.864},{"date":"2012-11-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.808},{"date":"2012-11-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.717},{"date":"2012-11-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.978},{"date":"2012-11-05","fuel":"diesel","grade":"all","formulation":"NA","price":4.01},{"date":"2012-11-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.01},{"date":"2012-11-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.518},{"date":"2012-11-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.437},{"date":"2012-11-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.685},{"date":"2012-11-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.449},{"date":"2012-11-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.372},{"date":"2012-11-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.611},{"date":"2012-11-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.605},{"date":"2012-11-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.509},{"date":"2012-11-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.793},{"date":"2012-11-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.761},{"date":"2012-11-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.678},{"date":"2012-11-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.913},{"date":"2012-11-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.98},{"date":"2012-11-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.98},{"date":"2012-11-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.497},{"date":"2012-11-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.423},{"date":"2012-11-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.649},{"date":"2012-11-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.429},{"date":"2012-11-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.36},{"date":"2012-11-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.573},{"date":"2012-11-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.579},{"date":"2012-11-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.489},{"date":"2012-11-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.754},{"date":"2012-11-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.74},{"date":"2012-11-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.662},{"date":"2012-11-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.885},{"date":"2012-11-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.976},{"date":"2012-11-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.976},{"date":"2012-11-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.505},{"date":"2012-11-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.445},{"date":"2012-11-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.628},{"date":"2012-11-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.437},{"date":"2012-11-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.382},{"date":"2012-11-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.553},{"date":"2012-11-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.585},{"date":"2012-11-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.511},{"date":"2012-11-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.73},{"date":"2012-11-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.746},{"date":"2012-11-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.684},{"date":"2012-11-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.861},{"date":"2012-11-26","fuel":"diesel","grade":"all","formulation":"NA","price":4.034},{"date":"2012-11-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.034},{"date":"2012-12-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.463},{"date":"2012-12-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.401},{"date":"2012-12-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.589},{"date":"2012-12-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.394},{"date":"2012-12-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.337},{"date":"2012-12-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.513},{"date":"2012-12-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.548},{"date":"2012-12-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.474},{"date":"2012-12-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.692},{"date":"2012-12-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.707},{"date":"2012-12-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.643},{"date":"2012-12-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.826},{"date":"2012-12-03","fuel":"diesel","grade":"all","formulation":"NA","price":4.027},{"date":"2012-12-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.027},{"date":"2012-12-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.419},{"date":"2012-12-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.363},{"date":"2012-12-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.534},{"date":"2012-12-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.349},{"date":"2012-12-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.297},{"date":"2012-12-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.459},{"date":"2012-12-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.504},{"date":"2012-12-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.436},{"date":"2012-12-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.636},{"date":"2012-12-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.664},{"date":"2012-12-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.606},{"date":"2012-12-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.77},{"date":"2012-12-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.991},{"date":"2012-12-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.991},{"date":"2012-12-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.324},{"date":"2012-12-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.263},{"date":"2012-12-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.448},{"date":"2012-12-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.254},{"date":"2012-12-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.198},{"date":"2012-12-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.371},{"date":"2012-12-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.409},{"date":"2012-12-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.336},{"date":"2012-12-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.551},{"date":"2012-12-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.571},{"date":"2012-12-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.507},{"date":"2012-12-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.69},{"date":"2012-12-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.945},{"date":"2012-12-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.945},{"date":"2012-12-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.328},{"date":"2012-12-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.271},{"date":"2012-12-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.444},{"date":"2012-12-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.257},{"date":"2012-12-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.205},{"date":"2012-12-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.366},{"date":"2012-12-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.415},{"date":"2012-12-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.346},{"date":"2012-12-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.548},{"date":"2012-12-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.576},{"date":"2012-12-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.517},{"date":"2012-12-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.688},{"date":"2012-12-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.923},{"date":"2012-12-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.923},{"date":"2012-12-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.369},{"date":"2012-12-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.311},{"date":"2012-12-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.486},{"date":"2012-12-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.298},{"date":"2012-12-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.245},{"date":"2012-12-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.41},{"date":"2012-12-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.455},{"date":"2012-12-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.386},{"date":"2012-12-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.587},{"date":"2012-12-31","fuel":"gasoline","grade":"premium","formulation":"all","price":3.617},{"date":"2012-12-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.56},{"date":"2012-12-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.723},{"date":"2012-12-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.918},{"date":"2012-12-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.918},{"date":"2013-01-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.373},{"date":"2013-01-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.304},{"date":"2013-01-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.512},{"date":"2013-01-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.299},{"date":"2013-01-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.233},{"date":"2013-01-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.437},{"date":"2013-01-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.463},{"date":"2013-01-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.383},{"date":"2013-01-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.616},{"date":"2013-01-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.631},{"date":"2013-01-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.568},{"date":"2013-01-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.748},{"date":"2013-01-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.911},{"date":"2013-01-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.911},{"date":"2013-01-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.377},{"date":"2013-01-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.308},{"date":"2013-01-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.519},{"date":"2013-01-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.303},{"date":"2013-01-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.236},{"date":"2013-01-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.444},{"date":"2013-01-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.467},{"date":"2013-01-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.386},{"date":"2013-01-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.623},{"date":"2013-01-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.637},{"date":"2013-01-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.575},{"date":"2013-01-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.753},{"date":"2013-01-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.894},{"date":"2013-01-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.894},{"date":"2013-01-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.386},{"date":"2013-01-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.321},{"date":"2013-01-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.519},{"date":"2013-01-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.315},{"date":"2013-01-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.254},{"date":"2013-01-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.444},{"date":"2013-01-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.473},{"date":"2013-01-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.394},{"date":"2013-01-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.626},{"date":"2013-01-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.636},{"date":"2013-01-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.574},{"date":"2013-01-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.751},{"date":"2013-01-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.902},{"date":"2013-01-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.902},{"date":"2013-01-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.427},{"date":"2013-01-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.362},{"date":"2013-01-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.558},{"date":"2013-01-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.357},{"date":"2013-01-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.296},{"date":"2013-01-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.484},{"date":"2013-01-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.512},{"date":"2013-01-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.434},{"date":"2013-01-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.663},{"date":"2013-01-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.673},{"date":"2013-01-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.613},{"date":"2013-01-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.783},{"date":"2013-01-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.927},{"date":"2013-01-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.927},{"date":"2013-02-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.604},{"date":"2013-02-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.534},{"date":"2013-02-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.748},{"date":"2013-02-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.538},{"date":"2013-02-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.471},{"date":"2013-02-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.678},{"date":"2013-02-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.683},{"date":"2013-02-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.598},{"date":"2013-02-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.848},{"date":"2013-02-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.841},{"date":"2013-02-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.776},{"date":"2013-02-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.963},{"date":"2013-02-04","fuel":"diesel","grade":"all","formulation":"NA","price":4.022},{"date":"2013-02-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.022},{"date":"2013-02-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.677},{"date":"2013-02-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.599},{"date":"2013-02-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.836},{"date":"2013-02-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.611},{"date":"2013-02-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.537},{"date":"2013-02-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.769},{"date":"2013-02-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.756},{"date":"2013-02-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.663},{"date":"2013-02-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.938},{"date":"2013-02-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.91},{"date":"2013-02-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.838},{"date":"2013-02-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.042},{"date":"2013-02-11","fuel":"diesel","grade":"all","formulation":"NA","price":4.104},{"date":"2013-02-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.104},{"date":"2013-02-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.812},{"date":"2013-02-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.753},{"date":"2013-02-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.932},{"date":"2013-02-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.747},{"date":"2013-02-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.69},{"date":"2013-02-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.866},{"date":"2013-02-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.891},{"date":"2013-02-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.819},{"date":"2013-02-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.031},{"date":"2013-02-18","fuel":"gasoline","grade":"premium","formulation":"all","price":4.042},{"date":"2013-02-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.993},{"date":"2013-02-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.132},{"date":"2013-02-18","fuel":"diesel","grade":"all","formulation":"NA","price":4.157},{"date":"2013-02-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.157},{"date":"2013-02-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.851},{"date":"2013-02-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.787},{"date":"2013-02-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.98},{"date":"2013-02-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.784},{"date":"2013-02-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.722},{"date":"2013-02-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.914},{"date":"2013-02-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.934},{"date":"2013-02-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.859},{"date":"2013-02-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.08},{"date":"2013-02-25","fuel":"gasoline","grade":"premium","formulation":"all","price":4.084},{"date":"2013-02-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.031},{"date":"2013-02-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.181},{"date":"2013-02-25","fuel":"diesel","grade":"all","formulation":"NA","price":4.159},{"date":"2013-02-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.159},{"date":"2013-03-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.826},{"date":"2013-03-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.763},{"date":"2013-03-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.955},{"date":"2013-03-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.759},{"date":"2013-03-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.698},{"date":"2013-03-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.888},{"date":"2013-03-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.91},{"date":"2013-03-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.833},{"date":"2013-03-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.06},{"date":"2013-03-04","fuel":"gasoline","grade":"premium","formulation":"all","price":4.061},{"date":"2013-03-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.009},{"date":"2013-03-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.158},{"date":"2013-03-04","fuel":"diesel","grade":"all","formulation":"NA","price":4.13},{"date":"2013-03-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.13},{"date":"2013-03-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.779},{"date":"2013-03-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.71},{"date":"2013-03-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.918},{"date":"2013-03-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.71},{"date":"2013-03-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.644},{"date":"2013-03-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.85},{"date":"2013-03-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.865},{"date":"2013-03-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.783},{"date":"2013-03-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.022},{"date":"2013-03-11","fuel":"gasoline","grade":"premium","formulation":"all","price":4.018},{"date":"2013-03-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.96},{"date":"2013-03-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.124},{"date":"2013-03-11","fuel":"diesel","grade":"all","formulation":"NA","price":4.088},{"date":"2013-03-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.088},{"date":"2013-03-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.764},{"date":"2013-03-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.699},{"date":"2013-03-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.897},{"date":"2013-03-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.696},{"date":"2013-03-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.633},{"date":"2013-03-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.829},{"date":"2013-03-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.85},{"date":"2013-03-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.772},{"date":"2013-03-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.001},{"date":"2013-03-18","fuel":"gasoline","grade":"premium","formulation":"all","price":4.002},{"date":"2013-03-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.946},{"date":"2013-03-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.104},{"date":"2013-03-18","fuel":"diesel","grade":"all","formulation":"NA","price":4.047},{"date":"2013-03-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.047},{"date":"2013-03-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.746},{"date":"2013-03-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.68},{"date":"2013-03-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.881},{"date":"2013-03-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.68},{"date":"2013-03-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.616},{"date":"2013-03-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.813},{"date":"2013-03-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.828},{"date":"2013-03-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.749},{"date":"2013-03-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.982},{"date":"2013-03-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.981},{"date":"2013-03-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.924},{"date":"2013-03-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.087},{"date":"2013-03-25","fuel":"diesel","grade":"all","formulation":"NA","price":4.006},{"date":"2013-03-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.006},{"date":"2013-04-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.714},{"date":"2013-04-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.638},{"date":"2013-04-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.867},{"date":"2013-04-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.645},{"date":"2013-04-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.572},{"date":"2013-04-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.799},{"date":"2013-04-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.798},{"date":"2013-04-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.71},{"date":"2013-04-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.969},{"date":"2013-04-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.953},{"date":"2013-04-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.887},{"date":"2013-04-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.076},{"date":"2013-04-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.993},{"date":"2013-04-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.993},{"date":"2013-04-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.676},{"date":"2013-04-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.604},{"date":"2013-04-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.822},{"date":"2013-04-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.608},{"date":"2013-04-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.539},{"date":"2013-04-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.751},{"date":"2013-04-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.761},{"date":"2013-04-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.673},{"date":"2013-04-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.93},{"date":"2013-04-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.916},{"date":"2013-04-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.852},{"date":"2013-04-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.034},{"date":"2013-04-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.977},{"date":"2013-04-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.977},{"date":"2013-04-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.611},{"date":"2013-04-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.535},{"date":"2013-04-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.766},{"date":"2013-04-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.542},{"date":"2013-04-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.469},{"date":"2013-04-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.694},{"date":"2013-04-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.7},{"date":"2013-04-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.609},{"date":"2013-04-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.878},{"date":"2013-04-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.852},{"date":"2013-04-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.782},{"date":"2013-04-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.98},{"date":"2013-04-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.942},{"date":"2013-04-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.942},{"date":"2013-04-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.603},{"date":"2013-04-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.536},{"date":"2013-04-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.74},{"date":"2013-04-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.536},{"date":"2013-04-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.472},{"date":"2013-04-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.671},{"date":"2013-04-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.687},{"date":"2013-04-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.604},{"date":"2013-04-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.847},{"date":"2013-04-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.836},{"date":"2013-04-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.777},{"date":"2013-04-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.947},{"date":"2013-04-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.887},{"date":"2013-04-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.887},{"date":"2013-04-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.587},{"date":"2013-04-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.519},{"date":"2013-04-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.725},{"date":"2013-04-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.52},{"date":"2013-04-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.455},{"date":"2013-04-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.657},{"date":"2013-04-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.668},{"date":"2013-04-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.584},{"date":"2013-04-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.829},{"date":"2013-04-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.822},{"date":"2013-04-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.763},{"date":"2013-04-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.931},{"date":"2013-04-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.851},{"date":"2013-04-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.851},{"date":"2013-05-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.602},{"date":"2013-05-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.54},{"date":"2013-05-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.729},{"date":"2013-05-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.538},{"date":"2013-05-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.478},{"date":"2013-05-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.662},{"date":"2013-05-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.681},{"date":"2013-05-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.603},{"date":"2013-05-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.832},{"date":"2013-05-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.83},{"date":"2013-05-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.776},{"date":"2013-05-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.93},{"date":"2013-05-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.845},{"date":"2013-05-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.845},{"date":"2013-05-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.665},{"date":"2013-05-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.601},{"date":"2013-05-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.795},{"date":"2013-05-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.603},{"date":"2013-05-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.543},{"date":"2013-05-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.729},{"date":"2013-05-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.739},{"date":"2013-05-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.656},{"date":"2013-05-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.9},{"date":"2013-05-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.883},{"date":"2013-05-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.824},{"date":"2013-05-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.993},{"date":"2013-05-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.866},{"date":"2013-05-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.866},{"date":"2013-05-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.729},{"date":"2013-05-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.687},{"date":"2013-05-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.816},{"date":"2013-05-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.673},{"date":"2013-05-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.636},{"date":"2013-05-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.752},{"date":"2013-05-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.801},{"date":"2013-05-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.741},{"date":"2013-05-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.918},{"date":"2013-05-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.926},{"date":"2013-05-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.88},{"date":"2013-05-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.011},{"date":"2013-05-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.89},{"date":"2013-05-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.89},{"date":"2013-05-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.704},{"date":"2013-05-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.656},{"date":"2013-05-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.802},{"date":"2013-05-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.645},{"date":"2013-05-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.601},{"date":"2013-05-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.736},{"date":"2013-05-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.779},{"date":"2013-05-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.714},{"date":"2013-05-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.904},{"date":"2013-05-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.912},{"date":"2013-05-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.863},{"date":"2013-05-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.003},{"date":"2013-05-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.88},{"date":"2013-05-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.88},{"date":"2013-06-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.705},{"date":"2013-06-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.664},{"date":"2013-06-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.788},{"date":"2013-06-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.646},{"date":"2013-06-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.61},{"date":"2013-06-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.721},{"date":"2013-06-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.773},{"date":"2013-06-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.712},{"date":"2013-06-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.892},{"date":"2013-06-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.913},{"date":"2013-06-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.87},{"date":"2013-06-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.992},{"date":"2013-06-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.869},{"date":"2013-06-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.869},{"date":"2013-06-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.715},{"date":"2013-06-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.674},{"date":"2013-06-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.798},{"date":"2013-06-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.655},{"date":"2013-06-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.619},{"date":"2013-06-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.731},{"date":"2013-06-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.783},{"date":"2013-06-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.722},{"date":"2013-06-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.9},{"date":"2013-06-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.929},{"date":"2013-06-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.891},{"date":"2013-06-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4},{"date":"2013-06-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.849},{"date":"2013-06-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.849},{"date":"2013-06-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.689},{"date":"2013-06-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.636},{"date":"2013-06-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.798},{"date":"2013-06-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.626},{"date":"2013-06-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.577},{"date":"2013-06-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.73},{"date":"2013-06-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.764},{"date":"2013-06-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.692},{"date":"2013-06-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.901},{"date":"2013-06-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.912},{"date":"2013-06-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.863},{"date":"2013-06-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.005},{"date":"2013-06-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.841},{"date":"2013-06-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.841},{"date":"2013-06-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.645},{"date":"2013-06-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.563},{"date":"2013-06-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.81},{"date":"2013-06-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.577},{"date":"2013-06-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.498},{"date":"2013-06-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.741},{"date":"2013-06-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.733},{"date":"2013-06-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.635},{"date":"2013-06-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.922},{"date":"2013-06-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.88},{"date":"2013-06-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.807},{"date":"2013-06-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.015},{"date":"2013-06-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.838},{"date":"2013-06-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.838},{"date":"2013-07-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.567},{"date":"2013-07-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.478},{"date":"2013-07-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.748},{"date":"2013-07-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.496},{"date":"2013-07-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.41},{"date":"2013-07-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.676},{"date":"2013-07-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.66},{"date":"2013-07-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.557},{"date":"2013-07-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.86},{"date":"2013-07-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.813},{"date":"2013-07-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.732},{"date":"2013-07-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.964},{"date":"2013-07-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.817},{"date":"2013-07-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.817},{"date":"2013-07-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.563},{"date":"2013-07-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.481},{"date":"2013-07-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.729},{"date":"2013-07-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.492},{"date":"2013-07-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.413},{"date":"2013-07-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.657},{"date":"2013-07-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.654},{"date":"2013-07-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.558},{"date":"2013-07-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.84},{"date":"2013-07-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.81},{"date":"2013-07-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.737},{"date":"2013-07-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.947},{"date":"2013-07-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.828},{"date":"2013-07-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.828},{"date":"2013-07-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.706},{"date":"2013-07-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.634},{"date":"2013-07-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.853},{"date":"2013-07-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.639},{"date":"2013-07-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.57},{"date":"2013-07-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.786},{"date":"2013-07-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.786},{"date":"2013-07-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.701},{"date":"2013-07-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.952},{"date":"2013-07-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.943},{"date":"2013-07-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.88},{"date":"2013-07-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.059},{"date":"2013-07-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.867},{"date":"2013-07-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.867},{"date":"2013-07-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.751},{"date":"2013-07-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.678},{"date":"2013-07-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.898},{"date":"2013-07-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.682},{"date":"2013-07-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.612},{"date":"2013-07-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.831},{"date":"2013-07-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.831},{"date":"2013-07-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.746},{"date":"2013-07-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.995},{"date":"2013-07-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.993},{"date":"2013-07-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.932},{"date":"2013-07-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.105},{"date":"2013-07-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.903},{"date":"2013-07-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.903},{"date":"2013-07-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.716},{"date":"2013-07-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.638},{"date":"2013-07-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.876},{"date":"2013-07-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.646},{"date":"2013-07-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.57},{"date":"2013-07-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.806},{"date":"2013-07-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.801},{"date":"2013-07-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.71},{"date":"2013-07-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.975},{"date":"2013-07-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.963},{"date":"2013-07-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.895},{"date":"2013-07-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.091},{"date":"2013-07-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.915},{"date":"2013-07-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.915},{"date":"2013-08-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.701},{"date":"2013-08-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.633},{"date":"2013-08-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.84},{"date":"2013-08-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.632},{"date":"2013-08-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.566},{"date":"2013-08-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.769},{"date":"2013-08-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.781},{"date":"2013-08-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.7},{"date":"2013-08-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.938},{"date":"2013-08-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.947},{"date":"2013-08-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.887},{"date":"2013-08-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.059},{"date":"2013-08-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.909},{"date":"2013-08-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.909},{"date":"2013-08-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.633},{"date":"2013-08-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.562},{"date":"2013-08-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.778},{"date":"2013-08-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.561},{"date":"2013-08-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.493},{"date":"2013-08-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.703},{"date":"2013-08-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.719},{"date":"2013-08-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.635},{"date":"2013-08-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.883},{"date":"2013-08-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.886},{"date":"2013-08-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.82},{"date":"2013-08-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.01},{"date":"2013-08-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.896},{"date":"2013-08-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.896},{"date":"2013-08-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.622},{"date":"2013-08-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.565},{"date":"2013-08-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.738},{"date":"2013-08-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.55},{"date":"2013-08-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.496},{"date":"2013-08-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.664},{"date":"2013-08-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.707},{"date":"2013-08-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.638},{"date":"2013-08-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.841},{"date":"2013-08-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.874},{"date":"2013-08-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.824},{"date":"2013-08-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.967},{"date":"2013-08-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.9},{"date":"2013-08-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.9},{"date":"2013-08-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.623},{"date":"2013-08-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.573},{"date":"2013-08-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.727},{"date":"2013-08-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.552},{"date":"2013-08-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.504},{"date":"2013-08-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.653},{"date":"2013-08-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.707},{"date":"2013-08-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.644},{"date":"2013-08-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.829},{"date":"2013-08-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.875},{"date":"2013-08-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.832},{"date":"2013-08-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.956},{"date":"2013-08-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.913},{"date":"2013-08-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.913},{"date":"2013-09-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.678},{"date":"2013-09-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.641},{"date":"2013-09-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.751},{"date":"2013-09-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.608},{"date":"2013-09-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.575},{"date":"2013-09-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.679},{"date":"2013-09-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.76},{"date":"2013-09-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.713},{"date":"2013-09-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.851},{"date":"2013-09-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.922},{"date":"2013-09-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.893},{"date":"2013-09-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.977},{"date":"2013-09-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.981},{"date":"2013-09-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.981},{"date":"2013-09-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.658},{"date":"2013-09-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.607},{"date":"2013-09-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.761},{"date":"2013-09-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.587},{"date":"2013-09-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.54},{"date":"2013-09-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.687},{"date":"2013-09-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.741},{"date":"2013-09-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.678},{"date":"2013-09-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.864},{"date":"2013-09-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.906},{"date":"2013-09-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.862},{"date":"2013-09-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.987},{"date":"2013-09-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.981},{"date":"2013-09-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.981},{"date":"2013-09-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.619},{"date":"2013-09-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.544},{"date":"2013-09-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.773},{"date":"2013-09-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.547},{"date":"2013-09-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.475},{"date":"2013-09-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.698},{"date":"2013-09-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.709},{"date":"2013-09-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.617},{"date":"2013-09-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.887},{"date":"2013-09-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.87},{"date":"2013-09-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.802},{"date":"2013-09-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.995},{"date":"2013-09-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.974},{"date":"2013-09-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.974},{"date":"2013-09-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.567},{"date":"2013-09-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.493},{"date":"2013-09-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.717},{"date":"2013-09-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.495},{"date":"2013-09-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.425},{"date":"2013-09-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.641},{"date":"2013-09-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.656},{"date":"2013-09-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.564},{"date":"2013-09-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.833},{"date":"2013-09-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.819},{"date":"2013-09-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.751},{"date":"2013-09-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.945},{"date":"2013-09-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.949},{"date":"2013-09-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.949},{"date":"2013-09-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.499},{"date":"2013-09-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.425},{"date":"2013-09-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.651},{"date":"2013-09-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.425},{"date":"2013-09-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.354},{"date":"2013-09-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.574},{"date":"2013-09-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.596},{"date":"2013-09-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.507},{"date":"2013-09-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.77},{"date":"2013-09-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.758},{"date":"2013-09-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.691},{"date":"2013-09-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.881},{"date":"2013-09-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.919},{"date":"2013-09-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.919},{"date":"2013-10-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.441},{"date":"2013-10-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.369},{"date":"2013-10-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.589},{"date":"2013-10-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.367},{"date":"2013-10-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.298},{"date":"2013-10-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.511},{"date":"2013-10-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.535},{"date":"2013-10-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.445},{"date":"2013-10-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.708},{"date":"2013-10-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.701},{"date":"2013-10-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.635},{"date":"2013-10-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.824},{"date":"2013-10-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.897},{"date":"2013-10-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.897},{"date":"2013-10-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.43},{"date":"2013-10-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.368},{"date":"2013-10-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.557},{"date":"2013-10-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.354},{"date":"2013-10-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.296},{"date":"2013-10-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.478},{"date":"2013-10-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.527},{"date":"2013-10-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.451},{"date":"2013-10-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.676},{"date":"2013-10-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.694},{"date":"2013-10-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.638},{"date":"2013-10-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.798},{"date":"2013-10-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.886},{"date":"2013-10-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.886},{"date":"2013-10-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.435},{"date":"2013-10-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.382},{"date":"2013-10-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.542},{"date":"2013-10-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.36},{"date":"2013-10-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.31},{"date":"2013-10-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.464},{"date":"2013-10-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.531},{"date":"2013-10-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.463},{"date":"2013-10-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.663},{"date":"2013-10-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.696},{"date":"2013-10-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.652},{"date":"2013-10-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.779},{"date":"2013-10-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.886},{"date":"2013-10-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.886},{"date":"2013-10-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.372},{"date":"2013-10-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.311},{"date":"2013-10-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.498},{"date":"2013-10-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.294},{"date":"2013-10-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.235},{"date":"2013-10-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.417},{"date":"2013-10-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.475},{"date":"2013-10-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.4},{"date":"2013-10-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.621},{"date":"2013-10-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.644},{"date":"2013-10-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.591},{"date":"2013-10-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.742},{"date":"2013-10-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.87},{"date":"2013-10-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.87},{"date":"2013-11-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.343},{"date":"2013-11-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.284},{"date":"2013-11-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.463},{"date":"2013-11-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.265},{"date":"2013-11-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.209},{"date":"2013-11-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.382},{"date":"2013-11-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.441},{"date":"2013-11-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.366},{"date":"2013-11-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.584},{"date":"2013-11-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.614},{"date":"2013-11-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.564},{"date":"2013-11-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.708},{"date":"2013-11-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.857},{"date":"2013-11-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.857},{"date":"2013-11-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.274},{"date":"2013-11-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.21},{"date":"2013-11-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.405},{"date":"2013-11-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.194},{"date":"2013-11-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.133},{"date":"2013-11-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.323},{"date":"2013-11-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.38},{"date":"2013-11-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.303},{"date":"2013-11-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.528},{"date":"2013-11-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.552},{"date":"2013-11-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.498},{"date":"2013-11-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.651},{"date":"2013-11-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.832},{"date":"2013-11-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.832},{"date":"2013-11-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.298},{"date":"2013-11-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.239},{"date":"2013-11-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.419},{"date":"2013-11-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.219},{"date":"2013-11-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.161},{"date":"2013-11-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.341},{"date":"2013-11-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.401},{"date":"2013-11-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.333},{"date":"2013-11-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.532},{"date":"2013-11-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.573},{"date":"2013-11-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.526},{"date":"2013-11-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.661},{"date":"2013-11-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.822},{"date":"2013-11-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.822},{"date":"2013-11-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.372},{"date":"2013-11-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.32},{"date":"2013-11-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.478},{"date":"2013-11-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.293},{"date":"2013-11-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.241},{"date":"2013-11-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.401},{"date":"2013-11-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.47},{"date":"2013-11-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.413},{"date":"2013-11-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.581},{"date":"2013-11-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.649},{"date":"2013-11-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.611},{"date":"2013-11-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.719},{"date":"2013-11-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.844},{"date":"2013-11-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.844},{"date":"2013-12-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.353},{"date":"2013-12-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.29},{"date":"2013-12-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.482},{"date":"2013-12-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.272},{"date":"2013-12-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.209},{"date":"2013-12-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.403},{"date":"2013-12-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.457},{"date":"2013-12-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.387},{"date":"2013-12-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.592},{"date":"2013-12-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.635},{"date":"2013-12-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.585},{"date":"2013-12-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.729},{"date":"2013-12-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.883},{"date":"2013-12-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.883},{"date":"2013-12-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.35},{"date":"2013-12-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.287},{"date":"2013-12-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.478},{"date":"2013-12-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.269},{"date":"2013-12-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.208},{"date":"2013-12-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.397},{"date":"2013-12-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.453},{"date":"2013-12-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.381},{"date":"2013-12-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.591},{"date":"2013-12-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.632},{"date":"2013-12-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.579},{"date":"2013-12-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.73},{"date":"2013-12-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.879},{"date":"2013-12-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.879},{"date":"2013-12-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.321},{"date":"2013-12-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.245},{"date":"2013-12-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.475},{"date":"2013-12-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.239},{"date":"2013-12-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.165},{"date":"2013-12-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.395},{"date":"2013-12-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.423},{"date":"2013-12-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.339},{"date":"2013-12-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.585},{"date":"2013-12-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.605},{"date":"2013-12-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.541},{"date":"2013-12-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.725},{"date":"2013-12-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.871},{"date":"2013-12-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.871},{"date":"2013-12-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.351},{"date":"2013-12-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.277},{"date":"2013-12-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.502},{"date":"2013-12-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.271},{"date":"2013-12-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.198},{"date":"2013-12-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.422},{"date":"2013-12-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.451},{"date":"2013-12-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.368},{"date":"2013-12-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.613},{"date":"2013-12-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.632},{"date":"2013-12-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.567},{"date":"2013-12-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.751},{"date":"2013-12-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.873},{"date":"2013-12-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.873},{"date":"2013-12-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.409},{"date":"2013-12-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.34},{"date":"2013-12-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.548},{"date":"2013-12-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.331},{"date":"2013-12-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.264},{"date":"2013-12-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.471},{"date":"2013-12-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.503},{"date":"2013-12-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.425},{"date":"2013-12-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.654},{"date":"2013-12-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.682},{"date":"2013-12-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.625},{"date":"2013-12-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.789},{"date":"2013-12-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.903},{"date":"2013-12-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.903},{"date":"2014-01-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.411},{"date":"2014-01-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.34},{"date":"2014-01-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.557},{"date":"2014-01-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.332},{"date":"2014-01-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.261},{"date":"2014-01-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.48},{"date":"2014-01-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.513},{"date":"2014-01-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.434},{"date":"2014-01-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.665},{"date":"2014-01-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.69},{"date":"2014-01-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.633},{"date":"2014-01-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.796},{"date":"2014-01-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.91},{"date":"2014-01-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.91},{"date":"2014-01-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.406},{"date":"2014-01-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.345},{"date":"2014-01-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.53},{"date":"2014-01-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.327},{"date":"2014-01-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.267},{"date":"2014-01-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.452},{"date":"2014-01-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.505},{"date":"2014-01-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.435},{"date":"2014-01-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.641},{"date":"2014-01-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.683},{"date":"2014-01-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.636},{"date":"2014-01-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.771},{"date":"2014-01-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.886},{"date":"2014-01-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.886},{"date":"2014-01-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.376},{"date":"2014-01-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.319},{"date":"2014-01-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.494},{"date":"2014-01-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.296},{"date":"2014-01-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.24},{"date":"2014-01-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.414},{"date":"2014-01-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.477},{"date":"2014-01-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.41},{"date":"2014-01-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.607},{"date":"2014-01-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.657},{"date":"2014-01-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.611},{"date":"2014-01-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.741},{"date":"2014-01-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.873},{"date":"2014-01-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.873},{"date":"2014-01-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.375},{"date":"2014-01-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.32},{"date":"2014-01-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.486},{"date":"2014-01-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.295},{"date":"2014-01-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.241},{"date":"2014-01-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.407},{"date":"2014-01-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.474},{"date":"2014-01-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.41},{"date":"2014-01-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.598},{"date":"2014-01-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.654},{"date":"2014-01-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.612},{"date":"2014-01-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.731},{"date":"2014-01-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.904},{"date":"2014-01-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.904},{"date":"2014-02-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.372},{"date":"2014-02-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.322},{"date":"2014-02-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.475},{"date":"2014-02-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.292},{"date":"2014-02-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.243},{"date":"2014-02-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.395},{"date":"2014-02-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.475},{"date":"2014-02-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.415},{"date":"2014-02-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.59},{"date":"2014-02-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.651},{"date":"2014-02-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.612},{"date":"2014-02-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.723},{"date":"2014-02-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.951},{"date":"2014-02-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.951},{"date":"2014-02-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.388},{"date":"2014-02-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.335},{"date":"2014-02-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.496},{"date":"2014-02-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.309},{"date":"2014-02-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.257},{"date":"2014-02-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.417},{"date":"2014-02-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.487},{"date":"2014-02-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.423},{"date":"2014-02-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.61},{"date":"2014-02-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.664},{"date":"2014-02-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.623},{"date":"2014-02-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.739},{"date":"2014-02-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.977},{"date":"2014-02-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.977},{"date":"2014-02-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.457},{"date":"2014-02-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.402},{"date":"2014-02-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.569},{"date":"2014-02-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.38},{"date":"2014-02-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.326},{"date":"2014-02-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.492},{"date":"2014-02-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.555},{"date":"2014-02-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.491},{"date":"2014-02-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.678},{"date":"2014-02-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.728},{"date":"2014-02-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.686},{"date":"2014-02-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.806},{"date":"2014-02-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.989},{"date":"2014-02-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.989},{"date":"2014-02-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.52},{"date":"2014-02-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.469},{"date":"2014-02-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.624},{"date":"2014-02-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.444},{"date":"2014-02-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.394},{"date":"2014-02-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.55},{"date":"2014-02-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.615},{"date":"2014-02-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.555},{"date":"2014-02-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.73},{"date":"2014-02-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.783},{"date":"2014-02-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.747},{"date":"2014-02-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.85},{"date":"2014-02-24","fuel":"diesel","grade":"all","formulation":"NA","price":4.017},{"date":"2014-02-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.017},{"date":"2014-03-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.553},{"date":"2014-03-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.494},{"date":"2014-03-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.673},{"date":"2014-03-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.479},{"date":"2014-03-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.421},{"date":"2014-03-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.601},{"date":"2014-03-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.648},{"date":"2014-03-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.58},{"date":"2014-03-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.779},{"date":"2014-03-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.812},{"date":"2014-03-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.768},{"date":"2014-03-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.893},{"date":"2014-03-03","fuel":"diesel","grade":"all","formulation":"NA","price":4.016},{"date":"2014-03-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.016},{"date":"2014-03-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.584},{"date":"2014-03-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.523},{"date":"2014-03-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.707},{"date":"2014-03-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.512},{"date":"2014-03-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.452},{"date":"2014-03-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.637},{"date":"2014-03-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.674},{"date":"2014-03-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.605},{"date":"2014-03-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.81},{"date":"2014-03-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.835},{"date":"2014-03-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.788},{"date":"2014-03-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.923},{"date":"2014-03-10","fuel":"diesel","grade":"all","formulation":"NA","price":4.021},{"date":"2014-03-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.021},{"date":"2014-03-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.619},{"date":"2014-03-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.56},{"date":"2014-03-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.74},{"date":"2014-03-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.547},{"date":"2014-03-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.489},{"date":"2014-03-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.669},{"date":"2014-03-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.71},{"date":"2014-03-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.638},{"date":"2014-03-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.848},{"date":"2014-03-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.871},{"date":"2014-03-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.825},{"date":"2014-03-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.956},{"date":"2014-03-17","fuel":"diesel","grade":"all","formulation":"NA","price":4.003},{"date":"2014-03-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.003},{"date":"2014-03-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.622},{"date":"2014-03-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.559},{"date":"2014-03-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.751},{"date":"2014-03-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.549},{"date":"2014-03-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.487},{"date":"2014-03-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.68},{"date":"2014-03-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.716},{"date":"2014-03-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.642},{"date":"2014-03-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.859},{"date":"2014-03-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.876},{"date":"2014-03-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.828},{"date":"2014-03-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.965},{"date":"2014-03-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.988},{"date":"2014-03-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.988},{"date":"2014-03-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.651},{"date":"2014-03-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.592},{"date":"2014-03-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.771},{"date":"2014-03-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.579},{"date":"2014-03-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.521},{"date":"2014-03-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.701},{"date":"2014-03-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.743},{"date":"2014-03-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.673},{"date":"2014-03-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.879},{"date":"2014-03-31","fuel":"gasoline","grade":"premium","formulation":"all","price":3.904},{"date":"2014-03-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.86},{"date":"2014-03-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.984},{"date":"2014-03-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.975},{"date":"2014-03-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.975},{"date":"2014-04-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.67},{"date":"2014-04-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.607},{"date":"2014-04-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.798},{"date":"2014-04-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.596},{"date":"2014-04-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.533},{"date":"2014-04-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.728},{"date":"2014-04-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.769},{"date":"2014-04-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.697},{"date":"2014-04-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.907},{"date":"2014-04-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.928},{"date":"2014-04-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.884},{"date":"2014-04-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.009},{"date":"2014-04-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.959},{"date":"2014-04-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.959},{"date":"2014-04-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.725},{"date":"2014-04-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.655},{"date":"2014-04-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.867},{"date":"2014-04-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.651},{"date":"2014-04-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.581},{"date":"2014-04-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.798},{"date":"2014-04-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.823},{"date":"2014-04-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.743},{"date":"2014-04-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.978},{"date":"2014-04-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.976},{"date":"2014-04-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.927},{"date":"2014-04-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.068},{"date":"2014-04-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.952},{"date":"2014-04-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.952},{"date":"2014-04-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.758},{"date":"2014-04-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.687},{"date":"2014-04-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.901},{"date":"2014-04-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.683},{"date":"2014-04-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.612},{"date":"2014-04-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.832},{"date":"2014-04-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.857},{"date":"2014-04-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.779},{"date":"2014-04-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.01},{"date":"2014-04-21","fuel":"gasoline","grade":"premium","formulation":"all","price":4.014},{"date":"2014-04-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.966},{"date":"2014-04-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.104},{"date":"2014-04-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.971},{"date":"2014-04-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.971},{"date":"2014-04-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.788},{"date":"2014-04-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.71},{"date":"2014-04-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.947},{"date":"2014-04-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.713},{"date":"2014-04-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.635},{"date":"2014-04-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.879},{"date":"2014-04-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.888},{"date":"2014-04-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.802},{"date":"2014-04-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.055},{"date":"2014-04-28","fuel":"gasoline","grade":"premium","formulation":"all","price":4.047},{"date":"2014-04-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.991},{"date":"2014-04-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.152},{"date":"2014-04-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.975},{"date":"2014-04-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.975},{"date":"2014-05-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.761},{"date":"2014-05-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.683},{"date":"2014-05-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.92},{"date":"2014-05-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.684},{"date":"2014-05-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.606},{"date":"2014-05-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.849},{"date":"2014-05-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.864},{"date":"2014-05-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.777},{"date":"2014-05-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.033},{"date":"2014-05-05","fuel":"gasoline","grade":"premium","formulation":"all","price":4.027},{"date":"2014-05-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.971},{"date":"2014-05-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.13},{"date":"2014-05-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.964},{"date":"2014-05-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.964},{"date":"2014-05-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.746},{"date":"2014-05-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.675},{"date":"2014-05-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.89},{"date":"2014-05-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.668},{"date":"2014-05-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.597},{"date":"2014-05-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.817},{"date":"2014-05-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.85},{"date":"2014-05-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.771},{"date":"2014-05-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.003},{"date":"2014-05-12","fuel":"gasoline","grade":"premium","formulation":"all","price":4.015},{"date":"2014-05-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.966},{"date":"2014-05-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.107},{"date":"2014-05-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.948},{"date":"2014-05-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.948},{"date":"2014-05-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.743},{"date":"2014-05-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.671},{"date":"2014-05-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.889},{"date":"2014-05-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.665},{"date":"2014-05-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.593},{"date":"2014-05-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.816},{"date":"2014-05-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.844},{"date":"2014-05-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.763},{"date":"2014-05-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.002},{"date":"2014-05-19","fuel":"gasoline","grade":"premium","formulation":"all","price":4.011},{"date":"2014-05-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.96},{"date":"2014-05-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.106},{"date":"2014-05-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.934},{"date":"2014-05-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.934},{"date":"2014-05-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.75},{"date":"2014-05-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.683},{"date":"2014-05-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.887},{"date":"2014-05-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.674},{"date":"2014-05-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.607},{"date":"2014-05-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.815},{"date":"2014-05-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.85},{"date":"2014-05-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.773},{"date":"2014-05-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.998},{"date":"2014-05-26","fuel":"gasoline","grade":"premium","formulation":"all","price":4.014},{"date":"2014-05-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.966},{"date":"2014-05-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.102},{"date":"2014-05-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.925},{"date":"2014-05-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.925},{"date":"2014-06-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.765},{"date":"2014-06-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.699},{"date":"2014-06-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.9},{"date":"2014-06-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.69},{"date":"2014-06-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.624},{"date":"2014-06-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.83},{"date":"2014-06-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.862},{"date":"2014-06-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.786},{"date":"2014-06-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.009},{"date":"2014-06-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.024},{"date":"2014-06-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.977},{"date":"2014-06-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.113},{"date":"2014-06-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.918},{"date":"2014-06-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.918},{"date":"2014-06-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.749},{"date":"2014-06-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.683},{"date":"2014-06-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.882},{"date":"2014-06-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.674},{"date":"2014-06-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.61},{"date":"2014-06-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.811},{"date":"2014-06-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.844},{"date":"2014-06-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.768},{"date":"2014-06-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.992},{"date":"2014-06-09","fuel":"gasoline","grade":"premium","formulation":"all","price":4.008},{"date":"2014-06-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.959},{"date":"2014-06-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.098},{"date":"2014-06-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.892},{"date":"2014-06-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.892},{"date":"2014-06-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.76},{"date":"2014-06-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.694},{"date":"2014-06-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.894},{"date":"2014-06-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.686},{"date":"2014-06-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.621},{"date":"2014-06-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.824},{"date":"2014-06-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.853},{"date":"2014-06-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.777},{"date":"2014-06-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4},{"date":"2014-06-16","fuel":"gasoline","grade":"premium","formulation":"all","price":4.016},{"date":"2014-06-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.966},{"date":"2014-06-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.109},{"date":"2014-06-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.882},{"date":"2014-06-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.882},{"date":"2014-06-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.778},{"date":"2014-06-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.713},{"date":"2014-06-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.911},{"date":"2014-06-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.704},{"date":"2014-06-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.639},{"date":"2014-06-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.84},{"date":"2014-06-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.873},{"date":"2014-06-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.8},{"date":"2014-06-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.016},{"date":"2014-06-23","fuel":"gasoline","grade":"premium","formulation":"all","price":4.036},{"date":"2014-06-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.988},{"date":"2014-06-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.126},{"date":"2014-06-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.919},{"date":"2014-06-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.919},{"date":"2014-06-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.778},{"date":"2014-06-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.708},{"date":"2014-06-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.921},{"date":"2014-06-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.704},{"date":"2014-06-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.635},{"date":"2014-06-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.85},{"date":"2014-06-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.872},{"date":"2014-06-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.793},{"date":"2014-06-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.024},{"date":"2014-06-30","fuel":"gasoline","grade":"premium","formulation":"all","price":4.036},{"date":"2014-06-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.981},{"date":"2014-06-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.137},{"date":"2014-06-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.92},{"date":"2014-06-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.92},{"date":"2014-07-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.753},{"date":"2014-07-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.68},{"date":"2014-07-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.903},{"date":"2014-07-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.678},{"date":"2014-07-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.605},{"date":"2014-07-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.831},{"date":"2014-07-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.849},{"date":"2014-07-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.766},{"date":"2014-07-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.01},{"date":"2014-07-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.015},{"date":"2014-07-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.957},{"date":"2014-07-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.123},{"date":"2014-07-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.913},{"date":"2014-07-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.913},{"date":"2014-07-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.712},{"date":"2014-07-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.635},{"date":"2014-07-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.868},{"date":"2014-07-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.635},{"date":"2014-07-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.56},{"date":"2014-07-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.793},{"date":"2014-07-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.811},{"date":"2014-07-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.725},{"date":"2014-07-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.979},{"date":"2014-07-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.978},{"date":"2014-07-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.915},{"date":"2014-07-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.094},{"date":"2014-07-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.894},{"date":"2014-07-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.894},{"date":"2014-07-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.671},{"date":"2014-07-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.599},{"date":"2014-07-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.816},{"date":"2014-07-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.593},{"date":"2014-07-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.523},{"date":"2014-07-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.741},{"date":"2014-07-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.773},{"date":"2014-07-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.692},{"date":"2014-07-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.93},{"date":"2014-07-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.938},{"date":"2014-07-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.881},{"date":"2014-07-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.045},{"date":"2014-07-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.869},{"date":"2014-07-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.869},{"date":"2014-07-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.617},{"date":"2014-07-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.544},{"date":"2014-07-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.766},{"date":"2014-07-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.539},{"date":"2014-07-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.468},{"date":"2014-07-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.687},{"date":"2014-07-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.723},{"date":"2014-07-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.639},{"date":"2014-07-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.886},{"date":"2014-07-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.888},{"date":"2014-07-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.825},{"date":"2014-07-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.005},{"date":"2014-07-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.858},{"date":"2014-07-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.858},{"date":"2014-08-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.595},{"date":"2014-08-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.526},{"date":"2014-08-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.734},{"date":"2014-08-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.515},{"date":"2014-08-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.449},{"date":"2014-08-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.655},{"date":"2014-08-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.701},{"date":"2014-08-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.622},{"date":"2014-08-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.854},{"date":"2014-08-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.866},{"date":"2014-08-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.81},{"date":"2014-08-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.971},{"date":"2014-08-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.853},{"date":"2014-08-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.853},{"date":"2014-08-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.582},{"date":"2014-08-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.522},{"date":"2014-08-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.705},{"date":"2014-08-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.505},{"date":"2014-08-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.447},{"date":"2014-08-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.628},{"date":"2014-08-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.684},{"date":"2014-08-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.612},{"date":"2014-08-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.822},{"date":"2014-08-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.85},{"date":"2014-08-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.8},{"date":"2014-08-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.941},{"date":"2014-08-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.843},{"date":"2014-08-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.843},{"date":"2014-08-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.549},{"date":"2014-08-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.484},{"date":"2014-08-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.682},{"date":"2014-08-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.472},{"date":"2014-08-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.408},{"date":"2014-08-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.605},{"date":"2014-08-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.653},{"date":"2014-08-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.577},{"date":"2014-08-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.8},{"date":"2014-08-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.816},{"date":"2014-08-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.764},{"date":"2014-08-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.915},{"date":"2014-08-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.835},{"date":"2014-08-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.835},{"date":"2014-08-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.532},{"date":"2014-08-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.473},{"date":"2014-08-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.653},{"date":"2014-08-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.454},{"date":"2014-08-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.397},{"date":"2014-08-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.574},{"date":"2014-08-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.635},{"date":"2014-08-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.563},{"date":"2014-08-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.773},{"date":"2014-08-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.8},{"date":"2014-08-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.753},{"date":"2014-08-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.889},{"date":"2014-08-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.821},{"date":"2014-08-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.821},{"date":"2014-09-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.536},{"date":"2014-09-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.486},{"date":"2014-09-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.638},{"date":"2014-09-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.459},{"date":"2014-09-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.41},{"date":"2014-09-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.561},{"date":"2014-09-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.638},{"date":"2014-09-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.577},{"date":"2014-09-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.755},{"date":"2014-09-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.803},{"date":"2014-09-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.767},{"date":"2014-09-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.871},{"date":"2014-09-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.814},{"date":"2014-09-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.814},{"date":"2014-09-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.534},{"date":"2014-09-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.482},{"date":"2014-09-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.639},{"date":"2014-09-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.457},{"date":"2014-09-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.406},{"date":"2014-09-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.563},{"date":"2014-09-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.632},{"date":"2014-09-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.571},{"date":"2014-09-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.751},{"date":"2014-09-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.801},{"date":"2014-09-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.763},{"date":"2014-09-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.871},{"date":"2014-09-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.814},{"date":"2014-09-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.814},{"date":"2014-09-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.485},{"date":"2014-09-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.428},{"date":"2014-09-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.601},{"date":"2014-09-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.408},{"date":"2014-09-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.352},{"date":"2014-09-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.525},{"date":"2014-09-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.585},{"date":"2014-09-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.518},{"date":"2014-09-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.713},{"date":"2014-09-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.754},{"date":"2014-09-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.712},{"date":"2014-09-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.833},{"date":"2014-09-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.801},{"date":"2014-09-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.801},{"date":"2014-09-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.432},{"date":"2014-09-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.375},{"date":"2014-09-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.549},{"date":"2014-09-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.353},{"date":"2014-09-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.296},{"date":"2014-09-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.472},{"date":"2014-09-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.536},{"date":"2014-09-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.47},{"date":"2014-09-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.662},{"date":"2014-09-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.707},{"date":"2014-09-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.666},{"date":"2014-09-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.784},{"date":"2014-09-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.778},{"date":"2014-09-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.778},{"date":"2014-09-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.434},{"date":"2014-09-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.384},{"date":"2014-09-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.537},{"date":"2014-09-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.354},{"date":"2014-09-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.304},{"date":"2014-09-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.459},{"date":"2014-09-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.537},{"date":"2014-09-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.478},{"date":"2014-09-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.652},{"date":"2014-09-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.71},{"date":"2014-09-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.677},{"date":"2014-09-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.773},{"date":"2014-09-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.755},{"date":"2014-09-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.755},{"date":"2014-10-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.382},{"date":"2014-10-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.329},{"date":"2014-10-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.49},{"date":"2014-10-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.299},{"date":"2014-10-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.246},{"date":"2014-10-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.41},{"date":"2014-10-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.492},{"date":"2014-10-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.432},{"date":"2014-10-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.609},{"date":"2014-10-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.667},{"date":"2014-10-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.631},{"date":"2014-10-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.733},{"date":"2014-10-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.733},{"date":"2014-10-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.733},{"date":"2014-10-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.292},{"date":"2014-10-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.229},{"date":"2014-10-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.418},{"date":"2014-10-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.207},{"date":"2014-10-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.147},{"date":"2014-10-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.334},{"date":"2014-10-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.406},{"date":"2014-10-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.335},{"date":"2014-10-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.544},{"date":"2014-10-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.581},{"date":"2014-10-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.532},{"date":"2014-10-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.673},{"date":"2014-10-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.698},{"date":"2014-10-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.698},{"date":"2014-10-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.205},{"date":"2014-10-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.154},{"date":"2014-10-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.309},{"date":"2014-10-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.12},{"date":"2014-10-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.07},{"date":"2014-10-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.223},{"date":"2014-10-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.319},{"date":"2014-10-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.257},{"date":"2014-10-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.439},{"date":"2014-10-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.499},{"date":"2014-10-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.46},{"date":"2014-10-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.571},{"date":"2014-10-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.656},{"date":"2014-10-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.656},{"date":"2014-10-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.139},{"date":"2014-10-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.094},{"date":"2014-10-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.231},{"date":"2014-10-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.056},{"date":"2014-10-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.016},{"date":"2014-10-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.142},{"date":"2014-10-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.248},{"date":"2014-10-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.188},{"date":"2014-10-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.364},{"date":"2014-10-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.425},{"date":"2014-10-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.385},{"date":"2014-10-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.5},{"date":"2014-10-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.635},{"date":"2014-10-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.635},{"date":"2014-11-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.077},{"date":"2014-11-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.037},{"date":"2014-11-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.16},{"date":"2014-11-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.993},{"date":"2014-11-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.956},{"date":"2014-11-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.071},{"date":"2014-11-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.187},{"date":"2014-11-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.133},{"date":"2014-11-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.29},{"date":"2014-11-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.369},{"date":"2014-11-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.335},{"date":"2014-11-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.432},{"date":"2014-11-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.623},{"date":"2014-11-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.623},{"date":"2014-11-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.025},{"date":"2014-11-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.988},{"date":"2014-11-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.1},{"date":"2014-11-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.941},{"date":"2014-11-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.907},{"date":"2014-11-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.012},{"date":"2014-11-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.134},{"date":"2014-11-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.085},{"date":"2014-11-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.229},{"date":"2014-11-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.315},{"date":"2014-11-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.286},{"date":"2014-11-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.37},{"date":"2014-11-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.677},{"date":"2014-11-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.677},{"date":"2014-11-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.978},{"date":"2014-11-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.938},{"date":"2014-11-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.06},{"date":"2014-11-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.894},{"date":"2014-11-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.856},{"date":"2014-11-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.973},{"date":"2014-11-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.088},{"date":"2014-11-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.037},{"date":"2014-11-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.186},{"date":"2014-11-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.27},{"date":"2014-11-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.239},{"date":"2014-11-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.328},{"date":"2014-11-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.661},{"date":"2014-11-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.661},{"date":"2014-11-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.907},{"date":"2014-11-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.864},{"date":"2014-11-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.994},{"date":"2014-11-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.821},{"date":"2014-11-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.781},{"date":"2014-11-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.904},{"date":"2014-11-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.019},{"date":"2014-11-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.964},{"date":"2014-11-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.125},{"date":"2014-11-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.205},{"date":"2014-11-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.17},{"date":"2014-11-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.271},{"date":"2014-11-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.628},{"date":"2014-11-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.628},{"date":"2014-12-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.864},{"date":"2014-12-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.821},{"date":"2014-12-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.953},{"date":"2014-12-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.778},{"date":"2014-12-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.738},{"date":"2014-12-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.861},{"date":"2014-12-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.978},{"date":"2014-12-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.922},{"date":"2014-12-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.086},{"date":"2014-12-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.164},{"date":"2014-12-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.127},{"date":"2014-12-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.234},{"date":"2014-12-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.605},{"date":"2014-12-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.605},{"date":"2014-12-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.767},{"date":"2014-12-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.718},{"date":"2014-12-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.869},{"date":"2014-12-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.679},{"date":"2014-12-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.634},{"date":"2014-12-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.776},{"date":"2014-12-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.882},{"date":"2014-12-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.819},{"date":"2014-12-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.003},{"date":"2014-12-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.072},{"date":"2014-12-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.028},{"date":"2014-12-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.153},{"date":"2014-12-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.535},{"date":"2014-12-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.535},{"date":"2014-12-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.643},{"date":"2014-12-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.586},{"date":"2014-12-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.76},{"date":"2014-12-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.554},{"date":"2014-12-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.499},{"date":"2014-12-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.667},{"date":"2014-12-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.763},{"date":"2014-12-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.694},{"date":"2014-12-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.895},{"date":"2014-12-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.951},{"date":"2014-12-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.902},{"date":"2014-12-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.041},{"date":"2014-12-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.419},{"date":"2014-12-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.419},{"date":"2014-12-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.496},{"date":"2014-12-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.43},{"date":"2014-12-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.629},{"date":"2014-12-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.403},{"date":"2014-12-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.341},{"date":"2014-12-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.535},{"date":"2014-12-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.619},{"date":"2014-12-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.544},{"date":"2014-12-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.766},{"date":"2014-12-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.813},{"date":"2014-12-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.757},{"date":"2014-12-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.917},{"date":"2014-12-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.281},{"date":"2014-12-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.281},{"date":"2014-12-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.392},{"date":"2014-12-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.32},{"date":"2014-12-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.539},{"date":"2014-12-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.299},{"date":"2014-12-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.229},{"date":"2014-12-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.445},{"date":"2014-12-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.517},{"date":"2014-12-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.436},{"date":"2014-12-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.675},{"date":"2014-12-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.713},{"date":"2014-12-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.651},{"date":"2014-12-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.828},{"date":"2014-12-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.213},{"date":"2014-12-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.213},{"date":"2015-01-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.308},{"date":"2015-01-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.228},{"date":"2015-01-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.472},{"date":"2015-01-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.214},{"date":"2015-01-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.136},{"date":"2015-01-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.378},{"date":"2015-01-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.437},{"date":"2015-01-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.346},{"date":"2015-01-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.614},{"date":"2015-01-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.631},{"date":"2015-01-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.562},{"date":"2015-01-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.759},{"date":"2015-01-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.137},{"date":"2015-01-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.137},{"date":"2015-01-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.232},{"date":"2015-01-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.157},{"date":"2015-01-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.386},{"date":"2015-01-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.139},{"date":"2015-01-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.066},{"date":"2015-01-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.293},{"date":"2015-01-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.358},{"date":"2015-01-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.273},{"date":"2015-01-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.524},{"date":"2015-01-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.553},{"date":"2015-01-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.492},{"date":"2015-01-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.668},{"date":"2015-01-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.053},{"date":"2015-01-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.053},{"date":"2015-01-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.157},{"date":"2015-01-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.089},{"date":"2015-01-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.295},{"date":"2015-01-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.066},{"date":"2015-01-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.999},{"date":"2015-01-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.204},{"date":"2015-01-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.277},{"date":"2015-01-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.198},{"date":"2015-01-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.43},{"date":"2015-01-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.473},{"date":"2015-01-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.42},{"date":"2015-01-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.573},{"date":"2015-01-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.933},{"date":"2015-01-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.933},{"date":"2015-01-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.133},{"date":"2015-01-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.069},{"date":"2015-01-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.264},{"date":"2015-01-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.044},{"date":"2015-01-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.982},{"date":"2015-01-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.174},{"date":"2015-01-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.25},{"date":"2015-01-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.173},{"date":"2015-01-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.399},{"date":"2015-01-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.444},{"date":"2015-01-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.393},{"date":"2015-01-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.538},{"date":"2015-01-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.866},{"date":"2015-01-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.866},{"date":"2015-02-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.154},{"date":"2015-02-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.097},{"date":"2015-02-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.271},{"date":"2015-02-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.068},{"date":"2015-02-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.013},{"date":"2015-02-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.183},{"date":"2015-02-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.268},{"date":"2015-02-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.198},{"date":"2015-02-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.402},{"date":"2015-02-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.454},{"date":"2015-02-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.409},{"date":"2015-02-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.536},{"date":"2015-02-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.831},{"date":"2015-02-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.831},{"date":"2015-02-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.276},{"date":"2015-02-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.216},{"date":"2015-02-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.397},{"date":"2015-02-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.191},{"date":"2015-02-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.133},{"date":"2015-02-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.313},{"date":"2015-02-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.388},{"date":"2015-02-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.318},{"date":"2015-02-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.524},{"date":"2015-02-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.568},{"date":"2015-02-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.524},{"date":"2015-02-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.648},{"date":"2015-02-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.835},{"date":"2015-02-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.835},{"date":"2015-02-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.358},{"date":"2015-02-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.29},{"date":"2015-02-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.498},{"date":"2015-02-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.274},{"date":"2015-02-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.206},{"date":"2015-02-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.416},{"date":"2015-02-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.467},{"date":"2015-02-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.384},{"date":"2015-02-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.627},{"date":"2015-02-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.651},{"date":"2015-02-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.6},{"date":"2015-02-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.746},{"date":"2015-02-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.865},{"date":"2015-02-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.865},{"date":"2015-02-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.415},{"date":"2015-02-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.338},{"date":"2015-02-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.573},{"date":"2015-02-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.332},{"date":"2015-02-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.256},{"date":"2015-02-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.491},{"date":"2015-02-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.526},{"date":"2015-02-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.432},{"date":"2015-02-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.708},{"date":"2015-02-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.704},{"date":"2015-02-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.645},{"date":"2015-02-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.815},{"date":"2015-02-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.9},{"date":"2015-02-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.9},{"date":"2015-03-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.556},{"date":"2015-03-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.441},{"date":"2015-03-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.79},{"date":"2015-03-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.473},{"date":"2015-03-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.36},{"date":"2015-03-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.71},{"date":"2015-03-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.671},{"date":"2015-03-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.534},{"date":"2015-03-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.937},{"date":"2015-03-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.837},{"date":"2015-03-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.741},{"date":"2015-03-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.017},{"date":"2015-03-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.936},{"date":"2015-03-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.936},{"date":"2015-03-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.57},{"date":"2015-03-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.448},{"date":"2015-03-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.819},{"date":"2015-03-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.487},{"date":"2015-03-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.367},{"date":"2015-03-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.739},{"date":"2015-03-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.686},{"date":"2015-03-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.542},{"date":"2015-03-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.964},{"date":"2015-03-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.853},{"date":"2015-03-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.749},{"date":"2015-03-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.045},{"date":"2015-03-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.944},{"date":"2015-03-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.944},{"date":"2015-03-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.537},{"date":"2015-03-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.42},{"date":"2015-03-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.776},{"date":"2015-03-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.453},{"date":"2015-03-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.339},{"date":"2015-03-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.693},{"date":"2015-03-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.652},{"date":"2015-03-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.514},{"date":"2015-03-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.919},{"date":"2015-03-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.824},{"date":"2015-03-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.721},{"date":"2015-03-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.015},{"date":"2015-03-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.917},{"date":"2015-03-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.917},{"date":"2015-03-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.538},{"date":"2015-03-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.427},{"date":"2015-03-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.764},{"date":"2015-03-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.457},{"date":"2015-03-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.347},{"date":"2015-03-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.685},{"date":"2015-03-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.65},{"date":"2015-03-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.519},{"date":"2015-03-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.903},{"date":"2015-03-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.817},{"date":"2015-03-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.725},{"date":"2015-03-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.987},{"date":"2015-03-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.864},{"date":"2015-03-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.864},{"date":"2015-03-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.531},{"date":"2015-03-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.43},{"date":"2015-03-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.737},{"date":"2015-03-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.448},{"date":"2015-03-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.348},{"date":"2015-03-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.658},{"date":"2015-03-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.649},{"date":"2015-03-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.53},{"date":"2015-03-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.877},{"date":"2015-03-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.814},{"date":"2015-03-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.733},{"date":"2015-03-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.964},{"date":"2015-03-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.824},{"date":"2015-03-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.824},{"date":"2015-04-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.499},{"date":"2015-04-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.399},{"date":"2015-04-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.701},{"date":"2015-04-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.413},{"date":"2015-04-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.315},{"date":"2015-04-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.619},{"date":"2015-04-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.617},{"date":"2015-04-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.502},{"date":"2015-04-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.839},{"date":"2015-04-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.789},{"date":"2015-04-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.709},{"date":"2015-04-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.938},{"date":"2015-04-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.784},{"date":"2015-04-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.784},{"date":"2015-04-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.494},{"date":"2015-04-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.402},{"date":"2015-04-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.68},{"date":"2015-04-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.408},{"date":"2015-04-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.317},{"date":"2015-04-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.598},{"date":"2015-04-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.616},{"date":"2015-04-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.51},{"date":"2015-04-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.821},{"date":"2015-04-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.786},{"date":"2015-04-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.714},{"date":"2015-04-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.919},{"date":"2015-04-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.754},{"date":"2015-04-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.754},{"date":"2015-04-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.57},{"date":"2015-04-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.477},{"date":"2015-04-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.759},{"date":"2015-04-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.485},{"date":"2015-04-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.393},{"date":"2015-04-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.679},{"date":"2015-04-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.686},{"date":"2015-04-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.582},{"date":"2015-04-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.888},{"date":"2015-04-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.857},{"date":"2015-04-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.785},{"date":"2015-04-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.992},{"date":"2015-04-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.78},{"date":"2015-04-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.78},{"date":"2015-04-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.656},{"date":"2015-04-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.536},{"date":"2015-04-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.899},{"date":"2015-04-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.57},{"date":"2015-04-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.451},{"date":"2015-04-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.821},{"date":"2015-04-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.777},{"date":"2015-04-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.643},{"date":"2015-04-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.036},{"date":"2015-04-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.947},{"date":"2015-04-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.85},{"date":"2015-04-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.126},{"date":"2015-04-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.811},{"date":"2015-04-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.811},{"date":"2015-05-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.749},{"date":"2015-05-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.601},{"date":"2015-05-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.049},{"date":"2015-05-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.664},{"date":"2015-05-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.517},{"date":"2015-05-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.971},{"date":"2015-05-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.87},{"date":"2015-05-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.703},{"date":"2015-05-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.192},{"date":"2015-05-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.036},{"date":"2015-05-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.911},{"date":"2015-05-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.269},{"date":"2015-05-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.854},{"date":"2015-05-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.854},{"date":"2015-05-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.776},{"date":"2015-05-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.631},{"date":"2015-05-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.072},{"date":"2015-05-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.691},{"date":"2015-05-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.547},{"date":"2015-05-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.995},{"date":"2015-05-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.9},{"date":"2015-05-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.738},{"date":"2015-05-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.214},{"date":"2015-05-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.063},{"date":"2015-05-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.94},{"date":"2015-05-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.291},{"date":"2015-05-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.878},{"date":"2015-05-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.878},{"date":"2015-05-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.827},{"date":"2015-05-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.687},{"date":"2015-05-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.114},{"date":"2015-05-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.744},{"date":"2015-05-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.604},{"date":"2015-05-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.037},{"date":"2015-05-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.949},{"date":"2015-05-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.789},{"date":"2015-05-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.26},{"date":"2015-05-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.109},{"date":"2015-05-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.991},{"date":"2015-05-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.328},{"date":"2015-05-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.904},{"date":"2015-05-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.904},{"date":"2015-05-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.857},{"date":"2015-05-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.724},{"date":"2015-05-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.129},{"date":"2015-05-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.774},{"date":"2015-05-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.642},{"date":"2015-05-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.051},{"date":"2015-05-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.975},{"date":"2015-05-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.825},{"date":"2015-05-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.267},{"date":"2015-05-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.14},{"date":"2015-05-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.026},{"date":"2015-05-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.351},{"date":"2015-05-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.914},{"date":"2015-05-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.914},{"date":"2015-06-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.863},{"date":"2015-06-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.738},{"date":"2015-06-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.118},{"date":"2015-06-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.78},{"date":"2015-06-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.656},{"date":"2015-06-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.041},{"date":"2015-06-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.978},{"date":"2015-06-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.837},{"date":"2015-06-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.25},{"date":"2015-06-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.143},{"date":"2015-06-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.038},{"date":"2015-06-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.338},{"date":"2015-06-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.909},{"date":"2015-06-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.909},{"date":"2015-06-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.863},{"date":"2015-06-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.751},{"date":"2015-06-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.093},{"date":"2015-06-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.78},{"date":"2015-06-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.668},{"date":"2015-06-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.014},{"date":"2015-06-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.977},{"date":"2015-06-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.849},{"date":"2015-06-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.224},{"date":"2015-06-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.15},{"date":"2015-06-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.057},{"date":"2015-06-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.323},{"date":"2015-06-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.884},{"date":"2015-06-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.884},{"date":"2015-06-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.918},{"date":"2015-06-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.825},{"date":"2015-06-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.105},{"date":"2015-06-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.835},{"date":"2015-06-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.744},{"date":"2015-06-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.028},{"date":"2015-06-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.025},{"date":"2015-06-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.922},{"date":"2015-06-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.225},{"date":"2015-06-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.202},{"date":"2015-06-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.128},{"date":"2015-06-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.338},{"date":"2015-06-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.87},{"date":"2015-06-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.87},{"date":"2015-06-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.895},{"date":"2015-06-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.803},{"date":"2015-06-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.082},{"date":"2015-06-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.812},{"date":"2015-06-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.72},{"date":"2015-06-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.004},{"date":"2015-06-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.006},{"date":"2015-06-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.902},{"date":"2015-06-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.206},{"date":"2015-06-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.182},{"date":"2015-06-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.109},{"date":"2015-06-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.317},{"date":"2015-06-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.859},{"date":"2015-06-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.859},{"date":"2015-06-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.885},{"date":"2015-06-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.796},{"date":"2015-06-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.066},{"date":"2015-06-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.801},{"date":"2015-06-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.713},{"date":"2015-06-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.985},{"date":"2015-06-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.997},{"date":"2015-06-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.896},{"date":"2015-06-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.193},{"date":"2015-06-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.175},{"date":"2015-06-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.103},{"date":"2015-06-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.31},{"date":"2015-06-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.843},{"date":"2015-06-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.843},{"date":"2015-07-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.877},{"date":"2015-07-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.786},{"date":"2015-07-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.063},{"date":"2015-07-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.793},{"date":"2015-07-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.702},{"date":"2015-07-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.982},{"date":"2015-07-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.99},{"date":"2015-07-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.887},{"date":"2015-07-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.188},{"date":"2015-07-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.168},{"date":"2015-07-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.093},{"date":"2015-07-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.307},{"date":"2015-07-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.832},{"date":"2015-07-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.832},{"date":"2015-07-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.92},{"date":"2015-07-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.778},{"date":"2015-07-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.21},{"date":"2015-07-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.834},{"date":"2015-07-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.694},{"date":"2015-07-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.127},{"date":"2015-07-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.044},{"date":"2015-07-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.878},{"date":"2015-07-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.364},{"date":"2015-07-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.213},{"date":"2015-07-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.087},{"date":"2015-07-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.446},{"date":"2015-07-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.814},{"date":"2015-07-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.814},{"date":"2015-07-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.888},{"date":"2015-07-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.744},{"date":"2015-07-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.183},{"date":"2015-07-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.802},{"date":"2015-07-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.661},{"date":"2015-07-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.098},{"date":"2015-07-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.012},{"date":"2015-07-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.841},{"date":"2015-07-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.343},{"date":"2015-07-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.179},{"date":"2015-07-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.049},{"date":"2015-07-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.419},{"date":"2015-07-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.782},{"date":"2015-07-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.782},{"date":"2015-07-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.833},{"date":"2015-07-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.69},{"date":"2015-07-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.124},{"date":"2015-07-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.745},{"date":"2015-07-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.605},{"date":"2015-07-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.037},{"date":"2015-07-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.96},{"date":"2015-07-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.792},{"date":"2015-07-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.286},{"date":"2015-07-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.129},{"date":"2015-07-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.002},{"date":"2015-07-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.365},{"date":"2015-07-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.723},{"date":"2015-07-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.723},{"date":"2015-08-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.779},{"date":"2015-08-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.641},{"date":"2015-08-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.06},{"date":"2015-08-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.689},{"date":"2015-08-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.555},{"date":"2015-08-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.971},{"date":"2015-08-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.909},{"date":"2015-08-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.745},{"date":"2015-08-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.225},{"date":"2015-08-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.083},{"date":"2015-08-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.959},{"date":"2015-08-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.314},{"date":"2015-08-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.668},{"date":"2015-08-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.668},{"date":"2015-08-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.72},{"date":"2015-08-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.594},{"date":"2015-08-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.977},{"date":"2015-08-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.629},{"date":"2015-08-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.505},{"date":"2015-08-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.888},{"date":"2015-08-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.85},{"date":"2015-08-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.703},{"date":"2015-08-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.134},{"date":"2015-08-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.03},{"date":"2015-08-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.92},{"date":"2015-08-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.236},{"date":"2015-08-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.617},{"date":"2015-08-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.617},{"date":"2015-08-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.803},{"date":"2015-08-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.691},{"date":"2015-08-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.029},{"date":"2015-08-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.716},{"date":"2015-08-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.608},{"date":"2015-08-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.943},{"date":"2015-08-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.927},{"date":"2015-08-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.794},{"date":"2015-08-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.184},{"date":"2015-08-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.096},{"date":"2015-08-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.999},{"date":"2015-08-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.276},{"date":"2015-08-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.615},{"date":"2015-08-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.615},{"date":"2015-08-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.726},{"date":"2015-08-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.62},{"date":"2015-08-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.941},{"date":"2015-08-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.637},{"date":"2015-08-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.534},{"date":"2015-08-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.853},{"date":"2015-08-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.854},{"date":"2015-08-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.728},{"date":"2015-08-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.098},{"date":"2015-08-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.027},{"date":"2015-08-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.936},{"date":"2015-08-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.197},{"date":"2015-08-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.561},{"date":"2015-08-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.561},{"date":"2015-08-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.602},{"date":"2015-08-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.496},{"date":"2015-08-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.819},{"date":"2015-08-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.51},{"date":"2015-08-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.406},{"date":"2015-08-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.727},{"date":"2015-08-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.734},{"date":"2015-08-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.606},{"date":"2015-08-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.981},{"date":"2015-08-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.916},{"date":"2015-08-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.824},{"date":"2015-08-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.087},{"date":"2015-08-31","fuel":"diesel","grade":"all","formulation":"NA","price":2.514},{"date":"2015-08-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.514},{"date":"2015-09-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.532},{"date":"2015-09-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.428},{"date":"2015-09-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.743},{"date":"2015-09-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.437},{"date":"2015-09-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.337},{"date":"2015-09-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.648},{"date":"2015-09-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.662},{"date":"2015-09-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.536},{"date":"2015-09-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.908},{"date":"2015-09-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.853},{"date":"2015-09-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.764},{"date":"2015-09-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.02},{"date":"2015-09-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.534},{"date":"2015-09-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.534},{"date":"2015-09-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.471},{"date":"2015-09-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.374},{"date":"2015-09-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.67},{"date":"2015-09-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.375},{"date":"2015-09-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.28},{"date":"2015-09-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.573},{"date":"2015-09-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.605},{"date":"2015-09-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.488},{"date":"2015-09-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.833},{"date":"2015-09-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.801},{"date":"2015-09-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.72},{"date":"2015-09-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.952},{"date":"2015-09-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.517},{"date":"2015-09-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.517},{"date":"2015-09-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.425},{"date":"2015-09-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.332},{"date":"2015-09-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.615},{"date":"2015-09-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.327},{"date":"2015-09-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.237},{"date":"2015-09-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.518},{"date":"2015-09-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.561},{"date":"2015-09-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.449},{"date":"2015-09-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.778},{"date":"2015-09-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.759},{"date":"2015-09-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.682},{"date":"2015-09-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.9},{"date":"2015-09-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.493},{"date":"2015-09-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.493},{"date":"2015-09-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.418},{"date":"2015-09-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.34},{"date":"2015-09-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.579},{"date":"2015-09-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.322},{"date":"2015-09-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.246},{"date":"2015-09-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.482},{"date":"2015-09-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.551},{"date":"2015-09-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.454},{"date":"2015-09-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.739},{"date":"2015-09-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.748},{"date":"2015-09-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.685},{"date":"2015-09-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.864},{"date":"2015-09-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.476},{"date":"2015-09-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.476},{"date":"2015-10-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.415},{"date":"2015-10-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.347},{"date":"2015-10-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.554},{"date":"2015-10-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.318},{"date":"2015-10-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.252},{"date":"2015-10-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.456},{"date":"2015-10-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.545},{"date":"2015-10-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.459},{"date":"2015-10-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.712},{"date":"2015-10-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.748},{"date":"2015-10-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.697},{"date":"2015-10-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.842},{"date":"2015-10-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.492},{"date":"2015-10-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.492},{"date":"2015-10-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.432},{"date":"2015-10-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.376},{"date":"2015-10-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.545},{"date":"2015-10-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.337},{"date":"2015-10-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.283},{"date":"2015-10-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.448},{"date":"2015-10-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.561},{"date":"2015-10-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.487},{"date":"2015-10-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.703},{"date":"2015-10-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.757},{"date":"2015-10-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.717},{"date":"2015-10-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.832},{"date":"2015-10-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.556},{"date":"2015-10-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.556},{"date":"2015-10-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.374},{"date":"2015-10-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.314},{"date":"2015-10-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.494},{"date":"2015-10-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.277},{"date":"2015-10-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.22},{"date":"2015-10-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.396},{"date":"2015-10-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.505},{"date":"2015-10-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.429},{"date":"2015-10-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.653},{"date":"2015-10-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.705},{"date":"2015-10-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.662},{"date":"2015-10-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.786},{"date":"2015-10-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.531},{"date":"2015-10-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.531},{"date":"2015-10-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.326},{"date":"2015-10-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.262},{"date":"2015-10-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.457},{"date":"2015-10-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.228},{"date":"2015-10-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.166},{"date":"2015-10-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.357},{"date":"2015-10-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.46},{"date":"2015-10-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.379},{"date":"2015-10-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.617},{"date":"2015-10-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.663},{"date":"2015-10-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.614},{"date":"2015-10-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.755},{"date":"2015-10-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.498},{"date":"2015-10-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.498},{"date":"2015-11-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.322},{"date":"2015-11-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.265},{"date":"2015-11-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.439},{"date":"2015-11-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.224},{"date":"2015-11-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.17},{"date":"2015-11-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.337},{"date":"2015-11-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.455},{"date":"2015-11-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.379},{"date":"2015-11-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.602},{"date":"2015-11-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.66},{"date":"2015-11-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.617},{"date":"2015-11-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.741},{"date":"2015-11-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.485},{"date":"2015-11-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.485},{"date":"2015-11-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.335},{"date":"2015-11-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.269},{"date":"2015-11-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.468},{"date":"2015-11-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.235},{"date":"2015-11-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.172},{"date":"2015-11-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.367},{"date":"2015-11-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.468},{"date":"2015-11-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.387},{"date":"2015-11-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.626},{"date":"2015-11-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.678},{"date":"2015-11-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.629},{"date":"2015-11-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.769},{"date":"2015-11-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.502},{"date":"2015-11-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.502},{"date":"2015-11-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.281},{"date":"2015-11-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.21},{"date":"2015-11-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.424},{"date":"2015-11-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.178},{"date":"2015-11-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.11},{"date":"2015-11-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.322},{"date":"2015-11-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.42},{"date":"2015-11-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.335},{"date":"2015-11-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.585},{"date":"2015-11-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.633},{"date":"2015-11-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.58},{"date":"2015-11-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.731},{"date":"2015-11-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.482},{"date":"2015-11-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.482},{"date":"2015-11-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.198},{"date":"2015-11-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.117},{"date":"2015-11-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.362},{"date":"2015-11-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.094},{"date":"2015-11-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.015},{"date":"2015-11-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.258},{"date":"2015-11-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.338},{"date":"2015-11-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.243},{"date":"2015-11-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.522},{"date":"2015-11-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.556},{"date":"2015-11-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.492},{"date":"2015-11-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.675},{"date":"2015-11-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.445},{"date":"2015-11-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.445},{"date":"2015-11-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.165},{"date":"2015-11-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.079},{"date":"2015-11-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.34},{"date":"2015-11-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.059},{"date":"2015-11-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.974},{"date":"2015-11-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.236},{"date":"2015-11-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.308},{"date":"2015-11-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.209},{"date":"2015-11-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.501},{"date":"2015-11-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.529},{"date":"2015-11-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.462},{"date":"2015-11-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.655},{"date":"2015-11-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.421},{"date":"2015-11-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.421},{"date":"2015-12-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.159},{"date":"2015-12-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.074},{"date":"2015-12-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.334},{"date":"2015-12-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.053},{"date":"2015-12-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.969},{"date":"2015-12-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.231},{"date":"2015-12-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.303},{"date":"2015-12-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.206},{"date":"2015-12-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.49},{"date":"2015-12-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.523},{"date":"2015-12-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.457},{"date":"2015-12-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.647},{"date":"2015-12-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.379},{"date":"2015-12-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.379},{"date":"2015-12-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.144},{"date":"2015-12-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.059},{"date":"2015-12-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.317},{"date":"2015-12-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.037},{"date":"2015-12-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.953},{"date":"2015-12-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.214},{"date":"2015-12-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.287},{"date":"2015-12-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.191},{"date":"2015-12-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.474},{"date":"2015-12-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.509},{"date":"2015-12-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.446},{"date":"2015-12-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.626},{"date":"2015-12-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.338},{"date":"2015-12-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.338},{"date":"2015-12-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.133},{"date":"2015-12-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.035},{"date":"2015-12-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.332},{"date":"2015-12-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.026},{"date":"2015-12-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.929},{"date":"2015-12-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.23},{"date":"2015-12-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.28},{"date":"2015-12-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.169},{"date":"2015-12-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.495},{"date":"2015-12-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.499},{"date":"2015-12-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.425},{"date":"2015-12-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.638},{"date":"2015-12-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.284},{"date":"2015-12-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.284},{"date":"2015-12-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.141},{"date":"2015-12-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.039},{"date":"2015-12-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.348},{"date":"2015-12-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.034},{"date":"2015-12-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.933},{"date":"2015-12-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.244},{"date":"2015-12-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.29},{"date":"2015-12-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.172},{"date":"2015-12-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.519},{"date":"2015-12-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.506},{"date":"2015-12-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.427},{"date":"2015-12-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.653},{"date":"2015-12-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.237},{"date":"2015-12-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.237},{"date":"2016-01-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.135},{"date":"2016-01-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.027},{"date":"2016-01-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.354},{"date":"2016-01-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.028},{"date":"2016-01-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.922},{"date":"2016-01-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.25},{"date":"2016-01-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.285},{"date":"2016-01-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.161},{"date":"2016-01-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.525},{"date":"2016-01-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.498},{"date":"2016-01-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.413},{"date":"2016-01-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.656},{"date":"2016-01-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.211},{"date":"2016-01-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.211},{"date":"2016-01-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.104},{"date":"2016-01-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.994},{"date":"2016-01-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.327},{"date":"2016-01-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.996},{"date":"2016-01-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.888},{"date":"2016-01-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.224},{"date":"2016-01-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.253},{"date":"2016-01-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.126},{"date":"2016-01-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.499},{"date":"2016-01-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.469},{"date":"2016-01-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.382},{"date":"2016-01-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.631},{"date":"2016-01-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.177},{"date":"2016-01-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.177},{"date":"2016-01-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.022},{"date":"2016-01-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.917},{"date":"2016-01-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.235},{"date":"2016-01-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.914},{"date":"2016-01-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.81},{"date":"2016-01-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.131},{"date":"2016-01-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.172},{"date":"2016-01-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.052},{"date":"2016-01-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.404},{"date":"2016-01-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.39},{"date":"2016-01-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.308},{"date":"2016-01-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.544},{"date":"2016-01-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.112},{"date":"2016-01-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.112},{"date":"2016-01-25","fuel":"gasoline","grade":"all","formulation":"all","price":1.965},{"date":"2016-01-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.859},{"date":"2016-01-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.182},{"date":"2016-01-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.856},{"date":"2016-01-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.752},{"date":"2016-01-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.076},{"date":"2016-01-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.118},{"date":"2016-01-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.996},{"date":"2016-01-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.352},{"date":"2016-01-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.337},{"date":"2016-01-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.252},{"date":"2016-01-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.495},{"date":"2016-01-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.071},{"date":"2016-01-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.071},{"date":"2016-02-01","fuel":"gasoline","grade":"all","formulation":"all","price":1.932},{"date":"2016-02-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.837},{"date":"2016-02-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.124},{"date":"2016-02-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.822},{"date":"2016-02-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.729},{"date":"2016-02-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.017},{"date":"2016-02-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.085},{"date":"2016-02-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.976},{"date":"2016-02-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.294},{"date":"2016-02-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.307},{"date":"2016-02-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.233},{"date":"2016-02-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.443},{"date":"2016-02-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.031},{"date":"2016-02-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.031},{"date":"2016-02-08","fuel":"gasoline","grade":"all","formulation":"all","price":1.87},{"date":"2016-02-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.773},{"date":"2016-02-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.068},{"date":"2016-02-08","fuel":"gasoline","grade":"regular","formulation":"all","price":1.759},{"date":"2016-02-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.663},{"date":"2016-02-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.961},{"date":"2016-02-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.025},{"date":"2016-02-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.915},{"date":"2016-02-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.237},{"date":"2016-02-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.247},{"date":"2016-02-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.172},{"date":"2016-02-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.388},{"date":"2016-02-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.008},{"date":"2016-02-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.008},{"date":"2016-02-15","fuel":"gasoline","grade":"all","formulation":"all","price":1.834},{"date":"2016-02-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.747},{"date":"2016-02-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.01},{"date":"2016-02-15","fuel":"gasoline","grade":"regular","formulation":"all","price":1.724},{"date":"2016-02-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.638},{"date":"2016-02-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.904},{"date":"2016-02-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.984},{"date":"2016-02-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.885},{"date":"2016-02-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.176},{"date":"2016-02-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.209},{"date":"2016-02-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.144},{"date":"2016-02-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.33},{"date":"2016-02-15","fuel":"diesel","grade":"all","formulation":"NA","price":1.98},{"date":"2016-02-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":1.98},{"date":"2016-02-22","fuel":"gasoline","grade":"all","formulation":"all","price":1.837},{"date":"2016-02-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.767},{"date":"2016-02-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":1.98},{"date":"2016-02-22","fuel":"gasoline","grade":"regular","formulation":"all","price":1.73},{"date":"2016-02-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.661},{"date":"2016-02-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.874},{"date":"2016-02-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":1.983},{"date":"2016-02-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.902},{"date":"2016-02-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.14},{"date":"2016-02-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.205},{"date":"2016-02-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.154},{"date":"2016-02-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.3},{"date":"2016-02-22","fuel":"diesel","grade":"all","formulation":"NA","price":1.983},{"date":"2016-02-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":1.983},{"date":"2016-02-29","fuel":"gasoline","grade":"all","formulation":"all","price":1.887},{"date":"2016-02-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.817},{"date":"2016-02-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.03},{"date":"2016-02-29","fuel":"gasoline","grade":"regular","formulation":"all","price":1.783},{"date":"2016-02-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.715},{"date":"2016-02-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.925},{"date":"2016-02-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.029},{"date":"2016-02-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":1.943},{"date":"2016-02-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.196},{"date":"2016-02-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.244},{"date":"2016-02-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.191},{"date":"2016-02-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.342},{"date":"2016-02-29","fuel":"diesel","grade":"all","formulation":"NA","price":1.989},{"date":"2016-02-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":1.989},{"date":"2016-03-07","fuel":"gasoline","grade":"all","formulation":"all","price":1.943},{"date":"2016-03-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.882},{"date":"2016-03-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.067},{"date":"2016-03-07","fuel":"gasoline","grade":"regular","formulation":"all","price":1.841},{"date":"2016-03-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.782},{"date":"2016-03-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":1.964},{"date":"2016-03-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.081},{"date":"2016-03-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.005},{"date":"2016-03-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.227},{"date":"2016-03-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.294},{"date":"2016-03-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.25},{"date":"2016-03-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.374},{"date":"2016-03-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.021},{"date":"2016-03-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.021},{"date":"2016-03-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.062},{"date":"2016-03-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.988},{"date":"2016-03-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.214},{"date":"2016-03-14","fuel":"gasoline","grade":"regular","formulation":"all","price":1.961},{"date":"2016-03-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.888},{"date":"2016-03-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.116},{"date":"2016-03-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.2},{"date":"2016-03-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.114},{"date":"2016-03-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.366},{"date":"2016-03-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.409},{"date":"2016-03-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.357},{"date":"2016-03-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.505},{"date":"2016-03-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.099},{"date":"2016-03-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.099},{"date":"2016-03-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.109},{"date":"2016-03-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.036},{"date":"2016-03-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.258},{"date":"2016-03-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.007},{"date":"2016-03-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.935},{"date":"2016-03-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.159},{"date":"2016-03-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.248},{"date":"2016-03-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.163},{"date":"2016-03-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.413},{"date":"2016-03-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.461},{"date":"2016-03-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.41},{"date":"2016-03-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.555},{"date":"2016-03-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.119},{"date":"2016-03-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.119},{"date":"2016-03-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.169},{"date":"2016-03-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.079},{"date":"2016-03-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.353},{"date":"2016-03-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.066},{"date":"2016-03-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.976},{"date":"2016-03-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.255},{"date":"2016-03-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.31},{"date":"2016-03-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.208},{"date":"2016-03-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.507},{"date":"2016-03-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.521},{"date":"2016-03-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.454},{"date":"2016-03-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.645},{"date":"2016-03-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.121},{"date":"2016-03-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.121},{"date":"2016-04-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.185},{"date":"2016-04-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.095},{"date":"2016-04-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.367},{"date":"2016-04-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.083},{"date":"2016-04-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.994},{"date":"2016-04-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.271},{"date":"2016-04-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.323},{"date":"2016-04-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.222},{"date":"2016-04-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.52},{"date":"2016-04-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.532},{"date":"2016-04-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.465},{"date":"2016-04-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.655},{"date":"2016-04-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.115},{"date":"2016-04-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.115},{"date":"2016-04-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.173},{"date":"2016-04-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.085},{"date":"2016-04-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.351},{"date":"2016-04-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.069},{"date":"2016-04-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.981},{"date":"2016-04-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.253},{"date":"2016-04-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.315},{"date":"2016-04-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.217},{"date":"2016-04-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.504},{"date":"2016-04-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.527},{"date":"2016-04-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.463},{"date":"2016-04-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.645},{"date":"2016-04-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.128},{"date":"2016-04-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.128},{"date":"2016-04-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.24},{"date":"2016-04-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.155},{"date":"2016-04-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.411},{"date":"2016-04-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.137},{"date":"2016-04-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.053},{"date":"2016-04-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.314},{"date":"2016-04-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.378},{"date":"2016-04-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.283},{"date":"2016-04-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.562},{"date":"2016-04-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.59},{"date":"2016-04-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.528},{"date":"2016-04-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.706},{"date":"2016-04-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.165},{"date":"2016-04-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.165},{"date":"2016-04-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.265},{"date":"2016-04-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.182},{"date":"2016-04-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.432},{"date":"2016-04-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.162},{"date":"2016-04-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.08},{"date":"2016-04-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.335},{"date":"2016-04-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.405},{"date":"2016-04-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.313},{"date":"2016-04-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.582},{"date":"2016-04-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.616},{"date":"2016-04-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.557},{"date":"2016-04-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.725},{"date":"2016-04-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.198},{"date":"2016-04-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.198},{"date":"2016-05-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.342},{"date":"2016-05-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.271},{"date":"2016-05-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.487},{"date":"2016-05-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.24},{"date":"2016-05-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.168},{"date":"2016-05-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.391},{"date":"2016-05-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.482},{"date":"2016-05-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.404},{"date":"2016-05-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.633},{"date":"2016-05-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.693},{"date":"2016-05-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.647},{"date":"2016-05-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.778},{"date":"2016-05-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.266},{"date":"2016-05-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.266},{"date":"2016-05-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.325},{"date":"2016-05-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.249},{"date":"2016-05-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.481},{"date":"2016-05-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.22},{"date":"2016-05-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.143},{"date":"2016-05-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.384},{"date":"2016-05-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.469},{"date":"2016-05-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.387},{"date":"2016-05-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.627},{"date":"2016-05-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.683},{"date":"2016-05-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.633},{"date":"2016-05-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.775},{"date":"2016-05-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.271},{"date":"2016-05-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.271},{"date":"2016-05-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.345},{"date":"2016-05-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.274},{"date":"2016-05-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.489},{"date":"2016-05-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.242},{"date":"2016-05-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.17},{"date":"2016-05-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.392},{"date":"2016-05-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.485},{"date":"2016-05-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.41},{"date":"2016-05-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.631},{"date":"2016-05-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.7},{"date":"2016-05-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.655},{"date":"2016-05-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.785},{"date":"2016-05-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.297},{"date":"2016-05-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.297},{"date":"2016-05-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.403},{"date":"2016-05-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.339},{"date":"2016-05-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.532},{"date":"2016-05-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.3},{"date":"2016-05-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.235},{"date":"2016-05-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.435},{"date":"2016-05-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.541},{"date":"2016-05-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.472},{"date":"2016-05-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.674},{"date":"2016-05-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.756},{"date":"2016-05-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.717},{"date":"2016-05-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.828},{"date":"2016-05-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.357},{"date":"2016-05-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.357},{"date":"2016-05-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.44},{"date":"2016-05-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.382},{"date":"2016-05-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.557},{"date":"2016-05-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.339},{"date":"2016-05-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.281},{"date":"2016-05-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.461},{"date":"2016-05-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.574},{"date":"2016-05-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.511},{"date":"2016-05-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.696},{"date":"2016-05-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.788},{"date":"2016-05-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.753},{"date":"2016-05-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.852},{"date":"2016-05-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.382},{"date":"2016-05-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.382},{"date":"2016-06-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.482},{"date":"2016-06-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.43},{"date":"2016-06-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.586},{"date":"2016-06-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.381},{"date":"2016-06-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.328},{"date":"2016-06-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.491},{"date":"2016-06-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.616},{"date":"2016-06-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.56},{"date":"2016-06-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.725},{"date":"2016-06-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.83},{"date":"2016-06-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.804},{"date":"2016-06-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.876},{"date":"2016-06-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.407},{"date":"2016-06-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.407},{"date":"2016-06-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.499},{"date":"2016-06-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.444},{"date":"2016-06-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.61},{"date":"2016-06-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.399},{"date":"2016-06-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.343},{"date":"2016-06-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.516},{"date":"2016-06-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.632},{"date":"2016-06-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.573},{"date":"2016-06-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.748},{"date":"2016-06-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.842},{"date":"2016-06-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.812},{"date":"2016-06-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.896},{"date":"2016-06-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.431},{"date":"2016-06-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.431},{"date":"2016-06-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.455},{"date":"2016-06-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.393},{"date":"2016-06-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.581},{"date":"2016-06-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.353},{"date":"2016-06-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.29},{"date":"2016-06-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.484},{"date":"2016-06-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.592},{"date":"2016-06-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.523},{"date":"2016-06-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.725},{"date":"2016-06-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.805},{"date":"2016-06-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.77},{"date":"2016-06-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.872},{"date":"2016-06-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.426},{"date":"2016-06-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.426},{"date":"2016-06-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.432},{"date":"2016-06-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.353},{"date":"2016-06-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.593},{"date":"2016-06-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.329},{"date":"2016-06-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.25},{"date":"2016-06-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.496},{"date":"2016-06-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.57},{"date":"2016-06-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.481},{"date":"2016-06-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.742},{"date":"2016-06-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.785},{"date":"2016-06-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.732},{"date":"2016-06-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.885},{"date":"2016-06-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.426},{"date":"2016-06-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.426},{"date":"2016-07-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.396},{"date":"2016-07-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.311},{"date":"2016-07-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.57},{"date":"2016-07-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.291},{"date":"2016-07-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.205},{"date":"2016-07-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.472},{"date":"2016-07-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.537},{"date":"2016-07-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.442},{"date":"2016-07-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.72},{"date":"2016-07-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.755},{"date":"2016-07-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.696},{"date":"2016-07-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.865},{"date":"2016-07-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.423},{"date":"2016-07-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.423},{"date":"2016-07-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.359},{"date":"2016-07-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.276},{"date":"2016-07-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.527},{"date":"2016-07-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.253},{"date":"2016-07-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.171},{"date":"2016-07-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.426},{"date":"2016-07-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.501},{"date":"2016-07-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.408},{"date":"2016-07-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.682},{"date":"2016-07-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.721},{"date":"2016-07-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.663},{"date":"2016-07-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.83},{"date":"2016-07-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.414},{"date":"2016-07-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.414},{"date":"2016-07-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.336},{"date":"2016-07-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.254},{"date":"2016-07-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.503},{"date":"2016-07-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.23},{"date":"2016-07-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.148},{"date":"2016-07-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.402},{"date":"2016-07-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.479},{"date":"2016-07-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.386},{"date":"2016-07-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.657},{"date":"2016-07-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.701},{"date":"2016-07-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.645},{"date":"2016-07-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.806},{"date":"2016-07-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.402},{"date":"2016-07-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.402},{"date":"2016-07-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.289},{"date":"2016-07-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.211},{"date":"2016-07-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.447},{"date":"2016-07-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.182},{"date":"2016-07-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.105},{"date":"2016-07-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.344},{"date":"2016-07-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.434},{"date":"2016-07-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.345},{"date":"2016-07-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.606},{"date":"2016-07-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.656},{"date":"2016-07-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.602},{"date":"2016-07-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.757},{"date":"2016-07-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.379},{"date":"2016-07-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.379},{"date":"2016-08-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.267},{"date":"2016-08-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.198},{"date":"2016-08-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.406},{"date":"2016-08-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.159},{"date":"2016-08-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.091},{"date":"2016-08-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.302},{"date":"2016-08-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.413},{"date":"2016-08-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.335},{"date":"2016-08-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.565},{"date":"2016-08-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.635},{"date":"2016-08-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.591},{"date":"2016-08-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.716},{"date":"2016-08-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.348},{"date":"2016-08-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.348},{"date":"2016-08-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.256},{"date":"2016-08-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.193},{"date":"2016-08-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.384},{"date":"2016-08-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.15},{"date":"2016-08-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.087},{"date":"2016-08-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.281},{"date":"2016-08-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.398},{"date":"2016-08-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.325},{"date":"2016-08-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.539},{"date":"2016-08-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.621},{"date":"2016-08-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.582},{"date":"2016-08-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.693},{"date":"2016-08-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.316},{"date":"2016-08-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.316},{"date":"2016-08-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.256},{"date":"2016-08-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.203},{"date":"2016-08-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.364},{"date":"2016-08-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.149},{"date":"2016-08-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.096},{"date":"2016-08-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.262},{"date":"2016-08-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.401},{"date":"2016-08-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.34},{"date":"2016-08-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.518},{"date":"2016-08-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.622},{"date":"2016-08-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.593},{"date":"2016-08-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.674},{"date":"2016-08-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.31},{"date":"2016-08-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.31},{"date":"2016-08-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.299},{"date":"2016-08-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.243},{"date":"2016-08-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.413},{"date":"2016-08-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.193},{"date":"2016-08-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.136},{"date":"2016-08-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.312},{"date":"2016-08-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.441},{"date":"2016-08-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.378},{"date":"2016-08-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.563},{"date":"2016-08-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.664},{"date":"2016-08-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.635},{"date":"2016-08-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.718},{"date":"2016-08-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.37},{"date":"2016-08-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.37},{"date":"2016-08-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.341},{"date":"2016-08-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.292},{"date":"2016-08-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.441},{"date":"2016-08-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.237},{"date":"2016-08-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.187},{"date":"2016-08-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.341},{"date":"2016-08-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.481},{"date":"2016-08-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.424},{"date":"2016-08-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.589},{"date":"2016-08-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.701},{"date":"2016-08-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.677},{"date":"2016-08-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.747},{"date":"2016-08-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.409},{"date":"2016-08-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.409},{"date":"2016-09-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.329},{"date":"2016-09-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.277},{"date":"2016-09-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.436},{"date":"2016-09-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.223},{"date":"2016-09-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.17},{"date":"2016-09-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.333},{"date":"2016-09-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.468},{"date":"2016-09-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.405},{"date":"2016-09-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.588},{"date":"2016-09-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.698},{"date":"2016-09-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.671},{"date":"2016-09-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.749},{"date":"2016-09-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.407},{"date":"2016-09-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.407},{"date":"2016-09-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.31},{"date":"2016-09-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.246},{"date":"2016-09-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.439},{"date":"2016-09-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.202},{"date":"2016-09-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.138},{"date":"2016-09-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.336},{"date":"2016-09-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.454},{"date":"2016-09-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.38},{"date":"2016-09-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.597},{"date":"2016-09-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.68},{"date":"2016-09-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.642},{"date":"2016-09-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.751},{"date":"2016-09-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.399},{"date":"2016-09-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.399},{"date":"2016-09-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.333},{"date":"2016-09-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.28},{"date":"2016-09-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.443},{"date":"2016-09-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.225},{"date":"2016-09-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.17},{"date":"2016-09-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.339},{"date":"2016-09-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.481},{"date":"2016-09-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.419},{"date":"2016-09-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.6},{"date":"2016-09-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.706},{"date":"2016-09-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.679},{"date":"2016-09-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.756},{"date":"2016-09-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.389},{"date":"2016-09-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.389},{"date":"2016-09-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.334},{"date":"2016-09-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.276},{"date":"2016-09-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.451},{"date":"2016-09-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.224},{"date":"2016-09-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.166},{"date":"2016-09-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.348},{"date":"2016-09-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.484},{"date":"2016-09-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.419},{"date":"2016-09-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.609},{"date":"2016-09-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.708},{"date":"2016-09-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.679},{"date":"2016-09-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.762},{"date":"2016-09-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.382},{"date":"2016-09-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.382},{"date":"2016-10-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.354},{"date":"2016-10-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.295},{"date":"2016-10-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.476},{"date":"2016-10-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.245},{"date":"2016-10-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.184},{"date":"2016-10-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.375},{"date":"2016-10-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.506},{"date":"2016-10-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.441},{"date":"2016-10-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.631},{"date":"2016-10-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.726},{"date":"2016-10-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.696},{"date":"2016-10-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.782},{"date":"2016-10-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.389},{"date":"2016-10-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.389},{"date":"2016-10-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.381},{"date":"2016-10-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.327},{"date":"2016-10-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.491},{"date":"2016-10-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.272},{"date":"2016-10-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.216},{"date":"2016-10-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.389},{"date":"2016-10-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.529},{"date":"2016-10-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.469},{"date":"2016-10-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.644},{"date":"2016-10-10","fuel":"gasoline","grade":"premium","formulation":"all","price":2.754},{"date":"2016-10-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.728},{"date":"2016-10-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.802},{"date":"2016-10-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.445},{"date":"2016-10-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.445},{"date":"2016-10-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.367},{"date":"2016-10-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.309},{"date":"2016-10-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.484},{"date":"2016-10-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.257},{"date":"2016-10-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.198},{"date":"2016-10-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.381},{"date":"2016-10-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.516},{"date":"2016-10-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.452},{"date":"2016-10-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.64},{"date":"2016-10-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.742},{"date":"2016-10-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.712},{"date":"2016-10-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.797},{"date":"2016-10-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.481},{"date":"2016-10-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.481},{"date":"2016-10-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.353},{"date":"2016-10-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.286},{"date":"2016-10-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.49},{"date":"2016-10-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.243},{"date":"2016-10-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.175},{"date":"2016-10-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.386},{"date":"2016-10-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.502},{"date":"2016-10-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.429},{"date":"2016-10-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.644},{"date":"2016-10-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.73},{"date":"2016-10-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.689},{"date":"2016-10-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.804},{"date":"2016-10-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.478},{"date":"2016-10-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.478},{"date":"2016-10-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.341},{"date":"2016-10-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.27},{"date":"2016-10-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.484},{"date":"2016-10-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.23},{"date":"2016-10-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.159},{"date":"2016-10-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.379},{"date":"2016-10-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.493},{"date":"2016-10-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.415},{"date":"2016-10-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.645},{"date":"2016-10-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.719},{"date":"2016-10-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.675},{"date":"2016-10-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.801},{"date":"2016-10-31","fuel":"diesel","grade":"all","formulation":"NA","price":2.479},{"date":"2016-10-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.479},{"date":"2016-11-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.345},{"date":"2016-11-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.27},{"date":"2016-11-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.499},{"date":"2016-11-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.233},{"date":"2016-11-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.157},{"date":"2016-11-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.392},{"date":"2016-11-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.498},{"date":"2016-11-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.416},{"date":"2016-11-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.656},{"date":"2016-11-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.732},{"date":"2016-11-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.681},{"date":"2016-11-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.826},{"date":"2016-11-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.47},{"date":"2016-11-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.47},{"date":"2016-11-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.298},{"date":"2016-11-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.22},{"date":"2016-11-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.458},{"date":"2016-11-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.184},{"date":"2016-11-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.105},{"date":"2016-11-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.349},{"date":"2016-11-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.455},{"date":"2016-11-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.37},{"date":"2016-11-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.618},{"date":"2016-11-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.691},{"date":"2016-11-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.64},{"date":"2016-11-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.787},{"date":"2016-11-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.443},{"date":"2016-11-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.443},{"date":"2016-11-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.269},{"date":"2016-11-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.192},{"date":"2016-11-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.427},{"date":"2016-11-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.155},{"date":"2016-11-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.078},{"date":"2016-11-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.318},{"date":"2016-11-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.423},{"date":"2016-11-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.341},{"date":"2016-11-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.582},{"date":"2016-11-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.66},{"date":"2016-11-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.605},{"date":"2016-11-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.762},{"date":"2016-11-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.421},{"date":"2016-11-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.421},{"date":"2016-11-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.268},{"date":"2016-11-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.193},{"date":"2016-11-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.42},{"date":"2016-11-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.154},{"date":"2016-11-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.079},{"date":"2016-11-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.312},{"date":"2016-11-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.423},{"date":"2016-11-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.342},{"date":"2016-11-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.578},{"date":"2016-11-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.657},{"date":"2016-11-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.607},{"date":"2016-11-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.75},{"date":"2016-11-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.42},{"date":"2016-11-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.42},{"date":"2016-12-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.321},{"date":"2016-12-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.25},{"date":"2016-12-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.464},{"date":"2016-12-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.208},{"date":"2016-12-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.137},{"date":"2016-12-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.356},{"date":"2016-12-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.471},{"date":"2016-12-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.397},{"date":"2016-12-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.615},{"date":"2016-12-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.71},{"date":"2016-12-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.664},{"date":"2016-12-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.795},{"date":"2016-12-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.48},{"date":"2016-12-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.48},{"date":"2016-12-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.347},{"date":"2016-12-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.286},{"date":"2016-12-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.473},{"date":"2016-12-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.236},{"date":"2016-12-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.174},{"date":"2016-12-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.366},{"date":"2016-12-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.494},{"date":"2016-12-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.428},{"date":"2016-12-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.622},{"date":"2016-12-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.732},{"date":"2016-12-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.695},{"date":"2016-12-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.801},{"date":"2016-12-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.493},{"date":"2016-12-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.493},{"date":"2016-12-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.375},{"date":"2016-12-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.316},{"date":"2016-12-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.496},{"date":"2016-12-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.264},{"date":"2016-12-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.203},{"date":"2016-12-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.391},{"date":"2016-12-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.522},{"date":"2016-12-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.461},{"date":"2016-12-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.639},{"date":"2016-12-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.761},{"date":"2016-12-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.727},{"date":"2016-12-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.824},{"date":"2016-12-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.527},{"date":"2016-12-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.527},{"date":"2016-12-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.419},{"date":"2016-12-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.364},{"date":"2016-12-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.531},{"date":"2016-12-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.309},{"date":"2016-12-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.254},{"date":"2016-12-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.426},{"date":"2016-12-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.561},{"date":"2016-12-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.502},{"date":"2016-12-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.673},{"date":"2016-12-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.799},{"date":"2016-12-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.768},{"date":"2016-12-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.858},{"date":"2016-12-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.54},{"date":"2016-12-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.54},{"date":"2017-01-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.485},{"date":"2017-01-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.429},{"date":"2017-01-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.601},{"date":"2017-01-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.377},{"date":"2017-01-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.319},{"date":"2017-01-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.497},{"date":"2017-01-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.622},{"date":"2017-01-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.56},{"date":"2017-01-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.742},{"date":"2017-01-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.865},{"date":"2017-01-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.832},{"date":"2017-01-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.927},{"date":"2017-01-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.586},{"date":"2017-01-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.586},{"date":"2017-01-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.496},{"date":"2017-01-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.437},{"date":"2017-01-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.618},{"date":"2017-01-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.388},{"date":"2017-01-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.328},{"date":"2017-01-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.514},{"date":"2017-01-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.636},{"date":"2017-01-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.571},{"date":"2017-01-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.76},{"date":"2017-01-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.874},{"date":"2017-01-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.838},{"date":"2017-01-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.941},{"date":"2017-01-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.597},{"date":"2017-01-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.597},{"date":"2017-01-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.467},{"date":"2017-01-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.407},{"date":"2017-01-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.59},{"date":"2017-01-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.358},{"date":"2017-01-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.298},{"date":"2017-01-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.486},{"date":"2017-01-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.607},{"date":"2017-01-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.542},{"date":"2017-01-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.732},{"date":"2017-01-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.845},{"date":"2017-01-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.807},{"date":"2017-01-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.914},{"date":"2017-01-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.585},{"date":"2017-01-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.585},{"date":"2017-01-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.436},{"date":"2017-01-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.368},{"date":"2017-01-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.573},{"date":"2017-01-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.326},{"date":"2017-01-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.258},{"date":"2017-01-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.468},{"date":"2017-01-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.578},{"date":"2017-01-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.505},{"date":"2017-01-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.719},{"date":"2017-01-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.817},{"date":"2017-01-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.771},{"date":"2017-01-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.901},{"date":"2017-01-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.569},{"date":"2017-01-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.569},{"date":"2017-01-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.408},{"date":"2017-01-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.337},{"date":"2017-01-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.552},{"date":"2017-01-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.296},{"date":"2017-01-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.224},{"date":"2017-01-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.446},{"date":"2017-01-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.553},{"date":"2017-01-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.476},{"date":"2017-01-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.703},{"date":"2017-01-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.795},{"date":"2017-01-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.749},{"date":"2017-01-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.882},{"date":"2017-01-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.562},{"date":"2017-01-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.562},{"date":"2017-02-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.405},{"date":"2017-02-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.333},{"date":"2017-02-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.552},{"date":"2017-02-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.293},{"date":"2017-02-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.221},{"date":"2017-02-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.446},{"date":"2017-02-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.552},{"date":"2017-02-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.474},{"date":"2017-02-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.703},{"date":"2017-02-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.79},{"date":"2017-02-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.743},{"date":"2017-02-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.878},{"date":"2017-02-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.558},{"date":"2017-02-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.558},{"date":"2017-02-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.418},{"date":"2017-02-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.34},{"date":"2017-02-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.578},{"date":"2017-02-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.307},{"date":"2017-02-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.228},{"date":"2017-02-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.472},{"date":"2017-02-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.566},{"date":"2017-02-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.48},{"date":"2017-02-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.733},{"date":"2017-02-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.801},{"date":"2017-02-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.747},{"date":"2017-02-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.903},{"date":"2017-02-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.565},{"date":"2017-02-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.565},{"date":"2017-02-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.414},{"date":"2017-02-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.336},{"date":"2017-02-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.573},{"date":"2017-02-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.302},{"date":"2017-02-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.224},{"date":"2017-02-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.467},{"date":"2017-02-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.564},{"date":"2017-02-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.477},{"date":"2017-02-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.731},{"date":"2017-02-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.798},{"date":"2017-02-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.744},{"date":"2017-02-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.897},{"date":"2017-02-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.572},{"date":"2017-02-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.572},{"date":"2017-02-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.427},{"date":"2017-02-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.346},{"date":"2017-02-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.592},{"date":"2017-02-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.314},{"date":"2017-02-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.233},{"date":"2017-02-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.484},{"date":"2017-02-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.579},{"date":"2017-02-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.489},{"date":"2017-02-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.753},{"date":"2017-02-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.812},{"date":"2017-02-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.756},{"date":"2017-02-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.917},{"date":"2017-02-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.577},{"date":"2017-02-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.577},{"date":"2017-03-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.452},{"date":"2017-03-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.375},{"date":"2017-03-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.61},{"date":"2017-03-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.341},{"date":"2017-03-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.264},{"date":"2017-03-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.504},{"date":"2017-03-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.604},{"date":"2017-03-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.515},{"date":"2017-03-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.775},{"date":"2017-03-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.833},{"date":"2017-03-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.781},{"date":"2017-03-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.929},{"date":"2017-03-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.579},{"date":"2017-03-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.579},{"date":"2017-03-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.434},{"date":"2017-03-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.353},{"date":"2017-03-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.601},{"date":"2017-03-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.323},{"date":"2017-03-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.242},{"date":"2017-03-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.494},{"date":"2017-03-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.586},{"date":"2017-03-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.492},{"date":"2017-03-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.768},{"date":"2017-03-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.816},{"date":"2017-03-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.759},{"date":"2017-03-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.923},{"date":"2017-03-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.564},{"date":"2017-03-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.564},{"date":"2017-03-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.433},{"date":"2017-03-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.35},{"date":"2017-03-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.602},{"date":"2017-03-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.321},{"date":"2017-03-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.238},{"date":"2017-03-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.495},{"date":"2017-03-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.587},{"date":"2017-03-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.494},{"date":"2017-03-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.766},{"date":"2017-03-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.816},{"date":"2017-03-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.758},{"date":"2017-03-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.923},{"date":"2017-03-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.539},{"date":"2017-03-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.539},{"date":"2017-03-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.428},{"date":"2017-03-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.341},{"date":"2017-03-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.605},{"date":"2017-03-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.315},{"date":"2017-03-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.228},{"date":"2017-03-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.499},{"date":"2017-03-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.583},{"date":"2017-03-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.487},{"date":"2017-03-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.767},{"date":"2017-03-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.812},{"date":"2017-03-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.752},{"date":"2017-03-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.925},{"date":"2017-03-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.532},{"date":"2017-03-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.532},{"date":"2017-04-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.471},{"date":"2017-04-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.393},{"date":"2017-04-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.631},{"date":"2017-04-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.36},{"date":"2017-04-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.281},{"date":"2017-04-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.527},{"date":"2017-04-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.622},{"date":"2017-04-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.537},{"date":"2017-04-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.785},{"date":"2017-04-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.851},{"date":"2017-04-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.799},{"date":"2017-04-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.948},{"date":"2017-04-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.556},{"date":"2017-04-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.556},{"date":"2017-04-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.534},{"date":"2017-04-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.463},{"date":"2017-04-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.68},{"date":"2017-04-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.424},{"date":"2017-04-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.351},{"date":"2017-04-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.577},{"date":"2017-04-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.683},{"date":"2017-04-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.606},{"date":"2017-04-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.831},{"date":"2017-04-10","fuel":"gasoline","grade":"premium","formulation":"all","price":2.912},{"date":"2017-04-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.869},{"date":"2017-04-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.991},{"date":"2017-04-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.582},{"date":"2017-04-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.582},{"date":"2017-04-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.546},{"date":"2017-04-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.468},{"date":"2017-04-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.706},{"date":"2017-04-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.436},{"date":"2017-04-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.356},{"date":"2017-04-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.602},{"date":"2017-04-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.694},{"date":"2017-04-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.609},{"date":"2017-04-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.858},{"date":"2017-04-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.927},{"date":"2017-04-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.876},{"date":"2017-04-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.021},{"date":"2017-04-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.597},{"date":"2017-04-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.597},{"date":"2017-04-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.559},{"date":"2017-04-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.484},{"date":"2017-04-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.711},{"date":"2017-04-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.449},{"date":"2017-04-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.372},{"date":"2017-04-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.609},{"date":"2017-04-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.706},{"date":"2017-04-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.627},{"date":"2017-04-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.859},{"date":"2017-04-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.938},{"date":"2017-04-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.893},{"date":"2017-04-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.023},{"date":"2017-04-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.595},{"date":"2017-04-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.595},{"date":"2017-05-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.522},{"date":"2017-05-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.444},{"date":"2017-05-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.683},{"date":"2017-05-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.411},{"date":"2017-05-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.331},{"date":"2017-05-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.578},{"date":"2017-05-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.673},{"date":"2017-05-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.588},{"date":"2017-05-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.837},{"date":"2017-05-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.907},{"date":"2017-05-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.855},{"date":"2017-05-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.002},{"date":"2017-05-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.583},{"date":"2017-05-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.583},{"date":"2017-05-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.484},{"date":"2017-05-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.401},{"date":"2017-05-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.654},{"date":"2017-05-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.372},{"date":"2017-05-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.288},{"date":"2017-05-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.549},{"date":"2017-05-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.635},{"date":"2017-05-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.545},{"date":"2017-05-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.809},{"date":"2017-05-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.87},{"date":"2017-05-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.814},{"date":"2017-05-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.974},{"date":"2017-05-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.565},{"date":"2017-05-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.565},{"date":"2017-05-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.481},{"date":"2017-05-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.396},{"date":"2017-05-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.656},{"date":"2017-05-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.369},{"date":"2017-05-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.283},{"date":"2017-05-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.55},{"date":"2017-05-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.634},{"date":"2017-05-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.54},{"date":"2017-05-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.816},{"date":"2017-05-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.867},{"date":"2017-05-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.807},{"date":"2017-05-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.979},{"date":"2017-05-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.544},{"date":"2017-05-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.544},{"date":"2017-05-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.51},{"date":"2017-05-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.418},{"date":"2017-05-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.698},{"date":"2017-05-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.399},{"date":"2017-05-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.306},{"date":"2017-05-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.594},{"date":"2017-05-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.663},{"date":"2017-05-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.562},{"date":"2017-05-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.857},{"date":"2017-05-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.889},{"date":"2017-05-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.822},{"date":"2017-05-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.013},{"date":"2017-05-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.539},{"date":"2017-05-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.539},{"date":"2017-05-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.516},{"date":"2017-05-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.418},{"date":"2017-05-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.716},{"date":"2017-05-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.406},{"date":"2017-05-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.308},{"date":"2017-05-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.612},{"date":"2017-05-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.665},{"date":"2017-05-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.558},{"date":"2017-05-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.874},{"date":"2017-05-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.894},{"date":"2017-05-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.821},{"date":"2017-05-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.03},{"date":"2017-05-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.571},{"date":"2017-05-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.571},{"date":"2017-06-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.525},{"date":"2017-06-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.437},{"date":"2017-06-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.705},{"date":"2017-06-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.414},{"date":"2017-06-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.325},{"date":"2017-06-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.601},{"date":"2017-06-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.677},{"date":"2017-06-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.579},{"date":"2017-06-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.864},{"date":"2017-06-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.906},{"date":"2017-06-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.843},{"date":"2017-06-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.022},{"date":"2017-06-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.564},{"date":"2017-06-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.564},{"date":"2017-06-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.479},{"date":"2017-06-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.389},{"date":"2017-06-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.661},{"date":"2017-06-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.366},{"date":"2017-06-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.276},{"date":"2017-06-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.554},{"date":"2017-06-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.633},{"date":"2017-06-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.535},{"date":"2017-06-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.823},{"date":"2017-06-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.865},{"date":"2017-06-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.8},{"date":"2017-06-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.984},{"date":"2017-06-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.524},{"date":"2017-06-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.524},{"date":"2017-06-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.433},{"date":"2017-06-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.339},{"date":"2017-06-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.623},{"date":"2017-06-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.318},{"date":"2017-06-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.224},{"date":"2017-06-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.514},{"date":"2017-06-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.593},{"date":"2017-06-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.492},{"date":"2017-06-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.789},{"date":"2017-06-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.825},{"date":"2017-06-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.756},{"date":"2017-06-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.952},{"date":"2017-06-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.489},{"date":"2017-06-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.489},{"date":"2017-06-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.404},{"date":"2017-06-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.316},{"date":"2017-06-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.583},{"date":"2017-06-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.288},{"date":"2017-06-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.201},{"date":"2017-06-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.473},{"date":"2017-06-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.565},{"date":"2017-06-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.468},{"date":"2017-06-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.753},{"date":"2017-06-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.799},{"date":"2017-06-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.735},{"date":"2017-06-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.916},{"date":"2017-06-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.465},{"date":"2017-06-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.465},{"date":"2017-07-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.376},{"date":"2017-07-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.278},{"date":"2017-07-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.574},{"date":"2017-07-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.26},{"date":"2017-07-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.163},{"date":"2017-07-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.464},{"date":"2017-07-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.536},{"date":"2017-07-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.43},{"date":"2017-07-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.742},{"date":"2017-07-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.77},{"date":"2017-07-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.696},{"date":"2017-07-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.907},{"date":"2017-07-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.472},{"date":"2017-07-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.472},{"date":"2017-07-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.411},{"date":"2017-07-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.324},{"date":"2017-07-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.588},{"date":"2017-07-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.297},{"date":"2017-07-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.21},{"date":"2017-07-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.481},{"date":"2017-07-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.569},{"date":"2017-07-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.475},{"date":"2017-07-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.749},{"date":"2017-07-10","fuel":"gasoline","grade":"premium","formulation":"all","price":2.798},{"date":"2017-07-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.736},{"date":"2017-07-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.912},{"date":"2017-07-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.481},{"date":"2017-07-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.481},{"date":"2017-07-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.392},{"date":"2017-07-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.303},{"date":"2017-07-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.574},{"date":"2017-07-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.278},{"date":"2017-07-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.188},{"date":"2017-07-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.466},{"date":"2017-07-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.551},{"date":"2017-07-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.455},{"date":"2017-07-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.736},{"date":"2017-07-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.781},{"date":"2017-07-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.719},{"date":"2017-07-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.898},{"date":"2017-07-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.491},{"date":"2017-07-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.491},{"date":"2017-07-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.426},{"date":"2017-07-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.34},{"date":"2017-07-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.601},{"date":"2017-07-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.312},{"date":"2017-07-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.224},{"date":"2017-07-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.495},{"date":"2017-07-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.582},{"date":"2017-07-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.492},{"date":"2017-07-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.757},{"date":"2017-07-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.816},{"date":"2017-07-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.76},{"date":"2017-07-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.92},{"date":"2017-07-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.507},{"date":"2017-07-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.507},{"date":"2017-07-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.467},{"date":"2017-07-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.386},{"date":"2017-07-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.631},{"date":"2017-07-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.352},{"date":"2017-07-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.269},{"date":"2017-07-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.526},{"date":"2017-07-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.623},{"date":"2017-07-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.538},{"date":"2017-07-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.787},{"date":"2017-07-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.86},{"date":"2017-07-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.81},{"date":"2017-07-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.952},{"date":"2017-07-31","fuel":"diesel","grade":"all","formulation":"NA","price":2.531},{"date":"2017-07-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.531},{"date":"2017-08-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.492},{"date":"2017-08-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.405},{"date":"2017-08-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.668},{"date":"2017-08-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.378},{"date":"2017-08-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.29},{"date":"2017-08-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.564},{"date":"2017-08-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.644},{"date":"2017-08-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.553},{"date":"2017-08-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.821},{"date":"2017-08-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.882},{"date":"2017-08-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.825},{"date":"2017-08-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.987},{"date":"2017-08-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.581},{"date":"2017-08-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.581},{"date":"2017-08-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.497},{"date":"2017-08-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.416},{"date":"2017-08-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.664},{"date":"2017-08-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.384},{"date":"2017-08-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.301},{"date":"2017-08-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.558},{"date":"2017-08-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.653},{"date":"2017-08-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.565},{"date":"2017-08-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.823},{"date":"2017-08-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.886},{"date":"2017-08-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.834},{"date":"2017-08-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.983},{"date":"2017-08-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.598},{"date":"2017-08-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.598},{"date":"2017-08-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.474},{"date":"2017-08-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.389},{"date":"2017-08-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.649},{"date":"2017-08-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.36},{"date":"2017-08-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.273},{"date":"2017-08-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.543},{"date":"2017-08-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.631},{"date":"2017-08-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.539},{"date":"2017-08-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.811},{"date":"2017-08-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.865},{"date":"2017-08-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.81},{"date":"2017-08-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.968},{"date":"2017-08-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.596},{"date":"2017-08-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.596},{"date":"2017-08-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.513},{"date":"2017-08-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.438},{"date":"2017-08-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.665},{"date":"2017-08-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.399},{"date":"2017-08-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.322},{"date":"2017-08-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.561},{"date":"2017-08-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.668},{"date":"2017-08-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.588},{"date":"2017-08-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.825},{"date":"2017-08-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.901},{"date":"2017-08-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.859},{"date":"2017-08-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.981},{"date":"2017-08-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.605},{"date":"2017-08-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.605},{"date":"2017-09-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.794},{"date":"2017-09-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.722},{"date":"2017-09-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.939},{"date":"2017-09-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.679},{"date":"2017-09-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.604},{"date":"2017-09-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.835},{"date":"2017-09-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.946},{"date":"2017-09-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.875},{"date":"2017-09-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.085},{"date":"2017-09-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.191},{"date":"2017-09-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.153},{"date":"2017-09-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.262},{"date":"2017-09-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.758},{"date":"2017-09-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.758},{"date":"2017-09-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.8},{"date":"2017-09-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.728},{"date":"2017-09-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.946},{"date":"2017-09-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.685},{"date":"2017-09-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.61},{"date":"2017-09-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.842},{"date":"2017-09-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.953},{"date":"2017-09-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.88},{"date":"2017-09-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.092},{"date":"2017-09-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.197},{"date":"2017-09-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.158},{"date":"2017-09-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.268},{"date":"2017-09-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.802},{"date":"2017-09-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.802},{"date":"2017-09-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.75},{"date":"2017-09-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.678},{"date":"2017-09-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.897},{"date":"2017-09-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.634},{"date":"2017-09-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.559},{"date":"2017-09-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.791},{"date":"2017-09-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.906},{"date":"2017-09-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.831},{"date":"2017-09-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.05},{"date":"2017-09-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.151},{"date":"2017-09-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.112},{"date":"2017-09-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.224},{"date":"2017-09-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.791},{"date":"2017-09-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.791},{"date":"2017-09-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.701},{"date":"2017-09-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.629},{"date":"2017-09-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.846},{"date":"2017-09-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.583},{"date":"2017-09-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.508},{"date":"2017-09-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.74},{"date":"2017-09-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.859},{"date":"2017-09-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.785},{"date":"2017-09-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.001},{"date":"2017-09-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.105},{"date":"2017-09-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.069},{"date":"2017-09-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.171},{"date":"2017-09-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.788},{"date":"2017-09-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.788},{"date":"2017-10-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.682},{"date":"2017-10-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.614},{"date":"2017-10-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.82},{"date":"2017-10-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.565},{"date":"2017-10-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.493},{"date":"2017-10-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.715},{"date":"2017-10-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.841},{"date":"2017-10-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.772},{"date":"2017-10-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.975},{"date":"2017-10-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.085},{"date":"2017-10-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.055},{"date":"2017-10-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.142},{"date":"2017-10-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.792},{"date":"2017-10-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.792},{"date":"2017-10-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.622},{"date":"2017-10-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.547},{"date":"2017-10-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.774},{"date":"2017-10-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.504},{"date":"2017-10-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.426},{"date":"2017-10-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.668},{"date":"2017-10-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.78},{"date":"2017-10-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.702},{"date":"2017-10-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.932},{"date":"2017-10-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.025},{"date":"2017-10-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.986},{"date":"2017-10-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.098},{"date":"2017-10-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.776},{"date":"2017-10-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.776},{"date":"2017-10-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.605},{"date":"2017-10-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.532},{"date":"2017-10-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.754},{"date":"2017-10-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.489},{"date":"2017-10-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.413},{"date":"2017-10-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.648},{"date":"2017-10-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.764},{"date":"2017-10-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.687},{"date":"2017-10-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.913},{"date":"2017-10-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.003},{"date":"2017-10-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.964},{"date":"2017-10-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.077},{"date":"2017-10-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.787},{"date":"2017-10-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.787},{"date":"2017-10-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.594},{"date":"2017-10-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.523},{"date":"2017-10-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.739},{"date":"2017-10-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.479},{"date":"2017-10-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.406},{"date":"2017-10-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.632},{"date":"2017-10-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.75},{"date":"2017-10-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.672},{"date":"2017-10-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.902},{"date":"2017-10-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.987},{"date":"2017-10-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.946},{"date":"2017-10-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.064},{"date":"2017-10-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.797},{"date":"2017-10-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.797},{"date":"2017-10-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.602},{"date":"2017-10-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.526},{"date":"2017-10-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.758},{"date":"2017-10-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.488},{"date":"2017-10-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.41},{"date":"2017-10-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.652},{"date":"2017-10-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.76},{"date":"2017-10-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.679},{"date":"2017-10-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.918},{"date":"2017-10-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.994},{"date":"2017-10-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.947},{"date":"2017-10-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.081},{"date":"2017-10-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.819},{"date":"2017-10-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.819},{"date":"2017-11-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.673},{"date":"2017-11-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.583},{"date":"2017-11-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.858},{"date":"2017-11-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.561},{"date":"2017-11-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.468},{"date":"2017-11-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.754},{"date":"2017-11-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.829},{"date":"2017-11-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.732},{"date":"2017-11-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.018},{"date":"2017-11-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.059},{"date":"2017-11-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.999},{"date":"2017-11-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.17},{"date":"2017-11-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.882},{"date":"2017-11-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.882},{"date":"2017-11-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.706},{"date":"2017-11-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.619},{"date":"2017-11-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.881},{"date":"2017-11-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.592},{"date":"2017-11-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.504},{"date":"2017-11-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.777},{"date":"2017-11-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.865},{"date":"2017-11-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.771},{"date":"2017-11-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.046},{"date":"2017-11-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.092},{"date":"2017-11-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.037},{"date":"2017-11-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.194},{"date":"2017-11-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.915},{"date":"2017-11-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.915},{"date":"2017-11-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.683},{"date":"2017-11-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.597},{"date":"2017-11-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.858},{"date":"2017-11-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.568},{"date":"2017-11-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.48},{"date":"2017-11-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.753},{"date":"2017-11-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.843},{"date":"2017-11-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.75},{"date":"2017-11-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.022},{"date":"2017-11-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.075},{"date":"2017-11-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.021},{"date":"2017-11-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.174},{"date":"2017-11-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.912},{"date":"2017-11-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.912},{"date":"2017-11-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.648},{"date":"2017-11-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.562},{"date":"2017-11-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.825},{"date":"2017-11-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.533},{"date":"2017-11-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.444},{"date":"2017-11-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.719},{"date":"2017-11-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.81},{"date":"2017-11-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.717},{"date":"2017-11-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.99},{"date":"2017-11-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.043},{"date":"2017-11-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.988},{"date":"2017-11-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.146},{"date":"2017-11-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.926},{"date":"2017-11-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.926},{"date":"2017-12-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.617},{"date":"2017-12-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.528},{"date":"2017-12-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.797},{"date":"2017-12-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.5},{"date":"2017-12-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.41},{"date":"2017-12-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.689},{"date":"2017-12-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.778},{"date":"2017-12-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.683},{"date":"2017-12-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.962},{"date":"2017-12-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.014},{"date":"2017-12-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.957},{"date":"2017-12-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.122},{"date":"2017-12-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.922},{"date":"2017-12-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.922},{"date":"2017-12-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.601},{"date":"2017-12-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.519},{"date":"2017-12-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.769},{"date":"2017-12-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.485},{"date":"2017-12-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.401},{"date":"2017-12-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.661},{"date":"2017-12-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.763},{"date":"2017-12-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.675},{"date":"2017-12-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.933},{"date":"2017-12-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3},{"date":"2017-12-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.949},{"date":"2017-12-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.095},{"date":"2017-12-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.91},{"date":"2017-12-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.91},{"date":"2017-12-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.568},{"date":"2017-12-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.478},{"date":"2017-12-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.75},{"date":"2017-12-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.45},{"date":"2017-12-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.358},{"date":"2017-12-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.642},{"date":"2017-12-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.731},{"date":"2017-12-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.636},{"date":"2017-12-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.914},{"date":"2017-12-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.969},{"date":"2017-12-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.912},{"date":"2017-12-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.076},{"date":"2017-12-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.901},{"date":"2017-12-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.901},{"date":"2017-12-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.589},{"date":"2017-12-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.502},{"date":"2017-12-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.765},{"date":"2017-12-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.472},{"date":"2017-12-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.384},{"date":"2017-12-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.658},{"date":"2017-12-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.749},{"date":"2017-12-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.655},{"date":"2017-12-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.931},{"date":"2017-12-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.985},{"date":"2017-12-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.929},{"date":"2017-12-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.09},{"date":"2017-12-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.903},{"date":"2017-12-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.903},{"date":"2018-01-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.637},{"date":"2018-01-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.554},{"date":"2018-01-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.804},{"date":"2018-01-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.52},{"date":"2018-01-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.436},{"date":"2018-01-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.697},{"date":"2018-01-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.798},{"date":"2018-01-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.711},{"date":"2018-01-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.965},{"date":"2018-01-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.035},{"date":"2018-01-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.983},{"date":"2018-01-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.129},{"date":"2018-01-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.973},{"date":"2018-01-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.973},{"date":"2018-01-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.639},{"date":"2018-01-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.548},{"date":"2018-01-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.824},{"date":"2018-01-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.522},{"date":"2018-01-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.429},{"date":"2018-01-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.716},{"date":"2018-01-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.802},{"date":"2018-01-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.705},{"date":"2018-01-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.989},{"date":"2018-01-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.04},{"date":"2018-01-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.981},{"date":"2018-01-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.15},{"date":"2018-01-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.996},{"date":"2018-01-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.996},{"date":"2018-01-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.673},{"date":"2018-01-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.589},{"date":"2018-01-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.843},{"date":"2018-01-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.557},{"date":"2018-01-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.473},{"date":"2018-01-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.735},{"date":"2018-01-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.831},{"date":"2018-01-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.74},{"date":"2018-01-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.009},{"date":"2018-01-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.068},{"date":"2018-01-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.013},{"date":"2018-01-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.169},{"date":"2018-01-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.028},{"date":"2018-01-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.028},{"date":"2018-01-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.684},{"date":"2018-01-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.601},{"date":"2018-01-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.854},{"date":"2018-01-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.567},{"date":"2018-01-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.482},{"date":"2018-01-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.744},{"date":"2018-01-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.845},{"date":"2018-01-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.754},{"date":"2018-01-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.022},{"date":"2018-01-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.085},{"date":"2018-01-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.031},{"date":"2018-01-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.184},{"date":"2018-01-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.025},{"date":"2018-01-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.025},{"date":"2018-01-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.723},{"date":"2018-01-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.634},{"date":"2018-01-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.905},{"date":"2018-01-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.607},{"date":"2018-01-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.516},{"date":"2018-01-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.797},{"date":"2018-01-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.882},{"date":"2018-01-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.784},{"date":"2018-01-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.07},{"date":"2018-01-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.122},{"date":"2018-01-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.064},{"date":"2018-01-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.229},{"date":"2018-01-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.07},{"date":"2018-01-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.07},{"date":"2018-02-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.753},{"date":"2018-02-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.661},{"date":"2018-02-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.94},{"date":"2018-02-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.637},{"date":"2018-02-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.544},{"date":"2018-02-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.832},{"date":"2018-02-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.914},{"date":"2018-02-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.813},{"date":"2018-02-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.109},{"date":"2018-02-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.149},{"date":"2018-02-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.089},{"date":"2018-02-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.262},{"date":"2018-02-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.086},{"date":"2018-02-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.086},{"date":"2018-02-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.724},{"date":"2018-02-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.63},{"date":"2018-02-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.915},{"date":"2018-02-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.607},{"date":"2018-02-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.511},{"date":"2018-02-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.806},{"date":"2018-02-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.888},{"date":"2018-02-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.785},{"date":"2018-02-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.086},{"date":"2018-02-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.125},{"date":"2018-02-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.063},{"date":"2018-02-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.239},{"date":"2018-02-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.063},{"date":"2018-02-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.063},{"date":"2018-02-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.676},{"date":"2018-02-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.576},{"date":"2018-02-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.881},{"date":"2018-02-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.557},{"date":"2018-02-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.455},{"date":"2018-02-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.77},{"date":"2018-02-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.843},{"date":"2018-02-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.732},{"date":"2018-02-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.056},{"date":"2018-02-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.082},{"date":"2018-02-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.013},{"date":"2018-02-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.21},{"date":"2018-02-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.027},{"date":"2018-02-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.027},{"date":"2018-02-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.666},{"date":"2018-02-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.561},{"date":"2018-02-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.88},{"date":"2018-02-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.548},{"date":"2018-02-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.442},{"date":"2018-02-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.77},{"date":"2018-02-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.83},{"date":"2018-02-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.713},{"date":"2018-02-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.055},{"date":"2018-02-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.069},{"date":"2018-02-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.996},{"date":"2018-02-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.205},{"date":"2018-02-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.007},{"date":"2018-02-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.007},{"date":"2018-03-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.679},{"date":"2018-03-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.582},{"date":"2018-03-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.877},{"date":"2018-03-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.56},{"date":"2018-03-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.462},{"date":"2018-03-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.767},{"date":"2018-03-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.845},{"date":"2018-03-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.738},{"date":"2018-03-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.053},{"date":"2018-03-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.084},{"date":"2018-03-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.02},{"date":"2018-03-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.204},{"date":"2018-03-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.992},{"date":"2018-03-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.992},{"date":"2018-03-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.677},{"date":"2018-03-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.574},{"date":"2018-03-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.887},{"date":"2018-03-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.559},{"date":"2018-03-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.455},{"date":"2018-03-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.777},{"date":"2018-03-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.843},{"date":"2018-03-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.728},{"date":"2018-03-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.065},{"date":"2018-03-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.078},{"date":"2018-03-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.007},{"date":"2018-03-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.21},{"date":"2018-03-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.976},{"date":"2018-03-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.976},{"date":"2018-03-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.716},{"date":"2018-03-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.612},{"date":"2018-03-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.926},{"date":"2018-03-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.598},{"date":"2018-03-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.494},{"date":"2018-03-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.817},{"date":"2018-03-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.881},{"date":"2018-03-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.765},{"date":"2018-03-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.105},{"date":"2018-03-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.114},{"date":"2018-03-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.043},{"date":"2018-03-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.247},{"date":"2018-03-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.972},{"date":"2018-03-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.972},{"date":"2018-03-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.764},{"date":"2018-03-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.659},{"date":"2018-03-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.979},{"date":"2018-03-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.648},{"date":"2018-03-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.541},{"date":"2018-03-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.871},{"date":"2018-03-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.928},{"date":"2018-03-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.81},{"date":"2018-03-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.157},{"date":"2018-03-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.161},{"date":"2018-03-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.086},{"date":"2018-03-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.299},{"date":"2018-03-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.01},{"date":"2018-03-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.01},{"date":"2018-04-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.817},{"date":"2018-04-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.71},{"date":"2018-04-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.033},{"date":"2018-04-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.7},{"date":"2018-04-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.592},{"date":"2018-04-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.927},{"date":"2018-04-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.979},{"date":"2018-04-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.863},{"date":"2018-04-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.205},{"date":"2018-04-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.212},{"date":"2018-04-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.14},{"date":"2018-04-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.345},{"date":"2018-04-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.042},{"date":"2018-04-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.042},{"date":"2018-04-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.811},{"date":"2018-04-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.707},{"date":"2018-04-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.024},{"date":"2018-04-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.694},{"date":"2018-04-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.587},{"date":"2018-04-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.918},{"date":"2018-04-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.977},{"date":"2018-04-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.864},{"date":"2018-04-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.196},{"date":"2018-04-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.209},{"date":"2018-04-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.14},{"date":"2018-04-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.338},{"date":"2018-04-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.043},{"date":"2018-04-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.043},{"date":"2018-04-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.863},{"date":"2018-04-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.762},{"date":"2018-04-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.068},{"date":"2018-04-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.747},{"date":"2018-04-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.644},{"date":"2018-04-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.963},{"date":"2018-04-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.025},{"date":"2018-04-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.915},{"date":"2018-04-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.238},{"date":"2018-04-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.256},{"date":"2018-04-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.189},{"date":"2018-04-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.381},{"date":"2018-04-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.104},{"date":"2018-04-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.104},{"date":"2018-04-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.914},{"date":"2018-04-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.814},{"date":"2018-04-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.119},{"date":"2018-04-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.798},{"date":"2018-04-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.696},{"date":"2018-04-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.014},{"date":"2018-04-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.075},{"date":"2018-04-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.967},{"date":"2018-04-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.284},{"date":"2018-04-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.31},{"date":"2018-04-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.243},{"date":"2018-04-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.433},{"date":"2018-04-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.133},{"date":"2018-04-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.133},{"date":"2018-04-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.961},{"date":"2018-04-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.858},{"date":"2018-04-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.17},{"date":"2018-04-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.846},{"date":"2018-04-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.741},{"date":"2018-04-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.068},{"date":"2018-04-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.117},{"date":"2018-04-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.008},{"date":"2018-04-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.33},{"date":"2018-04-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.353},{"date":"2018-04-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.285},{"date":"2018-04-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.479},{"date":"2018-04-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.157},{"date":"2018-04-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.157},{"date":"2018-05-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.96},{"date":"2018-05-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.851},{"date":"2018-05-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.182},{"date":"2018-05-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.845},{"date":"2018-05-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.733},{"date":"2018-05-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.078},{"date":"2018-05-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.119},{"date":"2018-05-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.003},{"date":"2018-05-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.343},{"date":"2018-05-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.354},{"date":"2018-05-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.28},{"date":"2018-05-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.491},{"date":"2018-05-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.171},{"date":"2018-05-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.171},{"date":"2018-05-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.949},{"date":"2018-05-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.846},{"date":"2018-05-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.148},{"date":"2018-05-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.873},{"date":"2018-05-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.786},{"date":"2018-05-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.055},{"date":"2018-05-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.212},{"date":"2018-05-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.076},{"date":"2018-05-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.405},{"date":"2018-05-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.452},{"date":"2018-05-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.347},{"date":"2018-05-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.574},{"date":"2018-05-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.239},{"date":"2018-05-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.239},{"date":"2018-05-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.999},{"date":"2018-05-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.893},{"date":"2018-05-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.201},{"date":"2018-05-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.923},{"date":"2018-05-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.834},{"date":"2018-05-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.109},{"date":"2018-05-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.257},{"date":"2018-05-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.121},{"date":"2018-05-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.448},{"date":"2018-05-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.497},{"date":"2018-05-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.391},{"date":"2018-05-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.617},{"date":"2018-05-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.277},{"date":"2018-05-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.277},{"date":"2018-05-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.039},{"date":"2018-05-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.937},{"date":"2018-05-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.235},{"date":"2018-05-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.962},{"date":"2018-05-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.877},{"date":"2018-05-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.142},{"date":"2018-05-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.296},{"date":"2018-05-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.165},{"date":"2018-05-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.482},{"date":"2018-05-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.536},{"date":"2018-05-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.435},{"date":"2018-05-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.653},{"date":"2018-05-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.288},{"date":"2018-05-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.288},{"date":"2018-06-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.018},{"date":"2018-06-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.91},{"date":"2018-06-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.226},{"date":"2018-06-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.94},{"date":"2018-06-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.849},{"date":"2018-06-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.131},{"date":"2018-06-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.285},{"date":"2018-06-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.146},{"date":"2018-06-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.482},{"date":"2018-06-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.524},{"date":"2018-06-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.417},{"date":"2018-06-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.647},{"date":"2018-06-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.285},{"date":"2018-06-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.285},{"date":"2018-06-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.989},{"date":"2018-06-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.883},{"date":"2018-06-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.194},{"date":"2018-06-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.911},{"date":"2018-06-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.822},{"date":"2018-06-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.099},{"date":"2018-06-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.259},{"date":"2018-06-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.122},{"date":"2018-06-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.453},{"date":"2018-06-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.495},{"date":"2018-06-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.387},{"date":"2018-06-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.619},{"date":"2018-06-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.266},{"date":"2018-06-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.266},{"date":"2018-06-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.958},{"date":"2018-06-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.852},{"date":"2018-06-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.161},{"date":"2018-06-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.879},{"date":"2018-06-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.79},{"date":"2018-06-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.064},{"date":"2018-06-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.23},{"date":"2018-06-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.093},{"date":"2018-06-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.422},{"date":"2018-06-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.47},{"date":"2018-06-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.359},{"date":"2018-06-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.598},{"date":"2018-06-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.244},{"date":"2018-06-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.244},{"date":"2018-06-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.913},{"date":"2018-06-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.808},{"date":"2018-06-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.116},{"date":"2018-06-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.833},{"date":"2018-06-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.745},{"date":"2018-06-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.018},{"date":"2018-06-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.189},{"date":"2018-06-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.055},{"date":"2018-06-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.38},{"date":"2018-06-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.432},{"date":"2018-06-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.324},{"date":"2018-06-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.557},{"date":"2018-06-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.216},{"date":"2018-06-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.216},{"date":"2018-07-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.924},{"date":"2018-07-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.824},{"date":"2018-07-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.117},{"date":"2018-07-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.844},{"date":"2018-07-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.762},{"date":"2018-07-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.019},{"date":"2018-07-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.197},{"date":"2018-07-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.068},{"date":"2018-07-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.382},{"date":"2018-07-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.439},{"date":"2018-07-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.335},{"date":"2018-07-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.559},{"date":"2018-07-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.236},{"date":"2018-07-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.236},{"date":"2018-07-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.937},{"date":"2018-07-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.837},{"date":"2018-07-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.132},{"date":"2018-07-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.857},{"date":"2018-07-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.774},{"date":"2018-07-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.034},{"date":"2018-07-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.207},{"date":"2018-07-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.08},{"date":"2018-07-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.389},{"date":"2018-07-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.454},{"date":"2018-07-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.354},{"date":"2018-07-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.571},{"date":"2018-07-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.243},{"date":"2018-07-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.243},{"date":"2018-07-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.943},{"date":"2018-07-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.852},{"date":"2018-07-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.12},{"date":"2018-07-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.865},{"date":"2018-07-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.79},{"date":"2018-07-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.023},{"date":"2018-07-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.209},{"date":"2018-07-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.093},{"date":"2018-07-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.377},{"date":"2018-07-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.451},{"date":"2018-07-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.362},{"date":"2018-07-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.555},{"date":"2018-07-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.239},{"date":"2018-07-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.239},{"date":"2018-07-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.911},{"date":"2018-07-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.818},{"date":"2018-07-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.092},{"date":"2018-07-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.831},{"date":"2018-07-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.754},{"date":"2018-07-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.994},{"date":"2018-07-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.18},{"date":"2018-07-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.06},{"date":"2018-07-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.352},{"date":"2018-07-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.426},{"date":"2018-07-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.338},{"date":"2018-07-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.529},{"date":"2018-07-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.22},{"date":"2018-07-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.22},{"date":"2018-07-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.924},{"date":"2018-07-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.834},{"date":"2018-07-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.102},{"date":"2018-07-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.846},{"date":"2018-07-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.772},{"date":"2018-07-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.006},{"date":"2018-07-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.189},{"date":"2018-07-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.075},{"date":"2018-07-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.357},{"date":"2018-07-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.433},{"date":"2018-07-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.349},{"date":"2018-07-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.533},{"date":"2018-07-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.226},{"date":"2018-07-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.226},{"date":"2018-08-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.93},{"date":"2018-08-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.843},{"date":"2018-08-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.101},{"date":"2018-08-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.852},{"date":"2018-08-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.781},{"date":"2018-08-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.004},{"date":"2018-08-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.191},{"date":"2018-08-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.08},{"date":"2018-08-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.352},{"date":"2018-08-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.435},{"date":"2018-08-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.354},{"date":"2018-08-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.53},{"date":"2018-08-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.223},{"date":"2018-08-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.223},{"date":"2018-08-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.921},{"date":"2018-08-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.836},{"date":"2018-08-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.089},{"date":"2018-08-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.843},{"date":"2018-08-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.774},{"date":"2018-08-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.993},{"date":"2018-08-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.184},{"date":"2018-08-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.077},{"date":"2018-08-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.339},{"date":"2018-08-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.428},{"date":"2018-08-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.351},{"date":"2018-08-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.518},{"date":"2018-08-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.217},{"date":"2018-08-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.217},{"date":"2018-08-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.9},{"date":"2018-08-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.818},{"date":"2018-08-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.062},{"date":"2018-08-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.821},{"date":"2018-08-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.755},{"date":"2018-08-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.964},{"date":"2018-08-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.171},{"date":"2018-08-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.066},{"date":"2018-08-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.323},{"date":"2018-08-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.407},{"date":"2018-08-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.334},{"date":"2018-08-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.494},{"date":"2018-08-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.207},{"date":"2018-08-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.207},{"date":"2018-08-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.906},{"date":"2018-08-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.824},{"date":"2018-08-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.068},{"date":"2018-08-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.827},{"date":"2018-08-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.761},{"date":"2018-08-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.969},{"date":"2018-08-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.176},{"date":"2018-08-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.069},{"date":"2018-08-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.329},{"date":"2018-08-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.412},{"date":"2018-08-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.336},{"date":"2018-08-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.502},{"date":"2018-08-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.226},{"date":"2018-08-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.226},{"date":"2018-09-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.903},{"date":"2018-09-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.822},{"date":"2018-09-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.064},{"date":"2018-09-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.824},{"date":"2018-09-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.759},{"date":"2018-09-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.964},{"date":"2018-09-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.175},{"date":"2018-09-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.069},{"date":"2018-09-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.328},{"date":"2018-09-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.416},{"date":"2018-09-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.34},{"date":"2018-09-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.505},{"date":"2018-09-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.252},{"date":"2018-09-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.252},{"date":"2018-09-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.912},{"date":"2018-09-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.829},{"date":"2018-09-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.079},{"date":"2018-09-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.833},{"date":"2018-09-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.765},{"date":"2018-09-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.98},{"date":"2018-09-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.184},{"date":"2018-09-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.08},{"date":"2018-09-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.336},{"date":"2018-09-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.426},{"date":"2018-09-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.351},{"date":"2018-09-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.516},{"date":"2018-09-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.258},{"date":"2018-09-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.258},{"date":"2018-09-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.921},{"date":"2018-09-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.834},{"date":"2018-09-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.091},{"date":"2018-09-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.841},{"date":"2018-09-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.771},{"date":"2018-09-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.991},{"date":"2018-09-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.194},{"date":"2018-09-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.081},{"date":"2018-09-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.355},{"date":"2018-09-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.435},{"date":"2018-09-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.35},{"date":"2018-09-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.534},{"date":"2018-09-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.268},{"date":"2018-09-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.268},{"date":"2018-09-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.923},{"date":"2018-09-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.841},{"date":"2018-09-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.082},{"date":"2018-09-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.844},{"date":"2018-09-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.779},{"date":"2018-09-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.982},{"date":"2018-09-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.195},{"date":"2018-09-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.086},{"date":"2018-09-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.349},{"date":"2018-09-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.436},{"date":"2018-09-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.356},{"date":"2018-09-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.528},{"date":"2018-09-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.271},{"date":"2018-09-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.271},{"date":"2018-10-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.947},{"date":"2018-10-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.859},{"date":"2018-10-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.117},{"date":"2018-10-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.866},{"date":"2018-10-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.796},{"date":"2018-10-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.014},{"date":"2018-10-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.223},{"date":"2018-10-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.106},{"date":"2018-10-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.39},{"date":"2018-10-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.468},{"date":"2018-10-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.378},{"date":"2018-10-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.573},{"date":"2018-10-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.313},{"date":"2018-10-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.313},{"date":"2018-10-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.984},{"date":"2018-10-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.892},{"date":"2018-10-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.161},{"date":"2018-10-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.903},{"date":"2018-10-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.829},{"date":"2018-10-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.057},{"date":"2018-10-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.263},{"date":"2018-10-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.136},{"date":"2018-10-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.44},{"date":"2018-10-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.504},{"date":"2018-10-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.405},{"date":"2018-10-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.618},{"date":"2018-10-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.385},{"date":"2018-10-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.385},{"date":"2018-10-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.961},{"date":"2018-10-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.869},{"date":"2018-10-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.141},{"date":"2018-10-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.879},{"date":"2018-10-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.806},{"date":"2018-10-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.034},{"date":"2018-10-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.249},{"date":"2018-10-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.119},{"date":"2018-10-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.431},{"date":"2018-10-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.488},{"date":"2018-10-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.387},{"date":"2018-10-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.603},{"date":"2018-10-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.394},{"date":"2018-10-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.394},{"date":"2018-10-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.925},{"date":"2018-10-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.828},{"date":"2018-10-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.113},{"date":"2018-10-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.841},{"date":"2018-10-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.763},{"date":"2018-10-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.005},{"date":"2018-10-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.221},{"date":"2018-10-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.084},{"date":"2018-10-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.414},{"date":"2018-10-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.463},{"date":"2018-10-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.357},{"date":"2018-10-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.585},{"date":"2018-10-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.38},{"date":"2018-10-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.38},{"date":"2018-10-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.896},{"date":"2018-10-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.799},{"date":"2018-10-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.083},{"date":"2018-10-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.811},{"date":"2018-10-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.732},{"date":"2018-10-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.975},{"date":"2018-10-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.196},{"date":"2018-10-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.064},{"date":"2018-10-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.381},{"date":"2018-10-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.437},{"date":"2018-10-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.334},{"date":"2018-10-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.555},{"date":"2018-10-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.355},{"date":"2018-10-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.355},{"date":"2018-11-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.84},{"date":"2018-11-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.738},{"date":"2018-11-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.036},{"date":"2018-11-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.753},{"date":"2018-11-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.67},{"date":"2018-11-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.927},{"date":"2018-11-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.146},{"date":"2018-11-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.008},{"date":"2018-11-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.34},{"date":"2018-11-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.389},{"date":"2018-11-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.281},{"date":"2018-11-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.514},{"date":"2018-11-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.338},{"date":"2018-11-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.338},{"date":"2018-11-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.773},{"date":"2018-11-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.672},{"date":"2018-11-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.971},{"date":"2018-11-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.686},{"date":"2018-11-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.604},{"date":"2018-11-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.86},{"date":"2018-11-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.086},{"date":"2018-11-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.949},{"date":"2018-11-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.28},{"date":"2018-11-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.326},{"date":"2018-11-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.22},{"date":"2018-11-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.448},{"date":"2018-11-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.317},{"date":"2018-11-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.317},{"date":"2018-11-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.7},{"date":"2018-11-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.594},{"date":"2018-11-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.903},{"date":"2018-11-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.611},{"date":"2018-11-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.525},{"date":"2018-11-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.793},{"date":"2018-11-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.022},{"date":"2018-11-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.883},{"date":"2018-11-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.219},{"date":"2018-11-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.258},{"date":"2018-11-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.151},{"date":"2018-11-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.383},{"date":"2018-11-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.282},{"date":"2018-11-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.282},{"date":"2018-11-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.63},{"date":"2018-11-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.517},{"date":"2018-11-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.85},{"date":"2018-11-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.539},{"date":"2018-11-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.445},{"date":"2018-11-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.736},{"date":"2018-11-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.965},{"date":"2018-11-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.819},{"date":"2018-11-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.171},{"date":"2018-11-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.203},{"date":"2018-11-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.088},{"date":"2018-11-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.335},{"date":"2018-11-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.261},{"date":"2018-11-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.261},{"date":"2018-12-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.544},{"date":"2018-12-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.422},{"date":"2018-12-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.777},{"date":"2018-12-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.451},{"date":"2018-12-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.35},{"date":"2018-12-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.665},{"date":"2018-12-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.883},{"date":"2018-12-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.731},{"date":"2018-12-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.098},{"date":"2018-12-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.119},{"date":"2018-12-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.998},{"date":"2018-12-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.258},{"date":"2018-12-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.207},{"date":"2018-12-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.207},{"date":"2018-12-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.511},{"date":"2018-12-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.395},{"date":"2018-12-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.734},{"date":"2018-12-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.421},{"date":"2018-12-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.325},{"date":"2018-12-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.622},{"date":"2018-12-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.842},{"date":"2018-12-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.696},{"date":"2018-12-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.047},{"date":"2018-12-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.079},{"date":"2018-12-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.959},{"date":"2018-12-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.217},{"date":"2018-12-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.161},{"date":"2018-12-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.161},{"date":"2018-12-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.46},{"date":"2018-12-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.338},{"date":"2018-12-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.694},{"date":"2018-12-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.369},{"date":"2018-12-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.268},{"date":"2018-12-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.583},{"date":"2018-12-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.793},{"date":"2018-12-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.643},{"date":"2018-12-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.004},{"date":"2018-12-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.03},{"date":"2018-12-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.903},{"date":"2018-12-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.176},{"date":"2018-12-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.121},{"date":"2018-12-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.121},{"date":"2018-12-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.413},{"date":"2018-12-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.287},{"date":"2018-12-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.653},{"date":"2018-12-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.321},{"date":"2018-12-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.216},{"date":"2018-12-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.54},{"date":"2018-12-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.75},{"date":"2018-12-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.588},{"date":"2018-12-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.974},{"date":"2018-12-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.987},{"date":"2018-12-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.848},{"date":"2018-12-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.143},{"date":"2018-12-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.077},{"date":"2018-12-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.077},{"date":"2018-12-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.358},{"date":"2018-12-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.227},{"date":"2018-12-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.608},{"date":"2018-12-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.266},{"date":"2018-12-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.156},{"date":"2018-12-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.496},{"date":"2018-12-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.697},{"date":"2018-12-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.532},{"date":"2018-12-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.928},{"date":"2018-12-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.934},{"date":"2018-12-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.793},{"date":"2018-12-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.096},{"date":"2018-12-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.048},{"date":"2018-12-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.048},{"date":"2019-01-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.329},{"date":"2019-01-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.199},{"date":"2019-01-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.578},{"date":"2019-01-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.237},{"date":"2019-01-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.128},{"date":"2019-01-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.465},{"date":"2019-01-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.662},{"date":"2019-01-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.496},{"date":"2019-01-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.895},{"date":"2019-01-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.906},{"date":"2019-01-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.764},{"date":"2019-01-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.069},{"date":"2019-01-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.013},{"date":"2019-01-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.013},{"date":"2019-01-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.338},{"date":"2019-01-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.212},{"date":"2019-01-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.578},{"date":"2019-01-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.247},{"date":"2019-01-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.143},{"date":"2019-01-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.466},{"date":"2019-01-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.66},{"date":"2019-01-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.496},{"date":"2019-01-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.888},{"date":"2019-01-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.907},{"date":"2019-01-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.764},{"date":"2019-01-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.069},{"date":"2019-01-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.976},{"date":"2019-01-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.976},{"date":"2019-01-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.34},{"date":"2019-01-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.216},{"date":"2019-01-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.577},{"date":"2019-01-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.251},{"date":"2019-01-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.147},{"date":"2019-01-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.468},{"date":"2019-01-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.661},{"date":"2019-01-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.5},{"date":"2019-01-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.885},{"date":"2019-01-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.902},{"date":"2019-01-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.769},{"date":"2019-01-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.055},{"date":"2019-01-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.965},{"date":"2019-01-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.965},{"date":"2019-01-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.343},{"date":"2019-01-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.229},{"date":"2019-01-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.567},{"date":"2019-01-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.256},{"date":"2019-01-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.162},{"date":"2019-01-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.458},{"date":"2019-01-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.65},{"date":"2019-01-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.5},{"date":"2019-01-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.866},{"date":"2019-01-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.899},{"date":"2019-01-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.773},{"date":"2019-01-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.045},{"date":"2019-01-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.965},{"date":"2019-01-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.965},{"date":"2019-02-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.341},{"date":"2019-02-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.228},{"date":"2019-02-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.561},{"date":"2019-02-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.254},{"date":"2019-02-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.162},{"date":"2019-02-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.451},{"date":"2019-02-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.644},{"date":"2019-02-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.488},{"date":"2019-02-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.867},{"date":"2019-02-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.895},{"date":"2019-02-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.77},{"date":"2019-02-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.04},{"date":"2019-02-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.966},{"date":"2019-02-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.966},{"date":"2019-02-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.361},{"date":"2019-02-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.251},{"date":"2019-02-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.577},{"date":"2019-02-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.276},{"date":"2019-02-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.187},{"date":"2019-02-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.466},{"date":"2019-02-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.657},{"date":"2019-02-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.5},{"date":"2019-02-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.883},{"date":"2019-02-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.912},{"date":"2019-02-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.783},{"date":"2019-02-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.062},{"date":"2019-02-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.966},{"date":"2019-02-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.966},{"date":"2019-02-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.4},{"date":"2019-02-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.293},{"date":"2019-02-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.61},{"date":"2019-02-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.317},{"date":"2019-02-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.23},{"date":"2019-02-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.502},{"date":"2019-02-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.688},{"date":"2019-02-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.535},{"date":"2019-02-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.906},{"date":"2019-02-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.94},{"date":"2019-02-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.817},{"date":"2019-02-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.081},{"date":"2019-02-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.006},{"date":"2019-02-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.006},{"date":"2019-02-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.471},{"date":"2019-02-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.372},{"date":"2019-02-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.664},{"date":"2019-02-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.39},{"date":"2019-02-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.311},{"date":"2019-02-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.56},{"date":"2019-02-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.739},{"date":"2019-02-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.601},{"date":"2019-02-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.937},{"date":"2019-02-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.998},{"date":"2019-02-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.887},{"date":"2019-02-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.124},{"date":"2019-02-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.048},{"date":"2019-02-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.048},{"date":"2019-03-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.502},{"date":"2019-03-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.412},{"date":"2019-03-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.678},{"date":"2019-03-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.422},{"date":"2019-03-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.352},{"date":"2019-03-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.574},{"date":"2019-03-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.768},{"date":"2019-03-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.638},{"date":"2019-03-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.956},{"date":"2019-03-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.02},{"date":"2019-03-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.919},{"date":"2019-03-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.137},{"date":"2019-03-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.076},{"date":"2019-03-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.076},{"date":"2019-03-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.549},{"date":"2019-03-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.458},{"date":"2019-03-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.726},{"date":"2019-03-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.471},{"date":"2019-03-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.399},{"date":"2019-03-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.625},{"date":"2019-03-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.807},{"date":"2019-03-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.674},{"date":"2019-03-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.999},{"date":"2019-03-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.059},{"date":"2019-03-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.959},{"date":"2019-03-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.175},{"date":"2019-03-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.079},{"date":"2019-03-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.079},{"date":"2019-03-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.625},{"date":"2019-03-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.537},{"date":"2019-03-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.8},{"date":"2019-03-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.548},{"date":"2019-03-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.477},{"date":"2019-03-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.7},{"date":"2019-03-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.879},{"date":"2019-03-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.75},{"date":"2019-03-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.064},{"date":"2019-03-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.135},{"date":"2019-03-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.041},{"date":"2019-03-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.244},{"date":"2019-03-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.07},{"date":"2019-03-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.07},{"date":"2019-03-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.701},{"date":"2019-03-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.604},{"date":"2019-03-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.893},{"date":"2019-03-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.623},{"date":"2019-03-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.544},{"date":"2019-03-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.793},{"date":"2019-03-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.96},{"date":"2019-03-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.819},{"date":"2019-03-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.162},{"date":"2019-03-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.212},{"date":"2019-03-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.105},{"date":"2019-03-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.337},{"date":"2019-03-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.08},{"date":"2019-03-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.08},{"date":"2019-04-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.77},{"date":"2019-04-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.67},{"date":"2019-04-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.967},{"date":"2019-04-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.691},{"date":"2019-04-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.611},{"date":"2019-04-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.863},{"date":"2019-04-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.034},{"date":"2019-04-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.885},{"date":"2019-04-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.25},{"date":"2019-04-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.286},{"date":"2019-04-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.172},{"date":"2019-04-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.419},{"date":"2019-04-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.078},{"date":"2019-04-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.078},{"date":"2019-04-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.826},{"date":"2019-04-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.71},{"date":"2019-04-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.055},{"date":"2019-04-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.745},{"date":"2019-04-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.65},{"date":"2019-04-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.949},{"date":"2019-04-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.103},{"date":"2019-04-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.93},{"date":"2019-04-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.355},{"date":"2019-04-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.354},{"date":"2019-04-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.214},{"date":"2019-04-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.518},{"date":"2019-04-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.093},{"date":"2019-04-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.093},{"date":"2019-04-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.912},{"date":"2019-04-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.785},{"date":"2019-04-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.162},{"date":"2019-04-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.828},{"date":"2019-04-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.725},{"date":"2019-04-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.052},{"date":"2019-04-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.198},{"date":"2019-04-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.006},{"date":"2019-04-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.478},{"date":"2019-04-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.449},{"date":"2019-04-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.29},{"date":"2019-04-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.635},{"date":"2019-04-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.118},{"date":"2019-04-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.118},{"date":"2019-04-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.926},{"date":"2019-04-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.785},{"date":"2019-04-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.206},{"date":"2019-04-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.841},{"date":"2019-04-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.723},{"date":"2019-04-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.097},{"date":"2019-04-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.221},{"date":"2019-04-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.019},{"date":"2019-04-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.515},{"date":"2019-04-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.474},{"date":"2019-04-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.301},{"date":"2019-04-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.677},{"date":"2019-04-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.147},{"date":"2019-04-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.147},{"date":"2019-04-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.972},{"date":"2019-04-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.824},{"date":"2019-04-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.264},{"date":"2019-04-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.887},{"date":"2019-04-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.761},{"date":"2019-04-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.156},{"date":"2019-04-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.27},{"date":"2019-04-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.062},{"date":"2019-04-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.571},{"date":"2019-04-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.523},{"date":"2019-04-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.343},{"date":"2019-04-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.734},{"date":"2019-04-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.169},{"date":"2019-04-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.169},{"date":"2019-05-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.983},{"date":"2019-05-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.834},{"date":"2019-05-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.279},{"date":"2019-05-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.897},{"date":"2019-05-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.771},{"date":"2019-05-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.171},{"date":"2019-05-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.286},{"date":"2019-05-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.083},{"date":"2019-05-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.583},{"date":"2019-05-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.537},{"date":"2019-05-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.357},{"date":"2019-05-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.748},{"date":"2019-05-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.171},{"date":"2019-05-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.171},{"date":"2019-05-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.954},{"date":"2019-05-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.8},{"date":"2019-05-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.256},{"date":"2019-05-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.866},{"date":"2019-05-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.735},{"date":"2019-05-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.149},{"date":"2019-05-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.258},{"date":"2019-05-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.054},{"date":"2019-05-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.554},{"date":"2019-05-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.514},{"date":"2019-05-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.331},{"date":"2019-05-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.726},{"date":"2019-05-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.16},{"date":"2019-05-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.16},{"date":"2019-05-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.939},{"date":"2019-05-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.789},{"date":"2019-05-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.236},{"date":"2019-05-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.852},{"date":"2019-05-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.723},{"date":"2019-05-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.129},{"date":"2019-05-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.245},{"date":"2019-05-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.045},{"date":"2019-05-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.536},{"date":"2019-05-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.499},{"date":"2019-05-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.323},{"date":"2019-05-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.706},{"date":"2019-05-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.163},{"date":"2019-05-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.163},{"date":"2019-05-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.909},{"date":"2019-05-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.762},{"date":"2019-05-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.2},{"date":"2019-05-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.822},{"date":"2019-05-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.696},{"date":"2019-05-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.094},{"date":"2019-05-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.212},{"date":"2019-05-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.022},{"date":"2019-05-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.493},{"date":"2019-05-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.471},{"date":"2019-05-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.3},{"date":"2019-05-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.67},{"date":"2019-05-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.151},{"date":"2019-05-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.151},{"date":"2019-06-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.893},{"date":"2019-06-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.757},{"date":"2019-06-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.164},{"date":"2019-06-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.807},{"date":"2019-06-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.691},{"date":"2019-06-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.058},{"date":"2019-06-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.194},{"date":"2019-06-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.015},{"date":"2019-06-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.458},{"date":"2019-06-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.447},{"date":"2019-06-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.295},{"date":"2019-06-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.627},{"date":"2019-06-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.136},{"date":"2019-06-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.136},{"date":"2019-06-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.821},{"date":"2019-06-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.687},{"date":"2019-06-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.086},{"date":"2019-06-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.732},{"date":"2019-06-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.62},{"date":"2019-06-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.976},{"date":"2019-06-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.134},{"date":"2019-06-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.955},{"date":"2019-06-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.398},{"date":"2019-06-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.383},{"date":"2019-06-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.231},{"date":"2019-06-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.561},{"date":"2019-06-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.105},{"date":"2019-06-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.105},{"date":"2019-06-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.759},{"date":"2019-06-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.621},{"date":"2019-06-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.032},{"date":"2019-06-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.67},{"date":"2019-06-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.553},{"date":"2019-06-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.923},{"date":"2019-06-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.079},{"date":"2019-06-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.897},{"date":"2019-06-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.344},{"date":"2019-06-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.326},{"date":"2019-06-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.174},{"date":"2019-06-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.505},{"date":"2019-06-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.07},{"date":"2019-06-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.07},{"date":"2019-06-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.741},{"date":"2019-06-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.608},{"date":"2019-06-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.002},{"date":"2019-06-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.654},{"date":"2019-06-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.541},{"date":"2019-06-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.896},{"date":"2019-06-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.051},{"date":"2019-06-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.881},{"date":"2019-06-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.299},{"date":"2019-06-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.3},{"date":"2019-06-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.154},{"date":"2019-06-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.471},{"date":"2019-06-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.043},{"date":"2019-06-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.043},{"date":"2019-07-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.798},{"date":"2019-07-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.674},{"date":"2019-07-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.043},{"date":"2019-07-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.713},{"date":"2019-07-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.608},{"date":"2019-07-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.938},{"date":"2019-07-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.095},{"date":"2019-07-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.931},{"date":"2019-07-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.336},{"date":"2019-07-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.343},{"date":"2019-07-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.205},{"date":"2019-07-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.505},{"date":"2019-07-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.042},{"date":"2019-07-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.042},{"date":"2019-07-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.827},{"date":"2019-07-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.708},{"date":"2019-07-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.06},{"date":"2019-07-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.743},{"date":"2019-07-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.644},{"date":"2019-07-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.956},{"date":"2019-07-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.117},{"date":"2019-07-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.959},{"date":"2019-07-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.348},{"date":"2019-07-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.366},{"date":"2019-07-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.237},{"date":"2019-07-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.517},{"date":"2019-07-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.055},{"date":"2019-07-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.055},{"date":"2019-07-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.86},{"date":"2019-07-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.745},{"date":"2019-07-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.089},{"date":"2019-07-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.779},{"date":"2019-07-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.682},{"date":"2019-07-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.987},{"date":"2019-07-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.137},{"date":"2019-07-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.982},{"date":"2019-07-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.365},{"date":"2019-07-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.392},{"date":"2019-07-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.266},{"date":"2019-07-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.539},{"date":"2019-07-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.051},{"date":"2019-07-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.051},{"date":"2019-07-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.833},{"date":"2019-07-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.716},{"date":"2019-07-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.062},{"date":"2019-07-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.75},{"date":"2019-07-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.653},{"date":"2019-07-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.959},{"date":"2019-07-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.116},{"date":"2019-07-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.958},{"date":"2019-07-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.345},{"date":"2019-07-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.368},{"date":"2019-07-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.244},{"date":"2019-07-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.513},{"date":"2019-07-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.044},{"date":"2019-07-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.044},{"date":"2019-07-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.798},{"date":"2019-07-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.68},{"date":"2019-07-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.032},{"date":"2019-07-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.715},{"date":"2019-07-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.615},{"date":"2019-07-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.928},{"date":"2019-07-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.084},{"date":"2019-07-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.924},{"date":"2019-07-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.318},{"date":"2019-07-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.339},{"date":"2019-07-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.21},{"date":"2019-07-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.491},{"date":"2019-07-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.034},{"date":"2019-07-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.034},{"date":"2019-08-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.772},{"date":"2019-08-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.653},{"date":"2019-08-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.007},{"date":"2019-08-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.688},{"date":"2019-08-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.588},{"date":"2019-08-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.902},{"date":"2019-08-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.062},{"date":"2019-08-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.899},{"date":"2019-08-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.3},{"date":"2019-08-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.317},{"date":"2019-08-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.187},{"date":"2019-08-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.469},{"date":"2019-08-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.032},{"date":"2019-08-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.032},{"date":"2019-08-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.71},{"date":"2019-08-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.59},{"date":"2019-08-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.946},{"date":"2019-08-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.624},{"date":"2019-08-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.524},{"date":"2019-08-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.839},{"date":"2019-08-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.01},{"date":"2019-08-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.851},{"date":"2019-08-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.242},{"date":"2019-08-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.266},{"date":"2019-08-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.137},{"date":"2019-08-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.417},{"date":"2019-08-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.011},{"date":"2019-08-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.011},{"date":"2019-08-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.684},{"date":"2019-08-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.567},{"date":"2019-08-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.914},{"date":"2019-08-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.598},{"date":"2019-08-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.501},{"date":"2019-08-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.807},{"date":"2019-08-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.982},{"date":"2019-08-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.826},{"date":"2019-08-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.21},{"date":"2019-08-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.24},{"date":"2019-08-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.115},{"date":"2019-08-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.387},{"date":"2019-08-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.994},{"date":"2019-08-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.994},{"date":"2019-08-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.661},{"date":"2019-08-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.538},{"date":"2019-08-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.905},{"date":"2019-08-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.574},{"date":"2019-08-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.471},{"date":"2019-08-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.797},{"date":"2019-08-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.965},{"date":"2019-08-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.799},{"date":"2019-08-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.206},{"date":"2019-08-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.219},{"date":"2019-08-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.087},{"date":"2019-08-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.374},{"date":"2019-08-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.983},{"date":"2019-08-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.983},{"date":"2019-09-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.651},{"date":"2019-09-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.527},{"date":"2019-09-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.893},{"date":"2019-09-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.563},{"date":"2019-09-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.461},{"date":"2019-09-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.782},{"date":"2019-09-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.96},{"date":"2019-09-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.789},{"date":"2019-09-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.207},{"date":"2019-09-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.215},{"date":"2019-09-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.076},{"date":"2019-09-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.377},{"date":"2019-09-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.976},{"date":"2019-09-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.976},{"date":"2019-09-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.638},{"date":"2019-09-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.517},{"date":"2019-09-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.876},{"date":"2019-09-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.55},{"date":"2019-09-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.45},{"date":"2019-09-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.765},{"date":"2019-09-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.95},{"date":"2019-09-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.783},{"date":"2019-09-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.194},{"date":"2019-09-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.202},{"date":"2019-09-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.069},{"date":"2019-09-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.357},{"date":"2019-09-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.971},{"date":"2019-09-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.971},{"date":"2019-09-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.64},{"date":"2019-09-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.521},{"date":"2019-09-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.874},{"date":"2019-09-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.552},{"date":"2019-09-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.454},{"date":"2019-09-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.763},{"date":"2019-09-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.95},{"date":"2019-09-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.787},{"date":"2019-09-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.186},{"date":"2019-09-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.203},{"date":"2019-09-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.07},{"date":"2019-09-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.359},{"date":"2019-09-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.987},{"date":"2019-09-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.987},{"date":"2019-09-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.741},{"date":"2019-09-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.627},{"date":"2019-09-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.964},{"date":"2019-09-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.654},{"date":"2019-09-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.561},{"date":"2019-09-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.852},{"date":"2019-09-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.048},{"date":"2019-09-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.883},{"date":"2019-09-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.286},{"date":"2019-09-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.296},{"date":"2019-09-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.164},{"date":"2019-09-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.45},{"date":"2019-09-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.081},{"date":"2019-09-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.081},{"date":"2019-09-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.737},{"date":"2019-09-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.586},{"date":"2019-09-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.033},{"date":"2019-09-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.642},{"date":"2019-09-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.518},{"date":"2019-09-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.907},{"date":"2019-09-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.082},{"date":"2019-09-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.855},{"date":"2019-09-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.409},{"date":"2019-09-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.341},{"date":"2019-09-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.142},{"date":"2019-09-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.571},{"date":"2019-09-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.066},{"date":"2019-09-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.066},{"date":"2019-10-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.742},{"date":"2019-10-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.581},{"date":"2019-10-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.058},{"date":"2019-10-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.645},{"date":"2019-10-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.513},{"date":"2019-10-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.929},{"date":"2019-10-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.097},{"date":"2019-10-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.855},{"date":"2019-10-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.449},{"date":"2019-10-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.356},{"date":"2019-10-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.14},{"date":"2019-10-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.61},{"date":"2019-10-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.047},{"date":"2019-10-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.047},{"date":"2019-10-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.727},{"date":"2019-10-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.565},{"date":"2019-10-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.048},{"date":"2019-10-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.629},{"date":"2019-10-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.495},{"date":"2019-10-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.919},{"date":"2019-10-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.085},{"date":"2019-10-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.843},{"date":"2019-10-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.438},{"date":"2019-10-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.345},{"date":"2019-10-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.129},{"date":"2019-10-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.597},{"date":"2019-10-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.051},{"date":"2019-10-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.051},{"date":"2019-10-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.735},{"date":"2019-10-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.581},{"date":"2019-10-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.036},{"date":"2019-10-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.638},{"date":"2019-10-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.512},{"date":"2019-10-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.91},{"date":"2019-10-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.089},{"date":"2019-10-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.861},{"date":"2019-10-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.419},{"date":"2019-10-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.34},{"date":"2019-10-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.144},{"date":"2019-10-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.568},{"date":"2019-10-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.05},{"date":"2019-10-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.05},{"date":"2019-10-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.692},{"date":"2019-10-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.539},{"date":"2019-10-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.995},{"date":"2019-10-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.596},{"date":"2019-10-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.469},{"date":"2019-10-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.871},{"date":"2019-10-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.046},{"date":"2019-10-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.825},{"date":"2019-10-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.366},{"date":"2019-10-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.298},{"date":"2019-10-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.106},{"date":"2019-10-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.522},{"date":"2019-10-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.064},{"date":"2019-10-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.064},{"date":"2019-11-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.702},{"date":"2019-11-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.555},{"date":"2019-11-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.994},{"date":"2019-11-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.605},{"date":"2019-11-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.485},{"date":"2019-11-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.866},{"date":"2019-11-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.064},{"date":"2019-11-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.847},{"date":"2019-11-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.379},{"date":"2019-11-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.313},{"date":"2019-11-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.123},{"date":"2019-11-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.535},{"date":"2019-11-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.062},{"date":"2019-11-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.062},{"date":"2019-11-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.711},{"date":"2019-11-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.563},{"date":"2019-11-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.004},{"date":"2019-11-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.615},{"date":"2019-11-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.493},{"date":"2019-11-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.879},{"date":"2019-11-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.067},{"date":"2019-11-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.855},{"date":"2019-11-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.379},{"date":"2019-11-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.321},{"date":"2019-11-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.136},{"date":"2019-11-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.535},{"date":"2019-11-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.073},{"date":"2019-11-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.073},{"date":"2019-11-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.688},{"date":"2019-11-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.544},{"date":"2019-11-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.971},{"date":"2019-11-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.592},{"date":"2019-11-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.473},{"date":"2019-11-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.851},{"date":"2019-11-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.036},{"date":"2019-11-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.84},{"date":"2019-11-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.323},{"date":"2019-11-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.291},{"date":"2019-11-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.12},{"date":"2019-11-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.49},{"date":"2019-11-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.074},{"date":"2019-11-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.074},{"date":"2019-11-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.672},{"date":"2019-11-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.539},{"date":"2019-11-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.936},{"date":"2019-11-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.579},{"date":"2019-11-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.469},{"date":"2019-11-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.817},{"date":"2019-11-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.015},{"date":"2019-11-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.83},{"date":"2019-11-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.287},{"date":"2019-11-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.264},{"date":"2019-11-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.106},{"date":"2019-11-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.449},{"date":"2019-11-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.066},{"date":"2019-11-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.066},{"date":"2019-12-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.667},{"date":"2019-12-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.554},{"date":"2019-12-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.894},{"date":"2019-12-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.575},{"date":"2019-12-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.485},{"date":"2019-12-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.775},{"date":"2019-12-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.999},{"date":"2019-12-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.84},{"date":"2019-12-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.236},{"date":"2019-12-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.249},{"date":"2019-12-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.116},{"date":"2019-12-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.406},{"date":"2019-12-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.07},{"date":"2019-12-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.07},{"date":"2019-12-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.652},{"date":"2019-12-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.548},{"date":"2019-12-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.863},{"date":"2019-12-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.561},{"date":"2019-12-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.478},{"date":"2019-12-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.745},{"date":"2019-12-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.981},{"date":"2019-12-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.837},{"date":"2019-12-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.197},{"date":"2019-12-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.23},{"date":"2019-12-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.111},{"date":"2019-12-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.372},{"date":"2019-12-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.049},{"date":"2019-12-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.049},{"date":"2019-12-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.627},{"date":"2019-12-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.518},{"date":"2019-12-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.845},{"date":"2019-12-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.536},{"date":"2019-12-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.448},{"date":"2019-12-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.73},{"date":"2019-12-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.955},{"date":"2019-12-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.811},{"date":"2019-12-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.17},{"date":"2019-12-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.204},{"date":"2019-12-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.081},{"date":"2019-12-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.351},{"date":"2019-12-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.046},{"date":"2019-12-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.046},{"date":"2019-12-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.621},{"date":"2019-12-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.516},{"date":"2019-12-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.833},{"date":"2019-12-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.532},{"date":"2019-12-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.447},{"date":"2019-12-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.718},{"date":"2019-12-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.943},{"date":"2019-12-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.802},{"date":"2019-12-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.153},{"date":"2019-12-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.191},{"date":"2019-12-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.074},{"date":"2019-12-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.33},{"date":"2019-12-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.041},{"date":"2019-12-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.041},{"date":"2019-12-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.658},{"date":"2019-12-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.555},{"date":"2019-12-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.862},{"date":"2019-12-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.571},{"date":"2019-12-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.488},{"date":"2019-12-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.751},{"date":"2019-12-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.968},{"date":"2019-12-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.827},{"date":"2019-12-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.176},{"date":"2019-12-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.209},{"date":"2019-12-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.099},{"date":"2019-12-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.338},{"date":"2019-12-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.069},{"date":"2019-12-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.069},{"date":"2020-01-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.665},{"date":"2020-01-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.561},{"date":"2020-01-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.87},{"date":"2020-01-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.578},{"date":"2020-01-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.494},{"date":"2020-01-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.761},{"date":"2020-01-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.973},{"date":"2020-01-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.833},{"date":"2020-01-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.176},{"date":"2020-01-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.214},{"date":"2020-01-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.103},{"date":"2020-01-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.342},{"date":"2020-01-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.079},{"date":"2020-01-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.079},{"date":"2020-01-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.657},{"date":"2020-01-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.549},{"date":"2020-01-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.871},{"date":"2020-01-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.57},{"date":"2020-01-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.482},{"date":"2020-01-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.762},{"date":"2020-01-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.964},{"date":"2020-01-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.817},{"date":"2020-01-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.178},{"date":"2020-01-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.209},{"date":"2020-01-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.093},{"date":"2020-01-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.345},{"date":"2020-01-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.064},{"date":"2020-01-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.064},{"date":"2020-01-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.625},{"date":"2020-01-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.516},{"date":"2020-01-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.841},{"date":"2020-01-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.537},{"date":"2020-01-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.448},{"date":"2020-01-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.731},{"date":"2020-01-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.94},{"date":"2020-01-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.792},{"date":"2020-01-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.155},{"date":"2020-01-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.183},{"date":"2020-01-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.068},{"date":"2020-01-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.318},{"date":"2020-01-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.037},{"date":"2020-01-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.037},{"date":"2020-01-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.595},{"date":"2020-01-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.482},{"date":"2020-01-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.818},{"date":"2020-01-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.506},{"date":"2020-01-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.412},{"date":"2020-01-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.706},{"date":"2020-01-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.911},{"date":"2020-01-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.761},{"date":"2020-01-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.129},{"date":"2020-01-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.163},{"date":"2020-01-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.042},{"date":"2020-01-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.304},{"date":"2020-01-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.01},{"date":"2020-01-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.01},{"date":"2020-02-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.546},{"date":"2020-02-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.428},{"date":"2020-02-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.779},{"date":"2020-02-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.455},{"date":"2020-02-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.358},{"date":"2020-02-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.664},{"date":"2020-02-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.872},{"date":"2020-02-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.709},{"date":"2020-02-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.11},{"date":"2020-02-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.125},{"date":"2020-02-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.998},{"date":"2020-02-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.274},{"date":"2020-02-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.956},{"date":"2020-02-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.956},{"date":"2020-02-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.511},{"date":"2020-02-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.396},{"date":"2020-02-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.74},{"date":"2020-02-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.419},{"date":"2020-02-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.324},{"date":"2020-02-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.624},{"date":"2020-02-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.842},{"date":"2020-02-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.684},{"date":"2020-02-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.075},{"date":"2020-02-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.095},{"date":"2020-02-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.972},{"date":"2020-02-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.241},{"date":"2020-02-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.91},{"date":"2020-02-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.91},{"date":"2020-02-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.518},{"date":"2020-02-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.405},{"date":"2020-02-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.742},{"date":"2020-02-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.428},{"date":"2020-02-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.337},{"date":"2020-02-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.626},{"date":"2020-02-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.841},{"date":"2020-02-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.68},{"date":"2020-02-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.077},{"date":"2020-02-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.091},{"date":"2020-02-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.963},{"date":"2020-02-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.241},{"date":"2020-02-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.89},{"date":"2020-02-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.89},{"date":"2020-02-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.555},{"date":"2020-02-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.441},{"date":"2020-02-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.78},{"date":"2020-02-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.466},{"date":"2020-02-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.373},{"date":"2020-02-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.666},{"date":"2020-02-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.868},{"date":"2020-02-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.709},{"date":"2020-02-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.101},{"date":"2020-02-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.122},{"date":"2020-02-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.996},{"date":"2020-02-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.27},{"date":"2020-02-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.882},{"date":"2020-02-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.882},{"date":"2020-03-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.514},{"date":"2020-03-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.394},{"date":"2020-03-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.754},{"date":"2020-03-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.423},{"date":"2020-03-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.324},{"date":"2020-03-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.639},{"date":"2020-03-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.838},{"date":"2020-03-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.671},{"date":"2020-03-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.085},{"date":"2020-03-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.093},{"date":"2020-03-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.961},{"date":"2020-03-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.248},{"date":"2020-03-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.851},{"date":"2020-03-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.851},{"date":"2020-03-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.468},{"date":"2020-03-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.344},{"date":"2020-03-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.713},{"date":"2020-03-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.375},{"date":"2020-03-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.272},{"date":"2020-03-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.597},{"date":"2020-03-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.798},{"date":"2020-03-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.626},{"date":"2020-03-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.049},{"date":"2020-03-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.054},{"date":"2020-03-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.921},{"date":"2020-03-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.209},{"date":"2020-03-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.814},{"date":"2020-03-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.814},{"date":"2020-03-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.343},{"date":"2020-03-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.213},{"date":"2020-03-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.6},{"date":"2020-03-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.248},{"date":"2020-03-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.139},{"date":"2020-03-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.483},{"date":"2020-03-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.689},{"date":"2020-03-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.516},{"date":"2020-03-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.942},{"date":"2020-03-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.941},{"date":"2020-03-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.805},{"date":"2020-03-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.098},{"date":"2020-03-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.733},{"date":"2020-03-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.733},{"date":"2020-03-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.217},{"date":"2020-03-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.083},{"date":"2020-03-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.478},{"date":"2020-03-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.12},{"date":"2020-03-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.007},{"date":"2020-03-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.361},{"date":"2020-03-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.58},{"date":"2020-03-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.409},{"date":"2020-03-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.828},{"date":"2020-03-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.817},{"date":"2020-03-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.684},{"date":"2020-03-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.97},{"date":"2020-03-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.659},{"date":"2020-03-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.659},{"date":"2020-03-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.103},{"date":"2020-03-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.962},{"date":"2020-03-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.378},{"date":"2020-03-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.005},{"date":"2020-03-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.886},{"date":"2020-03-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.26},{"date":"2020-03-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.473},{"date":"2020-03-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.295},{"date":"2020-03-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.731},{"date":"2020-03-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.716},{"date":"2020-03-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.576},{"date":"2020-03-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.875},{"date":"2020-03-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.586},{"date":"2020-03-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.586},{"date":"2020-04-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.022},{"date":"2020-04-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.877},{"date":"2020-04-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.304},{"date":"2020-04-06","fuel":"gasoline","grade":"regular","formulation":"all","price":1.924},{"date":"2020-04-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.8},{"date":"2020-04-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.185},{"date":"2020-04-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.392},{"date":"2020-04-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.207},{"date":"2020-04-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.658},{"date":"2020-04-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.635},{"date":"2020-04-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.485},{"date":"2020-04-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.806},{"date":"2020-04-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.548},{"date":"2020-04-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.548},{"date":"2020-04-13","fuel":"gasoline","grade":"all","formulation":"all","price":1.951},{"date":"2020-04-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.811},{"date":"2020-04-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.224},{"date":"2020-04-13","fuel":"gasoline","grade":"regular","formulation":"all","price":1.853},{"date":"2020-04-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.735},{"date":"2020-04-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.106},{"date":"2020-04-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.316},{"date":"2020-04-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.142},{"date":"2020-04-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.568},{"date":"2020-04-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.562},{"date":"2020-04-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.418},{"date":"2020-04-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.729},{"date":"2020-04-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.507},{"date":"2020-04-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.507},{"date":"2020-04-20","fuel":"gasoline","grade":"all","formulation":"all","price":1.91},{"date":"2020-04-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.77},{"date":"2020-04-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.186},{"date":"2020-04-20","fuel":"gasoline","grade":"regular","formulation":"all","price":1.812},{"date":"2020-04-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.694},{"date":"2020-04-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.068},{"date":"2020-04-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.275},{"date":"2020-04-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.1},{"date":"2020-04-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.529},{"date":"2020-04-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.519},{"date":"2020-04-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.375},{"date":"2020-04-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.687},{"date":"2020-04-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.48},{"date":"2020-04-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.48},{"date":"2020-04-27","fuel":"gasoline","grade":"all","formulation":"all","price":1.87},{"date":"2020-04-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.731},{"date":"2020-04-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.141},{"date":"2020-04-27","fuel":"gasoline","grade":"regular","formulation":"all","price":1.773},{"date":"2020-04-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.655},{"date":"2020-04-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.025},{"date":"2020-04-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.226},{"date":"2020-04-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.053},{"date":"2020-04-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.477},{"date":"2020-04-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.478},{"date":"2020-04-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.334},{"date":"2020-04-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.644},{"date":"2020-04-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.437},{"date":"2020-04-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.437},{"date":"2020-05-04","fuel":"gasoline","grade":"all","formulation":"all","price":1.883},{"date":"2020-05-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.753},{"date":"2020-05-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.136},{"date":"2020-05-04","fuel":"gasoline","grade":"regular","formulation":"all","price":1.789},{"date":"2020-05-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.68},{"date":"2020-05-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.02},{"date":"2020-05-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.221},{"date":"2020-05-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.052},{"date":"2020-05-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.465},{"date":"2020-05-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.479},{"date":"2020-05-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.339},{"date":"2020-05-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.639},{"date":"2020-05-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.399},{"date":"2020-05-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.399},{"date":"2020-05-11","fuel":"gasoline","grade":"all","formulation":"all","price":1.941},{"date":"2020-05-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.818},{"date":"2020-05-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.182},{"date":"2020-05-11","fuel":"gasoline","grade":"regular","formulation":"all","price":1.851},{"date":"2020-05-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.75},{"date":"2020-05-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.069},{"date":"2020-05-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.257},{"date":"2020-05-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.089},{"date":"2020-05-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.5},{"date":"2020-05-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.519},{"date":"2020-05-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.383},{"date":"2020-05-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.677},{"date":"2020-05-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.394},{"date":"2020-05-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.394},{"date":"2020-05-18","fuel":"gasoline","grade":"all","formulation":"all","price":1.969},{"date":"2020-05-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.845},{"date":"2020-05-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.211},{"date":"2020-05-18","fuel":"gasoline","grade":"regular","formulation":"all","price":1.878},{"date":"2020-05-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.776},{"date":"2020-05-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.095},{"date":"2020-05-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.286},{"date":"2020-05-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.113},{"date":"2020-05-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.536},{"date":"2020-05-18","fuel":"gasoline","grade":"premium","formulation":"all","price":2.553},{"date":"2020-05-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.415},{"date":"2020-05-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.712},{"date":"2020-05-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.386},{"date":"2020-05-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.386},{"date":"2020-05-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.049},{"date":"2020-05-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.938},{"date":"2020-05-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.267},{"date":"2020-05-25","fuel":"gasoline","grade":"regular","formulation":"all","price":1.96},{"date":"2020-05-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.87},{"date":"2020-05-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.153},{"date":"2020-05-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.363},{"date":"2020-05-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.205},{"date":"2020-05-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.588},{"date":"2020-05-25","fuel":"gasoline","grade":"premium","formulation":"all","price":2.618},{"date":"2020-05-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.493},{"date":"2020-05-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.761},{"date":"2020-05-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.39},{"date":"2020-05-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.39},{"date":"2020-06-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.064},{"date":"2020-06-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":1.952},{"date":"2020-06-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.285},{"date":"2020-06-01","fuel":"gasoline","grade":"regular","formulation":"all","price":1.974},{"date":"2020-06-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.883},{"date":"2020-06-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.169},{"date":"2020-06-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.38},{"date":"2020-06-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.227},{"date":"2020-06-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.601},{"date":"2020-06-01","fuel":"gasoline","grade":"premium","formulation":"all","price":2.638},{"date":"2020-06-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.512},{"date":"2020-06-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.784},{"date":"2020-06-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.386},{"date":"2020-06-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.386},{"date":"2020-06-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.123},{"date":"2020-06-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.014},{"date":"2020-06-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.338},{"date":"2020-06-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.036},{"date":"2020-06-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":1.947},{"date":"2020-06-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.226},{"date":"2020-06-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.434},{"date":"2020-06-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.283},{"date":"2020-06-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.652},{"date":"2020-06-08","fuel":"gasoline","grade":"premium","formulation":"all","price":2.686},{"date":"2020-06-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.565},{"date":"2020-06-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.824},{"date":"2020-06-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.396},{"date":"2020-06-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.396},{"date":"2020-06-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.185},{"date":"2020-06-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.084},{"date":"2020-06-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.384},{"date":"2020-06-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.098},{"date":"2020-06-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.017},{"date":"2020-06-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.272},{"date":"2020-06-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.495},{"date":"2020-06-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.357},{"date":"2020-06-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.695},{"date":"2020-06-15","fuel":"gasoline","grade":"premium","formulation":"all","price":2.745},{"date":"2020-06-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.636},{"date":"2020-06-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.869},{"date":"2020-06-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.403},{"date":"2020-06-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.403},{"date":"2020-06-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.216},{"date":"2020-06-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.115},{"date":"2020-06-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.414},{"date":"2020-06-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.129},{"date":"2020-06-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.048},{"date":"2020-06-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.303},{"date":"2020-06-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.521},{"date":"2020-06-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.383},{"date":"2020-06-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.721},{"date":"2020-06-22","fuel":"gasoline","grade":"premium","formulation":"all","price":2.773},{"date":"2020-06-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.663},{"date":"2020-06-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.901},{"date":"2020-06-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.425},{"date":"2020-06-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.425},{"date":"2020-06-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.26},{"date":"2020-06-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.162},{"date":"2020-06-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.456},{"date":"2020-06-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.174},{"date":"2020-06-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.094},{"date":"2020-06-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.346},{"date":"2020-06-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.563},{"date":"2020-06-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.428},{"date":"2020-06-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.761},{"date":"2020-06-29","fuel":"gasoline","grade":"premium","formulation":"all","price":2.812},{"date":"2020-06-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.707},{"date":"2020-06-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.935},{"date":"2020-06-29","fuel":"diesel","grade":"all","formulation":"NA","price":2.43},{"date":"2020-06-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.43},{"date":"2020-07-06","fuel":"gasoline","grade":"all","formulation":"all","price":2.265},{"date":"2020-07-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.168},{"date":"2020-07-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.456},{"date":"2020-07-06","fuel":"gasoline","grade":"regular","formulation":"all","price":2.177},{"date":"2020-07-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.1},{"date":"2020-07-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.344},{"date":"2020-07-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.571},{"date":"2020-07-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.438},{"date":"2020-07-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.764},{"date":"2020-07-06","fuel":"gasoline","grade":"premium","formulation":"all","price":2.821},{"date":"2020-07-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.719},{"date":"2020-07-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.94},{"date":"2020-07-06","fuel":"diesel","grade":"all","formulation":"NA","price":2.437},{"date":"2020-07-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.437},{"date":"2020-07-13","fuel":"gasoline","grade":"all","formulation":"all","price":2.283},{"date":"2020-07-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.181},{"date":"2020-07-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.482},{"date":"2020-07-13","fuel":"gasoline","grade":"regular","formulation":"all","price":2.195},{"date":"2020-07-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.113},{"date":"2020-07-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.372},{"date":"2020-07-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.589},{"date":"2020-07-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.454},{"date":"2020-07-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.786},{"date":"2020-07-13","fuel":"gasoline","grade":"premium","formulation":"all","price":2.842},{"date":"2020-07-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.737},{"date":"2020-07-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.963},{"date":"2020-07-13","fuel":"diesel","grade":"all","formulation":"NA","price":2.438},{"date":"2020-07-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.438},{"date":"2020-07-20","fuel":"gasoline","grade":"all","formulation":"all","price":2.275},{"date":"2020-07-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.168},{"date":"2020-07-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.484},{"date":"2020-07-20","fuel":"gasoline","grade":"regular","formulation":"all","price":2.186},{"date":"2020-07-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.099},{"date":"2020-07-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.373},{"date":"2020-07-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.584},{"date":"2020-07-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.443},{"date":"2020-07-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.789},{"date":"2020-07-20","fuel":"gasoline","grade":"premium","formulation":"all","price":2.836},{"date":"2020-07-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.726},{"date":"2020-07-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.964},{"date":"2020-07-20","fuel":"diesel","grade":"all","formulation":"NA","price":2.433},{"date":"2020-07-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.433},{"date":"2020-07-27","fuel":"gasoline","grade":"all","formulation":"all","price":2.265},{"date":"2020-07-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.155},{"date":"2020-07-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.482},{"date":"2020-07-27","fuel":"gasoline","grade":"regular","formulation":"all","price":2.175},{"date":"2020-07-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.085},{"date":"2020-07-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.369},{"date":"2020-07-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.582},{"date":"2020-07-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.436},{"date":"2020-07-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.793},{"date":"2020-07-27","fuel":"gasoline","grade":"premium","formulation":"all","price":2.838},{"date":"2020-07-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.724},{"date":"2020-07-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.97},{"date":"2020-07-27","fuel":"diesel","grade":"all","formulation":"NA","price":2.427},{"date":"2020-07-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.427},{"date":"2020-08-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.266},{"date":"2020-08-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.156},{"date":"2020-08-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.481},{"date":"2020-08-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.176},{"date":"2020-08-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.085},{"date":"2020-08-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.37},{"date":"2020-08-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.587},{"date":"2020-08-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.445},{"date":"2020-08-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.793},{"date":"2020-08-03","fuel":"gasoline","grade":"premium","formulation":"all","price":2.834},{"date":"2020-08-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.723},{"date":"2020-08-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.964},{"date":"2020-08-03","fuel":"diesel","grade":"all","formulation":"NA","price":2.424},{"date":"2020-08-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.424},{"date":"2020-08-10","fuel":"gasoline","grade":"all","formulation":"all","price":2.256},{"date":"2020-08-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.149},{"date":"2020-08-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.466},{"date":"2020-08-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.166},{"date":"2020-08-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.078},{"date":"2020-08-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.354},{"date":"2020-08-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.578},{"date":"2020-08-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.437},{"date":"2020-08-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.782},{"date":"2020-08-10","fuel":"gasoline","grade":"premium","formulation":"all","price":2.826},{"date":"2020-08-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.716},{"date":"2020-08-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.954},{"date":"2020-08-10","fuel":"diesel","grade":"all","formulation":"NA","price":2.428},{"date":"2020-08-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.428},{"date":"2020-08-17","fuel":"gasoline","grade":"all","formulation":"all","price":2.256},{"date":"2020-08-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.147},{"date":"2020-08-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.473},{"date":"2020-08-17","fuel":"gasoline","grade":"regular","formulation":"all","price":2.166},{"date":"2020-08-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.077},{"date":"2020-08-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.359},{"date":"2020-08-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.577},{"date":"2020-08-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.433},{"date":"2020-08-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.791},{"date":"2020-08-17","fuel":"gasoline","grade":"premium","formulation":"all","price":2.829},{"date":"2020-08-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.714},{"date":"2020-08-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.966},{"date":"2020-08-17","fuel":"diesel","grade":"all","formulation":"NA","price":2.427},{"date":"2020-08-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.427},{"date":"2020-08-24","fuel":"gasoline","grade":"all","formulation":"all","price":2.272},{"date":"2020-08-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.161},{"date":"2020-08-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.491},{"date":"2020-08-24","fuel":"gasoline","grade":"regular","formulation":"all","price":2.182},{"date":"2020-08-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.09},{"date":"2020-08-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.378},{"date":"2020-08-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.595},{"date":"2020-08-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.442},{"date":"2020-08-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.817},{"date":"2020-08-24","fuel":"gasoline","grade":"premium","formulation":"all","price":2.842},{"date":"2020-08-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.725},{"date":"2020-08-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.981},{"date":"2020-08-24","fuel":"diesel","grade":"all","formulation":"NA","price":2.426},{"date":"2020-08-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.426},{"date":"2020-08-31","fuel":"gasoline","grade":"all","formulation":"all","price":2.311},{"date":"2020-08-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.204},{"date":"2020-08-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.523},{"date":"2020-08-31","fuel":"gasoline","grade":"regular","formulation":"all","price":2.222},{"date":"2020-08-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.135},{"date":"2020-08-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.411},{"date":"2020-08-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.629},{"date":"2020-08-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.484},{"date":"2020-08-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.84},{"date":"2020-08-31","fuel":"gasoline","grade":"premium","formulation":"all","price":2.877},{"date":"2020-08-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.763},{"date":"2020-08-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.011},{"date":"2020-08-31","fuel":"diesel","grade":"all","formulation":"NA","price":2.441},{"date":"2020-08-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.441},{"date":"2020-09-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.302},{"date":"2020-09-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.193},{"date":"2020-09-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.518},{"date":"2020-09-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.211},{"date":"2020-09-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.122},{"date":"2020-09-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.405},{"date":"2020-09-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.624},{"date":"2020-09-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.481},{"date":"2020-09-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.836},{"date":"2020-09-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.872},{"date":"2020-09-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.758},{"date":"2020-09-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.008},{"date":"2020-09-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.435},{"date":"2020-09-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.435},{"date":"2020-09-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.274},{"date":"2020-09-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.162},{"date":"2020-09-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.497},{"date":"2020-09-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.183},{"date":"2020-09-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.091},{"date":"2020-09-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.383},{"date":"2020-09-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.6},{"date":"2020-09-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.451},{"date":"2020-09-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.82},{"date":"2020-09-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.851},{"date":"2020-09-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.733},{"date":"2020-09-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.992},{"date":"2020-09-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.422},{"date":"2020-09-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.422},{"date":"2020-09-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.259},{"date":"2020-09-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.149},{"date":"2020-09-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.478},{"date":"2020-09-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.168},{"date":"2020-09-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.078},{"date":"2020-09-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.365},{"date":"2020-09-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.582},{"date":"2020-09-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.432},{"date":"2020-09-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.803},{"date":"2020-09-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.836},{"date":"2020-09-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.721},{"date":"2020-09-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.972},{"date":"2020-09-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.404},{"date":"2020-09-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.404},{"date":"2020-09-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.259},{"date":"2020-09-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.157},{"date":"2020-09-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.463},{"date":"2020-09-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.169},{"date":"2020-09-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.088},{"date":"2020-09-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.346},{"date":"2020-09-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.583},{"date":"2020-09-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.438},{"date":"2020-09-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.799},{"date":"2020-09-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.831},{"date":"2020-09-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.719},{"date":"2020-09-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.966},{"date":"2020-09-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.394},{"date":"2020-09-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.394},{"date":"2020-10-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.262},{"date":"2020-10-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.161},{"date":"2020-10-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.464},{"date":"2020-10-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.172},{"date":"2020-10-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.091},{"date":"2020-10-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.349},{"date":"2020-10-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.583},{"date":"2020-10-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.442},{"date":"2020-10-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.793},{"date":"2020-10-05","fuel":"gasoline","grade":"premium","formulation":"all","price":2.833},{"date":"2020-10-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.723},{"date":"2020-10-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.965},{"date":"2020-10-05","fuel":"diesel","grade":"all","formulation":"NA","price":2.387},{"date":"2020-10-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.387},{"date":"2020-10-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.257},{"date":"2020-10-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.154},{"date":"2020-10-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.465},{"date":"2020-10-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.167},{"date":"2020-10-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.084},{"date":"2020-10-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.35},{"date":"2020-10-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.579},{"date":"2020-10-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.434},{"date":"2020-10-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.794},{"date":"2020-10-12","fuel":"gasoline","grade":"premium","formulation":"all","price":2.829},{"date":"2020-10-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.716},{"date":"2020-10-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.965},{"date":"2020-10-12","fuel":"diesel","grade":"all","formulation":"NA","price":2.395},{"date":"2020-10-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.395},{"date":"2020-10-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.24},{"date":"2020-10-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.134},{"date":"2020-10-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.454},{"date":"2020-10-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.15},{"date":"2020-10-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.064},{"date":"2020-10-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.338},{"date":"2020-10-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.565},{"date":"2020-10-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.416},{"date":"2020-10-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.787},{"date":"2020-10-19","fuel":"gasoline","grade":"premium","formulation":"all","price":2.815},{"date":"2020-10-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.698},{"date":"2020-10-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.957},{"date":"2020-10-19","fuel":"diesel","grade":"all","formulation":"NA","price":2.388},{"date":"2020-10-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.388},{"date":"2020-10-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.234},{"date":"2020-10-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.124},{"date":"2020-10-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.455},{"date":"2020-10-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.143},{"date":"2020-10-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.053},{"date":"2020-10-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.34},{"date":"2020-10-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.559},{"date":"2020-10-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.407},{"date":"2020-10-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.785},{"date":"2020-10-26","fuel":"gasoline","grade":"premium","formulation":"all","price":2.81},{"date":"2020-10-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.69},{"date":"2020-10-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.955},{"date":"2020-10-26","fuel":"diesel","grade":"all","formulation":"NA","price":2.385},{"date":"2020-10-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.385},{"date":"2020-11-02","fuel":"gasoline","grade":"all","formulation":"all","price":2.204},{"date":"2020-11-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.092},{"date":"2020-11-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.43},{"date":"2020-11-02","fuel":"gasoline","grade":"regular","formulation":"all","price":2.112},{"date":"2020-11-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.021},{"date":"2020-11-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.314},{"date":"2020-11-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.533},{"date":"2020-11-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.378},{"date":"2020-11-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.765},{"date":"2020-11-02","fuel":"gasoline","grade":"premium","formulation":"all","price":2.786},{"date":"2020-11-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.661},{"date":"2020-11-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.936},{"date":"2020-11-02","fuel":"diesel","grade":"all","formulation":"NA","price":2.372},{"date":"2020-11-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.372},{"date":"2020-11-09","fuel":"gasoline","grade":"all","formulation":"all","price":2.188},{"date":"2020-11-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.074},{"date":"2020-11-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.417},{"date":"2020-11-09","fuel":"gasoline","grade":"regular","formulation":"all","price":2.096},{"date":"2020-11-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.004},{"date":"2020-11-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.3},{"date":"2020-11-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.517},{"date":"2020-11-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.358},{"date":"2020-11-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.755},{"date":"2020-11-09","fuel":"gasoline","grade":"premium","formulation":"all","price":2.771},{"date":"2020-11-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.643},{"date":"2020-11-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.926},{"date":"2020-11-09","fuel":"diesel","grade":"all","formulation":"NA","price":2.383},{"date":"2020-11-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.383},{"date":"2020-11-16","fuel":"gasoline","grade":"all","formulation":"all","price":2.202},{"date":"2020-11-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.089},{"date":"2020-11-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.429},{"date":"2020-11-16","fuel":"gasoline","grade":"regular","formulation":"all","price":2.111},{"date":"2020-11-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.018},{"date":"2020-11-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.312},{"date":"2020-11-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.532},{"date":"2020-11-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.377},{"date":"2020-11-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.765},{"date":"2020-11-16","fuel":"gasoline","grade":"premium","formulation":"all","price":2.783},{"date":"2020-11-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.656},{"date":"2020-11-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.936},{"date":"2020-11-16","fuel":"diesel","grade":"all","formulation":"NA","price":2.441},{"date":"2020-11-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.441},{"date":"2020-11-23","fuel":"gasoline","grade":"all","formulation":"all","price":2.194},{"date":"2020-11-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.08},{"date":"2020-11-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.422},{"date":"2020-11-23","fuel":"gasoline","grade":"regular","formulation":"all","price":2.102},{"date":"2020-11-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.009},{"date":"2020-11-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.305},{"date":"2020-11-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.525},{"date":"2020-11-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.369},{"date":"2020-11-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.759},{"date":"2020-11-23","fuel":"gasoline","grade":"premium","formulation":"all","price":2.779},{"date":"2020-11-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.652},{"date":"2020-11-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.933},{"date":"2020-11-23","fuel":"diesel","grade":"all","formulation":"NA","price":2.462},{"date":"2020-11-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.462},{"date":"2020-11-30","fuel":"gasoline","grade":"all","formulation":"all","price":2.211},{"date":"2020-11-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.093},{"date":"2020-11-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.444},{"date":"2020-11-30","fuel":"gasoline","grade":"regular","formulation":"all","price":2.12},{"date":"2020-11-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.022},{"date":"2020-11-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.329},{"date":"2020-11-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.54},{"date":"2020-11-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.379},{"date":"2020-11-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.778},{"date":"2020-11-30","fuel":"gasoline","grade":"premium","formulation":"all","price":2.792},{"date":"2020-11-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.661},{"date":"2020-11-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.947},{"date":"2020-11-30","fuel":"diesel","grade":"all","formulation":"NA","price":2.502},{"date":"2020-11-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.502},{"date":"2020-12-07","fuel":"gasoline","grade":"all","formulation":"all","price":2.246},{"date":"2020-12-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.133},{"date":"2020-12-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.469},{"date":"2020-12-07","fuel":"gasoline","grade":"regular","formulation":"all","price":2.156},{"date":"2020-12-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.063},{"date":"2020-12-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.355},{"date":"2020-12-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.567},{"date":"2020-12-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.412},{"date":"2020-12-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.798},{"date":"2020-12-07","fuel":"gasoline","grade":"premium","formulation":"all","price":2.82},{"date":"2020-12-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.694},{"date":"2020-12-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.968},{"date":"2020-12-07","fuel":"diesel","grade":"all","formulation":"NA","price":2.526},{"date":"2020-12-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.526},{"date":"2020-12-14","fuel":"gasoline","grade":"all","formulation":"all","price":2.247},{"date":"2020-12-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.132},{"date":"2020-12-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.474},{"date":"2020-12-14","fuel":"gasoline","grade":"regular","formulation":"all","price":2.158},{"date":"2020-12-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.063},{"date":"2020-12-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.361},{"date":"2020-12-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.565},{"date":"2020-12-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.407},{"date":"2020-12-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.8},{"date":"2020-12-14","fuel":"gasoline","grade":"premium","formulation":"all","price":2.821},{"date":"2020-12-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.693},{"date":"2020-12-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":2.973},{"date":"2020-12-14","fuel":"diesel","grade":"all","formulation":"NA","price":2.559},{"date":"2020-12-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.559},{"date":"2020-12-21","fuel":"gasoline","grade":"all","formulation":"all","price":2.311},{"date":"2020-12-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.204},{"date":"2020-12-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.522},{"date":"2020-12-21","fuel":"gasoline","grade":"regular","formulation":"all","price":2.224},{"date":"2020-12-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.137},{"date":"2020-12-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.41},{"date":"2020-12-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.618},{"date":"2020-12-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.466},{"date":"2020-12-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.843},{"date":"2020-12-21","fuel":"gasoline","grade":"premium","formulation":"all","price":2.871},{"date":"2020-12-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.749},{"date":"2020-12-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.015},{"date":"2020-12-21","fuel":"diesel","grade":"all","formulation":"NA","price":2.619},{"date":"2020-12-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.619},{"date":"2020-12-28","fuel":"gasoline","grade":"all","formulation":"all","price":2.33},{"date":"2020-12-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.225},{"date":"2020-12-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.535},{"date":"2020-12-28","fuel":"gasoline","grade":"regular","formulation":"all","price":2.243},{"date":"2020-12-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.158},{"date":"2020-12-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.423},{"date":"2020-12-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.634},{"date":"2020-12-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.482},{"date":"2020-12-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.858},{"date":"2020-12-28","fuel":"gasoline","grade":"premium","formulation":"all","price":2.889},{"date":"2020-12-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.77},{"date":"2020-12-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.031},{"date":"2020-12-28","fuel":"diesel","grade":"all","formulation":"NA","price":2.635},{"date":"2020-12-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.635},{"date":"2021-01-04","fuel":"gasoline","grade":"all","formulation":"all","price":2.336},{"date":"2021-01-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.227},{"date":"2021-01-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.549},{"date":"2021-01-04","fuel":"gasoline","grade":"regular","formulation":"all","price":2.249},{"date":"2021-01-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.16},{"date":"2021-01-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.437},{"date":"2021-01-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.639},{"date":"2021-01-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.484},{"date":"2021-01-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.867},{"date":"2021-01-04","fuel":"gasoline","grade":"premium","formulation":"all","price":2.895},{"date":"2021-01-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.771},{"date":"2021-01-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.042},{"date":"2021-01-04","fuel":"diesel","grade":"all","formulation":"NA","price":2.64},{"date":"2021-01-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.64},{"date":"2021-01-11","fuel":"gasoline","grade":"all","formulation":"all","price":2.403},{"date":"2021-01-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.298},{"date":"2021-01-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.61},{"date":"2021-01-11","fuel":"gasoline","grade":"regular","formulation":"all","price":2.317},{"date":"2021-01-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.232},{"date":"2021-01-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.498},{"date":"2021-01-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.702},{"date":"2021-01-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.55},{"date":"2021-01-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.927},{"date":"2021-01-11","fuel":"gasoline","grade":"premium","formulation":"all","price":2.959},{"date":"2021-01-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.839},{"date":"2021-01-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.101},{"date":"2021-01-11","fuel":"diesel","grade":"all","formulation":"NA","price":2.67},{"date":"2021-01-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.67},{"date":"2021-01-18","fuel":"gasoline","grade":"all","formulation":"all","price":2.464},{"date":"2021-01-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.351},{"date":"2021-01-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.688},{"date":"2021-01-18","fuel":"gasoline","grade":"regular","formulation":"all","price":2.379},{"date":"2021-01-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.285},{"date":"2021-01-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.579},{"date":"2021-01-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.759},{"date":"2021-01-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.601},{"date":"2021-01-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":2.995},{"date":"2021-01-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.014},{"date":"2021-01-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.885},{"date":"2021-01-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.166},{"date":"2021-01-18","fuel":"diesel","grade":"all","formulation":"NA","price":2.696},{"date":"2021-01-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.696},{"date":"2021-01-25","fuel":"gasoline","grade":"all","formulation":"all","price":2.478},{"date":"2021-01-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.363},{"date":"2021-01-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.703},{"date":"2021-01-25","fuel":"gasoline","grade":"regular","formulation":"all","price":2.392},{"date":"2021-01-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.298},{"date":"2021-01-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.593},{"date":"2021-01-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.776},{"date":"2021-01-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.615},{"date":"2021-01-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.014},{"date":"2021-01-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.033},{"date":"2021-01-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.9},{"date":"2021-01-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.191},{"date":"2021-01-25","fuel":"diesel","grade":"all","formulation":"NA","price":2.716},{"date":"2021-01-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.716},{"date":"2021-02-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.495},{"date":"2021-02-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.382},{"date":"2021-02-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.72},{"date":"2021-02-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.409},{"date":"2021-02-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.316},{"date":"2021-02-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.608},{"date":"2021-02-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.792},{"date":"2021-02-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.63},{"date":"2021-02-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.034},{"date":"2021-02-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.051},{"date":"2021-02-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.917},{"date":"2021-02-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.21},{"date":"2021-02-01","fuel":"diesel","grade":"all","formulation":"NA","price":2.738},{"date":"2021-02-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.738},{"date":"2021-02-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.548},{"date":"2021-02-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.438},{"date":"2021-02-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.766},{"date":"2021-02-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.461},{"date":"2021-02-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.372},{"date":"2021-02-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.653},{"date":"2021-02-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.847},{"date":"2021-02-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.69},{"date":"2021-02-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.083},{"date":"2021-02-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.104},{"date":"2021-02-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":2.975},{"date":"2021-02-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.258},{"date":"2021-02-08","fuel":"diesel","grade":"all","formulation":"NA","price":2.801},{"date":"2021-02-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.801},{"date":"2021-02-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.588},{"date":"2021-02-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.475},{"date":"2021-02-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.812},{"date":"2021-02-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.501},{"date":"2021-02-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.409},{"date":"2021-02-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.701},{"date":"2021-02-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":2.89},{"date":"2021-02-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.73},{"date":"2021-02-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.13},{"date":"2021-02-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.141},{"date":"2021-02-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.011},{"date":"2021-02-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.297},{"date":"2021-02-15","fuel":"diesel","grade":"all","formulation":"NA","price":2.876},{"date":"2021-02-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.876},{"date":"2021-02-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.717},{"date":"2021-02-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.613},{"date":"2021-02-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":2.926},{"date":"2021-02-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.633},{"date":"2021-02-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.549},{"date":"2021-02-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.815},{"date":"2021-02-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.006},{"date":"2021-02-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.854},{"date":"2021-02-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.235},{"date":"2021-02-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.263},{"date":"2021-02-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.14},{"date":"2021-02-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.411},{"date":"2021-02-22","fuel":"diesel","grade":"all","formulation":"NA","price":2.973},{"date":"2021-02-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":2.973},{"date":"2021-03-01","fuel":"gasoline","grade":"all","formulation":"all","price":2.796},{"date":"2021-03-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.689},{"date":"2021-03-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.012},{"date":"2021-03-01","fuel":"gasoline","grade":"regular","formulation":"all","price":2.711},{"date":"2021-03-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.625},{"date":"2021-03-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.899},{"date":"2021-03-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.084},{"date":"2021-03-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.926},{"date":"2021-03-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.324},{"date":"2021-03-01","fuel":"gasoline","grade":"premium","formulation":"all","price":3.344},{"date":"2021-03-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.213},{"date":"2021-03-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.501},{"date":"2021-03-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.072},{"date":"2021-03-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.072},{"date":"2021-03-08","fuel":"gasoline","grade":"all","formulation":"all","price":2.857},{"date":"2021-03-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.749},{"date":"2021-03-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.072},{"date":"2021-03-08","fuel":"gasoline","grade":"regular","formulation":"all","price":2.771},{"date":"2021-03-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.684},{"date":"2021-03-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":2.961},{"date":"2021-03-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.15},{"date":"2021-03-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":2.997},{"date":"2021-03-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.38},{"date":"2021-03-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.41},{"date":"2021-03-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.284},{"date":"2021-03-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.56},{"date":"2021-03-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.143},{"date":"2021-03-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.143},{"date":"2021-03-15","fuel":"gasoline","grade":"all","formulation":"all","price":2.94},{"date":"2021-03-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.832},{"date":"2021-03-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.156},{"date":"2021-03-15","fuel":"gasoline","grade":"regular","formulation":"all","price":2.853},{"date":"2021-03-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.766},{"date":"2021-03-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.044},{"date":"2021-03-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.241},{"date":"2021-03-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.088},{"date":"2021-03-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.472},{"date":"2021-03-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.495},{"date":"2021-03-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.369},{"date":"2021-03-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.646},{"date":"2021-03-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.191},{"date":"2021-03-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.191},{"date":"2021-03-22","fuel":"gasoline","grade":"all","formulation":"all","price":2.954},{"date":"2021-03-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.849},{"date":"2021-03-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.164},{"date":"2021-03-22","fuel":"gasoline","grade":"regular","formulation":"all","price":2.865},{"date":"2021-03-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.78},{"date":"2021-03-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.051},{"date":"2021-03-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.265},{"date":"2021-03-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.119},{"date":"2021-03-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.485},{"date":"2021-03-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.516},{"date":"2021-03-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.399},{"date":"2021-03-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.655},{"date":"2021-03-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.194},{"date":"2021-03-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.194},{"date":"2021-03-29","fuel":"gasoline","grade":"all","formulation":"all","price":2.941},{"date":"2021-03-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.839},{"date":"2021-03-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.146},{"date":"2021-03-29","fuel":"gasoline","grade":"regular","formulation":"all","price":2.852},{"date":"2021-03-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.771},{"date":"2021-03-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.032},{"date":"2021-03-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.251},{"date":"2021-03-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.113},{"date":"2021-03-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.465},{"date":"2021-03-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.506},{"date":"2021-03-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.39},{"date":"2021-03-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.645},{"date":"2021-03-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.161},{"date":"2021-03-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.161},{"date":"2021-04-05","fuel":"gasoline","grade":"all","formulation":"all","price":2.945},{"date":"2021-04-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.845},{"date":"2021-04-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.147},{"date":"2021-04-05","fuel":"gasoline","grade":"regular","formulation":"all","price":2.857},{"date":"2021-04-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.777},{"date":"2021-04-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.032},{"date":"2021-04-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.259},{"date":"2021-04-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.118},{"date":"2021-04-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.472},{"date":"2021-04-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.511},{"date":"2021-04-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.395},{"date":"2021-04-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.649},{"date":"2021-04-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.144},{"date":"2021-04-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.144},{"date":"2021-04-12","fuel":"gasoline","grade":"all","formulation":"all","price":2.939},{"date":"2021-04-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.832},{"date":"2021-04-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.152},{"date":"2021-04-12","fuel":"gasoline","grade":"regular","formulation":"all","price":2.849},{"date":"2021-04-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.763},{"date":"2021-04-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.036},{"date":"2021-04-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.259},{"date":"2021-04-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.104},{"date":"2021-04-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.49},{"date":"2021-04-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.51},{"date":"2021-04-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.385},{"date":"2021-04-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.656},{"date":"2021-04-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.129},{"date":"2021-04-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.129},{"date":"2021-04-19","fuel":"gasoline","grade":"all","formulation":"all","price":2.945},{"date":"2021-04-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.836},{"date":"2021-04-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.162},{"date":"2021-04-19","fuel":"gasoline","grade":"regular","formulation":"all","price":2.855},{"date":"2021-04-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.767},{"date":"2021-04-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.045},{"date":"2021-04-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.267},{"date":"2021-04-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.106},{"date":"2021-04-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.507},{"date":"2021-04-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.517},{"date":"2021-04-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.391},{"date":"2021-04-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.666},{"date":"2021-04-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.124},{"date":"2021-04-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.124},{"date":"2021-04-26","fuel":"gasoline","grade":"all","formulation":"all","price":2.962},{"date":"2021-04-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.844},{"date":"2021-04-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.197},{"date":"2021-04-26","fuel":"gasoline","grade":"regular","formulation":"all","price":2.872},{"date":"2021-04-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.776},{"date":"2021-04-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.08},{"date":"2021-04-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.283},{"date":"2021-04-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.113},{"date":"2021-04-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.536},{"date":"2021-04-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.536},{"date":"2021-04-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.4},{"date":"2021-04-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.698},{"date":"2021-04-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.124},{"date":"2021-04-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.124},{"date":"2021-05-03","fuel":"gasoline","grade":"all","formulation":"all","price":2.981},{"date":"2021-05-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.859},{"date":"2021-05-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.223},{"date":"2021-05-03","fuel":"gasoline","grade":"regular","formulation":"all","price":2.89},{"date":"2021-05-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.79},{"date":"2021-05-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.106},{"date":"2021-05-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.303},{"date":"2021-05-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.132},{"date":"2021-05-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.559},{"date":"2021-05-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.557},{"date":"2021-05-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.415},{"date":"2021-05-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.725},{"date":"2021-05-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.142},{"date":"2021-05-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.142},{"date":"2021-05-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.051},{"date":"2021-05-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.929},{"date":"2021-05-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.296},{"date":"2021-05-10","fuel":"gasoline","grade":"regular","formulation":"all","price":2.961},{"date":"2021-05-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.86},{"date":"2021-05-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.181},{"date":"2021-05-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.372},{"date":"2021-05-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.2},{"date":"2021-05-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.628},{"date":"2021-05-10","fuel":"gasoline","grade":"premium","formulation":"all","price":3.624},{"date":"2021-05-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.482},{"date":"2021-05-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.793},{"date":"2021-05-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.186},{"date":"2021-05-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.186},{"date":"2021-05-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.118},{"date":"2021-05-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.996},{"date":"2021-05-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.355},{"date":"2021-05-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.028},{"date":"2021-05-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.928},{"date":"2021-05-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.241},{"date":"2021-05-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.44},{"date":"2021-05-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.273},{"date":"2021-05-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.684},{"date":"2021-05-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.688},{"date":"2021-05-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.552},{"date":"2021-05-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.846},{"date":"2021-05-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.249},{"date":"2021-05-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.249},{"date":"2021-05-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.112},{"date":"2021-05-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.99},{"date":"2021-05-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.353},{"date":"2021-05-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.02},{"date":"2021-05-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.92},{"date":"2021-05-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.237},{"date":"2021-05-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.445},{"date":"2021-05-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.277},{"date":"2021-05-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.695},{"date":"2021-05-24","fuel":"gasoline","grade":"premium","formulation":"all","price":3.69},{"date":"2021-05-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.554},{"date":"2021-05-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.85},{"date":"2021-05-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.253},{"date":"2021-05-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.253},{"date":"2021-05-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.119},{"date":"2021-05-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":2.997},{"date":"2021-05-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.362},{"date":"2021-05-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.027},{"date":"2021-05-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.927},{"date":"2021-05-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.244},{"date":"2021-05-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.45},{"date":"2021-05-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.278},{"date":"2021-05-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.706},{"date":"2021-05-31","fuel":"gasoline","grade":"premium","formulation":"all","price":3.699},{"date":"2021-05-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.558},{"date":"2021-05-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.866},{"date":"2021-05-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.255},{"date":"2021-05-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.255},{"date":"2021-06-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.128},{"date":"2021-06-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.005},{"date":"2021-06-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.373},{"date":"2021-06-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.035},{"date":"2021-06-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.935},{"date":"2021-06-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.255},{"date":"2021-06-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.463},{"date":"2021-06-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.293},{"date":"2021-06-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.715},{"date":"2021-06-07","fuel":"gasoline","grade":"premium","formulation":"all","price":3.712},{"date":"2021-06-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.568},{"date":"2021-06-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.882},{"date":"2021-06-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.274},{"date":"2021-06-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.274},{"date":"2021-06-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.161},{"date":"2021-06-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.041},{"date":"2021-06-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.401},{"date":"2021-06-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.069},{"date":"2021-06-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.97},{"date":"2021-06-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.283},{"date":"2021-06-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.488},{"date":"2021-06-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.322},{"date":"2021-06-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.737},{"date":"2021-06-14","fuel":"gasoline","grade":"premium","formulation":"all","price":3.744},{"date":"2021-06-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.606},{"date":"2021-06-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.909},{"date":"2021-06-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.286},{"date":"2021-06-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.286},{"date":"2021-06-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.153},{"date":"2021-06-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.033},{"date":"2021-06-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.395},{"date":"2021-06-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.06},{"date":"2021-06-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.961},{"date":"2021-06-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.276},{"date":"2021-06-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.489},{"date":"2021-06-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.326},{"date":"2021-06-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.735},{"date":"2021-06-21","fuel":"gasoline","grade":"premium","formulation":"all","price":3.744},{"date":"2021-06-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.606},{"date":"2021-06-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.907},{"date":"2021-06-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.287},{"date":"2021-06-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.287},{"date":"2021-06-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.185},{"date":"2021-06-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.062},{"date":"2021-06-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.43},{"date":"2021-06-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.091},{"date":"2021-06-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.99},{"date":"2021-06-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.309},{"date":"2021-06-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.524},{"date":"2021-06-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.357},{"date":"2021-06-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.775},{"date":"2021-06-28","fuel":"gasoline","grade":"premium","formulation":"all","price":3.777},{"date":"2021-06-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.635},{"date":"2021-06-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.947},{"date":"2021-06-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.3},{"date":"2021-06-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.3},{"date":"2021-07-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.216},{"date":"2021-07-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.104},{"date":"2021-07-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.441},{"date":"2021-07-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.122},{"date":"2021-07-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.032},{"date":"2021-07-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.321},{"date":"2021-07-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.559},{"date":"2021-07-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.407},{"date":"2021-07-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.787},{"date":"2021-07-05","fuel":"gasoline","grade":"premium","formulation":"all","price":3.806},{"date":"2021-07-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.681},{"date":"2021-07-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.955},{"date":"2021-07-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.331},{"date":"2021-07-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.331},{"date":"2021-07-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.227},{"date":"2021-07-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.112},{"date":"2021-07-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.459},{"date":"2021-07-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.133},{"date":"2021-07-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.039},{"date":"2021-07-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.339},{"date":"2021-07-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.573},{"date":"2021-07-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.416},{"date":"2021-07-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.807},{"date":"2021-07-12","fuel":"gasoline","grade":"premium","formulation":"all","price":3.819},{"date":"2021-07-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.691},{"date":"2021-07-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.971},{"date":"2021-07-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.338},{"date":"2021-07-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.338},{"date":"2021-07-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.247},{"date":"2021-07-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.135},{"date":"2021-07-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.473},{"date":"2021-07-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.153},{"date":"2021-07-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.061},{"date":"2021-07-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.354},{"date":"2021-07-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.592},{"date":"2021-07-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.443},{"date":"2021-07-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.815},{"date":"2021-07-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.839},{"date":"2021-07-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.717},{"date":"2021-07-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.984},{"date":"2021-07-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.344},{"date":"2021-07-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.344},{"date":"2021-07-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.232},{"date":"2021-07-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.118},{"date":"2021-07-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.46},{"date":"2021-07-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.136},{"date":"2021-07-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.044},{"date":"2021-07-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.34},{"date":"2021-07-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.584},{"date":"2021-07-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.434},{"date":"2021-07-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.81},{"date":"2021-07-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.829},{"date":"2021-07-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.706},{"date":"2021-07-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":3.976},{"date":"2021-07-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.342},{"date":"2021-07-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.342},{"date":"2021-08-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.256},{"date":"2021-08-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.134},{"date":"2021-08-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.5},{"date":"2021-08-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.159},{"date":"2021-08-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.059},{"date":"2021-08-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.378},{"date":"2021-08-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.607},{"date":"2021-08-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.448},{"date":"2021-08-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.846},{"date":"2021-08-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.861},{"date":"2021-08-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.725},{"date":"2021-08-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.023},{"date":"2021-08-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.367},{"date":"2021-08-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.367},{"date":"2021-08-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.269},{"date":"2021-08-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.157},{"date":"2021-08-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.494},{"date":"2021-08-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.172},{"date":"2021-08-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.081},{"date":"2021-08-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.372},{"date":"2021-08-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.624},{"date":"2021-08-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.479},{"date":"2021-08-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.841},{"date":"2021-08-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.874},{"date":"2021-08-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.752},{"date":"2021-08-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.019},{"date":"2021-08-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.364},{"date":"2021-08-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.364},{"date":"2021-08-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.272},{"date":"2021-08-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.155},{"date":"2021-08-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.505},{"date":"2021-08-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.174},{"date":"2021-08-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.079},{"date":"2021-08-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.381},{"date":"2021-08-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.629},{"date":"2021-08-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.478},{"date":"2021-08-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.857},{"date":"2021-08-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.882},{"date":"2021-08-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.752},{"date":"2021-08-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.037},{"date":"2021-08-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.356},{"date":"2021-08-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.356},{"date":"2021-08-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.243},{"date":"2021-08-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.125},{"date":"2021-08-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.479},{"date":"2021-08-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.145},{"date":"2021-08-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.048},{"date":"2021-08-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.356},{"date":"2021-08-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.606},{"date":"2021-08-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.452},{"date":"2021-08-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.838},{"date":"2021-08-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.853},{"date":"2021-08-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.729},{"date":"2021-08-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.002},{"date":"2021-08-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.324},{"date":"2021-08-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.324},{"date":"2021-08-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.237},{"date":"2021-08-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.118},{"date":"2021-08-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.476},{"date":"2021-08-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.139},{"date":"2021-08-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.041},{"date":"2021-08-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.352},{"date":"2021-08-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.599},{"date":"2021-08-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.444},{"date":"2021-08-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.832},{"date":"2021-08-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.853},{"date":"2021-08-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.724},{"date":"2021-08-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.007},{"date":"2021-08-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.339},{"date":"2021-08-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.339},{"date":"2021-09-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.273},{"date":"2021-09-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.156},{"date":"2021-09-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.507},{"date":"2021-09-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.176},{"date":"2021-09-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.08},{"date":"2021-09-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.385},{"date":"2021-09-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.628},{"date":"2021-09-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.474},{"date":"2021-09-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.858},{"date":"2021-09-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.879},{"date":"2021-09-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.751},{"date":"2021-09-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.032},{"date":"2021-09-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.373},{"date":"2021-09-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.373},{"date":"2021-09-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.262},{"date":"2021-09-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.143},{"date":"2021-09-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.499},{"date":"2021-09-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.165},{"date":"2021-09-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.068},{"date":"2021-09-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.378},{"date":"2021-09-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.618},{"date":"2021-09-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.464},{"date":"2021-09-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.849},{"date":"2021-09-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.868},{"date":"2021-09-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.739},{"date":"2021-09-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.021},{"date":"2021-09-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.372},{"date":"2021-09-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.372},{"date":"2021-09-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.28},{"date":"2021-09-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.169},{"date":"2021-09-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.504},{"date":"2021-09-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.184},{"date":"2021-09-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.094},{"date":"2021-09-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.382},{"date":"2021-09-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.632},{"date":"2021-09-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.486},{"date":"2021-09-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.851},{"date":"2021-09-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.883},{"date":"2021-09-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.762},{"date":"2021-09-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.026},{"date":"2021-09-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.385},{"date":"2021-09-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.385},{"date":"2021-09-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.271},{"date":"2021-09-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.155},{"date":"2021-09-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.505},{"date":"2021-09-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.175},{"date":"2021-09-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.08},{"date":"2021-09-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.382},{"date":"2021-09-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.625},{"date":"2021-09-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.472},{"date":"2021-09-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.855},{"date":"2021-09-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.876},{"date":"2021-09-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.747},{"date":"2021-09-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.029},{"date":"2021-09-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.406},{"date":"2021-09-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.406},{"date":"2021-10-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.285},{"date":"2021-10-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.168},{"date":"2021-10-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.521},{"date":"2021-10-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.19},{"date":"2021-10-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.093},{"date":"2021-10-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.4},{"date":"2021-10-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.635},{"date":"2021-10-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.48},{"date":"2021-10-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.869},{"date":"2021-10-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.886},{"date":"2021-10-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.757},{"date":"2021-10-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.041},{"date":"2021-10-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.477},{"date":"2021-10-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.477},{"date":"2021-10-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.36},{"date":"2021-10-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.247},{"date":"2021-10-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.59},{"date":"2021-10-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.267},{"date":"2021-10-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.173},{"date":"2021-10-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.474},{"date":"2021-10-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.697},{"date":"2021-10-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.551},{"date":"2021-10-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.925},{"date":"2021-10-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.952},{"date":"2021-10-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.829},{"date":"2021-10-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.101},{"date":"2021-10-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.586},{"date":"2021-10-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.586},{"date":"2021-10-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.416},{"date":"2021-10-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.297},{"date":"2021-10-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.655},{"date":"2021-10-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.322},{"date":"2021-10-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.225},{"date":"2021-10-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.537},{"date":"2021-10-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.751},{"date":"2021-10-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.592},{"date":"2021-10-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.99},{"date":"2021-10-18","fuel":"gasoline","grade":"premium","formulation":"all","price":4.007},{"date":"2021-10-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.871},{"date":"2021-10-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.17},{"date":"2021-10-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.671},{"date":"2021-10-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.671},{"date":"2021-10-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.476},{"date":"2021-10-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.351},{"date":"2021-10-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.73},{"date":"2021-10-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.383},{"date":"2021-10-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.279},{"date":"2021-10-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.611},{"date":"2021-10-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.809},{"date":"2021-10-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.643},{"date":"2021-10-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.063},{"date":"2021-10-25","fuel":"gasoline","grade":"premium","formulation":"all","price":4.071},{"date":"2021-10-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.926},{"date":"2021-10-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.246},{"date":"2021-10-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.713},{"date":"2021-10-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.713},{"date":"2021-11-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.484},{"date":"2021-11-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.352},{"date":"2021-11-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.751},{"date":"2021-11-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.39},{"date":"2021-11-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.28},{"date":"2021-11-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.632},{"date":"2021-11-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.822},{"date":"2021-11-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.648},{"date":"2021-11-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.085},{"date":"2021-11-01","fuel":"gasoline","grade":"premium","formulation":"all","price":4.084},{"date":"2021-11-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.929},{"date":"2021-11-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.271},{"date":"2021-11-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.727},{"date":"2021-11-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.727},{"date":"2021-11-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.505},{"date":"2021-11-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.366},{"date":"2021-11-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.783},{"date":"2021-11-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.41},{"date":"2021-11-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.294},{"date":"2021-11-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.665},{"date":"2021-11-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.842},{"date":"2021-11-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.66},{"date":"2021-11-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.117},{"date":"2021-11-08","fuel":"gasoline","grade":"premium","formulation":"all","price":4.101},{"date":"2021-11-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.935},{"date":"2021-11-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.3},{"date":"2021-11-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.73},{"date":"2021-11-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.73},{"date":"2021-11-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.495},{"date":"2021-11-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.349},{"date":"2021-11-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.789},{"date":"2021-11-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.399},{"date":"2021-11-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.277},{"date":"2021-11-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.668},{"date":"2021-11-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.841},{"date":"2021-11-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.647},{"date":"2021-11-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.134},{"date":"2021-11-15","fuel":"gasoline","grade":"premium","formulation":"all","price":4.103},{"date":"2021-11-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.927},{"date":"2021-11-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.316},{"date":"2021-11-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.734},{"date":"2021-11-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.734},{"date":"2021-11-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.493},{"date":"2021-11-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.344},{"date":"2021-11-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.791},{"date":"2021-11-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.395},{"date":"2021-11-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.271},{"date":"2021-11-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.668},{"date":"2021-11-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.843},{"date":"2021-11-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.645},{"date":"2021-11-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.143},{"date":"2021-11-22","fuel":"gasoline","grade":"premium","formulation":"all","price":4.107},{"date":"2021-11-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.93},{"date":"2021-11-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.319},{"date":"2021-11-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.724},{"date":"2021-11-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.724},{"date":"2021-11-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.478},{"date":"2021-11-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.326},{"date":"2021-11-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.783},{"date":"2021-11-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.38},{"date":"2021-11-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.253},{"date":"2021-11-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.66},{"date":"2021-11-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.831},{"date":"2021-11-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.626},{"date":"2021-11-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.141},{"date":"2021-11-29","fuel":"gasoline","grade":"premium","formulation":"all","price":4.095},{"date":"2021-11-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.913},{"date":"2021-11-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.314},{"date":"2021-11-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.72},{"date":"2021-11-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.72},{"date":"2021-12-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.44},{"date":"2021-12-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.279},{"date":"2021-12-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.761},{"date":"2021-12-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.341},{"date":"2021-12-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.204},{"date":"2021-12-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.639},{"date":"2021-12-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.8},{"date":"2021-12-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.587},{"date":"2021-12-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.12},{"date":"2021-12-06","fuel":"gasoline","grade":"premium","formulation":"all","price":4.063},{"date":"2021-12-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.875},{"date":"2021-12-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.288},{"date":"2021-12-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.674},{"date":"2021-12-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.674},{"date":"2021-12-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.414},{"date":"2021-12-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.252},{"date":"2021-12-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.738},{"date":"2021-12-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.315},{"date":"2021-12-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.178},{"date":"2021-12-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.614},{"date":"2021-12-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.776},{"date":"2021-12-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.558},{"date":"2021-12-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.106},{"date":"2021-12-13","fuel":"gasoline","grade":"premium","formulation":"all","price":4.039},{"date":"2021-12-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.846},{"date":"2021-12-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.27},{"date":"2021-12-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.649},{"date":"2021-12-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.649},{"date":"2021-12-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.395},{"date":"2021-12-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.229},{"date":"2021-12-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.727},{"date":"2021-12-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.295},{"date":"2021-12-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.154},{"date":"2021-12-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.602},{"date":"2021-12-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.763},{"date":"2021-12-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.539},{"date":"2021-12-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.099},{"date":"2021-12-20","fuel":"gasoline","grade":"premium","formulation":"all","price":4.024},{"date":"2021-12-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.826},{"date":"2021-12-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.261},{"date":"2021-12-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.626},{"date":"2021-12-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.626},{"date":"2021-12-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.375},{"date":"2021-12-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.211},{"date":"2021-12-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.704},{"date":"2021-12-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.275},{"date":"2021-12-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.136},{"date":"2021-12-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.577},{"date":"2021-12-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.743},{"date":"2021-12-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.521},{"date":"2021-12-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.078},{"date":"2021-12-27","fuel":"gasoline","grade":"premium","formulation":"all","price":4.008},{"date":"2021-12-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.81},{"date":"2021-12-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.244},{"date":"2021-12-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.615},{"date":"2021-12-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.615},{"date":"2022-01-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.381},{"date":"2022-01-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.216},{"date":"2022-01-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.71},{"date":"2022-01-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.281},{"date":"2022-01-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.141},{"date":"2022-01-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.585},{"date":"2022-01-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.746},{"date":"2022-01-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.524},{"date":"2022-01-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.079},{"date":"2022-01-03","fuel":"gasoline","grade":"premium","formulation":"all","price":4.012},{"date":"2022-01-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.813},{"date":"2022-01-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.249},{"date":"2022-01-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.613},{"date":"2022-01-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.613},{"date":"2022-01-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.394},{"date":"2022-01-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.238},{"date":"2022-01-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.708},{"date":"2022-01-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.295},{"date":"2022-01-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.164},{"date":"2022-01-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.582},{"date":"2022-01-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.752},{"date":"2022-01-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.535},{"date":"2022-01-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.078},{"date":"2022-01-10","fuel":"gasoline","grade":"premium","formulation":"all","price":4.02},{"date":"2022-01-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.829},{"date":"2022-01-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.248},{"date":"2022-01-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.657},{"date":"2022-01-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.657},{"date":"2022-01-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.404},{"date":"2022-01-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.255},{"date":"2022-01-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.707},{"date":"2022-01-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.306},{"date":"2022-01-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.182},{"date":"2022-01-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.581},{"date":"2022-01-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.758},{"date":"2022-01-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.548},{"date":"2022-01-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.076},{"date":"2022-01-17","fuel":"gasoline","grade":"premium","formulation":"all","price":4.028},{"date":"2022-01-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.847},{"date":"2022-01-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.246},{"date":"2022-01-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.725},{"date":"2022-01-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.725},{"date":"2022-01-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.421},{"date":"2022-01-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.271},{"date":"2022-01-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.722},{"date":"2022-01-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.323},{"date":"2022-01-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.199},{"date":"2022-01-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.597},{"date":"2022-01-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.769},{"date":"2022-01-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.56},{"date":"2022-01-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.086},{"date":"2022-01-24","fuel":"gasoline","grade":"premium","formulation":"all","price":4.04},{"date":"2022-01-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.858},{"date":"2022-01-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.26},{"date":"2022-01-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.78},{"date":"2022-01-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.78},{"date":"2022-01-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.464},{"date":"2022-01-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.321},{"date":"2022-01-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.754},{"date":"2022-01-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.368},{"date":"2022-01-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.249},{"date":"2022-01-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.63},{"date":"2022-01-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.804},{"date":"2022-01-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.604},{"date":"2022-01-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.105},{"date":"2022-01-31","fuel":"gasoline","grade":"premium","formulation":"all","price":4.078},{"date":"2022-01-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.904},{"date":"2022-01-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.288},{"date":"2022-01-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.846},{"date":"2022-01-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.846},{"date":"2022-02-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.538},{"date":"2022-02-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.401},{"date":"2022-02-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.812},{"date":"2022-02-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.444},{"date":"2022-02-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.33},{"date":"2022-02-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.69},{"date":"2022-02-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.867},{"date":"2022-02-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.673},{"date":"2022-02-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.158},{"date":"2022-02-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.141},{"date":"2022-02-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.974},{"date":"2022-02-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.34},{"date":"2022-02-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.951},{"date":"2022-02-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.951},{"date":"2022-02-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.581},{"date":"2022-02-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.441},{"date":"2022-02-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.859},{"date":"2022-02-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.487},{"date":"2022-02-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.372},{"date":"2022-02-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.738},{"date":"2022-02-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.908},{"date":"2022-02-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.71},{"date":"2022-02-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.204},{"date":"2022-02-14","fuel":"gasoline","grade":"premium","formulation":"all","price":4.18},{"date":"2022-02-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.009},{"date":"2022-02-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.384},{"date":"2022-02-14","fuel":"diesel","grade":"all","formulation":"NA","price":4.019},{"date":"2022-02-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.019},{"date":"2022-02-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.624},{"date":"2022-02-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.48},{"date":"2022-02-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.911},{"date":"2022-02-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.53},{"date":"2022-02-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.41},{"date":"2022-02-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.79},{"date":"2022-02-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.954},{"date":"2022-02-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.752},{"date":"2022-02-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.256},{"date":"2022-02-21","fuel":"gasoline","grade":"premium","formulation":"all","price":4.221},{"date":"2022-02-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.045},{"date":"2022-02-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.43},{"date":"2022-02-21","fuel":"diesel","grade":"all","formulation":"NA","price":4.055},{"date":"2022-02-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.055},{"date":"2022-02-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.701},{"date":"2022-02-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.554},{"date":"2022-02-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.994},{"date":"2022-02-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.608},{"date":"2022-02-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.486},{"date":"2022-02-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.874},{"date":"2022-02-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.025},{"date":"2022-02-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.814},{"date":"2022-02-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.341},{"date":"2022-02-28","fuel":"gasoline","grade":"premium","formulation":"all","price":4.296},{"date":"2022-02-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.114},{"date":"2022-02-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.513},{"date":"2022-02-28","fuel":"diesel","grade":"all","formulation":"NA","price":4.104},{"date":"2022-02-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.104},{"date":"2022-03-07","fuel":"gasoline","grade":"all","formulation":"all","price":4.196},{"date":"2022-03-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.031},{"date":"2022-03-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.527},{"date":"2022-03-07","fuel":"gasoline","grade":"regular","formulation":"all","price":4.102},{"date":"2022-03-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.963},{"date":"2022-03-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.407},{"date":"2022-03-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.524},{"date":"2022-03-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.292},{"date":"2022-03-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.872},{"date":"2022-03-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.798},{"date":"2022-03-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.592},{"date":"2022-03-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.044},{"date":"2022-03-07","fuel":"diesel","grade":"all","formulation":"NA","price":4.849},{"date":"2022-03-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.849},{"date":"2022-03-14","fuel":"gasoline","grade":"all","formulation":"all","price":4.414},{"date":"2022-03-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.252},{"date":"2022-03-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.737},{"date":"2022-03-14","fuel":"gasoline","grade":"regular","formulation":"all","price":4.315},{"date":"2022-03-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.18},{"date":"2022-03-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.61},{"date":"2022-03-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.765},{"date":"2022-03-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.538},{"date":"2022-03-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.106},{"date":"2022-03-14","fuel":"gasoline","grade":"premium","formulation":"all","price":5.038},{"date":"2022-03-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.833},{"date":"2022-03-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.284},{"date":"2022-03-14","fuel":"diesel","grade":"all","formulation":"NA","price":5.25},{"date":"2022-03-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.25},{"date":"2022-03-21","fuel":"gasoline","grade":"all","formulation":"all","price":4.343},{"date":"2022-03-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.165},{"date":"2022-03-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.697},{"date":"2022-03-21","fuel":"gasoline","grade":"regular","formulation":"all","price":4.239},{"date":"2022-03-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.091},{"date":"2022-03-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.562},{"date":"2022-03-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.719},{"date":"2022-03-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.462},{"date":"2022-03-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.107},{"date":"2022-03-21","fuel":"gasoline","grade":"premium","formulation":"all","price":4.992},{"date":"2022-03-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.759},{"date":"2022-03-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.269},{"date":"2022-03-21","fuel":"diesel","grade":"all","formulation":"NA","price":5.134},{"date":"2022-03-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.134},{"date":"2022-03-28","fuel":"gasoline","grade":"all","formulation":"all","price":4.334},{"date":"2022-03-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.152},{"date":"2022-03-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.697},{"date":"2022-03-28","fuel":"gasoline","grade":"regular","formulation":"all","price":4.231},{"date":"2022-03-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.078},{"date":"2022-03-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.562},{"date":"2022-03-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.714},{"date":"2022-03-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.447},{"date":"2022-03-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.116},{"date":"2022-03-28","fuel":"gasoline","grade":"premium","formulation":"all","price":4.985},{"date":"2022-03-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.749},{"date":"2022-03-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.27},{"date":"2022-03-28","fuel":"diesel","grade":"all","formulation":"NA","price":5.185},{"date":"2022-03-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.185},{"date":"2022-04-04","fuel":"gasoline","grade":"all","formulation":"all","price":4.274},{"date":"2022-04-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.096},{"date":"2022-04-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.629},{"date":"2022-04-04","fuel":"gasoline","grade":"regular","formulation":"all","price":4.17},{"date":"2022-04-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.021},{"date":"2022-04-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.495},{"date":"2022-04-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.659},{"date":"2022-04-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.403},{"date":"2022-04-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.046},{"date":"2022-04-04","fuel":"gasoline","grade":"premium","formulation":"all","price":4.931},{"date":"2022-04-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.703},{"date":"2022-04-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.204},{"date":"2022-04-04","fuel":"diesel","grade":"all","formulation":"NA","price":5.144},{"date":"2022-04-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.144},{"date":"2022-04-11","fuel":"gasoline","grade":"all","formulation":"all","price":4.196},{"date":"2022-04-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.019},{"date":"2022-04-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.552},{"date":"2022-04-11","fuel":"gasoline","grade":"regular","formulation":"all","price":4.091},{"date":"2022-04-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.943},{"date":"2022-04-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.417},{"date":"2022-04-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.587},{"date":"2022-04-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.331},{"date":"2022-04-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.976},{"date":"2022-04-11","fuel":"gasoline","grade":"premium","formulation":"all","price":4.854},{"date":"2022-04-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.627},{"date":"2022-04-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.133},{"date":"2022-04-11","fuel":"diesel","grade":"all","formulation":"NA","price":5.073},{"date":"2022-04-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.073},{"date":"2022-04-18","fuel":"gasoline","grade":"all","formulation":"all","price":4.17},{"date":"2022-04-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.992},{"date":"2022-04-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.528},{"date":"2022-04-18","fuel":"gasoline","grade":"regular","formulation":"all","price":4.066},{"date":"2022-04-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.915},{"date":"2022-04-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.395},{"date":"2022-04-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.557},{"date":"2022-04-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.303},{"date":"2022-04-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.945},{"date":"2022-04-18","fuel":"gasoline","grade":"premium","formulation":"all","price":4.831},{"date":"2022-04-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.605},{"date":"2022-04-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.107},{"date":"2022-04-18","fuel":"diesel","grade":"all","formulation":"NA","price":5.101},{"date":"2022-04-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.101},{"date":"2022-04-25","fuel":"gasoline","grade":"all","formulation":"all","price":4.211},{"date":"2022-04-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.035},{"date":"2022-04-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.565},{"date":"2022-04-25","fuel":"gasoline","grade":"regular","formulation":"all","price":4.107},{"date":"2022-04-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.959},{"date":"2022-04-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.433},{"date":"2022-04-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.587},{"date":"2022-04-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.344},{"date":"2022-04-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.96},{"date":"2022-04-25","fuel":"gasoline","grade":"premium","formulation":"all","price":4.869},{"date":"2022-04-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.646},{"date":"2022-04-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.139},{"date":"2022-04-25","fuel":"diesel","grade":"all","formulation":"NA","price":5.16},{"date":"2022-04-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.16},{"date":"2022-05-02","fuel":"gasoline","grade":"all","formulation":"all","price":4.285},{"date":"2022-05-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.105},{"date":"2022-05-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.646},{"date":"2022-05-02","fuel":"gasoline","grade":"regular","formulation":"all","price":4.182},{"date":"2022-05-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.031},{"date":"2022-05-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.512},{"date":"2022-05-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.657},{"date":"2022-05-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.401},{"date":"2022-05-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.047},{"date":"2022-05-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.939},{"date":"2022-05-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.707},{"date":"2022-05-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.221},{"date":"2022-05-02","fuel":"diesel","grade":"all","formulation":"NA","price":5.509},{"date":"2022-05-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.509},{"date":"2022-05-09","fuel":"gasoline","grade":"all","formulation":"all","price":4.428},{"date":"2022-05-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.233},{"date":"2022-05-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.821},{"date":"2022-05-09","fuel":"gasoline","grade":"regular","formulation":"all","price":4.328},{"date":"2022-05-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.161},{"date":"2022-05-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.695},{"date":"2022-05-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.779},{"date":"2022-05-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.508},{"date":"2022-05-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.193},{"date":"2022-05-09","fuel":"gasoline","grade":"premium","formulation":"all","price":5.07},{"date":"2022-05-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.819},{"date":"2022-05-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.377},{"date":"2022-05-09","fuel":"diesel","grade":"all","formulation":"NA","price":5.623},{"date":"2022-05-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.623},{"date":"2022-05-16","fuel":"gasoline","grade":"all","formulation":"all","price":4.591},{"date":"2022-05-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.392},{"date":"2022-05-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.99},{"date":"2022-05-16","fuel":"gasoline","grade":"regular","formulation":"all","price":4.491},{"date":"2022-05-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.32},{"date":"2022-05-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.862},{"date":"2022-05-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.941},{"date":"2022-05-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.662},{"date":"2022-05-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.365},{"date":"2022-05-16","fuel":"gasoline","grade":"premium","formulation":"all","price":5.24},{"date":"2022-05-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.979},{"date":"2022-05-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.555},{"date":"2022-05-16","fuel":"diesel","grade":"all","formulation":"NA","price":5.613},{"date":"2022-05-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.613},{"date":"2022-05-23","fuel":"gasoline","grade":"all","formulation":"all","price":4.694},{"date":"2022-05-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.481},{"date":"2022-05-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":5.121},{"date":"2022-05-23","fuel":"gasoline","grade":"regular","formulation":"all","price":4.593},{"date":"2022-05-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.41},{"date":"2022-05-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.994},{"date":"2022-05-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":5.04},{"date":"2022-05-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.747},{"date":"2022-05-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.485},{"date":"2022-05-23","fuel":"gasoline","grade":"premium","formulation":"all","price":5.346},{"date":"2022-05-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.069},{"date":"2022-05-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.683},{"date":"2022-05-23","fuel":"diesel","grade":"all","formulation":"NA","price":5.571},{"date":"2022-05-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.571},{"date":"2022-05-30","fuel":"gasoline","grade":"all","formulation":"all","price":4.727},{"date":"2022-05-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.513},{"date":"2022-05-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":5.158},{"date":"2022-05-30","fuel":"gasoline","grade":"regular","formulation":"all","price":4.624},{"date":"2022-05-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.439},{"date":"2022-05-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":5.027},{"date":"2022-05-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":5.083},{"date":"2022-05-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.79},{"date":"2022-05-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.528},{"date":"2022-05-30","fuel":"gasoline","grade":"premium","formulation":"all","price":5.399},{"date":"2022-05-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.118},{"date":"2022-05-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.738},{"date":"2022-05-30","fuel":"diesel","grade":"all","formulation":"NA","price":5.539},{"date":"2022-05-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.539},{"date":"2022-06-06","fuel":"gasoline","grade":"all","formulation":"all","price":4.977},{"date":"2022-06-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.773},{"date":"2022-06-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":5.387},{"date":"2022-06-06","fuel":"gasoline","grade":"regular","formulation":"all","price":4.876},{"date":"2022-06-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.702},{"date":"2022-06-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":5.256},{"date":"2022-06-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":5.32},{"date":"2022-06-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":5.037},{"date":"2022-06-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.752},{"date":"2022-06-06","fuel":"gasoline","grade":"premium","formulation":"all","price":5.635},{"date":"2022-06-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.363},{"date":"2022-06-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.964},{"date":"2022-06-06","fuel":"diesel","grade":"all","formulation":"NA","price":5.703},{"date":"2022-06-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.703},{"date":"2022-06-13","fuel":"gasoline","grade":"all","formulation":"all","price":5.107},{"date":"2022-06-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.916},{"date":"2022-06-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":5.491},{"date":"2022-06-13","fuel":"gasoline","grade":"regular","formulation":"all","price":5.006},{"date":"2022-06-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.844},{"date":"2022-06-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":5.362},{"date":"2022-06-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":5.455},{"date":"2022-06-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":5.191},{"date":"2022-06-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.858},{"date":"2022-06-13","fuel":"gasoline","grade":"premium","formulation":"all","price":5.762},{"date":"2022-06-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.513},{"date":"2022-06-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":6.064},{"date":"2022-06-13","fuel":"diesel","grade":"all","formulation":"NA","price":5.718},{"date":"2022-06-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.718},{"date":"2022-06-20","fuel":"gasoline","grade":"all","formulation":"all","price":5.066},{"date":"2022-06-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.874},{"date":"2022-06-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":5.451},{"date":"2022-06-20","fuel":"gasoline","grade":"regular","formulation":"all","price":4.962},{"date":"2022-06-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.798},{"date":"2022-06-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":5.319},{"date":"2022-06-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":5.428},{"date":"2022-06-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":5.167},{"date":"2022-06-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.826},{"date":"2022-06-20","fuel":"gasoline","grade":"premium","formulation":"all","price":5.736},{"date":"2022-06-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.49},{"date":"2022-06-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":6.033},{"date":"2022-06-20","fuel":"diesel","grade":"all","formulation":"NA","price":5.81},{"date":"2022-06-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.81},{"date":"2022-06-27","fuel":"gasoline","grade":"all","formulation":"all","price":4.979},{"date":"2022-06-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.788},{"date":"2022-06-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":5.36},{"date":"2022-06-27","fuel":"gasoline","grade":"regular","formulation":"all","price":4.872},{"date":"2022-06-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.71},{"date":"2022-06-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":5.225},{"date":"2022-06-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":5.355},{"date":"2022-06-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":5.098},{"date":"2022-06-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.745},{"date":"2022-06-27","fuel":"gasoline","grade":"premium","formulation":"all","price":5.664},{"date":"2022-06-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.421},{"date":"2022-06-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.955},{"date":"2022-06-27","fuel":"diesel","grade":"all","formulation":"NA","price":5.783},{"date":"2022-06-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.783},{"date":"2022-07-04","fuel":"gasoline","grade":"all","formulation":"all","price":4.879},{"date":"2022-07-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.699},{"date":"2022-07-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":5.242},{"date":"2022-07-04","fuel":"gasoline","grade":"regular","formulation":"all","price":4.771},{"date":"2022-07-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.619},{"date":"2022-07-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":5.103},{"date":"2022-07-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":5.261},{"date":"2022-07-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":5.016},{"date":"2022-07-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.635},{"date":"2022-07-04","fuel":"gasoline","grade":"premium","formulation":"all","price":5.575},{"date":"2022-07-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.344},{"date":"2022-07-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.853},{"date":"2022-07-04","fuel":"diesel","grade":"all","formulation":"NA","price":5.675},{"date":"2022-07-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.675},{"date":"2022-07-11","fuel":"gasoline","grade":"all","formulation":"all","price":4.754},{"date":"2022-07-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.582},{"date":"2022-07-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":5.099},{"date":"2022-07-11","fuel":"gasoline","grade":"regular","formulation":"all","price":4.646},{"date":"2022-07-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.501},{"date":"2022-07-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.963},{"date":"2022-07-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":5.147},{"date":"2022-07-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.915},{"date":"2022-07-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.501},{"date":"2022-07-11","fuel":"gasoline","grade":"premium","formulation":"all","price":5.442},{"date":"2022-07-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.233},{"date":"2022-07-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.695},{"date":"2022-07-11","fuel":"diesel","grade":"all","formulation":"NA","price":5.568},{"date":"2022-07-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.568},{"date":"2022-07-18","fuel":"gasoline","grade":"all","formulation":"all","price":4.599},{"date":"2022-07-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.432},{"date":"2022-07-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.934},{"date":"2022-07-18","fuel":"gasoline","grade":"regular","formulation":"all","price":4.49},{"date":"2022-07-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.35},{"date":"2022-07-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.798},{"date":"2022-07-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.994},{"date":"2022-07-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.771},{"date":"2022-07-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.33},{"date":"2022-07-18","fuel":"gasoline","grade":"premium","formulation":"all","price":5.285},{"date":"2022-07-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":5.084},{"date":"2022-07-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.529},{"date":"2022-07-18","fuel":"diesel","grade":"all","formulation":"NA","price":5.432},{"date":"2022-07-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.432},{"date":"2022-07-25","fuel":"gasoline","grade":"all","formulation":"all","price":4.44},{"date":"2022-07-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.266},{"date":"2022-07-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.789},{"date":"2022-07-25","fuel":"gasoline","grade":"regular","formulation":"all","price":4.33},{"date":"2022-07-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.183},{"date":"2022-07-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.652},{"date":"2022-07-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.836},{"date":"2022-07-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.609},{"date":"2022-07-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.182},{"date":"2022-07-25","fuel":"gasoline","grade":"premium","formulation":"all","price":5.14},{"date":"2022-07-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.933},{"date":"2022-07-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.39},{"date":"2022-07-25","fuel":"diesel","grade":"all","formulation":"NA","price":5.268},{"date":"2022-07-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.268},{"date":"2022-08-01","fuel":"gasoline","grade":"all","formulation":"all","price":4.304},{"date":"2022-08-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":4.119},{"date":"2022-08-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.674},{"date":"2022-08-01","fuel":"gasoline","grade":"regular","formulation":"all","price":4.192},{"date":"2022-08-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":4.034},{"date":"2022-08-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.536},{"date":"2022-08-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.703},{"date":"2022-08-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.467},{"date":"2022-08-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.062},{"date":"2022-08-01","fuel":"gasoline","grade":"premium","formulation":"all","price":5.017},{"date":"2022-08-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.794},{"date":"2022-08-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.285},{"date":"2022-08-01","fuel":"diesel","grade":"all","formulation":"NA","price":5.138},{"date":"2022-08-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.138},{"date":"2022-08-08","fuel":"gasoline","grade":"all","formulation":"all","price":4.151},{"date":"2022-08-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.964},{"date":"2022-08-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.526},{"date":"2022-08-08","fuel":"gasoline","grade":"regular","formulation":"all","price":4.038},{"date":"2022-08-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.879},{"date":"2022-08-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.386},{"date":"2022-08-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.553},{"date":"2022-08-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.312},{"date":"2022-08-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.92},{"date":"2022-08-08","fuel":"gasoline","grade":"premium","formulation":"all","price":4.87},{"date":"2022-08-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.645},{"date":"2022-08-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.143},{"date":"2022-08-08","fuel":"diesel","grade":"all","formulation":"NA","price":4.993},{"date":"2022-08-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.993},{"date":"2022-08-15","fuel":"gasoline","grade":"all","formulation":"all","price":4.051},{"date":"2022-08-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.863},{"date":"2022-08-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.424},{"date":"2022-08-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.938},{"date":"2022-08-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.78},{"date":"2022-08-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.28},{"date":"2022-08-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.453},{"date":"2022-08-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.2},{"date":"2022-08-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.831},{"date":"2022-08-15","fuel":"gasoline","grade":"premium","formulation":"all","price":4.774},{"date":"2022-08-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.539},{"date":"2022-08-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.055},{"date":"2022-08-15","fuel":"diesel","grade":"all","formulation":"NA","price":4.911},{"date":"2022-08-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.911},{"date":"2022-08-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.993},{"date":"2022-08-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.808},{"date":"2022-08-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.358},{"date":"2022-08-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.88},{"date":"2022-08-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.724},{"date":"2022-08-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.214},{"date":"2022-08-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.394},{"date":"2022-08-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.143},{"date":"2022-08-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.77},{"date":"2022-08-22","fuel":"gasoline","grade":"premium","formulation":"all","price":4.713},{"date":"2022-08-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.481},{"date":"2022-08-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.991},{"date":"2022-08-22","fuel":"diesel","grade":"all","formulation":"NA","price":4.909},{"date":"2022-08-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.909},{"date":"2022-08-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.938},{"date":"2022-08-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.774},{"date":"2022-08-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.265},{"date":"2022-08-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.827},{"date":"2022-08-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.691},{"date":"2022-08-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.121},{"date":"2022-08-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.334},{"date":"2022-08-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.1},{"date":"2022-08-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.686},{"date":"2022-08-29","fuel":"gasoline","grade":"premium","formulation":"all","price":4.654},{"date":"2022-08-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.449},{"date":"2022-08-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.903},{"date":"2022-08-29","fuel":"diesel","grade":"all","formulation":"NA","price":5.115},{"date":"2022-08-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.115},{"date":"2022-09-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.859},{"date":"2022-09-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.7},{"date":"2022-09-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.176},{"date":"2022-09-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.746},{"date":"2022-09-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.617},{"date":"2022-09-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.026},{"date":"2022-09-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.262},{"date":"2022-09-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.026},{"date":"2022-09-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.618},{"date":"2022-09-05","fuel":"gasoline","grade":"premium","formulation":"all","price":4.585},{"date":"2022-09-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.378},{"date":"2022-09-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.835},{"date":"2022-09-05","fuel":"diesel","grade":"all","formulation":"NA","price":5.084},{"date":"2022-09-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.084},{"date":"2022-09-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.805},{"date":"2022-09-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.635},{"date":"2022-09-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.144},{"date":"2022-09-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.69},{"date":"2022-09-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.551},{"date":"2022-09-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.989},{"date":"2022-09-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.217},{"date":"2022-09-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.965},{"date":"2022-09-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.597},{"date":"2022-09-12","fuel":"gasoline","grade":"premium","formulation":"all","price":4.549},{"date":"2022-09-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.319},{"date":"2022-09-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.828},{"date":"2022-09-12","fuel":"diesel","grade":"all","formulation":"NA","price":5.033},{"date":"2022-09-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.033},{"date":"2022-09-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.771},{"date":"2022-09-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.597},{"date":"2022-09-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.118},{"date":"2022-09-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.654},{"date":"2022-09-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.513},{"date":"2022-09-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.96},{"date":"2022-09-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.194},{"date":"2022-09-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.929},{"date":"2022-09-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.592},{"date":"2022-09-19","fuel":"gasoline","grade":"premium","formulation":"all","price":4.523},{"date":"2022-09-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.283},{"date":"2022-09-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.813},{"date":"2022-09-19","fuel":"diesel","grade":"all","formulation":"NA","price":4.964},{"date":"2022-09-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.964},{"date":"2022-09-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.832},{"date":"2022-09-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.653},{"date":"2022-09-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.186},{"date":"2022-09-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.711},{"date":"2022-09-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.569},{"date":"2022-09-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.018},{"date":"2022-09-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.275},{"date":"2022-09-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.984},{"date":"2022-09-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.707},{"date":"2022-09-26","fuel":"gasoline","grade":"premium","formulation":"all","price":4.598},{"date":"2022-09-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.34},{"date":"2022-09-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.906},{"date":"2022-09-26","fuel":"diesel","grade":"all","formulation":"NA","price":4.889},{"date":"2022-09-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.889},{"date":"2022-10-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.909},{"date":"2022-10-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.676},{"date":"2022-10-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.367},{"date":"2022-10-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.782},{"date":"2022-10-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.592},{"date":"2022-10-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.188},{"date":"2022-10-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.371},{"date":"2022-10-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.996},{"date":"2022-10-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.932},{"date":"2022-10-03","fuel":"gasoline","grade":"premium","formulation":"all","price":4.718},{"date":"2022-10-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.371},{"date":"2022-10-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.13},{"date":"2022-10-03","fuel":"diesel","grade":"all","formulation":"NA","price":4.836},{"date":"2022-10-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.836},{"date":"2022-10-10","fuel":"gasoline","grade":"all","formulation":"all","price":4.034},{"date":"2022-10-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.805},{"date":"2022-10-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.486},{"date":"2022-10-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.912},{"date":"2022-10-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.723},{"date":"2022-10-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.318},{"date":"2022-10-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.47},{"date":"2022-10-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.114},{"date":"2022-10-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":5.002},{"date":"2022-10-10","fuel":"gasoline","grade":"premium","formulation":"all","price":4.811},{"date":"2022-10-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.477},{"date":"2022-10-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.208},{"date":"2022-10-10","fuel":"diesel","grade":"all","formulation":"NA","price":5.224},{"date":"2022-10-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.224},{"date":"2022-10-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.99},{"date":"2022-10-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.774},{"date":"2022-10-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.416},{"date":"2022-10-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.871},{"date":"2022-10-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.692},{"date":"2022-10-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.255},{"date":"2022-10-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.425},{"date":"2022-10-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.096},{"date":"2022-10-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.917},{"date":"2022-10-17","fuel":"gasoline","grade":"premium","formulation":"all","price":4.751},{"date":"2022-10-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.45},{"date":"2022-10-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.108},{"date":"2022-10-17","fuel":"diesel","grade":"all","formulation":"NA","price":5.339},{"date":"2022-10-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.339},{"date":"2022-10-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.887},{"date":"2022-10-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.693},{"date":"2022-10-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.271},{"date":"2022-10-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.769},{"date":"2022-10-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.609},{"date":"2022-10-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.113},{"date":"2022-10-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.314},{"date":"2022-10-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.021},{"date":"2022-10-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.752},{"date":"2022-10-24","fuel":"gasoline","grade":"premium","formulation":"all","price":4.639},{"date":"2022-10-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.374},{"date":"2022-10-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.953},{"date":"2022-10-24","fuel":"diesel","grade":"all","formulation":"NA","price":5.341},{"date":"2022-10-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.341},{"date":"2022-10-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.857},{"date":"2022-10-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.652},{"date":"2022-10-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.263},{"date":"2022-10-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.742},{"date":"2022-10-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.57},{"date":"2022-10-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.112},{"date":"2022-10-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.262},{"date":"2022-10-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.968},{"date":"2022-10-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.707},{"date":"2022-10-31","fuel":"gasoline","grade":"premium","formulation":"all","price":4.6},{"date":"2022-10-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.327},{"date":"2022-10-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.93},{"date":"2022-10-31","fuel":"diesel","grade":"all","formulation":"NA","price":5.317},{"date":"2022-10-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.317},{"date":"2022-11-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.909},{"date":"2022-11-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.708},{"date":"2022-11-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.312},{"date":"2022-11-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.796},{"date":"2022-11-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.628},{"date":"2022-11-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.162},{"date":"2022-11-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.296},{"date":"2022-11-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.003},{"date":"2022-11-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.735},{"date":"2022-11-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.641},{"date":"2022-11-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.368},{"date":"2022-11-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.968},{"date":"2022-11-07","fuel":"diesel","grade":"all","formulation":"NA","price":5.333},{"date":"2022-11-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.333},{"date":"2022-11-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.876},{"date":"2022-11-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.688},{"date":"2022-11-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.253},{"date":"2022-11-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.762},{"date":"2022-11-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.606},{"date":"2022-11-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.102},{"date":"2022-11-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.27},{"date":"2022-11-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.996},{"date":"2022-11-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.687},{"date":"2022-11-14","fuel":"gasoline","grade":"premium","formulation":"all","price":4.615},{"date":"2022-11-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.364},{"date":"2022-11-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.92},{"date":"2022-11-14","fuel":"diesel","grade":"all","formulation":"NA","price":5.313},{"date":"2022-11-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.313},{"date":"2022-11-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.763},{"date":"2022-11-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.582},{"date":"2022-11-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.126},{"date":"2022-11-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.648},{"date":"2022-11-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.498},{"date":"2022-11-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.973},{"date":"2022-11-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.167},{"date":"2022-11-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.901},{"date":"2022-11-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.568},{"date":"2022-11-21","fuel":"gasoline","grade":"premium","formulation":"all","price":4.507},{"date":"2022-11-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.265},{"date":"2022-11-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.8},{"date":"2022-11-21","fuel":"diesel","grade":"all","formulation":"NA","price":5.233},{"date":"2022-11-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.233},{"date":"2022-11-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.649},{"date":"2022-11-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.473},{"date":"2022-11-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.997},{"date":"2022-11-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.534},{"date":"2022-11-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.389},{"date":"2022-11-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.848},{"date":"2022-11-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.053},{"date":"2022-11-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.802},{"date":"2022-11-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.432},{"date":"2022-11-28","fuel":"gasoline","grade":"premium","formulation":"all","price":4.383},{"date":"2022-11-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.157},{"date":"2022-11-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.657},{"date":"2022-11-28","fuel":"diesel","grade":"all","formulation":"NA","price":5.141},{"date":"2022-11-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":5.141},{"date":"2022-12-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.504},{"date":"2022-12-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.345},{"date":"2022-12-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.82},{"date":"2022-12-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.39},{"date":"2022-12-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.26},{"date":"2022-12-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.673},{"date":"2022-12-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.901},{"date":"2022-12-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.677},{"date":"2022-12-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.242},{"date":"2022-12-05","fuel":"gasoline","grade":"premium","formulation":"all","price":4.232},{"date":"2022-12-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.03},{"date":"2022-12-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.476},{"date":"2022-12-05","fuel":"diesel","grade":"all","formulation":"NA","price":4.967},{"date":"2022-12-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.967},{"date":"2022-12-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.353},{"date":"2022-12-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.194},{"date":"2022-12-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.669},{"date":"2022-12-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.239},{"date":"2022-12-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.109},{"date":"2022-12-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.522},{"date":"2022-12-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.748},{"date":"2022-12-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.531},{"date":"2022-12-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.077},{"date":"2022-12-12","fuel":"gasoline","grade":"premium","formulation":"all","price":4.08},{"date":"2022-12-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.881},{"date":"2022-12-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.32},{"date":"2022-12-12","fuel":"diesel","grade":"all","formulation":"NA","price":4.754},{"date":"2022-12-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.754},{"date":"2022-12-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.234},{"date":"2022-12-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.08},{"date":"2022-12-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.541},{"date":"2022-12-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.12},{"date":"2022-12-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.994},{"date":"2022-12-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.396},{"date":"2022-12-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.628},{"date":"2022-12-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.418},{"date":"2022-12-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.945},{"date":"2022-12-19","fuel":"gasoline","grade":"premium","formulation":"all","price":3.96},{"date":"2022-12-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.772},{"date":"2022-12-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.188},{"date":"2022-12-19","fuel":"diesel","grade":"all","formulation":"NA","price":4.596},{"date":"2022-12-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.596},{"date":"2022-12-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.203},{"date":"2022-12-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.055},{"date":"2022-12-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.501},{"date":"2022-12-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.091},{"date":"2022-12-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.971},{"date":"2022-12-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.352},{"date":"2022-12-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.593},{"date":"2022-12-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.381},{"date":"2022-12-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.916},{"date":"2022-12-26","fuel":"gasoline","grade":"premium","formulation":"all","price":3.925},{"date":"2022-12-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.732},{"date":"2022-12-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.158},{"date":"2022-12-26","fuel":"diesel","grade":"all","formulation":"NA","price":4.537},{"date":"2022-12-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.537},{"date":"2023-01-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.331},{"date":"2023-01-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.203},{"date":"2023-01-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.588},{"date":"2023-01-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.223},{"date":"2023-01-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.123},{"date":"2023-01-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.441},{"date":"2023-01-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.7},{"date":"2023-01-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.506},{"date":"2023-01-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.995},{"date":"2023-01-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.028},{"date":"2023-01-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.855},{"date":"2023-01-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.237},{"date":"2023-01-02","fuel":"diesel","grade":"all","formulation":"NA","price":4.583},{"date":"2023-01-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.583},{"date":"2023-01-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.366},{"date":"2023-01-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.246},{"date":"2023-01-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.604},{"date":"2023-01-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.259},{"date":"2023-01-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.167},{"date":"2023-01-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.46},{"date":"2023-01-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.727},{"date":"2023-01-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.549},{"date":"2023-01-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.998},{"date":"2023-01-09","fuel":"gasoline","grade":"premium","formulation":"all","price":4.055},{"date":"2023-01-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.893},{"date":"2023-01-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.25},{"date":"2023-01-09","fuel":"diesel","grade":"all","formulation":"NA","price":4.549},{"date":"2023-01-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.549},{"date":"2023-01-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.416},{"date":"2023-01-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.306},{"date":"2023-01-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.635},{"date":"2023-01-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.31},{"date":"2023-01-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.225},{"date":"2023-01-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.494},{"date":"2023-01-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.782},{"date":"2023-01-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.62},{"date":"2023-01-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.027},{"date":"2023-01-16","fuel":"gasoline","grade":"premium","formulation":"all","price":4.096},{"date":"2023-01-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.957},{"date":"2023-01-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.265},{"date":"2023-01-16","fuel":"diesel","grade":"all","formulation":"NA","price":4.524},{"date":"2023-01-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.524},{"date":"2023-01-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.519},{"date":"2023-01-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.42},{"date":"2023-01-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.715},{"date":"2023-01-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.415},{"date":"2023-01-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.34},{"date":"2023-01-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.577},{"date":"2023-01-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.88},{"date":"2023-01-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.741},{"date":"2023-01-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.09},{"date":"2023-01-23","fuel":"gasoline","grade":"premium","formulation":"all","price":4.189},{"date":"2023-01-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.069},{"date":"2023-01-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.333},{"date":"2023-01-23","fuel":"diesel","grade":"all","formulation":"NA","price":4.604},{"date":"2023-01-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.604},{"date":"2023-01-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.594},{"date":"2023-01-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.499},{"date":"2023-01-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.784},{"date":"2023-01-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.489},{"date":"2023-01-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.417},{"date":"2023-01-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.645},{"date":"2023-01-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.954},{"date":"2023-01-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.819},{"date":"2023-01-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.157},{"date":"2023-01-30","fuel":"gasoline","grade":"premium","formulation":"all","price":4.27},{"date":"2023-01-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.151},{"date":"2023-01-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.413},{"date":"2023-01-30","fuel":"diesel","grade":"all","formulation":"NA","price":4.622},{"date":"2023-01-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.622},{"date":"2023-02-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.552},{"date":"2023-02-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.446},{"date":"2023-02-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.763},{"date":"2023-02-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.444},{"date":"2023-02-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.362},{"date":"2023-02-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.622},{"date":"2023-02-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.931},{"date":"2023-02-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.793},{"date":"2023-02-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.143},{"date":"2023-02-06","fuel":"gasoline","grade":"premium","formulation":"all","price":4.246},{"date":"2023-02-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.116},{"date":"2023-02-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.402},{"date":"2023-02-06","fuel":"diesel","grade":"all","formulation":"NA","price":4.539},{"date":"2023-02-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.539},{"date":"2023-02-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.502},{"date":"2023-02-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.397},{"date":"2023-02-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.712},{"date":"2023-02-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.39},{"date":"2023-02-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.311},{"date":"2023-02-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.563},{"date":"2023-02-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.902},{"date":"2023-02-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.754},{"date":"2023-02-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.126},{"date":"2023-02-13","fuel":"gasoline","grade":"premium","formulation":"all","price":4.212},{"date":"2023-02-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.079},{"date":"2023-02-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.373},{"date":"2023-02-13","fuel":"diesel","grade":"all","formulation":"NA","price":4.444},{"date":"2023-02-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.444},{"date":"2023-02-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.494},{"date":"2023-02-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.381},{"date":"2023-02-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.718},{"date":"2023-02-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.379},{"date":"2023-02-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.293},{"date":"2023-02-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.566},{"date":"2023-02-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.908},{"date":"2023-02-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.752},{"date":"2023-02-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.145},{"date":"2023-02-20","fuel":"gasoline","grade":"premium","formulation":"all","price":4.215},{"date":"2023-02-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.07},{"date":"2023-02-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.391},{"date":"2023-02-20","fuel":"diesel","grade":"all","formulation":"NA","price":4.376},{"date":"2023-02-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.376},{"date":"2023-02-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.457},{"date":"2023-02-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.338},{"date":"2023-02-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.694},{"date":"2023-02-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.342},{"date":"2023-02-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.25},{"date":"2023-02-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.54},{"date":"2023-02-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.874},{"date":"2023-02-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.707},{"date":"2023-02-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.124},{"date":"2023-02-27","fuel":"gasoline","grade":"premium","formulation":"all","price":4.189},{"date":"2023-02-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.034},{"date":"2023-02-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.374},{"date":"2023-02-27","fuel":"diesel","grade":"all","formulation":"NA","price":4.294},{"date":"2023-02-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.294},{"date":"2023-03-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.505},{"date":"2023-03-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.374},{"date":"2023-03-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.767},{"date":"2023-03-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.389},{"date":"2023-03-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.288},{"date":"2023-03-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.61},{"date":"2023-03-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.916},{"date":"2023-03-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.724},{"date":"2023-03-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.205},{"date":"2023-03-06","fuel":"gasoline","grade":"premium","formulation":"all","price":4.239},{"date":"2023-03-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.055},{"date":"2023-03-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.461},{"date":"2023-03-06","fuel":"diesel","grade":"all","formulation":"NA","price":4.282},{"date":"2023-03-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.282},{"date":"2023-03-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.568},{"date":"2023-03-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.434},{"date":"2023-03-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.838},{"date":"2023-03-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.456},{"date":"2023-03-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.35},{"date":"2023-03-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.688},{"date":"2023-03-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.97},{"date":"2023-03-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.778},{"date":"2023-03-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.262},{"date":"2023-03-13","fuel":"gasoline","grade":"premium","formulation":"all","price":4.284},{"date":"2023-03-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.105},{"date":"2023-03-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.499},{"date":"2023-03-13","fuel":"diesel","grade":"all","formulation":"NA","price":4.247},{"date":"2023-03-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.247},{"date":"2023-03-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.534},{"date":"2023-03-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.405},{"date":"2023-03-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.794},{"date":"2023-03-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.422},{"date":"2023-03-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.321},{"date":"2023-03-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.644},{"date":"2023-03-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.935},{"date":"2023-03-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.749},{"date":"2023-03-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.215},{"date":"2023-03-20","fuel":"gasoline","grade":"premium","formulation":"all","price":4.247},{"date":"2023-03-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.075},{"date":"2023-03-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.454},{"date":"2023-03-20","fuel":"diesel","grade":"all","formulation":"NA","price":4.185},{"date":"2023-03-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.185},{"date":"2023-03-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.533},{"date":"2023-03-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.389},{"date":"2023-03-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.822},{"date":"2023-03-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.421},{"date":"2023-03-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.304},{"date":"2023-03-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.676},{"date":"2023-03-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.934},{"date":"2023-03-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.735},{"date":"2023-03-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.234},{"date":"2023-03-27","fuel":"gasoline","grade":"premium","formulation":"all","price":4.247},{"date":"2023-03-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.066},{"date":"2023-03-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.464},{"date":"2023-03-27","fuel":"diesel","grade":"all","formulation":"NA","price":4.128},{"date":"2023-03-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.128},{"date":"2023-04-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.606},{"date":"2023-04-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.465},{"date":"2023-04-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.887},{"date":"2023-04-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.497},{"date":"2023-04-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.384},{"date":"2023-04-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.743},{"date":"2023-04-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.988},{"date":"2023-04-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.788},{"date":"2023-04-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.288},{"date":"2023-04-03","fuel":"gasoline","grade":"premium","formulation":"all","price":4.305},{"date":"2023-04-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.125},{"date":"2023-04-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.52},{"date":"2023-04-03","fuel":"diesel","grade":"all","formulation":"NA","price":4.105},{"date":"2023-04-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.105},{"date":"2023-04-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.703},{"date":"2023-04-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.572},{"date":"2023-04-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.965},{"date":"2023-04-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.596},{"date":"2023-04-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.493},{"date":"2023-04-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.822},{"date":"2023-04-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.069},{"date":"2023-04-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.878},{"date":"2023-04-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.36},{"date":"2023-04-10","fuel":"gasoline","grade":"premium","formulation":"all","price":4.391},{"date":"2023-04-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.216},{"date":"2023-04-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.6},{"date":"2023-04-10","fuel":"diesel","grade":"all","formulation":"NA","price":4.098},{"date":"2023-04-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.098},{"date":"2023-04-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.769},{"date":"2023-04-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.632},{"date":"2023-04-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.044},{"date":"2023-04-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.663},{"date":"2023-04-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.553},{"date":"2023-04-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.902},{"date":"2023-04-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.134},{"date":"2023-04-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.936},{"date":"2023-04-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.435},{"date":"2023-04-17","fuel":"gasoline","grade":"premium","formulation":"all","price":4.458},{"date":"2023-04-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.278},{"date":"2023-04-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.674},{"date":"2023-04-17","fuel":"diesel","grade":"all","formulation":"NA","price":4.116},{"date":"2023-04-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.116},{"date":"2023-04-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.765},{"date":"2023-04-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.623},{"date":"2023-04-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.05},{"date":"2023-04-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.656},{"date":"2023-04-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.542},{"date":"2023-04-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.905},{"date":"2023-04-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.142},{"date":"2023-04-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.935},{"date":"2023-04-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.454},{"date":"2023-04-24","fuel":"gasoline","grade":"premium","formulation":"all","price":4.469},{"date":"2023-04-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.285},{"date":"2023-04-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.688},{"date":"2023-04-24","fuel":"diesel","grade":"all","formulation":"NA","price":4.077},{"date":"2023-04-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.077},{"date":"2023-05-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.711},{"date":"2023-05-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.562},{"date":"2023-05-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.009},{"date":"2023-05-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.6},{"date":"2023-05-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.48},{"date":"2023-05-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.864},{"date":"2023-05-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.094},{"date":"2023-05-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.884},{"date":"2023-05-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.411},{"date":"2023-05-01","fuel":"gasoline","grade":"premium","formulation":"all","price":4.424},{"date":"2023-05-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.235},{"date":"2023-05-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.65},{"date":"2023-05-01","fuel":"diesel","grade":"all","formulation":"NA","price":4.018},{"date":"2023-05-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.018},{"date":"2023-05-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.644},{"date":"2023-05-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.491},{"date":"2023-05-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.952},{"date":"2023-05-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.533},{"date":"2023-05-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.407},{"date":"2023-05-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.808},{"date":"2023-05-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.033},{"date":"2023-05-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.825},{"date":"2023-05-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.348},{"date":"2023-05-08","fuel":"gasoline","grade":"premium","formulation":"all","price":4.362},{"date":"2023-05-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.173},{"date":"2023-05-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.589},{"date":"2023-05-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.922},{"date":"2023-05-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.922},{"date":"2023-05-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.647},{"date":"2023-05-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.499},{"date":"2023-05-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.944},{"date":"2023-05-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.536},{"date":"2023-05-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.415},{"date":"2023-05-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.8},{"date":"2023-05-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.031},{"date":"2023-05-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.826},{"date":"2023-05-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.343},{"date":"2023-05-15","fuel":"gasoline","grade":"premium","formulation":"all","price":4.359},{"date":"2023-05-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.175},{"date":"2023-05-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.579},{"date":"2023-05-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.897},{"date":"2023-05-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.897},{"date":"2023-05-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.645},{"date":"2023-05-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.5},{"date":"2023-05-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.938},{"date":"2023-05-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.534},{"date":"2023-05-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.416},{"date":"2023-05-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.794},{"date":"2023-05-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.029},{"date":"2023-05-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.83},{"date":"2023-05-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.335},{"date":"2023-05-22","fuel":"gasoline","grade":"premium","formulation":"all","price":4.361},{"date":"2023-05-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.181},{"date":"2023-05-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.58},{"date":"2023-05-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.883},{"date":"2023-05-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.883},{"date":"2023-05-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.684},{"date":"2023-05-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.526},{"date":"2023-05-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4},{"date":"2023-05-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.571},{"date":"2023-05-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.443},{"date":"2023-05-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.854},{"date":"2023-05-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.072},{"date":"2023-05-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.855},{"date":"2023-05-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.401},{"date":"2023-05-29","fuel":"gasoline","grade":"premium","formulation":"all","price":4.406},{"date":"2023-05-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.206},{"date":"2023-05-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.645},{"date":"2023-05-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.855},{"date":"2023-05-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.855},{"date":"2023-06-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.655},{"date":"2023-06-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.5},{"date":"2023-06-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.965},{"date":"2023-06-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.541},{"date":"2023-06-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.414},{"date":"2023-06-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.818},{"date":"2023-06-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.051},{"date":"2023-06-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.84},{"date":"2023-06-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.372},{"date":"2023-06-05","fuel":"gasoline","grade":"premium","formulation":"all","price":4.384},{"date":"2023-06-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.189},{"date":"2023-06-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.618},{"date":"2023-06-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.797},{"date":"2023-06-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.797},{"date":"2023-06-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.707},{"date":"2023-06-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.559},{"date":"2023-06-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.005},{"date":"2023-06-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.595},{"date":"2023-06-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.475},{"date":"2023-06-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.857},{"date":"2023-06-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.105},{"date":"2023-06-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.897},{"date":"2023-06-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.419},{"date":"2023-06-12","fuel":"gasoline","grade":"premium","formulation":"all","price":4.428},{"date":"2023-06-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.237},{"date":"2023-06-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.656},{"date":"2023-06-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.794},{"date":"2023-06-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.794},{"date":"2023-06-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.69},{"date":"2023-06-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.535},{"date":"2023-06-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4},{"date":"2023-06-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.577},{"date":"2023-06-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.449},{"date":"2023-06-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.855},{"date":"2023-06-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.091},{"date":"2023-06-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.887},{"date":"2023-06-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.4},{"date":"2023-06-19","fuel":"gasoline","grade":"premium","formulation":"all","price":4.414},{"date":"2023-06-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.223},{"date":"2023-06-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.642},{"date":"2023-06-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.815},{"date":"2023-06-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.815},{"date":"2023-06-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.685},{"date":"2023-06-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.533},{"date":"2023-06-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.989},{"date":"2023-06-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.571},{"date":"2023-06-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.445},{"date":"2023-06-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.845},{"date":"2023-06-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.089},{"date":"2023-06-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.891},{"date":"2023-06-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.39},{"date":"2023-06-26","fuel":"gasoline","grade":"premium","formulation":"all","price":4.41},{"date":"2023-06-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.233},{"date":"2023-06-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.623},{"date":"2023-06-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.801},{"date":"2023-06-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.801},{"date":"2023-07-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.643},{"date":"2023-07-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.486},{"date":"2023-07-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.957},{"date":"2023-07-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.527},{"date":"2023-07-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.397},{"date":"2023-07-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.811},{"date":"2023-07-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.054},{"date":"2023-07-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.853},{"date":"2023-07-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.36},{"date":"2023-07-03","fuel":"gasoline","grade":"premium","formulation":"all","price":4.379},{"date":"2023-07-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.194},{"date":"2023-07-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.602},{"date":"2023-07-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.767},{"date":"2023-07-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.767},{"date":"2023-07-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.663},{"date":"2023-07-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.51},{"date":"2023-07-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.971},{"date":"2023-07-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.546},{"date":"2023-07-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.42},{"date":"2023-07-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.822},{"date":"2023-07-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.081},{"date":"2023-07-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.876},{"date":"2023-07-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.394},{"date":"2023-07-10","fuel":"gasoline","grade":"premium","formulation":"all","price":4.405},{"date":"2023-07-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.223},{"date":"2023-07-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.625},{"date":"2023-07-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.806},{"date":"2023-07-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.806},{"date":"2023-07-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.676},{"date":"2023-07-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.527},{"date":"2023-07-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.973},{"date":"2023-07-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.559},{"date":"2023-07-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.438},{"date":"2023-07-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.825},{"date":"2023-07-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.087},{"date":"2023-07-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.889},{"date":"2023-07-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.39},{"date":"2023-07-17","fuel":"gasoline","grade":"premium","formulation":"all","price":4.412},{"date":"2023-07-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.232},{"date":"2023-07-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.63},{"date":"2023-07-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.806},{"date":"2023-07-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.806},{"date":"2023-07-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.711},{"date":"2023-07-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.568},{"date":"2023-07-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.999},{"date":"2023-07-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.596},{"date":"2023-07-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.479},{"date":"2023-07-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.852},{"date":"2023-07-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.118},{"date":"2023-07-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.928},{"date":"2023-07-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.407},{"date":"2023-07-24","fuel":"gasoline","grade":"premium","formulation":"all","price":4.443},{"date":"2023-07-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.273},{"date":"2023-07-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.649},{"date":"2023-07-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.905},{"date":"2023-07-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.905},{"date":"2023-07-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.869},{"date":"2023-07-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.736},{"date":"2023-07-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.136},{"date":"2023-07-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.757},{"date":"2023-07-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.65},{"date":"2023-07-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.99},{"date":"2023-07-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.263},{"date":"2023-07-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.078},{"date":"2023-07-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.545},{"date":"2023-07-31","fuel":"gasoline","grade":"premium","formulation":"all","price":4.582},{"date":"2023-07-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.419},{"date":"2023-07-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.779},{"date":"2023-07-31","fuel":"diesel","grade":"all","formulation":"NA","price":4.127},{"date":"2023-07-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.127},{"date":"2023-08-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.94},{"date":"2023-08-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.816},{"date":"2023-08-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.189},{"date":"2023-08-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.828},{"date":"2023-08-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.731},{"date":"2023-08-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.041},{"date":"2023-08-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.332},{"date":"2023-08-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.155},{"date":"2023-08-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.6},{"date":"2023-08-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.655},{"date":"2023-08-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.502},{"date":"2023-08-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.837},{"date":"2023-08-07","fuel":"diesel","grade":"all","formulation":"NA","price":4.239},{"date":"2023-08-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.239},{"date":"2023-08-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.962},{"date":"2023-08-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.831},{"date":"2023-08-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.225},{"date":"2023-08-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.85},{"date":"2023-08-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.746},{"date":"2023-08-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.076},{"date":"2023-08-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.353},{"date":"2023-08-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.166},{"date":"2023-08-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.637},{"date":"2023-08-14","fuel":"gasoline","grade":"premium","formulation":"all","price":4.683},{"date":"2023-08-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.516},{"date":"2023-08-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.884},{"date":"2023-08-14","fuel":"diesel","grade":"all","formulation":"NA","price":4.378},{"date":"2023-08-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.378},{"date":"2023-08-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.984},{"date":"2023-08-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.833},{"date":"2023-08-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.285},{"date":"2023-08-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.868},{"date":"2023-08-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.746},{"date":"2023-08-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.134},{"date":"2023-08-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.393},{"date":"2023-08-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.183},{"date":"2023-08-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.71},{"date":"2023-08-21","fuel":"gasoline","grade":"premium","formulation":"all","price":4.717},{"date":"2023-08-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.526},{"date":"2023-08-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.946},{"date":"2023-08-21","fuel":"diesel","grade":"all","formulation":"NA","price":4.389},{"date":"2023-08-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.389},{"date":"2023-08-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.931},{"date":"2023-08-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.772},{"date":"2023-08-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.249},{"date":"2023-08-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.813},{"date":"2023-08-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.684},{"date":"2023-08-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.094},{"date":"2023-08-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.349},{"date":"2023-08-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.125},{"date":"2023-08-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.687},{"date":"2023-08-28","fuel":"gasoline","grade":"premium","formulation":"all","price":4.683},{"date":"2023-08-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.477},{"date":"2023-08-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.929},{"date":"2023-08-28","fuel":"diesel","grade":"all","formulation":"NA","price":4.475},{"date":"2023-08-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.475},{"date":"2023-09-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.925},{"date":"2023-09-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.768},{"date":"2023-09-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.238},{"date":"2023-09-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.807},{"date":"2023-09-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.68},{"date":"2023-09-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.082},{"date":"2023-09-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.347},{"date":"2023-09-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.125},{"date":"2023-09-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.685},{"date":"2023-09-04","fuel":"gasoline","grade":"premium","formulation":"all","price":4.672},{"date":"2023-09-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.468},{"date":"2023-09-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.918},{"date":"2023-09-04","fuel":"diesel","grade":"all","formulation":"NA","price":4.492},{"date":"2023-09-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.492},{"date":"2023-09-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.941},{"date":"2023-09-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.78},{"date":"2023-09-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.263},{"date":"2023-09-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.822},{"date":"2023-09-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.692},{"date":"2023-09-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.105},{"date":"2023-09-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.367},{"date":"2023-09-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.13},{"date":"2023-09-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.727},{"date":"2023-09-11","fuel":"gasoline","grade":"premium","formulation":"all","price":4.694},{"date":"2023-09-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.479},{"date":"2023-09-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.953},{"date":"2023-09-11","fuel":"diesel","grade":"all","formulation":"NA","price":4.54},{"date":"2023-09-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.54},{"date":"2023-09-18","fuel":"gasoline","grade":"all","formulation":"all","price":4.001},{"date":"2023-09-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.811},{"date":"2023-09-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.381},{"date":"2023-09-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.878},{"date":"2023-09-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.724},{"date":"2023-09-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.215},{"date":"2023-09-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.446},{"date":"2023-09-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.161},{"date":"2023-09-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.88},{"date":"2023-09-18","fuel":"gasoline","grade":"premium","formulation":"all","price":4.775},{"date":"2023-09-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.51},{"date":"2023-09-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.094},{"date":"2023-09-18","fuel":"diesel","grade":"all","formulation":"NA","price":4.633},{"date":"2023-09-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.633},{"date":"2023-09-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.963},{"date":"2023-09-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.752},{"date":"2023-09-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.387},{"date":"2023-09-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.837},{"date":"2023-09-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.663},{"date":"2023-09-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.216},{"date":"2023-09-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.423},{"date":"2023-09-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.101},{"date":"2023-09-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.912},{"date":"2023-09-25","fuel":"gasoline","grade":"premium","formulation":"all","price":4.758},{"date":"2023-09-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.463},{"date":"2023-09-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.115},{"date":"2023-09-25","fuel":"diesel","grade":"all","formulation":"NA","price":4.586},{"date":"2023-09-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.586},{"date":"2023-10-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.93},{"date":"2023-10-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.688},{"date":"2023-10-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.412},{"date":"2023-10-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.798},{"date":"2023-10-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.598},{"date":"2023-10-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.233},{"date":"2023-10-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.414},{"date":"2023-10-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":4.048},{"date":"2023-10-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.969},{"date":"2023-10-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.759},{"date":"2023-10-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.415},{"date":"2023-10-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":5.171},{"date":"2023-10-02","fuel":"diesel","grade":"all","formulation":"NA","price":4.593},{"date":"2023-10-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.593},{"date":"2023-10-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.814},{"date":"2023-10-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.597},{"date":"2023-10-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.248},{"date":"2023-10-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.684},{"date":"2023-10-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.506},{"date":"2023-10-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.073},{"date":"2023-10-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.293},{"date":"2023-10-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.965},{"date":"2023-10-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.797},{"date":"2023-10-09","fuel":"gasoline","grade":"premium","formulation":"all","price":4.627},{"date":"2023-10-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.327},{"date":"2023-10-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.988},{"date":"2023-10-09","fuel":"diesel","grade":"all","formulation":"NA","price":4.498},{"date":"2023-10-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.498},{"date":"2023-10-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.706},{"date":"2023-10-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.496},{"date":"2023-10-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.125},{"date":"2023-10-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.576},{"date":"2023-10-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.404},{"date":"2023-10-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.951},{"date":"2023-10-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.177},{"date":"2023-10-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.862},{"date":"2023-10-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.659},{"date":"2023-10-16","fuel":"gasoline","grade":"premium","formulation":"all","price":4.522},{"date":"2023-10-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.231},{"date":"2023-10-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.873},{"date":"2023-10-16","fuel":"diesel","grade":"all","formulation":"NA","price":4.444},{"date":"2023-10-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.444},{"date":"2023-10-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.66},{"date":"2023-10-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.461},{"date":"2023-10-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.059},{"date":"2023-10-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.533},{"date":"2023-10-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.369},{"date":"2023-10-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.89},{"date":"2023-10-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.117},{"date":"2023-10-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.826},{"date":"2023-10-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.571},{"date":"2023-10-23","fuel":"gasoline","grade":"premium","formulation":"all","price":4.465},{"date":"2023-10-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.192},{"date":"2023-10-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.794},{"date":"2023-10-23","fuel":"diesel","grade":"all","formulation":"NA","price":4.545},{"date":"2023-10-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.545},{"date":"2023-10-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.6},{"date":"2023-10-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.411},{"date":"2023-10-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.978},{"date":"2023-10-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.473},{"date":"2023-10-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.32},{"date":"2023-10-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.809},{"date":"2023-10-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.053},{"date":"2023-10-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.773},{"date":"2023-10-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.48},{"date":"2023-10-30","fuel":"gasoline","grade":"premium","formulation":"all","price":4.4},{"date":"2023-10-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.141},{"date":"2023-10-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.711},{"date":"2023-10-30","fuel":"diesel","grade":"all","formulation":"NA","price":4.454},{"date":"2023-10-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.454},{"date":"2023-11-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.52},{"date":"2023-11-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.334},{"date":"2023-11-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.894},{"date":"2023-11-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.396},{"date":"2023-11-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.245},{"date":"2023-11-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.725},{"date":"2023-11-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.962},{"date":"2023-11-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.684},{"date":"2023-11-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.388},{"date":"2023-11-06","fuel":"gasoline","grade":"premium","formulation":"all","price":4.312},{"date":"2023-11-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.05},{"date":"2023-11-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.628},{"date":"2023-11-06","fuel":"diesel","grade":"all","formulation":"NA","price":4.366},{"date":"2023-11-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.366},{"date":"2023-11-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.473},{"date":"2023-11-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.3},{"date":"2023-11-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.816},{"date":"2023-11-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.349},{"date":"2023-11-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.212},{"date":"2023-11-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.646},{"date":"2023-11-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.908},{"date":"2023-11-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.645},{"date":"2023-11-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.289},{"date":"2023-11-13","fuel":"gasoline","grade":"premium","formulation":"all","price":4.262},{"date":"2023-11-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.016},{"date":"2023-11-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.552},{"date":"2023-11-13","fuel":"diesel","grade":"all","formulation":"NA","price":4.294},{"date":"2023-11-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.294},{"date":"2023-11-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.414},{"date":"2023-11-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.233},{"date":"2023-11-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.77},{"date":"2023-11-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.289},{"date":"2023-11-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.144},{"date":"2023-11-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.602},{"date":"2023-11-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.85},{"date":"2023-11-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.583},{"date":"2023-11-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.236},{"date":"2023-11-20","fuel":"gasoline","grade":"premium","formulation":"all","price":4.209},{"date":"2023-11-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.959},{"date":"2023-11-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.502},{"date":"2023-11-20","fuel":"diesel","grade":"all","formulation":"NA","price":4.209},{"date":"2023-11-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.209},{"date":"2023-11-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.363},{"date":"2023-11-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.178},{"date":"2023-11-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.727},{"date":"2023-11-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.238},{"date":"2023-11-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.088},{"date":"2023-11-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.562},{"date":"2023-11-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.801},{"date":"2023-11-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.535},{"date":"2023-11-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.187},{"date":"2023-11-27","fuel":"gasoline","grade":"premium","formulation":"all","price":4.157},{"date":"2023-11-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.91},{"date":"2023-11-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.448},{"date":"2023-11-27","fuel":"diesel","grade":"all","formulation":"NA","price":4.146},{"date":"2023-11-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.146},{"date":"2023-12-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.355},{"date":"2023-12-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.194},{"date":"2023-12-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.67},{"date":"2023-12-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.231},{"date":"2023-12-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.104},{"date":"2023-12-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.503},{"date":"2023-12-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.791},{"date":"2023-12-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.548},{"date":"2023-12-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.142},{"date":"2023-12-04","fuel":"gasoline","grade":"premium","formulation":"all","price":4.138},{"date":"2023-12-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.925},{"date":"2023-12-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.387},{"date":"2023-12-04","fuel":"diesel","grade":"all","formulation":"NA","price":4.092},{"date":"2023-12-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.092},{"date":"2023-12-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.259},{"date":"2023-12-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.104},{"date":"2023-12-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.563},{"date":"2023-12-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.136},{"date":"2023-12-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.014},{"date":"2023-12-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.399},{"date":"2023-12-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.682},{"date":"2023-12-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.454},{"date":"2023-12-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.014},{"date":"2023-12-11","fuel":"gasoline","grade":"premium","formulation":"all","price":4.042},{"date":"2023-12-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.837},{"date":"2023-12-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.281},{"date":"2023-12-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.987},{"date":"2023-12-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.987},{"date":"2023-12-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.176},{"date":"2023-12-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.023},{"date":"2023-12-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.476},{"date":"2023-12-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.053},{"date":"2023-12-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.931},{"date":"2023-12-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.312},{"date":"2023-12-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.602},{"date":"2023-12-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.378},{"date":"2023-12-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.924},{"date":"2023-12-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.957},{"date":"2023-12-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.761},{"date":"2023-12-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.185},{"date":"2023-12-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.894},{"date":"2023-12-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.894},{"date":"2023-12-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.238},{"date":"2023-12-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.094},{"date":"2023-12-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.522},{"date":"2023-12-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.116},{"date":"2023-12-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.005},{"date":"2023-12-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.357},{"date":"2023-12-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.663},{"date":"2023-12-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.447},{"date":"2023-12-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.976},{"date":"2023-12-25","fuel":"gasoline","grade":"premium","formulation":"all","price":4.014},{"date":"2023-12-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.822},{"date":"2023-12-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.237},{"date":"2023-12-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.914},{"date":"2023-12-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.914},{"date":"2024-01-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.213},{"date":"2024-01-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.055},{"date":"2024-01-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.522},{"date":"2024-01-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.089},{"date":"2024-01-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.966},{"date":"2024-01-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.354},{"date":"2024-01-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.646},{"date":"2024-01-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.408},{"date":"2024-01-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.987},{"date":"2024-01-01","fuel":"gasoline","grade":"premium","formulation":"all","price":4},{"date":"2024-01-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.784},{"date":"2024-01-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.25},{"date":"2024-01-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.876},{"date":"2024-01-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.876},{"date":"2024-01-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.197},{"date":"2024-01-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.035},{"date":"2024-01-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.514},{"date":"2024-01-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.073},{"date":"2024-01-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.945},{"date":"2024-01-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.347},{"date":"2024-01-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.632},{"date":"2024-01-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.394},{"date":"2024-01-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.974},{"date":"2024-01-08","fuel":"gasoline","grade":"premium","formulation":"all","price":3.983},{"date":"2024-01-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.764},{"date":"2024-01-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.237},{"date":"2024-01-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.828},{"date":"2024-01-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.828},{"date":"2024-01-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.179},{"date":"2024-01-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.032},{"date":"2024-01-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.466},{"date":"2024-01-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.058},{"date":"2024-01-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.944},{"date":"2024-01-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.302},{"date":"2024-01-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.599},{"date":"2024-01-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.377},{"date":"2024-01-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.916},{"date":"2024-01-15","fuel":"gasoline","grade":"premium","formulation":"all","price":3.947},{"date":"2024-01-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.75},{"date":"2024-01-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.176},{"date":"2024-01-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.863},{"date":"2024-01-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.863},{"date":"2024-01-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.181},{"date":"2024-01-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.037},{"date":"2024-01-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.464},{"date":"2024-01-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.062},{"date":"2024-01-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.95},{"date":"2024-01-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.304},{"date":"2024-01-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.591},{"date":"2024-01-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.375},{"date":"2024-01-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.901},{"date":"2024-01-22","fuel":"gasoline","grade":"premium","formulation":"all","price":3.942},{"date":"2024-01-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.75},{"date":"2024-01-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.165},{"date":"2024-01-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.838},{"date":"2024-01-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.838},{"date":"2024-01-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.214},{"date":"2024-01-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.066},{"date":"2024-01-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.507},{"date":"2024-01-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.095},{"date":"2024-01-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.979},{"date":"2024-01-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.347},{"date":"2024-01-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.626},{"date":"2024-01-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.403},{"date":"2024-01-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.948},{"date":"2024-01-29","fuel":"gasoline","grade":"premium","formulation":"all","price":3.971},{"date":"2024-01-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.772},{"date":"2024-01-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.203},{"date":"2024-01-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.867},{"date":"2024-01-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.867},{"date":"2024-02-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.254},{"date":"2024-02-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.107},{"date":"2024-02-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.545},{"date":"2024-02-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.136},{"date":"2024-02-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.021},{"date":"2024-02-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.385},{"date":"2024-02-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.663},{"date":"2024-02-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.438},{"date":"2024-02-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.988},{"date":"2024-02-05","fuel":"gasoline","grade":"premium","formulation":"all","price":4.009},{"date":"2024-02-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.811},{"date":"2024-02-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.24},{"date":"2024-02-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.899},{"date":"2024-02-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.899},{"date":"2024-02-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.309},{"date":"2024-02-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.168},{"date":"2024-02-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.585},{"date":"2024-02-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.192},{"date":"2024-02-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.083},{"date":"2024-02-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.424},{"date":"2024-02-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.707},{"date":"2024-02-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.488},{"date":"2024-02-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.022},{"date":"2024-02-12","fuel":"gasoline","grade":"premium","formulation":"all","price":4.059},{"date":"2024-02-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.867},{"date":"2024-02-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.283},{"date":"2024-02-12","fuel":"diesel","grade":"all","formulation":"NA","price":4.109},{"date":"2024-02-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.109},{"date":"2024-02-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.385},{"date":"2024-02-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.244},{"date":"2024-02-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.661},{"date":"2024-02-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.269},{"date":"2024-02-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.159},{"date":"2024-02-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.504},{"date":"2024-02-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.782},{"date":"2024-02-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.566},{"date":"2024-02-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.093},{"date":"2024-02-19","fuel":"gasoline","grade":"premium","formulation":"all","price":4.128},{"date":"2024-02-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.941},{"date":"2024-02-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.346},{"date":"2024-02-19","fuel":"diesel","grade":"all","formulation":"NA","price":4.109},{"date":"2024-02-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.109},{"date":"2024-02-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.365},{"date":"2024-02-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.231},{"date":"2024-02-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.629},{"date":"2024-02-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.249},{"date":"2024-02-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.145},{"date":"2024-02-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.471},{"date":"2024-02-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.763},{"date":"2024-02-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.553},{"date":"2024-02-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.066},{"date":"2024-02-26","fuel":"gasoline","grade":"premium","formulation":"all","price":4.11},{"date":"2024-02-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.934},{"date":"2024-02-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.316},{"date":"2024-02-26","fuel":"diesel","grade":"all","formulation":"NA","price":4.058},{"date":"2024-02-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.058},{"date":"2024-03-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.466},{"date":"2024-03-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.327},{"date":"2024-03-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.74},{"date":"2024-03-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.35},{"date":"2024-03-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.243},{"date":"2024-03-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.578},{"date":"2024-03-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.866},{"date":"2024-03-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.641},{"date":"2024-03-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.189},{"date":"2024-03-04","fuel":"gasoline","grade":"premium","formulation":"all","price":4.214},{"date":"2024-03-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.022},{"date":"2024-03-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.438},{"date":"2024-03-04","fuel":"diesel","grade":"all","formulation":"NA","price":4.022},{"date":"2024-03-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.022},{"date":"2024-03-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.492},{"date":"2024-03-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.355},{"date":"2024-03-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.762},{"date":"2024-03-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.376},{"date":"2024-03-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.27},{"date":"2024-03-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.602},{"date":"2024-03-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.889},{"date":"2024-03-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.67},{"date":"2024-03-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.205},{"date":"2024-03-11","fuel":"gasoline","grade":"premium","formulation":"all","price":4.24},{"date":"2024-03-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.052},{"date":"2024-03-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.459},{"date":"2024-03-11","fuel":"diesel","grade":"all","formulation":"NA","price":4.004},{"date":"2024-03-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.004},{"date":"2024-03-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.569},{"date":"2024-03-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.433},{"date":"2024-03-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.836},{"date":"2024-03-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.453},{"date":"2024-03-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.348},{"date":"2024-03-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.679},{"date":"2024-03-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.963},{"date":"2024-03-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.751},{"date":"2024-03-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.266},{"date":"2024-03-18","fuel":"gasoline","grade":"premium","formulation":"all","price":4.31},{"date":"2024-03-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.131},{"date":"2024-03-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.519},{"date":"2024-03-18","fuel":"diesel","grade":"all","formulation":"NA","price":4.028},{"date":"2024-03-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.028},{"date":"2024-03-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.639},{"date":"2024-03-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.494},{"date":"2024-03-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.923},{"date":"2024-03-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.523},{"date":"2024-03-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.409},{"date":"2024-03-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.767},{"date":"2024-03-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.033},{"date":"2024-03-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.815},{"date":"2024-03-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.347},{"date":"2024-03-25","fuel":"gasoline","grade":"premium","formulation":"all","price":4.381},{"date":"2024-03-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.187},{"date":"2024-03-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.608},{"date":"2024-03-25","fuel":"diesel","grade":"all","formulation":"NA","price":4.034},{"date":"2024-03-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.034},{"date":"2024-04-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.636},{"date":"2024-04-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.487},{"date":"2024-04-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.926},{"date":"2024-04-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.517},{"date":"2024-04-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.401},{"date":"2024-04-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.766},{"date":"2024-04-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.041},{"date":"2024-04-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.818},{"date":"2024-04-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.364},{"date":"2024-04-01","fuel":"gasoline","grade":"premium","formulation":"all","price":4.393},{"date":"2024-04-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.196},{"date":"2024-04-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.623},{"date":"2024-04-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.996},{"date":"2024-04-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.996},{"date":"2024-04-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.712},{"date":"2024-04-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.534},{"date":"2024-04-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.06},{"date":"2024-04-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.591},{"date":"2024-04-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.448},{"date":"2024-04-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.897},{"date":"2024-04-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.124},{"date":"2024-04-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.863},{"date":"2024-04-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.501},{"date":"2024-04-08","fuel":"gasoline","grade":"premium","formulation":"all","price":4.485},{"date":"2024-04-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.241},{"date":"2024-04-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.77},{"date":"2024-04-08","fuel":"diesel","grade":"all","formulation":"NA","price":4.061},{"date":"2024-04-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.061},{"date":"2024-04-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.751},{"date":"2024-04-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.567},{"date":"2024-04-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.111},{"date":"2024-04-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.628},{"date":"2024-04-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.479},{"date":"2024-04-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.947},{"date":"2024-04-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.171},{"date":"2024-04-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.903},{"date":"2024-04-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.557},{"date":"2024-04-15","fuel":"gasoline","grade":"premium","formulation":"all","price":4.536},{"date":"2024-04-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.285},{"date":"2024-04-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.83},{"date":"2024-04-15","fuel":"diesel","grade":"all","formulation":"NA","price":4.015},{"date":"2024-04-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":4.015},{"date":"2024-04-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.791},{"date":"2024-04-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.594},{"date":"2024-04-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.177},{"date":"2024-04-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.668},{"date":"2024-04-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.506},{"date":"2024-04-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":4.015},{"date":"2024-04-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.211},{"date":"2024-04-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.931},{"date":"2024-04-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.617},{"date":"2024-04-22","fuel":"gasoline","grade":"premium","formulation":"all","price":4.574},{"date":"2024-04-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.31},{"date":"2024-04-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.881},{"date":"2024-04-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.992},{"date":"2024-04-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.992},{"date":"2024-04-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.777},{"date":"2024-04-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.587},{"date":"2024-04-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.149},{"date":"2024-04-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.653},{"date":"2024-04-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.498},{"date":"2024-04-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.987},{"date":"2024-04-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.195},{"date":"2024-04-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.926},{"date":"2024-04-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.583},{"date":"2024-04-29","fuel":"gasoline","grade":"premium","formulation":"all","price":4.566},{"date":"2024-04-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.314},{"date":"2024-04-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.86},{"date":"2024-04-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.947},{"date":"2024-04-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.947},{"date":"2024-05-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.766},{"date":"2024-05-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.577},{"date":"2024-05-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.137},{"date":"2024-05-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.643},{"date":"2024-05-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.487},{"date":"2024-05-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.976},{"date":"2024-05-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.194},{"date":"2024-05-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.927},{"date":"2024-05-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.579},{"date":"2024-05-06","fuel":"gasoline","grade":"premium","formulation":"all","price":4.55},{"date":"2024-05-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.303},{"date":"2024-05-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.838},{"date":"2024-05-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.894},{"date":"2024-05-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.894},{"date":"2024-05-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.731},{"date":"2024-05-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.551},{"date":"2024-05-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.084},{"date":"2024-05-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.608},{"date":"2024-05-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.463},{"date":"2024-05-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.922},{"date":"2024-05-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.15},{"date":"2024-05-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.893},{"date":"2024-05-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.523},{"date":"2024-05-13","fuel":"gasoline","grade":"premium","formulation":"all","price":4.513},{"date":"2024-05-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.272},{"date":"2024-05-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.795},{"date":"2024-05-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.848},{"date":"2024-05-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.848},{"date":"2024-05-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.706},{"date":"2024-05-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.54},{"date":"2024-05-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.033},{"date":"2024-05-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.584},{"date":"2024-05-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.451},{"date":"2024-05-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.871},{"date":"2024-05-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.126},{"date":"2024-05-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.885},{"date":"2024-05-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.474},{"date":"2024-05-20","fuel":"gasoline","grade":"premium","formulation":"all","price":4.485},{"date":"2024-05-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.264},{"date":"2024-05-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.742},{"date":"2024-05-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.789},{"date":"2024-05-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.789},{"date":"2024-05-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.698},{"date":"2024-05-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.522},{"date":"2024-05-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":4.052},{"date":"2024-05-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.577},{"date":"2024-05-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.434},{"date":"2024-05-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.894},{"date":"2024-05-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.112},{"date":"2024-05-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.864},{"date":"2024-05-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.471},{"date":"2024-05-27","fuel":"gasoline","grade":"premium","formulation":"all","price":4.479},{"date":"2024-05-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.25},{"date":"2024-05-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.758},{"date":"2024-05-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.758},{"date":"2024-05-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.758},{"date":"2024-06-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.638},{"date":"2024-06-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.466},{"date":"2024-06-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.975},{"date":"2024-06-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.516},{"date":"2024-06-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.376},{"date":"2024-06-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.816},{"date":"2024-06-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.059},{"date":"2024-06-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.82},{"date":"2024-06-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.405},{"date":"2024-06-03","fuel":"gasoline","grade":"premium","formulation":"all","price":4.417},{"date":"2024-06-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.198},{"date":"2024-06-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.672},{"date":"2024-06-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.726},{"date":"2024-06-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.726},{"date":"2024-06-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.551},{"date":"2024-06-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.387},{"date":"2024-06-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.874},{"date":"2024-06-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.429},{"date":"2024-06-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.297},{"date":"2024-06-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.713},{"date":"2024-06-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.97},{"date":"2024-06-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.738},{"date":"2024-06-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.306},{"date":"2024-06-10","fuel":"gasoline","grade":"premium","formulation":"all","price":4.331},{"date":"2024-06-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.118},{"date":"2024-06-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.581},{"date":"2024-06-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.658},{"date":"2024-06-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.658},{"date":"2024-06-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.556},{"date":"2024-06-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.399},{"date":"2024-06-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.863},{"date":"2024-06-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.435},{"date":"2024-06-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.31},{"date":"2024-06-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.704},{"date":"2024-06-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.976},{"date":"2024-06-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.752},{"date":"2024-06-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.298},{"date":"2024-06-17","fuel":"gasoline","grade":"premium","formulation":"all","price":4.326},{"date":"2024-06-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.129},{"date":"2024-06-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.556},{"date":"2024-06-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.735},{"date":"2024-06-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.735},{"date":"2024-06-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.557},{"date":"2024-06-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.41},{"date":"2024-06-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.846},{"date":"2024-06-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.438},{"date":"2024-06-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.322},{"date":"2024-06-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.688},{"date":"2024-06-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.965},{"date":"2024-06-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.753},{"date":"2024-06-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.273},{"date":"2024-06-24","fuel":"gasoline","grade":"premium","formulation":"all","price":4.319},{"date":"2024-06-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.131},{"date":"2024-06-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.539},{"date":"2024-06-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.769},{"date":"2024-06-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.769},{"date":"2024-07-01","fuel":"gasoline","grade":"all","formulation":"all","price":3.595},{"date":"2024-07-01","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.458},{"date":"2024-07-01","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.865},{"date":"2024-07-01","fuel":"gasoline","grade":"regular","formulation":"all","price":3.479},{"date":"2024-07-01","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.371},{"date":"2024-07-01","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.71},{"date":"2024-07-01","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.99},{"date":"2024-07-01","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.79},{"date":"2024-07-01","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.28},{"date":"2024-07-01","fuel":"gasoline","grade":"premium","formulation":"all","price":4.344},{"date":"2024-07-01","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.169},{"date":"2024-07-01","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.547},{"date":"2024-07-01","fuel":"diesel","grade":"all","formulation":"NA","price":3.813},{"date":"2024-07-01","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.813},{"date":"2024-07-08","fuel":"gasoline","grade":"all","formulation":"all","price":3.608},{"date":"2024-07-08","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.472},{"date":"2024-07-08","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.876},{"date":"2024-07-08","fuel":"gasoline","grade":"regular","formulation":"all","price":3.489},{"date":"2024-07-08","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.384},{"date":"2024-07-08","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.717},{"date":"2024-07-08","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.013},{"date":"2024-07-08","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.818},{"date":"2024-07-08","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.295},{"date":"2024-07-08","fuel":"gasoline","grade":"premium","formulation":"all","price":4.367},{"date":"2024-07-08","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.191},{"date":"2024-07-08","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.573},{"date":"2024-07-08","fuel":"diesel","grade":"all","formulation":"NA","price":3.865},{"date":"2024-07-08","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.865},{"date":"2024-07-15","fuel":"gasoline","grade":"all","formulation":"all","price":3.614},{"date":"2024-07-15","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.476},{"date":"2024-07-15","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.887},{"date":"2024-07-15","fuel":"gasoline","grade":"regular","formulation":"all","price":3.496},{"date":"2024-07-15","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.388},{"date":"2024-07-15","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.731},{"date":"2024-07-15","fuel":"gasoline","grade":"midgrade","formulation":"all","price":4.014},{"date":"2024-07-15","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.822},{"date":"2024-07-15","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.294},{"date":"2024-07-15","fuel":"gasoline","grade":"premium","formulation":"all","price":4.371},{"date":"2024-07-15","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.197},{"date":"2024-07-15","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.576},{"date":"2024-07-15","fuel":"diesel","grade":"all","formulation":"NA","price":3.826},{"date":"2024-07-15","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.826},{"date":"2024-07-22","fuel":"gasoline","grade":"all","formulation":"all","price":3.587},{"date":"2024-07-22","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.451},{"date":"2024-07-22","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.855},{"date":"2024-07-22","fuel":"gasoline","grade":"regular","formulation":"all","price":3.471},{"date":"2024-07-22","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.364},{"date":"2024-07-22","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.703},{"date":"2024-07-22","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.974},{"date":"2024-07-22","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.781},{"date":"2024-07-22","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.254},{"date":"2024-07-22","fuel":"gasoline","grade":"premium","formulation":"all","price":4.331},{"date":"2024-07-22","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.162},{"date":"2024-07-22","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.528},{"date":"2024-07-22","fuel":"diesel","grade":"all","formulation":"NA","price":3.779},{"date":"2024-07-22","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.779},{"date":"2024-07-29","fuel":"gasoline","grade":"all","formulation":"all","price":3.598},{"date":"2024-07-29","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.467},{"date":"2024-07-29","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.856},{"date":"2024-07-29","fuel":"gasoline","grade":"regular","formulation":"all","price":3.484},{"date":"2024-07-29","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.381},{"date":"2024-07-29","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.706},{"date":"2024-07-29","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.982},{"date":"2024-07-29","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.797},{"date":"2024-07-29","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.251},{"date":"2024-07-29","fuel":"gasoline","grade":"premium","formulation":"all","price":4.333},{"date":"2024-07-29","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.177},{"date":"2024-07-29","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.516},{"date":"2024-07-29","fuel":"diesel","grade":"all","formulation":"NA","price":3.768},{"date":"2024-07-29","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.768},{"date":"2024-08-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.563},{"date":"2024-08-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.444},{"date":"2024-08-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.797},{"date":"2024-08-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.448},{"date":"2024-08-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.357},{"date":"2024-08-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.644},{"date":"2024-08-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.955},{"date":"2024-08-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.784},{"date":"2024-08-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.202},{"date":"2024-08-05","fuel":"gasoline","grade":"premium","formulation":"all","price":4.302},{"date":"2024-08-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.159},{"date":"2024-08-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.47},{"date":"2024-08-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.755},{"date":"2024-08-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.755},{"date":"2024-08-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.53},{"date":"2024-08-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.414},{"date":"2024-08-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.761},{"date":"2024-08-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.414},{"date":"2024-08-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.326},{"date":"2024-08-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.606},{"date":"2024-08-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.926},{"date":"2024-08-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.757},{"date":"2024-08-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.17},{"date":"2024-08-12","fuel":"gasoline","grade":"premium","formulation":"all","price":4.274},{"date":"2024-08-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.132},{"date":"2024-08-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.44},{"date":"2024-08-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.704},{"date":"2024-08-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.704},{"date":"2024-08-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.5},{"date":"2024-08-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.375},{"date":"2024-08-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.747},{"date":"2024-08-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.382},{"date":"2024-08-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.286},{"date":"2024-08-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.592},{"date":"2024-08-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.906},{"date":"2024-08-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.727},{"date":"2024-08-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.167},{"date":"2024-08-19","fuel":"gasoline","grade":"premium","formulation":"all","price":4.252},{"date":"2024-08-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.101},{"date":"2024-08-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.429},{"date":"2024-08-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.688},{"date":"2024-08-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.688},{"date":"2024-08-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.433},{"date":"2024-08-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.301},{"date":"2024-08-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.693},{"date":"2024-08-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.313},{"date":"2024-08-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.212},{"date":"2024-08-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.534},{"date":"2024-08-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.842},{"date":"2024-08-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.652},{"date":"2024-08-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.119},{"date":"2024-08-26","fuel":"gasoline","grade":"premium","formulation":"all","price":4.201},{"date":"2024-08-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.036},{"date":"2024-08-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.394},{"date":"2024-08-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.651},{"date":"2024-08-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.651},{"date":"2024-09-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.411},{"date":"2024-09-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.281},{"date":"2024-09-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.674},{"date":"2024-09-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.289},{"date":"2024-09-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.191},{"date":"2024-09-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.509},{"date":"2024-09-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.835},{"date":"2024-09-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.642},{"date":"2024-09-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.116},{"date":"2024-09-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.196},{"date":"2024-09-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":4.023},{"date":"2024-09-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.407},{"date":"2024-09-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.625},{"date":"2024-09-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.625},{"date":"2024-09-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.36},{"date":"2024-09-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.211},{"date":"2024-09-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.654},{"date":"2024-09-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.236},{"date":"2024-09-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.12},{"date":"2024-09-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.488},{"date":"2024-09-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.791},{"date":"2024-09-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.576},{"date":"2024-09-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.103},{"date":"2024-09-09","fuel":"gasoline","grade":"premium","formulation":"all","price":4.153},{"date":"2024-09-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.957},{"date":"2024-09-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.383},{"date":"2024-09-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.555},{"date":"2024-09-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.555},{"date":"2024-09-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.307},{"date":"2024-09-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.15},{"date":"2024-09-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.618},{"date":"2024-09-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.18},{"date":"2024-09-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.057},{"date":"2024-09-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.447},{"date":"2024-09-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.755},{"date":"2024-09-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.527},{"date":"2024-09-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.087},{"date":"2024-09-16","fuel":"gasoline","grade":"premium","formulation":"all","price":4.119},{"date":"2024-09-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.911},{"date":"2024-09-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.363},{"date":"2024-09-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.526},{"date":"2024-09-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.526},{"date":"2024-09-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.311},{"date":"2024-09-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.166},{"date":"2024-09-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.597},{"date":"2024-09-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.185},{"date":"2024-09-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.074},{"date":"2024-09-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.426},{"date":"2024-09-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.751},{"date":"2024-09-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.532},{"date":"2024-09-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.068},{"date":"2024-09-23","fuel":"gasoline","grade":"premium","formulation":"all","price":4.108},{"date":"2024-09-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.913},{"date":"2024-09-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.338},{"date":"2024-09-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.539},{"date":"2024-09-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.539},{"date":"2024-09-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.303},{"date":"2024-09-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.179},{"date":"2024-09-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.548},{"date":"2024-09-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.179},{"date":"2024-09-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.087},{"date":"2024-09-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.378},{"date":"2024-09-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.738},{"date":"2024-09-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.549},{"date":"2024-09-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.015},{"date":"2024-09-30","fuel":"gasoline","grade":"premium","formulation":"all","price":4.094},{"date":"2024-09-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.926},{"date":"2024-09-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.292},{"date":"2024-09-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.544},{"date":"2024-09-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.544},{"date":"2024-10-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.26},{"date":"2024-10-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.117},{"date":"2024-10-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.545},{"date":"2024-10-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.136},{"date":"2024-10-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.026},{"date":"2024-10-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.377},{"date":"2024-10-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.692},{"date":"2024-10-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.474},{"date":"2024-10-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.014},{"date":"2024-10-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.049},{"date":"2024-10-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.857},{"date":"2024-10-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.276},{"date":"2024-10-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.584},{"date":"2024-10-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.584},{"date":"2024-10-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.294},{"date":"2024-10-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.158},{"date":"2024-10-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.562},{"date":"2024-10-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.171},{"date":"2024-10-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.069},{"date":"2024-10-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.394},{"date":"2024-10-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.719},{"date":"2024-10-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.513},{"date":"2024-10-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.021},{"date":"2024-10-14","fuel":"gasoline","grade":"premium","formulation":"all","price":4.077},{"date":"2024-10-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.89},{"date":"2024-10-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.297},{"date":"2024-10-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.631},{"date":"2024-10-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.631},{"date":"2024-10-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.268},{"date":"2024-10-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.135},{"date":"2024-10-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.53},{"date":"2024-10-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.144},{"date":"2024-10-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.044},{"date":"2024-10-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.361},{"date":"2024-10-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.7},{"date":"2024-10-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.501},{"date":"2024-10-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.993},{"date":"2024-10-21","fuel":"gasoline","grade":"premium","formulation":"all","price":4.058},{"date":"2024-10-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.881},{"date":"2024-10-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.267},{"date":"2024-10-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.553},{"date":"2024-10-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.553},{"date":"2024-10-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.22},{"date":"2024-10-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.097},{"date":"2024-10-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.466},{"date":"2024-10-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.097},{"date":"2024-10-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.005},{"date":"2024-10-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.296},{"date":"2024-10-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.654},{"date":"2024-10-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.465},{"date":"2024-10-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.933},{"date":"2024-10-28","fuel":"gasoline","grade":"premium","formulation":"all","price":4.012},{"date":"2024-10-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.843},{"date":"2024-10-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.211},{"date":"2024-10-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.573},{"date":"2024-10-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.573},{"date":"2024-11-04","fuel":"gasoline","grade":"all","formulation":"all","price":3.191},{"date":"2024-11-04","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.065},{"date":"2024-11-04","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.441},{"date":"2024-11-04","fuel":"gasoline","grade":"regular","formulation":"all","price":3.069},{"date":"2024-11-04","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.975},{"date":"2024-11-04","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.272},{"date":"2024-11-04","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.616},{"date":"2024-11-04","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.423},{"date":"2024-11-04","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.902},{"date":"2024-11-04","fuel":"gasoline","grade":"premium","formulation":"all","price":3.977},{"date":"2024-11-04","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.805},{"date":"2024-11-04","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.18},{"date":"2024-11-04","fuel":"diesel","grade":"all","formulation":"NA","price":3.536},{"date":"2024-11-04","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.536},{"date":"2024-11-11","fuel":"gasoline","grade":"all","formulation":"all","price":3.176},{"date":"2024-11-11","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.054},{"date":"2024-11-11","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.416},{"date":"2024-11-11","fuel":"gasoline","grade":"regular","formulation":"all","price":3.052},{"date":"2024-11-11","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.962},{"date":"2024-11-11","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.245},{"date":"2024-11-11","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.613},{"date":"2024-11-11","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.421},{"date":"2024-11-11","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.89},{"date":"2024-11-11","fuel":"gasoline","grade":"premium","formulation":"all","price":3.964},{"date":"2024-11-11","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.799},{"date":"2024-11-11","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.155},{"date":"2024-11-11","fuel":"diesel","grade":"all","formulation":"NA","price":3.521},{"date":"2024-11-11","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.521},{"date":"2024-11-18","fuel":"gasoline","grade":"all","formulation":"all","price":3.168},{"date":"2024-11-18","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.042},{"date":"2024-11-18","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.414},{"date":"2024-11-18","fuel":"gasoline","grade":"regular","formulation":"all","price":3.046},{"date":"2024-11-18","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.95},{"date":"2024-11-18","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.249},{"date":"2024-11-18","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.593},{"date":"2024-11-18","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.402},{"date":"2024-11-18","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.867},{"date":"2024-11-18","fuel":"gasoline","grade":"premium","formulation":"all","price":3.946},{"date":"2024-11-18","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.788},{"date":"2024-11-18","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.128},{"date":"2024-11-18","fuel":"diesel","grade":"all","formulation":"NA","price":3.491},{"date":"2024-11-18","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.491},{"date":"2024-11-25","fuel":"gasoline","grade":"all","formulation":"all","price":3.166},{"date":"2024-11-25","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.037},{"date":"2024-11-25","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.421},{"date":"2024-11-25","fuel":"gasoline","grade":"regular","formulation":"all","price":3.044},{"date":"2024-11-25","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.946},{"date":"2024-11-25","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.254},{"date":"2024-11-25","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.586},{"date":"2024-11-25","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.39},{"date":"2024-11-25","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.871},{"date":"2024-11-25","fuel":"gasoline","grade":"premium","formulation":"all","price":3.95},{"date":"2024-11-25","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.779},{"date":"2024-11-25","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.149},{"date":"2024-11-25","fuel":"diesel","grade":"all","formulation":"NA","price":3.539},{"date":"2024-11-25","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.539},{"date":"2024-12-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.156},{"date":"2024-12-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.027},{"date":"2024-12-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.408},{"date":"2024-12-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.034},{"date":"2024-12-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.936},{"date":"2024-12-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.242},{"date":"2024-12-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.574},{"date":"2024-12-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.375},{"date":"2024-12-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.861},{"date":"2024-12-02","fuel":"gasoline","grade":"premium","formulation":"all","price":3.937},{"date":"2024-12-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.767},{"date":"2024-12-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.134},{"date":"2024-12-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.54},{"date":"2024-12-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.54},{"date":"2024-12-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.131},{"date":"2024-12-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.004},{"date":"2024-12-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.379},{"date":"2024-12-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.008},{"date":"2024-12-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.912},{"date":"2024-12-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.213},{"date":"2024-12-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.558},{"date":"2024-12-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.364},{"date":"2024-12-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.835},{"date":"2024-12-09","fuel":"gasoline","grade":"premium","formulation":"all","price":3.914},{"date":"2024-12-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.751},{"date":"2024-12-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.103},{"date":"2024-12-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.458},{"date":"2024-12-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.458},{"date":"2024-12-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.137},{"date":"2024-12-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.023},{"date":"2024-12-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.362},{"date":"2024-12-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.016},{"date":"2024-12-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.933},{"date":"2024-12-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.196},{"date":"2024-12-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.556},{"date":"2024-12-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.379},{"date":"2024-12-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.813},{"date":"2024-12-16","fuel":"gasoline","grade":"premium","formulation":"all","price":3.911},{"date":"2024-12-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.76},{"date":"2024-12-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.086},{"date":"2024-12-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.494},{"date":"2024-12-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.494},{"date":"2024-12-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.145},{"date":"2024-12-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.025},{"date":"2024-12-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.382},{"date":"2024-12-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.024},{"date":"2024-12-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.935},{"date":"2024-12-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.216},{"date":"2024-12-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.564},{"date":"2024-12-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.374},{"date":"2024-12-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.838},{"date":"2024-12-23","fuel":"gasoline","grade":"premium","formulation":"all","price":3.915},{"date":"2024-12-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.753},{"date":"2024-12-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.103},{"date":"2024-12-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.476},{"date":"2024-12-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.476},{"date":"2024-12-30","fuel":"gasoline","grade":"all","formulation":"all","price":3.128},{"date":"2024-12-30","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.005},{"date":"2024-12-30","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.37},{"date":"2024-12-30","fuel":"gasoline","grade":"regular","formulation":"all","price":3.006},{"date":"2024-12-30","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.914},{"date":"2024-12-30","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.203},{"date":"2024-12-30","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.554},{"date":"2024-12-30","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.365},{"date":"2024-12-30","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.827},{"date":"2024-12-30","fuel":"gasoline","grade":"premium","formulation":"all","price":3.907},{"date":"2024-12-30","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.745},{"date":"2024-12-30","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.096},{"date":"2024-12-30","fuel":"diesel","grade":"all","formulation":"NA","price":3.503},{"date":"2024-12-30","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.503},{"date":"2025-01-06","fuel":"gasoline","grade":"all","formulation":"all","price":3.168},{"date":"2025-01-06","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.047},{"date":"2025-01-06","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.406},{"date":"2025-01-06","fuel":"gasoline","grade":"regular","formulation":"all","price":3.047},{"date":"2025-01-06","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.958},{"date":"2025-01-06","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.239},{"date":"2025-01-06","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.587},{"date":"2025-01-06","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.395},{"date":"2025-01-06","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.865},{"date":"2025-01-06","fuel":"gasoline","grade":"premium","formulation":"all","price":3.935},{"date":"2025-01-06","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.77},{"date":"2025-01-06","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.128},{"date":"2025-01-06","fuel":"diesel","grade":"all","formulation":"NA","price":3.561},{"date":"2025-01-06","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.561},{"date":"2025-01-13","fuel":"gasoline","grade":"all","formulation":"all","price":3.164},{"date":"2025-01-13","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.04},{"date":"2025-01-13","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.408},{"date":"2025-01-13","fuel":"gasoline","grade":"regular","formulation":"all","price":3.043},{"date":"2025-01-13","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.95},{"date":"2025-01-13","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.242},{"date":"2025-01-13","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.585},{"date":"2025-01-13","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.394},{"date":"2025-01-13","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.862},{"date":"2025-01-13","fuel":"gasoline","grade":"premium","formulation":"all","price":3.939},{"date":"2025-01-13","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.77},{"date":"2025-01-13","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.136},{"date":"2025-01-13","fuel":"diesel","grade":"all","formulation":"NA","price":3.602},{"date":"2025-01-13","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.602},{"date":"2025-01-20","fuel":"gasoline","grade":"all","formulation":"all","price":3.229},{"date":"2025-01-20","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.099},{"date":"2025-01-20","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.485},{"date":"2025-01-20","fuel":"gasoline","grade":"regular","formulation":"all","price":3.109},{"date":"2025-01-20","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.011},{"date":"2025-01-20","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.32},{"date":"2025-01-20","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.642},{"date":"2025-01-20","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.444},{"date":"2025-01-20","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.928},{"date":"2025-01-20","fuel":"gasoline","grade":"premium","formulation":"all","price":3.998},{"date":"2025-01-20","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.821},{"date":"2025-01-20","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.206},{"date":"2025-01-20","fuel":"diesel","grade":"all","formulation":"NA","price":3.715},{"date":"2025-01-20","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.715},{"date":"2025-01-27","fuel":"gasoline","grade":"all","formulation":"all","price":3.224},{"date":"2025-01-27","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.096},{"date":"2025-01-27","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.478},{"date":"2025-01-27","fuel":"gasoline","grade":"regular","formulation":"all","price":3.103},{"date":"2025-01-27","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.006},{"date":"2025-01-27","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.313},{"date":"2025-01-27","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.644},{"date":"2025-01-27","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.45},{"date":"2025-01-27","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.923},{"date":"2025-01-27","fuel":"gasoline","grade":"premium","formulation":"all","price":3.999},{"date":"2025-01-27","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.825},{"date":"2025-01-27","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.203},{"date":"2025-01-27","fuel":"diesel","grade":"all","formulation":"NA","price":3.659},{"date":"2025-01-27","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.659},{"date":"2025-02-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.205},{"date":"2025-02-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.062},{"date":"2025-02-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.486},{"date":"2025-02-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.082},{"date":"2025-02-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.972},{"date":"2025-02-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.32},{"date":"2025-02-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.633},{"date":"2025-02-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.42},{"date":"2025-02-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.941},{"date":"2025-02-03","fuel":"gasoline","grade":"premium","formulation":"all","price":3.99},{"date":"2025-02-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.799},{"date":"2025-02-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.212},{"date":"2025-02-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.66},{"date":"2025-02-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.66},{"date":"2025-02-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.253},{"date":"2025-02-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.113},{"date":"2025-02-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.529},{"date":"2025-02-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.128},{"date":"2025-02-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.022},{"date":"2025-02-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.357},{"date":"2025-02-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.685},{"date":"2025-02-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.471},{"date":"2025-02-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.995},{"date":"2025-02-10","fuel":"gasoline","grade":"premium","formulation":"all","price":4.05},{"date":"2025-02-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.853},{"date":"2025-02-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.278},{"date":"2025-02-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.665},{"date":"2025-02-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.665},{"date":"2025-02-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.276},{"date":"2025-02-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.113},{"date":"2025-02-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.597},{"date":"2025-02-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.148},{"date":"2025-02-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.021},{"date":"2025-02-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.422},{"date":"2025-02-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.723},{"date":"2025-02-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.477},{"date":"2025-02-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.078},{"date":"2025-02-17","fuel":"gasoline","grade":"premium","formulation":"all","price":4.088},{"date":"2025-02-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.855},{"date":"2025-02-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.359},{"date":"2025-02-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.677},{"date":"2025-02-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.677},{"date":"2025-02-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.255},{"date":"2025-02-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.09},{"date":"2025-02-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.577},{"date":"2025-02-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.125},{"date":"2025-02-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.997},{"date":"2025-02-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.399},{"date":"2025-02-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.706},{"date":"2025-02-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.457},{"date":"2025-02-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.064},{"date":"2025-02-24","fuel":"gasoline","grade":"premium","formulation":"all","price":4.075},{"date":"2025-02-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.839},{"date":"2025-02-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.349},{"date":"2025-02-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.697},{"date":"2025-02-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.697},{"date":"2025-03-03","fuel":"gasoline","grade":"all","formulation":"all","price":3.206},{"date":"2025-03-03","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.043},{"date":"2025-03-03","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.524},{"date":"2025-03-03","fuel":"gasoline","grade":"regular","formulation":"all","price":3.078},{"date":"2025-03-03","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.951},{"date":"2025-03-03","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.349},{"date":"2025-03-03","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.654},{"date":"2025-03-03","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.406},{"date":"2025-03-03","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.012},{"date":"2025-03-03","fuel":"gasoline","grade":"premium","formulation":"all","price":4.022},{"date":"2025-03-03","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.795},{"date":"2025-03-03","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.286},{"date":"2025-03-03","fuel":"diesel","grade":"all","formulation":"NA","price":3.635},{"date":"2025-03-03","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.635},{"date":"2025-03-10","fuel":"gasoline","grade":"all","formulation":"all","price":3.197},{"date":"2025-03-10","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.039},{"date":"2025-03-10","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.505},{"date":"2025-03-10","fuel":"gasoline","grade":"regular","formulation":"all","price":3.069},{"date":"2025-03-10","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.947},{"date":"2025-03-10","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.332},{"date":"2025-03-10","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.64},{"date":"2025-03-10","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.4},{"date":"2025-03-10","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.986},{"date":"2025-03-10","fuel":"gasoline","grade":"premium","formulation":"all","price":4.005},{"date":"2025-03-10","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.791},{"date":"2025-03-10","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.254},{"date":"2025-03-10","fuel":"diesel","grade":"all","formulation":"NA","price":3.582},{"date":"2025-03-10","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.582},{"date":"2025-03-17","fuel":"gasoline","grade":"all","formulation":"all","price":3.184},{"date":"2025-03-17","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.035},{"date":"2025-03-17","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.475},{"date":"2025-03-17","fuel":"gasoline","grade":"regular","formulation":"all","price":3.058},{"date":"2025-03-17","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.943},{"date":"2025-03-17","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.303},{"date":"2025-03-17","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.627},{"date":"2025-03-17","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.401},{"date":"2025-03-17","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.95},{"date":"2025-03-17","fuel":"gasoline","grade":"premium","formulation":"all","price":3.989},{"date":"2025-03-17","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.788},{"date":"2025-03-17","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.221},{"date":"2025-03-17","fuel":"diesel","grade":"all","formulation":"NA","price":3.549},{"date":"2025-03-17","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.549},{"date":"2025-03-24","fuel":"gasoline","grade":"all","formulation":"all","price":3.24},{"date":"2025-03-24","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.09},{"date":"2025-03-24","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.531},{"date":"2025-03-24","fuel":"gasoline","grade":"regular","formulation":"all","price":3.115},{"date":"2025-03-24","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.999},{"date":"2025-03-24","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.362},{"date":"2025-03-24","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.674},{"date":"2025-03-24","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.45},{"date":"2025-03-24","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":3.995},{"date":"2025-03-24","fuel":"gasoline","grade":"premium","formulation":"all","price":4.032},{"date":"2025-03-24","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.83},{"date":"2025-03-24","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.265},{"date":"2025-03-24","fuel":"diesel","grade":"all","formulation":"NA","price":3.567},{"date":"2025-03-24","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.567},{"date":"2025-03-31","fuel":"gasoline","grade":"all","formulation":"all","price":3.288},{"date":"2025-03-31","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.131},{"date":"2025-03-31","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.594},{"date":"2025-03-31","fuel":"gasoline","grade":"regular","formulation":"all","price":3.162},{"date":"2025-03-31","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.04},{"date":"2025-03-31","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.422},{"date":"2025-03-31","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.73},{"date":"2025-03-31","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.492},{"date":"2025-03-31","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.07},{"date":"2025-03-31","fuel":"gasoline","grade":"premium","formulation":"all","price":4.093},{"date":"2025-03-31","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.876},{"date":"2025-03-31","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.344},{"date":"2025-03-31","fuel":"diesel","grade":"all","formulation":"NA","price":3.592},{"date":"2025-03-31","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.592},{"date":"2025-04-07","fuel":"gasoline","grade":"all","formulation":"all","price":3.37},{"date":"2025-04-07","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.209},{"date":"2025-04-07","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.683},{"date":"2025-04-07","fuel":"gasoline","grade":"regular","formulation":"all","price":3.243},{"date":"2025-04-07","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.118},{"date":"2025-04-07","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.511},{"date":"2025-04-07","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.815},{"date":"2025-04-07","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.573},{"date":"2025-04-07","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.158},{"date":"2025-04-07","fuel":"gasoline","grade":"premium","formulation":"all","price":4.174},{"date":"2025-04-07","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.952},{"date":"2025-04-07","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.43},{"date":"2025-04-07","fuel":"diesel","grade":"all","formulation":"NA","price":3.639},{"date":"2025-04-07","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.639},{"date":"2025-04-14","fuel":"gasoline","grade":"all","formulation":"all","price":3.295},{"date":"2025-04-14","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.135},{"date":"2025-04-14","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.607},{"date":"2025-04-14","fuel":"gasoline","grade":"regular","formulation":"all","price":3.168},{"date":"2025-04-14","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.043},{"date":"2025-04-14","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.435},{"date":"2025-04-14","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.743},{"date":"2025-04-14","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.503},{"date":"2025-04-14","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.085},{"date":"2025-04-14","fuel":"gasoline","grade":"premium","formulation":"all","price":4.103},{"date":"2025-04-14","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.888},{"date":"2025-04-14","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.351},{"date":"2025-04-14","fuel":"diesel","grade":"all","formulation":"NA","price":3.579},{"date":"2025-04-14","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.579},{"date":"2025-04-21","fuel":"gasoline","grade":"all","formulation":"all","price":3.268},{"date":"2025-04-21","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.112},{"date":"2025-04-21","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.572},{"date":"2025-04-21","fuel":"gasoline","grade":"regular","formulation":"all","price":3.141},{"date":"2025-04-21","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.02},{"date":"2025-04-21","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.4},{"date":"2025-04-21","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.718},{"date":"2025-04-21","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.482},{"date":"2025-04-21","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.056},{"date":"2025-04-21","fuel":"gasoline","grade":"premium","formulation":"all","price":4.074},{"date":"2025-04-21","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.862},{"date":"2025-04-21","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.318},{"date":"2025-04-21","fuel":"diesel","grade":"all","formulation":"NA","price":3.534},{"date":"2025-04-21","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.534},{"date":"2025-04-28","fuel":"gasoline","grade":"all","formulation":"all","price":3.261},{"date":"2025-04-28","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.107},{"date":"2025-04-28","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.561},{"date":"2025-04-28","fuel":"gasoline","grade":"regular","formulation":"all","price":3.133},{"date":"2025-04-28","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.013},{"date":"2025-04-28","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.388},{"date":"2025-04-28","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.713},{"date":"2025-04-28","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.485},{"date":"2025-04-28","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.039},{"date":"2025-04-28","fuel":"gasoline","grade":"premium","formulation":"all","price":4.071},{"date":"2025-04-28","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.864},{"date":"2025-04-28","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.31},{"date":"2025-04-28","fuel":"diesel","grade":"all","formulation":"NA","price":3.514},{"date":"2025-04-28","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.514},{"date":"2025-05-05","fuel":"gasoline","grade":"all","formulation":"all","price":3.273},{"date":"2025-05-05","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.123},{"date":"2025-05-05","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.564},{"date":"2025-05-05","fuel":"gasoline","grade":"regular","formulation":"all","price":3.147},{"date":"2025-05-05","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.031},{"date":"2025-05-05","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.393},{"date":"2025-05-05","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.715},{"date":"2025-05-05","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.488},{"date":"2025-05-05","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.041},{"date":"2025-05-05","fuel":"gasoline","grade":"premium","formulation":"all","price":4.072},{"date":"2025-05-05","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.869},{"date":"2025-05-05","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.306},{"date":"2025-05-05","fuel":"diesel","grade":"all","formulation":"NA","price":3.497},{"date":"2025-05-05","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.497},{"date":"2025-05-12","fuel":"gasoline","grade":"all","formulation":"all","price":3.249},{"date":"2025-05-12","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.08},{"date":"2025-05-12","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.578},{"date":"2025-05-12","fuel":"gasoline","grade":"regular","formulation":"all","price":3.12},{"date":"2025-05-12","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.986},{"date":"2025-05-12","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.404},{"date":"2025-05-12","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.703},{"date":"2025-05-12","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.449},{"date":"2025-05-12","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.066},{"date":"2025-05-12","fuel":"gasoline","grade":"premium","formulation":"all","price":4.068},{"date":"2025-05-12","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.84},{"date":"2025-05-12","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.331},{"date":"2025-05-12","fuel":"diesel","grade":"all","formulation":"NA","price":3.476},{"date":"2025-05-12","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.476},{"date":"2025-05-19","fuel":"gasoline","grade":"all","formulation":"all","price":3.302},{"date":"2025-05-19","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.135},{"date":"2025-05-19","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.628},{"date":"2025-05-19","fuel":"gasoline","grade":"regular","formulation":"all","price":3.173},{"date":"2025-05-19","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.041},{"date":"2025-05-19","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.455},{"date":"2025-05-19","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.756},{"date":"2025-05-19","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.507},{"date":"2025-05-19","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.113},{"date":"2025-05-19","fuel":"gasoline","grade":"premium","formulation":"all","price":4.116},{"date":"2025-05-19","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.892},{"date":"2025-05-19","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.375},{"date":"2025-05-19","fuel":"diesel","grade":"all","formulation":"NA","price":3.536},{"date":"2025-05-19","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.536},{"date":"2025-05-26","fuel":"gasoline","grade":"all","formulation":"all","price":3.288},{"date":"2025-05-26","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.124},{"date":"2025-05-26","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.608},{"date":"2025-05-26","fuel":"gasoline","grade":"regular","formulation":"all","price":3.16},{"date":"2025-05-26","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.03},{"date":"2025-05-26","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.436},{"date":"2025-05-26","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.74},{"date":"2025-05-26","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.498},{"date":"2025-05-26","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.084},{"date":"2025-05-26","fuel":"gasoline","grade":"premium","formulation":"all","price":4.102},{"date":"2025-05-26","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.884},{"date":"2025-05-26","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.353},{"date":"2025-05-26","fuel":"diesel","grade":"all","formulation":"NA","price":3.487},{"date":"2025-05-26","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.487},{"date":"2025-06-02","fuel":"gasoline","grade":"all","formulation":"all","price":3.256},{"date":"2025-06-02","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.103},{"date":"2025-06-02","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.552},{"date":"2025-06-02","fuel":"gasoline","grade":"regular","formulation":"all","price":3.127},{"date":"2025-06-02","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.008},{"date":"2025-06-02","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.38},{"date":"2025-06-02","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.712},{"date":"2025-06-02","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.49},{"date":"2025-06-02","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.029},{"date":"2025-06-02","fuel":"gasoline","grade":"premium","formulation":"all","price":4.069},{"date":"2025-06-02","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.871},{"date":"2025-06-02","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.299},{"date":"2025-06-02","fuel":"diesel","grade":"all","formulation":"NA","price":3.451},{"date":"2025-06-02","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.451},{"date":"2025-06-09","fuel":"gasoline","grade":"all","formulation":"all","price":3.235},{"date":"2025-06-09","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.084},{"date":"2025-06-09","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.529},{"date":"2025-06-09","fuel":"gasoline","grade":"regular","formulation":"all","price":3.108},{"date":"2025-06-09","fuel":"gasoline","grade":"regular","formulation":"conventional","price":2.99},{"date":"2025-06-09","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.36},{"date":"2025-06-09","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.687},{"date":"2025-06-09","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.465},{"date":"2025-06-09","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.003},{"date":"2025-06-09","fuel":"gasoline","grade":"premium","formulation":"all","price":4.037},{"date":"2025-06-09","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.843},{"date":"2025-06-09","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.261},{"date":"2025-06-09","fuel":"diesel","grade":"all","formulation":"NA","price":3.471},{"date":"2025-06-09","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.471},{"date":"2025-06-16","fuel":"gasoline","grade":"all","formulation":"all","price":3.265},{"date":"2025-06-16","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.117},{"date":"2025-06-16","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.552},{"date":"2025-06-16","fuel":"gasoline","grade":"regular","formulation":"all","price":3.139},{"date":"2025-06-16","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.023},{"date":"2025-06-16","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.384},{"date":"2025-06-16","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.711},{"date":"2025-06-16","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.496},{"date":"2025-06-16","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.016},{"date":"2025-06-16","fuel":"gasoline","grade":"premium","formulation":"all","price":4.062},{"date":"2025-06-16","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.877},{"date":"2025-06-16","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.276},{"date":"2025-06-16","fuel":"diesel","grade":"all","formulation":"NA","price":3.571},{"date":"2025-06-16","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.571},{"date":"2025-06-23","fuel":"gasoline","grade":"all","formulation":"all","price":3.338},{"date":"2025-06-23","fuel":"gasoline","grade":"all","formulation":"conventional","price":3.196},{"date":"2025-06-23","fuel":"gasoline","grade":"all","formulation":"reformulated","price":3.614},{"date":"2025-06-23","fuel":"gasoline","grade":"regular","formulation":"all","price":3.213},{"date":"2025-06-23","fuel":"gasoline","grade":"regular","formulation":"conventional","price":3.102},{"date":"2025-06-23","fuel":"gasoline","grade":"regular","formulation":"reformulated","price":3.449},{"date":"2025-06-23","fuel":"gasoline","grade":"midgrade","formulation":"all","price":3.775},{"date":"2025-06-23","fuel":"gasoline","grade":"midgrade","formulation":"conventional","price":3.568},{"date":"2025-06-23","fuel":"gasoline","grade":"midgrade","formulation":"reformulated","price":4.069},{"date":"2025-06-23","fuel":"gasoline","grade":"premium","formulation":"all","price":4.128},{"date":"2025-06-23","fuel":"gasoline","grade":"premium","formulation":"conventional","price":3.95},{"date":"2025-06-23","fuel":"gasoline","grade":"premium","formulation":"reformulated","price":4.333},{"date":"2025-06-23","fuel":"diesel","grade":"all","formulation":"NA","price":3.775},{"date":"2025-06-23","fuel":"diesel","grade":"ultra_low_sulfur","formulation":"NA","price":3.775}],"anchored":true,"createdBy":"user","attachedMetadata":""},{"id":"table-904593","displayId":"fuel-prices","names":["date","fuel","avg_price"],"rows":[{"date":"1990-08-20","fuel":"gasoline","avg_price":1.191},{"date":"1990-08-27","fuel":"gasoline","avg_price":1.245},{"date":"1990-09-03","fuel":"gasoline","avg_price":1.242},{"date":"1990-09-10","fuel":"gasoline","avg_price":1.252},{"date":"1990-09-17","fuel":"gasoline","avg_price":1.266},{"date":"1990-09-24","fuel":"gasoline","avg_price":1.272},{"date":"1990-10-01","fuel":"gasoline","avg_price":1.321},{"date":"1990-10-08","fuel":"gasoline","avg_price":1.333},{"date":"1990-10-15","fuel":"gasoline","avg_price":1.339},{"date":"1990-10-22","fuel":"gasoline","avg_price":1.345},{"date":"1990-10-29","fuel":"gasoline","avg_price":1.339},{"date":"1990-11-05","fuel":"gasoline","avg_price":1.334},{"date":"1990-11-12","fuel":"gasoline","avg_price":1.328},{"date":"1990-11-19","fuel":"gasoline","avg_price":1.323},{"date":"1990-11-26","fuel":"gasoline","avg_price":1.311},{"date":"1990-12-03","fuel":"gasoline","avg_price":1.341},{"date":"1991-01-21","fuel":"gasoline","avg_price":1.192},{"date":"1991-01-28","fuel":"gasoline","avg_price":1.168},{"date":"1991-02-04","fuel":"gasoline","avg_price":1.139},{"date":"1991-02-11","fuel":"gasoline","avg_price":1.106},{"date":"1991-02-18","fuel":"gasoline","avg_price":1.078},{"date":"1991-02-25","fuel":"gasoline","avg_price":1.054},{"date":"1991-03-04","fuel":"gasoline","avg_price":1.025},{"date":"1991-03-11","fuel":"gasoline","avg_price":1.045},{"date":"1991-03-18","fuel":"gasoline","avg_price":1.043},{"date":"1991-03-25","fuel":"gasoline","avg_price":1.047},{"date":"1991-04-01","fuel":"gasoline","avg_price":1.052},{"date":"1991-04-08","fuel":"gasoline","avg_price":1.066},{"date":"1991-04-15","fuel":"gasoline","avg_price":1.069},{"date":"1991-04-22","fuel":"gasoline","avg_price":1.09},{"date":"1991-04-29","fuel":"gasoline","avg_price":1.104},{"date":"1991-05-06","fuel":"gasoline","avg_price":1.113},{"date":"1991-05-13","fuel":"gasoline","avg_price":1.121},{"date":"1991-05-20","fuel":"gasoline","avg_price":1.129},{"date":"1991-05-27","fuel":"gasoline","avg_price":1.14},{"date":"1991-06-03","fuel":"gasoline","avg_price":1.138},{"date":"1991-06-10","fuel":"gasoline","avg_price":1.135},{"date":"1991-06-17","fuel":"gasoline","avg_price":1.126},{"date":"1991-06-24","fuel":"gasoline","avg_price":1.114},{"date":"1991-07-01","fuel":"gasoline","avg_price":1.104},{"date":"1991-07-08","fuel":"gasoline","avg_price":1.098},{"date":"1991-07-15","fuel":"gasoline","avg_price":1.094},{"date":"1991-07-22","fuel":"gasoline","avg_price":1.091},{"date":"1991-07-29","fuel":"gasoline","avg_price":1.091},{"date":"1991-08-05","fuel":"gasoline","avg_price":1.099},{"date":"1991-08-12","fuel":"gasoline","avg_price":1.112},{"date":"1991-08-19","fuel":"gasoline","avg_price":1.124},{"date":"1991-08-26","fuel":"gasoline","avg_price":1.124},{"date":"1991-09-02","fuel":"gasoline","avg_price":1.127},{"date":"1991-09-09","fuel":"gasoline","avg_price":1.12},{"date":"1991-09-16","fuel":"gasoline","avg_price":1.11},{"date":"1991-09-23","fuel":"gasoline","avg_price":1.097},{"date":"1991-09-30","fuel":"gasoline","avg_price":1.092},{"date":"1991-10-07","fuel":"gasoline","avg_price":1.089},{"date":"1991-10-14","fuel":"gasoline","avg_price":1.084},{"date":"1991-10-21","fuel":"gasoline","avg_price":1.088},{"date":"1991-10-28","fuel":"gasoline","avg_price":1.091},{"date":"1991-11-04","fuel":"gasoline","avg_price":1.091},{"date":"1991-11-11","fuel":"gasoline","avg_price":1.102},{"date":"1991-11-18","fuel":"gasoline","avg_price":1.104},{"date":"1991-11-25","fuel":"gasoline","avg_price":1.099},{"date":"1991-12-02","fuel":"gasoline","avg_price":1.099},{"date":"1991-12-09","fuel":"gasoline","avg_price":1.091},{"date":"1991-12-16","fuel":"gasoline","avg_price":1.075},{"date":"1991-12-23","fuel":"gasoline","avg_price":1.063},{"date":"1991-12-30","fuel":"gasoline","avg_price":1.053},{"date":"1992-01-06","fuel":"gasoline","avg_price":1.042},{"date":"1992-01-13","fuel":"gasoline","avg_price":1.026},{"date":"1992-01-20","fuel":"gasoline","avg_price":1.014},{"date":"1992-01-27","fuel":"gasoline","avg_price":1.006},{"date":"1992-02-03","fuel":"gasoline","avg_price":0.995},{"date":"1992-02-10","fuel":"gasoline","avg_price":1.004},{"date":"1992-02-17","fuel":"gasoline","avg_price":1.011},{"date":"1992-02-24","fuel":"gasoline","avg_price":1.014},{"date":"1992-03-02","fuel":"gasoline","avg_price":1.012},{"date":"1992-03-09","fuel":"gasoline","avg_price":1.013},{"date":"1992-03-16","fuel":"gasoline","avg_price":1.01},{"date":"1992-03-23","fuel":"gasoline","avg_price":1.015},{"date":"1992-03-30","fuel":"gasoline","avg_price":1.013},{"date":"1992-04-06","fuel":"gasoline","avg_price":1.026},{"date":"1992-04-13","fuel":"gasoline","avg_price":1.051},{"date":"1992-04-20","fuel":"gasoline","avg_price":1.058},{"date":"1992-04-27","fuel":"gasoline","avg_price":1.072},{"date":"1992-05-04","fuel":"gasoline","avg_price":1.089},{"date":"1992-05-11","fuel":"gasoline","avg_price":1.102},{"date":"1992-05-18","fuel":"gasoline","avg_price":1.118},{"date":"1992-05-25","fuel":"gasoline","avg_price":1.12},{"date":"1992-06-01","fuel":"gasoline","avg_price":1.128},{"date":"1992-06-08","fuel":"gasoline","avg_price":1.143},{"date":"1992-06-15","fuel":"gasoline","avg_price":1.151},{"date":"1992-06-22","fuel":"gasoline","avg_price":1.153},{"date":"1992-06-29","fuel":"gasoline","avg_price":1.149},{"date":"1992-07-06","fuel":"gasoline","avg_price":1.147},{"date":"1992-07-13","fuel":"gasoline","avg_price":1.139},{"date":"1992-07-20","fuel":"gasoline","avg_price":1.132},{"date":"1992-07-27","fuel":"gasoline","avg_price":1.128},{"date":"1992-08-03","fuel":"gasoline","avg_price":1.126},{"date":"1992-08-10","fuel":"gasoline","avg_price":1.123},{"date":"1992-08-17","fuel":"gasoline","avg_price":1.116},{"date":"1992-08-24","fuel":"gasoline","avg_price":1.123},{"date":"1992-08-31","fuel":"gasoline","avg_price":1.121},{"date":"1992-09-07","fuel":"gasoline","avg_price":1.121},{"date":"1992-09-14","fuel":"gasoline","avg_price":1.124},{"date":"1992-09-21","fuel":"gasoline","avg_price":1.123},{"date":"1992-09-28","fuel":"gasoline","avg_price":1.118},{"date":"1992-10-05","fuel":"gasoline","avg_price":1.115},{"date":"1992-10-12","fuel":"gasoline","avg_price":1.115},{"date":"1992-10-19","fuel":"gasoline","avg_price":1.113},{"date":"1992-10-26","fuel":"gasoline","avg_price":1.113},{"date":"1992-11-02","fuel":"gasoline","avg_price":1.12},{"date":"1992-11-09","fuel":"gasoline","avg_price":1.12},{"date":"1992-11-16","fuel":"gasoline","avg_price":1.112},{"date":"1992-11-23","fuel":"gasoline","avg_price":1.106},{"date":"1992-11-30","fuel":"gasoline","avg_price":1.098},{"date":"1992-12-07","fuel":"gasoline","avg_price":1.089},{"date":"1992-12-14","fuel":"gasoline","avg_price":1.078},{"date":"1992-12-21","fuel":"gasoline","avg_price":1.074},{"date":"1992-12-28","fuel":"gasoline","avg_price":1.069},{"date":"1993-01-04","fuel":"gasoline","avg_price":1.065},{"date":"1993-01-11","fuel":"gasoline","avg_price":1.066},{"date":"1993-01-18","fuel":"gasoline","avg_price":1.061},{"date":"1993-01-25","fuel":"gasoline","avg_price":1.055},{"date":"1993-02-01","fuel":"gasoline","avg_price":1.055},{"date":"1993-02-08","fuel":"gasoline","avg_price":1.062},{"date":"1993-02-15","fuel":"gasoline","avg_price":1.053},{"date":"1993-02-22","fuel":"gasoline","avg_price":1.047},{"date":"1993-03-01","fuel":"gasoline","avg_price":1.042},{"date":"1993-03-08","fuel":"gasoline","avg_price":1.048},{"date":"1993-03-15","fuel":"gasoline","avg_price":1.058},{"date":"1993-03-22","fuel":"gasoline","avg_price":1.056},{"date":"1993-03-29","fuel":"gasoline","avg_price":1.057},{"date":"1993-04-05","fuel":"gasoline","avg_price":1.068},{"date":"1993-04-12","fuel":"gasoline","avg_price":1.079},{"date":"1993-04-19","fuel":"gasoline","avg_price":1.079},{"date":"1993-04-26","fuel":"gasoline","avg_price":1.086},{"date":"1993-05-03","fuel":"gasoline","avg_price":1.086},{"date":"1993-05-10","fuel":"gasoline","avg_price":1.097},{"date":"1993-05-17","fuel":"gasoline","avg_price":1.106},{"date":"1993-05-24","fuel":"gasoline","avg_price":1.106},{"date":"1993-05-31","fuel":"gasoline","avg_price":1.107},{"date":"1993-06-07","fuel":"gasoline","avg_price":1.104},{"date":"1993-06-14","fuel":"gasoline","avg_price":1.101},{"date":"1993-06-21","fuel":"gasoline","avg_price":1.095},{"date":"1993-06-28","fuel":"gasoline","avg_price":1.089},{"date":"1993-07-05","fuel":"gasoline","avg_price":1.086},{"date":"1993-07-12","fuel":"gasoline","avg_price":1.081},{"date":"1993-07-19","fuel":"gasoline","avg_price":1.075},{"date":"1993-07-26","fuel":"gasoline","avg_price":1.069},{"date":"1993-08-02","fuel":"gasoline","avg_price":1.062},{"date":"1993-08-09","fuel":"gasoline","avg_price":1.06},{"date":"1993-08-16","fuel":"gasoline","avg_price":1.059},{"date":"1993-08-23","fuel":"gasoline","avg_price":1.065},{"date":"1993-08-30","fuel":"gasoline","avg_price":1.062},{"date":"1993-09-06","fuel":"gasoline","avg_price":1.055},{"date":"1993-09-13","fuel":"gasoline","avg_price":1.051},{"date":"1993-09-20","fuel":"gasoline","avg_price":1.045},{"date":"1993-09-27","fuel":"gasoline","avg_price":1.047},{"date":"1993-10-04","fuel":"gasoline","avg_price":1.092},{"date":"1993-10-11","fuel":"gasoline","avg_price":1.09},{"date":"1993-10-18","fuel":"gasoline","avg_price":1.093},{"date":"1993-10-25","fuel":"gasoline","avg_price":1.092},{"date":"1993-11-01","fuel":"gasoline","avg_price":1.084},{"date":"1993-11-08","fuel":"gasoline","avg_price":1.075},{"date":"1993-11-15","fuel":"gasoline","avg_price":1.064},{"date":"1993-11-22","fuel":"gasoline","avg_price":1.058},{"date":"1993-11-29","fuel":"gasoline","avg_price":1.051},{"date":"1993-12-06","fuel":"gasoline","avg_price":1.036},{"date":"1993-12-13","fuel":"gasoline","avg_price":1.018},{"date":"1993-12-20","fuel":"gasoline","avg_price":1.003},{"date":"1993-12-27","fuel":"gasoline","avg_price":0.999},{"date":"1994-01-03","fuel":"gasoline","avg_price":0.992},{"date":"1994-01-10","fuel":"gasoline","avg_price":0.995},{"date":"1994-01-17","fuel":"gasoline","avg_price":1.001},{"date":"1994-01-24","fuel":"gasoline","avg_price":0.999},{"date":"1994-01-31","fuel":"gasoline","avg_price":1.005},{"date":"1994-02-07","fuel":"gasoline","avg_price":1.007},{"date":"1994-02-14","fuel":"gasoline","avg_price":1.016},{"date":"1994-02-21","fuel":"gasoline","avg_price":1.009},{"date":"1994-02-28","fuel":"gasoline","avg_price":1.004},{"date":"1994-03-07","fuel":"gasoline","avg_price":1.007},{"date":"1994-03-14","fuel":"gasoline","avg_price":1.005},{"date":"1994-03-21","fuel":"diesel","avg_price":1.106},{"date":"1994-03-21","fuel":"gasoline","avg_price":1.007},{"date":"1994-03-28","fuel":"diesel","avg_price":1.107},{"date":"1994-03-28","fuel":"gasoline","avg_price":1.012},{"date":"1994-04-04","fuel":"gasoline","avg_price":1.011},{"date":"1994-04-04","fuel":"diesel","avg_price":1.109},{"date":"1994-04-11","fuel":"diesel","avg_price":1.108},{"date":"1994-04-11","fuel":"gasoline","avg_price":1.028},{"date":"1994-04-18","fuel":"diesel","avg_price":1.105},{"date":"1994-04-18","fuel":"gasoline","avg_price":1.033},{"date":"1994-04-25","fuel":"diesel","avg_price":1.106},{"date":"1994-04-25","fuel":"gasoline","avg_price":1.037},{"date":"1994-05-02","fuel":"diesel","avg_price":1.104},{"date":"1994-05-02","fuel":"gasoline","avg_price":1.04},{"date":"1994-05-09","fuel":"diesel","avg_price":1.101},{"date":"1994-05-09","fuel":"gasoline","avg_price":1.045},{"date":"1994-05-16","fuel":"gasoline","avg_price":1.046},{"date":"1994-05-16","fuel":"diesel","avg_price":1.099},{"date":"1994-05-23","fuel":"gasoline","avg_price":1.05},{"date":"1994-05-23","fuel":"diesel","avg_price":1.099},{"date":"1994-05-30","fuel":"diesel","avg_price":1.098},{"date":"1994-05-30","fuel":"gasoline","avg_price":1.056},{"date":"1994-06-06","fuel":"diesel","avg_price":1.101},{"date":"1994-06-06","fuel":"gasoline","avg_price":1.065},{"date":"1994-06-13","fuel":"diesel","avg_price":1.098},{"date":"1994-06-13","fuel":"gasoline","avg_price":1.073},{"date":"1994-06-20","fuel":"diesel","avg_price":1.103},{"date":"1994-06-20","fuel":"gasoline","avg_price":1.079},{"date":"1994-06-27","fuel":"diesel","avg_price":1.108},{"date":"1994-06-27","fuel":"gasoline","avg_price":1.095},{"date":"1994-07-04","fuel":"diesel","avg_price":1.109},{"date":"1994-07-04","fuel":"gasoline","avg_price":1.097},{"date":"1994-07-11","fuel":"gasoline","avg_price":1.103},{"date":"1994-07-11","fuel":"diesel","avg_price":1.11},{"date":"1994-07-18","fuel":"diesel","avg_price":1.111},{"date":"1994-07-18","fuel":"gasoline","avg_price":1.109},{"date":"1994-07-25","fuel":"diesel","avg_price":1.111},{"date":"1994-07-25","fuel":"gasoline","avg_price":1.114},{"date":"1994-08-01","fuel":"diesel","avg_price":1.116},{"date":"1994-08-01","fuel":"gasoline","avg_price":1.13},{"date":"1994-08-08","fuel":"diesel","avg_price":1.127},{"date":"1994-08-08","fuel":"gasoline","avg_price":1.157},{"date":"1994-08-15","fuel":"diesel","avg_price":1.127},{"date":"1994-08-15","fuel":"gasoline","avg_price":1.161},{"date":"1994-08-22","fuel":"gasoline","avg_price":1.165},{"date":"1994-08-22","fuel":"diesel","avg_price":1.124},{"date":"1994-08-29","fuel":"diesel","avg_price":1.122},{"date":"1994-08-29","fuel":"gasoline","avg_price":1.161},{"date":"1994-09-05","fuel":"diesel","avg_price":1.126},{"date":"1994-09-05","fuel":"gasoline","avg_price":1.156},{"date":"1994-09-12","fuel":"diesel","avg_price":1.128},{"date":"1994-09-12","fuel":"gasoline","avg_price":1.15},{"date":"1994-09-19","fuel":"diesel","avg_price":1.126},{"date":"1994-09-19","fuel":"gasoline","avg_price":1.14},{"date":"1994-09-26","fuel":"diesel","avg_price":1.12},{"date":"1994-09-26","fuel":"gasoline","avg_price":1.129},{"date":"1994-10-03","fuel":"diesel","avg_price":1.118},{"date":"1994-10-03","fuel":"gasoline","avg_price":1.12},{"date":"1994-10-10","fuel":"gasoline","avg_price":1.114},{"date":"1994-10-10","fuel":"diesel","avg_price":1.117},{"date":"1994-10-17","fuel":"diesel","avg_price":1.119},{"date":"1994-10-17","fuel":"gasoline","avg_price":1.106},{"date":"1994-10-24","fuel":"diesel","avg_price":1.122},{"date":"1994-10-24","fuel":"gasoline","avg_price":1.107},{"date":"1994-10-31","fuel":"diesel","avg_price":1.133},{"date":"1994-10-31","fuel":"gasoline","avg_price":1.121},{"date":"1994-11-07","fuel":"diesel","avg_price":1.133},{"date":"1994-11-07","fuel":"gasoline","avg_price":1.123},{"date":"1994-11-14","fuel":"diesel","avg_price":1.135},{"date":"1994-11-14","fuel":"gasoline","avg_price":1.122},{"date":"1994-11-21","fuel":"gasoline","avg_price":1.113},{"date":"1994-11-21","fuel":"diesel","avg_price":1.13},{"date":"1994-11-28","fuel":"gasoline","avg_price":1.2025833333},{"date":"1994-11-28","fuel":"diesel","avg_price":1.126},{"date":"1994-12-05","fuel":"diesel","avg_price":1.123},{"date":"1994-12-05","fuel":"gasoline","avg_price":1.2031666667},{"date":"1994-12-12","fuel":"diesel","avg_price":1.114},{"date":"1994-12-12","fuel":"gasoline","avg_price":1.19275},{"date":"1994-12-19","fuel":"diesel","avg_price":1.109},{"date":"1994-12-19","fuel":"gasoline","avg_price":1.1849166667},{"date":"1994-12-26","fuel":"diesel","avg_price":1.106},{"date":"1994-12-26","fuel":"gasoline","avg_price":1.1778333333},{"date":"1995-01-02","fuel":"diesel","avg_price":1.104},{"date":"1995-01-02","fuel":"gasoline","avg_price":1.1921666667},{"date":"1995-01-09","fuel":"gasoline","avg_price":1.1970833333},{"date":"1995-01-09","fuel":"diesel","avg_price":1.102},{"date":"1995-01-16","fuel":"gasoline","avg_price":1.19125},{"date":"1995-01-16","fuel":"diesel","avg_price":1.1},{"date":"1995-01-23","fuel":"diesel","avg_price":1.095},{"date":"1995-01-23","fuel":"gasoline","avg_price":1.1944166667},{"date":"1995-01-30","fuel":"diesel","avg_price":1.09},{"date":"1995-01-30","fuel":"gasoline","avg_price":1.192},{"date":"1995-02-06","fuel":"diesel","avg_price":1.086},{"date":"1995-02-06","fuel":"gasoline","avg_price":1.187},{"date":"1995-02-13","fuel":"diesel","avg_price":1.088},{"date":"1995-02-13","fuel":"gasoline","avg_price":1.1839166667},{"date":"1995-02-20","fuel":"diesel","avg_price":1.088},{"date":"1995-02-20","fuel":"gasoline","avg_price":1.1785},{"date":"1995-02-27","fuel":"diesel","avg_price":1.089},{"date":"1995-02-27","fuel":"gasoline","avg_price":1.182},{"date":"1995-03-06","fuel":"gasoline","avg_price":1.18225},{"date":"1995-03-06","fuel":"diesel","avg_price":1.089},{"date":"1995-03-13","fuel":"diesel","avg_price":1.088},{"date":"1995-03-13","fuel":"gasoline","avg_price":1.17525},{"date":"1995-03-20","fuel":"diesel","avg_price":1.085},{"date":"1995-03-20","fuel":"gasoline","avg_price":1.174},{"date":"1995-03-27","fuel":"diesel","avg_price":1.088},{"date":"1995-03-27","fuel":"gasoline","avg_price":1.1771666667},{"date":"1995-04-03","fuel":"diesel","avg_price":1.094},{"date":"1995-04-03","fuel":"gasoline","avg_price":1.1860833333},{"date":"1995-04-10","fuel":"diesel","avg_price":1.101},{"date":"1995-04-10","fuel":"gasoline","avg_price":1.2000833333},{"date":"1995-04-17","fuel":"gasoline","avg_price":1.2124166667},{"date":"1995-04-17","fuel":"diesel","avg_price":1.106},{"date":"1995-04-24","fuel":"gasoline","avg_price":1.2325833333},{"date":"1995-04-24","fuel":"diesel","avg_price":1.115},{"date":"1995-05-01","fuel":"diesel","avg_price":1.119},{"date":"1995-05-01","fuel":"gasoline","avg_price":1.24275},{"date":"1995-05-08","fuel":"diesel","avg_price":1.126},{"date":"1995-05-08","fuel":"gasoline","avg_price":1.2643333333},{"date":"1995-05-15","fuel":"diesel","avg_price":1.126},{"date":"1995-05-15","fuel":"gasoline","avg_price":1.274},{"date":"1995-05-22","fuel":"diesel","avg_price":1.124},{"date":"1995-05-22","fuel":"gasoline","avg_price":1.2905833333},{"date":"1995-05-29","fuel":"diesel","avg_price":1.13},{"date":"1995-05-29","fuel":"gasoline","avg_price":1.29425},{"date":"1995-06-05","fuel":"diesel","avg_price":1.124},{"date":"1995-06-05","fuel":"gasoline","avg_price":1.2939166667},{"date":"1995-06-12","fuel":"gasoline","avg_price":1.2913333333},{"date":"1995-06-12","fuel":"diesel","avg_price":1.122},{"date":"1995-06-19","fuel":"diesel","avg_price":1.117},{"date":"1995-06-19","fuel":"gasoline","avg_price":1.28575},{"date":"1995-06-26","fuel":"diesel","avg_price":1.112},{"date":"1995-06-26","fuel":"gasoline","avg_price":1.2798333333},{"date":"1995-07-03","fuel":"diesel","avg_price":1.106},{"date":"1995-07-03","fuel":"gasoline","avg_price":1.2730833333},{"date":"1995-07-10","fuel":"diesel","avg_price":1.103},{"date":"1995-07-10","fuel":"gasoline","avg_price":1.2644166667},{"date":"1995-07-17","fuel":"diesel","avg_price":1.099},{"date":"1995-07-17","fuel":"gasoline","avg_price":1.2545833333},{"date":"1995-07-24","fuel":"gasoline","avg_price":1.2445833333},{"date":"1995-07-24","fuel":"diesel","avg_price":1.098},{"date":"1995-07-31","fuel":"diesel","avg_price":1.093},{"date":"1995-07-31","fuel":"gasoline","avg_price":1.2321666667},{"date":"1995-08-07","fuel":"diesel","avg_price":1.099},{"date":"1995-08-07","fuel":"gasoline","avg_price":1.2270833333},{"date":"1995-08-14","fuel":"diesel","avg_price":1.106},{"date":"1995-08-14","fuel":"gasoline","avg_price":1.2228333333},{"date":"1995-08-21","fuel":"diesel","avg_price":1.106},{"date":"1995-08-21","fuel":"gasoline","avg_price":1.2206666667},{"date":"1995-08-28","fuel":"diesel","avg_price":1.109},{"date":"1995-08-28","fuel":"gasoline","avg_price":1.21325},{"date":"1995-09-04","fuel":"diesel","avg_price":1.115},{"date":"1995-09-04","fuel":"gasoline","avg_price":1.2110833333},{"date":"1995-09-11","fuel":"gasoline","avg_price":1.2075833333},{"date":"1995-09-11","fuel":"diesel","avg_price":1.119},{"date":"1995-09-18","fuel":"diesel","avg_price":1.122},{"date":"1995-09-18","fuel":"gasoline","avg_price":1.2063333333},{"date":"1995-09-25","fuel":"diesel","avg_price":1.121},{"date":"1995-09-25","fuel":"gasoline","avg_price":1.2041666667},{"date":"1995-10-02","fuel":"diesel","avg_price":1.117},{"date":"1995-10-02","fuel":"gasoline","avg_price":1.2005833333},{"date":"1995-10-09","fuel":"diesel","avg_price":1.117},{"date":"1995-10-09","fuel":"gasoline","avg_price":1.1949166667},{"date":"1995-10-16","fuel":"diesel","avg_price":1.117},{"date":"1995-10-16","fuel":"gasoline","avg_price":1.1870833333},{"date":"1995-10-23","fuel":"gasoline","avg_price":1.1790833333},{"date":"1995-10-23","fuel":"diesel","avg_price":1.114},{"date":"1995-10-30","fuel":"diesel","avg_price":1.11},{"date":"1995-10-30","fuel":"gasoline","avg_price":1.1693333333},{"date":"1995-11-06","fuel":"diesel","avg_price":1.118},{"date":"1995-11-06","fuel":"gasoline","avg_price":1.16475},{"date":"1995-11-13","fuel":"diesel","avg_price":1.118},{"date":"1995-11-13","fuel":"gasoline","avg_price":1.1621666667},{"date":"1995-11-20","fuel":"diesel","avg_price":1.119},{"date":"1995-11-20","fuel":"gasoline","avg_price":1.158},{"date":"1995-11-27","fuel":"diesel","avg_price":1.124},{"date":"1995-11-27","fuel":"gasoline","avg_price":1.1574166667},{"date":"1995-12-04","fuel":"gasoline","avg_price":1.1586666667},{"date":"1995-12-04","fuel":"diesel","avg_price":1.123},{"date":"1995-12-11","fuel":"diesel","avg_price":1.124},{"date":"1995-12-11","fuel":"gasoline","avg_price":1.1598333333},{"date":"1995-12-18","fuel":"diesel","avg_price":1.13},{"date":"1995-12-18","fuel":"gasoline","avg_price":1.1716666667},{"date":"1995-12-25","fuel":"diesel","avg_price":1.141},{"date":"1995-12-25","fuel":"gasoline","avg_price":1.1763333333},{"date":"1996-01-01","fuel":"diesel","avg_price":1.148},{"date":"1996-01-01","fuel":"gasoline","avg_price":1.178},{"date":"1996-01-08","fuel":"diesel","avg_price":1.146},{"date":"1996-01-08","fuel":"gasoline","avg_price":1.1848333333},{"date":"1996-01-15","fuel":"diesel","avg_price":1.152},{"date":"1996-01-15","fuel":"gasoline","avg_price":1.1918333333},{"date":"1996-01-22","fuel":"gasoline","avg_price":1.18725},{"date":"1996-01-22","fuel":"diesel","avg_price":1.144},{"date":"1996-01-29","fuel":"diesel","avg_price":1.136},{"date":"1996-01-29","fuel":"gasoline","avg_price":1.18275},{"date":"1996-02-05","fuel":"diesel","avg_price":1.13},{"date":"1996-02-05","fuel":"gasoline","avg_price":1.1796666667},{"date":"1996-02-12","fuel":"diesel","avg_price":1.134},{"date":"1996-02-12","fuel":"gasoline","avg_price":1.1765833333},{"date":"1996-02-19","fuel":"diesel","avg_price":1.151},{"date":"1996-02-19","fuel":"gasoline","avg_price":1.1820833333},{"date":"1996-02-26","fuel":"diesel","avg_price":1.164},{"date":"1996-02-26","fuel":"gasoline","avg_price":1.20075},{"date":"1996-03-04","fuel":"gasoline","avg_price":1.216},{"date":"1996-03-04","fuel":"diesel","avg_price":1.175},{"date":"1996-03-11","fuel":"diesel","avg_price":1.173},{"date":"1996-03-11","fuel":"gasoline","avg_price":1.2185},{"date":"1996-03-18","fuel":"diesel","avg_price":1.172},{"date":"1996-03-18","fuel":"gasoline","avg_price":1.2275833333},{"date":"1996-03-25","fuel":"diesel","avg_price":1.21},{"date":"1996-03-25","fuel":"gasoline","avg_price":1.2536666667},{"date":"1996-04-01","fuel":"diesel","avg_price":1.222},{"date":"1996-04-01","fuel":"gasoline","avg_price":1.2685833333},{"date":"1996-04-08","fuel":"diesel","avg_price":1.249},{"date":"1996-04-08","fuel":"gasoline","avg_price":1.2933333333},{"date":"1996-04-15","fuel":"gasoline","avg_price":1.3344166667},{"date":"1996-04-15","fuel":"diesel","avg_price":1.305},{"date":"1996-04-22","fuel":"gasoline","avg_price":1.35825},{"date":"1996-04-22","fuel":"diesel","avg_price":1.304},{"date":"1996-04-29","fuel":"diesel","avg_price":1.285},{"date":"1996-04-29","fuel":"gasoline","avg_price":1.3765833333},{"date":"1996-05-06","fuel":"diesel","avg_price":1.292},{"date":"1996-05-06","fuel":"gasoline","avg_price":1.3811666667},{"date":"1996-05-13","fuel":"diesel","avg_price":1.285},{"date":"1996-05-13","fuel":"gasoline","avg_price":1.38375},{"date":"1996-05-20","fuel":"diesel","avg_price":1.274},{"date":"1996-05-20","fuel":"gasoline","avg_price":1.3891666667},{"date":"1996-05-27","fuel":"diesel","avg_price":1.254},{"date":"1996-05-27","fuel":"gasoline","avg_price":1.37975},{"date":"1996-06-03","fuel":"gasoline","avg_price":1.3785833333},{"date":"1996-06-03","fuel":"diesel","avg_price":1.24},{"date":"1996-06-10","fuel":"diesel","avg_price":1.215},{"date":"1996-06-10","fuel":"gasoline","avg_price":1.36975},{"date":"1996-06-17","fuel":"diesel","avg_price":1.193},{"date":"1996-06-17","fuel":"gasoline","avg_price":1.3625},{"date":"1996-06-24","fuel":"diesel","avg_price":1.179},{"date":"1996-06-24","fuel":"gasoline","avg_price":1.3511666667},{"date":"1996-07-01","fuel":"diesel","avg_price":1.172},{"date":"1996-07-01","fuel":"gasoline","avg_price":1.34025},{"date":"1996-07-08","fuel":"diesel","avg_price":1.173},{"date":"1996-07-08","fuel":"gasoline","avg_price":1.3360833333},{"date":"1996-07-15","fuel":"diesel","avg_price":1.178},{"date":"1996-07-15","fuel":"gasoline","avg_price":1.332},{"date":"1996-07-22","fuel":"diesel","avg_price":1.184},{"date":"1996-07-22","fuel":"gasoline","avg_price":1.3288333333},{"date":"1996-07-29","fuel":"gasoline","avg_price":1.3199166667},{"date":"1996-07-29","fuel":"diesel","avg_price":1.178},{"date":"1996-08-05","fuel":"gasoline","avg_price":1.30975},{"date":"1996-08-05","fuel":"diesel","avg_price":1.184},{"date":"1996-08-12","fuel":"diesel","avg_price":1.191},{"date":"1996-08-12","fuel":"gasoline","avg_price":1.3026666667},{"date":"1996-08-19","fuel":"diesel","avg_price":1.206},{"date":"1996-08-19","fuel":"gasoline","avg_price":1.3000833333},{"date":"1996-08-26","fuel":"diesel","avg_price":1.222},{"date":"1996-08-26","fuel":"gasoline","avg_price":1.3024166667},{"date":"1996-09-02","fuel":"diesel","avg_price":1.231},{"date":"1996-09-02","fuel":"gasoline","avg_price":1.2905},{"date":"1996-09-09","fuel":"diesel","avg_price":1.25},{"date":"1996-09-09","fuel":"gasoline","avg_price":1.2938333333},{"date":"1996-09-16","fuel":"diesel","avg_price":1.276},{"date":"1996-09-16","fuel":"gasoline","avg_price":1.2966666667},{"date":"1996-09-23","fuel":"gasoline","avg_price":1.29675},{"date":"1996-09-23","fuel":"diesel","avg_price":1.277},{"date":"1996-09-30","fuel":"diesel","avg_price":1.289},{"date":"1996-09-30","fuel":"gasoline","avg_price":1.2916666667},{"date":"1996-10-07","fuel":"diesel","avg_price":1.308},{"date":"1996-10-07","fuel":"gasoline","avg_price":1.2855},{"date":"1996-10-14","fuel":"diesel","avg_price":1.326},{"date":"1996-10-14","fuel":"gasoline","avg_price":1.2918333333},{"date":"1996-10-21","fuel":"diesel","avg_price":1.329},{"date":"1996-10-21","fuel":"gasoline","avg_price":1.2916666667},{"date":"1996-10-28","fuel":"diesel","avg_price":1.329},{"date":"1996-10-28","fuel":"gasoline","avg_price":1.2986666667},{"date":"1996-11-04","fuel":"gasoline","avg_price":1.3048333333},{"date":"1996-11-04","fuel":"diesel","avg_price":1.323},{"date":"1996-11-11","fuel":"diesel","avg_price":1.316},{"date":"1996-11-11","fuel":"gasoline","avg_price":1.3065833333},{"date":"1996-11-18","fuel":"diesel","avg_price":1.324},{"date":"1996-11-18","fuel":"gasoline","avg_price":1.31575},{"date":"1996-11-25","fuel":"diesel","avg_price":1.327},{"date":"1996-11-25","fuel":"gasoline","avg_price":1.32175},{"date":"1996-12-02","fuel":"diesel","avg_price":1.323},{"date":"1996-12-02","fuel":"gasoline","avg_price":1.3219166667},{"date":"1996-12-09","fuel":"diesel","avg_price":1.32},{"date":"1996-12-09","fuel":"gasoline","avg_price":1.32275},{"date":"1996-12-16","fuel":"gasoline","avg_price":1.32075},{"date":"1996-12-16","fuel":"diesel","avg_price":1.307},{"date":"1996-12-23","fuel":"diesel","avg_price":1.3},{"date":"1996-12-23","fuel":"gasoline","avg_price":1.3175},{"date":"1996-12-30","fuel":"diesel","avg_price":1.295},{"date":"1996-12-30","fuel":"gasoline","avg_price":1.3154166667},{"date":"1997-01-06","fuel":"diesel","avg_price":1.291},{"date":"1997-01-06","fuel":"gasoline","avg_price":1.31525},{"date":"1997-01-13","fuel":"diesel","avg_price":1.296},{"date":"1997-01-13","fuel":"gasoline","avg_price":1.3293333333},{"date":"1997-01-20","fuel":"diesel","avg_price":1.293},{"date":"1997-01-20","fuel":"gasoline","avg_price":1.3296666667},{"date":"1997-01-27","fuel":"diesel","avg_price":1.283},{"date":"1997-01-27","fuel":"gasoline","avg_price":1.3268333333},{"date":"1997-02-03","fuel":"gasoline","avg_price":1.3263333333},{"date":"1997-02-03","fuel":"diesel","avg_price":1.288},{"date":"1997-02-10","fuel":"diesel","avg_price":1.285},{"date":"1997-02-10","fuel":"gasoline","avg_price":1.3243333333},{"date":"1997-02-17","fuel":"diesel","avg_price":1.278},{"date":"1997-02-17","fuel":"gasoline","avg_price":1.3195},{"date":"1997-02-24","fuel":"diesel","avg_price":1.269},{"date":"1997-02-24","fuel":"gasoline","avg_price":1.3165833333},{"date":"1997-03-03","fuel":"diesel","avg_price":1.252},{"date":"1997-03-03","fuel":"gasoline","avg_price":1.30825},{"date":"1997-03-10","fuel":"diesel","avg_price":1.23},{"date":"1997-03-10","fuel":"gasoline","avg_price":1.3035833333},{"date":"1997-03-17","fuel":"gasoline","avg_price":1.2974166667},{"date":"1997-03-17","fuel":"diesel","avg_price":1.22},{"date":"1997-03-24","fuel":"diesel","avg_price":1.22},{"date":"1997-03-24","fuel":"gasoline","avg_price":1.2995833333},{"date":"1997-03-31","fuel":"diesel","avg_price":1.225},{"date":"1997-03-31","fuel":"gasoline","avg_price":1.2985833333},{"date":"1997-04-07","fuel":"diesel","avg_price":1.217},{"date":"1997-04-07","fuel":"gasoline","avg_price":1.3015833333},{"date":"1997-04-14","fuel":"diesel","avg_price":1.216},{"date":"1997-04-14","fuel":"gasoline","avg_price":1.2985833333},{"date":"1997-04-21","fuel":"diesel","avg_price":1.211},{"date":"1997-04-21","fuel":"gasoline","avg_price":1.2971666667},{"date":"1997-04-28","fuel":"gasoline","avg_price":1.2928333333},{"date":"1997-04-28","fuel":"diesel","avg_price":1.205},{"date":"1997-05-05","fuel":"gasoline","avg_price":1.2909166667},{"date":"1997-05-05","fuel":"diesel","avg_price":1.205},{"date":"1997-05-12","fuel":"diesel","avg_price":1.191},{"date":"1997-05-12","fuel":"gasoline","avg_price":1.2889166667},{"date":"1997-05-19","fuel":"diesel","avg_price":1.191},{"date":"1997-05-19","fuel":"gasoline","avg_price":1.2956666667},{"date":"1997-05-26","fuel":"diesel","avg_price":1.196},{"date":"1997-05-26","fuel":"gasoline","avg_price":1.3023333333},{"date":"1997-06-02","fuel":"diesel","avg_price":1.19},{"date":"1997-06-02","fuel":"gasoline","avg_price":1.3034166667},{"date":"1997-06-09","fuel":"diesel","avg_price":1.187},{"date":"1997-06-09","fuel":"gasoline","avg_price":1.298},{"date":"1997-06-16","fuel":"gasoline","avg_price":1.2903333333},{"date":"1997-06-16","fuel":"diesel","avg_price":1.172},{"date":"1997-06-23","fuel":"diesel","avg_price":1.162},{"date":"1997-06-23","fuel":"gasoline","avg_price":1.2814166667},{"date":"1997-06-30","fuel":"diesel","avg_price":1.153},{"date":"1997-06-30","fuel":"gasoline","avg_price":1.2731666667},{"date":"1997-07-07","fuel":"diesel","avg_price":1.159},{"date":"1997-07-07","fuel":"gasoline","avg_price":1.26925},{"date":"1997-07-14","fuel":"diesel","avg_price":1.152},{"date":"1997-07-14","fuel":"gasoline","avg_price":1.26475},{"date":"1997-07-21","fuel":"diesel","avg_price":1.147},{"date":"1997-07-21","fuel":"gasoline","avg_price":1.26675},{"date":"1997-07-28","fuel":"diesel","avg_price":1.145},{"date":"1997-07-28","fuel":"gasoline","avg_price":1.2615833333},{"date":"1997-08-04","fuel":"diesel","avg_price":1.155},{"date":"1997-08-04","fuel":"gasoline","avg_price":1.282},{"date":"1997-08-11","fuel":"gasoline","avg_price":1.3171666667},{"date":"1997-08-11","fuel":"diesel","avg_price":1.168},{"date":"1997-08-18","fuel":"diesel","avg_price":1.167},{"date":"1997-08-18","fuel":"gasoline","avg_price":1.3226666667},{"date":"1997-08-25","fuel":"diesel","avg_price":1.169},{"date":"1997-08-25","fuel":"gasoline","avg_price":1.3403333333},{"date":"1997-09-01","fuel":"diesel","avg_price":1.165},{"date":"1997-09-01","fuel":"gasoline","avg_price":1.3423333333},{"date":"1997-09-08","fuel":"diesel","avg_price":1.163},{"date":"1997-09-08","fuel":"gasoline","avg_price":1.3435833333},{"date":"1997-09-15","fuel":"diesel","avg_price":1.156},{"date":"1997-09-15","fuel":"gasoline","avg_price":1.3390833333},{"date":"1997-09-22","fuel":"gasoline","avg_price":1.3289166667},{"date":"1997-09-22","fuel":"diesel","avg_price":1.154},{"date":"1997-09-29","fuel":"diesel","avg_price":1.16},{"date":"1997-09-29","fuel":"gasoline","avg_price":1.3160833333},{"date":"1997-10-06","fuel":"diesel","avg_price":1.175},{"date":"1997-10-06","fuel":"gasoline","avg_price":1.3143333333},{"date":"1997-10-13","fuel":"diesel","avg_price":1.185},{"date":"1997-10-13","fuel":"gasoline","avg_price":1.3075},{"date":"1997-10-20","fuel":"diesel","avg_price":1.185},{"date":"1997-10-20","fuel":"gasoline","avg_price":1.2989166667},{"date":"1997-10-27","fuel":"diesel","avg_price":1.185},{"date":"1997-10-27","fuel":"gasoline","avg_price":1.2889166667},{"date":"1997-11-03","fuel":"diesel","avg_price":1.188},{"date":"1997-11-03","fuel":"gasoline","avg_price":1.2814166667},{"date":"1997-11-10","fuel":"gasoline","avg_price":1.2804166667},{"date":"1997-11-10","fuel":"diesel","avg_price":1.19},{"date":"1997-11-17","fuel":"diesel","avg_price":1.195},{"date":"1997-11-17","fuel":"gasoline","avg_price":1.27175},{"date":"1997-11-24","fuel":"diesel","avg_price":1.193},{"date":"1997-11-24","fuel":"gasoline","avg_price":1.2656666667},{"date":"1997-12-01","fuel":"diesel","avg_price":1.189},{"date":"1997-12-01","fuel":"gasoline","avg_price":1.2570833333},{"date":"1997-12-08","fuel":"diesel","avg_price":1.174},{"date":"1997-12-08","fuel":"gasoline","avg_price":1.2458333333},{"date":"1997-12-15","fuel":"diesel","avg_price":1.162},{"date":"1997-12-15","fuel":"gasoline","avg_price":1.2355833333},{"date":"1997-12-22","fuel":"gasoline","avg_price":1.2255},{"date":"1997-12-22","fuel":"diesel","avg_price":1.155},{"date":"1997-12-29","fuel":"gasoline","avg_price":1.2175833333},{"date":"1997-12-29","fuel":"diesel","avg_price":1.15},{"date":"1998-01-05","fuel":"diesel","avg_price":1.147},{"date":"1998-01-05","fuel":"gasoline","avg_price":1.2095},{"date":"1998-01-12","fuel":"diesel","avg_price":1.126},{"date":"1998-01-12","fuel":"gasoline","avg_price":1.1999166667},{"date":"1998-01-19","fuel":"diesel","avg_price":1.109},{"date":"1998-01-19","fuel":"gasoline","avg_price":1.1858333333},{"date":"1998-01-26","fuel":"diesel","avg_price":1.096},{"date":"1998-01-26","fuel":"gasoline","avg_price":1.1703333333},{"date":"1998-02-02","fuel":"diesel","avg_price":1.091},{"date":"1998-02-02","fuel":"gasoline","avg_price":1.1635833333},{"date":"1998-02-09","fuel":"gasoline","avg_price":1.1553333333},{"date":"1998-02-09","fuel":"diesel","avg_price":1.085},{"date":"1998-02-16","fuel":"gasoline","avg_price":1.1394166667},{"date":"1998-02-16","fuel":"diesel","avg_price":1.082},{"date":"1998-02-23","fuel":"diesel","avg_price":1.079},{"date":"1998-02-23","fuel":"gasoline","avg_price":1.1393333333},{"date":"1998-03-02","fuel":"diesel","avg_price":1.074},{"date":"1998-03-02","fuel":"gasoline","avg_price":1.1236666667},{"date":"1998-03-09","fuel":"diesel","avg_price":1.066},{"date":"1998-03-09","fuel":"gasoline","avg_price":1.1116666667},{"date":"1998-03-16","fuel":"diesel","avg_price":1.057},{"date":"1998-03-16","fuel":"gasoline","avg_price":1.1015},{"date":"1998-03-23","fuel":"diesel","avg_price":1.049},{"date":"1998-03-23","fuel":"gasoline","avg_price":1.093},{"date":"1998-03-30","fuel":"diesel","avg_price":1.068},{"date":"1998-03-30","fuel":"gasoline","avg_price":1.1211666667},{"date":"1998-04-06","fuel":"gasoline","avg_price":1.1190833333},{"date":"1998-04-06","fuel":"diesel","avg_price":1.067},{"date":"1998-04-13","fuel":"diesel","avg_price":1.065},{"date":"1998-04-13","fuel":"gasoline","avg_price":1.1186666667},{"date":"1998-04-20","fuel":"diesel","avg_price":1.065},{"date":"1998-04-20","fuel":"gasoline","avg_price":1.1206666667},{"date":"1998-04-27","fuel":"diesel","avg_price":1.07},{"date":"1998-04-27","fuel":"gasoline","avg_price":1.1316666667},{"date":"1998-05-04","fuel":"diesel","avg_price":1.072},{"date":"1998-05-04","fuel":"gasoline","avg_price":1.1455},{"date":"1998-05-11","fuel":"diesel","avg_price":1.075},{"date":"1998-05-11","fuel":"gasoline","avg_price":1.1580833333},{"date":"1998-05-18","fuel":"gasoline","avg_price":1.1619166667},{"date":"1998-05-18","fuel":"diesel","avg_price":1.069},{"date":"1998-05-25","fuel":"diesel","avg_price":1.06},{"date":"1998-05-25","fuel":"gasoline","avg_price":1.1605833333},{"date":"1998-06-01","fuel":"diesel","avg_price":1.053},{"date":"1998-06-01","fuel":"gasoline","avg_price":1.1571666667},{"date":"1998-06-08","fuel":"diesel","avg_price":1.045},{"date":"1998-06-08","fuel":"gasoline","avg_price":1.1628333333},{"date":"1998-06-15","fuel":"diesel","avg_price":1.04},{"date":"1998-06-15","fuel":"gasoline","avg_price":1.1561666667},{"date":"1998-06-22","fuel":"diesel","avg_price":1.033},{"date":"1998-06-22","fuel":"gasoline","avg_price":1.15},{"date":"1998-06-29","fuel":"gasoline","avg_price":1.1484166667},{"date":"1998-06-29","fuel":"diesel","avg_price":1.034},{"date":"1998-07-06","fuel":"diesel","avg_price":1.036},{"date":"1998-07-06","fuel":"gasoline","avg_price":1.1486666667},{"date":"1998-07-13","fuel":"diesel","avg_price":1.031},{"date":"1998-07-13","fuel":"gasoline","avg_price":1.1450833333},{"date":"1998-07-20","fuel":"diesel","avg_price":1.027},{"date":"1998-07-20","fuel":"gasoline","avg_price":1.1476666667},{"date":"1998-07-27","fuel":"diesel","avg_price":1.02},{"date":"1998-07-27","fuel":"gasoline","avg_price":1.1401666667},{"date":"1998-08-03","fuel":"diesel","avg_price":1.016},{"date":"1998-08-03","fuel":"gasoline","avg_price":1.1303333333},{"date":"1998-08-10","fuel":"diesel","avg_price":1.01},{"date":"1998-08-10","fuel":"gasoline","avg_price":1.1250833333},{"date":"1998-08-17","fuel":"diesel","avg_price":1.007},{"date":"1998-08-17","fuel":"gasoline","avg_price":1.1194166667},{"date":"1998-08-24","fuel":"gasoline","avg_price":1.11275},{"date":"1998-08-24","fuel":"diesel","avg_price":1.004},{"date":"1998-08-31","fuel":"diesel","avg_price":1},{"date":"1998-08-31","fuel":"gasoline","avg_price":1.107},{"date":"1998-09-07","fuel":"diesel","avg_price":1.009},{"date":"1998-09-07","fuel":"gasoline","avg_price":1.1015},{"date":"1998-09-14","fuel":"diesel","avg_price":1.019},{"date":"1998-09-14","fuel":"gasoline","avg_price":1.09725},{"date":"1998-09-21","fuel":"diesel","avg_price":1.03},{"date":"1998-09-21","fuel":"gasoline","avg_price":1.1071666667},{"date":"1998-09-28","fuel":"diesel","avg_price":1.039},{"date":"1998-09-28","fuel":"gasoline","avg_price":1.1075833333},{"date":"1998-10-05","fuel":"gasoline","avg_price":1.1115},{"date":"1998-10-05","fuel":"diesel","avg_price":1.041},{"date":"1998-10-12","fuel":"diesel","avg_price":1.041},{"date":"1998-10-12","fuel":"gasoline","avg_price":1.1158333333},{"date":"1998-10-19","fuel":"diesel","avg_price":1.036},{"date":"1998-10-19","fuel":"gasoline","avg_price":1.1113333333},{"date":"1998-10-26","fuel":"diesel","avg_price":1.036},{"date":"1998-10-26","fuel":"gasoline","avg_price":1.1086666667},{"date":"1998-11-02","fuel":"diesel","avg_price":1.035},{"date":"1998-11-02","fuel":"gasoline","avg_price":1.1045},{"date":"1998-11-09","fuel":"diesel","avg_price":1.034},{"date":"1998-11-09","fuel":"gasoline","avg_price":1.1028333333},{"date":"1998-11-16","fuel":"diesel","avg_price":1.026},{"date":"1998-11-16","fuel":"gasoline","avg_price":1.0931666667},{"date":"1998-11-23","fuel":"gasoline","avg_price":1.0886666667},{"date":"1998-11-23","fuel":"diesel","avg_price":1.012},{"date":"1998-11-30","fuel":"diesel","avg_price":1.004},{"date":"1998-11-30","fuel":"gasoline","avg_price":1.0763333333},{"date":"1998-12-07","fuel":"diesel","avg_price":0.986},{"date":"1998-12-07","fuel":"gasoline","avg_price":1.0594166667},{"date":"1998-12-14","fuel":"diesel","avg_price":0.972},{"date":"1998-12-14","fuel":"gasoline","avg_price":1.05125},{"date":"1998-12-21","fuel":"diesel","avg_price":0.968},{"date":"1998-12-21","fuel":"gasoline","avg_price":1.049},{"date":"1998-12-28","fuel":"diesel","avg_price":0.966},{"date":"1998-12-28","fuel":"gasoline","avg_price":1.043},{"date":"1999-01-04","fuel":"gasoline","avg_price":1.0405833333},{"date":"1999-01-04","fuel":"diesel","avg_price":0.965},{"date":"1999-01-11","fuel":"gasoline","avg_price":1.0429166667},{"date":"1999-01-11","fuel":"diesel","avg_price":0.967},{"date":"1999-01-18","fuel":"diesel","avg_price":0.97},{"date":"1999-01-18","fuel":"gasoline","avg_price":1.0458333333},{"date":"1999-01-25","fuel":"diesel","avg_price":0.964},{"date":"1999-01-25","fuel":"gasoline","avg_price":1.0391666667},{"date":"1999-02-01","fuel":"diesel","avg_price":0.962},{"date":"1999-02-01","fuel":"gasoline","avg_price":1.0320833333},{"date":"1999-02-08","fuel":"diesel","avg_price":0.962},{"date":"1999-02-08","fuel":"gasoline","avg_price":1.02875},{"date":"1999-02-15","fuel":"diesel","avg_price":0.959},{"date":"1999-02-15","fuel":"gasoline","avg_price":1.0210833333},{"date":"1999-02-22","fuel":"gasoline","avg_price":1.012},{"date":"1999-02-22","fuel":"diesel","avg_price":0.953},{"date":"1999-03-01","fuel":"gasoline","avg_price":1.0169166667},{"date":"1999-03-01","fuel":"diesel","avg_price":0.956},{"date":"1999-03-08","fuel":"diesel","avg_price":0.964},{"date":"1999-03-08","fuel":"gasoline","avg_price":1.0249166667},{"date":"1999-03-15","fuel":"diesel","avg_price":1},{"date":"1999-03-15","fuel":"gasoline","avg_price":1.0733333333},{"date":"1999-03-22","fuel":"diesel","avg_price":1.018},{"date":"1999-03-22","fuel":"gasoline","avg_price":1.1114166667},{"date":"1999-03-29","fuel":"diesel","avg_price":1.046},{"date":"1999-03-29","fuel":"gasoline","avg_price":1.1826666667},{"date":"1999-04-05","fuel":"diesel","avg_price":1.075},{"date":"1999-04-05","fuel":"gasoline","avg_price":1.22625},{"date":"1999-04-12","fuel":"diesel","avg_price":1.084},{"date":"1999-04-12","fuel":"gasoline","avg_price":1.2495},{"date":"1999-04-19","fuel":"gasoline","avg_price":1.2458333333},{"date":"1999-04-19","fuel":"diesel","avg_price":1.08},{"date":"1999-04-26","fuel":"diesel","avg_price":1.078},{"date":"1999-04-26","fuel":"gasoline","avg_price":1.2426666667},{"date":"1999-05-03","fuel":"diesel","avg_price":1.078},{"date":"1999-05-03","fuel":"gasoline","avg_price":1.244},{"date":"1999-05-10","fuel":"diesel","avg_price":1.083},{"date":"1999-05-10","fuel":"gasoline","avg_price":1.2485},{"date":"1999-05-17","fuel":"diesel","avg_price":1.075},{"date":"1999-05-17","fuel":"gasoline","avg_price":1.2455833333},{"date":"1999-05-24","fuel":"diesel","avg_price":1.066},{"date":"1999-05-24","fuel":"gasoline","avg_price":1.2296666667},{"date":"1999-05-31","fuel":"gasoline","avg_price":1.2144166667},{"date":"1999-05-31","fuel":"diesel","avg_price":1.065},{"date":"1999-06-07","fuel":"gasoline","avg_price":1.21125},{"date":"1999-06-07","fuel":"diesel","avg_price":1.059},{"date":"1999-06-14","fuel":"diesel","avg_price":1.068},{"date":"1999-06-14","fuel":"gasoline","avg_price":1.2073333333},{"date":"1999-06-21","fuel":"diesel","avg_price":1.082},{"date":"1999-06-21","fuel":"gasoline","avg_price":1.2195},{"date":"1999-06-28","fuel":"diesel","avg_price":1.087},{"date":"1999-06-28","fuel":"gasoline","avg_price":1.2113333333},{"date":"1999-07-05","fuel":"diesel","avg_price":1.102},{"date":"1999-07-05","fuel":"gasoline","avg_price":1.22},{"date":"1999-07-12","fuel":"diesel","avg_price":1.114},{"date":"1999-07-12","fuel":"gasoline","avg_price":1.2401666667},{"date":"1999-07-19","fuel":"diesel","avg_price":1.133},{"date":"1999-07-19","fuel":"gasoline","avg_price":1.2691666667},{"date":"1999-07-26","fuel":"gasoline","avg_price":1.29075},{"date":"1999-07-26","fuel":"diesel","avg_price":1.137},{"date":"1999-08-02","fuel":"diesel","avg_price":1.146},{"date":"1999-08-02","fuel":"gasoline","avg_price":1.2959166667},{"date":"1999-08-09","fuel":"diesel","avg_price":1.156},{"date":"1999-08-09","fuel":"gasoline","avg_price":1.3089166667},{"date":"1999-08-16","fuel":"diesel","avg_price":1.178},{"date":"1999-08-16","fuel":"gasoline","avg_price":1.3348333333},{"date":"1999-08-23","fuel":"diesel","avg_price":1.186},{"date":"1999-08-23","fuel":"gasoline","avg_price":1.33425},{"date":"1999-08-30","fuel":"diesel","avg_price":1.194},{"date":"1999-08-30","fuel":"gasoline","avg_price":1.3328333333},{"date":"1999-09-06","fuel":"gasoline","avg_price":1.3393333333},{"date":"1999-09-06","fuel":"diesel","avg_price":1.198},{"date":"1999-09-13","fuel":"diesel","avg_price":1.209},{"date":"1999-09-13","fuel":"gasoline","avg_price":1.3453333333},{"date":"1999-09-20","fuel":"diesel","avg_price":1.226},{"date":"1999-09-20","fuel":"gasoline","avg_price":1.3605833333},{"date":"1999-09-27","fuel":"diesel","avg_price":1.226},{"date":"1999-09-27","fuel":"gasoline","avg_price":1.3545},{"date":"1999-10-04","fuel":"diesel","avg_price":1.234},{"date":"1999-10-04","fuel":"gasoline","avg_price":1.3503333333},{"date":"1999-10-11","fuel":"diesel","avg_price":1.228},{"date":"1999-10-11","fuel":"gasoline","avg_price":1.3466666667},{"date":"1999-10-18","fuel":"diesel","avg_price":1.224},{"date":"1999-10-18","fuel":"gasoline","avg_price":1.3353333333},{"date":"1999-10-25","fuel":"gasoline","avg_price":1.3331666667},{"date":"1999-10-25","fuel":"diesel","avg_price":1.226},{"date":"1999-11-01","fuel":"diesel","avg_price":1.229},{"date":"1999-11-01","fuel":"gasoline","avg_price":1.3265833333},{"date":"1999-11-08","fuel":"diesel","avg_price":1.234},{"date":"1999-11-08","fuel":"gasoline","avg_price":1.3271666667},{"date":"1999-11-15","fuel":"diesel","avg_price":1.261},{"date":"1999-11-15","fuel":"gasoline","avg_price":1.34325},{"date":"1999-11-22","fuel":"diesel","avg_price":1.289},{"date":"1999-11-22","fuel":"gasoline","avg_price":1.35925},{"date":"1999-11-29","fuel":"diesel","avg_price":1.304},{"date":"1999-11-29","fuel":"gasoline","avg_price":1.3671666667},{"date":"1999-12-06","fuel":"gasoline","avg_price":1.3674166667},{"date":"1999-12-06","fuel":"diesel","avg_price":1.294},{"date":"1999-12-13","fuel":"diesel","avg_price":1.288},{"date":"1999-12-13","fuel":"gasoline","avg_price":1.3680833333},{"date":"1999-12-20","fuel":"diesel","avg_price":1.287},{"date":"1999-12-20","fuel":"gasoline","avg_price":1.3629166667},{"date":"1999-12-27","fuel":"diesel","avg_price":1.298},{"date":"1999-12-27","fuel":"gasoline","avg_price":1.3658333333},{"date":"2000-01-03","fuel":"diesel","avg_price":1.309},{"date":"2000-01-03","fuel":"gasoline","avg_price":1.3645},{"date":"2000-01-10","fuel":"diesel","avg_price":1.307},{"date":"2000-01-10","fuel":"gasoline","avg_price":1.3575833333},{"date":"2000-01-17","fuel":"gasoline","avg_price":1.3674166667},{"date":"2000-01-17","fuel":"diesel","avg_price":1.307},{"date":"2000-01-24","fuel":"diesel","avg_price":1.418},{"date":"2000-01-24","fuel":"gasoline","avg_price":1.3995},{"date":"2000-01-31","fuel":"diesel","avg_price":1.439},{"date":"2000-01-31","fuel":"gasoline","avg_price":1.4033333333},{"date":"2000-02-07","fuel":"diesel","avg_price":1.47},{"date":"2000-02-07","fuel":"gasoline","avg_price":1.4104166667},{"date":"2000-02-14","fuel":"diesel","avg_price":1.456},{"date":"2000-02-14","fuel":"gasoline","avg_price":1.4378333333},{"date":"2000-02-21","fuel":"diesel","avg_price":1.456},{"date":"2000-02-21","fuel":"gasoline","avg_price":1.4835},{"date":"2000-02-28","fuel":"diesel","avg_price":1.461},{"date":"2000-02-28","fuel":"gasoline","avg_price":1.5021666667},{"date":"2000-03-06","fuel":"gasoline","avg_price":1.5858333333},{"date":"2000-03-06","fuel":"diesel","avg_price":1.49},{"date":"2000-03-13","fuel":"diesel","avg_price":1.496},{"date":"2000-03-13","fuel":"gasoline","avg_price":1.6205833333},{"date":"2000-03-20","fuel":"diesel","avg_price":1.479},{"date":"2000-03-20","fuel":"gasoline","avg_price":1.62925},{"date":"2000-03-27","fuel":"diesel","avg_price":1.451},{"date":"2000-03-27","fuel":"gasoline","avg_price":1.613},{"date":"2000-04-03","fuel":"diesel","avg_price":1.442},{"date":"2000-04-03","fuel":"gasoline","avg_price":1.6068333333},{"date":"2000-04-10","fuel":"diesel","avg_price":1.419},{"date":"2000-04-10","fuel":"gasoline","avg_price":1.5824166667},{"date":"2000-04-17","fuel":"gasoline","avg_price":1.5545},{"date":"2000-04-17","fuel":"diesel","avg_price":1.398},{"date":"2000-04-24","fuel":"diesel","avg_price":1.428},{"date":"2000-04-24","fuel":"gasoline","avg_price":1.5449166667},{"date":"2000-05-01","fuel":"diesel","avg_price":1.418},{"date":"2000-05-01","fuel":"gasoline","avg_price":1.52925},{"date":"2000-05-08","fuel":"diesel","avg_price":1.402},{"date":"2000-05-08","fuel":"gasoline","avg_price":1.5560833333},{"date":"2000-05-15","fuel":"diesel","avg_price":1.415},{"date":"2000-05-15","fuel":"gasoline","avg_price":1.5860833333},{"date":"2000-05-22","fuel":"diesel","avg_price":1.432},{"date":"2000-05-22","fuel":"gasoline","avg_price":1.6116666667},{"date":"2000-05-29","fuel":"gasoline","avg_price":1.6254166667},{"date":"2000-05-29","fuel":"diesel","avg_price":1.431},{"date":"2000-06-05","fuel":"gasoline","avg_price":1.6456666667},{"date":"2000-06-05","fuel":"diesel","avg_price":1.419},{"date":"2000-06-12","fuel":"diesel","avg_price":1.411},{"date":"2000-06-12","fuel":"gasoline","avg_price":1.6994166667},{"date":"2000-06-19","fuel":"diesel","avg_price":1.423},{"date":"2000-06-19","fuel":"gasoline","avg_price":1.7399166667},{"date":"2000-06-26","fuel":"diesel","avg_price":1.432},{"date":"2000-06-26","fuel":"gasoline","avg_price":1.7258333333},{"date":"2000-07-03","fuel":"diesel","avg_price":1.453},{"date":"2000-07-03","fuel":"gasoline","avg_price":1.7075},{"date":"2000-07-10","fuel":"diesel","avg_price":1.449},{"date":"2000-07-10","fuel":"gasoline","avg_price":1.6853333333},{"date":"2000-07-17","fuel":"gasoline","avg_price":1.6488333333},{"date":"2000-07-17","fuel":"diesel","avg_price":1.435},{"date":"2000-07-24","fuel":"diesel","avg_price":1.424},{"date":"2000-07-24","fuel":"gasoline","avg_price":1.6263333333},{"date":"2000-07-31","fuel":"diesel","avg_price":1.408},{"date":"2000-07-31","fuel":"gasoline","avg_price":1.5839166667},{"date":"2000-08-07","fuel":"diesel","avg_price":1.41},{"date":"2000-08-07","fuel":"gasoline","avg_price":1.573},{"date":"2000-08-14","fuel":"diesel","avg_price":1.447},{"date":"2000-08-14","fuel":"gasoline","avg_price":1.5595},{"date":"2000-08-21","fuel":"diesel","avg_price":1.471},{"date":"2000-08-21","fuel":"gasoline","avg_price":1.5729166667},{"date":"2000-08-28","fuel":"diesel","avg_price":1.536},{"date":"2000-08-28","fuel":"gasoline","avg_price":1.5854166667},{"date":"2000-09-04","fuel":"diesel","avg_price":1.609},{"date":"2000-09-04","fuel":"gasoline","avg_price":1.6298333333},{"date":"2000-09-11","fuel":"diesel","avg_price":1.629},{"date":"2000-09-11","fuel":"gasoline","avg_price":1.6595833333},{"date":"2000-09-18","fuel":"gasoline","avg_price":1.6579166667},{"date":"2000-09-18","fuel":"diesel","avg_price":1.653},{"date":"2000-09-25","fuel":"diesel","avg_price":1.657},{"date":"2000-09-25","fuel":"gasoline","avg_price":1.6485},{"date":"2000-10-02","fuel":"diesel","avg_price":1.625},{"date":"2000-10-02","fuel":"gasoline","avg_price":1.6289166667},{"date":"2000-10-09","fuel":"diesel","avg_price":1.614},{"date":"2000-10-09","fuel":"gasoline","avg_price":1.60925},{"date":"2000-10-16","fuel":"diesel","avg_price":1.67},{"date":"2000-10-16","fuel":"gasoline","avg_price":1.6384166667},{"date":"2000-10-23","fuel":"diesel","avg_price":1.648},{"date":"2000-10-23","fuel":"gasoline","avg_price":1.6444166667},{"date":"2000-10-30","fuel":"gasoline","avg_price":1.6425833333},{"date":"2000-10-30","fuel":"diesel","avg_price":1.629},{"date":"2000-11-06","fuel":"diesel","avg_price":1.61},{"date":"2000-11-06","fuel":"gasoline","avg_price":1.62675},{"date":"2000-11-13","fuel":"diesel","avg_price":1.603},{"date":"2000-11-13","fuel":"gasoline","avg_price":1.6224166667},{"date":"2000-11-20","fuel":"diesel","avg_price":1.627},{"date":"2000-11-20","fuel":"gasoline","avg_price":1.6113333333},{"date":"2000-11-27","fuel":"diesel","avg_price":1.645},{"date":"2000-11-27","fuel":"gasoline","avg_price":1.6089166667},{"date":"2000-12-04","fuel":"diesel","avg_price":1.622},{"date":"2000-12-04","fuel":"gasoline","avg_price":1.58775},{"date":"2000-12-11","fuel":"gasoline","avg_price":1.5559166667},{"date":"2000-12-11","fuel":"diesel","avg_price":1.577},{"date":"2000-12-18","fuel":"gasoline","avg_price":1.5295833333},{"date":"2000-12-18","fuel":"diesel","avg_price":1.545},{"date":"2000-12-25","fuel":"diesel","avg_price":1.515},{"date":"2000-12-25","fuel":"gasoline","avg_price":1.5176666667},{"date":"2001-01-01","fuel":"diesel","avg_price":1.522},{"date":"2001-01-01","fuel":"gasoline","avg_price":1.5119166667},{"date":"2001-01-08","fuel":"diesel","avg_price":1.52},{"date":"2001-01-08","fuel":"gasoline","avg_price":1.5254166667},{"date":"2001-01-15","fuel":"diesel","avg_price":1.509},{"date":"2001-01-15","fuel":"gasoline","avg_price":1.5641666667},{"date":"2001-01-22","fuel":"diesel","avg_price":1.528},{"date":"2001-01-22","fuel":"gasoline","avg_price":1.562},{"date":"2001-01-29","fuel":"gasoline","avg_price":1.551},{"date":"2001-01-29","fuel":"diesel","avg_price":1.539},{"date":"2001-02-05","fuel":"diesel","avg_price":1.52},{"date":"2001-02-05","fuel":"gasoline","avg_price":1.5389166667},{"date":"2001-02-12","fuel":"diesel","avg_price":1.518},{"date":"2001-02-12","fuel":"gasoline","avg_price":1.5669166667},{"date":"2001-02-19","fuel":"diesel","avg_price":1.48},{"date":"2001-02-19","fuel":"gasoline","avg_price":1.5478333333},{"date":"2001-02-26","fuel":"diesel","avg_price":1.451},{"date":"2001-02-26","fuel":"gasoline","avg_price":1.532},{"date":"2001-03-05","fuel":"diesel","avg_price":1.42},{"date":"2001-03-05","fuel":"gasoline","avg_price":1.5219166667},{"date":"2001-03-12","fuel":"diesel","avg_price":1.406},{"date":"2001-03-12","fuel":"gasoline","avg_price":1.5171666667},{"date":"2001-03-19","fuel":"gasoline","avg_price":1.5091666667},{"date":"2001-03-19","fuel":"diesel","avg_price":1.392},{"date":"2001-03-26","fuel":"diesel","avg_price":1.379},{"date":"2001-03-26","fuel":"gasoline","avg_price":1.50775},{"date":"2001-04-02","fuel":"diesel","avg_price":1.391},{"date":"2001-04-02","fuel":"gasoline","avg_price":1.543},{"date":"2001-04-09","fuel":"diesel","avg_price":1.397},{"date":"2001-04-09","fuel":"gasoline","avg_price":1.5984166667},{"date":"2001-04-16","fuel":"diesel","avg_price":1.437},{"date":"2001-04-16","fuel":"gasoline","avg_price":1.6590833333},{"date":"2001-04-23","fuel":"diesel","avg_price":1.443},{"date":"2001-04-23","fuel":"gasoline","avg_price":1.7113333333},{"date":"2001-04-30","fuel":"gasoline","avg_price":1.7231666667},{"date":"2001-04-30","fuel":"diesel","avg_price":1.442},{"date":"2001-05-07","fuel":"diesel","avg_price":1.47},{"date":"2001-05-07","fuel":"gasoline","avg_price":1.7915},{"date":"2001-05-14","fuel":"diesel","avg_price":1.491},{"date":"2001-05-14","fuel":"gasoline","avg_price":1.8036666667},{"date":"2001-05-21","fuel":"diesel","avg_price":1.494},{"date":"2001-05-21","fuel":"gasoline","avg_price":1.7833333333},{"date":"2001-05-28","fuel":"diesel","avg_price":1.529},{"date":"2001-05-28","fuel":"gasoline","avg_price":1.7961666667},{"date":"2001-06-04","fuel":"diesel","avg_price":1.514},{"date":"2001-06-04","fuel":"gasoline","avg_price":1.7734166667},{"date":"2001-06-11","fuel":"gasoline","avg_price":1.7493333333},{"date":"2001-06-11","fuel":"diesel","avg_price":1.486},{"date":"2001-06-18","fuel":"gasoline","avg_price":1.709},{"date":"2001-06-18","fuel":"diesel","avg_price":1.48},{"date":"2001-06-25","fuel":"diesel","avg_price":1.447},{"date":"2001-06-25","fuel":"gasoline","avg_price":1.6539166667},{"date":"2001-07-02","fuel":"diesel","avg_price":1.407},{"date":"2001-07-02","fuel":"gasoline","avg_price":1.594},{"date":"2001-07-09","fuel":"diesel","avg_price":1.392},{"date":"2001-07-09","fuel":"gasoline","avg_price":1.5575},{"date":"2001-07-16","fuel":"diesel","avg_price":1.38},{"date":"2001-07-16","fuel":"gasoline","avg_price":1.531},{"date":"2001-07-23","fuel":"diesel","avg_price":1.348},{"date":"2001-07-23","fuel":"gasoline","avg_price":1.509},{"date":"2001-07-30","fuel":"gasoline","avg_price":1.4925},{"date":"2001-07-30","fuel":"diesel","avg_price":1.347},{"date":"2001-08-06","fuel":"diesel","avg_price":1.345},{"date":"2001-08-06","fuel":"gasoline","avg_price":1.4800833333},{"date":"2001-08-13","fuel":"diesel","avg_price":1.367},{"date":"2001-08-13","fuel":"gasoline","avg_price":1.48925},{"date":"2001-08-20","fuel":"diesel","avg_price":1.394},{"date":"2001-08-20","fuel":"gasoline","avg_price":1.5150833333},{"date":"2001-08-27","fuel":"diesel","avg_price":1.452},{"date":"2001-08-27","fuel":"gasoline","avg_price":1.5595833333},{"date":"2001-09-03","fuel":"diesel","avg_price":1.488},{"date":"2001-09-03","fuel":"gasoline","avg_price":1.6145833333},{"date":"2001-09-10","fuel":"diesel","avg_price":1.492},{"date":"2001-09-10","fuel":"gasoline","avg_price":1.6018333333},{"date":"2001-09-17","fuel":"diesel","avg_price":1.527},{"date":"2001-09-17","fuel":"gasoline","avg_price":1.6029166667},{"date":"2001-09-24","fuel":"gasoline","avg_price":1.56675},{"date":"2001-09-24","fuel":"diesel","avg_price":1.473},{"date":"2001-10-01","fuel":"diesel","avg_price":1.39},{"date":"2001-10-01","fuel":"gasoline","avg_price":1.5041666667},{"date":"2001-10-08","fuel":"diesel","avg_price":1.371},{"date":"2001-10-08","fuel":"gasoline","avg_price":1.44575},{"date":"2001-10-15","fuel":"diesel","avg_price":1.353},{"date":"2001-10-15","fuel":"gasoline","avg_price":1.4055},{"date":"2001-10-22","fuel":"diesel","avg_price":1.318},{"date":"2001-10-22","fuel":"gasoline","avg_price":1.3616666667},{"date":"2001-10-29","fuel":"diesel","avg_price":1.31},{"date":"2001-10-29","fuel":"gasoline","avg_price":1.3309166667},{"date":"2001-11-05","fuel":"gasoline","avg_price":1.3013333333},{"date":"2001-11-05","fuel":"diesel","avg_price":1.291},{"date":"2001-11-12","fuel":"diesel","avg_price":1.269},{"date":"2001-11-12","fuel":"gasoline","avg_price":1.2753333333},{"date":"2001-11-19","fuel":"diesel","avg_price":1.252},{"date":"2001-11-19","fuel":"gasoline","avg_price":1.2565},{"date":"2001-11-26","fuel":"diesel","avg_price":1.223},{"date":"2001-11-26","fuel":"gasoline","avg_price":1.217},{"date":"2001-12-03","fuel":"diesel","avg_price":1.194},{"date":"2001-12-03","fuel":"gasoline","avg_price":1.19575},{"date":"2001-12-10","fuel":"diesel","avg_price":1.173},{"date":"2001-12-10","fuel":"gasoline","avg_price":1.1815833333},{"date":"2001-12-17","fuel":"diesel","avg_price":1.143},{"date":"2001-12-17","fuel":"gasoline","avg_price":1.1470833333},{"date":"2001-12-24","fuel":"gasoline","avg_price":1.1550833333},{"date":"2001-12-24","fuel":"diesel","avg_price":1.154},{"date":"2001-12-31","fuel":"diesel","avg_price":1.169},{"date":"2001-12-31","fuel":"gasoline","avg_price":1.175},{"date":"2002-01-07","fuel":"diesel","avg_price":1.168},{"date":"2002-01-07","fuel":"gasoline","avg_price":1.1911666667},{"date":"2002-01-14","fuel":"diesel","avg_price":1.159},{"date":"2002-01-14","fuel":"gasoline","avg_price":1.1951666667},{"date":"2002-01-21","fuel":"diesel","avg_price":1.14},{"date":"2002-01-21","fuel":"gasoline","avg_price":1.191},{"date":"2002-01-28","fuel":"diesel","avg_price":1.144},{"date":"2002-01-28","fuel":"gasoline","avg_price":1.18775},{"date":"2002-02-04","fuel":"gasoline","avg_price":1.2014166667},{"date":"2002-02-04","fuel":"diesel","avg_price":1.144},{"date":"2002-02-11","fuel":"gasoline","avg_price":1.1946666667},{"date":"2002-02-11","fuel":"diesel","avg_price":1.153},{"date":"2002-02-18","fuel":"diesel","avg_price":1.156},{"date":"2002-02-18","fuel":"gasoline","avg_price":1.2049166667},{"date":"2002-02-25","fuel":"diesel","avg_price":1.154},{"date":"2002-02-25","fuel":"gasoline","avg_price":1.2063333333},{"date":"2002-03-04","fuel":"diesel","avg_price":1.173},{"date":"2002-03-04","fuel":"gasoline","avg_price":1.23225},{"date":"2002-03-11","fuel":"diesel","avg_price":1.216},{"date":"2002-03-11","fuel":"gasoline","avg_price":1.3095},{"date":"2002-03-18","fuel":"diesel","avg_price":1.251},{"date":"2002-03-18","fuel":"gasoline","avg_price":1.37525},{"date":"2002-03-25","fuel":"gasoline","avg_price":1.4305},{"date":"2002-03-25","fuel":"diesel","avg_price":1.281},{"date":"2002-04-01","fuel":"gasoline","avg_price":1.4621666667},{"date":"2002-04-01","fuel":"diesel","avg_price":1.295},{"date":"2002-04-08","fuel":"diesel","avg_price":1.323},{"date":"2002-04-08","fuel":"gasoline","avg_price":1.5031666667},{"date":"2002-04-15","fuel":"diesel","avg_price":1.32},{"date":"2002-04-15","fuel":"gasoline","avg_price":1.4981666667},{"date":"2002-04-22","fuel":"diesel","avg_price":1.304},{"date":"2002-04-22","fuel":"gasoline","avg_price":1.4981666667},{"date":"2002-04-29","fuel":"diesel","avg_price":1.302},{"date":"2002-04-29","fuel":"gasoline","avg_price":1.4885},{"date":"2002-05-06","fuel":"diesel","avg_price":1.305},{"date":"2002-05-06","fuel":"gasoline","avg_price":1.49},{"date":"2002-05-13","fuel":"diesel","avg_price":1.299},{"date":"2002-05-13","fuel":"gasoline","avg_price":1.4839166667},{"date":"2002-05-20","fuel":"gasoline","avg_price":1.4909166667},{"date":"2002-05-20","fuel":"diesel","avg_price":1.309},{"date":"2002-05-27","fuel":"diesel","avg_price":1.308},{"date":"2002-05-27","fuel":"gasoline","avg_price":1.4819166667},{"date":"2002-06-03","fuel":"diesel","avg_price":1.3},{"date":"2002-06-03","fuel":"gasoline","avg_price":1.4848333333},{"date":"2002-06-10","fuel":"diesel","avg_price":1.286},{"date":"2002-06-10","fuel":"gasoline","avg_price":1.47},{"date":"2002-06-17","fuel":"diesel","avg_price":1.275},{"date":"2002-06-17","fuel":"gasoline","avg_price":1.473},{"date":"2002-06-24","fuel":"diesel","avg_price":1.281},{"date":"2002-06-24","fuel":"gasoline","avg_price":1.47825},{"date":"2002-07-01","fuel":"gasoline","avg_price":1.4840833333},{"date":"2002-07-01","fuel":"diesel","avg_price":1.289},{"date":"2002-07-08","fuel":"diesel","avg_price":1.294},{"date":"2002-07-08","fuel":"gasoline","avg_price":1.4753333333},{"date":"2002-07-15","fuel":"diesel","avg_price":1.3},{"date":"2002-07-15","fuel":"gasoline","avg_price":1.4848333333},{"date":"2002-07-22","fuel":"diesel","avg_price":1.311},{"date":"2002-07-22","fuel":"gasoline","avg_price":1.4994166667},{"date":"2002-07-29","fuel":"diesel","avg_price":1.303},{"date":"2002-07-29","fuel":"gasoline","avg_price":1.4964166667},{"date":"2002-08-05","fuel":"diesel","avg_price":1.304},{"date":"2002-08-05","fuel":"gasoline","avg_price":1.48975},{"date":"2002-08-12","fuel":"gasoline","avg_price":1.487},{"date":"2002-08-12","fuel":"diesel","avg_price":1.303},{"date":"2002-08-19","fuel":"diesel","avg_price":1.333},{"date":"2002-08-19","fuel":"gasoline","avg_price":1.4855833333},{"date":"2002-08-26","fuel":"diesel","avg_price":1.37},{"date":"2002-08-26","fuel":"gasoline","avg_price":1.49675},{"date":"2002-09-02","fuel":"diesel","avg_price":1.388},{"date":"2002-09-02","fuel":"gasoline","avg_price":1.489},{"date":"2002-09-09","fuel":"diesel","avg_price":1.396},{"date":"2002-09-09","fuel":"gasoline","avg_price":1.4896666667},{"date":"2002-09-16","fuel":"diesel","avg_price":1.414},{"date":"2002-09-16","fuel":"gasoline","avg_price":1.4935},{"date":"2002-09-23","fuel":"diesel","avg_price":1.417},{"date":"2002-09-23","fuel":"gasoline","avg_price":1.4884166667},{"date":"2002-09-30","fuel":"diesel","avg_price":1.438},{"date":"2002-09-30","fuel":"gasoline","avg_price":1.5038333333},{"date":"2002-10-07","fuel":"gasoline","avg_price":1.526},{"date":"2002-10-07","fuel":"diesel","avg_price":1.46},{"date":"2002-10-14","fuel":"diesel","avg_price":1.461},{"date":"2002-10-14","fuel":"gasoline","avg_price":1.5265},{"date":"2002-10-21","fuel":"diesel","avg_price":1.469},{"date":"2002-10-21","fuel":"gasoline","avg_price":1.5418333333},{"date":"2002-10-28","fuel":"diesel","avg_price":1.456},{"date":"2002-10-28","fuel":"gasoline","avg_price":1.53},{"date":"2002-11-04","fuel":"diesel","avg_price":1.442},{"date":"2002-11-04","fuel":"gasoline","avg_price":1.5349166667},{"date":"2002-11-11","fuel":"diesel","avg_price":1.427},{"date":"2002-11-11","fuel":"gasoline","avg_price":1.5301666667},{"date":"2002-11-18","fuel":"gasoline","avg_price":1.5036666667},{"date":"2002-11-18","fuel":"diesel","avg_price":1.405},{"date":"2002-11-25","fuel":"diesel","avg_price":1.405},{"date":"2002-11-25","fuel":"gasoline","avg_price":1.4781666667},{"date":"2002-12-02","fuel":"diesel","avg_price":1.407},{"date":"2002-12-02","fuel":"gasoline","avg_price":1.4655833333},{"date":"2002-12-09","fuel":"diesel","avg_price":1.405},{"date":"2002-12-09","fuel":"gasoline","avg_price":1.46025},{"date":"2002-12-16","fuel":"diesel","avg_price":1.401},{"date":"2002-12-16","fuel":"gasoline","avg_price":1.462},{"date":"2002-12-23","fuel":"diesel","avg_price":1.44},{"date":"2002-12-23","fuel":"gasoline","avg_price":1.49375},{"date":"2002-12-30","fuel":"diesel","avg_price":1.491},{"date":"2002-12-30","fuel":"gasoline","avg_price":1.5318333333},{"date":"2003-01-06","fuel":"gasoline","avg_price":1.5385},{"date":"2003-01-06","fuel":"diesel","avg_price":1.501},{"date":"2003-01-13","fuel":"diesel","avg_price":1.478},{"date":"2003-01-13","fuel":"gasoline","avg_price":1.54725},{"date":"2003-01-20","fuel":"diesel","avg_price":1.48},{"date":"2003-01-20","fuel":"gasoline","avg_price":1.5548333333},{"date":"2003-01-27","fuel":"diesel","avg_price":1.492},{"date":"2003-01-27","fuel":"gasoline","avg_price":1.5669166667},{"date":"2003-02-03","fuel":"diesel","avg_price":1.542},{"date":"2003-02-03","fuel":"gasoline","avg_price":1.6178333333},{"date":"2003-02-10","fuel":"diesel","avg_price":1.662},{"date":"2003-02-10","fuel":"gasoline","avg_price":1.6974166667},{"date":"2003-02-17","fuel":"gasoline","avg_price":1.75},{"date":"2003-02-17","fuel":"diesel","avg_price":1.704},{"date":"2003-02-24","fuel":"gasoline","avg_price":1.7515833333},{"date":"2003-02-24","fuel":"diesel","avg_price":1.709},{"date":"2003-03-03","fuel":"diesel","avg_price":1.753},{"date":"2003-03-03","fuel":"gasoline","avg_price":1.7805833333},{"date":"2003-03-10","fuel":"diesel","avg_price":1.771},{"date":"2003-03-10","fuel":"gasoline","avg_price":1.8073333333},{"date":"2003-03-17","fuel":"diesel","avg_price":1.752},{"date":"2003-03-17","fuel":"gasoline","avg_price":1.8255833333},{"date":"2003-03-24","fuel":"diesel","avg_price":1.662},{"date":"2003-03-24","fuel":"gasoline","avg_price":1.7935},{"date":"2003-03-31","fuel":"diesel","avg_price":1.602},{"date":"2003-03-31","fuel":"gasoline","avg_price":1.7578333333},{"date":"2003-04-07","fuel":"gasoline","avg_price":1.739},{"date":"2003-04-07","fuel":"diesel","avg_price":1.554},{"date":"2003-04-14","fuel":"gasoline","avg_price":1.7065},{"date":"2003-04-14","fuel":"diesel","avg_price":1.539},{"date":"2003-04-21","fuel":"diesel","avg_price":1.529},{"date":"2003-04-21","fuel":"gasoline","avg_price":1.683},{"date":"2003-04-28","fuel":"diesel","avg_price":1.508},{"date":"2003-04-28","fuel":"gasoline","avg_price":1.6653333333},{"date":"2003-05-05","fuel":"diesel","avg_price":1.484},{"date":"2003-05-05","fuel":"gasoline","avg_price":1.6220833333},{"date":"2003-05-12","fuel":"diesel","avg_price":1.444},{"date":"2003-05-12","fuel":"gasoline","avg_price":1.5969166667},{"date":"2003-05-19","fuel":"diesel","avg_price":1.443},{"date":"2003-05-19","fuel":"gasoline","avg_price":1.597},{"date":"2003-05-26","fuel":"diesel","avg_price":1.434},{"date":"2003-05-26","fuel":"gasoline","avg_price":1.5835833333},{"date":"2003-06-02","fuel":"gasoline","avg_price":1.5686666667},{"date":"2003-06-02","fuel":"diesel","avg_price":1.423},{"date":"2003-06-09","fuel":"diesel","avg_price":1.422},{"date":"2003-06-09","fuel":"gasoline","avg_price":1.57975},{"date":"2003-06-16","fuel":"diesel","avg_price":1.432},{"date":"2003-06-16","fuel":"gasoline","avg_price":1.6100833333},{"date":"2003-06-23","fuel":"diesel","avg_price":1.423},{"date":"2003-06-23","fuel":"gasoline","avg_price":1.59225},{"date":"2003-06-30","fuel":"diesel","avg_price":1.42},{"date":"2003-06-30","fuel":"gasoline","avg_price":1.5835833333},{"date":"2003-07-07","fuel":"diesel","avg_price":1.428},{"date":"2003-07-07","fuel":"gasoline","avg_price":1.5844166667},{"date":"2003-07-14","fuel":"gasoline","avg_price":1.6138333333},{"date":"2003-07-14","fuel":"diesel","avg_price":1.435},{"date":"2003-07-21","fuel":"gasoline","avg_price":1.616},{"date":"2003-07-21","fuel":"diesel","avg_price":1.439},{"date":"2003-07-28","fuel":"diesel","avg_price":1.438},{"date":"2003-07-28","fuel":"gasoline","avg_price":1.60775},{"date":"2003-08-04","fuel":"diesel","avg_price":1.453},{"date":"2003-08-04","fuel":"gasoline","avg_price":1.6225833333},{"date":"2003-08-11","fuel":"diesel","avg_price":1.492},{"date":"2003-08-11","fuel":"gasoline","avg_price":1.6566666667},{"date":"2003-08-18","fuel":"diesel","avg_price":1.498},{"date":"2003-08-18","fuel":"gasoline","avg_price":1.7179166667},{"date":"2003-08-25","fuel":"diesel","avg_price":1.503},{"date":"2003-08-25","fuel":"gasoline","avg_price":1.8441666667},{"date":"2003-09-01","fuel":"diesel","avg_price":1.501},{"date":"2003-09-01","fuel":"gasoline","avg_price":1.8455},{"date":"2003-09-08","fuel":"gasoline","avg_price":1.82},{"date":"2003-09-08","fuel":"diesel","avg_price":1.488},{"date":"2003-09-15","fuel":"diesel","avg_price":1.471},{"date":"2003-09-15","fuel":"gasoline","avg_price":1.79925},{"date":"2003-09-22","fuel":"diesel","avg_price":1.444},{"date":"2003-09-22","fuel":"gasoline","avg_price":1.749},{"date":"2003-09-29","fuel":"diesel","avg_price":1.429},{"date":"2003-09-29","fuel":"gasoline","avg_price":1.7005833333},{"date":"2003-10-06","fuel":"diesel","avg_price":1.445},{"date":"2003-10-06","fuel":"gasoline","avg_price":1.68025},{"date":"2003-10-13","fuel":"diesel","avg_price":1.483},{"date":"2003-10-13","fuel":"gasoline","avg_price":1.6696666667},{"date":"2003-10-20","fuel":"gasoline","avg_price":1.6673333333},{"date":"2003-10-20","fuel":"diesel","avg_price":1.502},{"date":"2003-10-27","fuel":"diesel","avg_price":1.495},{"date":"2003-10-27","fuel":"gasoline","avg_price":1.6398333333},{"date":"2003-11-03","fuel":"diesel","avg_price":1.481},{"date":"2003-11-03","fuel":"gasoline","avg_price":1.6315833333},{"date":"2003-11-10","fuel":"diesel","avg_price":1.476},{"date":"2003-11-10","fuel":"gasoline","avg_price":1.6018333333},{"date":"2003-11-17","fuel":"diesel","avg_price":1.481},{"date":"2003-11-17","fuel":"gasoline","avg_price":1.5941666667},{"date":"2003-11-24","fuel":"diesel","avg_price":1.491},{"date":"2003-11-24","fuel":"gasoline","avg_price":1.60675},{"date":"2003-12-01","fuel":"diesel","avg_price":1.476},{"date":"2003-12-01","fuel":"gasoline","avg_price":1.5871666667},{"date":"2003-12-08","fuel":"gasoline","avg_price":1.5726666667},{"date":"2003-12-08","fuel":"diesel","avg_price":1.481},{"date":"2003-12-15","fuel":"diesel","avg_price":1.486},{"date":"2003-12-15","fuel":"gasoline","avg_price":1.56125},{"date":"2003-12-22","fuel":"diesel","avg_price":1.504},{"date":"2003-12-22","fuel":"gasoline","avg_price":1.5781666667},{"date":"2003-12-29","fuel":"diesel","avg_price":1.502},{"date":"2003-12-29","fuel":"gasoline","avg_price":1.5713333333},{"date":"2004-01-05","fuel":"diesel","avg_price":1.503},{"date":"2004-01-05","fuel":"gasoline","avg_price":1.5993333333},{"date":"2004-01-12","fuel":"diesel","avg_price":1.551},{"date":"2004-01-12","fuel":"gasoline","avg_price":1.6494166667},{"date":"2004-01-19","fuel":"gasoline","avg_price":1.6829166667},{"date":"2004-01-19","fuel":"diesel","avg_price":1.559},{"date":"2004-01-26","fuel":"diesel","avg_price":1.591},{"date":"2004-01-26","fuel":"gasoline","avg_price":1.711},{"date":"2004-02-02","fuel":"diesel","avg_price":1.581},{"date":"2004-02-02","fuel":"gasoline","avg_price":1.7094166667},{"date":"2004-02-09","fuel":"diesel","avg_price":1.568},{"date":"2004-02-09","fuel":"gasoline","avg_price":1.7310833333},{"date":"2004-02-16","fuel":"diesel","avg_price":1.584},{"date":"2004-02-16","fuel":"gasoline","avg_price":1.74075},{"date":"2004-02-23","fuel":"diesel","avg_price":1.595},{"date":"2004-02-23","fuel":"gasoline","avg_price":1.7856666667},{"date":"2004-03-01","fuel":"gasoline","avg_price":1.8166666667},{"date":"2004-03-01","fuel":"diesel","avg_price":1.619},{"date":"2004-03-08","fuel":"diesel","avg_price":1.628},{"date":"2004-03-08","fuel":"gasoline","avg_price":1.8374166667},{"date":"2004-03-15","fuel":"diesel","avg_price":1.617},{"date":"2004-03-15","fuel":"gasoline","avg_price":1.8249166667},{"date":"2004-03-22","fuel":"diesel","avg_price":1.641},{"date":"2004-03-22","fuel":"gasoline","avg_price":1.8415},{"date":"2004-03-29","fuel":"diesel","avg_price":1.642},{"date":"2004-03-29","fuel":"gasoline","avg_price":1.8549166667},{"date":"2004-04-05","fuel":"diesel","avg_price":1.648},{"date":"2004-04-05","fuel":"gasoline","avg_price":1.8768333333},{"date":"2004-04-12","fuel":"diesel","avg_price":1.679},{"date":"2004-04-12","fuel":"gasoline","avg_price":1.8833333333},{"date":"2004-04-19","fuel":"gasoline","avg_price":1.90625},{"date":"2004-04-19","fuel":"diesel","avg_price":1.724},{"date":"2004-04-26","fuel":"diesel","avg_price":1.718},{"date":"2004-04-26","fuel":"gasoline","avg_price":1.9049166667},{"date":"2004-05-03","fuel":"diesel","avg_price":1.717},{"date":"2004-05-03","fuel":"gasoline","avg_price":1.93375},{"date":"2004-05-10","fuel":"diesel","avg_price":1.745},{"date":"2004-05-10","fuel":"gasoline","avg_price":2.0290833333},{"date":"2004-05-17","fuel":"diesel","avg_price":1.763},{"date":"2004-05-17","fuel":"gasoline","avg_price":2.1054166667},{"date":"2004-05-24","fuel":"diesel","avg_price":1.761},{"date":"2004-05-24","fuel":"gasoline","avg_price":2.1555},{"date":"2004-05-31","fuel":"gasoline","avg_price":2.1475833333},{"date":"2004-05-31","fuel":"diesel","avg_price":1.746},{"date":"2004-06-07","fuel":"diesel","avg_price":1.734},{"date":"2004-06-07","fuel":"gasoline","avg_price":2.1325},{"date":"2004-06-14","fuel":"diesel","avg_price":1.711},{"date":"2004-06-14","fuel":"gasoline","avg_price":2.0908333333},{"date":"2004-06-21","fuel":"diesel","avg_price":1.7},{"date":"2004-06-21","fuel":"gasoline","avg_price":2.04575},{"date":"2004-06-28","fuel":"diesel","avg_price":1.7},{"date":"2004-06-28","fuel":"gasoline","avg_price":2.0275},{"date":"2004-07-05","fuel":"diesel","avg_price":1.716},{"date":"2004-07-05","fuel":"gasoline","avg_price":2.0013333333},{"date":"2004-07-12","fuel":"gasoline","avg_price":2.0170833333},{"date":"2004-07-12","fuel":"diesel","avg_price":1.74},{"date":"2004-07-19","fuel":"gasoline","avg_price":2.026},{"date":"2004-07-19","fuel":"diesel","avg_price":1.744},{"date":"2004-07-26","fuel":"diesel","avg_price":1.754},{"date":"2004-07-26","fuel":"gasoline","avg_price":2.004},{"date":"2004-08-02","fuel":"diesel","avg_price":1.78},{"date":"2004-08-02","fuel":"gasoline","avg_price":1.9855},{"date":"2004-08-09","fuel":"diesel","avg_price":1.814},{"date":"2004-08-09","fuel":"gasoline","avg_price":1.974},{"date":"2004-08-16","fuel":"diesel","avg_price":1.825},{"date":"2004-08-16","fuel":"gasoline","avg_price":1.9690833333},{"date":"2004-08-23","fuel":"diesel","avg_price":1.874},{"date":"2004-08-23","fuel":"gasoline","avg_price":1.9764166667},{"date":"2004-08-30","fuel":"gasoline","avg_price":1.9636666667},{"date":"2004-08-30","fuel":"diesel","avg_price":1.871},{"date":"2004-09-06","fuel":"diesel","avg_price":1.869},{"date":"2004-09-06","fuel":"gasoline","avg_price":1.9471666667},{"date":"2004-09-13","fuel":"diesel","avg_price":1.874},{"date":"2004-09-13","fuel":"gasoline","avg_price":1.9415},{"date":"2004-09-20","fuel":"diesel","avg_price":1.912},{"date":"2004-09-20","fuel":"gasoline","avg_price":1.9576666667},{"date":"2004-09-27","fuel":"diesel","avg_price":2.012},{"date":"2004-09-27","fuel":"gasoline","avg_price":2.00625},{"date":"2004-10-04","fuel":"diesel","avg_price":2.053},{"date":"2004-10-04","fuel":"gasoline","avg_price":2.03225},{"date":"2004-10-11","fuel":"diesel","avg_price":2.092},{"date":"2004-10-11","fuel":"gasoline","avg_price":2.09025},{"date":"2004-10-18","fuel":"diesel","avg_price":2.18},{"date":"2004-10-18","fuel":"gasoline","avg_price":2.135},{"date":"2004-10-25","fuel":"gasoline","avg_price":2.1330833333},{"date":"2004-10-25","fuel":"diesel","avg_price":2.212},{"date":"2004-11-01","fuel":"gasoline","avg_price":2.1336666667},{"date":"2004-11-01","fuel":"diesel","avg_price":2.206},{"date":"2004-11-08","fuel":"diesel","avg_price":2.163},{"date":"2004-11-08","fuel":"gasoline","avg_price":2.1045833333},{"date":"2004-11-15","fuel":"diesel","avg_price":2.132},{"date":"2004-11-15","fuel":"gasoline","avg_price":2.0746666667},{"date":"2004-11-22","fuel":"diesel","avg_price":2.116},{"date":"2004-11-22","fuel":"gasoline","avg_price":2.0511666667},{"date":"2004-11-29","fuel":"diesel","avg_price":2.116},{"date":"2004-11-29","fuel":"gasoline","avg_price":2.04525},{"date":"2004-12-06","fuel":"diesel","avg_price":2.069},{"date":"2004-12-06","fuel":"gasoline","avg_price":2.0135833333},{"date":"2004-12-13","fuel":"diesel","avg_price":1.997},{"date":"2004-12-13","fuel":"gasoline","avg_price":1.95375},{"date":"2004-12-20","fuel":"gasoline","avg_price":1.918},{"date":"2004-12-20","fuel":"diesel","avg_price":1.984},{"date":"2004-12-27","fuel":"diesel","avg_price":1.987},{"date":"2004-12-27","fuel":"gasoline","avg_price":1.8945833333},{"date":"2005-01-03","fuel":"diesel","avg_price":1.957},{"date":"2005-01-03","fuel":"gasoline","avg_price":1.8795833333},{"date":"2005-01-10","fuel":"diesel","avg_price":1.934},{"date":"2005-01-10","fuel":"gasoline","avg_price":1.8873333333},{"date":"2005-01-17","fuel":"diesel","avg_price":1.952},{"date":"2005-01-17","fuel":"gasoline","avg_price":1.91075},{"date":"2005-01-24","fuel":"diesel","avg_price":1.959},{"date":"2005-01-24","fuel":"gasoline","avg_price":1.9419166667},{"date":"2005-01-31","fuel":"gasoline","avg_price":1.999},{"date":"2005-01-31","fuel":"diesel","avg_price":1.992},{"date":"2005-02-07","fuel":"diesel","avg_price":1.983},{"date":"2005-02-07","fuel":"gasoline","avg_price":1.9995},{"date":"2005-02-14","fuel":"diesel","avg_price":1.986},{"date":"2005-02-14","fuel":"gasoline","avg_price":1.99025},{"date":"2005-02-21","fuel":"diesel","avg_price":2.02},{"date":"2005-02-21","fuel":"gasoline","avg_price":1.9981666667},{"date":"2005-02-28","fuel":"diesel","avg_price":2.118},{"date":"2005-02-28","fuel":"gasoline","avg_price":2.0178333333},{"date":"2005-03-07","fuel":"diesel","avg_price":2.168},{"date":"2005-03-07","fuel":"gasoline","avg_price":2.0865},{"date":"2005-03-14","fuel":"gasoline","avg_price":2.1434166667},{"date":"2005-03-14","fuel":"diesel","avg_price":2.194},{"date":"2005-03-21","fuel":"diesel","avg_price":2.244},{"date":"2005-03-21","fuel":"gasoline","avg_price":2.1928333333},{"date":"2005-03-28","fuel":"diesel","avg_price":2.249},{"date":"2005-03-28","fuel":"gasoline","avg_price":2.239},{"date":"2005-04-04","fuel":"diesel","avg_price":2.303},{"date":"2005-04-04","fuel":"gasoline","avg_price":2.3041666667},{"date":"2005-04-11","fuel":"diesel","avg_price":2.316},{"date":"2005-04-11","fuel":"gasoline","avg_price":2.3708333333},{"date":"2005-04-18","fuel":"diesel","avg_price":2.259},{"date":"2005-04-18","fuel":"gasoline","avg_price":2.3345833333},{"date":"2005-04-25","fuel":"diesel","avg_price":2.289},{"date":"2005-04-25","fuel":"gasoline","avg_price":2.3335},{"date":"2005-05-02","fuel":"gasoline","avg_price":2.3328333333},{"date":"2005-05-02","fuel":"diesel","avg_price":2.262},{"date":"2005-05-09","fuel":"diesel","avg_price":2.227},{"date":"2005-05-09","fuel":"gasoline","avg_price":2.2903333333},{"date":"2005-05-16","fuel":"diesel","avg_price":2.189},{"date":"2005-05-16","fuel":"gasoline","avg_price":2.26375},{"date":"2005-05-23","fuel":"diesel","avg_price":2.156},{"date":"2005-05-23","fuel":"gasoline","avg_price":2.2278333333},{"date":"2005-05-30","fuel":"diesel","avg_price":2.16},{"date":"2005-05-30","fuel":"gasoline","avg_price":2.1991666667},{"date":"2005-06-06","fuel":"diesel","avg_price":2.234},{"date":"2005-06-06","fuel":"gasoline","avg_price":2.21325},{"date":"2005-06-13","fuel":"gasoline","avg_price":2.2250833333},{"date":"2005-06-13","fuel":"diesel","avg_price":2.276},{"date":"2005-06-20","fuel":"diesel","avg_price":2.313},{"date":"2005-06-20","fuel":"gasoline","avg_price":2.2561666667},{"date":"2005-06-27","fuel":"diesel","avg_price":2.336},{"date":"2005-06-27","fuel":"gasoline","avg_price":2.3065},{"date":"2005-07-04","fuel":"diesel","avg_price":2.348},{"date":"2005-07-04","fuel":"gasoline","avg_price":2.3208333333},{"date":"2005-07-11","fuel":"diesel","avg_price":2.408},{"date":"2005-07-11","fuel":"gasoline","avg_price":2.4215},{"date":"2005-07-18","fuel":"diesel","avg_price":2.392},{"date":"2005-07-18","fuel":"gasoline","avg_price":2.4158333333},{"date":"2005-07-25","fuel":"gasoline","avg_price":2.394},{"date":"2005-07-25","fuel":"diesel","avg_price":2.342},{"date":"2005-08-01","fuel":"gasoline","avg_price":2.3951666667},{"date":"2005-08-01","fuel":"diesel","avg_price":2.348},{"date":"2005-08-08","fuel":"diesel","avg_price":2.407},{"date":"2005-08-08","fuel":"gasoline","avg_price":2.4658333333},{"date":"2005-08-15","fuel":"diesel","avg_price":2.567},{"date":"2005-08-15","fuel":"gasoline","avg_price":2.6425},{"date":"2005-08-22","fuel":"diesel","avg_price":2.588},{"date":"2005-08-22","fuel":"gasoline","avg_price":2.7038333333},{"date":"2005-08-29","fuel":"diesel","avg_price":2.59},{"date":"2005-08-29","fuel":"gasoline","avg_price":2.7031666667},{"date":"2005-09-05","fuel":"diesel","avg_price":2.898},{"date":"2005-09-05","fuel":"gasoline","avg_price":3.17175},{"date":"2005-09-12","fuel":"gasoline","avg_price":3.0609166667},{"date":"2005-09-12","fuel":"diesel","avg_price":2.847},{"date":"2005-09-19","fuel":"diesel","avg_price":2.732},{"date":"2005-09-19","fuel":"gasoline","avg_price":2.90075},{"date":"2005-09-26","fuel":"diesel","avg_price":2.798},{"date":"2005-09-26","fuel":"gasoline","avg_price":2.9080833333},{"date":"2005-10-03","fuel":"diesel","avg_price":3.144},{"date":"2005-10-03","fuel":"gasoline","avg_price":3.0210833333},{"date":"2005-10-10","fuel":"diesel","avg_price":3.15},{"date":"2005-10-10","fuel":"gasoline","avg_price":2.9484166667},{"date":"2005-10-17","fuel":"diesel","avg_price":3.148},{"date":"2005-10-17","fuel":"gasoline","avg_price":2.832},{"date":"2005-10-24","fuel":"diesel","avg_price":3.157},{"date":"2005-10-24","fuel":"gasoline","avg_price":2.71075},{"date":"2005-10-31","fuel":"diesel","avg_price":2.876},{"date":"2005-10-31","fuel":"gasoline","avg_price":2.5878333333},{"date":"2005-11-07","fuel":"gasoline","avg_price":2.4826666667},{"date":"2005-11-07","fuel":"diesel","avg_price":2.698},{"date":"2005-11-14","fuel":"diesel","avg_price":2.602},{"date":"2005-11-14","fuel":"gasoline","avg_price":2.39925},{"date":"2005-11-21","fuel":"diesel","avg_price":2.513},{"date":"2005-11-21","fuel":"gasoline","avg_price":2.3025833333},{"date":"2005-11-28","fuel":"diesel","avg_price":2.479},{"date":"2005-11-28","fuel":"gasoline","avg_price":2.2535833333},{"date":"2005-12-05","fuel":"diesel","avg_price":2.425},{"date":"2005-12-05","fuel":"gasoline","avg_price":2.24},{"date":"2005-12-12","fuel":"diesel","avg_price":2.436},{"date":"2005-12-12","fuel":"gasoline","avg_price":2.2729166667},{"date":"2005-12-19","fuel":"gasoline","avg_price":2.2985833333},{"date":"2005-12-19","fuel":"diesel","avg_price":2.462},{"date":"2005-12-26","fuel":"diesel","avg_price":2.448},{"date":"2005-12-26","fuel":"gasoline","avg_price":2.2854166667},{"date":"2006-01-02","fuel":"diesel","avg_price":2.442},{"date":"2006-01-02","fuel":"gasoline","avg_price":2.32275},{"date":"2006-01-09","fuel":"diesel","avg_price":2.485},{"date":"2006-01-09","fuel":"gasoline","avg_price":2.4150833333},{"date":"2006-01-16","fuel":"diesel","avg_price":2.449},{"date":"2006-01-16","fuel":"gasoline","avg_price":2.4175},{"date":"2006-01-23","fuel":"diesel","avg_price":2.472},{"date":"2006-01-23","fuel":"gasoline","avg_price":2.4330833333},{"date":"2006-01-30","fuel":"diesel","avg_price":2.489},{"date":"2006-01-30","fuel":"gasoline","avg_price":2.4538333333},{"date":"2006-02-06","fuel":"gasoline","avg_price":2.4425},{"date":"2006-02-06","fuel":"diesel","avg_price":2.499},{"date":"2006-02-13","fuel":"diesel","avg_price":2.476},{"date":"2006-02-13","fuel":"gasoline","avg_price":2.3883333333},{"date":"2006-02-20","fuel":"diesel","avg_price":2.455},{"date":"2006-02-20","fuel":"gasoline","avg_price":2.34125},{"date":"2006-02-27","fuel":"diesel","avg_price":2.471},{"date":"2006-02-27","fuel":"gasoline","avg_price":2.3454166667},{"date":"2006-03-06","fuel":"diesel","avg_price":2.545},{"date":"2006-03-06","fuel":"gasoline","avg_price":2.4161666667},{"date":"2006-03-13","fuel":"diesel","avg_price":2.543},{"date":"2006-03-13","fuel":"gasoline","avg_price":2.4521666667},{"date":"2006-03-20","fuel":"gasoline","avg_price":2.5919166667},{"date":"2006-03-20","fuel":"diesel","avg_price":2.581},{"date":"2006-03-27","fuel":"gasoline","avg_price":2.58975},{"date":"2006-03-27","fuel":"diesel","avg_price":2.565},{"date":"2006-04-03","fuel":"diesel","avg_price":2.617},{"date":"2006-04-03","fuel":"gasoline","avg_price":2.679},{"date":"2006-04-10","fuel":"diesel","avg_price":2.654},{"date":"2006-04-10","fuel":"gasoline","avg_price":2.7751666667},{"date":"2006-04-17","fuel":"diesel","avg_price":2.765},{"date":"2006-04-17","fuel":"gasoline","avg_price":2.87575},{"date":"2006-04-24","fuel":"diesel","avg_price":2.876},{"date":"2006-04-24","fuel":"gasoline","avg_price":3.01425},{"date":"2006-05-01","fuel":"diesel","avg_price":2.896},{"date":"2006-05-01","fuel":"gasoline","avg_price":3.0286666667},{"date":"2006-05-08","fuel":"gasoline","avg_price":3.026},{"date":"2006-05-08","fuel":"diesel","avg_price":2.897},{"date":"2006-05-15","fuel":"gasoline","avg_price":3.0613333333},{"date":"2006-05-15","fuel":"diesel","avg_price":2.92},{"date":"2006-05-22","fuel":"diesel","avg_price":2.888},{"date":"2006-05-22","fuel":"gasoline","avg_price":3.0135833333},{"date":"2006-05-29","fuel":"diesel","avg_price":2.882},{"date":"2006-05-29","fuel":"gasoline","avg_price":2.98525},{"date":"2006-06-05","fuel":"diesel","avg_price":2.89},{"date":"2006-06-05","fuel":"gasoline","avg_price":3.0086666667},{"date":"2006-06-12","fuel":"diesel","avg_price":2.918},{"date":"2006-06-12","fuel":"gasoline","avg_price":3.0198333333},{"date":"2006-06-19","fuel":"diesel","avg_price":2.915},{"date":"2006-06-19","fuel":"gasoline","avg_price":2.9880833333},{"date":"2006-06-26","fuel":"diesel","avg_price":2.867},{"date":"2006-06-26","fuel":"gasoline","avg_price":2.9829166667},{"date":"2006-07-03","fuel":"gasoline","avg_price":3.0421666667},{"date":"2006-07-03","fuel":"diesel","avg_price":2.898},{"date":"2006-07-10","fuel":"diesel","avg_price":2.918},{"date":"2006-07-10","fuel":"gasoline","avg_price":3.0805833333},{"date":"2006-07-17","fuel":"diesel","avg_price":2.926},{"date":"2006-07-17","fuel":"gasoline","avg_price":3.09625},{"date":"2006-07-24","fuel":"diesel","avg_price":2.946},{"date":"2006-07-24","fuel":"gasoline","avg_price":3.10925},{"date":"2006-07-31","fuel":"diesel","avg_price":2.98},{"date":"2006-07-31","fuel":"gasoline","avg_price":3.1105833333},{"date":"2006-08-07","fuel":"diesel","avg_price":3.055},{"date":"2006-08-07","fuel":"gasoline","avg_price":3.1380833333},{"date":"2006-08-14","fuel":"gasoline","avg_price":3.1065833333},{"date":"2006-08-14","fuel":"diesel","avg_price":3.065},{"date":"2006-08-21","fuel":"diesel","avg_price":3.033},{"date":"2006-08-21","fuel":"gasoline","avg_price":3.0330833333},{"date":"2006-08-28","fuel":"diesel","avg_price":3.027},{"date":"2006-08-28","fuel":"gasoline","avg_price":2.9561666667},{"date":"2006-09-04","fuel":"diesel","avg_price":2.967},{"date":"2006-09-04","fuel":"gasoline","avg_price":2.8425},{"date":"2006-09-11","fuel":"diesel","avg_price":2.857},{"date":"2006-09-11","fuel":"gasoline","avg_price":2.73825},{"date":"2006-09-18","fuel":"diesel","avg_price":2.713},{"date":"2006-09-18","fuel":"gasoline","avg_price":2.6185},{"date":"2006-09-25","fuel":"gasoline","avg_price":2.4983333333},{"date":"2006-09-25","fuel":"diesel","avg_price":2.595},{"date":"2006-10-02","fuel":"diesel","avg_price":2.546},{"date":"2006-10-02","fuel":"gasoline","avg_price":2.4245},{"date":"2006-10-09","fuel":"diesel","avg_price":2.506},{"date":"2006-10-09","fuel":"gasoline","avg_price":2.37075},{"date":"2006-10-16","fuel":"diesel","avg_price":2.503},{"date":"2006-10-16","fuel":"gasoline","avg_price":2.3316666667},{"date":"2006-10-23","fuel":"diesel","avg_price":2.524},{"date":"2006-10-23","fuel":"gasoline","avg_price":2.3078333333},{"date":"2006-10-30","fuel":"diesel","avg_price":2.517},{"date":"2006-10-30","fuel":"gasoline","avg_price":2.3133333333},{"date":"2006-11-06","fuel":"diesel","avg_price":2.506},{"date":"2006-11-06","fuel":"gasoline","avg_price":2.2950833333},{"date":"2006-11-13","fuel":"diesel","avg_price":2.552},{"date":"2006-11-13","fuel":"gasoline","avg_price":2.3283333333},{"date":"2006-11-20","fuel":"gasoline","avg_price":2.3375833333},{"date":"2006-11-20","fuel":"diesel","avg_price":2.553},{"date":"2006-11-27","fuel":"diesel","avg_price":2.567},{"date":"2006-11-27","fuel":"gasoline","avg_price":2.3456666667},{"date":"2006-12-04","fuel":"diesel","avg_price":2.618},{"date":"2006-12-04","fuel":"gasoline","avg_price":2.3929166667},{"date":"2006-12-11","fuel":"diesel","avg_price":2.621},{"date":"2006-12-11","fuel":"gasoline","avg_price":2.39325},{"date":"2006-12-18","fuel":"diesel","avg_price":2.606},{"date":"2006-12-18","fuel":"gasoline","avg_price":2.4204166667},{"date":"2006-12-25","fuel":"diesel","avg_price":2.596},{"date":"2006-12-25","fuel":"gasoline","avg_price":2.4443333333},{"date":"2007-01-01","fuel":"gasoline","avg_price":2.4400833333},{"date":"2007-01-01","fuel":"diesel","avg_price":2.58},{"date":"2007-01-08","fuel":"diesel","avg_price":2.537},{"date":"2007-01-08","fuel":"gasoline","avg_price":2.4170833333},{"date":"2007-01-15","fuel":"diesel","avg_price":2.463},{"date":"2007-01-15","fuel":"gasoline","avg_price":2.3470833333},{"date":"2007-01-22","fuel":"diesel","avg_price":2.43},{"date":"2007-01-22","fuel":"gasoline","avg_price":2.285},{"date":"2007-01-29","fuel":"diesel","avg_price":2.413},{"date":"2007-01-29","fuel":"gasoline","avg_price":2.2755},{"date":"2007-02-05","fuel":"diesel","avg_price":2.4256666667},{"date":"2007-02-05","fuel":"gasoline","avg_price":2.296},{"date":"2007-02-12","fuel":"diesel","avg_price":2.466},{"date":"2007-02-12","fuel":"gasoline","avg_price":2.3460833333},{"date":"2007-02-19","fuel":"gasoline","avg_price":2.3995833333},{"date":"2007-02-19","fuel":"diesel","avg_price":2.481},{"date":"2007-02-26","fuel":"diesel","avg_price":2.5423333333},{"date":"2007-02-26","fuel":"gasoline","avg_price":2.4864166667},{"date":"2007-03-05","fuel":"diesel","avg_price":2.6166666667},{"date":"2007-03-05","fuel":"gasoline","avg_price":2.6093333333},{"date":"2007-03-12","fuel":"diesel","avg_price":2.679},{"date":"2007-03-12","fuel":"gasoline","avg_price":2.6698333333},{"date":"2007-03-19","fuel":"diesel","avg_price":2.673},{"date":"2007-03-19","fuel":"gasoline","avg_price":2.6906666667},{"date":"2007-03-26","fuel":"diesel","avg_price":2.6666666667},{"date":"2007-03-26","fuel":"gasoline","avg_price":2.7228333333},{"date":"2007-04-02","fuel":"gasoline","avg_price":2.8213333333},{"date":"2007-04-02","fuel":"diesel","avg_price":2.7813333333},{"date":"2007-04-09","fuel":"gasoline","avg_price":2.9113333333},{"date":"2007-04-09","fuel":"diesel","avg_price":2.8306666667},{"date":"2007-04-16","fuel":"diesel","avg_price":2.8696666667},{"date":"2007-04-16","fuel":"gasoline","avg_price":2.9845833333},{"date":"2007-04-23","fuel":"diesel","avg_price":2.8416666667},{"date":"2007-04-23","fuel":"gasoline","avg_price":2.9815833333},{"date":"2007-04-30","fuel":"diesel","avg_price":2.796},{"date":"2007-04-30","fuel":"gasoline","avg_price":3.0775833333},{"date":"2007-05-07","fuel":"diesel","avg_price":2.7746666667},{"date":"2007-05-07","fuel":"gasoline","avg_price":3.1566666667},{"date":"2007-05-14","fuel":"diesel","avg_price":2.755},{"date":"2007-05-14","fuel":"gasoline","avg_price":3.1949166667},{"date":"2007-05-21","fuel":"gasoline","avg_price":3.2998333333},{"date":"2007-05-21","fuel":"diesel","avg_price":2.7883333333},{"date":"2007-05-28","fuel":"gasoline","avg_price":3.2950833333},{"date":"2007-05-28","fuel":"diesel","avg_price":2.8016666667},{"date":"2007-06-04","fuel":"diesel","avg_price":2.7833333333},{"date":"2007-06-04","fuel":"gasoline","avg_price":3.2505},{"date":"2007-06-11","fuel":"diesel","avg_price":2.774},{"date":"2007-06-11","fuel":"gasoline","avg_price":3.17925},{"date":"2007-06-18","fuel":"diesel","avg_price":2.7916666667},{"date":"2007-06-18","fuel":"gasoline","avg_price":3.1141666667},{"date":"2007-06-25","fuel":"diesel","avg_price":2.8226666667},{"date":"2007-06-25","fuel":"gasoline","avg_price":3.0856666667},{"date":"2007-07-02","fuel":"diesel","avg_price":2.8166666667},{"date":"2007-07-02","fuel":"gasoline","avg_price":3.0596666667},{"date":"2007-07-09","fuel":"diesel","avg_price":2.839},{"date":"2007-07-09","fuel":"gasoline","avg_price":3.0726666667},{"date":"2007-07-16","fuel":"gasoline","avg_price":3.1346666667},{"date":"2007-07-16","fuel":"diesel","avg_price":2.875},{"date":"2007-07-23","fuel":"diesel","avg_price":2.8736666667},{"date":"2007-07-23","fuel":"gasoline","avg_price":3.0573333333},{"date":"2007-07-30","fuel":"diesel","avg_price":2.872},{"date":"2007-07-30","fuel":"gasoline","avg_price":2.9830833333},{"date":"2007-08-06","fuel":"diesel","avg_price":2.8846666667},{"date":"2007-08-06","fuel":"gasoline","avg_price":2.9445},{"date":"2007-08-13","fuel":"diesel","avg_price":2.8326666667},{"date":"2007-08-13","fuel":"gasoline","avg_price":2.8753333333},{"date":"2007-08-20","fuel":"diesel","avg_price":2.8573333333},{"date":"2007-08-20","fuel":"gasoline","avg_price":2.8784166667},{"date":"2007-08-27","fuel":"gasoline","avg_price":2.8395833333},{"date":"2007-08-27","fuel":"diesel","avg_price":2.8523333333},{"date":"2007-09-03","fuel":"gasoline","avg_price":2.8755833333},{"date":"2007-09-03","fuel":"diesel","avg_price":2.8843333333},{"date":"2007-09-10","fuel":"diesel","avg_price":2.9156666667},{"date":"2007-09-10","fuel":"gasoline","avg_price":2.8976666667},{"date":"2007-09-17","fuel":"diesel","avg_price":2.9563333333},{"date":"2007-09-17","fuel":"gasoline","avg_price":2.8786666667},{"date":"2007-09-24","fuel":"diesel","avg_price":3.026},{"date":"2007-09-24","fuel":"gasoline","avg_price":2.9046666667},{"date":"2007-10-01","fuel":"diesel","avg_price":3.04},{"date":"2007-10-01","fuel":"gasoline","avg_price":2.8880833333},{"date":"2007-10-08","fuel":"diesel","avg_price":3.022},{"date":"2007-10-08","fuel":"gasoline","avg_price":2.87325},{"date":"2007-10-15","fuel":"diesel","avg_price":3.0226666667},{"date":"2007-10-15","fuel":"gasoline","avg_price":2.86825},{"date":"2007-10-22","fuel":"gasoline","avg_price":2.9268333333},{"date":"2007-10-22","fuel":"diesel","avg_price":3.0756666667},{"date":"2007-10-29","fuel":"diesel","avg_price":3.141},{"date":"2007-10-29","fuel":"gasoline","avg_price":2.97275},{"date":"2007-11-05","fuel":"diesel","avg_price":3.2913333333},{"date":"2007-11-05","fuel":"gasoline","avg_price":3.1065},{"date":"2007-11-12","fuel":"diesel","avg_price":3.4103333333},{"date":"2007-11-12","fuel":"gasoline","avg_price":3.2076666667},{"date":"2007-11-19","fuel":"diesel","avg_price":3.3896666667},{"date":"2007-11-19","fuel":"gasoline","avg_price":3.2023333333},{"date":"2007-11-26","fuel":"diesel","avg_price":3.4273333333},{"date":"2007-11-26","fuel":"gasoline","avg_price":3.2025833333},{"date":"2007-12-03","fuel":"gasoline","avg_price":3.17275},{"date":"2007-12-03","fuel":"diesel","avg_price":3.393},{"date":"2007-12-10","fuel":"diesel","avg_price":3.2963333333},{"date":"2007-12-10","fuel":"gasoline","avg_price":3.11825},{"date":"2007-12-17","fuel":"diesel","avg_price":3.2816666667},{"date":"2007-12-17","fuel":"gasoline","avg_price":3.1125},{"date":"2007-12-24","fuel":"diesel","avg_price":3.2846666667},{"date":"2007-12-24","fuel":"gasoline","avg_price":3.0951666667},{"date":"2007-12-31","fuel":"diesel","avg_price":3.3243333333},{"date":"2007-12-31","fuel":"gasoline","avg_price":3.1611666667},{"date":"2008-01-07","fuel":"diesel","avg_price":3.3546666667},{"date":"2008-01-07","fuel":"gasoline","avg_price":3.214},{"date":"2008-01-14","fuel":"diesel","avg_price":3.2986666667},{"date":"2008-01-14","fuel":"gasoline","avg_price":3.1775833333},{"date":"2008-01-21","fuel":"gasoline","avg_price":3.1298333333},{"date":"2008-01-21","fuel":"diesel","avg_price":3.2416666667},{"date":"2008-01-28","fuel":"diesel","avg_price":3.234},{"date":"2008-01-28","fuel":"gasoline","avg_price":3.0889166667},{"date":"2008-02-04","fuel":"diesel","avg_price":3.2593333333},{"date":"2008-02-04","fuel":"gasoline","avg_price":3.08375},{"date":"2008-02-11","fuel":"diesel","avg_price":3.258},{"date":"2008-02-11","fuel":"gasoline","avg_price":3.0645},{"date":"2008-02-18","fuel":"diesel","avg_price":3.3786666667},{"date":"2008-02-18","fuel":"gasoline","avg_price":3.1416666667},{"date":"2008-02-25","fuel":"diesel","avg_price":3.5403333333},{"date":"2008-02-25","fuel":"gasoline","avg_price":3.2320833333},{"date":"2008-03-03","fuel":"gasoline","avg_price":3.2688333333},{"date":"2008-03-03","fuel":"diesel","avg_price":3.6403333333},{"date":"2008-03-10","fuel":"diesel","avg_price":3.806},{"date":"2008-03-10","fuel":"gasoline","avg_price":3.3283333333},{"date":"2008-03-17","fuel":"diesel","avg_price":3.96},{"date":"2008-03-17","fuel":"gasoline","avg_price":3.3881666667},{"date":"2008-03-24","fuel":"diesel","avg_price":3.973},{"date":"2008-03-24","fuel":"gasoline","avg_price":3.3705},{"date":"2008-03-31","fuel":"diesel","avg_price":3.9416666667},{"date":"2008-03-31","fuel":"gasoline","avg_price":3.3976666667},{"date":"2008-04-07","fuel":"diesel","avg_price":3.932},{"date":"2008-04-07","fuel":"gasoline","avg_price":3.4386666667},{"date":"2008-04-14","fuel":"gasoline","avg_price":3.4974166667},{"date":"2008-04-14","fuel":"diesel","avg_price":4.0383333333},{"date":"2008-04-21","fuel":"diesel","avg_price":4.1216666667},{"date":"2008-04-21","fuel":"gasoline","avg_price":3.618},{"date":"2008-04-28","fuel":"diesel","avg_price":4.154},{"date":"2008-04-28","fuel":"gasoline","avg_price":3.7129166667},{"date":"2008-05-05","fuel":"diesel","avg_price":4.12},{"date":"2008-05-05","fuel":"gasoline","avg_price":3.72475},{"date":"2008-05-12","fuel":"diesel","avg_price":4.3113333333},{"date":"2008-05-12","fuel":"gasoline","avg_price":3.8268333333},{"date":"2008-05-19","fuel":"diesel","avg_price":4.4823333333},{"date":"2008-05-19","fuel":"gasoline","avg_price":3.8965},{"date":"2008-05-26","fuel":"diesel","avg_price":4.7043333333},{"date":"2008-05-26","fuel":"gasoline","avg_price":4.0405833333},{"date":"2008-06-02","fuel":"gasoline","avg_price":4.0870833333},{"date":"2008-06-02","fuel":"diesel","avg_price":4.6863333333},{"date":"2008-06-09","fuel":"diesel","avg_price":4.668},{"date":"2008-06-09","fuel":"gasoline","avg_price":4.1576666667},{"date":"2008-06-16","fuel":"diesel","avg_price":4.6666666667},{"date":"2008-06-16","fuel":"gasoline","avg_price":4.2085},{"date":"2008-06-23","fuel":"diesel","avg_price":4.6196666667},{"date":"2008-06-23","fuel":"gasoline","avg_price":4.2068333333},{"date":"2008-06-30","fuel":"diesel","avg_price":4.6186666667},{"date":"2008-06-30","fuel":"gasoline","avg_price":4.2181666667},{"date":"2008-07-07","fuel":"diesel","avg_price":4.712},{"date":"2008-07-07","fuel":"gasoline","avg_price":4.2355833333},{"date":"2008-07-14","fuel":"gasoline","avg_price":4.2320833333},{"date":"2008-07-14","fuel":"diesel","avg_price":4.7473333333},{"date":"2008-07-21","fuel":"diesel","avg_price":4.692},{"date":"2008-07-21","fuel":"gasoline","avg_price":4.1891666667},{"date":"2008-07-28","fuel":"diesel","avg_price":4.5763333333},{"date":"2008-07-28","fuel":"gasoline","avg_price":4.0839166667},{"date":"2008-08-04","fuel":"diesel","avg_price":4.4706666667},{"date":"2008-08-04","fuel":"gasoline","avg_price":4.0065833333},{"date":"2008-08-11","fuel":"diesel","avg_price":4.3203333333},{"date":"2008-08-11","fuel":"gasoline","avg_price":3.9318333333},{"date":"2008-08-18","fuel":"diesel","avg_price":4.176},{"date":"2008-08-18","fuel":"gasoline","avg_price":3.8578333333},{"date":"2008-08-25","fuel":"gasoline","avg_price":3.7986666667},{"date":"2008-08-25","fuel":"diesel","avg_price":4.114},{"date":"2008-09-01","fuel":"gasoline","avg_price":3.7900833333},{"date":"2008-09-01","fuel":"diesel","avg_price":4.0903333333},{"date":"2008-09-08","fuel":"diesel","avg_price":4.0233333333},{"date":"2008-09-08","fuel":"gasoline","avg_price":3.7563333333},{"date":"2008-09-15","fuel":"diesel","avg_price":3.997},{"date":"2008-09-15","fuel":"gasoline","avg_price":3.9248333333},{"date":"2008-09-22","fuel":"diesel","avg_price":3.9366666667},{"date":"2008-09-22","fuel":"gasoline","avg_price":3.81875},{"date":"2008-09-29","fuel":"diesel","avg_price":3.9383333333},{"date":"2008-09-29","fuel":"gasoline","avg_price":3.73675},{"date":"2008-10-06","fuel":"diesel","avg_price":3.8476666667},{"date":"2008-10-06","fuel":"gasoline","avg_price":3.598},{"date":"2008-10-13","fuel":"gasoline","avg_price":3.2870833333},{"date":"2008-10-13","fuel":"diesel","avg_price":3.6296666667},{"date":"2008-10-20","fuel":"diesel","avg_price":3.4456666667},{"date":"2008-10-20","fuel":"gasoline","avg_price":3.0535},{"date":"2008-10-27","fuel":"diesel","avg_price":3.259},{"date":"2008-10-27","fuel":"gasoline","avg_price":2.801},{"date":"2008-11-03","fuel":"diesel","avg_price":3.0606666667},{"date":"2008-11-03","fuel":"gasoline","avg_price":2.5434166667},{"date":"2008-11-10","fuel":"diesel","avg_price":2.9103333333},{"date":"2008-11-10","fuel":"gasoline","avg_price":2.3621666667},{"date":"2008-11-17","fuel":"diesel","avg_price":2.7766666667},{"date":"2008-11-17","fuel":"gasoline","avg_price":2.2063333333},{"date":"2008-11-24","fuel":"diesel","avg_price":2.637},{"date":"2008-11-24","fuel":"gasoline","avg_price":2.0235},{"date":"2008-12-01","fuel":"diesel","avg_price":2.5943333333},{"date":"2008-12-01","fuel":"gasoline","avg_price":1.9355833333},{"date":"2008-12-08","fuel":"diesel","avg_price":2.519},{"date":"2008-12-08","fuel":"gasoline","avg_price":1.8225833333},{"date":"2008-12-15","fuel":"diesel","avg_price":2.426},{"date":"2008-12-15","fuel":"gasoline","avg_price":1.7749166667},{"date":"2008-12-22","fuel":"gasoline","avg_price":1.7714166667},{"date":"2008-12-22","fuel":"diesel","avg_price":2.3695},{"date":"2008-12-29","fuel":"diesel","avg_price":2.331},{"date":"2008-12-29","fuel":"gasoline","avg_price":1.7331666667},{"date":"2009-01-05","fuel":"diesel","avg_price":2.295},{"date":"2009-01-05","fuel":"gasoline","avg_price":1.7925},{"date":"2009-01-12","fuel":"diesel","avg_price":2.319},{"date":"2009-01-12","fuel":"gasoline","avg_price":1.8889166667},{"date":"2009-01-19","fuel":"diesel","avg_price":2.3015},{"date":"2009-01-19","fuel":"gasoline","avg_price":1.9520833333},{"date":"2009-01-26","fuel":"diesel","avg_price":2.273},{"date":"2009-01-26","fuel":"gasoline","avg_price":1.9475833333},{"date":"2009-02-02","fuel":"gasoline","avg_price":2.0001666667},{"date":"2009-02-02","fuel":"diesel","avg_price":2.251},{"date":"2009-02-09","fuel":"diesel","avg_price":2.2245},{"date":"2009-02-09","fuel":"gasoline","avg_price":2.0380833333},{"date":"2009-02-16","fuel":"diesel","avg_price":2.1915},{"date":"2009-02-16","fuel":"gasoline","avg_price":2.0774166667},{"date":"2009-02-23","fuel":"diesel","avg_price":2.134},{"date":"2009-02-23","fuel":"gasoline","avg_price":2.029},{"date":"2009-03-02","fuel":"diesel","avg_price":2.091},{"date":"2009-03-02","fuel":"gasoline","avg_price":2.04775},{"date":"2009-03-09","fuel":"diesel","avg_price":2.048},{"date":"2009-03-09","fuel":"gasoline","avg_price":2.0509166667},{"date":"2009-03-16","fuel":"gasoline","avg_price":2.0240833333},{"date":"2009-03-16","fuel":"diesel","avg_price":2.02},{"date":"2009-03-23","fuel":"gasoline","avg_price":2.0690833333},{"date":"2009-03-23","fuel":"diesel","avg_price":2.0915},{"date":"2009-03-30","fuel":"diesel","avg_price":2.223},{"date":"2009-03-30","fuel":"gasoline","avg_price":2.1516666667},{"date":"2009-04-06","fuel":"diesel","avg_price":2.2305},{"date":"2009-04-06","fuel":"gasoline","avg_price":2.14875},{"date":"2009-04-13","fuel":"diesel","avg_price":2.2315},{"date":"2009-04-13","fuel":"gasoline","avg_price":2.1625833333},{"date":"2009-04-20","fuel":"diesel","avg_price":2.2235},{"date":"2009-04-20","fuel":"gasoline","avg_price":2.1716666667},{"date":"2009-04-27","fuel":"diesel","avg_price":2.204},{"date":"2009-04-27","fuel":"gasoline","avg_price":2.1639166667},{"date":"2009-05-04","fuel":"gasoline","avg_price":2.1895},{"date":"2009-05-04","fuel":"diesel","avg_price":2.1885},{"date":"2009-05-11","fuel":"diesel","avg_price":2.2195},{"date":"2009-05-11","fuel":"gasoline","avg_price":2.3448333333},{"date":"2009-05-18","fuel":"diesel","avg_price":2.234},{"date":"2009-05-18","fuel":"gasoline","avg_price":2.418},{"date":"2009-05-25","fuel":"diesel","avg_price":2.276},{"date":"2009-05-25","fuel":"gasoline","avg_price":2.5395},{"date":"2009-06-01","fuel":"diesel","avg_price":2.353},{"date":"2009-06-01","fuel":"gasoline","avg_price":2.625},{"date":"2009-06-08","fuel":"diesel","avg_price":2.4995},{"date":"2009-06-08","fuel":"gasoline","avg_price":2.727},{"date":"2009-06-15","fuel":"diesel","avg_price":2.5735},{"date":"2009-06-15","fuel":"gasoline","avg_price":2.7804166667},{"date":"2009-06-22","fuel":"gasoline","avg_price":2.8056666667},{"date":"2009-06-22","fuel":"diesel","avg_price":2.6175},{"date":"2009-06-29","fuel":"diesel","avg_price":2.61},{"date":"2009-06-29","fuel":"gasoline","avg_price":2.7625833333},{"date":"2009-07-06","fuel":"diesel","avg_price":2.596},{"date":"2009-07-06","fuel":"gasoline","avg_price":2.7340833333},{"date":"2009-07-13","fuel":"diesel","avg_price":2.544},{"date":"2009-07-13","fuel":"gasoline","avg_price":2.6543333333},{"date":"2009-07-20","fuel":"diesel","avg_price":2.4985},{"date":"2009-07-20","fuel":"gasoline","avg_price":2.5905833333},{"date":"2009-07-27","fuel":"diesel","avg_price":2.53},{"date":"2009-07-27","fuel":"gasoline","avg_price":2.6231666667},{"date":"2009-08-03","fuel":"gasoline","avg_price":2.6755833333},{"date":"2009-08-03","fuel":"diesel","avg_price":2.552},{"date":"2009-08-10","fuel":"diesel","avg_price":2.6265},{"date":"2009-08-10","fuel":"gasoline","avg_price":2.76725},{"date":"2009-08-17","fuel":"diesel","avg_price":2.654},{"date":"2009-08-17","fuel":"gasoline","avg_price":2.7614166667},{"date":"2009-08-24","fuel":"diesel","avg_price":2.67},{"date":"2009-08-24","fuel":"gasoline","avg_price":2.75225},{"date":"2009-08-31","fuel":"diesel","avg_price":2.6765},{"date":"2009-08-31","fuel":"gasoline","avg_price":2.7399166667},{"date":"2009-09-07","fuel":"diesel","avg_price":2.6485},{"date":"2009-09-07","fuel":"gasoline","avg_price":2.7181666667},{"date":"2009-09-14","fuel":"gasoline","avg_price":2.7104166667},{"date":"2009-09-14","fuel":"diesel","avg_price":2.636},{"date":"2009-09-21","fuel":"gasoline","avg_price":2.6855833333},{"date":"2009-09-21","fuel":"diesel","avg_price":2.624},{"date":"2009-09-28","fuel":"diesel","avg_price":2.6035},{"date":"2009-09-28","fuel":"gasoline","avg_price":2.6331666667},{"date":"2009-10-05","fuel":"diesel","avg_price":2.585},{"date":"2009-10-05","fuel":"gasoline","avg_price":2.6019166667},{"date":"2009-10-12","fuel":"diesel","avg_price":2.602},{"date":"2009-10-12","fuel":"gasoline","avg_price":2.6148333333},{"date":"2009-10-19","fuel":"diesel","avg_price":2.7065},{"date":"2009-10-19","fuel":"gasoline","avg_price":2.6908333333},{"date":"2009-10-26","fuel":"diesel","avg_price":2.803},{"date":"2009-10-26","fuel":"gasoline","avg_price":2.7878333333},{"date":"2009-11-02","fuel":"gasoline","avg_price":2.80825},{"date":"2009-11-02","fuel":"diesel","avg_price":2.8095},{"date":"2009-11-09","fuel":"diesel","avg_price":2.803},{"date":"2009-11-09","fuel":"gasoline","avg_price":2.78425},{"date":"2009-11-16","fuel":"diesel","avg_price":2.7925},{"date":"2009-11-16","fuel":"gasoline","avg_price":2.7516666667},{"date":"2009-11-23","fuel":"diesel","avg_price":2.7895},{"date":"2009-11-23","fuel":"gasoline","avg_price":2.7580833333},{"date":"2009-11-30","fuel":"diesel","avg_price":2.7775},{"date":"2009-11-30","fuel":"gasoline","avg_price":2.74875},{"date":"2009-12-07","fuel":"diesel","avg_price":2.7745},{"date":"2009-12-07","fuel":"gasoline","avg_price":2.7535833333},{"date":"2009-12-14","fuel":"diesel","avg_price":2.7505},{"date":"2009-12-14","fuel":"gasoline","avg_price":2.72225},{"date":"2009-12-21","fuel":"diesel","avg_price":2.7285},{"date":"2009-12-21","fuel":"gasoline","avg_price":2.7128333333},{"date":"2009-12-28","fuel":"gasoline","avg_price":2.7283333333},{"date":"2009-12-28","fuel":"diesel","avg_price":2.734},{"date":"2010-01-04","fuel":"diesel","avg_price":2.799},{"date":"2010-01-04","fuel":"gasoline","avg_price":2.7819166667},{"date":"2010-01-11","fuel":"diesel","avg_price":2.8805},{"date":"2010-01-11","fuel":"gasoline","avg_price":2.8648333333},{"date":"2010-01-18","fuel":"diesel","avg_price":2.872},{"date":"2010-01-18","fuel":"gasoline","avg_price":2.8563333333},{"date":"2010-01-25","fuel":"diesel","avg_price":2.8355},{"date":"2010-01-25","fuel":"gasoline","avg_price":2.8261666667},{"date":"2010-02-01","fuel":"diesel","avg_price":2.784},{"date":"2010-02-01","fuel":"gasoline","avg_price":2.784},{"date":"2010-02-08","fuel":"gasoline","avg_price":2.7740833333},{"date":"2010-02-08","fuel":"diesel","avg_price":2.772},{"date":"2010-02-15","fuel":"diesel","avg_price":2.7585},{"date":"2010-02-15","fuel":"gasoline","avg_price":2.7338333333},{"date":"2010-02-22","fuel":"diesel","avg_price":2.833},{"date":"2010-02-22","fuel":"gasoline","avg_price":2.7724166667},{"date":"2010-03-01","fuel":"diesel","avg_price":2.863},{"date":"2010-03-01","fuel":"gasoline","avg_price":2.8181666667},{"date":"2010-03-08","fuel":"diesel","avg_price":2.905},{"date":"2010-03-08","fuel":"gasoline","avg_price":2.864},{"date":"2010-03-15","fuel":"diesel","avg_price":2.925},{"date":"2010-03-15","fuel":"gasoline","avg_price":2.8996666667},{"date":"2010-03-22","fuel":"diesel","avg_price":2.9475},{"date":"2010-03-22","fuel":"gasoline","avg_price":2.92825},{"date":"2010-03-29","fuel":"gasoline","avg_price":2.91175},{"date":"2010-03-29","fuel":"diesel","avg_price":2.9405},{"date":"2010-04-05","fuel":"diesel","avg_price":3.016},{"date":"2010-04-05","fuel":"gasoline","avg_price":2.93575},{"date":"2010-04-12","fuel":"diesel","avg_price":3.071},{"date":"2010-04-12","fuel":"gasoline","avg_price":2.9665833333},{"date":"2010-04-19","fuel":"diesel","avg_price":3.076},{"date":"2010-04-19","fuel":"gasoline","avg_price":2.9691666667},{"date":"2010-04-26","fuel":"diesel","avg_price":3.08},{"date":"2010-04-26","fuel":"gasoline","avg_price":2.9620833333},{"date":"2010-05-03","fuel":"diesel","avg_price":3.124},{"date":"2010-05-03","fuel":"gasoline","avg_price":3.0093333333},{"date":"2010-05-10","fuel":"gasoline","avg_price":3.0193333333},{"date":"2010-05-10","fuel":"diesel","avg_price":3.129},{"date":"2010-05-17","fuel":"gasoline","avg_price":2.983},{"date":"2010-05-17","fuel":"diesel","avg_price":3.096},{"date":"2010-05-24","fuel":"diesel","avg_price":3.023},{"date":"2010-05-24","fuel":"gasoline","avg_price":2.9106666667},{"date":"2010-05-31","fuel":"diesel","avg_price":2.9815},{"date":"2010-05-31","fuel":"gasoline","avg_price":2.85425},{"date":"2010-06-07","fuel":"diesel","avg_price":2.9475},{"date":"2010-06-07","fuel":"gasoline","avg_price":2.8503333333},{"date":"2010-06-14","fuel":"diesel","avg_price":2.929},{"date":"2010-06-14","fuel":"gasoline","avg_price":2.8255},{"date":"2010-06-21","fuel":"diesel","avg_price":2.9615},{"date":"2010-06-21","fuel":"gasoline","avg_price":2.8619166667},{"date":"2010-06-28","fuel":"gasoline","avg_price":2.87475},{"date":"2010-06-28","fuel":"diesel","avg_price":2.9565},{"date":"2010-07-05","fuel":"gasoline","avg_price":2.8473333333},{"date":"2010-07-05","fuel":"diesel","avg_price":2.9245},{"date":"2010-07-12","fuel":"diesel","avg_price":2.9035},{"date":"2010-07-12","fuel":"gasoline","avg_price":2.84},{"date":"2010-07-19","fuel":"diesel","avg_price":2.899},{"date":"2010-07-19","fuel":"gasoline","avg_price":2.8430833333},{"date":"2010-07-26","fuel":"diesel","avg_price":2.919},{"date":"2010-07-26","fuel":"gasoline","avg_price":2.8665},{"date":"2010-08-02","fuel":"diesel","avg_price":2.928},{"date":"2010-08-02","fuel":"gasoline","avg_price":2.8558333333},{"date":"2010-08-09","fuel":"diesel","avg_price":2.991},{"date":"2010-08-09","fuel":"gasoline","avg_price":2.8999166667},{"date":"2010-08-16","fuel":"diesel","avg_price":2.979},{"date":"2010-08-16","fuel":"gasoline","avg_price":2.86625},{"date":"2010-08-23","fuel":"gasoline","avg_price":2.8288333333},{"date":"2010-08-23","fuel":"diesel","avg_price":2.957},{"date":"2010-08-30","fuel":"diesel","avg_price":2.938},{"date":"2010-08-30","fuel":"gasoline","avg_price":2.8029166667},{"date":"2010-09-06","fuel":"diesel","avg_price":2.931},{"date":"2010-09-06","fuel":"gasoline","avg_price":2.7980833333},{"date":"2010-09-13","fuel":"diesel","avg_price":2.943},{"date":"2010-09-13","fuel":"gasoline","avg_price":2.8306666667},{"date":"2010-09-20","fuel":"diesel","avg_price":2.96},{"date":"2010-09-20","fuel":"gasoline","avg_price":2.83275},{"date":"2010-09-27","fuel":"diesel","avg_price":2.951},{"date":"2010-09-27","fuel":"gasoline","avg_price":2.8078333333},{"date":"2010-10-04","fuel":"gasoline","avg_price":2.8433333333},{"date":"2010-10-04","fuel":"diesel","avg_price":3},{"date":"2010-10-11","fuel":"diesel","avg_price":3.066},{"date":"2010-10-11","fuel":"gasoline","avg_price":2.92875},{"date":"2010-10-18","fuel":"diesel","avg_price":3.073},{"date":"2010-10-18","fuel":"gasoline","avg_price":2.9503333333},{"date":"2010-10-25","fuel":"diesel","avg_price":3.067},{"date":"2010-10-25","fuel":"gasoline","avg_price":2.9365},{"date":"2010-11-01","fuel":"diesel","avg_price":3.067},{"date":"2010-11-01","fuel":"gasoline","avg_price":2.9285833333},{"date":"2010-11-08","fuel":"diesel","avg_price":3.116},{"date":"2010-11-08","fuel":"gasoline","avg_price":2.9778333333},{"date":"2010-11-15","fuel":"gasoline","avg_price":3.0080833333},{"date":"2010-11-15","fuel":"diesel","avg_price":3.184},{"date":"2010-11-22","fuel":"diesel","avg_price":3.171},{"date":"2010-11-22","fuel":"gasoline","avg_price":3},{"date":"2010-11-29","fuel":"diesel","avg_price":3.162},{"date":"2010-11-29","fuel":"gasoline","avg_price":2.9825833333},{"date":"2010-12-06","fuel":"diesel","avg_price":3.197},{"date":"2010-12-06","fuel":"gasoline","avg_price":3.0786666667},{"date":"2010-12-13","fuel":"diesel","avg_price":3.231},{"date":"2010-12-13","fuel":"gasoline","avg_price":3.1004166667},{"date":"2010-12-20","fuel":"diesel","avg_price":3.248},{"date":"2010-12-20","fuel":"gasoline","avg_price":3.10525},{"date":"2010-12-27","fuel":"diesel","avg_price":3.294},{"date":"2010-12-27","fuel":"gasoline","avg_price":3.1688333333},{"date":"2011-01-03","fuel":"diesel","avg_price":3.331},{"date":"2011-01-03","fuel":"gasoline","avg_price":3.1865},{"date":"2011-01-10","fuel":"gasoline","avg_price":3.2041666667},{"date":"2011-01-10","fuel":"diesel","avg_price":3.333},{"date":"2011-01-17","fuel":"diesel","avg_price":3.407},{"date":"2011-01-17","fuel":"gasoline","avg_price":3.2201666667},{"date":"2011-01-24","fuel":"diesel","avg_price":3.43},{"date":"2011-01-24","fuel":"gasoline","avg_price":3.2259166667},{"date":"2011-01-31","fuel":"diesel","avg_price":3.438},{"date":"2011-01-31","fuel":"gasoline","avg_price":3.2195},{"date":"2011-02-07","fuel":"diesel","avg_price":3.513},{"date":"2011-02-07","fuel":"gasoline","avg_price":3.2478333333},{"date":"2011-02-14","fuel":"diesel","avg_price":3.534},{"date":"2011-02-14","fuel":"gasoline","avg_price":3.2588333333},{"date":"2011-02-21","fuel":"gasoline","avg_price":3.3095},{"date":"2011-02-21","fuel":"diesel","avg_price":3.573},{"date":"2011-02-28","fuel":"diesel","avg_price":3.716},{"date":"2011-02-28","fuel":"gasoline","avg_price":3.4985833333},{"date":"2011-03-07","fuel":"diesel","avg_price":3.871},{"date":"2011-03-07","fuel":"gasoline","avg_price":3.6375833333},{"date":"2011-03-14","fuel":"diesel","avg_price":3.908},{"date":"2011-03-14","fuel":"gasoline","avg_price":3.6886666667},{"date":"2011-03-21","fuel":"diesel","avg_price":3.907},{"date":"2011-03-21","fuel":"gasoline","avg_price":3.6863333333},{"date":"2011-03-28","fuel":"diesel","avg_price":3.932},{"date":"2011-03-28","fuel":"gasoline","avg_price":3.7195},{"date":"2011-04-04","fuel":"diesel","avg_price":3.976},{"date":"2011-04-04","fuel":"gasoline","avg_price":3.8025},{"date":"2011-04-11","fuel":"gasoline","avg_price":3.909},{"date":"2011-04-11","fuel":"diesel","avg_price":4.078},{"date":"2011-04-18","fuel":"diesel","avg_price":4.105},{"date":"2011-04-18","fuel":"gasoline","avg_price":3.9649166667},{"date":"2011-04-25","fuel":"diesel","avg_price":4.098},{"date":"2011-04-25","fuel":"gasoline","avg_price":4.002},{"date":"2011-05-02","fuel":"diesel","avg_price":4.124},{"date":"2011-05-02","fuel":"gasoline","avg_price":4.0819166667},{"date":"2011-05-09","fuel":"diesel","avg_price":4.104},{"date":"2011-05-09","fuel":"gasoline","avg_price":4.08775},{"date":"2011-05-16","fuel":"diesel","avg_price":4.061},{"date":"2011-05-16","fuel":"gasoline","avg_price":4.0836666667},{"date":"2011-05-23","fuel":"gasoline","avg_price":3.9784166667},{"date":"2011-05-23","fuel":"diesel","avg_price":3.997},{"date":"2011-05-30","fuel":"gasoline","avg_price":3.91875},{"date":"2011-05-30","fuel":"diesel","avg_price":3.948},{"date":"2011-06-06","fuel":"diesel","avg_price":3.94},{"date":"2011-06-06","fuel":"gasoline","avg_price":3.8975},{"date":"2011-06-13","fuel":"diesel","avg_price":3.954},{"date":"2011-06-13","fuel":"gasoline","avg_price":3.8353333333},{"date":"2011-06-20","fuel":"diesel","avg_price":3.95},{"date":"2011-06-20","fuel":"gasoline","avg_price":3.7805833333},{"date":"2011-06-27","fuel":"diesel","avg_price":3.888},{"date":"2011-06-27","fuel":"gasoline","avg_price":3.7065833333},{"date":"2011-07-04","fuel":"diesel","avg_price":3.85},{"date":"2011-07-04","fuel":"gasoline","avg_price":3.7025},{"date":"2011-07-11","fuel":"gasoline","avg_price":3.7580833333},{"date":"2011-07-11","fuel":"diesel","avg_price":3.899},{"date":"2011-07-18","fuel":"gasoline","avg_price":3.7989166667},{"date":"2011-07-18","fuel":"diesel","avg_price":3.923},{"date":"2011-07-25","fuel":"diesel","avg_price":3.949},{"date":"2011-07-25","fuel":"gasoline","avg_price":3.8170833333},{"date":"2011-08-01","fuel":"diesel","avg_price":3.937},{"date":"2011-08-01","fuel":"gasoline","avg_price":3.8271666667},{"date":"2011-08-08","fuel":"diesel","avg_price":3.897},{"date":"2011-08-08","fuel":"gasoline","avg_price":3.79175},{"date":"2011-08-15","fuel":"diesel","avg_price":3.835},{"date":"2011-08-15","fuel":"gasoline","avg_price":3.7258333333},{"date":"2011-08-22","fuel":"diesel","avg_price":3.81},{"date":"2011-08-22","fuel":"gasoline","avg_price":3.70175},{"date":"2011-08-29","fuel":"diesel","avg_price":3.82},{"date":"2011-08-29","fuel":"gasoline","avg_price":3.7428333333},{"date":"2011-09-05","fuel":"gasoline","avg_price":3.7889166667},{"date":"2011-09-05","fuel":"diesel","avg_price":3.868},{"date":"2011-09-12","fuel":"diesel","avg_price":3.862},{"date":"2011-09-12","fuel":"gasoline","avg_price":3.7779166667},{"date":"2011-09-19","fuel":"diesel","avg_price":3.833},{"date":"2011-09-19","fuel":"gasoline","avg_price":3.7255},{"date":"2011-09-26","fuel":"diesel","avg_price":3.786},{"date":"2011-09-26","fuel":"gasoline","avg_price":3.6406666667},{"date":"2011-10-03","fuel":"diesel","avg_price":3.749},{"date":"2011-10-03","fuel":"gasoline","avg_price":3.5676666667},{"date":"2011-10-10","fuel":"diesel","avg_price":3.721},{"date":"2011-10-10","fuel":"gasoline","avg_price":3.5489166667},{"date":"2011-10-17","fuel":"gasoline","avg_price":3.6025},{"date":"2011-10-17","fuel":"diesel","avg_price":3.801},{"date":"2011-10-24","fuel":"gasoline","avg_price":3.5915},{"date":"2011-10-24","fuel":"diesel","avg_price":3.825},{"date":"2011-10-31","fuel":"diesel","avg_price":3.892},{"date":"2011-10-31","fuel":"gasoline","avg_price":3.5828333333},{"date":"2011-11-07","fuel":"diesel","avg_price":3.887},{"date":"2011-11-07","fuel":"gasoline","avg_price":3.5561666667},{"date":"2011-11-14","fuel":"diesel","avg_price":3.987},{"date":"2011-11-14","fuel":"gasoline","avg_price":3.56775},{"date":"2011-11-21","fuel":"diesel","avg_price":4.01},{"date":"2011-11-21","fuel":"gasoline","avg_price":3.5034166667},{"date":"2011-11-28","fuel":"diesel","avg_price":3.964},{"date":"2011-11-28","fuel":"gasoline","avg_price":3.447},{"date":"2011-12-05","fuel":"diesel","avg_price":3.931},{"date":"2011-12-05","fuel":"gasoline","avg_price":3.4248333333},{"date":"2011-12-12","fuel":"gasoline","avg_price":3.4170833333},{"date":"2011-12-12","fuel":"diesel","avg_price":3.894},{"date":"2011-12-19","fuel":"diesel","avg_price":3.828},{"date":"2011-12-19","fuel":"gasoline","avg_price":3.3644166667},{"date":"2011-12-26","fuel":"diesel","avg_price":3.791},{"date":"2011-12-26","fuel":"gasoline","avg_price":3.3875},{"date":"2012-01-02","fuel":"diesel","avg_price":3.783},{"date":"2012-01-02","fuel":"gasoline","avg_price":3.429},{"date":"2012-01-09","fuel":"diesel","avg_price":3.828},{"date":"2012-01-09","fuel":"gasoline","avg_price":3.513},{"date":"2012-01-16","fuel":"diesel","avg_price":3.854},{"date":"2012-01-16","fuel":"gasoline","avg_price":3.52275},{"date":"2012-01-23","fuel":"gasoline","avg_price":3.5246666667},{"date":"2012-01-23","fuel":"diesel","avg_price":3.848},{"date":"2012-01-30","fuel":"diesel","avg_price":3.85},{"date":"2012-01-30","fuel":"gasoline","avg_price":3.5743333333},{"date":"2012-02-06","fuel":"diesel","avg_price":3.856},{"date":"2012-02-06","fuel":"gasoline","avg_price":3.61375},{"date":"2012-02-13","fuel":"diesel","avg_price":3.943},{"date":"2012-02-13","fuel":"gasoline","avg_price":3.6596666667},{"date":"2012-02-20","fuel":"diesel","avg_price":3.96},{"date":"2012-02-20","fuel":"gasoline","avg_price":3.732},{"date":"2012-02-27","fuel":"diesel","avg_price":4.051},{"date":"2012-02-27","fuel":"gasoline","avg_price":3.8614166667},{"date":"2012-03-05","fuel":"diesel","avg_price":4.094},{"date":"2012-03-05","fuel":"gasoline","avg_price":3.9273333333},{"date":"2012-03-12","fuel":"gasoline","avg_price":3.964},{"date":"2012-03-12","fuel":"diesel","avg_price":4.123},{"date":"2012-03-19","fuel":"diesel","avg_price":4.142},{"date":"2012-03-19","fuel":"gasoline","avg_price":4.0018333333},{"date":"2012-03-26","fuel":"diesel","avg_price":4.147},{"date":"2012-03-26","fuel":"gasoline","avg_price":4.0504166667},{"date":"2012-04-02","fuel":"diesel","avg_price":4.142},{"date":"2012-04-02","fuel":"gasoline","avg_price":4.0706666667},{"date":"2012-04-09","fuel":"diesel","avg_price":4.148},{"date":"2012-04-09","fuel":"gasoline","avg_price":4.07175},{"date":"2012-04-16","fuel":"diesel","avg_price":4.127},{"date":"2012-04-16","fuel":"gasoline","avg_price":4.0521666667},{"date":"2012-04-23","fuel":"gasoline","avg_price":4.0058333333},{"date":"2012-04-23","fuel":"diesel","avg_price":4.085},{"date":"2012-04-30","fuel":"diesel","avg_price":4.073},{"date":"2012-04-30","fuel":"gasoline","avg_price":3.9668333333},{"date":"2012-05-07","fuel":"diesel","avg_price":4.057},{"date":"2012-05-07","fuel":"gasoline","avg_price":3.92975},{"date":"2012-05-14","fuel":"diesel","avg_price":4.004},{"date":"2012-05-14","fuel":"gasoline","avg_price":3.905},{"date":"2012-05-21","fuel":"diesel","avg_price":3.956},{"date":"2012-05-21","fuel":"gasoline","avg_price":3.8615},{"date":"2012-05-28","fuel":"diesel","avg_price":3.897},{"date":"2012-05-28","fuel":"gasoline","avg_price":3.8170833333},{"date":"2012-06-04","fuel":"gasoline","avg_price":3.7609166667},{"date":"2012-06-04","fuel":"diesel","avg_price":3.846},{"date":"2012-06-11","fuel":"diesel","avg_price":3.781},{"date":"2012-06-11","fuel":"gasoline","avg_price":3.7135833333},{"date":"2012-06-18","fuel":"diesel","avg_price":3.729},{"date":"2012-06-18","fuel":"gasoline","avg_price":3.6640833333},{"date":"2012-06-25","fuel":"diesel","avg_price":3.678},{"date":"2012-06-25","fuel":"gasoline","avg_price":3.5713333333},{"date":"2012-07-02","fuel":"diesel","avg_price":3.648},{"date":"2012-07-02","fuel":"gasoline","avg_price":3.4944166667},{"date":"2012-07-09","fuel":"diesel","avg_price":3.683},{"date":"2012-07-09","fuel":"gasoline","avg_price":3.5433333333},{"date":"2012-07-16","fuel":"diesel","avg_price":3.695},{"date":"2012-07-16","fuel":"gasoline","avg_price":3.5616666667},{"date":"2012-07-23","fuel":"gasoline","avg_price":3.6311666667},{"date":"2012-07-23","fuel":"diesel","avg_price":3.783},{"date":"2012-07-30","fuel":"diesel","avg_price":3.796},{"date":"2012-07-30","fuel":"gasoline","avg_price":3.6438333333},{"date":"2012-08-06","fuel":"diesel","avg_price":3.85},{"date":"2012-08-06","fuel":"gasoline","avg_price":3.76925},{"date":"2012-08-13","fuel":"diesel","avg_price":3.965},{"date":"2012-08-13","fuel":"gasoline","avg_price":3.8539166667},{"date":"2012-08-20","fuel":"diesel","avg_price":4.026},{"date":"2012-08-20","fuel":"gasoline","avg_price":3.8799166667},{"date":"2012-08-27","fuel":"diesel","avg_price":4.089},{"date":"2012-08-27","fuel":"gasoline","avg_price":3.9118333333},{"date":"2012-09-03","fuel":"gasoline","avg_price":3.974},{"date":"2012-09-03","fuel":"diesel","avg_price":4.127},{"date":"2012-09-10","fuel":"diesel","avg_price":4.132},{"date":"2012-09-10","fuel":"gasoline","avg_price":3.9806666667},{"date":"2012-09-17","fuel":"diesel","avg_price":4.135},{"date":"2012-09-17","fuel":"gasoline","avg_price":4.012},{"date":"2012-09-24","fuel":"diesel","avg_price":4.086},{"date":"2012-09-24","fuel":"gasoline","avg_price":3.9665833333},{"date":"2012-10-01","fuel":"diesel","avg_price":4.079},{"date":"2012-10-01","fuel":"gasoline","avg_price":3.94525},{"date":"2012-10-08","fuel":"diesel","avg_price":4.094},{"date":"2012-10-08","fuel":"gasoline","avg_price":4.0136666667},{"date":"2012-10-15","fuel":"gasoline","avg_price":3.98625},{"date":"2012-10-15","fuel":"diesel","avg_price":4.15},{"date":"2012-10-22","fuel":"gasoline","avg_price":3.8585},{"date":"2012-10-22","fuel":"diesel","avg_price":4.116},{"date":"2012-10-29","fuel":"diesel","avg_price":4.03},{"date":"2012-10-29","fuel":"gasoline","avg_price":3.7351666667},{"date":"2012-11-05","fuel":"diesel","avg_price":4.01},{"date":"2012-11-05","fuel":"gasoline","avg_price":3.6595833333},{"date":"2012-11-12","fuel":"diesel","avg_price":3.98},{"date":"2012-11-12","fuel":"gasoline","avg_price":3.6109166667},{"date":"2012-11-19","fuel":"diesel","avg_price":3.976},{"date":"2012-11-19","fuel":"gasoline","avg_price":3.5866666667},{"date":"2012-11-26","fuel":"diesel","avg_price":4.034},{"date":"2012-11-26","fuel":"gasoline","avg_price":3.5889166667},{"date":"2012-12-03","fuel":"gasoline","avg_price":3.5489166667},{"date":"2012-12-03","fuel":"diesel","avg_price":4.027},{"date":"2012-12-10","fuel":"diesel","avg_price":3.991},{"date":"2012-12-10","fuel":"gasoline","avg_price":3.5030833333},{"date":"2012-12-17","fuel":"diesel","avg_price":3.945},{"date":"2012-12-17","fuel":"gasoline","avg_price":3.4101666667},{"date":"2012-12-24","fuel":"diesel","avg_price":3.923},{"date":"2012-12-24","fuel":"gasoline","avg_price":3.4134166667},{"date":"2012-12-31","fuel":"diesel","avg_price":3.918},{"date":"2012-12-31","fuel":"gasoline","avg_price":3.4539166667},{"date":"2013-01-07","fuel":"diesel","avg_price":3.911},{"date":"2013-01-07","fuel":"gasoline","avg_price":3.4639166667},{"date":"2013-01-14","fuel":"diesel","avg_price":3.894},{"date":"2013-01-14","fuel":"gasoline","avg_price":3.469},{"date":"2013-01-21","fuel":"diesel","avg_price":3.902},{"date":"2013-01-21","fuel":"gasoline","avg_price":3.4744166667},{"date":"2013-01-28","fuel":"diesel","avg_price":3.927},{"date":"2013-01-28","fuel":"gasoline","avg_price":3.5135},{"date":"2013-02-04","fuel":"gasoline","avg_price":3.6901666667},{"date":"2013-02-04","fuel":"diesel","avg_price":4.022},{"date":"2013-02-11","fuel":"diesel","avg_price":4.104},{"date":"2013-02-11","fuel":"gasoline","avg_price":3.7646666667},{"date":"2013-02-18","fuel":"diesel","avg_price":4.157},{"date":"2013-02-18","fuel":"gasoline","avg_price":3.8923333333},{"date":"2013-02-25","fuel":"diesel","avg_price":4.159},{"date":"2013-02-25","fuel":"gasoline","avg_price":3.9339166667},{"date":"2013-03-04","fuel":"diesel","avg_price":4.13},{"date":"2013-03-04","fuel":"gasoline","avg_price":3.91},{"date":"2013-03-11","fuel":"diesel","avg_price":4.088},{"date":"2013-03-11","fuel":"gasoline","avg_price":3.86525},{"date":"2013-03-18","fuel":"gasoline","avg_price":3.8494166667},{"date":"2013-03-18","fuel":"diesel","avg_price":4.047},{"date":"2013-03-25","fuel":"diesel","avg_price":4.006},{"date":"2013-03-25","fuel":"gasoline","avg_price":3.8305833333},{"date":"2013-04-01","fuel":"diesel","avg_price":3.993},{"date":"2013-04-01","fuel":"gasoline","avg_price":3.8023333333},{"date":"2013-04-08","fuel":"diesel","avg_price":3.977},{"date":"2013-04-08","fuel":"gasoline","avg_price":3.7638333333},{"date":"2013-04-15","fuel":"diesel","avg_price":3.942},{"date":"2013-04-15","fuel":"gasoline","avg_price":3.7015},{"date":"2013-04-22","fuel":"diesel","avg_price":3.887},{"date":"2013-04-22","fuel":"gasoline","avg_price":3.688},{"date":"2013-04-29","fuel":"diesel","avg_price":3.851},{"date":"2013-04-29","fuel":"gasoline","avg_price":3.6716666667},{"date":"2013-05-06","fuel":"gasoline","avg_price":3.6834166667},{"date":"2013-05-06","fuel":"diesel","avg_price":3.845},{"date":"2013-05-13","fuel":"diesel","avg_price":3.866},{"date":"2013-05-13","fuel":"gasoline","avg_price":3.74425},{"date":"2013-05-20","fuel":"diesel","avg_price":3.89},{"date":"2013-05-20","fuel":"gasoline","avg_price":3.7975},{"date":"2013-05-27","fuel":"diesel","avg_price":3.88},{"date":"2013-05-27","fuel":"gasoline","avg_price":3.7765833333},{"date":"2013-06-03","fuel":"diesel","avg_price":3.869},{"date":"2013-06-03","fuel":"gasoline","avg_price":3.7738333333},{"date":"2013-06-10","fuel":"diesel","avg_price":3.849},{"date":"2013-06-10","fuel":"gasoline","avg_price":3.78475},{"date":"2013-06-17","fuel":"gasoline","avg_price":3.7660833333},{"date":"2013-06-17","fuel":"diesel","avg_price":3.841},{"date":"2013-06-24","fuel":"gasoline","avg_price":3.7355},{"date":"2013-06-24","fuel":"diesel","avg_price":3.838},{"date":"2013-07-01","fuel":"diesel","avg_price":3.817},{"date":"2013-07-01","fuel":"gasoline","avg_price":3.6634166667},{"date":"2013-07-08","fuel":"diesel","avg_price":3.828},{"date":"2013-07-08","fuel":"gasoline","avg_price":3.65675},{"date":"2013-07-15","fuel":"diesel","avg_price":3.867},{"date":"2013-07-15","fuel":"gasoline","avg_price":3.7924166667},{"date":"2013-07-22","fuel":"diesel","avg_price":3.903},{"date":"2013-07-22","fuel":"gasoline","avg_price":3.8378333333},{"date":"2013-07-29","fuel":"diesel","avg_price":3.915},{"date":"2013-07-29","fuel":"gasoline","avg_price":3.80725},{"date":"2013-08-05","fuel":"gasoline","avg_price":3.78775},{"date":"2013-08-05","fuel":"diesel","avg_price":3.909},{"date":"2013-08-12","fuel":"gasoline","avg_price":3.7235833333},{"date":"2013-08-12","fuel":"diesel","avg_price":3.896},{"date":"2013-08-19","fuel":"diesel","avg_price":3.9},{"date":"2013-08-19","fuel":"gasoline","avg_price":3.7071666667},{"date":"2013-08-26","fuel":"diesel","avg_price":3.913},{"date":"2013-08-26","fuel":"gasoline","avg_price":3.70625},{"date":"2013-09-02","fuel":"diesel","avg_price":3.981},{"date":"2013-09-02","fuel":"gasoline","avg_price":3.754},{"date":"2013-09-09","fuel":"diesel","avg_price":3.981},{"date":"2013-09-09","fuel":"gasoline","avg_price":3.7398333333},{"date":"2013-09-16","fuel":"diesel","avg_price":3.974},{"date":"2013-09-16","fuel":"gasoline","avg_price":3.7113333333},{"date":"2013-09-23","fuel":"diesel","avg_price":3.949},{"date":"2013-09-23","fuel":"gasoline","avg_price":3.6588333333},{"date":"2013-09-30","fuel":"gasoline","avg_price":3.59425},{"date":"2013-09-30","fuel":"diesel","avg_price":3.919},{"date":"2013-10-07","fuel":"diesel","avg_price":3.897},{"date":"2013-10-07","fuel":"gasoline","avg_price":3.53525},{"date":"2013-10-14","fuel":"diesel","avg_price":3.886},{"date":"2013-10-14","fuel":"gasoline","avg_price":3.52225},{"date":"2013-10-21","fuel":"diesel","avg_price":3.886},{"date":"2013-10-21","fuel":"gasoline","avg_price":3.5230833333},{"date":"2013-10-28","fuel":"diesel","avg_price":3.87},{"date":"2013-10-28","fuel":"gasoline","avg_price":3.4666666667},{"date":"2013-11-04","fuel":"diesel","avg_price":3.857},{"date":"2013-11-04","fuel":"gasoline","avg_price":3.43525},{"date":"2013-11-11","fuel":"gasoline","avg_price":3.3709166667},{"date":"2013-11-11","fuel":"diesel","avg_price":3.832},{"date":"2013-11-18","fuel":"gasoline","avg_price":3.3919166667},{"date":"2013-11-18","fuel":"diesel","avg_price":3.822},{"date":"2013-11-25","fuel":"diesel","avg_price":3.844},{"date":"2013-11-25","fuel":"gasoline","avg_price":3.4623333333},{"date":"2013-12-02","fuel":"diesel","avg_price":3.883},{"date":"2013-12-02","fuel":"gasoline","avg_price":3.4495},{"date":"2013-12-09","fuel":"diesel","avg_price":3.879},{"date":"2013-12-09","fuel":"gasoline","avg_price":3.44625},{"date":"2013-12-16","fuel":"diesel","avg_price":3.871},{"date":"2013-12-16","fuel":"gasoline","avg_price":3.4215},{"date":"2013-12-23","fuel":"diesel","avg_price":3.873},{"date":"2013-12-23","fuel":"gasoline","avg_price":3.45025},{"date":"2013-12-30","fuel":"diesel","avg_price":3.903},{"date":"2013-12-30","fuel":"gasoline","avg_price":3.5034166667},{"date":"2014-01-06","fuel":"gasoline","avg_price":3.5093333333},{"date":"2014-01-06","fuel":"diesel","avg_price":3.91},{"date":"2014-01-13","fuel":"diesel","avg_price":3.886},{"date":"2014-01-13","fuel":"gasoline","avg_price":3.4998333333},{"date":"2014-01-20","fuel":"diesel","avg_price":3.873},{"date":"2014-01-20","fuel":"gasoline","avg_price":3.4701666667},{"date":"2014-01-27","fuel":"diesel","avg_price":3.904},{"date":"2014-01-27","fuel":"gasoline","avg_price":3.4669166667},{"date":"2014-02-03","fuel":"diesel","avg_price":3.951},{"date":"2014-02-03","fuel":"gasoline","avg_price":3.46375},{"date":"2014-02-10","fuel":"diesel","avg_price":3.977},{"date":"2014-02-10","fuel":"gasoline","avg_price":3.479},{"date":"2014-02-17","fuel":"gasoline","avg_price":3.5475},{"date":"2014-02-17","fuel":"diesel","avg_price":3.989},{"date":"2014-02-24","fuel":"diesel","avg_price":4.017},{"date":"2014-02-24","fuel":"gasoline","avg_price":3.60675},{"date":"2014-03-03","fuel":"diesel","avg_price":4.016},{"date":"2014-03-03","fuel":"gasoline","avg_price":3.64175},{"date":"2014-03-10","fuel":"diesel","avg_price":4.021},{"date":"2014-03-10","fuel":"gasoline","avg_price":3.6708333333},{"date":"2014-03-17","fuel":"diesel","avg_price":4.003},{"date":"2014-03-17","fuel":"gasoline","avg_price":3.706},{"date":"2014-03-24","fuel":"diesel","avg_price":3.988},{"date":"2014-03-24","fuel":"gasoline","avg_price":3.7111666667},{"date":"2014-03-31","fuel":"gasoline","avg_price":3.7381666667},{"date":"2014-03-31","fuel":"diesel","avg_price":3.975},{"date":"2014-04-07","fuel":"diesel","avg_price":3.959},{"date":"2014-04-07","fuel":"gasoline","avg_price":3.7605},{"date":"2014-04-14","fuel":"diesel","avg_price":3.952},{"date":"2014-04-14","fuel":"gasoline","avg_price":3.816},{"date":"2014-04-21","fuel":"diesel","avg_price":3.971},{"date":"2014-04-21","fuel":"gasoline","avg_price":3.85025},{"date":"2014-04-28","fuel":"diesel","avg_price":3.975},{"date":"2014-04-28","fuel":"gasoline","avg_price":3.8839166667},{"date":"2014-05-05","fuel":"diesel","avg_price":3.964},{"date":"2014-05-05","fuel":"gasoline","avg_price":3.85875},{"date":"2014-05-12","fuel":"diesel","avg_price":3.948},{"date":"2014-05-12","fuel":"gasoline","avg_price":3.8420833333},{"date":"2014-05-19","fuel":"gasoline","avg_price":3.8385833333},{"date":"2014-05-19","fuel":"diesel","avg_price":3.934},{"date":"2014-05-26","fuel":"diesel","avg_price":3.925},{"date":"2014-05-26","fuel":"gasoline","avg_price":3.84325},{"date":"2014-06-02","fuel":"diesel","avg_price":3.918},{"date":"2014-06-02","fuel":"gasoline","avg_price":3.8565833333},{"date":"2014-06-09","fuel":"diesel","avg_price":3.892},{"date":"2014-06-09","fuel":"gasoline","avg_price":3.8398333333},{"date":"2014-06-16","fuel":"diesel","avg_price":3.882},{"date":"2014-06-16","fuel":"gasoline","avg_price":3.85},{"date":"2014-06-23","fuel":"diesel","avg_price":3.919},{"date":"2014-06-23","fuel":"gasoline","avg_price":3.8686666667},{"date":"2014-06-30","fuel":"gasoline","avg_price":3.8699166667},{"date":"2014-06-30","fuel":"diesel","avg_price":3.92},{"date":"2014-07-07","fuel":"gasoline","avg_price":3.8475},{"date":"2014-07-07","fuel":"diesel","avg_price":3.913},{"date":"2014-07-14","fuel":"diesel","avg_price":3.894},{"date":"2014-07-14","fuel":"gasoline","avg_price":3.80875},{"date":"2014-07-21","fuel":"diesel","avg_price":3.869},{"date":"2014-07-21","fuel":"gasoline","avg_price":3.7668333333},{"date":"2014-07-28","fuel":"diesel","avg_price":3.858},{"date":"2014-07-28","fuel":"gasoline","avg_price":3.7155833333},{"date":"2014-08-04","fuel":"diesel","avg_price":3.853},{"date":"2014-08-04","fuel":"gasoline","avg_price":3.6915},{"date":"2014-08-11","fuel":"diesel","avg_price":3.843},{"date":"2014-08-11","fuel":"gasoline","avg_price":3.6748333333},{"date":"2014-08-18","fuel":"diesel","avg_price":3.835},{"date":"2014-08-18","fuel":"gasoline","avg_price":3.64375},{"date":"2014-08-25","fuel":"gasoline","avg_price":3.6246666667},{"date":"2014-08-25","fuel":"diesel","avg_price":3.821},{"date":"2014-09-01","fuel":"diesel","avg_price":3.814},{"date":"2014-09-01","fuel":"gasoline","avg_price":3.6250833333},{"date":"2014-09-08","fuel":"diesel","avg_price":3.814},{"date":"2014-09-08","fuel":"gasoline","avg_price":3.6225},{"date":"2014-09-15","fuel":"diesel","avg_price":3.801},{"date":"2014-09-15","fuel":"gasoline","avg_price":3.5761666667},{"date":"2014-09-22","fuel":"diesel","avg_price":3.778},{"date":"2014-09-22","fuel":"gasoline","avg_price":3.5251666667},{"date":"2014-09-29","fuel":"diesel","avg_price":3.755},{"date":"2014-09-29","fuel":"gasoline","avg_price":3.5249166667},{"date":"2014-10-06","fuel":"gasoline","avg_price":3.4766666667},{"date":"2014-10-06","fuel":"diesel","avg_price":3.733},{"date":"2014-10-13","fuel":"diesel","avg_price":3.698},{"date":"2014-10-13","fuel":"gasoline","avg_price":3.3915},{"date":"2014-10-20","fuel":"diesel","avg_price":3.656},{"date":"2014-10-20","fuel":"gasoline","avg_price":3.3021666667},{"date":"2014-10-27","fuel":"diesel","avg_price":3.635},{"date":"2014-10-27","fuel":"gasoline","avg_price":3.2323333333},{"date":"2014-11-03","fuel":"diesel","avg_price":3.623},{"date":"2014-11-03","fuel":"gasoline","avg_price":3.17},{"date":"2014-11-10","fuel":"diesel","avg_price":3.677},{"date":"2014-11-10","fuel":"gasoline","avg_price":3.116},{"date":"2014-11-17","fuel":"gasoline","avg_price":3.0705833333},{"date":"2014-11-17","fuel":"diesel","avg_price":3.661},{"date":"2014-11-24","fuel":"gasoline","avg_price":3.0020833333},{"date":"2014-11-24","fuel":"diesel","avg_price":3.628},{"date":"2014-12-01","fuel":"diesel","avg_price":3.605},{"date":"2014-12-01","fuel":"gasoline","avg_price":2.9605},{"date":"2014-12-08","fuel":"diesel","avg_price":3.535},{"date":"2014-12-08","fuel":"gasoline","avg_price":2.8666666667},{"date":"2014-12-15","fuel":"diesel","avg_price":3.419},{"date":"2014-12-15","fuel":"gasoline","avg_price":2.74625},{"date":"2014-12-22","fuel":"diesel","avg_price":3.281},{"date":"2014-12-22","fuel":"gasoline","avg_price":2.6041666667},{"date":"2014-12-29","fuel":"diesel","avg_price":3.213},{"date":"2014-12-29","fuel":"gasoline","avg_price":2.5036666667},{"date":"2015-01-05","fuel":"gasoline","avg_price":2.42375},{"date":"2015-01-05","fuel":"diesel","avg_price":3.137},{"date":"2015-01-12","fuel":"diesel","avg_price":3.053},{"date":"2015-01-12","fuel":"gasoline","avg_price":2.3450833333},{"date":"2015-01-19","fuel":"diesel","avg_price":2.933},{"date":"2015-01-19","fuel":"gasoline","avg_price":2.2650833333},{"date":"2015-01-26","fuel":"diesel","avg_price":2.866},{"date":"2015-01-26","fuel":"gasoline","avg_price":2.2385833333},{"date":"2015-02-02","fuel":"diesel","avg_price":2.831},{"date":"2015-02-02","fuel":"gasoline","avg_price":2.2544166667},{"date":"2015-02-09","fuel":"diesel","avg_price":2.835},{"date":"2015-02-09","fuel":"gasoline","avg_price":2.3746666667},{"date":"2015-02-16","fuel":"diesel","avg_price":2.865},{"date":"2015-02-16","fuel":"gasoline","avg_price":2.45975},{"date":"2015-02-23","fuel":"gasoline","avg_price":2.5195833333},{"date":"2015-02-23","fuel":"diesel","avg_price":2.9},{"date":"2015-03-02","fuel":"gasoline","avg_price":2.67225},{"date":"2015-03-02","fuel":"diesel","avg_price":2.936},{"date":"2015-03-09","fuel":"diesel","avg_price":2.944},{"date":"2015-03-09","fuel":"gasoline","avg_price":2.6890833333},{"date":"2015-03-16","fuel":"diesel","avg_price":2.917},{"date":"2015-03-16","fuel":"gasoline","avg_price":2.65525},{"date":"2015-03-23","fuel":"diesel","avg_price":2.864},{"date":"2015-03-23","fuel":"gasoline","avg_price":2.6515833333},{"date":"2015-03-30","fuel":"diesel","avg_price":2.824},{"date":"2015-03-30","fuel":"gasoline","avg_price":2.64325},{"date":"2015-04-06","fuel":"diesel","avg_price":2.784},{"date":"2015-04-06","fuel":"gasoline","avg_price":2.6116666667},{"date":"2015-04-13","fuel":"diesel","avg_price":2.754},{"date":"2015-04-13","fuel":"gasoline","avg_price":2.6054166667},{"date":"2015-04-20","fuel":"gasoline","avg_price":2.6794166667},{"date":"2015-04-20","fuel":"diesel","avg_price":2.78},{"date":"2015-04-27","fuel":"diesel","avg_price":2.811},{"date":"2015-04-27","fuel":"gasoline","avg_price":2.776},{"date":"2015-05-04","fuel":"diesel","avg_price":2.854},{"date":"2015-05-04","fuel":"gasoline","avg_price":2.8776666667},{"date":"2015-05-11","fuel":"diesel","avg_price":2.878},{"date":"2015-05-11","fuel":"gasoline","avg_price":2.9048333333},{"date":"2015-05-18","fuel":"diesel","avg_price":2.904},{"date":"2015-05-18","fuel":"gasoline","avg_price":2.95325},{"date":"2015-05-25","fuel":"diesel","avg_price":2.914},{"date":"2015-05-25","fuel":"gasoline","avg_price":2.9800833333},{"date":"2015-06-01","fuel":"gasoline","avg_price":2.9816666667},{"date":"2015-06-01","fuel":"diesel","avg_price":2.909},{"date":"2015-06-08","fuel":"diesel","avg_price":2.884},{"date":"2015-06-08","fuel":"gasoline","avg_price":2.9790833333},{"date":"2015-06-15","fuel":"diesel","avg_price":2.87},{"date":"2015-06-15","fuel":"gasoline","avg_price":3.0245833333},{"date":"2015-06-22","fuel":"diesel","avg_price":2.859},{"date":"2015-06-22","fuel":"gasoline","avg_price":3.0031666667},{"date":"2015-06-29","fuel":"diesel","avg_price":2.843},{"date":"2015-06-29","fuel":"gasoline","avg_price":2.9933333333},{"date":"2015-07-06","fuel":"diesel","avg_price":2.832},{"date":"2015-07-06","fuel":"gasoline","avg_price":2.9863333333},{"date":"2015-07-13","fuel":"gasoline","avg_price":3.0495833333},{"date":"2015-07-13","fuel":"diesel","avg_price":2.814},{"date":"2015-07-20","fuel":"diesel","avg_price":2.782},{"date":"2015-07-20","fuel":"gasoline","avg_price":3.01825},{"date":"2015-07-27","fuel":"diesel","avg_price":2.723},{"date":"2015-07-27","fuel":"gasoline","avg_price":2.964},{"date":"2015-08-03","fuel":"diesel","avg_price":2.668},{"date":"2015-08-03","fuel":"gasoline","avg_price":2.9108333333},{"date":"2015-08-10","fuel":"diesel","avg_price":2.617},{"date":"2015-08-10","fuel":"gasoline","avg_price":2.8488333333},{"date":"2015-08-17","fuel":"diesel","avg_price":2.615},{"date":"2015-08-17","fuel":"gasoline","avg_price":2.9221666667},{"date":"2015-08-24","fuel":"diesel","avg_price":2.561},{"date":"2015-08-24","fuel":"gasoline","avg_price":2.8459166667},{"date":"2015-08-31","fuel":"gasoline","avg_price":2.7256666667},{"date":"2015-08-31","fuel":"diesel","avg_price":2.514},{"date":"2015-09-07","fuel":"diesel","avg_price":2.534},{"date":"2015-09-07","fuel":"gasoline","avg_price":2.6556666667},{"date":"2015-09-14","fuel":"diesel","avg_price":2.517},{"date":"2015-09-14","fuel":"gasoline","avg_price":2.5951666667},{"date":"2015-09-21","fuel":"diesel","avg_price":2.493},{"date":"2015-09-21","fuel":"gasoline","avg_price":2.5485833333},{"date":"2015-09-28","fuel":"diesel","avg_price":2.476},{"date":"2015-09-28","fuel":"gasoline","avg_price":2.5356666667},{"date":"2015-10-05","fuel":"diesel","avg_price":2.492},{"date":"2015-10-05","fuel":"gasoline","avg_price":2.52875},{"date":"2015-10-12","fuel":"gasoline","avg_price":2.5398333333},{"date":"2015-10-12","fuel":"diesel","avg_price":2.556},{"date":"2015-10-19","fuel":"diesel","avg_price":2.531},{"date":"2015-10-19","fuel":"gasoline","avg_price":2.4845833333},{"date":"2015-10-26","fuel":"diesel","avg_price":2.498},{"date":"2015-10-26","fuel":"gasoline","avg_price":2.4403333333},{"date":"2015-11-02","fuel":"diesel","avg_price":2.485},{"date":"2015-11-02","fuel":"gasoline","avg_price":2.43425},{"date":"2015-11-09","fuel":"diesel","avg_price":2.502},{"date":"2015-11-09","fuel":"gasoline","avg_price":2.45025},{"date":"2015-11-16","fuel":"diesel","avg_price":2.482},{"date":"2015-11-16","fuel":"gasoline","avg_price":2.40075},{"date":"2015-11-23","fuel":"gasoline","avg_price":2.3225},{"date":"2015-11-23","fuel":"diesel","avg_price":2.445},{"date":"2015-11-30","fuel":"gasoline","avg_price":2.2930833333},{"date":"2015-11-30","fuel":"diesel","avg_price":2.421},{"date":"2015-12-07","fuel":"diesel","avg_price":2.379},{"date":"2015-12-07","fuel":"gasoline","avg_price":2.2871666667},{"date":"2015-12-14","fuel":"diesel","avg_price":2.338},{"date":"2015-12-14","fuel":"gasoline","avg_price":2.2714166667},{"date":"2015-12-21","fuel":"diesel","avg_price":2.284},{"date":"2015-12-21","fuel":"gasoline","avg_price":2.2659166667},{"date":"2015-12-28","fuel":"diesel","avg_price":2.237},{"date":"2015-12-28","fuel":"gasoline","avg_price":2.2755},{"date":"2016-01-04","fuel":"diesel","avg_price":2.211},{"date":"2016-01-04","fuel":"gasoline","avg_price":2.2711666667},{"date":"2016-01-11","fuel":"gasoline","avg_price":2.2410833333},{"date":"2016-01-11","fuel":"diesel","avg_price":2.177},{"date":"2016-01-18","fuel":"diesel","avg_price":2.112},{"date":"2016-01-18","fuel":"gasoline","avg_price":2.15825},{"date":"2016-01-25","fuel":"diesel","avg_price":2.071},{"date":"2016-01-25","fuel":"gasoline","avg_price":2.1033333333},{"date":"2016-02-01","fuel":"diesel","avg_price":2.031},{"date":"2016-02-01","fuel":"gasoline","avg_price":2.0665833333},{"date":"2016-02-08","fuel":"diesel","avg_price":2.008},{"date":"2016-02-08","fuel":"gasoline","avg_price":2.0065},{"date":"2016-02-15","fuel":"diesel","avg_price":1.98},{"date":"2016-02-15","fuel":"gasoline","avg_price":1.9654166667},{"date":"2016-02-22","fuel":"diesel","avg_price":1.983},{"date":"2016-02-22","fuel":"gasoline","avg_price":1.9610833333},{"date":"2016-02-29","fuel":"diesel","avg_price":1.989},{"date":"2016-02-29","fuel":"gasoline","avg_price":2.0085},{"date":"2016-03-07","fuel":"gasoline","avg_price":2.0591666667},{"date":"2016-03-07","fuel":"diesel","avg_price":2.021},{"date":"2016-03-14","fuel":"diesel","avg_price":2.099},{"date":"2016-03-14","fuel":"gasoline","avg_price":2.1816666667},{"date":"2016-03-21","fuel":"diesel","avg_price":2.119},{"date":"2016-03-21","fuel":"gasoline","avg_price":2.2295},{"date":"2016-03-28","fuel":"diesel","avg_price":2.121},{"date":"2016-03-28","fuel":"gasoline","avg_price":2.29525},{"date":"2016-04-04","fuel":"diesel","avg_price":2.115},{"date":"2016-04-04","fuel":"gasoline","avg_price":2.3093333333},{"date":"2016-04-11","fuel":"diesel","avg_price":2.128},{"date":"2016-04-11","fuel":"gasoline","avg_price":2.2985833333},{"date":"2016-04-18","fuel":"gasoline","avg_price":2.3630833333},{"date":"2016-04-18","fuel":"diesel","avg_price":2.165},{"date":"2016-04-25","fuel":"diesel","avg_price":2.198},{"date":"2016-04-25","fuel":"gasoline","avg_price":2.3878333333},{"date":"2016-05-02","fuel":"diesel","avg_price":2.266},{"date":"2016-05-02","fuel":"gasoline","avg_price":2.4613333333},{"date":"2016-05-09","fuel":"diesel","avg_price":2.271},{"date":"2016-05-09","fuel":"gasoline","avg_price":2.448},{"date":"2016-05-16","fuel":"diesel","avg_price":2.297},{"date":"2016-05-16","fuel":"gasoline","avg_price":2.4648333333},{"date":"2016-05-23","fuel":"diesel","avg_price":2.357},{"date":"2016-05-23","fuel":"gasoline","avg_price":2.5193333333},{"date":"2016-05-30","fuel":"diesel","avg_price":2.382},{"date":"2016-05-30","fuel":"gasoline","avg_price":2.5528333333},{"date":"2016-06-06","fuel":"gasoline","avg_price":2.5924166667},{"date":"2016-06-06","fuel":"diesel","avg_price":2.407},{"date":"2016-06-13","fuel":"diesel","avg_price":2.431},{"date":"2016-06-13","fuel":"gasoline","avg_price":2.6095},{"date":"2016-06-20","fuel":"diesel","avg_price":2.426},{"date":"2016-06-20","fuel":"gasoline","avg_price":2.57025},{"date":"2016-06-27","fuel":"diesel","avg_price":2.426},{"date":"2016-06-27","fuel":"gasoline","avg_price":2.554},{"date":"2016-07-04","fuel":"diesel","avg_price":2.423},{"date":"2016-07-04","fuel":"gasoline","avg_price":2.5216666667},{"date":"2016-07-11","fuel":"diesel","avg_price":2.414},{"date":"2016-07-11","fuel":"gasoline","avg_price":2.48475},{"date":"2016-07-18","fuel":"gasoline","avg_price":2.46225},{"date":"2016-07-18","fuel":"diesel","avg_price":2.402},{"date":"2016-07-25","fuel":"gasoline","avg_price":2.4148333333},{"date":"2016-07-25","fuel":"diesel","avg_price":2.379},{"date":"2016-08-01","fuel":"diesel","avg_price":2.348},{"date":"2016-08-01","fuel":"gasoline","avg_price":2.3898333333},{"date":"2016-08-08","fuel":"diesel","avg_price":2.316},{"date":"2016-08-08","fuel":"gasoline","avg_price":2.37575},{"date":"2016-08-15","fuel":"diesel","avg_price":2.31},{"date":"2016-08-15","fuel":"gasoline","avg_price":2.3731666667},{"date":"2016-08-22","fuel":"diesel","avg_price":2.37},{"date":"2016-08-22","fuel":"gasoline","avg_price":2.41625},{"date":"2016-08-29","fuel":"diesel","avg_price":2.409},{"date":"2016-08-29","fuel":"gasoline","avg_price":2.4548333333},{"date":"2016-09-05","fuel":"gasoline","avg_price":2.4455833333},{"date":"2016-09-05","fuel":"diesel","avg_price":2.407},{"date":"2016-09-12","fuel":"gasoline","avg_price":2.43125},{"date":"2016-09-12","fuel":"diesel","avg_price":2.399},{"date":"2016-09-19","fuel":"diesel","avg_price":2.389},{"date":"2016-09-19","fuel":"gasoline","avg_price":2.4525833333},{"date":"2016-09-26","fuel":"diesel","avg_price":2.382},{"date":"2016-09-26","fuel":"gasoline","avg_price":2.455},{"date":"2016-10-03","fuel":"diesel","avg_price":2.389},{"date":"2016-10-03","fuel":"gasoline","avg_price":2.4759166667},{"date":"2016-10-10","fuel":"diesel","avg_price":2.445},{"date":"2016-10-10","fuel":"gasoline","avg_price":2.5001666667},{"date":"2016-10-17","fuel":"diesel","avg_price":2.481},{"date":"2016-10-17","fuel":"gasoline","avg_price":2.4879166667},{"date":"2016-10-24","fuel":"diesel","avg_price":2.478},{"date":"2016-10-24","fuel":"gasoline","avg_price":2.4775833333},{"date":"2016-10-31","fuel":"gasoline","avg_price":2.4675833333},{"date":"2016-10-31","fuel":"diesel","avg_price":2.479},{"date":"2016-11-07","fuel":"diesel","avg_price":2.47},{"date":"2016-11-07","fuel":"gasoline","avg_price":2.4754166667},{"date":"2016-11-14","fuel":"diesel","avg_price":2.443},{"date":"2016-11-14","fuel":"gasoline","avg_price":2.43125},{"date":"2016-11-21","fuel":"diesel","avg_price":2.421},{"date":"2016-11-21","fuel":"gasoline","avg_price":2.401},{"date":"2016-11-28","fuel":"diesel","avg_price":2.42},{"date":"2016-11-28","fuel":"gasoline","avg_price":2.3985833333},{"date":"2016-12-05","fuel":"diesel","avg_price":2.48},{"date":"2016-12-05","fuel":"gasoline","avg_price":2.449},{"date":"2016-12-12","fuel":"gasoline","avg_price":2.4711666667},{"date":"2016-12-12","fuel":"diesel","avg_price":2.493},{"date":"2016-12-19","fuel":"diesel","avg_price":2.527},{"date":"2016-12-19","fuel":"gasoline","avg_price":2.49825},{"date":"2016-12-26","fuel":"diesel","avg_price":2.54},{"date":"2016-12-26","fuel":"gasoline","avg_price":2.5386666667},{"date":"2017-01-02","fuel":"diesel","avg_price":2.586},{"date":"2017-01-02","fuel":"gasoline","avg_price":2.6046666667},{"date":"2017-01-09","fuel":"diesel","avg_price":2.597},{"date":"2017-01-09","fuel":"gasoline","avg_price":2.61675},{"date":"2017-01-16","fuel":"diesel","avg_price":2.585},{"date":"2017-01-16","fuel":"gasoline","avg_price":2.58775},{"date":"2017-01-23","fuel":"gasoline","avg_price":2.56},{"date":"2017-01-23","fuel":"diesel","avg_price":2.569},{"date":"2017-01-30","fuel":"diesel","avg_price":2.562},{"date":"2017-01-30","fuel":"gasoline","avg_price":2.5350833333},{"date":"2017-02-06","fuel":"diesel","avg_price":2.558},{"date":"2017-02-06","fuel":"gasoline","avg_price":2.5325},{"date":"2017-02-13","fuel":"diesel","avg_price":2.565},{"date":"2017-02-13","fuel":"gasoline","avg_price":2.54775},{"date":"2017-02-20","fuel":"diesel","avg_price":2.572},{"date":"2017-02-20","fuel":"gasoline","avg_price":2.5439166667},{"date":"2017-02-27","fuel":"diesel","avg_price":2.577},{"date":"2017-02-27","fuel":"gasoline","avg_price":2.5585},{"date":"2017-03-06","fuel":"diesel","avg_price":2.579},{"date":"2017-03-06","fuel":"gasoline","avg_price":2.5819166667},{"date":"2017-03-13","fuel":"diesel","avg_price":2.564},{"date":"2017-03-13","fuel":"gasoline","avg_price":2.5659166667},{"date":"2017-03-20","fuel":"gasoline","avg_price":2.56525},{"date":"2017-03-20","fuel":"diesel","avg_price":2.539},{"date":"2017-03-27","fuel":"gasoline","avg_price":2.5618333333},{"date":"2017-03-27","fuel":"diesel","avg_price":2.532},{"date":"2017-04-03","fuel":"diesel","avg_price":2.556},{"date":"2017-04-03","fuel":"gasoline","avg_price":2.6004166667},{"date":"2017-04-10","fuel":"diesel","avg_price":2.582},{"date":"2017-04-10","fuel":"gasoline","avg_price":2.6600833333},{"date":"2017-04-17","fuel":"diesel","avg_price":2.597},{"date":"2017-04-17","fuel":"gasoline","avg_price":2.6749166667},{"date":"2017-04-24","fuel":"diesel","avg_price":2.595},{"date":"2017-04-24","fuel":"gasoline","avg_price":2.6858333333},{"date":"2017-05-01","fuel":"diesel","avg_price":2.583},{"date":"2017-05-01","fuel":"gasoline","avg_price":2.6525833333},{"date":"2017-05-08","fuel":"diesel","avg_price":2.565},{"date":"2017-05-08","fuel":"gasoline","avg_price":2.61625},{"date":"2017-05-15","fuel":"gasoline","avg_price":2.6148333333},{"date":"2017-05-15","fuel":"diesel","avg_price":2.544},{"date":"2017-05-22","fuel":"diesel","avg_price":2.539},{"date":"2017-05-22","fuel":"gasoline","avg_price":2.64425},{"date":"2017-05-29","fuel":"diesel","avg_price":2.571},{"date":"2017-05-29","fuel":"gasoline","avg_price":2.6515},{"date":"2017-06-05","fuel":"diesel","avg_price":2.564},{"date":"2017-06-05","fuel":"gasoline","avg_price":2.6581666667},{"date":"2017-06-12","fuel":"diesel","avg_price":2.524},{"date":"2017-06-12","fuel":"gasoline","avg_price":2.61375},{"date":"2017-06-19","fuel":"diesel","avg_price":2.489},{"date":"2017-06-19","fuel":"gasoline","avg_price":2.5715},{"date":"2017-06-26","fuel":"gasoline","avg_price":2.54175},{"date":"2017-06-26","fuel":"diesel","avg_price":2.465},{"date":"2017-07-03","fuel":"gasoline","avg_price":2.5163333333},{"date":"2017-07-03","fuel":"diesel","avg_price":2.472},{"date":"2017-07-10","fuel":"diesel","avg_price":2.481},{"date":"2017-07-10","fuel":"gasoline","avg_price":2.5458333333},{"date":"2017-07-17","fuel":"diesel","avg_price":2.491},{"date":"2017-07-17","fuel":"gasoline","avg_price":2.5284166667},{"date":"2017-07-24","fuel":"diesel","avg_price":2.507},{"date":"2017-07-24","fuel":"gasoline","avg_price":2.5604166667},{"date":"2017-07-31","fuel":"diesel","avg_price":2.531},{"date":"2017-07-31","fuel":"gasoline","avg_price":2.6000833333},{"date":"2017-08-07","fuel":"diesel","avg_price":2.581},{"date":"2017-08-07","fuel":"gasoline","avg_price":2.62575},{"date":"2017-08-14","fuel":"diesel","avg_price":2.598},{"date":"2017-08-14","fuel":"gasoline","avg_price":2.6303333333},{"date":"2017-08-21","fuel":"gasoline","avg_price":2.6093333333},{"date":"2017-08-21","fuel":"diesel","avg_price":2.596},{"date":"2017-08-28","fuel":"diesel","avg_price":2.605},{"date":"2017-08-28","fuel":"gasoline","avg_price":2.6433333333},{"date":"2017-09-04","fuel":"diesel","avg_price":2.758},{"date":"2017-09-04","fuel":"gasoline","avg_price":2.92375},{"date":"2017-09-11","fuel":"diesel","avg_price":2.802},{"date":"2017-09-11","fuel":"gasoline","avg_price":2.9299166667},{"date":"2017-09-18","fuel":"diesel","avg_price":2.791},{"date":"2017-09-18","fuel":"gasoline","avg_price":2.8819166667},{"date":"2017-09-25","fuel":"diesel","avg_price":2.788},{"date":"2017-09-25","fuel":"gasoline","avg_price":2.8330833333},{"date":"2017-10-02","fuel":"gasoline","avg_price":2.81325},{"date":"2017-10-02","fuel":"diesel","avg_price":2.792},{"date":"2017-10-09","fuel":"diesel","avg_price":2.776},{"date":"2017-10-09","fuel":"gasoline","avg_price":2.7553333333},{"date":"2017-10-16","fuel":"diesel","avg_price":2.787},{"date":"2017-10-16","fuel":"gasoline","avg_price":2.7374166667},{"date":"2017-10-23","fuel":"diesel","avg_price":2.797},{"date":"2017-10-23","fuel":"gasoline","avg_price":2.7245},{"date":"2017-10-30","fuel":"diesel","avg_price":2.819},{"date":"2017-10-30","fuel":"gasoline","avg_price":2.7345833333},{"date":"2017-11-06","fuel":"diesel","avg_price":2.882},{"date":"2017-11-06","fuel":"gasoline","avg_price":2.8086666667},{"date":"2017-11-13","fuel":"gasoline","avg_price":2.8403333333},{"date":"2017-11-13","fuel":"diesel","avg_price":2.915},{"date":"2017-11-20","fuel":"diesel","avg_price":2.912},{"date":"2017-11-20","fuel":"gasoline","avg_price":2.8186666667},{"date":"2017-11-27","fuel":"diesel","avg_price":2.926},{"date":"2017-11-27","fuel":"gasoline","avg_price":2.7854166667},{"date":"2017-12-04","fuel":"diesel","avg_price":2.922},{"date":"2017-12-04","fuel":"gasoline","avg_price":2.75475},{"date":"2017-12-11","fuel":"diesel","avg_price":2.91},{"date":"2017-12-11","fuel":"gasoline","avg_price":2.7375833333},{"date":"2017-12-18","fuel":"diesel","avg_price":2.901},{"date":"2017-12-18","fuel":"gasoline","avg_price":2.707},{"date":"2017-12-25","fuel":"diesel","avg_price":2.903},{"date":"2017-12-25","fuel":"gasoline","avg_price":2.72575},{"date":"2018-01-01","fuel":"gasoline","avg_price":2.7724166667},{"date":"2018-01-01","fuel":"diesel","avg_price":2.973},{"date":"2018-01-08","fuel":"diesel","avg_price":2.996},{"date":"2018-01-08","fuel":"gasoline","avg_price":2.77875},{"date":"2018-01-15","fuel":"diesel","avg_price":3.028},{"date":"2018-01-15","fuel":"gasoline","avg_price":2.8083333333},{"date":"2018-01-22","fuel":"diesel","avg_price":3.025},{"date":"2018-01-22","fuel":"gasoline","avg_price":2.8210833333},{"date":"2018-01-29","fuel":"diesel","avg_price":3.07},{"date":"2018-01-29","fuel":"gasoline","avg_price":2.8610833333},{"date":"2018-02-05","fuel":"diesel","avg_price":3.086},{"date":"2018-02-05","fuel":"gasoline","avg_price":2.8919166667},{"date":"2018-02-12","fuel":"gasoline","avg_price":2.8649166667},{"date":"2018-02-12","fuel":"diesel","avg_price":3.063},{"date":"2018-02-19","fuel":"gasoline","avg_price":2.8209166667},{"date":"2018-02-19","fuel":"diesel","avg_price":3.027},{"date":"2018-02-26","fuel":"diesel","avg_price":3.007},{"date":"2018-02-26","fuel":"gasoline","avg_price":2.81125},{"date":"2018-03-05","fuel":"diesel","avg_price":2.992},{"date":"2018-03-05","fuel":"gasoline","avg_price":2.8225833333},{"date":"2018-03-12","fuel":"diesel","avg_price":2.976},{"date":"2018-03-12","fuel":"gasoline","avg_price":2.8216666667},{"date":"2018-03-19","fuel":"diesel","avg_price":2.972},{"date":"2018-03-19","fuel":"gasoline","avg_price":2.8598333333},{"date":"2018-03-26","fuel":"diesel","avg_price":3.01},{"date":"2018-03-26","fuel":"gasoline","avg_price":2.9085833333},{"date":"2018-04-02","fuel":"diesel","avg_price":3.042},{"date":"2018-04-02","fuel":"gasoline","avg_price":2.96025},{"date":"2018-04-09","fuel":"gasoline","avg_price":2.9554166667},{"date":"2018-04-09","fuel":"diesel","avg_price":3.043},{"date":"2018-04-16","fuel":"diesel","avg_price":3.104},{"date":"2018-04-16","fuel":"gasoline","avg_price":3.00425},{"date":"2018-04-23","fuel":"diesel","avg_price":3.133},{"date":"2018-04-23","fuel":"gasoline","avg_price":3.0555833333},{"date":"2018-04-30","fuel":"diesel","avg_price":3.157},{"date":"2018-04-30","fuel":"gasoline","avg_price":3.1013333333},{"date":"2018-05-07","fuel":"diesel","avg_price":3.171},{"date":"2018-05-07","fuel":"gasoline","avg_price":3.10325},{"date":"2018-05-14","fuel":"diesel","avg_price":3.239},{"date":"2018-05-14","fuel":"gasoline","avg_price":3.1435833333},{"date":"2018-05-21","fuel":"gasoline","avg_price":3.1908333333},{"date":"2018-05-21","fuel":"diesel","avg_price":3.277},{"date":"2018-05-28","fuel":"diesel","avg_price":3.288},{"date":"2018-05-28","fuel":"gasoline","avg_price":3.2299166667},{"date":"2018-06-04","fuel":"diesel","avg_price":3.285},{"date":"2018-06-04","fuel":"gasoline","avg_price":3.2145833333},{"date":"2018-06-11","fuel":"diesel","avg_price":3.266},{"date":"2018-06-11","fuel":"gasoline","avg_price":3.1860833333},{"date":"2018-06-18","fuel":"diesel","avg_price":3.244},{"date":"2018-06-18","fuel":"gasoline","avg_price":3.1563333333},{"date":"2018-06-25","fuel":"diesel","avg_price":3.216},{"date":"2018-06-25","fuel":"gasoline","avg_price":3.1141666667},{"date":"2018-07-02","fuel":"diesel","avg_price":3.236},{"date":"2018-07-02","fuel":"gasoline","avg_price":3.1225},{"date":"2018-07-09","fuel":"gasoline","avg_price":3.1355},{"date":"2018-07-09","fuel":"diesel","avg_price":3.243},{"date":"2018-07-16","fuel":"diesel","avg_price":3.239},{"date":"2018-07-16","fuel":"gasoline","avg_price":3.1366666667},{"date":"2018-07-23","fuel":"diesel","avg_price":3.22},{"date":"2018-07-23","fuel":"gasoline","avg_price":3.1070833333},{"date":"2018-07-30","fuel":"diesel","avg_price":3.226},{"date":"2018-07-30","fuel":"gasoline","avg_price":3.1183333333},{"date":"2018-08-06","fuel":"diesel","avg_price":3.223},{"date":"2018-08-06","fuel":"gasoline","avg_price":3.1210833333},{"date":"2018-08-13","fuel":"diesel","avg_price":3.217},{"date":"2018-08-13","fuel":"gasoline","avg_price":3.11275},{"date":"2018-08-20","fuel":"gasoline","avg_price":3.0929166667},{"date":"2018-08-20","fuel":"diesel","avg_price":3.207},{"date":"2018-08-27","fuel":"gasoline","avg_price":3.09825},{"date":"2018-08-27","fuel":"diesel","avg_price":3.226},{"date":"2018-09-03","fuel":"diesel","avg_price":3.252},{"date":"2018-09-03","fuel":"gasoline","avg_price":3.0974166667},{"date":"2018-09-10","fuel":"diesel","avg_price":3.258},{"date":"2018-09-10","fuel":"gasoline","avg_price":3.1075833333},{"date":"2018-09-17","fuel":"diesel","avg_price":3.268},{"date":"2018-09-17","fuel":"gasoline","avg_price":3.1165},{"date":"2018-09-24","fuel":"diesel","avg_price":3.271},{"date":"2018-09-24","fuel":"gasoline","avg_price":3.11675},{"date":"2018-10-01","fuel":"diesel","avg_price":3.313},{"date":"2018-10-01","fuel":"gasoline","avg_price":3.14475},{"date":"2018-10-08","fuel":"gasoline","avg_price":3.1826666667},{"date":"2018-10-08","fuel":"diesel","avg_price":3.385},{"date":"2018-10-15","fuel":"gasoline","avg_price":3.1639166667},{"date":"2018-10-15","fuel":"diesel","avg_price":3.394},{"date":"2018-10-22","fuel":"diesel","avg_price":3.38},{"date":"2018-10-22","fuel":"gasoline","avg_price":3.13325},{"date":"2018-10-29","fuel":"diesel","avg_price":3.355},{"date":"2018-10-29","fuel":"gasoline","avg_price":3.10525},{"date":"2018-11-05","fuel":"diesel","avg_price":3.338},{"date":"2018-11-05","fuel":"gasoline","avg_price":3.0535},{"date":"2018-11-12","fuel":"diesel","avg_price":3.317},{"date":"2018-11-12","fuel":"gasoline","avg_price":2.9895833333},{"date":"2018-11-19","fuel":"diesel","avg_price":3.282},{"date":"2018-11-19","fuel":"gasoline","avg_price":2.9201666667},{"date":"2018-11-26","fuel":"diesel","avg_price":3.261},{"date":"2018-11-26","fuel":"gasoline","avg_price":2.8581666667},{"date":"2018-12-03","fuel":"gasoline","avg_price":2.7746666667},{"date":"2018-12-03","fuel":"diesel","avg_price":3.207},{"date":"2018-12-10","fuel":"diesel","avg_price":3.161},{"date":"2018-12-10","fuel":"gasoline","avg_price":2.7373333333},{"date":"2018-12-17","fuel":"diesel","avg_price":3.121},{"date":"2018-12-17","fuel":"gasoline","avg_price":2.6884166667},{"date":"2018-12-24","fuel":"diesel","avg_price":3.077},{"date":"2018-12-24","fuel":"gasoline","avg_price":2.6433333333},{"date":"2018-12-31","fuel":"diesel","avg_price":3.048},{"date":"2018-12-31","fuel":"gasoline","avg_price":2.5909166667},{"date":"2019-01-07","fuel":"diesel","avg_price":3.013},{"date":"2019-01-07","fuel":"gasoline","avg_price":2.5606666667},{"date":"2019-01-14","fuel":"gasoline","avg_price":2.564},{"date":"2019-01-14","fuel":"diesel","avg_price":2.976},{"date":"2019-01-21","fuel":"diesel","avg_price":2.965},{"date":"2019-01-21","fuel":"gasoline","avg_price":2.56425},{"date":"2019-01-28","fuel":"diesel","avg_price":2.965},{"date":"2019-01-28","fuel":"gasoline","avg_price":2.5623333333},{"date":"2019-02-04","fuel":"diesel","avg_price":2.966},{"date":"2019-02-04","fuel":"gasoline","avg_price":2.5584166667},{"date":"2019-02-11","fuel":"diesel","avg_price":2.966},{"date":"2019-02-11","fuel":"gasoline","avg_price":2.57625},{"date":"2019-02-18","fuel":"diesel","avg_price":3.006},{"date":"2019-02-18","fuel":"gasoline","avg_price":2.6099166667},{"date":"2019-02-25","fuel":"gasoline","avg_price":2.6711666667},{"date":"2019-02-25","fuel":"diesel","avg_price":3.048},{"date":"2019-03-04","fuel":"diesel","avg_price":3.076},{"date":"2019-03-04","fuel":"gasoline","avg_price":2.6981666667},{"date":"2019-03-11","fuel":"diesel","avg_price":3.079},{"date":"2019-03-11","fuel":"gasoline","avg_price":2.74175},{"date":"2019-03-18","fuel":"diesel","avg_price":3.07},{"date":"2019-03-18","fuel":"gasoline","avg_price":2.8166666667},{"date":"2019-03-25","fuel":"diesel","avg_price":3.08},{"date":"2019-03-25","fuel":"gasoline","avg_price":2.8960833333},{"date":"2019-04-01","fuel":"diesel","avg_price":3.078},{"date":"2019-04-01","fuel":"gasoline","avg_price":2.9681666667},{"date":"2019-04-08","fuel":"diesel","avg_price":3.093},{"date":"2019-04-08","fuel":"gasoline","avg_price":3.0340833333},{"date":"2019-04-15","fuel":"gasoline","avg_price":3.1266666667},{"date":"2019-04-15","fuel":"diesel","avg_price":3.118},{"date":"2019-04-22","fuel":"gasoline","avg_price":3.14875},{"date":"2019-04-22","fuel":"diesel","avg_price":3.147},{"date":"2019-04-29","fuel":"diesel","avg_price":3.169},{"date":"2019-04-29","fuel":"gasoline","avg_price":3.19725},{"date":"2019-05-06","fuel":"diesel","avg_price":3.171},{"date":"2019-05-06","fuel":"gasoline","avg_price":3.21075},{"date":"2019-05-13","fuel":"diesel","avg_price":3.16},{"date":"2019-05-13","fuel":"gasoline","avg_price":3.1830833333},{"date":"2019-05-20","fuel":"diesel","avg_price":3.163},{"date":"2019-05-20","fuel":"gasoline","avg_price":3.1685},{"date":"2019-05-27","fuel":"diesel","avg_price":3.151},{"date":"2019-05-27","fuel":"gasoline","avg_price":3.1375833333},{"date":"2019-06-03","fuel":"gasoline","avg_price":3.1171666667},{"date":"2019-06-03","fuel":"diesel","avg_price":3.136},{"date":"2019-06-10","fuel":"diesel","avg_price":3.105},{"date":"2019-06-10","fuel":"gasoline","avg_price":3.0486666667},{"date":"2019-06-17","fuel":"diesel","avg_price":3.07},{"date":"2019-06-17","fuel":"gasoline","avg_price":2.99025},{"date":"2019-06-24","fuel":"diesel","avg_price":3.043},{"date":"2019-06-24","fuel":"gasoline","avg_price":2.9665},{"date":"2019-07-01","fuel":"diesel","avg_price":3.042},{"date":"2019-07-01","fuel":"gasoline","avg_price":3.01575},{"date":"2019-07-08","fuel":"diesel","avg_price":3.055},{"date":"2019-07-08","fuel":"gasoline","avg_price":3.0401666667},{"date":"2019-07-15","fuel":"diesel","avg_price":3.051},{"date":"2019-07-15","fuel":"gasoline","avg_price":3.0685833333},{"date":"2019-07-22","fuel":"gasoline","avg_price":3.0430833333},{"date":"2019-07-22","fuel":"diesel","avg_price":3.044},{"date":"2019-07-29","fuel":"diesel","avg_price":3.034},{"date":"2019-07-29","fuel":"gasoline","avg_price":3.0111666667},{"date":"2019-08-05","fuel":"diesel","avg_price":3.032},{"date":"2019-08-05","fuel":"gasoline","avg_price":2.987},{"date":"2019-08-12","fuel":"diesel","avg_price":3.011},{"date":"2019-08-12","fuel":"gasoline","avg_price":2.9296666667},{"date":"2019-08-19","fuel":"diesel","avg_price":2.994},{"date":"2019-08-19","fuel":"gasoline","avg_price":2.9025833333},{"date":"2019-08-26","fuel":"diesel","avg_price":2.983},{"date":"2019-08-26","fuel":"gasoline","avg_price":2.883},{"date":"2019-09-02","fuel":"gasoline","avg_price":2.8750833333},{"date":"2019-09-02","fuel":"diesel","avg_price":2.976},{"date":"2019-09-09","fuel":"gasoline","avg_price":2.8625833333},{"date":"2019-09-09","fuel":"diesel","avg_price":2.971},{"date":"2019-09-16","fuel":"diesel","avg_price":2.987},{"date":"2019-09-16","fuel":"gasoline","avg_price":2.86325},{"date":"2019-09-23","fuel":"diesel","avg_price":3.081},{"date":"2019-09-23","fuel":"gasoline","avg_price":2.9605},{"date":"2019-09-30","fuel":"diesel","avg_price":3.066},{"date":"2019-09-30","fuel":"gasoline","avg_price":2.98525},{"date":"2019-10-07","fuel":"diesel","avg_price":3.047},{"date":"2019-10-07","fuel":"gasoline","avg_price":2.9979166667},{"date":"2019-10-14","fuel":"diesel","avg_price":3.051},{"date":"2019-10-14","fuel":"gasoline","avg_price":2.985},{"date":"2019-10-21","fuel":"diesel","avg_price":3.05},{"date":"2019-10-21","fuel":"gasoline","avg_price":2.9860833333},{"date":"2019-10-28","fuel":"gasoline","avg_price":2.94375},{"date":"2019-10-28","fuel":"diesel","avg_price":3.064},{"date":"2019-11-04","fuel":"diesel","avg_price":3.062},{"date":"2019-11-04","fuel":"gasoline","avg_price":2.9556666667},{"date":"2019-11-11","fuel":"diesel","avg_price":3.073},{"date":"2019-11-11","fuel":"gasoline","avg_price":2.9631666667},{"date":"2019-11-18","fuel":"diesel","avg_price":3.074},{"date":"2019-11-18","fuel":"gasoline","avg_price":2.9349166667},{"date":"2019-11-25","fuel":"diesel","avg_price":3.066},{"date":"2019-11-25","fuel":"gasoline","avg_price":2.9135833333},{"date":"2019-12-02","fuel":"diesel","avg_price":3.07},{"date":"2019-12-02","fuel":"gasoline","avg_price":2.8996666667},{"date":"2019-12-09","fuel":"gasoline","avg_price":2.88125},{"date":"2019-12-09","fuel":"diesel","avg_price":3.049},{"date":"2019-12-16","fuel":"diesel","avg_price":3.046},{"date":"2019-12-16","fuel":"gasoline","avg_price":2.8563333333},{"date":"2019-12-23","fuel":"diesel","avg_price":3.041},{"date":"2019-12-23","fuel":"gasoline","avg_price":2.8466666667},{"date":"2019-12-30","fuel":"diesel","avg_price":3.069},{"date":"2019-12-30","fuel":"gasoline","avg_price":2.8751666667},{"date":"2020-01-06","fuel":"diesel","avg_price":3.079},{"date":"2020-01-06","fuel":"gasoline","avg_price":2.8808333333},{"date":"2020-01-13","fuel":"diesel","avg_price":3.064},{"date":"2020-01-13","fuel":"gasoline","avg_price":2.87475},{"date":"2020-01-20","fuel":"gasoline","avg_price":2.8461666667},{"date":"2020-01-20","fuel":"diesel","avg_price":3.037},{"date":"2020-01-27","fuel":"gasoline","avg_price":2.8190833333},{"date":"2020-01-27","fuel":"diesel","avg_price":3.01},{"date":"2020-02-03","fuel":"diesel","avg_price":2.956},{"date":"2020-02-03","fuel":"gasoline","avg_price":2.7765},{"date":"2020-02-10","fuel":"diesel","avg_price":2.91},{"date":"2020-02-10","fuel":"gasoline","avg_price":2.7435833333},{"date":"2020-02-17","fuel":"diesel","avg_price":2.89},{"date":"2020-02-17","fuel":"gasoline","avg_price":2.74575},{"date":"2020-02-24","fuel":"diesel","avg_price":2.882},{"date":"2020-02-24","fuel":"gasoline","avg_price":2.7789166667},{"date":"2020-03-02","fuel":"diesel","avg_price":2.851},{"date":"2020-03-02","fuel":"gasoline","avg_price":2.7453333333},{"date":"2020-03-09","fuel":"gasoline","avg_price":2.7021666667},{"date":"2020-03-09","fuel":"diesel","avg_price":2.814},{"date":"2020-03-16","fuel":"diesel","avg_price":2.733},{"date":"2020-03-16","fuel":"gasoline","avg_price":2.58475},{"date":"2020-03-23","fuel":"diesel","avg_price":2.659},{"date":"2020-03-23","fuel":"gasoline","avg_price":2.4628333333},{"date":"2020-03-30","fuel":"diesel","avg_price":2.586},{"date":"2020-03-30","fuel":"gasoline","avg_price":2.355},{"date":"2020-04-06","fuel":"diesel","avg_price":2.548},{"date":"2020-04-06","fuel":"gasoline","avg_price":2.2745833333},{"date":"2020-04-13","fuel":"diesel","avg_price":2.507},{"date":"2020-04-13","fuel":"gasoline","avg_price":2.20125},{"date":"2020-04-20","fuel":"diesel","avg_price":2.48},{"date":"2020-04-20","fuel":"gasoline","avg_price":2.1604166667},{"date":"2020-04-27","fuel":"gasoline","avg_price":2.11725},{"date":"2020-04-27","fuel":"diesel","avg_price":2.437},{"date":"2020-05-04","fuel":"gasoline","avg_price":2.1213333333},{"date":"2020-05-04","fuel":"diesel","avg_price":2.399},{"date":"2020-05-11","fuel":"diesel","avg_price":2.394},{"date":"2020-05-11","fuel":"gasoline","avg_price":2.1696666667},{"date":"2020-05-18","fuel":"diesel","avg_price":2.386},{"date":"2020-05-18","fuel":"gasoline","avg_price":2.1990833333},{"date":"2020-05-25","fuel":"diesel","avg_price":2.39},{"date":"2020-05-25","fuel":"gasoline","avg_price":2.2720833333},{"date":"2020-06-01","fuel":"diesel","avg_price":2.386},{"date":"2020-06-01","fuel":"gasoline","avg_price":2.2890833333},{"date":"2020-06-08","fuel":"diesel","avg_price":2.396},{"date":"2020-06-08","fuel":"gasoline","avg_price":2.344},{"date":"2020-06-15","fuel":"diesel","avg_price":2.403},{"date":"2020-06-15","fuel":"gasoline","avg_price":2.4030833333},{"date":"2020-06-22","fuel":"gasoline","avg_price":2.43225},{"date":"2020-06-22","fuel":"diesel","avg_price":2.425},{"date":"2020-06-29","fuel":"diesel","avg_price":2.43},{"date":"2020-06-29","fuel":"gasoline","avg_price":2.4748333333},{"date":"2020-07-06","fuel":"diesel","avg_price":2.437},{"date":"2020-07-06","fuel":"gasoline","avg_price":2.48025},{"date":"2020-07-13","fuel":"diesel","avg_price":2.438},{"date":"2020-07-13","fuel":"gasoline","avg_price":2.49975},{"date":"2020-07-20","fuel":"diesel","avg_price":2.433},{"date":"2020-07-20","fuel":"gasoline","avg_price":2.4939166667},{"date":"2020-07-27","fuel":"diesel","avg_price":2.427},{"date":"2020-07-27","fuel":"gasoline","avg_price":2.4895},{"date":"2020-08-03","fuel":"gasoline","avg_price":2.49},{"date":"2020-08-03","fuel":"diesel","avg_price":2.424},{"date":"2020-08-10","fuel":"gasoline","avg_price":2.4801666667},{"date":"2020-08-10","fuel":"diesel","avg_price":2.428},{"date":"2020-08-17","fuel":"diesel","avg_price":2.427},{"date":"2020-08-17","fuel":"gasoline","avg_price":2.4823333333},{"date":"2020-08-24","fuel":"diesel","avg_price":2.426},{"date":"2020-08-24","fuel":"gasoline","avg_price":2.498},{"date":"2020-08-31","fuel":"diesel","avg_price":2.441},{"date":"2020-08-31","fuel":"gasoline","avg_price":2.5341666667},{"date":"2020-09-07","fuel":"diesel","avg_price":2.435},{"date":"2020-09-07","fuel":"gasoline","avg_price":2.5275},{"date":"2020-09-14","fuel":"diesel","avg_price":2.422},{"date":"2020-09-14","fuel":"gasoline","avg_price":2.5030833333},{"date":"2020-09-21","fuel":"diesel","avg_price":2.404},{"date":"2020-09-21","fuel":"gasoline","avg_price":2.4869166667},{"date":"2020-09-28","fuel":"gasoline","avg_price":2.4848333333},{"date":"2020-09-28","fuel":"diesel","avg_price":2.394},{"date":"2020-10-05","fuel":"diesel","avg_price":2.387},{"date":"2020-10-05","fuel":"gasoline","avg_price":2.4865},{"date":"2020-10-12","fuel":"diesel","avg_price":2.395},{"date":"2020-10-12","fuel":"gasoline","avg_price":2.4828333333},{"date":"2020-10-19","fuel":"diesel","avg_price":2.388},{"date":"2020-10-19","fuel":"gasoline","avg_price":2.4681666667},{"date":"2020-10-26","fuel":"diesel","avg_price":2.385},{"date":"2020-10-26","fuel":"gasoline","avg_price":2.4629166667},{"date":"2020-11-02","fuel":"diesel","avg_price":2.372},{"date":"2020-11-02","fuel":"gasoline","avg_price":2.436},{"date":"2020-11-09","fuel":"gasoline","avg_price":2.42075},{"date":"2020-11-09","fuel":"diesel","avg_price":2.383},{"date":"2020-11-16","fuel":"diesel","avg_price":2.441},{"date":"2020-11-16","fuel":"gasoline","avg_price":2.4341666667},{"date":"2020-11-23","fuel":"diesel","avg_price":2.462},{"date":"2020-11-23","fuel":"gasoline","avg_price":2.4274166667},{"date":"2020-11-30","fuel":"diesel","avg_price":2.502},{"date":"2020-11-30","fuel":"gasoline","avg_price":2.443},{"date":"2020-12-07","fuel":"diesel","avg_price":2.526},{"date":"2020-12-07","fuel":"gasoline","avg_price":2.4734166667},{"date":"2020-12-14","fuel":"diesel","avg_price":2.559},{"date":"2020-12-14","fuel":"gasoline","avg_price":2.4745},{"date":"2020-12-21","fuel":"gasoline","avg_price":2.5308333333},{"date":"2020-12-21","fuel":"diesel","avg_price":2.619},{"date":"2020-12-28","fuel":"diesel","avg_price":2.635},{"date":"2020-12-28","fuel":"gasoline","avg_price":2.5481666667},{"date":"2021-01-04","fuel":"diesel","avg_price":2.64},{"date":"2021-01-04","fuel":"gasoline","avg_price":2.5546666667},{"date":"2021-01-11","fuel":"diesel","avg_price":2.67},{"date":"2021-01-11","fuel":"gasoline","avg_price":2.6196666667},{"date":"2021-01-18","fuel":"diesel","avg_price":2.696},{"date":"2021-01-18","fuel":"gasoline","avg_price":2.6805},{"date":"2021-01-25","fuel":"diesel","avg_price":2.716},{"date":"2021-01-25","fuel":"gasoline","avg_price":2.6963333333},{"date":"2021-02-01","fuel":"diesel","avg_price":2.738},{"date":"2021-02-01","fuel":"gasoline","avg_price":2.7136666667},{"date":"2021-02-08","fuel":"gasoline","avg_price":2.76625},{"date":"2021-02-08","fuel":"diesel","avg_price":2.801},{"date":"2021-02-15","fuel":"diesel","avg_price":2.876},{"date":"2021-02-15","fuel":"gasoline","avg_price":2.8070833333},{"date":"2021-02-22","fuel":"diesel","avg_price":2.973},{"date":"2021-02-22","fuel":"gasoline","avg_price":2.9301666667},{"date":"2021-03-01","fuel":"diesel","avg_price":3.072},{"date":"2021-03-01","fuel":"gasoline","avg_price":3.0103333333},{"date":"2021-03-08","fuel":"diesel","avg_price":3.143},{"date":"2021-03-08","fuel":"gasoline","avg_price":3.0729166667},{"date":"2021-03-15","fuel":"diesel","avg_price":3.191},{"date":"2021-03-15","fuel":"gasoline","avg_price":3.1585},{"date":"2021-03-22","fuel":"gasoline","avg_price":3.1751666667},{"date":"2021-03-22","fuel":"diesel","avg_price":3.194},{"date":"2021-03-29","fuel":"diesel","avg_price":3.161},{"date":"2021-03-29","fuel":"gasoline","avg_price":3.1625833333},{"date":"2021-04-05","fuel":"diesel","avg_price":3.144},{"date":"2021-04-05","fuel":"gasoline","avg_price":3.16725},{"date":"2021-04-12","fuel":"diesel","avg_price":3.129},{"date":"2021-04-12","fuel":"gasoline","avg_price":3.1645833333},{"date":"2021-04-19","fuel":"diesel","avg_price":3.124},{"date":"2021-04-19","fuel":"gasoline","avg_price":3.172},{"date":"2021-04-26","fuel":"diesel","avg_price":3.124},{"date":"2021-04-26","fuel":"gasoline","avg_price":3.1914166667},{"date":"2021-05-03","fuel":"gasoline","avg_price":3.2116666667},{"date":"2021-05-03","fuel":"diesel","avg_price":3.142},{"date":"2021-05-10","fuel":"gasoline","avg_price":3.2814166667},{"date":"2021-05-10","fuel":"diesel","avg_price":3.186},{"date":"2021-05-17","fuel":"diesel","avg_price":3.249},{"date":"2021-05-17","fuel":"gasoline","avg_price":3.34575},{"date":"2021-05-24","fuel":"diesel","avg_price":3.253},{"date":"2021-05-24","fuel":"gasoline","avg_price":3.34525},{"date":"2021-05-31","fuel":"diesel","avg_price":3.255},{"date":"2021-05-31","fuel":"gasoline","avg_price":3.35275},{"date":"2021-06-07","fuel":"diesel","avg_price":3.274},{"date":"2021-06-07","fuel":"gasoline","avg_price":3.3636666667},{"date":"2021-06-14","fuel":"diesel","avg_price":3.286},{"date":"2021-06-14","fuel":"gasoline","avg_price":3.39425},{"date":"2021-06-21","fuel":"diesel","avg_price":3.287},{"date":"2021-06-21","fuel":"gasoline","avg_price":3.3904166667},{"date":"2021-06-28","fuel":"gasoline","avg_price":3.4235},{"date":"2021-06-28","fuel":"diesel","avg_price":3.3},{"date":"2021-07-05","fuel":"diesel","avg_price":3.331},{"date":"2021-07-05","fuel":"gasoline","avg_price":3.4525833333},{"date":"2021-07-12","fuel":"diesel","avg_price":3.338},{"date":"2021-07-12","fuel":"gasoline","avg_price":3.4655},{"date":"2021-07-19","fuel":"diesel","avg_price":3.344},{"date":"2021-07-19","fuel":"gasoline","avg_price":3.4844166667},{"date":"2021-07-26","fuel":"diesel","avg_price":3.342},{"date":"2021-07-26","fuel":"gasoline","avg_price":3.4724166667},{"date":"2021-08-02","fuel":"diesel","avg_price":3.367},{"date":"2021-08-02","fuel":"gasoline","avg_price":3.4996666667},{"date":"2021-08-09","fuel":"gasoline","avg_price":3.5111666667},{"date":"2021-08-09","fuel":"diesel","avg_price":3.364},{"date":"2021-08-16","fuel":"diesel","avg_price":3.356},{"date":"2021-08-16","fuel":"gasoline","avg_price":3.51675},{"date":"2021-08-23","fuel":"diesel","avg_price":3.324},{"date":"2021-08-23","fuel":"gasoline","avg_price":3.4896666667},{"date":"2021-08-30","fuel":"diesel","avg_price":3.339},{"date":"2021-08-30","fuel":"gasoline","avg_price":3.4851666667},{"date":"2021-09-06","fuel":"diesel","avg_price":3.373},{"date":"2021-09-06","fuel":"gasoline","avg_price":3.5165833333},{"date":"2021-09-13","fuel":"diesel","avg_price":3.372},{"date":"2021-09-13","fuel":"gasoline","avg_price":3.5061666667},{"date":"2021-09-20","fuel":"gasoline","avg_price":3.5210833333},{"date":"2021-09-20","fuel":"diesel","avg_price":3.385},{"date":"2021-09-27","fuel":"diesel","avg_price":3.406},{"date":"2021-09-27","fuel":"gasoline","avg_price":3.5143333333},{"date":"2021-10-04","fuel":"diesel","avg_price":3.477},{"date":"2021-10-04","fuel":"gasoline","avg_price":3.5270833333},{"date":"2021-10-11","fuel":"diesel","avg_price":3.586},{"date":"2021-10-11","fuel":"gasoline","avg_price":3.5971666667},{"date":"2021-10-18","fuel":"diesel","avg_price":3.671},{"date":"2021-10-18","fuel":"gasoline","avg_price":3.65275},{"date":"2021-10-25","fuel":"diesel","avg_price":3.713},{"date":"2021-10-25","fuel":"gasoline","avg_price":3.7156666667},{"date":"2021-11-01","fuel":"diesel","avg_price":3.727},{"date":"2021-11-01","fuel":"gasoline","avg_price":3.7273333333},{"date":"2021-11-08","fuel":"gasoline","avg_price":3.7481666667},{"date":"2021-11-08","fuel":"diesel","avg_price":3.73},{"date":"2021-11-15","fuel":"diesel","avg_price":3.734},{"date":"2021-11-15","fuel":"gasoline","avg_price":3.7454166667},{"date":"2021-11-22","fuel":"diesel","avg_price":3.724},{"date":"2021-11-22","fuel":"gasoline","avg_price":3.74575},{"date":"2021-11-29","fuel":"diesel","avg_price":3.72},{"date":"2021-11-29","fuel":"gasoline","avg_price":3.7333333333},{"date":"2021-12-06","fuel":"diesel","avg_price":3.674},{"date":"2021-12-06","fuel":"gasoline","avg_price":3.69975},{"date":"2021-12-13","fuel":"diesel","avg_price":3.649},{"date":"2021-12-13","fuel":"gasoline","avg_price":3.6755},{"date":"2021-12-20","fuel":"gasoline","avg_price":3.6595},{"date":"2021-12-20","fuel":"diesel","avg_price":3.626},{"date":"2021-12-27","fuel":"diesel","avg_price":3.615},{"date":"2021-12-27","fuel":"gasoline","avg_price":3.6401666667},{"date":"2022-01-03","fuel":"diesel","avg_price":3.613},{"date":"2022-01-03","fuel":"gasoline","avg_price":3.64475},{"date":"2022-01-10","fuel":"diesel","avg_price":3.657},{"date":"2022-01-10","fuel":"gasoline","avg_price":3.6535833333},{"date":"2022-01-17","fuel":"diesel","avg_price":3.725},{"date":"2022-01-17","fuel":"gasoline","avg_price":3.6615},{"date":"2022-01-24","fuel":"diesel","avg_price":3.78},{"date":"2022-01-24","fuel":"gasoline","avg_price":3.6755},{"date":"2022-01-31","fuel":"gasoline","avg_price":3.7140833333},{"date":"2022-01-31","fuel":"diesel","avg_price":3.846},{"date":"2022-02-07","fuel":"gasoline","avg_price":3.7806666667},{"date":"2022-02-07","fuel":"diesel","avg_price":3.951},{"date":"2022-02-14","fuel":"diesel","avg_price":4.019},{"date":"2022-02-14","fuel":"gasoline","avg_price":3.82275},{"date":"2022-02-21","fuel":"diesel","avg_price":4.055},{"date":"2022-02-21","fuel":"gasoline","avg_price":3.8669166667},{"date":"2022-02-28","fuel":"diesel","avg_price":4.104},{"date":"2022-02-28","fuel":"gasoline","avg_price":3.9433333333},{"date":"2022-03-07","fuel":"diesel","avg_price":4.849},{"date":"2022-03-07","fuel":"gasoline","avg_price":4.4456666667},{"date":"2022-03-14","fuel":"diesel","avg_price":5.25},{"date":"2022-03-14","fuel":"gasoline","avg_price":4.6726666667},{"date":"2022-03-21","fuel":"gasoline","avg_price":4.6170833333},{"date":"2022-03-21","fuel":"diesel","avg_price":5.134},{"date":"2022-03-28","fuel":"diesel","avg_price":5.185},{"date":"2022-03-28","fuel":"gasoline","avg_price":4.61125},{"date":"2022-04-04","fuel":"diesel","avg_price":5.144},{"date":"2022-04-04","fuel":"gasoline","avg_price":4.5525833333},{"date":"2022-04-11","fuel":"diesel","avg_price":5.073},{"date":"2022-04-11","fuel":"gasoline","avg_price":4.4771666667},{"date":"2022-04-18","fuel":"diesel","avg_price":5.101},{"date":"2022-04-18","fuel":"gasoline","avg_price":4.4511666667},{"date":"2022-04-25","fuel":"diesel","avg_price":5.16},{"date":"2022-04-25","fuel":"gasoline","avg_price":4.4879166667},{"date":"2022-05-02","fuel":"diesel","avg_price":5.509},{"date":"2022-05-02","fuel":"gasoline","avg_price":4.5610833333},{"date":"2022-05-09","fuel":"diesel","avg_price":5.623},{"date":"2022-05-09","fuel":"gasoline","avg_price":4.701},{"date":"2022-05-16","fuel":"gasoline","avg_price":4.8656666667},{"date":"2022-05-16","fuel":"diesel","avg_price":5.613},{"date":"2022-05-23","fuel":"diesel","avg_price":5.571},{"date":"2022-05-23","fuel":"gasoline","avg_price":4.9719166667},{"date":"2022-05-30","fuel":"diesel","avg_price":5.539},{"date":"2022-05-30","fuel":"gasoline","avg_price":5.012},{"date":"2022-06-06","fuel":"diesel","avg_price":5.703},{"date":"2022-06-06","fuel":"gasoline","avg_price":5.2535},{"date":"2022-06-13","fuel":"diesel","avg_price":5.718},{"date":"2022-06-13","fuel":"gasoline","avg_price":5.38075},{"date":"2022-06-20","fuel":"diesel","avg_price":5.81},{"date":"2022-06-20","fuel":"gasoline","avg_price":5.3458333333},{"date":"2022-06-27","fuel":"gasoline","avg_price":5.2643333333},{"date":"2022-06-27","fuel":"diesel","avg_price":5.783},{"date":"2022-07-04","fuel":"diesel","avg_price":5.675},{"date":"2022-07-04","fuel":"gasoline","avg_price":5.1664166667},{"date":"2022-07-11","fuel":"diesel","avg_price":5.568},{"date":"2022-07-11","fuel":"gasoline","avg_price":5.0398333333},{"date":"2022-07-18","fuel":"diesel","avg_price":5.432},{"date":"2022-07-18","fuel":"gasoline","avg_price":4.883},{"date":"2022-07-25","fuel":"diesel","avg_price":5.268},{"date":"2022-07-25","fuel":"gasoline","avg_price":4.7291666667},{"date":"2022-08-01","fuel":"diesel","avg_price":5.138},{"date":"2022-08-01","fuel":"gasoline","avg_price":4.5989166667},{"date":"2022-08-08","fuel":"diesel","avg_price":4.993},{"date":"2022-08-08","fuel":"gasoline","avg_price":4.4489166667},{"date":"2022-08-15","fuel":"gasoline","avg_price":4.349},{"date":"2022-08-15","fuel":"diesel","avg_price":4.911},{"date":"2022-08-22","fuel":"diesel","avg_price":4.909},{"date":"2022-08-22","fuel":"gasoline","avg_price":4.2890833333},{"date":"2022-08-29","fuel":"diesel","avg_price":5.115},{"date":"2022-08-29","fuel":"gasoline","avg_price":4.2285},{"date":"2022-09-05","fuel":"diesel","avg_price":5.084},{"date":"2022-09-05","fuel":"gasoline","avg_price":4.1523333333},{"date":"2022-09-12","fuel":"diesel","avg_price":5.033},{"date":"2022-09-12","fuel":"gasoline","avg_price":4.1074166667},{"date":"2022-09-19","fuel":"diesel","avg_price":4.964},{"date":"2022-09-19","fuel":"gasoline","avg_price":4.0789166667},{"date":"2022-09-26","fuel":"gasoline","avg_price":4.14825},{"date":"2022-09-26","fuel":"diesel","avg_price":4.889},{"date":"2022-10-03","fuel":"gasoline","avg_price":4.2526666667},{"date":"2022-10-03","fuel":"diesel","avg_price":4.836},{"date":"2022-10-10","fuel":"diesel","avg_price":5.224},{"date":"2022-10-10","fuel":"gasoline","avg_price":4.3633333333},{"date":"2022-10-17","fuel":"diesel","avg_price":5.339},{"date":"2022-10-17","fuel":"gasoline","avg_price":4.3120833333},{"date":"2022-10-24","fuel":"diesel","avg_price":5.341},{"date":"2022-10-24","fuel":"gasoline","avg_price":4.1995833333},{"date":"2022-10-31","fuel":"diesel","avg_price":5.317},{"date":"2022-10-31","fuel":"gasoline","avg_price":4.1658333333},{"date":"2022-11-07","fuel":"diesel","avg_price":5.333},{"date":"2022-11-07","fuel":"gasoline","avg_price":4.2105},{"date":"2022-11-14","fuel":"gasoline","avg_price":4.17825},{"date":"2022-11-14","fuel":"diesel","avg_price":5.313},{"date":"2022-11-21","fuel":"gasoline","avg_price":4.0665},{"date":"2022-11-21","fuel":"diesel","avg_price":5.233},{"date":"2022-11-28","fuel":"diesel","avg_price":5.141},{"date":"2022-11-28","fuel":"gasoline","avg_price":3.9478333333},{"date":"2022-12-05","fuel":"diesel","avg_price":4.967},{"date":"2022-12-05","fuel":"gasoline","avg_price":3.7958333333},{"date":"2022-12-12","fuel":"diesel","avg_price":4.754},{"date":"2022-12-12","fuel":"gasoline","avg_price":3.6435833333},{"date":"2022-12-19","fuel":"diesel","avg_price":4.596},{"date":"2022-12-19","fuel":"gasoline","avg_price":3.523},{"date":"2022-12-26","fuel":"diesel","avg_price":4.537},{"date":"2022-12-26","fuel":"gasoline","avg_price":3.4898333333},{"date":"2023-01-02","fuel":"diesel","avg_price":4.583},{"date":"2023-01-02","fuel":"gasoline","avg_price":3.6025},{"date":"2023-01-09","fuel":"gasoline","avg_price":3.6311666667},{"date":"2023-01-09","fuel":"diesel","avg_price":4.549},{"date":"2023-01-16","fuel":"diesel","avg_price":4.524},{"date":"2023-01-16","fuel":"gasoline","avg_price":3.67775},{"date":"2023-01-23","fuel":"diesel","avg_price":4.604},{"date":"2023-01-23","fuel":"gasoline","avg_price":3.774},{"date":"2023-01-30","fuel":"diesel","avg_price":4.622},{"date":"2023-01-30","fuel":"gasoline","avg_price":3.8493333333},{"date":"2023-02-06","fuel":"diesel","avg_price":4.539},{"date":"2023-02-06","fuel":"gasoline","avg_price":3.8183333333},{"date":"2023-02-13","fuel":"diesel","avg_price":4.444},{"date":"2023-02-13","fuel":"gasoline","avg_price":3.77675},{"date":"2023-02-20","fuel":"gasoline","avg_price":3.776},{"date":"2023-02-20","fuel":"diesel","avg_price":4.376},{"date":"2023-02-27","fuel":"diesel","avg_price":4.294},{"date":"2023-02-27","fuel":"gasoline","avg_price":3.7435833333},{"date":"2023-03-06","fuel":"diesel","avg_price":4.282},{"date":"2023-03-06","fuel":"gasoline","avg_price":3.7944166667},{"date":"2023-03-13","fuel":"diesel","avg_price":4.247},{"date":"2023-03-13","fuel":"gasoline","avg_price":3.8526666667},{"date":"2023-03-20","fuel":"diesel","avg_price":4.185},{"date":"2023-03-20","fuel":"gasoline","avg_price":3.81625},{"date":"2023-03-27","fuel":"diesel","avg_price":4.128},{"date":"2023-03-27","fuel":"gasoline","avg_price":3.81875},{"date":"2023-04-03","fuel":"gasoline","avg_price":3.883},{"date":"2023-04-03","fuel":"diesel","avg_price":4.105},{"date":"2023-04-10","fuel":"diesel","avg_price":4.098},{"date":"2023-04-10","fuel":"gasoline","avg_price":3.9720833333},{"date":"2023-04-17","fuel":"diesel","avg_price":4.116},{"date":"2023-04-17","fuel":"gasoline","avg_price":4.0398333333},{"date":"2023-04-24","fuel":"diesel","avg_price":4.077},{"date":"2023-04-24","fuel":"gasoline","avg_price":4.0428333333},{"date":"2023-05-01","fuel":"diesel","avg_price":4.018},{"date":"2023-05-01","fuel":"gasoline","avg_price":3.9936666667},{"date":"2023-05-08","fuel":"diesel","avg_price":3.922},{"date":"2023-05-08","fuel":"gasoline","avg_price":3.9304166667},{"date":"2023-05-15","fuel":"diesel","avg_price":3.897},{"date":"2023-05-15","fuel":"gasoline","avg_price":3.9295},{"date":"2023-05-22","fuel":"diesel","avg_price":3.883},{"date":"2023-05-22","fuel":"gasoline","avg_price":3.9285833333},{"date":"2023-05-29","fuel":"gasoline","avg_price":3.9719166667},{"date":"2023-05-29","fuel":"diesel","avg_price":3.855},{"date":"2023-06-05","fuel":"diesel","avg_price":3.797},{"date":"2023-06-05","fuel":"gasoline","avg_price":3.9455833333},{"date":"2023-06-12","fuel":"diesel","avg_price":3.794},{"date":"2023-06-12","fuel":"gasoline","avg_price":3.995},{"date":"2023-06-19","fuel":"diesel","avg_price":3.815},{"date":"2023-06-19","fuel":"gasoline","avg_price":3.98025},{"date":"2023-06-26","fuel":"diesel","avg_price":3.801},{"date":"2023-06-26","fuel":"gasoline","avg_price":3.9753333333},{"date":"2023-07-03","fuel":"diesel","avg_price":3.767},{"date":"2023-07-03","fuel":"gasoline","avg_price":3.9385833333},{"date":"2023-07-10","fuel":"gasoline","avg_price":3.9613333333},{"date":"2023-07-10","fuel":"diesel","avg_price":3.806},{"date":"2023-07-17","fuel":"diesel","avg_price":3.806},{"date":"2023-07-17","fuel":"gasoline","avg_price":3.9698333333},{"date":"2023-07-24","fuel":"diesel","avg_price":3.905},{"date":"2023-07-24","fuel":"gasoline","avg_price":4.0019166667},{"date":"2023-07-31","fuel":"diesel","avg_price":4.127},{"date":"2023-07-31","fuel":"gasoline","avg_price":4.1503333333},{"date":"2023-08-07","fuel":"diesel","avg_price":4.239},{"date":"2023-08-07","fuel":"gasoline","avg_price":4.2188333333},{"date":"2023-08-14","fuel":"diesel","avg_price":4.378},{"date":"2023-08-14","fuel":"gasoline","avg_price":4.2440833333},{"date":"2023-08-21","fuel":"diesel","avg_price":4.389},{"date":"2023-08-21","fuel":"gasoline","avg_price":4.2770833333},{"date":"2023-08-28","fuel":"gasoline","avg_price":4.23275},{"date":"2023-08-28","fuel":"diesel","avg_price":4.475},{"date":"2023-09-04","fuel":"diesel","avg_price":4.492},{"date":"2023-09-04","fuel":"gasoline","avg_price":4.22625},{"date":"2023-09-11","fuel":"diesel","avg_price":4.54},{"date":"2023-09-11","fuel":"gasoline","avg_price":4.2460833333},{"date":"2023-09-18","fuel":"diesel","avg_price":4.633},{"date":"2023-09-18","fuel":"gasoline","avg_price":4.323},{"date":"2023-09-25","fuel":"diesel","avg_price":4.586},{"date":"2023-09-25","fuel":"gasoline","avg_price":4.2991666667},{"date":"2023-10-02","fuel":"diesel","avg_price":4.593},{"date":"2023-10-02","fuel":"gasoline","avg_price":4.28625},{"date":"2023-10-09","fuel":"gasoline","avg_price":4.1599166667},{"date":"2023-10-09","fuel":"diesel","avg_price":4.498},{"date":"2023-10-16","fuel":"gasoline","avg_price":4.0485},{"date":"2023-10-16","fuel":"diesel","avg_price":4.444},{"date":"2023-10-23","fuel":"diesel","avg_price":4.545},{"date":"2023-10-23","fuel":"gasoline","avg_price":3.99475},{"date":"2023-10-30","fuel":"diesel","avg_price":4.454},{"date":"2023-10-30","fuel":"gasoline","avg_price":3.9290833333},{"date":"2023-11-06","fuel":"diesel","avg_price":4.366},{"date":"2023-11-06","fuel":"gasoline","avg_price":3.8448333333},{"date":"2023-11-13","fuel":"diesel","avg_price":4.294},{"date":"2023-11-13","fuel":"gasoline","avg_price":3.789},{"date":"2023-11-20","fuel":"diesel","avg_price":4.209},{"date":"2023-11-20","fuel":"gasoline","avg_price":3.7325833333},{"date":"2023-11-27","fuel":"gasoline","avg_price":3.6828333333},{"date":"2023-11-27","fuel":"diesel","avg_price":4.146},{"date":"2023-12-04","fuel":"gasoline","avg_price":3.6656666667},{"date":"2023-12-04","fuel":"diesel","avg_price":4.092},{"date":"2023-12-11","fuel":"diesel","avg_price":3.987},{"date":"2023-12-11","fuel":"gasoline","avg_price":3.5654166667},{"date":"2023-12-18","fuel":"diesel","avg_price":3.894},{"date":"2023-12-18","fuel":"gasoline","avg_price":3.4815},{"date":"2023-12-25","fuel":"diesel","avg_price":3.914},{"date":"2023-12-25","fuel":"gasoline","avg_price":3.5409166667},{"date":"2024-01-01","fuel":"diesel","avg_price":3.876},{"date":"2024-01-01","fuel":"gasoline","avg_price":3.5228333333},{"date":"2024-01-08","fuel":"diesel","avg_price":3.828},{"date":"2024-01-08","fuel":"gasoline","avg_price":3.5079166667},{"date":"2024-01-15","fuel":"diesel","avg_price":3.863},{"date":"2024-01-15","fuel":"gasoline","avg_price":3.4788333333},{"date":"2024-01-22","fuel":"gasoline","avg_price":3.4768333333},{"date":"2024-01-22","fuel":"diesel","avg_price":3.838},{"date":"2024-01-29","fuel":"diesel","avg_price":3.867},{"date":"2024-01-29","fuel":"gasoline","avg_price":3.5109166667},{"date":"2024-02-05","fuel":"diesel","avg_price":3.899},{"date":"2024-02-05","fuel":"gasoline","avg_price":3.54975},{"date":"2024-02-12","fuel":"diesel","avg_price":4.109},{"date":"2024-02-12","fuel":"gasoline","avg_price":3.5989166667},{"date":"2024-02-19","fuel":"diesel","avg_price":4.109},{"date":"2024-02-19","fuel":"gasoline","avg_price":3.6731666667},{"date":"2024-02-26","fuel":"diesel","avg_price":4.058},{"date":"2024-02-26","fuel":"gasoline","avg_price":3.6526666667},{"date":"2024-03-04","fuel":"gasoline","avg_price":3.7561666667},{"date":"2024-03-04","fuel":"diesel","avg_price":4.022},{"date":"2024-03-11","fuel":"gasoline","avg_price":3.781},{"date":"2024-03-11","fuel":"diesel","avg_price":4.004},{"date":"2024-03-18","fuel":"diesel","avg_price":4.028},{"date":"2024-03-18","fuel":"gasoline","avg_price":3.8548333333},{"date":"2024-03-25","fuel":"diesel","avg_price":4.034},{"date":"2024-03-25","fuel":"gasoline","avg_price":3.9271666667},{"date":"2024-04-01","fuel":"diesel","avg_price":3.996},{"date":"2024-04-01","fuel":"gasoline","avg_price":3.9306666667},{"date":"2024-04-08","fuel":"diesel","avg_price":4.061},{"date":"2024-04-08","fuel":"gasoline","avg_price":4.0188333333},{"date":"2024-04-15","fuel":"diesel","avg_price":4.015},{"date":"2024-04-15","fuel":"gasoline","avg_price":4.06375},{"date":"2024-04-22","fuel":"diesel","avg_price":3.992},{"date":"2024-04-22","fuel":"gasoline","avg_price":4.10625},{"date":"2024-04-29","fuel":"gasoline","avg_price":4.09125},{"date":"2024-04-29","fuel":"diesel","avg_price":3.947},{"date":"2024-05-06","fuel":"diesel","avg_price":3.894},{"date":"2024-05-06","fuel":"gasoline","avg_price":4.0814166667},{"date":"2024-05-13","fuel":"diesel","avg_price":3.848},{"date":"2024-05-13","fuel":"gasoline","avg_price":4.0420833333},{"date":"2024-05-20","fuel":"diesel","avg_price":3.789},{"date":"2024-05-20","fuel":"gasoline","avg_price":4.0134166667},{"date":"2024-05-27","fuel":"diesel","avg_price":3.758},{"date":"2024-05-27","fuel":"gasoline","avg_price":4.00925},{"date":"2024-06-03","fuel":"diesel","avg_price":3.726},{"date":"2024-06-03","fuel":"gasoline","avg_price":3.9465},{"date":"2024-06-10","fuel":"gasoline","avg_price":3.8579166667},{"date":"2024-06-10","fuel":"diesel","avg_price":3.658},{"date":"2024-06-17","fuel":"diesel","avg_price":3.735},{"date":"2024-06-17","fuel":"gasoline","avg_price":3.8586666667},{"date":"2024-06-24","fuel":"diesel","avg_price":3.769},{"date":"2024-06-24","fuel":"gasoline","avg_price":3.8534166667},{"date":"2024-07-01","fuel":"diesel","avg_price":3.813},{"date":"2024-07-01","fuel":"gasoline","avg_price":3.8831666667},{"date":"2024-07-08","fuel":"diesel","avg_price":3.865},{"date":"2024-07-08","fuel":"gasoline","avg_price":3.90025},{"date":"2024-07-15","fuel":"diesel","avg_price":3.826},{"date":"2024-07-15","fuel":"gasoline","avg_price":3.9055},{"date":"2024-07-22","fuel":"diesel","avg_price":3.779},{"date":"2024-07-22","fuel":"gasoline","avg_price":3.87175},{"date":"2024-07-29","fuel":"gasoline","avg_price":3.879},{"date":"2024-07-29","fuel":"diesel","avg_price":3.768},{"date":"2024-08-05","fuel":"diesel","avg_price":3.755},{"date":"2024-08-05","fuel":"gasoline","avg_price":3.84375},{"date":"2024-08-12","fuel":"diesel","avg_price":3.704},{"date":"2024-08-12","fuel":"gasoline","avg_price":3.8125},{"date":"2024-08-19","fuel":"diesel","avg_price":3.688},{"date":"2024-08-19","fuel":"gasoline","avg_price":3.7886666667},{"date":"2024-08-26","fuel":"diesel","avg_price":3.651},{"date":"2024-08-26","fuel":"gasoline","avg_price":3.7275},{"date":"2024-09-02","fuel":"diesel","avg_price":3.625},{"date":"2024-09-02","fuel":"gasoline","avg_price":3.7145},{"date":"2024-09-09","fuel":"gasoline","avg_price":3.6693333333},{"date":"2024-09-09","fuel":"diesel","avg_price":3.555},{"date":"2024-09-16","fuel":"diesel","avg_price":3.526},{"date":"2024-09-16","fuel":"gasoline","avg_price":3.62675},{"date":"2024-09-23","fuel":"diesel","avg_price":3.539},{"date":"2024-09-23","fuel":"gasoline","avg_price":3.6224166667},{"date":"2024-09-30","fuel":"diesel","avg_price":3.544},{"date":"2024-09-30","fuel":"gasoline","avg_price":3.6073333333},{"date":"2024-10-07","fuel":"diesel","avg_price":3.584},{"date":"2024-10-07","fuel":"gasoline","avg_price":3.5685833333},{"date":"2024-10-14","fuel":"diesel","avg_price":3.631},{"date":"2024-10-14","fuel":"gasoline","avg_price":3.5970833333},{"date":"2024-10-21","fuel":"gasoline","avg_price":3.5735},{"date":"2024-10-21","fuel":"diesel","avg_price":3.553},{"date":"2024-10-28","fuel":"diesel","avg_price":3.573},{"date":"2024-10-28","fuel":"gasoline","avg_price":3.5249166667},{"date":"2024-11-04","fuel":"diesel","avg_price":3.536},{"date":"2024-11-04","fuel":"gasoline","avg_price":3.493},{"date":"2024-11-11","fuel":"diesel","avg_price":3.521},{"date":"2024-11-11","fuel":"gasoline","avg_price":3.4789166667},{"date":"2024-11-18","fuel":"diesel","avg_price":3.491},{"date":"2024-11-18","fuel":"gasoline","avg_price":3.4660833333},{"date":"2024-11-25","fuel":"diesel","avg_price":3.539},{"date":"2024-11-25","fuel":"gasoline","avg_price":3.4660833333},{"date":"2024-12-02","fuel":"diesel","avg_price":3.54},{"date":"2024-12-02","fuel":"gasoline","avg_price":3.45425},{"date":"2024-12-09","fuel":"gasoline","avg_price":3.431},{"date":"2024-12-09","fuel":"diesel","avg_price":3.458},{"date":"2024-12-16","fuel":"diesel","avg_price":3.494},{"date":"2024-12-16","fuel":"gasoline","avg_price":3.431},{"date":"2024-12-23","fuel":"diesel","avg_price":3.476},{"date":"2024-12-23","fuel":"gasoline","avg_price":3.4395},{"date":"2024-12-30","fuel":"diesel","avg_price":3.503},{"date":"2024-12-30","fuel":"gasoline","avg_price":3.4266666667},{"date":"2025-01-06","fuel":"diesel","avg_price":3.561},{"date":"2025-01-06","fuel":"gasoline","avg_price":3.4620833333},{"date":"2025-01-13","fuel":"diesel","avg_price":3.602},{"date":"2025-01-13","fuel":"gasoline","avg_price":3.4610833333},{"date":"2025-01-20","fuel":"gasoline","avg_price":3.5243333333},{"date":"2025-01-20","fuel":"diesel","avg_price":3.715},{"date":"2025-01-27","fuel":"diesel","avg_price":3.659},{"date":"2025-01-27","fuel":"gasoline","avg_price":3.522},{"date":"2025-02-03","fuel":"diesel","avg_price":3.66},{"date":"2025-02-03","fuel":"gasoline","avg_price":3.5101666667},{"date":"2025-02-10","fuel":"diesel","avg_price":3.665},{"date":"2025-02-10","fuel":"gasoline","avg_price":3.5611666667},{"date":"2025-02-17","fuel":"diesel","avg_price":3.677},{"date":"2025-02-17","fuel":"gasoline","avg_price":3.5964166667},{"date":"2025-02-24","fuel":"diesel","avg_price":3.697},{"date":"2025-02-24","fuel":"gasoline","avg_price":3.57775},{"date":"2025-03-03","fuel":"gasoline","avg_price":3.5271666667},{"date":"2025-03-03","fuel":"diesel","avg_price":3.635},{"date":"2025-03-10","fuel":"gasoline","avg_price":3.51375},{"date":"2025-03-10","fuel":"diesel","avg_price":3.582},{"date":"2025-03-17","fuel":"diesel","avg_price":3.549},{"date":"2025-03-17","fuel":"gasoline","avg_price":3.4978333333},{"date":"2025-03-24","fuel":"diesel","avg_price":3.567},{"date":"2025-03-24","fuel":"gasoline","avg_price":3.5485833333},{"date":"2025-03-31","fuel":"diesel","avg_price":3.592},{"date":"2025-03-31","fuel":"gasoline","avg_price":3.6035},{"date":"2025-04-07","fuel":"diesel","avg_price":3.639},{"date":"2025-04-07","fuel":"gasoline","avg_price":3.6863333333},{"date":"2025-04-14","fuel":"diesel","avg_price":3.579},{"date":"2025-04-14","fuel":"gasoline","avg_price":3.613},{"date":"2025-04-21","fuel":"gasoline","avg_price":3.58525},{"date":"2025-04-21","fuel":"diesel","avg_price":3.534},{"date":"2025-04-28","fuel":"diesel","avg_price":3.514},{"date":"2025-04-28","fuel":"gasoline","avg_price":3.57875},{"date":"2025-05-05","fuel":"diesel","avg_price":3.497},{"date":"2025-05-05","fuel":"gasoline","avg_price":3.5851666667},{"date":"2025-05-12","fuel":"diesel","avg_price":3.476},{"date":"2025-05-12","fuel":"gasoline","avg_price":3.5728333333},{"date":"2025-05-19","fuel":"diesel","avg_price":3.536},{"date":"2025-05-19","fuel":"gasoline","avg_price":3.6244166667},{"date":"2025-05-26","fuel":"diesel","avg_price":3.487},{"date":"2025-05-26","fuel":"gasoline","avg_price":3.6089166667},{"date":"2025-06-02","fuel":"diesel","avg_price":3.451},{"date":"2025-06-02","fuel":"gasoline","avg_price":3.5746666667},{"date":"2025-06-09","fuel":"diesel","avg_price":3.471},{"date":"2025-06-09","fuel":"gasoline","avg_price":3.5501666667},{"date":"2025-06-16","fuel":"diesel","avg_price":3.571},{"date":"2025-06-16","fuel":"gasoline","avg_price":3.5765},{"date":"2025-06-23","fuel":"diesel","avg_price":3.775},{"date":"2025-06-23","fuel":"gasoline","avg_price":3.6445833333}],"metadata":{"date":{"type":"date","semanticType":"Date"},"fuel":{"type":"string","semanticType":"String"},"avg_price":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n","source":["weekly_gas_prices"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```"}],"trigger":{"tableId":"weekly_gas_prices","sourceTableIds":["weekly_gas_prices"],"instruction":"What are the major **price trends** across all fuel types from 1990 to 2025?","displayInstruction":"Show **price** trends over time for different **fuel** types","chart":{"id":"chart-1760744901532","chartType":"Auto","encodingMap":{},"tableRef":"weekly_gas_prices","saved":false,"source":"trigger","unread":true},"resultTableId":"table-904593"},"explanation":{"agent":"CodeExplanationAgent","code":"The code transforms weekly gas price data by performing the following steps:\n\n- **Groups** the data by `date` and `fuel` type (gasoline or diesel)\n- **Calculates** the mean `price` across all `grade` categories (regular, premium, midgrade, etc.) and `formulation` types (conventional, reformulated, etc.) for each date-fuel combination\n- **Renames** the aggregated price column to `avg_price` for clarity\n- **Sorts** the resulting data chronologically by `date` to ensure proper time-series visualization","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThe code transforms weekly gas price data by performing the following steps:\n\n- **Groups** the data by `date` and `fuel` type (gasoline or diesel)\n- **Calculates** the mean `price` across all `grade` categories (regular, premium, midgrade, etc.) and `formulation` types (conventional, reformulated, etc.) for each date-fuel combination\n- **Renames** the aggregated price column to `avg_price` for clarity\n- **Sorts** the resulting data chronologically by `date` to ensure proper time-series visualization\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-906894","displayId":"gas-price-prem","names":["date","fuel","grade","price_premium"],"rows":[{"date":"1993-04-05","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-04-12","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-04-19","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-04-26","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-05-03","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-05-10","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-05-17","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-05-24","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-05-31","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-06-07","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-06-14","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-06-21","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-06-28","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-07-05","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-07-12","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-07-19","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-07-26","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-08-02","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-08-09","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-08-16","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-08-23","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-08-30","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-09-06","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-09-13","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-09-20","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-09-27","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-10-04","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-10-11","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-10-18","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-10-25","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-11-01","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-11-08","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-11-15","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-11-22","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-11-29","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-12-06","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-12-13","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-12-20","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1993-12-27","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-01-03","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-01-10","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-01-17","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-01-24","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-01-31","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-02-07","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-02-14","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-02-21","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-02-28","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-03-07","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-03-14","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-03-21","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-03-28","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-04-04","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-04-11","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-04-18","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-04-25","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-05-02","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-05-09","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-05-16","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-05-23","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-05-30","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-06-06","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-06-13","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-06-20","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-06-27","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-07-04","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-07-11","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-07-18","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-07-25","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-08-01","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-08-08","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-08-15","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-08-22","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-08-29","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-09-05","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-09-12","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-09-19","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-09-26","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-10-03","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-10-10","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-10-17","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-10-24","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-10-31","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-11-07","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-11-14","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-11-21","fuel":"gasoline","grade":"all","price_premium":0},{"date":"1994-11-28","fuel":"gasoline","grade":"all","price_premium":0.012},{"date":"1994-11-28","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1994-11-28","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"1994-12-05","fuel":"gasoline","grade":"all","price_premium":0.024},{"date":"1994-12-05","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1994-12-05","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"1994-12-12","fuel":"gasoline","grade":"all","price_premium":0.036},{"date":"1994-12-12","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1994-12-12","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"1994-12-19","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1994-12-19","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1994-12-19","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"1994-12-26","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1994-12-26","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1994-12-26","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"1995-01-02","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1995-01-02","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-01-02","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"1995-01-09","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1995-01-09","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-01-09","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"1995-01-16","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1995-01-16","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-01-16","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"1995-01-23","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"1995-01-23","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1995-01-23","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"1995-01-30","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1995-01-30","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1995-01-30","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"1995-02-06","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1995-02-06","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1995-02-06","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"1995-02-13","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-02-13","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1995-02-13","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"1995-02-20","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1995-02-20","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1995-02-20","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"1995-02-27","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1995-02-27","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-02-27","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"1995-03-06","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-03-06","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-03-06","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-03-13","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-03-13","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1995-03-13","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-03-20","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-03-20","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-03-20","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1995-03-27","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-03-27","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1995-03-27","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1995-04-03","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-04-03","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1995-04-03","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1995-04-10","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-04-10","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1995-04-10","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1995-04-17","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-04-17","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-04-17","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1995-04-24","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-04-24","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-04-24","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1995-05-01","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-05-01","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-05-01","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1995-05-08","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-05-08","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-05-08","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-05-15","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-05-15","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-05-15","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1995-05-22","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-05-22","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-05-22","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1995-05-29","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-05-29","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-05-29","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-06-05","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-06-05","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-06-05","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-06-12","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-06-12","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1995-06-12","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-06-19","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-06-19","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-06-19","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-06-26","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-06-26","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-06-26","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"1995-07-03","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-07-03","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-07-03","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-07-10","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-07-10","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-07-10","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-07-17","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-07-17","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-07-17","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"1995-07-24","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-07-24","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1995-07-24","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"1995-07-31","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-07-31","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-07-31","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-08-07","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-08-07","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-08-07","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"1995-08-14","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-08-14","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-08-14","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-08-21","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-08-21","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-08-21","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-08-28","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-08-28","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-08-28","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"1995-09-04","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-09-04","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1995-09-04","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-09-11","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-09-11","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-09-11","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-09-18","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-09-18","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1995-09-18","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-09-25","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-09-25","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1995-09-25","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-10-02","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-10-02","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1995-10-02","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1995-10-09","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-10-09","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-10-09","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1995-10-16","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-10-16","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-10-16","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1995-10-23","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-10-23","fuel":"gasoline","grade":"midgrade","price_premium":0.086},{"date":"1995-10-23","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1995-10-30","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-10-30","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1995-10-30","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-11-06","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-11-06","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-11-06","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1995-11-13","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-11-13","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-11-13","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1995-11-20","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-11-20","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1995-11-20","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1995-11-27","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-11-27","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-11-27","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1995-12-04","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-12-04","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1995-12-04","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1995-12-11","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1995-12-11","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1995-12-11","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1995-12-18","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-12-18","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1995-12-18","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1995-12-25","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1995-12-25","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1995-12-25","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1996-01-01","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-01-01","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1996-01-01","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1996-01-08","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-01-08","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1996-01-08","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1996-01-15","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1996-01-15","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1996-01-15","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1996-01-22","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1996-01-22","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1996-01-22","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1996-01-29","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-01-29","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1996-01-29","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1996-02-05","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1996-02-05","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1996-02-05","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1996-02-12","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-02-12","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1996-02-12","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1996-02-19","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-02-19","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1996-02-19","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1996-02-26","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-02-26","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1996-02-26","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1996-03-04","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-03-04","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1996-03-04","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1996-03-11","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-03-11","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1996-03-11","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1996-03-18","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-03-18","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1996-03-18","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-03-25","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-03-25","fuel":"gasoline","grade":"midgrade","price_premium":0.086},{"date":"1996-03-25","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1996-04-01","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-04-01","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1996-04-01","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1996-04-08","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1996-04-08","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1996-04-08","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1996-04-15","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-04-15","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1996-04-15","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1996-04-22","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-04-22","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1996-04-22","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-04-29","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-04-29","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-04-29","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-05-06","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-05-06","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-05-06","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1996-05-13","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-05-13","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-05-13","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1996-05-20","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-05-20","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-05-20","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1996-05-27","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-05-27","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-05-27","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1996-06-03","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-06-03","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-06-03","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1996-06-10","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-06-10","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-06-10","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-06-17","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1996-06-17","fuel":"gasoline","grade":"midgrade","price_premium":0.082},{"date":"1996-06-17","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1996-06-24","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1996-06-24","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-06-24","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1996-07-01","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-07-01","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-07-01","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-07-08","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-07-08","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-07-08","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1996-07-15","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-07-15","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-07-15","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1996-07-22","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-07-22","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-07-22","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1996-07-29","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-07-29","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-07-29","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1996-08-05","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-08-05","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1996-08-05","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-08-12","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-08-12","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-08-12","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1996-08-19","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1996-08-19","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-08-19","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1996-08-26","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1996-08-26","fuel":"gasoline","grade":"midgrade","price_premium":0.081},{"date":"1996-08-26","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1996-09-02","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-09-02","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-09-02","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"1996-09-09","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1996-09-09","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1996-09-09","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1996-09-16","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1996-09-16","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1996-09-16","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1996-09-23","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-09-23","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1996-09-23","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1996-09-30","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-09-30","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1996-09-30","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1996-10-07","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-10-07","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1996-10-07","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1996-10-14","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-10-14","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1996-10-14","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1996-10-21","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-10-21","fuel":"gasoline","grade":"midgrade","price_premium":0.086},{"date":"1996-10-21","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1996-10-28","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-10-28","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1996-10-28","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1996-11-04","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-11-04","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1996-11-04","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1996-11-11","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-11-11","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1996-11-11","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-11-18","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-11-18","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1996-11-18","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-11-25","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1996-11-25","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1996-11-25","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1996-12-02","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-12-02","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1996-12-02","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1996-12-09","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1996-12-09","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1996-12-09","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1996-12-16","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1996-12-16","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1996-12-16","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1996-12-23","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1996-12-23","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1996-12-23","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1996-12-30","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1996-12-30","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1996-12-30","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1997-01-06","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1997-01-06","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1997-01-06","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1997-01-13","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-01-13","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1997-01-13","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1997-01-20","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-01-20","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1997-01-20","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1997-01-27","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-01-27","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1997-01-27","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1997-02-03","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-02-03","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1997-02-03","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1997-02-10","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-02-10","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1997-02-10","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1997-02-17","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-02-17","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1997-02-17","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1997-02-24","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1997-02-24","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1997-02-24","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1997-03-03","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-03-03","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1997-03-03","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1997-03-10","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1997-03-10","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1997-03-10","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1997-03-17","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-03-17","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1997-03-17","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1997-03-24","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-03-24","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1997-03-24","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1997-03-31","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-03-31","fuel":"gasoline","grade":"midgrade","price_premium":0.086},{"date":"1997-03-31","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1997-04-07","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-04-07","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1997-04-07","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1997-04-14","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-04-14","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-04-14","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1997-04-21","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-04-21","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1997-04-21","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1997-04-28","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-04-28","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-04-28","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1997-05-05","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-05-05","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-05-05","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1997-05-12","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-05-12","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1997-05-12","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1997-05-19","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1997-05-19","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-05-19","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1997-05-26","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"1997-05-26","fuel":"gasoline","grade":"midgrade","price_premium":0.082},{"date":"1997-05-26","fuel":"gasoline","grade":"premium","price_premium":0.173},{"date":"1997-06-02","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"1997-06-02","fuel":"gasoline","grade":"midgrade","price_premium":0.082},{"date":"1997-06-02","fuel":"gasoline","grade":"premium","price_premium":0.173},{"date":"1997-06-09","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1997-06-09","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-06-09","fuel":"gasoline","grade":"premium","price_premium":0.175},{"date":"1997-06-16","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1997-06-16","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-06-16","fuel":"gasoline","grade":"premium","price_premium":0.175},{"date":"1997-06-23","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-06-23","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1997-06-23","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1997-06-30","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-06-30","fuel":"gasoline","grade":"midgrade","price_premium":0.086},{"date":"1997-06-30","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"1997-07-07","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-07-07","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1997-07-07","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1997-07-14","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-07-14","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1997-07-14","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1997-07-21","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-07-21","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1997-07-21","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1997-07-28","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-07-28","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1997-07-28","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1997-08-04","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1997-08-04","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-08-04","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1997-08-11","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1997-08-11","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-08-11","fuel":"gasoline","grade":"premium","price_premium":0.176},{"date":"1997-08-18","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-08-18","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-08-18","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1997-08-25","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1997-08-25","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-08-25","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"1997-09-01","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1997-09-01","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-09-01","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1997-09-08","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-09-08","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-09-08","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1997-09-15","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-09-15","fuel":"gasoline","grade":"midgrade","price_premium":0.082},{"date":"1997-09-15","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1997-09-22","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"1997-09-22","fuel":"gasoline","grade":"midgrade","price_premium":0.081},{"date":"1997-09-22","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1997-09-29","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-09-29","fuel":"gasoline","grade":"midgrade","price_premium":0.082},{"date":"1997-09-29","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1997-10-06","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-10-06","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-10-06","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1997-10-13","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-10-13","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-10-13","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1997-10-20","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-10-20","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1997-10-20","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1997-10-27","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-10-27","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1997-10-27","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1997-11-03","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-11-03","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-11-03","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1997-11-10","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-11-10","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-11-10","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1997-11-17","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-11-17","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"1997-11-17","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1997-11-24","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-11-24","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-11-24","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1997-12-01","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-12-01","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-12-01","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1997-12-08","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-12-08","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1997-12-08","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1997-12-15","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"1997-12-15","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-12-15","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1997-12-22","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-12-22","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-12-22","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1997-12-29","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1997-12-29","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"1997-12-29","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1998-01-05","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-01-05","fuel":"gasoline","grade":"midgrade","price_premium":0.086},{"date":"1998-01-05","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"1998-01-12","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-01-12","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1998-01-12","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1998-01-19","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-01-19","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"1998-01-19","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1998-01-26","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-01-26","fuel":"gasoline","grade":"midgrade","price_premium":0.086},{"date":"1998-01-26","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1998-02-02","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-02-02","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1998-02-02","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"1998-02-09","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"1998-02-09","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-02-09","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"1998-02-16","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-02-16","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1998-02-16","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"1998-02-23","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-02-23","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1998-02-23","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1998-03-02","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-03-02","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1998-03-02","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"1998-03-09","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-03-09","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1998-03-09","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1998-03-16","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-03-16","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1998-03-16","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1998-03-23","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-03-23","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1998-03-23","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1998-03-30","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-03-30","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1998-03-30","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1998-04-06","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-04-06","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-04-06","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1998-04-13","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-04-13","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-04-13","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1998-04-20","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"1998-04-20","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-04-20","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1998-04-27","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-04-27","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1998-04-27","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1998-05-04","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-05-04","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"1998-05-04","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1998-05-11","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"1998-05-11","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"1998-05-11","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1998-05-18","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"1998-05-18","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1998-05-18","fuel":"gasoline","grade":"premium","price_premium":0.174},{"date":"1998-05-25","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-05-25","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-05-25","fuel":"gasoline","grade":"premium","price_premium":0.175},{"date":"1998-06-01","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-06-01","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-06-01","fuel":"gasoline","grade":"premium","price_premium":0.176},{"date":"1998-06-08","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-06-08","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"1998-06-08","fuel":"gasoline","grade":"premium","price_premium":0.173},{"date":"1998-06-15","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-06-15","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-06-15","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1998-06-22","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-06-22","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1998-06-22","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1998-06-29","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-06-29","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1998-06-29","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1998-07-06","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-07-06","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1998-07-06","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1998-07-13","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-07-13","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1998-07-13","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1998-07-20","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-07-20","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-07-20","fuel":"gasoline","grade":"premium","price_premium":0.176},{"date":"1998-07-27","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-07-27","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"1998-07-27","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1998-08-03","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"1998-08-03","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"1998-08-03","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1998-08-10","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-08-10","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"1998-08-10","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1998-08-17","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-08-17","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1998-08-17","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1998-08-24","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-08-24","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1998-08-24","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1998-08-31","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1998-08-31","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1998-08-31","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1998-09-07","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-09-07","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1998-09-07","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1998-09-14","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1998-09-14","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"1998-09-14","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1998-09-21","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-09-21","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1998-09-21","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1998-09-28","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-09-28","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1998-09-28","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1998-10-05","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1998-10-05","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1998-10-05","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1998-10-12","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1998-10-12","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1998-10-12","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1998-10-19","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1998-10-19","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1998-10-19","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1998-10-26","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1998-10-26","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"1998-10-26","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1998-11-02","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1998-11-02","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"1998-11-02","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1998-11-09","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1998-11-09","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1998-11-09","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1998-11-16","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1998-11-16","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1998-11-16","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1998-11-23","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1998-11-23","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"1998-11-23","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"1998-11-30","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1998-11-30","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"1998-11-30","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"1998-12-07","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1998-12-07","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"1998-12-07","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"1998-12-14","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1998-12-14","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"1998-12-14","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"1998-12-21","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1998-12-21","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"1998-12-21","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"1998-12-28","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1998-12-28","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"1998-12-28","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"1999-01-04","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1999-01-04","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"1999-01-04","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"1999-01-11","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-01-11","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-01-11","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"1999-01-18","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-01-18","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-01-18","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1999-01-25","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-01-25","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-01-25","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"1999-02-01","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1999-02-01","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"1999-02-01","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"1999-02-08","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-02-08","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-02-08","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"1999-02-15","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-02-15","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-02-15","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"1999-02-22","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1999-02-22","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"1999-02-22","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"1999-03-01","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1999-03-01","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"1999-03-01","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"1999-03-08","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"1999-03-08","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"1999-03-08","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"1999-03-15","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-03-15","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-03-15","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1999-03-22","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-03-22","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"1999-03-22","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1999-03-29","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-03-29","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"1999-03-29","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1999-04-05","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-04-05","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-04-05","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"1999-04-12","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-04-12","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-04-12","fuel":"gasoline","grade":"premium","price_premium":0.176},{"date":"1999-04-19","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-04-19","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-04-19","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1999-04-26","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-04-26","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"1999-04-26","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1999-05-03","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-05-03","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-05-03","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1999-05-10","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-05-10","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"1999-05-10","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1999-05-17","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-05-17","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-05-17","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1999-05-24","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-05-24","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-05-24","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1999-05-31","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-05-31","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-05-31","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1999-06-07","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-06-07","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-06-07","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1999-06-14","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-06-14","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-06-14","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1999-06-21","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-06-21","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"1999-06-21","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1999-06-28","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-06-28","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-06-28","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1999-07-05","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-07-05","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1999-07-05","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1999-07-12","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-07-12","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"1999-07-12","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"1999-07-19","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-07-19","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1999-07-19","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1999-07-26","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-07-26","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"1999-07-26","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"1999-08-02","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-08-02","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-08-02","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1999-08-09","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-08-09","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1999-08-09","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1999-08-16","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-08-16","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"1999-08-16","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"1999-08-23","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-08-23","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1999-08-23","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1999-08-30","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-08-30","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1999-08-30","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1999-09-06","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-09-06","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1999-09-06","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"1999-09-13","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-09-13","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"1999-09-13","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1999-09-20","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"1999-09-20","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-09-20","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"1999-09-27","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-09-27","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-09-27","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1999-10-04","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-10-04","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-10-04","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1999-10-11","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-10-11","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-10-11","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1999-10-18","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-10-18","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-10-18","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"1999-10-25","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-10-25","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-10-25","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1999-11-01","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-11-01","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-11-01","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"1999-11-08","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-11-08","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-11-08","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1999-11-15","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-11-15","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-11-15","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1999-11-22","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-11-22","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-11-22","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"1999-11-29","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-11-29","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-11-29","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"1999-12-06","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-12-06","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-12-06","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"1999-12-13","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"1999-12-13","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"1999-12-13","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"1999-12-20","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-12-20","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"1999-12-20","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"1999-12-27","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"1999-12-27","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"1999-12-27","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2000-01-03","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-01-03","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2000-01-03","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2000-01-10","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-01-10","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2000-01-10","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2000-01-17","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2000-01-17","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2000-01-17","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2000-01-24","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-01-24","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2000-01-24","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2000-01-31","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-01-31","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2000-01-31","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2000-02-07","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-02-07","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2000-02-07","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"2000-02-14","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"2000-02-14","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2000-02-14","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"2000-02-21","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"2000-02-21","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"2000-02-21","fuel":"gasoline","grade":"premium","price_premium":0.171},{"date":"2000-02-28","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"2000-02-28","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"2000-02-28","fuel":"gasoline","grade":"premium","price_premium":0.172},{"date":"2000-03-06","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"2000-03-06","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2000-03-06","fuel":"gasoline","grade":"premium","price_premium":0.173},{"date":"2000-03-13","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-03-13","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2000-03-13","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2000-03-20","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-03-20","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2000-03-20","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2000-03-27","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2000-03-27","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2000-03-27","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2000-04-03","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-04-03","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2000-04-03","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2000-04-10","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2000-04-10","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2000-04-10","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2000-04-17","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2000-04-17","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2000-04-17","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2000-04-24","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2000-04-24","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2000-04-24","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2000-05-01","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2000-05-01","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2000-05-01","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2000-05-08","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-05-08","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2000-05-08","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2000-05-15","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-05-15","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2000-05-15","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2000-05-22","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-05-22","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2000-05-22","fuel":"gasoline","grade":"premium","price_premium":0.176},{"date":"2000-05-29","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-05-29","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"2000-05-29","fuel":"gasoline","grade":"premium","price_premium":0.173},{"date":"2000-06-05","fuel":"gasoline","grade":"all","price_premium":0.036},{"date":"2000-06-05","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"2000-06-05","fuel":"gasoline","grade":"premium","price_premium":0.167},{"date":"2000-06-12","fuel":"gasoline","grade":"all","price_premium":0.033},{"date":"2000-06-12","fuel":"gasoline","grade":"midgrade","price_premium":0.075},{"date":"2000-06-12","fuel":"gasoline","grade":"premium","price_premium":0.154},{"date":"2000-06-19","fuel":"gasoline","grade":"all","price_premium":0.03},{"date":"2000-06-19","fuel":"gasoline","grade":"midgrade","price_premium":0.07},{"date":"2000-06-19","fuel":"gasoline","grade":"premium","price_premium":0.146},{"date":"2000-06-26","fuel":"gasoline","grade":"all","price_premium":0.033},{"date":"2000-06-26","fuel":"gasoline","grade":"midgrade","price_premium":0.075},{"date":"2000-06-26","fuel":"gasoline","grade":"premium","price_premium":0.155},{"date":"2000-07-03","fuel":"gasoline","grade":"all","price_premium":0.036},{"date":"2000-07-03","fuel":"gasoline","grade":"midgrade","price_premium":0.082},{"date":"2000-07-03","fuel":"gasoline","grade":"premium","price_premium":0.167},{"date":"2000-07-10","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"2000-07-10","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"2000-07-10","fuel":"gasoline","grade":"premium","price_premium":0.176},{"date":"2000-07-17","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-07-17","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2000-07-17","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2000-07-24","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2000-07-24","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2000-07-24","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2000-07-31","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2000-07-31","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2000-07-31","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2000-08-07","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2000-08-07","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2000-08-07","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"2000-08-14","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2000-08-14","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2000-08-14","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2000-08-21","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-08-21","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2000-08-21","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2000-08-28","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-08-28","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2000-08-28","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2000-09-04","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"2000-09-04","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2000-09-04","fuel":"gasoline","grade":"premium","price_premium":0.176},{"date":"2000-09-11","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"2000-09-11","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"2000-09-11","fuel":"gasoline","grade":"premium","price_premium":0.174},{"date":"2000-09-18","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"2000-09-18","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"2000-09-18","fuel":"gasoline","grade":"premium","price_premium":0.171},{"date":"2000-09-25","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"2000-09-25","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2000-09-25","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2000-10-02","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-10-02","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2000-10-02","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2000-10-09","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-10-09","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2000-10-09","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2000-10-16","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-10-16","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2000-10-16","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2000-10-23","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"2000-10-23","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"2000-10-23","fuel":"gasoline","grade":"premium","price_premium":0.173},{"date":"2000-10-30","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-10-30","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2000-10-30","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"2000-11-06","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-11-06","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2000-11-06","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2000-11-13","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-11-13","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2000-11-13","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2000-11-20","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-11-20","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2000-11-20","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2000-11-27","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-11-27","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2000-11-27","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2000-12-04","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-12-04","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2000-12-04","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2000-12-11","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2000-12-11","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2000-12-11","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2000-12-18","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2000-12-18","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2000-12-18","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2000-12-25","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2000-12-25","fuel":"gasoline","grade":"midgrade","price_premium":0.088},{"date":"2000-12-25","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2001-01-01","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-01-01","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2001-01-01","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2001-01-08","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-01-08","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2001-01-08","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2001-01-15","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2001-01-15","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2001-01-15","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2001-01-22","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-01-22","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2001-01-22","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2001-01-29","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-01-29","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2001-01-29","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2001-02-05","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-02-05","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2001-02-05","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2001-02-12","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2001-02-12","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2001-02-12","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2001-02-19","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-02-19","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2001-02-19","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2001-02-26","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-02-26","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2001-02-26","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2001-03-05","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-03-05","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2001-03-05","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2001-03-12","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-03-12","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2001-03-12","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2001-03-19","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-03-19","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2001-03-19","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2001-03-26","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-03-26","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2001-03-26","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2001-04-02","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-04-02","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2001-04-02","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2001-04-09","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-04-09","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2001-04-09","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2001-04-16","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2001-04-16","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2001-04-16","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2001-04-23","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2001-04-23","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2001-04-23","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2001-04-30","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2001-04-30","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2001-04-30","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2001-05-07","fuel":"gasoline","grade":"all","price_premium":0.036},{"date":"2001-05-07","fuel":"gasoline","grade":"midgrade","price_premium":0.085},{"date":"2001-05-07","fuel":"gasoline","grade":"premium","price_premium":0.166},{"date":"2001-05-14","fuel":"gasoline","grade":"all","price_premium":0.035},{"date":"2001-05-14","fuel":"gasoline","grade":"midgrade","price_premium":0.08},{"date":"2001-05-14","fuel":"gasoline","grade":"premium","price_premium":0.163},{"date":"2001-05-21","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"2001-05-21","fuel":"gasoline","grade":"midgrade","price_premium":0.086},{"date":"2001-05-21","fuel":"gasoline","grade":"premium","price_premium":0.171},{"date":"2001-05-28","fuel":"gasoline","grade":"all","price_premium":0.035},{"date":"2001-05-28","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"2001-05-28","fuel":"gasoline","grade":"premium","price_premium":0.167},{"date":"2001-06-04","fuel":"gasoline","grade":"all","price_premium":0.036},{"date":"2001-06-04","fuel":"gasoline","grade":"midgrade","price_premium":0.083},{"date":"2001-06-04","fuel":"gasoline","grade":"premium","price_premium":0.168},{"date":"2001-06-11","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-06-11","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2001-06-11","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2001-06-18","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2001-06-18","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2001-06-18","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2001-06-25","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2001-06-25","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2001-06-25","fuel":"gasoline","grade":"premium","price_premium":0.199},{"date":"2001-07-02","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2001-07-02","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2001-07-02","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2001-07-09","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2001-07-09","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2001-07-09","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2001-07-16","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2001-07-16","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2001-07-16","fuel":"gasoline","grade":"premium","price_premium":0.203},{"date":"2001-07-23","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2001-07-23","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2001-07-23","fuel":"gasoline","grade":"premium","price_premium":0.2},{"date":"2001-07-30","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2001-07-30","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2001-07-30","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2001-08-06","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2001-08-06","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2001-08-06","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"2001-08-13","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2001-08-13","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2001-08-13","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2001-08-20","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2001-08-20","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"2001-08-20","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2001-08-27","fuel":"gasoline","grade":"all","price_premium":0.035},{"date":"2001-08-27","fuel":"gasoline","grade":"midgrade","price_premium":0.073},{"date":"2001-08-27","fuel":"gasoline","grade":"premium","price_premium":0.159},{"date":"2001-09-03","fuel":"gasoline","grade":"all","price_premium":0.034},{"date":"2001-09-03","fuel":"gasoline","grade":"midgrade","price_premium":0.074},{"date":"2001-09-03","fuel":"gasoline","grade":"premium","price_premium":0.153},{"date":"2001-09-10","fuel":"gasoline","grade":"all","price_premium":0.035},{"date":"2001-09-10","fuel":"gasoline","grade":"midgrade","price_premium":0.077},{"date":"2001-09-10","fuel":"gasoline","grade":"premium","price_premium":0.159},{"date":"2001-09-17","fuel":"gasoline","grade":"all","price_premium":0.035},{"date":"2001-09-17","fuel":"gasoline","grade":"midgrade","price_premium":0.078},{"date":"2001-09-17","fuel":"gasoline","grade":"premium","price_premium":0.16},{"date":"2001-09-24","fuel":"gasoline","grade":"all","price_premium":0.037},{"date":"2001-09-24","fuel":"gasoline","grade":"midgrade","price_premium":0.084},{"date":"2001-09-24","fuel":"gasoline","grade":"premium","price_premium":0.168},{"date":"2001-10-01","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2001-10-01","fuel":"gasoline","grade":"midgrade","price_premium":0.087},{"date":"2001-10-01","fuel":"gasoline","grade":"premium","price_premium":0.175},{"date":"2001-10-08","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-10-08","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2001-10-08","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2001-10-15","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2001-10-15","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2001-10-15","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2001-10-22","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2001-10-22","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2001-10-22","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2001-10-29","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2001-10-29","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2001-10-29","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2001-11-05","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2001-11-05","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2001-11-05","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2001-11-12","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2001-11-12","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2001-11-12","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2001-11-19","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-11-19","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2001-11-19","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2001-11-26","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-11-26","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2001-11-26","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2001-12-03","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-12-03","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2001-12-03","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2001-12-10","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-12-10","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2001-12-10","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2001-12-17","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2001-12-17","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2001-12-17","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2001-12-24","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-12-24","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2001-12-24","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2001-12-31","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2001-12-31","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2001-12-31","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2002-01-07","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2002-01-07","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"2002-01-07","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2002-01-14","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-01-14","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2002-01-14","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2002-01-21","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-01-21","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-01-21","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2002-01-28","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-01-28","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-01-28","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2002-02-04","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-02-04","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-02-04","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2002-02-11","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-02-11","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2002-02-11","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2002-02-18","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-02-18","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2002-02-18","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2002-02-25","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-02-25","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2002-02-25","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2002-03-04","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-03-04","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2002-03-04","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2002-03-11","fuel":"gasoline","grade":"all","price_premium":0.039},{"date":"2002-03-11","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-03-11","fuel":"gasoline","grade":"premium","price_premium":0.175},{"date":"2002-03-18","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2002-03-18","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2002-03-18","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2002-03-25","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2002-03-25","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-03-25","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"2002-04-01","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-04-01","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2002-04-01","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2002-04-08","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-04-08","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-04-08","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2002-04-15","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-04-15","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2002-04-15","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2002-04-22","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-04-22","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2002-04-22","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2002-04-29","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-04-29","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2002-04-29","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2002-05-06","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-05-06","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2002-05-06","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2002-05-13","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2002-05-13","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2002-05-13","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2002-05-20","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-05-20","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2002-05-20","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2002-05-27","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-05-27","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2002-05-27","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2002-06-03","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-06-03","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-06-03","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2002-06-10","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-06-10","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2002-06-10","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2002-06-17","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-06-17","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-06-17","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2002-06-24","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-06-24","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-06-24","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2002-07-01","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-07-01","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2002-07-01","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2002-07-08","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-07-08","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-07-08","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2002-07-15","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-07-15","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2002-07-15","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2002-07-22","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-07-22","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-07-22","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2002-07-29","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2002-07-29","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-07-29","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2002-08-05","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-08-05","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-08-05","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2002-08-12","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-08-12","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2002-08-12","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2002-08-19","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-08-19","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-08-19","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2002-08-26","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-08-26","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2002-08-26","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2002-09-02","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-09-02","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2002-09-02","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2002-09-09","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-09-09","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2002-09-09","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2002-09-16","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-09-16","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2002-09-16","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2002-09-23","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-09-23","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-09-23","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2002-09-30","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-09-30","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2002-09-30","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2002-10-07","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-10-07","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2002-10-07","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2002-10-14","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-10-14","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-10-14","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2002-10-21","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-10-21","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2002-10-21","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2002-10-28","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-10-28","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2002-10-28","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2002-11-04","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-11-04","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2002-11-04","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2002-11-11","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2002-11-11","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2002-11-11","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2002-11-18","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-11-18","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2002-11-18","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2002-11-25","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2002-11-25","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-11-25","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2002-12-02","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2002-12-02","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2002-12-02","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"2002-12-09","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2002-12-09","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2002-12-09","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2002-12-16","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2002-12-16","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2002-12-16","fuel":"gasoline","grade":"premium","price_premium":0.195},{"date":"2002-12-23","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2002-12-23","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-12-23","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2002-12-30","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2002-12-30","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2002-12-30","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2003-01-06","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-01-06","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2003-01-06","fuel":"gasoline","grade":"premium","price_premium":0.195},{"date":"2003-01-13","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-01-13","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2003-01-13","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2003-01-20","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-01-20","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2003-01-20","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2003-01-27","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-01-27","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-01-27","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2003-02-03","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-02-03","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-02-03","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2003-02-10","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-02-10","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2003-02-10","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2003-02-17","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-02-17","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2003-02-17","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2003-02-24","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-02-24","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2003-02-24","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2003-03-03","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-03-03","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-03-03","fuel":"gasoline","grade":"premium","price_premium":0.179},{"date":"2003-03-10","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-03-10","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2003-03-10","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"2003-03-17","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-03-17","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2003-03-17","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2003-03-24","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-03-24","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2003-03-24","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2003-03-31","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-03-31","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2003-03-31","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2003-04-07","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-04-07","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2003-04-07","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2003-04-14","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2003-04-14","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2003-04-14","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2003-04-21","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2003-04-21","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2003-04-21","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2003-04-28","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-04-28","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2003-04-28","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2003-05-05","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-05-05","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2003-05-05","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2003-05-12","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-05-12","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2003-05-12","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2003-05-19","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-05-19","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2003-05-19","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2003-05-26","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-05-26","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2003-05-26","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2003-06-02","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-06-02","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2003-06-02","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2003-06-09","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-06-09","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"2003-06-09","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2003-06-16","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-06-16","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2003-06-16","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2003-06-23","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-06-23","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2003-06-23","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2003-06-30","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-06-30","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2003-06-30","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2003-07-07","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-07-07","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-07-07","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2003-07-14","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-07-14","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-07-14","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2003-07-21","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-07-21","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2003-07-21","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2003-07-28","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-07-28","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2003-07-28","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2003-08-04","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-08-04","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2003-08-04","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2003-08-11","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-08-11","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2003-08-11","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2003-08-18","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-08-18","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2003-08-18","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2003-08-25","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-08-25","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2003-08-25","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2003-09-01","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2003-09-01","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2003-09-01","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2003-09-08","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-09-08","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2003-09-08","fuel":"gasoline","grade":"premium","price_premium":0.182},{"date":"2003-09-15","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-09-15","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2003-09-15","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2003-09-22","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-09-22","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2003-09-22","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2003-09-29","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2003-09-29","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2003-09-29","fuel":"gasoline","grade":"premium","price_premium":0.196},{"date":"2003-10-06","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2003-10-06","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2003-10-06","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"2003-10-13","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-10-13","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-10-13","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2003-10-20","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2003-10-20","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2003-10-20","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2003-10-27","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-10-27","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2003-10-27","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2003-11-03","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-11-03","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2003-11-03","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2003-11-10","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-11-10","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-11-10","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2003-11-17","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-11-17","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-11-17","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2003-11-24","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2003-11-24","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2003-11-24","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2003-12-01","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-12-01","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2003-12-01","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2003-12-08","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-12-08","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2003-12-08","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"2003-12-15","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2003-12-15","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2003-12-15","fuel":"gasoline","grade":"premium","price_premium":0.195},{"date":"2003-12-22","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-12-22","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2003-12-22","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2003-12-29","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2003-12-29","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2003-12-29","fuel":"gasoline","grade":"premium","price_premium":0.196},{"date":"2004-01-05","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-01-05","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2004-01-05","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2004-01-12","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-01-12","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2004-01-12","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2004-01-19","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-01-19","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2004-01-19","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2004-01-26","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-01-26","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2004-01-26","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2004-02-02","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2004-02-02","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2004-02-02","fuel":"gasoline","grade":"premium","price_premium":0.195},{"date":"2004-02-09","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-02-09","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2004-02-09","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2004-02-16","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-02-16","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2004-02-16","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2004-02-23","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-02-23","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2004-02-23","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2004-03-01","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2004-03-01","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2004-03-01","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2004-03-08","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-03-08","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2004-03-08","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2004-03-15","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-03-15","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2004-03-15","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2004-03-22","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-03-22","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2004-03-22","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2004-03-29","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-03-29","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2004-03-29","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2004-04-05","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-04-05","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2004-04-05","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2004-04-12","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2004-04-12","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2004-04-12","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2004-04-19","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2004-04-19","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2004-04-19","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2004-04-26","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2004-04-26","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2004-04-26","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2004-05-03","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2004-05-03","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2004-05-03","fuel":"gasoline","grade":"premium","price_premium":0.177},{"date":"2004-05-10","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"2004-05-10","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"2004-05-10","fuel":"gasoline","grade":"premium","price_premium":0.17},{"date":"2004-05-17","fuel":"gasoline","grade":"all","price_premium":0.038},{"date":"2004-05-17","fuel":"gasoline","grade":"midgrade","price_premium":0.089},{"date":"2004-05-17","fuel":"gasoline","grade":"premium","price_premium":0.172},{"date":"2004-05-24","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2004-05-24","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2004-05-24","fuel":"gasoline","grade":"premium","price_premium":0.178},{"date":"2004-05-31","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2004-05-31","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2004-05-31","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2004-06-07","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2004-06-07","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2004-06-07","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2004-06-14","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2004-06-14","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2004-06-14","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2004-06-21","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2004-06-21","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2004-06-21","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2004-06-28","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2004-06-28","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2004-06-28","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2004-07-05","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2004-07-05","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2004-07-05","fuel":"gasoline","grade":"premium","price_premium":0.196},{"date":"2004-07-12","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-07-12","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2004-07-12","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2004-07-19","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-07-19","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2004-07-19","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2004-07-26","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-07-26","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2004-07-26","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2004-08-02","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-08-02","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2004-08-02","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2004-08-09","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-08-09","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2004-08-09","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2004-08-16","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-08-16","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2004-08-16","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2004-08-23","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-08-23","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2004-08-23","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2004-08-30","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-08-30","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2004-08-30","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2004-09-06","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-09-06","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2004-09-06","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2004-09-13","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2004-09-13","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2004-09-13","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2004-09-20","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-09-20","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2004-09-20","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2004-09-27","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-09-27","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2004-09-27","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2004-10-04","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-10-04","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2004-10-04","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2004-10-11","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-10-11","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2004-10-11","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2004-10-18","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-10-18","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2004-10-18","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2004-10-25","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-10-25","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2004-10-25","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2004-11-01","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2004-11-01","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2004-11-01","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2004-11-08","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2004-11-08","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2004-11-08","fuel":"gasoline","grade":"premium","price_premium":0.195},{"date":"2004-11-15","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2004-11-15","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2004-11-15","fuel":"gasoline","grade":"premium","price_premium":0.199},{"date":"2004-11-22","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2004-11-22","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"2004-11-22","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"2004-11-29","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2004-11-29","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2004-11-29","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2004-12-06","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2004-12-06","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"2004-12-06","fuel":"gasoline","grade":"premium","price_premium":0.2},{"date":"2004-12-13","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2004-12-13","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2004-12-13","fuel":"gasoline","grade":"premium","price_premium":0.206},{"date":"2004-12-20","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2004-12-20","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2004-12-20","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2004-12-27","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2004-12-27","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2004-12-27","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2005-01-03","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2005-01-03","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2005-01-03","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2005-01-10","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-01-10","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2005-01-10","fuel":"gasoline","grade":"premium","price_premium":0.2},{"date":"2005-01-17","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-01-17","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2005-01-17","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"2005-01-24","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-01-24","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2005-01-24","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2005-01-31","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2005-01-31","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2005-01-31","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2005-02-07","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-02-07","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2005-02-07","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2005-02-14","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-02-14","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2005-02-14","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2005-02-21","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-02-21","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2005-02-21","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2005-02-28","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2005-02-28","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2005-02-28","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2005-03-07","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2005-03-07","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2005-03-07","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2005-03-14","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2005-03-14","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2005-03-14","fuel":"gasoline","grade":"premium","price_premium":0.185},{"date":"2005-03-21","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2005-03-21","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2005-03-21","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2005-03-28","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2005-03-28","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2005-03-28","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2005-04-04","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2005-04-04","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2005-04-04","fuel":"gasoline","grade":"premium","price_premium":0.183},{"date":"2005-04-11","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2005-04-11","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2005-04-11","fuel":"gasoline","grade":"premium","price_premium":0.184},{"date":"2005-04-18","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-04-18","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2005-04-18","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2005-04-25","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-04-25","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2005-04-25","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2005-05-02","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2005-05-02","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2005-05-02","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2005-05-09","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2005-05-09","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2005-05-09","fuel":"gasoline","grade":"premium","price_premium":0.199},{"date":"2005-05-16","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-05-16","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2005-05-16","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"2005-05-23","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-05-23","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2005-05-23","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2005-05-30","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-05-30","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2005-05-30","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"2005-06-06","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-06-06","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2005-06-06","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2005-06-13","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-06-13","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2005-06-13","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2005-06-20","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-06-20","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2005-06-20","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2005-06-27","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2005-06-27","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2005-06-27","fuel":"gasoline","grade":"premium","price_premium":0.187},{"date":"2005-07-04","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2005-07-04","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2005-07-04","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2005-07-11","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2005-07-11","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2005-07-11","fuel":"gasoline","grade":"premium","price_premium":0.189},{"date":"2005-07-18","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-07-18","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2005-07-18","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"2005-07-25","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-07-25","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2005-07-25","fuel":"gasoline","grade":"premium","price_premium":0.199},{"date":"2005-08-01","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-08-01","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2005-08-01","fuel":"gasoline","grade":"premium","price_premium":0.199},{"date":"2005-08-08","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2005-08-08","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2005-08-08","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2005-08-15","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2005-08-15","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2005-08-15","fuel":"gasoline","grade":"premium","price_premium":0.192},{"date":"2005-08-22","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2005-08-22","fuel":"gasoline","grade":"midgrade","price_premium":0.092},{"date":"2005-08-22","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2005-08-29","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-08-29","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2005-08-29","fuel":"gasoline","grade":"premium","price_premium":0.191},{"date":"2005-09-05","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2005-09-05","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"2005-09-05","fuel":"gasoline","grade":"premium","price_premium":0.216},{"date":"2005-09-12","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2005-09-12","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2005-09-12","fuel":"gasoline","grade":"premium","price_premium":0.216},{"date":"2005-09-19","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2005-09-19","fuel":"gasoline","grade":"midgrade","price_premium":0.108},{"date":"2005-09-19","fuel":"gasoline","grade":"premium","price_premium":0.223},{"date":"2005-09-26","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2005-09-26","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2005-09-26","fuel":"gasoline","grade":"premium","price_premium":0.215},{"date":"2005-10-03","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2005-10-03","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2005-10-03","fuel":"gasoline","grade":"premium","price_premium":0.211},{"date":"2005-10-10","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2005-10-10","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2005-10-10","fuel":"gasoline","grade":"premium","price_premium":0.216},{"date":"2005-10-17","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2005-10-17","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2005-10-17","fuel":"gasoline","grade":"premium","price_premium":0.222},{"date":"2005-10-24","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2005-10-24","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2005-10-24","fuel":"gasoline","grade":"premium","price_premium":0.219},{"date":"2005-10-31","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2005-10-31","fuel":"gasoline","grade":"midgrade","price_premium":0.11},{"date":"2005-10-31","fuel":"gasoline","grade":"premium","price_premium":0.218},{"date":"2005-11-07","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2005-11-07","fuel":"gasoline","grade":"midgrade","price_premium":0.109},{"date":"2005-11-07","fuel":"gasoline","grade":"premium","price_premium":0.214},{"date":"2005-11-14","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2005-11-14","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2005-11-14","fuel":"gasoline","grade":"premium","price_premium":0.209},{"date":"2005-11-21","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2005-11-21","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2005-11-21","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2005-11-28","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2005-11-28","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2005-11-28","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2005-12-05","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-12-05","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2005-12-05","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"2005-12-12","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2005-12-12","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2005-12-12","fuel":"gasoline","grade":"premium","price_premium":0.196},{"date":"2005-12-19","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-12-19","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2005-12-19","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"2005-12-26","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2005-12-26","fuel":"gasoline","grade":"midgrade","price_premium":0.095},{"date":"2005-12-26","fuel":"gasoline","grade":"premium","price_premium":0.2},{"date":"2006-01-02","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2006-01-02","fuel":"gasoline","grade":"midgrade","price_premium":0.091},{"date":"2006-01-02","fuel":"gasoline","grade":"premium","price_premium":0.199},{"date":"2006-01-09","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2006-01-09","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2006-01-09","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2006-01-16","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-01-16","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2006-01-16","fuel":"gasoline","grade":"premium","price_premium":0.211},{"date":"2006-01-23","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-01-23","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2006-01-23","fuel":"gasoline","grade":"premium","price_premium":0.211},{"date":"2006-01-30","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-01-30","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2006-01-30","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2006-02-06","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-02-06","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"2006-02-06","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2006-02-13","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2006-02-13","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2006-02-13","fuel":"gasoline","grade":"premium","price_premium":0.21},{"date":"2006-02-20","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-02-20","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2006-02-20","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2006-02-27","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2006-02-27","fuel":"gasoline","grade":"midgrade","price_premium":0.097},{"date":"2006-02-27","fuel":"gasoline","grade":"premium","price_premium":0.196},{"date":"2006-03-06","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2006-03-06","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2006-03-06","fuel":"gasoline","grade":"premium","price_premium":0.188},{"date":"2006-03-13","fuel":"gasoline","grade":"all","price_premium":0.042},{"date":"2006-03-13","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2006-03-13","fuel":"gasoline","grade":"premium","price_premium":0.19},{"date":"2006-03-20","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2006-03-20","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2006-03-20","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2006-03-27","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2006-03-27","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2006-03-27","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2006-04-03","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2006-04-03","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2006-04-03","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2006-04-10","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2006-04-10","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2006-04-10","fuel":"gasoline","grade":"premium","price_premium":0.2},{"date":"2006-04-17","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-04-17","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2006-04-17","fuel":"gasoline","grade":"premium","price_premium":0.203},{"date":"2006-04-24","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-04-24","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2006-04-24","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2006-05-01","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2006-05-01","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2006-05-01","fuel":"gasoline","grade":"premium","price_premium":0.21},{"date":"2006-05-08","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-05-08","fuel":"gasoline","grade":"midgrade","price_premium":0.108},{"date":"2006-05-08","fuel":"gasoline","grade":"premium","price_premium":0.208},{"date":"2006-05-15","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-05-15","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2006-05-15","fuel":"gasoline","grade":"premium","price_premium":0.202},{"date":"2006-05-22","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-05-22","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2006-05-22","fuel":"gasoline","grade":"premium","price_premium":0.206},{"date":"2006-05-29","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-05-29","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2006-05-29","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2006-06-05","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-06-05","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"2006-06-05","fuel":"gasoline","grade":"premium","price_premium":0.203},{"date":"2006-06-12","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-06-12","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"2006-06-12","fuel":"gasoline","grade":"premium","price_premium":0.202},{"date":"2006-06-19","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-06-19","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2006-06-19","fuel":"gasoline","grade":"premium","price_premium":0.206},{"date":"2006-06-26","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-06-26","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"2006-06-26","fuel":"gasoline","grade":"premium","price_premium":0.203},{"date":"2006-07-03","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-07-03","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2006-07-03","fuel":"gasoline","grade":"premium","price_premium":0.199},{"date":"2006-07-10","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2006-07-10","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2006-07-10","fuel":"gasoline","grade":"premium","price_premium":0.196},{"date":"2006-07-17","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2006-07-17","fuel":"gasoline","grade":"midgrade","price_premium":0.1},{"date":"2006-07-17","fuel":"gasoline","grade":"premium","price_premium":0.197},{"date":"2006-07-24","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-07-24","fuel":"gasoline","grade":"midgrade","price_premium":0.103},{"date":"2006-07-24","fuel":"gasoline","grade":"premium","price_premium":0.202},{"date":"2006-07-31","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-07-31","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2006-07-31","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2006-08-07","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-08-07","fuel":"gasoline","grade":"midgrade","price_premium":0.099},{"date":"2006-08-07","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2006-08-14","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2006-08-14","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2006-08-14","fuel":"gasoline","grade":"premium","price_premium":0.21},{"date":"2006-08-21","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2006-08-21","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2006-08-21","fuel":"gasoline","grade":"premium","price_premium":0.212},{"date":"2006-08-28","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2006-08-28","fuel":"gasoline","grade":"midgrade","price_premium":0.108},{"date":"2006-08-28","fuel":"gasoline","grade":"premium","price_premium":0.219},{"date":"2006-09-04","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2006-09-04","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2006-09-04","fuel":"gasoline","grade":"premium","price_premium":0.225},{"date":"2006-09-11","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2006-09-11","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2006-09-11","fuel":"gasoline","grade":"premium","price_premium":0.229},{"date":"2006-09-18","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2006-09-18","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2006-09-18","fuel":"gasoline","grade":"premium","price_premium":0.232},{"date":"2006-09-25","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2006-09-25","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2006-09-25","fuel":"gasoline","grade":"premium","price_premium":0.227},{"date":"2006-10-02","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2006-10-02","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2006-10-02","fuel":"gasoline","grade":"premium","price_premium":0.221},{"date":"2006-10-09","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2006-10-09","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2006-10-09","fuel":"gasoline","grade":"premium","price_premium":0.217},{"date":"2006-10-16","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2006-10-16","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2006-10-16","fuel":"gasoline","grade":"premium","price_premium":0.214},{"date":"2006-10-23","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2006-10-23","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2006-10-23","fuel":"gasoline","grade":"premium","price_premium":0.21},{"date":"2006-10-30","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-10-30","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2006-10-30","fuel":"gasoline","grade":"premium","price_premium":0.206},{"date":"2006-11-06","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-11-06","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2006-11-06","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2006-11-13","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-11-13","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2006-11-13","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2006-11-20","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-11-20","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2006-11-20","fuel":"gasoline","grade":"premium","price_premium":0.206},{"date":"2006-11-27","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-11-27","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2006-11-27","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2006-12-04","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2006-12-04","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2006-12-04","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2006-12-11","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2006-12-11","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2006-12-11","fuel":"gasoline","grade":"premium","price_premium":0.209},{"date":"2006-12-18","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-12-18","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2006-12-18","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2006-12-25","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2006-12-25","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2006-12-25","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2007-01-01","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2007-01-01","fuel":"gasoline","grade":"midgrade","price_premium":0.108},{"date":"2007-01-01","fuel":"gasoline","grade":"premium","price_premium":0.213},{"date":"2007-01-08","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2007-01-08","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2007-01-08","fuel":"gasoline","grade":"premium","price_premium":0.217},{"date":"2007-01-15","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2007-01-15","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2007-01-15","fuel":"gasoline","grade":"premium","price_premium":0.224},{"date":"2007-01-22","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2007-01-22","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2007-01-22","fuel":"gasoline","grade":"premium","price_premium":0.226},{"date":"2007-01-29","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2007-01-29","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2007-01-29","fuel":"gasoline","grade":"premium","price_premium":0.216},{"date":"2007-02-05","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-02-05","fuel":"gasoline","grade":"midgrade","price_premium":0.109},{"date":"2007-02-05","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2007-02-12","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-02-12","fuel":"gasoline","grade":"midgrade","price_premium":0.109},{"date":"2007-02-12","fuel":"gasoline","grade":"premium","price_premium":0.201},{"date":"2007-02-19","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2007-02-19","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2007-02-19","fuel":"gasoline","grade":"premium","price_premium":0.199},{"date":"2007-02-26","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2007-02-26","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2007-02-26","fuel":"gasoline","grade":"premium","price_premium":0.198},{"date":"2007-03-05","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-03-05","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2007-03-05","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2007-03-12","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-03-12","fuel":"gasoline","grade":"midgrade","price_premium":0.108},{"date":"2007-03-12","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2007-03-19","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-03-19","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2007-03-19","fuel":"gasoline","grade":"premium","price_premium":0.204},{"date":"2007-03-26","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2007-03-26","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2007-03-26","fuel":"gasoline","grade":"premium","price_premium":0.202},{"date":"2007-04-02","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-04-02","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2007-04-02","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2007-04-09","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-04-09","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2007-04-09","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2007-04-16","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-04-16","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2007-04-16","fuel":"gasoline","grade":"premium","price_premium":0.207},{"date":"2007-04-23","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2007-04-23","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2007-04-23","fuel":"gasoline","grade":"premium","price_premium":0.213},{"date":"2007-04-30","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-04-30","fuel":"gasoline","grade":"midgrade","price_premium":0.108},{"date":"2007-04-30","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2007-05-07","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2007-05-07","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2007-05-07","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2007-05-14","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2007-05-14","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2007-05-14","fuel":"gasoline","grade":"premium","price_premium":0.181},{"date":"2007-05-21","fuel":"gasoline","grade":"all","price_premium":0.04},{"date":"2007-05-21","fuel":"gasoline","grade":"midgrade","price_premium":0.09},{"date":"2007-05-21","fuel":"gasoline","grade":"premium","price_premium":0.18},{"date":"2007-05-28","fuel":"gasoline","grade":"all","price_premium":0.041},{"date":"2007-05-28","fuel":"gasoline","grade":"midgrade","price_premium":0.093},{"date":"2007-05-28","fuel":"gasoline","grade":"premium","price_premium":0.186},{"date":"2007-06-04","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2007-06-04","fuel":"gasoline","grade":"midgrade","price_premium":0.098},{"date":"2007-06-04","fuel":"gasoline","grade":"premium","price_premium":0.194},{"date":"2007-06-11","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-06-11","fuel":"gasoline","grade":"midgrade","price_premium":0.109},{"date":"2007-06-11","fuel":"gasoline","grade":"premium","price_premium":0.205},{"date":"2007-06-18","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2007-06-18","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2007-06-18","fuel":"gasoline","grade":"premium","price_premium":0.213},{"date":"2007-06-25","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2007-06-25","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2007-06-25","fuel":"gasoline","grade":"premium","price_premium":0.214},{"date":"2007-07-02","fuel":"gasoline","grade":"all","price_premium":0.046},{"date":"2007-07-02","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2007-07-02","fuel":"gasoline","grade":"premium","price_premium":0.209},{"date":"2007-07-09","fuel":"gasoline","grade":"all","price_premium":0.045},{"date":"2007-07-09","fuel":"gasoline","grade":"midgrade","price_premium":0.096},{"date":"2007-07-09","fuel":"gasoline","grade":"premium","price_premium":0.201},{"date":"2007-07-16","fuel":"gasoline","grade":"all","price_premium":0.043},{"date":"2007-07-16","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2007-07-16","fuel":"gasoline","grade":"premium","price_premium":0.193},{"date":"2007-07-23","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2007-07-23","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2007-07-23","fuel":"gasoline","grade":"premium","price_premium":0.21},{"date":"2007-07-30","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2007-07-30","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2007-07-30","fuel":"gasoline","grade":"premium","price_premium":0.223},{"date":"2007-08-06","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2007-08-06","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2007-08-06","fuel":"gasoline","grade":"premium","price_premium":0.224},{"date":"2007-08-13","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2007-08-13","fuel":"gasoline","grade":"midgrade","price_premium":0.109},{"date":"2007-08-13","fuel":"gasoline","grade":"premium","price_premium":0.224},{"date":"2007-08-20","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2007-08-20","fuel":"gasoline","grade":"midgrade","price_premium":0.101},{"date":"2007-08-20","fuel":"gasoline","grade":"premium","price_premium":0.212},{"date":"2007-08-27","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2007-08-27","fuel":"gasoline","grade":"midgrade","price_premium":0.102},{"date":"2007-08-27","fuel":"gasoline","grade":"premium","price_premium":0.214},{"date":"2007-09-03","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2007-09-03","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2007-09-03","fuel":"gasoline","grade":"premium","price_premium":0.201},{"date":"2007-09-10","fuel":"gasoline","grade":"all","price_premium":0.044},{"date":"2007-09-10","fuel":"gasoline","grade":"midgrade","price_premium":0.094},{"date":"2007-09-10","fuel":"gasoline","grade":"premium","price_premium":0.2},{"date":"2007-09-17","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2007-09-17","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2007-09-17","fuel":"gasoline","grade":"premium","price_premium":0.214},{"date":"2007-09-24","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2007-09-24","fuel":"gasoline","grade":"midgrade","price_premium":0.105},{"date":"2007-09-24","fuel":"gasoline","grade":"premium","price_premium":0.217},{"date":"2007-10-01","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2007-10-01","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2007-10-01","fuel":"gasoline","grade":"premium","price_premium":0.225},{"date":"2007-10-08","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2007-10-08","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2007-10-08","fuel":"gasoline","grade":"premium","price_premium":0.227},{"date":"2007-10-15","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2007-10-15","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2007-10-15","fuel":"gasoline","grade":"premium","price_premium":0.228},{"date":"2007-10-22","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2007-10-22","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2007-10-22","fuel":"gasoline","grade":"premium","price_premium":0.223},{"date":"2007-10-29","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2007-10-29","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2007-10-29","fuel":"gasoline","grade":"premium","price_premium":0.22},{"date":"2007-11-05","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2007-11-05","fuel":"gasoline","grade":"midgrade","price_premium":0.104},{"date":"2007-11-05","fuel":"gasoline","grade":"premium","price_premium":0.211},{"date":"2007-11-12","fuel":"gasoline","grade":"all","price_premium":0.047},{"date":"2007-11-12","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2007-11-12","fuel":"gasoline","grade":"premium","price_premium":0.214},{"date":"2007-11-19","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2007-11-19","fuel":"gasoline","grade":"midgrade","price_premium":0.109},{"date":"2007-11-19","fuel":"gasoline","grade":"premium","price_premium":0.221},{"date":"2007-11-26","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2007-11-26","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2007-11-26","fuel":"gasoline","grade":"premium","price_premium":0.222},{"date":"2007-12-03","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2007-12-03","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2007-12-03","fuel":"gasoline","grade":"premium","price_premium":0.231},{"date":"2007-12-10","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2007-12-10","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2007-12-10","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2007-12-17","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2007-12-17","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2007-12-17","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2007-12-24","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2007-12-24","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2007-12-24","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2007-12-31","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2007-12-31","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2007-12-31","fuel":"gasoline","grade":"premium","price_premium":0.23},{"date":"2008-01-07","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2008-01-07","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2008-01-07","fuel":"gasoline","grade":"premium","price_premium":0.226},{"date":"2008-01-14","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2008-01-14","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2008-01-14","fuel":"gasoline","grade":"premium","price_premium":0.232},{"date":"2008-01-21","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2008-01-21","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2008-01-21","fuel":"gasoline","grade":"premium","price_premium":0.239},{"date":"2008-01-28","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2008-01-28","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2008-01-28","fuel":"gasoline","grade":"premium","price_premium":0.24},{"date":"2008-02-04","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2008-02-04","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2008-02-04","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2008-02-11","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2008-02-11","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2008-02-11","fuel":"gasoline","grade":"premium","price_premium":0.23},{"date":"2008-02-18","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2008-02-18","fuel":"gasoline","grade":"midgrade","price_premium":0.111},{"date":"2008-02-18","fuel":"gasoline","grade":"premium","price_premium":0.224},{"date":"2008-02-25","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2008-02-25","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2008-02-25","fuel":"gasoline","grade":"premium","price_premium":0.224},{"date":"2008-03-03","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2008-03-03","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2008-03-03","fuel":"gasoline","grade":"premium","price_premium":0.224},{"date":"2008-03-10","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2008-03-10","fuel":"gasoline","grade":"midgrade","price_premium":0.109},{"date":"2008-03-10","fuel":"gasoline","grade":"premium","price_premium":0.218},{"date":"2008-03-17","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2008-03-17","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2008-03-17","fuel":"gasoline","grade":"premium","price_premium":0.216},{"date":"2008-03-24","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2008-03-24","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2008-03-24","fuel":"gasoline","grade":"premium","price_premium":0.227},{"date":"2008-03-31","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2008-03-31","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2008-03-31","fuel":"gasoline","grade":"premium","price_premium":0.222},{"date":"2008-04-07","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2008-04-07","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2008-04-07","fuel":"gasoline","grade":"premium","price_premium":0.218},{"date":"2008-04-14","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2008-04-14","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2008-04-14","fuel":"gasoline","grade":"premium","price_premium":0.218},{"date":"2008-04-21","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2008-04-21","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2008-04-21","fuel":"gasoline","grade":"premium","price_premium":0.221},{"date":"2008-04-28","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2008-04-28","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2008-04-28","fuel":"gasoline","grade":"premium","price_premium":0.226},{"date":"2008-05-05","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2008-05-05","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2008-05-05","fuel":"gasoline","grade":"premium","price_premium":0.229},{"date":"2008-05-12","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2008-05-12","fuel":"gasoline","grade":"midgrade","price_premium":0.108},{"date":"2008-05-12","fuel":"gasoline","grade":"premium","price_premium":0.222},{"date":"2008-05-19","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2008-05-19","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2008-05-19","fuel":"gasoline","grade":"premium","price_premium":0.226},{"date":"2008-05-26","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2008-05-26","fuel":"gasoline","grade":"midgrade","price_premium":0.108},{"date":"2008-05-26","fuel":"gasoline","grade":"premium","price_premium":0.222},{"date":"2008-06-02","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2008-06-02","fuel":"gasoline","grade":"midgrade","price_premium":0.11},{"date":"2008-06-02","fuel":"gasoline","grade":"premium","price_premium":0.225},{"date":"2008-06-09","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2008-06-09","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2008-06-09","fuel":"gasoline","grade":"premium","price_premium":0.228},{"date":"2008-06-16","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2008-06-16","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2008-06-16","fuel":"gasoline","grade":"premium","price_premium":0.232},{"date":"2008-06-23","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2008-06-23","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2008-06-23","fuel":"gasoline","grade":"premium","price_premium":0.233},{"date":"2008-06-30","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2008-06-30","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2008-06-30","fuel":"gasoline","grade":"premium","price_premium":0.231},{"date":"2008-07-07","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2008-07-07","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2008-07-07","fuel":"gasoline","grade":"premium","price_premium":0.23},{"date":"2008-07-14","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2008-07-14","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2008-07-14","fuel":"gasoline","grade":"premium","price_premium":0.228},{"date":"2008-07-21","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2008-07-21","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2008-07-21","fuel":"gasoline","grade":"premium","price_premium":0.239},{"date":"2008-07-28","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2008-07-28","fuel":"gasoline","grade":"midgrade","price_premium":0.127},{"date":"2008-07-28","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2008-08-04","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2008-08-04","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2008-08-04","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2008-08-11","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2008-08-11","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2008-08-11","fuel":"gasoline","grade":"premium","price_premium":0.246},{"date":"2008-08-18","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2008-08-18","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2008-08-18","fuel":"gasoline","grade":"premium","price_premium":0.239},{"date":"2008-08-25","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2008-08-25","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2008-08-25","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2008-09-01","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2008-09-01","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2008-09-01","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2008-09-08","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2008-09-08","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2008-09-08","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2008-09-15","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2008-09-15","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2008-09-15","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2008-09-22","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2008-09-22","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2008-09-22","fuel":"gasoline","grade":"premium","price_premium":0.245},{"date":"2008-09-29","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2008-09-29","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2008-09-29","fuel":"gasoline","grade":"premium","price_premium":0.251},{"date":"2008-10-06","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2008-10-06","fuel":"gasoline","grade":"midgrade","price_premium":0.134},{"date":"2008-10-06","fuel":"gasoline","grade":"premium","price_premium":0.262},{"date":"2008-10-13","fuel":"gasoline","grade":"all","price_premium":0.062},{"date":"2008-10-13","fuel":"gasoline","grade":"midgrade","price_premium":0.145},{"date":"2008-10-13","fuel":"gasoline","grade":"premium","price_premium":0.274},{"date":"2008-10-20","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2008-10-20","fuel":"gasoline","grade":"midgrade","price_premium":0.139},{"date":"2008-10-20","fuel":"gasoline","grade":"premium","price_premium":0.268},{"date":"2008-10-27","fuel":"gasoline","grade":"all","price_premium":0.062},{"date":"2008-10-27","fuel":"gasoline","grade":"midgrade","price_premium":0.144},{"date":"2008-10-27","fuel":"gasoline","grade":"premium","price_premium":0.273},{"date":"2008-11-03","fuel":"gasoline","grade":"all","price_premium":0.062},{"date":"2008-11-03","fuel":"gasoline","grade":"midgrade","price_premium":0.143},{"date":"2008-11-03","fuel":"gasoline","grade":"premium","price_premium":0.277},{"date":"2008-11-10","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2008-11-10","fuel":"gasoline","grade":"midgrade","price_premium":0.139},{"date":"2008-11-10","fuel":"gasoline","grade":"premium","price_premium":0.27},{"date":"2008-11-17","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2008-11-17","fuel":"gasoline","grade":"midgrade","price_premium":0.139},{"date":"2008-11-17","fuel":"gasoline","grade":"premium","price_premium":0.267},{"date":"2008-11-24","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2008-11-24","fuel":"gasoline","grade":"midgrade","price_premium":0.137},{"date":"2008-11-24","fuel":"gasoline","grade":"premium","price_premium":0.271},{"date":"2008-12-01","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2008-12-01","fuel":"gasoline","grade":"midgrade","price_premium":0.134},{"date":"2008-12-01","fuel":"gasoline","grade":"premium","price_premium":0.266},{"date":"2008-12-08","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2008-12-08","fuel":"gasoline","grade":"midgrade","price_premium":0.133},{"date":"2008-12-08","fuel":"gasoline","grade":"premium","price_premium":0.266},{"date":"2008-12-15","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2008-12-15","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2008-12-15","fuel":"gasoline","grade":"premium","price_premium":0.256},{"date":"2008-12-22","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2008-12-22","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2008-12-22","fuel":"gasoline","grade":"premium","price_premium":0.254},{"date":"2008-12-29","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2008-12-29","fuel":"gasoline","grade":"midgrade","price_premium":0.13},{"date":"2008-12-29","fuel":"gasoline","grade":"premium","price_premium":0.253},{"date":"2009-01-05","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-01-05","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2009-01-05","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2009-01-12","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2009-01-12","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2009-01-12","fuel":"gasoline","grade":"premium","price_premium":0.231},{"date":"2009-01-19","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2009-01-19","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2009-01-19","fuel":"gasoline","grade":"premium","price_premium":0.23},{"date":"2009-01-26","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-01-26","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2009-01-26","fuel":"gasoline","grade":"premium","price_premium":0.232},{"date":"2009-02-02","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-02-02","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2009-02-02","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2009-02-09","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-02-09","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2009-02-09","fuel":"gasoline","grade":"premium","price_premium":0.235},{"date":"2009-02-16","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-02-16","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2009-02-16","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2009-02-23","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-02-23","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2009-02-23","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2009-03-02","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-03-02","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2009-03-02","fuel":"gasoline","grade":"premium","price_premium":0.24},{"date":"2009-03-09","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-03-09","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2009-03-09","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2009-03-16","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-03-16","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2009-03-16","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2009-03-23","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-03-23","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2009-03-23","fuel":"gasoline","grade":"premium","price_premium":0.231},{"date":"2009-03-30","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2009-03-30","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2009-03-30","fuel":"gasoline","grade":"premium","price_premium":0.229},{"date":"2009-04-06","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-04-06","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2009-04-06","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2009-04-13","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-04-13","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2009-04-13","fuel":"gasoline","grade":"premium","price_premium":0.233},{"date":"2009-04-20","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-04-20","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2009-04-20","fuel":"gasoline","grade":"premium","price_premium":0.235},{"date":"2009-04-27","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-04-27","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2009-04-27","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2009-05-04","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2009-05-04","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2009-05-04","fuel":"gasoline","grade":"premium","price_premium":0.23},{"date":"2009-05-11","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2009-05-11","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2009-05-11","fuel":"gasoline","grade":"premium","price_premium":0.227},{"date":"2009-05-18","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2009-05-18","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2009-05-18","fuel":"gasoline","grade":"premium","price_premium":0.231},{"date":"2009-05-25","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2009-05-25","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2009-05-25","fuel":"gasoline","grade":"premium","price_premium":0.226},{"date":"2009-06-01","fuel":"gasoline","grade":"all","price_premium":0.048},{"date":"2009-06-01","fuel":"gasoline","grade":"midgrade","price_premium":0.106},{"date":"2009-06-01","fuel":"gasoline","grade":"premium","price_premium":0.217},{"date":"2009-06-08","fuel":"gasoline","grade":"all","price_premium":0.049},{"date":"2009-06-08","fuel":"gasoline","grade":"midgrade","price_premium":0.107},{"date":"2009-06-08","fuel":"gasoline","grade":"premium","price_premium":0.219},{"date":"2009-06-15","fuel":"gasoline","grade":"all","price_premium":0.05},{"date":"2009-06-15","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2009-06-15","fuel":"gasoline","grade":"premium","price_premium":0.224},{"date":"2009-06-22","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-06-22","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2009-06-22","fuel":"gasoline","grade":"premium","price_premium":0.233},{"date":"2009-06-29","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-06-29","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2009-06-29","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2009-07-06","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-07-06","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2009-07-06","fuel":"gasoline","grade":"premium","price_premium":0.243},{"date":"2009-07-13","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2009-07-13","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2009-07-13","fuel":"gasoline","grade":"premium","price_premium":0.251},{"date":"2009-07-20","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2009-07-20","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2009-07-20","fuel":"gasoline","grade":"premium","price_premium":0.251},{"date":"2009-07-27","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-07-27","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2009-07-27","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2009-08-03","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-08-03","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2009-08-03","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2009-08-10","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-08-10","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2009-08-10","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2009-08-17","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-08-17","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2009-08-17","fuel":"gasoline","grade":"premium","price_premium":0.24},{"date":"2009-08-24","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-08-24","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2009-08-24","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2009-08-31","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-08-31","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2009-08-31","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2009-09-07","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-09-07","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2009-09-07","fuel":"gasoline","grade":"premium","price_premium":0.243},{"date":"2009-09-14","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-09-14","fuel":"gasoline","grade":"midgrade","price_premium":0.127},{"date":"2009-09-14","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2009-09-21","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-09-21","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2009-09-21","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2009-09-28","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-09-28","fuel":"gasoline","grade":"midgrade","price_premium":0.132},{"date":"2009-09-28","fuel":"gasoline","grade":"premium","price_premium":0.242},{"date":"2009-10-05","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-10-05","fuel":"gasoline","grade":"midgrade","price_premium":0.132},{"date":"2009-10-05","fuel":"gasoline","grade":"premium","price_premium":0.243},{"date":"2009-10-12","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-10-12","fuel":"gasoline","grade":"midgrade","price_premium":0.125},{"date":"2009-10-12","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2009-10-19","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-10-19","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2009-10-19","fuel":"gasoline","grade":"premium","price_premium":0.233},{"date":"2009-10-26","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2009-10-26","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2009-10-26","fuel":"gasoline","grade":"premium","price_premium":0.235},{"date":"2009-11-02","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2009-11-02","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2009-11-02","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2009-11-09","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2009-11-09","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2009-11-09","fuel":"gasoline","grade":"premium","price_premium":0.242},{"date":"2009-11-16","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-11-16","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2009-11-16","fuel":"gasoline","grade":"premium","price_premium":0.248},{"date":"2009-11-23","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-11-23","fuel":"gasoline","grade":"midgrade","price_premium":0.125},{"date":"2009-11-23","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2009-11-30","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-11-30","fuel":"gasoline","grade":"midgrade","price_premium":0.125},{"date":"2009-11-30","fuel":"gasoline","grade":"premium","price_premium":0.246},{"date":"2009-12-07","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-12-07","fuel":"gasoline","grade":"midgrade","price_premium":0.127},{"date":"2009-12-07","fuel":"gasoline","grade":"premium","price_premium":0.248},{"date":"2009-12-14","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2009-12-14","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2009-12-14","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2009-12-21","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2009-12-21","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2009-12-21","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2009-12-28","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2009-12-28","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2009-12-28","fuel":"gasoline","grade":"premium","price_premium":0.246},{"date":"2010-01-04","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-01-04","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2010-01-04","fuel":"gasoline","grade":"premium","price_premium":0.24},{"date":"2010-01-11","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-01-11","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2010-01-11","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2010-01-18","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2010-01-18","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2010-01-18","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2010-01-25","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-01-25","fuel":"gasoline","grade":"midgrade","price_premium":0.127},{"date":"2010-01-25","fuel":"gasoline","grade":"premium","price_premium":0.248},{"date":"2010-02-01","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2010-02-01","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2010-02-01","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2010-02-08","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-02-08","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2010-02-08","fuel":"gasoline","grade":"premium","price_premium":0.248},{"date":"2010-02-15","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2010-02-15","fuel":"gasoline","grade":"midgrade","price_premium":0.13},{"date":"2010-02-15","fuel":"gasoline","grade":"premium","price_premium":0.254},{"date":"2010-02-22","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2010-02-22","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2010-02-22","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2010-03-01","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2010-03-01","fuel":"gasoline","grade":"midgrade","price_premium":0.125},{"date":"2010-03-01","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2010-03-08","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-03-08","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2010-03-08","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2010-03-15","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-03-15","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2010-03-15","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2010-03-22","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2010-03-22","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2010-03-22","fuel":"gasoline","grade":"premium","price_premium":0.231},{"date":"2010-03-29","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-03-29","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2010-03-29","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2010-04-05","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2010-04-05","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2010-04-05","fuel":"gasoline","grade":"premium","price_premium":0.23},{"date":"2010-04-12","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2010-04-12","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2010-04-12","fuel":"gasoline","grade":"premium","price_premium":0.23},{"date":"2010-04-19","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2010-04-19","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2010-04-19","fuel":"gasoline","grade":"premium","price_premium":0.231},{"date":"2010-04-26","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-04-26","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2010-04-26","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2010-05-03","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-05-03","fuel":"gasoline","grade":"midgrade","price_premium":0.113},{"date":"2010-05-03","fuel":"gasoline","grade":"premium","price_premium":0.233},{"date":"2010-05-10","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-05-10","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2010-05-10","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2010-05-17","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2010-05-17","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2010-05-17","fuel":"gasoline","grade":"premium","price_premium":0.243},{"date":"2010-05-24","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2010-05-24","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2010-05-24","fuel":"gasoline","grade":"premium","price_premium":0.251},{"date":"2010-05-31","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2010-05-31","fuel":"gasoline","grade":"midgrade","price_premium":0.127},{"date":"2010-05-31","fuel":"gasoline","grade":"premium","price_premium":0.252},{"date":"2010-06-07","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-06-07","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2010-06-07","fuel":"gasoline","grade":"premium","price_premium":0.247},{"date":"2010-06-14","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-06-14","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2010-06-14","fuel":"gasoline","grade":"premium","price_premium":0.246},{"date":"2010-06-21","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-06-21","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2010-06-21","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2010-06-28","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-06-28","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2010-06-28","fuel":"gasoline","grade":"premium","price_premium":0.235},{"date":"2010-07-05","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-07-05","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2010-07-05","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2010-07-12","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-07-12","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2010-07-12","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2010-07-19","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-07-19","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2010-07-19","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2010-07-26","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-07-26","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2010-07-26","fuel":"gasoline","grade":"premium","price_premium":0.233},{"date":"2010-08-02","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-08-02","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2010-08-02","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2010-08-09","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-08-09","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2010-08-09","fuel":"gasoline","grade":"premium","price_premium":0.233},{"date":"2010-08-16","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-08-16","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2010-08-16","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2010-08-23","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-08-23","fuel":"gasoline","grade":"midgrade","price_premium":0.127},{"date":"2010-08-23","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2010-08-30","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2010-08-30","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2010-08-30","fuel":"gasoline","grade":"premium","price_premium":0.24},{"date":"2010-09-06","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-09-06","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2010-09-06","fuel":"gasoline","grade":"premium","price_premium":0.235},{"date":"2010-09-13","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2010-09-13","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2010-09-13","fuel":"gasoline","grade":"premium","price_premium":0.229},{"date":"2010-09-20","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-09-20","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2010-09-20","fuel":"gasoline","grade":"premium","price_premium":0.231},{"date":"2010-09-27","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-09-27","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2010-09-27","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2010-10-04","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-10-04","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2010-10-04","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2010-10-11","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-10-11","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2010-10-11","fuel":"gasoline","grade":"premium","price_premium":0.234},{"date":"2010-10-18","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-10-18","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2010-10-18","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2010-10-25","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2010-10-25","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2010-10-25","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2010-11-01","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-11-01","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2010-11-01","fuel":"gasoline","grade":"premium","price_premium":0.245},{"date":"2010-11-08","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-11-08","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2010-11-08","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2010-11-15","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2010-11-15","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2010-11-15","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2010-11-22","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-11-22","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2010-11-22","fuel":"gasoline","grade":"premium","price_premium":0.248},{"date":"2010-11-29","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2010-11-29","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2010-11-29","fuel":"gasoline","grade":"premium","price_premium":0.252},{"date":"2010-12-06","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-12-06","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2010-12-06","fuel":"gasoline","grade":"premium","price_premium":0.249},{"date":"2010-12-13","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-12-13","fuel":"gasoline","grade":"midgrade","price_premium":0.121},{"date":"2010-12-13","fuel":"gasoline","grade":"premium","price_premium":0.247},{"date":"2010-12-20","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2010-12-20","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2010-12-20","fuel":"gasoline","grade":"premium","price_premium":0.249},{"date":"2010-12-27","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2010-12-27","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2010-12-27","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2011-01-03","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-01-03","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2011-01-03","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2011-01-10","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2011-01-10","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2011-01-10","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2011-01-17","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-01-17","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2011-01-17","fuel":"gasoline","grade":"premium","price_premium":0.243},{"date":"2011-01-24","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2011-01-24","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2011-01-24","fuel":"gasoline","grade":"premium","price_premium":0.243},{"date":"2011-01-31","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-01-31","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2011-01-31","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2011-02-07","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2011-02-07","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2011-02-07","fuel":"gasoline","grade":"premium","price_premium":0.239},{"date":"2011-02-14","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2011-02-14","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2011-02-14","fuel":"gasoline","grade":"premium","price_premium":0.242},{"date":"2011-02-21","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-02-21","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2011-02-21","fuel":"gasoline","grade":"premium","price_premium":0.239},{"date":"2011-02-28","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2011-02-28","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2011-02-28","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2011-03-07","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2011-03-07","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2011-03-07","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2011-03-14","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-03-14","fuel":"gasoline","grade":"midgrade","price_premium":0.123},{"date":"2011-03-14","fuel":"gasoline","grade":"premium","price_premium":0.242},{"date":"2011-03-21","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2011-03-21","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2011-03-21","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2011-03-28","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-03-28","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2011-03-28","fuel":"gasoline","grade":"premium","price_premium":0.24},{"date":"2011-04-04","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2011-04-04","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2011-04-04","fuel":"gasoline","grade":"premium","price_premium":0.237},{"date":"2011-04-11","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2011-04-11","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2011-04-11","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2011-04-18","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2011-04-18","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2011-04-18","fuel":"gasoline","grade":"premium","price_premium":0.236},{"date":"2011-04-25","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2011-04-25","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2011-04-25","fuel":"gasoline","grade":"premium","price_premium":0.238},{"date":"2011-05-02","fuel":"gasoline","grade":"all","price_premium":0.051},{"date":"2011-05-02","fuel":"gasoline","grade":"midgrade","price_premium":0.112},{"date":"2011-05-02","fuel":"gasoline","grade":"premium","price_premium":0.235},{"date":"2011-05-09","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2011-05-09","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2011-05-09","fuel":"gasoline","grade":"premium","price_premium":0.241},{"date":"2011-05-16","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-05-16","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2011-05-16","fuel":"gasoline","grade":"premium","price_premium":0.244},{"date":"2011-05-23","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2011-05-23","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2011-05-23","fuel":"gasoline","grade":"premium","price_premium":0.251},{"date":"2011-05-30","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-05-30","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2011-05-30","fuel":"gasoline","grade":"premium","price_premium":0.247},{"date":"2011-06-06","fuel":"gasoline","grade":"all","price_premium":0.052},{"date":"2011-06-06","fuel":"gasoline","grade":"midgrade","price_premium":0.11},{"date":"2011-06-06","fuel":"gasoline","grade":"premium","price_premium":0.239},{"date":"2011-06-13","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-06-13","fuel":"gasoline","grade":"midgrade","price_premium":0.116},{"date":"2011-06-13","fuel":"gasoline","grade":"premium","price_premium":0.245},{"date":"2011-06-20","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2011-06-20","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2011-06-20","fuel":"gasoline","grade":"premium","price_premium":0.252},{"date":"2011-06-27","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2011-06-27","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2011-06-27","fuel":"gasoline","grade":"premium","price_premium":0.259},{"date":"2011-07-04","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2011-07-04","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2011-07-04","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2011-07-11","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-07-11","fuel":"gasoline","grade":"midgrade","price_premium":0.115},{"date":"2011-07-11","fuel":"gasoline","grade":"premium","price_premium":0.248},{"date":"2011-07-18","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-07-18","fuel":"gasoline","grade":"midgrade","price_premium":0.114},{"date":"2011-07-18","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2011-07-25","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2011-07-25","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2011-07-25","fuel":"gasoline","grade":"premium","price_premium":0.252},{"date":"2011-08-01","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2011-08-01","fuel":"gasoline","grade":"midgrade","price_premium":0.118},{"date":"2011-08-01","fuel":"gasoline","grade":"premium","price_premium":0.252},{"date":"2011-08-08","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2011-08-08","fuel":"gasoline","grade":"midgrade","price_premium":0.12},{"date":"2011-08-08","fuel":"gasoline","grade":"premium","price_premium":0.253},{"date":"2011-08-15","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2011-08-15","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2011-08-15","fuel":"gasoline","grade":"premium","price_premium":0.261},{"date":"2011-08-22","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2011-08-22","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2011-08-22","fuel":"gasoline","grade":"premium","price_premium":0.258},{"date":"2011-08-29","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2011-08-29","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2011-08-29","fuel":"gasoline","grade":"premium","price_premium":0.247},{"date":"2011-09-05","fuel":"gasoline","grade":"all","price_premium":0.053},{"date":"2011-09-05","fuel":"gasoline","grade":"midgrade","price_premium":0.117},{"date":"2011-09-05","fuel":"gasoline","grade":"premium","price_premium":0.24},{"date":"2011-09-12","fuel":"gasoline","grade":"all","price_premium":0.054},{"date":"2011-09-12","fuel":"gasoline","grade":"midgrade","price_premium":0.119},{"date":"2011-09-12","fuel":"gasoline","grade":"premium","price_premium":0.243},{"date":"2011-09-19","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2011-09-19","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2011-09-19","fuel":"gasoline","grade":"premium","price_premium":0.252},{"date":"2011-09-26","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2011-09-26","fuel":"gasoline","grade":"midgrade","price_premium":0.133},{"date":"2011-09-26","fuel":"gasoline","grade":"premium","price_premium":0.261},{"date":"2011-10-03","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2011-10-03","fuel":"gasoline","grade":"midgrade","price_premium":0.136},{"date":"2011-10-03","fuel":"gasoline","grade":"premium","price_premium":0.265},{"date":"2011-10-10","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2011-10-10","fuel":"gasoline","grade":"midgrade","price_premium":0.134},{"date":"2011-10-10","fuel":"gasoline","grade":"premium","price_premium":0.262},{"date":"2011-10-17","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2011-10-17","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2011-10-17","fuel":"gasoline","grade":"premium","price_premium":0.254},{"date":"2011-10-24","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2011-10-24","fuel":"gasoline","grade":"midgrade","price_premium":0.132},{"date":"2011-10-24","fuel":"gasoline","grade":"premium","price_premium":0.259},{"date":"2011-10-31","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2011-10-31","fuel":"gasoline","grade":"midgrade","price_premium":0.135},{"date":"2011-10-31","fuel":"gasoline","grade":"premium","price_premium":0.261},{"date":"2011-11-07","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2011-11-07","fuel":"gasoline","grade":"midgrade","price_premium":0.134},{"date":"2011-11-07","fuel":"gasoline","grade":"premium","price_premium":0.259},{"date":"2011-11-14","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2011-11-14","fuel":"gasoline","grade":"midgrade","price_premium":0.135},{"date":"2011-11-14","fuel":"gasoline","grade":"premium","price_premium":0.261},{"date":"2011-11-21","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2011-11-21","fuel":"gasoline","grade":"midgrade","price_premium":0.135},{"date":"2011-11-21","fuel":"gasoline","grade":"premium","price_premium":0.266},{"date":"2011-11-28","fuel":"gasoline","grade":"all","price_premium":0.061},{"date":"2011-11-28","fuel":"gasoline","grade":"midgrade","price_premium":0.14},{"date":"2011-11-28","fuel":"gasoline","grade":"premium","price_premium":0.274},{"date":"2011-12-05","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2011-12-05","fuel":"gasoline","grade":"midgrade","price_premium":0.136},{"date":"2011-12-05","fuel":"gasoline","grade":"premium","price_premium":0.27},{"date":"2011-12-12","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2011-12-12","fuel":"gasoline","grade":"midgrade","price_premium":0.135},{"date":"2011-12-12","fuel":"gasoline","grade":"premium","price_premium":0.268},{"date":"2011-12-19","fuel":"gasoline","grade":"all","price_premium":0.061},{"date":"2011-12-19","fuel":"gasoline","grade":"midgrade","price_premium":0.139},{"date":"2011-12-19","fuel":"gasoline","grade":"premium","price_premium":0.275},{"date":"2011-12-26","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2011-12-26","fuel":"gasoline","grade":"midgrade","price_premium":0.13},{"date":"2011-12-26","fuel":"gasoline","grade":"premium","price_premium":0.266},{"date":"2012-01-02","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2012-01-02","fuel":"gasoline","grade":"midgrade","price_premium":0.13},{"date":"2012-01-02","fuel":"gasoline","grade":"premium","price_premium":0.268},{"date":"2012-01-09","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2012-01-09","fuel":"gasoline","grade":"midgrade","price_premium":0.13},{"date":"2012-01-09","fuel":"gasoline","grade":"premium","price_premium":0.267},{"date":"2012-01-16","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2012-01-16","fuel":"gasoline","grade":"midgrade","price_premium":0.131},{"date":"2012-01-16","fuel":"gasoline","grade":"premium","price_premium":0.269},{"date":"2012-01-23","fuel":"gasoline","grade":"all","price_premium":0.061},{"date":"2012-01-23","fuel":"gasoline","grade":"midgrade","price_premium":0.133},{"date":"2012-01-23","fuel":"gasoline","grade":"premium","price_premium":0.275},{"date":"2012-01-30","fuel":"gasoline","grade":"all","price_premium":0.061},{"date":"2012-01-30","fuel":"gasoline","grade":"midgrade","price_premium":0.134},{"date":"2012-01-30","fuel":"gasoline","grade":"premium","price_premium":0.277},{"date":"2012-02-06","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2012-02-06","fuel":"gasoline","grade":"midgrade","price_premium":0.132},{"date":"2012-02-06","fuel":"gasoline","grade":"premium","price_premium":0.274},{"date":"2012-02-13","fuel":"gasoline","grade":"all","price_premium":0.061},{"date":"2012-02-13","fuel":"gasoline","grade":"midgrade","price_premium":0.136},{"date":"2012-02-13","fuel":"gasoline","grade":"premium","price_premium":0.275},{"date":"2012-02-20","fuel":"gasoline","grade":"all","price_premium":0.061},{"date":"2012-02-20","fuel":"gasoline","grade":"midgrade","price_premium":0.138},{"date":"2012-02-20","fuel":"gasoline","grade":"premium","price_premium":0.274},{"date":"2012-02-27","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2012-02-27","fuel":"gasoline","grade":"midgrade","price_premium":0.134},{"date":"2012-02-27","fuel":"gasoline","grade":"premium","price_premium":0.262},{"date":"2012-03-05","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2012-03-05","fuel":"gasoline","grade":"midgrade","price_premium":0.127},{"date":"2012-03-05","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2012-03-12","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2012-03-12","fuel":"gasoline","grade":"midgrade","price_premium":0.125},{"date":"2012-03-12","fuel":"gasoline","grade":"premium","price_premium":0.248},{"date":"2012-03-19","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2012-03-19","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2012-03-19","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2012-03-26","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2012-03-26","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2012-03-26","fuel":"gasoline","grade":"premium","price_premium":0.25},{"date":"2012-04-02","fuel":"gasoline","grade":"all","price_premium":0.055},{"date":"2012-04-02","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2012-04-02","fuel":"gasoline","grade":"premium","price_premium":0.252},{"date":"2012-04-09","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2012-04-09","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2012-04-09","fuel":"gasoline","grade":"premium","price_premium":0.262},{"date":"2012-04-16","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2012-04-16","fuel":"gasoline","grade":"midgrade","price_premium":0.125},{"date":"2012-04-16","fuel":"gasoline","grade":"premium","price_premium":0.261},{"date":"2012-04-23","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2012-04-23","fuel":"gasoline","grade":"midgrade","price_premium":0.129},{"date":"2012-04-23","fuel":"gasoline","grade":"premium","price_premium":0.266},{"date":"2012-04-30","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2012-04-30","fuel":"gasoline","grade":"midgrade","price_premium":0.132},{"date":"2012-04-30","fuel":"gasoline","grade":"premium","price_premium":0.267},{"date":"2012-05-07","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2012-05-07","fuel":"gasoline","grade":"midgrade","price_premium":0.133},{"date":"2012-05-07","fuel":"gasoline","grade":"premium","price_premium":0.264},{"date":"2012-05-14","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2012-05-14","fuel":"gasoline","grade":"midgrade","price_premium":0.141},{"date":"2012-05-14","fuel":"gasoline","grade":"premium","price_premium":0.266},{"date":"2012-05-21","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2012-05-21","fuel":"gasoline","grade":"midgrade","price_premium":0.135},{"date":"2012-05-21","fuel":"gasoline","grade":"premium","price_premium":0.26},{"date":"2012-05-28","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2012-05-28","fuel":"gasoline","grade":"midgrade","price_premium":0.135},{"date":"2012-05-28","fuel":"gasoline","grade":"premium","price_premium":0.259},{"date":"2012-06-04","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2012-06-04","fuel":"gasoline","grade":"midgrade","price_premium":0.137},{"date":"2012-06-04","fuel":"gasoline","grade":"premium","price_premium":0.258},{"date":"2012-06-11","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2012-06-11","fuel":"gasoline","grade":"midgrade","price_premium":0.131},{"date":"2012-06-11","fuel":"gasoline","grade":"premium","price_premium":0.257},{"date":"2012-06-18","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2012-06-18","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2012-06-18","fuel":"gasoline","grade":"premium","price_premium":0.247},{"date":"2012-06-25","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2012-06-25","fuel":"gasoline","grade":"midgrade","price_premium":0.131},{"date":"2012-06-25","fuel":"gasoline","grade":"premium","price_premium":0.256},{"date":"2012-07-02","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2012-07-02","fuel":"gasoline","grade":"midgrade","price_premium":0.133},{"date":"2012-07-02","fuel":"gasoline","grade":"premium","price_premium":0.262},{"date":"2012-07-09","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2012-07-09","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2012-07-09","fuel":"gasoline","grade":"premium","price_premium":0.263},{"date":"2012-07-16","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2012-07-16","fuel":"gasoline","grade":"midgrade","price_premium":0.124},{"date":"2012-07-16","fuel":"gasoline","grade":"premium","price_premium":0.263},{"date":"2012-07-23","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2012-07-23","fuel":"gasoline","grade":"midgrade","price_premium":0.132},{"date":"2012-07-23","fuel":"gasoline","grade":"premium","price_premium":0.271},{"date":"2012-07-30","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2012-07-30","fuel":"gasoline","grade":"midgrade","price_premium":0.131},{"date":"2012-07-30","fuel":"gasoline","grade":"premium","price_premium":0.271},{"date":"2012-08-06","fuel":"gasoline","grade":"all","price_premium":0.057},{"date":"2012-08-06","fuel":"gasoline","grade":"midgrade","price_premium":0.122},{"date":"2012-08-06","fuel":"gasoline","grade":"premium","price_premium":0.262},{"date":"2012-08-13","fuel":"gasoline","grade":"all","price_premium":0.058},{"date":"2012-08-13","fuel":"gasoline","grade":"midgrade","price_premium":0.126},{"date":"2012-08-13","fuel":"gasoline","grade":"premium","price_premium":0.264},{"date":"2012-08-20","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2012-08-20","fuel":"gasoline","grade":"midgrade","price_premium":0.13},{"date":"2012-08-20","fuel":"gasoline","grade":"premium","price_premium":0.27},{"date":"2012-08-27","fuel":"gasoline","grade":"all","price_premium":0.061},{"date":"2012-08-27","fuel":"gasoline","grade":"midgrade","price_premium":0.133},{"date":"2012-08-27","fuel":"gasoline","grade":"premium","price_premium":0.275},{"date":"2012-09-03","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2012-09-03","fuel":"gasoline","grade":"midgrade","price_premium":0.132},{"date":"2012-09-03","fuel":"gasoline","grade":"premium","price_premium":0.268},{"date":"2012-09-10","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2012-09-10","fuel":"gasoline","grade":"midgrade","price_premium":0.134},{"date":"2012-09-10","fuel":"gasoline","grade":"premium","price_premium":0.272},{"date":"2012-09-17","fuel":"gasoline","grade":"all","price_premium":0.061},{"date":"2012-09-17","fuel":"gasoline","grade":"midgrade","price_premium":0.135},{"date":"2012-09-17","fuel":"gasoline","grade":"premium","price_premium":0.276},{"date":"2012-09-24","fuel":"gasoline","grade":"all","price_premium":0.063},{"date":"2012-09-24","fuel":"gasoline","grade":"midgrade","price_premium":0.14},{"date":"2012-09-24","fuel":"gasoline","grade":"premium","price_premium":0.284},{"date":"2012-10-01","fuel":"gasoline","grade":"all","price_premium":0.062},{"date":"2012-10-01","fuel":"gasoline","grade":"midgrade","price_premium":0.14},{"date":"2012-10-01","fuel":"gasoline","grade":"premium","price_premium":0.283},{"date":"2012-10-08","fuel":"gasoline","grade":"all","price_premium":0.064},{"date":"2012-10-08","fuel":"gasoline","grade":"midgrade","price_premium":0.152},{"date":"2012-10-08","fuel":"gasoline","grade":"premium","price_premium":0.283},{"date":"2012-10-15","fuel":"gasoline","grade":"all","price_premium":0.067},{"date":"2012-10-15","fuel":"gasoline","grade":"midgrade","price_premium":0.157},{"date":"2012-10-15","fuel":"gasoline","grade":"premium","price_premium":0.294},{"date":"2012-10-22","fuel":"gasoline","grade":"all","price_premium":0.069},{"date":"2012-10-22","fuel":"gasoline","grade":"midgrade","price_premium":0.163},{"date":"2012-10-22","fuel":"gasoline","grade":"premium","price_premium":0.305},{"date":"2012-10-29","fuel":"gasoline","grade":"all","price_premium":0.07},{"date":"2012-10-29","fuel":"gasoline","grade":"midgrade","price_premium":0.165},{"date":"2012-10-29","fuel":"gasoline","grade":"premium","price_premium":0.31},{"date":"2012-11-05","fuel":"gasoline","grade":"all","price_premium":0.071},{"date":"2012-11-05","fuel":"gasoline","grade":"midgrade","price_premium":0.16},{"date":"2012-11-05","fuel":"gasoline","grade":"premium","price_premium":0.316},{"date":"2012-11-12","fuel":"gasoline","grade":"all","price_premium":0.069},{"date":"2012-11-12","fuel":"gasoline","grade":"midgrade","price_premium":0.156},{"date":"2012-11-12","fuel":"gasoline","grade":"premium","price_premium":0.312},{"date":"2012-11-19","fuel":"gasoline","grade":"all","price_premium":0.068},{"date":"2012-11-19","fuel":"gasoline","grade":"midgrade","price_premium":0.15},{"date":"2012-11-19","fuel":"gasoline","grade":"premium","price_premium":0.311},{"date":"2012-11-26","fuel":"gasoline","grade":"all","price_premium":0.068},{"date":"2012-11-26","fuel":"gasoline","grade":"midgrade","price_premium":0.148},{"date":"2012-11-26","fuel":"gasoline","grade":"premium","price_premium":0.309},{"date":"2012-12-03","fuel":"gasoline","grade":"all","price_premium":0.069},{"date":"2012-12-03","fuel":"gasoline","grade":"midgrade","price_premium":0.154},{"date":"2012-12-03","fuel":"gasoline","grade":"premium","price_premium":0.313},{"date":"2012-12-10","fuel":"gasoline","grade":"all","price_premium":0.07},{"date":"2012-12-10","fuel":"gasoline","grade":"midgrade","price_premium":0.155},{"date":"2012-12-10","fuel":"gasoline","grade":"premium","price_premium":0.315},{"date":"2012-12-17","fuel":"gasoline","grade":"all","price_premium":0.07},{"date":"2012-12-17","fuel":"gasoline","grade":"midgrade","price_premium":0.155},{"date":"2012-12-17","fuel":"gasoline","grade":"premium","price_premium":0.317},{"date":"2012-12-24","fuel":"gasoline","grade":"all","price_premium":0.071},{"date":"2012-12-24","fuel":"gasoline","grade":"midgrade","price_premium":0.158},{"date":"2012-12-24","fuel":"gasoline","grade":"premium","price_premium":0.319},{"date":"2012-12-31","fuel":"gasoline","grade":"all","price_premium":0.071},{"date":"2012-12-31","fuel":"gasoline","grade":"midgrade","price_premium":0.157},{"date":"2012-12-31","fuel":"gasoline","grade":"premium","price_premium":0.319},{"date":"2013-01-07","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2013-01-07","fuel":"gasoline","grade":"midgrade","price_premium":0.164},{"date":"2013-01-07","fuel":"gasoline","grade":"premium","price_premium":0.332},{"date":"2013-01-14","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2013-01-14","fuel":"gasoline","grade":"midgrade","price_premium":0.164},{"date":"2013-01-14","fuel":"gasoline","grade":"premium","price_premium":0.334},{"date":"2013-01-21","fuel":"gasoline","grade":"all","price_premium":0.071},{"date":"2013-01-21","fuel":"gasoline","grade":"midgrade","price_premium":0.158},{"date":"2013-01-21","fuel":"gasoline","grade":"premium","price_premium":0.321},{"date":"2013-01-28","fuel":"gasoline","grade":"all","price_premium":0.07},{"date":"2013-01-28","fuel":"gasoline","grade":"midgrade","price_premium":0.155},{"date":"2013-01-28","fuel":"gasoline","grade":"premium","price_premium":0.316},{"date":"2013-02-04","fuel":"gasoline","grade":"all","price_premium":0.066},{"date":"2013-02-04","fuel":"gasoline","grade":"midgrade","price_premium":0.145},{"date":"2013-02-04","fuel":"gasoline","grade":"premium","price_premium":0.303},{"date":"2013-02-11","fuel":"gasoline","grade":"all","price_premium":0.066},{"date":"2013-02-11","fuel":"gasoline","grade":"midgrade","price_premium":0.145},{"date":"2013-02-11","fuel":"gasoline","grade":"premium","price_premium":0.299},{"date":"2013-02-18","fuel":"gasoline","grade":"all","price_premium":0.065},{"date":"2013-02-18","fuel":"gasoline","grade":"midgrade","price_premium":0.144},{"date":"2013-02-18","fuel":"gasoline","grade":"premium","price_premium":0.295},{"date":"2013-02-25","fuel":"gasoline","grade":"all","price_premium":0.067},{"date":"2013-02-25","fuel":"gasoline","grade":"midgrade","price_premium":0.15},{"date":"2013-02-25","fuel":"gasoline","grade":"premium","price_premium":0.3},{"date":"2013-03-04","fuel":"gasoline","grade":"all","price_premium":0.067},{"date":"2013-03-04","fuel":"gasoline","grade":"midgrade","price_premium":0.151},{"date":"2013-03-04","fuel":"gasoline","grade":"premium","price_premium":0.302},{"date":"2013-03-11","fuel":"gasoline","grade":"all","price_premium":0.069},{"date":"2013-03-11","fuel":"gasoline","grade":"midgrade","price_premium":0.155},{"date":"2013-03-11","fuel":"gasoline","grade":"premium","price_premium":0.308},{"date":"2013-03-18","fuel":"gasoline","grade":"all","price_premium":0.068},{"date":"2013-03-18","fuel":"gasoline","grade":"midgrade","price_premium":0.154},{"date":"2013-03-18","fuel":"gasoline","grade":"premium","price_premium":0.306},{"date":"2013-03-25","fuel":"gasoline","grade":"all","price_premium":0.066},{"date":"2013-03-25","fuel":"gasoline","grade":"midgrade","price_premium":0.148},{"date":"2013-03-25","fuel":"gasoline","grade":"premium","price_premium":0.301},{"date":"2013-04-01","fuel":"gasoline","grade":"all","price_premium":0.069},{"date":"2013-04-01","fuel":"gasoline","grade":"midgrade","price_premium":0.153},{"date":"2013-04-01","fuel":"gasoline","grade":"premium","price_premium":0.308},{"date":"2013-04-08","fuel":"gasoline","grade":"all","price_premium":0.068},{"date":"2013-04-08","fuel":"gasoline","grade":"midgrade","price_premium":0.153},{"date":"2013-04-08","fuel":"gasoline","grade":"premium","price_premium":0.308},{"date":"2013-04-15","fuel":"gasoline","grade":"all","price_premium":0.069},{"date":"2013-04-15","fuel":"gasoline","grade":"midgrade","price_premium":0.158},{"date":"2013-04-15","fuel":"gasoline","grade":"premium","price_premium":0.31},{"date":"2013-04-22","fuel":"gasoline","grade":"all","price_premium":0.067},{"date":"2013-04-22","fuel":"gasoline","grade":"midgrade","price_premium":0.151},{"date":"2013-04-22","fuel":"gasoline","grade":"premium","price_premium":0.3},{"date":"2013-04-29","fuel":"gasoline","grade":"all","price_premium":0.067},{"date":"2013-04-29","fuel":"gasoline","grade":"midgrade","price_premium":0.148},{"date":"2013-04-29","fuel":"gasoline","grade":"premium","price_premium":0.302},{"date":"2013-05-06","fuel":"gasoline","grade":"all","price_premium":0.064},{"date":"2013-05-06","fuel":"gasoline","grade":"midgrade","price_premium":0.143},{"date":"2013-05-06","fuel":"gasoline","grade":"premium","price_premium":0.292},{"date":"2013-05-13","fuel":"gasoline","grade":"all","price_premium":0.062},{"date":"2013-05-13","fuel":"gasoline","grade":"midgrade","price_premium":0.136},{"date":"2013-05-13","fuel":"gasoline","grade":"premium","price_premium":0.28},{"date":"2013-05-20","fuel":"gasoline","grade":"all","price_premium":0.056},{"date":"2013-05-20","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2013-05-20","fuel":"gasoline","grade":"premium","price_premium":0.253},{"date":"2013-05-27","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2013-05-27","fuel":"gasoline","grade":"midgrade","price_premium":0.134},{"date":"2013-05-27","fuel":"gasoline","grade":"premium","price_premium":0.267},{"date":"2013-06-03","fuel":"gasoline","grade":"all","price_premium":0.059},{"date":"2013-06-03","fuel":"gasoline","grade":"midgrade","price_premium":0.127},{"date":"2013-06-03","fuel":"gasoline","grade":"premium","price_premium":0.267},{"date":"2013-06-10","fuel":"gasoline","grade":"all","price_premium":0.06},{"date":"2013-06-10","fuel":"gasoline","grade":"midgrade","price_premium":0.128},{"date":"2013-06-10","fuel":"gasoline","grade":"premium","price_premium":0.274},{"date":"2013-06-17","fuel":"gasoline","grade":"all","price_premium":0.063},{"date":"2013-06-17","fuel":"gasoline","grade":"midgrade","price_premium":0.138},{"date":"2013-06-17","fuel":"gasoline","grade":"premium","price_premium":0.286},{"date":"2013-06-24","fuel":"gasoline","grade":"all","price_premium":0.068},{"date":"2013-06-24","fuel":"gasoline","grade":"midgrade","price_premium":0.156},{"date":"2013-06-24","fuel":"gasoline","grade":"premium","price_premium":0.303},{"date":"2013-07-01","fuel":"gasoline","grade":"all","price_premium":0.071},{"date":"2013-07-01","fuel":"gasoline","grade":"midgrade","price_premium":0.164},{"date":"2013-07-01","fuel":"gasoline","grade":"premium","price_premium":0.317},{"date":"2013-07-08","fuel":"gasoline","grade":"all","price_premium":0.071},{"date":"2013-07-08","fuel":"gasoline","grade":"midgrade","price_premium":0.162},{"date":"2013-07-08","fuel":"gasoline","grade":"premium","price_premium":0.318},{"date":"2013-07-15","fuel":"gasoline","grade":"all","price_premium":0.067},{"date":"2013-07-15","fuel":"gasoline","grade":"midgrade","price_premium":0.147},{"date":"2013-07-15","fuel":"gasoline","grade":"premium","price_premium":0.304},{"date":"2013-07-22","fuel":"gasoline","grade":"all","price_premium":0.069},{"date":"2013-07-22","fuel":"gasoline","grade":"midgrade","price_premium":0.149},{"date":"2013-07-22","fuel":"gasoline","grade":"premium","price_premium":0.311},{"date":"2013-07-29","fuel":"gasoline","grade":"all","price_premium":0.07},{"date":"2013-07-29","fuel":"gasoline","grade":"midgrade","price_premium":0.155},{"date":"2013-07-29","fuel":"gasoline","grade":"premium","price_premium":0.317},{"date":"2013-08-05","fuel":"gasoline","grade":"all","price_premium":0.069},{"date":"2013-08-05","fuel":"gasoline","grade":"midgrade","price_premium":0.149},{"date":"2013-08-05","fuel":"gasoline","grade":"premium","price_premium":0.315},{"date":"2013-08-12","fuel":"gasoline","grade":"all","price_premium":0.072},{"date":"2013-08-12","fuel":"gasoline","grade":"midgrade","price_premium":0.158},{"date":"2013-08-12","fuel":"gasoline","grade":"premium","price_premium":0.325},{"date":"2013-08-19","fuel":"gasoline","grade":"all","price_premium":0.072},{"date":"2013-08-19","fuel":"gasoline","grade":"midgrade","price_premium":0.157},{"date":"2013-08-19","fuel":"gasoline","grade":"premium","price_premium":0.324},{"date":"2013-08-26","fuel":"gasoline","grade":"all","price_premium":0.071},{"date":"2013-08-26","fuel":"gasoline","grade":"midgrade","price_premium":0.155},{"date":"2013-08-26","fuel":"gasoline","grade":"premium","price_premium":0.323},{"date":"2013-09-02","fuel":"gasoline","grade":"all","price_premium":0.07},{"date":"2013-09-02","fuel":"gasoline","grade":"midgrade","price_premium":0.152},{"date":"2013-09-02","fuel":"gasoline","grade":"premium","price_premium":0.314},{"date":"2013-09-09","fuel":"gasoline","grade":"all","price_premium":0.071},{"date":"2013-09-09","fuel":"gasoline","grade":"midgrade","price_premium":0.154},{"date":"2013-09-09","fuel":"gasoline","grade":"premium","price_premium":0.319},{"date":"2013-09-16","fuel":"gasoline","grade":"all","price_premium":0.072},{"date":"2013-09-16","fuel":"gasoline","grade":"midgrade","price_premium":0.162},{"date":"2013-09-16","fuel":"gasoline","grade":"premium","price_premium":0.323},{"date":"2013-09-23","fuel":"gasoline","grade":"all","price_premium":0.072},{"date":"2013-09-23","fuel":"gasoline","grade":"midgrade","price_premium":0.161},{"date":"2013-09-23","fuel":"gasoline","grade":"premium","price_premium":0.324},{"date":"2013-09-30","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2013-09-30","fuel":"gasoline","grade":"midgrade","price_premium":0.171},{"date":"2013-09-30","fuel":"gasoline","grade":"premium","price_premium":0.333},{"date":"2013-10-07","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2013-10-07","fuel":"gasoline","grade":"midgrade","price_premium":0.168},{"date":"2013-10-07","fuel":"gasoline","grade":"premium","price_premium":0.334},{"date":"2013-10-14","fuel":"gasoline","grade":"all","price_premium":0.076},{"date":"2013-10-14","fuel":"gasoline","grade":"midgrade","price_premium":0.173},{"date":"2013-10-14","fuel":"gasoline","grade":"premium","price_premium":0.34},{"date":"2013-10-21","fuel":"gasoline","grade":"all","price_premium":0.075},{"date":"2013-10-21","fuel":"gasoline","grade":"midgrade","price_premium":0.171},{"date":"2013-10-21","fuel":"gasoline","grade":"premium","price_premium":0.336},{"date":"2013-10-28","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2013-10-28","fuel":"gasoline","grade":"midgrade","price_premium":0.181},{"date":"2013-10-28","fuel":"gasoline","grade":"premium","price_premium":0.35},{"date":"2013-11-04","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2013-11-04","fuel":"gasoline","grade":"midgrade","price_premium":0.176},{"date":"2013-11-04","fuel":"gasoline","grade":"premium","price_premium":0.349},{"date":"2013-11-11","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2013-11-11","fuel":"gasoline","grade":"midgrade","price_premium":0.186},{"date":"2013-11-11","fuel":"gasoline","grade":"premium","price_premium":0.358},{"date":"2013-11-18","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2013-11-18","fuel":"gasoline","grade":"midgrade","price_premium":0.182},{"date":"2013-11-18","fuel":"gasoline","grade":"premium","price_premium":0.354},{"date":"2013-11-25","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2013-11-25","fuel":"gasoline","grade":"midgrade","price_premium":0.177},{"date":"2013-11-25","fuel":"gasoline","grade":"premium","price_premium":0.356},{"date":"2013-12-02","fuel":"gasoline","grade":"all","price_premium":0.081},{"date":"2013-12-02","fuel":"gasoline","grade":"midgrade","price_premium":0.185},{"date":"2013-12-02","fuel":"gasoline","grade":"premium","price_premium":0.363},{"date":"2013-12-09","fuel":"gasoline","grade":"all","price_premium":0.081},{"date":"2013-12-09","fuel":"gasoline","grade":"midgrade","price_premium":0.184},{"date":"2013-12-09","fuel":"gasoline","grade":"premium","price_premium":0.363},{"date":"2013-12-16","fuel":"gasoline","grade":"all","price_premium":0.082},{"date":"2013-12-16","fuel":"gasoline","grade":"midgrade","price_premium":0.184},{"date":"2013-12-16","fuel":"gasoline","grade":"premium","price_premium":0.366},{"date":"2013-12-23","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2013-12-23","fuel":"gasoline","grade":"midgrade","price_premium":0.18},{"date":"2013-12-23","fuel":"gasoline","grade":"premium","price_premium":0.361},{"date":"2013-12-30","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2013-12-30","fuel":"gasoline","grade":"midgrade","price_premium":0.172},{"date":"2013-12-30","fuel":"gasoline","grade":"premium","price_premium":0.351},{"date":"2014-01-06","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2014-01-06","fuel":"gasoline","grade":"midgrade","price_premium":0.181},{"date":"2014-01-06","fuel":"gasoline","grade":"premium","price_premium":0.358},{"date":"2014-01-13","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2014-01-13","fuel":"gasoline","grade":"midgrade","price_premium":0.178},{"date":"2014-01-13","fuel":"gasoline","grade":"premium","price_premium":0.356},{"date":"2014-01-20","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2014-01-20","fuel":"gasoline","grade":"midgrade","price_premium":0.181},{"date":"2014-01-20","fuel":"gasoline","grade":"premium","price_premium":0.361},{"date":"2014-01-27","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2014-01-27","fuel":"gasoline","grade":"midgrade","price_premium":0.179},{"date":"2014-01-27","fuel":"gasoline","grade":"premium","price_premium":0.359},{"date":"2014-02-03","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2014-02-03","fuel":"gasoline","grade":"midgrade","price_premium":0.183},{"date":"2014-02-03","fuel":"gasoline","grade":"premium","price_premium":0.359},{"date":"2014-02-10","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2014-02-10","fuel":"gasoline","grade":"midgrade","price_premium":0.178},{"date":"2014-02-10","fuel":"gasoline","grade":"premium","price_premium":0.355},{"date":"2014-02-17","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2014-02-17","fuel":"gasoline","grade":"midgrade","price_premium":0.175},{"date":"2014-02-17","fuel":"gasoline","grade":"premium","price_premium":0.348},{"date":"2014-02-24","fuel":"gasoline","grade":"all","price_premium":0.076},{"date":"2014-02-24","fuel":"gasoline","grade":"midgrade","price_premium":0.171},{"date":"2014-02-24","fuel":"gasoline","grade":"premium","price_premium":0.339},{"date":"2014-03-03","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2014-03-03","fuel":"gasoline","grade":"midgrade","price_premium":0.169},{"date":"2014-03-03","fuel":"gasoline","grade":"premium","price_premium":0.333},{"date":"2014-03-10","fuel":"gasoline","grade":"all","price_premium":0.072},{"date":"2014-03-10","fuel":"gasoline","grade":"midgrade","price_premium":0.162},{"date":"2014-03-10","fuel":"gasoline","grade":"premium","price_premium":0.323},{"date":"2014-03-17","fuel":"gasoline","grade":"all","price_premium":0.072},{"date":"2014-03-17","fuel":"gasoline","grade":"midgrade","price_premium":0.163},{"date":"2014-03-17","fuel":"gasoline","grade":"premium","price_premium":0.324},{"date":"2014-03-24","fuel":"gasoline","grade":"all","price_premium":0.073},{"date":"2014-03-24","fuel":"gasoline","grade":"midgrade","price_premium":0.167},{"date":"2014-03-24","fuel":"gasoline","grade":"premium","price_premium":0.327},{"date":"2014-03-31","fuel":"gasoline","grade":"all","price_premium":0.072},{"date":"2014-03-31","fuel":"gasoline","grade":"midgrade","price_premium":0.164},{"date":"2014-03-31","fuel":"gasoline","grade":"premium","price_premium":0.325},{"date":"2014-04-07","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2014-04-07","fuel":"gasoline","grade":"midgrade","price_premium":0.173},{"date":"2014-04-07","fuel":"gasoline","grade":"premium","price_premium":0.332},{"date":"2014-04-14","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2014-04-14","fuel":"gasoline","grade":"midgrade","price_premium":0.172},{"date":"2014-04-14","fuel":"gasoline","grade":"premium","price_premium":0.325},{"date":"2014-04-21","fuel":"gasoline","grade":"all","price_premium":0.075},{"date":"2014-04-21","fuel":"gasoline","grade":"midgrade","price_premium":0.174},{"date":"2014-04-21","fuel":"gasoline","grade":"premium","price_premium":0.331},{"date":"2014-04-28","fuel":"gasoline","grade":"all","price_premium":0.075},{"date":"2014-04-28","fuel":"gasoline","grade":"midgrade","price_premium":0.175},{"date":"2014-04-28","fuel":"gasoline","grade":"premium","price_premium":0.334},{"date":"2014-05-05","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2014-05-05","fuel":"gasoline","grade":"midgrade","price_premium":0.18},{"date":"2014-05-05","fuel":"gasoline","grade":"premium","price_premium":0.343},{"date":"2014-05-12","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2014-05-12","fuel":"gasoline","grade":"midgrade","price_premium":0.182},{"date":"2014-05-12","fuel":"gasoline","grade":"premium","price_premium":0.347},{"date":"2014-05-19","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2014-05-19","fuel":"gasoline","grade":"midgrade","price_premium":0.179},{"date":"2014-05-19","fuel":"gasoline","grade":"premium","price_premium":0.346},{"date":"2014-05-26","fuel":"gasoline","grade":"all","price_premium":0.076},{"date":"2014-05-26","fuel":"gasoline","grade":"midgrade","price_premium":0.176},{"date":"2014-05-26","fuel":"gasoline","grade":"premium","price_premium":0.34},{"date":"2014-06-02","fuel":"gasoline","grade":"all","price_premium":0.075},{"date":"2014-06-02","fuel":"gasoline","grade":"midgrade","price_premium":0.172},{"date":"2014-06-02","fuel":"gasoline","grade":"premium","price_premium":0.334},{"date":"2014-06-09","fuel":"gasoline","grade":"all","price_premium":0.075},{"date":"2014-06-09","fuel":"gasoline","grade":"midgrade","price_premium":0.17},{"date":"2014-06-09","fuel":"gasoline","grade":"premium","price_premium":0.334},{"date":"2014-06-16","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2014-06-16","fuel":"gasoline","grade":"midgrade","price_premium":0.167},{"date":"2014-06-16","fuel":"gasoline","grade":"premium","price_premium":0.33},{"date":"2014-06-23","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2014-06-23","fuel":"gasoline","grade":"midgrade","price_premium":0.169},{"date":"2014-06-23","fuel":"gasoline","grade":"premium","price_premium":0.332},{"date":"2014-06-30","fuel":"gasoline","grade":"all","price_premium":0.074},{"date":"2014-06-30","fuel":"gasoline","grade":"midgrade","price_premium":0.168},{"date":"2014-06-30","fuel":"gasoline","grade":"premium","price_premium":0.332},{"date":"2014-07-07","fuel":"gasoline","grade":"all","price_premium":0.075},{"date":"2014-07-07","fuel":"gasoline","grade":"midgrade","price_premium":0.171},{"date":"2014-07-07","fuel":"gasoline","grade":"premium","price_premium":0.337},{"date":"2014-07-14","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2014-07-14","fuel":"gasoline","grade":"midgrade","price_premium":0.176},{"date":"2014-07-14","fuel":"gasoline","grade":"premium","price_premium":0.343},{"date":"2014-07-21","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2014-07-21","fuel":"gasoline","grade":"midgrade","price_premium":0.18},{"date":"2014-07-21","fuel":"gasoline","grade":"premium","price_premium":0.345},{"date":"2014-07-28","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2014-07-28","fuel":"gasoline","grade":"midgrade","price_premium":0.184},{"date":"2014-07-28","fuel":"gasoline","grade":"premium","price_premium":0.349},{"date":"2014-08-04","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2014-08-04","fuel":"gasoline","grade":"midgrade","price_premium":0.186},{"date":"2014-08-04","fuel":"gasoline","grade":"premium","price_premium":0.351},{"date":"2014-08-11","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2014-08-11","fuel":"gasoline","grade":"midgrade","price_premium":0.179},{"date":"2014-08-11","fuel":"gasoline","grade":"premium","price_premium":0.345},{"date":"2014-08-18","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2014-08-18","fuel":"gasoline","grade":"midgrade","price_premium":0.181},{"date":"2014-08-18","fuel":"gasoline","grade":"premium","price_premium":0.344},{"date":"2014-08-25","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2014-08-25","fuel":"gasoline","grade":"midgrade","price_premium":0.181},{"date":"2014-08-25","fuel":"gasoline","grade":"premium","price_premium":0.346},{"date":"2014-09-01","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2014-09-01","fuel":"gasoline","grade":"midgrade","price_premium":0.179},{"date":"2014-09-01","fuel":"gasoline","grade":"premium","price_premium":0.344},{"date":"2014-09-08","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2014-09-08","fuel":"gasoline","grade":"midgrade","price_premium":0.175},{"date":"2014-09-08","fuel":"gasoline","grade":"premium","price_premium":0.344},{"date":"2014-09-15","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2014-09-15","fuel":"gasoline","grade":"midgrade","price_premium":0.177},{"date":"2014-09-15","fuel":"gasoline","grade":"premium","price_premium":0.346},{"date":"2014-09-22","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2014-09-22","fuel":"gasoline","grade":"midgrade","price_premium":0.183},{"date":"2014-09-22","fuel":"gasoline","grade":"premium","price_premium":0.354},{"date":"2014-09-29","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2014-09-29","fuel":"gasoline","grade":"midgrade","price_premium":0.183},{"date":"2014-09-29","fuel":"gasoline","grade":"premium","price_premium":0.356},{"date":"2014-10-06","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2014-10-06","fuel":"gasoline","grade":"midgrade","price_premium":0.193},{"date":"2014-10-06","fuel":"gasoline","grade":"premium","price_premium":0.368},{"date":"2014-10-13","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2014-10-13","fuel":"gasoline","grade":"midgrade","price_premium":0.199},{"date":"2014-10-13","fuel":"gasoline","grade":"premium","price_premium":0.374},{"date":"2014-10-20","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2014-10-20","fuel":"gasoline","grade":"midgrade","price_premium":0.199},{"date":"2014-10-20","fuel":"gasoline","grade":"premium","price_premium":0.379},{"date":"2014-10-27","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2014-10-27","fuel":"gasoline","grade":"midgrade","price_premium":0.192},{"date":"2014-10-27","fuel":"gasoline","grade":"premium","price_premium":0.369},{"date":"2014-11-03","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2014-11-03","fuel":"gasoline","grade":"midgrade","price_premium":0.194},{"date":"2014-11-03","fuel":"gasoline","grade":"premium","price_premium":0.376},{"date":"2014-11-10","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2014-11-10","fuel":"gasoline","grade":"midgrade","price_premium":0.193},{"date":"2014-11-10","fuel":"gasoline","grade":"premium","price_premium":0.374},{"date":"2014-11-17","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2014-11-17","fuel":"gasoline","grade":"midgrade","price_premium":0.194},{"date":"2014-11-17","fuel":"gasoline","grade":"premium","price_premium":0.376},{"date":"2014-11-24","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2014-11-24","fuel":"gasoline","grade":"midgrade","price_premium":0.198},{"date":"2014-11-24","fuel":"gasoline","grade":"premium","price_premium":0.384},{"date":"2014-12-01","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2014-12-01","fuel":"gasoline","grade":"midgrade","price_premium":0.2},{"date":"2014-12-01","fuel":"gasoline","grade":"premium","price_premium":0.386},{"date":"2014-12-08","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2014-12-08","fuel":"gasoline","grade":"midgrade","price_premium":0.203},{"date":"2014-12-08","fuel":"gasoline","grade":"premium","price_premium":0.393},{"date":"2014-12-15","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2014-12-15","fuel":"gasoline","grade":"midgrade","price_premium":0.209},{"date":"2014-12-15","fuel":"gasoline","grade":"premium","price_premium":0.397},{"date":"2014-12-22","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2014-12-22","fuel":"gasoline","grade":"midgrade","price_premium":0.216},{"date":"2014-12-22","fuel":"gasoline","grade":"premium","price_premium":0.41},{"date":"2014-12-29","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2014-12-29","fuel":"gasoline","grade":"midgrade","price_premium":0.218},{"date":"2014-12-29","fuel":"gasoline","grade":"premium","price_premium":0.414},{"date":"2015-01-05","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2015-01-05","fuel":"gasoline","grade":"midgrade","price_premium":0.223},{"date":"2015-01-05","fuel":"gasoline","grade":"premium","price_premium":0.417},{"date":"2015-01-12","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2015-01-12","fuel":"gasoline","grade":"midgrade","price_premium":0.219},{"date":"2015-01-12","fuel":"gasoline","grade":"premium","price_premium":0.414},{"date":"2015-01-19","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2015-01-19","fuel":"gasoline","grade":"midgrade","price_premium":0.211},{"date":"2015-01-19","fuel":"gasoline","grade":"premium","price_premium":0.407},{"date":"2015-01-26","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2015-01-26","fuel":"gasoline","grade":"midgrade","price_premium":0.206},{"date":"2015-01-26","fuel":"gasoline","grade":"premium","price_premium":0.4},{"date":"2015-02-02","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2015-02-02","fuel":"gasoline","grade":"midgrade","price_premium":0.2},{"date":"2015-02-02","fuel":"gasoline","grade":"premium","price_premium":0.386},{"date":"2015-02-09","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2015-02-09","fuel":"gasoline","grade":"midgrade","price_premium":0.197},{"date":"2015-02-09","fuel":"gasoline","grade":"premium","price_premium":0.377},{"date":"2015-02-16","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2015-02-16","fuel":"gasoline","grade":"midgrade","price_premium":0.193},{"date":"2015-02-16","fuel":"gasoline","grade":"premium","price_premium":0.377},{"date":"2015-02-23","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-02-23","fuel":"gasoline","grade":"midgrade","price_premium":0.194},{"date":"2015-02-23","fuel":"gasoline","grade":"premium","price_premium":0.372},{"date":"2015-03-02","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-03-02","fuel":"gasoline","grade":"midgrade","price_premium":0.198},{"date":"2015-03-02","fuel":"gasoline","grade":"premium","price_premium":0.364},{"date":"2015-03-09","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-03-09","fuel":"gasoline","grade":"midgrade","price_premium":0.199},{"date":"2015-03-09","fuel":"gasoline","grade":"premium","price_premium":0.366},{"date":"2015-03-16","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2015-03-16","fuel":"gasoline","grade":"midgrade","price_premium":0.199},{"date":"2015-03-16","fuel":"gasoline","grade":"premium","price_premium":0.371},{"date":"2015-03-23","fuel":"gasoline","grade":"all","price_premium":0.081},{"date":"2015-03-23","fuel":"gasoline","grade":"midgrade","price_premium":0.193},{"date":"2015-03-23","fuel":"gasoline","grade":"premium","price_premium":0.36},{"date":"2015-03-30","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-03-30","fuel":"gasoline","grade":"midgrade","price_premium":0.201},{"date":"2015-03-30","fuel":"gasoline","grade":"premium","price_premium":0.366},{"date":"2015-04-06","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2015-04-06","fuel":"gasoline","grade":"midgrade","price_premium":0.204},{"date":"2015-04-06","fuel":"gasoline","grade":"premium","price_premium":0.376},{"date":"2015-04-13","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2015-04-13","fuel":"gasoline","grade":"midgrade","price_premium":0.208},{"date":"2015-04-13","fuel":"gasoline","grade":"premium","price_premium":0.378},{"date":"2015-04-20","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2015-04-20","fuel":"gasoline","grade":"midgrade","price_premium":0.201},{"date":"2015-04-20","fuel":"gasoline","grade":"premium","price_premium":0.372},{"date":"2015-04-27","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2015-04-27","fuel":"gasoline","grade":"midgrade","price_premium":0.207},{"date":"2015-04-27","fuel":"gasoline","grade":"premium","price_premium":0.377},{"date":"2015-05-04","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2015-05-04","fuel":"gasoline","grade":"midgrade","price_premium":0.206},{"date":"2015-05-04","fuel":"gasoline","grade":"premium","price_premium":0.372},{"date":"2015-05-11","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2015-05-11","fuel":"gasoline","grade":"midgrade","price_premium":0.209},{"date":"2015-05-11","fuel":"gasoline","grade":"premium","price_premium":0.372},{"date":"2015-05-18","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-05-18","fuel":"gasoline","grade":"midgrade","price_premium":0.205},{"date":"2015-05-18","fuel":"gasoline","grade":"premium","price_premium":0.365},{"date":"2015-05-25","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-05-25","fuel":"gasoline","grade":"midgrade","price_premium":0.201},{"date":"2015-05-25","fuel":"gasoline","grade":"premium","price_premium":0.366},{"date":"2015-06-01","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-06-01","fuel":"gasoline","grade":"midgrade","price_premium":0.198},{"date":"2015-06-01","fuel":"gasoline","grade":"premium","price_premium":0.363},{"date":"2015-06-08","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-06-08","fuel":"gasoline","grade":"midgrade","price_premium":0.197},{"date":"2015-06-08","fuel":"gasoline","grade":"premium","price_premium":0.37},{"date":"2015-06-15","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-06-15","fuel":"gasoline","grade":"midgrade","price_premium":0.19},{"date":"2015-06-15","fuel":"gasoline","grade":"premium","price_premium":0.367},{"date":"2015-06-22","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2015-06-22","fuel":"gasoline","grade":"midgrade","price_premium":0.194},{"date":"2015-06-22","fuel":"gasoline","grade":"premium","price_premium":0.37},{"date":"2015-06-29","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2015-06-29","fuel":"gasoline","grade":"midgrade","price_premium":0.196},{"date":"2015-06-29","fuel":"gasoline","grade":"premium","price_premium":0.374},{"date":"2015-07-06","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2015-07-06","fuel":"gasoline","grade":"midgrade","price_premium":0.197},{"date":"2015-07-06","fuel":"gasoline","grade":"premium","price_premium":0.375},{"date":"2015-07-13","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2015-07-13","fuel":"gasoline","grade":"midgrade","price_premium":0.21},{"date":"2015-07-13","fuel":"gasoline","grade":"premium","price_premium":0.379},{"date":"2015-07-20","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2015-07-20","fuel":"gasoline","grade":"midgrade","price_premium":0.21},{"date":"2015-07-20","fuel":"gasoline","grade":"premium","price_premium":0.377},{"date":"2015-07-27","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2015-07-27","fuel":"gasoline","grade":"midgrade","price_premium":0.215},{"date":"2015-07-27","fuel":"gasoline","grade":"premium","price_premium":0.384},{"date":"2015-08-03","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2015-08-03","fuel":"gasoline","grade":"midgrade","price_premium":0.22},{"date":"2015-08-03","fuel":"gasoline","grade":"premium","price_premium":0.394},{"date":"2015-08-10","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2015-08-10","fuel":"gasoline","grade":"midgrade","price_premium":0.221},{"date":"2015-08-10","fuel":"gasoline","grade":"premium","price_premium":0.401},{"date":"2015-08-17","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2015-08-17","fuel":"gasoline","grade":"midgrade","price_premium":0.211},{"date":"2015-08-17","fuel":"gasoline","grade":"premium","price_premium":0.38},{"date":"2015-08-24","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2015-08-24","fuel":"gasoline","grade":"midgrade","price_premium":0.217},{"date":"2015-08-24","fuel":"gasoline","grade":"premium","price_premium":0.39},{"date":"2015-08-31","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2015-08-31","fuel":"gasoline","grade":"midgrade","price_premium":0.224},{"date":"2015-08-31","fuel":"gasoline","grade":"premium","price_premium":0.406},{"date":"2015-09-07","fuel":"gasoline","grade":"all","price_premium":0.095},{"date":"2015-09-07","fuel":"gasoline","grade":"midgrade","price_premium":0.225},{"date":"2015-09-07","fuel":"gasoline","grade":"premium","price_premium":0.416},{"date":"2015-09-14","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2015-09-14","fuel":"gasoline","grade":"midgrade","price_premium":0.23},{"date":"2015-09-14","fuel":"gasoline","grade":"premium","price_premium":0.426},{"date":"2015-09-21","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2015-09-21","fuel":"gasoline","grade":"midgrade","price_premium":0.234},{"date":"2015-09-21","fuel":"gasoline","grade":"premium","price_premium":0.432},{"date":"2015-09-28","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2015-09-28","fuel":"gasoline","grade":"midgrade","price_premium":0.229},{"date":"2015-09-28","fuel":"gasoline","grade":"premium","price_premium":0.426},{"date":"2015-10-05","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2015-10-05","fuel":"gasoline","grade":"midgrade","price_premium":0.227},{"date":"2015-10-05","fuel":"gasoline","grade":"premium","price_premium":0.43},{"date":"2015-10-12","fuel":"gasoline","grade":"all","price_premium":0.095},{"date":"2015-10-12","fuel":"gasoline","grade":"midgrade","price_premium":0.224},{"date":"2015-10-12","fuel":"gasoline","grade":"premium","price_premium":0.42},{"date":"2015-10-19","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2015-10-19","fuel":"gasoline","grade":"midgrade","price_premium":0.228},{"date":"2015-10-19","fuel":"gasoline","grade":"premium","price_premium":0.428},{"date":"2015-10-26","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2015-10-26","fuel":"gasoline","grade":"midgrade","price_premium":0.232},{"date":"2015-10-26","fuel":"gasoline","grade":"premium","price_premium":0.435},{"date":"2015-11-02","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2015-11-02","fuel":"gasoline","grade":"midgrade","price_premium":0.231},{"date":"2015-11-02","fuel":"gasoline","grade":"premium","price_premium":0.436},{"date":"2015-11-09","fuel":"gasoline","grade":"all","price_premium":0.1},{"date":"2015-11-09","fuel":"gasoline","grade":"midgrade","price_premium":0.233},{"date":"2015-11-09","fuel":"gasoline","grade":"premium","price_premium":0.443},{"date":"2015-11-16","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2015-11-16","fuel":"gasoline","grade":"midgrade","price_premium":0.242},{"date":"2015-11-16","fuel":"gasoline","grade":"premium","price_premium":0.455},{"date":"2015-11-23","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2015-11-23","fuel":"gasoline","grade":"midgrade","price_premium":0.244},{"date":"2015-11-23","fuel":"gasoline","grade":"premium","price_premium":0.462},{"date":"2015-11-30","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2015-11-30","fuel":"gasoline","grade":"midgrade","price_premium":0.249},{"date":"2015-11-30","fuel":"gasoline","grade":"premium","price_premium":0.47},{"date":"2015-12-07","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2015-12-07","fuel":"gasoline","grade":"midgrade","price_premium":0.25},{"date":"2015-12-07","fuel":"gasoline","grade":"premium","price_premium":0.47},{"date":"2015-12-14","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2015-12-14","fuel":"gasoline","grade":"midgrade","price_premium":0.25},{"date":"2015-12-14","fuel":"gasoline","grade":"premium","price_premium":0.472},{"date":"2015-12-21","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2015-12-21","fuel":"gasoline","grade":"midgrade","price_premium":0.254},{"date":"2015-12-21","fuel":"gasoline","grade":"premium","price_premium":0.473},{"date":"2015-12-28","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2015-12-28","fuel":"gasoline","grade":"midgrade","price_premium":0.256},{"date":"2015-12-28","fuel":"gasoline","grade":"premium","price_premium":0.472},{"date":"2016-01-04","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2016-01-04","fuel":"gasoline","grade":"midgrade","price_premium":0.257},{"date":"2016-01-04","fuel":"gasoline","grade":"premium","price_premium":0.47},{"date":"2016-01-11","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2016-01-11","fuel":"gasoline","grade":"midgrade","price_premium":0.257},{"date":"2016-01-11","fuel":"gasoline","grade":"premium","price_premium":0.473},{"date":"2016-01-18","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2016-01-18","fuel":"gasoline","grade":"midgrade","price_premium":0.258},{"date":"2016-01-18","fuel":"gasoline","grade":"premium","price_premium":0.476},{"date":"2016-01-25","fuel":"gasoline","grade":"all","price_premium":0.109},{"date":"2016-01-25","fuel":"gasoline","grade":"midgrade","price_premium":0.262},{"date":"2016-01-25","fuel":"gasoline","grade":"premium","price_premium":0.481},{"date":"2016-02-01","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2016-02-01","fuel":"gasoline","grade":"midgrade","price_premium":0.263},{"date":"2016-02-01","fuel":"gasoline","grade":"premium","price_premium":0.485},{"date":"2016-02-08","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2016-02-08","fuel":"gasoline","grade":"midgrade","price_premium":0.266},{"date":"2016-02-08","fuel":"gasoline","grade":"premium","price_premium":0.488},{"date":"2016-02-15","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2016-02-15","fuel":"gasoline","grade":"midgrade","price_premium":0.26},{"date":"2016-02-15","fuel":"gasoline","grade":"premium","price_premium":0.485},{"date":"2016-02-22","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2016-02-22","fuel":"gasoline","grade":"midgrade","price_premium":0.253},{"date":"2016-02-22","fuel":"gasoline","grade":"premium","price_premium":0.475},{"date":"2016-02-29","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2016-02-29","fuel":"gasoline","grade":"midgrade","price_premium":0.246},{"date":"2016-02-29","fuel":"gasoline","grade":"premium","price_premium":0.461},{"date":"2016-03-07","fuel":"gasoline","grade":"all","price_premium":0.102},{"date":"2016-03-07","fuel":"gasoline","grade":"midgrade","price_premium":0.24},{"date":"2016-03-07","fuel":"gasoline","grade":"premium","price_premium":0.453},{"date":"2016-03-14","fuel":"gasoline","grade":"all","price_premium":0.101},{"date":"2016-03-14","fuel":"gasoline","grade":"midgrade","price_premium":0.239},{"date":"2016-03-14","fuel":"gasoline","grade":"premium","price_premium":0.448},{"date":"2016-03-21","fuel":"gasoline","grade":"all","price_premium":0.102},{"date":"2016-03-21","fuel":"gasoline","grade":"midgrade","price_premium":0.241},{"date":"2016-03-21","fuel":"gasoline","grade":"premium","price_premium":0.454},{"date":"2016-03-28","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2016-03-28","fuel":"gasoline","grade":"midgrade","price_premium":0.244},{"date":"2016-03-28","fuel":"gasoline","grade":"premium","price_premium":0.455},{"date":"2016-04-04","fuel":"gasoline","grade":"all","price_premium":0.102},{"date":"2016-04-04","fuel":"gasoline","grade":"midgrade","price_premium":0.24},{"date":"2016-04-04","fuel":"gasoline","grade":"premium","price_premium":0.449},{"date":"2016-04-11","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2016-04-11","fuel":"gasoline","grade":"midgrade","price_premium":0.246},{"date":"2016-04-11","fuel":"gasoline","grade":"premium","price_premium":0.458},{"date":"2016-04-18","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2016-04-18","fuel":"gasoline","grade":"midgrade","price_premium":0.241},{"date":"2016-04-18","fuel":"gasoline","grade":"premium","price_premium":0.453},{"date":"2016-04-25","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2016-04-25","fuel":"gasoline","grade":"midgrade","price_premium":0.243},{"date":"2016-04-25","fuel":"gasoline","grade":"premium","price_premium":0.454},{"date":"2016-05-02","fuel":"gasoline","grade":"all","price_premium":0.102},{"date":"2016-05-02","fuel":"gasoline","grade":"midgrade","price_premium":0.242},{"date":"2016-05-02","fuel":"gasoline","grade":"premium","price_premium":0.453},{"date":"2016-05-09","fuel":"gasoline","grade":"all","price_premium":0.105},{"date":"2016-05-09","fuel":"gasoline","grade":"midgrade","price_premium":0.249},{"date":"2016-05-09","fuel":"gasoline","grade":"premium","price_premium":0.463},{"date":"2016-05-16","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2016-05-16","fuel":"gasoline","grade":"midgrade","price_premium":0.243},{"date":"2016-05-16","fuel":"gasoline","grade":"premium","price_premium":0.458},{"date":"2016-05-23","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2016-05-23","fuel":"gasoline","grade":"midgrade","price_premium":0.241},{"date":"2016-05-23","fuel":"gasoline","grade":"premium","price_premium":0.456},{"date":"2016-05-30","fuel":"gasoline","grade":"all","price_premium":0.101},{"date":"2016-05-30","fuel":"gasoline","grade":"midgrade","price_premium":0.235},{"date":"2016-05-30","fuel":"gasoline","grade":"premium","price_premium":0.449},{"date":"2016-06-06","fuel":"gasoline","grade":"all","price_premium":0.101},{"date":"2016-06-06","fuel":"gasoline","grade":"midgrade","price_premium":0.235},{"date":"2016-06-06","fuel":"gasoline","grade":"premium","price_premium":0.449},{"date":"2016-06-13","fuel":"gasoline","grade":"all","price_premium":0.1},{"date":"2016-06-13","fuel":"gasoline","grade":"midgrade","price_premium":0.233},{"date":"2016-06-13","fuel":"gasoline","grade":"premium","price_premium":0.443},{"date":"2016-06-20","fuel":"gasoline","grade":"all","price_premium":0.102},{"date":"2016-06-20","fuel":"gasoline","grade":"midgrade","price_premium":0.239},{"date":"2016-06-20","fuel":"gasoline","grade":"premium","price_premium":0.452},{"date":"2016-06-27","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2016-06-27","fuel":"gasoline","grade":"midgrade","price_premium":0.241},{"date":"2016-06-27","fuel":"gasoline","grade":"premium","price_premium":0.456},{"date":"2016-07-04","fuel":"gasoline","grade":"all","price_premium":0.105},{"date":"2016-07-04","fuel":"gasoline","grade":"midgrade","price_premium":0.246},{"date":"2016-07-04","fuel":"gasoline","grade":"premium","price_premium":0.464},{"date":"2016-07-11","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2016-07-11","fuel":"gasoline","grade":"midgrade","price_premium":0.248},{"date":"2016-07-11","fuel":"gasoline","grade":"premium","price_premium":0.468},{"date":"2016-07-18","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2016-07-18","fuel":"gasoline","grade":"midgrade","price_premium":0.249},{"date":"2016-07-18","fuel":"gasoline","grade":"premium","price_premium":0.471},{"date":"2016-07-25","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2016-07-25","fuel":"gasoline","grade":"midgrade","price_premium":0.252},{"date":"2016-07-25","fuel":"gasoline","grade":"premium","price_premium":0.474},{"date":"2016-08-01","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2016-08-01","fuel":"gasoline","grade":"midgrade","price_premium":0.254},{"date":"2016-08-01","fuel":"gasoline","grade":"premium","price_premium":0.476},{"date":"2016-08-08","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2016-08-08","fuel":"gasoline","grade":"midgrade","price_premium":0.248},{"date":"2016-08-08","fuel":"gasoline","grade":"premium","price_premium":0.471},{"date":"2016-08-15","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2016-08-15","fuel":"gasoline","grade":"midgrade","price_premium":0.252},{"date":"2016-08-15","fuel":"gasoline","grade":"premium","price_premium":0.473},{"date":"2016-08-22","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2016-08-22","fuel":"gasoline","grade":"midgrade","price_premium":0.248},{"date":"2016-08-22","fuel":"gasoline","grade":"premium","price_premium":0.471},{"date":"2016-08-29","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2016-08-29","fuel":"gasoline","grade":"midgrade","price_premium":0.244},{"date":"2016-08-29","fuel":"gasoline","grade":"premium","price_premium":0.464},{"date":"2016-09-05","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2016-09-05","fuel":"gasoline","grade":"midgrade","price_premium":0.245},{"date":"2016-09-05","fuel":"gasoline","grade":"premium","price_premium":0.475},{"date":"2016-09-12","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2016-09-12","fuel":"gasoline","grade":"midgrade","price_premium":0.252},{"date":"2016-09-12","fuel":"gasoline","grade":"premium","price_premium":0.478},{"date":"2016-09-19","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2016-09-19","fuel":"gasoline","grade":"midgrade","price_premium":0.256},{"date":"2016-09-19","fuel":"gasoline","grade":"premium","price_premium":0.481},{"date":"2016-09-26","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2016-09-26","fuel":"gasoline","grade":"midgrade","price_premium":0.26},{"date":"2016-09-26","fuel":"gasoline","grade":"premium","price_premium":0.484},{"date":"2016-10-03","fuel":"gasoline","grade":"all","price_premium":0.109},{"date":"2016-10-03","fuel":"gasoline","grade":"midgrade","price_premium":0.261},{"date":"2016-10-03","fuel":"gasoline","grade":"premium","price_premium":0.481},{"date":"2016-10-10","fuel":"gasoline","grade":"all","price_premium":0.109},{"date":"2016-10-10","fuel":"gasoline","grade":"midgrade","price_premium":0.257},{"date":"2016-10-10","fuel":"gasoline","grade":"premium","price_premium":0.482},{"date":"2016-10-17","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2016-10-17","fuel":"gasoline","grade":"midgrade","price_premium":0.259},{"date":"2016-10-17","fuel":"gasoline","grade":"premium","price_premium":0.485},{"date":"2016-10-24","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2016-10-24","fuel":"gasoline","grade":"midgrade","price_premium":0.259},{"date":"2016-10-24","fuel":"gasoline","grade":"premium","price_premium":0.487},{"date":"2016-10-31","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2016-10-31","fuel":"gasoline","grade":"midgrade","price_premium":0.263},{"date":"2016-10-31","fuel":"gasoline","grade":"premium","price_premium":0.489},{"date":"2016-11-07","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2016-11-07","fuel":"gasoline","grade":"midgrade","price_premium":0.265},{"date":"2016-11-07","fuel":"gasoline","grade":"premium","price_premium":0.499},{"date":"2016-11-14","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2016-11-14","fuel":"gasoline","grade":"midgrade","price_premium":0.271},{"date":"2016-11-14","fuel":"gasoline","grade":"premium","price_premium":0.507},{"date":"2016-11-21","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2016-11-21","fuel":"gasoline","grade":"midgrade","price_premium":0.268},{"date":"2016-11-21","fuel":"gasoline","grade":"premium","price_premium":0.505},{"date":"2016-11-28","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2016-11-28","fuel":"gasoline","grade":"midgrade","price_premium":0.269},{"date":"2016-11-28","fuel":"gasoline","grade":"premium","price_premium":0.503},{"date":"2016-12-05","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2016-12-05","fuel":"gasoline","grade":"midgrade","price_premium":0.263},{"date":"2016-12-05","fuel":"gasoline","grade":"premium","price_premium":0.502},{"date":"2016-12-12","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2016-12-12","fuel":"gasoline","grade":"midgrade","price_premium":0.258},{"date":"2016-12-12","fuel":"gasoline","grade":"premium","price_premium":0.496},{"date":"2016-12-19","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2016-12-19","fuel":"gasoline","grade":"midgrade","price_premium":0.258},{"date":"2016-12-19","fuel":"gasoline","grade":"premium","price_premium":0.497},{"date":"2016-12-26","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2016-12-26","fuel":"gasoline","grade":"midgrade","price_premium":0.252},{"date":"2016-12-26","fuel":"gasoline","grade":"premium","price_premium":0.49},{"date":"2017-01-02","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2017-01-02","fuel":"gasoline","grade":"midgrade","price_premium":0.245},{"date":"2017-01-02","fuel":"gasoline","grade":"premium","price_premium":0.488},{"date":"2017-01-09","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2017-01-09","fuel":"gasoline","grade":"midgrade","price_premium":0.248},{"date":"2017-01-09","fuel":"gasoline","grade":"premium","price_premium":0.486},{"date":"2017-01-16","fuel":"gasoline","grade":"all","price_premium":0.109},{"date":"2017-01-16","fuel":"gasoline","grade":"midgrade","price_premium":0.249},{"date":"2017-01-16","fuel":"gasoline","grade":"premium","price_premium":0.487},{"date":"2017-01-23","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2017-01-23","fuel":"gasoline","grade":"midgrade","price_premium":0.252},{"date":"2017-01-23","fuel":"gasoline","grade":"premium","price_premium":0.491},{"date":"2017-01-30","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2017-01-30","fuel":"gasoline","grade":"midgrade","price_premium":0.257},{"date":"2017-01-30","fuel":"gasoline","grade":"premium","price_premium":0.499},{"date":"2017-02-06","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2017-02-06","fuel":"gasoline","grade":"midgrade","price_premium":0.259},{"date":"2017-02-06","fuel":"gasoline","grade":"premium","price_premium":0.497},{"date":"2017-02-13","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2017-02-13","fuel":"gasoline","grade":"midgrade","price_premium":0.259},{"date":"2017-02-13","fuel":"gasoline","grade":"premium","price_premium":0.494},{"date":"2017-02-20","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2017-02-20","fuel":"gasoline","grade":"midgrade","price_premium":0.262},{"date":"2017-02-20","fuel":"gasoline","grade":"premium","price_premium":0.496},{"date":"2017-02-27","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2017-02-27","fuel":"gasoline","grade":"midgrade","price_premium":0.265},{"date":"2017-02-27","fuel":"gasoline","grade":"premium","price_premium":0.498},{"date":"2017-03-06","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2017-03-06","fuel":"gasoline","grade":"midgrade","price_premium":0.263},{"date":"2017-03-06","fuel":"gasoline","grade":"premium","price_premium":0.492},{"date":"2017-03-13","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2017-03-13","fuel":"gasoline","grade":"midgrade","price_premium":0.263},{"date":"2017-03-13","fuel":"gasoline","grade":"premium","price_premium":0.493},{"date":"2017-03-20","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2017-03-20","fuel":"gasoline","grade":"midgrade","price_premium":0.266},{"date":"2017-03-20","fuel":"gasoline","grade":"premium","price_premium":0.495},{"date":"2017-03-27","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2017-03-27","fuel":"gasoline","grade":"midgrade","price_premium":0.268},{"date":"2017-03-27","fuel":"gasoline","grade":"premium","price_premium":0.497},{"date":"2017-04-03","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2017-04-03","fuel":"gasoline","grade":"midgrade","price_premium":0.262},{"date":"2017-04-03","fuel":"gasoline","grade":"premium","price_premium":0.491},{"date":"2017-04-10","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2017-04-10","fuel":"gasoline","grade":"midgrade","price_premium":0.259},{"date":"2017-04-10","fuel":"gasoline","grade":"premium","price_premium":0.488},{"date":"2017-04-17","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2017-04-17","fuel":"gasoline","grade":"midgrade","price_premium":0.258},{"date":"2017-04-17","fuel":"gasoline","grade":"premium","price_premium":0.491},{"date":"2017-04-24","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2017-04-24","fuel":"gasoline","grade":"midgrade","price_premium":0.257},{"date":"2017-04-24","fuel":"gasoline","grade":"premium","price_premium":0.489},{"date":"2017-05-01","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2017-05-01","fuel":"gasoline","grade":"midgrade","price_premium":0.262},{"date":"2017-05-01","fuel":"gasoline","grade":"premium","price_premium":0.496},{"date":"2017-05-08","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2017-05-08","fuel":"gasoline","grade":"midgrade","price_premium":0.263},{"date":"2017-05-08","fuel":"gasoline","grade":"premium","price_premium":0.498},{"date":"2017-05-15","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2017-05-15","fuel":"gasoline","grade":"midgrade","price_premium":0.265},{"date":"2017-05-15","fuel":"gasoline","grade":"premium","price_premium":0.498},{"date":"2017-05-22","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2017-05-22","fuel":"gasoline","grade":"midgrade","price_premium":0.264},{"date":"2017-05-22","fuel":"gasoline","grade":"premium","price_premium":0.49},{"date":"2017-05-29","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2017-05-29","fuel":"gasoline","grade":"midgrade","price_premium":0.259},{"date":"2017-05-29","fuel":"gasoline","grade":"premium","price_premium":0.488},{"date":"2017-06-05","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2017-06-05","fuel":"gasoline","grade":"midgrade","price_premium":0.263},{"date":"2017-06-05","fuel":"gasoline","grade":"premium","price_premium":0.492},{"date":"2017-06-12","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2017-06-12","fuel":"gasoline","grade":"midgrade","price_premium":0.267},{"date":"2017-06-12","fuel":"gasoline","grade":"premium","price_premium":0.499},{"date":"2017-06-19","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2017-06-19","fuel":"gasoline","grade":"midgrade","price_premium":0.275},{"date":"2017-06-19","fuel":"gasoline","grade":"premium","price_premium":0.507},{"date":"2017-06-26","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2017-06-26","fuel":"gasoline","grade":"midgrade","price_premium":0.277},{"date":"2017-06-26","fuel":"gasoline","grade":"premium","price_premium":0.511},{"date":"2017-07-03","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2017-07-03","fuel":"gasoline","grade":"midgrade","price_premium":0.276},{"date":"2017-07-03","fuel":"gasoline","grade":"premium","price_premium":0.51},{"date":"2017-07-10","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2017-07-10","fuel":"gasoline","grade":"midgrade","price_premium":0.272},{"date":"2017-07-10","fuel":"gasoline","grade":"premium","price_premium":0.501},{"date":"2017-07-17","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2017-07-17","fuel":"gasoline","grade":"midgrade","price_premium":0.273},{"date":"2017-07-17","fuel":"gasoline","grade":"premium","price_premium":0.503},{"date":"2017-07-24","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2017-07-24","fuel":"gasoline","grade":"midgrade","price_premium":0.27},{"date":"2017-07-24","fuel":"gasoline","grade":"premium","price_premium":0.504},{"date":"2017-07-31","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2017-07-31","fuel":"gasoline","grade":"midgrade","price_premium":0.271},{"date":"2017-07-31","fuel":"gasoline","grade":"premium","price_premium":0.508},{"date":"2017-08-07","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2017-08-07","fuel":"gasoline","grade":"midgrade","price_premium":0.266},{"date":"2017-08-07","fuel":"gasoline","grade":"premium","price_premium":0.504},{"date":"2017-08-14","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2017-08-14","fuel":"gasoline","grade":"midgrade","price_premium":0.269},{"date":"2017-08-14","fuel":"gasoline","grade":"premium","price_premium":0.502},{"date":"2017-08-21","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2017-08-21","fuel":"gasoline","grade":"midgrade","price_premium":0.271},{"date":"2017-08-21","fuel":"gasoline","grade":"premium","price_premium":0.505},{"date":"2017-08-28","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2017-08-28","fuel":"gasoline","grade":"midgrade","price_premium":0.269},{"date":"2017-08-28","fuel":"gasoline","grade":"premium","price_premium":0.502},{"date":"2017-09-04","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2017-09-04","fuel":"gasoline","grade":"midgrade","price_premium":0.267},{"date":"2017-09-04","fuel":"gasoline","grade":"premium","price_premium":0.512},{"date":"2017-09-11","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2017-09-11","fuel":"gasoline","grade":"midgrade","price_premium":0.268},{"date":"2017-09-11","fuel":"gasoline","grade":"premium","price_premium":0.512},{"date":"2017-09-18","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2017-09-18","fuel":"gasoline","grade":"midgrade","price_premium":0.272},{"date":"2017-09-18","fuel":"gasoline","grade":"premium","price_premium":0.517},{"date":"2017-09-25","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2017-09-25","fuel":"gasoline","grade":"midgrade","price_premium":0.276},{"date":"2017-09-25","fuel":"gasoline","grade":"premium","price_premium":0.522},{"date":"2017-10-02","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2017-10-02","fuel":"gasoline","grade":"midgrade","price_premium":0.276},{"date":"2017-10-02","fuel":"gasoline","grade":"premium","price_premium":0.52},{"date":"2017-10-09","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2017-10-09","fuel":"gasoline","grade":"midgrade","price_premium":0.276},{"date":"2017-10-09","fuel":"gasoline","grade":"premium","price_premium":0.521},{"date":"2017-10-16","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2017-10-16","fuel":"gasoline","grade":"midgrade","price_premium":0.275},{"date":"2017-10-16","fuel":"gasoline","grade":"premium","price_premium":0.514},{"date":"2017-10-23","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2017-10-23","fuel":"gasoline","grade":"midgrade","price_premium":0.271},{"date":"2017-10-23","fuel":"gasoline","grade":"premium","price_premium":0.508},{"date":"2017-10-30","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2017-10-30","fuel":"gasoline","grade":"midgrade","price_premium":0.272},{"date":"2017-10-30","fuel":"gasoline","grade":"premium","price_premium":0.506},{"date":"2017-11-06","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2017-11-06","fuel":"gasoline","grade":"midgrade","price_premium":0.268},{"date":"2017-11-06","fuel":"gasoline","grade":"premium","price_premium":0.498},{"date":"2017-11-13","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2017-11-13","fuel":"gasoline","grade":"midgrade","price_premium":0.273},{"date":"2017-11-13","fuel":"gasoline","grade":"premium","price_premium":0.5},{"date":"2017-11-20","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2017-11-20","fuel":"gasoline","grade":"midgrade","price_premium":0.275},{"date":"2017-11-20","fuel":"gasoline","grade":"premium","price_premium":0.507},{"date":"2017-11-27","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2017-11-27","fuel":"gasoline","grade":"midgrade","price_premium":0.277},{"date":"2017-11-27","fuel":"gasoline","grade":"premium","price_premium":0.51},{"date":"2017-12-04","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2017-12-04","fuel":"gasoline","grade":"midgrade","price_premium":0.278},{"date":"2017-12-04","fuel":"gasoline","grade":"premium","price_premium":0.514},{"date":"2017-12-11","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2017-12-11","fuel":"gasoline","grade":"midgrade","price_premium":0.278},{"date":"2017-12-11","fuel":"gasoline","grade":"premium","price_premium":0.515},{"date":"2017-12-18","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2017-12-18","fuel":"gasoline","grade":"midgrade","price_premium":0.281},{"date":"2017-12-18","fuel":"gasoline","grade":"premium","price_premium":0.519},{"date":"2017-12-25","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2017-12-25","fuel":"gasoline","grade":"midgrade","price_premium":0.277},{"date":"2017-12-25","fuel":"gasoline","grade":"premium","price_premium":0.513},{"date":"2018-01-01","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2018-01-01","fuel":"gasoline","grade":"midgrade","price_premium":0.278},{"date":"2018-01-01","fuel":"gasoline","grade":"premium","price_premium":0.515},{"date":"2018-01-08","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2018-01-08","fuel":"gasoline","grade":"midgrade","price_premium":0.28},{"date":"2018-01-08","fuel":"gasoline","grade":"premium","price_premium":0.518},{"date":"2018-01-15","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2018-01-15","fuel":"gasoline","grade":"midgrade","price_premium":0.274},{"date":"2018-01-15","fuel":"gasoline","grade":"premium","price_premium":0.511},{"date":"2018-01-22","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2018-01-22","fuel":"gasoline","grade":"midgrade","price_premium":0.278},{"date":"2018-01-22","fuel":"gasoline","grade":"premium","price_premium":0.518},{"date":"2018-01-29","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2018-01-29","fuel":"gasoline","grade":"midgrade","price_premium":0.275},{"date":"2018-01-29","fuel":"gasoline","grade":"premium","price_premium":0.515},{"date":"2018-02-05","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2018-02-05","fuel":"gasoline","grade":"midgrade","price_premium":0.277},{"date":"2018-02-05","fuel":"gasoline","grade":"premium","price_premium":0.512},{"date":"2018-02-12","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2018-02-12","fuel":"gasoline","grade":"midgrade","price_premium":0.281},{"date":"2018-02-12","fuel":"gasoline","grade":"premium","price_premium":0.518},{"date":"2018-02-19","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2018-02-19","fuel":"gasoline","grade":"midgrade","price_premium":0.286},{"date":"2018-02-19","fuel":"gasoline","grade":"premium","price_premium":0.525},{"date":"2018-02-26","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2018-02-26","fuel":"gasoline","grade":"midgrade","price_premium":0.282},{"date":"2018-02-26","fuel":"gasoline","grade":"premium","price_premium":0.521},{"date":"2018-03-05","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2018-03-05","fuel":"gasoline","grade":"midgrade","price_premium":0.285},{"date":"2018-03-05","fuel":"gasoline","grade":"premium","price_premium":0.524},{"date":"2018-03-12","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2018-03-12","fuel":"gasoline","grade":"midgrade","price_premium":0.284},{"date":"2018-03-12","fuel":"gasoline","grade":"premium","price_premium":0.519},{"date":"2018-03-19","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2018-03-19","fuel":"gasoline","grade":"midgrade","price_premium":0.283},{"date":"2018-03-19","fuel":"gasoline","grade":"premium","price_premium":0.516},{"date":"2018-03-26","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2018-03-26","fuel":"gasoline","grade":"midgrade","price_premium":0.28},{"date":"2018-03-26","fuel":"gasoline","grade":"premium","price_premium":0.513},{"date":"2018-04-02","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2018-04-02","fuel":"gasoline","grade":"midgrade","price_premium":0.279},{"date":"2018-04-02","fuel":"gasoline","grade":"premium","price_premium":0.512},{"date":"2018-04-09","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2018-04-09","fuel":"gasoline","grade":"midgrade","price_premium":0.283},{"date":"2018-04-09","fuel":"gasoline","grade":"premium","price_premium":0.515},{"date":"2018-04-16","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2018-04-16","fuel":"gasoline","grade":"midgrade","price_premium":0.278},{"date":"2018-04-16","fuel":"gasoline","grade":"premium","price_premium":0.509},{"date":"2018-04-23","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2018-04-23","fuel":"gasoline","grade":"midgrade","price_premium":0.277},{"date":"2018-04-23","fuel":"gasoline","grade":"premium","price_premium":0.512},{"date":"2018-04-30","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2018-04-30","fuel":"gasoline","grade":"midgrade","price_premium":0.271},{"date":"2018-04-30","fuel":"gasoline","grade":"premium","price_premium":0.507},{"date":"2018-05-07","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2018-05-07","fuel":"gasoline","grade":"midgrade","price_premium":0.274},{"date":"2018-05-07","fuel":"gasoline","grade":"premium","price_premium":0.509},{"date":"2018-05-14","fuel":"gasoline","grade":"all","price_premium":0.076},{"date":"2018-05-14","fuel":"gasoline","grade":"midgrade","price_premium":0.339},{"date":"2018-05-14","fuel":"gasoline","grade":"premium","price_premium":0.579},{"date":"2018-05-21","fuel":"gasoline","grade":"all","price_premium":0.076},{"date":"2018-05-21","fuel":"gasoline","grade":"midgrade","price_premium":0.334},{"date":"2018-05-21","fuel":"gasoline","grade":"premium","price_premium":0.574},{"date":"2018-05-28","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2018-05-28","fuel":"gasoline","grade":"midgrade","price_premium":0.334},{"date":"2018-05-28","fuel":"gasoline","grade":"premium","price_premium":0.574},{"date":"2018-06-04","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2018-06-04","fuel":"gasoline","grade":"midgrade","price_premium":0.345},{"date":"2018-06-04","fuel":"gasoline","grade":"premium","price_premium":0.584},{"date":"2018-06-11","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2018-06-11","fuel":"gasoline","grade":"midgrade","price_premium":0.348},{"date":"2018-06-11","fuel":"gasoline","grade":"premium","price_premium":0.584},{"date":"2018-06-18","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2018-06-18","fuel":"gasoline","grade":"midgrade","price_premium":0.351},{"date":"2018-06-18","fuel":"gasoline","grade":"premium","price_premium":0.591},{"date":"2018-06-25","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2018-06-25","fuel":"gasoline","grade":"midgrade","price_premium":0.356},{"date":"2018-06-25","fuel":"gasoline","grade":"premium","price_premium":0.599},{"date":"2018-07-02","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2018-07-02","fuel":"gasoline","grade":"midgrade","price_premium":0.353},{"date":"2018-07-02","fuel":"gasoline","grade":"premium","price_premium":0.595},{"date":"2018-07-09","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2018-07-09","fuel":"gasoline","grade":"midgrade","price_premium":0.35},{"date":"2018-07-09","fuel":"gasoline","grade":"premium","price_premium":0.597},{"date":"2018-07-16","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2018-07-16","fuel":"gasoline","grade":"midgrade","price_premium":0.344},{"date":"2018-07-16","fuel":"gasoline","grade":"premium","price_premium":0.586},{"date":"2018-07-23","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2018-07-23","fuel":"gasoline","grade":"midgrade","price_premium":0.349},{"date":"2018-07-23","fuel":"gasoline","grade":"premium","price_premium":0.595},{"date":"2018-07-30","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2018-07-30","fuel":"gasoline","grade":"midgrade","price_premium":0.343},{"date":"2018-07-30","fuel":"gasoline","grade":"premium","price_premium":0.587},{"date":"2018-08-06","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2018-08-06","fuel":"gasoline","grade":"midgrade","price_premium":0.339},{"date":"2018-08-06","fuel":"gasoline","grade":"premium","price_premium":0.583},{"date":"2018-08-13","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2018-08-13","fuel":"gasoline","grade":"midgrade","price_premium":0.341},{"date":"2018-08-13","fuel":"gasoline","grade":"premium","price_premium":0.585},{"date":"2018-08-20","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2018-08-20","fuel":"gasoline","grade":"midgrade","price_premium":0.35},{"date":"2018-08-20","fuel":"gasoline","grade":"premium","price_premium":0.586},{"date":"2018-08-27","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2018-08-27","fuel":"gasoline","grade":"midgrade","price_premium":0.349},{"date":"2018-08-27","fuel":"gasoline","grade":"premium","price_premium":0.585},{"date":"2018-09-03","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2018-09-03","fuel":"gasoline","grade":"midgrade","price_premium":0.351},{"date":"2018-09-03","fuel":"gasoline","grade":"premium","price_premium":0.592},{"date":"2018-09-10","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2018-09-10","fuel":"gasoline","grade":"midgrade","price_premium":0.351},{"date":"2018-09-10","fuel":"gasoline","grade":"premium","price_premium":0.593},{"date":"2018-09-17","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2018-09-17","fuel":"gasoline","grade":"midgrade","price_premium":0.353},{"date":"2018-09-17","fuel":"gasoline","grade":"premium","price_premium":0.594},{"date":"2018-09-24","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2018-09-24","fuel":"gasoline","grade":"midgrade","price_premium":0.351},{"date":"2018-09-24","fuel":"gasoline","grade":"premium","price_premium":0.592},{"date":"2018-10-01","fuel":"gasoline","grade":"all","price_premium":0.081},{"date":"2018-10-01","fuel":"gasoline","grade":"midgrade","price_premium":0.357},{"date":"2018-10-01","fuel":"gasoline","grade":"premium","price_premium":0.602},{"date":"2018-10-08","fuel":"gasoline","grade":"all","price_premium":0.081},{"date":"2018-10-08","fuel":"gasoline","grade":"midgrade","price_premium":0.36},{"date":"2018-10-08","fuel":"gasoline","grade":"premium","price_premium":0.601},{"date":"2018-10-15","fuel":"gasoline","grade":"all","price_premium":0.082},{"date":"2018-10-15","fuel":"gasoline","grade":"midgrade","price_premium":0.37},{"date":"2018-10-15","fuel":"gasoline","grade":"premium","price_premium":0.609},{"date":"2018-10-22","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2018-10-22","fuel":"gasoline","grade":"midgrade","price_premium":0.38},{"date":"2018-10-22","fuel":"gasoline","grade":"premium","price_premium":0.622},{"date":"2018-10-29","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2018-10-29","fuel":"gasoline","grade":"midgrade","price_premium":0.385},{"date":"2018-10-29","fuel":"gasoline","grade":"premium","price_premium":0.626},{"date":"2018-11-05","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2018-11-05","fuel":"gasoline","grade":"midgrade","price_premium":0.393},{"date":"2018-11-05","fuel":"gasoline","grade":"premium","price_premium":0.636},{"date":"2018-11-12","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2018-11-12","fuel":"gasoline","grade":"midgrade","price_premium":0.4},{"date":"2018-11-12","fuel":"gasoline","grade":"premium","price_premium":0.64},{"date":"2018-11-19","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2018-11-19","fuel":"gasoline","grade":"midgrade","price_premium":0.411},{"date":"2018-11-19","fuel":"gasoline","grade":"premium","price_premium":0.647},{"date":"2018-11-26","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2018-11-26","fuel":"gasoline","grade":"midgrade","price_premium":0.426},{"date":"2018-11-26","fuel":"gasoline","grade":"premium","price_premium":0.664},{"date":"2018-12-03","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2018-12-03","fuel":"gasoline","grade":"midgrade","price_premium":0.432},{"date":"2018-12-03","fuel":"gasoline","grade":"premium","price_premium":0.668},{"date":"2018-12-10","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2018-12-10","fuel":"gasoline","grade":"midgrade","price_premium":0.421},{"date":"2018-12-10","fuel":"gasoline","grade":"premium","price_premium":0.658},{"date":"2018-12-17","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2018-12-17","fuel":"gasoline","grade":"midgrade","price_premium":0.424},{"date":"2018-12-17","fuel":"gasoline","grade":"premium","price_premium":0.661},{"date":"2018-12-24","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2018-12-24","fuel":"gasoline","grade":"midgrade","price_premium":0.429},{"date":"2018-12-24","fuel":"gasoline","grade":"premium","price_premium":0.666},{"date":"2018-12-31","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2018-12-31","fuel":"gasoline","grade":"midgrade","price_premium":0.431},{"date":"2018-12-31","fuel":"gasoline","grade":"premium","price_premium":0.668},{"date":"2019-01-07","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2019-01-07","fuel":"gasoline","grade":"midgrade","price_premium":0.425},{"date":"2019-01-07","fuel":"gasoline","grade":"premium","price_premium":0.669},{"date":"2019-01-14","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2019-01-14","fuel":"gasoline","grade":"midgrade","price_premium":0.413},{"date":"2019-01-14","fuel":"gasoline","grade":"premium","price_premium":0.66},{"date":"2019-01-21","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2019-01-21","fuel":"gasoline","grade":"midgrade","price_premium":0.41},{"date":"2019-01-21","fuel":"gasoline","grade":"premium","price_premium":0.651},{"date":"2019-01-28","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2019-01-28","fuel":"gasoline","grade":"midgrade","price_premium":0.394},{"date":"2019-01-28","fuel":"gasoline","grade":"premium","price_premium":0.643},{"date":"2019-02-04","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2019-02-04","fuel":"gasoline","grade":"midgrade","price_premium":0.39},{"date":"2019-02-04","fuel":"gasoline","grade":"premium","price_premium":0.641},{"date":"2019-02-11","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2019-02-11","fuel":"gasoline","grade":"midgrade","price_premium":0.381},{"date":"2019-02-11","fuel":"gasoline","grade":"premium","price_premium":0.636},{"date":"2019-02-18","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2019-02-18","fuel":"gasoline","grade":"midgrade","price_premium":0.371},{"date":"2019-02-18","fuel":"gasoline","grade":"premium","price_premium":0.623},{"date":"2019-02-25","fuel":"gasoline","grade":"all","price_premium":0.081},{"date":"2019-02-25","fuel":"gasoline","grade":"midgrade","price_premium":0.349},{"date":"2019-02-25","fuel":"gasoline","grade":"premium","price_premium":0.608},{"date":"2019-03-04","fuel":"gasoline","grade":"all","price_premium":0.08},{"date":"2019-03-04","fuel":"gasoline","grade":"midgrade","price_premium":0.346},{"date":"2019-03-04","fuel":"gasoline","grade":"premium","price_premium":0.598},{"date":"2019-03-11","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2019-03-11","fuel":"gasoline","grade":"midgrade","price_premium":0.336},{"date":"2019-03-11","fuel":"gasoline","grade":"premium","price_premium":0.588},{"date":"2019-03-18","fuel":"gasoline","grade":"all","price_premium":0.077},{"date":"2019-03-18","fuel":"gasoline","grade":"midgrade","price_premium":0.331},{"date":"2019-03-18","fuel":"gasoline","grade":"premium","price_premium":0.587},{"date":"2019-03-25","fuel":"gasoline","grade":"all","price_premium":0.078},{"date":"2019-03-25","fuel":"gasoline","grade":"midgrade","price_premium":0.337},{"date":"2019-03-25","fuel":"gasoline","grade":"premium","price_premium":0.589},{"date":"2019-04-01","fuel":"gasoline","grade":"all","price_premium":0.079},{"date":"2019-04-01","fuel":"gasoline","grade":"midgrade","price_premium":0.343},{"date":"2019-04-01","fuel":"gasoline","grade":"premium","price_premium":0.595},{"date":"2019-04-08","fuel":"gasoline","grade":"all","price_premium":0.081},{"date":"2019-04-08","fuel":"gasoline","grade":"midgrade","price_premium":0.358},{"date":"2019-04-08","fuel":"gasoline","grade":"premium","price_premium":0.609},{"date":"2019-04-15","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2019-04-15","fuel":"gasoline","grade":"midgrade","price_premium":0.37},{"date":"2019-04-15","fuel":"gasoline","grade":"premium","price_premium":0.621},{"date":"2019-04-22","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2019-04-22","fuel":"gasoline","grade":"midgrade","price_premium":0.38},{"date":"2019-04-22","fuel":"gasoline","grade":"premium","price_premium":0.633},{"date":"2019-04-29","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2019-04-29","fuel":"gasoline","grade":"midgrade","price_premium":0.383},{"date":"2019-04-29","fuel":"gasoline","grade":"premium","price_premium":0.636},{"date":"2019-05-06","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2019-05-06","fuel":"gasoline","grade":"midgrade","price_premium":0.389},{"date":"2019-05-06","fuel":"gasoline","grade":"premium","price_premium":0.64},{"date":"2019-05-13","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2019-05-13","fuel":"gasoline","grade":"midgrade","price_premium":0.392},{"date":"2019-05-13","fuel":"gasoline","grade":"premium","price_premium":0.648},{"date":"2019-05-20","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2019-05-20","fuel":"gasoline","grade":"midgrade","price_premium":0.393},{"date":"2019-05-20","fuel":"gasoline","grade":"premium","price_premium":0.647},{"date":"2019-05-27","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2019-05-27","fuel":"gasoline","grade":"midgrade","price_premium":0.39},{"date":"2019-05-27","fuel":"gasoline","grade":"premium","price_premium":0.649},{"date":"2019-06-03","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2019-06-03","fuel":"gasoline","grade":"midgrade","price_premium":0.387},{"date":"2019-06-03","fuel":"gasoline","grade":"premium","price_premium":0.64},{"date":"2019-06-10","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2019-06-10","fuel":"gasoline","grade":"midgrade","price_premium":0.402},{"date":"2019-06-10","fuel":"gasoline","grade":"premium","price_premium":0.651},{"date":"2019-06-17","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2019-06-17","fuel":"gasoline","grade":"midgrade","price_premium":0.409},{"date":"2019-06-17","fuel":"gasoline","grade":"premium","price_premium":0.656},{"date":"2019-06-24","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2019-06-24","fuel":"gasoline","grade":"midgrade","price_premium":0.397},{"date":"2019-06-24","fuel":"gasoline","grade":"premium","price_premium":0.646},{"date":"2019-07-01","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2019-07-01","fuel":"gasoline","grade":"midgrade","price_premium":0.382},{"date":"2019-07-01","fuel":"gasoline","grade":"premium","price_premium":0.63},{"date":"2019-07-08","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2019-07-08","fuel":"gasoline","grade":"midgrade","price_premium":0.374},{"date":"2019-07-08","fuel":"gasoline","grade":"premium","price_premium":0.623},{"date":"2019-07-15","fuel":"gasoline","grade":"all","price_premium":0.081},{"date":"2019-07-15","fuel":"gasoline","grade":"midgrade","price_premium":0.358},{"date":"2019-07-15","fuel":"gasoline","grade":"premium","price_premium":0.613},{"date":"2019-07-22","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2019-07-22","fuel":"gasoline","grade":"midgrade","price_premium":0.366},{"date":"2019-07-22","fuel":"gasoline","grade":"premium","price_premium":0.618},{"date":"2019-07-29","fuel":"gasoline","grade":"all","price_premium":0.083},{"date":"2019-07-29","fuel":"gasoline","grade":"midgrade","price_premium":0.369},{"date":"2019-07-29","fuel":"gasoline","grade":"premium","price_premium":0.624},{"date":"2019-08-05","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2019-08-05","fuel":"gasoline","grade":"midgrade","price_premium":0.374},{"date":"2019-08-05","fuel":"gasoline","grade":"premium","price_premium":0.629},{"date":"2019-08-12","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2019-08-12","fuel":"gasoline","grade":"midgrade","price_premium":0.386},{"date":"2019-08-12","fuel":"gasoline","grade":"premium","price_premium":0.642},{"date":"2019-08-19","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2019-08-19","fuel":"gasoline","grade":"midgrade","price_premium":0.384},{"date":"2019-08-19","fuel":"gasoline","grade":"premium","price_premium":0.642},{"date":"2019-08-26","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2019-08-26","fuel":"gasoline","grade":"midgrade","price_premium":0.391},{"date":"2019-08-26","fuel":"gasoline","grade":"premium","price_premium":0.645},{"date":"2019-09-02","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2019-09-02","fuel":"gasoline","grade":"midgrade","price_premium":0.397},{"date":"2019-09-02","fuel":"gasoline","grade":"premium","price_premium":0.652},{"date":"2019-09-09","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2019-09-09","fuel":"gasoline","grade":"midgrade","price_premium":0.4},{"date":"2019-09-09","fuel":"gasoline","grade":"premium","price_premium":0.652},{"date":"2019-09-16","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2019-09-16","fuel":"gasoline","grade":"midgrade","price_premium":0.398},{"date":"2019-09-16","fuel":"gasoline","grade":"premium","price_premium":0.651},{"date":"2019-09-23","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2019-09-23","fuel":"gasoline","grade":"midgrade","price_premium":0.394},{"date":"2019-09-23","fuel":"gasoline","grade":"premium","price_premium":0.642},{"date":"2019-09-30","fuel":"gasoline","grade":"all","price_premium":0.095},{"date":"2019-09-30","fuel":"gasoline","grade":"midgrade","price_premium":0.44},{"date":"2019-09-30","fuel":"gasoline","grade":"premium","price_premium":0.699},{"date":"2019-10-07","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2019-10-07","fuel":"gasoline","grade":"midgrade","price_premium":0.452},{"date":"2019-10-07","fuel":"gasoline","grade":"premium","price_premium":0.711},{"date":"2019-10-14","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2019-10-14","fuel":"gasoline","grade":"midgrade","price_premium":0.456},{"date":"2019-10-14","fuel":"gasoline","grade":"premium","price_premium":0.716},{"date":"2019-10-21","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2019-10-21","fuel":"gasoline","grade":"midgrade","price_premium":0.451},{"date":"2019-10-21","fuel":"gasoline","grade":"premium","price_premium":0.702},{"date":"2019-10-28","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2019-10-28","fuel":"gasoline","grade":"midgrade","price_premium":0.45},{"date":"2019-10-28","fuel":"gasoline","grade":"premium","price_premium":0.702},{"date":"2019-11-04","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2019-11-04","fuel":"gasoline","grade":"midgrade","price_premium":0.459},{"date":"2019-11-04","fuel":"gasoline","grade":"premium","price_premium":0.708},{"date":"2019-11-11","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2019-11-11","fuel":"gasoline","grade":"midgrade","price_premium":0.452},{"date":"2019-11-11","fuel":"gasoline","grade":"premium","price_premium":0.706},{"date":"2019-11-18","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2019-11-18","fuel":"gasoline","grade":"midgrade","price_premium":0.444},{"date":"2019-11-18","fuel":"gasoline","grade":"premium","price_premium":0.699},{"date":"2019-11-25","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2019-11-25","fuel":"gasoline","grade":"midgrade","price_premium":0.436},{"date":"2019-11-25","fuel":"gasoline","grade":"premium","price_premium":0.685},{"date":"2019-12-02","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2019-12-02","fuel":"gasoline","grade":"midgrade","price_premium":0.424},{"date":"2019-12-02","fuel":"gasoline","grade":"premium","price_premium":0.674},{"date":"2019-12-09","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2019-12-09","fuel":"gasoline","grade":"midgrade","price_premium":0.42},{"date":"2019-12-09","fuel":"gasoline","grade":"premium","price_premium":0.669},{"date":"2019-12-16","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2019-12-16","fuel":"gasoline","grade":"midgrade","price_premium":0.419},{"date":"2019-12-16","fuel":"gasoline","grade":"premium","price_premium":0.668},{"date":"2019-12-23","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2019-12-23","fuel":"gasoline","grade":"midgrade","price_premium":0.411},{"date":"2019-12-23","fuel":"gasoline","grade":"premium","price_premium":0.659},{"date":"2019-12-30","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2019-12-30","fuel":"gasoline","grade":"midgrade","price_premium":0.397},{"date":"2019-12-30","fuel":"gasoline","grade":"premium","price_premium":0.638},{"date":"2020-01-06","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2020-01-06","fuel":"gasoline","grade":"midgrade","price_premium":0.395},{"date":"2020-01-06","fuel":"gasoline","grade":"premium","price_premium":0.636},{"date":"2020-01-13","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2020-01-13","fuel":"gasoline","grade":"midgrade","price_premium":0.394},{"date":"2020-01-13","fuel":"gasoline","grade":"premium","price_premium":0.639},{"date":"2020-01-20","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2020-01-20","fuel":"gasoline","grade":"midgrade","price_premium":0.403},{"date":"2020-01-20","fuel":"gasoline","grade":"premium","price_premium":0.646},{"date":"2020-01-27","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2020-01-27","fuel":"gasoline","grade":"midgrade","price_premium":0.405},{"date":"2020-01-27","fuel":"gasoline","grade":"premium","price_premium":0.657},{"date":"2020-02-03","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-02-03","fuel":"gasoline","grade":"midgrade","price_premium":0.417},{"date":"2020-02-03","fuel":"gasoline","grade":"premium","price_premium":0.67},{"date":"2020-02-10","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2020-02-10","fuel":"gasoline","grade":"midgrade","price_premium":0.423},{"date":"2020-02-10","fuel":"gasoline","grade":"premium","price_premium":0.676},{"date":"2020-02-17","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-02-17","fuel":"gasoline","grade":"midgrade","price_premium":0.413},{"date":"2020-02-17","fuel":"gasoline","grade":"premium","price_premium":0.663},{"date":"2020-02-24","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2020-02-24","fuel":"gasoline","grade":"midgrade","price_premium":0.402},{"date":"2020-02-24","fuel":"gasoline","grade":"premium","price_premium":0.656},{"date":"2020-03-02","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-03-02","fuel":"gasoline","grade":"midgrade","price_premium":0.415},{"date":"2020-03-02","fuel":"gasoline","grade":"premium","price_premium":0.67},{"date":"2020-03-09","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2020-03-09","fuel":"gasoline","grade":"midgrade","price_premium":0.423},{"date":"2020-03-09","fuel":"gasoline","grade":"premium","price_premium":0.679},{"date":"2020-03-16","fuel":"gasoline","grade":"all","price_premium":0.095},{"date":"2020-03-16","fuel":"gasoline","grade":"midgrade","price_premium":0.441},{"date":"2020-03-16","fuel":"gasoline","grade":"premium","price_premium":0.693},{"date":"2020-03-23","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2020-03-23","fuel":"gasoline","grade":"midgrade","price_premium":0.46},{"date":"2020-03-23","fuel":"gasoline","grade":"premium","price_premium":0.697},{"date":"2020-03-30","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2020-03-30","fuel":"gasoline","grade":"midgrade","price_premium":0.468},{"date":"2020-03-30","fuel":"gasoline","grade":"premium","price_premium":0.711},{"date":"2020-04-06","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2020-04-06","fuel":"gasoline","grade":"midgrade","price_premium":0.468},{"date":"2020-04-06","fuel":"gasoline","grade":"premium","price_premium":0.711},{"date":"2020-04-13","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2020-04-13","fuel":"gasoline","grade":"midgrade","price_premium":0.463},{"date":"2020-04-13","fuel":"gasoline","grade":"premium","price_premium":0.709},{"date":"2020-04-20","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2020-04-20","fuel":"gasoline","grade":"midgrade","price_premium":0.463},{"date":"2020-04-20","fuel":"gasoline","grade":"premium","price_premium":0.707},{"date":"2020-04-27","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2020-04-27","fuel":"gasoline","grade":"midgrade","price_premium":0.453},{"date":"2020-04-27","fuel":"gasoline","grade":"premium","price_premium":0.705},{"date":"2020-05-04","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2020-05-04","fuel":"gasoline","grade":"midgrade","price_premium":0.432},{"date":"2020-05-04","fuel":"gasoline","grade":"premium","price_premium":0.69},{"date":"2020-05-11","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-05-11","fuel":"gasoline","grade":"midgrade","price_premium":0.406},{"date":"2020-05-11","fuel":"gasoline","grade":"premium","price_premium":0.668},{"date":"2020-05-18","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-05-18","fuel":"gasoline","grade":"midgrade","price_premium":0.408},{"date":"2020-05-18","fuel":"gasoline","grade":"premium","price_premium":0.675},{"date":"2020-05-25","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2020-05-25","fuel":"gasoline","grade":"midgrade","price_premium":0.403},{"date":"2020-05-25","fuel":"gasoline","grade":"premium","price_premium":0.658},{"date":"2020-06-01","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-06-01","fuel":"gasoline","grade":"midgrade","price_premium":0.406},{"date":"2020-06-01","fuel":"gasoline","grade":"premium","price_premium":0.664},{"date":"2020-06-08","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2020-06-08","fuel":"gasoline","grade":"midgrade","price_premium":0.398},{"date":"2020-06-08","fuel":"gasoline","grade":"premium","price_premium":0.65},{"date":"2020-06-15","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2020-06-15","fuel":"gasoline","grade":"midgrade","price_premium":0.397},{"date":"2020-06-15","fuel":"gasoline","grade":"premium","price_premium":0.647},{"date":"2020-06-22","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2020-06-22","fuel":"gasoline","grade":"midgrade","price_premium":0.392},{"date":"2020-06-22","fuel":"gasoline","grade":"premium","price_premium":0.644},{"date":"2020-06-29","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2020-06-29","fuel":"gasoline","grade":"midgrade","price_premium":0.389},{"date":"2020-06-29","fuel":"gasoline","grade":"premium","price_premium":0.638},{"date":"2020-07-06","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2020-07-06","fuel":"gasoline","grade":"midgrade","price_premium":0.394},{"date":"2020-07-06","fuel":"gasoline","grade":"premium","price_premium":0.644},{"date":"2020-07-13","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2020-07-13","fuel":"gasoline","grade":"midgrade","price_premium":0.394},{"date":"2020-07-13","fuel":"gasoline","grade":"premium","price_premium":0.647},{"date":"2020-07-20","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2020-07-20","fuel":"gasoline","grade":"midgrade","price_premium":0.398},{"date":"2020-07-20","fuel":"gasoline","grade":"premium","price_premium":0.65},{"date":"2020-07-27","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-07-27","fuel":"gasoline","grade":"midgrade","price_premium":0.407},{"date":"2020-07-27","fuel":"gasoline","grade":"premium","price_premium":0.663},{"date":"2020-08-03","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-08-03","fuel":"gasoline","grade":"midgrade","price_premium":0.411},{"date":"2020-08-03","fuel":"gasoline","grade":"premium","price_premium":0.658},{"date":"2020-08-10","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-08-10","fuel":"gasoline","grade":"midgrade","price_premium":0.412},{"date":"2020-08-10","fuel":"gasoline","grade":"premium","price_premium":0.66},{"date":"2020-08-17","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-08-17","fuel":"gasoline","grade":"midgrade","price_premium":0.411},{"date":"2020-08-17","fuel":"gasoline","grade":"premium","price_premium":0.663},{"date":"2020-08-24","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-08-24","fuel":"gasoline","grade":"midgrade","price_premium":0.413},{"date":"2020-08-24","fuel":"gasoline","grade":"premium","price_premium":0.66},{"date":"2020-08-31","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2020-08-31","fuel":"gasoline","grade":"midgrade","price_premium":0.407},{"date":"2020-08-31","fuel":"gasoline","grade":"premium","price_premium":0.655},{"date":"2020-09-07","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-09-07","fuel":"gasoline","grade":"midgrade","price_premium":0.413},{"date":"2020-09-07","fuel":"gasoline","grade":"premium","price_premium":0.661},{"date":"2020-09-14","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-09-14","fuel":"gasoline","grade":"midgrade","price_premium":0.417},{"date":"2020-09-14","fuel":"gasoline","grade":"premium","price_premium":0.668},{"date":"2020-09-21","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-09-21","fuel":"gasoline","grade":"midgrade","price_premium":0.414},{"date":"2020-09-21","fuel":"gasoline","grade":"premium","price_premium":0.668},{"date":"2020-09-28","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-09-28","fuel":"gasoline","grade":"midgrade","price_premium":0.414},{"date":"2020-09-28","fuel":"gasoline","grade":"premium","price_premium":0.662},{"date":"2020-10-05","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-10-05","fuel":"gasoline","grade":"midgrade","price_premium":0.411},{"date":"2020-10-05","fuel":"gasoline","grade":"premium","price_premium":0.661},{"date":"2020-10-12","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-10-12","fuel":"gasoline","grade":"midgrade","price_premium":0.412},{"date":"2020-10-12","fuel":"gasoline","grade":"premium","price_premium":0.662},{"date":"2020-10-19","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-10-19","fuel":"gasoline","grade":"midgrade","price_premium":0.415},{"date":"2020-10-19","fuel":"gasoline","grade":"premium","price_premium":0.665},{"date":"2020-10-26","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-10-26","fuel":"gasoline","grade":"midgrade","price_premium":0.416},{"date":"2020-10-26","fuel":"gasoline","grade":"premium","price_premium":0.667},{"date":"2020-11-02","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2020-11-02","fuel":"gasoline","grade":"midgrade","price_premium":0.421},{"date":"2020-11-02","fuel":"gasoline","grade":"premium","price_premium":0.674},{"date":"2020-11-09","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2020-11-09","fuel":"gasoline","grade":"midgrade","price_premium":0.421},{"date":"2020-11-09","fuel":"gasoline","grade":"premium","price_premium":0.675},{"date":"2020-11-16","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-11-16","fuel":"gasoline","grade":"midgrade","price_premium":0.421},{"date":"2020-11-16","fuel":"gasoline","grade":"premium","price_premium":0.672},{"date":"2020-11-23","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2020-11-23","fuel":"gasoline","grade":"midgrade","price_premium":0.423},{"date":"2020-11-23","fuel":"gasoline","grade":"premium","price_premium":0.677},{"date":"2020-11-30","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2020-11-30","fuel":"gasoline","grade":"midgrade","price_premium":0.42},{"date":"2020-11-30","fuel":"gasoline","grade":"premium","price_premium":0.672},{"date":"2020-12-07","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2020-12-07","fuel":"gasoline","grade":"midgrade","price_premium":0.411},{"date":"2020-12-07","fuel":"gasoline","grade":"premium","price_premium":0.664},{"date":"2020-12-14","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2020-12-14","fuel":"gasoline","grade":"midgrade","price_premium":0.407},{"date":"2020-12-14","fuel":"gasoline","grade":"premium","price_premium":0.663},{"date":"2020-12-21","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2020-12-21","fuel":"gasoline","grade":"midgrade","price_premium":0.394},{"date":"2020-12-21","fuel":"gasoline","grade":"premium","price_premium":0.647},{"date":"2020-12-28","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2020-12-28","fuel":"gasoline","grade":"midgrade","price_premium":0.391},{"date":"2020-12-28","fuel":"gasoline","grade":"premium","price_premium":0.646},{"date":"2021-01-04","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2021-01-04","fuel":"gasoline","grade":"midgrade","price_premium":0.39},{"date":"2021-01-04","fuel":"gasoline","grade":"premium","price_premium":0.646},{"date":"2021-01-11","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2021-01-11","fuel":"gasoline","grade":"midgrade","price_premium":0.385},{"date":"2021-01-11","fuel":"gasoline","grade":"premium","price_premium":0.642},{"date":"2021-01-18","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2021-01-18","fuel":"gasoline","grade":"midgrade","price_premium":0.38},{"date":"2021-01-18","fuel":"gasoline","grade":"premium","price_premium":0.635},{"date":"2021-01-25","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2021-01-25","fuel":"gasoline","grade":"midgrade","price_premium":0.384},{"date":"2021-01-25","fuel":"gasoline","grade":"premium","price_premium":0.641},{"date":"2021-02-01","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2021-02-01","fuel":"gasoline","grade":"midgrade","price_premium":0.383},{"date":"2021-02-01","fuel":"gasoline","grade":"premium","price_premium":0.642},{"date":"2021-02-08","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2021-02-08","fuel":"gasoline","grade":"midgrade","price_premium":0.386},{"date":"2021-02-08","fuel":"gasoline","grade":"premium","price_premium":0.643},{"date":"2021-02-15","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2021-02-15","fuel":"gasoline","grade":"midgrade","price_premium":0.389},{"date":"2021-02-15","fuel":"gasoline","grade":"premium","price_premium":0.64},{"date":"2021-02-22","fuel":"gasoline","grade":"all","price_premium":0.084},{"date":"2021-02-22","fuel":"gasoline","grade":"midgrade","price_premium":0.373},{"date":"2021-02-22","fuel":"gasoline","grade":"premium","price_premium":0.63},{"date":"2021-03-01","fuel":"gasoline","grade":"all","price_premium":0.085},{"date":"2021-03-01","fuel":"gasoline","grade":"midgrade","price_premium":0.373},{"date":"2021-03-01","fuel":"gasoline","grade":"premium","price_premium":0.633},{"date":"2021-03-08","fuel":"gasoline","grade":"all","price_premium":0.086},{"date":"2021-03-08","fuel":"gasoline","grade":"midgrade","price_premium":0.379},{"date":"2021-03-08","fuel":"gasoline","grade":"premium","price_premium":0.639},{"date":"2021-03-15","fuel":"gasoline","grade":"all","price_premium":0.087},{"date":"2021-03-15","fuel":"gasoline","grade":"midgrade","price_premium":0.388},{"date":"2021-03-15","fuel":"gasoline","grade":"premium","price_premium":0.642},{"date":"2021-03-22","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2021-03-22","fuel":"gasoline","grade":"midgrade","price_premium":0.4},{"date":"2021-03-22","fuel":"gasoline","grade":"premium","price_premium":0.651},{"date":"2021-03-29","fuel":"gasoline","grade":"all","price_premium":0.089},{"date":"2021-03-29","fuel":"gasoline","grade":"midgrade","price_premium":0.399},{"date":"2021-03-29","fuel":"gasoline","grade":"premium","price_premium":0.654},{"date":"2021-04-05","fuel":"gasoline","grade":"all","price_premium":0.088},{"date":"2021-04-05","fuel":"gasoline","grade":"midgrade","price_premium":0.402},{"date":"2021-04-05","fuel":"gasoline","grade":"premium","price_premium":0.654},{"date":"2021-04-12","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2021-04-12","fuel":"gasoline","grade":"midgrade","price_premium":0.41},{"date":"2021-04-12","fuel":"gasoline","grade":"premium","price_premium":0.661},{"date":"2021-04-19","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2021-04-19","fuel":"gasoline","grade":"midgrade","price_premium":0.412},{"date":"2021-04-19","fuel":"gasoline","grade":"premium","price_premium":0.662},{"date":"2021-04-26","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2021-04-26","fuel":"gasoline","grade":"midgrade","price_premium":0.411},{"date":"2021-04-26","fuel":"gasoline","grade":"premium","price_premium":0.664},{"date":"2021-05-03","fuel":"gasoline","grade":"all","price_premium":0.091},{"date":"2021-05-03","fuel":"gasoline","grade":"midgrade","price_premium":0.413},{"date":"2021-05-03","fuel":"gasoline","grade":"premium","price_premium":0.667},{"date":"2021-05-10","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2021-05-10","fuel":"gasoline","grade":"midgrade","price_premium":0.411},{"date":"2021-05-10","fuel":"gasoline","grade":"premium","price_premium":0.663},{"date":"2021-05-17","fuel":"gasoline","grade":"all","price_premium":0.09},{"date":"2021-05-17","fuel":"gasoline","grade":"midgrade","price_premium":0.412},{"date":"2021-05-17","fuel":"gasoline","grade":"premium","price_premium":0.66},{"date":"2021-05-24","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2021-05-24","fuel":"gasoline","grade":"midgrade","price_premium":0.425},{"date":"2021-05-24","fuel":"gasoline","grade":"premium","price_premium":0.67},{"date":"2021-05-31","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2021-05-31","fuel":"gasoline","grade":"midgrade","price_premium":0.423},{"date":"2021-05-31","fuel":"gasoline","grade":"premium","price_premium":0.672},{"date":"2021-06-07","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2021-06-07","fuel":"gasoline","grade":"midgrade","price_premium":0.428},{"date":"2021-06-07","fuel":"gasoline","grade":"premium","price_premium":0.677},{"date":"2021-06-14","fuel":"gasoline","grade":"all","price_premium":0.092},{"date":"2021-06-14","fuel":"gasoline","grade":"midgrade","price_premium":0.419},{"date":"2021-06-14","fuel":"gasoline","grade":"premium","price_premium":0.675},{"date":"2021-06-21","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2021-06-21","fuel":"gasoline","grade":"midgrade","price_premium":0.429},{"date":"2021-06-21","fuel":"gasoline","grade":"premium","price_premium":0.684},{"date":"2021-06-28","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2021-06-28","fuel":"gasoline","grade":"midgrade","price_premium":0.433},{"date":"2021-06-28","fuel":"gasoline","grade":"premium","price_premium":0.686},{"date":"2021-07-05","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2021-07-05","fuel":"gasoline","grade":"midgrade","price_premium":0.437},{"date":"2021-07-05","fuel":"gasoline","grade":"premium","price_premium":0.684},{"date":"2021-07-12","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2021-07-12","fuel":"gasoline","grade":"midgrade","price_premium":0.44},{"date":"2021-07-12","fuel":"gasoline","grade":"premium","price_premium":0.686},{"date":"2021-07-19","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2021-07-19","fuel":"gasoline","grade":"midgrade","price_premium":0.439},{"date":"2021-07-19","fuel":"gasoline","grade":"premium","price_premium":0.686},{"date":"2021-07-26","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2021-07-26","fuel":"gasoline","grade":"midgrade","price_premium":0.448},{"date":"2021-07-26","fuel":"gasoline","grade":"premium","price_premium":0.693},{"date":"2021-08-02","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2021-08-02","fuel":"gasoline","grade":"midgrade","price_premium":0.448},{"date":"2021-08-02","fuel":"gasoline","grade":"premium","price_premium":0.702},{"date":"2021-08-09","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2021-08-09","fuel":"gasoline","grade":"midgrade","price_premium":0.452},{"date":"2021-08-09","fuel":"gasoline","grade":"premium","price_premium":0.702},{"date":"2021-08-16","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2021-08-16","fuel":"gasoline","grade":"midgrade","price_premium":0.455},{"date":"2021-08-16","fuel":"gasoline","grade":"premium","price_premium":0.708},{"date":"2021-08-23","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2021-08-23","fuel":"gasoline","grade":"midgrade","price_premium":0.461},{"date":"2021-08-23","fuel":"gasoline","grade":"premium","price_premium":0.708},{"date":"2021-08-30","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2021-08-30","fuel":"gasoline","grade":"midgrade","price_premium":0.46},{"date":"2021-08-30","fuel":"gasoline","grade":"premium","price_premium":0.714},{"date":"2021-09-06","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2021-09-06","fuel":"gasoline","grade":"midgrade","price_premium":0.452},{"date":"2021-09-06","fuel":"gasoline","grade":"premium","price_premium":0.703},{"date":"2021-09-13","fuel":"gasoline","grade":"all","price_premium":0.097},{"date":"2021-09-13","fuel":"gasoline","grade":"midgrade","price_premium":0.453},{"date":"2021-09-13","fuel":"gasoline","grade":"premium","price_premium":0.703},{"date":"2021-09-20","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2021-09-20","fuel":"gasoline","grade":"midgrade","price_premium":0.448},{"date":"2021-09-20","fuel":"gasoline","grade":"premium","price_premium":0.699},{"date":"2021-09-27","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2021-09-27","fuel":"gasoline","grade":"midgrade","price_premium":0.45},{"date":"2021-09-27","fuel":"gasoline","grade":"premium","price_premium":0.701},{"date":"2021-10-04","fuel":"gasoline","grade":"all","price_premium":0.095},{"date":"2021-10-04","fuel":"gasoline","grade":"midgrade","price_premium":0.445},{"date":"2021-10-04","fuel":"gasoline","grade":"premium","price_premium":0.696},{"date":"2021-10-11","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2021-10-11","fuel":"gasoline","grade":"midgrade","price_premium":0.43},{"date":"2021-10-11","fuel":"gasoline","grade":"premium","price_premium":0.685},{"date":"2021-10-18","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2021-10-18","fuel":"gasoline","grade":"midgrade","price_premium":0.429},{"date":"2021-10-18","fuel":"gasoline","grade":"premium","price_premium":0.685},{"date":"2021-10-25","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2021-10-25","fuel":"gasoline","grade":"midgrade","price_premium":0.426},{"date":"2021-10-25","fuel":"gasoline","grade":"premium","price_premium":0.688},{"date":"2021-11-01","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2021-11-01","fuel":"gasoline","grade":"midgrade","price_premium":0.432},{"date":"2021-11-01","fuel":"gasoline","grade":"premium","price_premium":0.694},{"date":"2021-11-08","fuel":"gasoline","grade":"all","price_premium":0.095},{"date":"2021-11-08","fuel":"gasoline","grade":"midgrade","price_premium":0.432},{"date":"2021-11-08","fuel":"gasoline","grade":"premium","price_premium":0.691},{"date":"2021-11-15","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2021-11-15","fuel":"gasoline","grade":"midgrade","price_premium":0.442},{"date":"2021-11-15","fuel":"gasoline","grade":"premium","price_premium":0.704},{"date":"2021-11-22","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2021-11-22","fuel":"gasoline","grade":"midgrade","price_premium":0.448},{"date":"2021-11-22","fuel":"gasoline","grade":"premium","price_premium":0.712},{"date":"2021-11-29","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2021-11-29","fuel":"gasoline","grade":"midgrade","price_premium":0.451},{"date":"2021-11-29","fuel":"gasoline","grade":"premium","price_premium":0.715},{"date":"2021-12-06","fuel":"gasoline","grade":"all","price_premium":0.099},{"date":"2021-12-06","fuel":"gasoline","grade":"midgrade","price_premium":0.459},{"date":"2021-12-06","fuel":"gasoline","grade":"premium","price_premium":0.722},{"date":"2021-12-13","fuel":"gasoline","grade":"all","price_premium":0.099},{"date":"2021-12-13","fuel":"gasoline","grade":"midgrade","price_premium":0.461},{"date":"2021-12-13","fuel":"gasoline","grade":"premium","price_premium":0.724},{"date":"2021-12-20","fuel":"gasoline","grade":"all","price_premium":0.1},{"date":"2021-12-20","fuel":"gasoline","grade":"midgrade","price_premium":0.468},{"date":"2021-12-20","fuel":"gasoline","grade":"premium","price_premium":0.729},{"date":"2021-12-27","fuel":"gasoline","grade":"all","price_premium":0.1},{"date":"2021-12-27","fuel":"gasoline","grade":"midgrade","price_premium":0.468},{"date":"2021-12-27","fuel":"gasoline","grade":"premium","price_premium":0.733},{"date":"2022-01-03","fuel":"gasoline","grade":"all","price_premium":0.1},{"date":"2022-01-03","fuel":"gasoline","grade":"midgrade","price_premium":0.465},{"date":"2022-01-03","fuel":"gasoline","grade":"premium","price_premium":0.731},{"date":"2022-01-10","fuel":"gasoline","grade":"all","price_premium":0.099},{"date":"2022-01-10","fuel":"gasoline","grade":"midgrade","price_premium":0.457},{"date":"2022-01-10","fuel":"gasoline","grade":"premium","price_premium":0.725},{"date":"2022-01-17","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2022-01-17","fuel":"gasoline","grade":"midgrade","price_premium":0.452},{"date":"2022-01-17","fuel":"gasoline","grade":"premium","price_premium":0.722},{"date":"2022-01-24","fuel":"gasoline","grade":"all","price_premium":0.098},{"date":"2022-01-24","fuel":"gasoline","grade":"midgrade","price_premium":0.446},{"date":"2022-01-24","fuel":"gasoline","grade":"premium","price_premium":0.717},{"date":"2022-01-31","fuel":"gasoline","grade":"all","price_premium":0.096},{"date":"2022-01-31","fuel":"gasoline","grade":"midgrade","price_premium":0.436},{"date":"2022-01-31","fuel":"gasoline","grade":"premium","price_premium":0.71},{"date":"2022-02-07","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2022-02-07","fuel":"gasoline","grade":"midgrade","price_premium":0.423},{"date":"2022-02-07","fuel":"gasoline","grade":"premium","price_premium":0.697},{"date":"2022-02-14","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2022-02-14","fuel":"gasoline","grade":"midgrade","price_premium":0.421},{"date":"2022-02-14","fuel":"gasoline","grade":"premium","price_premium":0.693},{"date":"2022-02-21","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2022-02-21","fuel":"gasoline","grade":"midgrade","price_premium":0.424},{"date":"2022-02-21","fuel":"gasoline","grade":"premium","price_premium":0.691},{"date":"2022-02-28","fuel":"gasoline","grade":"all","price_premium":0.093},{"date":"2022-02-28","fuel":"gasoline","grade":"midgrade","price_premium":0.417},{"date":"2022-02-28","fuel":"gasoline","grade":"premium","price_premium":0.688},{"date":"2022-03-07","fuel":"gasoline","grade":"all","price_premium":0.094},{"date":"2022-03-07","fuel":"gasoline","grade":"midgrade","price_premium":0.422},{"date":"2022-03-07","fuel":"gasoline","grade":"premium","price_premium":0.696},{"date":"2022-03-14","fuel":"gasoline","grade":"all","price_premium":0.099},{"date":"2022-03-14","fuel":"gasoline","grade":"midgrade","price_premium":0.45},{"date":"2022-03-14","fuel":"gasoline","grade":"premium","price_premium":0.723},{"date":"2022-03-21","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2022-03-21","fuel":"gasoline","grade":"midgrade","price_premium":0.48},{"date":"2022-03-21","fuel":"gasoline","grade":"premium","price_premium":0.753},{"date":"2022-03-28","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2022-03-28","fuel":"gasoline","grade":"midgrade","price_premium":0.483},{"date":"2022-03-28","fuel":"gasoline","grade":"premium","price_premium":0.754},{"date":"2022-04-04","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2022-04-04","fuel":"gasoline","grade":"midgrade","price_premium":0.489},{"date":"2022-04-04","fuel":"gasoline","grade":"premium","price_premium":0.761},{"date":"2022-04-11","fuel":"gasoline","grade":"all","price_premium":0.105},{"date":"2022-04-11","fuel":"gasoline","grade":"midgrade","price_premium":0.496},{"date":"2022-04-11","fuel":"gasoline","grade":"premium","price_premium":0.763},{"date":"2022-04-18","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2022-04-18","fuel":"gasoline","grade":"midgrade","price_premium":0.491},{"date":"2022-04-18","fuel":"gasoline","grade":"premium","price_premium":0.765},{"date":"2022-04-25","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2022-04-25","fuel":"gasoline","grade":"midgrade","price_premium":0.48},{"date":"2022-04-25","fuel":"gasoline","grade":"premium","price_premium":0.762},{"date":"2022-05-02","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2022-05-02","fuel":"gasoline","grade":"midgrade","price_premium":0.475},{"date":"2022-05-02","fuel":"gasoline","grade":"premium","price_premium":0.757},{"date":"2022-05-09","fuel":"gasoline","grade":"all","price_premium":0.1},{"date":"2022-05-09","fuel":"gasoline","grade":"midgrade","price_premium":0.451},{"date":"2022-05-09","fuel":"gasoline","grade":"premium","price_premium":0.742},{"date":"2022-05-16","fuel":"gasoline","grade":"all","price_premium":0.1},{"date":"2022-05-16","fuel":"gasoline","grade":"midgrade","price_premium":0.45},{"date":"2022-05-16","fuel":"gasoline","grade":"premium","price_premium":0.749},{"date":"2022-05-23","fuel":"gasoline","grade":"all","price_premium":0.101},{"date":"2022-05-23","fuel":"gasoline","grade":"midgrade","price_premium":0.447},{"date":"2022-05-23","fuel":"gasoline","grade":"premium","price_premium":0.753},{"date":"2022-05-30","fuel":"gasoline","grade":"all","price_premium":0.103},{"date":"2022-05-30","fuel":"gasoline","grade":"midgrade","price_premium":0.459},{"date":"2022-05-30","fuel":"gasoline","grade":"premium","price_premium":0.775},{"date":"2022-06-06","fuel":"gasoline","grade":"all","price_premium":0.101},{"date":"2022-06-06","fuel":"gasoline","grade":"midgrade","price_premium":0.444},{"date":"2022-06-06","fuel":"gasoline","grade":"premium","price_premium":0.759},{"date":"2022-06-13","fuel":"gasoline","grade":"all","price_premium":0.101},{"date":"2022-06-13","fuel":"gasoline","grade":"midgrade","price_premium":0.449},{"date":"2022-06-13","fuel":"gasoline","grade":"premium","price_premium":0.756},{"date":"2022-06-20","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2022-06-20","fuel":"gasoline","grade":"midgrade","price_premium":0.466},{"date":"2022-06-20","fuel":"gasoline","grade":"premium","price_premium":0.774},{"date":"2022-06-27","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2022-06-27","fuel":"gasoline","grade":"midgrade","price_premium":0.483},{"date":"2022-06-27","fuel":"gasoline","grade":"premium","price_premium":0.792},{"date":"2022-07-04","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2022-07-04","fuel":"gasoline","grade":"midgrade","price_premium":0.49},{"date":"2022-07-04","fuel":"gasoline","grade":"premium","price_premium":0.804},{"date":"2022-07-11","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2022-07-11","fuel":"gasoline","grade":"midgrade","price_premium":0.501},{"date":"2022-07-11","fuel":"gasoline","grade":"premium","price_premium":0.796},{"date":"2022-07-18","fuel":"gasoline","grade":"all","price_premium":0.109},{"date":"2022-07-18","fuel":"gasoline","grade":"midgrade","price_premium":0.504},{"date":"2022-07-18","fuel":"gasoline","grade":"premium","price_premium":0.795},{"date":"2022-07-25","fuel":"gasoline","grade":"all","price_premium":0.11},{"date":"2022-07-25","fuel":"gasoline","grade":"midgrade","price_premium":0.506},{"date":"2022-07-25","fuel":"gasoline","grade":"premium","price_premium":0.81},{"date":"2022-08-01","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2022-08-01","fuel":"gasoline","grade":"midgrade","price_premium":0.511},{"date":"2022-08-01","fuel":"gasoline","grade":"premium","price_premium":0.825},{"date":"2022-08-08","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2022-08-08","fuel":"gasoline","grade":"midgrade","price_premium":0.515},{"date":"2022-08-08","fuel":"gasoline","grade":"premium","price_premium":0.832},{"date":"2022-08-15","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2022-08-15","fuel":"gasoline","grade":"midgrade","price_premium":0.515},{"date":"2022-08-15","fuel":"gasoline","grade":"premium","price_premium":0.836},{"date":"2022-08-22","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2022-08-22","fuel":"gasoline","grade":"midgrade","price_premium":0.514},{"date":"2022-08-22","fuel":"gasoline","grade":"premium","price_premium":0.833},{"date":"2022-08-29","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2022-08-29","fuel":"gasoline","grade":"midgrade","price_premium":0.507},{"date":"2022-08-29","fuel":"gasoline","grade":"premium","price_premium":0.827},{"date":"2022-09-05","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2022-09-05","fuel":"gasoline","grade":"midgrade","price_premium":0.516},{"date":"2022-09-05","fuel":"gasoline","grade":"premium","price_premium":0.839},{"date":"2022-09-12","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2022-09-12","fuel":"gasoline","grade":"midgrade","price_premium":0.527},{"date":"2022-09-12","fuel":"gasoline","grade":"premium","price_premium":0.859},{"date":"2022-09-19","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2022-09-19","fuel":"gasoline","grade":"midgrade","price_premium":0.54},{"date":"2022-09-19","fuel":"gasoline","grade":"premium","price_premium":0.869},{"date":"2022-09-26","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2022-09-26","fuel":"gasoline","grade":"midgrade","price_premium":0.564},{"date":"2022-09-26","fuel":"gasoline","grade":"premium","price_premium":0.887},{"date":"2022-10-03","fuel":"gasoline","grade":"all","price_premium":0.127},{"date":"2022-10-03","fuel":"gasoline","grade":"midgrade","price_premium":0.589},{"date":"2022-10-03","fuel":"gasoline","grade":"premium","price_premium":0.936},{"date":"2022-10-10","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2022-10-10","fuel":"gasoline","grade":"midgrade","price_premium":0.558},{"date":"2022-10-10","fuel":"gasoline","grade":"premium","price_premium":0.899},{"date":"2022-10-17","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2022-10-17","fuel":"gasoline","grade":"midgrade","price_premium":0.554},{"date":"2022-10-17","fuel":"gasoline","grade":"premium","price_premium":0.88},{"date":"2022-10-24","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2022-10-24","fuel":"gasoline","grade":"midgrade","price_premium":0.545},{"date":"2022-10-24","fuel":"gasoline","grade":"premium","price_premium":0.87},{"date":"2022-10-31","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2022-10-31","fuel":"gasoline","grade":"midgrade","price_premium":0.52},{"date":"2022-10-31","fuel":"gasoline","grade":"premium","price_premium":0.858},{"date":"2022-11-07","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2022-11-07","fuel":"gasoline","grade":"midgrade","price_premium":0.5},{"date":"2022-11-07","fuel":"gasoline","grade":"premium","price_premium":0.845},{"date":"2022-11-14","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2022-11-14","fuel":"gasoline","grade":"midgrade","price_premium":0.508},{"date":"2022-11-14","fuel":"gasoline","grade":"premium","price_premium":0.853},{"date":"2022-11-21","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2022-11-21","fuel":"gasoline","grade":"midgrade","price_premium":0.519},{"date":"2022-11-21","fuel":"gasoline","grade":"premium","price_premium":0.859},{"date":"2022-11-28","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2022-11-28","fuel":"gasoline","grade":"midgrade","price_premium":0.519},{"date":"2022-11-28","fuel":"gasoline","grade":"premium","price_premium":0.849},{"date":"2022-12-05","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2022-12-05","fuel":"gasoline","grade":"midgrade","price_premium":0.511},{"date":"2022-12-05","fuel":"gasoline","grade":"premium","price_premium":0.842},{"date":"2022-12-12","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2022-12-12","fuel":"gasoline","grade":"midgrade","price_premium":0.509},{"date":"2022-12-12","fuel":"gasoline","grade":"premium","price_premium":0.841},{"date":"2022-12-19","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2022-12-19","fuel":"gasoline","grade":"midgrade","price_premium":0.508},{"date":"2022-12-19","fuel":"gasoline","grade":"premium","price_premium":0.84},{"date":"2022-12-26","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2022-12-26","fuel":"gasoline","grade":"midgrade","price_premium":0.502},{"date":"2022-12-26","fuel":"gasoline","grade":"premium","price_premium":0.834},{"date":"2023-01-02","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2023-01-02","fuel":"gasoline","grade":"midgrade","price_premium":0.477},{"date":"2023-01-02","fuel":"gasoline","grade":"premium","price_premium":0.805},{"date":"2023-01-09","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2023-01-09","fuel":"gasoline","grade":"midgrade","price_premium":0.468},{"date":"2023-01-09","fuel":"gasoline","grade":"premium","price_premium":0.796},{"date":"2023-01-16","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2023-01-16","fuel":"gasoline","grade":"midgrade","price_premium":0.472},{"date":"2023-01-16","fuel":"gasoline","grade":"premium","price_premium":0.786},{"date":"2023-01-23","fuel":"gasoline","grade":"all","price_premium":0.104},{"date":"2023-01-23","fuel":"gasoline","grade":"midgrade","price_premium":0.465},{"date":"2023-01-23","fuel":"gasoline","grade":"premium","price_premium":0.774},{"date":"2023-01-30","fuel":"gasoline","grade":"all","price_premium":0.105},{"date":"2023-01-30","fuel":"gasoline","grade":"midgrade","price_premium":0.465},{"date":"2023-01-30","fuel":"gasoline","grade":"premium","price_premium":0.781},{"date":"2023-02-06","fuel":"gasoline","grade":"all","price_premium":0.108},{"date":"2023-02-06","fuel":"gasoline","grade":"midgrade","price_premium":0.487},{"date":"2023-02-06","fuel":"gasoline","grade":"premium","price_premium":0.802},{"date":"2023-02-13","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2023-02-13","fuel":"gasoline","grade":"midgrade","price_premium":0.512},{"date":"2023-02-13","fuel":"gasoline","grade":"premium","price_premium":0.822},{"date":"2023-02-20","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2023-02-20","fuel":"gasoline","grade":"midgrade","price_premium":0.529},{"date":"2023-02-20","fuel":"gasoline","grade":"premium","price_premium":0.836},{"date":"2023-02-27","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2023-02-27","fuel":"gasoline","grade":"midgrade","price_premium":0.532},{"date":"2023-02-27","fuel":"gasoline","grade":"premium","price_premium":0.847},{"date":"2023-03-06","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2023-03-06","fuel":"gasoline","grade":"midgrade","price_premium":0.527},{"date":"2023-03-06","fuel":"gasoline","grade":"premium","price_premium":0.85},{"date":"2023-03-13","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2023-03-13","fuel":"gasoline","grade":"midgrade","price_premium":0.514},{"date":"2023-03-13","fuel":"gasoline","grade":"premium","price_premium":0.828},{"date":"2023-03-20","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2023-03-20","fuel":"gasoline","grade":"midgrade","price_premium":0.513},{"date":"2023-03-20","fuel":"gasoline","grade":"premium","price_premium":0.825},{"date":"2023-03-27","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2023-03-27","fuel":"gasoline","grade":"midgrade","price_premium":0.513},{"date":"2023-03-27","fuel":"gasoline","grade":"premium","price_premium":0.826},{"date":"2023-04-03","fuel":"gasoline","grade":"all","price_premium":0.109},{"date":"2023-04-03","fuel":"gasoline","grade":"midgrade","price_premium":0.491},{"date":"2023-04-03","fuel":"gasoline","grade":"premium","price_premium":0.808},{"date":"2023-04-10","fuel":"gasoline","grade":"all","price_premium":0.107},{"date":"2023-04-10","fuel":"gasoline","grade":"midgrade","price_premium":0.473},{"date":"2023-04-10","fuel":"gasoline","grade":"premium","price_premium":0.795},{"date":"2023-04-17","fuel":"gasoline","grade":"all","price_premium":0.106},{"date":"2023-04-17","fuel":"gasoline","grade":"midgrade","price_premium":0.471},{"date":"2023-04-17","fuel":"gasoline","grade":"premium","price_premium":0.795},{"date":"2023-04-24","fuel":"gasoline","grade":"all","price_premium":0.109},{"date":"2023-04-24","fuel":"gasoline","grade":"midgrade","price_premium":0.486},{"date":"2023-04-24","fuel":"gasoline","grade":"premium","price_premium":0.813},{"date":"2023-05-01","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2023-05-01","fuel":"gasoline","grade":"midgrade","price_premium":0.494},{"date":"2023-05-01","fuel":"gasoline","grade":"premium","price_premium":0.824},{"date":"2023-05-08","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2023-05-08","fuel":"gasoline","grade":"midgrade","price_premium":0.5},{"date":"2023-05-08","fuel":"gasoline","grade":"premium","price_premium":0.829},{"date":"2023-05-15","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2023-05-15","fuel":"gasoline","grade":"midgrade","price_premium":0.495},{"date":"2023-05-15","fuel":"gasoline","grade":"premium","price_premium":0.823},{"date":"2023-05-22","fuel":"gasoline","grade":"all","price_premium":0.111},{"date":"2023-05-22","fuel":"gasoline","grade":"midgrade","price_premium":0.495},{"date":"2023-05-22","fuel":"gasoline","grade":"premium","price_premium":0.827},{"date":"2023-05-29","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2023-05-29","fuel":"gasoline","grade":"midgrade","price_premium":0.501},{"date":"2023-05-29","fuel":"gasoline","grade":"premium","price_premium":0.835},{"date":"2023-06-05","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2023-06-05","fuel":"gasoline","grade":"midgrade","price_premium":0.51},{"date":"2023-06-05","fuel":"gasoline","grade":"premium","price_premium":0.843},{"date":"2023-06-12","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2023-06-12","fuel":"gasoline","grade":"midgrade","price_premium":0.51},{"date":"2023-06-12","fuel":"gasoline","grade":"premium","price_premium":0.833},{"date":"2023-06-19","fuel":"gasoline","grade":"all","price_premium":0.113},{"date":"2023-06-19","fuel":"gasoline","grade":"midgrade","price_premium":0.514},{"date":"2023-06-19","fuel":"gasoline","grade":"premium","price_premium":0.837},{"date":"2023-06-26","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2023-06-26","fuel":"gasoline","grade":"midgrade","price_premium":0.518},{"date":"2023-06-26","fuel":"gasoline","grade":"premium","price_premium":0.839},{"date":"2023-07-03","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2023-07-03","fuel":"gasoline","grade":"midgrade","price_premium":0.527},{"date":"2023-07-03","fuel":"gasoline","grade":"premium","price_premium":0.852},{"date":"2023-07-10","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2023-07-10","fuel":"gasoline","grade":"midgrade","price_premium":0.535},{"date":"2023-07-10","fuel":"gasoline","grade":"premium","price_premium":0.859},{"date":"2023-07-17","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2023-07-17","fuel":"gasoline","grade":"midgrade","price_premium":0.528},{"date":"2023-07-17","fuel":"gasoline","grade":"premium","price_premium":0.853},{"date":"2023-07-24","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2023-07-24","fuel":"gasoline","grade":"midgrade","price_premium":0.522},{"date":"2023-07-24","fuel":"gasoline","grade":"premium","price_premium":0.847},{"date":"2023-07-31","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2023-07-31","fuel":"gasoline","grade":"midgrade","price_premium":0.506},{"date":"2023-07-31","fuel":"gasoline","grade":"premium","price_premium":0.825},{"date":"2023-08-07","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2023-08-07","fuel":"gasoline","grade":"midgrade","price_premium":0.504},{"date":"2023-08-07","fuel":"gasoline","grade":"premium","price_premium":0.827},{"date":"2023-08-14","fuel":"gasoline","grade":"all","price_premium":0.112},{"date":"2023-08-14","fuel":"gasoline","grade":"midgrade","price_premium":0.503},{"date":"2023-08-14","fuel":"gasoline","grade":"premium","price_premium":0.833},{"date":"2023-08-21","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2023-08-21","fuel":"gasoline","grade":"midgrade","price_premium":0.525},{"date":"2023-08-21","fuel":"gasoline","grade":"premium","price_premium":0.849},{"date":"2023-08-28","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2023-08-28","fuel":"gasoline","grade":"midgrade","price_premium":0.536},{"date":"2023-08-28","fuel":"gasoline","grade":"premium","price_premium":0.87},{"date":"2023-09-04","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2023-09-04","fuel":"gasoline","grade":"midgrade","price_premium":0.54},{"date":"2023-09-04","fuel":"gasoline","grade":"premium","price_premium":0.865},{"date":"2023-09-11","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2023-09-11","fuel":"gasoline","grade":"midgrade","price_premium":0.545},{"date":"2023-09-11","fuel":"gasoline","grade":"premium","price_premium":0.872},{"date":"2023-09-18","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2023-09-18","fuel":"gasoline","grade":"midgrade","price_premium":0.568},{"date":"2023-09-18","fuel":"gasoline","grade":"premium","price_premium":0.897},{"date":"2023-09-25","fuel":"gasoline","grade":"all","price_premium":0.126},{"date":"2023-09-25","fuel":"gasoline","grade":"midgrade","price_premium":0.586},{"date":"2023-09-25","fuel":"gasoline","grade":"premium","price_premium":0.921},{"date":"2023-10-02","fuel":"gasoline","grade":"all","price_premium":0.132},{"date":"2023-10-02","fuel":"gasoline","grade":"midgrade","price_premium":0.616},{"date":"2023-10-02","fuel":"gasoline","grade":"premium","price_premium":0.961},{"date":"2023-10-09","fuel":"gasoline","grade":"all","price_premium":0.13},{"date":"2023-10-09","fuel":"gasoline","grade":"midgrade","price_premium":0.609},{"date":"2023-10-09","fuel":"gasoline","grade":"premium","price_premium":0.943},{"date":"2023-10-16","fuel":"gasoline","grade":"all","price_premium":0.13},{"date":"2023-10-16","fuel":"gasoline","grade":"midgrade","price_premium":0.601},{"date":"2023-10-16","fuel":"gasoline","grade":"premium","price_premium":0.946},{"date":"2023-10-23","fuel":"gasoline","grade":"all","price_premium":0.127},{"date":"2023-10-23","fuel":"gasoline","grade":"midgrade","price_premium":0.584},{"date":"2023-10-23","fuel":"gasoline","grade":"premium","price_premium":0.932},{"date":"2023-10-30","fuel":"gasoline","grade":"all","price_premium":0.127},{"date":"2023-10-30","fuel":"gasoline","grade":"midgrade","price_premium":0.58},{"date":"2023-10-30","fuel":"gasoline","grade":"premium","price_premium":0.927},{"date":"2023-11-06","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2023-11-06","fuel":"gasoline","grade":"midgrade","price_premium":0.566},{"date":"2023-11-06","fuel":"gasoline","grade":"premium","price_premium":0.916},{"date":"2023-11-13","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2023-11-13","fuel":"gasoline","grade":"midgrade","price_premium":0.559},{"date":"2023-11-13","fuel":"gasoline","grade":"premium","price_premium":0.913},{"date":"2023-11-20","fuel":"gasoline","grade":"all","price_premium":0.125},{"date":"2023-11-20","fuel":"gasoline","grade":"midgrade","price_premium":0.561},{"date":"2023-11-20","fuel":"gasoline","grade":"premium","price_premium":0.92},{"date":"2023-11-27","fuel":"gasoline","grade":"all","price_premium":0.125},{"date":"2023-11-27","fuel":"gasoline","grade":"midgrade","price_premium":0.563},{"date":"2023-11-27","fuel":"gasoline","grade":"premium","price_premium":0.919},{"date":"2023-12-04","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2023-12-04","fuel":"gasoline","grade":"midgrade","price_premium":0.56},{"date":"2023-12-04","fuel":"gasoline","grade":"premium","price_premium":0.907},{"date":"2023-12-11","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2023-12-11","fuel":"gasoline","grade":"midgrade","price_premium":0.546},{"date":"2023-12-11","fuel":"gasoline","grade":"premium","price_premium":0.906},{"date":"2023-12-18","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2023-12-18","fuel":"gasoline","grade":"midgrade","price_premium":0.549},{"date":"2023-12-18","fuel":"gasoline","grade":"premium","price_premium":0.904},{"date":"2023-12-25","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2023-12-25","fuel":"gasoline","grade":"midgrade","price_premium":0.547},{"date":"2023-12-25","fuel":"gasoline","grade":"premium","price_premium":0.898},{"date":"2024-01-01","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2024-01-01","fuel":"gasoline","grade":"midgrade","price_premium":0.557},{"date":"2024-01-01","fuel":"gasoline","grade":"premium","price_premium":0.911},{"date":"2024-01-08","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2024-01-08","fuel":"gasoline","grade":"midgrade","price_premium":0.559},{"date":"2024-01-08","fuel":"gasoline","grade":"premium","price_premium":0.91},{"date":"2024-01-15","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2024-01-15","fuel":"gasoline","grade":"midgrade","price_premium":0.541},{"date":"2024-01-15","fuel":"gasoline","grade":"premium","price_premium":0.889},{"date":"2024-01-22","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2024-01-22","fuel":"gasoline","grade":"midgrade","price_premium":0.529},{"date":"2024-01-22","fuel":"gasoline","grade":"premium","price_premium":0.88},{"date":"2024-01-29","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2024-01-29","fuel":"gasoline","grade":"midgrade","price_premium":0.531},{"date":"2024-01-29","fuel":"gasoline","grade":"premium","price_premium":0.876},{"date":"2024-02-05","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2024-02-05","fuel":"gasoline","grade":"midgrade","price_premium":0.527},{"date":"2024-02-05","fuel":"gasoline","grade":"premium","price_premium":0.873},{"date":"2024-02-12","fuel":"gasoline","grade":"all","price_premium":0.117},{"date":"2024-02-12","fuel":"gasoline","grade":"midgrade","price_premium":0.515},{"date":"2024-02-12","fuel":"gasoline","grade":"premium","price_premium":0.867},{"date":"2024-02-19","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-02-19","fuel":"gasoline","grade":"midgrade","price_premium":0.513},{"date":"2024-02-19","fuel":"gasoline","grade":"premium","price_premium":0.859},{"date":"2024-02-26","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-02-26","fuel":"gasoline","grade":"midgrade","price_premium":0.514},{"date":"2024-02-26","fuel":"gasoline","grade":"premium","price_premium":0.861},{"date":"2024-03-04","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-03-04","fuel":"gasoline","grade":"midgrade","price_premium":0.516},{"date":"2024-03-04","fuel":"gasoline","grade":"premium","price_premium":0.864},{"date":"2024-03-11","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-03-11","fuel":"gasoline","grade":"midgrade","price_premium":0.513},{"date":"2024-03-11","fuel":"gasoline","grade":"premium","price_premium":0.864},{"date":"2024-03-18","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-03-18","fuel":"gasoline","grade":"midgrade","price_premium":0.51},{"date":"2024-03-18","fuel":"gasoline","grade":"premium","price_premium":0.857},{"date":"2024-03-25","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-03-25","fuel":"gasoline","grade":"midgrade","price_premium":0.51},{"date":"2024-03-25","fuel":"gasoline","grade":"premium","price_premium":0.858},{"date":"2024-04-01","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2024-04-01","fuel":"gasoline","grade":"midgrade","price_premium":0.524},{"date":"2024-04-01","fuel":"gasoline","grade":"premium","price_premium":0.876},{"date":"2024-04-08","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2024-04-08","fuel":"gasoline","grade":"midgrade","price_premium":0.533},{"date":"2024-04-08","fuel":"gasoline","grade":"premium","price_premium":0.894},{"date":"2024-04-15","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2024-04-15","fuel":"gasoline","grade":"midgrade","price_premium":0.543},{"date":"2024-04-15","fuel":"gasoline","grade":"premium","price_premium":0.908},{"date":"2024-04-22","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2024-04-22","fuel":"gasoline","grade":"midgrade","price_premium":0.543},{"date":"2024-04-22","fuel":"gasoline","grade":"premium","price_premium":0.906},{"date":"2024-04-29","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2024-04-29","fuel":"gasoline","grade":"midgrade","price_premium":0.542},{"date":"2024-04-29","fuel":"gasoline","grade":"premium","price_premium":0.913},{"date":"2024-05-06","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2024-05-06","fuel":"gasoline","grade":"midgrade","price_premium":0.551},{"date":"2024-05-06","fuel":"gasoline","grade":"premium","price_premium":0.907},{"date":"2024-05-13","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2024-05-13","fuel":"gasoline","grade":"midgrade","price_premium":0.542},{"date":"2024-05-13","fuel":"gasoline","grade":"premium","price_premium":0.905},{"date":"2024-05-20","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-05-20","fuel":"gasoline","grade":"midgrade","price_premium":0.542},{"date":"2024-05-20","fuel":"gasoline","grade":"premium","price_premium":0.901},{"date":"2024-05-27","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2024-05-27","fuel":"gasoline","grade":"midgrade","price_premium":0.535},{"date":"2024-05-27","fuel":"gasoline","grade":"premium","price_premium":0.902},{"date":"2024-06-03","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-06-03","fuel":"gasoline","grade":"midgrade","price_premium":0.543},{"date":"2024-06-03","fuel":"gasoline","grade":"premium","price_premium":0.901},{"date":"2024-06-10","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-06-10","fuel":"gasoline","grade":"midgrade","price_premium":0.541},{"date":"2024-06-10","fuel":"gasoline","grade":"premium","price_premium":0.902},{"date":"2024-06-17","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2024-06-17","fuel":"gasoline","grade":"midgrade","price_premium":0.541},{"date":"2024-06-17","fuel":"gasoline","grade":"premium","price_premium":0.891},{"date":"2024-06-24","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2024-06-24","fuel":"gasoline","grade":"midgrade","price_premium":0.527},{"date":"2024-06-24","fuel":"gasoline","grade":"premium","price_premium":0.881},{"date":"2024-07-01","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-07-01","fuel":"gasoline","grade":"midgrade","price_premium":0.511},{"date":"2024-07-01","fuel":"gasoline","grade":"premium","price_premium":0.865},{"date":"2024-07-08","fuel":"gasoline","grade":"all","price_premium":0.119},{"date":"2024-07-08","fuel":"gasoline","grade":"midgrade","price_premium":0.524},{"date":"2024-07-08","fuel":"gasoline","grade":"premium","price_premium":0.878},{"date":"2024-07-15","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2024-07-15","fuel":"gasoline","grade":"midgrade","price_premium":0.518},{"date":"2024-07-15","fuel":"gasoline","grade":"premium","price_premium":0.875},{"date":"2024-07-22","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-07-22","fuel":"gasoline","grade":"midgrade","price_premium":0.503},{"date":"2024-07-22","fuel":"gasoline","grade":"premium","price_premium":0.86},{"date":"2024-07-29","fuel":"gasoline","grade":"all","price_premium":0.114},{"date":"2024-07-29","fuel":"gasoline","grade":"midgrade","price_premium":0.498},{"date":"2024-07-29","fuel":"gasoline","grade":"premium","price_premium":0.849},{"date":"2024-08-05","fuel":"gasoline","grade":"all","price_premium":0.115},{"date":"2024-08-05","fuel":"gasoline","grade":"midgrade","price_premium":0.507},{"date":"2024-08-05","fuel":"gasoline","grade":"premium","price_premium":0.854},{"date":"2024-08-12","fuel":"gasoline","grade":"all","price_premium":0.116},{"date":"2024-08-12","fuel":"gasoline","grade":"midgrade","price_premium":0.512},{"date":"2024-08-12","fuel":"gasoline","grade":"premium","price_premium":0.86},{"date":"2024-08-19","fuel":"gasoline","grade":"all","price_premium":0.118},{"date":"2024-08-19","fuel":"gasoline","grade":"midgrade","price_premium":0.524},{"date":"2024-08-19","fuel":"gasoline","grade":"premium","price_premium":0.87},{"date":"2024-08-26","fuel":"gasoline","grade":"all","price_premium":0.12},{"date":"2024-08-26","fuel":"gasoline","grade":"midgrade","price_premium":0.529},{"date":"2024-08-26","fuel":"gasoline","grade":"premium","price_premium":0.888},{"date":"2024-09-02","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-09-02","fuel":"gasoline","grade":"midgrade","price_premium":0.546},{"date":"2024-09-02","fuel":"gasoline","grade":"premium","price_premium":0.907},{"date":"2024-09-09","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2024-09-09","fuel":"gasoline","grade":"midgrade","price_premium":0.555},{"date":"2024-09-09","fuel":"gasoline","grade":"premium","price_premium":0.917},{"date":"2024-09-16","fuel":"gasoline","grade":"all","price_premium":0.127},{"date":"2024-09-16","fuel":"gasoline","grade":"midgrade","price_premium":0.575},{"date":"2024-09-16","fuel":"gasoline","grade":"premium","price_premium":0.939},{"date":"2024-09-23","fuel":"gasoline","grade":"all","price_premium":0.126},{"date":"2024-09-23","fuel":"gasoline","grade":"midgrade","price_premium":0.566},{"date":"2024-09-23","fuel":"gasoline","grade":"premium","price_premium":0.923},{"date":"2024-09-30","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2024-09-30","fuel":"gasoline","grade":"midgrade","price_premium":0.559},{"date":"2024-09-30","fuel":"gasoline","grade":"premium","price_premium":0.915},{"date":"2024-10-07","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2024-10-07","fuel":"gasoline","grade":"midgrade","price_premium":0.556},{"date":"2024-10-07","fuel":"gasoline","grade":"premium","price_premium":0.913},{"date":"2024-10-14","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2024-10-14","fuel":"gasoline","grade":"midgrade","price_premium":0.548},{"date":"2024-10-14","fuel":"gasoline","grade":"premium","price_premium":0.906},{"date":"2024-10-21","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2024-10-21","fuel":"gasoline","grade":"midgrade","price_premium":0.556},{"date":"2024-10-21","fuel":"gasoline","grade":"premium","price_premium":0.914},{"date":"2024-10-28","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2024-10-28","fuel":"gasoline","grade":"midgrade","price_premium":0.557},{"date":"2024-10-28","fuel":"gasoline","grade":"premium","price_premium":0.915},{"date":"2024-11-04","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-11-04","fuel":"gasoline","grade":"midgrade","price_premium":0.547},{"date":"2024-11-04","fuel":"gasoline","grade":"premium","price_premium":0.908},{"date":"2024-11-11","fuel":"gasoline","grade":"all","price_premium":0.124},{"date":"2024-11-11","fuel":"gasoline","grade":"midgrade","price_premium":0.561},{"date":"2024-11-11","fuel":"gasoline","grade":"premium","price_premium":0.912},{"date":"2024-11-18","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-11-18","fuel":"gasoline","grade":"midgrade","price_premium":0.547},{"date":"2024-11-18","fuel":"gasoline","grade":"premium","price_premium":0.9},{"date":"2024-11-25","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-11-25","fuel":"gasoline","grade":"midgrade","price_premium":0.542},{"date":"2024-11-25","fuel":"gasoline","grade":"premium","price_premium":0.906},{"date":"2024-12-02","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-12-02","fuel":"gasoline","grade":"midgrade","price_premium":0.54},{"date":"2024-12-02","fuel":"gasoline","grade":"premium","price_premium":0.903},{"date":"2024-12-09","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2024-12-09","fuel":"gasoline","grade":"midgrade","price_premium":0.55},{"date":"2024-12-09","fuel":"gasoline","grade":"premium","price_premium":0.906},{"date":"2024-12-16","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2024-12-16","fuel":"gasoline","grade":"midgrade","price_premium":0.54},{"date":"2024-12-16","fuel":"gasoline","grade":"premium","price_premium":0.895},{"date":"2024-12-23","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2024-12-23","fuel":"gasoline","grade":"midgrade","price_premium":0.54},{"date":"2024-12-23","fuel":"gasoline","grade":"premium","price_premium":0.891},{"date":"2024-12-30","fuel":"gasoline","grade":"all","price_premium":0.122},{"date":"2024-12-30","fuel":"gasoline","grade":"midgrade","price_premium":0.548},{"date":"2024-12-30","fuel":"gasoline","grade":"premium","price_premium":0.901},{"date":"2025-01-06","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2025-01-06","fuel":"gasoline","grade":"midgrade","price_premium":0.54},{"date":"2025-01-06","fuel":"gasoline","grade":"premium","price_premium":0.888},{"date":"2025-01-13","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2025-01-13","fuel":"gasoline","grade":"midgrade","price_premium":0.542},{"date":"2025-01-13","fuel":"gasoline","grade":"premium","price_premium":0.896},{"date":"2025-01-20","fuel":"gasoline","grade":"all","price_premium":0.12},{"date":"2025-01-20","fuel":"gasoline","grade":"midgrade","price_premium":0.533},{"date":"2025-01-20","fuel":"gasoline","grade":"premium","price_premium":0.889},{"date":"2025-01-27","fuel":"gasoline","grade":"all","price_premium":0.121},{"date":"2025-01-27","fuel":"gasoline","grade":"midgrade","price_premium":0.541},{"date":"2025-01-27","fuel":"gasoline","grade":"premium","price_premium":0.896},{"date":"2025-02-03","fuel":"gasoline","grade":"all","price_premium":0.123},{"date":"2025-02-03","fuel":"gasoline","grade":"midgrade","price_premium":0.551},{"date":"2025-02-03","fuel":"gasoline","grade":"premium","price_premium":0.908},{"date":"2025-02-10","fuel":"gasoline","grade":"all","price_premium":0.125},{"date":"2025-02-10","fuel":"gasoline","grade":"midgrade","price_premium":0.557},{"date":"2025-02-10","fuel":"gasoline","grade":"premium","price_premium":0.922},{"date":"2025-02-17","fuel":"gasoline","grade":"all","price_premium":0.128},{"date":"2025-02-17","fuel":"gasoline","grade":"midgrade","price_premium":0.575},{"date":"2025-02-17","fuel":"gasoline","grade":"premium","price_premium":0.94},{"date":"2025-02-24","fuel":"gasoline","grade":"all","price_premium":0.13},{"date":"2025-02-24","fuel":"gasoline","grade":"midgrade","price_premium":0.581},{"date":"2025-02-24","fuel":"gasoline","grade":"premium","price_premium":0.95},{"date":"2025-03-03","fuel":"gasoline","grade":"all","price_premium":0.128},{"date":"2025-03-03","fuel":"gasoline","grade":"midgrade","price_premium":0.576},{"date":"2025-03-03","fuel":"gasoline","grade":"premium","price_premium":0.944},{"date":"2025-03-10","fuel":"gasoline","grade":"all","price_premium":0.128},{"date":"2025-03-10","fuel":"gasoline","grade":"midgrade","price_premium":0.571},{"date":"2025-03-10","fuel":"gasoline","grade":"premium","price_premium":0.936},{"date":"2025-03-17","fuel":"gasoline","grade":"all","price_premium":0.126},{"date":"2025-03-17","fuel":"gasoline","grade":"midgrade","price_premium":0.569},{"date":"2025-03-17","fuel":"gasoline","grade":"premium","price_premium":0.931},{"date":"2025-03-24","fuel":"gasoline","grade":"all","price_premium":0.125},{"date":"2025-03-24","fuel":"gasoline","grade":"midgrade","price_premium":0.559},{"date":"2025-03-24","fuel":"gasoline","grade":"premium","price_premium":0.917},{"date":"2025-03-31","fuel":"gasoline","grade":"all","price_premium":0.126},{"date":"2025-03-31","fuel":"gasoline","grade":"midgrade","price_premium":0.568},{"date":"2025-03-31","fuel":"gasoline","grade":"premium","price_premium":0.931},{"date":"2025-04-07","fuel":"gasoline","grade":"all","price_premium":0.127},{"date":"2025-04-07","fuel":"gasoline","grade":"midgrade","price_premium":0.572},{"date":"2025-04-07","fuel":"gasoline","grade":"premium","price_premium":0.931},{"date":"2025-04-14","fuel":"gasoline","grade":"all","price_premium":0.127},{"date":"2025-04-14","fuel":"gasoline","grade":"midgrade","price_premium":0.575},{"date":"2025-04-14","fuel":"gasoline","grade":"premium","price_premium":0.935},{"date":"2025-04-21","fuel":"gasoline","grade":"all","price_premium":0.127},{"date":"2025-04-21","fuel":"gasoline","grade":"midgrade","price_premium":0.577},{"date":"2025-04-21","fuel":"gasoline","grade":"premium","price_premium":0.933},{"date":"2025-04-28","fuel":"gasoline","grade":"all","price_premium":0.128},{"date":"2025-04-28","fuel":"gasoline","grade":"midgrade","price_premium":0.58},{"date":"2025-04-28","fuel":"gasoline","grade":"premium","price_premium":0.938},{"date":"2025-05-05","fuel":"gasoline","grade":"all","price_premium":0.126},{"date":"2025-05-05","fuel":"gasoline","grade":"midgrade","price_premium":0.568},{"date":"2025-05-05","fuel":"gasoline","grade":"premium","price_premium":0.925},{"date":"2025-05-12","fuel":"gasoline","grade":"all","price_premium":0.129},{"date":"2025-05-12","fuel":"gasoline","grade":"midgrade","price_premium":0.583},{"date":"2025-05-12","fuel":"gasoline","grade":"premium","price_premium":0.948},{"date":"2025-05-19","fuel":"gasoline","grade":"all","price_premium":0.129},{"date":"2025-05-19","fuel":"gasoline","grade":"midgrade","price_premium":0.583},{"date":"2025-05-19","fuel":"gasoline","grade":"premium","price_premium":0.943},{"date":"2025-05-26","fuel":"gasoline","grade":"all","price_premium":0.128},{"date":"2025-05-26","fuel":"gasoline","grade":"midgrade","price_premium":0.58},{"date":"2025-05-26","fuel":"gasoline","grade":"premium","price_premium":0.942},{"date":"2025-06-02","fuel":"gasoline","grade":"all","price_premium":0.129},{"date":"2025-06-02","fuel":"gasoline","grade":"midgrade","price_premium":0.585},{"date":"2025-06-02","fuel":"gasoline","grade":"premium","price_premium":0.942},{"date":"2025-06-09","fuel":"gasoline","grade":"all","price_premium":0.127},{"date":"2025-06-09","fuel":"gasoline","grade":"midgrade","price_premium":0.579},{"date":"2025-06-09","fuel":"gasoline","grade":"premium","price_premium":0.929},{"date":"2025-06-16","fuel":"gasoline","grade":"all","price_premium":0.126},{"date":"2025-06-16","fuel":"gasoline","grade":"midgrade","price_premium":0.572},{"date":"2025-06-16","fuel":"gasoline","grade":"premium","price_premium":0.923},{"date":"2025-06-23","fuel":"gasoline","grade":"all","price_premium":0.125},{"date":"2025-06-23","fuel":"gasoline","grade":"midgrade","price_premium":0.562},{"date":"2025-06-23","fuel":"gasoline","grade":"premium","price_premium":0.915}],"metadata":{"date":{"type":"date","semanticType":"Date"},"fuel":{"type":"string","semanticType":"String"},"grade":{"type":"string","semanticType":"String","levels":["all","midgrade","premium"]},"price_premium":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas):\n # Filter for 'all' formulation to avoid duplicates and focus on overall prices\n df_filtered = df_gas[df_gas['formulation'] == 'all'].copy()\n \n # Get regular grade prices as baseline\n df_regular = df_filtered[df_filtered['grade'] == 'regular'][['date', 'fuel', 'price']].rename(columns={'price': 'regular_price'})\n \n # Get all non-regular grades\n df_premium_grades = df_filtered[df_filtered['grade'] != 'regular'][['date', 'fuel', 'grade', 'price']].copy()\n \n # Merge to calculate premium\n df_merged = df_premium_grades.merge(df_regular, on=['date', 'fuel'], how='left')\n \n # Calculate price premium\n df_merged['price_premium'] = df_merged['price'] - df_merged['regular_price']\n \n # Select output fields\n transformed_df = df_merged[['date', 'fuel', 'grade', 'price_premium']].copy()\n \n # Remove rows with missing premium values\n transformed_df = transformed_df.dropna(subset=['price_premium'])\n \n return transformed_df\n","source":["weekly_gas_prices"],"dialog":[{"content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhich **fuel grade** commands the highest **price premium** and how has this premium evolved?","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Analyze which fuel grade commands the highest price premium compared to regular grade, and visualize how this premium has evolved over time.\",\n \"display_instruction\": \"Compare **price premium** across **fuel grades** over time\",\n \"recommendation\": \"Calculate the price premium for each fuel grade by comparing it to the regular grade baseline for the same date and fuel type. This will show both the absolute premium values and their trends over time.\",\n \"output_fields\": [\"date\", \"fuel\", \"grade\", \"price_premium\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"price_premium\",\n \"color\": \"grade\",\n \"facet\": \"fuel\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas):\n # Filter for 'all' formulation to avoid duplicates and focus on overall prices\n df_filtered = df_gas[df_gas['formulation'] == 'all'].copy()\n \n # Get regular grade prices as baseline\n df_regular = df_filtered[df_filtered['grade'] == 'regular'][['date', 'fuel', 'price']].rename(columns={'price': 'regular_price'})\n \n # Get all non-regular grades\n df_premium_grades = df_filtered[df_filtered['grade'] != 'regular'][['date', 'fuel', 'grade', 'price']].copy()\n \n # Merge to calculate premium\n df_merged = df_premium_grades.merge(df_regular, on=['date', 'fuel'], how='left')\n \n # Calculate price premium\n df_merged['price_premium'] = df_merged['price'] - df_merged['regular_price']\n \n # Select output fields\n transformed_df = df_merged[['date', 'fuel', 'grade', 'price_premium']].copy()\n \n # Remove rows with missing premium values\n transformed_df = transformed_df.dropna(subset=['price_premium'])\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"weekly_gas_prices","sourceTableIds":["weekly_gas_prices"],"instruction":"Which **fuel grade** commands the highest **price premium** and how has this premium evolved?","displayInstruction":"Compare **price premium** across **fuel grades** over time","chart":{"id":"chart-1760744911829","chartType":"Auto","encodingMap":{},"tableRef":"weekly_gas_prices","saved":false,"source":"trigger","unread":true},"resultTableId":"table-906894"},"explanation":{"agent":"CodeExplanationAgent","code":"- Filter the dataset to only include entries where **formulation** is `'all'` to avoid duplicate records and focus on overall price data\n- Extract **regular grade** prices as a baseline, creating a reference table with **date**, **fuel**, and **regular_price**\n- Extract all **non-regular grades** (such as **premium**, **midgrade**, etc.) with their corresponding **date**, **fuel**, **grade**, and **price**\n- Merge the non-regular grades with the regular grade baseline by matching on **date** and **fuel** type\n- Calculate the **price_premium** for each non-regular grade by subtracting the **regular_price** from the grade's **price**\n- Select the final output fields: **date**, **fuel**, **grade**, and **price_premium**\n- Remove any rows with missing **price_premium** values to ensure data completeness","concepts":[{"explanation":"The additional cost of a specific fuel grade compared to regular grade fuel. Calculated as: \\( \\text{price\\_premium} = \\text{price}_{\\text{grade}} - \\text{price}_{\\text{regular}} \\). This metric indicates how much more consumers pay for higher-quality fuel grades (premium, midgrade, etc.) relative to the baseline regular grade on the same date and for the same fuel type.","field":"price_premium"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas):\n # Filter for 'all' formulation to avoid duplicates and focus on overall prices\n df_filtered = df_gas[df_gas['formulation'] == 'all'].copy()\n \n # Get regular grade prices as baseline\n df_regular = df_filtered[df_filtered['grade'] == 'regular'][['date', 'fuel', 'price']].rename(columns={'price': 'regular_price'})\n \n # Get all non-regular grades\n df_premium_grades = df_filtered[df_filtered['grade'] != 'regular'][['date', 'fuel', 'grade', 'price']].copy()\n \n # Merge to calculate premium\n df_merged = df_premium_grades.merge(df_regular, on=['date', 'fuel'], how='left')\n \n # Calculate price premium\n df_merged['price_premium'] = df_merged['price'] - df_merged['regular_price']\n \n # Select output fields\n transformed_df = df_merged[['date', 'fuel', 'grade', 'price_premium']].copy()\n \n # Remove rows with missing premium values\n transformed_df = transformed_df.dropna(subset=['price_premium'])\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Filter the dataset to only include entries where **formulation** is `'all'` to avoid duplicate records and focus on overall price data\n- Extract **regular grade** prices as a baseline, creating a reference table with **date**, **fuel**, and **regular_price**\n- Extract all **non-regular grades** (such as **premium**, **midgrade**, etc.) with their corresponding **date**, **fuel**, **grade**, and **price**\n- Merge the non-regular grades with the regular grade baseline by matching on **date** and **fuel** type\n- Calculate the **price_premium** for each non-regular grade by subtracting the **regular_price** from the grade's **price**\n- Select the final output fields: **date**, **fuel**, **grade**, and **price_premium**\n- Remove any rows with missing **price_premium** values to ensure data completeness\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"price_premium\",\n \"explanation\": \"The additional cost of a specific fuel grade compared to regular grade fuel. Calculated as: \\\\( \\\\text{price\\\\_premium} = \\\\text{price}_{\\\\text{grade}} - \\\\text{price}_{\\\\text{regular}} \\\\). This metric indicates how much more consumers pay for higher-quality fuel grades (premium, midgrade, etc.) relative to the baseline regular grade on the same date and for the same fuel type.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-922023","displayId":"fuel-price-yoy","names":["date","fuel","current_price","yoy_price","absolute_change","percentage_change"],"rows":[{"date":"1995-03-20","fuel":"diesel","current_price":1.085,"yoy_price":1.106,"absolute_change":-0.021,"percentage_change":-1.8987341772},{"date":"1995-03-27","fuel":"diesel","current_price":1.088,"yoy_price":1.107,"absolute_change":-0.019,"percentage_change":-1.7163504968},{"date":"1995-04-03","fuel":"diesel","current_price":1.094,"yoy_price":1.109,"absolute_change":-0.015,"percentage_change":-1.3525698828},{"date":"1995-04-10","fuel":"diesel","current_price":1.101,"yoy_price":1.108,"absolute_change":-0.007,"percentage_change":-0.6317689531},{"date":"1995-04-17","fuel":"diesel","current_price":1.106,"yoy_price":1.105,"absolute_change":0.001,"percentage_change":0.0904977376},{"date":"1995-04-24","fuel":"diesel","current_price":1.115,"yoy_price":1.106,"absolute_change":0.009,"percentage_change":0.8137432188},{"date":"1995-05-01","fuel":"diesel","current_price":1.119,"yoy_price":1.104,"absolute_change":0.015,"percentage_change":1.3586956522},{"date":"1995-05-08","fuel":"diesel","current_price":1.126,"yoy_price":1.101,"absolute_change":0.025,"percentage_change":2.2706630336},{"date":"1995-05-15","fuel":"diesel","current_price":1.126,"yoy_price":1.099,"absolute_change":0.027,"percentage_change":2.4567788899},{"date":"1995-05-22","fuel":"diesel","current_price":1.124,"yoy_price":1.099,"absolute_change":0.025,"percentage_change":2.2747952684},{"date":"1995-05-29","fuel":"diesel","current_price":1.13,"yoy_price":1.098,"absolute_change":0.032,"percentage_change":2.9143897996},{"date":"1995-06-05","fuel":"diesel","current_price":1.124,"yoy_price":1.101,"absolute_change":0.023,"percentage_change":2.0890099909},{"date":"1995-06-12","fuel":"diesel","current_price":1.122,"yoy_price":1.098,"absolute_change":0.024,"percentage_change":2.1857923497},{"date":"1995-06-19","fuel":"diesel","current_price":1.117,"yoy_price":1.103,"absolute_change":0.014,"percentage_change":1.2692656392},{"date":"1995-06-26","fuel":"diesel","current_price":1.112,"yoy_price":1.108,"absolute_change":0.004,"percentage_change":0.3610108303},{"date":"1995-07-03","fuel":"diesel","current_price":1.106,"yoy_price":1.109,"absolute_change":-0.003,"percentage_change":-0.2705139766},{"date":"1995-07-10","fuel":"diesel","current_price":1.103,"yoy_price":1.11,"absolute_change":-0.007,"percentage_change":-0.6306306306},{"date":"1995-07-17","fuel":"diesel","current_price":1.099,"yoy_price":1.111,"absolute_change":-0.012,"percentage_change":-1.0801080108},{"date":"1995-07-24","fuel":"diesel","current_price":1.098,"yoy_price":1.111,"absolute_change":-0.013,"percentage_change":-1.1701170117},{"date":"1995-07-31","fuel":"diesel","current_price":1.093,"yoy_price":1.116,"absolute_change":-0.023,"percentage_change":-2.0609318996},{"date":"1995-08-07","fuel":"diesel","current_price":1.099,"yoy_price":1.127,"absolute_change":-0.028,"percentage_change":-2.4844720497},{"date":"1995-08-14","fuel":"diesel","current_price":1.106,"yoy_price":1.127,"absolute_change":-0.021,"percentage_change":-1.8633540373},{"date":"1995-08-21","fuel":"diesel","current_price":1.106,"yoy_price":1.124,"absolute_change":-0.018,"percentage_change":-1.6014234875},{"date":"1995-08-28","fuel":"diesel","current_price":1.109,"yoy_price":1.122,"absolute_change":-0.013,"percentage_change":-1.1586452763},{"date":"1995-09-04","fuel":"diesel","current_price":1.115,"yoy_price":1.126,"absolute_change":-0.011,"percentage_change":-0.9769094139},{"date":"1995-09-11","fuel":"diesel","current_price":1.119,"yoy_price":1.128,"absolute_change":-0.009,"percentage_change":-0.7978723404},{"date":"1995-09-18","fuel":"diesel","current_price":1.122,"yoy_price":1.126,"absolute_change":-0.004,"percentage_change":-0.3552397869},{"date":"1995-09-25","fuel":"diesel","current_price":1.121,"yoy_price":1.12,"absolute_change":0.001,"percentage_change":0.0892857143},{"date":"1995-10-02","fuel":"diesel","current_price":1.117,"yoy_price":1.118,"absolute_change":-0.001,"percentage_change":-0.0894454383},{"date":"1995-10-09","fuel":"diesel","current_price":1.117,"yoy_price":1.117,"absolute_change":0,"percentage_change":0},{"date":"1995-10-16","fuel":"diesel","current_price":1.117,"yoy_price":1.119,"absolute_change":-0.002,"percentage_change":-0.1787310098},{"date":"1995-10-23","fuel":"diesel","current_price":1.114,"yoy_price":1.122,"absolute_change":-0.008,"percentage_change":-0.7130124777},{"date":"1995-10-30","fuel":"diesel","current_price":1.11,"yoy_price":1.133,"absolute_change":-0.023,"percentage_change":-2.0300088261},{"date":"1995-11-06","fuel":"diesel","current_price":1.118,"yoy_price":1.133,"absolute_change":-0.015,"percentage_change":-1.3239187996},{"date":"1995-11-13","fuel":"diesel","current_price":1.118,"yoy_price":1.135,"absolute_change":-0.017,"percentage_change":-1.4977973568},{"date":"1995-11-20","fuel":"diesel","current_price":1.119,"yoy_price":1.13,"absolute_change":-0.011,"percentage_change":-0.9734513274},{"date":"1995-11-27","fuel":"diesel","current_price":1.124,"yoy_price":1.126,"absolute_change":-0.002,"percentage_change":-0.1776198934},{"date":"1995-12-04","fuel":"diesel","current_price":1.123,"yoy_price":1.123,"absolute_change":0,"percentage_change":0},{"date":"1995-12-11","fuel":"diesel","current_price":1.124,"yoy_price":1.114,"absolute_change":0.01,"percentage_change":0.8976660682},{"date":"1995-12-18","fuel":"diesel","current_price":1.13,"yoy_price":1.109,"absolute_change":0.021,"percentage_change":1.8935978359},{"date":"1995-12-25","fuel":"diesel","current_price":1.141,"yoy_price":1.106,"absolute_change":0.035,"percentage_change":3.164556962},{"date":"1996-01-01","fuel":"diesel","current_price":1.148,"yoy_price":1.104,"absolute_change":0.044,"percentage_change":3.9855072464},{"date":"1996-01-08","fuel":"diesel","current_price":1.146,"yoy_price":1.102,"absolute_change":0.044,"percentage_change":3.9927404719},{"date":"1996-01-15","fuel":"diesel","current_price":1.152,"yoy_price":1.1,"absolute_change":0.052,"percentage_change":4.7272727273},{"date":"1996-01-22","fuel":"diesel","current_price":1.144,"yoy_price":1.095,"absolute_change":0.049,"percentage_change":4.4748858447},{"date":"1996-01-29","fuel":"diesel","current_price":1.136,"yoy_price":1.09,"absolute_change":0.046,"percentage_change":4.2201834862},{"date":"1996-02-05","fuel":"diesel","current_price":1.13,"yoy_price":1.086,"absolute_change":0.044,"percentage_change":4.0515653775},{"date":"1996-02-12","fuel":"diesel","current_price":1.134,"yoy_price":1.088,"absolute_change":0.046,"percentage_change":4.2279411765},{"date":"1996-02-19","fuel":"diesel","current_price":1.151,"yoy_price":1.088,"absolute_change":0.063,"percentage_change":5.7904411765},{"date":"1996-02-26","fuel":"diesel","current_price":1.164,"yoy_price":1.089,"absolute_change":0.075,"percentage_change":6.8870523416},{"date":"1996-03-04","fuel":"diesel","current_price":1.175,"yoy_price":1.089,"absolute_change":0.086,"percentage_change":7.8971533517},{"date":"1996-03-11","fuel":"diesel","current_price":1.173,"yoy_price":1.088,"absolute_change":0.085,"percentage_change":7.8125},{"date":"1996-03-18","fuel":"diesel","current_price":1.172,"yoy_price":1.085,"absolute_change":0.087,"percentage_change":8.0184331797},{"date":"1996-03-25","fuel":"diesel","current_price":1.21,"yoy_price":1.088,"absolute_change":0.122,"percentage_change":11.2132352941},{"date":"1996-04-01","fuel":"diesel","current_price":1.222,"yoy_price":1.094,"absolute_change":0.128,"percentage_change":11.7001828154},{"date":"1996-04-08","fuel":"diesel","current_price":1.249,"yoy_price":1.101,"absolute_change":0.148,"percentage_change":13.4423251589},{"date":"1996-04-15","fuel":"diesel","current_price":1.305,"yoy_price":1.106,"absolute_change":0.199,"percentage_change":17.9927667269},{"date":"1996-04-22","fuel":"diesel","current_price":1.304,"yoy_price":1.115,"absolute_change":0.189,"percentage_change":16.9506726457},{"date":"1996-04-29","fuel":"diesel","current_price":1.285,"yoy_price":1.119,"absolute_change":0.166,"percentage_change":14.8346738159},{"date":"1996-05-06","fuel":"diesel","current_price":1.292,"yoy_price":1.126,"absolute_change":0.166,"percentage_change":14.7424511545},{"date":"1996-05-13","fuel":"diesel","current_price":1.285,"yoy_price":1.126,"absolute_change":0.159,"percentage_change":14.1207815275},{"date":"1996-05-20","fuel":"diesel","current_price":1.274,"yoy_price":1.124,"absolute_change":0.15,"percentage_change":13.3451957295},{"date":"1996-05-27","fuel":"diesel","current_price":1.254,"yoy_price":1.13,"absolute_change":0.124,"percentage_change":10.9734513274},{"date":"1996-06-03","fuel":"diesel","current_price":1.24,"yoy_price":1.124,"absolute_change":0.116,"percentage_change":10.3202846975},{"date":"1996-06-10","fuel":"diesel","current_price":1.215,"yoy_price":1.122,"absolute_change":0.093,"percentage_change":8.2887700535},{"date":"1996-06-17","fuel":"diesel","current_price":1.193,"yoy_price":1.117,"absolute_change":0.076,"percentage_change":6.8039391226},{"date":"1996-06-24","fuel":"diesel","current_price":1.179,"yoy_price":1.112,"absolute_change":0.067,"percentage_change":6.0251798561},{"date":"1996-07-01","fuel":"diesel","current_price":1.172,"yoy_price":1.106,"absolute_change":0.066,"percentage_change":5.9674502712},{"date":"1996-07-08","fuel":"diesel","current_price":1.173,"yoy_price":1.103,"absolute_change":0.07,"percentage_change":6.3463281958},{"date":"1996-07-15","fuel":"diesel","current_price":1.178,"yoy_price":1.099,"absolute_change":0.079,"percentage_change":7.1883530482},{"date":"1996-07-22","fuel":"diesel","current_price":1.184,"yoy_price":1.098,"absolute_change":0.086,"percentage_change":7.8324225865},{"date":"1996-07-29","fuel":"diesel","current_price":1.178,"yoy_price":1.093,"absolute_change":0.085,"percentage_change":7.7767612077},{"date":"1996-08-05","fuel":"diesel","current_price":1.184,"yoy_price":1.099,"absolute_change":0.085,"percentage_change":7.7343039126},{"date":"1996-08-12","fuel":"diesel","current_price":1.191,"yoy_price":1.106,"absolute_change":0.085,"percentage_change":7.6853526221},{"date":"1996-08-19","fuel":"diesel","current_price":1.206,"yoy_price":1.106,"absolute_change":0.1,"percentage_change":9.0415913201},{"date":"1996-08-26","fuel":"diesel","current_price":1.222,"yoy_price":1.109,"absolute_change":0.113,"percentage_change":10.1893597836},{"date":"1996-09-02","fuel":"diesel","current_price":1.231,"yoy_price":1.115,"absolute_change":0.116,"percentage_change":10.4035874439},{"date":"1996-09-09","fuel":"diesel","current_price":1.25,"yoy_price":1.119,"absolute_change":0.131,"percentage_change":11.7068811439},{"date":"1996-09-16","fuel":"diesel","current_price":1.276,"yoy_price":1.122,"absolute_change":0.154,"percentage_change":13.7254901961},{"date":"1996-09-23","fuel":"diesel","current_price":1.277,"yoy_price":1.121,"absolute_change":0.156,"percentage_change":13.9161462979},{"date":"1996-09-30","fuel":"diesel","current_price":1.289,"yoy_price":1.117,"absolute_change":0.172,"percentage_change":15.3983885407},{"date":"1996-10-07","fuel":"diesel","current_price":1.308,"yoy_price":1.117,"absolute_change":0.191,"percentage_change":17.0993733214},{"date":"1996-10-14","fuel":"diesel","current_price":1.326,"yoy_price":1.117,"absolute_change":0.209,"percentage_change":18.7108325873},{"date":"1996-10-21","fuel":"diesel","current_price":1.329,"yoy_price":1.114,"absolute_change":0.215,"percentage_change":19.2998204668},{"date":"1996-10-28","fuel":"diesel","current_price":1.329,"yoy_price":1.11,"absolute_change":0.219,"percentage_change":19.7297297297},{"date":"1996-11-04","fuel":"diesel","current_price":1.323,"yoy_price":1.118,"absolute_change":0.205,"percentage_change":18.3363148479},{"date":"1996-11-11","fuel":"diesel","current_price":1.316,"yoy_price":1.118,"absolute_change":0.198,"percentage_change":17.71019678},{"date":"1996-11-18","fuel":"diesel","current_price":1.324,"yoy_price":1.119,"absolute_change":0.205,"percentage_change":18.3199285076},{"date":"1996-11-25","fuel":"diesel","current_price":1.327,"yoy_price":1.124,"absolute_change":0.203,"percentage_change":18.0604982206},{"date":"1996-12-02","fuel":"diesel","current_price":1.323,"yoy_price":1.123,"absolute_change":0.2,"percentage_change":17.8094390027},{"date":"1996-12-09","fuel":"diesel","current_price":1.32,"yoy_price":1.124,"absolute_change":0.196,"percentage_change":17.4377224199},{"date":"1996-12-16","fuel":"diesel","current_price":1.307,"yoy_price":1.13,"absolute_change":0.177,"percentage_change":15.6637168142},{"date":"1996-12-23","fuel":"diesel","current_price":1.3,"yoy_price":1.141,"absolute_change":0.159,"percentage_change":13.93514461},{"date":"1996-12-30","fuel":"diesel","current_price":1.295,"yoy_price":1.148,"absolute_change":0.147,"percentage_change":12.8048780488},{"date":"1997-01-06","fuel":"diesel","current_price":1.291,"yoy_price":1.146,"absolute_change":0.145,"percentage_change":12.6527050611},{"date":"1997-01-13","fuel":"diesel","current_price":1.296,"yoy_price":1.152,"absolute_change":0.144,"percentage_change":12.5},{"date":"1997-01-20","fuel":"diesel","current_price":1.293,"yoy_price":1.144,"absolute_change":0.149,"percentage_change":13.0244755245},{"date":"1997-01-27","fuel":"diesel","current_price":1.283,"yoy_price":1.136,"absolute_change":0.147,"percentage_change":12.9401408451},{"date":"1997-02-03","fuel":"diesel","current_price":1.288,"yoy_price":1.13,"absolute_change":0.158,"percentage_change":13.982300885},{"date":"1997-02-10","fuel":"diesel","current_price":1.285,"yoy_price":1.134,"absolute_change":0.151,"percentage_change":13.315696649},{"date":"1997-02-17","fuel":"diesel","current_price":1.278,"yoy_price":1.151,"absolute_change":0.127,"percentage_change":11.0338835795},{"date":"1997-02-24","fuel":"diesel","current_price":1.269,"yoy_price":1.164,"absolute_change":0.105,"percentage_change":9.0206185567},{"date":"1997-03-03","fuel":"diesel","current_price":1.252,"yoy_price":1.175,"absolute_change":0.077,"percentage_change":6.5531914894},{"date":"1997-03-10","fuel":"diesel","current_price":1.23,"yoy_price":1.173,"absolute_change":0.057,"percentage_change":4.8593350384},{"date":"1997-03-17","fuel":"diesel","current_price":1.22,"yoy_price":1.172,"absolute_change":0.048,"percentage_change":4.0955631399},{"date":"1997-03-24","fuel":"diesel","current_price":1.22,"yoy_price":1.21,"absolute_change":0.01,"percentage_change":0.826446281},{"date":"1997-03-31","fuel":"diesel","current_price":1.225,"yoy_price":1.222,"absolute_change":0.003,"percentage_change":0.2454991817},{"date":"1997-04-07","fuel":"diesel","current_price":1.217,"yoy_price":1.249,"absolute_change":-0.032,"percentage_change":-2.5620496397},{"date":"1997-04-14","fuel":"diesel","current_price":1.216,"yoy_price":1.305,"absolute_change":-0.089,"percentage_change":-6.8199233716},{"date":"1997-04-21","fuel":"diesel","current_price":1.211,"yoy_price":1.304,"absolute_change":-0.093,"percentage_change":-7.1319018405},{"date":"1997-04-28","fuel":"diesel","current_price":1.205,"yoy_price":1.285,"absolute_change":-0.08,"percentage_change":-6.2256809339},{"date":"1997-05-05","fuel":"diesel","current_price":1.205,"yoy_price":1.292,"absolute_change":-0.087,"percentage_change":-6.73374613},{"date":"1997-05-12","fuel":"diesel","current_price":1.191,"yoy_price":1.285,"absolute_change":-0.094,"percentage_change":-7.3151750973},{"date":"1997-05-19","fuel":"diesel","current_price":1.191,"yoy_price":1.274,"absolute_change":-0.083,"percentage_change":-6.5149136578},{"date":"1997-05-26","fuel":"diesel","current_price":1.196,"yoy_price":1.254,"absolute_change":-0.058,"percentage_change":-4.625199362},{"date":"1997-06-02","fuel":"diesel","current_price":1.19,"yoy_price":1.24,"absolute_change":-0.05,"percentage_change":-4.0322580645},{"date":"1997-06-09","fuel":"diesel","current_price":1.187,"yoy_price":1.215,"absolute_change":-0.028,"percentage_change":-2.304526749},{"date":"1997-06-16","fuel":"diesel","current_price":1.172,"yoy_price":1.193,"absolute_change":-0.021,"percentage_change":-1.7602682313},{"date":"1997-06-23","fuel":"diesel","current_price":1.162,"yoy_price":1.179,"absolute_change":-0.017,"percentage_change":-1.4418999152},{"date":"1997-06-30","fuel":"diesel","current_price":1.153,"yoy_price":1.172,"absolute_change":-0.019,"percentage_change":-1.6211604096},{"date":"1997-07-07","fuel":"diesel","current_price":1.159,"yoy_price":1.173,"absolute_change":-0.014,"percentage_change":-1.1935208866},{"date":"1997-07-14","fuel":"diesel","current_price":1.152,"yoy_price":1.178,"absolute_change":-0.026,"percentage_change":-2.2071307301},{"date":"1997-07-21","fuel":"diesel","current_price":1.147,"yoy_price":1.184,"absolute_change":-0.037,"percentage_change":-3.125},{"date":"1997-07-28","fuel":"diesel","current_price":1.145,"yoy_price":1.178,"absolute_change":-0.033,"percentage_change":-2.8013582343},{"date":"1997-08-04","fuel":"diesel","current_price":1.155,"yoy_price":1.184,"absolute_change":-0.029,"percentage_change":-2.4493243243},{"date":"1997-08-11","fuel":"diesel","current_price":1.168,"yoy_price":1.191,"absolute_change":-0.023,"percentage_change":-1.9311502939},{"date":"1997-08-18","fuel":"diesel","current_price":1.167,"yoy_price":1.206,"absolute_change":-0.039,"percentage_change":-3.2338308458},{"date":"1997-08-25","fuel":"diesel","current_price":1.169,"yoy_price":1.222,"absolute_change":-0.053,"percentage_change":-4.3371522095},{"date":"1997-09-01","fuel":"diesel","current_price":1.165,"yoy_price":1.231,"absolute_change":-0.066,"percentage_change":-5.3614947197},{"date":"1997-09-08","fuel":"diesel","current_price":1.163,"yoy_price":1.25,"absolute_change":-0.087,"percentage_change":-6.96},{"date":"1997-09-15","fuel":"diesel","current_price":1.156,"yoy_price":1.276,"absolute_change":-0.12,"percentage_change":-9.4043887147},{"date":"1997-09-22","fuel":"diesel","current_price":1.154,"yoy_price":1.277,"absolute_change":-0.123,"percentage_change":-9.6319498825},{"date":"1997-09-29","fuel":"diesel","current_price":1.16,"yoy_price":1.289,"absolute_change":-0.129,"percentage_change":-10.0077579519},{"date":"1997-10-06","fuel":"diesel","current_price":1.175,"yoy_price":1.308,"absolute_change":-0.133,"percentage_change":-10.1681957187},{"date":"1997-10-13","fuel":"diesel","current_price":1.185,"yoy_price":1.326,"absolute_change":-0.141,"percentage_change":-10.6334841629},{"date":"1997-10-20","fuel":"diesel","current_price":1.185,"yoy_price":1.329,"absolute_change":-0.144,"percentage_change":-10.835214447},{"date":"1997-10-27","fuel":"diesel","current_price":1.185,"yoy_price":1.329,"absolute_change":-0.144,"percentage_change":-10.835214447},{"date":"1997-11-03","fuel":"diesel","current_price":1.188,"yoy_price":1.323,"absolute_change":-0.135,"percentage_change":-10.2040816327},{"date":"1997-11-10","fuel":"diesel","current_price":1.19,"yoy_price":1.316,"absolute_change":-0.126,"percentage_change":-9.5744680851},{"date":"1997-11-17","fuel":"diesel","current_price":1.195,"yoy_price":1.324,"absolute_change":-0.129,"percentage_change":-9.7432024169},{"date":"1997-11-24","fuel":"diesel","current_price":1.193,"yoy_price":1.327,"absolute_change":-0.134,"percentage_change":-10.0979653353},{"date":"1997-12-01","fuel":"diesel","current_price":1.189,"yoy_price":1.323,"absolute_change":-0.134,"percentage_change":-10.1284958428},{"date":"1997-12-08","fuel":"diesel","current_price":1.174,"yoy_price":1.32,"absolute_change":-0.146,"percentage_change":-11.0606060606},{"date":"1997-12-15","fuel":"diesel","current_price":1.162,"yoy_price":1.307,"absolute_change":-0.145,"percentage_change":-11.0941086458},{"date":"1997-12-22","fuel":"diesel","current_price":1.155,"yoy_price":1.3,"absolute_change":-0.145,"percentage_change":-11.1538461538},{"date":"1997-12-29","fuel":"diesel","current_price":1.15,"yoy_price":1.295,"absolute_change":-0.145,"percentage_change":-11.1969111969},{"date":"1998-01-05","fuel":"diesel","current_price":1.147,"yoy_price":1.291,"absolute_change":-0.144,"percentage_change":-11.1541440744},{"date":"1998-01-12","fuel":"diesel","current_price":1.126,"yoy_price":1.296,"absolute_change":-0.17,"percentage_change":-13.1172839506},{"date":"1998-01-19","fuel":"diesel","current_price":1.109,"yoy_price":1.293,"absolute_change":-0.184,"percentage_change":-14.2304717711},{"date":"1998-01-26","fuel":"diesel","current_price":1.096,"yoy_price":1.283,"absolute_change":-0.187,"percentage_change":-14.5752143414},{"date":"1998-02-02","fuel":"diesel","current_price":1.091,"yoy_price":1.288,"absolute_change":-0.197,"percentage_change":-15.2950310559},{"date":"1998-02-09","fuel":"diesel","current_price":1.085,"yoy_price":1.285,"absolute_change":-0.2,"percentage_change":-15.5642023346},{"date":"1998-02-16","fuel":"diesel","current_price":1.082,"yoy_price":1.278,"absolute_change":-0.196,"percentage_change":-15.3364632238},{"date":"1998-02-23","fuel":"diesel","current_price":1.079,"yoy_price":1.269,"absolute_change":-0.19,"percentage_change":-14.9724192277},{"date":"1998-03-02","fuel":"diesel","current_price":1.074,"yoy_price":1.252,"absolute_change":-0.178,"percentage_change":-14.2172523962},{"date":"1998-03-09","fuel":"diesel","current_price":1.066,"yoy_price":1.23,"absolute_change":-0.164,"percentage_change":-13.3333333333},{"date":"1998-03-16","fuel":"diesel","current_price":1.057,"yoy_price":1.22,"absolute_change":-0.163,"percentage_change":-13.3606557377},{"date":"1998-03-23","fuel":"diesel","current_price":1.049,"yoy_price":1.22,"absolute_change":-0.171,"percentage_change":-14.0163934426},{"date":"1998-03-30","fuel":"diesel","current_price":1.068,"yoy_price":1.225,"absolute_change":-0.157,"percentage_change":-12.8163265306},{"date":"1998-04-06","fuel":"diesel","current_price":1.067,"yoy_price":1.217,"absolute_change":-0.15,"percentage_change":-12.325390304},{"date":"1998-04-13","fuel":"diesel","current_price":1.065,"yoy_price":1.216,"absolute_change":-0.151,"percentage_change":-12.4177631579},{"date":"1998-04-20","fuel":"diesel","current_price":1.065,"yoy_price":1.211,"absolute_change":-0.146,"percentage_change":-12.0561519405},{"date":"1998-04-27","fuel":"diesel","current_price":1.07,"yoy_price":1.205,"absolute_change":-0.135,"percentage_change":-11.2033195021},{"date":"1998-05-04","fuel":"diesel","current_price":1.072,"yoy_price":1.205,"absolute_change":-0.133,"percentage_change":-11.0373443983},{"date":"1998-05-11","fuel":"diesel","current_price":1.075,"yoy_price":1.191,"absolute_change":-0.116,"percentage_change":-9.7397145256},{"date":"1998-05-18","fuel":"diesel","current_price":1.069,"yoy_price":1.191,"absolute_change":-0.122,"percentage_change":-10.2434928631},{"date":"1998-05-25","fuel":"diesel","current_price":1.06,"yoy_price":1.196,"absolute_change":-0.136,"percentage_change":-11.3712374582},{"date":"1998-06-01","fuel":"diesel","current_price":1.053,"yoy_price":1.19,"absolute_change":-0.137,"percentage_change":-11.512605042},{"date":"1998-06-08","fuel":"diesel","current_price":1.045,"yoy_price":1.187,"absolute_change":-0.142,"percentage_change":-11.9629317607},{"date":"1998-06-15","fuel":"diesel","current_price":1.04,"yoy_price":1.172,"absolute_change":-0.132,"percentage_change":-11.2627986348},{"date":"1998-06-22","fuel":"diesel","current_price":1.033,"yoy_price":1.162,"absolute_change":-0.129,"percentage_change":-11.1015490534},{"date":"1998-06-29","fuel":"diesel","current_price":1.034,"yoy_price":1.153,"absolute_change":-0.119,"percentage_change":-10.3209019948},{"date":"1998-07-06","fuel":"diesel","current_price":1.036,"yoy_price":1.159,"absolute_change":-0.123,"percentage_change":-10.6125970664},{"date":"1998-07-13","fuel":"diesel","current_price":1.031,"yoy_price":1.152,"absolute_change":-0.121,"percentage_change":-10.5034722222},{"date":"1998-07-20","fuel":"diesel","current_price":1.027,"yoy_price":1.147,"absolute_change":-0.12,"percentage_change":-10.4620749782},{"date":"1998-07-27","fuel":"diesel","current_price":1.02,"yoy_price":1.145,"absolute_change":-0.125,"percentage_change":-10.9170305677},{"date":"1998-08-03","fuel":"diesel","current_price":1.016,"yoy_price":1.155,"absolute_change":-0.139,"percentage_change":-12.0346320346},{"date":"1998-08-10","fuel":"diesel","current_price":1.01,"yoy_price":1.168,"absolute_change":-0.158,"percentage_change":-13.5273972603},{"date":"1998-08-17","fuel":"diesel","current_price":1.007,"yoy_price":1.167,"absolute_change":-0.16,"percentage_change":-13.7103684662},{"date":"1998-08-24","fuel":"diesel","current_price":1.004,"yoy_price":1.169,"absolute_change":-0.165,"percentage_change":-14.1146278871},{"date":"1998-08-31","fuel":"diesel","current_price":1,"yoy_price":1.165,"absolute_change":-0.165,"percentage_change":-14.1630901288},{"date":"1998-09-07","fuel":"diesel","current_price":1.009,"yoy_price":1.163,"absolute_change":-0.154,"percentage_change":-13.241616509},{"date":"1998-09-14","fuel":"diesel","current_price":1.019,"yoy_price":1.156,"absolute_change":-0.137,"percentage_change":-11.8512110727},{"date":"1998-09-21","fuel":"diesel","current_price":1.03,"yoy_price":1.154,"absolute_change":-0.124,"percentage_change":-10.7452339688},{"date":"1998-09-28","fuel":"diesel","current_price":1.039,"yoy_price":1.16,"absolute_change":-0.121,"percentage_change":-10.4310344828},{"date":"1998-10-05","fuel":"diesel","current_price":1.041,"yoy_price":1.175,"absolute_change":-0.134,"percentage_change":-11.4042553191},{"date":"1998-10-12","fuel":"diesel","current_price":1.041,"yoy_price":1.185,"absolute_change":-0.144,"percentage_change":-12.1518987342},{"date":"1998-10-19","fuel":"diesel","current_price":1.036,"yoy_price":1.185,"absolute_change":-0.149,"percentage_change":-12.5738396624},{"date":"1998-10-26","fuel":"diesel","current_price":1.036,"yoy_price":1.185,"absolute_change":-0.149,"percentage_change":-12.5738396624},{"date":"1998-11-02","fuel":"diesel","current_price":1.035,"yoy_price":1.188,"absolute_change":-0.153,"percentage_change":-12.8787878788},{"date":"1998-11-09","fuel":"diesel","current_price":1.034,"yoy_price":1.19,"absolute_change":-0.156,"percentage_change":-13.1092436975},{"date":"1998-11-16","fuel":"diesel","current_price":1.026,"yoy_price":1.195,"absolute_change":-0.169,"percentage_change":-14.1422594142},{"date":"1998-11-23","fuel":"diesel","current_price":1.012,"yoy_price":1.193,"absolute_change":-0.181,"percentage_change":-15.1718357083},{"date":"1998-11-30","fuel":"diesel","current_price":1.004,"yoy_price":1.189,"absolute_change":-0.185,"percentage_change":-15.559293524},{"date":"1998-12-07","fuel":"diesel","current_price":0.986,"yoy_price":1.174,"absolute_change":-0.188,"percentage_change":-16.0136286201},{"date":"1998-12-14","fuel":"diesel","current_price":0.972,"yoy_price":1.162,"absolute_change":-0.19,"percentage_change":-16.3511187608},{"date":"1998-12-21","fuel":"diesel","current_price":0.968,"yoy_price":1.155,"absolute_change":-0.187,"percentage_change":-16.1904761905},{"date":"1998-12-28","fuel":"diesel","current_price":0.966,"yoy_price":1.15,"absolute_change":-0.184,"percentage_change":-16},{"date":"1999-01-04","fuel":"diesel","current_price":0.965,"yoy_price":1.147,"absolute_change":-0.182,"percentage_change":-15.8674803836},{"date":"1999-01-11","fuel":"diesel","current_price":0.967,"yoy_price":1.126,"absolute_change":-0.159,"percentage_change":-14.1207815275},{"date":"1999-01-18","fuel":"diesel","current_price":0.97,"yoy_price":1.109,"absolute_change":-0.139,"percentage_change":-12.5338142471},{"date":"1999-01-25","fuel":"diesel","current_price":0.964,"yoy_price":1.096,"absolute_change":-0.132,"percentage_change":-12.0437956204},{"date":"1999-02-01","fuel":"diesel","current_price":0.962,"yoy_price":1.091,"absolute_change":-0.129,"percentage_change":-11.8240146654},{"date":"1999-02-08","fuel":"diesel","current_price":0.962,"yoy_price":1.085,"absolute_change":-0.123,"percentage_change":-11.33640553},{"date":"1999-02-15","fuel":"diesel","current_price":0.959,"yoy_price":1.082,"absolute_change":-0.123,"percentage_change":-11.3678373383},{"date":"1999-02-22","fuel":"diesel","current_price":0.953,"yoy_price":1.079,"absolute_change":-0.126,"percentage_change":-11.6774791474},{"date":"1999-03-01","fuel":"diesel","current_price":0.956,"yoy_price":1.074,"absolute_change":-0.118,"percentage_change":-10.9869646182},{"date":"1999-03-08","fuel":"diesel","current_price":0.964,"yoy_price":1.066,"absolute_change":-0.102,"percentage_change":-9.5684803002},{"date":"1999-03-15","fuel":"diesel","current_price":1,"yoy_price":1.057,"absolute_change":-0.057,"percentage_change":-5.3926206244},{"date":"1999-03-22","fuel":"diesel","current_price":1.018,"yoy_price":1.049,"absolute_change":-0.031,"percentage_change":-2.9551954242},{"date":"1999-03-29","fuel":"diesel","current_price":1.046,"yoy_price":1.068,"absolute_change":-0.022,"percentage_change":-2.0599250936},{"date":"1999-04-05","fuel":"diesel","current_price":1.075,"yoy_price":1.067,"absolute_change":0.008,"percentage_change":0.7497656982},{"date":"1999-04-12","fuel":"diesel","current_price":1.084,"yoy_price":1.065,"absolute_change":0.019,"percentage_change":1.7840375587},{"date":"1999-04-19","fuel":"diesel","current_price":1.08,"yoy_price":1.065,"absolute_change":0.015,"percentage_change":1.4084507042},{"date":"1999-04-26","fuel":"diesel","current_price":1.078,"yoy_price":1.07,"absolute_change":0.008,"percentage_change":0.7476635514},{"date":"1999-05-03","fuel":"diesel","current_price":1.078,"yoy_price":1.072,"absolute_change":0.006,"percentage_change":0.5597014925},{"date":"1999-05-10","fuel":"diesel","current_price":1.083,"yoy_price":1.075,"absolute_change":0.008,"percentage_change":0.7441860465},{"date":"1999-05-17","fuel":"diesel","current_price":1.075,"yoy_price":1.069,"absolute_change":0.006,"percentage_change":0.561272217},{"date":"1999-05-24","fuel":"diesel","current_price":1.066,"yoy_price":1.06,"absolute_change":0.006,"percentage_change":0.5660377358},{"date":"1999-05-31","fuel":"diesel","current_price":1.065,"yoy_price":1.053,"absolute_change":0.012,"percentage_change":1.1396011396},{"date":"1999-06-07","fuel":"diesel","current_price":1.059,"yoy_price":1.045,"absolute_change":0.014,"percentage_change":1.3397129187},{"date":"1999-06-14","fuel":"diesel","current_price":1.068,"yoy_price":1.04,"absolute_change":0.028,"percentage_change":2.6923076923},{"date":"1999-06-21","fuel":"diesel","current_price":1.082,"yoy_price":1.033,"absolute_change":0.049,"percentage_change":4.7434656341},{"date":"1999-06-28","fuel":"diesel","current_price":1.087,"yoy_price":1.034,"absolute_change":0.053,"percentage_change":5.1257253385},{"date":"1999-07-05","fuel":"diesel","current_price":1.102,"yoy_price":1.036,"absolute_change":0.066,"percentage_change":6.3706563707},{"date":"1999-07-12","fuel":"diesel","current_price":1.114,"yoy_price":1.031,"absolute_change":0.083,"percentage_change":8.0504364694},{"date":"1999-07-19","fuel":"diesel","current_price":1.133,"yoy_price":1.027,"absolute_change":0.106,"percentage_change":10.3213242454},{"date":"1999-07-26","fuel":"diesel","current_price":1.137,"yoy_price":1.02,"absolute_change":0.117,"percentage_change":11.4705882353},{"date":"1999-08-02","fuel":"diesel","current_price":1.146,"yoy_price":1.016,"absolute_change":0.13,"percentage_change":12.7952755906},{"date":"1999-08-09","fuel":"diesel","current_price":1.156,"yoy_price":1.01,"absolute_change":0.146,"percentage_change":14.4554455446},{"date":"1999-08-16","fuel":"diesel","current_price":1.178,"yoy_price":1.007,"absolute_change":0.171,"percentage_change":16.9811320755},{"date":"1999-08-23","fuel":"diesel","current_price":1.186,"yoy_price":1.004,"absolute_change":0.182,"percentage_change":18.1274900398},{"date":"1999-08-30","fuel":"diesel","current_price":1.194,"yoy_price":1,"absolute_change":0.194,"percentage_change":19.4},{"date":"1999-09-06","fuel":"diesel","current_price":1.198,"yoy_price":1.009,"absolute_change":0.189,"percentage_change":18.7314172448},{"date":"1999-09-13","fuel":"diesel","current_price":1.209,"yoy_price":1.019,"absolute_change":0.19,"percentage_change":18.6457311089},{"date":"1999-09-20","fuel":"diesel","current_price":1.226,"yoy_price":1.03,"absolute_change":0.196,"percentage_change":19.0291262136},{"date":"1999-09-27","fuel":"diesel","current_price":1.226,"yoy_price":1.039,"absolute_change":0.187,"percentage_change":17.9980750722},{"date":"1999-10-04","fuel":"diesel","current_price":1.234,"yoy_price":1.041,"absolute_change":0.193,"percentage_change":18.5398655139},{"date":"1999-10-11","fuel":"diesel","current_price":1.228,"yoy_price":1.041,"absolute_change":0.187,"percentage_change":17.9634966378},{"date":"1999-10-18","fuel":"diesel","current_price":1.224,"yoy_price":1.036,"absolute_change":0.188,"percentage_change":18.1467181467},{"date":"1999-10-25","fuel":"diesel","current_price":1.226,"yoy_price":1.036,"absolute_change":0.19,"percentage_change":18.3397683398},{"date":"1999-11-01","fuel":"diesel","current_price":1.229,"yoy_price":1.035,"absolute_change":0.194,"percentage_change":18.7439613527},{"date":"1999-11-08","fuel":"diesel","current_price":1.234,"yoy_price":1.034,"absolute_change":0.2,"percentage_change":19.3423597679},{"date":"1999-11-15","fuel":"diesel","current_price":1.261,"yoy_price":1.026,"absolute_change":0.235,"percentage_change":22.9044834308},{"date":"1999-11-22","fuel":"diesel","current_price":1.289,"yoy_price":1.012,"absolute_change":0.277,"percentage_change":27.371541502},{"date":"1999-11-29","fuel":"diesel","current_price":1.304,"yoy_price":1.004,"absolute_change":0.3,"percentage_change":29.8804780876},{"date":"1999-12-06","fuel":"diesel","current_price":1.294,"yoy_price":0.986,"absolute_change":0.308,"percentage_change":31.2373225152},{"date":"1999-12-13","fuel":"diesel","current_price":1.288,"yoy_price":0.972,"absolute_change":0.316,"percentage_change":32.5102880658},{"date":"1999-12-20","fuel":"diesel","current_price":1.287,"yoy_price":0.968,"absolute_change":0.319,"percentage_change":32.9545454545},{"date":"1999-12-27","fuel":"diesel","current_price":1.298,"yoy_price":0.966,"absolute_change":0.332,"percentage_change":34.3685300207},{"date":"2000-01-03","fuel":"diesel","current_price":1.309,"yoy_price":0.965,"absolute_change":0.344,"percentage_change":35.6476683938},{"date":"2000-01-10","fuel":"diesel","current_price":1.307,"yoy_price":0.967,"absolute_change":0.34,"percentage_change":35.1602895553},{"date":"2000-01-17","fuel":"diesel","current_price":1.307,"yoy_price":0.97,"absolute_change":0.337,"percentage_change":34.7422680412},{"date":"2000-01-24","fuel":"diesel","current_price":1.418,"yoy_price":0.964,"absolute_change":0.454,"percentage_change":47.0954356846},{"date":"2000-01-31","fuel":"diesel","current_price":1.439,"yoy_price":0.962,"absolute_change":0.477,"percentage_change":49.5841995842},{"date":"2000-02-07","fuel":"diesel","current_price":1.47,"yoy_price":0.962,"absolute_change":0.508,"percentage_change":52.8066528067},{"date":"2000-02-14","fuel":"diesel","current_price":1.456,"yoy_price":0.959,"absolute_change":0.497,"percentage_change":51.8248175182},{"date":"2000-02-21","fuel":"diesel","current_price":1.456,"yoy_price":0.953,"absolute_change":0.503,"percentage_change":52.7806925498},{"date":"2000-02-28","fuel":"diesel","current_price":1.461,"yoy_price":0.956,"absolute_change":0.505,"percentage_change":52.8242677824},{"date":"2000-03-06","fuel":"diesel","current_price":1.49,"yoy_price":0.964,"absolute_change":0.526,"percentage_change":54.5643153527},{"date":"2000-03-13","fuel":"diesel","current_price":1.496,"yoy_price":1,"absolute_change":0.496,"percentage_change":49.6},{"date":"2000-03-20","fuel":"diesel","current_price":1.479,"yoy_price":1.018,"absolute_change":0.461,"percentage_change":45.2848722986},{"date":"2000-03-27","fuel":"diesel","current_price":1.451,"yoy_price":1.046,"absolute_change":0.405,"percentage_change":38.7189292543},{"date":"2000-04-03","fuel":"diesel","current_price":1.442,"yoy_price":1.075,"absolute_change":0.367,"percentage_change":34.1395348837},{"date":"2000-04-10","fuel":"diesel","current_price":1.419,"yoy_price":1.084,"absolute_change":0.335,"percentage_change":30.9040590406},{"date":"2000-04-17","fuel":"diesel","current_price":1.398,"yoy_price":1.08,"absolute_change":0.318,"percentage_change":29.4444444444},{"date":"2000-04-24","fuel":"diesel","current_price":1.428,"yoy_price":1.078,"absolute_change":0.35,"percentage_change":32.4675324675},{"date":"2000-05-01","fuel":"diesel","current_price":1.418,"yoy_price":1.078,"absolute_change":0.34,"percentage_change":31.5398886827},{"date":"2000-05-08","fuel":"diesel","current_price":1.402,"yoy_price":1.083,"absolute_change":0.319,"percentage_change":29.4552169898},{"date":"2000-05-15","fuel":"diesel","current_price":1.415,"yoy_price":1.075,"absolute_change":0.34,"percentage_change":31.6279069767},{"date":"2000-05-22","fuel":"diesel","current_price":1.432,"yoy_price":1.066,"absolute_change":0.366,"percentage_change":34.3339587242},{"date":"2000-05-29","fuel":"diesel","current_price":1.431,"yoy_price":1.065,"absolute_change":0.366,"percentage_change":34.3661971831},{"date":"2000-06-05","fuel":"diesel","current_price":1.419,"yoy_price":1.059,"absolute_change":0.36,"percentage_change":33.9943342776},{"date":"2000-06-12","fuel":"diesel","current_price":1.411,"yoy_price":1.068,"absolute_change":0.343,"percentage_change":32.1161048689},{"date":"2000-06-19","fuel":"diesel","current_price":1.423,"yoy_price":1.082,"absolute_change":0.341,"percentage_change":31.5157116451},{"date":"2000-06-26","fuel":"diesel","current_price":1.432,"yoy_price":1.087,"absolute_change":0.345,"percentage_change":31.7387304508},{"date":"2000-07-03","fuel":"diesel","current_price":1.453,"yoy_price":1.102,"absolute_change":0.351,"percentage_change":31.8511796733},{"date":"2000-07-10","fuel":"diesel","current_price":1.449,"yoy_price":1.114,"absolute_change":0.335,"percentage_change":30.0718132855},{"date":"2000-07-17","fuel":"diesel","current_price":1.435,"yoy_price":1.133,"absolute_change":0.302,"percentage_change":26.6548984996},{"date":"2000-07-24","fuel":"diesel","current_price":1.424,"yoy_price":1.137,"absolute_change":0.287,"percentage_change":25.2418645558},{"date":"2000-07-31","fuel":"diesel","current_price":1.408,"yoy_price":1.146,"absolute_change":0.262,"percentage_change":22.8621291449},{"date":"2000-08-07","fuel":"diesel","current_price":1.41,"yoy_price":1.156,"absolute_change":0.254,"percentage_change":21.9723183391},{"date":"2000-08-14","fuel":"diesel","current_price":1.447,"yoy_price":1.178,"absolute_change":0.269,"percentage_change":22.8353140917},{"date":"2000-08-21","fuel":"diesel","current_price":1.471,"yoy_price":1.186,"absolute_change":0.285,"percentage_change":24.0303541315},{"date":"2000-08-28","fuel":"diesel","current_price":1.536,"yoy_price":1.194,"absolute_change":0.342,"percentage_change":28.6432160804},{"date":"2000-09-04","fuel":"diesel","current_price":1.609,"yoy_price":1.198,"absolute_change":0.411,"percentage_change":34.3071786311},{"date":"2000-09-11","fuel":"diesel","current_price":1.629,"yoy_price":1.209,"absolute_change":0.42,"percentage_change":34.7394540943},{"date":"2000-09-18","fuel":"diesel","current_price":1.653,"yoy_price":1.226,"absolute_change":0.427,"percentage_change":34.8287112561},{"date":"2000-09-25","fuel":"diesel","current_price":1.657,"yoy_price":1.226,"absolute_change":0.431,"percentage_change":35.1549755302},{"date":"2000-10-02","fuel":"diesel","current_price":1.625,"yoy_price":1.234,"absolute_change":0.391,"percentage_change":31.6855753647},{"date":"2000-10-09","fuel":"diesel","current_price":1.614,"yoy_price":1.228,"absolute_change":0.386,"percentage_change":31.4332247557},{"date":"2000-10-16","fuel":"diesel","current_price":1.67,"yoy_price":1.224,"absolute_change":0.446,"percentage_change":36.4379084967},{"date":"2000-10-23","fuel":"diesel","current_price":1.648,"yoy_price":1.226,"absolute_change":0.422,"percentage_change":34.4208809135},{"date":"2000-10-30","fuel":"diesel","current_price":1.629,"yoy_price":1.229,"absolute_change":0.4,"percentage_change":32.5467860049},{"date":"2000-11-06","fuel":"diesel","current_price":1.61,"yoy_price":1.234,"absolute_change":0.376,"percentage_change":30.4700162075},{"date":"2000-11-13","fuel":"diesel","current_price":1.603,"yoy_price":1.261,"absolute_change":0.342,"percentage_change":27.121332276},{"date":"2000-11-20","fuel":"diesel","current_price":1.627,"yoy_price":1.289,"absolute_change":0.338,"percentage_change":26.2218774244},{"date":"2000-11-27","fuel":"diesel","current_price":1.645,"yoy_price":1.304,"absolute_change":0.341,"percentage_change":26.1503067485},{"date":"2000-12-04","fuel":"diesel","current_price":1.622,"yoy_price":1.294,"absolute_change":0.328,"percentage_change":25.3477588872},{"date":"2000-12-11","fuel":"diesel","current_price":1.577,"yoy_price":1.288,"absolute_change":0.289,"percentage_change":22.4378881988},{"date":"2000-12-18","fuel":"diesel","current_price":1.545,"yoy_price":1.287,"absolute_change":0.258,"percentage_change":20.0466200466},{"date":"2000-12-25","fuel":"diesel","current_price":1.515,"yoy_price":1.298,"absolute_change":0.217,"percentage_change":16.718027735},{"date":"2001-01-01","fuel":"diesel","current_price":1.522,"yoy_price":1.309,"absolute_change":0.213,"percentage_change":16.2719633308},{"date":"2001-01-08","fuel":"diesel","current_price":1.52,"yoy_price":1.307,"absolute_change":0.213,"percentage_change":16.2968630451},{"date":"2001-01-15","fuel":"diesel","current_price":1.509,"yoy_price":1.307,"absolute_change":0.202,"percentage_change":15.4552410099},{"date":"2001-01-22","fuel":"diesel","current_price":1.528,"yoy_price":1.418,"absolute_change":0.11,"percentage_change":7.7574047955},{"date":"2001-01-29","fuel":"diesel","current_price":1.539,"yoy_price":1.439,"absolute_change":0.1,"percentage_change":6.9492703266},{"date":"2001-02-05","fuel":"diesel","current_price":1.52,"yoy_price":1.47,"absolute_change":0.05,"percentage_change":3.4013605442},{"date":"2001-02-12","fuel":"diesel","current_price":1.518,"yoy_price":1.456,"absolute_change":0.062,"percentage_change":4.2582417582},{"date":"2001-02-19","fuel":"diesel","current_price":1.48,"yoy_price":1.456,"absolute_change":0.024,"percentage_change":1.6483516484},{"date":"2001-02-26","fuel":"diesel","current_price":1.451,"yoy_price":1.461,"absolute_change":-0.01,"percentage_change":-0.6844626968},{"date":"2001-03-05","fuel":"diesel","current_price":1.42,"yoy_price":1.49,"absolute_change":-0.07,"percentage_change":-4.6979865772},{"date":"2001-03-12","fuel":"diesel","current_price":1.406,"yoy_price":1.496,"absolute_change":-0.09,"percentage_change":-6.0160427807},{"date":"2001-03-19","fuel":"diesel","current_price":1.392,"yoy_price":1.479,"absolute_change":-0.087,"percentage_change":-5.8823529412},{"date":"2001-03-26","fuel":"diesel","current_price":1.379,"yoy_price":1.451,"absolute_change":-0.072,"percentage_change":-4.9620951068},{"date":"2001-04-02","fuel":"diesel","current_price":1.391,"yoy_price":1.442,"absolute_change":-0.051,"percentage_change":-3.5367545076},{"date":"2001-04-09","fuel":"diesel","current_price":1.397,"yoy_price":1.419,"absolute_change":-0.022,"percentage_change":-1.5503875969},{"date":"2001-04-16","fuel":"diesel","current_price":1.437,"yoy_price":1.398,"absolute_change":0.039,"percentage_change":2.7896995708},{"date":"2001-04-23","fuel":"diesel","current_price":1.443,"yoy_price":1.428,"absolute_change":0.015,"percentage_change":1.0504201681},{"date":"2001-04-30","fuel":"diesel","current_price":1.442,"yoy_price":1.418,"absolute_change":0.024,"percentage_change":1.6925246827},{"date":"2001-05-07","fuel":"diesel","current_price":1.47,"yoy_price":1.402,"absolute_change":0.068,"percentage_change":4.85021398},{"date":"2001-05-14","fuel":"diesel","current_price":1.491,"yoy_price":1.415,"absolute_change":0.076,"percentage_change":5.371024735},{"date":"2001-05-21","fuel":"diesel","current_price":1.494,"yoy_price":1.432,"absolute_change":0.062,"percentage_change":4.3296089385},{"date":"2001-05-28","fuel":"diesel","current_price":1.529,"yoy_price":1.431,"absolute_change":0.098,"percentage_change":6.8483577918},{"date":"2001-06-04","fuel":"diesel","current_price":1.514,"yoy_price":1.419,"absolute_change":0.095,"percentage_change":6.6948555321},{"date":"2001-06-11","fuel":"diesel","current_price":1.486,"yoy_price":1.411,"absolute_change":0.075,"percentage_change":5.3153791637},{"date":"2001-06-18","fuel":"diesel","current_price":1.48,"yoy_price":1.423,"absolute_change":0.057,"percentage_change":4.0056219255},{"date":"2001-06-25","fuel":"diesel","current_price":1.447,"yoy_price":1.432,"absolute_change":0.015,"percentage_change":1.0474860335},{"date":"2001-07-02","fuel":"diesel","current_price":1.407,"yoy_price":1.453,"absolute_change":-0.046,"percentage_change":-3.1658637302},{"date":"2001-07-09","fuel":"diesel","current_price":1.392,"yoy_price":1.449,"absolute_change":-0.057,"percentage_change":-3.933747412},{"date":"2001-07-16","fuel":"diesel","current_price":1.38,"yoy_price":1.435,"absolute_change":-0.055,"percentage_change":-3.8327526132},{"date":"2001-07-23","fuel":"diesel","current_price":1.348,"yoy_price":1.424,"absolute_change":-0.076,"percentage_change":-5.3370786517},{"date":"2001-07-30","fuel":"diesel","current_price":1.347,"yoy_price":1.408,"absolute_change":-0.061,"percentage_change":-4.3323863636},{"date":"2001-08-06","fuel":"diesel","current_price":1.345,"yoy_price":1.41,"absolute_change":-0.065,"percentage_change":-4.609929078},{"date":"2001-08-13","fuel":"diesel","current_price":1.367,"yoy_price":1.447,"absolute_change":-0.08,"percentage_change":-5.5286800276},{"date":"2001-08-20","fuel":"diesel","current_price":1.394,"yoy_price":1.471,"absolute_change":-0.077,"percentage_change":-5.2345343304},{"date":"2001-08-27","fuel":"diesel","current_price":1.452,"yoy_price":1.536,"absolute_change":-0.084,"percentage_change":-5.46875},{"date":"2001-09-03","fuel":"diesel","current_price":1.488,"yoy_price":1.609,"absolute_change":-0.121,"percentage_change":-7.5201988813},{"date":"2001-09-10","fuel":"diesel","current_price":1.492,"yoy_price":1.629,"absolute_change":-0.137,"percentage_change":-8.4100675261},{"date":"2001-09-17","fuel":"diesel","current_price":1.527,"yoy_price":1.653,"absolute_change":-0.126,"percentage_change":-7.6225045372},{"date":"2001-09-24","fuel":"diesel","current_price":1.473,"yoy_price":1.657,"absolute_change":-0.184,"percentage_change":-11.1044055522},{"date":"2001-10-01","fuel":"diesel","current_price":1.39,"yoy_price":1.625,"absolute_change":-0.235,"percentage_change":-14.4615384615},{"date":"2001-10-08","fuel":"diesel","current_price":1.371,"yoy_price":1.614,"absolute_change":-0.243,"percentage_change":-15.0557620818},{"date":"2001-10-15","fuel":"diesel","current_price":1.353,"yoy_price":1.67,"absolute_change":-0.317,"percentage_change":-18.9820359281},{"date":"2001-10-22","fuel":"diesel","current_price":1.318,"yoy_price":1.648,"absolute_change":-0.33,"percentage_change":-20.0242718447},{"date":"2001-10-29","fuel":"diesel","current_price":1.31,"yoy_price":1.629,"absolute_change":-0.319,"percentage_change":-19.5825659914},{"date":"2001-11-05","fuel":"diesel","current_price":1.291,"yoy_price":1.61,"absolute_change":-0.319,"percentage_change":-19.8136645963},{"date":"2001-11-12","fuel":"diesel","current_price":1.269,"yoy_price":1.603,"absolute_change":-0.334,"percentage_change":-20.8359326263},{"date":"2001-11-19","fuel":"diesel","current_price":1.252,"yoy_price":1.627,"absolute_change":-0.375,"percentage_change":-23.0485556238},{"date":"2001-11-26","fuel":"diesel","current_price":1.223,"yoy_price":1.645,"absolute_change":-0.422,"percentage_change":-25.6534954407},{"date":"2001-12-03","fuel":"diesel","current_price":1.194,"yoy_price":1.622,"absolute_change":-0.428,"percentage_change":-26.3871763255},{"date":"2001-12-10","fuel":"diesel","current_price":1.173,"yoy_price":1.577,"absolute_change":-0.404,"percentage_change":-25.6182625238},{"date":"2001-12-17","fuel":"diesel","current_price":1.143,"yoy_price":1.545,"absolute_change":-0.402,"percentage_change":-26.0194174757},{"date":"2001-12-24","fuel":"diesel","current_price":1.154,"yoy_price":1.515,"absolute_change":-0.361,"percentage_change":-23.8283828383},{"date":"2001-12-31","fuel":"diesel","current_price":1.169,"yoy_price":1.522,"absolute_change":-0.353,"percentage_change":-23.1931668857},{"date":"2002-01-07","fuel":"diesel","current_price":1.168,"yoy_price":1.52,"absolute_change":-0.352,"percentage_change":-23.1578947368},{"date":"2002-01-14","fuel":"diesel","current_price":1.159,"yoy_price":1.509,"absolute_change":-0.35,"percentage_change":-23.1941683234},{"date":"2002-01-21","fuel":"diesel","current_price":1.14,"yoy_price":1.528,"absolute_change":-0.388,"percentage_change":-25.3926701571},{"date":"2002-01-28","fuel":"diesel","current_price":1.144,"yoy_price":1.539,"absolute_change":-0.395,"percentage_change":-25.6660168941},{"date":"2002-02-04","fuel":"diesel","current_price":1.144,"yoy_price":1.52,"absolute_change":-0.376,"percentage_change":-24.7368421053},{"date":"2002-02-11","fuel":"diesel","current_price":1.153,"yoy_price":1.518,"absolute_change":-0.365,"percentage_change":-24.0447957839},{"date":"2002-02-18","fuel":"diesel","current_price":1.156,"yoy_price":1.48,"absolute_change":-0.324,"percentage_change":-21.8918918919},{"date":"2002-02-25","fuel":"diesel","current_price":1.154,"yoy_price":1.451,"absolute_change":-0.297,"percentage_change":-20.4686423156},{"date":"2002-03-04","fuel":"diesel","current_price":1.173,"yoy_price":1.42,"absolute_change":-0.247,"percentage_change":-17.3943661972},{"date":"2002-03-11","fuel":"diesel","current_price":1.216,"yoy_price":1.406,"absolute_change":-0.19,"percentage_change":-13.5135135135},{"date":"2002-03-18","fuel":"diesel","current_price":1.251,"yoy_price":1.392,"absolute_change":-0.141,"percentage_change":-10.1293103448},{"date":"2002-03-25","fuel":"diesel","current_price":1.281,"yoy_price":1.379,"absolute_change":-0.098,"percentage_change":-7.1065989848},{"date":"2002-04-01","fuel":"diesel","current_price":1.295,"yoy_price":1.391,"absolute_change":-0.096,"percentage_change":-6.9015097052},{"date":"2002-04-08","fuel":"diesel","current_price":1.323,"yoy_price":1.397,"absolute_change":-0.074,"percentage_change":-5.2970651396},{"date":"2002-04-15","fuel":"diesel","current_price":1.32,"yoy_price":1.437,"absolute_change":-0.117,"percentage_change":-8.1419624217},{"date":"2002-04-22","fuel":"diesel","current_price":1.304,"yoy_price":1.443,"absolute_change":-0.139,"percentage_change":-9.6327096327},{"date":"2002-04-29","fuel":"diesel","current_price":1.302,"yoy_price":1.442,"absolute_change":-0.14,"percentage_change":-9.7087378641},{"date":"2002-05-06","fuel":"diesel","current_price":1.305,"yoy_price":1.47,"absolute_change":-0.165,"percentage_change":-11.2244897959},{"date":"2002-05-13","fuel":"diesel","current_price":1.299,"yoy_price":1.491,"absolute_change":-0.192,"percentage_change":-12.8772635815},{"date":"2002-05-20","fuel":"diesel","current_price":1.309,"yoy_price":1.494,"absolute_change":-0.185,"percentage_change":-12.3828647925},{"date":"2002-05-27","fuel":"diesel","current_price":1.308,"yoy_price":1.529,"absolute_change":-0.221,"percentage_change":-14.4538914323},{"date":"2002-06-03","fuel":"diesel","current_price":1.3,"yoy_price":1.514,"absolute_change":-0.214,"percentage_change":-14.1347424042},{"date":"2002-06-10","fuel":"diesel","current_price":1.286,"yoy_price":1.486,"absolute_change":-0.2,"percentage_change":-13.4589502019},{"date":"2002-06-17","fuel":"diesel","current_price":1.275,"yoy_price":1.48,"absolute_change":-0.205,"percentage_change":-13.8513513514},{"date":"2002-06-24","fuel":"diesel","current_price":1.281,"yoy_price":1.447,"absolute_change":-0.166,"percentage_change":-11.4720110574},{"date":"2002-07-01","fuel":"diesel","current_price":1.289,"yoy_price":1.407,"absolute_change":-0.118,"percentage_change":-8.3866382374},{"date":"2002-07-08","fuel":"diesel","current_price":1.294,"yoy_price":1.392,"absolute_change":-0.098,"percentage_change":-7.0402298851},{"date":"2002-07-15","fuel":"diesel","current_price":1.3,"yoy_price":1.38,"absolute_change":-0.08,"percentage_change":-5.7971014493},{"date":"2002-07-22","fuel":"diesel","current_price":1.311,"yoy_price":1.348,"absolute_change":-0.037,"percentage_change":-2.7448071217},{"date":"2002-07-29","fuel":"diesel","current_price":1.303,"yoy_price":1.347,"absolute_change":-0.044,"percentage_change":-3.2665181886},{"date":"2002-08-05","fuel":"diesel","current_price":1.304,"yoy_price":1.345,"absolute_change":-0.041,"percentage_change":-3.0483271375},{"date":"2002-08-12","fuel":"diesel","current_price":1.303,"yoy_price":1.367,"absolute_change":-0.064,"percentage_change":-4.6817849305},{"date":"2002-08-19","fuel":"diesel","current_price":1.333,"yoy_price":1.394,"absolute_change":-0.061,"percentage_change":-4.3758967001},{"date":"2002-08-26","fuel":"diesel","current_price":1.37,"yoy_price":1.452,"absolute_change":-0.082,"percentage_change":-5.6473829201},{"date":"2002-09-02","fuel":"diesel","current_price":1.388,"yoy_price":1.488,"absolute_change":-0.1,"percentage_change":-6.7204301075},{"date":"2002-09-09","fuel":"diesel","current_price":1.396,"yoy_price":1.492,"absolute_change":-0.096,"percentage_change":-6.4343163539},{"date":"2002-09-16","fuel":"diesel","current_price":1.414,"yoy_price":1.527,"absolute_change":-0.113,"percentage_change":-7.4001309758},{"date":"2002-09-23","fuel":"diesel","current_price":1.417,"yoy_price":1.473,"absolute_change":-0.056,"percentage_change":-3.8017651052},{"date":"2002-09-30","fuel":"diesel","current_price":1.438,"yoy_price":1.39,"absolute_change":0.048,"percentage_change":3.4532374101},{"date":"2002-10-07","fuel":"diesel","current_price":1.46,"yoy_price":1.371,"absolute_change":0.089,"percentage_change":6.4916119621},{"date":"2002-10-14","fuel":"diesel","current_price":1.461,"yoy_price":1.353,"absolute_change":0.108,"percentage_change":7.9822616408},{"date":"2002-10-21","fuel":"diesel","current_price":1.469,"yoy_price":1.318,"absolute_change":0.151,"percentage_change":11.4567526555},{"date":"2002-10-28","fuel":"diesel","current_price":1.456,"yoy_price":1.31,"absolute_change":0.146,"percentage_change":11.1450381679},{"date":"2002-11-04","fuel":"diesel","current_price":1.442,"yoy_price":1.291,"absolute_change":0.151,"percentage_change":11.6963594113},{"date":"2002-11-11","fuel":"diesel","current_price":1.427,"yoy_price":1.269,"absolute_change":0.158,"percentage_change":12.450748621},{"date":"2002-11-18","fuel":"diesel","current_price":1.405,"yoy_price":1.252,"absolute_change":0.153,"percentage_change":12.2204472843},{"date":"2002-11-25","fuel":"diesel","current_price":1.405,"yoy_price":1.223,"absolute_change":0.182,"percentage_change":14.8814390842},{"date":"2002-12-02","fuel":"diesel","current_price":1.407,"yoy_price":1.194,"absolute_change":0.213,"percentage_change":17.8391959799},{"date":"2002-12-09","fuel":"diesel","current_price":1.405,"yoy_price":1.173,"absolute_change":0.232,"percentage_change":19.7783461211},{"date":"2002-12-16","fuel":"diesel","current_price":1.401,"yoy_price":1.143,"absolute_change":0.258,"percentage_change":22.5721784777},{"date":"2002-12-23","fuel":"diesel","current_price":1.44,"yoy_price":1.154,"absolute_change":0.286,"percentage_change":24.7833622184},{"date":"2002-12-30","fuel":"diesel","current_price":1.491,"yoy_price":1.169,"absolute_change":0.322,"percentage_change":27.5449101796},{"date":"2003-01-06","fuel":"diesel","current_price":1.501,"yoy_price":1.168,"absolute_change":0.333,"percentage_change":28.5102739726},{"date":"2003-01-13","fuel":"diesel","current_price":1.478,"yoy_price":1.159,"absolute_change":0.319,"percentage_change":27.5237273512},{"date":"2003-01-20","fuel":"diesel","current_price":1.48,"yoy_price":1.14,"absolute_change":0.34,"percentage_change":29.8245614035},{"date":"2003-01-27","fuel":"diesel","current_price":1.492,"yoy_price":1.144,"absolute_change":0.348,"percentage_change":30.4195804196},{"date":"2003-02-03","fuel":"diesel","current_price":1.542,"yoy_price":1.144,"absolute_change":0.398,"percentage_change":34.7902097902},{"date":"2003-02-10","fuel":"diesel","current_price":1.662,"yoy_price":1.153,"absolute_change":0.509,"percentage_change":44.1457068517},{"date":"2003-02-17","fuel":"diesel","current_price":1.704,"yoy_price":1.156,"absolute_change":0.548,"percentage_change":47.4048442907},{"date":"2003-02-24","fuel":"diesel","current_price":1.709,"yoy_price":1.154,"absolute_change":0.555,"percentage_change":48.0935875217},{"date":"2003-03-03","fuel":"diesel","current_price":1.753,"yoy_price":1.173,"absolute_change":0.58,"percentage_change":49.4458653026},{"date":"2003-03-10","fuel":"diesel","current_price":1.771,"yoy_price":1.216,"absolute_change":0.555,"percentage_change":45.6414473684},{"date":"2003-03-17","fuel":"diesel","current_price":1.752,"yoy_price":1.251,"absolute_change":0.501,"percentage_change":40.0479616307},{"date":"2003-03-24","fuel":"diesel","current_price":1.662,"yoy_price":1.281,"absolute_change":0.381,"percentage_change":29.7423887588},{"date":"2003-03-31","fuel":"diesel","current_price":1.602,"yoy_price":1.295,"absolute_change":0.307,"percentage_change":23.7065637066},{"date":"2003-04-07","fuel":"diesel","current_price":1.554,"yoy_price":1.323,"absolute_change":0.231,"percentage_change":17.4603174603},{"date":"2003-04-14","fuel":"diesel","current_price":1.539,"yoy_price":1.32,"absolute_change":0.219,"percentage_change":16.5909090909},{"date":"2003-04-21","fuel":"diesel","current_price":1.529,"yoy_price":1.304,"absolute_change":0.225,"percentage_change":17.254601227},{"date":"2003-04-28","fuel":"diesel","current_price":1.508,"yoy_price":1.302,"absolute_change":0.206,"percentage_change":15.821812596},{"date":"2003-05-05","fuel":"diesel","current_price":1.484,"yoy_price":1.305,"absolute_change":0.179,"percentage_change":13.7164750958},{"date":"2003-05-12","fuel":"diesel","current_price":1.444,"yoy_price":1.299,"absolute_change":0.145,"percentage_change":11.1624326405},{"date":"2003-05-19","fuel":"diesel","current_price":1.443,"yoy_price":1.309,"absolute_change":0.134,"percentage_change":10.2368220015},{"date":"2003-05-26","fuel":"diesel","current_price":1.434,"yoy_price":1.308,"absolute_change":0.126,"percentage_change":9.6330275229},{"date":"2003-06-02","fuel":"diesel","current_price":1.423,"yoy_price":1.3,"absolute_change":0.123,"percentage_change":9.4615384615},{"date":"2003-06-09","fuel":"diesel","current_price":1.422,"yoy_price":1.286,"absolute_change":0.136,"percentage_change":10.5754276827},{"date":"2003-06-16","fuel":"diesel","current_price":1.432,"yoy_price":1.275,"absolute_change":0.157,"percentage_change":12.3137254902},{"date":"2003-06-23","fuel":"diesel","current_price":1.423,"yoy_price":1.281,"absolute_change":0.142,"percentage_change":11.0850897736},{"date":"2003-06-30","fuel":"diesel","current_price":1.42,"yoy_price":1.289,"absolute_change":0.131,"percentage_change":10.1629169899},{"date":"2003-07-07","fuel":"diesel","current_price":1.428,"yoy_price":1.294,"absolute_change":0.134,"percentage_change":10.3554868624},{"date":"2003-07-14","fuel":"diesel","current_price":1.435,"yoy_price":1.3,"absolute_change":0.135,"percentage_change":10.3846153846},{"date":"2003-07-21","fuel":"diesel","current_price":1.439,"yoy_price":1.311,"absolute_change":0.128,"percentage_change":9.763539283},{"date":"2003-07-28","fuel":"diesel","current_price":1.438,"yoy_price":1.303,"absolute_change":0.135,"percentage_change":10.3607060629},{"date":"2003-08-04","fuel":"diesel","current_price":1.453,"yoy_price":1.304,"absolute_change":0.149,"percentage_change":11.4263803681},{"date":"2003-08-11","fuel":"diesel","current_price":1.492,"yoy_price":1.303,"absolute_change":0.189,"percentage_change":14.5049884881},{"date":"2003-08-18","fuel":"diesel","current_price":1.498,"yoy_price":1.333,"absolute_change":0.165,"percentage_change":12.3780945236},{"date":"2003-08-25","fuel":"diesel","current_price":1.503,"yoy_price":1.37,"absolute_change":0.133,"percentage_change":9.7080291971},{"date":"2003-09-01","fuel":"diesel","current_price":1.501,"yoy_price":1.388,"absolute_change":0.113,"percentage_change":8.1412103746},{"date":"2003-09-08","fuel":"diesel","current_price":1.488,"yoy_price":1.396,"absolute_change":0.092,"percentage_change":6.5902578797},{"date":"2003-09-15","fuel":"diesel","current_price":1.471,"yoy_price":1.414,"absolute_change":0.057,"percentage_change":4.0311173975},{"date":"2003-09-22","fuel":"diesel","current_price":1.444,"yoy_price":1.417,"absolute_change":0.027,"percentage_change":1.9054340155},{"date":"2003-09-29","fuel":"diesel","current_price":1.429,"yoy_price":1.438,"absolute_change":-0.009,"percentage_change":-0.6258692629},{"date":"2003-10-06","fuel":"diesel","current_price":1.445,"yoy_price":1.46,"absolute_change":-0.015,"percentage_change":-1.0273972603},{"date":"2003-10-13","fuel":"diesel","current_price":1.483,"yoy_price":1.461,"absolute_change":0.022,"percentage_change":1.5058179329},{"date":"2003-10-20","fuel":"diesel","current_price":1.502,"yoy_price":1.469,"absolute_change":0.033,"percentage_change":2.2464261402},{"date":"2003-10-27","fuel":"diesel","current_price":1.495,"yoy_price":1.456,"absolute_change":0.039,"percentage_change":2.6785714286},{"date":"2003-11-03","fuel":"diesel","current_price":1.481,"yoy_price":1.442,"absolute_change":0.039,"percentage_change":2.7045769764},{"date":"2003-11-10","fuel":"diesel","current_price":1.476,"yoy_price":1.427,"absolute_change":0.049,"percentage_change":3.4337771549},{"date":"2003-11-17","fuel":"diesel","current_price":1.481,"yoy_price":1.405,"absolute_change":0.076,"percentage_change":5.409252669},{"date":"2003-11-24","fuel":"diesel","current_price":1.491,"yoy_price":1.405,"absolute_change":0.086,"percentage_change":6.1209964413},{"date":"2003-12-01","fuel":"diesel","current_price":1.476,"yoy_price":1.407,"absolute_change":0.069,"percentage_change":4.9040511727},{"date":"2003-12-08","fuel":"diesel","current_price":1.481,"yoy_price":1.405,"absolute_change":0.076,"percentage_change":5.409252669},{"date":"2003-12-15","fuel":"diesel","current_price":1.486,"yoy_price":1.401,"absolute_change":0.085,"percentage_change":6.0670949322},{"date":"2003-12-22","fuel":"diesel","current_price":1.504,"yoy_price":1.44,"absolute_change":0.064,"percentage_change":4.4444444444},{"date":"2003-12-29","fuel":"diesel","current_price":1.502,"yoy_price":1.491,"absolute_change":0.011,"percentage_change":0.7377598927},{"date":"2004-01-05","fuel":"diesel","current_price":1.503,"yoy_price":1.501,"absolute_change":0.002,"percentage_change":0.1332445037},{"date":"2004-01-12","fuel":"diesel","current_price":1.551,"yoy_price":1.478,"absolute_change":0.073,"percentage_change":4.9391069012},{"date":"2004-01-19","fuel":"diesel","current_price":1.559,"yoy_price":1.48,"absolute_change":0.079,"percentage_change":5.3378378378},{"date":"2004-01-26","fuel":"diesel","current_price":1.591,"yoy_price":1.492,"absolute_change":0.099,"percentage_change":6.6353887399},{"date":"2004-02-02","fuel":"diesel","current_price":1.581,"yoy_price":1.542,"absolute_change":0.039,"percentage_change":2.5291828794},{"date":"2004-02-09","fuel":"diesel","current_price":1.568,"yoy_price":1.662,"absolute_change":-0.094,"percentage_change":-5.6558363418},{"date":"2004-02-16","fuel":"diesel","current_price":1.584,"yoy_price":1.704,"absolute_change":-0.12,"percentage_change":-7.0422535211},{"date":"2004-02-23","fuel":"diesel","current_price":1.595,"yoy_price":1.709,"absolute_change":-0.114,"percentage_change":-6.6705675834},{"date":"2004-03-01","fuel":"diesel","current_price":1.619,"yoy_price":1.753,"absolute_change":-0.134,"percentage_change":-7.6440387906},{"date":"2004-03-08","fuel":"diesel","current_price":1.628,"yoy_price":1.771,"absolute_change":-0.143,"percentage_change":-8.0745341615},{"date":"2004-03-15","fuel":"diesel","current_price":1.617,"yoy_price":1.752,"absolute_change":-0.135,"percentage_change":-7.7054794521},{"date":"2004-03-22","fuel":"diesel","current_price":1.641,"yoy_price":1.662,"absolute_change":-0.021,"percentage_change":-1.2635379061},{"date":"2004-03-29","fuel":"diesel","current_price":1.642,"yoy_price":1.602,"absolute_change":0.04,"percentage_change":2.4968789014},{"date":"2004-04-05","fuel":"diesel","current_price":1.648,"yoy_price":1.554,"absolute_change":0.094,"percentage_change":6.0489060489},{"date":"2004-04-12","fuel":"diesel","current_price":1.679,"yoy_price":1.539,"absolute_change":0.14,"percentage_change":9.0968161144},{"date":"2004-04-19","fuel":"diesel","current_price":1.724,"yoy_price":1.529,"absolute_change":0.195,"percentage_change":12.7534336167},{"date":"2004-04-26","fuel":"diesel","current_price":1.718,"yoy_price":1.508,"absolute_change":0.21,"percentage_change":13.925729443},{"date":"2004-05-03","fuel":"diesel","current_price":1.717,"yoy_price":1.484,"absolute_change":0.233,"percentage_change":15.7008086253},{"date":"2004-05-10","fuel":"diesel","current_price":1.745,"yoy_price":1.444,"absolute_change":0.301,"percentage_change":20.8448753463},{"date":"2004-05-17","fuel":"diesel","current_price":1.763,"yoy_price":1.443,"absolute_change":0.32,"percentage_change":22.176022176},{"date":"2004-05-24","fuel":"diesel","current_price":1.761,"yoy_price":1.434,"absolute_change":0.327,"percentage_change":22.8033472803},{"date":"2004-05-31","fuel":"diesel","current_price":1.746,"yoy_price":1.423,"absolute_change":0.323,"percentage_change":22.6985242446},{"date":"2004-06-07","fuel":"diesel","current_price":1.734,"yoy_price":1.422,"absolute_change":0.312,"percentage_change":21.94092827},{"date":"2004-06-14","fuel":"diesel","current_price":1.711,"yoy_price":1.432,"absolute_change":0.279,"percentage_change":19.4832402235},{"date":"2004-06-21","fuel":"diesel","current_price":1.7,"yoy_price":1.423,"absolute_change":0.277,"percentage_change":19.4659170766},{"date":"2004-06-28","fuel":"diesel","current_price":1.7,"yoy_price":1.42,"absolute_change":0.28,"percentage_change":19.7183098592},{"date":"2004-07-05","fuel":"diesel","current_price":1.716,"yoy_price":1.428,"absolute_change":0.288,"percentage_change":20.1680672269},{"date":"2004-07-12","fuel":"diesel","current_price":1.74,"yoy_price":1.435,"absolute_change":0.305,"percentage_change":21.2543554007},{"date":"2004-07-19","fuel":"diesel","current_price":1.744,"yoy_price":1.439,"absolute_change":0.305,"percentage_change":21.1952744962},{"date":"2004-07-26","fuel":"diesel","current_price":1.754,"yoy_price":1.438,"absolute_change":0.316,"percentage_change":21.9749652295},{"date":"2004-08-02","fuel":"diesel","current_price":1.78,"yoy_price":1.453,"absolute_change":0.327,"percentage_change":22.5051617343},{"date":"2004-08-09","fuel":"diesel","current_price":1.814,"yoy_price":1.492,"absolute_change":0.322,"percentage_change":21.581769437},{"date":"2004-08-16","fuel":"diesel","current_price":1.825,"yoy_price":1.498,"absolute_change":0.327,"percentage_change":21.829105474},{"date":"2004-08-23","fuel":"diesel","current_price":1.874,"yoy_price":1.503,"absolute_change":0.371,"percentage_change":24.6839654025},{"date":"2004-08-30","fuel":"diesel","current_price":1.871,"yoy_price":1.501,"absolute_change":0.37,"percentage_change":24.6502331779},{"date":"2004-09-06","fuel":"diesel","current_price":1.869,"yoy_price":1.488,"absolute_change":0.381,"percentage_change":25.6048387097},{"date":"2004-09-13","fuel":"diesel","current_price":1.874,"yoy_price":1.471,"absolute_change":0.403,"percentage_change":27.3963290279},{"date":"2004-09-20","fuel":"diesel","current_price":1.912,"yoy_price":1.444,"absolute_change":0.468,"percentage_change":32.4099722992},{"date":"2004-09-27","fuel":"diesel","current_price":2.012,"yoy_price":1.429,"absolute_change":0.583,"percentage_change":40.7977606718},{"date":"2004-10-04","fuel":"diesel","current_price":2.053,"yoy_price":1.445,"absolute_change":0.608,"percentage_change":42.0761245675},{"date":"2004-10-11","fuel":"diesel","current_price":2.092,"yoy_price":1.483,"absolute_change":0.609,"percentage_change":41.0654079568},{"date":"2004-10-18","fuel":"diesel","current_price":2.18,"yoy_price":1.502,"absolute_change":0.678,"percentage_change":45.1398135819},{"date":"2004-10-25","fuel":"diesel","current_price":2.212,"yoy_price":1.495,"absolute_change":0.717,"percentage_change":47.9598662207},{"date":"2004-11-01","fuel":"diesel","current_price":2.206,"yoy_price":1.481,"absolute_change":0.725,"percentage_change":48.9534098582},{"date":"2004-11-08","fuel":"diesel","current_price":2.163,"yoy_price":1.476,"absolute_change":0.687,"percentage_change":46.5447154472},{"date":"2004-11-15","fuel":"diesel","current_price":2.132,"yoy_price":1.481,"absolute_change":0.651,"percentage_change":43.9567859554},{"date":"2004-11-22","fuel":"diesel","current_price":2.116,"yoy_price":1.491,"absolute_change":0.625,"percentage_change":41.918175721},{"date":"2004-11-29","fuel":"diesel","current_price":2.116,"yoy_price":1.476,"absolute_change":0.64,"percentage_change":43.3604336043},{"date":"2004-12-06","fuel":"diesel","current_price":2.069,"yoy_price":1.481,"absolute_change":0.588,"percentage_change":39.7029034436},{"date":"2004-12-13","fuel":"diesel","current_price":1.997,"yoy_price":1.486,"absolute_change":0.511,"percentage_change":34.3876177658},{"date":"2004-12-20","fuel":"diesel","current_price":1.984,"yoy_price":1.504,"absolute_change":0.48,"percentage_change":31.914893617},{"date":"2004-12-27","fuel":"diesel","current_price":1.987,"yoy_price":1.502,"absolute_change":0.485,"percentage_change":32.2902796272},{"date":"2005-01-03","fuel":"diesel","current_price":1.957,"yoy_price":1.503,"absolute_change":0.454,"percentage_change":30.2062541583},{"date":"2005-01-10","fuel":"diesel","current_price":1.934,"yoy_price":1.551,"absolute_change":0.383,"percentage_change":24.6937459703},{"date":"2005-01-17","fuel":"diesel","current_price":1.952,"yoy_price":1.559,"absolute_change":0.393,"percentage_change":25.208466966},{"date":"2005-01-24","fuel":"diesel","current_price":1.959,"yoy_price":1.591,"absolute_change":0.368,"percentage_change":23.130106851},{"date":"2005-01-31","fuel":"diesel","current_price":1.992,"yoy_price":1.581,"absolute_change":0.411,"percentage_change":25.9962049336},{"date":"2005-02-07","fuel":"diesel","current_price":1.983,"yoy_price":1.568,"absolute_change":0.415,"percentage_change":26.4668367347},{"date":"2005-02-14","fuel":"diesel","current_price":1.986,"yoy_price":1.584,"absolute_change":0.402,"percentage_change":25.3787878788},{"date":"2005-02-21","fuel":"diesel","current_price":2.02,"yoy_price":1.595,"absolute_change":0.425,"percentage_change":26.6457680251},{"date":"2005-02-28","fuel":"diesel","current_price":2.118,"yoy_price":1.619,"absolute_change":0.499,"percentage_change":30.8214947498},{"date":"2005-03-07","fuel":"diesel","current_price":2.168,"yoy_price":1.628,"absolute_change":0.54,"percentage_change":33.1695331695},{"date":"2005-03-14","fuel":"diesel","current_price":2.194,"yoy_price":1.617,"absolute_change":0.577,"percentage_change":35.6833642548},{"date":"2005-03-21","fuel":"diesel","current_price":2.244,"yoy_price":1.641,"absolute_change":0.603,"percentage_change":36.7458866545},{"date":"2005-03-28","fuel":"diesel","current_price":2.249,"yoy_price":1.642,"absolute_change":0.607,"percentage_change":36.9671132765},{"date":"2005-04-04","fuel":"diesel","current_price":2.303,"yoy_price":1.648,"absolute_change":0.655,"percentage_change":39.7451456311},{"date":"2005-04-11","fuel":"diesel","current_price":2.316,"yoy_price":1.679,"absolute_change":0.637,"percentage_change":37.9392495533},{"date":"2005-04-18","fuel":"diesel","current_price":2.259,"yoy_price":1.724,"absolute_change":0.535,"percentage_change":31.0324825986},{"date":"2005-04-25","fuel":"diesel","current_price":2.289,"yoy_price":1.718,"absolute_change":0.571,"percentage_change":33.2363213038},{"date":"2005-05-02","fuel":"diesel","current_price":2.262,"yoy_price":1.717,"absolute_change":0.545,"percentage_change":31.7414094351},{"date":"2005-05-09","fuel":"diesel","current_price":2.227,"yoy_price":1.745,"absolute_change":0.482,"percentage_change":27.6217765043},{"date":"2005-05-16","fuel":"diesel","current_price":2.189,"yoy_price":1.763,"absolute_change":0.426,"percentage_change":24.1633579126},{"date":"2005-05-23","fuel":"diesel","current_price":2.156,"yoy_price":1.761,"absolute_change":0.395,"percentage_change":22.4304372516},{"date":"2005-05-30","fuel":"diesel","current_price":2.16,"yoy_price":1.746,"absolute_change":0.414,"percentage_change":23.7113402062},{"date":"2005-06-06","fuel":"diesel","current_price":2.234,"yoy_price":1.734,"absolute_change":0.5,"percentage_change":28.8350634371},{"date":"2005-06-13","fuel":"diesel","current_price":2.276,"yoy_price":1.711,"absolute_change":0.565,"percentage_change":33.0216247808},{"date":"2005-06-20","fuel":"diesel","current_price":2.313,"yoy_price":1.7,"absolute_change":0.613,"percentage_change":36.0588235294},{"date":"2005-06-27","fuel":"diesel","current_price":2.336,"yoy_price":1.7,"absolute_change":0.636,"percentage_change":37.4117647059},{"date":"2005-07-04","fuel":"diesel","current_price":2.348,"yoy_price":1.716,"absolute_change":0.632,"percentage_change":36.8298368298},{"date":"2005-07-11","fuel":"diesel","current_price":2.408,"yoy_price":1.74,"absolute_change":0.668,"percentage_change":38.3908045977},{"date":"2005-07-18","fuel":"diesel","current_price":2.392,"yoy_price":1.744,"absolute_change":0.648,"percentage_change":37.1559633028},{"date":"2005-07-25","fuel":"diesel","current_price":2.342,"yoy_price":1.754,"absolute_change":0.588,"percentage_change":33.5233751425},{"date":"2005-08-01","fuel":"diesel","current_price":2.348,"yoy_price":1.78,"absolute_change":0.568,"percentage_change":31.9101123596},{"date":"2005-08-08","fuel":"diesel","current_price":2.407,"yoy_price":1.814,"absolute_change":0.593,"percentage_change":32.6901874311},{"date":"2005-08-15","fuel":"diesel","current_price":2.567,"yoy_price":1.825,"absolute_change":0.742,"percentage_change":40.6575342466},{"date":"2005-08-22","fuel":"diesel","current_price":2.588,"yoy_price":1.874,"absolute_change":0.714,"percentage_change":38.1003201708},{"date":"2005-08-29","fuel":"diesel","current_price":2.59,"yoy_price":1.871,"absolute_change":0.719,"percentage_change":38.4286477819},{"date":"2005-09-05","fuel":"diesel","current_price":2.898,"yoy_price":1.869,"absolute_change":1.029,"percentage_change":55.0561797753},{"date":"2005-09-12","fuel":"diesel","current_price":2.847,"yoy_price":1.874,"absolute_change":0.973,"percentage_change":51.9210245464},{"date":"2005-09-19","fuel":"diesel","current_price":2.732,"yoy_price":1.912,"absolute_change":0.82,"percentage_change":42.8870292887},{"date":"2005-09-26","fuel":"diesel","current_price":2.798,"yoy_price":2.012,"absolute_change":0.786,"percentage_change":39.0656063618},{"date":"2005-10-03","fuel":"diesel","current_price":3.144,"yoy_price":2.053,"absolute_change":1.091,"percentage_change":53.1417437896},{"date":"2005-10-10","fuel":"diesel","current_price":3.15,"yoy_price":2.092,"absolute_change":1.058,"percentage_change":50.5736137667},{"date":"2005-10-17","fuel":"diesel","current_price":3.148,"yoy_price":2.18,"absolute_change":0.968,"percentage_change":44.4036697248},{"date":"2005-10-24","fuel":"diesel","current_price":3.157,"yoy_price":2.212,"absolute_change":0.945,"percentage_change":42.7215189873},{"date":"2005-10-31","fuel":"diesel","current_price":2.876,"yoy_price":2.206,"absolute_change":0.67,"percentage_change":30.3717135086},{"date":"2005-11-07","fuel":"diesel","current_price":2.698,"yoy_price":2.163,"absolute_change":0.535,"percentage_change":24.7341655109},{"date":"2005-11-14","fuel":"diesel","current_price":2.602,"yoy_price":2.132,"absolute_change":0.47,"percentage_change":22.0450281426},{"date":"2005-11-21","fuel":"diesel","current_price":2.513,"yoy_price":2.116,"absolute_change":0.397,"percentage_change":18.7618147448},{"date":"2005-11-28","fuel":"diesel","current_price":2.479,"yoy_price":2.116,"absolute_change":0.363,"percentage_change":17.1550094518},{"date":"2005-12-05","fuel":"diesel","current_price":2.425,"yoy_price":2.069,"absolute_change":0.356,"percentage_change":17.2063798937},{"date":"2005-12-12","fuel":"diesel","current_price":2.436,"yoy_price":1.997,"absolute_change":0.439,"percentage_change":21.9829744617},{"date":"2005-12-19","fuel":"diesel","current_price":2.462,"yoy_price":1.984,"absolute_change":0.478,"percentage_change":24.0927419355},{"date":"2005-12-26","fuel":"diesel","current_price":2.448,"yoy_price":1.987,"absolute_change":0.461,"percentage_change":23.200805234},{"date":"2006-01-02","fuel":"diesel","current_price":2.442,"yoy_price":1.957,"absolute_change":0.485,"percentage_change":24.7828308636},{"date":"2006-01-09","fuel":"diesel","current_price":2.485,"yoy_price":1.934,"absolute_change":0.551,"percentage_change":28.4901758014},{"date":"2006-01-16","fuel":"diesel","current_price":2.449,"yoy_price":1.952,"absolute_change":0.497,"percentage_change":25.4610655738},{"date":"2006-01-23","fuel":"diesel","current_price":2.472,"yoy_price":1.959,"absolute_change":0.513,"percentage_change":26.1868300153},{"date":"2006-01-30","fuel":"diesel","current_price":2.489,"yoy_price":1.992,"absolute_change":0.497,"percentage_change":24.9497991968},{"date":"2006-02-06","fuel":"diesel","current_price":2.499,"yoy_price":1.983,"absolute_change":0.516,"percentage_change":26.0211800303},{"date":"2006-02-13","fuel":"diesel","current_price":2.476,"yoy_price":1.986,"absolute_change":0.49,"percentage_change":24.6727089627},{"date":"2006-02-20","fuel":"diesel","current_price":2.455,"yoy_price":2.02,"absolute_change":0.435,"percentage_change":21.5346534653},{"date":"2006-02-27","fuel":"diesel","current_price":2.471,"yoy_price":2.118,"absolute_change":0.353,"percentage_change":16.6666666667},{"date":"2006-03-06","fuel":"diesel","current_price":2.545,"yoy_price":2.168,"absolute_change":0.377,"percentage_change":17.389298893},{"date":"2006-03-13","fuel":"diesel","current_price":2.543,"yoy_price":2.194,"absolute_change":0.349,"percentage_change":15.9070191431},{"date":"2006-03-20","fuel":"diesel","current_price":2.581,"yoy_price":2.244,"absolute_change":0.337,"percentage_change":15.0178253119},{"date":"2006-03-27","fuel":"diesel","current_price":2.565,"yoy_price":2.249,"absolute_change":0.316,"percentage_change":14.0506891952},{"date":"2006-04-03","fuel":"diesel","current_price":2.617,"yoy_price":2.303,"absolute_change":0.314,"percentage_change":13.6343899262},{"date":"2006-04-10","fuel":"diesel","current_price":2.654,"yoy_price":2.316,"absolute_change":0.338,"percentage_change":14.5941278066},{"date":"2006-04-17","fuel":"diesel","current_price":2.765,"yoy_price":2.259,"absolute_change":0.506,"percentage_change":22.399291722},{"date":"2006-04-24","fuel":"diesel","current_price":2.876,"yoy_price":2.289,"absolute_change":0.587,"percentage_change":25.6443861948},{"date":"2006-05-01","fuel":"diesel","current_price":2.896,"yoy_price":2.262,"absolute_change":0.634,"percentage_change":28.0282935455},{"date":"2006-05-08","fuel":"diesel","current_price":2.897,"yoy_price":2.227,"absolute_change":0.67,"percentage_change":30.0853165694},{"date":"2006-05-15","fuel":"diesel","current_price":2.92,"yoy_price":2.189,"absolute_change":0.731,"percentage_change":33.394243947},{"date":"2006-05-22","fuel":"diesel","current_price":2.888,"yoy_price":2.156,"absolute_change":0.732,"percentage_change":33.9517625232},{"date":"2006-05-29","fuel":"diesel","current_price":2.882,"yoy_price":2.16,"absolute_change":0.722,"percentage_change":33.4259259259},{"date":"2006-06-05","fuel":"diesel","current_price":2.89,"yoy_price":2.234,"absolute_change":0.656,"percentage_change":29.3643688451},{"date":"2006-06-12","fuel":"diesel","current_price":2.918,"yoy_price":2.276,"absolute_change":0.642,"percentage_change":28.2073813708},{"date":"2006-06-19","fuel":"diesel","current_price":2.915,"yoy_price":2.313,"absolute_change":0.602,"percentage_change":26.0268050151},{"date":"2006-06-26","fuel":"diesel","current_price":2.867,"yoy_price":2.336,"absolute_change":0.531,"percentage_change":22.7311643836},{"date":"2006-07-03","fuel":"diesel","current_price":2.898,"yoy_price":2.348,"absolute_change":0.55,"percentage_change":23.4241908007},{"date":"2006-07-10","fuel":"diesel","current_price":2.918,"yoy_price":2.408,"absolute_change":0.51,"percentage_change":21.1794019934},{"date":"2006-07-17","fuel":"diesel","current_price":2.926,"yoy_price":2.392,"absolute_change":0.534,"percentage_change":22.3244147157},{"date":"2006-07-24","fuel":"diesel","current_price":2.946,"yoy_price":2.342,"absolute_change":0.604,"percentage_change":25.7899231426},{"date":"2006-07-31","fuel":"diesel","current_price":2.98,"yoy_price":2.348,"absolute_change":0.632,"percentage_change":26.9165247019},{"date":"2006-08-07","fuel":"diesel","current_price":3.055,"yoy_price":2.407,"absolute_change":0.648,"percentage_change":26.9214790195},{"date":"2006-08-14","fuel":"diesel","current_price":3.065,"yoy_price":2.567,"absolute_change":0.498,"percentage_change":19.400077912},{"date":"2006-08-21","fuel":"diesel","current_price":3.033,"yoy_price":2.588,"absolute_change":0.445,"percentage_change":17.1947449768},{"date":"2006-08-28","fuel":"diesel","current_price":3.027,"yoy_price":2.59,"absolute_change":0.437,"percentage_change":16.8725868726},{"date":"2006-09-04","fuel":"diesel","current_price":2.967,"yoy_price":2.898,"absolute_change":0.069,"percentage_change":2.380952381},{"date":"2006-09-11","fuel":"diesel","current_price":2.857,"yoy_price":2.847,"absolute_change":0.01,"percentage_change":0.3512469266},{"date":"2006-09-18","fuel":"diesel","current_price":2.713,"yoy_price":2.732,"absolute_change":-0.019,"percentage_change":-0.6954612006},{"date":"2006-09-25","fuel":"diesel","current_price":2.595,"yoy_price":2.798,"absolute_change":-0.203,"percentage_change":-7.2551822731},{"date":"2006-10-02","fuel":"diesel","current_price":2.546,"yoy_price":3.144,"absolute_change":-0.598,"percentage_change":-19.0203562341},{"date":"2006-10-09","fuel":"diesel","current_price":2.506,"yoy_price":3.15,"absolute_change":-0.644,"percentage_change":-20.4444444444},{"date":"2006-10-16","fuel":"diesel","current_price":2.503,"yoy_price":3.148,"absolute_change":-0.645,"percentage_change":-20.4891994917},{"date":"2006-10-23","fuel":"diesel","current_price":2.524,"yoy_price":3.157,"absolute_change":-0.633,"percentage_change":-20.0506810263},{"date":"2006-10-30","fuel":"diesel","current_price":2.517,"yoy_price":2.876,"absolute_change":-0.359,"percentage_change":-12.4826147427},{"date":"2006-11-06","fuel":"diesel","current_price":2.506,"yoy_price":2.698,"absolute_change":-0.192,"percentage_change":-7.1163825056},{"date":"2006-11-13","fuel":"diesel","current_price":2.552,"yoy_price":2.602,"absolute_change":-0.05,"percentage_change":-1.9215987702},{"date":"2006-11-20","fuel":"diesel","current_price":2.553,"yoy_price":2.513,"absolute_change":0.04,"percentage_change":1.5917230402},{"date":"2006-11-27","fuel":"diesel","current_price":2.567,"yoy_price":2.479,"absolute_change":0.088,"percentage_change":3.5498184752},{"date":"2006-12-04","fuel":"diesel","current_price":2.618,"yoy_price":2.425,"absolute_change":0.193,"percentage_change":7.9587628866},{"date":"2006-12-11","fuel":"diesel","current_price":2.621,"yoy_price":2.436,"absolute_change":0.185,"percentage_change":7.5944170772},{"date":"2006-12-18","fuel":"diesel","current_price":2.606,"yoy_price":2.462,"absolute_change":0.144,"percentage_change":5.8489033306},{"date":"2006-12-25","fuel":"diesel","current_price":2.596,"yoy_price":2.448,"absolute_change":0.148,"percentage_change":6.045751634},{"date":"2007-01-01","fuel":"diesel","current_price":2.58,"yoy_price":2.442,"absolute_change":0.138,"percentage_change":5.6511056511},{"date":"2007-01-08","fuel":"diesel","current_price":2.537,"yoy_price":2.485,"absolute_change":0.052,"percentage_change":2.092555332},{"date":"2007-01-15","fuel":"diesel","current_price":2.463,"yoy_price":2.449,"absolute_change":0.014,"percentage_change":0.5716619028},{"date":"2007-01-22","fuel":"diesel","current_price":2.43,"yoy_price":2.472,"absolute_change":-0.042,"percentage_change":-1.6990291262},{"date":"2007-01-29","fuel":"diesel","current_price":2.413,"yoy_price":2.489,"absolute_change":-0.076,"percentage_change":-3.0534351145},{"date":"2007-02-05","fuel":"diesel","current_price":2.4256666667,"yoy_price":2.499,"absolute_change":-0.0733333333,"percentage_change":-2.9345071362},{"date":"2007-02-12","fuel":"diesel","current_price":2.466,"yoy_price":2.476,"absolute_change":-0.01,"percentage_change":-0.4038772213},{"date":"2007-02-19","fuel":"diesel","current_price":2.481,"yoy_price":2.455,"absolute_change":0.026,"percentage_change":1.0590631365},{"date":"2007-02-26","fuel":"diesel","current_price":2.5423333333,"yoy_price":2.471,"absolute_change":0.0713333333,"percentage_change":2.8868204506},{"date":"2007-03-05","fuel":"diesel","current_price":2.6166666667,"yoy_price":2.545,"absolute_change":0.0716666667,"percentage_change":2.8159790439},{"date":"2007-03-12","fuel":"diesel","current_price":2.679,"yoy_price":2.543,"absolute_change":0.136,"percentage_change":5.3480141565},{"date":"2007-03-19","fuel":"diesel","current_price":2.673,"yoy_price":2.581,"absolute_change":0.092,"percentage_change":3.5645098799},{"date":"2007-03-26","fuel":"diesel","current_price":2.6666666667,"yoy_price":2.565,"absolute_change":0.1016666667,"percentage_change":3.9636127355},{"date":"2007-04-02","fuel":"diesel","current_price":2.7813333333,"yoy_price":2.617,"absolute_change":0.1643333333,"percentage_change":6.2794548465},{"date":"2007-04-09","fuel":"diesel","current_price":2.8306666667,"yoy_price":2.654,"absolute_change":0.1766666667,"percentage_change":6.65661894},{"date":"2007-04-16","fuel":"diesel","current_price":2.8696666667,"yoy_price":2.765,"absolute_change":0.1046666667,"percentage_change":3.7854128993},{"date":"2007-04-23","fuel":"diesel","current_price":2.8416666667,"yoy_price":2.876,"absolute_change":-0.0343333333,"percentage_change":-1.1937876681},{"date":"2007-04-30","fuel":"diesel","current_price":2.796,"yoy_price":2.896,"absolute_change":-0.1,"percentage_change":-3.453038674},{"date":"2007-05-07","fuel":"diesel","current_price":2.7746666667,"yoy_price":2.897,"absolute_change":-0.1223333333,"percentage_change":-4.2227591762},{"date":"2007-05-14","fuel":"diesel","current_price":2.755,"yoy_price":2.92,"absolute_change":-0.165,"percentage_change":-5.6506849315},{"date":"2007-05-21","fuel":"diesel","current_price":2.7883333333,"yoy_price":2.888,"absolute_change":-0.0996666667,"percentage_change":-3.4510618652},{"date":"2007-05-28","fuel":"diesel","current_price":2.8016666667,"yoy_price":2.882,"absolute_change":-0.0803333333,"percentage_change":-2.7874161462},{"date":"2007-06-04","fuel":"diesel","current_price":2.7833333333,"yoy_price":2.89,"absolute_change":-0.1066666667,"percentage_change":-3.69088812},{"date":"2007-06-11","fuel":"diesel","current_price":2.774,"yoy_price":2.918,"absolute_change":-0.144,"percentage_change":-4.9348869088},{"date":"2007-06-18","fuel":"diesel","current_price":2.7916666667,"yoy_price":2.915,"absolute_change":-0.1233333333,"percentage_change":-4.2309891366},{"date":"2007-06-25","fuel":"diesel","current_price":2.8226666667,"yoy_price":2.867,"absolute_change":-0.0443333333,"percentage_change":-1.5463318219},{"date":"2007-07-02","fuel":"diesel","current_price":2.8166666667,"yoy_price":2.898,"absolute_change":-0.0813333333,"percentage_change":-2.8065332413},{"date":"2007-07-09","fuel":"diesel","current_price":2.839,"yoy_price":2.918,"absolute_change":-0.079,"percentage_change":-2.7073337903},{"date":"2007-07-16","fuel":"diesel","current_price":2.875,"yoy_price":2.926,"absolute_change":-0.051,"percentage_change":-1.7429938483},{"date":"2007-07-23","fuel":"diesel","current_price":2.8736666667,"yoy_price":2.946,"absolute_change":-0.0723333333,"percentage_change":-2.4553066305},{"date":"2007-07-30","fuel":"diesel","current_price":2.872,"yoy_price":2.98,"absolute_change":-0.108,"percentage_change":-3.6241610738},{"date":"2007-08-06","fuel":"diesel","current_price":2.8846666667,"yoy_price":3.055,"absolute_change":-0.1703333333,"percentage_change":-5.5755591926},{"date":"2007-08-13","fuel":"diesel","current_price":2.8326666667,"yoy_price":3.065,"absolute_change":-0.2323333333,"percentage_change":-7.580206634},{"date":"2007-08-20","fuel":"diesel","current_price":2.8573333333,"yoy_price":3.033,"absolute_change":-0.1756666667,"percentage_change":-5.7918452577},{"date":"2007-08-27","fuel":"diesel","current_price":2.8523333333,"yoy_price":3.027,"absolute_change":-0.1746666667,"percentage_change":-5.7702896157},{"date":"2007-09-03","fuel":"diesel","current_price":2.8843333333,"yoy_price":2.967,"absolute_change":-0.0826666667,"percentage_change":-2.7862037973},{"date":"2007-09-10","fuel":"diesel","current_price":2.9156666667,"yoy_price":2.857,"absolute_change":0.0586666667,"percentage_change":2.0534360051},{"date":"2007-09-17","fuel":"diesel","current_price":2.9563333333,"yoy_price":2.713,"absolute_change":0.2433333333,"percentage_change":8.9691608306},{"date":"2007-09-24","fuel":"diesel","current_price":3.026,"yoy_price":2.595,"absolute_change":0.431,"percentage_change":16.6088631985},{"date":"2007-10-01","fuel":"diesel","current_price":3.04,"yoy_price":2.546,"absolute_change":0.494,"percentage_change":19.4029850746},{"date":"2007-10-08","fuel":"diesel","current_price":3.022,"yoy_price":2.506,"absolute_change":0.516,"percentage_change":20.5905826018},{"date":"2007-10-15","fuel":"diesel","current_price":3.0226666667,"yoy_price":2.503,"absolute_change":0.5196666667,"percentage_change":20.7617525636},{"date":"2007-10-22","fuel":"diesel","current_price":3.0756666667,"yoy_price":2.524,"absolute_change":0.5516666667,"percentage_change":21.8568409931},{"date":"2007-10-29","fuel":"diesel","current_price":3.141,"yoy_price":2.517,"absolute_change":0.624,"percentage_change":24.7914183552},{"date":"2007-11-05","fuel":"diesel","current_price":3.2913333333,"yoy_price":2.506,"absolute_change":0.7853333333,"percentage_change":31.3381218409},{"date":"2007-11-12","fuel":"diesel","current_price":3.4103333333,"yoy_price":2.552,"absolute_change":0.8583333333,"percentage_change":33.6337513062},{"date":"2007-11-19","fuel":"diesel","current_price":3.3896666667,"yoy_price":2.553,"absolute_change":0.8366666667,"percentage_change":32.7719023371},{"date":"2007-11-26","fuel":"diesel","current_price":3.4273333333,"yoy_price":2.567,"absolute_change":0.8603333333,"percentage_change":33.5151279055},{"date":"2007-12-03","fuel":"diesel","current_price":3.393,"yoy_price":2.618,"absolute_change":0.775,"percentage_change":29.602750191},{"date":"2007-12-10","fuel":"diesel","current_price":3.2963333333,"yoy_price":2.621,"absolute_change":0.6753333333,"percentage_change":25.7662469795},{"date":"2007-12-17","fuel":"diesel","current_price":3.2816666667,"yoy_price":2.606,"absolute_change":0.6756666667,"percentage_change":25.9273471476},{"date":"2007-12-24","fuel":"diesel","current_price":3.2846666667,"yoy_price":2.596,"absolute_change":0.6886666667,"percentage_change":26.5279917822},{"date":"2007-12-31","fuel":"diesel","current_price":3.3243333333,"yoy_price":2.58,"absolute_change":0.7443333333,"percentage_change":28.850129199},{"date":"2008-01-07","fuel":"diesel","current_price":3.3546666667,"yoy_price":2.537,"absolute_change":0.8176666667,"percentage_change":32.2296675864},{"date":"2008-01-14","fuel":"diesel","current_price":3.2986666667,"yoy_price":2.463,"absolute_change":0.8356666667,"percentage_change":33.9288131006},{"date":"2008-01-21","fuel":"diesel","current_price":3.2416666667,"yoy_price":2.43,"absolute_change":0.8116666667,"percentage_change":33.401920439},{"date":"2008-01-28","fuel":"diesel","current_price":3.234,"yoy_price":2.413,"absolute_change":0.821,"percentage_change":34.0240364691},{"date":"2008-02-04","fuel":"diesel","current_price":3.2593333333,"yoy_price":2.4256666667,"absolute_change":0.8336666667,"percentage_change":34.3685584719},{"date":"2008-02-11","fuel":"diesel","current_price":3.258,"yoy_price":2.466,"absolute_change":0.792,"percentage_change":32.1167883212},{"date":"2008-02-18","fuel":"diesel","current_price":3.3786666667,"yoy_price":2.481,"absolute_change":0.8976666667,"percentage_change":36.1816471853},{"date":"2008-02-25","fuel":"diesel","current_price":3.5403333333,"yoy_price":2.5423333333,"absolute_change":0.998,"percentage_change":39.2552773043},{"date":"2008-03-03","fuel":"diesel","current_price":3.6403333333,"yoy_price":2.6166666667,"absolute_change":1.0236666667,"percentage_change":39.1210191083},{"date":"2008-03-10","fuel":"diesel","current_price":3.806,"yoy_price":2.679,"absolute_change":1.127,"percentage_change":42.0679357969},{"date":"2008-03-17","fuel":"diesel","current_price":3.96,"yoy_price":2.673,"absolute_change":1.287,"percentage_change":48.1481481481},{"date":"2008-03-24","fuel":"diesel","current_price":3.973,"yoy_price":2.6666666667,"absolute_change":1.3063333333,"percentage_change":48.9875},{"date":"2008-03-31","fuel":"diesel","current_price":3.9416666667,"yoy_price":2.7813333333,"absolute_change":1.1603333333,"percentage_change":41.7186001918},{"date":"2008-04-07","fuel":"diesel","current_price":3.932,"yoy_price":2.8306666667,"absolute_change":1.1013333333,"percentage_change":38.9072067829},{"date":"2008-04-14","fuel":"diesel","current_price":4.0383333333,"yoy_price":2.8696666667,"absolute_change":1.1686666667,"percentage_change":40.7248228598},{"date":"2008-04-21","fuel":"diesel","current_price":4.1216666667,"yoy_price":2.8416666667,"absolute_change":1.28,"percentage_change":45.0439882698},{"date":"2008-04-28","fuel":"diesel","current_price":4.154,"yoy_price":2.796,"absolute_change":1.358,"percentage_change":48.5693848355},{"date":"2008-05-05","fuel":"diesel","current_price":4.12,"yoy_price":2.7746666667,"absolute_change":1.3453333333,"percentage_change":48.4863046612},{"date":"2008-05-12","fuel":"diesel","current_price":4.3113333333,"yoy_price":2.755,"absolute_change":1.5563333333,"percentage_change":56.4912280702},{"date":"2008-05-19","fuel":"diesel","current_price":4.4823333333,"yoy_price":2.7883333333,"absolute_change":1.694,"percentage_change":60.7531380753},{"date":"2008-05-26","fuel":"diesel","current_price":4.7043333333,"yoy_price":2.8016666667,"absolute_change":1.9026666667,"percentage_change":67.9119571684},{"date":"2008-06-02","fuel":"diesel","current_price":4.6863333333,"yoy_price":2.7833333333,"absolute_change":1.903,"percentage_change":68.371257485},{"date":"2008-06-09","fuel":"diesel","current_price":4.668,"yoy_price":2.774,"absolute_change":1.894,"percentage_change":68.2768565249},{"date":"2008-06-16","fuel":"diesel","current_price":4.6666666667,"yoy_price":2.7916666667,"absolute_change":1.875,"percentage_change":67.1641791045},{"date":"2008-06-23","fuel":"diesel","current_price":4.6196666667,"yoy_price":2.8226666667,"absolute_change":1.797,"percentage_change":63.6632026453},{"date":"2008-06-30","fuel":"diesel","current_price":4.6186666667,"yoy_price":2.8166666667,"absolute_change":1.802,"percentage_change":63.9763313609},{"date":"2008-07-07","fuel":"diesel","current_price":4.712,"yoy_price":2.839,"absolute_change":1.873,"percentage_change":65.973934484},{"date":"2008-07-14","fuel":"diesel","current_price":4.7473333333,"yoy_price":2.875,"absolute_change":1.8723333333,"percentage_change":65.1246376812},{"date":"2008-07-21","fuel":"diesel","current_price":4.692,"yoy_price":2.8736666667,"absolute_change":1.8183333333,"percentage_change":63.275722074},{"date":"2008-07-28","fuel":"diesel","current_price":4.5763333333,"yoy_price":2.872,"absolute_change":1.7043333333,"percentage_change":59.343082637},{"date":"2008-08-04","fuel":"diesel","current_price":4.4706666667,"yoy_price":2.8846666667,"absolute_change":1.586,"percentage_change":54.9803559048},{"date":"2008-08-11","fuel":"diesel","current_price":4.3203333333,"yoy_price":2.8326666667,"absolute_change":1.4876666667,"percentage_change":52.5182395858},{"date":"2008-08-18","fuel":"diesel","current_price":4.176,"yoy_price":2.8573333333,"absolute_change":1.3186666667,"percentage_change":46.1502566496},{"date":"2008-08-25","fuel":"diesel","current_price":4.114,"yoy_price":2.8523333333,"absolute_change":1.2616666667,"percentage_change":44.2327918663},{"date":"2008-09-01","fuel":"diesel","current_price":4.0903333333,"yoy_price":2.8843333333,"absolute_change":1.206,"percentage_change":41.8120882931},{"date":"2008-09-08","fuel":"diesel","current_price":4.0233333333,"yoy_price":2.9156666667,"absolute_change":1.1076666667,"percentage_change":37.9901680576},{"date":"2008-09-15","fuel":"diesel","current_price":3.997,"yoy_price":2.9563333333,"absolute_change":1.0406666667,"percentage_change":35.2012628256},{"date":"2008-09-22","fuel":"diesel","current_price":3.9366666667,"yoy_price":3.026,"absolute_change":0.9106666667,"percentage_change":30.094734523},{"date":"2008-09-29","fuel":"diesel","current_price":3.9383333333,"yoy_price":3.04,"absolute_change":0.8983333333,"percentage_change":29.5504385965},{"date":"2008-10-06","fuel":"diesel","current_price":3.8476666667,"yoy_price":3.022,"absolute_change":0.8256666667,"percentage_change":27.3218619016},{"date":"2008-10-13","fuel":"diesel","current_price":3.6296666667,"yoy_price":3.0226666667,"absolute_change":0.607,"percentage_change":20.0816056462},{"date":"2008-10-20","fuel":"diesel","current_price":3.4456666667,"yoy_price":3.0756666667,"absolute_change":0.37,"percentage_change":12.0299122142},{"date":"2008-10-27","fuel":"diesel","current_price":3.259,"yoy_price":3.141,"absolute_change":0.118,"percentage_change":3.7567653613},{"date":"2008-11-03","fuel":"diesel","current_price":3.0606666667,"yoy_price":3.2913333333,"absolute_change":-0.2306666667,"percentage_change":-7.0083046384},{"date":"2008-11-10","fuel":"diesel","current_price":2.9103333333,"yoy_price":3.4103333333,"absolute_change":-0.5,"percentage_change":-14.6613234288},{"date":"2008-11-17","fuel":"diesel","current_price":2.7766666667,"yoy_price":3.3896666667,"absolute_change":-0.613,"percentage_change":-18.0843740781},{"date":"2008-11-24","fuel":"diesel","current_price":2.637,"yoy_price":3.4273333333,"absolute_change":-0.7903333333,"percentage_change":-23.0597160086},{"date":"2008-12-01","fuel":"diesel","current_price":2.5943333333,"yoy_price":3.393,"absolute_change":-0.7986666667,"percentage_change":-23.5386580214},{"date":"2008-12-08","fuel":"diesel","current_price":2.519,"yoy_price":3.2963333333,"absolute_change":-0.7773333333,"percentage_change":-23.5817575083},{"date":"2008-12-15","fuel":"diesel","current_price":2.426,"yoy_price":3.2816666667,"absolute_change":-0.8556666667,"percentage_change":-26.0741493144},{"date":"2008-12-22","fuel":"diesel","current_price":2.3695,"yoy_price":3.2846666667,"absolute_change":-0.9151666667,"percentage_change":-27.8617820175},{"date":"2008-12-29","fuel":"diesel","current_price":2.331,"yoy_price":3.3243333333,"absolute_change":-0.9933333333,"percentage_change":-29.8806778301},{"date":"2009-01-05","fuel":"diesel","current_price":2.295,"yoy_price":3.3546666667,"absolute_change":-1.0596666667,"percentage_change":-31.5878378378},{"date":"2009-01-12","fuel":"diesel","current_price":2.319,"yoy_price":3.2986666667,"absolute_change":-0.9796666667,"percentage_change":-29.6988682296},{"date":"2009-01-19","fuel":"diesel","current_price":2.3015,"yoy_price":3.2416666667,"absolute_change":-0.9401666667,"percentage_change":-29.0025706941},{"date":"2009-01-26","fuel":"diesel","current_price":2.273,"yoy_price":3.234,"absolute_change":-0.961,"percentage_change":-29.7155225727},{"date":"2009-02-02","fuel":"diesel","current_price":2.251,"yoy_price":3.2593333333,"absolute_change":-1.0083333333,"percentage_change":-30.936796891},{"date":"2009-02-09","fuel":"diesel","current_price":2.2245,"yoy_price":3.258,"absolute_change":-1.0335,"percentage_change":-31.7219152855},{"date":"2009-02-16","fuel":"diesel","current_price":2.1915,"yoy_price":3.3786666667,"absolute_change":-1.1871666667,"percentage_change":-35.1371349645},{"date":"2009-02-23","fuel":"diesel","current_price":2.134,"yoy_price":3.5403333333,"absolute_change":-1.4063333333,"percentage_change":-39.7231899068},{"date":"2009-03-02","fuel":"diesel","current_price":2.091,"yoy_price":3.6403333333,"absolute_change":-1.5493333333,"percentage_change":-42.5602051094},{"date":"2009-03-09","fuel":"diesel","current_price":2.048,"yoy_price":3.806,"absolute_change":-1.758,"percentage_change":-46.190225959},{"date":"2009-03-16","fuel":"diesel","current_price":2.02,"yoy_price":3.96,"absolute_change":-1.94,"percentage_change":-48.9898989899},{"date":"2009-03-23","fuel":"diesel","current_price":2.0915,"yoy_price":3.973,"absolute_change":-1.8815,"percentage_change":-47.3571608356},{"date":"2009-03-30","fuel":"diesel","current_price":2.223,"yoy_price":3.9416666667,"absolute_change":-1.7186666667,"percentage_change":-43.6025369979},{"date":"2009-04-06","fuel":"diesel","current_price":2.2305,"yoy_price":3.932,"absolute_change":-1.7015,"percentage_change":-43.2731434385},{"date":"2009-04-13","fuel":"diesel","current_price":2.2315,"yoy_price":4.0383333333,"absolute_change":-1.8068333333,"percentage_change":-44.7420553033},{"date":"2009-04-20","fuel":"diesel","current_price":2.2235,"yoy_price":4.1216666667,"absolute_change":-1.8981666667,"percentage_change":-46.0533764658},{"date":"2009-04-27","fuel":"diesel","current_price":2.204,"yoy_price":4.154,"absolute_change":-1.95,"percentage_change":-46.9427058257},{"date":"2009-05-04","fuel":"diesel","current_price":2.1885,"yoy_price":4.12,"absolute_change":-1.9315,"percentage_change":-46.8810679612},{"date":"2009-05-11","fuel":"diesel","current_price":2.2195,"yoy_price":4.3113333333,"absolute_change":-2.0918333333,"percentage_change":-48.5194062162},{"date":"2009-05-18","fuel":"diesel","current_price":2.234,"yoy_price":4.4823333333,"absolute_change":-2.2483333333,"percentage_change":-50.1598869636},{"date":"2009-05-25","fuel":"diesel","current_price":2.276,"yoy_price":4.7043333333,"absolute_change":-2.4283333333,"percentage_change":-51.6190746121},{"date":"2009-06-01","fuel":"diesel","current_price":2.353,"yoy_price":4.6863333333,"absolute_change":-2.3333333333,"percentage_change":-49.7901699979},{"date":"2009-06-08","fuel":"diesel","current_price":2.4995,"yoy_price":4.668,"absolute_change":-2.1685,"percentage_change":-46.4545844045},{"date":"2009-06-15","fuel":"diesel","current_price":2.5735,"yoy_price":4.6666666667,"absolute_change":-2.0931666667,"percentage_change":-44.8535714286},{"date":"2009-06-22","fuel":"diesel","current_price":2.6175,"yoy_price":4.6196666667,"absolute_change":-2.0021666667,"percentage_change":-43.340067826},{"date":"2009-06-29","fuel":"diesel","current_price":2.61,"yoy_price":4.6186666667,"absolute_change":-2.0086666667,"percentage_change":-43.4901847575},{"date":"2009-07-06","fuel":"diesel","current_price":2.596,"yoy_price":4.712,"absolute_change":-2.116,"percentage_change":-44.9066213922},{"date":"2009-07-13","fuel":"diesel","current_price":2.544,"yoy_price":4.7473333333,"absolute_change":-2.2033333333,"percentage_change":-46.4120207836},{"date":"2009-07-20","fuel":"diesel","current_price":2.4985,"yoy_price":4.692,"absolute_change":-2.1935,"percentage_change":-46.7497868713},{"date":"2009-07-27","fuel":"diesel","current_price":2.53,"yoy_price":4.5763333333,"absolute_change":-2.0463333333,"percentage_change":-44.7155655911},{"date":"2009-08-03","fuel":"diesel","current_price":2.552,"yoy_price":4.4706666667,"absolute_change":-1.9186666667,"percentage_change":-42.9167909335},{"date":"2009-08-10","fuel":"diesel","current_price":2.6265,"yoy_price":4.3203333333,"absolute_change":-1.6938333333,"percentage_change":-39.2060797778},{"date":"2009-08-17","fuel":"diesel","current_price":2.654,"yoy_price":4.176,"absolute_change":-1.522,"percentage_change":-36.4463601533},{"date":"2009-08-24","fuel":"diesel","current_price":2.67,"yoy_price":4.114,"absolute_change":-1.444,"percentage_change":-35.0996596986},{"date":"2009-08-31","fuel":"diesel","current_price":2.6765,"yoy_price":4.0903333333,"absolute_change":-1.4138333333,"percentage_change":-34.5652351072},{"date":"2009-09-07","fuel":"diesel","current_price":2.6485,"yoy_price":4.0233333333,"absolute_change":-1.3748333333,"percentage_change":-34.1714995857},{"date":"2009-09-14","fuel":"diesel","current_price":2.636,"yoy_price":3.997,"absolute_change":-1.361,"percentage_change":-34.0505379034},{"date":"2009-09-21","fuel":"diesel","current_price":2.624,"yoy_price":3.9366666667,"absolute_change":-1.3126666667,"percentage_change":-33.3446232007},{"date":"2009-09-28","fuel":"diesel","current_price":2.6035,"yoy_price":3.9383333333,"absolute_change":-1.3348333333,"percentage_change":-33.8933559035},{"date":"2009-10-05","fuel":"diesel","current_price":2.585,"yoy_price":3.8476666667,"absolute_change":-1.2626666667,"percentage_change":-32.8164255393},{"date":"2009-10-12","fuel":"diesel","current_price":2.602,"yoy_price":3.6296666667,"absolute_change":-1.0276666667,"percentage_change":-28.3129763982},{"date":"2009-10-19","fuel":"diesel","current_price":2.7065,"yoy_price":3.4456666667,"absolute_change":-0.7391666667,"percentage_change":-21.4520653961},{"date":"2009-10-26","fuel":"diesel","current_price":2.803,"yoy_price":3.259,"absolute_change":-0.456,"percentage_change":-13.9920220927},{"date":"2009-11-02","fuel":"diesel","current_price":2.8095,"yoy_price":3.0606666667,"absolute_change":-0.2511666667,"percentage_change":-8.2062731431},{"date":"2009-11-09","fuel":"diesel","current_price":2.803,"yoy_price":2.9103333333,"absolute_change":-0.1073333333,"percentage_change":-3.6880082465},{"date":"2009-11-16","fuel":"diesel","current_price":2.7925,"yoy_price":2.7766666667,"absolute_change":0.0158333333,"percentage_change":0.5702280912},{"date":"2009-11-23","fuel":"diesel","current_price":2.7895,"yoy_price":2.637,"absolute_change":0.1525,"percentage_change":5.7830868411},{"date":"2009-11-30","fuel":"diesel","current_price":2.7775,"yoy_price":2.5943333333,"absolute_change":0.1831666667,"percentage_change":7.06025954},{"date":"2009-12-07","fuel":"diesel","current_price":2.7745,"yoy_price":2.519,"absolute_change":0.2555,"percentage_change":10.1429138547},{"date":"2009-12-14","fuel":"diesel","current_price":2.7505,"yoy_price":2.426,"absolute_change":0.3245,"percentage_change":13.3759274526},{"date":"2009-12-21","fuel":"diesel","current_price":2.7285,"yoy_price":2.3695,"absolute_change":0.359,"percentage_change":15.1508757122},{"date":"2009-12-28","fuel":"diesel","current_price":2.734,"yoy_price":2.331,"absolute_change":0.403,"percentage_change":17.2887172887},{"date":"2010-01-04","fuel":"diesel","current_price":2.799,"yoy_price":2.295,"absolute_change":0.504,"percentage_change":21.9607843137},{"date":"2010-01-11","fuel":"diesel","current_price":2.8805,"yoy_price":2.319,"absolute_change":0.5615,"percentage_change":24.2130228547},{"date":"2010-01-18","fuel":"diesel","current_price":2.872,"yoy_price":2.3015,"absolute_change":0.5705,"percentage_change":24.7881816207},{"date":"2010-01-25","fuel":"diesel","current_price":2.8355,"yoy_price":2.273,"absolute_change":0.5625,"percentage_change":24.7470303564},{"date":"2010-02-01","fuel":"diesel","current_price":2.784,"yoy_price":2.251,"absolute_change":0.533,"percentage_change":23.678365171},{"date":"2010-02-08","fuel":"diesel","current_price":2.772,"yoy_price":2.2245,"absolute_change":0.5475,"percentage_change":24.6122724208},{"date":"2010-02-15","fuel":"diesel","current_price":2.7585,"yoy_price":2.1915,"absolute_change":0.567,"percentage_change":25.8726899384},{"date":"2010-02-22","fuel":"diesel","current_price":2.833,"yoy_price":2.134,"absolute_change":0.699,"percentage_change":32.755388941},{"date":"2010-03-01","fuel":"diesel","current_price":2.863,"yoy_price":2.091,"absolute_change":0.772,"percentage_change":36.9201339072},{"date":"2010-03-08","fuel":"diesel","current_price":2.905,"yoy_price":2.048,"absolute_change":0.857,"percentage_change":41.845703125},{"date":"2010-03-15","fuel":"diesel","current_price":2.925,"yoy_price":2.02,"absolute_change":0.905,"percentage_change":44.801980198},{"date":"2010-03-22","fuel":"diesel","current_price":2.9475,"yoy_price":2.0915,"absolute_change":0.856,"percentage_change":40.9275639493},{"date":"2010-03-29","fuel":"diesel","current_price":2.9405,"yoy_price":2.223,"absolute_change":0.7175,"percentage_change":32.2762033288},{"date":"2010-04-05","fuel":"diesel","current_price":3.016,"yoy_price":2.2305,"absolute_change":0.7855,"percentage_change":35.2163192109},{"date":"2010-04-12","fuel":"diesel","current_price":3.071,"yoy_price":2.2315,"absolute_change":0.8395,"percentage_change":37.6204346852},{"date":"2010-04-19","fuel":"diesel","current_price":3.076,"yoy_price":2.2235,"absolute_change":0.8525,"percentage_change":38.3404542388},{"date":"2010-04-26","fuel":"diesel","current_price":3.08,"yoy_price":2.204,"absolute_change":0.876,"percentage_change":39.7459165154},{"date":"2010-05-03","fuel":"diesel","current_price":3.124,"yoy_price":2.1885,"absolute_change":0.9355,"percentage_change":42.746173178},{"date":"2010-05-10","fuel":"diesel","current_price":3.129,"yoy_price":2.2195,"absolute_change":0.9095,"percentage_change":40.9776976797},{"date":"2010-05-17","fuel":"diesel","current_price":3.096,"yoy_price":2.234,"absolute_change":0.862,"percentage_change":38.5854968666},{"date":"2010-05-24","fuel":"diesel","current_price":3.023,"yoy_price":2.276,"absolute_change":0.747,"percentage_change":32.8207381371},{"date":"2010-05-31","fuel":"diesel","current_price":2.9815,"yoy_price":2.353,"absolute_change":0.6285,"percentage_change":26.7105822354},{"date":"2010-06-07","fuel":"diesel","current_price":2.9475,"yoy_price":2.4995,"absolute_change":0.448,"percentage_change":17.9235847169},{"date":"2010-06-14","fuel":"diesel","current_price":2.929,"yoy_price":2.5735,"absolute_change":0.3555,"percentage_change":13.8138721585},{"date":"2010-06-21","fuel":"diesel","current_price":2.9615,"yoy_price":2.6175,"absolute_change":0.344,"percentage_change":13.1423113658},{"date":"2010-06-28","fuel":"diesel","current_price":2.9565,"yoy_price":2.61,"absolute_change":0.3465,"percentage_change":13.275862069},{"date":"2010-07-05","fuel":"diesel","current_price":2.9245,"yoy_price":2.596,"absolute_change":0.3285,"percentage_change":12.6540832049},{"date":"2010-07-12","fuel":"diesel","current_price":2.9035,"yoy_price":2.544,"absolute_change":0.3595,"percentage_change":14.1312893082},{"date":"2010-07-19","fuel":"diesel","current_price":2.899,"yoy_price":2.4985,"absolute_change":0.4005,"percentage_change":16.0296177707},{"date":"2010-07-26","fuel":"diesel","current_price":2.919,"yoy_price":2.53,"absolute_change":0.389,"percentage_change":15.3754940711},{"date":"2010-08-02","fuel":"diesel","current_price":2.928,"yoy_price":2.552,"absolute_change":0.376,"percentage_change":14.7335423197},{"date":"2010-08-09","fuel":"diesel","current_price":2.991,"yoy_price":2.6265,"absolute_change":0.3645,"percentage_change":13.8777841234},{"date":"2010-08-16","fuel":"diesel","current_price":2.979,"yoy_price":2.654,"absolute_change":0.325,"percentage_change":12.2456669179},{"date":"2010-08-23","fuel":"diesel","current_price":2.957,"yoy_price":2.67,"absolute_change":0.287,"percentage_change":10.7490636704},{"date":"2010-08-30","fuel":"diesel","current_price":2.938,"yoy_price":2.6765,"absolute_change":0.2615,"percentage_change":9.7702223052},{"date":"2010-09-06","fuel":"diesel","current_price":2.931,"yoy_price":2.6485,"absolute_change":0.2825,"percentage_change":10.6664149519},{"date":"2010-09-13","fuel":"diesel","current_price":2.943,"yoy_price":2.636,"absolute_change":0.307,"percentage_change":11.6464339909},{"date":"2010-09-20","fuel":"diesel","current_price":2.96,"yoy_price":2.624,"absolute_change":0.336,"percentage_change":12.8048780488},{"date":"2010-09-27","fuel":"diesel","current_price":2.951,"yoy_price":2.6035,"absolute_change":0.3475,"percentage_change":13.3474169387},{"date":"2010-10-04","fuel":"diesel","current_price":3,"yoy_price":2.585,"absolute_change":0.415,"percentage_change":16.0541586074},{"date":"2010-10-11","fuel":"diesel","current_price":3.066,"yoy_price":2.602,"absolute_change":0.464,"percentage_change":17.8324365872},{"date":"2010-10-18","fuel":"diesel","current_price":3.073,"yoy_price":2.7065,"absolute_change":0.3665,"percentage_change":13.5414742287},{"date":"2010-10-25","fuel":"diesel","current_price":3.067,"yoy_price":2.803,"absolute_change":0.264,"percentage_change":9.4184801998},{"date":"2010-11-01","fuel":"diesel","current_price":3.067,"yoy_price":2.8095,"absolute_change":0.2575,"percentage_change":9.1653319096},{"date":"2010-11-08","fuel":"diesel","current_price":3.116,"yoy_price":2.803,"absolute_change":0.313,"percentage_change":11.1666072066},{"date":"2010-11-15","fuel":"diesel","current_price":3.184,"yoy_price":2.7925,"absolute_change":0.3915,"percentage_change":14.0196956132},{"date":"2010-11-22","fuel":"diesel","current_price":3.171,"yoy_price":2.7895,"absolute_change":0.3815,"percentage_change":13.6762860728},{"date":"2010-11-29","fuel":"diesel","current_price":3.162,"yoy_price":2.7775,"absolute_change":0.3845,"percentage_change":13.8433843384},{"date":"2010-12-06","fuel":"diesel","current_price":3.197,"yoy_price":2.7745,"absolute_change":0.4225,"percentage_change":15.2279690034},{"date":"2010-12-13","fuel":"diesel","current_price":3.231,"yoy_price":2.7505,"absolute_change":0.4805,"percentage_change":17.4695509907},{"date":"2010-12-20","fuel":"diesel","current_price":3.248,"yoy_price":2.7285,"absolute_change":0.5195,"percentage_change":19.0397654389},{"date":"2010-12-27","fuel":"diesel","current_price":3.294,"yoy_price":2.734,"absolute_change":0.56,"percentage_change":20.482809071},{"date":"2011-01-03","fuel":"diesel","current_price":3.331,"yoy_price":2.799,"absolute_change":0.532,"percentage_change":19.0067881386},{"date":"2011-01-10","fuel":"diesel","current_price":3.333,"yoy_price":2.8805,"absolute_change":0.4525,"percentage_change":15.709078285},{"date":"2011-01-17","fuel":"diesel","current_price":3.407,"yoy_price":2.872,"absolute_change":0.535,"percentage_change":18.6281337047},{"date":"2011-01-24","fuel":"diesel","current_price":3.43,"yoy_price":2.8355,"absolute_change":0.5945,"percentage_change":20.966319873},{"date":"2011-01-31","fuel":"diesel","current_price":3.438,"yoy_price":2.784,"absolute_change":0.654,"percentage_change":23.4913793103},{"date":"2011-02-07","fuel":"diesel","current_price":3.513,"yoy_price":2.772,"absolute_change":0.741,"percentage_change":26.7316017316},{"date":"2011-02-14","fuel":"diesel","current_price":3.534,"yoy_price":2.7585,"absolute_change":0.7755,"percentage_change":28.1131049483},{"date":"2011-02-21","fuel":"diesel","current_price":3.573,"yoy_price":2.833,"absolute_change":0.74,"percentage_change":26.1207200847},{"date":"2011-02-28","fuel":"diesel","current_price":3.716,"yoy_price":2.863,"absolute_change":0.853,"percentage_change":29.793922459},{"date":"2011-03-07","fuel":"diesel","current_price":3.871,"yoy_price":2.905,"absolute_change":0.966,"percentage_change":33.2530120482},{"date":"2011-03-14","fuel":"diesel","current_price":3.908,"yoy_price":2.925,"absolute_change":0.983,"percentage_change":33.6068376068},{"date":"2011-03-21","fuel":"diesel","current_price":3.907,"yoy_price":2.9475,"absolute_change":0.9595,"percentage_change":32.5530110263},{"date":"2011-03-28","fuel":"diesel","current_price":3.932,"yoy_price":2.9405,"absolute_change":0.9915,"percentage_change":33.7187553137},{"date":"2011-04-04","fuel":"diesel","current_price":3.976,"yoy_price":3.016,"absolute_change":0.96,"percentage_change":31.8302387268},{"date":"2011-04-11","fuel":"diesel","current_price":4.078,"yoy_price":3.071,"absolute_change":1.007,"percentage_change":32.7906219472},{"date":"2011-04-18","fuel":"diesel","current_price":4.105,"yoy_price":3.076,"absolute_change":1.029,"percentage_change":33.4525357607},{"date":"2011-04-25","fuel":"diesel","current_price":4.098,"yoy_price":3.08,"absolute_change":1.018,"percentage_change":33.0519480519},{"date":"2011-05-02","fuel":"diesel","current_price":4.124,"yoy_price":3.124,"absolute_change":1,"percentage_change":32.0102432778},{"date":"2011-05-09","fuel":"diesel","current_price":4.104,"yoy_price":3.129,"absolute_change":0.975,"percentage_change":31.1601150527},{"date":"2011-05-16","fuel":"diesel","current_price":4.061,"yoy_price":3.096,"absolute_change":0.965,"percentage_change":31.169250646},{"date":"2011-05-23","fuel":"diesel","current_price":3.997,"yoy_price":3.023,"absolute_change":0.974,"percentage_change":32.2196493549},{"date":"2011-05-30","fuel":"diesel","current_price":3.948,"yoy_price":2.9815,"absolute_change":0.9665,"percentage_change":32.4165688412},{"date":"2011-06-06","fuel":"diesel","current_price":3.94,"yoy_price":2.9475,"absolute_change":0.9925,"percentage_change":33.6726039016},{"date":"2011-06-13","fuel":"diesel","current_price":3.954,"yoy_price":2.929,"absolute_change":1.025,"percentage_change":34.9948787982},{"date":"2011-06-20","fuel":"diesel","current_price":3.95,"yoy_price":2.9615,"absolute_change":0.9885,"percentage_change":33.3783555631},{"date":"2011-06-27","fuel":"diesel","current_price":3.888,"yoy_price":2.9565,"absolute_change":0.9315,"percentage_change":31.5068493151},{"date":"2011-07-04","fuel":"diesel","current_price":3.85,"yoy_price":2.9245,"absolute_change":0.9255,"percentage_change":31.6464352881},{"date":"2011-07-11","fuel":"diesel","current_price":3.899,"yoy_price":2.9035,"absolute_change":0.9955,"percentage_change":34.2862063027},{"date":"2011-07-18","fuel":"diesel","current_price":3.923,"yoy_price":2.899,"absolute_change":1.024,"percentage_change":35.3225250086},{"date":"2011-07-25","fuel":"diesel","current_price":3.949,"yoy_price":2.919,"absolute_change":1.03,"percentage_change":35.2860568688},{"date":"2011-08-01","fuel":"diesel","current_price":3.937,"yoy_price":2.928,"absolute_change":1.009,"percentage_change":34.4603825137},{"date":"2011-08-08","fuel":"diesel","current_price":3.897,"yoy_price":2.991,"absolute_change":0.906,"percentage_change":30.2908726179},{"date":"2011-08-15","fuel":"diesel","current_price":3.835,"yoy_price":2.979,"absolute_change":0.856,"percentage_change":28.7344746559},{"date":"2011-08-22","fuel":"diesel","current_price":3.81,"yoy_price":2.957,"absolute_change":0.853,"percentage_change":28.8468041934},{"date":"2011-08-29","fuel":"diesel","current_price":3.82,"yoy_price":2.938,"absolute_change":0.882,"percentage_change":30.0204220558},{"date":"2011-09-05","fuel":"diesel","current_price":3.868,"yoy_price":2.931,"absolute_change":0.937,"percentage_change":31.9686113954},{"date":"2011-09-12","fuel":"diesel","current_price":3.862,"yoy_price":2.943,"absolute_change":0.919,"percentage_change":31.2266394835},{"date":"2011-09-19","fuel":"diesel","current_price":3.833,"yoy_price":2.96,"absolute_change":0.873,"percentage_change":29.4932432432},{"date":"2011-09-26","fuel":"diesel","current_price":3.786,"yoy_price":2.951,"absolute_change":0.835,"percentage_change":28.2954930532},{"date":"2011-10-03","fuel":"diesel","current_price":3.749,"yoy_price":3,"absolute_change":0.749,"percentage_change":24.9666666667},{"date":"2011-10-10","fuel":"diesel","current_price":3.721,"yoy_price":3.066,"absolute_change":0.655,"percentage_change":21.3633398565},{"date":"2011-10-17","fuel":"diesel","current_price":3.801,"yoy_price":3.073,"absolute_change":0.728,"percentage_change":23.6902050114},{"date":"2011-10-24","fuel":"diesel","current_price":3.825,"yoy_price":3.067,"absolute_change":0.758,"percentage_change":24.7147049234},{"date":"2011-10-31","fuel":"diesel","current_price":3.892,"yoy_price":3.067,"absolute_change":0.825,"percentage_change":26.8992500815},{"date":"2011-11-07","fuel":"diesel","current_price":3.887,"yoy_price":3.116,"absolute_change":0.771,"percentage_change":24.7432605905},{"date":"2011-11-14","fuel":"diesel","current_price":3.987,"yoy_price":3.184,"absolute_change":0.803,"percentage_change":25.2198492462},{"date":"2011-11-21","fuel":"diesel","current_price":4.01,"yoy_price":3.171,"absolute_change":0.839,"percentage_change":26.458530432},{"date":"2011-11-28","fuel":"diesel","current_price":3.964,"yoy_price":3.162,"absolute_change":0.802,"percentage_change":25.3636938646},{"date":"2011-12-05","fuel":"diesel","current_price":3.931,"yoy_price":3.197,"absolute_change":0.734,"percentage_change":22.9590240851},{"date":"2011-12-12","fuel":"diesel","current_price":3.894,"yoy_price":3.231,"absolute_change":0.663,"percentage_change":20.5199628598},{"date":"2011-12-19","fuel":"diesel","current_price":3.828,"yoy_price":3.248,"absolute_change":0.58,"percentage_change":17.8571428571},{"date":"2011-12-26","fuel":"diesel","current_price":3.791,"yoy_price":3.294,"absolute_change":0.497,"percentage_change":15.0880388585},{"date":"2012-01-02","fuel":"diesel","current_price":3.783,"yoy_price":3.331,"absolute_change":0.452,"percentage_change":13.5694986491},{"date":"2012-01-09","fuel":"diesel","current_price":3.828,"yoy_price":3.333,"absolute_change":0.495,"percentage_change":14.8514851485},{"date":"2012-01-16","fuel":"diesel","current_price":3.854,"yoy_price":3.407,"absolute_change":0.447,"percentage_change":13.1200469621},{"date":"2012-01-23","fuel":"diesel","current_price":3.848,"yoy_price":3.43,"absolute_change":0.418,"percentage_change":12.1865889213},{"date":"2012-01-30","fuel":"diesel","current_price":3.85,"yoy_price":3.438,"absolute_change":0.412,"percentage_change":11.9837114602},{"date":"2012-02-06","fuel":"diesel","current_price":3.856,"yoy_price":3.513,"absolute_change":0.343,"percentage_change":9.7637346997},{"date":"2012-02-13","fuel":"diesel","current_price":3.943,"yoy_price":3.534,"absolute_change":0.409,"percentage_change":11.5732880589},{"date":"2012-02-20","fuel":"diesel","current_price":3.96,"yoy_price":3.573,"absolute_change":0.387,"percentage_change":10.8312342569},{"date":"2012-02-27","fuel":"diesel","current_price":4.051,"yoy_price":3.716,"absolute_change":0.335,"percentage_change":9.0150699677},{"date":"2012-03-05","fuel":"diesel","current_price":4.094,"yoy_price":3.871,"absolute_change":0.223,"percentage_change":5.7607853268},{"date":"2012-03-12","fuel":"diesel","current_price":4.123,"yoy_price":3.908,"absolute_change":0.215,"percentage_change":5.5015353122},{"date":"2012-03-19","fuel":"diesel","current_price":4.142,"yoy_price":3.907,"absolute_change":0.235,"percentage_change":6.0148451497},{"date":"2012-03-26","fuel":"diesel","current_price":4.147,"yoy_price":3.932,"absolute_change":0.215,"percentage_change":5.4679552391},{"date":"2012-04-02","fuel":"diesel","current_price":4.142,"yoy_price":3.976,"absolute_change":0.166,"percentage_change":4.1750503018},{"date":"2012-04-09","fuel":"diesel","current_price":4.148,"yoy_price":4.078,"absolute_change":0.07,"percentage_change":1.7165277097},{"date":"2012-04-16","fuel":"diesel","current_price":4.127,"yoy_price":4.105,"absolute_change":0.022,"percentage_change":0.5359317905},{"date":"2012-04-23","fuel":"diesel","current_price":4.085,"yoy_price":4.098,"absolute_change":-0.013,"percentage_change":-0.3172279161},{"date":"2012-04-30","fuel":"diesel","current_price":4.073,"yoy_price":4.124,"absolute_change":-0.051,"percentage_change":-1.2366634336},{"date":"2012-05-07","fuel":"diesel","current_price":4.057,"yoy_price":4.104,"absolute_change":-0.047,"percentage_change":-1.1452241715},{"date":"2012-05-14","fuel":"diesel","current_price":4.004,"yoy_price":4.061,"absolute_change":-0.057,"percentage_change":-1.4035951736},{"date":"2012-05-21","fuel":"diesel","current_price":3.956,"yoy_price":3.997,"absolute_change":-0.041,"percentage_change":-1.025769327},{"date":"2012-05-28","fuel":"diesel","current_price":3.897,"yoy_price":3.948,"absolute_change":-0.051,"percentage_change":-1.2917933131},{"date":"2012-06-04","fuel":"diesel","current_price":3.846,"yoy_price":3.94,"absolute_change":-0.094,"percentage_change":-2.385786802},{"date":"2012-06-11","fuel":"diesel","current_price":3.781,"yoy_price":3.954,"absolute_change":-0.173,"percentage_change":-4.3753161356},{"date":"2012-06-18","fuel":"diesel","current_price":3.729,"yoy_price":3.95,"absolute_change":-0.221,"percentage_change":-5.5949367089},{"date":"2012-06-25","fuel":"diesel","current_price":3.678,"yoy_price":3.888,"absolute_change":-0.21,"percentage_change":-5.4012345679},{"date":"2012-07-02","fuel":"diesel","current_price":3.648,"yoy_price":3.85,"absolute_change":-0.202,"percentage_change":-5.2467532468},{"date":"2012-07-09","fuel":"diesel","current_price":3.683,"yoy_price":3.899,"absolute_change":-0.216,"percentage_change":-5.539882021},{"date":"2012-07-16","fuel":"diesel","current_price":3.695,"yoy_price":3.923,"absolute_change":-0.228,"percentage_change":-5.8118786643},{"date":"2012-07-23","fuel":"diesel","current_price":3.783,"yoy_price":3.949,"absolute_change":-0.166,"percentage_change":-4.203595847},{"date":"2012-07-30","fuel":"diesel","current_price":3.796,"yoy_price":3.937,"absolute_change":-0.141,"percentage_change":-3.5814071628},{"date":"2012-08-06","fuel":"diesel","current_price":3.85,"yoy_price":3.897,"absolute_change":-0.047,"percentage_change":-1.2060559405},{"date":"2012-08-13","fuel":"diesel","current_price":3.965,"yoy_price":3.835,"absolute_change":0.13,"percentage_change":3.3898305085},{"date":"2012-08-20","fuel":"diesel","current_price":4.026,"yoy_price":3.81,"absolute_change":0.216,"percentage_change":5.6692913386},{"date":"2012-08-27","fuel":"diesel","current_price":4.089,"yoy_price":3.82,"absolute_change":0.269,"percentage_change":7.0418848168},{"date":"2012-09-03","fuel":"diesel","current_price":4.127,"yoy_price":3.868,"absolute_change":0.259,"percentage_change":6.695966908},{"date":"2012-09-10","fuel":"diesel","current_price":4.132,"yoy_price":3.862,"absolute_change":0.27,"percentage_change":6.9911962714},{"date":"2012-09-17","fuel":"diesel","current_price":4.135,"yoy_price":3.833,"absolute_change":0.302,"percentage_change":7.8789459953},{"date":"2012-09-24","fuel":"diesel","current_price":4.086,"yoy_price":3.786,"absolute_change":0.3,"percentage_change":7.9239302694},{"date":"2012-10-01","fuel":"diesel","current_price":4.079,"yoy_price":3.749,"absolute_change":0.33,"percentage_change":8.8023472926},{"date":"2012-10-08","fuel":"diesel","current_price":4.094,"yoy_price":3.721,"absolute_change":0.373,"percentage_change":10.0241870465},{"date":"2012-10-15","fuel":"diesel","current_price":4.15,"yoy_price":3.801,"absolute_change":0.349,"percentage_change":9.1817942647},{"date":"2012-10-22","fuel":"diesel","current_price":4.116,"yoy_price":3.825,"absolute_change":0.291,"percentage_change":7.6078431373},{"date":"2012-10-29","fuel":"diesel","current_price":4.03,"yoy_price":3.892,"absolute_change":0.138,"percentage_change":3.5457348407},{"date":"2012-11-05","fuel":"diesel","current_price":4.01,"yoy_price":3.887,"absolute_change":0.123,"percentage_change":3.1643941343},{"date":"2012-11-12","fuel":"diesel","current_price":3.98,"yoy_price":3.987,"absolute_change":-0.007,"percentage_change":-0.1755706045},{"date":"2012-11-19","fuel":"diesel","current_price":3.976,"yoy_price":4.01,"absolute_change":-0.034,"percentage_change":-0.8478802993},{"date":"2012-11-26","fuel":"diesel","current_price":4.034,"yoy_price":3.964,"absolute_change":0.07,"percentage_change":1.7658930373},{"date":"2012-12-03","fuel":"diesel","current_price":4.027,"yoy_price":3.931,"absolute_change":0.096,"percentage_change":2.4421266853},{"date":"2012-12-10","fuel":"diesel","current_price":3.991,"yoy_price":3.894,"absolute_change":0.097,"percentage_change":2.491011813},{"date":"2012-12-17","fuel":"diesel","current_price":3.945,"yoy_price":3.828,"absolute_change":0.117,"percentage_change":3.0564263323},{"date":"2012-12-24","fuel":"diesel","current_price":3.923,"yoy_price":3.791,"absolute_change":0.132,"percentage_change":3.4819308889},{"date":"2012-12-31","fuel":"diesel","current_price":3.918,"yoy_price":3.783,"absolute_change":0.135,"percentage_change":3.5685963521},{"date":"2013-01-07","fuel":"diesel","current_price":3.911,"yoy_price":3.828,"absolute_change":0.083,"percentage_change":2.1682340648},{"date":"2013-01-14","fuel":"diesel","current_price":3.894,"yoy_price":3.854,"absolute_change":0.04,"percentage_change":1.0378827193},{"date":"2013-01-21","fuel":"diesel","current_price":3.902,"yoy_price":3.848,"absolute_change":0.054,"percentage_change":1.4033264033},{"date":"2013-01-28","fuel":"diesel","current_price":3.927,"yoy_price":3.85,"absolute_change":0.077,"percentage_change":2},{"date":"2013-02-04","fuel":"diesel","current_price":4.022,"yoy_price":3.856,"absolute_change":0.166,"percentage_change":4.3049792531},{"date":"2013-02-11","fuel":"diesel","current_price":4.104,"yoy_price":3.943,"absolute_change":0.161,"percentage_change":4.0831853918},{"date":"2013-02-18","fuel":"diesel","current_price":4.157,"yoy_price":3.96,"absolute_change":0.197,"percentage_change":4.9747474747},{"date":"2013-02-25","fuel":"diesel","current_price":4.159,"yoy_price":4.051,"absolute_change":0.108,"percentage_change":2.666008393},{"date":"2013-03-04","fuel":"diesel","current_price":4.13,"yoy_price":4.094,"absolute_change":0.036,"percentage_change":0.8793356131},{"date":"2013-03-11","fuel":"diesel","current_price":4.088,"yoy_price":4.123,"absolute_change":-0.035,"percentage_change":-0.8488964346},{"date":"2013-03-18","fuel":"diesel","current_price":4.047,"yoy_price":4.142,"absolute_change":-0.095,"percentage_change":-2.2935779817},{"date":"2013-03-25","fuel":"diesel","current_price":4.006,"yoy_price":4.147,"absolute_change":-0.141,"percentage_change":-3.4000482276},{"date":"2013-04-01","fuel":"diesel","current_price":3.993,"yoy_price":4.142,"absolute_change":-0.149,"percentage_change":-3.5972959923},{"date":"2013-04-08","fuel":"diesel","current_price":3.977,"yoy_price":4.148,"absolute_change":-0.171,"percentage_change":-4.1224686596},{"date":"2013-04-15","fuel":"diesel","current_price":3.942,"yoy_price":4.127,"absolute_change":-0.185,"percentage_change":-4.4826750666},{"date":"2013-04-22","fuel":"diesel","current_price":3.887,"yoy_price":4.085,"absolute_change":-0.198,"percentage_change":-4.847001224},{"date":"2013-04-29","fuel":"diesel","current_price":3.851,"yoy_price":4.073,"absolute_change":-0.222,"percentage_change":-5.4505278664},{"date":"2013-05-06","fuel":"diesel","current_price":3.845,"yoy_price":4.057,"absolute_change":-0.212,"percentage_change":-5.2255361104},{"date":"2013-05-13","fuel":"diesel","current_price":3.866,"yoy_price":4.004,"absolute_change":-0.138,"percentage_change":-3.4465534466},{"date":"2013-05-20","fuel":"diesel","current_price":3.89,"yoy_price":3.956,"absolute_change":-0.066,"percentage_change":-1.6683518706},{"date":"2013-05-27","fuel":"diesel","current_price":3.88,"yoy_price":3.897,"absolute_change":-0.017,"percentage_change":-0.4362329997},{"date":"2013-06-03","fuel":"diesel","current_price":3.869,"yoy_price":3.846,"absolute_change":0.023,"percentage_change":0.598023921},{"date":"2013-06-10","fuel":"diesel","current_price":3.849,"yoy_price":3.781,"absolute_change":0.068,"percentage_change":1.7984660143},{"date":"2013-06-17","fuel":"diesel","current_price":3.841,"yoy_price":3.729,"absolute_change":0.112,"percentage_change":3.0034861893},{"date":"2013-06-24","fuel":"diesel","current_price":3.838,"yoy_price":3.678,"absolute_change":0.16,"percentage_change":4.3501903208},{"date":"2013-07-01","fuel":"diesel","current_price":3.817,"yoy_price":3.648,"absolute_change":0.169,"percentage_change":4.6326754386},{"date":"2013-07-08","fuel":"diesel","current_price":3.828,"yoy_price":3.683,"absolute_change":0.145,"percentage_change":3.937007874},{"date":"2013-07-15","fuel":"diesel","current_price":3.867,"yoy_price":3.695,"absolute_change":0.172,"percentage_change":4.6549391069},{"date":"2013-07-22","fuel":"diesel","current_price":3.903,"yoy_price":3.783,"absolute_change":0.12,"percentage_change":3.1720856463},{"date":"2013-07-29","fuel":"diesel","current_price":3.915,"yoy_price":3.796,"absolute_change":0.119,"percentage_change":3.1348788198},{"date":"2013-08-05","fuel":"diesel","current_price":3.909,"yoy_price":3.85,"absolute_change":0.059,"percentage_change":1.5324675325},{"date":"2013-08-12","fuel":"diesel","current_price":3.896,"yoy_price":3.965,"absolute_change":-0.069,"percentage_change":-1.7402269861},{"date":"2013-08-19","fuel":"diesel","current_price":3.9,"yoy_price":4.026,"absolute_change":-0.126,"percentage_change":-3.129657228},{"date":"2013-08-26","fuel":"diesel","current_price":3.913,"yoy_price":4.089,"absolute_change":-0.176,"percentage_change":-4.3042308633},{"date":"2013-09-02","fuel":"diesel","current_price":3.981,"yoy_price":4.127,"absolute_change":-0.146,"percentage_change":-3.5376787012},{"date":"2013-09-09","fuel":"diesel","current_price":3.981,"yoy_price":4.132,"absolute_change":-0.151,"percentage_change":-3.6544046467},{"date":"2013-09-16","fuel":"diesel","current_price":3.974,"yoy_price":4.135,"absolute_change":-0.161,"percentage_change":-3.8935912938},{"date":"2013-09-23","fuel":"diesel","current_price":3.949,"yoy_price":4.086,"absolute_change":-0.137,"percentage_change":-3.3529123837},{"date":"2013-09-30","fuel":"diesel","current_price":3.919,"yoy_price":4.079,"absolute_change":-0.16,"percentage_change":-3.9225300319},{"date":"2013-10-07","fuel":"diesel","current_price":3.897,"yoy_price":4.094,"absolute_change":-0.197,"percentage_change":-4.8119198828},{"date":"2013-10-14","fuel":"diesel","current_price":3.886,"yoy_price":4.15,"absolute_change":-0.264,"percentage_change":-6.3614457831},{"date":"2013-10-21","fuel":"diesel","current_price":3.886,"yoy_price":4.116,"absolute_change":-0.23,"percentage_change":-5.5879494655},{"date":"2013-10-28","fuel":"diesel","current_price":3.87,"yoy_price":4.03,"absolute_change":-0.16,"percentage_change":-3.9702233251},{"date":"2013-11-04","fuel":"diesel","current_price":3.857,"yoy_price":4.01,"absolute_change":-0.153,"percentage_change":-3.8154613466},{"date":"2013-11-11","fuel":"diesel","current_price":3.832,"yoy_price":3.98,"absolute_change":-0.148,"percentage_change":-3.7185929648},{"date":"2013-11-18","fuel":"diesel","current_price":3.822,"yoy_price":3.976,"absolute_change":-0.154,"percentage_change":-3.8732394366},{"date":"2013-11-25","fuel":"diesel","current_price":3.844,"yoy_price":4.034,"absolute_change":-0.19,"percentage_change":-4.709965295},{"date":"2013-12-02","fuel":"diesel","current_price":3.883,"yoy_price":4.027,"absolute_change":-0.144,"percentage_change":-3.5758629253},{"date":"2013-12-09","fuel":"diesel","current_price":3.879,"yoy_price":3.991,"absolute_change":-0.112,"percentage_change":-2.806314207},{"date":"2013-12-16","fuel":"diesel","current_price":3.871,"yoy_price":3.945,"absolute_change":-0.074,"percentage_change":-1.875792142},{"date":"2013-12-23","fuel":"diesel","current_price":3.873,"yoy_price":3.923,"absolute_change":-0.05,"percentage_change":-1.2745347948},{"date":"2013-12-30","fuel":"diesel","current_price":3.903,"yoy_price":3.918,"absolute_change":-0.015,"percentage_change":-0.382848392},{"date":"2014-01-06","fuel":"diesel","current_price":3.91,"yoy_price":3.911,"absolute_change":-0.001,"percentage_change":-0.0255689082},{"date":"2014-01-13","fuel":"diesel","current_price":3.886,"yoy_price":3.894,"absolute_change":-0.008,"percentage_change":-0.2054442732},{"date":"2014-01-20","fuel":"diesel","current_price":3.873,"yoy_price":3.902,"absolute_change":-0.029,"percentage_change":-0.743208611},{"date":"2014-01-27","fuel":"diesel","current_price":3.904,"yoy_price":3.927,"absolute_change":-0.023,"percentage_change":-0.585688821},{"date":"2014-02-03","fuel":"diesel","current_price":3.951,"yoy_price":4.022,"absolute_change":-0.071,"percentage_change":-1.7652909},{"date":"2014-02-10","fuel":"diesel","current_price":3.977,"yoy_price":4.104,"absolute_change":-0.127,"percentage_change":-3.0945419103},{"date":"2014-02-17","fuel":"diesel","current_price":3.989,"yoy_price":4.157,"absolute_change":-0.168,"percentage_change":-4.0413759923},{"date":"2014-02-24","fuel":"diesel","current_price":4.017,"yoy_price":4.159,"absolute_change":-0.142,"percentage_change":-3.4142822794},{"date":"2014-03-03","fuel":"diesel","current_price":4.016,"yoy_price":4.13,"absolute_change":-0.114,"percentage_change":-2.7602905569},{"date":"2014-03-10","fuel":"diesel","current_price":4.021,"yoy_price":4.088,"absolute_change":-0.067,"percentage_change":-1.6389432485},{"date":"2014-03-17","fuel":"diesel","current_price":4.003,"yoy_price":4.047,"absolute_change":-0.044,"percentage_change":-1.087225105},{"date":"2014-03-24","fuel":"diesel","current_price":3.988,"yoy_price":4.006,"absolute_change":-0.018,"percentage_change":-0.449326011},{"date":"2014-03-31","fuel":"diesel","current_price":3.975,"yoy_price":3.993,"absolute_change":-0.018,"percentage_change":-0.4507888805},{"date":"2014-04-07","fuel":"diesel","current_price":3.959,"yoy_price":3.977,"absolute_change":-0.018,"percentage_change":-0.4526024642},{"date":"2014-04-14","fuel":"diesel","current_price":3.952,"yoy_price":3.942,"absolute_change":0.01,"percentage_change":0.2536783359},{"date":"2014-04-21","fuel":"diesel","current_price":3.971,"yoy_price":3.887,"absolute_change":0.084,"percentage_change":2.1610496527},{"date":"2014-04-28","fuel":"diesel","current_price":3.975,"yoy_price":3.851,"absolute_change":0.124,"percentage_change":3.219942872},{"date":"2014-05-05","fuel":"diesel","current_price":3.964,"yoy_price":3.845,"absolute_change":0.119,"percentage_change":3.0949284785},{"date":"2014-05-12","fuel":"diesel","current_price":3.948,"yoy_price":3.866,"absolute_change":0.082,"percentage_change":2.1210553544},{"date":"2014-05-19","fuel":"diesel","current_price":3.934,"yoy_price":3.89,"absolute_change":0.044,"percentage_change":1.1311053985},{"date":"2014-05-26","fuel":"diesel","current_price":3.925,"yoy_price":3.88,"absolute_change":0.045,"percentage_change":1.1597938144},{"date":"2014-06-02","fuel":"diesel","current_price":3.918,"yoy_price":3.869,"absolute_change":0.049,"percentage_change":1.2664771259},{"date":"2014-06-09","fuel":"diesel","current_price":3.892,"yoy_price":3.849,"absolute_change":0.043,"percentage_change":1.1171732918},{"date":"2014-06-16","fuel":"diesel","current_price":3.882,"yoy_price":3.841,"absolute_change":0.041,"percentage_change":1.0674303567},{"date":"2014-06-23","fuel":"diesel","current_price":3.919,"yoy_price":3.838,"absolute_change":0.081,"percentage_change":2.1104742053},{"date":"2014-06-30","fuel":"diesel","current_price":3.92,"yoy_price":3.817,"absolute_change":0.103,"percentage_change":2.6984542835},{"date":"2014-07-07","fuel":"diesel","current_price":3.913,"yoy_price":3.828,"absolute_change":0.085,"percentage_change":2.2204806688},{"date":"2014-07-14","fuel":"diesel","current_price":3.894,"yoy_price":3.867,"absolute_change":0.027,"percentage_change":0.6982156711},{"date":"2014-07-21","fuel":"diesel","current_price":3.869,"yoy_price":3.903,"absolute_change":-0.034,"percentage_change":-0.8711247758},{"date":"2014-07-28","fuel":"diesel","current_price":3.858,"yoy_price":3.915,"absolute_change":-0.057,"percentage_change":-1.4559386973},{"date":"2014-08-04","fuel":"diesel","current_price":3.853,"yoy_price":3.909,"absolute_change":-0.056,"percentage_change":-1.4325914556},{"date":"2014-08-11","fuel":"diesel","current_price":3.843,"yoy_price":3.896,"absolute_change":-0.053,"percentage_change":-1.3603696099},{"date":"2014-08-18","fuel":"diesel","current_price":3.835,"yoy_price":3.9,"absolute_change":-0.065,"percentage_change":-1.6666666667},{"date":"2014-08-25","fuel":"diesel","current_price":3.821,"yoy_price":3.913,"absolute_change":-0.092,"percentage_change":-2.3511372349},{"date":"2014-09-01","fuel":"diesel","current_price":3.814,"yoy_price":3.981,"absolute_change":-0.167,"percentage_change":-4.194925898},{"date":"2014-09-08","fuel":"diesel","current_price":3.814,"yoy_price":3.981,"absolute_change":-0.167,"percentage_change":-4.194925898},{"date":"2014-09-15","fuel":"diesel","current_price":3.801,"yoy_price":3.974,"absolute_change":-0.173,"percentage_change":-4.3532964268},{"date":"2014-09-22","fuel":"diesel","current_price":3.778,"yoy_price":3.949,"absolute_change":-0.171,"percentage_change":-4.3302101798},{"date":"2014-09-29","fuel":"diesel","current_price":3.755,"yoy_price":3.919,"absolute_change":-0.164,"percentage_change":-4.1847410054},{"date":"2014-10-06","fuel":"diesel","current_price":3.733,"yoy_price":3.897,"absolute_change":-0.164,"percentage_change":-4.2083654093},{"date":"2014-10-13","fuel":"diesel","current_price":3.698,"yoy_price":3.886,"absolute_change":-0.188,"percentage_change":-4.8378795677},{"date":"2014-10-20","fuel":"diesel","current_price":3.656,"yoy_price":3.886,"absolute_change":-0.23,"percentage_change":-5.9186824498},{"date":"2014-10-27","fuel":"diesel","current_price":3.635,"yoy_price":3.87,"absolute_change":-0.235,"percentage_change":-6.0723514212},{"date":"2014-11-03","fuel":"diesel","current_price":3.623,"yoy_price":3.857,"absolute_change":-0.234,"percentage_change":-6.0668913663},{"date":"2014-11-10","fuel":"diesel","current_price":3.677,"yoy_price":3.832,"absolute_change":-0.155,"percentage_change":-4.0448851775},{"date":"2014-11-17","fuel":"diesel","current_price":3.661,"yoy_price":3.822,"absolute_change":-0.161,"percentage_change":-4.2124542125},{"date":"2014-11-24","fuel":"diesel","current_price":3.628,"yoy_price":3.844,"absolute_change":-0.216,"percentage_change":-5.6191467222},{"date":"2014-12-01","fuel":"diesel","current_price":3.605,"yoy_price":3.883,"absolute_change":-0.278,"percentage_change":-7.1594128251},{"date":"2014-12-08","fuel":"diesel","current_price":3.535,"yoy_price":3.879,"absolute_change":-0.344,"percentage_change":-8.8682650168},{"date":"2014-12-15","fuel":"diesel","current_price":3.419,"yoy_price":3.871,"absolute_change":-0.452,"percentage_change":-11.6765693619},{"date":"2014-12-22","fuel":"diesel","current_price":3.281,"yoy_price":3.873,"absolute_change":-0.592,"percentage_change":-15.2853085463},{"date":"2014-12-29","fuel":"diesel","current_price":3.213,"yoy_price":3.903,"absolute_change":-0.69,"percentage_change":-17.6787086856},{"date":"2015-01-05","fuel":"diesel","current_price":3.137,"yoy_price":3.91,"absolute_change":-0.773,"percentage_change":-19.7698209719},{"date":"2015-01-12","fuel":"diesel","current_price":3.053,"yoy_price":3.886,"absolute_change":-0.833,"percentage_change":-21.4359238291},{"date":"2015-01-19","fuel":"diesel","current_price":2.933,"yoy_price":3.873,"absolute_change":-0.94,"percentage_change":-24.2705912729},{"date":"2015-01-26","fuel":"diesel","current_price":2.866,"yoy_price":3.904,"absolute_change":-1.038,"percentage_change":-26.5881147541},{"date":"2015-02-02","fuel":"diesel","current_price":2.831,"yoy_price":3.951,"absolute_change":-1.12,"percentage_change":-28.3472538598},{"date":"2015-02-09","fuel":"diesel","current_price":2.835,"yoy_price":3.977,"absolute_change":-1.142,"percentage_change":-28.7151118934},{"date":"2015-02-16","fuel":"diesel","current_price":2.865,"yoy_price":3.989,"absolute_change":-1.124,"percentage_change":-28.1774880923},{"date":"2015-02-23","fuel":"diesel","current_price":2.9,"yoy_price":4.017,"absolute_change":-1.117,"percentage_change":-27.8068210107},{"date":"2015-03-02","fuel":"diesel","current_price":2.936,"yoy_price":4.016,"absolute_change":-1.08,"percentage_change":-26.8924302789},{"date":"2015-03-09","fuel":"diesel","current_price":2.944,"yoy_price":4.021,"absolute_change":-1.077,"percentage_change":-26.7843819945},{"date":"2015-03-16","fuel":"diesel","current_price":2.917,"yoy_price":4.003,"absolute_change":-1.086,"percentage_change":-27.1296527604},{"date":"2015-03-23","fuel":"diesel","current_price":2.864,"yoy_price":3.988,"absolute_change":-1.124,"percentage_change":-28.184553661},{"date":"2015-03-30","fuel":"diesel","current_price":2.824,"yoy_price":3.975,"absolute_change":-1.151,"percentage_change":-28.9559748428},{"date":"2015-04-06","fuel":"diesel","current_price":2.784,"yoy_price":3.959,"absolute_change":-1.175,"percentage_change":-29.6792119222},{"date":"2015-04-13","fuel":"diesel","current_price":2.754,"yoy_price":3.952,"absolute_change":-1.198,"percentage_change":-30.3137651822},{"date":"2015-04-20","fuel":"diesel","current_price":2.78,"yoy_price":3.971,"absolute_change":-1.191,"percentage_change":-29.9924452279},{"date":"2015-04-27","fuel":"diesel","current_price":2.811,"yoy_price":3.975,"absolute_change":-1.164,"percentage_change":-29.2830188679},{"date":"2015-05-04","fuel":"diesel","current_price":2.854,"yoy_price":3.964,"absolute_change":-1.11,"percentage_change":-28.0020181635},{"date":"2015-05-11","fuel":"diesel","current_price":2.878,"yoy_price":3.948,"absolute_change":-1.07,"percentage_change":-27.1023302938},{"date":"2015-05-18","fuel":"diesel","current_price":2.904,"yoy_price":3.934,"absolute_change":-1.03,"percentage_change":-26.1820030503},{"date":"2015-05-25","fuel":"diesel","current_price":2.914,"yoy_price":3.925,"absolute_change":-1.011,"percentage_change":-25.7579617834},{"date":"2015-06-01","fuel":"diesel","current_price":2.909,"yoy_price":3.918,"absolute_change":-1.009,"percentage_change":-25.752935171},{"date":"2015-06-08","fuel":"diesel","current_price":2.884,"yoy_price":3.892,"absolute_change":-1.008,"percentage_change":-25.8992805755},{"date":"2015-06-15","fuel":"diesel","current_price":2.87,"yoy_price":3.882,"absolute_change":-1.012,"percentage_change":-26.0690365791},{"date":"2015-06-22","fuel":"diesel","current_price":2.859,"yoy_price":3.919,"absolute_change":-1.06,"percentage_change":-27.0477162541},{"date":"2015-06-29","fuel":"diesel","current_price":2.843,"yoy_price":3.92,"absolute_change":-1.077,"percentage_change":-27.4744897959},{"date":"2015-07-06","fuel":"diesel","current_price":2.832,"yoy_price":3.913,"absolute_change":-1.081,"percentage_change":-27.6258625096},{"date":"2015-07-13","fuel":"diesel","current_price":2.814,"yoy_price":3.894,"absolute_change":-1.08,"percentage_change":-27.7349768875},{"date":"2015-07-20","fuel":"diesel","current_price":2.782,"yoy_price":3.869,"absolute_change":-1.087,"percentage_change":-28.0951150168},{"date":"2015-07-27","fuel":"diesel","current_price":2.723,"yoy_price":3.858,"absolute_change":-1.135,"percentage_change":-29.4193882841},{"date":"2015-08-03","fuel":"diesel","current_price":2.668,"yoy_price":3.853,"absolute_change":-1.185,"percentage_change":-30.755255645},{"date":"2015-08-10","fuel":"diesel","current_price":2.617,"yoy_price":3.843,"absolute_change":-1.226,"percentage_change":-31.902159771},{"date":"2015-08-17","fuel":"diesel","current_price":2.615,"yoy_price":3.835,"absolute_change":-1.22,"percentage_change":-31.8122555411},{"date":"2015-08-24","fuel":"diesel","current_price":2.561,"yoy_price":3.821,"absolute_change":-1.26,"percentage_change":-32.9756608218},{"date":"2015-08-31","fuel":"diesel","current_price":2.514,"yoy_price":3.814,"absolute_change":-1.3,"percentage_change":-34.0849501835},{"date":"2015-09-07","fuel":"diesel","current_price":2.534,"yoy_price":3.814,"absolute_change":-1.28,"percentage_change":-33.5605663346},{"date":"2015-09-14","fuel":"diesel","current_price":2.517,"yoy_price":3.801,"absolute_change":-1.284,"percentage_change":-33.7805840568},{"date":"2015-09-21","fuel":"diesel","current_price":2.493,"yoy_price":3.778,"absolute_change":-1.285,"percentage_change":-34.012705135},{"date":"2015-09-28","fuel":"diesel","current_price":2.476,"yoy_price":3.755,"absolute_change":-1.279,"percentage_change":-34.0612516644},{"date":"2015-10-05","fuel":"diesel","current_price":2.492,"yoy_price":3.733,"absolute_change":-1.241,"percentage_change":-33.2440396464},{"date":"2015-10-12","fuel":"diesel","current_price":2.556,"yoy_price":3.698,"absolute_change":-1.142,"percentage_change":-30.8815575987},{"date":"2015-10-19","fuel":"diesel","current_price":2.531,"yoy_price":3.656,"absolute_change":-1.125,"percentage_change":-30.7713347921},{"date":"2015-10-26","fuel":"diesel","current_price":2.498,"yoy_price":3.635,"absolute_change":-1.137,"percentage_change":-31.2792297111},{"date":"2015-11-02","fuel":"diesel","current_price":2.485,"yoy_price":3.623,"absolute_change":-1.138,"percentage_change":-31.4104333425},{"date":"2015-11-09","fuel":"diesel","current_price":2.502,"yoy_price":3.677,"absolute_change":-1.175,"percentage_change":-31.9553984226},{"date":"2015-11-16","fuel":"diesel","current_price":2.482,"yoy_price":3.661,"absolute_change":-1.179,"percentage_change":-32.2043157607},{"date":"2015-11-23","fuel":"diesel","current_price":2.445,"yoy_price":3.628,"absolute_change":-1.183,"percentage_change":-32.6074972437},{"date":"2015-11-30","fuel":"diesel","current_price":2.421,"yoy_price":3.605,"absolute_change":-1.184,"percentage_change":-32.8432732316},{"date":"2015-12-07","fuel":"diesel","current_price":2.379,"yoy_price":3.535,"absolute_change":-1.156,"percentage_change":-32.7015558699},{"date":"2015-12-14","fuel":"diesel","current_price":2.338,"yoy_price":3.419,"absolute_change":-1.081,"percentage_change":-31.6174319977},{"date":"2015-12-21","fuel":"diesel","current_price":2.284,"yoy_price":3.281,"absolute_change":-0.997,"percentage_change":-30.3870771106},{"date":"2015-12-28","fuel":"diesel","current_price":2.237,"yoy_price":3.213,"absolute_change":-0.976,"percentage_change":-30.3765950825},{"date":"2016-01-04","fuel":"diesel","current_price":2.211,"yoy_price":3.137,"absolute_change":-0.926,"percentage_change":-29.5186483902},{"date":"2016-01-11","fuel":"diesel","current_price":2.177,"yoy_price":3.053,"absolute_change":-0.876,"percentage_change":-28.6930887651},{"date":"2016-01-18","fuel":"diesel","current_price":2.112,"yoy_price":2.933,"absolute_change":-0.821,"percentage_change":-27.991817252},{"date":"2016-01-25","fuel":"diesel","current_price":2.071,"yoy_price":2.866,"absolute_change":-0.795,"percentage_change":-27.7390090719},{"date":"2016-02-01","fuel":"diesel","current_price":2.031,"yoy_price":2.831,"absolute_change":-0.8,"percentage_change":-28.2585658778},{"date":"2016-02-08","fuel":"diesel","current_price":2.008,"yoy_price":2.835,"absolute_change":-0.827,"percentage_change":-29.1710758377},{"date":"2016-02-15","fuel":"diesel","current_price":1.98,"yoy_price":2.865,"absolute_change":-0.885,"percentage_change":-30.890052356},{"date":"2016-02-22","fuel":"diesel","current_price":1.983,"yoy_price":2.9,"absolute_change":-0.917,"percentage_change":-31.6206896552},{"date":"2016-02-29","fuel":"diesel","current_price":1.989,"yoy_price":2.936,"absolute_change":-0.947,"percentage_change":-32.2547683924},{"date":"2016-03-07","fuel":"diesel","current_price":2.021,"yoy_price":2.944,"absolute_change":-0.923,"percentage_change":-31.3519021739},{"date":"2016-03-14","fuel":"diesel","current_price":2.099,"yoy_price":2.917,"absolute_change":-0.818,"percentage_change":-28.0425094275},{"date":"2016-03-21","fuel":"diesel","current_price":2.119,"yoy_price":2.864,"absolute_change":-0.745,"percentage_change":-26.0125698324},{"date":"2016-03-28","fuel":"diesel","current_price":2.121,"yoy_price":2.824,"absolute_change":-0.703,"percentage_change":-24.8937677054},{"date":"2016-04-04","fuel":"diesel","current_price":2.115,"yoy_price":2.784,"absolute_change":-0.669,"percentage_change":-24.0301724138},{"date":"2016-04-11","fuel":"diesel","current_price":2.128,"yoy_price":2.754,"absolute_change":-0.626,"percentage_change":-22.730573711},{"date":"2016-04-18","fuel":"diesel","current_price":2.165,"yoy_price":2.78,"absolute_change":-0.615,"percentage_change":-22.1223021583},{"date":"2016-04-25","fuel":"diesel","current_price":2.198,"yoy_price":2.811,"absolute_change":-0.613,"percentage_change":-21.8071860548},{"date":"2016-05-02","fuel":"diesel","current_price":2.266,"yoy_price":2.854,"absolute_change":-0.588,"percentage_change":-20.6026629292},{"date":"2016-05-09","fuel":"diesel","current_price":2.271,"yoy_price":2.878,"absolute_change":-0.607,"percentage_change":-21.0910354413},{"date":"2016-05-16","fuel":"diesel","current_price":2.297,"yoy_price":2.904,"absolute_change":-0.607,"percentage_change":-20.9022038567},{"date":"2016-05-23","fuel":"diesel","current_price":2.357,"yoy_price":2.914,"absolute_change":-0.557,"percentage_change":-19.1146190803},{"date":"2016-05-30","fuel":"diesel","current_price":2.382,"yoy_price":2.909,"absolute_change":-0.527,"percentage_change":-18.116191131},{"date":"2016-06-06","fuel":"diesel","current_price":2.407,"yoy_price":2.884,"absolute_change":-0.477,"percentage_change":-16.5395284327},{"date":"2016-06-13","fuel":"diesel","current_price":2.431,"yoy_price":2.87,"absolute_change":-0.439,"percentage_change":-15.2961672474},{"date":"2016-06-20","fuel":"diesel","current_price":2.426,"yoy_price":2.859,"absolute_change":-0.433,"percentage_change":-15.1451556488},{"date":"2016-06-27","fuel":"diesel","current_price":2.426,"yoy_price":2.843,"absolute_change":-0.417,"percentage_change":-14.667604643},{"date":"2016-07-04","fuel":"diesel","current_price":2.423,"yoy_price":2.832,"absolute_change":-0.409,"percentage_change":-14.4420903955},{"date":"2016-07-11","fuel":"diesel","current_price":2.414,"yoy_price":2.814,"absolute_change":-0.4,"percentage_change":-14.2146410803},{"date":"2016-07-18","fuel":"diesel","current_price":2.402,"yoy_price":2.782,"absolute_change":-0.38,"percentage_change":-13.6592379583},{"date":"2016-07-25","fuel":"diesel","current_price":2.379,"yoy_price":2.723,"absolute_change":-0.344,"percentage_change":-12.6331252295},{"date":"2016-08-01","fuel":"diesel","current_price":2.348,"yoy_price":2.668,"absolute_change":-0.32,"percentage_change":-11.9940029985},{"date":"2016-08-08","fuel":"diesel","current_price":2.316,"yoy_price":2.617,"absolute_change":-0.301,"percentage_change":-11.5017195262},{"date":"2016-08-15","fuel":"diesel","current_price":2.31,"yoy_price":2.615,"absolute_change":-0.305,"percentage_change":-11.6634799235},{"date":"2016-08-22","fuel":"diesel","current_price":2.37,"yoy_price":2.561,"absolute_change":-0.191,"percentage_change":-7.4580242093},{"date":"2016-08-29","fuel":"diesel","current_price":2.409,"yoy_price":2.514,"absolute_change":-0.105,"percentage_change":-4.1766109785},{"date":"2016-09-05","fuel":"diesel","current_price":2.407,"yoy_price":2.534,"absolute_change":-0.127,"percentage_change":-5.0118389897},{"date":"2016-09-12","fuel":"diesel","current_price":2.399,"yoy_price":2.517,"absolute_change":-0.118,"percentage_change":-4.6881207787},{"date":"2016-09-19","fuel":"diesel","current_price":2.389,"yoy_price":2.493,"absolute_change":-0.104,"percentage_change":-4.171680706},{"date":"2016-09-26","fuel":"diesel","current_price":2.382,"yoy_price":2.476,"absolute_change":-0.094,"percentage_change":-3.7964458805},{"date":"2016-10-03","fuel":"diesel","current_price":2.389,"yoy_price":2.492,"absolute_change":-0.103,"percentage_change":-4.1332263242},{"date":"2016-10-10","fuel":"diesel","current_price":2.445,"yoy_price":2.556,"absolute_change":-0.111,"percentage_change":-4.3427230047},{"date":"2016-10-17","fuel":"diesel","current_price":2.481,"yoy_price":2.531,"absolute_change":-0.05,"percentage_change":-1.9755037535},{"date":"2016-10-24","fuel":"diesel","current_price":2.478,"yoy_price":2.498,"absolute_change":-0.02,"percentage_change":-0.8006405124},{"date":"2016-10-31","fuel":"diesel","current_price":2.479,"yoy_price":2.485,"absolute_change":-0.006,"percentage_change":-0.2414486922},{"date":"2016-11-07","fuel":"diesel","current_price":2.47,"yoy_price":2.502,"absolute_change":-0.032,"percentage_change":-1.2789768185},{"date":"2016-11-14","fuel":"diesel","current_price":2.443,"yoy_price":2.482,"absolute_change":-0.039,"percentage_change":-1.5713134569},{"date":"2016-11-21","fuel":"diesel","current_price":2.421,"yoy_price":2.445,"absolute_change":-0.024,"percentage_change":-0.981595092},{"date":"2016-11-28","fuel":"diesel","current_price":2.42,"yoy_price":2.421,"absolute_change":-0.001,"percentage_change":-0.0413052458},{"date":"2016-12-05","fuel":"diesel","current_price":2.48,"yoy_price":2.379,"absolute_change":0.101,"percentage_change":4.2454812947},{"date":"2016-12-12","fuel":"diesel","current_price":2.493,"yoy_price":2.338,"absolute_change":0.155,"percentage_change":6.629597947},{"date":"2016-12-19","fuel":"diesel","current_price":2.527,"yoy_price":2.284,"absolute_change":0.243,"percentage_change":10.6392294221},{"date":"2016-12-26","fuel":"diesel","current_price":2.54,"yoy_price":2.237,"absolute_change":0.303,"percentage_change":13.5449262405},{"date":"2017-01-02","fuel":"diesel","current_price":2.586,"yoy_price":2.211,"absolute_change":0.375,"percentage_change":16.960651289},{"date":"2017-01-09","fuel":"diesel","current_price":2.597,"yoy_price":2.177,"absolute_change":0.42,"percentage_change":19.2926045016},{"date":"2017-01-16","fuel":"diesel","current_price":2.585,"yoy_price":2.112,"absolute_change":0.473,"percentage_change":22.3958333333},{"date":"2017-01-23","fuel":"diesel","current_price":2.569,"yoy_price":2.071,"absolute_change":0.498,"percentage_change":24.0463544182},{"date":"2017-01-30","fuel":"diesel","current_price":2.562,"yoy_price":2.031,"absolute_change":0.531,"percentage_change":26.1447562777},{"date":"2017-02-06","fuel":"diesel","current_price":2.558,"yoy_price":2.008,"absolute_change":0.55,"percentage_change":27.390438247},{"date":"2017-02-13","fuel":"diesel","current_price":2.565,"yoy_price":1.98,"absolute_change":0.585,"percentage_change":29.5454545455},{"date":"2017-02-20","fuel":"diesel","current_price":2.572,"yoy_price":1.983,"absolute_change":0.589,"percentage_change":29.7024710035},{"date":"2017-02-27","fuel":"diesel","current_price":2.577,"yoy_price":1.989,"absolute_change":0.588,"percentage_change":29.5625942685},{"date":"2017-03-06","fuel":"diesel","current_price":2.579,"yoy_price":2.021,"absolute_change":0.558,"percentage_change":27.6100940129},{"date":"2017-03-13","fuel":"diesel","current_price":2.564,"yoy_price":2.099,"absolute_change":0.465,"percentage_change":22.153406384},{"date":"2017-03-20","fuel":"diesel","current_price":2.539,"yoy_price":2.119,"absolute_change":0.42,"percentage_change":19.8206701274},{"date":"2017-03-27","fuel":"diesel","current_price":2.532,"yoy_price":2.121,"absolute_change":0.411,"percentage_change":19.3776520509},{"date":"2017-04-03","fuel":"diesel","current_price":2.556,"yoy_price":2.115,"absolute_change":0.441,"percentage_change":20.8510638298},{"date":"2017-04-10","fuel":"diesel","current_price":2.582,"yoy_price":2.128,"absolute_change":0.454,"percentage_change":21.3345864662},{"date":"2017-04-17","fuel":"diesel","current_price":2.597,"yoy_price":2.165,"absolute_change":0.432,"percentage_change":19.9538106236},{"date":"2017-04-24","fuel":"diesel","current_price":2.595,"yoy_price":2.198,"absolute_change":0.397,"percentage_change":18.0618744313},{"date":"2017-05-01","fuel":"diesel","current_price":2.583,"yoy_price":2.266,"absolute_change":0.317,"percentage_change":13.9894086496},{"date":"2017-05-08","fuel":"diesel","current_price":2.565,"yoy_price":2.271,"absolute_change":0.294,"percentage_change":12.9458388375},{"date":"2017-05-15","fuel":"diesel","current_price":2.544,"yoy_price":2.297,"absolute_change":0.247,"percentage_change":10.7531562908},{"date":"2017-05-22","fuel":"diesel","current_price":2.539,"yoy_price":2.357,"absolute_change":0.182,"percentage_change":7.7216801018},{"date":"2017-05-29","fuel":"diesel","current_price":2.571,"yoy_price":2.382,"absolute_change":0.189,"percentage_change":7.9345088161},{"date":"2017-06-05","fuel":"diesel","current_price":2.564,"yoy_price":2.407,"absolute_change":0.157,"percentage_change":6.5226422933},{"date":"2017-06-12","fuel":"diesel","current_price":2.524,"yoy_price":2.431,"absolute_change":0.093,"percentage_change":3.8255861785},{"date":"2017-06-19","fuel":"diesel","current_price":2.489,"yoy_price":2.426,"absolute_change":0.063,"percentage_change":2.5968672712},{"date":"2017-06-26","fuel":"diesel","current_price":2.465,"yoy_price":2.426,"absolute_change":0.039,"percentage_change":1.6075845012},{"date":"2017-07-03","fuel":"diesel","current_price":2.472,"yoy_price":2.423,"absolute_change":0.049,"percentage_change":2.0222864218},{"date":"2017-07-10","fuel":"diesel","current_price":2.481,"yoy_price":2.414,"absolute_change":0.067,"percentage_change":2.7754763877},{"date":"2017-07-17","fuel":"diesel","current_price":2.491,"yoy_price":2.402,"absolute_change":0.089,"percentage_change":3.7052456286},{"date":"2017-07-24","fuel":"diesel","current_price":2.507,"yoy_price":2.379,"absolute_change":0.128,"percentage_change":5.3804119378},{"date":"2017-07-31","fuel":"diesel","current_price":2.531,"yoy_price":2.348,"absolute_change":0.183,"percentage_change":7.793867121},{"date":"2017-08-07","fuel":"diesel","current_price":2.581,"yoy_price":2.316,"absolute_change":0.265,"percentage_change":11.4421416235},{"date":"2017-08-14","fuel":"diesel","current_price":2.598,"yoy_price":2.31,"absolute_change":0.288,"percentage_change":12.4675324675},{"date":"2017-08-21","fuel":"diesel","current_price":2.596,"yoy_price":2.37,"absolute_change":0.226,"percentage_change":9.5358649789},{"date":"2017-08-28","fuel":"diesel","current_price":2.605,"yoy_price":2.409,"absolute_change":0.196,"percentage_change":8.1361560814},{"date":"2017-09-04","fuel":"diesel","current_price":2.758,"yoy_price":2.407,"absolute_change":0.351,"percentage_change":14.5824678022},{"date":"2017-09-11","fuel":"diesel","current_price":2.802,"yoy_price":2.399,"absolute_change":0.403,"percentage_change":16.7986661109},{"date":"2017-09-18","fuel":"diesel","current_price":2.791,"yoy_price":2.389,"absolute_change":0.402,"percentage_change":16.8271243198},{"date":"2017-09-25","fuel":"diesel","current_price":2.788,"yoy_price":2.382,"absolute_change":0.406,"percentage_change":17.0445004198},{"date":"2017-10-02","fuel":"diesel","current_price":2.792,"yoy_price":2.389,"absolute_change":0.403,"percentage_change":16.868982838},{"date":"2017-10-09","fuel":"diesel","current_price":2.776,"yoy_price":2.445,"absolute_change":0.331,"percentage_change":13.5378323108},{"date":"2017-10-16","fuel":"diesel","current_price":2.787,"yoy_price":2.481,"absolute_change":0.306,"percentage_change":12.3337363966},{"date":"2017-10-23","fuel":"diesel","current_price":2.797,"yoy_price":2.478,"absolute_change":0.319,"percentage_change":12.8732849072},{"date":"2017-10-30","fuel":"diesel","current_price":2.819,"yoy_price":2.479,"absolute_change":0.34,"percentage_change":13.7152077451},{"date":"2017-11-06","fuel":"diesel","current_price":2.882,"yoy_price":2.47,"absolute_change":0.412,"percentage_change":16.6801619433},{"date":"2017-11-13","fuel":"diesel","current_price":2.915,"yoy_price":2.443,"absolute_change":0.472,"percentage_change":19.3205075727},{"date":"2017-11-20","fuel":"diesel","current_price":2.912,"yoy_price":2.421,"absolute_change":0.491,"percentage_change":20.2808756712},{"date":"2017-11-27","fuel":"diesel","current_price":2.926,"yoy_price":2.42,"absolute_change":0.506,"percentage_change":20.9090909091},{"date":"2017-12-04","fuel":"diesel","current_price":2.922,"yoy_price":2.48,"absolute_change":0.442,"percentage_change":17.8225806452},{"date":"2017-12-11","fuel":"diesel","current_price":2.91,"yoy_price":2.493,"absolute_change":0.417,"percentage_change":16.7268351384},{"date":"2017-12-18","fuel":"diesel","current_price":2.901,"yoy_price":2.527,"absolute_change":0.374,"percentage_change":14.8001582905},{"date":"2017-12-25","fuel":"diesel","current_price":2.903,"yoy_price":2.54,"absolute_change":0.363,"percentage_change":14.2913385827},{"date":"2018-01-01","fuel":"diesel","current_price":2.973,"yoy_price":2.586,"absolute_change":0.387,"percentage_change":14.9651972158},{"date":"2018-01-08","fuel":"diesel","current_price":2.996,"yoy_price":2.597,"absolute_change":0.399,"percentage_change":15.3638814016},{"date":"2018-01-15","fuel":"diesel","current_price":3.028,"yoy_price":2.585,"absolute_change":0.443,"percentage_change":17.1373307544},{"date":"2018-01-22","fuel":"diesel","current_price":3.025,"yoy_price":2.569,"absolute_change":0.456,"percentage_change":17.7500973141},{"date":"2018-01-29","fuel":"diesel","current_price":3.07,"yoy_price":2.562,"absolute_change":0.508,"percentage_change":19.8282591725},{"date":"2018-02-05","fuel":"diesel","current_price":3.086,"yoy_price":2.558,"absolute_change":0.528,"percentage_change":20.6411258796},{"date":"2018-02-12","fuel":"diesel","current_price":3.063,"yoy_price":2.565,"absolute_change":0.498,"percentage_change":19.4152046784},{"date":"2018-02-19","fuel":"diesel","current_price":3.027,"yoy_price":2.572,"absolute_change":0.455,"percentage_change":17.6905132193},{"date":"2018-02-26","fuel":"diesel","current_price":3.007,"yoy_price":2.577,"absolute_change":0.43,"percentage_change":16.6860690726},{"date":"2018-03-05","fuel":"diesel","current_price":2.992,"yoy_price":2.579,"absolute_change":0.413,"percentage_change":16.0139588988},{"date":"2018-03-12","fuel":"diesel","current_price":2.976,"yoy_price":2.564,"absolute_change":0.412,"percentage_change":16.0686427457},{"date":"2018-03-19","fuel":"diesel","current_price":2.972,"yoy_price":2.539,"absolute_change":0.433,"percentage_change":17.0539582513},{"date":"2018-03-26","fuel":"diesel","current_price":3.01,"yoy_price":2.532,"absolute_change":0.478,"percentage_change":18.87835703},{"date":"2018-04-02","fuel":"diesel","current_price":3.042,"yoy_price":2.556,"absolute_change":0.486,"percentage_change":19.014084507},{"date":"2018-04-09","fuel":"diesel","current_price":3.043,"yoy_price":2.582,"absolute_change":0.461,"percentage_change":17.8543764524},{"date":"2018-04-16","fuel":"diesel","current_price":3.104,"yoy_price":2.597,"absolute_change":0.507,"percentage_change":19.5225259915},{"date":"2018-04-23","fuel":"diesel","current_price":3.133,"yoy_price":2.595,"absolute_change":0.538,"percentage_change":20.732177264},{"date":"2018-04-30","fuel":"diesel","current_price":3.157,"yoy_price":2.583,"absolute_change":0.574,"percentage_change":22.2222222222},{"date":"2018-05-07","fuel":"diesel","current_price":3.171,"yoy_price":2.565,"absolute_change":0.606,"percentage_change":23.6257309942},{"date":"2018-05-14","fuel":"diesel","current_price":3.239,"yoy_price":2.544,"absolute_change":0.695,"percentage_change":27.3191823899},{"date":"2018-05-21","fuel":"diesel","current_price":3.277,"yoy_price":2.539,"absolute_change":0.738,"percentage_change":29.0665616384},{"date":"2018-05-28","fuel":"diesel","current_price":3.288,"yoy_price":2.571,"absolute_change":0.717,"percentage_change":27.8879813302},{"date":"2018-06-04","fuel":"diesel","current_price":3.285,"yoy_price":2.564,"absolute_change":0.721,"percentage_change":28.120124805},{"date":"2018-06-11","fuel":"diesel","current_price":3.266,"yoy_price":2.524,"absolute_change":0.742,"percentage_change":29.3977812995},{"date":"2018-06-18","fuel":"diesel","current_price":3.244,"yoy_price":2.489,"absolute_change":0.755,"percentage_change":30.3334672559},{"date":"2018-06-25","fuel":"diesel","current_price":3.216,"yoy_price":2.465,"absolute_change":0.751,"percentage_change":30.4665314402},{"date":"2018-07-02","fuel":"diesel","current_price":3.236,"yoy_price":2.472,"absolute_change":0.764,"percentage_change":30.9061488673},{"date":"2018-07-09","fuel":"diesel","current_price":3.243,"yoy_price":2.481,"absolute_change":0.762,"percentage_change":30.7134220073},{"date":"2018-07-16","fuel":"diesel","current_price":3.239,"yoy_price":2.491,"absolute_change":0.748,"percentage_change":30.0281011642},{"date":"2018-07-23","fuel":"diesel","current_price":3.22,"yoy_price":2.507,"absolute_change":0.713,"percentage_change":28.4403669725},{"date":"2018-07-30","fuel":"diesel","current_price":3.226,"yoy_price":2.531,"absolute_change":0.695,"percentage_change":27.4595021731},{"date":"2018-08-06","fuel":"diesel","current_price":3.223,"yoy_price":2.581,"absolute_change":0.642,"percentage_change":24.874079814},{"date":"2018-08-13","fuel":"diesel","current_price":3.217,"yoy_price":2.598,"absolute_change":0.619,"percentage_change":23.8260200154},{"date":"2018-08-20","fuel":"diesel","current_price":3.207,"yoy_price":2.596,"absolute_change":0.611,"percentage_change":23.5362095532},{"date":"2018-08-27","fuel":"diesel","current_price":3.226,"yoy_price":2.605,"absolute_change":0.621,"percentage_change":23.8387715931},{"date":"2018-09-03","fuel":"diesel","current_price":3.252,"yoy_price":2.758,"absolute_change":0.494,"percentage_change":17.9115300943},{"date":"2018-09-10","fuel":"diesel","current_price":3.258,"yoy_price":2.802,"absolute_change":0.456,"percentage_change":16.2740899358},{"date":"2018-09-17","fuel":"diesel","current_price":3.268,"yoy_price":2.791,"absolute_change":0.477,"percentage_change":17.0906485131},{"date":"2018-09-24","fuel":"diesel","current_price":3.271,"yoy_price":2.788,"absolute_change":0.483,"percentage_change":17.3242467719},{"date":"2018-10-01","fuel":"diesel","current_price":3.313,"yoy_price":2.792,"absolute_change":0.521,"percentage_change":18.6604584527},{"date":"2018-10-08","fuel":"diesel","current_price":3.385,"yoy_price":2.776,"absolute_change":0.609,"percentage_change":21.9380403458},{"date":"2018-10-15","fuel":"diesel","current_price":3.394,"yoy_price":2.787,"absolute_change":0.607,"percentage_change":21.7796914245},{"date":"2018-10-22","fuel":"diesel","current_price":3.38,"yoy_price":2.797,"absolute_change":0.583,"percentage_change":20.8437611727},{"date":"2018-10-29","fuel":"diesel","current_price":3.355,"yoy_price":2.819,"absolute_change":0.536,"percentage_change":19.0138346932},{"date":"2018-11-05","fuel":"diesel","current_price":3.338,"yoy_price":2.882,"absolute_change":0.456,"percentage_change":15.8223455933},{"date":"2018-11-12","fuel":"diesel","current_price":3.317,"yoy_price":2.915,"absolute_change":0.402,"percentage_change":13.7907375643},{"date":"2018-11-19","fuel":"diesel","current_price":3.282,"yoy_price":2.912,"absolute_change":0.37,"percentage_change":12.706043956},{"date":"2018-11-26","fuel":"diesel","current_price":3.261,"yoy_price":2.926,"absolute_change":0.335,"percentage_change":11.4490772386},{"date":"2018-12-03","fuel":"diesel","current_price":3.207,"yoy_price":2.922,"absolute_change":0.285,"percentage_change":9.7535934292},{"date":"2018-12-10","fuel":"diesel","current_price":3.161,"yoy_price":2.91,"absolute_change":0.251,"percentage_change":8.6254295533},{"date":"2018-12-17","fuel":"diesel","current_price":3.121,"yoy_price":2.901,"absolute_change":0.22,"percentage_change":7.5835918649},{"date":"2018-12-24","fuel":"diesel","current_price":3.077,"yoy_price":2.903,"absolute_change":0.174,"percentage_change":5.9937995177},{"date":"2018-12-31","fuel":"diesel","current_price":3.048,"yoy_price":2.973,"absolute_change":0.075,"percentage_change":2.5227043391},{"date":"2019-01-07","fuel":"diesel","current_price":3.013,"yoy_price":2.996,"absolute_change":0.017,"percentage_change":0.567423231},{"date":"2019-01-14","fuel":"diesel","current_price":2.976,"yoy_price":3.028,"absolute_change":-0.052,"percentage_change":-1.7173051519},{"date":"2019-01-21","fuel":"diesel","current_price":2.965,"yoy_price":3.025,"absolute_change":-0.06,"percentage_change":-1.9834710744},{"date":"2019-01-28","fuel":"diesel","current_price":2.965,"yoy_price":3.07,"absolute_change":-0.105,"percentage_change":-3.4201954397},{"date":"2019-02-04","fuel":"diesel","current_price":2.966,"yoy_price":3.086,"absolute_change":-0.12,"percentage_change":-3.8885288399},{"date":"2019-02-11","fuel":"diesel","current_price":2.966,"yoy_price":3.063,"absolute_change":-0.097,"percentage_change":-3.1668299053},{"date":"2019-02-18","fuel":"diesel","current_price":3.006,"yoy_price":3.027,"absolute_change":-0.021,"percentage_change":-0.6937561943},{"date":"2019-02-25","fuel":"diesel","current_price":3.048,"yoy_price":3.007,"absolute_change":0.041,"percentage_change":1.3634852012},{"date":"2019-03-04","fuel":"diesel","current_price":3.076,"yoy_price":2.992,"absolute_change":0.084,"percentage_change":2.807486631},{"date":"2019-03-11","fuel":"diesel","current_price":3.079,"yoy_price":2.976,"absolute_change":0.103,"percentage_change":3.4610215054},{"date":"2019-03-18","fuel":"diesel","current_price":3.07,"yoy_price":2.972,"absolute_change":0.098,"percentage_change":3.2974427995},{"date":"2019-03-25","fuel":"diesel","current_price":3.08,"yoy_price":3.01,"absolute_change":0.07,"percentage_change":2.3255813953},{"date":"2019-04-01","fuel":"diesel","current_price":3.078,"yoy_price":3.042,"absolute_change":0.036,"percentage_change":1.1834319527},{"date":"2019-04-08","fuel":"diesel","current_price":3.093,"yoy_price":3.043,"absolute_change":0.05,"percentage_change":1.6431153467},{"date":"2019-04-15","fuel":"diesel","current_price":3.118,"yoy_price":3.104,"absolute_change":0.014,"percentage_change":0.4510309278},{"date":"2019-04-22","fuel":"diesel","current_price":3.147,"yoy_price":3.133,"absolute_change":0.014,"percentage_change":0.4468560485},{"date":"2019-04-29","fuel":"diesel","current_price":3.169,"yoy_price":3.157,"absolute_change":0.012,"percentage_change":0.3801076972},{"date":"2019-05-06","fuel":"diesel","current_price":3.171,"yoy_price":3.171,"absolute_change":0,"percentage_change":0},{"date":"2019-05-13","fuel":"diesel","current_price":3.16,"yoy_price":3.239,"absolute_change":-0.079,"percentage_change":-2.4390243902},{"date":"2019-05-20","fuel":"diesel","current_price":3.163,"yoy_price":3.277,"absolute_change":-0.114,"percentage_change":-3.4787915777},{"date":"2019-05-27","fuel":"diesel","current_price":3.151,"yoy_price":3.288,"absolute_change":-0.137,"percentage_change":-4.1666666667},{"date":"2019-06-03","fuel":"diesel","current_price":3.136,"yoy_price":3.285,"absolute_change":-0.149,"percentage_change":-4.5357686454},{"date":"2019-06-10","fuel":"diesel","current_price":3.105,"yoy_price":3.266,"absolute_change":-0.161,"percentage_change":-4.9295774648},{"date":"2019-06-17","fuel":"diesel","current_price":3.07,"yoy_price":3.244,"absolute_change":-0.174,"percentage_change":-5.3637484587},{"date":"2019-06-24","fuel":"diesel","current_price":3.043,"yoy_price":3.216,"absolute_change":-0.173,"percentage_change":-5.3793532338},{"date":"2019-07-01","fuel":"diesel","current_price":3.042,"yoy_price":3.236,"absolute_change":-0.194,"percentage_change":-5.9950556242},{"date":"2019-07-08","fuel":"diesel","current_price":3.055,"yoy_price":3.243,"absolute_change":-0.188,"percentage_change":-5.7971014493},{"date":"2019-07-15","fuel":"diesel","current_price":3.051,"yoy_price":3.239,"absolute_change":-0.188,"percentage_change":-5.8042605743},{"date":"2019-07-22","fuel":"diesel","current_price":3.044,"yoy_price":3.22,"absolute_change":-0.176,"percentage_change":-5.4658385093},{"date":"2019-07-29","fuel":"diesel","current_price":3.034,"yoy_price":3.226,"absolute_change":-0.192,"percentage_change":-5.9516429014},{"date":"2019-08-05","fuel":"diesel","current_price":3.032,"yoy_price":3.223,"absolute_change":-0.191,"percentage_change":-5.9261557555},{"date":"2019-08-12","fuel":"diesel","current_price":3.011,"yoy_price":3.217,"absolute_change":-0.206,"percentage_change":-6.4034815045},{"date":"2019-08-19","fuel":"diesel","current_price":2.994,"yoy_price":3.207,"absolute_change":-0.213,"percentage_change":-6.6417212348},{"date":"2019-08-26","fuel":"diesel","current_price":2.983,"yoy_price":3.226,"absolute_change":-0.243,"percentage_change":-7.5325480471},{"date":"2019-09-02","fuel":"diesel","current_price":2.976,"yoy_price":3.252,"absolute_change":-0.276,"percentage_change":-8.4870848708},{"date":"2019-09-09","fuel":"diesel","current_price":2.971,"yoy_price":3.258,"absolute_change":-0.287,"percentage_change":-8.8090853284},{"date":"2019-09-16","fuel":"diesel","current_price":2.987,"yoy_price":3.268,"absolute_change":-0.281,"percentage_change":-8.5985312118},{"date":"2019-09-23","fuel":"diesel","current_price":3.081,"yoy_price":3.271,"absolute_change":-0.19,"percentage_change":-5.8086212168},{"date":"2019-09-30","fuel":"diesel","current_price":3.066,"yoy_price":3.313,"absolute_change":-0.247,"percentage_change":-7.4554784184},{"date":"2019-10-07","fuel":"diesel","current_price":3.047,"yoy_price":3.385,"absolute_change":-0.338,"percentage_change":-9.9852289513},{"date":"2019-10-14","fuel":"diesel","current_price":3.051,"yoy_price":3.394,"absolute_change":-0.343,"percentage_change":-10.1060695345},{"date":"2019-10-21","fuel":"diesel","current_price":3.05,"yoy_price":3.38,"absolute_change":-0.33,"percentage_change":-9.7633136095},{"date":"2019-10-28","fuel":"diesel","current_price":3.064,"yoy_price":3.355,"absolute_change":-0.291,"percentage_change":-8.6736214605},{"date":"2019-11-04","fuel":"diesel","current_price":3.062,"yoy_price":3.338,"absolute_change":-0.276,"percentage_change":-8.2684242061},{"date":"2019-11-11","fuel":"diesel","current_price":3.073,"yoy_price":3.317,"absolute_change":-0.244,"percentage_change":-7.3560446186},{"date":"2019-11-18","fuel":"diesel","current_price":3.074,"yoy_price":3.282,"absolute_change":-0.208,"percentage_change":-6.337599025},{"date":"2019-11-25","fuel":"diesel","current_price":3.066,"yoy_price":3.261,"absolute_change":-0.195,"percentage_change":-5.9797608096},{"date":"2019-12-02","fuel":"diesel","current_price":3.07,"yoy_price":3.207,"absolute_change":-0.137,"percentage_change":-4.2719052074},{"date":"2019-12-09","fuel":"diesel","current_price":3.049,"yoy_price":3.161,"absolute_change":-0.112,"percentage_change":-3.5431825372},{"date":"2019-12-16","fuel":"diesel","current_price":3.046,"yoy_price":3.121,"absolute_change":-0.075,"percentage_change":-2.4030759372},{"date":"2019-12-23","fuel":"diesel","current_price":3.041,"yoy_price":3.077,"absolute_change":-0.036,"percentage_change":-1.1699707507},{"date":"2019-12-30","fuel":"diesel","current_price":3.069,"yoy_price":3.048,"absolute_change":0.021,"percentage_change":0.688976378},{"date":"2020-01-06","fuel":"diesel","current_price":3.079,"yoy_price":3.013,"absolute_change":0.066,"percentage_change":2.1905077995},{"date":"2020-01-13","fuel":"diesel","current_price":3.064,"yoy_price":2.976,"absolute_change":0.088,"percentage_change":2.9569892473},{"date":"2020-01-20","fuel":"diesel","current_price":3.037,"yoy_price":2.965,"absolute_change":0.072,"percentage_change":2.4283305228},{"date":"2020-01-27","fuel":"diesel","current_price":3.01,"yoy_price":2.965,"absolute_change":0.045,"percentage_change":1.5177065767},{"date":"2020-02-03","fuel":"diesel","current_price":2.956,"yoy_price":2.966,"absolute_change":-0.01,"percentage_change":-0.3371544167},{"date":"2020-02-10","fuel":"diesel","current_price":2.91,"yoy_price":2.966,"absolute_change":-0.056,"percentage_change":-1.8880647336},{"date":"2020-02-17","fuel":"diesel","current_price":2.89,"yoy_price":3.006,"absolute_change":-0.116,"percentage_change":-3.8589487691},{"date":"2020-02-24","fuel":"diesel","current_price":2.882,"yoy_price":3.048,"absolute_change":-0.166,"percentage_change":-5.4461942257},{"date":"2020-03-02","fuel":"diesel","current_price":2.851,"yoy_price":3.076,"absolute_change":-0.225,"percentage_change":-7.3146944083},{"date":"2020-03-09","fuel":"diesel","current_price":2.814,"yoy_price":3.079,"absolute_change":-0.265,"percentage_change":-8.6066904839},{"date":"2020-03-16","fuel":"diesel","current_price":2.733,"yoy_price":3.07,"absolute_change":-0.337,"percentage_change":-10.9771986971},{"date":"2020-03-23","fuel":"diesel","current_price":2.659,"yoy_price":3.08,"absolute_change":-0.421,"percentage_change":-13.6688311688},{"date":"2020-03-30","fuel":"diesel","current_price":2.586,"yoy_price":3.078,"absolute_change":-0.492,"percentage_change":-15.9844054581},{"date":"2020-04-06","fuel":"diesel","current_price":2.548,"yoy_price":3.093,"absolute_change":-0.545,"percentage_change":-17.6204332363},{"date":"2020-04-13","fuel":"diesel","current_price":2.507,"yoy_price":3.118,"absolute_change":-0.611,"percentage_change":-19.5958948044},{"date":"2020-04-20","fuel":"diesel","current_price":2.48,"yoy_price":3.147,"absolute_change":-0.667,"percentage_change":-21.1947886876},{"date":"2020-04-27","fuel":"diesel","current_price":2.437,"yoy_price":3.169,"absolute_change":-0.732,"percentage_change":-23.0987693279},{"date":"2020-05-04","fuel":"diesel","current_price":2.399,"yoy_price":3.171,"absolute_change":-0.772,"percentage_change":-24.3456322927},{"date":"2020-05-11","fuel":"diesel","current_price":2.394,"yoy_price":3.16,"absolute_change":-0.766,"percentage_change":-24.2405063291},{"date":"2020-05-18","fuel":"diesel","current_price":2.386,"yoy_price":3.163,"absolute_change":-0.777,"percentage_change":-24.5652861208},{"date":"2020-05-25","fuel":"diesel","current_price":2.39,"yoy_price":3.151,"absolute_change":-0.761,"percentage_change":-24.1510631546},{"date":"2020-06-01","fuel":"diesel","current_price":2.386,"yoy_price":3.136,"absolute_change":-0.75,"percentage_change":-23.9158163265},{"date":"2020-06-08","fuel":"diesel","current_price":2.396,"yoy_price":3.105,"absolute_change":-0.709,"percentage_change":-22.8341384863},{"date":"2020-06-15","fuel":"diesel","current_price":2.403,"yoy_price":3.07,"absolute_change":-0.667,"percentage_change":-21.7263843648},{"date":"2020-06-22","fuel":"diesel","current_price":2.425,"yoy_price":3.043,"absolute_change":-0.618,"percentage_change":-20.3089056852},{"date":"2020-06-29","fuel":"diesel","current_price":2.43,"yoy_price":3.042,"absolute_change":-0.612,"percentage_change":-20.1183431953},{"date":"2020-07-06","fuel":"diesel","current_price":2.437,"yoy_price":3.055,"absolute_change":-0.618,"percentage_change":-20.2291325696},{"date":"2020-07-13","fuel":"diesel","current_price":2.438,"yoy_price":3.051,"absolute_change":-0.613,"percentage_change":-20.0917731891},{"date":"2020-07-20","fuel":"diesel","current_price":2.433,"yoy_price":3.044,"absolute_change":-0.611,"percentage_change":-20.0722733246},{"date":"2020-07-27","fuel":"diesel","current_price":2.427,"yoy_price":3.034,"absolute_change":-0.607,"percentage_change":-20.0065919578},{"date":"2020-08-03","fuel":"diesel","current_price":2.424,"yoy_price":3.032,"absolute_change":-0.608,"percentage_change":-20.0527704485},{"date":"2020-08-10","fuel":"diesel","current_price":2.428,"yoy_price":3.011,"absolute_change":-0.583,"percentage_change":-19.3623380937},{"date":"2020-08-17","fuel":"diesel","current_price":2.427,"yoy_price":2.994,"absolute_change":-0.567,"percentage_change":-18.9378757515},{"date":"2020-08-24","fuel":"diesel","current_price":2.426,"yoy_price":2.983,"absolute_change":-0.557,"percentage_change":-18.6724773718},{"date":"2020-08-31","fuel":"diesel","current_price":2.441,"yoy_price":2.976,"absolute_change":-0.535,"percentage_change":-17.9771505376},{"date":"2020-09-07","fuel":"diesel","current_price":2.435,"yoy_price":2.971,"absolute_change":-0.536,"percentage_change":-18.0410636149},{"date":"2020-09-14","fuel":"diesel","current_price":2.422,"yoy_price":2.987,"absolute_change":-0.565,"percentage_change":-18.9152996317},{"date":"2020-09-21","fuel":"diesel","current_price":2.404,"yoy_price":3.081,"absolute_change":-0.677,"percentage_change":-21.9733852645},{"date":"2020-09-28","fuel":"diesel","current_price":2.394,"yoy_price":3.066,"absolute_change":-0.672,"percentage_change":-21.9178082192},{"date":"2020-10-05","fuel":"diesel","current_price":2.387,"yoy_price":3.047,"absolute_change":-0.66,"percentage_change":-21.6606498195},{"date":"2020-10-12","fuel":"diesel","current_price":2.395,"yoy_price":3.051,"absolute_change":-0.656,"percentage_change":-21.5011471649},{"date":"2020-10-19","fuel":"diesel","current_price":2.388,"yoy_price":3.05,"absolute_change":-0.662,"percentage_change":-21.7049180328},{"date":"2020-10-26","fuel":"diesel","current_price":2.385,"yoy_price":3.064,"absolute_change":-0.679,"percentage_change":-22.1605744125},{"date":"2020-11-02","fuel":"diesel","current_price":2.372,"yoy_price":3.062,"absolute_change":-0.69,"percentage_change":-22.5342913129},{"date":"2020-11-09","fuel":"diesel","current_price":2.383,"yoy_price":3.073,"absolute_change":-0.69,"percentage_change":-22.4536283762},{"date":"2020-11-16","fuel":"diesel","current_price":2.441,"yoy_price":3.074,"absolute_change":-0.633,"percentage_change":-20.5920624593},{"date":"2020-11-23","fuel":"diesel","current_price":2.462,"yoy_price":3.066,"absolute_change":-0.604,"percentage_change":-19.6999347684},{"date":"2020-11-30","fuel":"diesel","current_price":2.502,"yoy_price":3.07,"absolute_change":-0.568,"percentage_change":-18.5016286645},{"date":"2020-12-07","fuel":"diesel","current_price":2.526,"yoy_price":3.049,"absolute_change":-0.523,"percentage_change":-17.1531649721},{"date":"2020-12-14","fuel":"diesel","current_price":2.559,"yoy_price":3.046,"absolute_change":-0.487,"percentage_change":-15.9881812213},{"date":"2020-12-21","fuel":"diesel","current_price":2.619,"yoy_price":3.041,"absolute_change":-0.422,"percentage_change":-13.8770141401},{"date":"2020-12-28","fuel":"diesel","current_price":2.635,"yoy_price":3.069,"absolute_change":-0.434,"percentage_change":-14.1414141414},{"date":"2021-01-04","fuel":"diesel","current_price":2.64,"yoy_price":3.079,"absolute_change":-0.439,"percentage_change":-14.2578759337},{"date":"2021-01-11","fuel":"diesel","current_price":2.67,"yoy_price":3.064,"absolute_change":-0.394,"percentage_change":-12.8590078329},{"date":"2021-01-18","fuel":"diesel","current_price":2.696,"yoy_price":3.037,"absolute_change":-0.341,"percentage_change":-11.2281857096},{"date":"2021-01-25","fuel":"diesel","current_price":2.716,"yoy_price":3.01,"absolute_change":-0.294,"percentage_change":-9.7674418605},{"date":"2021-02-01","fuel":"diesel","current_price":2.738,"yoy_price":2.956,"absolute_change":-0.218,"percentage_change":-7.3748308525},{"date":"2021-02-08","fuel":"diesel","current_price":2.801,"yoy_price":2.91,"absolute_change":-0.109,"percentage_change":-3.7457044674},{"date":"2021-02-15","fuel":"diesel","current_price":2.876,"yoy_price":2.89,"absolute_change":-0.014,"percentage_change":-0.4844290657},{"date":"2021-02-22","fuel":"diesel","current_price":2.973,"yoy_price":2.882,"absolute_change":0.091,"percentage_change":3.1575294934},{"date":"2021-03-01","fuel":"diesel","current_price":3.072,"yoy_price":2.851,"absolute_change":0.221,"percentage_change":7.7516660821},{"date":"2021-03-08","fuel":"diesel","current_price":3.143,"yoy_price":2.814,"absolute_change":0.329,"percentage_change":11.6915422886},{"date":"2021-03-15","fuel":"diesel","current_price":3.191,"yoy_price":2.733,"absolute_change":0.458,"percentage_change":16.7581412367},{"date":"2021-03-22","fuel":"diesel","current_price":3.194,"yoy_price":2.659,"absolute_change":0.535,"percentage_change":20.1203459947},{"date":"2021-03-29","fuel":"diesel","current_price":3.161,"yoy_price":2.586,"absolute_change":0.575,"percentage_change":22.2351121423},{"date":"2021-04-05","fuel":"diesel","current_price":3.144,"yoy_price":2.548,"absolute_change":0.596,"percentage_change":23.3908948195},{"date":"2021-04-12","fuel":"diesel","current_price":3.129,"yoy_price":2.507,"absolute_change":0.622,"percentage_change":24.8105305146},{"date":"2021-04-19","fuel":"diesel","current_price":3.124,"yoy_price":2.48,"absolute_change":0.644,"percentage_change":25.9677419355},{"date":"2021-04-26","fuel":"diesel","current_price":3.124,"yoy_price":2.437,"absolute_change":0.687,"percentage_change":28.1903980304},{"date":"2021-05-03","fuel":"diesel","current_price":3.142,"yoy_price":2.399,"absolute_change":0.743,"percentage_change":30.9712380158},{"date":"2021-05-10","fuel":"diesel","current_price":3.186,"yoy_price":2.394,"absolute_change":0.792,"percentage_change":33.0827067669},{"date":"2021-05-17","fuel":"diesel","current_price":3.249,"yoy_price":2.386,"absolute_change":0.863,"percentage_change":36.1693210394},{"date":"2021-05-24","fuel":"diesel","current_price":3.253,"yoy_price":2.39,"absolute_change":0.863,"percentage_change":36.1087866109},{"date":"2021-05-31","fuel":"diesel","current_price":3.255,"yoy_price":2.386,"absolute_change":0.869,"percentage_change":36.4207879296},{"date":"2021-06-07","fuel":"diesel","current_price":3.274,"yoy_price":2.396,"absolute_change":0.878,"percentage_change":36.6444073456},{"date":"2021-06-14","fuel":"diesel","current_price":3.286,"yoy_price":2.403,"absolute_change":0.883,"percentage_change":36.7457344985},{"date":"2021-06-21","fuel":"diesel","current_price":3.287,"yoy_price":2.425,"absolute_change":0.862,"percentage_change":35.5463917526},{"date":"2021-06-28","fuel":"diesel","current_price":3.3,"yoy_price":2.43,"absolute_change":0.87,"percentage_change":35.8024691358},{"date":"2021-07-05","fuel":"diesel","current_price":3.331,"yoy_price":2.437,"absolute_change":0.894,"percentage_change":36.6844480919},{"date":"2021-07-12","fuel":"diesel","current_price":3.338,"yoy_price":2.438,"absolute_change":0.9,"percentage_change":36.9155045119},{"date":"2021-07-19","fuel":"diesel","current_price":3.344,"yoy_price":2.433,"absolute_change":0.911,"percentage_change":37.443485409},{"date":"2021-07-26","fuel":"diesel","current_price":3.342,"yoy_price":2.427,"absolute_change":0.915,"percentage_change":37.7008652658},{"date":"2021-08-02","fuel":"diesel","current_price":3.367,"yoy_price":2.424,"absolute_change":0.943,"percentage_change":38.902640264},{"date":"2021-08-09","fuel":"diesel","current_price":3.364,"yoy_price":2.428,"absolute_change":0.936,"percentage_change":38.550247117},{"date":"2021-08-16","fuel":"diesel","current_price":3.356,"yoy_price":2.427,"absolute_change":0.929,"percentage_change":38.2777091059},{"date":"2021-08-23","fuel":"diesel","current_price":3.324,"yoy_price":2.426,"absolute_change":0.898,"percentage_change":37.0156636439},{"date":"2021-08-30","fuel":"diesel","current_price":3.339,"yoy_price":2.441,"absolute_change":0.898,"percentage_change":36.7882015567},{"date":"2021-09-06","fuel":"diesel","current_price":3.373,"yoy_price":2.435,"absolute_change":0.938,"percentage_change":38.5215605749},{"date":"2021-09-13","fuel":"diesel","current_price":3.372,"yoy_price":2.422,"absolute_change":0.95,"percentage_change":39.2237819983},{"date":"2021-09-20","fuel":"diesel","current_price":3.385,"yoy_price":2.404,"absolute_change":0.981,"percentage_change":40.8069883527},{"date":"2021-09-27","fuel":"diesel","current_price":3.406,"yoy_price":2.394,"absolute_change":1.012,"percentage_change":42.2723475355},{"date":"2021-10-04","fuel":"diesel","current_price":3.477,"yoy_price":2.387,"absolute_change":1.09,"percentage_change":45.6640134059},{"date":"2021-10-11","fuel":"diesel","current_price":3.586,"yoy_price":2.395,"absolute_change":1.191,"percentage_change":49.7286012526},{"date":"2021-10-18","fuel":"diesel","current_price":3.671,"yoy_price":2.388,"absolute_change":1.283,"percentage_change":53.7269681742},{"date":"2021-10-25","fuel":"diesel","current_price":3.713,"yoy_price":2.385,"absolute_change":1.328,"percentage_change":55.6813417191},{"date":"2021-11-01","fuel":"diesel","current_price":3.727,"yoy_price":2.372,"absolute_change":1.355,"percentage_change":57.1247892074},{"date":"2021-11-08","fuel":"diesel","current_price":3.73,"yoy_price":2.383,"absolute_change":1.347,"percentage_change":56.5253881662},{"date":"2021-11-15","fuel":"diesel","current_price":3.734,"yoy_price":2.441,"absolute_change":1.293,"percentage_change":52.9700942237},{"date":"2021-11-22","fuel":"diesel","current_price":3.724,"yoy_price":2.462,"absolute_change":1.262,"percentage_change":51.2591389115},{"date":"2021-11-29","fuel":"diesel","current_price":3.72,"yoy_price":2.502,"absolute_change":1.218,"percentage_change":48.6810551559},{"date":"2021-12-06","fuel":"diesel","current_price":3.674,"yoy_price":2.526,"absolute_change":1.148,"percentage_change":45.4473475851},{"date":"2021-12-13","fuel":"diesel","current_price":3.649,"yoy_price":2.559,"absolute_change":1.09,"percentage_change":42.5947635795},{"date":"2021-12-20","fuel":"diesel","current_price":3.626,"yoy_price":2.619,"absolute_change":1.007,"percentage_change":38.4497899962},{"date":"2021-12-27","fuel":"diesel","current_price":3.615,"yoy_price":2.635,"absolute_change":0.98,"percentage_change":37.1916508539},{"date":"2022-01-03","fuel":"diesel","current_price":3.613,"yoy_price":2.64,"absolute_change":0.973,"percentage_change":36.8560606061},{"date":"2022-01-10","fuel":"diesel","current_price":3.657,"yoy_price":2.67,"absolute_change":0.987,"percentage_change":36.9662921348},{"date":"2022-01-17","fuel":"diesel","current_price":3.725,"yoy_price":2.696,"absolute_change":1.029,"percentage_change":38.1676557864},{"date":"2022-01-24","fuel":"diesel","current_price":3.78,"yoy_price":2.716,"absolute_change":1.064,"percentage_change":39.175257732},{"date":"2022-01-31","fuel":"diesel","current_price":3.846,"yoy_price":2.738,"absolute_change":1.108,"percentage_change":40.4674945215},{"date":"2022-02-07","fuel":"diesel","current_price":3.951,"yoy_price":2.801,"absolute_change":1.15,"percentage_change":41.0567654409},{"date":"2022-02-14","fuel":"diesel","current_price":4.019,"yoy_price":2.876,"absolute_change":1.143,"percentage_change":39.7426981919},{"date":"2022-02-21","fuel":"diesel","current_price":4.055,"yoy_price":2.973,"absolute_change":1.082,"percentage_change":36.394214598},{"date":"2022-02-28","fuel":"diesel","current_price":4.104,"yoy_price":3.072,"absolute_change":1.032,"percentage_change":33.59375},{"date":"2022-03-07","fuel":"diesel","current_price":4.849,"yoy_price":3.143,"absolute_change":1.706,"percentage_change":54.2793509386},{"date":"2022-03-14","fuel":"diesel","current_price":5.25,"yoy_price":3.191,"absolute_change":2.059,"percentage_change":64.5252272015},{"date":"2022-03-21","fuel":"diesel","current_price":5.134,"yoy_price":3.194,"absolute_change":1.94,"percentage_change":60.7388854101},{"date":"2022-03-28","fuel":"diesel","current_price":5.185,"yoy_price":3.161,"absolute_change":2.024,"percentage_change":64.030370136},{"date":"2022-04-04","fuel":"diesel","current_price":5.144,"yoy_price":3.144,"absolute_change":2,"percentage_change":63.6132315522},{"date":"2022-04-11","fuel":"diesel","current_price":5.073,"yoy_price":3.129,"absolute_change":1.944,"percentage_change":62.1284755513},{"date":"2022-04-18","fuel":"diesel","current_price":5.101,"yoy_price":3.124,"absolute_change":1.977,"percentage_change":63.2842509603},{"date":"2022-04-25","fuel":"diesel","current_price":5.16,"yoy_price":3.124,"absolute_change":2.036,"percentage_change":65.1728553137},{"date":"2022-05-02","fuel":"diesel","current_price":5.509,"yoy_price":3.142,"absolute_change":2.367,"percentage_change":75.3341820496},{"date":"2022-05-09","fuel":"diesel","current_price":5.623,"yoy_price":3.186,"absolute_change":2.437,"percentage_change":76.4908976773},{"date":"2022-05-16","fuel":"diesel","current_price":5.613,"yoy_price":3.249,"absolute_change":2.364,"percentage_change":72.7608494922},{"date":"2022-05-23","fuel":"diesel","current_price":5.571,"yoy_price":3.253,"absolute_change":2.318,"percentage_change":71.257300953},{"date":"2022-05-30","fuel":"diesel","current_price":5.539,"yoy_price":3.255,"absolute_change":2.284,"percentage_change":70.1689708141},{"date":"2022-06-06","fuel":"diesel","current_price":5.703,"yoy_price":3.274,"absolute_change":2.429,"percentage_change":74.1905925473},{"date":"2022-06-13","fuel":"diesel","current_price":5.718,"yoy_price":3.286,"absolute_change":2.432,"percentage_change":74.0109555691},{"date":"2022-06-20","fuel":"diesel","current_price":5.81,"yoy_price":3.287,"absolute_change":2.523,"percentage_change":76.7569212047},{"date":"2022-06-27","fuel":"diesel","current_price":5.783,"yoy_price":3.3,"absolute_change":2.483,"percentage_change":75.2424242424},{"date":"2022-07-04","fuel":"diesel","current_price":5.675,"yoy_price":3.331,"absolute_change":2.344,"percentage_change":70.3692584809},{"date":"2022-07-11","fuel":"diesel","current_price":5.568,"yoy_price":3.338,"absolute_change":2.23,"percentage_change":66.8064709407},{"date":"2022-07-18","fuel":"diesel","current_price":5.432,"yoy_price":3.344,"absolute_change":2.088,"percentage_change":62.4401913876},{"date":"2022-07-25","fuel":"diesel","current_price":5.268,"yoy_price":3.342,"absolute_change":1.926,"percentage_change":57.6301615799},{"date":"2022-08-01","fuel":"diesel","current_price":5.138,"yoy_price":3.367,"absolute_change":1.771,"percentage_change":52.5987525988},{"date":"2022-08-08","fuel":"diesel","current_price":4.993,"yoy_price":3.364,"absolute_change":1.629,"percentage_change":48.4244946492},{"date":"2022-08-15","fuel":"diesel","current_price":4.911,"yoy_price":3.356,"absolute_change":1.555,"percentage_change":46.3349225268},{"date":"2022-08-22","fuel":"diesel","current_price":4.909,"yoy_price":3.324,"absolute_change":1.585,"percentage_change":47.6835138387},{"date":"2022-08-29","fuel":"diesel","current_price":5.115,"yoy_price":3.339,"absolute_change":1.776,"percentage_change":53.1895777179},{"date":"2022-09-05","fuel":"diesel","current_price":5.084,"yoy_price":3.373,"absolute_change":1.711,"percentage_change":50.7263563593},{"date":"2022-09-12","fuel":"diesel","current_price":5.033,"yoy_price":3.372,"absolute_change":1.661,"percentage_change":49.2586002372},{"date":"2022-09-19","fuel":"diesel","current_price":4.964,"yoy_price":3.385,"absolute_change":1.579,"percentage_change":46.646971935},{"date":"2022-09-26","fuel":"diesel","current_price":4.889,"yoy_price":3.406,"absolute_change":1.483,"percentage_change":43.5408103347},{"date":"2022-10-03","fuel":"diesel","current_price":4.836,"yoy_price":3.477,"absolute_change":1.359,"percentage_change":39.0854184642},{"date":"2022-10-10","fuel":"diesel","current_price":5.224,"yoy_price":3.586,"absolute_change":1.638,"percentage_change":45.6776352482},{"date":"2022-10-17","fuel":"diesel","current_price":5.339,"yoy_price":3.671,"absolute_change":1.668,"percentage_change":45.4372105693},{"date":"2022-10-24","fuel":"diesel","current_price":5.341,"yoy_price":3.713,"absolute_change":1.628,"percentage_change":43.8459466738},{"date":"2022-10-31","fuel":"diesel","current_price":5.317,"yoy_price":3.727,"absolute_change":1.59,"percentage_change":42.6616581701},{"date":"2022-11-07","fuel":"diesel","current_price":5.333,"yoy_price":3.73,"absolute_change":1.603,"percentage_change":42.9758713137},{"date":"2022-11-14","fuel":"diesel","current_price":5.313,"yoy_price":3.734,"absolute_change":1.579,"percentage_change":42.2870915908},{"date":"2022-11-21","fuel":"diesel","current_price":5.233,"yoy_price":3.724,"absolute_change":1.509,"percentage_change":40.5209452202},{"date":"2022-11-28","fuel":"diesel","current_price":5.141,"yoy_price":3.72,"absolute_change":1.421,"percentage_change":38.1989247312},{"date":"2022-12-05","fuel":"diesel","current_price":4.967,"yoy_price":3.674,"absolute_change":1.293,"percentage_change":35.1932498639},{"date":"2022-12-12","fuel":"diesel","current_price":4.754,"yoy_price":3.649,"absolute_change":1.105,"percentage_change":30.2822691148},{"date":"2022-12-19","fuel":"diesel","current_price":4.596,"yoy_price":3.626,"absolute_change":0.97,"percentage_change":26.751241037},{"date":"2022-12-26","fuel":"diesel","current_price":4.537,"yoy_price":3.615,"absolute_change":0.922,"percentage_change":25.5048409405},{"date":"2023-01-02","fuel":"diesel","current_price":4.583,"yoy_price":3.613,"absolute_change":0.97,"percentage_change":26.8474951564},{"date":"2023-01-09","fuel":"diesel","current_price":4.549,"yoy_price":3.657,"absolute_change":0.892,"percentage_change":24.391577796},{"date":"2023-01-16","fuel":"diesel","current_price":4.524,"yoy_price":3.725,"absolute_change":0.799,"percentage_change":21.4496644295},{"date":"2023-01-23","fuel":"diesel","current_price":4.604,"yoy_price":3.78,"absolute_change":0.824,"percentage_change":21.7989417989},{"date":"2023-01-30","fuel":"diesel","current_price":4.622,"yoy_price":3.846,"absolute_change":0.776,"percentage_change":20.1768070723},{"date":"2023-02-06","fuel":"diesel","current_price":4.539,"yoy_price":3.951,"absolute_change":0.588,"percentage_change":14.8823082764},{"date":"2023-02-13","fuel":"diesel","current_price":4.444,"yoy_price":4.019,"absolute_change":0.425,"percentage_change":10.5747698432},{"date":"2023-02-20","fuel":"diesel","current_price":4.376,"yoy_price":4.055,"absolute_change":0.321,"percentage_change":7.9161528977},{"date":"2023-02-27","fuel":"diesel","current_price":4.294,"yoy_price":4.104,"absolute_change":0.19,"percentage_change":4.6296296296},{"date":"2023-03-06","fuel":"diesel","current_price":4.282,"yoy_price":4.849,"absolute_change":-0.567,"percentage_change":-11.6931326047},{"date":"2023-03-13","fuel":"diesel","current_price":4.247,"yoy_price":5.25,"absolute_change":-1.003,"percentage_change":-19.1047619048},{"date":"2023-03-20","fuel":"diesel","current_price":4.185,"yoy_price":5.134,"absolute_change":-0.949,"percentage_change":-18.484612388},{"date":"2023-03-27","fuel":"diesel","current_price":4.128,"yoy_price":5.185,"absolute_change":-1.057,"percentage_change":-20.3857280617},{"date":"2023-04-03","fuel":"diesel","current_price":4.105,"yoy_price":5.144,"absolute_change":-1.039,"percentage_change":-20.1982892691},{"date":"2023-04-10","fuel":"diesel","current_price":4.098,"yoy_price":5.073,"absolute_change":-0.975,"percentage_change":-19.2193968066},{"date":"2023-04-17","fuel":"diesel","current_price":4.116,"yoy_price":5.101,"absolute_change":-0.985,"percentage_change":-19.3099392276},{"date":"2023-04-24","fuel":"diesel","current_price":4.077,"yoy_price":5.16,"absolute_change":-1.083,"percentage_change":-20.988372093},{"date":"2023-05-01","fuel":"diesel","current_price":4.018,"yoy_price":5.509,"absolute_change":-1.491,"percentage_change":-27.0648030496},{"date":"2023-05-08","fuel":"diesel","current_price":3.922,"yoy_price":5.623,"absolute_change":-1.701,"percentage_change":-30.2507558243},{"date":"2023-05-15","fuel":"diesel","current_price":3.897,"yoy_price":5.613,"absolute_change":-1.716,"percentage_change":-30.5718866916},{"date":"2023-05-22","fuel":"diesel","current_price":3.883,"yoy_price":5.571,"absolute_change":-1.688,"percentage_change":-30.2997666487},{"date":"2023-05-29","fuel":"diesel","current_price":3.855,"yoy_price":5.539,"absolute_change":-1.684,"percentage_change":-30.4025997472},{"date":"2023-06-05","fuel":"diesel","current_price":3.797,"yoy_price":5.703,"absolute_change":-1.906,"percentage_change":-33.4210064878},{"date":"2023-06-12","fuel":"diesel","current_price":3.794,"yoy_price":5.718,"absolute_change":-1.924,"percentage_change":-33.6481287163},{"date":"2023-06-19","fuel":"diesel","current_price":3.815,"yoy_price":5.81,"absolute_change":-1.995,"percentage_change":-34.3373493976},{"date":"2023-06-26","fuel":"diesel","current_price":3.801,"yoy_price":5.783,"absolute_change":-1.982,"percentage_change":-34.2728687532},{"date":"2023-07-03","fuel":"diesel","current_price":3.767,"yoy_price":5.675,"absolute_change":-1.908,"percentage_change":-33.6211453744},{"date":"2023-07-10","fuel":"diesel","current_price":3.806,"yoy_price":5.568,"absolute_change":-1.762,"percentage_change":-31.6451149425},{"date":"2023-07-17","fuel":"diesel","current_price":3.806,"yoy_price":5.432,"absolute_change":-1.626,"percentage_change":-29.9337260677},{"date":"2023-07-24","fuel":"diesel","current_price":3.905,"yoy_price":5.268,"absolute_change":-1.363,"percentage_change":-25.8731966591},{"date":"2023-07-31","fuel":"diesel","current_price":4.127,"yoy_price":5.138,"absolute_change":-1.011,"percentage_change":-19.6769170884},{"date":"2023-08-07","fuel":"diesel","current_price":4.239,"yoy_price":4.993,"absolute_change":-0.754,"percentage_change":-15.1011415982},{"date":"2023-08-14","fuel":"diesel","current_price":4.378,"yoy_price":4.911,"absolute_change":-0.533,"percentage_change":-10.8531867237},{"date":"2023-08-21","fuel":"diesel","current_price":4.389,"yoy_price":4.909,"absolute_change":-0.52,"percentage_change":-10.5927887553},{"date":"2023-08-28","fuel":"diesel","current_price":4.475,"yoy_price":5.115,"absolute_change":-0.64,"percentage_change":-12.5122189638},{"date":"2023-09-04","fuel":"diesel","current_price":4.492,"yoy_price":5.084,"absolute_change":-0.592,"percentage_change":-11.6443745083},{"date":"2023-09-11","fuel":"diesel","current_price":4.54,"yoy_price":5.033,"absolute_change":-0.493,"percentage_change":-9.7953506855},{"date":"2023-09-18","fuel":"diesel","current_price":4.633,"yoy_price":4.964,"absolute_change":-0.331,"percentage_change":-6.6680096696},{"date":"2023-09-25","fuel":"diesel","current_price":4.586,"yoy_price":4.889,"absolute_change":-0.303,"percentage_change":-6.1975864185},{"date":"2023-10-02","fuel":"diesel","current_price":4.593,"yoy_price":4.836,"absolute_change":-0.243,"percentage_change":-5.0248138958},{"date":"2023-10-09","fuel":"diesel","current_price":4.498,"yoy_price":5.224,"absolute_change":-0.726,"percentage_change":-13.8973966309},{"date":"2023-10-16","fuel":"diesel","current_price":4.444,"yoy_price":5.339,"absolute_change":-0.895,"percentage_change":-16.7634388462},{"date":"2023-10-23","fuel":"diesel","current_price":4.545,"yoy_price":5.341,"absolute_change":-0.796,"percentage_change":-14.9035761093},{"date":"2023-10-30","fuel":"diesel","current_price":4.454,"yoy_price":5.317,"absolute_change":-0.863,"percentage_change":-16.2309573068},{"date":"2023-11-06","fuel":"diesel","current_price":4.366,"yoy_price":5.333,"absolute_change":-0.967,"percentage_change":-18.132383274},{"date":"2023-11-13","fuel":"diesel","current_price":4.294,"yoy_price":5.313,"absolute_change":-1.019,"percentage_change":-19.1793713533},{"date":"2023-11-20","fuel":"diesel","current_price":4.209,"yoy_price":5.233,"absolute_change":-1.024,"percentage_change":-19.5681253583},{"date":"2023-11-27","fuel":"diesel","current_price":4.146,"yoy_price":5.141,"absolute_change":-0.995,"percentage_change":-19.3542112429},{"date":"2023-12-04","fuel":"diesel","current_price":4.092,"yoy_price":4.967,"absolute_change":-0.875,"percentage_change":-17.6162673646},{"date":"2023-12-11","fuel":"diesel","current_price":3.987,"yoy_price":4.754,"absolute_change":-0.767,"percentage_change":-16.1337820782},{"date":"2023-12-18","fuel":"diesel","current_price":3.894,"yoy_price":4.596,"absolute_change":-0.702,"percentage_change":-15.274151436},{"date":"2023-12-25","fuel":"diesel","current_price":3.914,"yoy_price":4.537,"absolute_change":-0.623,"percentage_change":-13.7315406656},{"date":"2024-01-01","fuel":"diesel","current_price":3.876,"yoy_price":4.583,"absolute_change":-0.707,"percentage_change":-15.4265764783},{"date":"2024-01-08","fuel":"diesel","current_price":3.828,"yoy_price":4.549,"absolute_change":-0.721,"percentage_change":-15.8496372829},{"date":"2024-01-15","fuel":"diesel","current_price":3.863,"yoy_price":4.524,"absolute_change":-0.661,"percentage_change":-14.6109637489},{"date":"2024-01-22","fuel":"diesel","current_price":3.838,"yoy_price":4.604,"absolute_change":-0.766,"percentage_change":-16.6377063423},{"date":"2024-01-29","fuel":"diesel","current_price":3.867,"yoy_price":4.622,"absolute_change":-0.755,"percentage_change":-16.3349199481},{"date":"2024-02-05","fuel":"diesel","current_price":3.899,"yoy_price":4.539,"absolute_change":-0.64,"percentage_change":-14.1000220313},{"date":"2024-02-12","fuel":"diesel","current_price":4.109,"yoy_price":4.444,"absolute_change":-0.335,"percentage_change":-7.5382538254},{"date":"2024-02-19","fuel":"diesel","current_price":4.109,"yoy_price":4.376,"absolute_change":-0.267,"percentage_change":-6.1014625229},{"date":"2024-02-26","fuel":"diesel","current_price":4.058,"yoy_price":4.294,"absolute_change":-0.236,"percentage_change":-5.4960409874},{"date":"2024-03-04","fuel":"diesel","current_price":4.022,"yoy_price":4.282,"absolute_change":-0.26,"percentage_change":-6.0719290051},{"date":"2024-03-11","fuel":"diesel","current_price":4.004,"yoy_price":4.247,"absolute_change":-0.243,"percentage_change":-5.7216858959},{"date":"2024-03-18","fuel":"diesel","current_price":4.028,"yoy_price":4.185,"absolute_change":-0.157,"percentage_change":-3.7514934289},{"date":"2024-03-25","fuel":"diesel","current_price":4.034,"yoy_price":4.128,"absolute_change":-0.094,"percentage_change":-2.2771317829},{"date":"2024-04-01","fuel":"diesel","current_price":3.996,"yoy_price":4.105,"absolute_change":-0.109,"percentage_change":-2.6552984166},{"date":"2024-04-08","fuel":"diesel","current_price":4.061,"yoy_price":4.098,"absolute_change":-0.037,"percentage_change":-0.9028794534},{"date":"2024-04-15","fuel":"diesel","current_price":4.015,"yoy_price":4.116,"absolute_change":-0.101,"percentage_change":-2.4538386783},{"date":"2024-04-22","fuel":"diesel","current_price":3.992,"yoy_price":4.077,"absolute_change":-0.085,"percentage_change":-2.0848663233},{"date":"2024-04-29","fuel":"diesel","current_price":3.947,"yoy_price":4.018,"absolute_change":-0.071,"percentage_change":-1.7670482827},{"date":"2024-05-06","fuel":"diesel","current_price":3.894,"yoy_price":3.922,"absolute_change":-0.028,"percentage_change":-0.7139214686},{"date":"2024-05-13","fuel":"diesel","current_price":3.848,"yoy_price":3.897,"absolute_change":-0.049,"percentage_change":-1.2573774698},{"date":"2024-05-20","fuel":"diesel","current_price":3.789,"yoy_price":3.883,"absolute_change":-0.094,"percentage_change":-2.4208086531},{"date":"2024-05-27","fuel":"diesel","current_price":3.758,"yoy_price":3.855,"absolute_change":-0.097,"percentage_change":-2.5162127108},{"date":"2024-06-03","fuel":"diesel","current_price":3.726,"yoy_price":3.797,"absolute_change":-0.071,"percentage_change":-1.8698972873},{"date":"2024-06-10","fuel":"diesel","current_price":3.658,"yoy_price":3.794,"absolute_change":-0.136,"percentage_change":-3.5846072746},{"date":"2024-06-17","fuel":"diesel","current_price":3.735,"yoy_price":3.815,"absolute_change":-0.08,"percentage_change":-2.0969855832},{"date":"2024-06-24","fuel":"diesel","current_price":3.769,"yoy_price":3.801,"absolute_change":-0.032,"percentage_change":-0.8418837148},{"date":"2024-07-01","fuel":"diesel","current_price":3.813,"yoy_price":3.767,"absolute_change":0.046,"percentage_change":1.2211308734},{"date":"2024-07-08","fuel":"diesel","current_price":3.865,"yoy_price":3.806,"absolute_change":0.059,"percentage_change":1.5501839201},{"date":"2024-07-15","fuel":"diesel","current_price":3.826,"yoy_price":3.806,"absolute_change":0.02,"percentage_change":0.5254860746},{"date":"2024-07-22","fuel":"diesel","current_price":3.779,"yoy_price":3.905,"absolute_change":-0.126,"percentage_change":-3.2266325224},{"date":"2024-07-29","fuel":"diesel","current_price":3.768,"yoy_price":4.127,"absolute_change":-0.359,"percentage_change":-8.6988126969},{"date":"2024-08-05","fuel":"diesel","current_price":3.755,"yoy_price":4.239,"absolute_change":-0.484,"percentage_change":-11.417787214},{"date":"2024-08-12","fuel":"diesel","current_price":3.704,"yoy_price":4.378,"absolute_change":-0.674,"percentage_change":-15.3951576062},{"date":"2024-08-19","fuel":"diesel","current_price":3.688,"yoy_price":4.389,"absolute_change":-0.701,"percentage_change":-15.9717475507},{"date":"2024-08-26","fuel":"diesel","current_price":3.651,"yoy_price":4.475,"absolute_change":-0.824,"percentage_change":-18.4134078212},{"date":"2024-09-02","fuel":"diesel","current_price":3.625,"yoy_price":4.492,"absolute_change":-0.867,"percentage_change":-19.3009795191},{"date":"2024-09-09","fuel":"diesel","current_price":3.555,"yoy_price":4.54,"absolute_change":-0.985,"percentage_change":-21.6960352423},{"date":"2024-09-16","fuel":"diesel","current_price":3.526,"yoy_price":4.633,"absolute_change":-1.107,"percentage_change":-23.8938053097},{"date":"2024-09-23","fuel":"diesel","current_price":3.539,"yoy_price":4.586,"absolute_change":-1.047,"percentage_change":-22.830353249},{"date":"2024-09-30","fuel":"diesel","current_price":3.544,"yoy_price":4.593,"absolute_change":-1.049,"percentage_change":-22.8391029828},{"date":"2024-10-07","fuel":"diesel","current_price":3.584,"yoy_price":4.498,"absolute_change":-0.914,"percentage_change":-20.3201422855},{"date":"2024-10-14","fuel":"diesel","current_price":3.631,"yoy_price":4.444,"absolute_change":-0.813,"percentage_change":-18.2943294329},{"date":"2024-10-21","fuel":"diesel","current_price":3.553,"yoy_price":4.545,"absolute_change":-0.992,"percentage_change":-21.8261826183},{"date":"2024-10-28","fuel":"diesel","current_price":3.573,"yoy_price":4.454,"absolute_change":-0.881,"percentage_change":-19.7799730579},{"date":"2024-11-04","fuel":"diesel","current_price":3.536,"yoy_price":4.366,"absolute_change":-0.83,"percentage_change":-19.0105359597},{"date":"2024-11-11","fuel":"diesel","current_price":3.521,"yoy_price":4.294,"absolute_change":-0.773,"percentage_change":-18.0018630647},{"date":"2024-11-18","fuel":"diesel","current_price":3.491,"yoy_price":4.209,"absolute_change":-0.718,"percentage_change":-17.0586837729},{"date":"2024-11-25","fuel":"diesel","current_price":3.539,"yoy_price":4.146,"absolute_change":-0.607,"percentage_change":-14.6406174626},{"date":"2024-12-02","fuel":"diesel","current_price":3.54,"yoy_price":4.092,"absolute_change":-0.552,"percentage_change":-13.4897360704},{"date":"2024-12-09","fuel":"diesel","current_price":3.458,"yoy_price":3.987,"absolute_change":-0.529,"percentage_change":-13.2681213945},{"date":"2024-12-16","fuel":"diesel","current_price":3.494,"yoy_price":3.894,"absolute_change":-0.4,"percentage_change":-10.272213662},{"date":"2024-12-23","fuel":"diesel","current_price":3.476,"yoy_price":3.914,"absolute_change":-0.438,"percentage_change":-11.1905978539},{"date":"2024-12-30","fuel":"diesel","current_price":3.503,"yoy_price":3.876,"absolute_change":-0.373,"percentage_change":-9.6233230134},{"date":"2025-01-06","fuel":"diesel","current_price":3.561,"yoy_price":3.828,"absolute_change":-0.267,"percentage_change":-6.9749216301},{"date":"2025-01-13","fuel":"diesel","current_price":3.602,"yoy_price":3.863,"absolute_change":-0.261,"percentage_change":-6.7564069376},{"date":"2025-01-20","fuel":"diesel","current_price":3.715,"yoy_price":3.838,"absolute_change":-0.123,"percentage_change":-3.2047941636},{"date":"2025-01-27","fuel":"diesel","current_price":3.659,"yoy_price":3.867,"absolute_change":-0.208,"percentage_change":-5.3788466512},{"date":"2025-02-03","fuel":"diesel","current_price":3.66,"yoy_price":3.899,"absolute_change":-0.239,"percentage_change":-6.1297768659},{"date":"2025-02-10","fuel":"diesel","current_price":3.665,"yoy_price":4.109,"absolute_change":-0.444,"percentage_change":-10.8055487953},{"date":"2025-02-17","fuel":"diesel","current_price":3.677,"yoy_price":4.109,"absolute_change":-0.432,"percentage_change":-10.513506936},{"date":"2025-02-24","fuel":"diesel","current_price":3.697,"yoy_price":4.058,"absolute_change":-0.361,"percentage_change":-8.8960078857},{"date":"2025-03-03","fuel":"diesel","current_price":3.635,"yoy_price":4.022,"absolute_change":-0.387,"percentage_change":-9.6220785679},{"date":"2025-03-10","fuel":"diesel","current_price":3.582,"yoy_price":4.004,"absolute_change":-0.422,"percentage_change":-10.5394605395},{"date":"2025-03-17","fuel":"diesel","current_price":3.549,"yoy_price":4.028,"absolute_change":-0.479,"percentage_change":-11.8917576961},{"date":"2025-03-24","fuel":"diesel","current_price":3.567,"yoy_price":4.034,"absolute_change":-0.467,"percentage_change":-11.5765989093},{"date":"2025-03-31","fuel":"diesel","current_price":3.592,"yoy_price":3.996,"absolute_change":-0.404,"percentage_change":-10.1101101101},{"date":"2025-04-07","fuel":"diesel","current_price":3.639,"yoy_price":4.061,"absolute_change":-0.422,"percentage_change":-10.39152918},{"date":"2025-04-14","fuel":"diesel","current_price":3.579,"yoy_price":4.015,"absolute_change":-0.436,"percentage_change":-10.8592777086},{"date":"2025-04-21","fuel":"diesel","current_price":3.534,"yoy_price":3.992,"absolute_change":-0.458,"percentage_change":-11.4729458918},{"date":"2025-04-28","fuel":"diesel","current_price":3.514,"yoy_price":3.947,"absolute_change":-0.433,"percentage_change":-10.9703572333},{"date":"2025-05-05","fuel":"diesel","current_price":3.497,"yoy_price":3.894,"absolute_change":-0.397,"percentage_change":-10.1951720596},{"date":"2025-05-12","fuel":"diesel","current_price":3.476,"yoy_price":3.848,"absolute_change":-0.372,"percentage_change":-9.6673596674},{"date":"2025-05-19","fuel":"diesel","current_price":3.536,"yoy_price":3.789,"absolute_change":-0.253,"percentage_change":-6.6772235418},{"date":"2025-05-26","fuel":"diesel","current_price":3.487,"yoy_price":3.758,"absolute_change":-0.271,"percentage_change":-7.2112825971},{"date":"2025-06-02","fuel":"diesel","current_price":3.451,"yoy_price":3.726,"absolute_change":-0.275,"percentage_change":-7.3805689748},{"date":"2025-06-09","fuel":"diesel","current_price":3.471,"yoy_price":3.658,"absolute_change":-0.187,"percentage_change":-5.1120831055},{"date":"2025-06-16","fuel":"diesel","current_price":3.571,"yoy_price":3.735,"absolute_change":-0.164,"percentage_change":-4.390896921},{"date":"2025-06-23","fuel":"diesel","current_price":3.775,"yoy_price":3.769,"absolute_change":0.006,"percentage_change":0.15919342},{"date":"1991-09-30","fuel":"gasoline","current_price":1.092,"yoy_price":1.191,"absolute_change":-0.099,"percentage_change":-8.3123425693},{"date":"1991-10-07","fuel":"gasoline","current_price":1.089,"yoy_price":1.245,"absolute_change":-0.156,"percentage_change":-12.5301204819},{"date":"1991-10-14","fuel":"gasoline","current_price":1.084,"yoy_price":1.242,"absolute_change":-0.158,"percentage_change":-12.7214170692},{"date":"1991-10-21","fuel":"gasoline","current_price":1.088,"yoy_price":1.252,"absolute_change":-0.164,"percentage_change":-13.0990415335},{"date":"1991-10-28","fuel":"gasoline","current_price":1.091,"yoy_price":1.266,"absolute_change":-0.175,"percentage_change":-13.8230647709},{"date":"1991-11-04","fuel":"gasoline","current_price":1.091,"yoy_price":1.272,"absolute_change":-0.181,"percentage_change":-14.2295597484},{"date":"1991-11-11","fuel":"gasoline","current_price":1.102,"yoy_price":1.321,"absolute_change":-0.219,"percentage_change":-16.578349735},{"date":"1991-11-18","fuel":"gasoline","current_price":1.104,"yoy_price":1.333,"absolute_change":-0.229,"percentage_change":-17.1792948237},{"date":"1991-11-25","fuel":"gasoline","current_price":1.099,"yoy_price":1.339,"absolute_change":-0.24,"percentage_change":-17.9238237491},{"date":"1991-12-02","fuel":"gasoline","current_price":1.099,"yoy_price":1.345,"absolute_change":-0.246,"percentage_change":-18.2899628253},{"date":"1991-12-09","fuel":"gasoline","current_price":1.091,"yoy_price":1.339,"absolute_change":-0.248,"percentage_change":-18.5212845407},{"date":"1991-12-16","fuel":"gasoline","current_price":1.075,"yoy_price":1.334,"absolute_change":-0.259,"percentage_change":-19.4152923538},{"date":"1991-12-23","fuel":"gasoline","current_price":1.063,"yoy_price":1.328,"absolute_change":-0.265,"percentage_change":-19.9548192771},{"date":"1991-12-30","fuel":"gasoline","current_price":1.053,"yoy_price":1.323,"absolute_change":-0.27,"percentage_change":-20.4081632653},{"date":"1992-01-06","fuel":"gasoline","current_price":1.042,"yoy_price":1.311,"absolute_change":-0.269,"percentage_change":-20.5186880244},{"date":"1992-01-13","fuel":"gasoline","current_price":1.026,"yoy_price":1.341,"absolute_change":-0.315,"percentage_change":-23.4899328859},{"date":"1992-01-20","fuel":"gasoline","current_price":1.014,"yoy_price":1.192,"absolute_change":-0.178,"percentage_change":-14.932885906},{"date":"1992-01-27","fuel":"gasoline","current_price":1.006,"yoy_price":1.168,"absolute_change":-0.162,"percentage_change":-13.8698630137},{"date":"1992-02-03","fuel":"gasoline","current_price":0.995,"yoy_price":1.139,"absolute_change":-0.144,"percentage_change":-12.6426690079},{"date":"1992-02-10","fuel":"gasoline","current_price":1.004,"yoy_price":1.106,"absolute_change":-0.102,"percentage_change":-9.2224231465},{"date":"1992-02-17","fuel":"gasoline","current_price":1.011,"yoy_price":1.078,"absolute_change":-0.067,"percentage_change":-6.2152133581},{"date":"1992-02-24","fuel":"gasoline","current_price":1.014,"yoy_price":1.054,"absolute_change":-0.04,"percentage_change":-3.7950664137},{"date":"1992-03-02","fuel":"gasoline","current_price":1.012,"yoy_price":1.025,"absolute_change":-0.013,"percentage_change":-1.2682926829},{"date":"1992-03-09","fuel":"gasoline","current_price":1.013,"yoy_price":1.045,"absolute_change":-0.032,"percentage_change":-3.0622009569},{"date":"1992-03-16","fuel":"gasoline","current_price":1.01,"yoy_price":1.043,"absolute_change":-0.033,"percentage_change":-3.1639501438},{"date":"1992-03-23","fuel":"gasoline","current_price":1.015,"yoy_price":1.047,"absolute_change":-0.032,"percentage_change":-3.0563514804},{"date":"1992-03-30","fuel":"gasoline","current_price":1.013,"yoy_price":1.052,"absolute_change":-0.039,"percentage_change":-3.7072243346},{"date":"1992-04-06","fuel":"gasoline","current_price":1.026,"yoy_price":1.066,"absolute_change":-0.04,"percentage_change":-3.7523452158},{"date":"1992-04-13","fuel":"gasoline","current_price":1.051,"yoy_price":1.069,"absolute_change":-0.018,"percentage_change":-1.6838166511},{"date":"1992-04-20","fuel":"gasoline","current_price":1.058,"yoy_price":1.09,"absolute_change":-0.032,"percentage_change":-2.9357798165},{"date":"1992-04-27","fuel":"gasoline","current_price":1.072,"yoy_price":1.104,"absolute_change":-0.032,"percentage_change":-2.8985507246},{"date":"1992-05-04","fuel":"gasoline","current_price":1.089,"yoy_price":1.113,"absolute_change":-0.024,"percentage_change":-2.1563342318},{"date":"1992-05-11","fuel":"gasoline","current_price":1.102,"yoy_price":1.121,"absolute_change":-0.019,"percentage_change":-1.6949152542},{"date":"1992-05-18","fuel":"gasoline","current_price":1.118,"yoy_price":1.129,"absolute_change":-0.011,"percentage_change":-0.9743135518},{"date":"1992-05-25","fuel":"gasoline","current_price":1.12,"yoy_price":1.14,"absolute_change":-0.02,"percentage_change":-1.7543859649},{"date":"1992-06-01","fuel":"gasoline","current_price":1.128,"yoy_price":1.138,"absolute_change":-0.01,"percentage_change":-0.8787346221},{"date":"1992-06-08","fuel":"gasoline","current_price":1.143,"yoy_price":1.135,"absolute_change":0.008,"percentage_change":0.704845815},{"date":"1992-06-15","fuel":"gasoline","current_price":1.151,"yoy_price":1.126,"absolute_change":0.025,"percentage_change":2.2202486679},{"date":"1992-06-22","fuel":"gasoline","current_price":1.153,"yoy_price":1.114,"absolute_change":0.039,"percentage_change":3.5008976661},{"date":"1992-06-29","fuel":"gasoline","current_price":1.149,"yoy_price":1.104,"absolute_change":0.045,"percentage_change":4.0760869565},{"date":"1992-07-06","fuel":"gasoline","current_price":1.147,"yoy_price":1.098,"absolute_change":0.049,"percentage_change":4.4626593807},{"date":"1992-07-13","fuel":"gasoline","current_price":1.139,"yoy_price":1.094,"absolute_change":0.045,"percentage_change":4.113345521},{"date":"1992-07-20","fuel":"gasoline","current_price":1.132,"yoy_price":1.091,"absolute_change":0.041,"percentage_change":3.758020165},{"date":"1992-07-27","fuel":"gasoline","current_price":1.128,"yoy_price":1.091,"absolute_change":0.037,"percentage_change":3.3913840513},{"date":"1992-08-03","fuel":"gasoline","current_price":1.126,"yoy_price":1.099,"absolute_change":0.027,"percentage_change":2.4567788899},{"date":"1992-08-10","fuel":"gasoline","current_price":1.123,"yoy_price":1.112,"absolute_change":0.011,"percentage_change":0.9892086331},{"date":"1992-08-17","fuel":"gasoline","current_price":1.116,"yoy_price":1.124,"absolute_change":-0.008,"percentage_change":-0.7117437722},{"date":"1992-08-24","fuel":"gasoline","current_price":1.123,"yoy_price":1.124,"absolute_change":-0.001,"percentage_change":-0.0889679715},{"date":"1992-08-31","fuel":"gasoline","current_price":1.121,"yoy_price":1.127,"absolute_change":-0.006,"percentage_change":-0.5323868678},{"date":"1992-09-07","fuel":"gasoline","current_price":1.121,"yoy_price":1.12,"absolute_change":0.001,"percentage_change":0.0892857143},{"date":"1992-09-14","fuel":"gasoline","current_price":1.124,"yoy_price":1.11,"absolute_change":0.014,"percentage_change":1.2612612613},{"date":"1992-09-21","fuel":"gasoline","current_price":1.123,"yoy_price":1.097,"absolute_change":0.026,"percentage_change":2.3701002735},{"date":"1992-09-28","fuel":"gasoline","current_price":1.118,"yoy_price":1.092,"absolute_change":0.026,"percentage_change":2.380952381},{"date":"1992-10-05","fuel":"gasoline","current_price":1.115,"yoy_price":1.089,"absolute_change":0.026,"percentage_change":2.3875114784},{"date":"1992-10-12","fuel":"gasoline","current_price":1.115,"yoy_price":1.084,"absolute_change":0.031,"percentage_change":2.8597785978},{"date":"1992-10-19","fuel":"gasoline","current_price":1.113,"yoy_price":1.088,"absolute_change":0.025,"percentage_change":2.2977941176},{"date":"1992-10-26","fuel":"gasoline","current_price":1.113,"yoy_price":1.091,"absolute_change":0.022,"percentage_change":2.0164986251},{"date":"1992-11-02","fuel":"gasoline","current_price":1.12,"yoy_price":1.091,"absolute_change":0.029,"percentage_change":2.658111824},{"date":"1992-11-09","fuel":"gasoline","current_price":1.12,"yoy_price":1.102,"absolute_change":0.018,"percentage_change":1.6333938294},{"date":"1992-11-16","fuel":"gasoline","current_price":1.112,"yoy_price":1.104,"absolute_change":0.008,"percentage_change":0.7246376812},{"date":"1992-11-23","fuel":"gasoline","current_price":1.106,"yoy_price":1.099,"absolute_change":0.007,"percentage_change":0.6369426752},{"date":"1992-11-30","fuel":"gasoline","current_price":1.098,"yoy_price":1.099,"absolute_change":-0.001,"percentage_change":-0.0909918107},{"date":"1992-12-07","fuel":"gasoline","current_price":1.089,"yoy_price":1.091,"absolute_change":-0.002,"percentage_change":-0.1833180568},{"date":"1992-12-14","fuel":"gasoline","current_price":1.078,"yoy_price":1.075,"absolute_change":0.003,"percentage_change":0.2790697674},{"date":"1992-12-21","fuel":"gasoline","current_price":1.074,"yoy_price":1.063,"absolute_change":0.011,"percentage_change":1.0348071496},{"date":"1992-12-28","fuel":"gasoline","current_price":1.069,"yoy_price":1.053,"absolute_change":0.016,"percentage_change":1.5194681861},{"date":"1993-01-04","fuel":"gasoline","current_price":1.065,"yoy_price":1.042,"absolute_change":0.023,"percentage_change":2.207293666},{"date":"1993-01-11","fuel":"gasoline","current_price":1.066,"yoy_price":1.026,"absolute_change":0.04,"percentage_change":3.8986354776},{"date":"1993-01-18","fuel":"gasoline","current_price":1.061,"yoy_price":1.014,"absolute_change":0.047,"percentage_change":4.6351084813},{"date":"1993-01-25","fuel":"gasoline","current_price":1.055,"yoy_price":1.006,"absolute_change":0.049,"percentage_change":4.8707753479},{"date":"1993-02-01","fuel":"gasoline","current_price":1.055,"yoy_price":0.995,"absolute_change":0.06,"percentage_change":6.0301507538},{"date":"1993-02-08","fuel":"gasoline","current_price":1.062,"yoy_price":1.004,"absolute_change":0.058,"percentage_change":5.7768924303},{"date":"1993-02-15","fuel":"gasoline","current_price":1.053,"yoy_price":1.011,"absolute_change":0.042,"percentage_change":4.1543026706},{"date":"1993-02-22","fuel":"gasoline","current_price":1.047,"yoy_price":1.014,"absolute_change":0.033,"percentage_change":3.2544378698},{"date":"1993-03-01","fuel":"gasoline","current_price":1.042,"yoy_price":1.012,"absolute_change":0.03,"percentage_change":2.9644268775},{"date":"1993-03-08","fuel":"gasoline","current_price":1.048,"yoy_price":1.013,"absolute_change":0.035,"percentage_change":3.4550839092},{"date":"1993-03-15","fuel":"gasoline","current_price":1.058,"yoy_price":1.01,"absolute_change":0.048,"percentage_change":4.7524752475},{"date":"1993-03-22","fuel":"gasoline","current_price":1.056,"yoy_price":1.015,"absolute_change":0.041,"percentage_change":4.039408867},{"date":"1993-03-29","fuel":"gasoline","current_price":1.057,"yoy_price":1.013,"absolute_change":0.044,"percentage_change":4.3435340573},{"date":"1993-04-05","fuel":"gasoline","current_price":1.068,"yoy_price":1.026,"absolute_change":0.042,"percentage_change":4.0935672515},{"date":"1993-04-12","fuel":"gasoline","current_price":1.079,"yoy_price":1.051,"absolute_change":0.028,"percentage_change":2.6641294006},{"date":"1993-04-19","fuel":"gasoline","current_price":1.079,"yoy_price":1.058,"absolute_change":0.021,"percentage_change":1.9848771267},{"date":"1993-04-26","fuel":"gasoline","current_price":1.086,"yoy_price":1.072,"absolute_change":0.014,"percentage_change":1.3059701493},{"date":"1993-05-03","fuel":"gasoline","current_price":1.086,"yoy_price":1.089,"absolute_change":-0.003,"percentage_change":-0.2754820937},{"date":"1993-05-10","fuel":"gasoline","current_price":1.097,"yoy_price":1.102,"absolute_change":-0.005,"percentage_change":-0.4537205082},{"date":"1993-05-17","fuel":"gasoline","current_price":1.106,"yoy_price":1.118,"absolute_change":-0.012,"percentage_change":-1.0733452594},{"date":"1993-05-24","fuel":"gasoline","current_price":1.106,"yoy_price":1.12,"absolute_change":-0.014,"percentage_change":-1.25},{"date":"1993-05-31","fuel":"gasoline","current_price":1.107,"yoy_price":1.128,"absolute_change":-0.021,"percentage_change":-1.8617021277},{"date":"1993-06-07","fuel":"gasoline","current_price":1.104,"yoy_price":1.143,"absolute_change":-0.039,"percentage_change":-3.4120734908},{"date":"1993-06-14","fuel":"gasoline","current_price":1.101,"yoy_price":1.151,"absolute_change":-0.05,"percentage_change":-4.3440486533},{"date":"1993-06-21","fuel":"gasoline","current_price":1.095,"yoy_price":1.153,"absolute_change":-0.058,"percentage_change":-5.0303555941},{"date":"1993-06-28","fuel":"gasoline","current_price":1.089,"yoy_price":1.149,"absolute_change":-0.06,"percentage_change":-5.2219321149},{"date":"1993-07-05","fuel":"gasoline","current_price":1.086,"yoy_price":1.147,"absolute_change":-0.061,"percentage_change":-5.3182214473},{"date":"1993-07-12","fuel":"gasoline","current_price":1.081,"yoy_price":1.139,"absolute_change":-0.058,"percentage_change":-5.0921861282},{"date":"1993-07-19","fuel":"gasoline","current_price":1.075,"yoy_price":1.132,"absolute_change":-0.057,"percentage_change":-5.035335689},{"date":"1993-07-26","fuel":"gasoline","current_price":1.069,"yoy_price":1.128,"absolute_change":-0.059,"percentage_change":-5.2304964539},{"date":"1993-08-02","fuel":"gasoline","current_price":1.062,"yoy_price":1.126,"absolute_change":-0.064,"percentage_change":-5.6838365897},{"date":"1993-08-09","fuel":"gasoline","current_price":1.06,"yoy_price":1.123,"absolute_change":-0.063,"percentage_change":-5.6099732858},{"date":"1993-08-16","fuel":"gasoline","current_price":1.059,"yoy_price":1.116,"absolute_change":-0.057,"percentage_change":-5.1075268817},{"date":"1993-08-23","fuel":"gasoline","current_price":1.065,"yoy_price":1.123,"absolute_change":-0.058,"percentage_change":-5.1647373108},{"date":"1993-08-30","fuel":"gasoline","current_price":1.062,"yoy_price":1.121,"absolute_change":-0.059,"percentage_change":-5.2631578947},{"date":"1993-09-06","fuel":"gasoline","current_price":1.055,"yoy_price":1.121,"absolute_change":-0.066,"percentage_change":-5.8876003568},{"date":"1993-09-13","fuel":"gasoline","current_price":1.051,"yoy_price":1.124,"absolute_change":-0.073,"percentage_change":-6.4946619217},{"date":"1993-09-20","fuel":"gasoline","current_price":1.045,"yoy_price":1.123,"absolute_change":-0.078,"percentage_change":-6.945681211},{"date":"1993-09-27","fuel":"gasoline","current_price":1.047,"yoy_price":1.118,"absolute_change":-0.071,"percentage_change":-6.3506261181},{"date":"1993-10-04","fuel":"gasoline","current_price":1.092,"yoy_price":1.115,"absolute_change":-0.023,"percentage_change":-2.0627802691},{"date":"1993-10-11","fuel":"gasoline","current_price":1.09,"yoy_price":1.115,"absolute_change":-0.025,"percentage_change":-2.2421524664},{"date":"1993-10-18","fuel":"gasoline","current_price":1.093,"yoy_price":1.113,"absolute_change":-0.02,"percentage_change":-1.7969451932},{"date":"1993-10-25","fuel":"gasoline","current_price":1.092,"yoy_price":1.113,"absolute_change":-0.021,"percentage_change":-1.8867924528},{"date":"1993-11-01","fuel":"gasoline","current_price":1.084,"yoy_price":1.12,"absolute_change":-0.036,"percentage_change":-3.2142857143},{"date":"1993-11-08","fuel":"gasoline","current_price":1.075,"yoy_price":1.12,"absolute_change":-0.045,"percentage_change":-4.0178571429},{"date":"1993-11-15","fuel":"gasoline","current_price":1.064,"yoy_price":1.112,"absolute_change":-0.048,"percentage_change":-4.3165467626},{"date":"1993-11-22","fuel":"gasoline","current_price":1.058,"yoy_price":1.106,"absolute_change":-0.048,"percentage_change":-4.3399638336},{"date":"1993-11-29","fuel":"gasoline","current_price":1.051,"yoy_price":1.098,"absolute_change":-0.047,"percentage_change":-4.2805100182},{"date":"1993-12-06","fuel":"gasoline","current_price":1.036,"yoy_price":1.089,"absolute_change":-0.053,"percentage_change":-4.8668503214},{"date":"1993-12-13","fuel":"gasoline","current_price":1.018,"yoy_price":1.078,"absolute_change":-0.06,"percentage_change":-5.5658627087},{"date":"1993-12-20","fuel":"gasoline","current_price":1.003,"yoy_price":1.074,"absolute_change":-0.071,"percentage_change":-6.6108007449},{"date":"1993-12-27","fuel":"gasoline","current_price":0.999,"yoy_price":1.069,"absolute_change":-0.07,"percentage_change":-6.5481758653},{"date":"1994-01-03","fuel":"gasoline","current_price":0.992,"yoy_price":1.065,"absolute_change":-0.073,"percentage_change":-6.8544600939},{"date":"1994-01-10","fuel":"gasoline","current_price":0.995,"yoy_price":1.066,"absolute_change":-0.071,"percentage_change":-6.660412758},{"date":"1994-01-17","fuel":"gasoline","current_price":1.001,"yoy_price":1.061,"absolute_change":-0.06,"percentage_change":-5.6550424128},{"date":"1994-01-24","fuel":"gasoline","current_price":0.999,"yoy_price":1.055,"absolute_change":-0.056,"percentage_change":-5.308056872},{"date":"1994-01-31","fuel":"gasoline","current_price":1.005,"yoy_price":1.055,"absolute_change":-0.05,"percentage_change":-4.7393364929},{"date":"1994-02-07","fuel":"gasoline","current_price":1.007,"yoy_price":1.062,"absolute_change":-0.055,"percentage_change":-5.1789077213},{"date":"1994-02-14","fuel":"gasoline","current_price":1.016,"yoy_price":1.053,"absolute_change":-0.037,"percentage_change":-3.5137701804},{"date":"1994-02-21","fuel":"gasoline","current_price":1.009,"yoy_price":1.047,"absolute_change":-0.038,"percentage_change":-3.629417383},{"date":"1994-02-28","fuel":"gasoline","current_price":1.004,"yoy_price":1.042,"absolute_change":-0.038,"percentage_change":-3.6468330134},{"date":"1994-03-07","fuel":"gasoline","current_price":1.007,"yoy_price":1.048,"absolute_change":-0.041,"percentage_change":-3.9122137405},{"date":"1994-03-14","fuel":"gasoline","current_price":1.005,"yoy_price":1.058,"absolute_change":-0.053,"percentage_change":-5.0094517958},{"date":"1994-03-21","fuel":"gasoline","current_price":1.007,"yoy_price":1.056,"absolute_change":-0.049,"percentage_change":-4.6401515152},{"date":"1994-03-28","fuel":"gasoline","current_price":1.012,"yoy_price":1.057,"absolute_change":-0.045,"percentage_change":-4.2573320719},{"date":"1994-04-04","fuel":"gasoline","current_price":1.011,"yoy_price":1.068,"absolute_change":-0.057,"percentage_change":-5.3370786517},{"date":"1994-04-11","fuel":"gasoline","current_price":1.028,"yoy_price":1.079,"absolute_change":-0.051,"percentage_change":-4.7265987025},{"date":"1994-04-18","fuel":"gasoline","current_price":1.033,"yoy_price":1.079,"absolute_change":-0.046,"percentage_change":-4.2632066728},{"date":"1994-04-25","fuel":"gasoline","current_price":1.037,"yoy_price":1.086,"absolute_change":-0.049,"percentage_change":-4.5119705341},{"date":"1994-05-02","fuel":"gasoline","current_price":1.04,"yoy_price":1.086,"absolute_change":-0.046,"percentage_change":-4.2357274401},{"date":"1994-05-09","fuel":"gasoline","current_price":1.045,"yoy_price":1.097,"absolute_change":-0.052,"percentage_change":-4.7402005469},{"date":"1994-05-16","fuel":"gasoline","current_price":1.046,"yoy_price":1.106,"absolute_change":-0.06,"percentage_change":-5.424954792},{"date":"1994-05-23","fuel":"gasoline","current_price":1.05,"yoy_price":1.106,"absolute_change":-0.056,"percentage_change":-5.0632911392},{"date":"1994-05-30","fuel":"gasoline","current_price":1.056,"yoy_price":1.107,"absolute_change":-0.051,"percentage_change":-4.6070460705},{"date":"1994-06-06","fuel":"gasoline","current_price":1.065,"yoy_price":1.104,"absolute_change":-0.039,"percentage_change":-3.5326086957},{"date":"1994-06-13","fuel":"gasoline","current_price":1.073,"yoy_price":1.101,"absolute_change":-0.028,"percentage_change":-2.5431425976},{"date":"1994-06-20","fuel":"gasoline","current_price":1.079,"yoy_price":1.095,"absolute_change":-0.016,"percentage_change":-1.4611872146},{"date":"1994-06-27","fuel":"gasoline","current_price":1.095,"yoy_price":1.089,"absolute_change":0.006,"percentage_change":0.5509641873},{"date":"1994-07-04","fuel":"gasoline","current_price":1.097,"yoy_price":1.086,"absolute_change":0.011,"percentage_change":1.0128913444},{"date":"1994-07-11","fuel":"gasoline","current_price":1.103,"yoy_price":1.081,"absolute_change":0.022,"percentage_change":2.0351526364},{"date":"1994-07-18","fuel":"gasoline","current_price":1.109,"yoy_price":1.075,"absolute_change":0.034,"percentage_change":3.1627906977},{"date":"1994-07-25","fuel":"gasoline","current_price":1.114,"yoy_price":1.069,"absolute_change":0.045,"percentage_change":4.2095416277},{"date":"1994-08-01","fuel":"gasoline","current_price":1.13,"yoy_price":1.062,"absolute_change":0.068,"percentage_change":6.4030131827},{"date":"1994-08-08","fuel":"gasoline","current_price":1.157,"yoy_price":1.06,"absolute_change":0.097,"percentage_change":9.1509433962},{"date":"1994-08-15","fuel":"gasoline","current_price":1.161,"yoy_price":1.059,"absolute_change":0.102,"percentage_change":9.6317280453},{"date":"1994-08-22","fuel":"gasoline","current_price":1.165,"yoy_price":1.065,"absolute_change":0.1,"percentage_change":9.3896713615},{"date":"1994-08-29","fuel":"gasoline","current_price":1.161,"yoy_price":1.062,"absolute_change":0.099,"percentage_change":9.3220338983},{"date":"1994-09-05","fuel":"gasoline","current_price":1.156,"yoy_price":1.055,"absolute_change":0.101,"percentage_change":9.5734597156},{"date":"1994-09-12","fuel":"gasoline","current_price":1.15,"yoy_price":1.051,"absolute_change":0.099,"percentage_change":9.4196003806},{"date":"1994-09-19","fuel":"gasoline","current_price":1.14,"yoy_price":1.045,"absolute_change":0.095,"percentage_change":9.0909090909},{"date":"1994-09-26","fuel":"gasoline","current_price":1.129,"yoy_price":1.047,"absolute_change":0.082,"percentage_change":7.8319006686},{"date":"1994-10-03","fuel":"gasoline","current_price":1.12,"yoy_price":1.092,"absolute_change":0.028,"percentage_change":2.5641025641},{"date":"1994-10-10","fuel":"gasoline","current_price":1.114,"yoy_price":1.09,"absolute_change":0.024,"percentage_change":2.2018348624},{"date":"1994-10-17","fuel":"gasoline","current_price":1.106,"yoy_price":1.093,"absolute_change":0.013,"percentage_change":1.1893870082},{"date":"1994-10-24","fuel":"gasoline","current_price":1.107,"yoy_price":1.092,"absolute_change":0.015,"percentage_change":1.3736263736},{"date":"1994-10-31","fuel":"gasoline","current_price":1.121,"yoy_price":1.084,"absolute_change":0.037,"percentage_change":3.4132841328},{"date":"1994-11-07","fuel":"gasoline","current_price":1.123,"yoy_price":1.075,"absolute_change":0.048,"percentage_change":4.4651162791},{"date":"1994-11-14","fuel":"gasoline","current_price":1.122,"yoy_price":1.064,"absolute_change":0.058,"percentage_change":5.4511278195},{"date":"1994-11-21","fuel":"gasoline","current_price":1.113,"yoy_price":1.058,"absolute_change":0.055,"percentage_change":5.1984877127},{"date":"1994-11-28","fuel":"gasoline","current_price":1.2025833333,"yoy_price":1.051,"absolute_change":0.1515833333,"percentage_change":14.4227719632},{"date":"1994-12-05","fuel":"gasoline","current_price":1.2031666667,"yoy_price":1.036,"absolute_change":0.1671666667,"percentage_change":16.1357786358},{"date":"1994-12-12","fuel":"gasoline","current_price":1.19275,"yoy_price":1.018,"absolute_change":0.17475,"percentage_change":17.1660117878},{"date":"1994-12-19","fuel":"gasoline","current_price":1.1849166667,"yoy_price":1.003,"absolute_change":0.1819166667,"percentage_change":18.137254902},{"date":"1994-12-26","fuel":"gasoline","current_price":1.1778333333,"yoy_price":0.999,"absolute_change":0.1788333333,"percentage_change":17.9012345679},{"date":"1995-01-02","fuel":"gasoline","current_price":1.1921666667,"yoy_price":0.992,"absolute_change":0.2001666667,"percentage_change":20.1780913978},{"date":"1995-01-09","fuel":"gasoline","current_price":1.1970833333,"yoy_price":0.995,"absolute_change":0.2020833333,"percentage_change":20.3098827471},{"date":"1995-01-16","fuel":"gasoline","current_price":1.19125,"yoy_price":1.001,"absolute_change":0.19025,"percentage_change":19.005994006},{"date":"1995-01-23","fuel":"gasoline","current_price":1.1944166667,"yoy_price":0.999,"absolute_change":0.1954166667,"percentage_change":19.5612278946},{"date":"1995-01-30","fuel":"gasoline","current_price":1.192,"yoy_price":1.005,"absolute_change":0.187,"percentage_change":18.6069651741},{"date":"1995-02-06","fuel":"gasoline","current_price":1.187,"yoy_price":1.007,"absolute_change":0.18,"percentage_change":17.8748758689},{"date":"1995-02-13","fuel":"gasoline","current_price":1.1839166667,"yoy_price":1.016,"absolute_change":0.1679166667,"percentage_change":16.5272309711},{"date":"1995-02-20","fuel":"gasoline","current_price":1.1785,"yoy_price":1.009,"absolute_change":0.1695,"percentage_change":16.7988107037},{"date":"1995-02-27","fuel":"gasoline","current_price":1.182,"yoy_price":1.004,"absolute_change":0.178,"percentage_change":17.7290836653},{"date":"1995-03-06","fuel":"gasoline","current_price":1.18225,"yoy_price":1.007,"absolute_change":0.17525,"percentage_change":17.4031777557},{"date":"1995-03-13","fuel":"gasoline","current_price":1.17525,"yoy_price":1.005,"absolute_change":0.17025,"percentage_change":16.9402985075},{"date":"1995-03-20","fuel":"gasoline","current_price":1.174,"yoy_price":1.007,"absolute_change":0.167,"percentage_change":16.5839126117},{"date":"1995-03-27","fuel":"gasoline","current_price":1.1771666667,"yoy_price":1.012,"absolute_change":0.1651666667,"percentage_change":16.3208168643},{"date":"1995-04-03","fuel":"gasoline","current_price":1.1860833333,"yoy_price":1.011,"absolute_change":0.1750833333,"percentage_change":17.317837125},{"date":"1995-04-10","fuel":"gasoline","current_price":1.2000833333,"yoy_price":1.028,"absolute_change":0.1720833333,"percentage_change":16.7396238651},{"date":"1995-04-17","fuel":"gasoline","current_price":1.2124166667,"yoy_price":1.033,"absolute_change":0.1794166667,"percentage_change":17.3685059697},{"date":"1995-04-24","fuel":"gasoline","current_price":1.2325833333,"yoy_price":1.037,"absolute_change":0.1955833333,"percentage_change":18.8604950177},{"date":"1995-05-01","fuel":"gasoline","current_price":1.24275,"yoy_price":1.04,"absolute_change":0.20275,"percentage_change":19.4951923077},{"date":"1995-05-08","fuel":"gasoline","current_price":1.2643333333,"yoy_price":1.045,"absolute_change":0.2193333333,"percentage_change":20.9888357257},{"date":"1995-05-15","fuel":"gasoline","current_price":1.274,"yoy_price":1.046,"absolute_change":0.228,"percentage_change":21.7973231358},{"date":"1995-05-22","fuel":"gasoline","current_price":1.2905833333,"yoy_price":1.05,"absolute_change":0.2405833333,"percentage_change":22.9126984127},{"date":"1995-05-29","fuel":"gasoline","current_price":1.29425,"yoy_price":1.056,"absolute_change":0.23825,"percentage_change":22.5615530303},{"date":"1995-06-05","fuel":"gasoline","current_price":1.2939166667,"yoy_price":1.065,"absolute_change":0.2289166667,"percentage_change":21.4945226917},{"date":"1995-06-12","fuel":"gasoline","current_price":1.2913333333,"yoy_price":1.073,"absolute_change":0.2183333333,"percentage_change":20.347934141},{"date":"1995-06-19","fuel":"gasoline","current_price":1.28575,"yoy_price":1.079,"absolute_change":0.20675,"percentage_change":19.1612604263},{"date":"1995-06-26","fuel":"gasoline","current_price":1.2798333333,"yoy_price":1.095,"absolute_change":0.1848333333,"percentage_change":16.8797564688},{"date":"1995-07-03","fuel":"gasoline","current_price":1.2730833333,"yoy_price":1.097,"absolute_change":0.1760833333,"percentage_change":16.0513521726},{"date":"1995-07-10","fuel":"gasoline","current_price":1.2644166667,"yoy_price":1.103,"absolute_change":0.1614166667,"percentage_change":14.6343306135},{"date":"1995-07-17","fuel":"gasoline","current_price":1.2545833333,"yoy_price":1.109,"absolute_change":0.1455833333,"percentage_change":13.1274421401},{"date":"1995-07-24","fuel":"gasoline","current_price":1.2445833333,"yoy_price":1.114,"absolute_change":0.1305833333,"percentage_change":11.7220227409},{"date":"1995-07-31","fuel":"gasoline","current_price":1.2321666667,"yoy_price":1.13,"absolute_change":0.1021666667,"percentage_change":9.0412979351},{"date":"1995-08-07","fuel":"gasoline","current_price":1.2270833333,"yoy_price":1.157,"absolute_change":0.0700833333,"percentage_change":6.0573321809},{"date":"1995-08-14","fuel":"gasoline","current_price":1.2228333333,"yoy_price":1.161,"absolute_change":0.0618333333,"percentage_change":5.3258685042},{"date":"1995-08-21","fuel":"gasoline","current_price":1.2206666667,"yoy_price":1.165,"absolute_change":0.0556666667,"percentage_change":4.7782546495},{"date":"1995-08-28","fuel":"gasoline","current_price":1.21325,"yoy_price":1.161,"absolute_change":0.05225,"percentage_change":4.5004306632},{"date":"1995-09-04","fuel":"gasoline","current_price":1.2110833333,"yoy_price":1.156,"absolute_change":0.0550833333,"percentage_change":4.764994233},{"date":"1995-09-11","fuel":"gasoline","current_price":1.2075833333,"yoy_price":1.15,"absolute_change":0.0575833333,"percentage_change":5.0072463768},{"date":"1995-09-18","fuel":"gasoline","current_price":1.2063333333,"yoy_price":1.14,"absolute_change":0.0663333333,"percentage_change":5.8187134503},{"date":"1995-09-25","fuel":"gasoline","current_price":1.2041666667,"yoy_price":1.129,"absolute_change":0.0751666667,"percentage_change":6.6578092707},{"date":"1995-10-02","fuel":"gasoline","current_price":1.2005833333,"yoy_price":1.12,"absolute_change":0.0805833333,"percentage_change":7.1949404762},{"date":"1995-10-09","fuel":"gasoline","current_price":1.1949166667,"yoy_price":1.114,"absolute_change":0.0809166667,"percentage_change":7.263614602},{"date":"1995-10-16","fuel":"gasoline","current_price":1.1870833333,"yoy_price":1.106,"absolute_change":0.0810833333,"percentage_change":7.3312236287},{"date":"1995-10-23","fuel":"gasoline","current_price":1.1790833333,"yoy_price":1.107,"absolute_change":0.0720833333,"percentage_change":6.5115928937},{"date":"1995-10-30","fuel":"gasoline","current_price":1.1693333333,"yoy_price":1.121,"absolute_change":0.0483333333,"percentage_change":4.3116265239},{"date":"1995-11-06","fuel":"gasoline","current_price":1.16475,"yoy_price":1.123,"absolute_change":0.04175,"percentage_change":3.7177203918},{"date":"1995-11-13","fuel":"gasoline","current_price":1.1621666667,"yoy_price":1.122,"absolute_change":0.0401666667,"percentage_change":3.5799168152},{"date":"1995-11-20","fuel":"gasoline","current_price":1.158,"yoy_price":1.113,"absolute_change":0.045,"percentage_change":4.0431266846},{"date":"1995-11-27","fuel":"gasoline","current_price":1.1574166667,"yoy_price":1.2025833333,"absolute_change":-0.0451666667,"percentage_change":-3.7558034786},{"date":"1995-12-04","fuel":"gasoline","current_price":1.1586666667,"yoy_price":1.2031666667,"absolute_change":-0.0445,"percentage_change":-3.6985732096},{"date":"1995-12-11","fuel":"gasoline","current_price":1.1598333333,"yoy_price":1.19275,"absolute_change":-0.0329166667,"percentage_change":-2.7597289178},{"date":"1995-12-18","fuel":"gasoline","current_price":1.1716666667,"yoy_price":1.1849166667,"absolute_change":-0.01325,"percentage_change":-1.1182220972},{"date":"1995-12-25","fuel":"gasoline","current_price":1.1763333333,"yoy_price":1.1778333333,"absolute_change":-0.0015,"percentage_change":-0.1273524834},{"date":"1996-01-01","fuel":"gasoline","current_price":1.178,"yoy_price":1.1921666667,"absolute_change":-0.0141666667,"percentage_change":-1.1883125961},{"date":"1996-01-08","fuel":"gasoline","current_price":1.1848333333,"yoy_price":1.1970833333,"absolute_change":-0.01225,"percentage_change":-1.0233205708},{"date":"1996-01-15","fuel":"gasoline","current_price":1.1918333333,"yoy_price":1.19125,"absolute_change":0.0005833333,"percentage_change":0.0489681707},{"date":"1996-01-22","fuel":"gasoline","current_price":1.18725,"yoy_price":1.1944166667,"absolute_change":-0.0071666667,"percentage_change":-0.6000139538},{"date":"1996-01-29","fuel":"gasoline","current_price":1.18275,"yoy_price":1.192,"absolute_change":-0.00925,"percentage_change":-0.7760067114},{"date":"1996-02-05","fuel":"gasoline","current_price":1.1796666667,"yoy_price":1.187,"absolute_change":-0.0073333333,"percentage_change":-0.6178039876},{"date":"1996-02-12","fuel":"gasoline","current_price":1.1765833333,"yoy_price":1.1839166667,"absolute_change":-0.0073333333,"percentage_change":-0.6194129654},{"date":"1996-02-19","fuel":"gasoline","current_price":1.1820833333,"yoy_price":1.1785,"absolute_change":0.0035833333,"percentage_change":0.3040588318},{"date":"1996-02-26","fuel":"gasoline","current_price":1.20075,"yoy_price":1.182,"absolute_change":0.01875,"percentage_change":1.5862944162},{"date":"1996-03-04","fuel":"gasoline","current_price":1.216,"yoy_price":1.18225,"absolute_change":0.03375,"percentage_change":2.8547261578},{"date":"1996-03-11","fuel":"gasoline","current_price":1.2185,"yoy_price":1.17525,"absolute_change":0.04325,"percentage_change":3.6800680706},{"date":"1996-03-18","fuel":"gasoline","current_price":1.2275833333,"yoy_price":1.174,"absolute_change":0.0535833333,"percentage_change":4.5641680863},{"date":"1996-03-25","fuel":"gasoline","current_price":1.2536666667,"yoy_price":1.1771666667,"absolute_change":0.0765,"percentage_change":6.4986549625},{"date":"1996-04-01","fuel":"gasoline","current_price":1.2685833333,"yoy_price":1.1860833333,"absolute_change":0.0825,"percentage_change":6.955666409},{"date":"1996-04-08","fuel":"gasoline","current_price":1.2933333333,"yoy_price":1.2000833333,"absolute_change":0.09325,"percentage_change":7.7702937296},{"date":"1996-04-15","fuel":"gasoline","current_price":1.3344166667,"yoy_price":1.2124166667,"absolute_change":0.122,"percentage_change":10.0625472541},{"date":"1996-04-22","fuel":"gasoline","current_price":1.35825,"yoy_price":1.2325833333,"absolute_change":0.1256666667,"percentage_change":10.195389088},{"date":"1996-04-29","fuel":"gasoline","current_price":1.3765833333,"yoy_price":1.24275,"absolute_change":0.1338333333,"percentage_change":10.7691276068},{"date":"1996-05-06","fuel":"gasoline","current_price":1.3811666667,"yoy_price":1.2643333333,"absolute_change":0.1168333333,"percentage_change":9.2407065647},{"date":"1996-05-13","fuel":"gasoline","current_price":1.38375,"yoy_price":1.274,"absolute_change":0.10975,"percentage_change":8.614599686},{"date":"1996-05-20","fuel":"gasoline","current_price":1.3891666667,"yoy_price":1.2905833333,"absolute_change":0.0985833333,"percentage_change":7.6386646865},{"date":"1996-05-27","fuel":"gasoline","current_price":1.37975,"yoy_price":1.29425,"absolute_change":0.0855,"percentage_change":6.6061425536},{"date":"1996-06-03","fuel":"gasoline","current_price":1.3785833333,"yoy_price":1.2939166667,"absolute_change":0.0846666667,"percentage_change":6.5434404586},{"date":"1996-06-10","fuel":"gasoline","current_price":1.36975,"yoy_price":1.2913333333,"absolute_change":0.0784166667,"percentage_change":6.0725348477},{"date":"1996-06-17","fuel":"gasoline","current_price":1.3625,"yoy_price":1.28575,"absolute_change":0.07675,"percentage_change":5.9692786311},{"date":"1996-06-24","fuel":"gasoline","current_price":1.3511666667,"yoy_price":1.2798333333,"absolute_change":0.0713333333,"percentage_change":5.5736424014},{"date":"1996-07-01","fuel":"gasoline","current_price":1.34025,"yoy_price":1.2730833333,"absolute_change":0.0671666667,"percentage_change":5.2759049552},{"date":"1996-07-08","fuel":"gasoline","current_price":1.3360833333,"yoy_price":1.2644166667,"absolute_change":0.0716666667,"percentage_change":5.6679628287},{"date":"1996-07-15","fuel":"gasoline","current_price":1.332,"yoy_price":1.2545833333,"absolute_change":0.0774166667,"percentage_change":6.1707074062},{"date":"1996-07-22","fuel":"gasoline","current_price":1.3288333333,"yoy_price":1.2445833333,"absolute_change":0.08425,"percentage_change":6.7693337797},{"date":"1996-07-29","fuel":"gasoline","current_price":1.3199166667,"yoy_price":1.2321666667,"absolute_change":0.08775,"percentage_change":7.1216015149},{"date":"1996-08-05","fuel":"gasoline","current_price":1.30975,"yoy_price":1.2270833333,"absolute_change":0.0826666667,"percentage_change":6.7368421053},{"date":"1996-08-12","fuel":"gasoline","current_price":1.3026666667,"yoy_price":1.2228333333,"absolute_change":0.0798333333,"percentage_change":6.5285539049},{"date":"1996-08-19","fuel":"gasoline","current_price":1.3000833333,"yoy_price":1.2206666667,"absolute_change":0.0794166667,"percentage_change":6.5060076461},{"date":"1996-08-26","fuel":"gasoline","current_price":1.3024166667,"yoy_price":1.21325,"absolute_change":0.0891666667,"percentage_change":7.3494058658},{"date":"1996-09-02","fuel":"gasoline","current_price":1.2905,"yoy_price":1.2110833333,"absolute_change":0.0794166667,"percentage_change":6.5574898507},{"date":"1996-09-09","fuel":"gasoline","current_price":1.2938333333,"yoy_price":1.2075833333,"absolute_change":0.08625,"percentage_change":7.1423642261},{"date":"1996-09-16","fuel":"gasoline","current_price":1.2966666667,"yoy_price":1.2063333333,"absolute_change":0.0903333333,"percentage_change":7.4882564244},{"date":"1996-09-23","fuel":"gasoline","current_price":1.29675,"yoy_price":1.2041666667,"absolute_change":0.0925833333,"percentage_change":7.6885813149},{"date":"1996-09-30","fuel":"gasoline","current_price":1.2916666667,"yoy_price":1.2005833333,"absolute_change":0.0910833333,"percentage_change":7.5865898522},{"date":"1996-10-07","fuel":"gasoline","current_price":1.2855,"yoy_price":1.1949166667,"absolute_change":0.0905833333,"percentage_change":7.5807238999},{"date":"1996-10-14","fuel":"gasoline","current_price":1.2918333333,"yoy_price":1.1870833333,"absolute_change":0.10475,"percentage_change":8.8241488241},{"date":"1996-10-21","fuel":"gasoline","current_price":1.2916666667,"yoy_price":1.1790833333,"absolute_change":0.1125833333,"percentage_change":9.5483779772},{"date":"1996-10-28","fuel":"gasoline","current_price":1.2986666667,"yoy_price":1.1693333333,"absolute_change":0.1293333333,"percentage_change":11.0604332953},{"date":"1996-11-04","fuel":"gasoline","current_price":1.3048333333,"yoy_price":1.16475,"absolute_change":0.1400833333,"percentage_change":12.0269013379},{"date":"1996-11-11","fuel":"gasoline","current_price":1.3065833333,"yoy_price":1.1621666667,"absolute_change":0.1444166667,"percentage_change":12.4265022229},{"date":"1996-11-18","fuel":"gasoline","current_price":1.31575,"yoy_price":1.158,"absolute_change":0.15775,"percentage_change":13.6226252159},{"date":"1996-11-25","fuel":"gasoline","current_price":1.32175,"yoy_price":1.1574166667,"absolute_change":0.1643333333,"percentage_change":14.1982864137},{"date":"1996-12-02","fuel":"gasoline","current_price":1.3219166667,"yoy_price":1.1586666667,"absolute_change":0.16325,"percentage_change":14.0894706559},{"date":"1996-12-09","fuel":"gasoline","current_price":1.32275,"yoy_price":1.1598333333,"absolute_change":0.1629166667,"percentage_change":14.0465584136},{"date":"1996-12-16","fuel":"gasoline","current_price":1.32075,"yoy_price":1.1716666667,"absolute_change":0.1490833333,"percentage_change":12.7240398293},{"date":"1996-12-23","fuel":"gasoline","current_price":1.3175,"yoy_price":1.1763333333,"absolute_change":0.1411666667,"percentage_change":12.0005667328},{"date":"1996-12-30","fuel":"gasoline","current_price":1.3154166667,"yoy_price":1.178,"absolute_change":0.1374166667,"percentage_change":11.6652518393},{"date":"1997-01-06","fuel":"gasoline","current_price":1.31525,"yoy_price":1.1848333333,"absolute_change":0.1304166667,"percentage_change":11.0071740048},{"date":"1997-01-13","fuel":"gasoline","current_price":1.3293333333,"yoy_price":1.1918333333,"absolute_change":0.1375,"percentage_change":11.5368479933},{"date":"1997-01-20","fuel":"gasoline","current_price":1.3296666667,"yoy_price":1.18725,"absolute_change":0.1424166667,"percentage_change":11.9955078262},{"date":"1997-01-27","fuel":"gasoline","current_price":1.3268333333,"yoy_price":1.18275,"absolute_change":0.1440833333,"percentage_change":12.1820615797},{"date":"1997-02-03","fuel":"gasoline","current_price":1.3263333333,"yoy_price":1.1796666667,"absolute_change":0.1466666667,"percentage_change":12.4328906471},{"date":"1997-02-10","fuel":"gasoline","current_price":1.3243333333,"yoy_price":1.1765833333,"absolute_change":0.14775,"percentage_change":12.5575465685},{"date":"1997-02-17","fuel":"gasoline","current_price":1.3195,"yoy_price":1.1820833333,"absolute_change":0.1374166667,"percentage_change":11.6249559394},{"date":"1997-02-24","fuel":"gasoline","current_price":1.3165833333,"yoy_price":1.20075,"absolute_change":0.1158333333,"percentage_change":9.6467485599},{"date":"1997-03-03","fuel":"gasoline","current_price":1.30825,"yoy_price":1.216,"absolute_change":0.09225,"percentage_change":7.5863486842},{"date":"1997-03-10","fuel":"gasoline","current_price":1.3035833333,"yoy_price":1.2185,"absolute_change":0.0850833333,"percentage_change":6.9826289153},{"date":"1997-03-17","fuel":"gasoline","current_price":1.2974166667,"yoy_price":1.2275833333,"absolute_change":0.0698333333,"percentage_change":5.6886837282},{"date":"1997-03-24","fuel":"gasoline","current_price":1.2995833333,"yoy_price":1.2536666667,"absolute_change":0.0459166667,"percentage_change":3.6625897368},{"date":"1997-03-31","fuel":"gasoline","current_price":1.2985833333,"yoy_price":1.2685833333,"absolute_change":0.03,"percentage_change":2.3648426723},{"date":"1997-04-07","fuel":"gasoline","current_price":1.3015833333,"yoy_price":1.2933333333,"absolute_change":0.00825,"percentage_change":0.6378865979},{"date":"1997-04-14","fuel":"gasoline","current_price":1.2985833333,"yoy_price":1.3344166667,"absolute_change":-0.0358333333,"percentage_change":-2.685318179},{"date":"1997-04-21","fuel":"gasoline","current_price":1.2971666667,"yoy_price":1.35825,"absolute_change":-0.0610833333,"percentage_change":-4.4972084177},{"date":"1997-04-28","fuel":"gasoline","current_price":1.2928333333,"yoy_price":1.3765833333,"absolute_change":-0.08375,"percentage_change":-6.083903384},{"date":"1997-05-05","fuel":"gasoline","current_price":1.2909166667,"yoy_price":1.3811666667,"absolute_change":-0.09025,"percentage_change":-6.5343308797},{"date":"1997-05-12","fuel":"gasoline","current_price":1.2889166667,"yoy_price":1.38375,"absolute_change":-0.0948333333,"percentage_change":-6.8533574225},{"date":"1997-05-19","fuel":"gasoline","current_price":1.2956666667,"yoy_price":1.3891666667,"absolute_change":-0.0935,"percentage_change":-6.7306538692},{"date":"1997-05-26","fuel":"gasoline","current_price":1.3023333333,"yoy_price":1.37975,"absolute_change":-0.0774166667,"percentage_change":-5.6109198526},{"date":"1997-06-02","fuel":"gasoline","current_price":1.3034166667,"yoy_price":1.3785833333,"absolute_change":-0.0751666667,"percentage_change":-5.4524572327},{"date":"1997-06-09","fuel":"gasoline","current_price":1.298,"yoy_price":1.36975,"absolute_change":-0.07175,"percentage_change":-5.23818215},{"date":"1997-06-16","fuel":"gasoline","current_price":1.2903333333,"yoy_price":1.3625,"absolute_change":-0.0721666667,"percentage_change":-5.2966360856},{"date":"1997-06-23","fuel":"gasoline","current_price":1.2814166667,"yoy_price":1.3511666667,"absolute_change":-0.06975,"percentage_change":-5.1622055014},{"date":"1997-06-30","fuel":"gasoline","current_price":1.2731666667,"yoy_price":1.34025,"absolute_change":-0.0670833333,"percentage_change":-5.0052850836},{"date":"1997-07-07","fuel":"gasoline","current_price":1.26925,"yoy_price":1.3360833333,"absolute_change":-0.0668333333,"percentage_change":-5.0021829976},{"date":"1997-07-14","fuel":"gasoline","current_price":1.26475,"yoy_price":1.332,"absolute_change":-0.06725,"percentage_change":-5.0487987988},{"date":"1997-07-21","fuel":"gasoline","current_price":1.26675,"yoy_price":1.3288333333,"absolute_change":-0.0620833333,"percentage_change":-4.672018061},{"date":"1997-07-28","fuel":"gasoline","current_price":1.2615833333,"yoy_price":1.3199166667,"absolute_change":-0.0583333333,"percentage_change":-4.4194709262},{"date":"1997-08-04","fuel":"gasoline","current_price":1.282,"yoy_price":1.30975,"absolute_change":-0.02775,"percentage_change":-2.1187249475},{"date":"1997-08-11","fuel":"gasoline","current_price":1.3171666667,"yoy_price":1.3026666667,"absolute_change":0.0145,"percentage_change":1.1131013306},{"date":"1997-08-18","fuel":"gasoline","current_price":1.3226666667,"yoy_price":1.3000833333,"absolute_change":0.0225833333,"percentage_change":1.7370681367},{"date":"1997-08-25","fuel":"gasoline","current_price":1.3403333333,"yoy_price":1.3024166667,"absolute_change":0.0379166667,"percentage_change":2.9112547188},{"date":"1997-09-01","fuel":"gasoline","current_price":1.3423333333,"yoy_price":1.2905,"absolute_change":0.0518333333,"percentage_change":4.0165310603},{"date":"1997-09-08","fuel":"gasoline","current_price":1.3435833333,"yoy_price":1.2938333333,"absolute_change":0.04975,"percentage_change":3.8451629525},{"date":"1997-09-15","fuel":"gasoline","current_price":1.3390833333,"yoy_price":1.2966666667,"absolute_change":0.0424166667,"percentage_change":3.2712082262},{"date":"1997-09-22","fuel":"gasoline","current_price":1.3289166667,"yoy_price":1.29675,"absolute_change":0.0321666667,"percentage_change":2.4805603753},{"date":"1997-09-29","fuel":"gasoline","current_price":1.3160833333,"yoy_price":1.2916666667,"absolute_change":0.0244166667,"percentage_change":1.8903225806},{"date":"1997-10-06","fuel":"gasoline","current_price":1.3143333333,"yoy_price":1.2855,"absolute_change":0.0288333333,"percentage_change":2.2429664203},{"date":"1997-10-13","fuel":"gasoline","current_price":1.3075,"yoy_price":1.2918333333,"absolute_change":0.0156666667,"percentage_change":1.2127467424},{"date":"1997-10-20","fuel":"gasoline","current_price":1.2989166667,"yoy_price":1.2916666667,"absolute_change":0.00725,"percentage_change":0.5612903226},{"date":"1997-10-27","fuel":"gasoline","current_price":1.2889166667,"yoy_price":1.2986666667,"absolute_change":-0.00975,"percentage_change":-0.7507700205},{"date":"1997-11-03","fuel":"gasoline","current_price":1.2814166667,"yoy_price":1.3048333333,"absolute_change":-0.0234166667,"percentage_change":-1.7946097841},{"date":"1997-11-10","fuel":"gasoline","current_price":1.2804166667,"yoy_price":1.3065833333,"absolute_change":-0.0261666667,"percentage_change":-2.0026787423},{"date":"1997-11-17","fuel":"gasoline","current_price":1.27175,"yoy_price":1.31575,"absolute_change":-0.044,"percentage_change":-3.344100323},{"date":"1997-11-24","fuel":"gasoline","current_price":1.2656666667,"yoy_price":1.32175,"absolute_change":-0.0560833333,"percentage_change":-4.2431120358},{"date":"1997-12-01","fuel":"gasoline","current_price":1.2570833333,"yoy_price":1.3219166667,"absolute_change":-0.0648333333,"percentage_change":-4.9044947362},{"date":"1997-12-08","fuel":"gasoline","current_price":1.2458333333,"yoy_price":1.32275,"absolute_change":-0.0769166667,"percentage_change":-5.8149058149},{"date":"1997-12-15","fuel":"gasoline","current_price":1.2355833333,"yoy_price":1.32075,"absolute_change":-0.0851666667,"percentage_change":-6.4483563632},{"date":"1997-12-22","fuel":"gasoline","current_price":1.2255,"yoy_price":1.3175,"absolute_change":-0.092,"percentage_change":-6.9829222011},{"date":"1997-12-29","fuel":"gasoline","current_price":1.2175833333,"yoy_price":1.3154166667,"absolute_change":-0.0978333333,"percentage_change":-7.4374406082},{"date":"1998-01-05","fuel":"gasoline","current_price":1.2095,"yoy_price":1.31525,"absolute_change":-0.10575,"percentage_change":-8.0402965216},{"date":"1998-01-12","fuel":"gasoline","current_price":1.1999166667,"yoy_price":1.3293333333,"absolute_change":-0.1294166667,"percentage_change":-9.7354563691},{"date":"1998-01-19","fuel":"gasoline","current_price":1.1858333333,"yoy_price":1.3296666667,"absolute_change":-0.1438333333,"percentage_change":-10.8172474304},{"date":"1998-01-26","fuel":"gasoline","current_price":1.1703333333,"yoy_price":1.3268333333,"absolute_change":-0.1565,"percentage_change":-11.7950006281},{"date":"1998-02-02","fuel":"gasoline","current_price":1.1635833333,"yoy_price":1.3263333333,"absolute_change":-0.16275,"percentage_change":-12.2706710229},{"date":"1998-02-09","fuel":"gasoline","current_price":1.1553333333,"yoy_price":1.3243333333,"absolute_change":-0.169,"percentage_change":-12.7611376793},{"date":"1998-02-16","fuel":"gasoline","current_price":1.1394166667,"yoy_price":1.3195,"absolute_change":-0.1800833333,"percentage_change":-13.6478464065},{"date":"1998-02-23","fuel":"gasoline","current_price":1.1393333333,"yoy_price":1.3165833333,"absolute_change":-0.17725,"percentage_change":-13.4628773973},{"date":"1998-03-02","fuel":"gasoline","current_price":1.1236666667,"yoy_price":1.30825,"absolute_change":-0.1845833333,"percentage_change":-14.1091789286},{"date":"1998-03-09","fuel":"gasoline","current_price":1.1116666667,"yoy_price":1.3035833333,"absolute_change":-0.1919166667,"percentage_change":-14.7222399795},{"date":"1998-03-16","fuel":"gasoline","current_price":1.1015,"yoy_price":1.2974166667,"absolute_change":-0.1959166667,"percentage_change":-15.1005202646},{"date":"1998-03-23","fuel":"gasoline","current_price":1.093,"yoy_price":1.2995833333,"absolute_change":-0.2065833333,"percentage_change":-15.8961205515},{"date":"1998-03-30","fuel":"gasoline","current_price":1.1211666667,"yoy_price":1.2985833333,"absolute_change":-0.1774166667,"percentage_change":-13.6623243278},{"date":"1998-04-06","fuel":"gasoline","current_price":1.1190833333,"yoy_price":1.3015833333,"absolute_change":-0.1825,"percentage_change":-14.0213842115},{"date":"1998-04-13","fuel":"gasoline","current_price":1.1186666667,"yoy_price":1.2985833333,"absolute_change":-0.1799166667,"percentage_change":-13.8548418148},{"date":"1998-04-20","fuel":"gasoline","current_price":1.1206666667,"yoy_price":1.2971666667,"absolute_change":-0.1765,"percentage_change":-13.6065784402},{"date":"1998-04-27","fuel":"gasoline","current_price":1.1316666667,"yoy_price":1.2928333333,"absolute_change":-0.1611666667,"percentage_change":-12.4661595978},{"date":"1998-05-04","fuel":"gasoline","current_price":1.1455,"yoy_price":1.2909166667,"absolute_change":-0.1454166667,"percentage_change":-11.2646052547},{"date":"1998-05-11","fuel":"gasoline","current_price":1.1580833333,"yoy_price":1.2889166667,"absolute_change":-0.1308333333,"percentage_change":-10.1506433051},{"date":"1998-05-18","fuel":"gasoline","current_price":1.1619166667,"yoy_price":1.2956666667,"absolute_change":-0.13375,"percentage_change":-10.3228711088},{"date":"1998-05-25","fuel":"gasoline","current_price":1.1605833333,"yoy_price":1.3023333333,"absolute_change":-0.14175,"percentage_change":-10.8843102124},{"date":"1998-06-01","fuel":"gasoline","current_price":1.1571666667,"yoy_price":1.3034166667,"absolute_change":-0.14625,"percentage_change":-11.2205101976},{"date":"1998-06-08","fuel":"gasoline","current_price":1.1628333333,"yoy_price":1.298,"absolute_change":-0.1351666667,"percentage_change":-10.4134565999},{"date":"1998-06-15","fuel":"gasoline","current_price":1.1561666667,"yoy_price":1.2903333333,"absolute_change":-0.1341666667,"percentage_change":-10.3978300181},{"date":"1998-06-22","fuel":"gasoline","current_price":1.15,"yoy_price":1.2814166667,"absolute_change":-0.1314166667,"percentage_change":-10.2555765104},{"date":"1998-06-29","fuel":"gasoline","current_price":1.1484166667,"yoy_price":1.2731666667,"absolute_change":-0.12475,"percentage_change":-9.7984029323},{"date":"1998-07-06","fuel":"gasoline","current_price":1.1486666667,"yoy_price":1.26925,"absolute_change":-0.1205833333,"percentage_change":-9.5003611056},{"date":"1998-07-13","fuel":"gasoline","current_price":1.1450833333,"yoy_price":1.26475,"absolute_change":-0.1196666667,"percentage_change":-9.4616854451},{"date":"1998-07-20","fuel":"gasoline","current_price":1.1476666667,"yoy_price":1.26675,"absolute_change":-0.1190833333,"percentage_change":-9.4006973225},{"date":"1998-07-27","fuel":"gasoline","current_price":1.1401666667,"yoy_price":1.2615833333,"absolute_change":-0.1214166667,"percentage_change":-9.6241495475},{"date":"1998-08-03","fuel":"gasoline","current_price":1.1303333333,"yoy_price":1.282,"absolute_change":-0.1516666667,"percentage_change":-11.8304732189},{"date":"1998-08-10","fuel":"gasoline","current_price":1.1250833333,"yoy_price":1.3171666667,"absolute_change":-0.1920833333,"percentage_change":-14.5830697204},{"date":"1998-08-17","fuel":"gasoline","current_price":1.1194166667,"yoy_price":1.3226666667,"absolute_change":-0.20325,"percentage_change":-15.3666834677},{"date":"1998-08-24","fuel":"gasoline","current_price":1.11275,"yoy_price":1.3403333333,"absolute_change":-0.2275833333,"percentage_change":-16.9796070629},{"date":"1998-08-31","fuel":"gasoline","current_price":1.107,"yoy_price":1.3423333333,"absolute_change":-0.2353333333,"percentage_change":-17.5316612863},{"date":"1998-09-07","fuel":"gasoline","current_price":1.1015,"yoy_price":1.3435833333,"absolute_change":-0.2420833333,"percentage_change":-18.0177386342},{"date":"1998-09-14","fuel":"gasoline","current_price":1.09725,"yoy_price":1.3390833333,"absolute_change":-0.2418333333,"percentage_change":-18.0596178978},{"date":"1998-09-21","fuel":"gasoline","current_price":1.1071666667,"yoy_price":1.3289166667,"absolute_change":-0.22175,"percentage_change":-16.6865241111},{"date":"1998-09-28","fuel":"gasoline","current_price":1.1075833333,"yoy_price":1.3160833333,"absolute_change":-0.2085,"percentage_change":-15.8424618502},{"date":"1998-10-05","fuel":"gasoline","current_price":1.1115,"yoy_price":1.3143333333,"absolute_change":-0.2028333333,"percentage_change":-15.4324118691},{"date":"1998-10-12","fuel":"gasoline","current_price":1.1158333333,"yoy_price":1.3075,"absolute_change":-0.1916666667,"percentage_change":-14.6590184831},{"date":"1998-10-19","fuel":"gasoline","current_price":1.1113333333,"yoy_price":1.2989166667,"absolute_change":-0.1875833333,"percentage_change":-14.441521781},{"date":"1998-10-26","fuel":"gasoline","current_price":1.1086666667,"yoy_price":1.2889166667,"absolute_change":-0.18025,"percentage_change":-13.9846124006},{"date":"1998-11-02","fuel":"gasoline","current_price":1.1045,"yoy_price":1.2814166667,"absolute_change":-0.1769166667,"percentage_change":-13.8063341354},{"date":"1998-11-09","fuel":"gasoline","current_price":1.1028333333,"yoy_price":1.2804166667,"absolute_change":-0.1775833333,"percentage_change":-13.8691832086},{"date":"1998-11-16","fuel":"gasoline","current_price":1.0931666667,"yoy_price":1.27175,"absolute_change":-0.1785833333,"percentage_change":-14.0423301225},{"date":"1998-11-23","fuel":"gasoline","current_price":1.0886666667,"yoy_price":1.2656666667,"absolute_change":-0.177,"percentage_change":-13.9847247827},{"date":"1998-11-30","fuel":"gasoline","current_price":1.0763333333,"yoy_price":1.2570833333,"absolute_change":-0.18075,"percentage_change":-14.3785217103},{"date":"1998-12-07","fuel":"gasoline","current_price":1.0594166667,"yoy_price":1.2458333333,"absolute_change":-0.1864166667,"percentage_change":-14.9632107023},{"date":"1998-12-14","fuel":"gasoline","current_price":1.05125,"yoy_price":1.2355833333,"absolute_change":-0.1843333333,"percentage_change":-14.9187293451},{"date":"1998-12-21","fuel":"gasoline","current_price":1.049,"yoy_price":1.2255,"absolute_change":-0.1765,"percentage_change":-14.4022847817},{"date":"1998-12-28","fuel":"gasoline","current_price":1.043,"yoy_price":1.2175833333,"absolute_change":-0.1745833333,"percentage_change":-14.3385120799},{"date":"1999-01-04","fuel":"gasoline","current_price":1.0405833333,"yoy_price":1.2095,"absolute_change":-0.1689166667,"percentage_change":-13.9658260989},{"date":"1999-01-11","fuel":"gasoline","current_price":1.0429166667,"yoy_price":1.1999166667,"absolute_change":-0.157,"percentage_change":-13.0842419612},{"date":"1999-01-18","fuel":"gasoline","current_price":1.0458333333,"yoy_price":1.1858333333,"absolute_change":-0.14,"percentage_change":-11.8060435699},{"date":"1999-01-25","fuel":"gasoline","current_price":1.0391666667,"yoy_price":1.1703333333,"absolute_change":-0.1311666667,"percentage_change":-11.2076331529},{"date":"1999-02-01","fuel":"gasoline","current_price":1.0320833333,"yoy_price":1.1635833333,"absolute_change":-0.1315,"percentage_change":-11.301296283},{"date":"1999-02-08","fuel":"gasoline","current_price":1.02875,"yoy_price":1.1553333333,"absolute_change":-0.1265833333,"percentage_change":-10.9564339296},{"date":"1999-02-15","fuel":"gasoline","current_price":1.0210833333,"yoy_price":1.1394166667,"absolute_change":-0.1183333333,"percentage_change":-10.3854311417},{"date":"1999-02-22","fuel":"gasoline","current_price":1.012,"yoy_price":1.1393333333,"absolute_change":-0.1273333333,"percentage_change":-11.1761263897},{"date":"1999-03-01","fuel":"gasoline","current_price":1.0169166667,"yoy_price":1.1236666667,"absolute_change":-0.10675,"percentage_change":-9.5001483239},{"date":"1999-03-08","fuel":"gasoline","current_price":1.0249166667,"yoy_price":1.1116666667,"absolute_change":-0.08675,"percentage_change":-7.8035982009},{"date":"1999-03-15","fuel":"gasoline","current_price":1.0733333333,"yoy_price":1.1015,"absolute_change":-0.0281666667,"percentage_change":-2.55711908},{"date":"1999-03-22","fuel":"gasoline","current_price":1.1114166667,"yoy_price":1.093,"absolute_change":0.0184166667,"percentage_change":1.6849649283},{"date":"1999-03-29","fuel":"gasoline","current_price":1.1826666667,"yoy_price":1.1211666667,"absolute_change":0.0615,"percentage_change":5.4853575145},{"date":"1999-04-05","fuel":"gasoline","current_price":1.22625,"yoy_price":1.1190833333,"absolute_change":0.1071666667,"percentage_change":9.5762901184},{"date":"1999-04-12","fuel":"gasoline","current_price":1.2495,"yoy_price":1.1186666667,"absolute_change":0.1308333333,"percentage_change":11.6954707986},{"date":"1999-04-19","fuel":"gasoline","current_price":1.2458333333,"yoy_price":1.1206666667,"absolute_change":0.1251666667,"percentage_change":11.1689470553},{"date":"1999-04-26","fuel":"gasoline","current_price":1.2426666667,"yoy_price":1.1316666667,"absolute_change":0.111,"percentage_change":9.8085419735},{"date":"1999-05-03","fuel":"gasoline","current_price":1.244,"yoy_price":1.1455,"absolute_change":0.0985,"percentage_change":8.5988651244},{"date":"1999-05-10","fuel":"gasoline","current_price":1.2485,"yoy_price":1.1580833333,"absolute_change":0.0904166667,"percentage_change":7.8074404548},{"date":"1999-05-17","fuel":"gasoline","current_price":1.2455833333,"yoy_price":1.1619166667,"absolute_change":0.0836666667,"percentage_change":7.200745894},{"date":"1999-05-24","fuel":"gasoline","current_price":1.2296666667,"yoy_price":1.1605833333,"absolute_change":0.0690833333,"percentage_change":5.9524664321},{"date":"1999-05-31","fuel":"gasoline","current_price":1.2144166667,"yoy_price":1.1571666667,"absolute_change":0.05725,"percentage_change":4.9474290652},{"date":"1999-06-07","fuel":"gasoline","current_price":1.21125,"yoy_price":1.1628333333,"absolute_change":0.0484166667,"percentage_change":4.163680665},{"date":"1999-06-14","fuel":"gasoline","current_price":1.2073333333,"yoy_price":1.1561666667,"absolute_change":0.0511666667,"percentage_change":4.4255441834},{"date":"1999-06-21","fuel":"gasoline","current_price":1.2195,"yoy_price":1.15,"absolute_change":0.0695,"percentage_change":6.0434782609},{"date":"1999-06-28","fuel":"gasoline","current_price":1.2113333333,"yoy_price":1.1484166667,"absolute_change":0.0629166667,"percentage_change":5.4785574341},{"date":"1999-07-05","fuel":"gasoline","current_price":1.22,"yoy_price":1.1486666667,"absolute_change":0.0713333333,"percentage_change":6.2100986651},{"date":"1999-07-12","fuel":"gasoline","current_price":1.2401666667,"yoy_price":1.1450833333,"absolute_change":0.0950833333,"percentage_change":8.3036169129},{"date":"1999-07-19","fuel":"gasoline","current_price":1.2691666667,"yoy_price":1.1476666667,"absolute_change":0.1215,"percentage_change":10.5866976474},{"date":"1999-07-26","fuel":"gasoline","current_price":1.29075,"yoy_price":1.1401666667,"absolute_change":0.1505833333,"percentage_change":13.20713346},{"date":"1999-08-02","fuel":"gasoline","current_price":1.2959166667,"yoy_price":1.1303333333,"absolute_change":0.1655833333,"percentage_change":14.6490710705},{"date":"1999-08-09","fuel":"gasoline","current_price":1.3089166667,"yoy_price":1.1250833333,"absolute_change":0.1838333333,"percentage_change":16.3395304052},{"date":"1999-08-16","fuel":"gasoline","current_price":1.3348333333,"yoy_price":1.1194166667,"absolute_change":0.2154166667,"percentage_change":19.2436536887},{"date":"1999-08-23","fuel":"gasoline","current_price":1.33425,"yoy_price":1.11275,"absolute_change":0.2215,"percentage_change":19.9056391822},{"date":"1999-08-30","fuel":"gasoline","current_price":1.3328333333,"yoy_price":1.107,"absolute_change":0.2258333333,"percentage_change":20.4004817826},{"date":"1999-09-06","fuel":"gasoline","current_price":1.3393333333,"yoy_price":1.1015,"absolute_change":0.2378333333,"percentage_change":21.5917688001},{"date":"1999-09-13","fuel":"gasoline","current_price":1.3453333333,"yoy_price":1.09725,"absolute_change":0.2480833333,"percentage_change":22.6095541885},{"date":"1999-09-20","fuel":"gasoline","current_price":1.3605833333,"yoy_price":1.1071666667,"absolute_change":0.2534166667,"percentage_change":22.8887550805},{"date":"1999-09-27","fuel":"gasoline","current_price":1.3545,"yoy_price":1.1075833333,"absolute_change":0.2469166667,"percentage_change":22.2932811677},{"date":"1999-10-04","fuel":"gasoline","current_price":1.3503333333,"yoy_price":1.1115,"absolute_change":0.2388333333,"percentage_change":21.4874793822},{"date":"1999-10-11","fuel":"gasoline","current_price":1.3466666667,"yoy_price":1.1158333333,"absolute_change":0.2308333333,"percentage_change":20.6870799104},{"date":"1999-10-18","fuel":"gasoline","current_price":1.3353333333,"yoy_price":1.1113333333,"absolute_change":0.224,"percentage_change":20.1559688062},{"date":"1999-10-25","fuel":"gasoline","current_price":1.3331666667,"yoy_price":1.1086666667,"absolute_change":0.2245,"percentage_change":20.2495490078},{"date":"1999-11-01","fuel":"gasoline","current_price":1.3265833333,"yoy_price":1.1045,"absolute_change":0.2220833333,"percentage_change":20.1071374679},{"date":"1999-11-08","fuel":"gasoline","current_price":1.3271666667,"yoy_price":1.1028333333,"absolute_change":0.2243333333,"percentage_change":20.3415445066},{"date":"1999-11-15","fuel":"gasoline","current_price":1.34325,"yoy_price":1.0931666667,"absolute_change":0.2500833333,"percentage_change":22.8769629517},{"date":"1999-11-22","fuel":"gasoline","current_price":1.35925,"yoy_price":1.0886666667,"absolute_change":0.2705833333,"percentage_change":24.8545621555},{"date":"1999-11-29","fuel":"gasoline","current_price":1.3671666667,"yoy_price":1.0763333333,"absolute_change":0.2908333333,"percentage_change":27.020749458},{"date":"1999-12-06","fuel":"gasoline","current_price":1.3674166667,"yoy_price":1.0594166667,"absolute_change":0.308,"percentage_change":29.0726028475},{"date":"1999-12-13","fuel":"gasoline","current_price":1.3680833333,"yoy_price":1.05125,"absolute_change":0.3168333333,"percentage_change":30.1387237416},{"date":"1999-12-20","fuel":"gasoline","current_price":1.3629166667,"yoy_price":1.049,"absolute_change":0.3139166667,"percentage_change":29.925325707},{"date":"1999-12-27","fuel":"gasoline","current_price":1.3658333333,"yoy_price":1.043,"absolute_change":0.3228333333,"percentage_change":30.9523809524},{"date":"2000-01-03","fuel":"gasoline","current_price":1.3645,"yoy_price":1.0405833333,"absolute_change":0.3239166667,"percentage_change":31.1283735084},{"date":"2000-01-10","fuel":"gasoline","current_price":1.3575833333,"yoy_price":1.0429166667,"absolute_change":0.3146666667,"percentage_change":30.1717938474},{"date":"2000-01-17","fuel":"gasoline","current_price":1.3674166667,"yoy_price":1.0458333333,"absolute_change":0.3215833333,"percentage_change":30.7490039841},{"date":"2000-01-24","fuel":"gasoline","current_price":1.3995,"yoy_price":1.0391666667,"absolute_change":0.3603333333,"percentage_change":34.6752205293},{"date":"2000-01-31","fuel":"gasoline","current_price":1.4033333333,"yoy_price":1.0320833333,"absolute_change":0.37125,"percentage_change":35.9709325797},{"date":"2000-02-07","fuel":"gasoline","current_price":1.4104166667,"yoy_price":1.02875,"absolute_change":0.3816666667,"percentage_change":37.1000405022},{"date":"2000-02-14","fuel":"gasoline","current_price":1.4378333333,"yoy_price":1.0210833333,"absolute_change":0.41675,"percentage_change":40.8144944095},{"date":"2000-02-21","fuel":"gasoline","current_price":1.4835,"yoy_price":1.012,"absolute_change":0.4715,"percentage_change":46.5909090909},{"date":"2000-02-28","fuel":"gasoline","current_price":1.5021666667,"yoy_price":1.0169166667,"absolute_change":0.48525,"percentage_change":47.7177743178},{"date":"2000-03-06","fuel":"gasoline","current_price":1.5858333333,"yoy_price":1.0249166667,"absolute_change":0.5609166667,"percentage_change":54.7280266688},{"date":"2000-03-13","fuel":"gasoline","current_price":1.6205833333,"yoy_price":1.0733333333,"absolute_change":0.54725,"percentage_change":50.9860248447},{"date":"2000-03-20","fuel":"gasoline","current_price":1.62925,"yoy_price":1.1114166667,"absolute_change":0.5178333333,"percentage_change":46.5921871485},{"date":"2000-03-27","fuel":"gasoline","current_price":1.613,"yoy_price":1.1826666667,"absolute_change":0.4303333333,"percentage_change":36.3866967306},{"date":"2000-04-03","fuel":"gasoline","current_price":1.6068333333,"yoy_price":1.22625,"absolute_change":0.3805833333,"percentage_change":31.0363574584},{"date":"2000-04-10","fuel":"gasoline","current_price":1.5824166667,"yoy_price":1.2495,"absolute_change":0.3329166667,"percentage_change":26.6439909297},{"date":"2000-04-17","fuel":"gasoline","current_price":1.5545,"yoy_price":1.2458333333,"absolute_change":0.3086666667,"percentage_change":24.7759197324},{"date":"2000-04-24","fuel":"gasoline","current_price":1.5449166667,"yoy_price":1.2426666667,"absolute_change":0.30225,"percentage_change":24.322693133},{"date":"2000-05-01","fuel":"gasoline","current_price":1.52925,"yoy_price":1.244,"absolute_change":0.28525,"percentage_change":22.9300643087},{"date":"2000-05-08","fuel":"gasoline","current_price":1.5560833333,"yoy_price":1.2485,"absolute_change":0.3075833333,"percentage_change":24.6362301428},{"date":"2000-05-15","fuel":"gasoline","current_price":1.5860833333,"yoy_price":1.2455833333,"absolute_change":0.3405,"percentage_change":27.3365892821},{"date":"2000-05-22","fuel":"gasoline","current_price":1.6116666667,"yoy_price":1.2296666667,"absolute_change":0.382,"percentage_change":31.0653293575},{"date":"2000-05-29","fuel":"gasoline","current_price":1.6254166667,"yoy_price":1.2144166667,"absolute_change":0.411,"percentage_change":33.8434090441},{"date":"2000-06-05","fuel":"gasoline","current_price":1.6456666667,"yoy_price":1.21125,"absolute_change":0.4344166667,"percentage_change":35.8651530788},{"date":"2000-06-12","fuel":"gasoline","current_price":1.6994166667,"yoy_price":1.2073333333,"absolute_change":0.4920833333,"percentage_change":40.7578685809},{"date":"2000-06-19","fuel":"gasoline","current_price":1.7399166667,"yoy_price":1.2195,"absolute_change":0.5204166667,"percentage_change":42.6745934126},{"date":"2000-06-26","fuel":"gasoline","current_price":1.7258333333,"yoy_price":1.2113333333,"absolute_change":0.5145,"percentage_change":42.4738580077},{"date":"2000-07-03","fuel":"gasoline","current_price":1.7075,"yoy_price":1.22,"absolute_change":0.4875,"percentage_change":39.9590163934},{"date":"2000-07-10","fuel":"gasoline","current_price":1.6853333333,"yoy_price":1.2401666667,"absolute_change":0.4451666667,"percentage_change":35.8957129418},{"date":"2000-07-17","fuel":"gasoline","current_price":1.6488333333,"yoy_price":1.2691666667,"absolute_change":0.3796666667,"percentage_change":29.9146421536},{"date":"2000-07-24","fuel":"gasoline","current_price":1.6263333333,"yoy_price":1.29075,"absolute_change":0.3355833333,"percentage_change":25.9990961327},{"date":"2000-07-31","fuel":"gasoline","current_price":1.5839166667,"yoy_price":1.2959166667,"absolute_change":0.288,"percentage_change":22.2236512121},{"date":"2000-08-07","fuel":"gasoline","current_price":1.573,"yoy_price":1.3089166667,"absolute_change":0.2640833333,"percentage_change":20.1757178328},{"date":"2000-08-14","fuel":"gasoline","current_price":1.5595,"yoy_price":1.3348333333,"absolute_change":0.2246666667,"percentage_change":16.8310650518},{"date":"2000-08-21","fuel":"gasoline","current_price":1.5729166667,"yoy_price":1.33425,"absolute_change":0.2386666667,"percentage_change":17.8877022047},{"date":"2000-08-28","fuel":"gasoline","current_price":1.5854166667,"yoy_price":1.3328333333,"absolute_change":0.2525833333,"percentage_change":18.9508565712},{"date":"2000-09-04","fuel":"gasoline","current_price":1.6298333333,"yoy_price":1.3393333333,"absolute_change":0.2905,"percentage_change":21.6898954704},{"date":"2000-09-11","fuel":"gasoline","current_price":1.6595833333,"yoy_price":1.3453333333,"absolute_change":0.31425,"percentage_change":23.3585232904},{"date":"2000-09-18","fuel":"gasoline","current_price":1.6579166667,"yoy_price":1.3605833333,"absolute_change":0.2973333333,"percentage_change":21.8533717156},{"date":"2000-09-25","fuel":"gasoline","current_price":1.6485,"yoy_price":1.3545,"absolute_change":0.294,"percentage_change":21.7054263566},{"date":"2000-10-02","fuel":"gasoline","current_price":1.6289166667,"yoy_price":1.3503333333,"absolute_change":0.2785833333,"percentage_change":20.630708467},{"date":"2000-10-09","fuel":"gasoline","current_price":1.60925,"yoy_price":1.3466666667,"absolute_change":0.2625833333,"percentage_change":19.4987623762},{"date":"2000-10-16","fuel":"gasoline","current_price":1.6384166667,"yoy_price":1.3353333333,"absolute_change":0.3030833333,"percentage_change":22.6972041937},{"date":"2000-10-23","fuel":"gasoline","current_price":1.6444166667,"yoy_price":1.3331666667,"absolute_change":0.31125,"percentage_change":23.3466683335},{"date":"2000-10-30","fuel":"gasoline","current_price":1.6425833333,"yoy_price":1.3265833333,"absolute_change":0.316,"percentage_change":23.8205917457},{"date":"2000-11-06","fuel":"gasoline","current_price":1.62675,"yoy_price":1.3271666667,"absolute_change":0.2995833333,"percentage_change":22.5731508226},{"date":"2000-11-13","fuel":"gasoline","current_price":1.6224166667,"yoy_price":1.34325,"absolute_change":0.2791666667,"percentage_change":20.7829269806},{"date":"2000-11-20","fuel":"gasoline","current_price":1.6113333333,"yoy_price":1.35925,"absolute_change":0.2520833333,"percentage_change":18.5457666605},{"date":"2000-11-27","fuel":"gasoline","current_price":1.6089166667,"yoy_price":1.3671666667,"absolute_change":0.24175,"percentage_change":17.6825551627},{"date":"2000-12-04","fuel":"gasoline","current_price":1.58775,"yoy_price":1.3674166667,"absolute_change":0.2203333333,"percentage_change":16.1131086599},{"date":"2000-12-11","fuel":"gasoline","current_price":1.5559166667,"yoy_price":1.3680833333,"absolute_change":0.1878333333,"percentage_change":13.7296704635},{"date":"2000-12-18","fuel":"gasoline","current_price":1.5295833333,"yoy_price":1.3629166667,"absolute_change":0.1666666667,"percentage_change":12.2286762458},{"date":"2000-12-25","fuel":"gasoline","current_price":1.5176666667,"yoy_price":1.3658333333,"absolute_change":0.1518333333,"percentage_change":11.1165344722},{"date":"2001-01-01","fuel":"gasoline","current_price":1.5119166667,"yoy_price":1.3645,"absolute_change":0.1474166667,"percentage_change":10.8037132039},{"date":"2001-01-08","fuel":"gasoline","current_price":1.5254166667,"yoy_price":1.3575833333,"absolute_change":0.1678333333,"percentage_change":12.3626542263},{"date":"2001-01-15","fuel":"gasoline","current_price":1.5641666667,"yoy_price":1.3674166667,"absolute_change":0.19675,"percentage_change":14.3884453653},{"date":"2001-01-22","fuel":"gasoline","current_price":1.562,"yoy_price":1.3995,"absolute_change":0.1625,"percentage_change":11.6112897463},{"date":"2001-01-29","fuel":"gasoline","current_price":1.551,"yoy_price":1.4033333333,"absolute_change":0.1476666667,"percentage_change":10.5225653207},{"date":"2001-02-05","fuel":"gasoline","current_price":1.5389166667,"yoy_price":1.4104166667,"absolute_change":0.1285,"percentage_change":9.1107828656},{"date":"2001-02-12","fuel":"gasoline","current_price":1.5669166667,"yoy_price":1.4378333333,"absolute_change":0.1290833333,"percentage_change":8.977628376},{"date":"2001-02-19","fuel":"gasoline","current_price":1.5478333333,"yoy_price":1.4835,"absolute_change":0.0643333333,"percentage_change":4.3365913942},{"date":"2001-02-26","fuel":"gasoline","current_price":1.532,"yoy_price":1.5021666667,"absolute_change":0.0298333333,"percentage_change":1.9860201931},{"date":"2001-03-05","fuel":"gasoline","current_price":1.5219166667,"yoy_price":1.5858333333,"absolute_change":-0.0639166667,"percentage_change":-4.0304781923},{"date":"2001-03-12","fuel":"gasoline","current_price":1.5171666667,"yoy_price":1.6205833333,"absolute_change":-0.1034166667,"percentage_change":-6.3814470098},{"date":"2001-03-19","fuel":"gasoline","current_price":1.5091666667,"yoy_price":1.62925,"absolute_change":-0.1200833333,"percentage_change":-7.3704669838},{"date":"2001-03-26","fuel":"gasoline","current_price":1.50775,"yoy_price":1.613,"absolute_change":-0.10525,"percentage_change":-6.5251084935},{"date":"2001-04-02","fuel":"gasoline","current_price":1.543,"yoy_price":1.6068333333,"absolute_change":-0.0638333333,"percentage_change":-3.9726169484},{"date":"2001-04-09","fuel":"gasoline","current_price":1.5984166667,"yoy_price":1.5824166667,"absolute_change":0.016,"percentage_change":1.0111116962},{"date":"2001-04-16","fuel":"gasoline","current_price":1.6590833333,"yoy_price":1.5545,"absolute_change":0.1045833333,"percentage_change":6.7277795647},{"date":"2001-04-23","fuel":"gasoline","current_price":1.7113333333,"yoy_price":1.5449166667,"absolute_change":0.1664166667,"percentage_change":10.7718862938},{"date":"2001-04-30","fuel":"gasoline","current_price":1.7231666667,"yoy_price":1.52925,"absolute_change":0.1939166667,"percentage_change":12.6805078742},{"date":"2001-05-07","fuel":"gasoline","current_price":1.7915,"yoy_price":1.5560833333,"absolute_change":0.2354166667,"percentage_change":15.1287955872},{"date":"2001-05-14","fuel":"gasoline","current_price":1.8036666667,"yoy_price":1.5860833333,"absolute_change":0.2175833333,"percentage_change":13.718278779},{"date":"2001-05-21","fuel":"gasoline","current_price":1.7833333333,"yoy_price":1.6116666667,"absolute_change":0.1716666667,"percentage_change":10.6514994829},{"date":"2001-05-28","fuel":"gasoline","current_price":1.7961666667,"yoy_price":1.6254166667,"absolute_change":0.17075,"percentage_change":10.5049987183},{"date":"2001-06-04","fuel":"gasoline","current_price":1.7734166667,"yoy_price":1.6456666667,"absolute_change":0.12775,"percentage_change":7.7628114239},{"date":"2001-06-11","fuel":"gasoline","current_price":1.7493333333,"yoy_price":1.6994166667,"absolute_change":0.0499166667,"percentage_change":2.9372824008},{"date":"2001-06-18","fuel":"gasoline","current_price":1.709,"yoy_price":1.7399166667,"absolute_change":-0.0309166667,"percentage_change":-1.7769050242},{"date":"2001-06-25","fuel":"gasoline","current_price":1.6539166667,"yoy_price":1.7258333333,"absolute_change":-0.0719166667,"percentage_change":-4.1670690488},{"date":"2001-07-02","fuel":"gasoline","current_price":1.594,"yoy_price":1.7075,"absolute_change":-0.1135,"percentage_change":-6.6471449488},{"date":"2001-07-09","fuel":"gasoline","current_price":1.5575,"yoy_price":1.6853333333,"absolute_change":-0.1278333333,"percentage_change":-7.5850474684},{"date":"2001-07-16","fuel":"gasoline","current_price":1.531,"yoy_price":1.6488333333,"absolute_change":-0.1178333333,"percentage_change":-7.146467199},{"date":"2001-07-23","fuel":"gasoline","current_price":1.509,"yoy_price":1.6263333333,"absolute_change":-0.1173333333,"percentage_change":-7.2145931543},{"date":"2001-07-30","fuel":"gasoline","current_price":1.4925,"yoy_price":1.5839166667,"absolute_change":-0.0914166667,"percentage_change":-5.7715578471},{"date":"2001-08-06","fuel":"gasoline","current_price":1.4800833333,"yoy_price":1.573,"absolute_change":-0.0929166667,"percentage_change":-5.9069718161},{"date":"2001-08-13","fuel":"gasoline","current_price":1.48925,"yoy_price":1.5595,"absolute_change":-0.07025,"percentage_change":-4.5046489259},{"date":"2001-08-20","fuel":"gasoline","current_price":1.5150833333,"yoy_price":1.5729166667,"absolute_change":-0.0578333333,"percentage_change":-3.6768211921},{"date":"2001-08-27","fuel":"gasoline","current_price":1.5595833333,"yoy_price":1.5854166667,"absolute_change":-0.0258333333,"percentage_change":-1.629434954},{"date":"2001-09-03","fuel":"gasoline","current_price":1.6145833333,"yoy_price":1.6298333333,"absolute_change":-0.01525,"percentage_change":-0.9356784947},{"date":"2001-09-10","fuel":"gasoline","current_price":1.6018333333,"yoy_price":1.6595833333,"absolute_change":-0.05775,"percentage_change":-3.4797891037},{"date":"2001-09-17","fuel":"gasoline","current_price":1.6029166667,"yoy_price":1.6579166667,"absolute_change":-0.055,"percentage_change":-3.3174164363},{"date":"2001-09-24","fuel":"gasoline","current_price":1.56675,"yoy_price":1.6485,"absolute_change":-0.08175,"percentage_change":-4.9590536852},{"date":"2001-10-01","fuel":"gasoline","current_price":1.5041666667,"yoy_price":1.6289166667,"absolute_change":-0.12475,"percentage_change":-7.6584642145},{"date":"2001-10-08","fuel":"gasoline","current_price":1.44575,"yoy_price":1.60925,"absolute_change":-0.1635,"percentage_change":-10.1600124281},{"date":"2001-10-15","fuel":"gasoline","current_price":1.4055,"yoy_price":1.6384166667,"absolute_change":-0.2329166667,"percentage_change":-14.215960531},{"date":"2001-10-22","fuel":"gasoline","current_price":1.3616666667,"yoy_price":1.6444166667,"absolute_change":-0.28275,"percentage_change":-17.1945472052},{"date":"2001-10-29","fuel":"gasoline","current_price":1.3309166667,"yoy_price":1.6425833333,"absolute_change":-0.3116666667,"percentage_change":-18.9741768556},{"date":"2001-11-05","fuel":"gasoline","current_price":1.3013333333,"yoy_price":1.62675,"absolute_change":-0.3254166667,"percentage_change":-20.0040981507},{"date":"2001-11-12","fuel":"gasoline","current_price":1.2753333333,"yoy_price":1.6224166667,"absolute_change":-0.3470833333,"percentage_change":-21.3929837177},{"date":"2001-11-19","fuel":"gasoline","current_price":1.2565,"yoy_price":1.6113333333,"absolute_change":-0.3548333333,"percentage_change":-22.0211005379},{"date":"2001-11-26","fuel":"gasoline","current_price":1.217,"yoy_price":1.6089166667,"absolute_change":-0.3919166667,"percentage_change":-24.3590407624},{"date":"2001-12-03","fuel":"gasoline","current_price":1.19575,"yoy_price":1.58775,"absolute_change":-0.392,"percentage_change":-24.6890253503},{"date":"2001-12-10","fuel":"gasoline","current_price":1.1815833333,"yoy_price":1.5559166667,"absolute_change":-0.3743333333,"percentage_change":-24.0587006588},{"date":"2001-12-17","fuel":"gasoline","current_price":1.1470833333,"yoy_price":1.5295833333,"absolute_change":-0.3825,"percentage_change":-25.0068101335},{"date":"2001-12-24","fuel":"gasoline","current_price":1.1550833333,"yoy_price":1.5176666667,"absolute_change":-0.3625833333,"percentage_change":-23.8908412036},{"date":"2001-12-31","fuel":"gasoline","current_price":1.175,"yoy_price":1.5119166667,"absolute_change":-0.3369166667,"percentage_change":-22.2840765033},{"date":"2002-01-07","fuel":"gasoline","current_price":1.1911666667,"yoy_price":1.5254166667,"absolute_change":-0.33425,"percentage_change":-21.9120458891},{"date":"2002-01-14","fuel":"gasoline","current_price":1.1951666667,"yoy_price":1.5641666667,"absolute_change":-0.369,"percentage_change":-23.5908364411},{"date":"2002-01-21","fuel":"gasoline","current_price":1.191,"yoy_price":1.562,"absolute_change":-0.371,"percentage_change":-23.7516005122},{"date":"2002-01-28","fuel":"gasoline","current_price":1.18775,"yoy_price":1.551,"absolute_change":-0.36325,"percentage_change":-23.4203739523},{"date":"2002-02-04","fuel":"gasoline","current_price":1.2014166667,"yoy_price":1.5389166667,"absolute_change":-0.3375,"percentage_change":-21.9310120756},{"date":"2002-02-11","fuel":"gasoline","current_price":1.1946666667,"yoy_price":1.5669166667,"absolute_change":-0.37225,"percentage_change":-23.7568473116},{"date":"2002-02-18","fuel":"gasoline","current_price":1.2049166667,"yoy_price":1.5478333333,"absolute_change":-0.3429166667,"percentage_change":-22.1546247443},{"date":"2002-02-25","fuel":"gasoline","current_price":1.2063333333,"yoy_price":1.532,"absolute_change":-0.3256666667,"percentage_change":-21.2576153177},{"date":"2002-03-04","fuel":"gasoline","current_price":1.23225,"yoy_price":1.5219166667,"absolute_change":-0.2896666667,"percentage_change":-19.0330175765},{"date":"2002-03-11","fuel":"gasoline","current_price":1.3095,"yoy_price":1.5171666667,"absolute_change":-0.2076666667,"percentage_change":-13.6877952323},{"date":"2002-03-18","fuel":"gasoline","current_price":1.37525,"yoy_price":1.5091666667,"absolute_change":-0.1339166667,"percentage_change":-8.8735505246},{"date":"2002-03-25","fuel":"gasoline","current_price":1.4305,"yoy_price":1.50775,"absolute_change":-0.07725,"percentage_change":-5.1235284364},{"date":"2002-04-01","fuel":"gasoline","current_price":1.4621666667,"yoy_price":1.543,"absolute_change":-0.0808333333,"percentage_change":-5.2387124649},{"date":"2002-04-08","fuel":"gasoline","current_price":1.5031666667,"yoy_price":1.5984166667,"absolute_change":-0.09525,"percentage_change":-5.9590219488},{"date":"2002-04-15","fuel":"gasoline","current_price":1.4981666667,"yoy_price":1.6590833333,"absolute_change":-0.1609166667,"percentage_change":-9.6991310463},{"date":"2002-04-22","fuel":"gasoline","current_price":1.4981666667,"yoy_price":1.7113333333,"absolute_change":-0.2131666667,"percentage_change":-12.4561745228},{"date":"2002-04-29","fuel":"gasoline","current_price":1.4885,"yoy_price":1.7231666667,"absolute_change":-0.2346666667,"percentage_change":-13.6183383306},{"date":"2002-05-06","fuel":"gasoline","current_price":1.49,"yoy_price":1.7915,"absolute_change":-0.3015,"percentage_change":-16.8294725091},{"date":"2002-05-13","fuel":"gasoline","current_price":1.4839166667,"yoy_price":1.8036666667,"absolute_change":-0.31975,"percentage_change":-17.7277767511},{"date":"2002-05-20","fuel":"gasoline","current_price":1.4909166667,"yoy_price":1.7833333333,"absolute_change":-0.2924166667,"percentage_change":-16.3971962617},{"date":"2002-05-27","fuel":"gasoline","current_price":1.4819166667,"yoy_price":1.7961666667,"absolute_change":-0.31425,"percentage_change":-17.4955924654},{"date":"2002-06-03","fuel":"gasoline","current_price":1.4848333333,"yoy_price":1.7734166667,"absolute_change":-0.2885833333,"percentage_change":-16.2727315446},{"date":"2002-06-10","fuel":"gasoline","current_price":1.47,"yoy_price":1.7493333333,"absolute_change":-0.2793333333,"percentage_change":-15.9679878049},{"date":"2002-06-17","fuel":"gasoline","current_price":1.473,"yoy_price":1.709,"absolute_change":-0.236,"percentage_change":-13.8092451726},{"date":"2002-06-24","fuel":"gasoline","current_price":1.47825,"yoy_price":1.6539166667,"absolute_change":-0.1756666667,"percentage_change":-10.6212525823},{"date":"2002-07-01","fuel":"gasoline","current_price":1.4840833333,"yoy_price":1.594,"absolute_change":-0.1099166667,"percentage_change":-6.8956503555},{"date":"2002-07-08","fuel":"gasoline","current_price":1.4753333333,"yoy_price":1.5575,"absolute_change":-0.0821666667,"percentage_change":-5.2755484216},{"date":"2002-07-15","fuel":"gasoline","current_price":1.4848333333,"yoy_price":1.531,"absolute_change":-0.0461666667,"percentage_change":-3.0154583061},{"date":"2002-07-22","fuel":"gasoline","current_price":1.4994166667,"yoy_price":1.509,"absolute_change":-0.0095833333,"percentage_change":-0.6350784184},{"date":"2002-07-29","fuel":"gasoline","current_price":1.4964166667,"yoy_price":1.4925,"absolute_change":0.0039166667,"percentage_change":0.2624232272},{"date":"2002-08-05","fuel":"gasoline","current_price":1.48975,"yoy_price":1.4800833333,"absolute_change":0.0096666667,"percentage_change":0.6531163786},{"date":"2002-08-12","fuel":"gasoline","current_price":1.487,"yoy_price":1.48925,"absolute_change":-0.00225,"percentage_change":-0.1510827598},{"date":"2002-08-19","fuel":"gasoline","current_price":1.4855833333,"yoy_price":1.5150833333,"absolute_change":-0.0295,"percentage_change":-1.9470876189},{"date":"2002-08-26","fuel":"gasoline","current_price":1.49675,"yoy_price":1.5595833333,"absolute_change":-0.0628333333,"percentage_change":-4.0288538605},{"date":"2002-09-02","fuel":"gasoline","current_price":1.489,"yoy_price":1.6145833333,"absolute_change":-0.1255833333,"percentage_change":-7.7780645161},{"date":"2002-09-09","fuel":"gasoline","current_price":1.4896666667,"yoy_price":1.6018333333,"absolute_change":-0.1121666667,"percentage_change":-7.0023930912},{"date":"2002-09-16","fuel":"gasoline","current_price":1.4935,"yoy_price":1.6029166667,"absolute_change":-0.1094166667,"percentage_change":-6.8260982584},{"date":"2002-09-23","fuel":"gasoline","current_price":1.4884166667,"yoy_price":1.56675,"absolute_change":-0.0783333333,"percentage_change":-4.9997340567},{"date":"2002-09-30","fuel":"gasoline","current_price":1.5038333333,"yoy_price":1.5041666667,"absolute_change":-0.0003333333,"percentage_change":-0.0221606648},{"date":"2002-10-07","fuel":"gasoline","current_price":1.526,"yoy_price":1.44575,"absolute_change":0.08025,"percentage_change":5.5507522047},{"date":"2002-10-14","fuel":"gasoline","current_price":1.5265,"yoy_price":1.4055,"absolute_change":0.121,"percentage_change":8.6090359303},{"date":"2002-10-21","fuel":"gasoline","current_price":1.5418333333,"yoy_price":1.3616666667,"absolute_change":0.1801666667,"percentage_change":13.2313341493},{"date":"2002-10-28","fuel":"gasoline","current_price":1.53,"yoy_price":1.3309166667,"absolute_change":0.1990833333,"percentage_change":14.9583620312},{"date":"2002-11-04","fuel":"gasoline","current_price":1.5349166667,"yoy_price":1.3013333333,"absolute_change":0.2335833333,"percentage_change":17.9495389344},{"date":"2002-11-11","fuel":"gasoline","current_price":1.5301666667,"yoy_price":1.2753333333,"absolute_change":0.2548333333,"percentage_change":19.9817041296},{"date":"2002-11-18","fuel":"gasoline","current_price":1.5036666667,"yoy_price":1.2565,"absolute_change":0.2471666667,"percentage_change":19.671043905},{"date":"2002-11-25","fuel":"gasoline","current_price":1.4781666667,"yoy_price":1.217,"absolute_change":0.2611666667,"percentage_change":21.4598740071},{"date":"2002-12-02","fuel":"gasoline","current_price":1.4655833333,"yoy_price":1.19575,"absolute_change":0.2698333333,"percentage_change":22.5660324761},{"date":"2002-12-09","fuel":"gasoline","current_price":1.46025,"yoy_price":1.1815833333,"absolute_change":0.2786666667,"percentage_change":23.5841737781},{"date":"2002-12-16","fuel":"gasoline","current_price":1.462,"yoy_price":1.1470833333,"absolute_change":0.3149166667,"percentage_change":27.453686887},{"date":"2002-12-23","fuel":"gasoline","current_price":1.49375,"yoy_price":1.1550833333,"absolute_change":0.3386666667,"percentage_change":29.3196739052},{"date":"2002-12-30","fuel":"gasoline","current_price":1.5318333333,"yoy_price":1.175,"absolute_change":0.3568333333,"percentage_change":30.3687943262},{"date":"2003-01-06","fuel":"gasoline","current_price":1.5385,"yoy_price":1.1911666667,"absolute_change":0.3473333333,"percentage_change":29.1590877291},{"date":"2003-01-13","fuel":"gasoline","current_price":1.54725,"yoy_price":1.1951666667,"absolute_change":0.3520833333,"percentage_change":29.4589318087},{"date":"2003-01-20","fuel":"gasoline","current_price":1.5548333333,"yoy_price":1.191,"absolute_change":0.3638333333,"percentage_change":30.5485586342},{"date":"2003-01-27","fuel":"gasoline","current_price":1.5669166667,"yoy_price":1.18775,"absolute_change":0.3791666667,"percentage_change":31.9231039079},{"date":"2003-02-03","fuel":"gasoline","current_price":1.6178333333,"yoy_price":1.2014166667,"absolute_change":0.4164166667,"percentage_change":34.6604702781},{"date":"2003-02-10","fuel":"gasoline","current_price":1.6974166667,"yoy_price":1.1946666667,"absolute_change":0.50275,"percentage_change":42.0828683036},{"date":"2003-02-17","fuel":"gasoline","current_price":1.75,"yoy_price":1.2049166667,"absolute_change":0.5450833333,"percentage_change":45.2382599073},{"date":"2003-02-24","fuel":"gasoline","current_price":1.7515833333,"yoy_price":1.2063333333,"absolute_change":0.54525,"percentage_change":45.1989499862},{"date":"2003-03-03","fuel":"gasoline","current_price":1.7805833333,"yoy_price":1.23225,"absolute_change":0.5483333333,"percentage_change":44.4985460202},{"date":"2003-03-10","fuel":"gasoline","current_price":1.8073333333,"yoy_price":1.3095,"absolute_change":0.4978333333,"percentage_change":38.0170548555},{"date":"2003-03-17","fuel":"gasoline","current_price":1.8255833333,"yoy_price":1.37525,"absolute_change":0.4503333333,"percentage_change":32.7455614131},{"date":"2003-03-24","fuel":"gasoline","current_price":1.7935,"yoy_price":1.4305,"absolute_change":0.363,"percentage_change":25.3757427473},{"date":"2003-03-31","fuel":"gasoline","current_price":1.7578333333,"yoy_price":1.4621666667,"absolute_change":0.2956666667,"percentage_change":20.2211330218},{"date":"2003-04-07","fuel":"gasoline","current_price":1.739,"yoy_price":1.5031666667,"absolute_change":0.2358333333,"percentage_change":15.6891007872},{"date":"2003-04-14","fuel":"gasoline","current_price":1.7065,"yoy_price":1.4981666667,"absolute_change":0.2083333333,"percentage_change":13.9058849705},{"date":"2003-04-21","fuel":"gasoline","current_price":1.683,"yoy_price":1.4981666667,"absolute_change":0.1848333333,"percentage_change":12.3373011458},{"date":"2003-04-28","fuel":"gasoline","current_price":1.6653333333,"yoy_price":1.4885,"absolute_change":0.1768333333,"percentage_change":11.8799686485},{"date":"2003-05-05","fuel":"gasoline","current_price":1.6220833333,"yoy_price":1.49,"absolute_change":0.1320833333,"percentage_change":8.8646532438},{"date":"2003-05-12","fuel":"gasoline","current_price":1.5969166667,"yoy_price":1.4839166667,"absolute_change":0.113,"percentage_change":7.6149828719},{"date":"2003-05-19","fuel":"gasoline","current_price":1.597,"yoy_price":1.4909166667,"absolute_change":0.1060833333,"percentage_change":7.1153093734},{"date":"2003-05-26","fuel":"gasoline","current_price":1.5835833333,"yoy_price":1.4819166667,"absolute_change":0.1016666667,"percentage_change":6.8604847326},{"date":"2003-06-02","fuel":"gasoline","current_price":1.5686666667,"yoy_price":1.4848333333,"absolute_change":0.0838333333,"percentage_change":5.6459759793},{"date":"2003-06-09","fuel":"gasoline","current_price":1.57975,"yoy_price":1.47,"absolute_change":0.10975,"percentage_change":7.4659863946},{"date":"2003-06-16","fuel":"gasoline","current_price":1.6100833333,"yoy_price":1.473,"absolute_change":0.1370833333,"percentage_change":9.3064041638},{"date":"2003-06-23","fuel":"gasoline","current_price":1.59225,"yoy_price":1.47825,"absolute_change":0.114,"percentage_change":7.7118214105},{"date":"2003-06-30","fuel":"gasoline","current_price":1.5835833333,"yoy_price":1.4840833333,"absolute_change":0.0995,"percentage_change":6.7044752653},{"date":"2003-07-07","fuel":"gasoline","current_price":1.5844166667,"yoy_price":1.4753333333,"absolute_change":0.1090833333,"percentage_change":7.3938093086},{"date":"2003-07-14","fuel":"gasoline","current_price":1.6138333333,"yoy_price":1.4848333333,"absolute_change":0.129,"percentage_change":8.6878437535},{"date":"2003-07-21","fuel":"gasoline","current_price":1.616,"yoy_price":1.4994166667,"absolute_change":0.1165833333,"percentage_change":7.775245929},{"date":"2003-07-28","fuel":"gasoline","current_price":1.60775,"yoy_price":1.4964166667,"absolute_change":0.1113333333,"percentage_change":7.4399955449},{"date":"2003-08-04","fuel":"gasoline","current_price":1.6225833333,"yoy_price":1.48975,"absolute_change":0.1328333333,"percentage_change":8.9164848688},{"date":"2003-08-11","fuel":"gasoline","current_price":1.6566666667,"yoy_price":1.487,"absolute_change":0.1696666667,"percentage_change":11.4099977584},{"date":"2003-08-18","fuel":"gasoline","current_price":1.7179166667,"yoy_price":1.4855833333,"absolute_change":0.2323333333,"percentage_change":15.6391989679},{"date":"2003-08-25","fuel":"gasoline","current_price":1.8441666667,"yoy_price":1.49675,"absolute_change":0.3474166667,"percentage_change":23.2114024832},{"date":"2003-09-01","fuel":"gasoline","current_price":1.8455,"yoy_price":1.489,"absolute_change":0.3565,"percentage_change":23.9422431162},{"date":"2003-09-08","fuel":"gasoline","current_price":1.82,"yoy_price":1.4896666667,"absolute_change":0.3303333333,"percentage_change":22.1749832177},{"date":"2003-09-15","fuel":"gasoline","current_price":1.79925,"yoy_price":1.4935,"absolute_change":0.30575,"percentage_change":20.4720455306},{"date":"2003-09-22","fuel":"gasoline","current_price":1.749,"yoy_price":1.4884166667,"absolute_change":0.2605833333,"percentage_change":17.5074183976},{"date":"2003-09-29","fuel":"gasoline","current_price":1.7005833333,"yoy_price":1.5038333333,"absolute_change":0.19675,"percentage_change":13.0832317411},{"date":"2003-10-06","fuel":"gasoline","current_price":1.68025,"yoy_price":1.526,"absolute_change":0.15425,"percentage_change":10.1081258191},{"date":"2003-10-13","fuel":"gasoline","current_price":1.6696666667,"yoy_price":1.5265,"absolute_change":0.1431666667,"percentage_change":9.378753139},{"date":"2003-10-20","fuel":"gasoline","current_price":1.6673333333,"yoy_price":1.5418333333,"absolute_change":0.1255,"percentage_change":8.1396605772},{"date":"2003-10-27","fuel":"gasoline","current_price":1.6398333333,"yoy_price":1.53,"absolute_change":0.1098333333,"percentage_change":7.1786492375},{"date":"2003-11-03","fuel":"gasoline","current_price":1.6315833333,"yoy_price":1.5349166667,"absolute_change":0.0966666667,"percentage_change":6.297844617},{"date":"2003-11-10","fuel":"gasoline","current_price":1.6018333333,"yoy_price":1.5301666667,"absolute_change":0.0716666667,"percentage_change":4.683585666},{"date":"2003-11-17","fuel":"gasoline","current_price":1.5941666667,"yoy_price":1.5036666667,"absolute_change":0.0905,"percentage_change":6.0186211483},{"date":"2003-11-24","fuel":"gasoline","current_price":1.60675,"yoy_price":1.4781666667,"absolute_change":0.1285833333,"percentage_change":8.6988386515},{"date":"2003-12-01","fuel":"gasoline","current_price":1.5871666667,"yoy_price":1.4655833333,"absolute_change":0.1215833333,"percentage_change":8.295900381},{"date":"2003-12-08","fuel":"gasoline","current_price":1.5726666667,"yoy_price":1.46025,"absolute_change":0.1124166667,"percentage_change":7.6984534612},{"date":"2003-12-15","fuel":"gasoline","current_price":1.56125,"yoy_price":1.462,"absolute_change":0.09925,"percentage_change":6.7886456908},{"date":"2003-12-22","fuel":"gasoline","current_price":1.5781666667,"yoy_price":1.49375,"absolute_change":0.0844166667,"percentage_change":5.6513249651},{"date":"2003-12-29","fuel":"gasoline","current_price":1.5713333333,"yoy_price":1.5318333333,"absolute_change":0.0395,"percentage_change":2.5786095093},{"date":"2004-01-05","fuel":"gasoline","current_price":1.5993333333,"yoy_price":1.5385,"absolute_change":0.0608333333,"percentage_change":3.954067815},{"date":"2004-01-12","fuel":"gasoline","current_price":1.6494166667,"yoy_price":1.54725,"absolute_change":0.1021666667,"percentage_change":6.60311305},{"date":"2004-01-19","fuel":"gasoline","current_price":1.6829166667,"yoy_price":1.5548333333,"absolute_change":0.1280833333,"percentage_change":8.2377532426},{"date":"2004-01-26","fuel":"gasoline","current_price":1.711,"yoy_price":1.5669166667,"absolute_change":0.1440833333,"percentage_change":9.195341169},{"date":"2004-02-02","fuel":"gasoline","current_price":1.7094166667,"yoy_price":1.6178333333,"absolute_change":0.0915833333,"percentage_change":5.6608632945},{"date":"2004-02-09","fuel":"gasoline","current_price":1.7310833333,"yoy_price":1.6974166667,"absolute_change":0.0336666667,"percentage_change":1.9834061564},{"date":"2004-02-16","fuel":"gasoline","current_price":1.74075,"yoy_price":1.75,"absolute_change":-0.00925,"percentage_change":-0.5285714286},{"date":"2004-02-23","fuel":"gasoline","current_price":1.7856666667,"yoy_price":1.7515833333,"absolute_change":0.0340833333,"percentage_change":1.945858509},{"date":"2004-03-01","fuel":"gasoline","current_price":1.8166666667,"yoy_price":1.7805833333,"absolute_change":0.0360833333,"percentage_change":2.0264894463},{"date":"2004-03-08","fuel":"gasoline","current_price":1.8374166667,"yoy_price":1.8073333333,"absolute_change":0.0300833333,"percentage_change":1.6645149391},{"date":"2004-03-15","fuel":"gasoline","current_price":1.8249166667,"yoy_price":1.8255833333,"absolute_change":-0.0006666667,"percentage_change":-0.0365180079},{"date":"2004-03-22","fuel":"gasoline","current_price":1.8415,"yoy_price":1.7935,"absolute_change":0.048,"percentage_change":2.676331196},{"date":"2004-03-29","fuel":"gasoline","current_price":1.8549166667,"yoy_price":1.7578333333,"absolute_change":0.0970833333,"percentage_change":5.5228975064},{"date":"2004-04-05","fuel":"gasoline","current_price":1.8768333333,"yoy_price":1.739,"absolute_change":0.1378333333,"percentage_change":7.9260111175},{"date":"2004-04-12","fuel":"gasoline","current_price":1.8833333333,"yoy_price":1.7065,"absolute_change":0.1768333333,"percentage_change":10.3623400723},{"date":"2004-04-19","fuel":"gasoline","current_price":1.90625,"yoy_price":1.683,"absolute_change":0.22325,"percentage_change":13.2650029709},{"date":"2004-04-26","fuel":"gasoline","current_price":1.9049166667,"yoy_price":1.6653333333,"absolute_change":0.2395833333,"percentage_change":14.3865092074},{"date":"2004-05-03","fuel":"gasoline","current_price":1.93375,"yoy_price":1.6220833333,"absolute_change":0.3116666667,"percentage_change":19.2139737991},{"date":"2004-05-10","fuel":"gasoline","current_price":2.0290833333,"yoy_price":1.5969166667,"absolute_change":0.4321666667,"percentage_change":27.0625684914},{"date":"2004-05-17","fuel":"gasoline","current_price":2.1054166667,"yoy_price":1.597,"absolute_change":0.5084166667,"percentage_change":31.8357336673},{"date":"2004-05-24","fuel":"gasoline","current_price":2.1555,"yoy_price":1.5835833333,"absolute_change":0.5719166667,"percentage_change":36.1153502079},{"date":"2004-05-31","fuel":"gasoline","current_price":2.1475833333,"yoy_price":1.5686666667,"absolute_change":0.5789166667,"percentage_change":36.9050148746},{"date":"2004-06-07","fuel":"gasoline","current_price":2.1325,"yoy_price":1.57975,"absolute_change":0.55275,"percentage_change":34.9897135623},{"date":"2004-06-14","fuel":"gasoline","current_price":2.0908333333,"yoy_price":1.6100833333,"absolute_change":0.48075,"percentage_change":29.8587029657},{"date":"2004-06-21","fuel":"gasoline","current_price":2.04575,"yoy_price":1.59225,"absolute_change":0.4535,"percentage_change":28.4817082745},{"date":"2004-06-28","fuel":"gasoline","current_price":2.0275,"yoy_price":1.5835833333,"absolute_change":0.4439166667,"percentage_change":28.0324159343},{"date":"2004-07-05","fuel":"gasoline","current_price":2.0013333333,"yoy_price":1.5844166667,"absolute_change":0.4169166667,"percentage_change":26.3135749224},{"date":"2004-07-12","fuel":"gasoline","current_price":2.0170833333,"yoy_price":1.6138333333,"absolute_change":0.40325,"percentage_change":24.9870907777},{"date":"2004-07-19","fuel":"gasoline","current_price":2.026,"yoy_price":1.616,"absolute_change":0.41,"percentage_change":25.3712871287},{"date":"2004-07-26","fuel":"gasoline","current_price":2.004,"yoy_price":1.60775,"absolute_change":0.39625,"percentage_change":24.646244752},{"date":"2004-08-02","fuel":"gasoline","current_price":1.9855,"yoy_price":1.6225833333,"absolute_change":0.3629166667,"percentage_change":22.3665964768},{"date":"2004-08-09","fuel":"gasoline","current_price":1.974,"yoy_price":1.6566666667,"absolute_change":0.3173333333,"percentage_change":19.1549295775},{"date":"2004-08-16","fuel":"gasoline","current_price":1.9690833333,"yoy_price":1.7179166667,"absolute_change":0.2511666667,"percentage_change":14.6204220228},{"date":"2004-08-23","fuel":"gasoline","current_price":1.9764166667,"yoy_price":1.8441666667,"absolute_change":0.13225,"percentage_change":7.171260732},{"date":"2004-08-30","fuel":"gasoline","current_price":1.9636666667,"yoy_price":1.8455,"absolute_change":0.1181666667,"percentage_change":6.4029621602},{"date":"2004-09-06","fuel":"gasoline","current_price":1.9471666667,"yoy_price":1.82,"absolute_change":0.1271666667,"percentage_change":6.9871794872},{"date":"2004-09-13","fuel":"gasoline","current_price":1.9415,"yoy_price":1.79925,"absolute_change":0.14225,"percentage_change":7.9060719744},{"date":"2004-09-20","fuel":"gasoline","current_price":1.9576666667,"yoy_price":1.749,"absolute_change":0.2086666667,"percentage_change":11.930627025},{"date":"2004-09-27","fuel":"gasoline","current_price":2.00625,"yoy_price":1.7005833333,"absolute_change":0.3056666667,"percentage_change":17.9742245308},{"date":"2004-10-04","fuel":"gasoline","current_price":2.03225,"yoy_price":1.68025,"absolute_change":0.352,"percentage_change":20.9492635025},{"date":"2004-10-11","fuel":"gasoline","current_price":2.09025,"yoy_price":1.6696666667,"absolute_change":0.4205833333,"percentage_change":25.1896586145},{"date":"2004-10-18","fuel":"gasoline","current_price":2.135,"yoy_price":1.6673333333,"absolute_change":0.4676666667,"percentage_change":28.0487804878},{"date":"2004-10-25","fuel":"gasoline","current_price":2.1330833333,"yoy_price":1.6398333333,"absolute_change":0.49325,"percentage_change":30.0792763492},{"date":"2004-11-01","fuel":"gasoline","current_price":2.1336666667,"yoy_price":1.6315833333,"absolute_change":0.5020833333,"percentage_change":30.7727667399},{"date":"2004-11-08","fuel":"gasoline","current_price":2.1045833333,"yoy_price":1.6018333333,"absolute_change":0.50275,"percentage_change":31.3859119759},{"date":"2004-11-15","fuel":"gasoline","current_price":2.0746666667,"yoy_price":1.5941666667,"absolute_change":0.4805,"percentage_change":30.1411395714},{"date":"2004-11-22","fuel":"gasoline","current_price":2.0511666667,"yoy_price":1.60675,"absolute_change":0.4444166667,"percentage_change":27.659353768},{"date":"2004-11-29","fuel":"gasoline","current_price":2.04525,"yoy_price":1.5871666667,"absolute_change":0.4580833333,"percentage_change":28.8617032448},{"date":"2004-12-06","fuel":"gasoline","current_price":2.0135833333,"yoy_price":1.5726666667,"absolute_change":0.4409166667,"percentage_change":28.0362441713},{"date":"2004-12-13","fuel":"gasoline","current_price":1.95375,"yoy_price":1.56125,"absolute_change":0.3925,"percentage_change":25.1401120897},{"date":"2004-12-20","fuel":"gasoline","current_price":1.918,"yoy_price":1.5781666667,"absolute_change":0.3398333333,"percentage_change":21.5334248601},{"date":"2004-12-27","fuel":"gasoline","current_price":1.8945833333,"yoy_price":1.5713333333,"absolute_change":0.32325,"percentage_change":20.5717013152},{"date":"2005-01-03","fuel":"gasoline","current_price":1.8795833333,"yoy_price":1.5993333333,"absolute_change":0.28025,"percentage_change":17.5229262193},{"date":"2005-01-10","fuel":"gasoline","current_price":1.8873333333,"yoy_price":1.6494166667,"absolute_change":0.2379166667,"percentage_change":14.4242914162},{"date":"2005-01-17","fuel":"gasoline","current_price":1.91075,"yoy_price":1.6829166667,"absolute_change":0.2278333333,"percentage_change":13.5380044565},{"date":"2005-01-24","fuel":"gasoline","current_price":1.9419166667,"yoy_price":1.711,"absolute_change":0.2309166667,"percentage_change":13.4960062342},{"date":"2005-01-31","fuel":"gasoline","current_price":1.999,"yoy_price":1.7094166667,"absolute_change":0.2895833333,"percentage_change":16.9404767708},{"date":"2005-02-07","fuel":"gasoline","current_price":1.9995,"yoy_price":1.7310833333,"absolute_change":0.2684166667,"percentage_change":15.5057045203},{"date":"2005-02-14","fuel":"gasoline","current_price":1.99025,"yoy_price":1.74075,"absolute_change":0.2495,"percentage_change":14.3329024846},{"date":"2005-02-21","fuel":"gasoline","current_price":1.9981666667,"yoy_price":1.7856666667,"absolute_change":0.2125,"percentage_change":11.9003173418},{"date":"2005-02-28","fuel":"gasoline","current_price":2.0178333333,"yoy_price":1.8166666667,"absolute_change":0.2011666667,"percentage_change":11.0733944954},{"date":"2005-03-07","fuel":"gasoline","current_price":2.0865,"yoy_price":1.8374166667,"absolute_change":0.2490833333,"percentage_change":13.5561703479},{"date":"2005-03-14","fuel":"gasoline","current_price":2.1434166667,"yoy_price":1.8249166667,"absolute_change":0.3185,"percentage_change":17.4528517284},{"date":"2005-03-21","fuel":"gasoline","current_price":2.1928333333,"yoy_price":1.8415,"absolute_change":0.3513333333,"percentage_change":19.0786496516},{"date":"2005-03-28","fuel":"gasoline","current_price":2.239,"yoy_price":1.8549166667,"absolute_change":0.3840833333,"percentage_change":20.7062311874},{"date":"2005-04-04","fuel":"gasoline","current_price":2.3041666667,"yoy_price":1.8768333333,"absolute_change":0.4273333333,"percentage_change":22.7688482373},{"date":"2005-04-11","fuel":"gasoline","current_price":2.3708333333,"yoy_price":1.8833333333,"absolute_change":0.4875,"percentage_change":25.8849557522},{"date":"2005-04-18","fuel":"gasoline","current_price":2.3345833333,"yoy_price":1.90625,"absolute_change":0.4283333333,"percentage_change":22.4699453552},{"date":"2005-04-25","fuel":"gasoline","current_price":2.3335,"yoy_price":1.9049166667,"absolute_change":0.4285833333,"percentage_change":22.4987969727},{"date":"2005-05-02","fuel":"gasoline","current_price":2.3328333333,"yoy_price":1.93375,"absolute_change":0.3990833333,"percentage_change":20.637793579},{"date":"2005-05-09","fuel":"gasoline","current_price":2.2903333333,"yoy_price":2.0290833333,"absolute_change":0.26125,"percentage_change":12.8752720851},{"date":"2005-05-16","fuel":"gasoline","current_price":2.26375,"yoy_price":2.1054166667,"absolute_change":0.1583333333,"percentage_change":7.5202849792},{"date":"2005-05-23","fuel":"gasoline","current_price":2.2278333333,"yoy_price":2.1555,"absolute_change":0.0723333333,"percentage_change":3.3557565917},{"date":"2005-05-30","fuel":"gasoline","current_price":2.1991666667,"yoy_price":2.1475833333,"absolute_change":0.0515833333,"percentage_change":2.401924644},{"date":"2005-06-06","fuel":"gasoline","current_price":2.21325,"yoy_price":2.1325,"absolute_change":0.08075,"percentage_change":3.7866354045},{"date":"2005-06-13","fuel":"gasoline","current_price":2.2250833333,"yoy_price":2.0908333333,"absolute_change":0.13425,"percentage_change":6.4208848147},{"date":"2005-06-20","fuel":"gasoline","current_price":2.2561666667,"yoy_price":2.04575,"absolute_change":0.2104166667,"percentage_change":10.2855513463},{"date":"2005-06-27","fuel":"gasoline","current_price":2.3065,"yoy_price":2.0275,"absolute_change":0.279,"percentage_change":13.7607891492},{"date":"2005-07-04","fuel":"gasoline","current_price":2.3208333333,"yoy_price":2.0013333333,"absolute_change":0.3195,"percentage_change":15.9643570953},{"date":"2005-07-11","fuel":"gasoline","current_price":2.4215,"yoy_price":2.0170833333,"absolute_change":0.4044166667,"percentage_change":20.0495765338},{"date":"2005-07-18","fuel":"gasoline","current_price":2.4158333333,"yoy_price":2.026,"absolute_change":0.3898333333,"percentage_change":19.241526818},{"date":"2005-07-25","fuel":"gasoline","current_price":2.394,"yoy_price":2.004,"absolute_change":0.39,"percentage_change":19.4610778443},{"date":"2005-08-01","fuel":"gasoline","current_price":2.3951666667,"yoy_price":1.9855,"absolute_change":0.4096666667,"percentage_change":20.632922018},{"date":"2005-08-08","fuel":"gasoline","current_price":2.4658333333,"yoy_price":1.974,"absolute_change":0.4918333333,"percentage_change":24.9155690645},{"date":"2005-08-15","fuel":"gasoline","current_price":2.6425,"yoy_price":1.9690833333,"absolute_change":0.6734166667,"percentage_change":34.1995006137},{"date":"2005-08-22","fuel":"gasoline","current_price":2.7038333333,"yoy_price":1.9764166667,"absolute_change":0.7274166667,"percentage_change":36.8048235443},{"date":"2005-08-29","fuel":"gasoline","current_price":2.7031666667,"yoy_price":1.9636666667,"absolute_change":0.7395,"percentage_change":37.6591410626},{"date":"2005-09-05","fuel":"gasoline","current_price":3.17175,"yoy_price":1.9471666667,"absolute_change":1.2245833333,"percentage_change":62.890524694},{"date":"2005-09-12","fuel":"gasoline","current_price":3.0609166667,"yoy_price":1.9415,"absolute_change":1.1194166667,"percentage_change":57.6573096403},{"date":"2005-09-19","fuel":"gasoline","current_price":2.90075,"yoy_price":1.9576666667,"absolute_change":0.9430833333,"percentage_change":48.1738464158},{"date":"2005-09-26","fuel":"gasoline","current_price":2.9080833333,"yoy_price":2.00625,"absolute_change":0.9018333333,"percentage_change":44.9511941848},{"date":"2005-10-03","fuel":"gasoline","current_price":3.0210833333,"yoy_price":2.03225,"absolute_change":0.9888333333,"percentage_change":48.6570713905},{"date":"2005-10-10","fuel":"gasoline","current_price":2.9484166667,"yoy_price":2.09025,"absolute_change":0.8581666667,"percentage_change":41.0556950923},{"date":"2005-10-17","fuel":"gasoline","current_price":2.832,"yoy_price":2.135,"absolute_change":0.697,"percentage_change":32.6463700234},{"date":"2005-10-24","fuel":"gasoline","current_price":2.71075,"yoy_price":2.1330833333,"absolute_change":0.5776666667,"percentage_change":27.0812985897},{"date":"2005-10-31","fuel":"gasoline","current_price":2.5878333333,"yoy_price":2.1336666667,"absolute_change":0.4541666667,"percentage_change":21.2857366037},{"date":"2005-11-07","fuel":"gasoline","current_price":2.4826666667,"yoy_price":2.1045833333,"absolute_change":0.3780833333,"percentage_change":17.9647594536},{"date":"2005-11-14","fuel":"gasoline","current_price":2.39925,"yoy_price":2.0746666667,"absolute_change":0.3245833333,"percentage_change":15.6450835476},{"date":"2005-11-21","fuel":"gasoline","current_price":2.3025833333,"yoy_price":2.0511666667,"absolute_change":0.2514166667,"percentage_change":12.2572519704},{"date":"2005-11-28","fuel":"gasoline","current_price":2.2535833333,"yoy_price":2.04525,"absolute_change":0.2083333333,"percentage_change":10.1862038056},{"date":"2005-12-05","fuel":"gasoline","current_price":2.24,"yoy_price":2.0135833333,"absolute_change":0.2264166667,"percentage_change":11.2444646774},{"date":"2005-12-12","fuel":"gasoline","current_price":2.2729166667,"yoy_price":1.95375,"absolute_change":0.3191666667,"percentage_change":16.3361057795},{"date":"2005-12-19","fuel":"gasoline","current_price":2.2985833333,"yoy_price":1.918,"absolute_change":0.3805833333,"percentage_change":19.8427181091},{"date":"2005-12-26","fuel":"gasoline","current_price":2.2854166667,"yoy_price":1.8945833333,"absolute_change":0.3908333333,"percentage_change":20.6289861447},{"date":"2006-01-02","fuel":"gasoline","current_price":2.32275,"yoy_price":1.8795833333,"absolute_change":0.4431666667,"percentage_change":23.5779206384},{"date":"2006-01-09","fuel":"gasoline","current_price":2.4150833333,"yoy_price":1.8873333333,"absolute_change":0.52775,"percentage_change":27.9627340162},{"date":"2006-01-16","fuel":"gasoline","current_price":2.4175,"yoy_price":1.91075,"absolute_change":0.50675,"percentage_change":26.5209996075},{"date":"2006-01-23","fuel":"gasoline","current_price":2.4330833333,"yoy_price":1.9419166667,"absolute_change":0.4911666667,"percentage_change":25.292880745},{"date":"2006-01-30","fuel":"gasoline","current_price":2.4538333333,"yoy_price":1.999,"absolute_change":0.4548333333,"percentage_change":22.7530431883},{"date":"2006-02-06","fuel":"gasoline","current_price":2.4425,"yoy_price":1.9995,"absolute_change":0.443,"percentage_change":22.1555388847},{"date":"2006-02-13","fuel":"gasoline","current_price":2.3883333333,"yoy_price":1.99025,"absolute_change":0.3980833333,"percentage_change":20.0016748315},{"date":"2006-02-20","fuel":"gasoline","current_price":2.34125,"yoy_price":1.9981666667,"absolute_change":0.3430833333,"percentage_change":17.1699057469},{"date":"2006-02-27","fuel":"gasoline","current_price":2.3454166667,"yoy_price":2.0178333333,"absolute_change":0.3275833333,"percentage_change":16.2344098455},{"date":"2006-03-06","fuel":"gasoline","current_price":2.4161666667,"yoy_price":2.0865,"absolute_change":0.3296666667,"percentage_change":15.7999840243},{"date":"2006-03-13","fuel":"gasoline","current_price":2.4521666667,"yoy_price":2.1434166667,"absolute_change":0.30875,"percentage_change":14.4045721395},{"date":"2006-03-20","fuel":"gasoline","current_price":2.5919166667,"yoy_price":2.1928333333,"absolute_change":0.3990833333,"percentage_change":18.1994375618},{"date":"2006-03-27","fuel":"gasoline","current_price":2.58975,"yoy_price":2.239,"absolute_change":0.35075,"percentage_change":15.6654756588},{"date":"2006-04-03","fuel":"gasoline","current_price":2.679,"yoy_price":2.3041666667,"absolute_change":0.3748333333,"percentage_change":16.2676311031},{"date":"2006-04-10","fuel":"gasoline","current_price":2.7751666667,"yoy_price":2.3708333333,"absolute_change":0.4043333333,"percentage_change":17.0544815466},{"date":"2006-04-17","fuel":"gasoline","current_price":2.87575,"yoy_price":2.3345833333,"absolute_change":0.5411666667,"percentage_change":23.1804390505},{"date":"2006-04-24","fuel":"gasoline","current_price":3.01425,"yoy_price":2.3335,"absolute_change":0.68075,"percentage_change":29.1729162203},{"date":"2006-05-01","fuel":"gasoline","current_price":3.0286666667,"yoy_price":2.3328333333,"absolute_change":0.6958333333,"percentage_change":29.8278202472},{"date":"2006-05-08","fuel":"gasoline","current_price":3.026,"yoy_price":2.2903333333,"absolute_change":0.7356666667,"percentage_change":32.1205064765},{"date":"2006-05-15","fuel":"gasoline","current_price":3.0613333333,"yoy_price":2.26375,"absolute_change":0.7975833333,"percentage_change":35.2328363703},{"date":"2006-05-22","fuel":"gasoline","current_price":3.0135833333,"yoy_price":2.2278333333,"absolute_change":0.78575,"percentage_change":35.2696940226},{"date":"2006-05-29","fuel":"gasoline","current_price":2.98525,"yoy_price":2.1991666667,"absolute_change":0.7860833333,"percentage_change":35.7446002274},{"date":"2006-06-05","fuel":"gasoline","current_price":3.0086666667,"yoy_price":2.21325,"absolute_change":0.7954166667,"percentage_change":35.9388531195},{"date":"2006-06-12","fuel":"gasoline","current_price":3.0198333333,"yoy_price":2.2250833333,"absolute_change":0.79475,"percentage_change":35.7177633796},{"date":"2006-06-19","fuel":"gasoline","current_price":2.9880833333,"yoy_price":2.2561666667,"absolute_change":0.7319166667,"percentage_change":32.4407180321},{"date":"2006-06-26","fuel":"gasoline","current_price":2.9829166667,"yoy_price":2.3065,"absolute_change":0.6764166667,"percentage_change":29.326540935},{"date":"2006-07-03","fuel":"gasoline","current_price":3.0421666667,"yoy_price":2.3208333333,"absolute_change":0.7213333333,"percentage_change":31.0807899461},{"date":"2006-07-10","fuel":"gasoline","current_price":3.0805833333,"yoy_price":2.4215,"absolute_change":0.6590833333,"percentage_change":27.2179778374},{"date":"2006-07-17","fuel":"gasoline","current_price":3.09625,"yoy_price":2.4158333333,"absolute_change":0.6804166667,"percentage_change":28.1648844429},{"date":"2006-07-24","fuel":"gasoline","current_price":3.10925,"yoy_price":2.394,"absolute_change":0.71525,"percentage_change":29.8767752715},{"date":"2006-07-31","fuel":"gasoline","current_price":3.1105833333,"yoy_price":2.3951666667,"absolute_change":0.7154166667,"percentage_change":29.8691809895},{"date":"2006-08-07","fuel":"gasoline","current_price":3.1380833333,"yoy_price":2.4658333333,"absolute_change":0.67225,"percentage_change":27.2625887124},{"date":"2006-08-14","fuel":"gasoline","current_price":3.1065833333,"yoy_price":2.6425,"absolute_change":0.4640833333,"percentage_change":17.5622831914},{"date":"2006-08-21","fuel":"gasoline","current_price":3.0330833333,"yoy_price":2.7038333333,"absolute_change":0.32925,"percentage_change":12.1771558898},{"date":"2006-08-28","fuel":"gasoline","current_price":2.9561666667,"yoy_price":2.7031666667,"absolute_change":0.253,"percentage_change":9.3593933041},{"date":"2006-09-04","fuel":"gasoline","current_price":2.8425,"yoy_price":3.17175,"absolute_change":-0.32925,"percentage_change":-10.3807046583},{"date":"2006-09-11","fuel":"gasoline","current_price":2.73825,"yoy_price":3.0609166667,"absolute_change":-0.3226666667,"percentage_change":-10.5415044513},{"date":"2006-09-18","fuel":"gasoline","current_price":2.6185,"yoy_price":2.90075,"absolute_change":-0.28225,"percentage_change":-9.7302421787},{"date":"2006-09-25","fuel":"gasoline","current_price":2.4983333333,"yoy_price":2.9080833333,"absolute_change":-0.40975,"percentage_change":-14.0900363928},{"date":"2006-10-02","fuel":"gasoline","current_price":2.4245,"yoy_price":3.0210833333,"absolute_change":-0.5965833333,"percentage_change":-19.7473312553},{"date":"2006-10-09","fuel":"gasoline","current_price":2.37075,"yoy_price":2.9484166667,"absolute_change":-0.5776666667,"percentage_change":-19.5924366185},{"date":"2006-10-16","fuel":"gasoline","current_price":2.3316666667,"yoy_price":2.832,"absolute_change":-0.5003333333,"percentage_change":-17.6671374765},{"date":"2006-10-23","fuel":"gasoline","current_price":2.3078333333,"yoy_price":2.71075,"absolute_change":-0.4029166667,"percentage_change":-14.8636601187},{"date":"2006-10-30","fuel":"gasoline","current_price":2.3133333333,"yoy_price":2.5878333333,"absolute_change":-0.2745,"percentage_change":-10.6073291685},{"date":"2006-11-06","fuel":"gasoline","current_price":2.2950833333,"yoy_price":2.4826666667,"absolute_change":-0.1875833333,"percentage_change":-7.5557196563},{"date":"2006-11-13","fuel":"gasoline","current_price":2.3283333333,"yoy_price":2.39925,"absolute_change":-0.0709166667,"percentage_change":-2.9557847939},{"date":"2006-11-20","fuel":"gasoline","current_price":2.3375833333,"yoy_price":2.3025833333,"absolute_change":0.035,"percentage_change":1.5200318483},{"date":"2006-11-27","fuel":"gasoline","current_price":2.3456666667,"yoy_price":2.2535833333,"absolute_change":0.0920833333,"percentage_change":4.0860851237},{"date":"2006-12-04","fuel":"gasoline","current_price":2.3929166667,"yoy_price":2.24,"absolute_change":0.1529166667,"percentage_change":6.8266369048},{"date":"2006-12-11","fuel":"gasoline","current_price":2.39325,"yoy_price":2.2729166667,"absolute_change":0.1203333333,"percentage_change":5.2942254812},{"date":"2006-12-18","fuel":"gasoline","current_price":2.4204166667,"yoy_price":2.2985833333,"absolute_change":0.1218333333,"percentage_change":5.3003661676},{"date":"2006-12-25","fuel":"gasoline","current_price":2.4443333333,"yoy_price":2.2854166667,"absolute_change":0.1589166667,"percentage_change":6.9535095716},{"date":"2007-01-01","fuel":"gasoline","current_price":2.4400833333,"yoy_price":2.32275,"absolute_change":0.1173333333,"percentage_change":5.0514835145},{"date":"2007-01-08","fuel":"gasoline","current_price":2.4170833333,"yoy_price":2.4150833333,"absolute_change":0.002,"percentage_change":0.0828128774},{"date":"2007-01-15","fuel":"gasoline","current_price":2.3470833333,"yoy_price":2.4175,"absolute_change":-0.0704166667,"percentage_change":-2.9127886936},{"date":"2007-01-22","fuel":"gasoline","current_price":2.285,"yoy_price":2.4330833333,"absolute_change":-0.1480833333,"percentage_change":-6.0862417372},{"date":"2007-01-29","fuel":"gasoline","current_price":2.2755,"yoy_price":2.4538333333,"absolute_change":-0.1783333333,"percentage_change":-7.2675405828},{"date":"2007-02-05","fuel":"gasoline","current_price":2.296,"yoy_price":2.4425,"absolute_change":-0.1465,"percentage_change":-5.9979529171},{"date":"2007-02-12","fuel":"gasoline","current_price":2.3460833333,"yoy_price":2.3883333333,"absolute_change":-0.04225,"percentage_change":-1.7690160502},{"date":"2007-02-19","fuel":"gasoline","current_price":2.3995833333,"yoy_price":2.34125,"absolute_change":0.0583333333,"percentage_change":2.4915465385},{"date":"2007-02-26","fuel":"gasoline","current_price":2.4864166667,"yoy_price":2.3454166667,"absolute_change":0.141,"percentage_change":6.0117249956},{"date":"2007-03-05","fuel":"gasoline","current_price":2.6093333333,"yoy_price":2.4161666667,"absolute_change":0.1931666667,"percentage_change":7.994757536},{"date":"2007-03-12","fuel":"gasoline","current_price":2.6698333333,"yoy_price":2.4521666667,"absolute_change":0.2176666667,"percentage_change":8.8765037722},{"date":"2007-03-19","fuel":"gasoline","current_price":2.6906666667,"yoy_price":2.5919166667,"absolute_change":0.09875,"percentage_change":3.8099218725},{"date":"2007-03-26","fuel":"gasoline","current_price":2.7228333333,"yoy_price":2.58975,"absolute_change":0.1330833333,"percentage_change":5.1388486662},{"date":"2007-04-02","fuel":"gasoline","current_price":2.8213333333,"yoy_price":2.679,"absolute_change":0.1423333333,"percentage_change":5.3129277093},{"date":"2007-04-09","fuel":"gasoline","current_price":2.9113333333,"yoy_price":2.7751666667,"absolute_change":0.1361666667,"percentage_change":4.9066122155},{"date":"2007-04-16","fuel":"gasoline","current_price":2.9845833333,"yoy_price":2.87575,"absolute_change":0.1088333333,"percentage_change":3.7845199803},{"date":"2007-04-23","fuel":"gasoline","current_price":2.9815833333,"yoy_price":3.01425,"absolute_change":-0.0326666667,"percentage_change":-1.0837411186},{"date":"2007-04-30","fuel":"gasoline","current_price":3.0775833333,"yoy_price":3.0286666667,"absolute_change":0.0489166667,"percentage_change":1.615122166},{"date":"2007-05-07","fuel":"gasoline","current_price":3.1566666667,"yoy_price":3.026,"absolute_change":0.1306666667,"percentage_change":4.3181317471},{"date":"2007-05-14","fuel":"gasoline","current_price":3.1949166667,"yoy_price":3.0613333333,"absolute_change":0.1335833333,"percentage_change":4.3635670732},{"date":"2007-05-21","fuel":"gasoline","current_price":3.2998333333,"yoy_price":3.0135833333,"absolute_change":0.28625,"percentage_change":9.4986588502},{"date":"2007-05-28","fuel":"gasoline","current_price":3.2950833333,"yoy_price":2.98525,"absolute_change":0.3098333333,"percentage_change":10.3788069118},{"date":"2007-06-04","fuel":"gasoline","current_price":3.2505,"yoy_price":3.0086666667,"absolute_change":0.2418333333,"percentage_change":8.0378905384},{"date":"2007-06-11","fuel":"gasoline","current_price":3.17925,"yoy_price":3.0198333333,"absolute_change":0.1594166667,"percentage_change":5.2789889067},{"date":"2007-06-18","fuel":"gasoline","current_price":3.1141666667,"yoy_price":2.9880833333,"absolute_change":0.1260833333,"percentage_change":4.2195387233},{"date":"2007-06-25","fuel":"gasoline","current_price":3.0856666667,"yoy_price":2.9829166667,"absolute_change":0.10275,"percentage_change":3.4446151697},{"date":"2007-07-02","fuel":"gasoline","current_price":3.0596666667,"yoy_price":3.0421666667,"absolute_change":0.0175,"percentage_change":0.5752479045},{"date":"2007-07-09","fuel":"gasoline","current_price":3.0726666667,"yoy_price":3.0805833333,"absolute_change":-0.0079166667,"percentage_change":-0.2569859605},{"date":"2007-07-16","fuel":"gasoline","current_price":3.1346666667,"yoy_price":3.09625,"absolute_change":0.0384166667,"percentage_change":1.2407482169},{"date":"2007-07-23","fuel":"gasoline","current_price":3.0573333333,"yoy_price":3.10925,"absolute_change":-0.0519166667,"percentage_change":-1.6697488676},{"date":"2007-07-30","fuel":"gasoline","current_price":2.9830833333,"yoy_price":3.1105833333,"absolute_change":-0.1275,"percentage_change":-4.0989096365},{"date":"2007-08-06","fuel":"gasoline","current_price":2.9445,"yoy_price":3.1380833333,"absolute_change":-0.1935833333,"percentage_change":-6.1688397907},{"date":"2007-08-13","fuel":"gasoline","current_price":2.8753333333,"yoy_price":3.1065833333,"absolute_change":-0.23125,"percentage_change":-7.4438692025},{"date":"2007-08-20","fuel":"gasoline","current_price":2.8784166667,"yoy_price":3.0330833333,"absolute_change":-0.1546666667,"percentage_change":-5.0993213726},{"date":"2007-08-27","fuel":"gasoline","current_price":2.8395833333,"yoy_price":2.9561666667,"absolute_change":-0.1165833333,"percentage_change":-3.9437334386},{"date":"2007-09-03","fuel":"gasoline","current_price":2.8755833333,"yoy_price":2.8425,"absolute_change":0.0330833333,"percentage_change":1.1638815597},{"date":"2007-09-10","fuel":"gasoline","current_price":2.8976666667,"yoy_price":2.73825,"absolute_change":0.1594166667,"percentage_change":5.8218448522},{"date":"2007-09-17","fuel":"gasoline","current_price":2.8786666667,"yoy_price":2.6185,"absolute_change":0.2601666667,"percentage_change":9.9357138311},{"date":"2007-09-24","fuel":"gasoline","current_price":2.9046666667,"yoy_price":2.4983333333,"absolute_change":0.4063333333,"percentage_change":16.2641761174},{"date":"2007-10-01","fuel":"gasoline","current_price":2.8880833333,"yoy_price":2.4245,"absolute_change":0.4635833333,"percentage_change":19.120780917},{"date":"2007-10-08","fuel":"gasoline","current_price":2.87325,"yoy_price":2.37075,"absolute_change":0.5025,"percentage_change":21.1958241063},{"date":"2007-10-15","fuel":"gasoline","current_price":2.86825,"yoy_price":2.3316666667,"absolute_change":0.5365833333,"percentage_change":23.0128663331},{"date":"2007-10-22","fuel":"gasoline","current_price":2.9268333333,"yoy_price":2.3078333333,"absolute_change":0.619,"percentage_change":26.8216942298},{"date":"2007-10-29","fuel":"gasoline","current_price":2.97275,"yoy_price":2.3133333333,"absolute_change":0.6594166667,"percentage_change":28.5050432277},{"date":"2007-11-05","fuel":"gasoline","current_price":3.1065,"yoy_price":2.2950833333,"absolute_change":0.8114166667,"percentage_change":35.354562289},{"date":"2007-11-12","fuel":"gasoline","current_price":3.2076666667,"yoy_price":2.3283333333,"absolute_change":0.8793333333,"percentage_change":37.766642806},{"date":"2007-11-19","fuel":"gasoline","current_price":3.2023333333,"yoy_price":2.3375833333,"absolute_change":0.86475,"percentage_change":36.993333571},{"date":"2007-11-26","fuel":"gasoline","current_price":3.2025833333,"yoy_price":2.3456666667,"absolute_change":0.8569166667,"percentage_change":36.5319027995},{"date":"2007-12-03","fuel":"gasoline","current_price":3.17275,"yoy_price":2.3929166667,"absolute_change":0.7798333333,"percentage_change":32.5892390737},{"date":"2007-12-10","fuel":"gasoline","current_price":3.11825,"yoy_price":2.39325,"absolute_change":0.725,"percentage_change":30.2935338974},{"date":"2007-12-17","fuel":"gasoline","current_price":3.1125,"yoy_price":2.4204166667,"absolute_change":0.6920833333,"percentage_change":28.5935617146},{"date":"2007-12-24","fuel":"gasoline","current_price":3.0951666667,"yoy_price":2.4443333333,"absolute_change":0.6508333333,"percentage_change":26.6262102823},{"date":"2007-12-31","fuel":"gasoline","current_price":3.1611666667,"yoy_price":2.4400833333,"absolute_change":0.7210833333,"percentage_change":29.5515863529},{"date":"2008-01-07","fuel":"gasoline","current_price":3.214,"yoy_price":2.4170833333,"absolute_change":0.7969166667,"percentage_change":32.9701775556},{"date":"2008-01-14","fuel":"gasoline","current_price":3.1775833333,"yoy_price":2.3470833333,"absolute_change":0.8305,"percentage_change":35.3843422688},{"date":"2008-01-21","fuel":"gasoline","current_price":3.1298333333,"yoy_price":2.285,"absolute_change":0.8448333333,"percentage_change":36.9730123997},{"date":"2008-01-28","fuel":"gasoline","current_price":3.0889166667,"yoy_price":2.2755,"absolute_change":0.8134166667,"percentage_change":35.7467223321},{"date":"2008-02-04","fuel":"gasoline","current_price":3.08375,"yoy_price":2.296,"absolute_change":0.78775,"percentage_change":34.3096689895},{"date":"2008-02-11","fuel":"gasoline","current_price":3.0645,"yoy_price":2.3460833333,"absolute_change":0.7184166667,"percentage_change":30.6219585835},{"date":"2008-02-18","fuel":"gasoline","current_price":3.1416666667,"yoy_price":2.3995833333,"absolute_change":0.7420833333,"percentage_change":30.9255079007},{"date":"2008-02-25","fuel":"gasoline","current_price":3.2320833333,"yoy_price":2.4864166667,"absolute_change":0.7456666667,"percentage_change":29.9896102155},{"date":"2008-03-03","fuel":"gasoline","current_price":3.2688333333,"yoy_price":2.6093333333,"absolute_change":0.6595,"percentage_change":25.2746550843},{"date":"2008-03-10","fuel":"gasoline","current_price":3.3283333333,"yoy_price":2.6698333333,"absolute_change":0.6585,"percentage_change":24.6644609526},{"date":"2008-03-17","fuel":"gasoline","current_price":3.3881666667,"yoy_price":2.6906666667,"absolute_change":0.6975,"percentage_change":25.9229435084},{"date":"2008-03-24","fuel":"gasoline","current_price":3.3705,"yoy_price":2.7228333333,"absolute_change":0.6476666667,"percentage_change":23.7864969089},{"date":"2008-03-31","fuel":"gasoline","current_price":3.3976666667,"yoy_price":2.8213333333,"absolute_change":0.5763333333,"percentage_change":20.4276937618},{"date":"2008-04-07","fuel":"gasoline","current_price":3.4386666667,"yoy_price":2.9113333333,"absolute_change":0.5273333333,"percentage_change":18.1131211358},{"date":"2008-04-14","fuel":"gasoline","current_price":3.4974166667,"yoy_price":2.9845833333,"absolute_change":0.5128333333,"percentage_change":17.1827446601},{"date":"2008-04-21","fuel":"gasoline","current_price":3.618,"yoy_price":2.9815833333,"absolute_change":0.6364166667,"percentage_change":21.3449229995},{"date":"2008-04-28","fuel":"gasoline","current_price":3.7129166667,"yoy_price":3.0775833333,"absolute_change":0.6353333333,"percentage_change":20.6439034957},{"date":"2008-05-05","fuel":"gasoline","current_price":3.72475,"yoy_price":3.1566666667,"absolute_change":0.5680833333,"percentage_change":17.9963041183},{"date":"2008-05-12","fuel":"gasoline","current_price":3.8268333333,"yoy_price":3.1949166667,"absolute_change":0.6319166667,"percentage_change":19.7788153056},{"date":"2008-05-19","fuel":"gasoline","current_price":3.8965,"yoy_price":3.2998333333,"absolute_change":0.5966666667,"percentage_change":18.0817212991},{"date":"2008-05-26","fuel":"gasoline","current_price":4.0405833333,"yoy_price":3.2950833333,"absolute_change":0.7455,"percentage_change":22.6246174856},{"date":"2008-06-02","fuel":"gasoline","current_price":4.0870833333,"yoy_price":3.2505,"absolute_change":0.8365833333,"percentage_change":25.7370660924},{"date":"2008-06-09","fuel":"gasoline","current_price":4.1576666667,"yoy_price":3.17925,"absolute_change":0.9784166667,"percentage_change":30.7750779796},{"date":"2008-06-16","fuel":"gasoline","current_price":4.2085,"yoy_price":3.1141666667,"absolute_change":1.0943333333,"percentage_change":35.1404870217},{"date":"2008-06-23","fuel":"gasoline","current_price":4.2068333333,"yoy_price":3.0856666667,"absolute_change":1.1211666667,"percentage_change":36.3346656584},{"date":"2008-06-30","fuel":"gasoline","current_price":4.2181666667,"yoy_price":3.0596666667,"absolute_change":1.1585,"percentage_change":37.8636016995},{"date":"2008-07-07","fuel":"gasoline","current_price":4.2355833333,"yoy_price":3.0726666667,"absolute_change":1.1629166667,"percentage_change":37.8471468865},{"date":"2008-07-14","fuel":"gasoline","current_price":4.2320833333,"yoy_price":3.1346666667,"absolute_change":1.0974166667,"percentage_change":35.0090387069},{"date":"2008-07-21","fuel":"gasoline","current_price":4.1891666667,"yoy_price":3.0573333333,"absolute_change":1.1318333333,"percentage_change":37.0202791103},{"date":"2008-07-28","fuel":"gasoline","current_price":4.0839166667,"yoy_price":2.9830833333,"absolute_change":1.1008333333,"percentage_change":36.9025337319},{"date":"2008-08-04","fuel":"gasoline","current_price":4.0065833333,"yoy_price":2.9445,"absolute_change":1.0620833333,"percentage_change":36.0700741495},{"date":"2008-08-11","fuel":"gasoline","current_price":3.9318333333,"yoy_price":2.8753333333,"absolute_change":1.0565,"percentage_change":36.7435659634},{"date":"2008-08-18","fuel":"gasoline","current_price":3.8578333333,"yoy_price":2.8784166667,"absolute_change":0.9794166667,"percentage_change":34.026229698},{"date":"2008-08-25","fuel":"gasoline","current_price":3.7986666667,"yoy_price":2.8395833333,"absolute_change":0.9590833333,"percentage_change":33.7754952311},{"date":"2008-09-01","fuel":"gasoline","current_price":3.7900833333,"yoy_price":2.8755833333,"absolute_change":0.9145,"percentage_change":31.8022430232},{"date":"2008-09-08","fuel":"gasoline","current_price":3.7563333333,"yoy_price":2.8976666667,"absolute_change":0.8586666667,"percentage_change":29.6330380766},{"date":"2008-09-15","fuel":"gasoline","current_price":3.9248333333,"yoy_price":2.8786666667,"absolute_change":1.0461666667,"percentage_change":36.3420565076},{"date":"2008-09-22","fuel":"gasoline","current_price":3.81875,"yoy_price":2.9046666667,"absolute_change":0.9140833333,"percentage_change":31.469474409},{"date":"2008-09-29","fuel":"gasoline","current_price":3.73675,"yoy_price":2.8880833333,"absolute_change":0.8486666667,"percentage_change":29.3851170038},{"date":"2008-10-06","fuel":"gasoline","current_price":3.598,"yoy_price":2.87325,"absolute_change":0.72475,"percentage_change":25.2240494214},{"date":"2008-10-13","fuel":"gasoline","current_price":3.2870833333,"yoy_price":2.86825,"absolute_change":0.4188333333,"percentage_change":14.6023998373},{"date":"2008-10-20","fuel":"gasoline","current_price":3.0535,"yoy_price":2.9268333333,"absolute_change":0.1266666667,"percentage_change":4.327771767},{"date":"2008-10-27","fuel":"gasoline","current_price":2.801,"yoy_price":2.97275,"absolute_change":-0.17175,"percentage_change":-5.7774787655},{"date":"2008-11-03","fuel":"gasoline","current_price":2.5434166667,"yoy_price":3.1065,"absolute_change":-0.5630833333,"percentage_change":-18.1259724234},{"date":"2008-11-10","fuel":"gasoline","current_price":2.3621666667,"yoy_price":3.2076666667,"absolute_change":-0.8455,"percentage_change":-26.3587238907},{"date":"2008-11-17","fuel":"gasoline","current_price":2.2063333333,"yoy_price":3.2023333333,"absolute_change":-0.996,"percentage_change":-31.1023212241},{"date":"2008-11-24","fuel":"gasoline","current_price":2.0235,"yoy_price":3.2025833333,"absolute_change":-1.1790833333,"percentage_change":-36.8166324061},{"date":"2008-12-01","fuel":"gasoline","current_price":1.9355833333,"yoy_price":3.17275,"absolute_change":-1.2371666667,"percentage_change":-38.9935124629},{"date":"2008-12-08","fuel":"gasoline","current_price":1.8225833333,"yoy_price":3.11825,"absolute_change":-1.2956666667,"percentage_change":-41.5510836741},{"date":"2008-12-15","fuel":"gasoline","current_price":1.7749166667,"yoy_price":3.1125,"absolute_change":-1.3375833333,"percentage_change":-42.9745649264},{"date":"2008-12-22","fuel":"gasoline","current_price":1.7714166667,"yoy_price":3.0951666667,"absolute_change":-1.32375,"percentage_change":-42.768294653},{"date":"2008-12-29","fuel":"gasoline","current_price":1.7331666667,"yoy_price":3.1611666667,"absolute_change":-1.428,"percentage_change":-45.1731955502},{"date":"2009-01-05","fuel":"gasoline","current_price":1.7925,"yoy_price":3.214,"absolute_change":-1.4215,"percentage_change":-44.2283758556},{"date":"2009-01-12","fuel":"gasoline","current_price":1.8889166667,"yoy_price":3.1775833333,"absolute_change":-1.2886666667,"percentage_change":-40.5549290603},{"date":"2009-01-19","fuel":"gasoline","current_price":1.9520833333,"yoy_price":3.1298333333,"absolute_change":-1.17775,"percentage_change":-37.6297992438},{"date":"2009-01-26","fuel":"gasoline","current_price":1.9475833333,"yoy_price":3.0889166667,"absolute_change":-1.1413333333,"percentage_change":-36.9493080098},{"date":"2009-02-02","fuel":"gasoline","current_price":2.0001666667,"yoy_price":3.08375,"absolute_change":-1.0835833333,"percentage_change":-35.138494798},{"date":"2009-02-09","fuel":"gasoline","current_price":2.0380833333,"yoy_price":3.0645,"absolute_change":-1.0264166667,"percentage_change":-33.4937727742},{"date":"2009-02-16","fuel":"gasoline","current_price":2.0774166667,"yoy_price":3.1416666667,"absolute_change":-1.06425,"percentage_change":-33.875331565},{"date":"2009-02-23","fuel":"gasoline","current_price":2.029,"yoy_price":3.2320833333,"absolute_change":-1.2030833333,"percentage_change":-37.2231532809},{"date":"2009-03-02","fuel":"gasoline","current_price":2.04775,"yoy_price":3.2688333333,"absolute_change":-1.2210833333,"percentage_change":-37.3553255494},{"date":"2009-03-09","fuel":"gasoline","current_price":2.0509166667,"yoy_price":3.3283333333,"absolute_change":-1.2774166667,"percentage_change":-38.3800701052},{"date":"2009-03-16","fuel":"gasoline","current_price":2.0240833333,"yoy_price":3.3881666667,"absolute_change":-1.3640833333,"percentage_change":-40.260219391},{"date":"2009-03-23","fuel":"gasoline","current_price":2.0690833333,"yoy_price":3.3705,"absolute_change":-1.3014166667,"percentage_change":-38.6119764624},{"date":"2009-03-30","fuel":"gasoline","current_price":2.1516666667,"yoy_price":3.3976666667,"absolute_change":-1.246,"percentage_change":-36.6722260375},{"date":"2009-04-06","fuel":"gasoline","current_price":2.14875,"yoy_price":3.4386666667,"absolute_change":-1.2899166667,"percentage_change":-37.5121170997},{"date":"2009-04-13","fuel":"gasoline","current_price":2.1625833333,"yoy_price":3.4974166667,"absolute_change":-1.3348333333,"percentage_change":-38.166265577},{"date":"2009-04-20","fuel":"gasoline","current_price":2.1716666667,"yoy_price":3.618,"absolute_change":-1.4463333333,"percentage_change":-39.9760456974},{"date":"2009-04-27","fuel":"gasoline","current_price":2.1639166667,"yoy_price":3.7129166667,"absolute_change":-1.549,"percentage_change":-41.7192234317},{"date":"2009-05-04","fuel":"gasoline","current_price":2.1895,"yoy_price":3.72475,"absolute_change":-1.53525,"percentage_change":-41.2175313779},{"date":"2009-05-11","fuel":"gasoline","current_price":2.3448333333,"yoy_price":3.8268333333,"absolute_change":-1.482,"percentage_change":-38.7265363007},{"date":"2009-05-18","fuel":"gasoline","current_price":2.418,"yoy_price":3.8965,"absolute_change":-1.4785,"percentage_change":-37.9443089953},{"date":"2009-05-25","fuel":"gasoline","current_price":2.5395,"yoy_price":4.0405833333,"absolute_change":-1.5010833333,"percentage_change":-37.1501639615},{"date":"2009-06-01","fuel":"gasoline","current_price":2.625,"yoy_price":4.0870833333,"absolute_change":-1.4620833333,"percentage_change":-35.7732694464},{"date":"2009-06-08","fuel":"gasoline","current_price":2.727,"yoy_price":4.1576666667,"absolute_change":-1.4306666667,"percentage_change":-34.4103263048},{"date":"2009-06-15","fuel":"gasoline","current_price":2.7804166667,"yoy_price":4.2085,"absolute_change":-1.4280833333,"percentage_change":-33.9333095719},{"date":"2009-06-22","fuel":"gasoline","current_price":2.8056666667,"yoy_price":4.2068333333,"absolute_change":-1.4011666667,"percentage_change":-33.3069212789},{"date":"2009-06-29","fuel":"gasoline","current_price":2.7625833333,"yoy_price":4.2181666667,"absolute_change":-1.4555833333,"percentage_change":-34.5074874551},{"date":"2009-07-06","fuel":"gasoline","current_price":2.7340833333,"yoy_price":4.2355833333,"absolute_change":-1.5015,"percentage_change":-35.4496625809},{"date":"2009-07-13","fuel":"gasoline","current_price":2.6543333333,"yoy_price":4.2320833333,"absolute_change":-1.57775,"percentage_change":-37.280693118},{"date":"2009-07-20","fuel":"gasoline","current_price":2.5905833333,"yoy_price":4.1891666667,"absolute_change":-1.5985833333,"percentage_change":-38.1599363437},{"date":"2009-07-27","fuel":"gasoline","current_price":2.6231666667,"yoy_price":4.0839166667,"absolute_change":-1.46075,"percentage_change":-35.7683596221},{"date":"2009-08-03","fuel":"gasoline","current_price":2.6755833333,"yoy_price":4.0065833333,"absolute_change":-1.331,"percentage_change":-33.220324882},{"date":"2009-08-10","fuel":"gasoline","current_price":2.76725,"yoy_price":3.9318333333,"absolute_change":-1.1645833333,"percentage_change":-29.6193463609},{"date":"2009-08-17","fuel":"gasoline","current_price":2.7614166667,"yoy_price":3.8578333333,"absolute_change":-1.0964166667,"percentage_change":-28.4205296583},{"date":"2009-08-24","fuel":"gasoline","current_price":2.75225,"yoy_price":3.7986666667,"absolute_change":-1.0464166667,"percentage_change":-27.5469462969},{"date":"2009-08-31","fuel":"gasoline","current_price":2.7399166667,"yoy_price":3.7900833333,"absolute_change":-1.0501666667,"percentage_change":-27.7082737847},{"date":"2009-09-07","fuel":"gasoline","current_price":2.7181666667,"yoy_price":3.7563333333,"absolute_change":-1.0381666667,"percentage_change":-27.6377673263},{"date":"2009-09-14","fuel":"gasoline","current_price":2.7104166667,"yoy_price":3.9248333333,"absolute_change":-1.2144166667,"percentage_change":-30.9418658966},{"date":"2009-09-21","fuel":"gasoline","current_price":2.6855833333,"yoy_price":3.81875,"absolute_change":-1.1331666667,"percentage_change":-29.6737588652},{"date":"2009-09-28","fuel":"gasoline","current_price":2.6331666667,"yoy_price":3.73675,"absolute_change":-1.1035833333,"percentage_change":-29.5332396691},{"date":"2009-10-05","fuel":"gasoline","current_price":2.6019166667,"yoy_price":3.598,"absolute_change":-0.9960833333,"percentage_change":-27.6843616824},{"date":"2009-10-12","fuel":"gasoline","current_price":2.6148333333,"yoy_price":3.2870833333,"absolute_change":-0.67225,"percentage_change":-20.4512612498},{"date":"2009-10-19","fuel":"gasoline","current_price":2.6908333333,"yoy_price":3.0535,"absolute_change":-0.3626666667,"percentage_change":-11.8770809454},{"date":"2009-10-26","fuel":"gasoline","current_price":2.7878333333,"yoy_price":2.801,"absolute_change":-0.0131666667,"percentage_change":-0.470070213},{"date":"2009-11-02","fuel":"gasoline","current_price":2.80825,"yoy_price":2.5434166667,"absolute_change":0.2648333333,"percentage_change":10.4125028669},{"date":"2009-11-09","fuel":"gasoline","current_price":2.78425,"yoy_price":2.3621666667,"absolute_change":0.4220833333,"percentage_change":17.8684823255},{"date":"2009-11-16","fuel":"gasoline","current_price":2.7516666667,"yoy_price":2.2063333333,"absolute_change":0.5453333333,"percentage_change":24.7167245808},{"date":"2009-11-23","fuel":"gasoline","current_price":2.7580833333,"yoy_price":2.0235,"absolute_change":0.7345833333,"percentage_change":36.3026109876},{"date":"2009-11-30","fuel":"gasoline","current_price":2.74875,"yoy_price":1.9355833333,"absolute_change":0.8131666667,"percentage_change":42.0114521893},{"date":"2009-12-07","fuel":"gasoline","current_price":2.7535833333,"yoy_price":1.8225833333,"absolute_change":0.931,"percentage_change":51.081340588},{"date":"2009-12-14","fuel":"gasoline","current_price":2.72225,"yoy_price":1.7749166667,"absolute_change":0.9473333333,"percentage_change":53.3733978121},{"date":"2009-12-21","fuel":"gasoline","current_price":2.7128333333,"yoy_price":1.7714166667,"absolute_change":0.9414166667,"percentage_change":53.1448464035},{"date":"2009-12-28","fuel":"gasoline","current_price":2.7283333333,"yoy_price":1.7331666667,"absolute_change":0.9951666667,"percentage_change":57.4189825945},{"date":"2010-01-04","fuel":"gasoline","current_price":2.7819166667,"yoy_price":1.7925,"absolute_change":0.9894166667,"percentage_change":55.1975825198},{"date":"2010-01-11","fuel":"gasoline","current_price":2.8648333333,"yoy_price":1.8889166667,"absolute_change":0.9759166667,"percentage_change":51.665416685},{"date":"2010-01-18","fuel":"gasoline","current_price":2.8563333333,"yoy_price":1.9520833333,"absolute_change":0.90425,"percentage_change":46.3223052295},{"date":"2010-01-25","fuel":"gasoline","current_price":2.8261666667,"yoy_price":1.9475833333,"absolute_change":0.8785833333,"percentage_change":45.1114629241},{"date":"2010-02-01","fuel":"gasoline","current_price":2.784,"yoy_price":2.0001666667,"absolute_change":0.7838333333,"percentage_change":39.1884009666},{"date":"2010-02-08","fuel":"gasoline","current_price":2.7740833333,"yoy_price":2.0380833333,"absolute_change":0.736,"percentage_change":36.1123604694},{"date":"2010-02-15","fuel":"gasoline","current_price":2.7338333333,"yoy_price":2.0774166667,"absolute_change":0.6564166667,"percentage_change":31.5977375747},{"date":"2010-02-22","fuel":"gasoline","current_price":2.7724166667,"yoy_price":2.029,"absolute_change":0.7434166667,"percentage_change":36.6395597174},{"date":"2010-03-01","fuel":"gasoline","current_price":2.8181666667,"yoy_price":2.04775,"absolute_change":0.7704166667,"percentage_change":37.6225939039},{"date":"2010-03-08","fuel":"gasoline","current_price":2.864,"yoy_price":2.0509166667,"absolute_change":0.8130833333,"percentage_change":39.6448742432},{"date":"2010-03-15","fuel":"gasoline","current_price":2.8996666667,"yoy_price":2.0240833333,"absolute_change":0.8755833333,"percentage_change":43.2582650583},{"date":"2010-03-22","fuel":"gasoline","current_price":2.92825,"yoy_price":2.0690833333,"absolute_change":0.8591666667,"percentage_change":41.5240243264},{"date":"2010-03-29","fuel":"gasoline","current_price":2.91175,"yoy_price":2.1516666667,"absolute_change":0.7600833333,"percentage_change":35.3253292022},{"date":"2010-04-05","fuel":"gasoline","current_price":2.93575,"yoy_price":2.14875,"absolute_change":0.787,"percentage_change":36.625945317},{"date":"2010-04-12","fuel":"gasoline","current_price":2.9665833333,"yoy_price":2.1625833333,"absolute_change":0.804,"percentage_change":37.1777580825},{"date":"2010-04-19","fuel":"gasoline","current_price":2.9691666667,"yoy_price":2.1716666667,"absolute_change":0.7975,"percentage_change":36.7229470453},{"date":"2010-04-26","fuel":"gasoline","current_price":2.9620833333,"yoy_price":2.1639166667,"absolute_change":0.7981666667,"percentage_change":36.8852774676},{"date":"2010-05-03","fuel":"gasoline","current_price":3.0093333333,"yoy_price":2.1895,"absolute_change":0.8198333333,"percentage_change":37.443860851},{"date":"2010-05-10","fuel":"gasoline","current_price":3.0193333333,"yoy_price":2.3448333333,"absolute_change":0.6745,"percentage_change":28.7653706731},{"date":"2010-05-17","fuel":"gasoline","current_price":2.983,"yoy_price":2.418,"absolute_change":0.565,"percentage_change":23.3664185277},{"date":"2010-05-24","fuel":"gasoline","current_price":2.9106666667,"yoy_price":2.5395,"absolute_change":0.3711666667,"percentage_change":14.6157380062},{"date":"2010-05-31","fuel":"gasoline","current_price":2.85425,"yoy_price":2.625,"absolute_change":0.22925,"percentage_change":8.7333333333},{"date":"2010-06-07","fuel":"gasoline","current_price":2.8503333333,"yoy_price":2.727,"absolute_change":0.1233333333,"percentage_change":4.5226744897},{"date":"2010-06-14","fuel":"gasoline","current_price":2.8255,"yoy_price":2.7804166667,"absolute_change":0.0450833333,"percentage_change":1.6214596134},{"date":"2010-06-21","fuel":"gasoline","current_price":2.8619166667,"yoy_price":2.8056666667,"absolute_change":0.05625,"percentage_change":2.0048710942},{"date":"2010-06-28","fuel":"gasoline","current_price":2.87475,"yoy_price":2.7625833333,"absolute_change":0.1121666667,"percentage_change":4.0602093451},{"date":"2010-07-05","fuel":"gasoline","current_price":2.8473333333,"yoy_price":2.7340833333,"absolute_change":0.11325,"percentage_change":4.1421561157},{"date":"2010-07-12","fuel":"gasoline","current_price":2.84,"yoy_price":2.6543333333,"absolute_change":0.1856666667,"percentage_change":6.9948511867},{"date":"2010-07-19","fuel":"gasoline","current_price":2.8430833333,"yoy_price":2.5905833333,"absolute_change":0.2525,"percentage_change":9.7468395149},{"date":"2010-07-26","fuel":"gasoline","current_price":2.8665,"yoy_price":2.6231666667,"absolute_change":0.2433333333,"percentage_change":9.2763199695},{"date":"2010-08-02","fuel":"gasoline","current_price":2.8558333333,"yoy_price":2.6755833333,"absolute_change":0.18025,"percentage_change":6.7368486623},{"date":"2010-08-09","fuel":"gasoline","current_price":2.8999166667,"yoy_price":2.76725,"absolute_change":0.1326666667,"percentage_change":4.7941699039},{"date":"2010-08-16","fuel":"gasoline","current_price":2.86625,"yoy_price":2.7614166667,"absolute_change":0.1048333333,"percentage_change":3.7963605637},{"date":"2010-08-23","fuel":"gasoline","current_price":2.8288333333,"yoy_price":2.75225,"absolute_change":0.0765833333,"percentage_change":2.7825718352},{"date":"2010-08-30","fuel":"gasoline","current_price":2.8029166667,"yoy_price":2.7399166667,"absolute_change":0.063,"percentage_change":2.2993400043},{"date":"2010-09-06","fuel":"gasoline","current_price":2.7980833333,"yoy_price":2.7181666667,"absolute_change":0.0799166667,"percentage_change":2.9400944264},{"date":"2010-09-13","fuel":"gasoline","current_price":2.8306666667,"yoy_price":2.7104166667,"absolute_change":0.12025,"percentage_change":4.4365872406},{"date":"2010-09-20","fuel":"gasoline","current_price":2.83275,"yoy_price":2.6855833333,"absolute_change":0.1471666667,"percentage_change":5.4798771217},{"date":"2010-09-27","fuel":"gasoline","current_price":2.8078333333,"yoy_price":2.6331666667,"absolute_change":0.1746666667,"percentage_change":6.6333312235},{"date":"2010-10-04","fuel":"gasoline","current_price":2.8433333333,"yoy_price":2.6019166667,"absolute_change":0.2414166667,"percentage_change":9.2784165519},{"date":"2010-10-11","fuel":"gasoline","current_price":2.92875,"yoy_price":2.6148333333,"absolute_change":0.3139166667,"percentage_change":12.0052265919},{"date":"2010-10-18","fuel":"gasoline","current_price":2.9503333333,"yoy_price":2.6908333333,"absolute_change":0.2595,"percentage_change":9.6438525859},{"date":"2010-10-25","fuel":"gasoline","current_price":2.9365,"yoy_price":2.7878333333,"absolute_change":0.1486666667,"percentage_change":5.3326956418},{"date":"2010-11-01","fuel":"gasoline","current_price":2.9285833333,"yoy_price":2.80825,"absolute_change":0.1203333333,"percentage_change":4.28499362},{"date":"2010-11-08","fuel":"gasoline","current_price":2.9778333333,"yoy_price":2.78425,"absolute_change":0.1935833333,"percentage_change":6.9527999761},{"date":"2010-11-15","fuel":"gasoline","current_price":3.0080833333,"yoy_price":2.7516666667,"absolute_change":0.2564166667,"percentage_change":9.318594791},{"date":"2010-11-22","fuel":"gasoline","current_price":3,"yoy_price":2.7580833333,"absolute_change":0.2419166667,"percentage_change":8.7711877209},{"date":"2010-11-29","fuel":"gasoline","current_price":2.9825833333,"yoy_price":2.74875,"absolute_change":0.2338333333,"percentage_change":8.5068970744},{"date":"2010-12-06","fuel":"gasoline","current_price":3.0786666667,"yoy_price":2.7535833333,"absolute_change":0.3250833333,"percentage_change":11.8058287686},{"date":"2010-12-13","fuel":"gasoline","current_price":3.1004166667,"yoy_price":2.72225,"absolute_change":0.3781666667,"percentage_change":13.8916949827},{"date":"2010-12-20","fuel":"gasoline","current_price":3.10525,"yoy_price":2.7128333333,"absolute_change":0.3924166667,"percentage_change":14.4651962892},{"date":"2010-12-27","fuel":"gasoline","current_price":3.1688333333,"yoy_price":2.7283333333,"absolute_change":0.4405,"percentage_change":16.1453879047},{"date":"2011-01-03","fuel":"gasoline","current_price":3.1865,"yoy_price":2.7819166667,"absolute_change":0.4045833333,"percentage_change":14.5433304376},{"date":"2011-01-10","fuel":"gasoline","current_price":3.2041666667,"yoy_price":2.8648333333,"absolute_change":0.3393333333,"percentage_change":11.8447844552},{"date":"2011-01-17","fuel":"gasoline","current_price":3.2201666667,"yoy_price":2.8563333333,"absolute_change":0.3638333333,"percentage_change":12.7377757031},{"date":"2011-01-24","fuel":"gasoline","current_price":3.2259166667,"yoy_price":2.8261666667,"absolute_change":0.39975,"percentage_change":14.1446010497},{"date":"2011-01-31","fuel":"gasoline","current_price":3.2195,"yoy_price":2.784,"absolute_change":0.4355,"percentage_change":15.6429597701},{"date":"2011-02-07","fuel":"gasoline","current_price":3.2478333333,"yoy_price":2.7740833333,"absolute_change":0.47375,"percentage_change":17.0777133588},{"date":"2011-02-14","fuel":"gasoline","current_price":3.2588333333,"yoy_price":2.7338333333,"absolute_change":0.525,"percentage_change":19.2038041822},{"date":"2011-02-21","fuel":"gasoline","current_price":3.3095,"yoy_price":2.7724166667,"absolute_change":0.5370833333,"percentage_change":19.3723887102},{"date":"2011-02-28","fuel":"gasoline","current_price":3.4985833333,"yoy_price":2.8181666667,"absolute_change":0.6804166667,"percentage_change":24.1439470105},{"date":"2011-03-07","fuel":"gasoline","current_price":3.6375833333,"yoy_price":2.864,"absolute_change":0.7735833333,"percentage_change":27.0105912477},{"date":"2011-03-14","fuel":"gasoline","current_price":3.6886666667,"yoy_price":2.8996666667,"absolute_change":0.789,"percentage_change":27.2100241407},{"date":"2011-03-21","fuel":"gasoline","current_price":3.6863333333,"yoy_price":2.92825,"absolute_change":0.7580833333,"percentage_change":25.8886137909},{"date":"2011-03-28","fuel":"gasoline","current_price":3.7195,"yoy_price":2.91175,"absolute_change":0.80775,"percentage_change":27.7410491972},{"date":"2011-04-04","fuel":"gasoline","current_price":3.8025,"yoy_price":2.93575,"absolute_change":0.86675,"percentage_change":29.5239717278},{"date":"2011-04-11","fuel":"gasoline","current_price":3.909,"yoy_price":2.9665833333,"absolute_change":0.9424166667,"percentage_change":31.767746285},{"date":"2011-04-18","fuel":"gasoline","current_price":3.9649166667,"yoy_price":2.9691666667,"absolute_change":0.99575,"percentage_change":33.536345776},{"date":"2011-04-25","fuel":"gasoline","current_price":4.002,"yoy_price":2.9620833333,"absolute_change":1.0399166667,"percentage_change":35.1076100717},{"date":"2011-05-02","fuel":"gasoline","current_price":4.0819166667,"yoy_price":3.0093333333,"absolute_change":1.0725833333,"percentage_change":35.6418918919},{"date":"2011-05-09","fuel":"gasoline","current_price":4.08775,"yoy_price":3.0193333333,"absolute_change":1.0684166667,"percentage_change":35.3858467653},{"date":"2011-05-16","fuel":"gasoline","current_price":4.0836666667,"yoy_price":2.983,"absolute_change":1.1006666667,"percentage_change":36.8979774276},{"date":"2011-05-23","fuel":"gasoline","current_price":3.9784166667,"yoy_price":2.9106666667,"absolute_change":1.06775,"percentage_change":36.6840357306},{"date":"2011-05-30","fuel":"gasoline","current_price":3.91875,"yoy_price":2.85425,"absolute_change":1.0645,"percentage_change":37.2952614522},{"date":"2011-06-06","fuel":"gasoline","current_price":3.8975,"yoy_price":2.8503333333,"absolute_change":1.0471666667,"percentage_change":36.7383931704},{"date":"2011-06-13","fuel":"gasoline","current_price":3.8353333333,"yoy_price":2.8255,"absolute_change":1.0098333333,"percentage_change":35.7399870229},{"date":"2011-06-20","fuel":"gasoline","current_price":3.7805833333,"yoy_price":2.8619166667,"absolute_change":0.9186666667,"percentage_change":32.0997000844},{"date":"2011-06-27","fuel":"gasoline","current_price":3.7065833333,"yoy_price":2.87475,"absolute_change":0.8318333333,"percentage_change":28.9358494942},{"date":"2011-07-04","fuel":"gasoline","current_price":3.7025,"yoy_price":2.8473333333,"absolute_change":0.8551666667,"percentage_change":30.0339498946},{"date":"2011-07-11","fuel":"gasoline","current_price":3.7580833333,"yoy_price":2.84,"absolute_change":0.9180833333,"percentage_change":32.3268779343},{"date":"2011-07-18","fuel":"gasoline","current_price":3.7989166667,"yoy_price":2.8430833333,"absolute_change":0.9558333333,"percentage_change":33.6196031304},{"date":"2011-07-25","fuel":"gasoline","current_price":3.8170833333,"yoy_price":2.8665,"absolute_change":0.9505833333,"percentage_change":33.1618117332},{"date":"2011-08-01","fuel":"gasoline","current_price":3.8271666667,"yoy_price":2.8558333333,"absolute_change":0.9713333333,"percentage_change":34.0122556172},{"date":"2011-08-08","fuel":"gasoline","current_price":3.79175,"yoy_price":2.8999166667,"absolute_change":0.8918333333,"percentage_change":30.7537572919},{"date":"2011-08-15","fuel":"gasoline","current_price":3.7258333333,"yoy_price":2.86625,"absolute_change":0.8595833333,"percentage_change":29.9898241023},{"date":"2011-08-22","fuel":"gasoline","current_price":3.70175,"yoy_price":2.8288333333,"absolute_change":0.8729166667,"percentage_change":30.8578330289},{"date":"2011-08-29","fuel":"gasoline","current_price":3.7428333333,"yoy_price":2.8029166667,"absolute_change":0.9399166667,"percentage_change":33.5335216293},{"date":"2011-09-05","fuel":"gasoline","current_price":3.7889166667,"yoy_price":2.7980833333,"absolute_change":0.9908333333,"percentage_change":35.4111445335},{"date":"2011-09-12","fuel":"gasoline","current_price":3.7779166667,"yoy_price":2.8306666667,"absolute_change":0.94725,"percentage_change":33.4638483278},{"date":"2011-09-19","fuel":"gasoline","current_price":3.7255,"yoy_price":2.83275,"absolute_change":0.89275,"percentage_change":31.515311976},{"date":"2011-09-26","fuel":"gasoline","current_price":3.6406666667,"yoy_price":2.8078333333,"absolute_change":0.8328333333,"percentage_change":29.6610672523},{"date":"2011-10-03","fuel":"gasoline","current_price":3.5676666667,"yoy_price":2.8433333333,"absolute_change":0.7243333333,"percentage_change":25.4747948417},{"date":"2011-10-10","fuel":"gasoline","current_price":3.5489166667,"yoy_price":2.92875,"absolute_change":0.6201666667,"percentage_change":21.1751315977},{"date":"2011-10-17","fuel":"gasoline","current_price":3.6025,"yoy_price":2.9503333333,"absolute_change":0.6521666667,"percentage_change":22.10484691},{"date":"2011-10-24","fuel":"gasoline","current_price":3.5915,"yoy_price":2.9365,"absolute_change":0.655,"percentage_change":22.3054656904},{"date":"2011-10-31","fuel":"gasoline","current_price":3.5828333333,"yoy_price":2.9285833333,"absolute_change":0.65425,"percentage_change":22.3401530888},{"date":"2011-11-07","fuel":"gasoline","current_price":3.5561666667,"yoy_price":2.9778333333,"absolute_change":0.5783333333,"percentage_change":19.4212794537},{"date":"2011-11-14","fuel":"gasoline","current_price":3.56775,"yoy_price":3.0080833333,"absolute_change":0.5596666667,"percentage_change":18.6054242735},{"date":"2011-11-21","fuel":"gasoline","current_price":3.5034166667,"yoy_price":3,"absolute_change":0.5034166667,"percentage_change":16.7805555556},{"date":"2011-11-28","fuel":"gasoline","current_price":3.447,"yoy_price":2.9825833333,"absolute_change":0.4644166667,"percentage_change":15.5709535917},{"date":"2011-12-05","fuel":"gasoline","current_price":3.4248333333,"yoy_price":3.0786666667,"absolute_change":0.3461666667,"percentage_change":11.2440450411},{"date":"2011-12-12","fuel":"gasoline","current_price":3.4170833333,"yoy_price":3.1004166667,"absolute_change":0.3166666667,"percentage_change":10.2136809569},{"date":"2011-12-19","fuel":"gasoline","current_price":3.3644166667,"yoy_price":3.10525,"absolute_change":0.2591666667,"percentage_change":8.3460805625},{"date":"2011-12-26","fuel":"gasoline","current_price":3.3875,"yoy_price":3.1688333333,"absolute_change":0.2186666667,"percentage_change":6.9005417346},{"date":"2012-01-02","fuel":"gasoline","current_price":3.429,"yoy_price":3.1865,"absolute_change":0.2425,"percentage_change":7.6102306606},{"date":"2012-01-09","fuel":"gasoline","current_price":3.513,"yoy_price":3.2041666667,"absolute_change":0.3088333333,"percentage_change":9.6384915475},{"date":"2012-01-16","fuel":"gasoline","current_price":3.52275,"yoy_price":3.2201666667,"absolute_change":0.3025833333,"percentage_change":9.3965115677},{"date":"2012-01-23","fuel":"gasoline","current_price":3.5246666667,"yoy_price":3.2259166667,"absolute_change":0.29875,"percentage_change":9.2609335848},{"date":"2012-01-30","fuel":"gasoline","current_price":3.5743333333,"yoy_price":3.2195,"absolute_change":0.3548333333,"percentage_change":11.0213801315},{"date":"2012-02-06","fuel":"gasoline","current_price":3.61375,"yoy_price":3.2478333333,"absolute_change":0.3659166667,"percentage_change":11.2664853492},{"date":"2012-02-13","fuel":"gasoline","current_price":3.6596666667,"yoy_price":3.2588333333,"absolute_change":0.4008333333,"percentage_change":12.2999028282},{"date":"2012-02-20","fuel":"gasoline","current_price":3.732,"yoy_price":3.3095,"absolute_change":0.4225,"percentage_change":12.7662788941},{"date":"2012-02-27","fuel":"gasoline","current_price":3.8614166667,"yoy_price":3.4985833333,"absolute_change":0.3628333333,"percentage_change":10.3708643975},{"date":"2012-03-05","fuel":"gasoline","current_price":3.9273333333,"yoy_price":3.6375833333,"absolute_change":0.28975,"percentage_change":7.9654532542},{"date":"2012-03-12","fuel":"gasoline","current_price":3.964,"yoy_price":3.6886666667,"absolute_change":0.2753333333,"percentage_change":7.4643050786},{"date":"2012-03-19","fuel":"gasoline","current_price":4.0018333333,"yoy_price":3.6863333333,"absolute_change":0.3155,"percentage_change":8.5586400217},{"date":"2012-03-26","fuel":"gasoline","current_price":4.0504166667,"yoy_price":3.7195,"absolute_change":0.3309166667,"percentage_change":8.8968051261},{"date":"2012-04-02","fuel":"gasoline","current_price":4.0706666667,"yoy_price":3.8025,"absolute_change":0.2681666667,"percentage_change":7.0523778216},{"date":"2012-04-09","fuel":"gasoline","current_price":4.07175,"yoy_price":3.909,"absolute_change":0.16275,"percentage_change":4.1634689179},{"date":"2012-04-16","fuel":"gasoline","current_price":4.0521666667,"yoy_price":3.9649166667,"absolute_change":0.08725,"percentage_change":2.2005506631},{"date":"2012-04-23","fuel":"gasoline","current_price":4.0058333333,"yoy_price":4.002,"absolute_change":0.0038333333,"percentage_change":0.0957854406},{"date":"2012-04-30","fuel":"gasoline","current_price":3.9668333333,"yoy_price":4.0819166667,"absolute_change":-0.1150833333,"percentage_change":-2.8193454872},{"date":"2012-05-07","fuel":"gasoline","current_price":3.92975,"yoy_price":4.08775,"absolute_change":-0.158,"percentage_change":-3.865207021},{"date":"2012-05-14","fuel":"gasoline","current_price":3.905,"yoy_price":4.0836666667,"absolute_change":-0.1786666667,"percentage_change":-4.3751530487},{"date":"2012-05-21","fuel":"gasoline","current_price":3.8615,"yoy_price":3.9784166667,"absolute_change":-0.1169166667,"percentage_change":-2.9387738003},{"date":"2012-05-28","fuel":"gasoline","current_price":3.8170833333,"yoy_price":3.91875,"absolute_change":-0.1016666667,"percentage_change":-2.5943646996},{"date":"2012-06-04","fuel":"gasoline","current_price":3.7609166667,"yoy_price":3.8975,"absolute_change":-0.1365833333,"percentage_change":-3.5043831516},{"date":"2012-06-11","fuel":"gasoline","current_price":3.7135833333,"yoy_price":3.8353333333,"absolute_change":-0.12175,"percentage_change":-3.1744307318},{"date":"2012-06-18","fuel":"gasoline","current_price":3.6640833333,"yoy_price":3.7805833333,"absolute_change":-0.1165,"percentage_change":-3.0815350365},{"date":"2012-06-25","fuel":"gasoline","current_price":3.5713333333,"yoy_price":3.7065833333,"absolute_change":-0.13525,"percentage_change":-3.6489129702},{"date":"2012-07-02","fuel":"gasoline","current_price":3.4944166667,"yoy_price":3.7025,"absolute_change":-0.2080833333,"percentage_change":-5.6200765249},{"date":"2012-07-09","fuel":"gasoline","current_price":3.5433333333,"yoy_price":3.7580833333,"absolute_change":-0.21475,"percentage_change":-5.7143490698},{"date":"2012-07-16","fuel":"gasoline","current_price":3.5616666667,"yoy_price":3.7989166667,"absolute_change":-0.23725,"percentage_change":-6.2452014829},{"date":"2012-07-23","fuel":"gasoline","current_price":3.6311666667,"yoy_price":3.8170833333,"absolute_change":-0.1859166667,"percentage_change":-4.8706473092},{"date":"2012-07-30","fuel":"gasoline","current_price":3.6438333333,"yoy_price":3.8271666667,"absolute_change":-0.1833333333,"percentage_change":-4.7903148543},{"date":"2012-08-06","fuel":"gasoline","current_price":3.76925,"yoy_price":3.79175,"absolute_change":-0.0225,"percentage_change":-0.5933935518},{"date":"2012-08-13","fuel":"gasoline","current_price":3.8539166667,"yoy_price":3.7258333333,"absolute_change":0.1280833333,"percentage_change":3.4377096846},{"date":"2012-08-20","fuel":"gasoline","current_price":3.8799166667,"yoy_price":3.70175,"absolute_change":0.1781666667,"percentage_change":4.813038878},{"date":"2012-08-27","fuel":"gasoline","current_price":3.9118333333,"yoy_price":3.7428333333,"absolute_change":0.169,"percentage_change":4.5152958988},{"date":"2012-09-03","fuel":"gasoline","current_price":3.974,"yoy_price":3.7889166667,"absolute_change":0.1850833333,"percentage_change":4.8848615479},{"date":"2012-09-10","fuel":"gasoline","current_price":3.9806666667,"yoy_price":3.7779166667,"absolute_change":0.20275,"percentage_change":5.366714459},{"date":"2012-09-17","fuel":"gasoline","current_price":4.012,"yoy_price":3.7255,"absolute_change":0.2865,"percentage_change":7.6902429204},{"date":"2012-09-24","fuel":"gasoline","current_price":3.9665833333,"yoy_price":3.6406666667,"absolute_change":0.3259166667,"percentage_change":8.9521149973},{"date":"2012-10-01","fuel":"gasoline","current_price":3.94525,"yoy_price":3.5676666667,"absolute_change":0.3775833333,"percentage_change":10.5834812669},{"date":"2012-10-08","fuel":"gasoline","current_price":4.0136666667,"yoy_price":3.5489166667,"absolute_change":0.46475,"percentage_change":13.095545589},{"date":"2012-10-15","fuel":"gasoline","current_price":3.98625,"yoy_price":3.6025,"absolute_change":0.38375,"percentage_change":10.6523247745},{"date":"2012-10-22","fuel":"gasoline","current_price":3.8585,"yoy_price":3.5915,"absolute_change":0.267,"percentage_change":7.4342196854},{"date":"2012-10-29","fuel":"gasoline","current_price":3.7351666667,"yoy_price":3.5828333333,"absolute_change":0.1523333333,"percentage_change":4.251756059},{"date":"2012-11-05","fuel":"gasoline","current_price":3.6595833333,"yoy_price":3.5561666667,"absolute_change":0.1034166667,"percentage_change":2.9080939214},{"date":"2012-11-12","fuel":"gasoline","current_price":3.6109166667,"yoy_price":3.56775,"absolute_change":0.0431666667,"percentage_change":1.2099128769},{"date":"2012-11-19","fuel":"gasoline","current_price":3.5866666667,"yoy_price":3.5034166667,"absolute_change":0.08325,"percentage_change":2.3762517542},{"date":"2012-11-26","fuel":"gasoline","current_price":3.5889166667,"yoy_price":3.447,"absolute_change":0.1419166667,"percentage_change":4.1171066628},{"date":"2012-12-03","fuel":"gasoline","current_price":3.5489166667,"yoy_price":3.4248333333,"absolute_change":0.1240833333,"percentage_change":3.6230473502},{"date":"2012-12-10","fuel":"gasoline","current_price":3.5030833333,"yoy_price":3.4170833333,"absolute_change":0.086,"percentage_change":2.516766248},{"date":"2012-12-17","fuel":"gasoline","current_price":3.4101666667,"yoy_price":3.3644166667,"absolute_change":0.04575,"percentage_change":1.3598196815},{"date":"2012-12-24","fuel":"gasoline","current_price":3.4134166667,"yoy_price":3.3875,"absolute_change":0.0259166667,"percentage_change":0.7650676507},{"date":"2012-12-31","fuel":"gasoline","current_price":3.4539166667,"yoy_price":3.429,"absolute_change":0.0249166667,"percentage_change":0.7266452805},{"date":"2013-01-07","fuel":"gasoline","current_price":3.4639166667,"yoy_price":3.513,"absolute_change":-0.0490833333,"percentage_change":-1.3971913844},{"date":"2013-01-14","fuel":"gasoline","current_price":3.469,"yoy_price":3.52275,"absolute_change":-0.05375,"percentage_change":-1.5257966078},{"date":"2013-01-21","fuel":"gasoline","current_price":3.4744166667,"yoy_price":3.5246666667,"absolute_change":-0.05025,"percentage_change":-1.4256667297},{"date":"2013-01-28","fuel":"gasoline","current_price":3.5135,"yoy_price":3.5743333333,"absolute_change":-0.0608333333,"percentage_change":-1.7019490814},{"date":"2013-02-04","fuel":"gasoline","current_price":3.6901666667,"yoy_price":3.61375,"absolute_change":0.0764166667,"percentage_change":2.1146085553},{"date":"2013-02-11","fuel":"gasoline","current_price":3.7646666667,"yoy_price":3.6596666667,"absolute_change":0.105,"percentage_change":2.8691137626},{"date":"2013-02-18","fuel":"gasoline","current_price":3.8923333333,"yoy_price":3.732,"absolute_change":0.1603333333,"percentage_change":4.2961772061},{"date":"2013-02-25","fuel":"gasoline","current_price":3.9339166667,"yoy_price":3.8614166667,"absolute_change":0.0725,"percentage_change":1.8775492587},{"date":"2013-03-04","fuel":"gasoline","current_price":3.91,"yoy_price":3.9273333333,"absolute_change":-0.0173333333,"percentage_change":-0.4413512137},{"date":"2013-03-11","fuel":"gasoline","current_price":3.86525,"yoy_price":3.964,"absolute_change":-0.09875,"percentage_change":-2.4911705348},{"date":"2013-03-18","fuel":"gasoline","current_price":3.8494166667,"yoy_price":4.0018333333,"absolute_change":-0.1524166667,"percentage_change":-3.8086710258},{"date":"2013-03-25","fuel":"gasoline","current_price":3.8305833333,"yoy_price":4.0504166667,"absolute_change":-0.2198333333,"percentage_change":-5.427425162},{"date":"2013-04-01","fuel":"gasoline","current_price":3.8023333333,"yoy_price":4.0706666667,"absolute_change":-0.2683333333,"percentage_change":-6.5918768425},{"date":"2013-04-08","fuel":"gasoline","current_price":3.7638333333,"yoy_price":4.07175,"absolute_change":-0.3079166667,"percentage_change":-7.5622684759},{"date":"2013-04-15","fuel":"gasoline","current_price":3.7015,"yoy_price":4.0521666667,"absolute_change":-0.3506666667,"percentage_change":-8.6538066055},{"date":"2013-04-22","fuel":"gasoline","current_price":3.688,"yoy_price":4.0058333333,"absolute_change":-0.3178333333,"percentage_change":-7.9342625338},{"date":"2013-04-29","fuel":"gasoline","current_price":3.6716666667,"yoy_price":3.9668333333,"absolute_change":-0.2951666667,"percentage_change":-7.4408638293},{"date":"2013-05-06","fuel":"gasoline","current_price":3.6834166667,"yoy_price":3.92975,"absolute_change":-0.2463333333,"percentage_change":-6.2684225036},{"date":"2013-05-13","fuel":"gasoline","current_price":3.74425,"yoy_price":3.905,"absolute_change":-0.16075,"percentage_change":-4.1165172855},{"date":"2013-05-20","fuel":"gasoline","current_price":3.7975,"yoy_price":3.8615,"absolute_change":-0.064,"percentage_change":-1.6573870258},{"date":"2013-05-27","fuel":"gasoline","current_price":3.7765833333,"yoy_price":3.8170833333,"absolute_change":-0.0405,"percentage_change":-1.0610195394},{"date":"2013-06-03","fuel":"gasoline","current_price":3.7738333333,"yoy_price":3.7609166667,"absolute_change":0.0129166667,"percentage_change":0.3434446389},{"date":"2013-06-10","fuel":"gasoline","current_price":3.78475,"yoy_price":3.7135833333,"absolute_change":0.0711666667,"percentage_change":1.9163880349},{"date":"2013-06-17","fuel":"gasoline","current_price":3.7660833333,"yoy_price":3.6640833333,"absolute_change":0.102,"percentage_change":2.783779481},{"date":"2013-06-24","fuel":"gasoline","current_price":3.7355,"yoy_price":3.5713333333,"absolute_change":0.1641666667,"percentage_change":4.5967892477},{"date":"2013-07-01","fuel":"gasoline","current_price":3.6634166667,"yoy_price":3.4944166667,"absolute_change":0.169,"percentage_change":4.836286457},{"date":"2013-07-08","fuel":"gasoline","current_price":3.65675,"yoy_price":3.5433333333,"absolute_change":0.1134166667,"percentage_change":3.2008466604},{"date":"2013-07-15","fuel":"gasoline","current_price":3.7924166667,"yoy_price":3.5616666667,"absolute_change":0.23075,"percentage_change":6.4787084698},{"date":"2013-07-22","fuel":"gasoline","current_price":3.8378333333,"yoy_price":3.6311666667,"absolute_change":0.2066666667,"percentage_change":5.6914673888},{"date":"2013-07-29","fuel":"gasoline","current_price":3.80725,"yoy_price":3.6438333333,"absolute_change":0.1634166667,"percentage_change":4.4847459178},{"date":"2013-08-05","fuel":"gasoline","current_price":3.78775,"yoy_price":3.76925,"absolute_change":0.0185,"percentage_change":0.4908138224},{"date":"2013-08-12","fuel":"gasoline","current_price":3.7235833333,"yoy_price":3.8539166667,"absolute_change":-0.1303333333,"percentage_change":-3.3818409843},{"date":"2013-08-19","fuel":"gasoline","current_price":3.7071666667,"yoy_price":3.8799166667,"absolute_change":-0.17275,"percentage_change":-4.4524152151},{"date":"2013-08-26","fuel":"gasoline","current_price":3.70625,"yoy_price":3.9118333333,"absolute_change":-0.2055833333,"percentage_change":-5.2554215841},{"date":"2013-09-02","fuel":"gasoline","current_price":3.754,"yoy_price":3.974,"absolute_change":-0.22,"percentage_change":-5.5359838953},{"date":"2013-09-09","fuel":"gasoline","current_price":3.7398333333,"yoy_price":3.9806666667,"absolute_change":-0.2408333333,"percentage_change":-6.0500753643},{"date":"2013-09-16","fuel":"gasoline","current_price":3.7113333333,"yoy_price":4.012,"absolute_change":-0.3006666667,"percentage_change":-7.4941841143},{"date":"2013-09-23","fuel":"gasoline","current_price":3.6588333333,"yoy_price":3.9665833333,"absolute_change":-0.30775,"percentage_change":-7.7585663564},{"date":"2013-09-30","fuel":"gasoline","current_price":3.59425,"yoy_price":3.94525,"absolute_change":-0.351,"percentage_change":-8.8967746024},{"date":"2013-10-07","fuel":"gasoline","current_price":3.53525,"yoy_price":4.0136666667,"absolute_change":-0.4784166667,"percentage_change":-11.9196910556},{"date":"2013-10-14","fuel":"gasoline","current_price":3.52225,"yoy_price":3.98625,"absolute_change":-0.464,"percentage_change":-11.6400125431},{"date":"2013-10-21","fuel":"gasoline","current_price":3.5230833333,"yoy_price":3.8585,"absolute_change":-0.3354166667,"percentage_change":-8.6929290311},{"date":"2013-10-28","fuel":"gasoline","current_price":3.4666666667,"yoy_price":3.7351666667,"absolute_change":-0.2685,"percentage_change":-7.188434251},{"date":"2013-11-04","fuel":"gasoline","current_price":3.43525,"yoy_price":3.6595833333,"absolute_change":-0.2243333333,"percentage_change":-6.1300239098},{"date":"2013-11-11","fuel":"gasoline","current_price":3.3709166667,"yoy_price":3.6109166667,"absolute_change":-0.24,"percentage_change":-6.6465117352},{"date":"2013-11-18","fuel":"gasoline","current_price":3.3919166667,"yoy_price":3.5866666667,"absolute_change":-0.19475,"percentage_change":-5.4298327138},{"date":"2013-11-25","fuel":"gasoline","current_price":3.4623333333,"yoy_price":3.5889166667,"absolute_change":-0.1265833333,"percentage_change":-3.527062484},{"date":"2013-12-02","fuel":"gasoline","current_price":3.4495,"yoy_price":3.5489166667,"absolute_change":-0.0994166667,"percentage_change":-2.8013243478},{"date":"2013-12-09","fuel":"gasoline","current_price":3.44625,"yoy_price":3.5030833333,"absolute_change":-0.0568333333,"percentage_change":-1.622380284},{"date":"2013-12-16","fuel":"gasoline","current_price":3.4215,"yoy_price":3.4101666667,"absolute_change":0.0113333333,"percentage_change":0.3323395728},{"date":"2013-12-23","fuel":"gasoline","current_price":3.45025,"yoy_price":3.4134166667,"absolute_change":0.0368333333,"percentage_change":1.0790752179},{"date":"2013-12-30","fuel":"gasoline","current_price":3.5034166667,"yoy_price":3.4539166667,"absolute_change":0.0495,"percentage_change":1.4331555963},{"date":"2014-01-06","fuel":"gasoline","current_price":3.5093333333,"yoy_price":3.4639166667,"absolute_change":0.0454166667,"percentage_change":1.3111362379},{"date":"2014-01-13","fuel":"gasoline","current_price":3.4998333333,"yoy_price":3.469,"absolute_change":0.0308333333,"percentage_change":0.8888248294},{"date":"2014-01-20","fuel":"gasoline","current_price":3.4701666667,"yoy_price":3.4744166667,"absolute_change":-0.00425,"percentage_change":-0.1223226921},{"date":"2014-01-27","fuel":"gasoline","current_price":3.4669166667,"yoy_price":3.5135,"absolute_change":-0.0465833333,"percentage_change":-1.3258384327},{"date":"2014-02-03","fuel":"gasoline","current_price":3.46375,"yoy_price":3.6901666667,"absolute_change":-0.2264166667,"percentage_change":-6.1356758954},{"date":"2014-02-10","fuel":"gasoline","current_price":3.479,"yoy_price":3.7646666667,"absolute_change":-0.2856666667,"percentage_change":-7.588099876},{"date":"2014-02-17","fuel":"gasoline","current_price":3.5475,"yoy_price":3.8923333333,"absolute_change":-0.3448333333,"percentage_change":-8.8592960521},{"date":"2014-02-24","fuel":"gasoline","current_price":3.60675,"yoy_price":3.9339166667,"absolute_change":-0.3271666667,"percentage_change":-8.3165632216},{"date":"2014-03-03","fuel":"gasoline","current_price":3.64175,"yoy_price":3.91,"absolute_change":-0.26825,"percentage_change":-6.8606138107},{"date":"2014-03-10","fuel":"gasoline","current_price":3.6708333333,"yoy_price":3.86525,"absolute_change":-0.1944166667,"percentage_change":-5.029860078},{"date":"2014-03-17","fuel":"gasoline","current_price":3.706,"yoy_price":3.8494166667,"absolute_change":-0.1434166667,"percentage_change":-3.725672721},{"date":"2014-03-24","fuel":"gasoline","current_price":3.7111666667,"yoy_price":3.8305833333,"absolute_change":-0.1194166667,"percentage_change":-3.1174538256},{"date":"2014-03-31","fuel":"gasoline","current_price":3.7381666667,"yoy_price":3.8023333333,"absolute_change":-0.0641666667,"percentage_change":-1.68756027},{"date":"2014-04-07","fuel":"gasoline","current_price":3.7605,"yoy_price":3.7638333333,"absolute_change":-0.0033333333,"percentage_change":-0.0885621928},{"date":"2014-04-14","fuel":"gasoline","current_price":3.816,"yoy_price":3.7015,"absolute_change":0.1145,"percentage_change":3.0933405376},{"date":"2014-04-21","fuel":"gasoline","current_price":3.85025,"yoy_price":3.688,"absolute_change":0.16225,"percentage_change":4.3994034707},{"date":"2014-04-28","fuel":"gasoline","current_price":3.8839166667,"yoy_price":3.6716666667,"absolute_change":0.21225,"percentage_change":5.7807535179},{"date":"2014-05-05","fuel":"gasoline","current_price":3.85875,"yoy_price":3.6834166667,"absolute_change":0.1753333333,"percentage_change":4.7600733015},{"date":"2014-05-12","fuel":"gasoline","current_price":3.8420833333,"yoy_price":3.74425,"absolute_change":0.0978333333,"percentage_change":2.6128953284},{"date":"2014-05-19","fuel":"gasoline","current_price":3.8385833333,"yoy_price":3.7975,"absolute_change":0.0410833333,"percentage_change":1.0818520957},{"date":"2014-05-26","fuel":"gasoline","current_price":3.84325,"yoy_price":3.7765833333,"absolute_change":0.0666666667,"percentage_change":1.7652640173},{"date":"2014-06-02","fuel":"gasoline","current_price":3.8565833333,"yoy_price":3.7738333333,"absolute_change":0.08275,"percentage_change":2.1927306452},{"date":"2014-06-09","fuel":"gasoline","current_price":3.8398333333,"yoy_price":3.78475,"absolute_change":0.0550833333,"percentage_change":1.4554021622},{"date":"2014-06-16","fuel":"gasoline","current_price":3.85,"yoy_price":3.7660833333,"absolute_change":0.0839166667,"percentage_change":2.2282211847},{"date":"2014-06-23","fuel":"gasoline","current_price":3.8686666667,"yoy_price":3.7355,"absolute_change":0.1331666667,"percentage_change":3.5648953732},{"date":"2014-06-30","fuel":"gasoline","current_price":3.8699166667,"yoy_price":3.6634166667,"absolute_change":0.2065,"percentage_change":5.6368144492},{"date":"2014-07-07","fuel":"gasoline","current_price":3.8475,"yoy_price":3.65675,"absolute_change":0.19075,"percentage_change":5.2163806659},{"date":"2014-07-14","fuel":"gasoline","current_price":3.80875,"yoy_price":3.7924166667,"absolute_change":0.0163333333,"percentage_change":0.4306840405},{"date":"2014-07-21","fuel":"gasoline","current_price":3.7668333333,"yoy_price":3.8378333333,"absolute_change":-0.071,"percentage_change":-1.8500021714},{"date":"2014-07-28","fuel":"gasoline","current_price":3.7155833333,"yoy_price":3.80725,"absolute_change":-0.0916666667,"percentage_change":-2.4076870882},{"date":"2014-08-04","fuel":"gasoline","current_price":3.6915,"yoy_price":3.78775,"absolute_change":-0.09625,"percentage_change":-2.5410863969},{"date":"2014-08-11","fuel":"gasoline","current_price":3.6748333333,"yoy_price":3.7235833333,"absolute_change":-0.04875,"percentage_change":-1.3092227469},{"date":"2014-08-18","fuel":"gasoline","current_price":3.64375,"yoy_price":3.7071666667,"absolute_change":-0.0634166667,"percentage_change":-1.7106505417},{"date":"2014-08-25","fuel":"gasoline","current_price":3.6246666667,"yoy_price":3.70625,"absolute_change":-0.0815833333,"percentage_change":-2.2012366498},{"date":"2014-09-01","fuel":"gasoline","current_price":3.6250833333,"yoy_price":3.754,"absolute_change":-0.1289166667,"percentage_change":-3.4341147221},{"date":"2014-09-08","fuel":"gasoline","current_price":3.6225,"yoy_price":3.7398333333,"absolute_change":-0.1173333333,"percentage_change":-3.1373947146},{"date":"2014-09-15","fuel":"gasoline","current_price":3.5761666667,"yoy_price":3.7113333333,"absolute_change":-0.1351666667,"percentage_change":-3.6419974852},{"date":"2014-09-22","fuel":"gasoline","current_price":3.5251666667,"yoy_price":3.6588333333,"absolute_change":-0.1336666667,"percentage_change":-3.6532592356},{"date":"2014-09-29","fuel":"gasoline","current_price":3.5249166667,"yoy_price":3.59425,"absolute_change":-0.0693333333,"percentage_change":-1.9290069787},{"date":"2014-10-06","fuel":"gasoline","current_price":3.4766666667,"yoy_price":3.53525,"absolute_change":-0.0585833333,"percentage_change":-1.6571199585},{"date":"2014-10-13","fuel":"gasoline","current_price":3.3915,"yoy_price":3.52225,"absolute_change":-0.13075,"percentage_change":-3.712115835},{"date":"2014-10-20","fuel":"gasoline","current_price":3.3021666667,"yoy_price":3.5230833333,"absolute_change":-0.2209166667,"percentage_change":-6.2705489983},{"date":"2014-10-27","fuel":"gasoline","current_price":3.2323333333,"yoy_price":3.4666666667,"absolute_change":-0.2343333333,"percentage_change":-6.7596153846},{"date":"2014-11-03","fuel":"gasoline","current_price":3.17,"yoy_price":3.43525,"absolute_change":-0.26525,"percentage_change":-7.7214176552},{"date":"2014-11-10","fuel":"gasoline","current_price":3.116,"yoy_price":3.3709166667,"absolute_change":-0.2549166667,"percentage_change":-7.5622357915},{"date":"2014-11-17","fuel":"gasoline","current_price":3.0705833333,"yoy_price":3.3919166667,"absolute_change":-0.3213333333,"percentage_change":-9.4735031816},{"date":"2014-11-24","fuel":"gasoline","current_price":3.0020833333,"yoy_price":3.4623333333,"absolute_change":-0.46025,"percentage_change":-13.293058631},{"date":"2014-12-01","fuel":"gasoline","current_price":2.9605,"yoy_price":3.4495,"absolute_change":-0.489,"percentage_change":-14.1759675315},{"date":"2014-12-08","fuel":"gasoline","current_price":2.8666666667,"yoy_price":3.44625,"absolute_change":-0.5795833333,"percentage_change":-16.8177971225},{"date":"2014-12-15","fuel":"gasoline","current_price":2.74625,"yoy_price":3.4215,"absolute_change":-0.67525,"percentage_change":-19.7354961274},{"date":"2014-12-22","fuel":"gasoline","current_price":2.6041666667,"yoy_price":3.45025,"absolute_change":-0.8460833333,"percentage_change":-24.5223776055},{"date":"2014-12-29","fuel":"gasoline","current_price":2.5036666667,"yoy_price":3.5034166667,"absolute_change":-0.99975,"percentage_change":-28.5364287243},{"date":"2015-01-05","fuel":"gasoline","current_price":2.42375,"yoy_price":3.5093333333,"absolute_change":-1.0855833333,"percentage_change":-30.9341755319},{"date":"2015-01-12","fuel":"gasoline","current_price":2.3450833333,"yoy_price":3.4998333333,"absolute_change":-1.15475,"percentage_change":-32.9944283061},{"date":"2015-01-19","fuel":"gasoline","current_price":2.2650833333,"yoy_price":3.4701666667,"absolute_change":-1.2050833333,"percentage_change":-34.7269583593},{"date":"2015-01-26","fuel":"gasoline","current_price":2.2385833333,"yoy_price":3.4669166667,"absolute_change":-1.2283333333,"percentage_change":-35.4301372497},{"date":"2015-02-02","fuel":"gasoline","current_price":2.2544166667,"yoy_price":3.46375,"absolute_change":-1.2093333333,"percentage_change":-34.9139901359},{"date":"2015-02-09","fuel":"gasoline","current_price":2.3746666667,"yoy_price":3.479,"absolute_change":-1.1043333333,"percentage_change":-31.7428379803},{"date":"2015-02-16","fuel":"gasoline","current_price":2.45975,"yoy_price":3.5475,"absolute_change":-1.08775,"percentage_change":-30.6624383369},{"date":"2015-02-23","fuel":"gasoline","current_price":2.5195833333,"yoy_price":3.60675,"absolute_change":-1.0871666667,"percentage_change":-30.1425567801},{"date":"2015-03-02","fuel":"gasoline","current_price":2.67225,"yoy_price":3.64175,"absolute_change":-0.9695,"percentage_change":-26.6218164344},{"date":"2015-03-09","fuel":"gasoline","current_price":2.6890833333,"yoy_price":3.6708333333,"absolute_change":-0.98175,"percentage_change":-26.7446083995},{"date":"2015-03-16","fuel":"gasoline","current_price":2.65525,"yoy_price":3.706,"absolute_change":-1.05075,"percentage_change":-28.3526713438},{"date":"2015-03-23","fuel":"gasoline","current_price":2.6515833333,"yoy_price":3.7111666667,"absolute_change":-1.0595833333,"percentage_change":-28.5512192931},{"date":"2015-03-30","fuel":"gasoline","current_price":2.64325,"yoy_price":3.7381666667,"absolute_change":-1.0949166667,"percentage_change":-29.2902046458},{"date":"2015-04-06","fuel":"gasoline","current_price":2.6116666667,"yoy_price":3.7605,"absolute_change":-1.1488333333,"percentage_change":-30.5500155121},{"date":"2015-04-13","fuel":"gasoline","current_price":2.6054166667,"yoy_price":3.816,"absolute_change":-1.2105833333,"percentage_change":-31.7238819008},{"date":"2015-04-20","fuel":"gasoline","current_price":2.6794166667,"yoy_price":3.85025,"absolute_change":-1.1708333333,"percentage_change":-30.4092807826},{"date":"2015-04-27","fuel":"gasoline","current_price":2.776,"yoy_price":3.8839166667,"absolute_change":-1.1079166667,"percentage_change":-28.5257579334},{"date":"2015-05-04","fuel":"gasoline","current_price":2.8776666667,"yoy_price":3.85875,"absolute_change":-0.9810833333,"percentage_change":-25.4249001188},{"date":"2015-05-11","fuel":"gasoline","current_price":2.9048333333,"yoy_price":3.8420833333,"absolute_change":-0.93725,"percentage_change":-24.3943173192},{"date":"2015-05-18","fuel":"gasoline","current_price":2.95325,"yoy_price":3.8385833333,"absolute_change":-0.8853333333,"percentage_change":-23.0640644335},{"date":"2015-05-25","fuel":"gasoline","current_price":2.9800833333,"yoy_price":3.84325,"absolute_change":-0.8631666667,"percentage_change":-22.4592900974},{"date":"2015-06-01","fuel":"gasoline","current_price":2.9816666667,"yoy_price":3.8565833333,"absolute_change":-0.8749166667,"percentage_change":-22.6863156075},{"date":"2015-06-08","fuel":"gasoline","current_price":2.9790833333,"yoy_price":3.8398333333,"absolute_change":-0.86075,"percentage_change":-22.4163375146},{"date":"2015-06-15","fuel":"gasoline","current_price":3.0245833333,"yoy_price":3.85,"absolute_change":-0.8254166667,"percentage_change":-21.4393939394},{"date":"2015-06-22","fuel":"gasoline","current_price":3.0031666667,"yoy_price":3.8686666667,"absolute_change":-0.8655,"percentage_change":-22.3720489402},{"date":"2015-06-29","fuel":"gasoline","current_price":2.9933333333,"yoy_price":3.8699166667,"absolute_change":-0.8765833333,"percentage_change":-22.6512198798},{"date":"2015-07-06","fuel":"gasoline","current_price":2.9863333333,"yoy_price":3.8475,"absolute_change":-0.8611666667,"percentage_change":-22.3824994585},{"date":"2015-07-13","fuel":"gasoline","current_price":3.0495833333,"yoy_price":3.80875,"absolute_change":-0.7591666667,"percentage_change":-19.9321737228},{"date":"2015-07-20","fuel":"gasoline","current_price":3.01825,"yoy_price":3.7668333333,"absolute_change":-0.7485833333,"percentage_change":-19.8730144684},{"date":"2015-07-27","fuel":"gasoline","current_price":2.964,"yoy_price":3.7155833333,"absolute_change":-0.7515833333,"percentage_change":-20.2278691098},{"date":"2015-08-03","fuel":"gasoline","current_price":2.9108333333,"yoy_price":3.6915,"absolute_change":-0.7806666667,"percentage_change":-21.1476816109},{"date":"2015-08-10","fuel":"gasoline","current_price":2.8488333333,"yoy_price":3.6748333333,"absolute_change":-0.826,"percentage_change":-22.4772098508},{"date":"2015-08-17","fuel":"gasoline","current_price":2.9221666667,"yoy_price":3.64375,"absolute_change":-0.7215833333,"percentage_change":-19.8033161807},{"date":"2015-08-24","fuel":"gasoline","current_price":2.8459166667,"yoy_price":3.6246666667,"absolute_change":-0.77875,"percentage_change":-21.4847342284},{"date":"2015-08-31","fuel":"gasoline","current_price":2.7256666667,"yoy_price":3.6250833333,"absolute_change":-0.8994166667,"percentage_change":-24.8109238868},{"date":"2015-09-07","fuel":"gasoline","current_price":2.6556666667,"yoy_price":3.6225,"absolute_change":-0.9668333333,"percentage_change":-26.6896710375},{"date":"2015-09-14","fuel":"gasoline","current_price":2.5951666667,"yoy_price":3.5761666667,"absolute_change":-0.981,"percentage_change":-27.4316074008},{"date":"2015-09-21","fuel":"gasoline","current_price":2.5485833333,"yoy_price":3.5251666667,"absolute_change":-0.9765833333,"percentage_change":-27.7031818827},{"date":"2015-09-28","fuel":"gasoline","current_price":2.5356666667,"yoy_price":3.5249166667,"absolute_change":-0.98925,"percentage_change":-28.0644932504},{"date":"2015-10-05","fuel":"gasoline","current_price":2.52875,"yoy_price":3.4766666667,"absolute_change":-0.9479166667,"percentage_change":-27.2651006711},{"date":"2015-10-12","fuel":"gasoline","current_price":2.5398333333,"yoy_price":3.3915,"absolute_change":-0.8516666667,"percentage_change":-25.1117991056},{"date":"2015-10-19","fuel":"gasoline","current_price":2.4845833333,"yoy_price":3.3021666667,"absolute_change":-0.8175833333,"percentage_change":-24.7589966184},{"date":"2015-10-26","fuel":"gasoline","current_price":2.4403333333,"yoy_price":3.2323333333,"absolute_change":-0.792,"percentage_change":-24.5024234299},{"date":"2015-11-02","fuel":"gasoline","current_price":2.43425,"yoy_price":3.17,"absolute_change":-0.73575,"percentage_change":-23.2097791798},{"date":"2015-11-09","fuel":"gasoline","current_price":2.45025,"yoy_price":3.116,"absolute_change":-0.66575,"percentage_change":-21.3655327343},{"date":"2015-11-16","fuel":"gasoline","current_price":2.40075,"yoy_price":3.0705833333,"absolute_change":-0.6698333333,"percentage_change":-21.8145303553},{"date":"2015-11-23","fuel":"gasoline","current_price":2.3225,"yoy_price":3.0020833333,"absolute_change":-0.6795833333,"percentage_change":-22.6370575989},{"date":"2015-11-30","fuel":"gasoline","current_price":2.2930833333,"yoy_price":2.9605,"absolute_change":-0.6674166667,"percentage_change":-22.5440522434},{"date":"2015-12-07","fuel":"gasoline","current_price":2.2871666667,"yoy_price":2.8666666667,"absolute_change":-0.5795,"percentage_change":-20.2151162791},{"date":"2015-12-14","fuel":"gasoline","current_price":2.2714166667,"yoy_price":2.74625,"absolute_change":-0.4748333333,"percentage_change":-17.2902442725},{"date":"2015-12-21","fuel":"gasoline","current_price":2.2659166667,"yoy_price":2.6041666667,"absolute_change":-0.33825,"percentage_change":-12.9888},{"date":"2015-12-28","fuel":"gasoline","current_price":2.2755,"yoy_price":2.5036666667,"absolute_change":-0.2281666667,"percentage_change":-9.1133004926},{"date":"2016-01-04","fuel":"gasoline","current_price":2.2711666667,"yoy_price":2.42375,"absolute_change":-0.1525833333,"percentage_change":-6.2953412412},{"date":"2016-01-11","fuel":"gasoline","current_price":2.2410833333,"yoy_price":2.3450833333,"absolute_change":-0.104,"percentage_change":-4.434810419},{"date":"2016-01-18","fuel":"gasoline","current_price":2.15825,"yoy_price":2.2650833333,"absolute_change":-0.1068333333,"percentage_change":-4.716529929},{"date":"2016-01-25","fuel":"gasoline","current_price":2.1033333333,"yoy_price":2.2385833333,"absolute_change":-0.13525,"percentage_change":-6.0417674869},{"date":"2016-02-01","fuel":"gasoline","current_price":2.0665833333,"yoy_price":2.2544166667,"absolute_change":-0.1878333333,"percentage_change":-8.3317931468},{"date":"2016-02-08","fuel":"gasoline","current_price":2.0065,"yoy_price":2.3746666667,"absolute_change":-0.3681666667,"percentage_change":-15.5039303762},{"date":"2016-02-15","fuel":"gasoline","current_price":1.9654166667,"yoy_price":2.45975,"absolute_change":-0.4943333333,"percentage_change":-20.0968933157},{"date":"2016-02-22","fuel":"gasoline","current_price":1.9610833333,"yoy_price":2.5195833333,"absolute_change":-0.5585,"percentage_change":-22.166363486},{"date":"2016-02-29","fuel":"gasoline","current_price":2.0085,"yoy_price":2.67225,"absolute_change":-0.66375,"percentage_change":-24.8386191412},{"date":"2016-03-07","fuel":"gasoline","current_price":2.0591666667,"yoy_price":2.6890833333,"absolute_change":-0.6299166667,"percentage_change":-23.4249589389},{"date":"2016-03-14","fuel":"gasoline","current_price":2.1816666667,"yoy_price":2.65525,"absolute_change":-0.4735833333,"percentage_change":-17.8357342372},{"date":"2016-03-21","fuel":"gasoline","current_price":2.2295,"yoy_price":2.6515833333,"absolute_change":-0.4220833333,"percentage_change":-15.9181621044},{"date":"2016-03-28","fuel":"gasoline","current_price":2.29525,"yoy_price":2.64325,"absolute_change":-0.348,"percentage_change":-13.1656105174},{"date":"2016-04-04","fuel":"gasoline","current_price":2.3093333333,"yoy_price":2.6116666667,"absolute_change":-0.3023333333,"percentage_change":-11.5762603701},{"date":"2016-04-11","fuel":"gasoline","current_price":2.2985833333,"yoy_price":2.6054166667,"absolute_change":-0.3068333333,"percentage_change":-11.7767471614},{"date":"2016-04-18","fuel":"gasoline","current_price":2.3630833333,"yoy_price":2.6794166667,"absolute_change":-0.3163333333,"percentage_change":-11.8060523124},{"date":"2016-04-25","fuel":"gasoline","current_price":2.3878333333,"yoy_price":2.776,"absolute_change":-0.3881666667,"percentage_change":-13.9829490874},{"date":"2016-05-02","fuel":"gasoline","current_price":2.4613333333,"yoy_price":2.8776666667,"absolute_change":-0.4163333333,"percentage_change":-14.4677400672},{"date":"2016-05-09","fuel":"gasoline","current_price":2.448,"yoy_price":2.9048333333,"absolute_change":-0.4568333333,"percentage_change":-15.7266624591},{"date":"2016-05-16","fuel":"gasoline","current_price":2.4648333333,"yoy_price":2.95325,"absolute_change":-0.4884166667,"percentage_change":-16.5382770394},{"date":"2016-05-23","fuel":"gasoline","current_price":2.5193333333,"yoy_price":2.9800833333,"absolute_change":-0.46075,"percentage_change":-15.460977042},{"date":"2016-05-30","fuel":"gasoline","current_price":2.5528333333,"yoy_price":2.9816666667,"absolute_change":-0.4288333333,"percentage_change":-14.3823365008},{"date":"2016-06-06","fuel":"gasoline","current_price":2.5924166667,"yoy_price":2.9790833333,"absolute_change":-0.3866666667,"percentage_change":-12.9793840387},{"date":"2016-06-13","fuel":"gasoline","current_price":2.6095,"yoy_price":3.0245833333,"absolute_change":-0.4150833333,"percentage_change":-13.7236533958},{"date":"2016-06-20","fuel":"gasoline","current_price":2.57025,"yoy_price":3.0031666667,"absolute_change":-0.4329166667,"percentage_change":-14.415339364},{"date":"2016-06-27","fuel":"gasoline","current_price":2.554,"yoy_price":2.9933333333,"absolute_change":-0.4393333333,"percentage_change":-14.6770601336},{"date":"2016-07-04","fuel":"gasoline","current_price":2.5216666667,"yoy_price":2.9863333333,"absolute_change":-0.4646666667,"percentage_change":-15.559772296},{"date":"2016-07-11","fuel":"gasoline","current_price":2.48475,"yoy_price":3.0495833333,"absolute_change":-0.5648333333,"percentage_change":-18.5216559639},{"date":"2016-07-18","fuel":"gasoline","current_price":2.46225,"yoy_price":3.01825,"absolute_change":-0.556,"percentage_change":-18.4212706038},{"date":"2016-07-25","fuel":"gasoline","current_price":2.4148333333,"yoy_price":2.964,"absolute_change":-0.5491666667,"percentage_change":-18.5278902384},{"date":"2016-08-01","fuel":"gasoline","current_price":2.3898333333,"yoy_price":2.9108333333,"absolute_change":-0.521,"percentage_change":-17.8986544518},{"date":"2016-08-08","fuel":"gasoline","current_price":2.37575,"yoy_price":2.8488333333,"absolute_change":-0.4730833333,"percentage_change":-16.6062130697},{"date":"2016-08-15","fuel":"gasoline","current_price":2.3731666667,"yoy_price":2.9221666667,"absolute_change":-0.549,"percentage_change":-18.7874294188},{"date":"2016-08-22","fuel":"gasoline","current_price":2.41625,"yoy_price":2.8459166667,"absolute_change":-0.4296666667,"percentage_change":-15.0976545343},{"date":"2016-08-29","fuel":"gasoline","current_price":2.4548333333,"yoy_price":2.7256666667,"absolute_change":-0.2708333333,"percentage_change":-9.9364069952},{"date":"2016-09-05","fuel":"gasoline","current_price":2.4455833333,"yoy_price":2.6556666667,"absolute_change":-0.2100833333,"percentage_change":-7.9107568721},{"date":"2016-09-12","fuel":"gasoline","current_price":2.43125,"yoy_price":2.5951666667,"absolute_change":-0.1639166667,"percentage_change":-6.316228887},{"date":"2016-09-19","fuel":"gasoline","current_price":2.4525833333,"yoy_price":2.5485833333,"absolute_change":-0.096,"percentage_change":-3.7667985482},{"date":"2016-09-26","fuel":"gasoline","current_price":2.455,"yoy_price":2.5356666667,"absolute_change":-0.0806666667,"percentage_change":-3.1812803996},{"date":"2016-10-03","fuel":"gasoline","current_price":2.4759166667,"yoy_price":2.52875,"absolute_change":-0.0528333333,"percentage_change":-2.0893063108},{"date":"2016-10-10","fuel":"gasoline","current_price":2.5001666667,"yoy_price":2.5398333333,"absolute_change":-0.0396666667,"percentage_change":-1.5617822692},{"date":"2016-10-17","fuel":"gasoline","current_price":2.4879166667,"yoy_price":2.4845833333,"absolute_change":0.0033333333,"percentage_change":0.1341606574},{"date":"2016-10-24","fuel":"gasoline","current_price":2.4775833333,"yoy_price":2.4403333333,"absolute_change":0.03725,"percentage_change":1.5264308155},{"date":"2016-10-31","fuel":"gasoline","current_price":2.4675833333,"yoy_price":2.43425,"absolute_change":0.0333333333,"percentage_change":1.3693471637},{"date":"2016-11-07","fuel":"gasoline","current_price":2.4754166667,"yoy_price":2.45025,"absolute_change":0.0251666667,"percentage_change":1.0271060776},{"date":"2016-11-14","fuel":"gasoline","current_price":2.43125,"yoy_price":2.40075,"absolute_change":0.0305,"percentage_change":1.270436322},{"date":"2016-11-21","fuel":"gasoline","current_price":2.401,"yoy_price":2.3225,"absolute_change":0.0785,"percentage_change":3.3799784715},{"date":"2016-11-28","fuel":"gasoline","current_price":2.3985833333,"yoy_price":2.2930833333,"absolute_change":0.1055,"percentage_change":4.6007922375},{"date":"2016-12-05","fuel":"gasoline","current_price":2.449,"yoy_price":2.2871666667,"absolute_change":0.1618333333,"percentage_change":7.0757123078},{"date":"2016-12-12","fuel":"gasoline","current_price":2.4711666667,"yoy_price":2.2714166667,"absolute_change":0.19975,"percentage_change":8.7940712478},{"date":"2016-12-19","fuel":"gasoline","current_price":2.49825,"yoy_price":2.2659166667,"absolute_change":0.2323333333,"percentage_change":10.2533926667},{"date":"2016-12-26","fuel":"gasoline","current_price":2.5386666667,"yoy_price":2.2755,"absolute_change":0.2631666667,"percentage_change":11.5652237603},{"date":"2017-01-02","fuel":"gasoline","current_price":2.6046666667,"yoy_price":2.2711666667,"absolute_change":0.3335,"percentage_change":14.6840830704},{"date":"2017-01-09","fuel":"gasoline","current_price":2.61675,"yoy_price":2.2410833333,"absolute_change":0.3756666667,"percentage_change":16.76272636},{"date":"2017-01-16","fuel":"gasoline","current_price":2.58775,"yoy_price":2.15825,"absolute_change":0.4295,"percentage_change":19.9003822541},{"date":"2017-01-23","fuel":"gasoline","current_price":2.56,"yoy_price":2.1033333333,"absolute_change":0.4566666667,"percentage_change":21.7115689382},{"date":"2017-01-30","fuel":"gasoline","current_price":2.5350833333,"yoy_price":2.0665833333,"absolute_change":0.4685,"percentage_change":22.6702689625},{"date":"2017-02-06","fuel":"gasoline","current_price":2.5325,"yoy_price":2.0065,"absolute_change":0.526,"percentage_change":26.2148018938},{"date":"2017-02-13","fuel":"gasoline","current_price":2.54775,"yoy_price":1.9654166667,"absolute_change":0.5823333333,"percentage_change":29.629001484},{"date":"2017-02-20","fuel":"gasoline","current_price":2.5439166667,"yoy_price":1.9610833333,"absolute_change":0.5828333333,"percentage_change":29.7199677049},{"date":"2017-02-27","fuel":"gasoline","current_price":2.5585,"yoy_price":2.0085,"absolute_change":0.55,"percentage_change":27.3836196166},{"date":"2017-03-06","fuel":"gasoline","current_price":2.5819166667,"yoy_price":2.0591666667,"absolute_change":0.52275,"percentage_change":25.3864832052},{"date":"2017-03-13","fuel":"gasoline","current_price":2.5659166667,"yoy_price":2.1816666667,"absolute_change":0.38425,"percentage_change":17.6126814362},{"date":"2017-03-20","fuel":"gasoline","current_price":2.56525,"yoy_price":2.2295,"absolute_change":0.33575,"percentage_change":15.0594303656},{"date":"2017-03-27","fuel":"gasoline","current_price":2.5618333333,"yoy_price":2.29525,"absolute_change":0.2665833333,"percentage_change":11.6145663145},{"date":"2017-04-03","fuel":"gasoline","current_price":2.6004166667,"yoy_price":2.3093333333,"absolute_change":0.2910833333,"percentage_change":12.604647806},{"date":"2017-04-10","fuel":"gasoline","current_price":2.6600833333,"yoy_price":2.2985833333,"absolute_change":0.3615,"percentage_change":15.7270782728},{"date":"2017-04-17","fuel":"gasoline","current_price":2.6749166667,"yoy_price":2.3630833333,"absolute_change":0.3118333333,"percentage_change":13.1960362521},{"date":"2017-04-24","fuel":"gasoline","current_price":2.6858333333,"yoy_price":2.3878333333,"absolute_change":0.298,"percentage_change":12.4799329936},{"date":"2017-05-01","fuel":"gasoline","current_price":2.6525833333,"yoy_price":2.4613333333,"absolute_change":0.19125,"percentage_change":7.7701787649},{"date":"2017-05-08","fuel":"gasoline","current_price":2.61625,"yoy_price":2.448,"absolute_change":0.16825,"percentage_change":6.8729575163},{"date":"2017-05-15","fuel":"gasoline","current_price":2.6148333333,"yoy_price":2.4648333333,"absolute_change":0.15,"percentage_change":6.0856041653},{"date":"2017-05-22","fuel":"gasoline","current_price":2.64425,"yoy_price":2.5193333333,"absolute_change":0.1249166667,"percentage_change":4.9583223075},{"date":"2017-05-29","fuel":"gasoline","current_price":2.6515,"yoy_price":2.5528333333,"absolute_change":0.0986666667,"percentage_change":3.8649866162},{"date":"2017-06-05","fuel":"gasoline","current_price":2.6581666667,"yoy_price":2.5924166667,"absolute_change":0.06575,"percentage_change":2.5362435308},{"date":"2017-06-12","fuel":"gasoline","current_price":2.61375,"yoy_price":2.6095,"absolute_change":0.00425,"percentage_change":0.1628664495},{"date":"2017-06-19","fuel":"gasoline","current_price":2.5715,"yoy_price":2.57025,"absolute_change":0.00125,"percentage_change":0.0486334014},{"date":"2017-06-26","fuel":"gasoline","current_price":2.54175,"yoy_price":2.554,"absolute_change":-0.01225,"percentage_change":-0.4796397807},{"date":"2017-07-03","fuel":"gasoline","current_price":2.5163333333,"yoy_price":2.5216666667,"absolute_change":-0.0053333333,"percentage_change":-0.2115003305},{"date":"2017-07-10","fuel":"gasoline","current_price":2.5458333333,"yoy_price":2.48475,"absolute_change":0.0610833333,"percentage_change":2.4583291411},{"date":"2017-07-17","fuel":"gasoline","current_price":2.5284166667,"yoy_price":2.46225,"absolute_change":0.0661666667,"percentage_change":2.6872440518},{"date":"2017-07-24","fuel":"gasoline","current_price":2.5604166667,"yoy_price":2.4148333333,"absolute_change":0.1455833333,"percentage_change":6.0287114363},{"date":"2017-07-31","fuel":"gasoline","current_price":2.6000833333,"yoy_price":2.3898333333,"absolute_change":0.21025,"percentage_change":8.7976846363},{"date":"2017-08-07","fuel":"gasoline","current_price":2.62575,"yoy_price":2.37575,"absolute_change":0.25,"percentage_change":10.5229927391},{"date":"2017-08-14","fuel":"gasoline","current_price":2.6303333333,"yoy_price":2.3731666667,"absolute_change":0.2571666667,"percentage_change":10.8364351429},{"date":"2017-08-21","fuel":"gasoline","current_price":2.6093333333,"yoy_price":2.41625,"absolute_change":0.1930833333,"percentage_change":7.9910329367},{"date":"2017-08-28","fuel":"gasoline","current_price":2.6433333333,"yoy_price":2.4548333333,"absolute_change":0.1885,"percentage_change":7.678729038},{"date":"2017-09-04","fuel":"gasoline","current_price":2.92375,"yoy_price":2.4455833333,"absolute_change":0.4781666667,"percentage_change":19.5522540634},{"date":"2017-09-11","fuel":"gasoline","current_price":2.9299166667,"yoy_price":2.43125,"absolute_change":0.4986666667,"percentage_change":20.5107112254},{"date":"2017-09-18","fuel":"gasoline","current_price":2.8819166667,"yoy_price":2.4525833333,"absolute_change":0.4293333333,"percentage_change":17.5053515001},{"date":"2017-09-25","fuel":"gasoline","current_price":2.8330833333,"yoy_price":2.455,"absolute_change":0.3780833333,"percentage_change":15.4005431093},{"date":"2017-10-02","fuel":"gasoline","current_price":2.81325,"yoy_price":2.4759166667,"absolute_change":0.3373333333,"percentage_change":13.6245834876},{"date":"2017-10-09","fuel":"gasoline","current_price":2.7553333333,"yoy_price":2.5001666667,"absolute_change":0.2551666667,"percentage_change":10.2059862676},{"date":"2017-10-16","fuel":"gasoline","current_price":2.7374166667,"yoy_price":2.4879166667,"absolute_change":0.2495,"percentage_change":10.0284709429},{"date":"2017-10-23","fuel":"gasoline","current_price":2.7245,"yoy_price":2.4775833333,"absolute_change":0.2469166667,"percentage_change":9.9660287242},{"date":"2017-10-30","fuel":"gasoline","current_price":2.7345833333,"yoy_price":2.4675833333,"absolute_change":0.267,"percentage_change":10.8203032657},{"date":"2017-11-06","fuel":"gasoline","current_price":2.8086666667,"yoy_price":2.4754166667,"absolute_change":0.33325,"percentage_change":13.4623800707},{"date":"2017-11-13","fuel":"gasoline","current_price":2.8403333333,"yoy_price":2.43125,"absolute_change":0.4090833333,"percentage_change":16.8260497001},{"date":"2017-11-20","fuel":"gasoline","current_price":2.8186666667,"yoy_price":2.401,"absolute_change":0.4176666667,"percentage_change":17.3955296404},{"date":"2017-11-27","fuel":"gasoline","current_price":2.7854166667,"yoy_price":2.3985833333,"absolute_change":0.3868333333,"percentage_change":16.1275753049},{"date":"2017-12-04","fuel":"gasoline","current_price":2.75475,"yoy_price":2.449,"absolute_change":0.30575,"percentage_change":12.4846876276},{"date":"2017-12-11","fuel":"gasoline","current_price":2.7375833333,"yoy_price":2.4711666667,"absolute_change":0.2664166667,"percentage_change":10.7810076212},{"date":"2017-12-18","fuel":"gasoline","current_price":2.707,"yoy_price":2.49825,"absolute_change":0.20875,"percentage_change":8.3558490944},{"date":"2017-12-25","fuel":"gasoline","current_price":2.72575,"yoy_price":2.5386666667,"absolute_change":0.1870833333,"percentage_change":7.3693539916},{"date":"2018-01-01","fuel":"gasoline","current_price":2.7724166667,"yoy_price":2.6046666667,"absolute_change":0.16775,"percentage_change":6.4403634502},{"date":"2018-01-08","fuel":"gasoline","current_price":2.77875,"yoy_price":2.61675,"absolute_change":0.162,"percentage_change":6.1908856406},{"date":"2018-01-15","fuel":"gasoline","current_price":2.8083333333,"yoy_price":2.58775,"absolute_change":0.2205833333,"percentage_change":8.5241361543},{"date":"2018-01-22","fuel":"gasoline","current_price":2.8210833333,"yoy_price":2.56,"absolute_change":0.2610833333,"percentage_change":10.1985677083},{"date":"2018-01-29","fuel":"gasoline","current_price":2.8610833333,"yoy_price":2.5350833333,"absolute_change":0.326,"percentage_change":12.8595378193},{"date":"2018-02-05","fuel":"gasoline","current_price":2.8919166667,"yoy_price":2.5325,"absolute_change":0.3594166667,"percentage_change":14.1921684765},{"date":"2018-02-12","fuel":"gasoline","current_price":2.8649166667,"yoy_price":2.54775,"absolute_change":0.3171666667,"percentage_change":12.4488928139},{"date":"2018-02-19","fuel":"gasoline","current_price":2.8209166667,"yoy_price":2.5439166667,"absolute_change":0.277,"percentage_change":10.8887214597},{"date":"2018-02-26","fuel":"gasoline","current_price":2.81125,"yoy_price":2.5585,"absolute_change":0.25275,"percentage_change":9.878835255},{"date":"2018-03-05","fuel":"gasoline","current_price":2.8225833333,"yoy_price":2.5819166667,"absolute_change":0.2406666667,"percentage_change":9.3212406804},{"date":"2018-03-12","fuel":"gasoline","current_price":2.8216666667,"yoy_price":2.5659166667,"absolute_change":0.25575,"percentage_change":9.9671982073},{"date":"2018-03-19","fuel":"gasoline","current_price":2.8598333333,"yoy_price":2.56525,"absolute_change":0.2945833333,"percentage_change":11.483611084},{"date":"2018-03-26","fuel":"gasoline","current_price":2.9085833333,"yoy_price":2.5618333333,"absolute_change":0.34675,"percentage_change":13.5352286774},{"date":"2018-04-02","fuel":"gasoline","current_price":2.96025,"yoy_price":2.6004166667,"absolute_change":0.3598333333,"percentage_change":13.8375260375},{"date":"2018-04-09","fuel":"gasoline","current_price":2.9554166667,"yoy_price":2.6600833333,"absolute_change":0.2953333333,"percentage_change":11.1024090724},{"date":"2018-04-16","fuel":"gasoline","current_price":3.00425,"yoy_price":2.6749166667,"absolute_change":0.3293333333,"percentage_change":12.3119100283},{"date":"2018-04-23","fuel":"gasoline","current_price":3.0555833333,"yoy_price":2.6858333333,"absolute_change":0.36975,"percentage_change":13.766677009},{"date":"2018-04-30","fuel":"gasoline","current_price":3.1013333333,"yoy_price":2.6525833333,"absolute_change":0.44875,"percentage_change":16.9174703905},{"date":"2018-05-07","fuel":"gasoline","current_price":3.10325,"yoy_price":2.61625,"absolute_change":0.487,"percentage_change":18.6144290492},{"date":"2018-05-14","fuel":"gasoline","current_price":3.1435833333,"yoy_price":2.6148333333,"absolute_change":0.52875,"percentage_change":20.221174071},{"date":"2018-05-21","fuel":"gasoline","current_price":3.1908333333,"yoy_price":2.64425,"absolute_change":0.5465833333,"percentage_change":20.6706375469},{"date":"2018-05-28","fuel":"gasoline","current_price":3.2299166667,"yoy_price":2.6515,"absolute_change":0.5784166667,"percentage_change":21.814696084},{"date":"2018-06-04","fuel":"gasoline","current_price":3.2145833333,"yoy_price":2.6581666667,"absolute_change":0.5564166667,"percentage_change":20.9323468556},{"date":"2018-06-11","fuel":"gasoline","current_price":3.1860833333,"yoy_price":2.61375,"absolute_change":0.5723333333,"percentage_change":21.8970189702},{"date":"2018-06-18","fuel":"gasoline","current_price":3.1563333333,"yoy_price":2.5715,"absolute_change":0.5848333333,"percentage_change":22.7428867717},{"date":"2018-06-25","fuel":"gasoline","current_price":3.1141666667,"yoy_price":2.54175,"absolute_change":0.5724166667,"percentage_change":22.520573096},{"date":"2018-07-02","fuel":"gasoline","current_price":3.1225,"yoy_price":2.5163333333,"absolute_change":0.6061666667,"percentage_change":24.0892833488},{"date":"2018-07-09","fuel":"gasoline","current_price":3.1355,"yoy_price":2.5458333333,"absolute_change":0.5896666667,"percentage_change":23.1620294599},{"date":"2018-07-16","fuel":"gasoline","current_price":3.1366666667,"yoy_price":2.5284166667,"absolute_change":0.60825,"percentage_change":24.0565571339},{"date":"2018-07-23","fuel":"gasoline","current_price":3.1070833333,"yoy_price":2.5604166667,"absolute_change":0.5466666667,"percentage_change":21.3506916192},{"date":"2018-07-30","fuel":"gasoline","current_price":3.1183333333,"yoy_price":2.6000833333,"absolute_change":0.51825,"percentage_change":19.9320534598},{"date":"2018-08-06","fuel":"gasoline","current_price":3.1210833333,"yoy_price":2.62575,"absolute_change":0.4953333333,"percentage_change":18.8644514266},{"date":"2018-08-13","fuel":"gasoline","current_price":3.11275,"yoy_price":2.6303333333,"absolute_change":0.4824166667,"percentage_change":18.3405145102},{"date":"2018-08-20","fuel":"gasoline","current_price":3.0929166667,"yoy_price":2.6093333333,"absolute_change":0.4835833333,"percentage_change":18.5328308636},{"date":"2018-08-27","fuel":"gasoline","current_price":3.09825,"yoy_price":2.6433333333,"absolute_change":0.4549166667,"percentage_change":17.209962169},{"date":"2018-09-03","fuel":"gasoline","current_price":3.0974166667,"yoy_price":2.92375,"absolute_change":0.1736666667,"percentage_change":5.9398603392},{"date":"2018-09-10","fuel":"gasoline","current_price":3.1075833333,"yoy_price":2.9299166667,"absolute_change":0.1776666667,"percentage_change":6.0638812253},{"date":"2018-09-17","fuel":"gasoline","current_price":3.1165,"yoy_price":2.8819166667,"absolute_change":0.2345833333,"percentage_change":8.1398374924},{"date":"2018-09-24","fuel":"gasoline","current_price":3.11675,"yoy_price":2.8330833333,"absolute_change":0.2836666667,"percentage_change":10.0126481748},{"date":"2018-10-01","fuel":"gasoline","current_price":3.14475,"yoy_price":2.81325,"absolute_change":0.3315,"percentage_change":11.7835243935},{"date":"2018-10-08","fuel":"gasoline","current_price":3.1826666667,"yoy_price":2.7553333333,"absolute_change":0.4273333333,"percentage_change":15.5093152674},{"date":"2018-10-15","fuel":"gasoline","current_price":3.1639166667,"yoy_price":2.7374166667,"absolute_change":0.4265,"percentage_change":15.5803829645},{"date":"2018-10-22","fuel":"gasoline","current_price":3.13325,"yoy_price":2.7245,"absolute_change":0.40875,"percentage_change":15.0027527987},{"date":"2018-10-29","fuel":"gasoline","current_price":3.10525,"yoy_price":2.7345833333,"absolute_change":0.3706666667,"percentage_change":13.5547767789},{"date":"2018-11-05","fuel":"gasoline","current_price":3.0535,"yoy_price":2.8086666667,"absolute_change":0.2448333333,"percentage_change":8.7170662236},{"date":"2018-11-12","fuel":"gasoline","current_price":2.9895833333,"yoy_price":2.8403333333,"absolute_change":0.14925,"percentage_change":5.2546649454},{"date":"2018-11-19","fuel":"gasoline","current_price":2.9201666667,"yoy_price":2.8186666667,"absolute_change":0.1015,"percentage_change":3.6009933775},{"date":"2018-11-26","fuel":"gasoline","current_price":2.8581666667,"yoy_price":2.7854166667,"absolute_change":0.07275,"percentage_change":2.6118175019},{"date":"2018-12-03","fuel":"gasoline","current_price":2.7746666667,"yoy_price":2.75475,"absolute_change":0.0199166667,"percentage_change":0.7229936171},{"date":"2018-12-10","fuel":"gasoline","current_price":2.7373333333,"yoy_price":2.7375833333,"absolute_change":-0.00025,"percentage_change":-0.0091321421},{"date":"2018-12-17","fuel":"gasoline","current_price":2.6884166667,"yoy_price":2.707,"absolute_change":-0.0185833333,"percentage_change":-0.6864918114},{"date":"2018-12-24","fuel":"gasoline","current_price":2.6433333333,"yoy_price":2.72575,"absolute_change":-0.0824166667,"percentage_change":-3.0236326393},{"date":"2018-12-31","fuel":"gasoline","current_price":2.5909166667,"yoy_price":2.7724166667,"absolute_change":-0.1815,"percentage_change":-6.5466350056},{"date":"2019-01-07","fuel":"gasoline","current_price":2.5606666667,"yoy_price":2.77875,"absolute_change":-0.2180833333,"percentage_change":-7.8482531114},{"date":"2019-01-14","fuel":"gasoline","current_price":2.564,"yoy_price":2.8083333333,"absolute_change":-0.2443333333,"percentage_change":-8.7002967359},{"date":"2019-01-21","fuel":"gasoline","current_price":2.56425,"yoy_price":2.8210833333,"absolute_change":-0.2568333333,"percentage_change":-9.1040675863},{"date":"2019-01-28","fuel":"gasoline","current_price":2.5623333333,"yoy_price":2.8610833333,"absolute_change":-0.29875,"percentage_change":-10.44184895},{"date":"2019-02-04","fuel":"gasoline","current_price":2.5584166667,"yoy_price":2.8919166667,"absolute_change":-0.3335,"percentage_change":-11.532144195},{"date":"2019-02-11","fuel":"gasoline","current_price":2.57625,"yoy_price":2.8649166667,"absolute_change":-0.2886666667,"percentage_change":-10.0759184386},{"date":"2019-02-18","fuel":"gasoline","current_price":2.6099166667,"yoy_price":2.8209166667,"absolute_change":-0.211,"percentage_change":-7.4798381141},{"date":"2019-02-25","fuel":"gasoline","current_price":2.6711666667,"yoy_price":2.81125,"absolute_change":-0.1400833333,"percentage_change":-4.9829553876},{"date":"2019-03-04","fuel":"gasoline","current_price":2.6981666667,"yoy_price":2.8225833333,"absolute_change":-0.1244166667,"percentage_change":-4.4079005639},{"date":"2019-03-11","fuel":"gasoline","current_price":2.74175,"yoy_price":2.8216666667,"absolute_change":-0.0799166667,"percentage_change":-2.832250443},{"date":"2019-03-18","fuel":"gasoline","current_price":2.8166666667,"yoy_price":2.8598333333,"absolute_change":-0.0431666667,"percentage_change":-1.5094119704},{"date":"2019-03-25","fuel":"gasoline","current_price":2.8960833333,"yoy_price":2.9085833333,"absolute_change":-0.0125,"percentage_change":-0.4297624846},{"date":"2019-04-01","fuel":"gasoline","current_price":2.9681666667,"yoy_price":2.96025,"absolute_change":0.0079166667,"percentage_change":0.2674323678},{"date":"2019-04-08","fuel":"gasoline","current_price":3.0340833333,"yoy_price":2.9554166667,"absolute_change":0.0786666667,"percentage_change":2.6617792189},{"date":"2019-04-15","fuel":"gasoline","current_price":3.1266666667,"yoy_price":3.00425,"absolute_change":0.1224166667,"percentage_change":4.0747829464},{"date":"2019-04-22","fuel":"gasoline","current_price":3.14875,"yoy_price":3.0555833333,"absolute_change":0.0931666667,"percentage_change":3.0490631903},{"date":"2019-04-29","fuel":"gasoline","current_price":3.19725,"yoy_price":3.1013333333,"absolute_change":0.0959166667,"percentage_change":3.092755804},{"date":"2019-05-06","fuel":"gasoline","current_price":3.21075,"yoy_price":3.10325,"absolute_change":0.1075,"percentage_change":3.464110207},{"date":"2019-05-13","fuel":"gasoline","current_price":3.1830833333,"yoy_price":3.1435833333,"absolute_change":0.0395,"percentage_change":1.2565278477},{"date":"2019-05-20","fuel":"gasoline","current_price":3.1685,"yoy_price":3.1908333333,"absolute_change":-0.0223333333,"percentage_change":-0.6999216506},{"date":"2019-05-27","fuel":"gasoline","current_price":3.1375833333,"yoy_price":3.2299166667,"absolute_change":-0.0923333333,"percentage_change":-2.8586908847},{"date":"2019-06-03","fuel":"gasoline","current_price":3.1171666667,"yoy_price":3.2145833333,"absolute_change":-0.0974166667,"percentage_change":-3.0304601426},{"date":"2019-06-10","fuel":"gasoline","current_price":3.0486666667,"yoy_price":3.1860833333,"absolute_change":-0.1374166667,"percentage_change":-4.3130280124},{"date":"2019-06-17","fuel":"gasoline","current_price":2.99025,"yoy_price":3.1563333333,"absolute_change":-0.1660833333,"percentage_change":-5.2619072764},{"date":"2019-06-24","fuel":"gasoline","current_price":2.9665,"yoy_price":3.1141666667,"absolute_change":-0.1476666667,"percentage_change":-4.7417714744},{"date":"2019-07-01","fuel":"gasoline","current_price":3.01575,"yoy_price":3.1225,"absolute_change":-0.10675,"percentage_change":-3.418734988},{"date":"2019-07-08","fuel":"gasoline","current_price":3.0401666667,"yoy_price":3.1355,"absolute_change":-0.0953333333,"percentage_change":-3.0404507521},{"date":"2019-07-15","fuel":"gasoline","current_price":3.0685833333,"yoy_price":3.1366666667,"absolute_change":-0.0680833333,"percentage_change":-2.1705632306},{"date":"2019-07-22","fuel":"gasoline","current_price":3.0430833333,"yoy_price":3.1070833333,"absolute_change":-0.064,"percentage_change":-2.0598095749},{"date":"2019-07-29","fuel":"gasoline","current_price":3.0111666667,"yoy_price":3.1183333333,"absolute_change":-0.1071666667,"percentage_change":-3.4366648851},{"date":"2019-08-05","fuel":"gasoline","current_price":2.987,"yoy_price":3.1210833333,"absolute_change":-0.1340833333,"percentage_change":-4.2960510507},{"date":"2019-08-12","fuel":"gasoline","current_price":2.9296666667,"yoy_price":3.11275,"absolute_change":-0.1830833333,"percentage_change":-5.8817230209},{"date":"2019-08-19","fuel":"gasoline","current_price":2.9025833333,"yoy_price":3.0929166667,"absolute_change":-0.1903333333,"percentage_change":-6.1538461538},{"date":"2019-08-26","fuel":"gasoline","current_price":2.883,"yoy_price":3.09825,"absolute_change":-0.21525,"percentage_change":-6.9474703462},{"date":"2019-09-02","fuel":"gasoline","current_price":2.8750833333,"yoy_price":3.0974166667,"absolute_change":-0.2223333333,"percentage_change":-7.178024698},{"date":"2019-09-09","fuel":"gasoline","current_price":2.8625833333,"yoy_price":3.1075833333,"absolute_change":-0.245,"percentage_change":-7.8839398246},{"date":"2019-09-16","fuel":"gasoline","current_price":2.86325,"yoy_price":3.1165,"absolute_change":-0.25325,"percentage_change":-8.1261030002},{"date":"2019-09-23","fuel":"gasoline","current_price":2.9605,"yoy_price":3.11675,"absolute_change":-0.15625,"percentage_change":-5.0132349402},{"date":"2019-09-30","fuel":"gasoline","current_price":2.98525,"yoy_price":3.14475,"absolute_change":-0.1595,"percentage_change":-5.0719453057},{"date":"2019-10-07","fuel":"gasoline","current_price":2.9979166667,"yoy_price":3.1826666667,"absolute_change":-0.18475,"percentage_change":-5.8048806033},{"date":"2019-10-14","fuel":"gasoline","current_price":2.985,"yoy_price":3.1639166667,"absolute_change":-0.1789166667,"percentage_change":-5.6549108436},{"date":"2019-10-21","fuel":"gasoline","current_price":2.9860833333,"yoy_price":3.13325,"absolute_change":-0.1471666667,"percentage_change":-4.6969334291},{"date":"2019-10-28","fuel":"gasoline","current_price":2.94375,"yoy_price":3.10525,"absolute_change":-0.1615,"percentage_change":-5.2008694952},{"date":"2019-11-04","fuel":"gasoline","current_price":2.9556666667,"yoy_price":3.0535,"absolute_change":-0.0978333333,"percentage_change":-3.2039735822},{"date":"2019-11-11","fuel":"gasoline","current_price":2.9631666667,"yoy_price":2.9895833333,"absolute_change":-0.0264166667,"percentage_change":-0.8836236934},{"date":"2019-11-18","fuel":"gasoline","current_price":2.9349166667,"yoy_price":2.9201666667,"absolute_change":0.01475,"percentage_change":0.5051081559},{"date":"2019-11-25","fuel":"gasoline","current_price":2.9135833333,"yoy_price":2.8581666667,"absolute_change":0.0554166667,"percentage_change":1.9388885649},{"date":"2019-12-02","fuel":"gasoline","current_price":2.8996666667,"yoy_price":2.7746666667,"absolute_change":0.125,"percentage_change":4.5050456511},{"date":"2019-12-09","fuel":"gasoline","current_price":2.88125,"yoy_price":2.7373333333,"absolute_change":0.1439166667,"percentage_change":5.2575499269},{"date":"2019-12-16","fuel":"gasoline","current_price":2.8563333333,"yoy_price":2.6884166667,"absolute_change":0.1679166667,"percentage_change":6.2459316202},{"date":"2019-12-23","fuel":"gasoline","current_price":2.8466666667,"yoy_price":2.6433333333,"absolute_change":0.2033333333,"percentage_change":7.6923076923},{"date":"2019-12-30","fuel":"gasoline","current_price":2.8751666667,"yoy_price":2.5909166667,"absolute_change":0.28425,"percentage_change":10.9710205526},{"date":"2020-01-06","fuel":"gasoline","current_price":2.8808333333,"yoy_price":2.5606666667,"absolute_change":0.3201666667,"percentage_change":12.5032543608},{"date":"2020-01-13","fuel":"gasoline","current_price":2.87475,"yoy_price":2.564,"absolute_change":0.31075,"percentage_change":12.1197347894},{"date":"2020-01-20","fuel":"gasoline","current_price":2.8461666667,"yoy_price":2.56425,"absolute_change":0.2819166667,"percentage_change":10.9941178382},{"date":"2020-01-27","fuel":"gasoline","current_price":2.8190833333,"yoy_price":2.5623333333,"absolute_change":0.25675,"percentage_change":10.0201639131},{"date":"2020-02-03","fuel":"gasoline","current_price":2.7765,"yoy_price":2.5584166667,"absolute_change":0.2180833333,"percentage_change":8.5241523077},{"date":"2020-02-10","fuel":"gasoline","current_price":2.7435833333,"yoy_price":2.57625,"absolute_change":0.1673333333,"percentage_change":6.4952288533},{"date":"2020-02-17","fuel":"gasoline","current_price":2.74575,"yoy_price":2.6099166667,"absolute_change":0.1358333333,"percentage_change":5.2045084454},{"date":"2020-02-24","fuel":"gasoline","current_price":2.7789166667,"yoy_price":2.6711666667,"absolute_change":0.10775,"percentage_change":4.0338179322},{"date":"2020-03-02","fuel":"gasoline","current_price":2.7453333333,"yoy_price":2.6981666667,"absolute_change":0.0471666667,"percentage_change":1.7481005621},{"date":"2020-03-09","fuel":"gasoline","current_price":2.7021666667,"yoy_price":2.74175,"absolute_change":-0.0395833333,"percentage_change":-1.4437251147},{"date":"2020-03-16","fuel":"gasoline","current_price":2.58475,"yoy_price":2.8166666667,"absolute_change":-0.2319166667,"percentage_change":-8.2337278107},{"date":"2020-03-23","fuel":"gasoline","current_price":2.4628333333,"yoy_price":2.8960833333,"absolute_change":-0.43325,"percentage_change":-14.9598595805},{"date":"2020-03-30","fuel":"gasoline","current_price":2.355,"yoy_price":2.9681666667,"absolute_change":-0.6131666667,"percentage_change":-20.658094222},{"date":"2020-04-06","fuel":"gasoline","current_price":2.2745833333,"yoy_price":3.0340833333,"absolute_change":-0.7595,"percentage_change":-25.0322722404},{"date":"2020-04-13","fuel":"gasoline","current_price":2.20125,"yoy_price":3.1266666667,"absolute_change":-0.9254166667,"percentage_change":-29.5975479744},{"date":"2020-04-20","fuel":"gasoline","current_price":2.1604166667,"yoy_price":3.14875,"absolute_change":-0.9883333333,"percentage_change":-31.3881169776},{"date":"2020-04-27","fuel":"gasoline","current_price":2.11725,"yoy_price":3.19725,"absolute_change":-1.08,"percentage_change":-33.7790288529},{"date":"2020-05-04","fuel":"gasoline","current_price":2.1213333333,"yoy_price":3.21075,"absolute_change":-1.0894166667,"percentage_change":-33.9302862779},{"date":"2020-05-11","fuel":"gasoline","current_price":2.1696666667,"yoy_price":3.1830833333,"absolute_change":-1.0134166667,"percentage_change":-31.8375788675},{"date":"2020-05-18","fuel":"gasoline","current_price":2.1990833333,"yoy_price":3.1685,"absolute_change":-0.9694166667,"percentage_change":-30.5954447425},{"date":"2020-05-25","fuel":"gasoline","current_price":2.2720833333,"yoy_price":3.1375833333,"absolute_change":-0.8655,"percentage_change":-27.5849247032},{"date":"2020-06-01","fuel":"gasoline","current_price":2.2890833333,"yoy_price":3.1171666667,"absolute_change":-0.8280833333,"percentage_change":-26.5652569107},{"date":"2020-06-08","fuel":"gasoline","current_price":2.344,"yoy_price":3.0486666667,"absolute_change":-0.7046666667,"percentage_change":-23.1139295867},{"date":"2020-06-15","fuel":"gasoline","current_price":2.4030833333,"yoy_price":2.99025,"absolute_change":-0.5871666667,"percentage_change":-19.6360393501},{"date":"2020-06-22","fuel":"gasoline","current_price":2.43225,"yoy_price":2.9665,"absolute_change":-0.53425,"percentage_change":-18.0094387325},{"date":"2020-06-29","fuel":"gasoline","current_price":2.4748333333,"yoy_price":3.01575,"absolute_change":-0.5409166667,"percentage_change":-17.9363895106},{"date":"2020-07-06","fuel":"gasoline","current_price":2.48025,"yoy_price":3.0401666667,"absolute_change":-0.5599166667,"percentage_change":-18.417301683},{"date":"2020-07-13","fuel":"gasoline","current_price":2.49975,"yoy_price":3.0685833333,"absolute_change":-0.5688333333,"percentage_change":-18.537327214},{"date":"2020-07-20","fuel":"gasoline","current_price":2.4939166667,"yoy_price":3.0430833333,"absolute_change":-0.5491666667,"percentage_change":-18.0463893529},{"date":"2020-07-27","fuel":"gasoline","current_price":2.4895,"yoy_price":3.0111666667,"absolute_change":-0.5216666667,"percentage_change":-17.3244036088},{"date":"2020-08-03","fuel":"gasoline","current_price":2.49,"yoy_price":2.987,"absolute_change":-0.497,"percentage_change":-16.6387679946},{"date":"2020-08-10","fuel":"gasoline","current_price":2.4801666667,"yoy_price":2.9296666667,"absolute_change":-0.4495,"percentage_change":-15.3430424394},{"date":"2020-08-17","fuel":"gasoline","current_price":2.4823333333,"yoy_price":2.9025833333,"absolute_change":-0.42025,"percentage_change":-14.4784818122},{"date":"2020-08-24","fuel":"gasoline","current_price":2.498,"yoy_price":2.883,"absolute_change":-0.385,"percentage_change":-13.3541449879},{"date":"2020-08-31","fuel":"gasoline","current_price":2.5341666667,"yoy_price":2.8750833333,"absolute_change":-0.3409166667,"percentage_change":-11.8576273152},{"date":"2020-09-07","fuel":"gasoline","current_price":2.5275,"yoy_price":2.8625833333,"absolute_change":-0.3350833333,"percentage_change":-11.7056272015},{"date":"2020-09-14","fuel":"gasoline","current_price":2.5030833333,"yoy_price":2.86325,"absolute_change":-0.3601666667,"percentage_change":-12.5789458366},{"date":"2020-09-21","fuel":"gasoline","current_price":2.4869166667,"yoy_price":2.9605,"absolute_change":-0.4735833333,"percentage_change":-15.9967347858},{"date":"2020-09-28","fuel":"gasoline","current_price":2.4848333333,"yoy_price":2.98525,"absolute_change":-0.5004166667,"percentage_change":-16.7629735086},{"date":"2020-10-05","fuel":"gasoline","current_price":2.4865,"yoy_price":2.9979166667,"absolute_change":-0.5114166667,"percentage_change":-17.0590687978},{"date":"2020-10-12","fuel":"gasoline","current_price":2.4828333333,"yoy_price":2.985,"absolute_change":-0.5021666667,"percentage_change":-16.8230039084},{"date":"2020-10-19","fuel":"gasoline","current_price":2.4681666667,"yoy_price":2.9860833333,"absolute_change":-0.5179166667,"percentage_change":-17.3443473893},{"date":"2020-10-26","fuel":"gasoline","current_price":2.4629166667,"yoy_price":2.94375,"absolute_change":-0.4808333333,"percentage_change":-16.3340410474},{"date":"2020-11-02","fuel":"gasoline","current_price":2.436,"yoy_price":2.9556666667,"absolute_change":-0.5196666667,"percentage_change":-17.5820457878},{"date":"2020-11-09","fuel":"gasoline","current_price":2.42075,"yoy_price":2.9631666667,"absolute_change":-0.5424166667,"percentage_change":-18.3053040103},{"date":"2020-11-16","fuel":"gasoline","current_price":2.4341666667,"yoy_price":2.9349166667,"absolute_change":-0.50075,"percentage_change":-17.0618132258},{"date":"2020-11-23","fuel":"gasoline","current_price":2.4274166667,"yoy_price":2.9135833333,"absolute_change":-0.4861666667,"percentage_change":-16.6862111375},{"date":"2020-11-30","fuel":"gasoline","current_price":2.443,"yoy_price":2.8996666667,"absolute_change":-0.4566666667,"percentage_change":-15.7489366594},{"date":"2020-12-07","fuel":"gasoline","current_price":2.4734166667,"yoy_price":2.88125,"absolute_change":-0.4078333333,"percentage_change":-14.154736081},{"date":"2020-12-14","fuel":"gasoline","current_price":2.4745,"yoy_price":2.8563333333,"absolute_change":-0.3818333333,"percentage_change":-13.3679542537},{"date":"2020-12-21","fuel":"gasoline","current_price":2.5308333333,"yoy_price":2.8466666667,"absolute_change":-0.3158333333,"percentage_change":-11.0948477752},{"date":"2020-12-28","fuel":"gasoline","current_price":2.5481666667,"yoy_price":2.8751666667,"absolute_change":-0.327,"percentage_change":-11.3732537244},{"date":"2021-01-04","fuel":"gasoline","current_price":2.5546666667,"yoy_price":2.8808333333,"absolute_change":-0.3261666667,"percentage_change":-11.3219554527},{"date":"2021-01-11","fuel":"gasoline","current_price":2.6196666667,"yoy_price":2.87475,"absolute_change":-0.2550833333,"percentage_change":-8.8732353538},{"date":"2021-01-18","fuel":"gasoline","current_price":2.6805,"yoy_price":2.8461666667,"absolute_change":-0.1656666667,"percentage_change":-5.8206945014},{"date":"2021-01-25","fuel":"gasoline","current_price":2.6963333333,"yoy_price":2.8190833333,"absolute_change":-0.12275,"percentage_change":-4.3542522688},{"date":"2021-02-01","fuel":"gasoline","current_price":2.7136666667,"yoy_price":2.7765,"absolute_change":-0.0628333333,"percentage_change":-2.2630409989},{"date":"2021-02-08","fuel":"gasoline","current_price":2.76625,"yoy_price":2.7435833333,"absolute_change":0.0226666667,"percentage_change":0.8261701546},{"date":"2021-02-15","fuel":"gasoline","current_price":2.8070833333,"yoy_price":2.74575,"absolute_change":0.0613333333,"percentage_change":2.2337551974},{"date":"2021-02-22","fuel":"gasoline","current_price":2.9301666667,"yoy_price":2.7789166667,"absolute_change":0.15125,"percentage_change":5.4427684649},{"date":"2021-03-01","fuel":"gasoline","current_price":3.0103333333,"yoy_price":2.7453333333,"absolute_change":0.265,"percentage_change":9.6527440505},{"date":"2021-03-08","fuel":"gasoline","current_price":3.0729166667,"yoy_price":2.7021666667,"absolute_change":0.37075,"percentage_change":13.7204712268},{"date":"2021-03-15","fuel":"gasoline","current_price":3.1585,"yoy_price":2.58475,"absolute_change":0.57375,"percentage_change":22.1975045943},{"date":"2021-03-22","fuel":"gasoline","current_price":3.1751666667,"yoy_price":2.4628333333,"absolute_change":0.7123333333,"percentage_change":28.9233267916},{"date":"2021-03-29","fuel":"gasoline","current_price":3.1625833333,"yoy_price":2.355,"absolute_change":0.8075833333,"percentage_change":34.2922859165},{"date":"2021-04-05","fuel":"gasoline","current_price":3.16725,"yoy_price":2.2745833333,"absolute_change":0.8926666667,"percentage_change":39.2452830189},{"date":"2021-04-12","fuel":"gasoline","current_price":3.1645833333,"yoy_price":2.20125,"absolute_change":0.9633333333,"percentage_change":43.7630134393},{"date":"2021-04-19","fuel":"gasoline","current_price":3.172,"yoy_price":2.1604166667,"absolute_change":1.0115833333,"percentage_change":46.8235294118},{"date":"2021-04-26","fuel":"gasoline","current_price":3.1914166667,"yoy_price":2.11725,"absolute_change":1.0741666667,"percentage_change":50.7340496714},{"date":"2021-05-03","fuel":"gasoline","current_price":3.2116666667,"yoy_price":2.1213333333,"absolute_change":1.0903333333,"percentage_change":51.3984915148},{"date":"2021-05-10","fuel":"gasoline","current_price":3.2814166667,"yoy_price":2.1696666667,"absolute_change":1.11175,"percentage_change":51.2405899524},{"date":"2021-05-17","fuel":"gasoline","current_price":3.34575,"yoy_price":2.1990833333,"absolute_change":1.1466666667,"percentage_change":52.1429383455},{"date":"2021-05-24","fuel":"gasoline","current_price":3.34525,"yoy_price":2.2720833333,"absolute_change":1.0731666667,"percentage_change":47.2327159362},{"date":"2021-05-31","fuel":"gasoline","current_price":3.35275,"yoy_price":2.2890833333,"absolute_change":1.0636666667,"percentage_change":46.4669263533},{"date":"2021-06-07","fuel":"gasoline","current_price":3.3636666667,"yoy_price":2.344,"absolute_change":1.0196666667,"percentage_change":43.5011376564},{"date":"2021-06-14","fuel":"gasoline","current_price":3.39425,"yoy_price":2.4030833333,"absolute_change":0.9911666667,"percentage_change":41.245621944},{"date":"2021-06-21","fuel":"gasoline","current_price":3.3904166667,"yoy_price":2.43225,"absolute_change":0.9581666667,"percentage_change":39.3942508651},{"date":"2021-06-28","fuel":"gasoline","current_price":3.4235,"yoy_price":2.4748333333,"absolute_change":0.9486666667,"percentage_change":38.3325476463},{"date":"2021-07-05","fuel":"gasoline","current_price":3.4525833333,"yoy_price":2.48025,"absolute_change":0.9723333333,"percentage_change":39.2030373282},{"date":"2021-07-12","fuel":"gasoline","current_price":3.4655,"yoy_price":2.49975,"absolute_change":0.96575,"percentage_change":38.6338633863},{"date":"2021-07-19","fuel":"gasoline","current_price":3.4844166667,"yoy_price":2.4939166667,"absolute_change":0.9905,"percentage_change":39.7166438333},{"date":"2021-07-26","fuel":"gasoline","current_price":3.4724166667,"yoy_price":2.4895,"absolute_change":0.9829166667,"percentage_change":39.4824931378},{"date":"2021-08-02","fuel":"gasoline","current_price":3.4996666667,"yoy_price":2.49,"absolute_change":1.0096666667,"percentage_change":40.5488621151},{"date":"2021-08-09","fuel":"gasoline","current_price":3.5111666667,"yoy_price":2.4801666667,"absolute_change":1.031,"percentage_change":41.5697869767},{"date":"2021-08-16","fuel":"gasoline","current_price":3.51675,"yoy_price":2.4823333333,"absolute_change":1.0344166667,"percentage_change":41.671142742},{"date":"2021-08-23","fuel":"gasoline","current_price":3.4896666667,"yoy_price":2.498,"absolute_change":0.9916666667,"percentage_change":39.698425407},{"date":"2021-08-30","fuel":"gasoline","current_price":3.4851666667,"yoy_price":2.5341666667,"absolute_change":0.951,"percentage_change":37.5271292338},{"date":"2021-09-06","fuel":"gasoline","current_price":3.5165833333,"yoy_price":2.5275,"absolute_change":0.9890833333,"percentage_change":39.1328717441},{"date":"2021-09-13","fuel":"gasoline","current_price":3.5061666667,"yoy_price":2.5030833333,"absolute_change":1.0030833333,"percentage_change":40.0739088458},{"date":"2021-09-20","fuel":"gasoline","current_price":3.5210833333,"yoy_price":2.4869166667,"absolute_change":1.0341666667,"percentage_change":41.5842911235},{"date":"2021-09-27","fuel":"gasoline","current_price":3.5143333333,"yoy_price":2.4848333333,"absolute_change":1.0295,"percentage_change":41.4313501912},{"date":"2021-10-04","fuel":"gasoline","current_price":3.5270833333,"yoy_price":2.4865,"absolute_change":1.0405833333,"percentage_change":41.8493196595},{"date":"2021-10-11","fuel":"gasoline","current_price":3.5971666667,"yoy_price":2.4828333333,"absolute_change":1.1143333333,"percentage_change":44.8815197691},{"date":"2021-10-18","fuel":"gasoline","current_price":3.65275,"yoy_price":2.4681666667,"absolute_change":1.1845833333,"percentage_change":47.9944628267},{"date":"2021-10-25","fuel":"gasoline","current_price":3.7156666667,"yoy_price":2.4629166667,"absolute_change":1.25275,"percentage_change":50.864489934},{"date":"2021-11-01","fuel":"gasoline","current_price":3.7273333333,"yoy_price":2.436,"absolute_change":1.2913333333,"percentage_change":53.0103995621},{"date":"2021-11-08","fuel":"gasoline","current_price":3.7481666667,"yoy_price":2.42075,"absolute_change":1.3274166667,"percentage_change":54.8349340769},{"date":"2021-11-15","fuel":"gasoline","current_price":3.7454166667,"yoy_price":2.4341666667,"absolute_change":1.31125,"percentage_change":53.8685381719},{"date":"2021-11-22","fuel":"gasoline","current_price":3.74575,"yoy_price":2.4274166667,"absolute_change":1.3183333333,"percentage_change":54.3101376635},{"date":"2021-11-29","fuel":"gasoline","current_price":3.7333333333,"yoy_price":2.443,"absolute_change":1.2903333333,"percentage_change":52.817574021},{"date":"2021-12-06","fuel":"gasoline","current_price":3.69975,"yoy_price":2.4734166667,"absolute_change":1.2263333333,"percentage_change":49.5805397392},{"date":"2021-12-13","fuel":"gasoline","current_price":3.6755,"yoy_price":2.4745,"absolute_change":1.201,"percentage_change":48.5350575874},{"date":"2021-12-20","fuel":"gasoline","current_price":3.6595,"yoy_price":2.5308333333,"absolute_change":1.1286666667,"percentage_change":44.5966414225},{"date":"2021-12-27","fuel":"gasoline","current_price":3.6401666667,"yoy_price":2.5481666667,"absolute_change":1.092,"percentage_change":42.8543397214},{"date":"2022-01-03","fuel":"gasoline","current_price":3.64475,"yoy_price":2.5546666667,"absolute_change":1.0900833333,"percentage_change":42.670276618},{"date":"2022-01-10","fuel":"gasoline","current_price":3.6535833333,"yoy_price":2.6196666667,"absolute_change":1.0339166667,"percentage_change":39.4674895025},{"date":"2022-01-17","fuel":"gasoline","current_price":3.6615,"yoy_price":2.6805,"absolute_change":0.981,"percentage_change":36.5976496922},{"date":"2022-01-24","fuel":"gasoline","current_price":3.6755,"yoy_price":2.6963333333,"absolute_change":0.9791666667,"percentage_change":36.3147484238},{"date":"2022-01-31","fuel":"gasoline","current_price":3.7140833333,"yoy_price":2.7136666667,"absolute_change":1.0004166667,"percentage_change":36.8658641445},{"date":"2022-02-07","fuel":"gasoline","current_price":3.7806666667,"yoy_price":2.76625,"absolute_change":1.0144166667,"percentage_change":36.6711854195},{"date":"2022-02-14","fuel":"gasoline","current_price":3.82275,"yoy_price":2.8070833333,"absolute_change":1.0156666667,"percentage_change":36.1822769779},{"date":"2022-02-21","fuel":"gasoline","current_price":3.8669166667,"yoy_price":2.9301666667,"absolute_change":0.93675,"percentage_change":31.9691712644},{"date":"2022-02-28","fuel":"gasoline","current_price":3.9433333333,"yoy_price":3.0103333333,"absolute_change":0.933,"percentage_change":30.9932454878},{"date":"2022-03-07","fuel":"gasoline","current_price":4.4456666667,"yoy_price":3.0729166667,"absolute_change":1.37275,"percentage_change":44.6725423729},{"date":"2022-03-14","fuel":"gasoline","current_price":4.6726666667,"yoy_price":3.1585,"absolute_change":1.5141666667,"percentage_change":47.9394227218},{"date":"2022-03-21","fuel":"gasoline","current_price":4.6170833333,"yoy_price":3.1751666667,"absolute_change":1.4419166667,"percentage_change":45.4123143142},{"date":"2022-03-28","fuel":"gasoline","current_price":4.61125,"yoy_price":3.1625833333,"absolute_change":1.4486666667,"percentage_change":45.8064346131},{"date":"2022-04-04","fuel":"gasoline","current_price":4.5525833333,"yoy_price":3.16725,"absolute_change":1.3853333333,"percentage_change":43.7393111795},{"date":"2022-04-11","fuel":"gasoline","current_price":4.4771666667,"yoy_price":3.1645833333,"absolute_change":1.3125833333,"percentage_change":41.4772876893},{"date":"2022-04-18","fuel":"gasoline","current_price":4.4511666667,"yoy_price":3.172,"absolute_change":1.2791666667,"percentage_change":40.3268179908},{"date":"2022-04-25","fuel":"gasoline","current_price":4.4879166667,"yoy_price":3.1914166667,"absolute_change":1.2965,"percentage_change":40.6245920046},{"date":"2022-05-02","fuel":"gasoline","current_price":4.5610833333,"yoy_price":3.2116666667,"absolute_change":1.3494166667,"percentage_change":42.0160871821},{"date":"2022-05-09","fuel":"gasoline","current_price":4.701,"yoy_price":3.2814166667,"absolute_change":1.4195833333,"percentage_change":43.2612946644},{"date":"2022-05-16","fuel":"gasoline","current_price":4.8656666667,"yoy_price":3.34575,"absolute_change":1.5199166667,"percentage_change":45.4282796583},{"date":"2022-05-23","fuel":"gasoline","current_price":4.9719166667,"yoy_price":3.34525,"absolute_change":1.6266666667,"percentage_change":48.6261614727},{"date":"2022-05-30","fuel":"gasoline","current_price":5.012,"yoy_price":3.35275,"absolute_change":1.65925,"percentage_change":49.4892252628},{"date":"2022-06-06","fuel":"gasoline","current_price":5.2535,"yoy_price":3.3636666667,"absolute_change":1.8898333333,"percentage_change":56.1837280745},{"date":"2022-06-13","fuel":"gasoline","current_price":5.38075,"yoy_price":3.39425,"absolute_change":1.9865,"percentage_change":58.5254474479},{"date":"2022-06-20","fuel":"gasoline","current_price":5.3458333333,"yoy_price":3.3904166667,"absolute_change":1.9554166667,"percentage_change":57.6748187293},{"date":"2022-06-27","fuel":"gasoline","current_price":5.2643333333,"yoy_price":3.4235,"absolute_change":1.8408333333,"percentage_change":53.770507765},{"date":"2022-07-04","fuel":"gasoline","current_price":5.1664166667,"yoy_price":3.4525833333,"absolute_change":1.7138333333,"percentage_change":49.6391590838},{"date":"2022-07-11","fuel":"gasoline","current_price":5.0398333333,"yoy_price":3.4655,"absolute_change":1.5743333333,"percentage_change":45.4287500601},{"date":"2022-07-18","fuel":"gasoline","current_price":4.883,"yoy_price":3.4844166667,"absolute_change":1.3985833333,"percentage_change":40.1382345204},{"date":"2022-07-25","fuel":"gasoline","current_price":4.7291666667,"yoy_price":3.4724166667,"absolute_change":1.25675,"percentage_change":36.1923732271},{"date":"2022-08-01","fuel":"gasoline","current_price":4.5989166667,"yoy_price":3.4996666667,"absolute_change":1.09925,"percentage_change":31.4101342985},{"date":"2022-08-08","fuel":"gasoline","current_price":4.4489166667,"yoy_price":3.5111666667,"absolute_change":0.93775,"percentage_change":26.7076470309},{"date":"2022-08-15","fuel":"gasoline","current_price":4.349,"yoy_price":3.51675,"absolute_change":0.83225,"percentage_change":23.6653159878},{"date":"2022-08-22","fuel":"gasoline","current_price":4.2890833333,"yoy_price":3.4896666667,"absolute_change":0.7994166667,"percentage_change":22.9081096571},{"date":"2022-08-29","fuel":"gasoline","current_price":4.2285,"yoy_price":3.4851666667,"absolute_change":0.7433333333,"percentage_change":21.328487399},{"date":"2022-09-05","fuel":"gasoline","current_price":4.1523333333,"yoy_price":3.5165833333,"absolute_change":0.63575,"percentage_change":18.0786274556},{"date":"2022-09-12","fuel":"gasoline","current_price":4.1074166667,"yoy_price":3.5061666667,"absolute_change":0.60125,"percentage_change":17.1483576556},{"date":"2022-09-19","fuel":"gasoline","current_price":4.0789166667,"yoy_price":3.5210833333,"absolute_change":0.5578333333,"percentage_change":15.8426620595},{"date":"2022-09-26","fuel":"gasoline","current_price":4.14825,"yoy_price":3.5143333333,"absolute_change":0.6339166667,"percentage_change":18.038034715},{"date":"2022-10-03","fuel":"gasoline","current_price":4.2526666667,"yoy_price":3.5270833333,"absolute_change":0.7255833333,"percentage_change":20.5717660957},{"date":"2022-10-10","fuel":"gasoline","current_price":4.3633333333,"yoy_price":3.5971666667,"absolute_change":0.7661666667,"percentage_change":21.2991706436},{"date":"2022-10-17","fuel":"gasoline","current_price":4.3120833333,"yoy_price":3.65275,"absolute_change":0.6593333333,"percentage_change":18.0503273789},{"date":"2022-10-24","fuel":"gasoline","current_price":4.1995833333,"yoy_price":3.7156666667,"absolute_change":0.4839166667,"percentage_change":13.0236835023},{"date":"2022-10-31","fuel":"gasoline","current_price":4.1658333333,"yoy_price":3.7273333333,"absolute_change":0.4385,"percentage_change":11.7644428546},{"date":"2022-11-07","fuel":"gasoline","current_price":4.2105,"yoy_price":3.7481666667,"absolute_change":0.4623333333,"percentage_change":12.3349192939},{"date":"2022-11-14","fuel":"gasoline","current_price":4.17825,"yoy_price":3.7454166667,"absolute_change":0.4328333333,"percentage_change":11.5563466459},{"date":"2022-11-21","fuel":"gasoline","current_price":4.0665,"yoy_price":3.74575,"absolute_change":0.32075,"percentage_change":8.5630381099},{"date":"2022-11-28","fuel":"gasoline","current_price":3.9478333333,"yoy_price":3.7333333333,"absolute_change":0.2145,"percentage_change":5.7455357143},{"date":"2022-12-05","fuel":"gasoline","current_price":3.7958333333,"yoy_price":3.69975,"absolute_change":0.0960833333,"percentage_change":2.5970223213},{"date":"2022-12-12","fuel":"gasoline","current_price":3.6435833333,"yoy_price":3.6755,"absolute_change":-0.0319166667,"percentage_change":-0.8683625811},{"date":"2022-12-19","fuel":"gasoline","current_price":3.523,"yoy_price":3.6595,"absolute_change":-0.1365,"percentage_change":-3.730017762},{"date":"2022-12-26","fuel":"gasoline","current_price":3.4898333333,"yoy_price":3.6401666667,"absolute_change":-0.1503333333,"percentage_change":-4.1298475345},{"date":"2023-01-02","fuel":"gasoline","current_price":3.6025,"yoy_price":3.64475,"absolute_change":-0.04225,"percentage_change":-1.1592015913},{"date":"2023-01-09","fuel":"gasoline","current_price":3.6311666667,"yoy_price":3.6535833333,"absolute_change":-0.0224166667,"percentage_change":-0.6135529047},{"date":"2023-01-16","fuel":"gasoline","current_price":3.67775,"yoy_price":3.6615,"absolute_change":0.01625,"percentage_change":0.4438071828},{"date":"2023-01-23","fuel":"gasoline","current_price":3.774,"yoy_price":3.6755,"absolute_change":0.0985,"percentage_change":2.6799074956},{"date":"2023-01-30","fuel":"gasoline","current_price":3.8493333333,"yoy_price":3.7140833333,"absolute_change":0.13525,"percentage_change":3.6415445713},{"date":"2023-02-06","fuel":"gasoline","current_price":3.8183333333,"yoy_price":3.7806666667,"absolute_change":0.0376666667,"percentage_change":0.9962969494},{"date":"2023-02-13","fuel":"gasoline","current_price":3.77675,"yoy_price":3.82275,"absolute_change":-0.046,"percentage_change":-1.2033222157},{"date":"2023-02-20","fuel":"gasoline","current_price":3.776,"yoy_price":3.8669166667,"absolute_change":-0.0909166667,"percentage_change":-2.35114109},{"date":"2023-02-27","fuel":"gasoline","current_price":3.7435833333,"yoy_price":3.9433333333,"absolute_change":-0.19975,"percentage_change":-5.0655114117},{"date":"2023-03-06","fuel":"gasoline","current_price":3.7944166667,"yoy_price":4.4456666667,"absolute_change":-0.65125,"percentage_change":-14.6490964985},{"date":"2023-03-13","fuel":"gasoline","current_price":3.8526666667,"yoy_price":4.6726666667,"absolute_change":-0.82,"percentage_change":-17.548865744},{"date":"2023-03-20","fuel":"gasoline","current_price":3.81625,"yoy_price":4.6170833333,"absolute_change":-0.8008333333,"percentage_change":-17.3450049635},{"date":"2023-03-27","fuel":"gasoline","current_price":3.81875,"yoy_price":4.61125,"absolute_change":-0.7925,"percentage_change":-17.1862293304},{"date":"2023-04-03","fuel":"gasoline","current_price":3.883,"yoy_price":4.5525833333,"absolute_change":-0.6695833333,"percentage_change":-14.7077666526},{"date":"2023-04-10","fuel":"gasoline","current_price":3.9720833333,"yoy_price":4.4771666667,"absolute_change":-0.5050833333,"percentage_change":-11.2813163087},{"date":"2023-04-17","fuel":"gasoline","current_price":4.0398333333,"yoy_price":4.4511666667,"absolute_change":-0.4113333333,"percentage_change":-9.2410229528},{"date":"2023-04-24","fuel":"gasoline","current_price":4.0428333333,"yoy_price":4.4879166667,"absolute_change":-0.4450833333,"percentage_change":-9.9173707177},{"date":"2023-05-01","fuel":"gasoline","current_price":3.9936666667,"yoy_price":4.5610833333,"absolute_change":-0.5674166667,"percentage_change":-12.4403924506},{"date":"2023-05-08","fuel":"gasoline","current_price":3.9304166667,"yoy_price":4.701,"absolute_change":-0.7705833333,"percentage_change":-16.3919024321},{"date":"2023-05-15","fuel":"gasoline","current_price":3.9295,"yoy_price":4.8656666667,"absolute_change":-0.9361666667,"percentage_change":-19.2402548469},{"date":"2023-05-22","fuel":"gasoline","current_price":3.9285833333,"yoy_price":4.9719166667,"absolute_change":-1.0433333333,"percentage_change":-20.9845297756},{"date":"2023-05-29","fuel":"gasoline","current_price":3.9719166667,"yoy_price":5.012,"absolute_change":-1.0400833333,"percentage_change":-20.7518621974},{"date":"2023-06-05","fuel":"gasoline","current_price":3.9455833333,"yoy_price":5.2535,"absolute_change":-1.3079166667,"percentage_change":-24.896101012},{"date":"2023-06-12","fuel":"gasoline","current_price":3.995,"yoy_price":5.38075,"absolute_change":-1.38575,"percentage_change":-25.7538447242},{"date":"2023-06-19","fuel":"gasoline","current_price":3.98025,"yoy_price":5.3458333333,"absolute_change":-1.3655833333,"percentage_change":-25.5448168355},{"date":"2023-06-26","fuel":"gasoline","current_price":3.9753333333,"yoy_price":5.2643333333,"absolute_change":-1.289,"percentage_change":-24.4855315646},{"date":"2023-07-03","fuel":"gasoline","current_price":3.9385833333,"yoy_price":5.1664166667,"absolute_change":-1.2278333333,"percentage_change":-23.7656660806},{"date":"2023-07-10","fuel":"gasoline","current_price":3.9613333333,"yoy_price":5.0398333333,"absolute_change":-1.0785,"percentage_change":-21.3995171798},{"date":"2023-07-17","fuel":"gasoline","current_price":3.9698333333,"yoy_price":4.883,"absolute_change":-0.9131666667,"percentage_change":-18.7009352174},{"date":"2023-07-24","fuel":"gasoline","current_price":4.0019166667,"yoy_price":4.7291666667,"absolute_change":-0.72725,"percentage_change":-15.3779735683},{"date":"2023-07-31","fuel":"gasoline","current_price":4.1503333333,"yoy_price":4.5989166667,"absolute_change":-0.4485833333,"percentage_change":-9.7541087575},{"date":"2023-08-07","fuel":"gasoline","current_price":4.2188333333,"yoy_price":4.4489166667,"absolute_change":-0.2300833333,"percentage_change":-5.1716710061},{"date":"2023-08-14","fuel":"gasoline","current_price":4.2440833333,"yoy_price":4.349,"absolute_change":-0.1049166667,"percentage_change":-2.4124319767},{"date":"2023-08-21","fuel":"gasoline","current_price":4.2770833333,"yoy_price":4.2890833333,"absolute_change":-0.012,"percentage_change":-0.2797800618},{"date":"2023-08-28","fuel":"gasoline","current_price":4.23275,"yoy_price":4.2285,"absolute_change":0.00425,"percentage_change":0.1005084545},{"date":"2023-09-04","fuel":"gasoline","current_price":4.22625,"yoy_price":4.1523333333,"absolute_change":0.0739166667,"percentage_change":1.7801236253},{"date":"2023-09-11","fuel":"gasoline","current_price":4.2460833333,"yoy_price":4.1074166667,"absolute_change":0.1386666667,"percentage_change":3.3760068169},{"date":"2023-09-18","fuel":"gasoline","current_price":4.323,"yoy_price":4.0789166667,"absolute_change":0.2440833333,"percentage_change":5.9840235357},{"date":"2023-09-25","fuel":"gasoline","current_price":4.2991666667,"yoy_price":4.14825,"absolute_change":0.1509166667,"percentage_change":3.638080315},{"date":"2023-10-02","fuel":"gasoline","current_price":4.28625,"yoy_price":4.2526666667,"absolute_change":0.0335833333,"percentage_change":0.78970058},{"date":"2023-10-09","fuel":"gasoline","current_price":4.1599166667,"yoy_price":4.3633333333,"absolute_change":-0.2034166667,"percentage_change":-4.6619556914},{"date":"2023-10-16","fuel":"gasoline","current_price":4.0485,"yoy_price":4.3120833333,"absolute_change":-0.2635833333,"percentage_change":-6.1126678906},{"date":"2023-10-23","fuel":"gasoline","current_price":3.99475,"yoy_price":4.1995833333,"absolute_change":-0.2048333333,"percentage_change":-4.8774680028},{"date":"2023-10-30","fuel":"gasoline","current_price":3.9290833333,"yoy_price":4.1658333333,"absolute_change":-0.23675,"percentage_change":-5.6831366273},{"date":"2023-11-06","fuel":"gasoline","current_price":3.8448333333,"yoy_price":4.2105,"absolute_change":-0.3656666667,"percentage_change":-8.6846376123},{"date":"2023-11-13","fuel":"gasoline","current_price":3.789,"yoy_price":4.17825,"absolute_change":-0.38925,"percentage_change":-9.3161012386},{"date":"2023-11-20","fuel":"gasoline","current_price":3.7325833333,"yoy_price":4.0665,"absolute_change":-0.3339166667,"percentage_change":-8.2114021066},{"date":"2023-11-27","fuel":"gasoline","current_price":3.6828333333,"yoy_price":3.9478333333,"absolute_change":-0.265,"percentage_change":-6.712542745},{"date":"2023-12-04","fuel":"gasoline","current_price":3.6656666667,"yoy_price":3.7958333333,"absolute_change":-0.1301666667,"percentage_change":-3.4291986828},{"date":"2023-12-11","fuel":"gasoline","current_price":3.5654166667,"yoy_price":3.6435833333,"absolute_change":-0.0781666667,"percentage_change":-2.1453239714},{"date":"2023-12-18","fuel":"gasoline","current_price":3.4815,"yoy_price":3.523,"absolute_change":-0.0415,"percentage_change":-1.1779733182},{"date":"2023-12-25","fuel":"gasoline","current_price":3.5409166667,"yoy_price":3.4898333333,"absolute_change":0.0510833333,"percentage_change":1.4637757295},{"date":"2024-01-01","fuel":"gasoline","current_price":3.5228333333,"yoy_price":3.6025,"absolute_change":-0.0796666667,"percentage_change":-2.2114272496},{"date":"2024-01-08","fuel":"gasoline","current_price":3.5079166667,"yoy_price":3.6311666667,"absolute_change":-0.12325,"percentage_change":-3.3942259145},{"date":"2024-01-15","fuel":"gasoline","current_price":3.4788333333,"yoy_price":3.67775,"absolute_change":-0.1989166667,"percentage_change":-5.4086511227},{"date":"2024-01-22","fuel":"gasoline","current_price":3.4768333333,"yoy_price":3.774,"absolute_change":-0.2971666667,"percentage_change":-7.8740505211},{"date":"2024-01-29","fuel":"gasoline","current_price":3.5109166667,"yoy_price":3.8493333333,"absolute_change":-0.3384166667,"percentage_change":-8.7915656391},{"date":"2024-02-05","fuel":"gasoline","current_price":3.54975,"yoy_price":3.8183333333,"absolute_change":-0.2685833333,"percentage_change":-7.034046268},{"date":"2024-02-12","fuel":"gasoline","current_price":3.5989166667,"yoy_price":3.77675,"absolute_change":-0.1778333333,"percentage_change":-4.7086339666},{"date":"2024-02-19","fuel":"gasoline","current_price":3.6731666667,"yoy_price":3.776,"absolute_change":-0.1028333333,"percentage_change":-2.7233403955},{"date":"2024-02-26","fuel":"gasoline","current_price":3.6526666667,"yoy_price":3.7435833333,"absolute_change":-0.0909166667,"percentage_change":-2.428600049},{"date":"2024-03-04","fuel":"gasoline","current_price":3.7561666667,"yoy_price":3.7944166667,"absolute_change":-0.03825,"percentage_change":-1.0080600883},{"date":"2024-03-11","fuel":"gasoline","current_price":3.781,"yoy_price":3.8526666667,"absolute_change":-0.0716666667,"percentage_change":-1.8601834227},{"date":"2024-03-18","fuel":"gasoline","current_price":3.8548333333,"yoy_price":3.81625,"absolute_change":0.0385833333,"percentage_change":1.0110274047},{"date":"2024-03-25","fuel":"gasoline","current_price":3.9271666667,"yoy_price":3.81875,"absolute_change":0.1084166667,"percentage_change":2.8390616476},{"date":"2024-04-01","fuel":"gasoline","current_price":3.9306666667,"yoy_price":3.883,"absolute_change":0.0476666667,"percentage_change":1.2275731822},{"date":"2024-04-08","fuel":"gasoline","current_price":4.0188333333,"yoy_price":3.9720833333,"absolute_change":0.04675,"percentage_change":1.1769642295},{"date":"2024-04-15","fuel":"gasoline","current_price":4.06375,"yoy_price":4.0398333333,"absolute_change":0.0239166667,"percentage_change":0.592021123},{"date":"2024-04-22","fuel":"gasoline","current_price":4.10625,"yoy_price":4.0428333333,"absolute_change":0.0634166667,"percentage_change":1.5686193676},{"date":"2024-04-29","fuel":"gasoline","current_price":4.09125,"yoy_price":3.9936666667,"absolute_change":0.0975833333,"percentage_change":2.4434521325},{"date":"2024-05-06","fuel":"gasoline","current_price":4.0814166667,"yoy_price":3.9304166667,"absolute_change":0.151,"percentage_change":3.8418318669},{"date":"2024-05-13","fuel":"gasoline","current_price":4.0420833333,"yoy_price":3.9295,"absolute_change":0.1125833333,"percentage_change":2.8650803749},{"date":"2024-05-20","fuel":"gasoline","current_price":4.0134166667,"yoy_price":3.9285833333,"absolute_change":0.0848333333,"percentage_change":2.1593873958},{"date":"2024-05-27","fuel":"gasoline","current_price":4.00925,"yoy_price":3.9719166667,"absolute_change":0.0373333333,"percentage_change":0.9399324424},{"date":"2024-06-03","fuel":"gasoline","current_price":3.9465,"yoy_price":3.9455833333,"absolute_change":0.0009166667,"percentage_change":0.0232327286},{"date":"2024-06-10","fuel":"gasoline","current_price":3.8579166667,"yoy_price":3.995,"absolute_change":-0.1370833333,"percentage_change":-3.431372549},{"date":"2024-06-17","fuel":"gasoline","current_price":3.8586666667,"yoy_price":3.98025,"absolute_change":-0.1215833333,"percentage_change":-3.0546657455},{"date":"2024-06-24","fuel":"gasoline","current_price":3.8534166667,"yoy_price":3.9753333333,"absolute_change":-0.1219166667,"percentage_change":-3.0668287775},{"date":"2024-07-01","fuel":"gasoline","current_price":3.8831666667,"yoy_price":3.9385833333,"absolute_change":-0.0554166667,"percentage_change":-1.4070202907},{"date":"2024-07-08","fuel":"gasoline","current_price":3.90025,"yoy_price":3.9613333333,"absolute_change":-0.0610833333,"percentage_change":-1.5419892292},{"date":"2024-07-15","fuel":"gasoline","current_price":3.9055,"yoy_price":3.9698333333,"absolute_change":-0.0643333333,"percentage_change":-1.6205550191},{"date":"2024-07-22","fuel":"gasoline","current_price":3.87175,"yoy_price":4.0019166667,"absolute_change":-0.1301666667,"percentage_change":-3.2526081253},{"date":"2024-07-29","fuel":"gasoline","current_price":3.879,"yoy_price":4.1503333333,"absolute_change":-0.2713333333,"percentage_change":-6.5376274998},{"date":"2024-08-05","fuel":"gasoline","current_price":3.84375,"yoy_price":4.2188333333,"absolute_change":-0.3750833333,"percentage_change":-8.890688579},{"date":"2024-08-12","fuel":"gasoline","current_price":3.8125,"yoy_price":4.2440833333,"absolute_change":-0.4315833333,"percentage_change":-10.1690588859},{"date":"2024-08-19","fuel":"gasoline","current_price":3.7886666667,"yoy_price":4.2770833333,"absolute_change":-0.4884166667,"percentage_change":-11.419386264},{"date":"2024-08-26","fuel":"gasoline","current_price":3.7275,"yoy_price":4.23275,"absolute_change":-0.50525,"percentage_change":-11.9366841888},{"date":"2024-09-02","fuel":"gasoline","current_price":3.7145,"yoy_price":4.22625,"absolute_change":-0.51175,"percentage_change":-12.1088435374},{"date":"2024-09-09","fuel":"gasoline","current_price":3.6693333333,"yoy_price":4.2460833333,"absolute_change":-0.57675,"percentage_change":-13.5831059996},{"date":"2024-09-16","fuel":"gasoline","current_price":3.62675,"yoy_price":4.323,"absolute_change":-0.69625,"percentage_change":-16.1057136248},{"date":"2024-09-23","fuel":"gasoline","current_price":3.6224166667,"yoy_price":4.2991666667,"absolute_change":-0.67675,"percentage_change":-15.7414227563},{"date":"2024-09-30","fuel":"gasoline","current_price":3.6073333333,"yoy_price":4.28625,"absolute_change":-0.6789166667,"percentage_change":-15.8394089628},{"date":"2024-10-07","fuel":"gasoline","current_price":3.5685833333,"yoy_price":4.1599166667,"absolute_change":-0.5913333333,"percentage_change":-14.2150283459},{"date":"2024-10-14","fuel":"gasoline","current_price":3.5970833333,"yoy_price":4.0485,"absolute_change":-0.4514166667,"percentage_change":-11.1502202462},{"date":"2024-10-21","fuel":"gasoline","current_price":3.5735,"yoy_price":3.99475,"absolute_change":-0.42125,"percentage_change":-10.5450904312},{"date":"2024-10-28","fuel":"gasoline","current_price":3.5249166667,"yoy_price":3.9290833333,"absolute_change":-0.4041666667,"percentage_change":-10.2865384208},{"date":"2024-11-04","fuel":"gasoline","current_price":3.493,"yoy_price":3.8448333333,"absolute_change":-0.3518333333,"percentage_change":-9.1508084442},{"date":"2024-11-11","fuel":"gasoline","current_price":3.4789166667,"yoy_price":3.789,"absolute_change":-0.3100833333,"percentage_change":-8.1837776018},{"date":"2024-11-18","fuel":"gasoline","current_price":3.4660833333,"yoy_price":3.7325833333,"absolute_change":-0.2665,"percentage_change":-7.1398271974},{"date":"2024-11-25","fuel":"gasoline","current_price":3.4660833333,"yoy_price":3.6828333333,"absolute_change":-0.21675,"percentage_change":-5.8854143096},{"date":"2024-12-02","fuel":"gasoline","current_price":3.45425,"yoy_price":3.6656666667,"absolute_change":-0.2114166667,"percentage_change":-5.7674820406},{"date":"2024-12-09","fuel":"gasoline","current_price":3.431,"yoy_price":3.5654166667,"absolute_change":-0.1344166667,"percentage_change":-3.770012855},{"date":"2024-12-16","fuel":"gasoline","current_price":3.431,"yoy_price":3.4815,"absolute_change":-0.0505,"percentage_change":-1.4505241993},{"date":"2024-12-23","fuel":"gasoline","current_price":3.4395,"yoy_price":3.5409166667,"absolute_change":-0.1014166667,"percentage_change":-2.8641359347},{"date":"2024-12-30","fuel":"gasoline","current_price":3.4266666667,"yoy_price":3.5228333333,"absolute_change":-0.0961666667,"percentage_change":-2.7298102853},{"date":"2025-01-06","fuel":"gasoline","current_price":3.4620833333,"yoy_price":3.5079166667,"absolute_change":-0.0458333333,"percentage_change":-1.3065684761},{"date":"2025-01-13","fuel":"gasoline","current_price":3.4610833333,"yoy_price":3.4788333333,"absolute_change":-0.01775,"percentage_change":-0.5102285249},{"date":"2025-01-20","fuel":"gasoline","current_price":3.5243333333,"yoy_price":3.4768333333,"absolute_change":0.0475,"percentage_change":1.3661857054},{"date":"2025-01-27","fuel":"gasoline","current_price":3.522,"yoy_price":3.5109166667,"absolute_change":0.0110833333,"percentage_change":0.3156820394},{"date":"2025-02-03","fuel":"gasoline","current_price":3.5101666667,"yoy_price":3.54975,"absolute_change":-0.0395833333,"percentage_change":-1.1151020025},{"date":"2025-02-10","fuel":"gasoline","current_price":3.5611666667,"yoy_price":3.5989166667,"absolute_change":-0.03775,"percentage_change":-1.0489267604},{"date":"2025-02-17","fuel":"gasoline","current_price":3.5964166667,"yoy_price":3.6731666667,"absolute_change":-0.07675,"percentage_change":-2.089477744},{"date":"2025-02-24","fuel":"gasoline","current_price":3.57775,"yoy_price":3.6526666667,"absolute_change":-0.0749166667,"percentage_change":-2.0510129586},{"date":"2025-03-03","fuel":"gasoline","current_price":3.5271666667,"yoy_price":3.7561666667,"absolute_change":-0.229,"percentage_change":-6.0966410791},{"date":"2025-03-10","fuel":"gasoline","current_price":3.51375,"yoy_price":3.781,"absolute_change":-0.26725,"percentage_change":-7.0682359164},{"date":"2025-03-17","fuel":"gasoline","current_price":3.4978333333,"yoy_price":3.8548333333,"absolute_change":-0.357,"percentage_change":-9.2611007826},{"date":"2025-03-24","fuel":"gasoline","current_price":3.5485833333,"yoy_price":3.9271666667,"absolute_change":-0.3785833333,"percentage_change":-9.6401137376},{"date":"2025-03-31","fuel":"gasoline","current_price":3.6035,"yoy_price":3.9306666667,"absolute_change":-0.3271666667,"percentage_change":-8.3234396201},{"date":"2025-04-07","fuel":"gasoline","current_price":3.6863333333,"yoy_price":4.0188333333,"absolute_change":-0.3325,"percentage_change":-8.2735453905},{"date":"2025-04-14","fuel":"gasoline","current_price":3.613,"yoy_price":4.06375,"absolute_change":-0.45075,"percentage_change":-11.091971701},{"date":"2025-04-21","fuel":"gasoline","current_price":3.58525,"yoy_price":4.10625,"absolute_change":-0.521,"percentage_change":-12.6879756469},{"date":"2025-04-28","fuel":"gasoline","current_price":3.57875,"yoy_price":4.09125,"absolute_change":-0.5125,"percentage_change":-12.5267338833},{"date":"2025-05-05","fuel":"gasoline","current_price":3.5851666667,"yoy_price":4.0814166667,"absolute_change":-0.49625,"percentage_change":-12.1587684015},{"date":"2025-05-12","fuel":"gasoline","current_price":3.5728333333,"yoy_price":4.0420833333,"absolute_change":-0.46925,"percentage_change":-11.6091124626},{"date":"2025-05-19","fuel":"gasoline","current_price":3.6244166667,"yoy_price":4.0134166667,"absolute_change":-0.389,"percentage_change":-9.6924897739},{"date":"2025-05-26","fuel":"gasoline","current_price":3.6089166667,"yoy_price":4.00925,"absolute_change":-0.4003333333,"percentage_change":-9.9852424601},{"date":"2025-06-02","fuel":"gasoline","current_price":3.5746666667,"yoy_price":3.9465,"absolute_change":-0.3718333333,"percentage_change":-9.4218505849},{"date":"2025-06-09","fuel":"gasoline","current_price":3.5501666667,"yoy_price":3.8579166667,"absolute_change":-0.30775,"percentage_change":-7.9771033589},{"date":"2025-06-16","fuel":"gasoline","current_price":3.5765,"yoy_price":3.8586666667,"absolute_change":-0.2821666667,"percentage_change":-7.3125431928},{"date":"2025-06-23","fuel":"gasoline","current_price":3.6445833333,"yoy_price":3.8534166667,"absolute_change":-0.2088333333,"percentage_change":-5.4194329707}],"metadata":{"date":{"type":"date","semanticType":"Date"},"fuel":{"type":"string","semanticType":"String"},"current_price":{"type":"number","semanticType":"Number"},"yoy_price":{"type":"number","semanticType":"Number"},"absolute_change":{"type":"number","semanticType":"Number"},"percentage_change":{"type":"number","semanticType":"Percentage"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for proper sorting and manipulation\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Sort by fuel and date\n df_agg = df_agg.sort_values(['fuel', 'date'])\n \n # Calculate year-over-year changes (52 weeks ago for weekly data)\n df_agg['yoy_price'] = df_agg.groupby('fuel')['price'].shift(52)\n df_agg['absolute_change'] = df_agg['price'] - df_agg['yoy_price']\n df_agg['percentage_change'] = ((df_agg['price'] - df_agg['yoy_price']) / df_agg['yoy_price']) * 100\n \n # Rename columns for clarity\n transformed_df = df_agg.rename(columns={'price': 'current_price'})\n \n # Convert date back to string format for visualization\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n # Keep only rows where we have year-over-year data (remove first 52 weeks)\n transformed_df = transformed_df.dropna(subset=['yoy_price'])\n \n # Select and order output columns\n transformed_df = transformed_df[['date', 'fuel', 'current_price', 'yoy_price', 'absolute_change', 'percentage_change']]\n \n return transformed_df\n","source":["weekly_gas_prices"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date fuel avg_price\n0 1990-08-20 gasoline 1.191\n1 1990-08-27 gasoline 1.245\n2 1990-09-03 gasoline 1.242\n3 1990-09-10 gasoline 1.252\n4 1990-09-17 gasoline 1.266\n5 1990-09-24 gasoline 1.272\n6 1990-10-01 gasoline 1.321\n7 1990-10-08 gasoline 1.333\n8 1990-10-15 gasoline 1.339\n9 1990-10-22 gasoline 1.345\n......\n\nUpdate the code above based on the following instruction:\n\nCalculate year-over-year price changes to identify the most dramatic price spikes for both diesel and gasoline, showing which periods had the largest absolute and percentage increases with their peak prices."},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to identify the most dramatic price spikes by calculating year-over-year price changes for both diesel and gasoline, showing periods with the largest absolute and percentage increases along with their peak prices.\",\n \"display_instruction\": \"Identify periods with largest **year-over-year price changes** (absolute and percentage) and **peak prices**\",\n \"recommendation\": \"To analyze year-over-year price changes, we need to calculate the price difference and percentage change compared to the same period one year prior. We'll compute both absolute change and percentage change, then identify the periods with the most dramatic spikes. The output should include the date, fuel type, current price, previous year's price, absolute change, and percentage change to provide a comprehensive view of price volatility.\",\n \"output_fields\": [\"date\", \"fuel\", \"current_price\", \"yoy_price\", \"absolute_change\", \"percentage_change\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"absolute_change\",\n \"color\": \"fuel\",\n \"size\": \"percentage_change\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for proper sorting and manipulation\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Sort by fuel and date\n df_agg = df_agg.sort_values(['fuel', 'date'])\n \n # Calculate year-over-year changes (52 weeks ago for weekly data)\n df_agg['yoy_price'] = df_agg.groupby('fuel')['price'].shift(52)\n df_agg['absolute_change'] = df_agg['price'] - df_agg['yoy_price']\n df_agg['percentage_change'] = ((df_agg['price'] - df_agg['yoy_price']) / df_agg['yoy_price']) * 100\n \n # Rename columns for clarity\n transformed_df = df_agg.rename(columns={'price': 'current_price'})\n \n # Convert date back to string format for visualization\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n # Keep only rows where we have year-over-year data (remove first 52 weeks)\n transformed_df = transformed_df.dropna(subset=['yoy_price'])\n \n # Select and order output columns\n transformed_df = transformed_df[['date', 'fuel', 'current_price', 'yoy_price', 'absolute_change', 'percentage_change']]\n \n return transformed_df\n```"}],"trigger":{"tableId":"table-904593","sourceTableIds":["weekly_gas_prices"],"instruction":"Calculate year-over-year price changes to identify the most dramatic price spikes for both diesel and gasoline, showing which periods had the largest absolute and percentage increases with their peak prices.","displayInstruction":"Identify periods with largest **year-over-year price changes** (absolute and percentage) and **peak prices**","chart":{"id":"chart-1760744928220","chartType":"Auto","encodingMap":{},"tableRef":"weekly_gas_prices","saved":false,"source":"trigger","unread":true},"resultTableId":"table-922023"},"explanation":{"agent":"CodeExplanationAgent","code":"The code analyzes **year-over-year price trends** for different fuel types by performing the following steps:\n\n- Aggregates the data by **date** and **fuel** type, calculating the **average price** across all grades and formulations for each fuel type on each date\n- Converts **date** field to datetime format and sorts the data chronologically by **fuel** and **date**\n- Calculates **year-over-year comparisons** by comparing each week's price to the price from **52 weeks ago** (one year prior)\n- Computes both **absolute change** (dollar difference) and **percentage change** between current prices and prices from one year ago\n- Removes the first **52 weeks** of data where year-over-year comparisons are not available\n- Returns a dataset containing **current prices**, **year-ago prices**, and their **changes** for each fuel type over time","concepts":[{"explanation":"The average fuel price from exactly 52 weeks (one year) prior to the current date, used as a baseline for year-over-year comparison. This represents the historical price point from the same week in the previous year.","field":"yoy_price"},{"explanation":"The dollar amount difference between the current week's price and the price from one year ago, calculated as: \\( \\text{absolute\\_change} = \\text{current\\_price} - \\text{yoy\\_price} \\). A positive value indicates price increase, while a negative value indicates price decrease.","field":"absolute_change"},{"explanation":"The year-over-year price change expressed as a percentage, calculated as: \\( \\text{percentage\\_change} = \\frac{\\text{current\\_price} - \\text{yoy\\_price}}{\\text{yoy\\_price}} \\times 100 \\). This metric normalizes price changes to allow comparison across different price levels and time periods.","field":"percentage_change"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for proper sorting and manipulation\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Sort by fuel and date\n df_agg = df_agg.sort_values(['fuel', 'date'])\n \n # Calculate year-over-year changes (52 weeks ago for weekly data)\n df_agg['yoy_price'] = df_agg.groupby('fuel')['price'].shift(52)\n df_agg['absolute_change'] = df_agg['price'] - df_agg['yoy_price']\n df_agg['percentage_change'] = ((df_agg['price'] - df_agg['yoy_price']) / df_agg['yoy_price']) * 100\n \n # Rename columns for clarity\n transformed_df = df_agg.rename(columns={'price': 'current_price'})\n \n # Convert date back to string format for visualization\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n # Keep only rows where we have year-over-year data (remove first 52 weeks)\n transformed_df = transformed_df.dropna(subset=['yoy_price'])\n \n # Select and order output columns\n transformed_df = transformed_df[['date', 'fuel', 'current_price', 'yoy_price', 'absolute_change', 'percentage_change']]\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThe code analyzes **year-over-year price trends** for different fuel types by performing the following steps:\n\n- Aggregates the data by **date** and **fuel** type, calculating the **average price** across all grades and formulations for each fuel type on each date\n- Converts **date** field to datetime format and sorts the data chronologically by **fuel** and **date**\n- Calculates **year-over-year comparisons** by comparing each week's price to the price from **52 weeks ago** (one year prior)\n- Computes both **absolute change** (dollar difference) and **percentage change** between current prices and prices from one year ago\n- Removes the first **52 weeks** of data where year-over-year comparisons are not available\n- Returns a dataset containing **current prices**, **year-ago prices**, and their **changes** for each fuel type over time\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"yoy_price\",\n \"explanation\": \"The average fuel price from exactly 52 weeks (one year) prior to the current date, used as a baseline for year-over-year comparison. This represents the historical price point from the same week in the previous year.\"\n },\n {\n \"field\": \"absolute_change\",\n \"explanation\": \"The dollar amount difference between the current week's price and the price from one year ago, calculated as: \\\\( \\\\text{absolute\\\\_change} = \\\\text{current\\\\_price} - \\\\text{yoy\\\\_price} \\\\). A positive value indicates price increase, while a negative value indicates price decrease.\"\n },\n {\n \"field\": \"percentage_change\",\n \"explanation\": \"The year-over-year price change expressed as a percentage, calculated as: \\\\( \\\\text{percentage\\\\_change} = \\\\frac{\\\\text{current\\\\_price} - \\\\text{yoy\\\\_price}}{\\\\text{yoy\\\\_price}} \\\\times 100 \\\\). This metric normalizes price changes to allow comparison across different price levels and time periods.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-937785","displayId":"fuel-price-stats","names":["period","fuel","avg_price","std_dev","coefficient_of_variation"],"rows":[{"period":"Post-2000 (2000-2025)","fuel":"diesel","avg_price":2.933,"std_dev":0.982,"coefficient_of_variation":33.48},{"period":"Post-2000 (2000-2025)","fuel":"gasoline","avg_price":2.847,"std_dev":0.838,"coefficient_of_variation":29.43},{"period":"Pre-2000 (1990-1999)","fuel":"diesel","avg_price":1.138,"std_dev":0.087,"coefficient_of_variation":7.65},{"period":"Pre-2000 (1990-1999)","fuel":"gasoline","avg_price":1.171,"std_dev":0.106,"coefficient_of_variation":9.09}],"metadata":{"period":{"type":"string","semanticType":"TimeRange","levels":["Pre-2000 (1990-1999)","Post-2000 (2000-2025)"]},"fuel":{"type":"string","semanticType":"String"},"avg_price":{"type":"number","semanticType":"Number"},"std_dev":{"type":"number","semanticType":"Number"},"coefficient_of_variation":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for period classification\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Extract year for period classification\n df_agg['year'] = df_agg['date'].dt.year\n \n # Classify into pre-2000 and post-2000 periods\n df_agg['period'] = df_agg['year'].apply(lambda x: 'Pre-2000 (1990-1999)' if x < 2000 else 'Post-2000 (2000-2025)')\n \n # Calculate volatility metrics by period and fuel\n volatility_stats = df_agg.groupby(['period', 'fuel']).agg({\n 'price': ['mean', 'std']\n }).reset_index()\n \n # Flatten column names\n volatility_stats.columns = ['period', 'fuel', 'avg_price', 'std_dev']\n \n # Calculate coefficient of variation (CV = std_dev / mean * 100)\n volatility_stats['coefficient_of_variation'] = (volatility_stats['std_dev'] / volatility_stats['avg_price']) * 100\n \n # Round values for readability\n volatility_stats['avg_price'] = volatility_stats['avg_price'].round(3)\n volatility_stats['std_dev'] = volatility_stats['std_dev'].round(3)\n volatility_stats['coefficient_of_variation'] = volatility_stats['coefficient_of_variation'].round(2)\n \n transformed_df = volatility_stats[['period', 'fuel', 'avg_price', 'std_dev', 'coefficient_of_variation']]\n \n return transformed_df\n","source":["weekly_gas_prices"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date fuel avg_price\n0 1990-08-20 gasoline 1.191\n1 1990-08-27 gasoline 1.245\n2 1990-09-03 gasoline 1.242\n3 1990-09-10 gasoline 1.252\n4 1990-09-17 gasoline 1.266\n5 1990-09-24 gasoline 1.272\n6 1990-10-01 gasoline 1.321\n7 1990-10-08 gasoline 1.333\n8 1990-10-15 gasoline 1.339\n9 1990-10-22 gasoline 1.345\n......\n\nUpdate the code above based on the following instruction:\n\nCalculate year-over-year price changes to identify the most dramatic price spikes for both diesel and gasoline, showing which periods had the largest absolute and percentage increases with their peak prices."},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to identify the most dramatic price spikes by calculating year-over-year price changes for both diesel and gasoline, showing periods with the largest absolute and percentage increases along with their peak prices.\",\n \"display_instruction\": \"Identify periods with largest **year-over-year price changes** (absolute and percentage) and **peak prices**\",\n \"recommendation\": \"To analyze year-over-year price changes, we need to calculate the price difference and percentage change compared to the same period one year prior. We'll compute both absolute change and percentage change, then identify the periods with the most dramatic spikes. The output should include the date, fuel type, current price, previous year's price, absolute change, and percentage change to provide a comprehensive view of price volatility.\",\n \"output_fields\": [\"date\", \"fuel\", \"current_price\", \"yoy_price\", \"absolute_change\", \"percentage_change\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"absolute_change\",\n \"color\": \"fuel\",\n \"size\": \"percentage_change\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for proper sorting and manipulation\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Sort by fuel and date\n df_agg = df_agg.sort_values(['fuel', 'date'])\n \n # Calculate year-over-year changes (52 weeks ago for weekly data)\n df_agg['yoy_price'] = df_agg.groupby('fuel')['price'].shift(52)\n df_agg['absolute_change'] = df_agg['price'] - df_agg['yoy_price']\n df_agg['percentage_change'] = ((df_agg['price'] - df_agg['yoy_price']) / df_agg['yoy_price']) * 100\n \n # Rename columns for clarity\n transformed_df = df_agg.rename(columns={'price': 'current_price'})\n \n # Convert date back to string format for visualization\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n # Keep only rows where we have year-over-year data (remove first 52 weeks)\n transformed_df = transformed_df.dropna(subset=['yoy_price'])\n \n # Select and order output columns\n transformed_df = transformed_df[['date', 'fuel', 'current_price', 'yoy_price', 'absolute_change', 'percentage_change']]\n \n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date fuel current_price yoy_price absolute_change percentage_change\n0 1995-03-20 diesel 1.085 1.106 -0.021 -1.898734\n1 1995-03-27 diesel 1.088 1.107 -0.019 -1.716350\n2 1995-04-03 diesel 1.094 1.109 -0.015 -1.352570\n3 1995-04-10 diesel 1.101 1.108 -0.007 -0.631769\n4 1995-04-17 diesel 1.106 1.105 0.001 0.090498\n5 1995-04-24 diesel 1.115 1.106 0.009 0.813743\n6 1995-05-01 diesel 1.119 1.104 0.015 1.358696\n7 1995-05-08 diesel 1.126 1.101 0.025 2.270663\n8 1995-05-15 diesel 1.126 1.099 0.027 2.456779\n9 1995-05-22 diesel 1.124 1.099 0.025 2.274795\n......\n\nUpdate the code above based on the following instruction:\n\nCompare price volatility (standard deviation and coefficient of variation) between pre-2000 (1990-1999) and post-2000 (2000-2025) periods for both fuel types to show how price stability has changed over time."},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to compare price volatility between pre-2000 (1990-1999) and post-2000 (2000-2025) periods for both fuel types by calculating standard deviation and coefficient of variation to understand how price stability has changed over time.\",\n \"display_instruction\": \"Compare **price volatility** (standard deviation and coefficient of variation) between **pre-2000** and **post-2000** periods\",\n \"recommendation\": \"To analyze price volatility across different time periods, we need to segment the data into pre-2000 (1990-1999) and post-2000 (2000-2025) periods, then calculate volatility metrics including standard deviation and coefficient of variation for each fuel type in each period. A grouped bar chart comparing these metrics across periods and fuel types will clearly show how price stability has evolved.\",\n \"output_fields\": [\"period\", \"fuel\", \"avg_price\", \"std_dev\", \"coefficient_of_variation\"],\n \"chart_type\": \"group_bar\",\n \"chart_encodings\": {\n \"x\": \"period\",\n \"y\": \"coefficient_of_variation\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for period classification\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Extract year for period classification\n df_agg['year'] = df_agg['date'].dt.year\n \n # Classify into pre-2000 and post-2000 periods\n df_agg['period'] = df_agg['year'].apply(lambda x: 'Pre-2000 (1990-1999)' if x < 2000 else 'Post-2000 (2000-2025)')\n \n # Calculate volatility metrics by period and fuel\n volatility_stats = df_agg.groupby(['period', 'fuel']).agg({\n 'price': ['mean', 'std']\n }).reset_index()\n \n # Flatten column names\n volatility_stats.columns = ['period', 'fuel', 'avg_price', 'std_dev']\n \n # Calculate coefficient of variation (CV = std_dev / mean * 100)\n volatility_stats['coefficient_of_variation'] = (volatility_stats['std_dev'] / volatility_stats['avg_price']) * 100\n \n # Round values for readability\n volatility_stats['avg_price'] = volatility_stats['avg_price'].round(3)\n volatility_stats['std_dev'] = volatility_stats['std_dev'].round(3)\n volatility_stats['coefficient_of_variation'] = volatility_stats['coefficient_of_variation'].round(2)\n \n transformed_df = volatility_stats[['period', 'fuel', 'avg_price', 'std_dev', 'coefficient_of_variation']]\n \n return transformed_df\n```"}],"trigger":{"tableId":"table-922023","sourceTableIds":["weekly_gas_prices"],"instruction":"Compare price volatility (standard deviation and coefficient of variation) between pre-2000 (1990-1999) and post-2000 (2000-2025) periods for both fuel types to show how price stability has changed over time.","displayInstruction":"Compare **price volatility** (standard deviation and coefficient of variation) between **pre-2000** and **post-2000** periods","chart":{"id":"chart-1760744940045","chartType":"Auto","encodingMap":{},"tableRef":"weekly_gas_prices","saved":false,"source":"trigger","unread":true},"resultTableId":"table-937785"},"explanation":{"agent":"CodeExplanationAgent","code":"This code performs a statistical analysis of **gas price volatility** across two time periods:\n\n1. **Aggregate prices** by computing the mean **price** for each **date** and **fuel** type, averaging across all **grades** and **formulations**\n2. **Convert dates** to datetime format and extract the **year** from each date\n3. **Classify data** into two time periods: **Pre-2000 (1990-1999)** and **Post-2000 (2000-2025)** based on the year\n4. **Calculate volatility metrics** for each **period** and **fuel** type combination:\n - Compute the **mean price** (average price level)\n - Compute the **standard deviation** (absolute price variability)\n - Calculate the **coefficient of variation** to measure relative volatility\n5. **Round numerical values** for improved readability (**avg_price** and **std_dev** to 3 decimals, **coefficient_of_variation** to 2 decimals)\n6. **Return summary statistics** showing volatility characteristics for **diesel** and **gasoline** in each time period","concepts":[{"explanation":"A normalized measure of price volatility that indicates the relative variability of prices independent of their absolute level. Calculated as \\( \\frac{\\text{std\\_dev}}{\\text{avg\\_price}} \\times 100 \\), this metric allows for fair comparison of price volatility between different time periods or fuel types that may have substantially different average price levels. A higher coefficient indicates more relative price instability.","field":"coefficient_of_variation"},{"explanation":"This analysis employs a **comparative volatility assessment** framework to examine fuel price stability across two distinct time periods. The approach uses **temporal aggregation** (grouping by date and fuel) followed by **period-based stratification** (pre-2000 vs. post-2000) to compute **descriptive volatility statistics** (mean, standard deviation, and coefficient of variation). This methodology allows for direct comparison of both absolute and relative price fluctuations across time periods and fuel types. **Alternative approaches** could include: (1) time series decomposition to separate trend, seasonal, and irregular components; (2) GARCH models to capture time-varying volatility; (3) moving window analysis to track volatility changes over shorter intervals; or (4) regime-switching models to identify distinct volatility states.","field":"Statistical Analysis"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for period classification\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Extract year for period classification\n df_agg['year'] = df_agg['date'].dt.year\n \n # Classify into pre-2000 and post-2000 periods\n df_agg['period'] = df_agg['year'].apply(lambda x: 'Pre-2000 (1990-1999)' if x < 2000 else 'Post-2000 (2000-2025)')\n \n # Calculate volatility metrics by period and fuel\n volatility_stats = df_agg.groupby(['period', 'fuel']).agg({\n 'price': ['mean', 'std']\n }).reset_index()\n \n # Flatten column names\n volatility_stats.columns = ['period', 'fuel', 'avg_price', 'std_dev']\n \n # Calculate coefficient of variation (CV = std_dev / mean * 100)\n volatility_stats['coefficient_of_variation'] = (volatility_stats['std_dev'] / volatility_stats['avg_price']) * 100\n \n # Round values for readability\n volatility_stats['avg_price'] = volatility_stats['avg_price'].round(3)\n volatility_stats['std_dev'] = volatility_stats['std_dev'].round(3)\n volatility_stats['coefficient_of_variation'] = volatility_stats['coefficient_of_variation'].round(2)\n \n transformed_df = volatility_stats[['period', 'fuel', 'avg_price', 'std_dev', 'coefficient_of_variation']]\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThis code performs a statistical analysis of **gas price volatility** across two time periods:\n\n1. **Aggregate prices** by computing the mean **price** for each **date** and **fuel** type, averaging across all **grades** and **formulations**\n2. **Convert dates** to datetime format and extract the **year** from each date\n3. **Classify data** into two time periods: **Pre-2000 (1990-1999)** and **Post-2000 (2000-2025)** based on the year\n4. **Calculate volatility metrics** for each **period** and **fuel** type combination:\n - Compute the **mean price** (average price level)\n - Compute the **standard deviation** (absolute price variability)\n - Calculate the **coefficient of variation** to measure relative volatility\n5. **Round numerical values** for improved readability (**avg_price** and **std_dev** to 3 decimals, **coefficient_of_variation** to 2 decimals)\n6. **Return summary statistics** showing volatility characteristics for **diesel** and **gasoline** in each time period\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"coefficient_of_variation\",\n \"explanation\": \"A normalized measure of price volatility that indicates the relative variability of prices independent of their absolute level. Calculated as \\\\( \\\\frac{\\\\text{std\\\\_dev}}{\\\\text{avg\\\\_price}} \\\\times 100 \\\\), this metric allows for fair comparison of price volatility between different time periods or fuel types that may have substantially different average price levels. A higher coefficient indicates more relative price instability.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis employs a **comparative volatility assessment** framework to examine fuel price stability across two distinct time periods. The approach uses **temporal aggregation** (grouping by date and fuel) followed by **period-based stratification** (pre-2000 vs. post-2000) to compute **descriptive volatility statistics** (mean, standard deviation, and coefficient of variation). This methodology allows for direct comparison of both absolute and relative price fluctuations across time periods and fuel types. **Alternative approaches** could include: (1) time series decomposition to separate trend, seasonal, and irregular components; (2) GARCH models to capture time-varying volatility; (3) moving window analysis to track volatility changes over shorter intervals; or (4) regime-switching models to identify distinct volatility states.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-34","displayId":"fuel-price-forecast","names":["avg_price","date","fuel","is_predicted"],"rows":[{"avg_price":1.106,"date":"1994-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0292206988,"date":"1994-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.107,"date":"1994-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0311478914,"date":"1994-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1994-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0330750841,"date":"1994-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.108,"date":"1994-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0350022767,"date":"1994-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.105,"date":"1994-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0369294694,"date":"1994-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1994-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.038856662,"date":"1994-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.104,"date":"1994-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0407838547,"date":"1994-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.101,"date":"1994-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0427110473,"date":"1994-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.099,"date":"1994-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.04463824,"date":"1994-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.099,"date":"1994-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0465654326,"date":"1994-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.098,"date":"1994-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0484926253,"date":"1994-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.101,"date":"1994-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0504198179,"date":"1994-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.098,"date":"1994-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0523470106,"date":"1994-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.103,"date":"1994-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0542742032,"date":"1994-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.108,"date":"1994-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0562013959,"date":"1994-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1994-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0581285885,"date":"1994-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.11,"date":"1994-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0600557812,"date":"1994-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.111,"date":"1994-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0619829738,"date":"1994-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.111,"date":"1994-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0639101665,"date":"1994-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.116,"date":"1994-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0658373591,"date":"1994-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.127,"date":"1994-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0677645518,"date":"1994-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.127,"date":"1994-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0696917444,"date":"1994-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1994-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0716189371,"date":"1994-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.122,"date":"1994-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0735461297,"date":"1994-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1994-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0754733223,"date":"1994-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.128,"date":"1994-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.077400515,"date":"1994-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1994-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0793277076,"date":"1994-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.12,"date":"1994-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0812549003,"date":"1994-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.118,"date":"1994-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0831820929,"date":"1994-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1994-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0851092856,"date":"1994-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.119,"date":"1994-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0870364782,"date":"1994-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.122,"date":"1994-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0889636709,"date":"1994-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.133,"date":"1994-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0908908635,"date":"1994-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.133,"date":"1994-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0928180562,"date":"1994-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.135,"date":"1994-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0947452488,"date":"1994-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.13,"date":"1994-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0966724415,"date":"1994-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1994-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0985996341,"date":"1994-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.123,"date":"1994-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1005268268,"date":"1994-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.114,"date":"1994-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1024540194,"date":"1994-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1994-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1043812121,"date":"1994-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1994-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1063084047,"date":"1994-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.104,"date":"1995-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1082355974,"date":"1995-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.102,"date":"1995-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.11016279,"date":"1995-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.1,"date":"1995-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1120899827,"date":"1995-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.095,"date":"1995-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1140171753,"date":"1995-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.09,"date":"1995-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.115944368,"date":"1995-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.086,"date":"1995-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1178715606,"date":"1995-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.088,"date":"1995-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1197987532,"date":"1995-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.088,"date":"1995-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1217259459,"date":"1995-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.089,"date":"1995-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1236531385,"date":"1995-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.089,"date":"1995-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1255803312,"date":"1995-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.088,"date":"1995-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1275075238,"date":"1995-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.085,"date":"1995-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1294347165,"date":"1995-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.088,"date":"1995-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1313619091,"date":"1995-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.094,"date":"1995-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1332891018,"date":"1995-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.101,"date":"1995-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1352162944,"date":"1995-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1995-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1371434871,"date":"1995-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.115,"date":"1995-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1390706797,"date":"1995-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.119,"date":"1995-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1409978724,"date":"1995-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1995-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.142925065,"date":"1995-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1995-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1448522577,"date":"1995-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1995-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1467794503,"date":"1995-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.13,"date":"1995-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.148706643,"date":"1995-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1995-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1506338356,"date":"1995-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.122,"date":"1995-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1525610283,"date":"1995-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1995-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1544882209,"date":"1995-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.112,"date":"1995-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1564154136,"date":"1995-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1995-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1583426062,"date":"1995-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.103,"date":"1995-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1602697989,"date":"1995-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.099,"date":"1995-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1621969915,"date":"1995-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.098,"date":"1995-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1641241841,"date":"1995-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.093,"date":"1995-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1660513768,"date":"1995-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.099,"date":"1995-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1679785694,"date":"1995-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1995-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1699057621,"date":"1995-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1995-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1718329547,"date":"1995-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1995-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1737601474,"date":"1995-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.115,"date":"1995-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.17568734,"date":"1995-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.119,"date":"1995-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1776145327,"date":"1995-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.122,"date":"1995-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1795417253,"date":"1995-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.121,"date":"1995-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.181468918,"date":"1995-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1995-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1833961106,"date":"1995-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1995-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1853233033,"date":"1995-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1995-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1872504959,"date":"1995-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.114,"date":"1995-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1891776886,"date":"1995-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.11,"date":"1995-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1911048812,"date":"1995-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.118,"date":"1995-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1930320739,"date":"1995-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.118,"date":"1995-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1949592665,"date":"1995-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.119,"date":"1995-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1968864592,"date":"1995-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1995-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1988136518,"date":"1995-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.123,"date":"1995-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2007408445,"date":"1995-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1995-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2026680371,"date":"1995-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.13,"date":"1995-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2045952298,"date":"1995-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.141,"date":"1995-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2065224224,"date":"1995-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.148,"date":"1996-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.208449615,"date":"1996-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.146,"date":"1996-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2103768077,"date":"1996-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.152,"date":"1996-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2123040003,"date":"1996-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.144,"date":"1996-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.214231193,"date":"1996-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.136,"date":"1996-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2161583856,"date":"1996-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.13,"date":"1996-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2180855783,"date":"1996-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.134,"date":"1996-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2200127709,"date":"1996-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.151,"date":"1996-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2219399636,"date":"1996-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.164,"date":"1996-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2238671562,"date":"1996-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.175,"date":"1996-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2257943489,"date":"1996-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.173,"date":"1996-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2277215415,"date":"1996-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.172,"date":"1996-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2296487342,"date":"1996-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.21,"date":"1996-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2315759268,"date":"1996-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.222,"date":"1996-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2335031195,"date":"1996-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.249,"date":"1996-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2354303121,"date":"1996-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.305,"date":"1996-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2373575048,"date":"1996-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.304,"date":"1996-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2392846974,"date":"1996-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.285,"date":"1996-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2412118901,"date":"1996-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.292,"date":"1996-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2431390827,"date":"1996-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.285,"date":"1996-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2450662754,"date":"1996-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.274,"date":"1996-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.246993468,"date":"1996-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.254,"date":"1996-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2489206607,"date":"1996-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.24,"date":"1996-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2508478533,"date":"1996-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.215,"date":"1996-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2527750459,"date":"1996-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.193,"date":"1996-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2547022386,"date":"1996-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.179,"date":"1996-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2566294312,"date":"1996-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.172,"date":"1996-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2585566239,"date":"1996-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.173,"date":"1996-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2604838165,"date":"1996-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.178,"date":"1996-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2624110092,"date":"1996-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.184,"date":"1996-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2643382018,"date":"1996-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.178,"date":"1996-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2662653945,"date":"1996-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.184,"date":"1996-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2681925871,"date":"1996-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.191,"date":"1996-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2701197798,"date":"1996-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.206,"date":"1996-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2720469724,"date":"1996-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.222,"date":"1996-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2739741651,"date":"1996-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.231,"date":"1996-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2759013577,"date":"1996-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.25,"date":"1996-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2778285504,"date":"1996-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.276,"date":"1996-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.279755743,"date":"1996-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.277,"date":"1996-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2816829357,"date":"1996-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.289,"date":"1996-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2836101283,"date":"1996-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.308,"date":"1996-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.285537321,"date":"1996-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.326,"date":"1996-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2874645136,"date":"1996-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.329,"date":"1996-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2893917063,"date":"1996-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.329,"date":"1996-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2913188989,"date":"1996-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.323,"date":"1996-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2932460916,"date":"1996-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.316,"date":"1996-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2951732842,"date":"1996-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.324,"date":"1996-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2971004768,"date":"1996-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.327,"date":"1996-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2990276695,"date":"1996-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.323,"date":"1996-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3009548621,"date":"1996-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.32,"date":"1996-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3028820548,"date":"1996-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.307,"date":"1996-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3048092474,"date":"1996-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.3,"date":"1996-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3067364401,"date":"1996-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.295,"date":"1996-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3086636327,"date":"1996-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.291,"date":"1997-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3105908254,"date":"1997-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.296,"date":"1997-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.312518018,"date":"1997-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.293,"date":"1997-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3144452107,"date":"1997-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.283,"date":"1997-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3163724033,"date":"1997-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.288,"date":"1997-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.318299596,"date":"1997-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.285,"date":"1997-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3202267886,"date":"1997-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.278,"date":"1997-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3221539813,"date":"1997-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.269,"date":"1997-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3240811739,"date":"1997-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.252,"date":"1997-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3260083666,"date":"1997-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.23,"date":"1997-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3279355592,"date":"1997-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.22,"date":"1997-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3298627519,"date":"1997-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.22,"date":"1997-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3317899445,"date":"1997-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.225,"date":"1997-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3337171372,"date":"1997-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.217,"date":"1997-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3356443298,"date":"1997-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.216,"date":"1997-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3375715225,"date":"1997-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.211,"date":"1997-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3394987151,"date":"1997-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.205,"date":"1997-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3414259077,"date":"1997-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.205,"date":"1997-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3433531004,"date":"1997-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.191,"date":"1997-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.345280293,"date":"1997-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.191,"date":"1997-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3472074857,"date":"1997-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.196,"date":"1997-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3491346783,"date":"1997-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.19,"date":"1997-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.351061871,"date":"1997-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.187,"date":"1997-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3529890636,"date":"1997-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.172,"date":"1997-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3549162563,"date":"1997-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.162,"date":"1997-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3568434489,"date":"1997-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.153,"date":"1997-06-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3587706416,"date":"1997-06-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.159,"date":"1997-07-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3606978342,"date":"1997-07-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.152,"date":"1997-07-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3626250269,"date":"1997-07-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.147,"date":"1997-07-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3645522195,"date":"1997-07-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.145,"date":"1997-07-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3664794122,"date":"1997-07-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.155,"date":"1997-08-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3684066048,"date":"1997-08-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.168,"date":"1997-08-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3703337975,"date":"1997-08-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.167,"date":"1997-08-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3722609901,"date":"1997-08-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.169,"date":"1997-08-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3741881828,"date":"1997-08-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.165,"date":"1997-09-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3761153754,"date":"1997-09-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.163,"date":"1997-09-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3780425681,"date":"1997-09-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.156,"date":"1997-09-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3799697607,"date":"1997-09-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.154,"date":"1997-09-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3818969534,"date":"1997-09-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.16,"date":"1997-09-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.383824146,"date":"1997-09-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.175,"date":"1997-10-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3857513386,"date":"1997-10-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.185,"date":"1997-10-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3876785313,"date":"1997-10-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.185,"date":"1997-10-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3896057239,"date":"1997-10-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.185,"date":"1997-10-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3915329166,"date":"1997-10-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.188,"date":"1997-11-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3934601092,"date":"1997-11-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.19,"date":"1997-11-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3953873019,"date":"1997-11-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.195,"date":"1997-11-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3973144945,"date":"1997-11-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.193,"date":"1997-11-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3992416872,"date":"1997-11-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.189,"date":"1997-12-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4011688798,"date":"1997-12-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.174,"date":"1997-12-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4030960725,"date":"1997-12-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.162,"date":"1997-12-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4050232651,"date":"1997-12-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.155,"date":"1997-12-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4069504578,"date":"1997-12-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.15,"date":"1997-12-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4088776504,"date":"1997-12-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.147,"date":"1998-01-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4108048431,"date":"1998-01-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1998-01-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4127320357,"date":"1998-01-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1998-01-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4146592284,"date":"1998-01-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.096,"date":"1998-01-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.416586421,"date":"1998-01-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.091,"date":"1998-02-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4185136137,"date":"1998-02-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.085,"date":"1998-02-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4204408063,"date":"1998-02-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.082,"date":"1998-02-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.422367999,"date":"1998-02-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.079,"date":"1998-02-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4242951916,"date":"1998-02-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.074,"date":"1998-03-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4262223843,"date":"1998-03-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.066,"date":"1998-03-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4281495769,"date":"1998-03-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.057,"date":"1998-03-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4300767695,"date":"1998-03-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.049,"date":"1998-03-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4320039622,"date":"1998-03-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.068,"date":"1998-03-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4339311548,"date":"1998-03-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.067,"date":"1998-04-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4358583475,"date":"1998-04-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.065,"date":"1998-04-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4377855401,"date":"1998-04-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.065,"date":"1998-04-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4397127328,"date":"1998-04-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.07,"date":"1998-04-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4416399254,"date":"1998-04-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.072,"date":"1998-05-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4435671181,"date":"1998-05-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.075,"date":"1998-05-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4454943107,"date":"1998-05-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.069,"date":"1998-05-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4474215034,"date":"1998-05-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.06,"date":"1998-05-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.449348696,"date":"1998-05-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.053,"date":"1998-06-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4512758887,"date":"1998-06-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.045,"date":"1998-06-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4532030813,"date":"1998-06-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.04,"date":"1998-06-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.455130274,"date":"1998-06-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.033,"date":"1998-06-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4570574666,"date":"1998-06-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.034,"date":"1998-06-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4589846593,"date":"1998-06-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.036,"date":"1998-07-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4609118519,"date":"1998-07-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.031,"date":"1998-07-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4628390446,"date":"1998-07-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.027,"date":"1998-07-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4647662372,"date":"1998-07-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.02,"date":"1998-07-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4666934299,"date":"1998-07-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.016,"date":"1998-08-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4686206225,"date":"1998-08-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.01,"date":"1998-08-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4705478152,"date":"1998-08-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.007,"date":"1998-08-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4724750078,"date":"1998-08-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.004,"date":"1998-08-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4744022004,"date":"1998-08-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1,"date":"1998-08-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4763293931,"date":"1998-08-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.009,"date":"1998-09-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4782565857,"date":"1998-09-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.019,"date":"1998-09-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4801837784,"date":"1998-09-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.03,"date":"1998-09-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.482110971,"date":"1998-09-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.039,"date":"1998-09-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4840381637,"date":"1998-09-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.041,"date":"1998-10-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4859653563,"date":"1998-10-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.041,"date":"1998-10-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.487892549,"date":"1998-10-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.036,"date":"1998-10-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4898197416,"date":"1998-10-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.036,"date":"1998-10-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4917469343,"date":"1998-10-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.035,"date":"1998-11-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4936741269,"date":"1998-11-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.034,"date":"1998-11-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4956013196,"date":"1998-11-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.026,"date":"1998-11-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4975285122,"date":"1998-11-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.012,"date":"1998-11-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4994557049,"date":"1998-11-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.004,"date":"1998-11-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5013828975,"date":"1998-11-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.986,"date":"1998-12-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5033100902,"date":"1998-12-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.972,"date":"1998-12-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5052372828,"date":"1998-12-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.968,"date":"1998-12-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5071644755,"date":"1998-12-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.966,"date":"1998-12-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5090916681,"date":"1998-12-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.965,"date":"1999-01-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5110188608,"date":"1999-01-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.967,"date":"1999-01-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5129460534,"date":"1999-01-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.97,"date":"1999-01-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5148732461,"date":"1999-01-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.964,"date":"1999-01-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5168004387,"date":"1999-01-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.962,"date":"1999-02-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5187276314,"date":"1999-02-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.962,"date":"1999-02-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.520654824,"date":"1999-02-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.959,"date":"1999-02-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5225820166,"date":"1999-02-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.953,"date":"1999-02-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5245092093,"date":"1999-02-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.956,"date":"1999-03-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5264364019,"date":"1999-03-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.964,"date":"1999-03-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5283635946,"date":"1999-03-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1,"date":"1999-03-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5302907872,"date":"1999-03-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.018,"date":"1999-03-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5322179799,"date":"1999-03-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.046,"date":"1999-03-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5341451725,"date":"1999-03-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.075,"date":"1999-04-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5360723652,"date":"1999-04-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.084,"date":"1999-04-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5379995578,"date":"1999-04-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.08,"date":"1999-04-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5399267505,"date":"1999-04-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.078,"date":"1999-04-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5418539431,"date":"1999-04-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.078,"date":"1999-05-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5437811358,"date":"1999-05-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.083,"date":"1999-05-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5457083284,"date":"1999-05-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.075,"date":"1999-05-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5476355211,"date":"1999-05-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.066,"date":"1999-05-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5495627137,"date":"1999-05-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.065,"date":"1999-05-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5514899064,"date":"1999-05-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.059,"date":"1999-06-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.553417099,"date":"1999-06-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.068,"date":"1999-06-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5553442917,"date":"1999-06-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.082,"date":"1999-06-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5572714843,"date":"1999-06-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.087,"date":"1999-06-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.559198677,"date":"1999-06-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.102,"date":"1999-07-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5611258696,"date":"1999-07-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.114,"date":"1999-07-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5630530623,"date":"1999-07-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.133,"date":"1999-07-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5649802549,"date":"1999-07-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.137,"date":"1999-07-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5669074475,"date":"1999-07-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.146,"date":"1999-08-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5688346402,"date":"1999-08-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.156,"date":"1999-08-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5707618328,"date":"1999-08-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.178,"date":"1999-08-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5726890255,"date":"1999-08-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.186,"date":"1999-08-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5746162181,"date":"1999-08-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.194,"date":"1999-08-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5765434108,"date":"1999-08-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.198,"date":"1999-09-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5784706034,"date":"1999-09-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.209,"date":"1999-09-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5803977961,"date":"1999-09-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.226,"date":"1999-09-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5823249887,"date":"1999-09-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.226,"date":"1999-09-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5842521814,"date":"1999-09-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.234,"date":"1999-10-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.586179374,"date":"1999-10-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.228,"date":"1999-10-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5881065667,"date":"1999-10-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.224,"date":"1999-10-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5900337593,"date":"1999-10-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.226,"date":"1999-10-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.591960952,"date":"1999-10-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.229,"date":"1999-11-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5938881446,"date":"1999-11-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.234,"date":"1999-11-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5958153373,"date":"1999-11-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.261,"date":"1999-11-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5977425299,"date":"1999-11-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.289,"date":"1999-11-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5996697226,"date":"1999-11-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.304,"date":"1999-11-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6015969152,"date":"1999-11-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.294,"date":"1999-12-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6035241079,"date":"1999-12-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.288,"date":"1999-12-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6054513005,"date":"1999-12-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.287,"date":"1999-12-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6073784932,"date":"1999-12-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.298,"date":"1999-12-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6093056858,"date":"1999-12-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.309,"date":"2000-01-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6112328784,"date":"2000-01-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.307,"date":"2000-01-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6131600711,"date":"2000-01-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.307,"date":"2000-01-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6150872637,"date":"2000-01-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.418,"date":"2000-01-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6170144564,"date":"2000-01-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.439,"date":"2000-01-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.618941649,"date":"2000-01-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.47,"date":"2000-02-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6208688417,"date":"2000-02-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.456,"date":"2000-02-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6227960343,"date":"2000-02-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.456,"date":"2000-02-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.624723227,"date":"2000-02-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.461,"date":"2000-02-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6266504196,"date":"2000-02-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.49,"date":"2000-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6285776123,"date":"2000-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.496,"date":"2000-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6305048049,"date":"2000-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.479,"date":"2000-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6324319976,"date":"2000-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.451,"date":"2000-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6343591902,"date":"2000-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.442,"date":"2000-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6362863829,"date":"2000-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.419,"date":"2000-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6382135755,"date":"2000-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.398,"date":"2000-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6401407682,"date":"2000-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.428,"date":"2000-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6420679608,"date":"2000-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.418,"date":"2000-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6439951535,"date":"2000-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.402,"date":"2000-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6459223461,"date":"2000-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.415,"date":"2000-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6478495388,"date":"2000-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.432,"date":"2000-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6497767314,"date":"2000-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.431,"date":"2000-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6517039241,"date":"2000-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.419,"date":"2000-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6536311167,"date":"2000-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.411,"date":"2000-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6555583093,"date":"2000-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.423,"date":"2000-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.657485502,"date":"2000-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.432,"date":"2000-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6594126946,"date":"2000-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.453,"date":"2000-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6613398873,"date":"2000-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.449,"date":"2000-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6632670799,"date":"2000-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.435,"date":"2000-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6651942726,"date":"2000-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.424,"date":"2000-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6671214652,"date":"2000-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.408,"date":"2000-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6690486579,"date":"2000-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.41,"date":"2000-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6709758505,"date":"2000-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.447,"date":"2000-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6729030432,"date":"2000-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.471,"date":"2000-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6748302358,"date":"2000-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.536,"date":"2000-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6767574285,"date":"2000-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.609,"date":"2000-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6786846211,"date":"2000-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.629,"date":"2000-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6806118138,"date":"2000-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.653,"date":"2000-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6825390064,"date":"2000-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.657,"date":"2000-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6844661991,"date":"2000-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.625,"date":"2000-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6863933917,"date":"2000-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.614,"date":"2000-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6883205844,"date":"2000-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.67,"date":"2000-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.690247777,"date":"2000-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.648,"date":"2000-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6921749697,"date":"2000-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.629,"date":"2000-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6941021623,"date":"2000-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.61,"date":"2000-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.696029355,"date":"2000-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.603,"date":"2000-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6979565476,"date":"2000-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.627,"date":"2000-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6998837402,"date":"2000-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.645,"date":"2000-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7018109329,"date":"2000-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.622,"date":"2000-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7037381255,"date":"2000-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.577,"date":"2000-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7056653182,"date":"2000-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.545,"date":"2000-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7075925108,"date":"2000-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.515,"date":"2000-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7095197035,"date":"2000-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.522,"date":"2001-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7114468961,"date":"2001-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.52,"date":"2001-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7133740888,"date":"2001-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.509,"date":"2001-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7153012814,"date":"2001-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.528,"date":"2001-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7172284741,"date":"2001-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.539,"date":"2001-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7191556667,"date":"2001-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.52,"date":"2001-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7210828594,"date":"2001-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.518,"date":"2001-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.723010052,"date":"2001-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.48,"date":"2001-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7249372447,"date":"2001-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.451,"date":"2001-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7268644373,"date":"2001-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.42,"date":"2001-03-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.72879163,"date":"2001-03-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.406,"date":"2001-03-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7307188226,"date":"2001-03-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.392,"date":"2001-03-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7326460153,"date":"2001-03-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.379,"date":"2001-03-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7345732079,"date":"2001-03-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.391,"date":"2001-04-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7365004006,"date":"2001-04-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.397,"date":"2001-04-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7384275932,"date":"2001-04-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.437,"date":"2001-04-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7403547859,"date":"2001-04-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.443,"date":"2001-04-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7422819785,"date":"2001-04-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.442,"date":"2001-04-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7442091711,"date":"2001-04-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.47,"date":"2001-05-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7461363638,"date":"2001-05-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.491,"date":"2001-05-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7480635564,"date":"2001-05-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.494,"date":"2001-05-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7499907491,"date":"2001-05-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.529,"date":"2001-05-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7519179417,"date":"2001-05-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.514,"date":"2001-06-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7538451344,"date":"2001-06-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.486,"date":"2001-06-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.755772327,"date":"2001-06-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.48,"date":"2001-06-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7576995197,"date":"2001-06-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.447,"date":"2001-06-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7596267123,"date":"2001-06-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.407,"date":"2001-07-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.761553905,"date":"2001-07-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.392,"date":"2001-07-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7634810976,"date":"2001-07-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.38,"date":"2001-07-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7654082903,"date":"2001-07-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.348,"date":"2001-07-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7673354829,"date":"2001-07-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.347,"date":"2001-07-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7692626756,"date":"2001-07-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.345,"date":"2001-08-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7711898682,"date":"2001-08-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.367,"date":"2001-08-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7731170609,"date":"2001-08-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.394,"date":"2001-08-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7750442535,"date":"2001-08-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.452,"date":"2001-08-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7769714462,"date":"2001-08-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.488,"date":"2001-09-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7788986388,"date":"2001-09-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.492,"date":"2001-09-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7808258315,"date":"2001-09-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.527,"date":"2001-09-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7827530241,"date":"2001-09-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.473,"date":"2001-09-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7846802168,"date":"2001-09-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.39,"date":"2001-10-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7866074094,"date":"2001-10-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.371,"date":"2001-10-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.788534602,"date":"2001-10-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.353,"date":"2001-10-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7904617947,"date":"2001-10-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.318,"date":"2001-10-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7923889873,"date":"2001-10-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.31,"date":"2001-10-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.79431618,"date":"2001-10-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.291,"date":"2001-11-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7962433726,"date":"2001-11-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.269,"date":"2001-11-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7981705653,"date":"2001-11-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.252,"date":"2001-11-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8000977579,"date":"2001-11-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.223,"date":"2001-11-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8020249506,"date":"2001-11-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.194,"date":"2001-12-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8039521432,"date":"2001-12-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.173,"date":"2001-12-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8058793359,"date":"2001-12-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.143,"date":"2001-12-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8078065285,"date":"2001-12-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.154,"date":"2001-12-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8097337212,"date":"2001-12-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.169,"date":"2001-12-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8116609138,"date":"2001-12-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.168,"date":"2002-01-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8135881065,"date":"2002-01-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.159,"date":"2002-01-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8155152991,"date":"2002-01-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.14,"date":"2002-01-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8174424918,"date":"2002-01-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.144,"date":"2002-01-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8193696844,"date":"2002-01-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.144,"date":"2002-02-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8212968771,"date":"2002-02-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.153,"date":"2002-02-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8232240697,"date":"2002-02-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.156,"date":"2002-02-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8251512624,"date":"2002-02-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.154,"date":"2002-02-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.827078455,"date":"2002-02-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.173,"date":"2002-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8290056477,"date":"2002-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.216,"date":"2002-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8309328403,"date":"2002-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.251,"date":"2002-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8328600329,"date":"2002-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.281,"date":"2002-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8347872256,"date":"2002-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.295,"date":"2002-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8367144182,"date":"2002-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.323,"date":"2002-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8386416109,"date":"2002-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.32,"date":"2002-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8405688035,"date":"2002-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.304,"date":"2002-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8424959962,"date":"2002-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.302,"date":"2002-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8444231888,"date":"2002-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.305,"date":"2002-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8463503815,"date":"2002-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.299,"date":"2002-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8482775741,"date":"2002-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.309,"date":"2002-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8502047668,"date":"2002-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.308,"date":"2002-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8521319594,"date":"2002-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.3,"date":"2002-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8540591521,"date":"2002-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.286,"date":"2002-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8559863447,"date":"2002-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.275,"date":"2002-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8579135374,"date":"2002-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.281,"date":"2002-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.85984073,"date":"2002-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.289,"date":"2002-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8617679227,"date":"2002-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.294,"date":"2002-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8636951153,"date":"2002-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.3,"date":"2002-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.865622308,"date":"2002-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.311,"date":"2002-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8675495006,"date":"2002-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.303,"date":"2002-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8694766933,"date":"2002-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.304,"date":"2002-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8714038859,"date":"2002-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.303,"date":"2002-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8733310786,"date":"2002-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.333,"date":"2002-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8752582712,"date":"2002-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.37,"date":"2002-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8771854638,"date":"2002-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.388,"date":"2002-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8791126565,"date":"2002-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.396,"date":"2002-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8810398491,"date":"2002-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.414,"date":"2002-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8829670418,"date":"2002-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.417,"date":"2002-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8848942344,"date":"2002-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.438,"date":"2002-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8868214271,"date":"2002-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.46,"date":"2002-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8887486197,"date":"2002-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.461,"date":"2002-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8906758124,"date":"2002-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.469,"date":"2002-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.892603005,"date":"2002-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.456,"date":"2002-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8945301977,"date":"2002-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.442,"date":"2002-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8964573903,"date":"2002-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.427,"date":"2002-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.898384583,"date":"2002-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.405,"date":"2002-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9003117756,"date":"2002-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.405,"date":"2002-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9022389683,"date":"2002-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.407,"date":"2002-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9041661609,"date":"2002-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.405,"date":"2002-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9060933536,"date":"2002-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.401,"date":"2002-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9080205462,"date":"2002-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.44,"date":"2002-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9099477389,"date":"2002-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.491,"date":"2002-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9118749315,"date":"2002-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.501,"date":"2003-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9138021242,"date":"2003-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.478,"date":"2003-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9157293168,"date":"2003-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.48,"date":"2003-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9176565095,"date":"2003-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.492,"date":"2003-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9195837021,"date":"2003-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.542,"date":"2003-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9215108947,"date":"2003-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.662,"date":"2003-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9234380874,"date":"2003-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.704,"date":"2003-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.92536528,"date":"2003-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.709,"date":"2003-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9272924727,"date":"2003-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.753,"date":"2003-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9292196653,"date":"2003-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.771,"date":"2003-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.931146858,"date":"2003-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.752,"date":"2003-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9330740506,"date":"2003-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.662,"date":"2003-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9350012433,"date":"2003-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.602,"date":"2003-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9369284359,"date":"2003-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.554,"date":"2003-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9388556286,"date":"2003-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.539,"date":"2003-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9407828212,"date":"2003-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.529,"date":"2003-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9427100139,"date":"2003-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.508,"date":"2003-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9446372065,"date":"2003-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.484,"date":"2003-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9465643992,"date":"2003-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.444,"date":"2003-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9484915918,"date":"2003-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.443,"date":"2003-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9504187845,"date":"2003-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.434,"date":"2003-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9523459771,"date":"2003-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.423,"date":"2003-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9542731698,"date":"2003-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.422,"date":"2003-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9562003624,"date":"2003-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.432,"date":"2003-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9581275551,"date":"2003-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.423,"date":"2003-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9600547477,"date":"2003-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.42,"date":"2003-06-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9619819404,"date":"2003-06-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.428,"date":"2003-07-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.963909133,"date":"2003-07-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.435,"date":"2003-07-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9658363256,"date":"2003-07-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.439,"date":"2003-07-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9677635183,"date":"2003-07-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.438,"date":"2003-07-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9696907109,"date":"2003-07-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.453,"date":"2003-08-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9716179036,"date":"2003-08-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.492,"date":"2003-08-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9735450962,"date":"2003-08-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.498,"date":"2003-08-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9754722889,"date":"2003-08-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.503,"date":"2003-08-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9773994815,"date":"2003-08-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.501,"date":"2003-09-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9793266742,"date":"2003-09-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.488,"date":"2003-09-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9812538668,"date":"2003-09-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.471,"date":"2003-09-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9831810595,"date":"2003-09-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.444,"date":"2003-09-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9851082521,"date":"2003-09-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.429,"date":"2003-09-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9870354448,"date":"2003-09-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.445,"date":"2003-10-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9889626374,"date":"2003-10-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.483,"date":"2003-10-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9908898301,"date":"2003-10-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.502,"date":"2003-10-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9928170227,"date":"2003-10-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.495,"date":"2003-10-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9947442154,"date":"2003-10-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.481,"date":"2003-11-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.996671408,"date":"2003-11-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.476,"date":"2003-11-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9985986007,"date":"2003-11-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.481,"date":"2003-11-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0005257933,"date":"2003-11-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.491,"date":"2003-11-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.002452986,"date":"2003-11-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.476,"date":"2003-12-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0043801786,"date":"2003-12-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.481,"date":"2003-12-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0063073713,"date":"2003-12-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.486,"date":"2003-12-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0082345639,"date":"2003-12-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.504,"date":"2003-12-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0101617565,"date":"2003-12-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.502,"date":"2003-12-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0120889492,"date":"2003-12-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.503,"date":"2004-01-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0140161418,"date":"2004-01-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.551,"date":"2004-01-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0159433345,"date":"2004-01-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.559,"date":"2004-01-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0178705271,"date":"2004-01-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.591,"date":"2004-01-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0197977198,"date":"2004-01-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.581,"date":"2004-02-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0217249124,"date":"2004-02-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.568,"date":"2004-02-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0236521051,"date":"2004-02-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.584,"date":"2004-02-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0255792977,"date":"2004-02-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.595,"date":"2004-02-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0275064904,"date":"2004-02-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.619,"date":"2004-03-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.029433683,"date":"2004-03-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.628,"date":"2004-03-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0313608757,"date":"2004-03-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.617,"date":"2004-03-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0332880683,"date":"2004-03-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.641,"date":"2004-03-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.035215261,"date":"2004-03-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.642,"date":"2004-03-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0371424536,"date":"2004-03-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.648,"date":"2004-04-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0390696463,"date":"2004-04-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.679,"date":"2004-04-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0409968389,"date":"2004-04-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.724,"date":"2004-04-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0429240316,"date":"2004-04-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.718,"date":"2004-04-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0448512242,"date":"2004-04-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.717,"date":"2004-05-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0467784169,"date":"2004-05-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.745,"date":"2004-05-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0487056095,"date":"2004-05-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.763,"date":"2004-05-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0506328022,"date":"2004-05-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.761,"date":"2004-05-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0525599948,"date":"2004-05-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.746,"date":"2004-05-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0544871874,"date":"2004-05-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.734,"date":"2004-06-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0564143801,"date":"2004-06-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.711,"date":"2004-06-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0583415727,"date":"2004-06-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.7,"date":"2004-06-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0602687654,"date":"2004-06-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.7,"date":"2004-06-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.062195958,"date":"2004-06-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.716,"date":"2004-07-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0641231507,"date":"2004-07-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.74,"date":"2004-07-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0660503433,"date":"2004-07-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.744,"date":"2004-07-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.067977536,"date":"2004-07-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.754,"date":"2004-07-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0699047286,"date":"2004-07-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.78,"date":"2004-08-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0718319213,"date":"2004-08-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.814,"date":"2004-08-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0737591139,"date":"2004-08-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.825,"date":"2004-08-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0756863066,"date":"2004-08-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.874,"date":"2004-08-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0776134992,"date":"2004-08-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.871,"date":"2004-08-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0795406919,"date":"2004-08-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.869,"date":"2004-09-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0814678845,"date":"2004-09-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.874,"date":"2004-09-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0833950772,"date":"2004-09-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.912,"date":"2004-09-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0853222698,"date":"2004-09-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.012,"date":"2004-09-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0872494625,"date":"2004-09-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.053,"date":"2004-10-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0891766551,"date":"2004-10-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.092,"date":"2004-10-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0911038478,"date":"2004-10-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.18,"date":"2004-10-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0930310404,"date":"2004-10-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.212,"date":"2004-10-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0949582331,"date":"2004-10-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.206,"date":"2004-11-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0968854257,"date":"2004-11-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.163,"date":"2004-11-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0988126183,"date":"2004-11-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.132,"date":"2004-11-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.100739811,"date":"2004-11-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.116,"date":"2004-11-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1026670036,"date":"2004-11-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.116,"date":"2004-11-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1045941963,"date":"2004-11-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.069,"date":"2004-12-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1065213889,"date":"2004-12-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.997,"date":"2004-12-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1084485816,"date":"2004-12-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.984,"date":"2004-12-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1103757742,"date":"2004-12-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.987,"date":"2004-12-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1123029669,"date":"2004-12-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.957,"date":"2005-01-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1142301595,"date":"2005-01-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.934,"date":"2005-01-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1161573522,"date":"2005-01-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.952,"date":"2005-01-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1180845448,"date":"2005-01-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.959,"date":"2005-01-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1200117375,"date":"2005-01-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.992,"date":"2005-01-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1219389301,"date":"2005-01-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.983,"date":"2005-02-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1238661228,"date":"2005-02-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.986,"date":"2005-02-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1257933154,"date":"2005-02-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.02,"date":"2005-02-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1277205081,"date":"2005-02-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.118,"date":"2005-02-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1296477007,"date":"2005-02-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.168,"date":"2005-03-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1315748934,"date":"2005-03-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.194,"date":"2005-03-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.133502086,"date":"2005-03-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.244,"date":"2005-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1354292787,"date":"2005-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.249,"date":"2005-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1373564713,"date":"2005-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.303,"date":"2005-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.139283664,"date":"2005-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.316,"date":"2005-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1412108566,"date":"2005-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.259,"date":"2005-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1431380492,"date":"2005-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.289,"date":"2005-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1450652419,"date":"2005-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.262,"date":"2005-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1469924345,"date":"2005-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.227,"date":"2005-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1489196272,"date":"2005-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.189,"date":"2005-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1508468198,"date":"2005-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.156,"date":"2005-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1527740125,"date":"2005-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.16,"date":"2005-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1547012051,"date":"2005-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.234,"date":"2005-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1566283978,"date":"2005-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.276,"date":"2005-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1585555904,"date":"2005-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.313,"date":"2005-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1604827831,"date":"2005-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.336,"date":"2005-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1624099757,"date":"2005-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.348,"date":"2005-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1643371684,"date":"2005-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.408,"date":"2005-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.166264361,"date":"2005-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.392,"date":"2005-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1681915537,"date":"2005-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.342,"date":"2005-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1701187463,"date":"2005-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.348,"date":"2005-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.172045939,"date":"2005-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.407,"date":"2005-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1739731316,"date":"2005-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.567,"date":"2005-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1759003243,"date":"2005-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.588,"date":"2005-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1778275169,"date":"2005-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.59,"date":"2005-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1797547096,"date":"2005-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.898,"date":"2005-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1816819022,"date":"2005-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.847,"date":"2005-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1836090949,"date":"2005-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.732,"date":"2005-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1855362875,"date":"2005-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.798,"date":"2005-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1874634801,"date":"2005-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.144,"date":"2005-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1893906728,"date":"2005-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.15,"date":"2005-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1913178654,"date":"2005-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.148,"date":"2005-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1932450581,"date":"2005-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.157,"date":"2005-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1951722507,"date":"2005-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.876,"date":"2005-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1970994434,"date":"2005-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.698,"date":"2005-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.199026636,"date":"2005-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.602,"date":"2005-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2009538287,"date":"2005-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.513,"date":"2005-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2028810213,"date":"2005-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.479,"date":"2005-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.204808214,"date":"2005-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.425,"date":"2005-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2067354066,"date":"2005-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.436,"date":"2005-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2086625993,"date":"2005-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.462,"date":"2005-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2105897919,"date":"2005-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.448,"date":"2005-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2125169846,"date":"2005-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.442,"date":"2006-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2144441772,"date":"2006-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.485,"date":"2006-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2163713699,"date":"2006-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.449,"date":"2006-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2182985625,"date":"2006-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.472,"date":"2006-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2202257552,"date":"2006-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.489,"date":"2006-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2221529478,"date":"2006-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.499,"date":"2006-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2240801405,"date":"2006-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.476,"date":"2006-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2260073331,"date":"2006-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.455,"date":"2006-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2279345258,"date":"2006-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.471,"date":"2006-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2298617184,"date":"2006-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.545,"date":"2006-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.231788911,"date":"2006-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.543,"date":"2006-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2337161037,"date":"2006-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.581,"date":"2006-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2356432963,"date":"2006-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.565,"date":"2006-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.237570489,"date":"2006-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.617,"date":"2006-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2394976816,"date":"2006-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.654,"date":"2006-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2414248743,"date":"2006-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.765,"date":"2006-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2433520669,"date":"2006-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.876,"date":"2006-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2452792596,"date":"2006-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.896,"date":"2006-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2472064522,"date":"2006-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.897,"date":"2006-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2491336449,"date":"2006-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.92,"date":"2006-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2510608375,"date":"2006-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.888,"date":"2006-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2529880302,"date":"2006-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.882,"date":"2006-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2549152228,"date":"2006-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.89,"date":"2006-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2568424155,"date":"2006-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.918,"date":"2006-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2587696081,"date":"2006-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.915,"date":"2006-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2606968008,"date":"2006-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.867,"date":"2006-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2626239934,"date":"2006-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.898,"date":"2006-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2645511861,"date":"2006-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.918,"date":"2006-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2664783787,"date":"2006-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.926,"date":"2006-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2684055714,"date":"2006-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.946,"date":"2006-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.270332764,"date":"2006-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.98,"date":"2006-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2722599567,"date":"2006-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.055,"date":"2006-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2741871493,"date":"2006-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.065,"date":"2006-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2761143419,"date":"2006-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.033,"date":"2006-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2780415346,"date":"2006-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.027,"date":"2006-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2799687272,"date":"2006-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.967,"date":"2006-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2818959199,"date":"2006-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.857,"date":"2006-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2838231125,"date":"2006-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.713,"date":"2006-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2857503052,"date":"2006-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.595,"date":"2006-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2876774978,"date":"2006-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.546,"date":"2006-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2896046905,"date":"2006-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.506,"date":"2006-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2915318831,"date":"2006-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.503,"date":"2006-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2934590758,"date":"2006-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.524,"date":"2006-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2953862684,"date":"2006-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.517,"date":"2006-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2973134611,"date":"2006-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.506,"date":"2006-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2992406537,"date":"2006-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.552,"date":"2006-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3011678464,"date":"2006-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.553,"date":"2006-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.303095039,"date":"2006-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.567,"date":"2006-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3050222317,"date":"2006-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.618,"date":"2006-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3069494243,"date":"2006-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.621,"date":"2006-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.308876617,"date":"2006-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.606,"date":"2006-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3108038096,"date":"2006-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.596,"date":"2006-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3127310023,"date":"2006-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.58,"date":"2007-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3146581949,"date":"2007-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.537,"date":"2007-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3165853876,"date":"2007-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.463,"date":"2007-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3185125802,"date":"2007-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.43,"date":"2007-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3204397728,"date":"2007-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.413,"date":"2007-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3223669655,"date":"2007-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.4256666667,"date":"2007-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3242941581,"date":"2007-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.466,"date":"2007-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3262213508,"date":"2007-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.481,"date":"2007-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3281485434,"date":"2007-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.5423333333,"date":"2007-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3300757361,"date":"2007-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6166666667,"date":"2007-03-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3320029287,"date":"2007-03-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.679,"date":"2007-03-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3339301214,"date":"2007-03-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.673,"date":"2007-03-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.335857314,"date":"2007-03-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6666666667,"date":"2007-03-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3377845067,"date":"2007-03-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7813333333,"date":"2007-04-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3397116993,"date":"2007-04-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8306666667,"date":"2007-04-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.341638892,"date":"2007-04-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8696666667,"date":"2007-04-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3435660846,"date":"2007-04-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8416666667,"date":"2007-04-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3454932773,"date":"2007-04-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.796,"date":"2007-04-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3474204699,"date":"2007-04-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7746666667,"date":"2007-05-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3493476626,"date":"2007-05-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.755,"date":"2007-05-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3512748552,"date":"2007-05-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7883333333,"date":"2007-05-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3532020479,"date":"2007-05-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8016666667,"date":"2007-05-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3551292405,"date":"2007-05-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7833333333,"date":"2007-06-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3570564332,"date":"2007-06-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.774,"date":"2007-06-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3589836258,"date":"2007-06-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7916666667,"date":"2007-06-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3609108185,"date":"2007-06-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8226666667,"date":"2007-06-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3628380111,"date":"2007-06-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8166666667,"date":"2007-07-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3647652037,"date":"2007-07-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.839,"date":"2007-07-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3666923964,"date":"2007-07-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.875,"date":"2007-07-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.368619589,"date":"2007-07-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8736666667,"date":"2007-07-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3705467817,"date":"2007-07-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.872,"date":"2007-07-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3724739743,"date":"2007-07-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8846666667,"date":"2007-08-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.374401167,"date":"2007-08-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8326666667,"date":"2007-08-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3763283596,"date":"2007-08-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8573333333,"date":"2007-08-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3782555523,"date":"2007-08-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8523333333,"date":"2007-08-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3801827449,"date":"2007-08-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8843333333,"date":"2007-09-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3821099376,"date":"2007-09-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9156666667,"date":"2007-09-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3840371302,"date":"2007-09-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9563333333,"date":"2007-09-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3859643229,"date":"2007-09-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.026,"date":"2007-09-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3878915155,"date":"2007-09-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.04,"date":"2007-10-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3898187082,"date":"2007-10-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.022,"date":"2007-10-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3917459008,"date":"2007-10-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.0226666667,"date":"2007-10-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3936730935,"date":"2007-10-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.0756666667,"date":"2007-10-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3956002861,"date":"2007-10-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.141,"date":"2007-10-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3975274788,"date":"2007-10-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2913333333,"date":"2007-11-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3994546714,"date":"2007-11-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.4103333333,"date":"2007-11-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4013818641,"date":"2007-11-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3896666667,"date":"2007-11-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4033090567,"date":"2007-11-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.4273333333,"date":"2007-11-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4052362494,"date":"2007-11-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.393,"date":"2007-12-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.407163442,"date":"2007-12-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2963333333,"date":"2007-12-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4090906346,"date":"2007-12-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2816666667,"date":"2007-12-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4110178273,"date":"2007-12-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2846666667,"date":"2007-12-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4129450199,"date":"2007-12-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3243333333,"date":"2007-12-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4148722126,"date":"2007-12-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3546666667,"date":"2008-01-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4167994052,"date":"2008-01-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2986666667,"date":"2008-01-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4187265979,"date":"2008-01-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2416666667,"date":"2008-01-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4206537905,"date":"2008-01-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.234,"date":"2008-01-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4225809832,"date":"2008-01-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2593333333,"date":"2008-02-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4245081758,"date":"2008-02-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.258,"date":"2008-02-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4264353685,"date":"2008-02-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3786666667,"date":"2008-02-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4283625611,"date":"2008-02-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.5403333333,"date":"2008-02-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4302897538,"date":"2008-02-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.6403333333,"date":"2008-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4322169464,"date":"2008-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.806,"date":"2008-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4341441391,"date":"2008-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.96,"date":"2008-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4360713317,"date":"2008-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.973,"date":"2008-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4379985244,"date":"2008-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.9416666667,"date":"2008-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.439925717,"date":"2008-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.932,"date":"2008-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4418529097,"date":"2008-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.0383333333,"date":"2008-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4437801023,"date":"2008-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.1216666667,"date":"2008-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.445707295,"date":"2008-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.154,"date":"2008-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4476344876,"date":"2008-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.12,"date":"2008-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4495616803,"date":"2008-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.3113333333,"date":"2008-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4514888729,"date":"2008-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.4823333333,"date":"2008-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4534160655,"date":"2008-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.7043333333,"date":"2008-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4553432582,"date":"2008-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.6863333333,"date":"2008-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4572704508,"date":"2008-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.668,"date":"2008-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4591976435,"date":"2008-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.6666666667,"date":"2008-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4611248361,"date":"2008-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.6196666667,"date":"2008-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4630520288,"date":"2008-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.6186666667,"date":"2008-06-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4649792214,"date":"2008-06-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.712,"date":"2008-07-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4669064141,"date":"2008-07-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.7473333333,"date":"2008-07-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4688336067,"date":"2008-07-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.692,"date":"2008-07-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4707607994,"date":"2008-07-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.5763333333,"date":"2008-07-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.472687992,"date":"2008-07-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.4706666667,"date":"2008-08-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4746151847,"date":"2008-08-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.3203333333,"date":"2008-08-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4765423773,"date":"2008-08-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.176,"date":"2008-08-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.47846957,"date":"2008-08-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.114,"date":"2008-08-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4803967626,"date":"2008-08-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.0903333333,"date":"2008-09-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4823239553,"date":"2008-09-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.0233333333,"date":"2008-09-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4842511479,"date":"2008-09-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.997,"date":"2008-09-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4861783406,"date":"2008-09-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.9366666667,"date":"2008-09-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4881055332,"date":"2008-09-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.9383333333,"date":"2008-09-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4900327259,"date":"2008-09-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.8476666667,"date":"2008-10-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4919599185,"date":"2008-10-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.6296666667,"date":"2008-10-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4938871112,"date":"2008-10-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.4456666667,"date":"2008-10-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4958143038,"date":"2008-10-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.259,"date":"2008-10-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4977414964,"date":"2008-10-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.0606666667,"date":"2008-11-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4996686891,"date":"2008-11-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9103333333,"date":"2008-11-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5015958817,"date":"2008-11-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7766666667,"date":"2008-11-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5035230744,"date":"2008-11-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.637,"date":"2008-11-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.505450267,"date":"2008-11-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.5943333333,"date":"2008-12-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5073774597,"date":"2008-12-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.519,"date":"2008-12-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5093046523,"date":"2008-12-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.426,"date":"2008-12-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.511231845,"date":"2008-12-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.3695,"date":"2008-12-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5131590376,"date":"2008-12-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.331,"date":"2008-12-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5150862303,"date":"2008-12-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.295,"date":"2009-01-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5170134229,"date":"2009-01-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.319,"date":"2009-01-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5189406156,"date":"2009-01-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.3015,"date":"2009-01-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5208678082,"date":"2009-01-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.273,"date":"2009-01-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5227950009,"date":"2009-01-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.251,"date":"2009-02-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5247221935,"date":"2009-02-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2245,"date":"2009-02-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5266493862,"date":"2009-02-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.1915,"date":"2009-02-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5285765788,"date":"2009-02-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.134,"date":"2009-02-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5305037715,"date":"2009-02-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.091,"date":"2009-03-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5324309641,"date":"2009-03-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.048,"date":"2009-03-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5343581568,"date":"2009-03-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.02,"date":"2009-03-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5362853494,"date":"2009-03-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.0915,"date":"2009-03-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5382125421,"date":"2009-03-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.223,"date":"2009-03-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5401397347,"date":"2009-03-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2305,"date":"2009-04-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5420669273,"date":"2009-04-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2315,"date":"2009-04-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.54399412,"date":"2009-04-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2235,"date":"2009-04-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5459213126,"date":"2009-04-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.204,"date":"2009-04-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5478485053,"date":"2009-04-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.1885,"date":"2009-05-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5497756979,"date":"2009-05-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2195,"date":"2009-05-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5517028906,"date":"2009-05-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.234,"date":"2009-05-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5536300832,"date":"2009-05-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.276,"date":"2009-05-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5555572759,"date":"2009-05-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.353,"date":"2009-06-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5574844685,"date":"2009-06-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.4995,"date":"2009-06-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5594116612,"date":"2009-06-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.5735,"date":"2009-06-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5613388538,"date":"2009-06-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6175,"date":"2009-06-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5632660465,"date":"2009-06-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.61,"date":"2009-06-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5651932391,"date":"2009-06-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.596,"date":"2009-07-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5671204318,"date":"2009-07-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.544,"date":"2009-07-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5690476244,"date":"2009-07-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.4985,"date":"2009-07-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5709748171,"date":"2009-07-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.53,"date":"2009-07-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5729020097,"date":"2009-07-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.552,"date":"2009-08-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5748292024,"date":"2009-08-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6265,"date":"2009-08-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.576756395,"date":"2009-08-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.654,"date":"2009-08-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5786835877,"date":"2009-08-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.67,"date":"2009-08-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5806107803,"date":"2009-08-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6765,"date":"2009-08-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.582537973,"date":"2009-08-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6485,"date":"2009-09-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5844651656,"date":"2009-09-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.636,"date":"2009-09-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5863923582,"date":"2009-09-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.624,"date":"2009-09-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5883195509,"date":"2009-09-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6035,"date":"2009-09-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5902467435,"date":"2009-09-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.585,"date":"2009-10-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5921739362,"date":"2009-10-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.602,"date":"2009-10-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5941011288,"date":"2009-10-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7065,"date":"2009-10-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5960283215,"date":"2009-10-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.803,"date":"2009-10-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5979555141,"date":"2009-10-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8095,"date":"2009-11-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5998827068,"date":"2009-11-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.803,"date":"2009-11-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6018098994,"date":"2009-11-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7925,"date":"2009-11-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6037370921,"date":"2009-11-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7895,"date":"2009-11-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6056642847,"date":"2009-11-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7775,"date":"2009-11-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6075914774,"date":"2009-11-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7745,"date":"2009-12-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.60951867,"date":"2009-12-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7505,"date":"2009-12-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6114458627,"date":"2009-12-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7285,"date":"2009-12-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6133730553,"date":"2009-12-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.734,"date":"2009-12-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.615300248,"date":"2009-12-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.799,"date":"2010-01-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6172274406,"date":"2010-01-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8805,"date":"2010-01-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6191546333,"date":"2010-01-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.872,"date":"2010-01-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6210818259,"date":"2010-01-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8355,"date":"2010-01-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6230090186,"date":"2010-01-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.784,"date":"2010-02-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6249362112,"date":"2010-02-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.772,"date":"2010-02-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6268634039,"date":"2010-02-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7585,"date":"2010-02-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6287905965,"date":"2010-02-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.833,"date":"2010-02-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6307177891,"date":"2010-02-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.863,"date":"2010-03-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6326449818,"date":"2010-03-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.905,"date":"2010-03-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6345721744,"date":"2010-03-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.925,"date":"2010-03-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6364993671,"date":"2010-03-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9475,"date":"2010-03-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6384265597,"date":"2010-03-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9405,"date":"2010-03-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6403537524,"date":"2010-03-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.016,"date":"2010-04-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.642280945,"date":"2010-04-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.071,"date":"2010-04-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6442081377,"date":"2010-04-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.076,"date":"2010-04-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6461353303,"date":"2010-04-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.08,"date":"2010-04-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.648062523,"date":"2010-04-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.124,"date":"2010-05-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6499897156,"date":"2010-05-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.129,"date":"2010-05-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6519169083,"date":"2010-05-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.096,"date":"2010-05-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6538441009,"date":"2010-05-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.023,"date":"2010-05-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6557712936,"date":"2010-05-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9815,"date":"2010-05-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6576984862,"date":"2010-05-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9475,"date":"2010-06-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6596256789,"date":"2010-06-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.929,"date":"2010-06-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6615528715,"date":"2010-06-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9615,"date":"2010-06-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6634800642,"date":"2010-06-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9565,"date":"2010-06-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6654072568,"date":"2010-06-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9245,"date":"2010-07-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6673344495,"date":"2010-07-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9035,"date":"2010-07-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6692616421,"date":"2010-07-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.899,"date":"2010-07-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6711888348,"date":"2010-07-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.919,"date":"2010-07-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6731160274,"date":"2010-07-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.928,"date":"2010-08-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.67504322,"date":"2010-08-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.991,"date":"2010-08-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6769704127,"date":"2010-08-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.979,"date":"2010-08-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6788976053,"date":"2010-08-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.957,"date":"2010-08-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.680824798,"date":"2010-08-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.938,"date":"2010-08-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6827519906,"date":"2010-08-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.931,"date":"2010-09-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6846791833,"date":"2010-09-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.943,"date":"2010-09-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6866063759,"date":"2010-09-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.96,"date":"2010-09-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6885335686,"date":"2010-09-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.951,"date":"2010-09-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6904607612,"date":"2010-09-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3,"date":"2010-10-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6923879539,"date":"2010-10-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.066,"date":"2010-10-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6943151465,"date":"2010-10-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.073,"date":"2010-10-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6962423392,"date":"2010-10-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.067,"date":"2010-10-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6981695318,"date":"2010-10-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.067,"date":"2010-11-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7000967245,"date":"2010-11-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.116,"date":"2010-11-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7020239171,"date":"2010-11-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.184,"date":"2010-11-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7039511098,"date":"2010-11-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.171,"date":"2010-11-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7058783024,"date":"2010-11-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.162,"date":"2010-11-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7078054951,"date":"2010-11-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.197,"date":"2010-12-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7097326877,"date":"2010-12-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.231,"date":"2010-12-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7116598804,"date":"2010-12-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.248,"date":"2010-12-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.713587073,"date":"2010-12-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.294,"date":"2010-12-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7155142657,"date":"2010-12-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.331,"date":"2011-01-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7174414583,"date":"2011-01-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.333,"date":"2011-01-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7193686509,"date":"2011-01-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.407,"date":"2011-01-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7212958436,"date":"2011-01-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.43,"date":"2011-01-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7232230362,"date":"2011-01-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.438,"date":"2011-01-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7251502289,"date":"2011-01-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.513,"date":"2011-02-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7270774215,"date":"2011-02-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.534,"date":"2011-02-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7290046142,"date":"2011-02-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.573,"date":"2011-02-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7309318068,"date":"2011-02-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.716,"date":"2011-02-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7328589995,"date":"2011-02-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.871,"date":"2011-03-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7347861921,"date":"2011-03-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.908,"date":"2011-03-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7367133848,"date":"2011-03-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.907,"date":"2011-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7386405774,"date":"2011-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.932,"date":"2011-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7405677701,"date":"2011-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.976,"date":"2011-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7424949627,"date":"2011-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.078,"date":"2011-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7444221554,"date":"2011-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.105,"date":"2011-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.746349348,"date":"2011-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.098,"date":"2011-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7482765407,"date":"2011-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.124,"date":"2011-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7502037333,"date":"2011-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.104,"date":"2011-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.752130926,"date":"2011-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.061,"date":"2011-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7540581186,"date":"2011-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.997,"date":"2011-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7559853113,"date":"2011-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.948,"date":"2011-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7579125039,"date":"2011-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.94,"date":"2011-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7598396966,"date":"2011-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.954,"date":"2011-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7617668892,"date":"2011-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.95,"date":"2011-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7636940818,"date":"2011-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.888,"date":"2011-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7656212745,"date":"2011-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.85,"date":"2011-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7675484671,"date":"2011-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.899,"date":"2011-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7694756598,"date":"2011-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.923,"date":"2011-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7714028524,"date":"2011-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.949,"date":"2011-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7733300451,"date":"2011-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.937,"date":"2011-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7752572377,"date":"2011-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.897,"date":"2011-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7771844304,"date":"2011-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.835,"date":"2011-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.779111623,"date":"2011-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.81,"date":"2011-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7810388157,"date":"2011-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.82,"date":"2011-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7829660083,"date":"2011-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.868,"date":"2011-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.784893201,"date":"2011-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.862,"date":"2011-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7868203936,"date":"2011-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.833,"date":"2011-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7887475863,"date":"2011-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.786,"date":"2011-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7906747789,"date":"2011-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.749,"date":"2011-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7926019716,"date":"2011-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.721,"date":"2011-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7945291642,"date":"2011-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.801,"date":"2011-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7964563569,"date":"2011-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.825,"date":"2011-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7983835495,"date":"2011-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.892,"date":"2011-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8003107422,"date":"2011-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.887,"date":"2011-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8022379348,"date":"2011-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.987,"date":"2011-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8041651275,"date":"2011-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.01,"date":"2011-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8060923201,"date":"2011-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.964,"date":"2011-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8080195127,"date":"2011-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.931,"date":"2011-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8099467054,"date":"2011-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2011-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.811873898,"date":"2011-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.828,"date":"2011-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8138010907,"date":"2011-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.791,"date":"2011-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8157282833,"date":"2011-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.783,"date":"2012-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.817655476,"date":"2012-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.828,"date":"2012-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8195826686,"date":"2012-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.854,"date":"2012-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8215098613,"date":"2012-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.848,"date":"2012-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8234370539,"date":"2012-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.85,"date":"2012-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8253642466,"date":"2012-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.856,"date":"2012-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8272914392,"date":"2012-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.943,"date":"2012-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8292186319,"date":"2012-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.96,"date":"2012-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8311458245,"date":"2012-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.051,"date":"2012-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8330730172,"date":"2012-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.094,"date":"2012-03-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8350002098,"date":"2012-03-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.123,"date":"2012-03-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8369274025,"date":"2012-03-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.142,"date":"2012-03-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8388545951,"date":"2012-03-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.147,"date":"2012-03-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8407817878,"date":"2012-03-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.142,"date":"2012-04-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8427089804,"date":"2012-04-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.148,"date":"2012-04-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8446361731,"date":"2012-04-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.127,"date":"2012-04-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8465633657,"date":"2012-04-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.085,"date":"2012-04-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8484905584,"date":"2012-04-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.073,"date":"2012-04-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.850417751,"date":"2012-04-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.057,"date":"2012-05-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8523449436,"date":"2012-05-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.004,"date":"2012-05-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8542721363,"date":"2012-05-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.956,"date":"2012-05-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8561993289,"date":"2012-05-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.897,"date":"2012-05-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8581265216,"date":"2012-05-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.846,"date":"2012-06-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8600537142,"date":"2012-06-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.781,"date":"2012-06-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8619809069,"date":"2012-06-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.729,"date":"2012-06-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8639080995,"date":"2012-06-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.678,"date":"2012-06-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8658352922,"date":"2012-06-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.648,"date":"2012-07-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8677624848,"date":"2012-07-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.683,"date":"2012-07-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8696896775,"date":"2012-07-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.695,"date":"2012-07-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8716168701,"date":"2012-07-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.783,"date":"2012-07-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8735440628,"date":"2012-07-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.796,"date":"2012-07-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8754712554,"date":"2012-07-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.85,"date":"2012-08-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8773984481,"date":"2012-08-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.965,"date":"2012-08-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8793256407,"date":"2012-08-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.026,"date":"2012-08-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8812528334,"date":"2012-08-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.089,"date":"2012-08-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.883180026,"date":"2012-08-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.127,"date":"2012-09-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8851072187,"date":"2012-09-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.132,"date":"2012-09-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8870344113,"date":"2012-09-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.135,"date":"2012-09-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.888961604,"date":"2012-09-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.086,"date":"2012-09-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8908887966,"date":"2012-09-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.079,"date":"2012-10-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8928159893,"date":"2012-10-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.094,"date":"2012-10-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8947431819,"date":"2012-10-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.15,"date":"2012-10-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8966703745,"date":"2012-10-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.116,"date":"2012-10-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8985975672,"date":"2012-10-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.03,"date":"2012-10-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9005247598,"date":"2012-10-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.01,"date":"2012-11-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9024519525,"date":"2012-11-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.98,"date":"2012-11-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9043791451,"date":"2012-11-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.976,"date":"2012-11-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9063063378,"date":"2012-11-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.034,"date":"2012-11-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9082335304,"date":"2012-11-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.027,"date":"2012-12-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9101607231,"date":"2012-12-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.991,"date":"2012-12-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9120879157,"date":"2012-12-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.945,"date":"2012-12-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9140151084,"date":"2012-12-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.923,"date":"2012-12-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.915942301,"date":"2012-12-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.918,"date":"2012-12-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9178694937,"date":"2012-12-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.911,"date":"2013-01-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9197966863,"date":"2013-01-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2013-01-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.921723879,"date":"2013-01-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.902,"date":"2013-01-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9236510716,"date":"2013-01-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.927,"date":"2013-01-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9255782643,"date":"2013-01-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.022,"date":"2013-02-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9275054569,"date":"2013-02-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.104,"date":"2013-02-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9294326496,"date":"2013-02-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.157,"date":"2013-02-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9313598422,"date":"2013-02-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.159,"date":"2013-02-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9332870349,"date":"2013-02-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.13,"date":"2013-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9352142275,"date":"2013-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.088,"date":"2013-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9371414202,"date":"2013-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.047,"date":"2013-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9390686128,"date":"2013-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.006,"date":"2013-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9409958054,"date":"2013-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.993,"date":"2013-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9429229981,"date":"2013-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.977,"date":"2013-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9448501907,"date":"2013-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.942,"date":"2013-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9467773834,"date":"2013-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.887,"date":"2013-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.948704576,"date":"2013-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.851,"date":"2013-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9506317687,"date":"2013-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.845,"date":"2013-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9525589613,"date":"2013-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.866,"date":"2013-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.954486154,"date":"2013-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.89,"date":"2013-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9564133466,"date":"2013-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.88,"date":"2013-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9583405393,"date":"2013-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.869,"date":"2013-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9602677319,"date":"2013-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.849,"date":"2013-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9621949246,"date":"2013-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.841,"date":"2013-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9641221172,"date":"2013-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.838,"date":"2013-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9660493099,"date":"2013-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.817,"date":"2013-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9679765025,"date":"2013-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.828,"date":"2013-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9699036952,"date":"2013-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.867,"date":"2013-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9718308878,"date":"2013-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.903,"date":"2013-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9737580805,"date":"2013-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.915,"date":"2013-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9756852731,"date":"2013-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.909,"date":"2013-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9776124658,"date":"2013-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.896,"date":"2013-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9795396584,"date":"2013-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.9,"date":"2013-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9814668511,"date":"2013-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.913,"date":"2013-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9833940437,"date":"2013-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.981,"date":"2013-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9853212363,"date":"2013-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.981,"date":"2013-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.987248429,"date":"2013-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.974,"date":"2013-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9891756216,"date":"2013-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.949,"date":"2013-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9911028143,"date":"2013-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.919,"date":"2013-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9930300069,"date":"2013-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.897,"date":"2013-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9949571996,"date":"2013-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.886,"date":"2013-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9968843922,"date":"2013-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.886,"date":"2013-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9988115849,"date":"2013-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.87,"date":"2013-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0007387775,"date":"2013-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.857,"date":"2013-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0026659702,"date":"2013-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.832,"date":"2013-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0045931628,"date":"2013-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.822,"date":"2013-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0065203555,"date":"2013-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.844,"date":"2013-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0084475481,"date":"2013-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.883,"date":"2013-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0103747408,"date":"2013-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.879,"date":"2013-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0123019334,"date":"2013-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.871,"date":"2013-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0142291261,"date":"2013-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.873,"date":"2013-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0161563187,"date":"2013-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.903,"date":"2013-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0180835114,"date":"2013-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.91,"date":"2014-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.020010704,"date":"2014-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.886,"date":"2014-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0219378967,"date":"2014-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.873,"date":"2014-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0238650893,"date":"2014-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.904,"date":"2014-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.025792282,"date":"2014-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.951,"date":"2014-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0277194746,"date":"2014-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.977,"date":"2014-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0296466672,"date":"2014-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.989,"date":"2014-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0315738599,"date":"2014-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.017,"date":"2014-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0335010525,"date":"2014-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.016,"date":"2014-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0354282452,"date":"2014-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.021,"date":"2014-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0373554378,"date":"2014-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.003,"date":"2014-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0392826305,"date":"2014-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.988,"date":"2014-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0412098231,"date":"2014-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.975,"date":"2014-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0431370158,"date":"2014-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.959,"date":"2014-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0450642084,"date":"2014-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.952,"date":"2014-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0469914011,"date":"2014-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.971,"date":"2014-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0489185937,"date":"2014-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.975,"date":"2014-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0508457864,"date":"2014-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.964,"date":"2014-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.052772979,"date":"2014-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.948,"date":"2014-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0547001717,"date":"2014-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.934,"date":"2014-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0566273643,"date":"2014-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.925,"date":"2014-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.058554557,"date":"2014-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.918,"date":"2014-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0604817496,"date":"2014-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.892,"date":"2014-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0624089423,"date":"2014-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.882,"date":"2014-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0643361349,"date":"2014-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.919,"date":"2014-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0662633276,"date":"2014-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.92,"date":"2014-06-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0681905202,"date":"2014-06-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.913,"date":"2014-07-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0701177129,"date":"2014-07-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2014-07-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0720449055,"date":"2014-07-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.869,"date":"2014-07-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0739720981,"date":"2014-07-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.858,"date":"2014-07-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0758992908,"date":"2014-07-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.853,"date":"2014-08-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0778264834,"date":"2014-08-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.843,"date":"2014-08-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0797536761,"date":"2014-08-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.835,"date":"2014-08-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0816808687,"date":"2014-08-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.821,"date":"2014-08-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0836080614,"date":"2014-08-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.814,"date":"2014-09-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.085535254,"date":"2014-09-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.814,"date":"2014-09-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0874624467,"date":"2014-09-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.801,"date":"2014-09-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0893896393,"date":"2014-09-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.778,"date":"2014-09-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.091316832,"date":"2014-09-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.755,"date":"2014-09-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0932440246,"date":"2014-09-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.733,"date":"2014-10-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0951712173,"date":"2014-10-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.698,"date":"2014-10-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0970984099,"date":"2014-10-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.656,"date":"2014-10-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0990256026,"date":"2014-10-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.635,"date":"2014-10-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1009527952,"date":"2014-10-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.623,"date":"2014-11-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1028799879,"date":"2014-11-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.677,"date":"2014-11-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1048071805,"date":"2014-11-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.661,"date":"2014-11-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1067343732,"date":"2014-11-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.628,"date":"2014-11-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1086615658,"date":"2014-11-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.605,"date":"2014-12-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1105887585,"date":"2014-12-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.535,"date":"2014-12-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1125159511,"date":"2014-12-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.419,"date":"2014-12-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1144431438,"date":"2014-12-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.281,"date":"2014-12-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1163703364,"date":"2014-12-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.213,"date":"2014-12-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.118297529,"date":"2014-12-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.137,"date":"2015-01-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1202247217,"date":"2015-01-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.053,"date":"2015-01-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1221519143,"date":"2015-01-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.933,"date":"2015-01-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.124079107,"date":"2015-01-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.866,"date":"2015-01-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1260062996,"date":"2015-01-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.831,"date":"2015-02-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1279334923,"date":"2015-02-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.835,"date":"2015-02-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1298606849,"date":"2015-02-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.865,"date":"2015-02-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1317878776,"date":"2015-02-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9,"date":"2015-02-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1337150702,"date":"2015-02-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.936,"date":"2015-03-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1356422629,"date":"2015-03-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.944,"date":"2015-03-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1375694555,"date":"2015-03-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.917,"date":"2015-03-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1394966482,"date":"2015-03-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.864,"date":"2015-03-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1414238408,"date":"2015-03-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.824,"date":"2015-03-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1433510335,"date":"2015-03-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.784,"date":"2015-04-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1452782261,"date":"2015-04-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.754,"date":"2015-04-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1472054188,"date":"2015-04-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.78,"date":"2015-04-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1491326114,"date":"2015-04-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.811,"date":"2015-04-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1510598041,"date":"2015-04-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.854,"date":"2015-05-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1529869967,"date":"2015-05-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.878,"date":"2015-05-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1549141894,"date":"2015-05-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.904,"date":"2015-05-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.156841382,"date":"2015-05-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.914,"date":"2015-05-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1587685747,"date":"2015-05-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.909,"date":"2015-06-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1606957673,"date":"2015-06-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.884,"date":"2015-06-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1626229599,"date":"2015-06-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.87,"date":"2015-06-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1645501526,"date":"2015-06-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.859,"date":"2015-06-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1664773452,"date":"2015-06-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.843,"date":"2015-06-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1684045379,"date":"2015-06-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.832,"date":"2015-07-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1703317305,"date":"2015-07-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.814,"date":"2015-07-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1722589232,"date":"2015-07-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.782,"date":"2015-07-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1741861158,"date":"2015-07-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.723,"date":"2015-07-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1761133085,"date":"2015-07-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.668,"date":"2015-08-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1780405011,"date":"2015-08-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.617,"date":"2015-08-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1799676938,"date":"2015-08-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.615,"date":"2015-08-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1818948864,"date":"2015-08-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.561,"date":"2015-08-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1838220791,"date":"2015-08-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.514,"date":"2015-08-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1857492717,"date":"2015-08-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.534,"date":"2015-09-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1876764644,"date":"2015-09-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.517,"date":"2015-09-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.189603657,"date":"2015-09-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.493,"date":"2015-09-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1915308497,"date":"2015-09-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.476,"date":"2015-09-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1934580423,"date":"2015-09-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.492,"date":"2015-10-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.195385235,"date":"2015-10-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.556,"date":"2015-10-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1973124276,"date":"2015-10-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.531,"date":"2015-10-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1992396203,"date":"2015-10-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.498,"date":"2015-10-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2011668129,"date":"2015-10-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.485,"date":"2015-11-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2030940056,"date":"2015-11-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.502,"date":"2015-11-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2050211982,"date":"2015-11-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.482,"date":"2015-11-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2069483908,"date":"2015-11-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.445,"date":"2015-11-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2088755835,"date":"2015-11-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.421,"date":"2015-11-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2108027761,"date":"2015-11-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.379,"date":"2015-12-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2127299688,"date":"2015-12-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.338,"date":"2015-12-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2146571614,"date":"2015-12-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.284,"date":"2015-12-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2165843541,"date":"2015-12-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.237,"date":"2015-12-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2185115467,"date":"2015-12-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.211,"date":"2016-01-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2204387394,"date":"2016-01-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.177,"date":"2016-01-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.222365932,"date":"2016-01-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.112,"date":"2016-01-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2242931247,"date":"2016-01-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.071,"date":"2016-01-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2262203173,"date":"2016-01-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.031,"date":"2016-02-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.22814751,"date":"2016-02-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.008,"date":"2016-02-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2300747026,"date":"2016-02-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.98,"date":"2016-02-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2320018953,"date":"2016-02-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.983,"date":"2016-02-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2339290879,"date":"2016-02-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.989,"date":"2016-02-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2358562806,"date":"2016-02-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.021,"date":"2016-03-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2377834732,"date":"2016-03-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.099,"date":"2016-03-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2397106659,"date":"2016-03-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.119,"date":"2016-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2416378585,"date":"2016-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.121,"date":"2016-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2435650512,"date":"2016-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.115,"date":"2016-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2454922438,"date":"2016-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.128,"date":"2016-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2474194365,"date":"2016-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.165,"date":"2016-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2493466291,"date":"2016-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.198,"date":"2016-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2512738217,"date":"2016-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.266,"date":"2016-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2532010144,"date":"2016-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.271,"date":"2016-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.255128207,"date":"2016-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.297,"date":"2016-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2570553997,"date":"2016-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.357,"date":"2016-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2589825923,"date":"2016-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.382,"date":"2016-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.260909785,"date":"2016-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.407,"date":"2016-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2628369776,"date":"2016-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.431,"date":"2016-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2647641703,"date":"2016-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.426,"date":"2016-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2666913629,"date":"2016-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.426,"date":"2016-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2686185556,"date":"2016-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.423,"date":"2016-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2705457482,"date":"2016-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.414,"date":"2016-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2724729409,"date":"2016-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.402,"date":"2016-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2744001335,"date":"2016-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.379,"date":"2016-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2763273262,"date":"2016-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.348,"date":"2016-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2782545188,"date":"2016-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.316,"date":"2016-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2801817115,"date":"2016-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.31,"date":"2016-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2821089041,"date":"2016-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.37,"date":"2016-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2840360968,"date":"2016-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.409,"date":"2016-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2859632894,"date":"2016-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.407,"date":"2016-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2878904821,"date":"2016-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.399,"date":"2016-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2898176747,"date":"2016-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.389,"date":"2016-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2917448674,"date":"2016-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.382,"date":"2016-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.29367206,"date":"2016-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.389,"date":"2016-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2955992526,"date":"2016-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.445,"date":"2016-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2975264453,"date":"2016-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.481,"date":"2016-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2994536379,"date":"2016-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.478,"date":"2016-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3013808306,"date":"2016-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.479,"date":"2016-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3033080232,"date":"2016-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.47,"date":"2016-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3052352159,"date":"2016-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.443,"date":"2016-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3071624085,"date":"2016-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.421,"date":"2016-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3090896012,"date":"2016-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.42,"date":"2016-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3110167938,"date":"2016-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.48,"date":"2016-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3129439865,"date":"2016-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.493,"date":"2016-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3148711791,"date":"2016-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.527,"date":"2016-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3167983718,"date":"2016-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.54,"date":"2016-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3187255644,"date":"2016-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.586,"date":"2017-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3206527571,"date":"2017-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.597,"date":"2017-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3225799497,"date":"2017-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.585,"date":"2017-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3245071424,"date":"2017-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.569,"date":"2017-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.326434335,"date":"2017-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.562,"date":"2017-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3283615277,"date":"2017-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.558,"date":"2017-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3302887203,"date":"2017-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.565,"date":"2017-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.332215913,"date":"2017-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.572,"date":"2017-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3341431056,"date":"2017-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.577,"date":"2017-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3360702983,"date":"2017-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.579,"date":"2017-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3379974909,"date":"2017-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.564,"date":"2017-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3399246835,"date":"2017-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.539,"date":"2017-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3418518762,"date":"2017-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.532,"date":"2017-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3437790688,"date":"2017-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.556,"date":"2017-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3457062615,"date":"2017-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.582,"date":"2017-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3476334541,"date":"2017-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.597,"date":"2017-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3495606468,"date":"2017-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.595,"date":"2017-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3514878394,"date":"2017-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.583,"date":"2017-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3534150321,"date":"2017-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.565,"date":"2017-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3553422247,"date":"2017-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.544,"date":"2017-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3572694174,"date":"2017-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.539,"date":"2017-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.35919661,"date":"2017-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.571,"date":"2017-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3611238027,"date":"2017-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.564,"date":"2017-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3630509953,"date":"2017-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.524,"date":"2017-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.364978188,"date":"2017-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.489,"date":"2017-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3669053806,"date":"2017-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.465,"date":"2017-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3688325733,"date":"2017-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.472,"date":"2017-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3707597659,"date":"2017-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.481,"date":"2017-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3726869586,"date":"2017-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.491,"date":"2017-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3746141512,"date":"2017-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.507,"date":"2017-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3765413439,"date":"2017-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.531,"date":"2017-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3784685365,"date":"2017-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.581,"date":"2017-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3803957292,"date":"2017-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.598,"date":"2017-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3823229218,"date":"2017-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.596,"date":"2017-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3842501144,"date":"2017-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.605,"date":"2017-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3861773071,"date":"2017-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.758,"date":"2017-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3881044997,"date":"2017-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.802,"date":"2017-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3900316924,"date":"2017-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.791,"date":"2017-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.391958885,"date":"2017-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.788,"date":"2017-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3938860777,"date":"2017-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.792,"date":"2017-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3958132703,"date":"2017-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.776,"date":"2017-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.397740463,"date":"2017-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.787,"date":"2017-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3996676556,"date":"2017-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.797,"date":"2017-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4015948483,"date":"2017-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.819,"date":"2017-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4035220409,"date":"2017-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.882,"date":"2017-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4054492336,"date":"2017-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.915,"date":"2017-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4073764262,"date":"2017-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.912,"date":"2017-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4093036189,"date":"2017-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.926,"date":"2017-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4112308115,"date":"2017-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.922,"date":"2017-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4131580042,"date":"2017-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.91,"date":"2017-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4150851968,"date":"2017-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.901,"date":"2017-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4170123895,"date":"2017-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.903,"date":"2017-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4189395821,"date":"2017-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.973,"date":"2018-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4208667748,"date":"2018-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.996,"date":"2018-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4227939674,"date":"2018-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.028,"date":"2018-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4247211601,"date":"2018-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.025,"date":"2018-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4266483527,"date":"2018-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.07,"date":"2018-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4285755453,"date":"2018-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.086,"date":"2018-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.430502738,"date":"2018-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.063,"date":"2018-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4324299306,"date":"2018-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.027,"date":"2018-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4343571233,"date":"2018-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.007,"date":"2018-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4362843159,"date":"2018-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.992,"date":"2018-03-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4382115086,"date":"2018-03-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.976,"date":"2018-03-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4401387012,"date":"2018-03-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.972,"date":"2018-03-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4420658939,"date":"2018-03-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.01,"date":"2018-03-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4439930865,"date":"2018-03-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.042,"date":"2018-04-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4459202792,"date":"2018-04-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.043,"date":"2018-04-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4478474718,"date":"2018-04-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.104,"date":"2018-04-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4497746645,"date":"2018-04-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.133,"date":"2018-04-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4517018571,"date":"2018-04-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.157,"date":"2018-04-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4536290498,"date":"2018-04-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.171,"date":"2018-05-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4555562424,"date":"2018-05-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.239,"date":"2018-05-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4574834351,"date":"2018-05-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.277,"date":"2018-05-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4594106277,"date":"2018-05-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.288,"date":"2018-05-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4613378204,"date":"2018-05-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.285,"date":"2018-06-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.463265013,"date":"2018-06-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.266,"date":"2018-06-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4651922057,"date":"2018-06-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.244,"date":"2018-06-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4671193983,"date":"2018-06-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.216,"date":"2018-06-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.469046591,"date":"2018-06-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.236,"date":"2018-07-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4709737836,"date":"2018-07-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.243,"date":"2018-07-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4729009762,"date":"2018-07-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.239,"date":"2018-07-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4748281689,"date":"2018-07-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.22,"date":"2018-07-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4767553615,"date":"2018-07-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.226,"date":"2018-07-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4786825542,"date":"2018-07-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.223,"date":"2018-08-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4806097468,"date":"2018-08-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.217,"date":"2018-08-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4825369395,"date":"2018-08-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.207,"date":"2018-08-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4844641321,"date":"2018-08-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.226,"date":"2018-08-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4863913248,"date":"2018-08-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.252,"date":"2018-09-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4883185174,"date":"2018-09-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.258,"date":"2018-09-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4902457101,"date":"2018-09-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.268,"date":"2018-09-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4921729027,"date":"2018-09-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.271,"date":"2018-09-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4941000954,"date":"2018-09-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.313,"date":"2018-10-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.496027288,"date":"2018-10-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.385,"date":"2018-10-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4979544807,"date":"2018-10-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.394,"date":"2018-10-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4998816733,"date":"2018-10-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.38,"date":"2018-10-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.501808866,"date":"2018-10-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.355,"date":"2018-10-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5037360586,"date":"2018-10-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.338,"date":"2018-11-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5056632513,"date":"2018-11-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.317,"date":"2018-11-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5075904439,"date":"2018-11-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.282,"date":"2018-11-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5095176366,"date":"2018-11-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.261,"date":"2018-11-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5114448292,"date":"2018-11-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.207,"date":"2018-12-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5133720219,"date":"2018-12-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.161,"date":"2018-12-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5152992145,"date":"2018-12-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.121,"date":"2018-12-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5172264071,"date":"2018-12-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.077,"date":"2018-12-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5191535998,"date":"2018-12-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.048,"date":"2018-12-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5210807924,"date":"2018-12-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.013,"date":"2019-01-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5230079851,"date":"2019-01-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.976,"date":"2019-01-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5249351777,"date":"2019-01-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.965,"date":"2019-01-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5268623704,"date":"2019-01-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.965,"date":"2019-01-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.528789563,"date":"2019-01-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.966,"date":"2019-02-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5307167557,"date":"2019-02-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.966,"date":"2019-02-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5326439483,"date":"2019-02-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.006,"date":"2019-02-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.534571141,"date":"2019-02-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.048,"date":"2019-02-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5364983336,"date":"2019-02-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.076,"date":"2019-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5384255263,"date":"2019-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.079,"date":"2019-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5403527189,"date":"2019-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.07,"date":"2019-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5422799116,"date":"2019-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.08,"date":"2019-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5442071042,"date":"2019-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.078,"date":"2019-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5461342969,"date":"2019-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.093,"date":"2019-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5480614895,"date":"2019-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.118,"date":"2019-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5499886822,"date":"2019-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.147,"date":"2019-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5519158748,"date":"2019-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.169,"date":"2019-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5538430675,"date":"2019-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.171,"date":"2019-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5557702601,"date":"2019-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.16,"date":"2019-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5576974528,"date":"2019-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.163,"date":"2019-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5596246454,"date":"2019-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.151,"date":"2019-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.561551838,"date":"2019-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.136,"date":"2019-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5634790307,"date":"2019-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.105,"date":"2019-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5654062233,"date":"2019-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.07,"date":"2019-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.567333416,"date":"2019-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.043,"date":"2019-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5692606086,"date":"2019-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.042,"date":"2019-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5711878013,"date":"2019-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.055,"date":"2019-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5731149939,"date":"2019-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.051,"date":"2019-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5750421866,"date":"2019-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.044,"date":"2019-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5769693792,"date":"2019-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.034,"date":"2019-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5788965719,"date":"2019-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.032,"date":"2019-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5808237645,"date":"2019-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.011,"date":"2019-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5827509572,"date":"2019-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.994,"date":"2019-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5846781498,"date":"2019-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.983,"date":"2019-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5866053425,"date":"2019-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.976,"date":"2019-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5885325351,"date":"2019-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.971,"date":"2019-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5904597278,"date":"2019-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.987,"date":"2019-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5923869204,"date":"2019-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.081,"date":"2019-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5943141131,"date":"2019-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.066,"date":"2019-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5962413057,"date":"2019-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.047,"date":"2019-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5981684984,"date":"2019-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.051,"date":"2019-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.600095691,"date":"2019-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.05,"date":"2019-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6020228837,"date":"2019-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.064,"date":"2019-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6039500763,"date":"2019-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.062,"date":"2019-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6058772689,"date":"2019-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.073,"date":"2019-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6078044616,"date":"2019-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.074,"date":"2019-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6097316542,"date":"2019-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.066,"date":"2019-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6116588469,"date":"2019-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.07,"date":"2019-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6135860395,"date":"2019-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.049,"date":"2019-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6155132322,"date":"2019-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.046,"date":"2019-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6174404248,"date":"2019-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.041,"date":"2019-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6193676175,"date":"2019-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.069,"date":"2019-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6212948101,"date":"2019-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.079,"date":"2020-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6232220028,"date":"2020-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.064,"date":"2020-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6251491954,"date":"2020-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.037,"date":"2020-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6270763881,"date":"2020-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.01,"date":"2020-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6290035807,"date":"2020-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.956,"date":"2020-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6309307734,"date":"2020-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.91,"date":"2020-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.632857966,"date":"2020-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.89,"date":"2020-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6347851587,"date":"2020-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.882,"date":"2020-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6367123513,"date":"2020-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.851,"date":"2020-03-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.638639544,"date":"2020-03-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.814,"date":"2020-03-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6405667366,"date":"2020-03-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.733,"date":"2020-03-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6424939293,"date":"2020-03-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.659,"date":"2020-03-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6444211219,"date":"2020-03-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.586,"date":"2020-03-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6463483146,"date":"2020-03-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.548,"date":"2020-04-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6482755072,"date":"2020-04-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.507,"date":"2020-04-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6502026998,"date":"2020-04-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.48,"date":"2020-04-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6521298925,"date":"2020-04-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.437,"date":"2020-04-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6540570851,"date":"2020-04-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.399,"date":"2020-05-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6559842778,"date":"2020-05-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.394,"date":"2020-05-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6579114704,"date":"2020-05-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.386,"date":"2020-05-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6598386631,"date":"2020-05-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.39,"date":"2020-05-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6617658557,"date":"2020-05-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.386,"date":"2020-06-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6636930484,"date":"2020-06-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.396,"date":"2020-06-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.665620241,"date":"2020-06-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.403,"date":"2020-06-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6675474337,"date":"2020-06-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.425,"date":"2020-06-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6694746263,"date":"2020-06-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.43,"date":"2020-06-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.671401819,"date":"2020-06-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.437,"date":"2020-07-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6733290116,"date":"2020-07-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.438,"date":"2020-07-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6752562043,"date":"2020-07-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.433,"date":"2020-07-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6771833969,"date":"2020-07-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.427,"date":"2020-07-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6791105896,"date":"2020-07-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.424,"date":"2020-08-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6810377822,"date":"2020-08-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.428,"date":"2020-08-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6829649749,"date":"2020-08-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.427,"date":"2020-08-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6848921675,"date":"2020-08-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.426,"date":"2020-08-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6868193602,"date":"2020-08-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.441,"date":"2020-08-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6887465528,"date":"2020-08-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.435,"date":"2020-09-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6906737455,"date":"2020-09-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.422,"date":"2020-09-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6926009381,"date":"2020-09-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.404,"date":"2020-09-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6945281307,"date":"2020-09-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.394,"date":"2020-09-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6964553234,"date":"2020-09-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.387,"date":"2020-10-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.698382516,"date":"2020-10-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.395,"date":"2020-10-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7003097087,"date":"2020-10-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.388,"date":"2020-10-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7022369013,"date":"2020-10-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.385,"date":"2020-10-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.704164094,"date":"2020-10-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.372,"date":"2020-11-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7060912866,"date":"2020-11-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.383,"date":"2020-11-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7080184793,"date":"2020-11-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.441,"date":"2020-11-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7099456719,"date":"2020-11-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.462,"date":"2020-11-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7118728646,"date":"2020-11-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.502,"date":"2020-11-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7138000572,"date":"2020-11-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.526,"date":"2020-12-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7157272499,"date":"2020-12-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.559,"date":"2020-12-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7176544425,"date":"2020-12-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.619,"date":"2020-12-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7195816352,"date":"2020-12-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.635,"date":"2020-12-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7215088278,"date":"2020-12-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.64,"date":"2021-01-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7234360205,"date":"2021-01-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.67,"date":"2021-01-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7253632131,"date":"2021-01-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.696,"date":"2021-01-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7272904058,"date":"2021-01-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.716,"date":"2021-01-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7292175984,"date":"2021-01-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.738,"date":"2021-02-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7311447911,"date":"2021-02-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.801,"date":"2021-02-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7330719837,"date":"2021-02-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.876,"date":"2021-02-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7349991764,"date":"2021-02-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.973,"date":"2021-02-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.736926369,"date":"2021-02-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.072,"date":"2021-03-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7388535616,"date":"2021-03-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.143,"date":"2021-03-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7407807543,"date":"2021-03-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.191,"date":"2021-03-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7427079469,"date":"2021-03-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.194,"date":"2021-03-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7446351396,"date":"2021-03-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.161,"date":"2021-03-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7465623322,"date":"2021-03-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.144,"date":"2021-04-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7484895249,"date":"2021-04-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.129,"date":"2021-04-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7504167175,"date":"2021-04-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.124,"date":"2021-04-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7523439102,"date":"2021-04-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.124,"date":"2021-04-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7542711028,"date":"2021-04-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.142,"date":"2021-05-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7561982955,"date":"2021-05-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.186,"date":"2021-05-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7581254881,"date":"2021-05-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.249,"date":"2021-05-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7600526808,"date":"2021-05-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.253,"date":"2021-05-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7619798734,"date":"2021-05-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.255,"date":"2021-05-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7639070661,"date":"2021-05-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.274,"date":"2021-06-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7658342587,"date":"2021-06-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.286,"date":"2021-06-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7677614514,"date":"2021-06-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.287,"date":"2021-06-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.769688644,"date":"2021-06-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3,"date":"2021-06-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7716158367,"date":"2021-06-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.331,"date":"2021-07-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7735430293,"date":"2021-07-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.338,"date":"2021-07-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.775470222,"date":"2021-07-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.344,"date":"2021-07-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7773974146,"date":"2021-07-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.342,"date":"2021-07-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7793246073,"date":"2021-07-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.367,"date":"2021-08-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7812517999,"date":"2021-08-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.364,"date":"2021-08-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7831789925,"date":"2021-08-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.356,"date":"2021-08-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7851061852,"date":"2021-08-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.324,"date":"2021-08-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7870333778,"date":"2021-08-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.339,"date":"2021-08-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7889605705,"date":"2021-08-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.373,"date":"2021-09-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7908877631,"date":"2021-09-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.372,"date":"2021-09-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7928149558,"date":"2021-09-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.385,"date":"2021-09-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7947421484,"date":"2021-09-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.406,"date":"2021-09-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7966693411,"date":"2021-09-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.477,"date":"2021-10-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7985965337,"date":"2021-10-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.586,"date":"2021-10-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8005237264,"date":"2021-10-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.671,"date":"2021-10-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.802450919,"date":"2021-10-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.713,"date":"2021-10-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8043781117,"date":"2021-10-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.727,"date":"2021-11-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8063053043,"date":"2021-11-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.73,"date":"2021-11-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.808232497,"date":"2021-11-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.734,"date":"2021-11-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8101596896,"date":"2021-11-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.724,"date":"2021-11-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8120868823,"date":"2021-11-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.72,"date":"2021-11-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8140140749,"date":"2021-11-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.674,"date":"2021-12-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8159412676,"date":"2021-12-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.649,"date":"2021-12-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8178684602,"date":"2021-12-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.626,"date":"2021-12-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8197956529,"date":"2021-12-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.615,"date":"2021-12-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8217228455,"date":"2021-12-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.613,"date":"2022-01-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8236500382,"date":"2022-01-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.657,"date":"2022-01-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8255772308,"date":"2022-01-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.725,"date":"2022-01-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8275044234,"date":"2022-01-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.78,"date":"2022-01-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8294316161,"date":"2022-01-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.846,"date":"2022-01-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8313588087,"date":"2022-01-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.951,"date":"2022-02-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8332860014,"date":"2022-02-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.019,"date":"2022-02-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.835213194,"date":"2022-02-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.055,"date":"2022-02-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8371403867,"date":"2022-02-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.104,"date":"2022-02-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8390675793,"date":"2022-02-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.849,"date":"2022-03-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.840994772,"date":"2022-03-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.25,"date":"2022-03-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8429219646,"date":"2022-03-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.134,"date":"2022-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8448491573,"date":"2022-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.185,"date":"2022-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8467763499,"date":"2022-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.144,"date":"2022-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8487035426,"date":"2022-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.073,"date":"2022-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8506307352,"date":"2022-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.101,"date":"2022-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8525579279,"date":"2022-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.16,"date":"2022-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8544851205,"date":"2022-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.509,"date":"2022-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8564123132,"date":"2022-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.623,"date":"2022-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8583395058,"date":"2022-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.613,"date":"2022-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8602666985,"date":"2022-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.571,"date":"2022-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8621938911,"date":"2022-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.539,"date":"2022-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8641210838,"date":"2022-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.703,"date":"2022-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8660482764,"date":"2022-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.718,"date":"2022-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8679754691,"date":"2022-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.81,"date":"2022-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8699026617,"date":"2022-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.783,"date":"2022-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8718298543,"date":"2022-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.675,"date":"2022-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.873757047,"date":"2022-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.568,"date":"2022-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8756842396,"date":"2022-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.432,"date":"2022-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8776114323,"date":"2022-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.268,"date":"2022-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8795386249,"date":"2022-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.138,"date":"2022-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8814658176,"date":"2022-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.993,"date":"2022-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8833930102,"date":"2022-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.911,"date":"2022-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8853202029,"date":"2022-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.909,"date":"2022-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8872473955,"date":"2022-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.115,"date":"2022-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8891745882,"date":"2022-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.084,"date":"2022-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8911017808,"date":"2022-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.033,"date":"2022-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8930289735,"date":"2022-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.964,"date":"2022-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8949561661,"date":"2022-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.889,"date":"2022-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8968833588,"date":"2022-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.836,"date":"2022-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.8988105514,"date":"2022-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.224,"date":"2022-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9007377441,"date":"2022-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.339,"date":"2022-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9026649367,"date":"2022-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.341,"date":"2022-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9045921294,"date":"2022-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.317,"date":"2022-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.906519322,"date":"2022-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.333,"date":"2022-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9084465147,"date":"2022-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.313,"date":"2022-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9103737073,"date":"2022-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.233,"date":"2022-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9123009,"date":"2022-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.141,"date":"2022-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9142280926,"date":"2022-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.967,"date":"2022-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9161552852,"date":"2022-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.754,"date":"2022-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9180824779,"date":"2022-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.596,"date":"2022-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9200096705,"date":"2022-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.537,"date":"2022-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9219368632,"date":"2022-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.583,"date":"2023-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9238640558,"date":"2023-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.549,"date":"2023-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9257912485,"date":"2023-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.524,"date":"2023-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9277184411,"date":"2023-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.604,"date":"2023-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9296456338,"date":"2023-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.622,"date":"2023-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9315728264,"date":"2023-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.539,"date":"2023-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9335000191,"date":"2023-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.444,"date":"2023-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9354272117,"date":"2023-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.376,"date":"2023-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9373544044,"date":"2023-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.294,"date":"2023-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.939281597,"date":"2023-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.282,"date":"2023-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9412087897,"date":"2023-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.247,"date":"2023-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9431359823,"date":"2023-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.185,"date":"2023-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.945063175,"date":"2023-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.128,"date":"2023-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9469903676,"date":"2023-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.105,"date":"2023-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9489175603,"date":"2023-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.098,"date":"2023-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9508447529,"date":"2023-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.116,"date":"2023-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9527719456,"date":"2023-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.077,"date":"2023-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9546991382,"date":"2023-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.018,"date":"2023-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9566263309,"date":"2023-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.922,"date":"2023-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9585535235,"date":"2023-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.897,"date":"2023-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9604807161,"date":"2023-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.883,"date":"2023-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9624079088,"date":"2023-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.855,"date":"2023-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9643351014,"date":"2023-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.797,"date":"2023-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9662622941,"date":"2023-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.794,"date":"2023-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9681894867,"date":"2023-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.815,"date":"2023-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9701166794,"date":"2023-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.801,"date":"2023-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.972043872,"date":"2023-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.767,"date":"2023-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9739710647,"date":"2023-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.806,"date":"2023-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9758982573,"date":"2023-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.806,"date":"2023-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.97782545,"date":"2023-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.905,"date":"2023-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9797526426,"date":"2023-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.127,"date":"2023-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9816798353,"date":"2023-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.239,"date":"2023-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9836070279,"date":"2023-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.378,"date":"2023-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9855342206,"date":"2023-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.389,"date":"2023-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9874614132,"date":"2023-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.475,"date":"2023-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9893886059,"date":"2023-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.492,"date":"2023-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9913157985,"date":"2023-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.54,"date":"2023-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9932429912,"date":"2023-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.633,"date":"2023-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9951701838,"date":"2023-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.586,"date":"2023-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9970973765,"date":"2023-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.593,"date":"2023-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.9990245691,"date":"2023-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.498,"date":"2023-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0009517618,"date":"2023-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.444,"date":"2023-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0028789544,"date":"2023-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.545,"date":"2023-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":4.004806147,"date":"2023-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.454,"date":"2023-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0067333397,"date":"2023-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.366,"date":"2023-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0086605323,"date":"2023-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.294,"date":"2023-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":4.010587725,"date":"2023-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.209,"date":"2023-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0125149176,"date":"2023-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.146,"date":"2023-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0144421103,"date":"2023-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.092,"date":"2023-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0163693029,"date":"2023-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.987,"date":"2023-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0182964956,"date":"2023-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2023-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0202236882,"date":"2023-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.914,"date":"2023-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0221508809,"date":"2023-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.876,"date":"2024-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0240780735,"date":"2024-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.828,"date":"2024-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0260052662,"date":"2024-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.863,"date":"2024-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0279324588,"date":"2024-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.838,"date":"2024-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0298596515,"date":"2024-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.867,"date":"2024-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0317868441,"date":"2024-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.899,"date":"2024-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0337140368,"date":"2024-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.109,"date":"2024-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0356412294,"date":"2024-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.109,"date":"2024-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0375684221,"date":"2024-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.058,"date":"2024-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0394956147,"date":"2024-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.022,"date":"2024-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0414228074,"date":"2024-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.004,"date":"2024-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":4.04335,"date":"2024-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.028,"date":"2024-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0452771927,"date":"2024-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.034,"date":"2024-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0472043853,"date":"2024-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.996,"date":"2024-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0491315779,"date":"2024-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.061,"date":"2024-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0510587706,"date":"2024-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.015,"date":"2024-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0529859632,"date":"2024-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.992,"date":"2024-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0549131559,"date":"2024-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.947,"date":"2024-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0568403485,"date":"2024-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2024-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0587675412,"date":"2024-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.848,"date":"2024-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0606947338,"date":"2024-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.789,"date":"2024-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0626219265,"date":"2024-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.758,"date":"2024-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0645491191,"date":"2024-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.726,"date":"2024-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0664763118,"date":"2024-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.658,"date":"2024-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0684035044,"date":"2024-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.735,"date":"2024-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0703306971,"date":"2024-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.769,"date":"2024-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0722578897,"date":"2024-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.813,"date":"2024-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0741850824,"date":"2024-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.865,"date":"2024-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":4.076112275,"date":"2024-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.826,"date":"2024-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0780394677,"date":"2024-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.779,"date":"2024-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0799666603,"date":"2024-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.768,"date":"2024-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":4.081893853,"date":"2024-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.755,"date":"2024-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0838210456,"date":"2024-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.704,"date":"2024-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0857482383,"date":"2024-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.688,"date":"2024-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0876754309,"date":"2024-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.651,"date":"2024-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0896026236,"date":"2024-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.625,"date":"2024-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0915298162,"date":"2024-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.555,"date":"2024-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0934570088,"date":"2024-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.526,"date":"2024-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0953842015,"date":"2024-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.539,"date":"2024-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0973113941,"date":"2024-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.544,"date":"2024-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":4.0992385868,"date":"2024-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.584,"date":"2024-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1011657794,"date":"2024-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.631,"date":"2024-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1030929721,"date":"2024-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.553,"date":"2024-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1050201647,"date":"2024-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.573,"date":"2024-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1069473574,"date":"2024-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.536,"date":"2024-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":4.10887455,"date":"2024-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.521,"date":"2024-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1108017427,"date":"2024-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.491,"date":"2024-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1127289353,"date":"2024-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.539,"date":"2024-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":4.114656128,"date":"2024-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.54,"date":"2024-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1165833206,"date":"2024-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.458,"date":"2024-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1185105133,"date":"2024-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.494,"date":"2024-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1204377059,"date":"2024-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.476,"date":"2024-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1223648986,"date":"2024-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.503,"date":"2024-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1242920912,"date":"2024-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.561,"date":"2025-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1262192839,"date":"2025-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.602,"date":"2025-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1281464765,"date":"2025-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.715,"date":"2025-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1300736692,"date":"2025-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.659,"date":"2025-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1320008618,"date":"2025-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.66,"date":"2025-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1339280545,"date":"2025-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.665,"date":"2025-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1358552471,"date":"2025-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.677,"date":"2025-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1377824397,"date":"2025-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.697,"date":"2025-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1397096324,"date":"2025-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.635,"date":"2025-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":4.141636825,"date":"2025-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.582,"date":"2025-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1435640177,"date":"2025-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.549,"date":"2025-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1454912103,"date":"2025-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.567,"date":"2025-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":4.147418403,"date":"2025-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.592,"date":"2025-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1493455956,"date":"2025-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.639,"date":"2025-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1512727883,"date":"2025-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.579,"date":"2025-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1531999809,"date":"2025-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.534,"date":"2025-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1551271736,"date":"2025-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.514,"date":"2025-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1570543662,"date":"2025-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.497,"date":"2025-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1589815589,"date":"2025-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.476,"date":"2025-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1609087515,"date":"2025-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.536,"date":"2025-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1628359442,"date":"2025-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.487,"date":"2025-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1647631368,"date":"2025-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.451,"date":"2025-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1666903295,"date":"2025-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.471,"date":"2025-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1686175221,"date":"2025-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.571,"date":"2025-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1705447148,"date":"2025-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.775,"date":"2025-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":4.1724719074,"date":"2025-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.1760509795,"date":"2025-07-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1779781721,"date":"2025-07-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1799053648,"date":"2025-07-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1818325574,"date":"2025-07-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1837597501,"date":"2025-08-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1856869427,"date":"2025-08-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1876141354,"date":"2025-08-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.189541328,"date":"2025-08-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1914685206,"date":"2025-08-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1933957133,"date":"2025-09-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1953229059,"date":"2025-09-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1972500986,"date":"2025-09-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.1991772912,"date":"2025-09-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2011044839,"date":"2025-10-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2030316765,"date":"2025-10-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2049588692,"date":"2025-10-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2068860618,"date":"2025-10-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2088132545,"date":"2025-11-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2107404471,"date":"2025-11-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2126676398,"date":"2025-11-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2145948324,"date":"2025-11-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2165220251,"date":"2025-11-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2184492177,"date":"2025-12-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2203764104,"date":"2025-12-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.222303603,"date":"2025-12-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2242307957,"date":"2025-12-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2261579883,"date":"2026-01-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.228085181,"date":"2026-01-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2300123736,"date":"2026-01-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2319395663,"date":"2026-01-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2338667589,"date":"2026-02-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2357939515,"date":"2026-02-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2377211442,"date":"2026-02-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2396483368,"date":"2026-02-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2415755295,"date":"2026-03-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2435027221,"date":"2026-03-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2454299148,"date":"2026-03-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2473571074,"date":"2026-03-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2492843001,"date":"2026-03-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2512114927,"date":"2026-04-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2531386854,"date":"2026-04-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.255065878,"date":"2026-04-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2569930707,"date":"2026-04-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2589202633,"date":"2026-05-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.260847456,"date":"2026-05-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2627746486,"date":"2026-05-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2647018413,"date":"2026-05-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2666290339,"date":"2026-05-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2685562266,"date":"2026-06-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2704834192,"date":"2026-06-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2724106119,"date":"2026-06-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2743378045,"date":"2026-06-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2762649972,"date":"2026-07-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2781921898,"date":"2026-07-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2801193824,"date":"2026-07-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2820465751,"date":"2026-07-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2839737677,"date":"2026-08-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2859009604,"date":"2026-08-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.287828153,"date":"2026-08-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2897553457,"date":"2026-08-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2916825383,"date":"2026-08-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.293609731,"date":"2026-09-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2955369236,"date":"2026-09-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2974641163,"date":"2026-09-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.2993913089,"date":"2026-09-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3013185016,"date":"2026-10-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3032456942,"date":"2026-10-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3051728869,"date":"2026-10-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3071000795,"date":"2026-10-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3090272722,"date":"2026-11-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3109544648,"date":"2026-11-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3128816575,"date":"2026-11-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3148088501,"date":"2026-11-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3167360428,"date":"2026-11-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3186632354,"date":"2026-12-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3205904281,"date":"2026-12-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3225176207,"date":"2026-12-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3244448133,"date":"2026-12-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.326372006,"date":"2027-01-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3282991986,"date":"2027-01-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3302263913,"date":"2027-01-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3321535839,"date":"2027-01-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3340807766,"date":"2027-01-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3360079692,"date":"2027-02-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3379351619,"date":"2027-02-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3398623545,"date":"2027-02-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3417895472,"date":"2027-02-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3437167398,"date":"2027-03-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3456439325,"date":"2027-03-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3475711251,"date":"2027-03-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3494983178,"date":"2027-03-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3514255104,"date":"2027-04-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3533527031,"date":"2027-04-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3552798957,"date":"2027-04-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3572070884,"date":"2027-04-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.359134281,"date":"2027-05-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3610614737,"date":"2027-05-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3629886663,"date":"2027-05-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.364915859,"date":"2027-05-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3668430516,"date":"2027-05-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3687702442,"date":"2027-06-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3706974369,"date":"2027-06-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3726246295,"date":"2027-06-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3745518222,"date":"2027-06-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3764790148,"date":"2027-07-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3784062075,"date":"2027-07-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3803334001,"date":"2027-07-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3822605928,"date":"2027-07-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3841877854,"date":"2027-08-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3861149781,"date":"2027-08-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3880421707,"date":"2027-08-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3899693634,"date":"2027-08-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.391896556,"date":"2027-08-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3938237487,"date":"2027-09-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3957509413,"date":"2027-09-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.397678134,"date":"2027-09-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.3996053266,"date":"2027-09-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4015325193,"date":"2027-10-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4034597119,"date":"2027-10-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4053869046,"date":"2027-10-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4073140972,"date":"2027-10-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4092412899,"date":"2027-10-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4111684825,"date":"2027-11-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4130956751,"date":"2027-11-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4150228678,"date":"2027-11-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4169500604,"date":"2027-11-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4188772531,"date":"2027-12-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4208044457,"date":"2027-12-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4227316384,"date":"2027-12-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.424658831,"date":"2027-12-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4265860237,"date":"2028-01-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4285132163,"date":"2028-01-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.430440409,"date":"2028-01-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4323676016,"date":"2028-01-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4342947943,"date":"2028-01-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4362219869,"date":"2028-02-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4381491796,"date":"2028-02-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4400763722,"date":"2028-02-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4420035649,"date":"2028-02-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4439307575,"date":"2028-03-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4458579502,"date":"2028-03-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4477851428,"date":"2028-03-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4497123355,"date":"2028-03-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4516395281,"date":"2028-04-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4535667208,"date":"2028-04-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4554939134,"date":"2028-04-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.457421106,"date":"2028-04-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4593482987,"date":"2028-04-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4612754913,"date":"2028-05-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.463202684,"date":"2028-05-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4651298766,"date":"2028-05-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4670570693,"date":"2028-05-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4689842619,"date":"2028-06-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4709114546,"date":"2028-06-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4728386472,"date":"2028-06-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4747658399,"date":"2028-06-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4766930325,"date":"2028-07-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4786202252,"date":"2028-07-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4805474178,"date":"2028-07-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4824746105,"date":"2028-07-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4844018031,"date":"2028-07-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4863289958,"date":"2028-08-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4882561884,"date":"2028-08-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4901833811,"date":"2028-08-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4921105737,"date":"2028-08-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4940377664,"date":"2028-09-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.495964959,"date":"2028-09-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4978921517,"date":"2028-09-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.4998193443,"date":"2028-09-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5017465369,"date":"2028-10-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5036737296,"date":"2028-10-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5056009222,"date":"2028-10-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5075281149,"date":"2028-10-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5094553075,"date":"2028-10-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5113825002,"date":"2028-11-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5133096928,"date":"2028-11-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5152368855,"date":"2028-11-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5171640781,"date":"2028-11-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5190912708,"date":"2028-12-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5210184634,"date":"2028-12-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5229456561,"date":"2028-12-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5248728487,"date":"2028-12-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5268000414,"date":"2028-12-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.528727234,"date":"2029-01-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5306544267,"date":"2029-01-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5325816193,"date":"2029-01-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.534508812,"date":"2029-01-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5364360046,"date":"2029-02-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5383631973,"date":"2029-02-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5402903899,"date":"2029-02-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5422175826,"date":"2029-02-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5441447752,"date":"2029-03-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5460719679,"date":"2029-03-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5479991605,"date":"2029-03-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5499263531,"date":"2029-03-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5518535458,"date":"2029-04-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5537807384,"date":"2029-04-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5557079311,"date":"2029-04-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5576351237,"date":"2029-04-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5595623164,"date":"2029-04-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.561489509,"date":"2029-05-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5634167017,"date":"2029-05-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5653438943,"date":"2029-05-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.567271087,"date":"2029-05-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5691982796,"date":"2029-06-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5711254723,"date":"2029-06-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5730526649,"date":"2029-06-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5749798576,"date":"2029-06-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5769070502,"date":"2029-07-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5788342429,"date":"2029-07-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5807614355,"date":"2029-07-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5826886282,"date":"2029-07-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5846158208,"date":"2029-07-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5865430135,"date":"2029-08-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5884702061,"date":"2029-08-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5903973988,"date":"2029-08-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5923245914,"date":"2029-08-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.594251784,"date":"2029-09-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5961789767,"date":"2029-09-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.5981061693,"date":"2029-09-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.600033362,"date":"2029-09-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6019605546,"date":"2029-09-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6038877473,"date":"2029-10-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6058149399,"date":"2029-10-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6077421326,"date":"2029-10-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6096693252,"date":"2029-10-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6115965179,"date":"2029-11-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6135237105,"date":"2029-11-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6154509032,"date":"2029-11-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6173780958,"date":"2029-11-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6193052885,"date":"2029-12-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6212324811,"date":"2029-12-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6231596738,"date":"2029-12-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6250868664,"date":"2029-12-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6270140591,"date":"2029-12-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6289412517,"date":"2030-01-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6308684444,"date":"2030-01-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.632795637,"date":"2030-01-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6347228297,"date":"2030-01-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6366500223,"date":"2030-02-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6385772149,"date":"2030-02-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6405044076,"date":"2030-02-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6424316002,"date":"2030-02-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6443587929,"date":"2030-03-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6462859855,"date":"2030-03-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6482131782,"date":"2030-03-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6501403708,"date":"2030-03-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6520675635,"date":"2030-03-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6539947561,"date":"2030-04-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6559219488,"date":"2030-04-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6578491414,"date":"2030-04-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6597763341,"date":"2030-04-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6617035267,"date":"2030-05-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6636307194,"date":"2030-05-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.665557912,"date":"2030-05-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6674851047,"date":"2030-05-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6694122973,"date":"2030-06-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.67133949,"date":"2030-06-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6732666826,"date":"2030-06-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":4.6751938753,"date":"2030-06-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":1.191,"date":"1990-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8674998196,"date":"1990-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.245,"date":"1990-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8691806732,"date":"1990-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.242,"date":"1990-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8708615267,"date":"1990-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.252,"date":"1990-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8725423803,"date":"1990-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.266,"date":"1990-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8742232339,"date":"1990-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.272,"date":"1990-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8759040875,"date":"1990-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.321,"date":"1990-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8775849411,"date":"1990-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.333,"date":"1990-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8792657946,"date":"1990-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.339,"date":"1990-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8809466482,"date":"1990-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.345,"date":"1990-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8826275018,"date":"1990-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.339,"date":"1990-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8843083554,"date":"1990-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.334,"date":"1990-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.885989209,"date":"1990-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.328,"date":"1990-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8876700625,"date":"1990-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.323,"date":"1990-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8893509161,"date":"1990-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.311,"date":"1990-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8910317697,"date":"1990-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.341,"date":"1990-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8927126233,"date":"1990-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.192,"date":"1991-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9044785984,"date":"1991-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.168,"date":"1991-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9061594519,"date":"1991-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.139,"date":"1991-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9078403055,"date":"1991-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1991-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9095211591,"date":"1991-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.078,"date":"1991-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9112020127,"date":"1991-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.054,"date":"1991-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9128828663,"date":"1991-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.025,"date":"1991-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9145637198,"date":"1991-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.045,"date":"1991-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9162445734,"date":"1991-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.043,"date":"1991-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.917925427,"date":"1991-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.047,"date":"1991-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9196062806,"date":"1991-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.052,"date":"1991-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9212871342,"date":"1991-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.066,"date":"1991-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9229679878,"date":"1991-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.069,"date":"1991-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9246488413,"date":"1991-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.09,"date":"1991-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9263296949,"date":"1991-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.104,"date":"1991-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9280105485,"date":"1991-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.113,"date":"1991-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9296914021,"date":"1991-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.121,"date":"1991-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9313722557,"date":"1991-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.129,"date":"1991-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9330531092,"date":"1991-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.14,"date":"1991-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9347339628,"date":"1991-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.138,"date":"1991-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9364148164,"date":"1991-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.135,"date":"1991-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.93809567,"date":"1991-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.126,"date":"1991-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9397765236,"date":"1991-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.114,"date":"1991-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9414573771,"date":"1991-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.104,"date":"1991-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9431382307,"date":"1991-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.098,"date":"1991-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9448190843,"date":"1991-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.094,"date":"1991-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9464999379,"date":"1991-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9481807915,"date":"1991-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9498616451,"date":"1991-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.099,"date":"1991-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9515424986,"date":"1991-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.112,"date":"1991-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9532233522,"date":"1991-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.124,"date":"1991-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9549042058,"date":"1991-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.124,"date":"1991-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9565850594,"date":"1991-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.127,"date":"1991-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.958265913,"date":"1991-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1991-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9599467665,"date":"1991-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.11,"date":"1991-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9616276201,"date":"1991-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.097,"date":"1991-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9633084737,"date":"1991-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.092,"date":"1991-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9649893273,"date":"1991-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.089,"date":"1991-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9666701809,"date":"1991-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.084,"date":"1991-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9683510344,"date":"1991-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.088,"date":"1991-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.970031888,"date":"1991-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9717127416,"date":"1991-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9733935952,"date":"1991-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.102,"date":"1991-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9750744488,"date":"1991-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.104,"date":"1991-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9767553024,"date":"1991-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.099,"date":"1991-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9784361559,"date":"1991-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.099,"date":"1991-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9801170095,"date":"1991-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9817978631,"date":"1991-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.075,"date":"1991-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9834787167,"date":"1991-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.063,"date":"1991-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9851595703,"date":"1991-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.053,"date":"1991-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9868404238,"date":"1991-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.042,"date":"1992-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9885212774,"date":"1992-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.026,"date":"1992-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.990202131,"date":"1992-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.014,"date":"1992-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9918829846,"date":"1992-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.006,"date":"1992-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9935638382,"date":"1992-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.995,"date":"1992-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9952446917,"date":"1992-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.004,"date":"1992-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9969255453,"date":"1992-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.011,"date":"1992-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9986063989,"date":"1992-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.014,"date":"1992-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0002872525,"date":"1992-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.012,"date":"1992-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0019681061,"date":"1992-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.013,"date":"1992-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0036489597,"date":"1992-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.01,"date":"1992-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0053298132,"date":"1992-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.015,"date":"1992-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0070106668,"date":"1992-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.013,"date":"1992-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0086915204,"date":"1992-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.026,"date":"1992-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.010372374,"date":"1992-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.051,"date":"1992-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0120532276,"date":"1992-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.058,"date":"1992-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0137340811,"date":"1992-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.072,"date":"1992-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0154149347,"date":"1992-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.089,"date":"1992-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0170957883,"date":"1992-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.102,"date":"1992-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0187766419,"date":"1992-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.118,"date":"1992-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0204574955,"date":"1992-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1992-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.022138349,"date":"1992-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.128,"date":"1992-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0238192026,"date":"1992-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.143,"date":"1992-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0255000562,"date":"1992-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.151,"date":"1992-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0271809098,"date":"1992-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.153,"date":"1992-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0288617634,"date":"1992-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.149,"date":"1992-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.030542617,"date":"1992-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.147,"date":"1992-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0322234705,"date":"1992-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.139,"date":"1992-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0339043241,"date":"1992-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.132,"date":"1992-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0355851777,"date":"1992-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.128,"date":"1992-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0372660313,"date":"1992-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.126,"date":"1992-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0389468849,"date":"1992-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.123,"date":"1992-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0406277384,"date":"1992-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.116,"date":"1992-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.042308592,"date":"1992-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.123,"date":"1992-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0439894456,"date":"1992-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.121,"date":"1992-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0456702992,"date":"1992-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.121,"date":"1992-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0473511528,"date":"1992-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.124,"date":"1992-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0490320063,"date":"1992-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.123,"date":"1992-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0507128599,"date":"1992-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.118,"date":"1992-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0523937135,"date":"1992-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.115,"date":"1992-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0540745671,"date":"1992-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.115,"date":"1992-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0557554207,"date":"1992-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.113,"date":"1992-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0574362743,"date":"1992-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.113,"date":"1992-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0591171278,"date":"1992-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1992-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0607979814,"date":"1992-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1992-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.062478835,"date":"1992-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.112,"date":"1992-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0641596886,"date":"1992-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1992-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0658405422,"date":"1992-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.098,"date":"1992-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0675213957,"date":"1992-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.089,"date":"1992-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0692022493,"date":"1992-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.078,"date":"1992-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0708831029,"date":"1992-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.074,"date":"1992-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0725639565,"date":"1992-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.069,"date":"1992-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0742448101,"date":"1992-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.065,"date":"1993-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0759256636,"date":"1993-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.066,"date":"1993-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0776065172,"date":"1993-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.061,"date":"1993-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0792873708,"date":"1993-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.055,"date":"1993-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0809682244,"date":"1993-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.055,"date":"1993-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.082649078,"date":"1993-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.062,"date":"1993-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0843299316,"date":"1993-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.053,"date":"1993-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0860107851,"date":"1993-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.047,"date":"1993-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0876916387,"date":"1993-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.042,"date":"1993-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0893724923,"date":"1993-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.048,"date":"1993-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0910533459,"date":"1993-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.058,"date":"1993-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0927341995,"date":"1993-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.056,"date":"1993-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.094415053,"date":"1993-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.057,"date":"1993-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0960959066,"date":"1993-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.068,"date":"1993-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0977767602,"date":"1993-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.079,"date":"1993-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0994576138,"date":"1993-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.079,"date":"1993-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1011384674,"date":"1993-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.086,"date":"1993-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1028193209,"date":"1993-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.086,"date":"1993-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1045001745,"date":"1993-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.097,"date":"1993-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1061810281,"date":"1993-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1993-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1078618817,"date":"1993-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1993-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1095427353,"date":"1993-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.107,"date":"1993-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1112235889,"date":"1993-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.104,"date":"1993-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1129044424,"date":"1993-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.101,"date":"1993-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.114585296,"date":"1993-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.095,"date":"1993-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1162661496,"date":"1993-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.089,"date":"1993-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1179470032,"date":"1993-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.086,"date":"1993-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1196278568,"date":"1993-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.081,"date":"1993-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1213087103,"date":"1993-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.075,"date":"1993-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1229895639,"date":"1993-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.069,"date":"1993-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1246704175,"date":"1993-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.062,"date":"1993-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1263512711,"date":"1993-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.06,"date":"1993-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1280321247,"date":"1993-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.059,"date":"1993-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1297129782,"date":"1993-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.065,"date":"1993-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1313938318,"date":"1993-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.062,"date":"1993-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1330746854,"date":"1993-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.055,"date":"1993-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.134755539,"date":"1993-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.051,"date":"1993-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1364363926,"date":"1993-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.045,"date":"1993-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1381172462,"date":"1993-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.047,"date":"1993-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1397980997,"date":"1993-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.092,"date":"1993-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1414789533,"date":"1993-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.09,"date":"1993-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1431598069,"date":"1993-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.093,"date":"1993-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1448406605,"date":"1993-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.092,"date":"1993-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1465215141,"date":"1993-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.084,"date":"1993-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1482023676,"date":"1993-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.075,"date":"1993-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1498832212,"date":"1993-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.064,"date":"1993-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1515640748,"date":"1993-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.058,"date":"1993-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1532449284,"date":"1993-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.051,"date":"1993-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.154925782,"date":"1993-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.036,"date":"1993-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1566066355,"date":"1993-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.018,"date":"1993-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1582874891,"date":"1993-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.003,"date":"1993-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1599683427,"date":"1993-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.999,"date":"1993-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1616491963,"date":"1993-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.992,"date":"1994-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1633300499,"date":"1994-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.995,"date":"1994-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1650109035,"date":"1994-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.001,"date":"1994-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.166691757,"date":"1994-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.999,"date":"1994-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1683726106,"date":"1994-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.005,"date":"1994-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1700534642,"date":"1994-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.007,"date":"1994-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1717343178,"date":"1994-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.016,"date":"1994-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1734151714,"date":"1994-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.009,"date":"1994-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1750960249,"date":"1994-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.004,"date":"1994-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1767768785,"date":"1994-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.007,"date":"1994-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1784577321,"date":"1994-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.005,"date":"1994-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1801385857,"date":"1994-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.007,"date":"1994-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1818194393,"date":"1994-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.012,"date":"1994-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1835002928,"date":"1994-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.011,"date":"1994-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1851811464,"date":"1994-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.028,"date":"1994-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.186862,"date":"1994-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.033,"date":"1994-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1885428536,"date":"1994-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.037,"date":"1994-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1902237072,"date":"1994-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.04,"date":"1994-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1919045608,"date":"1994-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.045,"date":"1994-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1935854143,"date":"1994-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.046,"date":"1994-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1952662679,"date":"1994-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.05,"date":"1994-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1969471215,"date":"1994-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.056,"date":"1994-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1986279751,"date":"1994-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.065,"date":"1994-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2003088287,"date":"1994-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.073,"date":"1994-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2019896822,"date":"1994-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.079,"date":"1994-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2036705358,"date":"1994-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.095,"date":"1994-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2053513894,"date":"1994-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.097,"date":"1994-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.207032243,"date":"1994-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.103,"date":"1994-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2087130966,"date":"1994-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.109,"date":"1994-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2103939501,"date":"1994-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.114,"date":"1994-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2120748037,"date":"1994-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.13,"date":"1994-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2137556573,"date":"1994-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.157,"date":"1994-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2154365109,"date":"1994-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.161,"date":"1994-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2171173645,"date":"1994-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.165,"date":"1994-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2187982181,"date":"1994-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.161,"date":"1994-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2204790716,"date":"1994-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.156,"date":"1994-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2221599252,"date":"1994-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.15,"date":"1994-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2238407788,"date":"1994-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.14,"date":"1994-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2255216324,"date":"1994-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.129,"date":"1994-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.227202486,"date":"1994-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1994-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2288833395,"date":"1994-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.114,"date":"1994-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2305641931,"date":"1994-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1994-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2322450467,"date":"1994-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.107,"date":"1994-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2339259003,"date":"1994-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.121,"date":"1994-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2356067539,"date":"1994-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.123,"date":"1994-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2372876074,"date":"1994-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.122,"date":"1994-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.238968461,"date":"1994-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.113,"date":"1994-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2406493146,"date":"1994-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2025833333,"date":"1994-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2423301682,"date":"1994-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2031666667,"date":"1994-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2440110218,"date":"1994-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.19275,"date":"1994-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2456918754,"date":"1994-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1849166667,"date":"1994-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2473727289,"date":"1994-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1778333333,"date":"1994-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2490535825,"date":"1994-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1921666667,"date":"1995-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2507344361,"date":"1995-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1970833333,"date":"1995-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2524152897,"date":"1995-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.19125,"date":"1995-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2540961433,"date":"1995-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1944166667,"date":"1995-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2557769968,"date":"1995-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.192,"date":"1995-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2574578504,"date":"1995-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.187,"date":"1995-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.259138704,"date":"1995-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1839166667,"date":"1995-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2608195576,"date":"1995-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1785,"date":"1995-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2625004112,"date":"1995-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.182,"date":"1995-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2641812647,"date":"1995-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.18225,"date":"1995-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2658621183,"date":"1995-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.17525,"date":"1995-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2675429719,"date":"1995-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.174,"date":"1995-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2692238255,"date":"1995-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1771666667,"date":"1995-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2709046791,"date":"1995-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1860833333,"date":"1995-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2725855327,"date":"1995-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2000833333,"date":"1995-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2742663862,"date":"1995-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2124166667,"date":"1995-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2759472398,"date":"1995-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2325833333,"date":"1995-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2776280934,"date":"1995-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.24275,"date":"1995-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.279308947,"date":"1995-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2643333333,"date":"1995-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2809898006,"date":"1995-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.274,"date":"1995-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2826706541,"date":"1995-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2905833333,"date":"1995-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2843515077,"date":"1995-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.29425,"date":"1995-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2860323613,"date":"1995-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2939166667,"date":"1995-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2877132149,"date":"1995-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2913333333,"date":"1995-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2893940685,"date":"1995-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.28575,"date":"1995-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.291074922,"date":"1995-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2798333333,"date":"1995-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2927557756,"date":"1995-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2730833333,"date":"1995-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2944366292,"date":"1995-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2644166667,"date":"1995-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2961174828,"date":"1995-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2545833333,"date":"1995-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2977983364,"date":"1995-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2445833333,"date":"1995-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.29947919,"date":"1995-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2321666667,"date":"1995-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3011600435,"date":"1995-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2270833333,"date":"1995-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3028408971,"date":"1995-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2228333333,"date":"1995-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3045217507,"date":"1995-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2206666667,"date":"1995-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3062026043,"date":"1995-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.21325,"date":"1995-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3078834579,"date":"1995-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2110833333,"date":"1995-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3095643114,"date":"1995-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2075833333,"date":"1995-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.311245165,"date":"1995-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2063333333,"date":"1995-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3129260186,"date":"1995-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2041666667,"date":"1995-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3146068722,"date":"1995-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2005833333,"date":"1995-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3162877258,"date":"1995-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1949166667,"date":"1995-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3179685793,"date":"1995-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1870833333,"date":"1995-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3196494329,"date":"1995-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1790833333,"date":"1995-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3213302865,"date":"1995-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1693333333,"date":"1995-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3230111401,"date":"1995-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.16475,"date":"1995-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3246919937,"date":"1995-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1621666667,"date":"1995-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3263728473,"date":"1995-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.158,"date":"1995-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3280537008,"date":"1995-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1574166667,"date":"1995-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3297345544,"date":"1995-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1586666667,"date":"1995-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.331415408,"date":"1995-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1598333333,"date":"1995-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3330962616,"date":"1995-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1716666667,"date":"1995-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3347771152,"date":"1995-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1763333333,"date":"1995-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3364579687,"date":"1995-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.178,"date":"1996-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3381388223,"date":"1996-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1848333333,"date":"1996-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3398196759,"date":"1996-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1918333333,"date":"1996-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3415005295,"date":"1996-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.18725,"date":"1996-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3431813831,"date":"1996-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.18275,"date":"1996-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3448622366,"date":"1996-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1796666667,"date":"1996-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3465430902,"date":"1996-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1765833333,"date":"1996-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3482239438,"date":"1996-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1820833333,"date":"1996-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3499047974,"date":"1996-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.20075,"date":"1996-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.351585651,"date":"1996-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.216,"date":"1996-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3532665046,"date":"1996-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2185,"date":"1996-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3549473581,"date":"1996-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2275833333,"date":"1996-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3566282117,"date":"1996-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2536666667,"date":"1996-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3583090653,"date":"1996-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2685833333,"date":"1996-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3599899189,"date":"1996-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2933333333,"date":"1996-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3616707725,"date":"1996-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3344166667,"date":"1996-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.363351626,"date":"1996-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.35825,"date":"1996-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3650324796,"date":"1996-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3765833333,"date":"1996-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3667133332,"date":"1996-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3811666667,"date":"1996-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3683941868,"date":"1996-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.38375,"date":"1996-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3700750404,"date":"1996-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3891666667,"date":"1996-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3717558939,"date":"1996-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.37975,"date":"1996-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3734367475,"date":"1996-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3785833333,"date":"1996-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3751176011,"date":"1996-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.36975,"date":"1996-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3767984547,"date":"1996-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3625,"date":"1996-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3784793083,"date":"1996-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3511666667,"date":"1996-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3801601619,"date":"1996-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.34025,"date":"1996-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3818410154,"date":"1996-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3360833333,"date":"1996-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.383521869,"date":"1996-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.332,"date":"1996-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3852027226,"date":"1996-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3288333333,"date":"1996-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3868835762,"date":"1996-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3199166667,"date":"1996-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3885644298,"date":"1996-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.30975,"date":"1996-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3902452833,"date":"1996-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3026666667,"date":"1996-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3919261369,"date":"1996-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3000833333,"date":"1996-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3936069905,"date":"1996-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3024166667,"date":"1996-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3952878441,"date":"1996-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2905,"date":"1996-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3969686977,"date":"1996-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2938333333,"date":"1996-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3986495512,"date":"1996-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2966666667,"date":"1996-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4003304048,"date":"1996-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.29675,"date":"1996-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4020112584,"date":"1996-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2916666667,"date":"1996-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.403692112,"date":"1996-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2855,"date":"1996-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4053729656,"date":"1996-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2918333333,"date":"1996-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4070538192,"date":"1996-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2916666667,"date":"1996-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4087346727,"date":"1996-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2986666667,"date":"1996-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4104155263,"date":"1996-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3048333333,"date":"1996-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4120963799,"date":"1996-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3065833333,"date":"1996-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4137772335,"date":"1996-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.31575,"date":"1996-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4154580871,"date":"1996-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.32175,"date":"1996-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4171389406,"date":"1996-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3219166667,"date":"1996-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4188197942,"date":"1996-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.32275,"date":"1996-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4205006478,"date":"1996-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.32075,"date":"1996-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4221815014,"date":"1996-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3175,"date":"1996-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.423862355,"date":"1996-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3154166667,"date":"1996-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4255432085,"date":"1996-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.31525,"date":"1997-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4272240621,"date":"1997-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3293333333,"date":"1997-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4289049157,"date":"1997-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3296666667,"date":"1997-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4305857693,"date":"1997-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3268333333,"date":"1997-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4322666229,"date":"1997-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3263333333,"date":"1997-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4339474765,"date":"1997-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3243333333,"date":"1997-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.43562833,"date":"1997-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3195,"date":"1997-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4373091836,"date":"1997-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3165833333,"date":"1997-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4389900372,"date":"1997-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.30825,"date":"1997-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4406708908,"date":"1997-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3035833333,"date":"1997-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4423517444,"date":"1997-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2974166667,"date":"1997-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4440325979,"date":"1997-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2995833333,"date":"1997-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4457134515,"date":"1997-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2985833333,"date":"1997-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4473943051,"date":"1997-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3015833333,"date":"1997-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4490751587,"date":"1997-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2985833333,"date":"1997-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4507560123,"date":"1997-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2971666667,"date":"1997-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4524368659,"date":"1997-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2928333333,"date":"1997-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4541177194,"date":"1997-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2909166667,"date":"1997-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.455798573,"date":"1997-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2889166667,"date":"1997-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4574794266,"date":"1997-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2956666667,"date":"1997-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4591602802,"date":"1997-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3023333333,"date":"1997-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4608411338,"date":"1997-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3034166667,"date":"1997-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4625219873,"date":"1997-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.298,"date":"1997-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4642028409,"date":"1997-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2903333333,"date":"1997-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4658836945,"date":"1997-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2814166667,"date":"1997-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4675645481,"date":"1997-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2731666667,"date":"1997-06-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4692454017,"date":"1997-06-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.26925,"date":"1997-07-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4709262552,"date":"1997-07-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.26475,"date":"1997-07-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4726071088,"date":"1997-07-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.26675,"date":"1997-07-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4742879624,"date":"1997-07-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2615833333,"date":"1997-07-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.475968816,"date":"1997-07-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.282,"date":"1997-08-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4776496696,"date":"1997-08-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3171666667,"date":"1997-08-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4793305232,"date":"1997-08-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3226666667,"date":"1997-08-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4810113767,"date":"1997-08-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3403333333,"date":"1997-08-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4826922303,"date":"1997-08-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3423333333,"date":"1997-09-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4843730839,"date":"1997-09-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3435833333,"date":"1997-09-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4860539375,"date":"1997-09-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3390833333,"date":"1997-09-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4877347911,"date":"1997-09-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3289166667,"date":"1997-09-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4894156446,"date":"1997-09-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3160833333,"date":"1997-09-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4910964982,"date":"1997-09-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3143333333,"date":"1997-10-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4927773518,"date":"1997-10-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3075,"date":"1997-10-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4944582054,"date":"1997-10-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2989166667,"date":"1997-10-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.496139059,"date":"1997-10-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2889166667,"date":"1997-10-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4978199125,"date":"1997-10-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2814166667,"date":"1997-11-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4995007661,"date":"1997-11-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2804166667,"date":"1997-11-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5011816197,"date":"1997-11-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.27175,"date":"1997-11-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5028624733,"date":"1997-11-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2656666667,"date":"1997-11-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5045433269,"date":"1997-11-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2570833333,"date":"1997-12-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5062241805,"date":"1997-12-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2458333333,"date":"1997-12-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.507905034,"date":"1997-12-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2355833333,"date":"1997-12-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5095858876,"date":"1997-12-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2255,"date":"1997-12-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5112667412,"date":"1997-12-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2175833333,"date":"1997-12-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5129475948,"date":"1997-12-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2095,"date":"1998-01-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5146284484,"date":"1998-01-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1999166667,"date":"1998-01-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5163093019,"date":"1998-01-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1858333333,"date":"1998-01-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5179901555,"date":"1998-01-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1703333333,"date":"1998-01-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5196710091,"date":"1998-01-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1635833333,"date":"1998-02-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5213518627,"date":"1998-02-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1553333333,"date":"1998-02-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5230327163,"date":"1998-02-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1394166667,"date":"1998-02-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5247135698,"date":"1998-02-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1393333333,"date":"1998-02-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5263944234,"date":"1998-02-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1236666667,"date":"1998-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.528075277,"date":"1998-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1116666667,"date":"1998-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5297561306,"date":"1998-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1015,"date":"1998-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5314369842,"date":"1998-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.093,"date":"1998-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5331178378,"date":"1998-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1211666667,"date":"1998-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5347986913,"date":"1998-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1190833333,"date":"1998-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5364795449,"date":"1998-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1186666667,"date":"1998-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5381603985,"date":"1998-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1206666667,"date":"1998-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5398412521,"date":"1998-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1316666667,"date":"1998-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5415221057,"date":"1998-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1455,"date":"1998-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5432029592,"date":"1998-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1580833333,"date":"1998-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5448838128,"date":"1998-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1619166667,"date":"1998-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5465646664,"date":"1998-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1605833333,"date":"1998-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.54824552,"date":"1998-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1571666667,"date":"1998-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5499263736,"date":"1998-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1628333333,"date":"1998-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5516072271,"date":"1998-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1561666667,"date":"1998-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5532880807,"date":"1998-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.15,"date":"1998-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5549689343,"date":"1998-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1484166667,"date":"1998-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5566497879,"date":"1998-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1486666667,"date":"1998-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5583306415,"date":"1998-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1450833333,"date":"1998-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5600114951,"date":"1998-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1476666667,"date":"1998-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5616923486,"date":"1998-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1401666667,"date":"1998-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5633732022,"date":"1998-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1303333333,"date":"1998-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5650540558,"date":"1998-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1250833333,"date":"1998-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5667349094,"date":"1998-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1194166667,"date":"1998-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.568415763,"date":"1998-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.11275,"date":"1998-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5700966165,"date":"1998-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.107,"date":"1998-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5717774701,"date":"1998-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1015,"date":"1998-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5734583237,"date":"1998-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.09725,"date":"1998-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5751391773,"date":"1998-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1071666667,"date":"1998-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5768200309,"date":"1998-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1075833333,"date":"1998-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5785008844,"date":"1998-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1115,"date":"1998-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.580181738,"date":"1998-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1158333333,"date":"1998-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5818625916,"date":"1998-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1113333333,"date":"1998-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5835434452,"date":"1998-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1086666667,"date":"1998-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5852242988,"date":"1998-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1045,"date":"1998-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5869051524,"date":"1998-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1028333333,"date":"1998-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5885860059,"date":"1998-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0931666667,"date":"1998-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5902668595,"date":"1998-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0886666667,"date":"1998-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5919477131,"date":"1998-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0763333333,"date":"1998-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5936285667,"date":"1998-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0594166667,"date":"1998-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5953094203,"date":"1998-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.05125,"date":"1998-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5969902738,"date":"1998-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.049,"date":"1998-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5986711274,"date":"1998-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.043,"date":"1998-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.600351981,"date":"1998-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0405833333,"date":"1999-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6020328346,"date":"1999-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0429166667,"date":"1999-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6037136882,"date":"1999-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0458333333,"date":"1999-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6053945417,"date":"1999-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0391666667,"date":"1999-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6070753953,"date":"1999-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0320833333,"date":"1999-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6087562489,"date":"1999-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.02875,"date":"1999-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6104371025,"date":"1999-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0210833333,"date":"1999-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6121179561,"date":"1999-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.012,"date":"1999-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6137988097,"date":"1999-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0169166667,"date":"1999-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6154796632,"date":"1999-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0249166667,"date":"1999-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6171605168,"date":"1999-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0733333333,"date":"1999-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6188413704,"date":"1999-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1114166667,"date":"1999-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.620522224,"date":"1999-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1826666667,"date":"1999-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6222030776,"date":"1999-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.22625,"date":"1999-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6238839311,"date":"1999-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2495,"date":"1999-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6255647847,"date":"1999-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2458333333,"date":"1999-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6272456383,"date":"1999-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2426666667,"date":"1999-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6289264919,"date":"1999-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.244,"date":"1999-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6306073455,"date":"1999-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2485,"date":"1999-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.632288199,"date":"1999-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2455833333,"date":"1999-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6339690526,"date":"1999-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2296666667,"date":"1999-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6356499062,"date":"1999-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2144166667,"date":"1999-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6373307598,"date":"1999-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.21125,"date":"1999-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6390116134,"date":"1999-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2073333333,"date":"1999-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.640692467,"date":"1999-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2195,"date":"1999-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6423733205,"date":"1999-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2113333333,"date":"1999-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6440541741,"date":"1999-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.22,"date":"1999-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6457350277,"date":"1999-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2401666667,"date":"1999-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6474158813,"date":"1999-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2691666667,"date":"1999-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6490967349,"date":"1999-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.29075,"date":"1999-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6507775884,"date":"1999-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2959166667,"date":"1999-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.652458442,"date":"1999-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3089166667,"date":"1999-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6541392956,"date":"1999-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3348333333,"date":"1999-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6558201492,"date":"1999-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.33425,"date":"1999-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6575010028,"date":"1999-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3328333333,"date":"1999-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6591818563,"date":"1999-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3393333333,"date":"1999-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6608627099,"date":"1999-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3453333333,"date":"1999-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6625435635,"date":"1999-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3605833333,"date":"1999-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6642244171,"date":"1999-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3545,"date":"1999-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6659052707,"date":"1999-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3503333333,"date":"1999-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6675861243,"date":"1999-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3466666667,"date":"1999-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6692669778,"date":"1999-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3353333333,"date":"1999-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6709478314,"date":"1999-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3331666667,"date":"1999-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.672628685,"date":"1999-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3265833333,"date":"1999-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6743095386,"date":"1999-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3271666667,"date":"1999-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6759903922,"date":"1999-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.34325,"date":"1999-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6776712457,"date":"1999-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.35925,"date":"1999-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6793520993,"date":"1999-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3671666667,"date":"1999-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6810329529,"date":"1999-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3674166667,"date":"1999-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6827138065,"date":"1999-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3680833333,"date":"1999-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6843946601,"date":"1999-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3629166667,"date":"1999-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6860755136,"date":"1999-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3658333333,"date":"1999-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6877563672,"date":"1999-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3645,"date":"2000-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6894372208,"date":"2000-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3575833333,"date":"2000-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6911180744,"date":"2000-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3674166667,"date":"2000-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.692798928,"date":"2000-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3995,"date":"2000-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6944797816,"date":"2000-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4033333333,"date":"2000-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6961606351,"date":"2000-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4104166667,"date":"2000-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6978414887,"date":"2000-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4378333333,"date":"2000-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6995223423,"date":"2000-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4835,"date":"2000-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7012031959,"date":"2000-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5021666667,"date":"2000-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7028840495,"date":"2000-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5858333333,"date":"2000-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.704564903,"date":"2000-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6205833333,"date":"2000-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7062457566,"date":"2000-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.62925,"date":"2000-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7079266102,"date":"2000-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.613,"date":"2000-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7096074638,"date":"2000-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6068333333,"date":"2000-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7112883174,"date":"2000-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5824166667,"date":"2000-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7129691709,"date":"2000-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5545,"date":"2000-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7146500245,"date":"2000-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5449166667,"date":"2000-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7163308781,"date":"2000-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.52925,"date":"2000-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7180117317,"date":"2000-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5560833333,"date":"2000-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7196925853,"date":"2000-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5860833333,"date":"2000-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7213734389,"date":"2000-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6116666667,"date":"2000-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7230542924,"date":"2000-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6254166667,"date":"2000-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.724735146,"date":"2000-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6456666667,"date":"2000-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7264159996,"date":"2000-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6994166667,"date":"2000-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7280968532,"date":"2000-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7399166667,"date":"2000-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7297777068,"date":"2000-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7258333333,"date":"2000-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7314585603,"date":"2000-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7075,"date":"2000-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7331394139,"date":"2000-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6853333333,"date":"2000-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7348202675,"date":"2000-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6488333333,"date":"2000-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7365011211,"date":"2000-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6263333333,"date":"2000-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7381819747,"date":"2000-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5839166667,"date":"2000-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7398628282,"date":"2000-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.573,"date":"2000-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7415436818,"date":"2000-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5595,"date":"2000-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7432245354,"date":"2000-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5729166667,"date":"2000-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.744905389,"date":"2000-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5854166667,"date":"2000-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7465862426,"date":"2000-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6298333333,"date":"2000-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7482670962,"date":"2000-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6595833333,"date":"2000-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7499479497,"date":"2000-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6579166667,"date":"2000-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7516288033,"date":"2000-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6485,"date":"2000-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7533096569,"date":"2000-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6289166667,"date":"2000-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7549905105,"date":"2000-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.60925,"date":"2000-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7566713641,"date":"2000-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6384166667,"date":"2000-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7583522176,"date":"2000-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6444166667,"date":"2000-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7600330712,"date":"2000-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6425833333,"date":"2000-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7617139248,"date":"2000-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.62675,"date":"2000-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7633947784,"date":"2000-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6224166667,"date":"2000-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.765075632,"date":"2000-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6113333333,"date":"2000-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7667564855,"date":"2000-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6089166667,"date":"2000-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7684373391,"date":"2000-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.58775,"date":"2000-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7701181927,"date":"2000-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5559166667,"date":"2000-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7717990463,"date":"2000-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5295833333,"date":"2000-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7734798999,"date":"2000-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5176666667,"date":"2000-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7751607535,"date":"2000-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5119166667,"date":"2001-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.776841607,"date":"2001-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5254166667,"date":"2001-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7785224606,"date":"2001-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5641666667,"date":"2001-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7802033142,"date":"2001-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.562,"date":"2001-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7818841678,"date":"2001-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.551,"date":"2001-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7835650214,"date":"2001-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5389166667,"date":"2001-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7852458749,"date":"2001-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5669166667,"date":"2001-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7869267285,"date":"2001-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5478333333,"date":"2001-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7886075821,"date":"2001-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.532,"date":"2001-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7902884357,"date":"2001-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5219166667,"date":"2001-03-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7919692893,"date":"2001-03-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5171666667,"date":"2001-03-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7936501428,"date":"2001-03-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5091666667,"date":"2001-03-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7953309964,"date":"2001-03-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.50775,"date":"2001-03-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.79701185,"date":"2001-03-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.543,"date":"2001-04-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7986927036,"date":"2001-04-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5984166667,"date":"2001-04-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8003735572,"date":"2001-04-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6590833333,"date":"2001-04-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8020544108,"date":"2001-04-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7113333333,"date":"2001-04-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8037352643,"date":"2001-04-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7231666667,"date":"2001-04-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8054161179,"date":"2001-04-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7915,"date":"2001-05-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8070969715,"date":"2001-05-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8036666667,"date":"2001-05-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8087778251,"date":"2001-05-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7833333333,"date":"2001-05-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8104586787,"date":"2001-05-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7961666667,"date":"2001-05-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8121395322,"date":"2001-05-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7734166667,"date":"2001-06-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8138203858,"date":"2001-06-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7493333333,"date":"2001-06-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8155012394,"date":"2001-06-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.709,"date":"2001-06-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.817182093,"date":"2001-06-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6539166667,"date":"2001-06-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8188629466,"date":"2001-06-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.594,"date":"2001-07-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8205438001,"date":"2001-07-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5575,"date":"2001-07-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8222246537,"date":"2001-07-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.531,"date":"2001-07-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8239055073,"date":"2001-07-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.509,"date":"2001-07-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8255863609,"date":"2001-07-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4925,"date":"2001-07-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8272672145,"date":"2001-07-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4800833333,"date":"2001-08-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8289480681,"date":"2001-08-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.48925,"date":"2001-08-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8306289216,"date":"2001-08-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5150833333,"date":"2001-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8323097752,"date":"2001-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5595833333,"date":"2001-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8339906288,"date":"2001-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6145833333,"date":"2001-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8356714824,"date":"2001-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6018333333,"date":"2001-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.837352336,"date":"2001-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6029166667,"date":"2001-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8390331895,"date":"2001-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.56675,"date":"2001-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8407140431,"date":"2001-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5041666667,"date":"2001-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8423948967,"date":"2001-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.44575,"date":"2001-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8440757503,"date":"2001-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4055,"date":"2001-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8457566039,"date":"2001-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3616666667,"date":"2001-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8474374574,"date":"2001-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3309166667,"date":"2001-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.849118311,"date":"2001-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3013333333,"date":"2001-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8507991646,"date":"2001-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2753333333,"date":"2001-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8524800182,"date":"2001-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2565,"date":"2001-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8541608718,"date":"2001-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.217,"date":"2001-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8558417254,"date":"2001-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.19575,"date":"2001-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8575225789,"date":"2001-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1815833333,"date":"2001-12-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8592034325,"date":"2001-12-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1470833333,"date":"2001-12-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8608842861,"date":"2001-12-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1550833333,"date":"2001-12-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8625651397,"date":"2001-12-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.175,"date":"2001-12-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8642459933,"date":"2001-12-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1911666667,"date":"2002-01-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8659268468,"date":"2002-01-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1951666667,"date":"2002-01-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8676077004,"date":"2002-01-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.191,"date":"2002-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.869288554,"date":"2002-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.18775,"date":"2002-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8709694076,"date":"2002-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2014166667,"date":"2002-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8726502612,"date":"2002-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1946666667,"date":"2002-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8743311147,"date":"2002-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2049166667,"date":"2002-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8760119683,"date":"2002-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2063333333,"date":"2002-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8776928219,"date":"2002-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.23225,"date":"2002-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8793736755,"date":"2002-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3095,"date":"2002-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8810545291,"date":"2002-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.37525,"date":"2002-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8827353827,"date":"2002-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4305,"date":"2002-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8844162362,"date":"2002-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4621666667,"date":"2002-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8860970898,"date":"2002-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5031666667,"date":"2002-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8877779434,"date":"2002-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4981666667,"date":"2002-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.889458797,"date":"2002-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4981666667,"date":"2002-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8911396506,"date":"2002-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4885,"date":"2002-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8928205041,"date":"2002-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.49,"date":"2002-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8945013577,"date":"2002-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4839166667,"date":"2002-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8961822113,"date":"2002-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4909166667,"date":"2002-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8978630649,"date":"2002-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4819166667,"date":"2002-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8995439185,"date":"2002-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4848333333,"date":"2002-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.901224772,"date":"2002-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.47,"date":"2002-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9029056256,"date":"2002-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.473,"date":"2002-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9045864792,"date":"2002-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.47825,"date":"2002-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9062673328,"date":"2002-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4840833333,"date":"2002-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9079481864,"date":"2002-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4753333333,"date":"2002-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.90962904,"date":"2002-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4848333333,"date":"2002-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9113098935,"date":"2002-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4994166667,"date":"2002-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9129907471,"date":"2002-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4964166667,"date":"2002-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9146716007,"date":"2002-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.48975,"date":"2002-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9163524543,"date":"2002-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.487,"date":"2002-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9180333079,"date":"2002-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4855833333,"date":"2002-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9197141614,"date":"2002-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.49675,"date":"2002-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.921395015,"date":"2002-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.489,"date":"2002-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9230758686,"date":"2002-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4896666667,"date":"2002-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9247567222,"date":"2002-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4935,"date":"2002-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9264375758,"date":"2002-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4884166667,"date":"2002-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9281184293,"date":"2002-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5038333333,"date":"2002-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9297992829,"date":"2002-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.526,"date":"2002-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9314801365,"date":"2002-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5265,"date":"2002-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9331609901,"date":"2002-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5418333333,"date":"2002-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9348418437,"date":"2002-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.53,"date":"2002-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9365226973,"date":"2002-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5349166667,"date":"2002-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9382035508,"date":"2002-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5301666667,"date":"2002-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9398844044,"date":"2002-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5036666667,"date":"2002-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.941565258,"date":"2002-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4781666667,"date":"2002-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9432461116,"date":"2002-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4655833333,"date":"2002-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9449269652,"date":"2002-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.46025,"date":"2002-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9466078187,"date":"2002-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.462,"date":"2002-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9482886723,"date":"2002-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.49375,"date":"2002-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9499695259,"date":"2002-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5318333333,"date":"2002-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9516503795,"date":"2002-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5385,"date":"2003-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9533312331,"date":"2003-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.54725,"date":"2003-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9550120866,"date":"2003-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5548333333,"date":"2003-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9566929402,"date":"2003-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5669166667,"date":"2003-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9583737938,"date":"2003-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6178333333,"date":"2003-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9600546474,"date":"2003-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6974166667,"date":"2003-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.961735501,"date":"2003-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.75,"date":"2003-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9634163546,"date":"2003-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7515833333,"date":"2003-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9650972081,"date":"2003-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7805833333,"date":"2003-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9667780617,"date":"2003-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8073333333,"date":"2003-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9684589153,"date":"2003-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8255833333,"date":"2003-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9701397689,"date":"2003-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7935,"date":"2003-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9718206225,"date":"2003-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7578333333,"date":"2003-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.973501476,"date":"2003-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.739,"date":"2003-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9751823296,"date":"2003-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7065,"date":"2003-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9768631832,"date":"2003-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.683,"date":"2003-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9785440368,"date":"2003-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6653333333,"date":"2003-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9802248904,"date":"2003-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6220833333,"date":"2003-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9819057439,"date":"2003-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5969166667,"date":"2003-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9835865975,"date":"2003-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.597,"date":"2003-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9852674511,"date":"2003-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5835833333,"date":"2003-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9869483047,"date":"2003-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5686666667,"date":"2003-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9886291583,"date":"2003-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.57975,"date":"2003-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9903100119,"date":"2003-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6100833333,"date":"2003-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9919908654,"date":"2003-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.59225,"date":"2003-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.993671719,"date":"2003-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5835833333,"date":"2003-06-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9953525726,"date":"2003-06-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5844166667,"date":"2003-07-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9970334262,"date":"2003-07-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6138333333,"date":"2003-07-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9987142798,"date":"2003-07-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.616,"date":"2003-07-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0003951333,"date":"2003-07-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.60775,"date":"2003-07-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0020759869,"date":"2003-07-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6225833333,"date":"2003-08-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0037568405,"date":"2003-08-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6566666667,"date":"2003-08-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0054376941,"date":"2003-08-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7179166667,"date":"2003-08-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0071185477,"date":"2003-08-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8441666667,"date":"2003-08-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0087994012,"date":"2003-08-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8455,"date":"2003-09-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0104802548,"date":"2003-09-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.82,"date":"2003-09-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0121611084,"date":"2003-09-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.79925,"date":"2003-09-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.013841962,"date":"2003-09-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.749,"date":"2003-09-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0155228156,"date":"2003-09-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7005833333,"date":"2003-09-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0172036692,"date":"2003-09-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.68025,"date":"2003-10-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0188845227,"date":"2003-10-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6696666667,"date":"2003-10-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0205653763,"date":"2003-10-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6673333333,"date":"2003-10-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0222462299,"date":"2003-10-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6398333333,"date":"2003-10-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0239270835,"date":"2003-10-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6315833333,"date":"2003-11-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0256079371,"date":"2003-11-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6018333333,"date":"2003-11-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0272887906,"date":"2003-11-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5941666667,"date":"2003-11-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0289696442,"date":"2003-11-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.60675,"date":"2003-11-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0306504978,"date":"2003-11-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5871666667,"date":"2003-12-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0323313514,"date":"2003-12-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5726666667,"date":"2003-12-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.034012205,"date":"2003-12-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.56125,"date":"2003-12-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0356930585,"date":"2003-12-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5781666667,"date":"2003-12-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0373739121,"date":"2003-12-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5713333333,"date":"2003-12-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0390547657,"date":"2003-12-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5993333333,"date":"2004-01-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0407356193,"date":"2004-01-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6494166667,"date":"2004-01-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0424164729,"date":"2004-01-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6829166667,"date":"2004-01-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0440973265,"date":"2004-01-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.711,"date":"2004-01-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.04577818,"date":"2004-01-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7094166667,"date":"2004-02-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0474590336,"date":"2004-02-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7310833333,"date":"2004-02-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0491398872,"date":"2004-02-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.74075,"date":"2004-02-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0508207408,"date":"2004-02-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7856666667,"date":"2004-02-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0525015944,"date":"2004-02-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8166666667,"date":"2004-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0541824479,"date":"2004-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8374166667,"date":"2004-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0558633015,"date":"2004-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8249166667,"date":"2004-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0575441551,"date":"2004-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8415,"date":"2004-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0592250087,"date":"2004-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8549166667,"date":"2004-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0609058623,"date":"2004-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8768333333,"date":"2004-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0625867158,"date":"2004-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8833333333,"date":"2004-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0642675694,"date":"2004-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.90625,"date":"2004-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.065948423,"date":"2004-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9049166667,"date":"2004-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0676292766,"date":"2004-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.93375,"date":"2004-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0693101302,"date":"2004-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0290833333,"date":"2004-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0709909838,"date":"2004-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1054166667,"date":"2004-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0726718373,"date":"2004-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1555,"date":"2004-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0743526909,"date":"2004-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1475833333,"date":"2004-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0760335445,"date":"2004-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1325,"date":"2004-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0777143981,"date":"2004-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0908333333,"date":"2004-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0793952517,"date":"2004-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.04575,"date":"2004-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0810761052,"date":"2004-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0275,"date":"2004-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0827569588,"date":"2004-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0013333333,"date":"2004-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0844378124,"date":"2004-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0170833333,"date":"2004-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.086118666,"date":"2004-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.026,"date":"2004-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0877995196,"date":"2004-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.004,"date":"2004-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0894803731,"date":"2004-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9855,"date":"2004-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0911612267,"date":"2004-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.974,"date":"2004-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0928420803,"date":"2004-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9690833333,"date":"2004-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0945229339,"date":"2004-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9764166667,"date":"2004-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0962037875,"date":"2004-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9636666667,"date":"2004-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0978846411,"date":"2004-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9471666667,"date":"2004-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0995654946,"date":"2004-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9415,"date":"2004-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1012463482,"date":"2004-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9576666667,"date":"2004-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1029272018,"date":"2004-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.00625,"date":"2004-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1046080554,"date":"2004-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.03225,"date":"2004-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.106288909,"date":"2004-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.09025,"date":"2004-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1079697625,"date":"2004-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.135,"date":"2004-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1096506161,"date":"2004-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1330833333,"date":"2004-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1113314697,"date":"2004-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1336666667,"date":"2004-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1130123233,"date":"2004-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1045833333,"date":"2004-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1146931769,"date":"2004-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0746666667,"date":"2004-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1163740304,"date":"2004-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0511666667,"date":"2004-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.118054884,"date":"2004-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.04525,"date":"2004-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1197357376,"date":"2004-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0135833333,"date":"2004-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1214165912,"date":"2004-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.95375,"date":"2004-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1230974448,"date":"2004-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.918,"date":"2004-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1247782984,"date":"2004-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8945833333,"date":"2004-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1264591519,"date":"2004-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8795833333,"date":"2005-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1281400055,"date":"2005-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8873333333,"date":"2005-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1298208591,"date":"2005-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.91075,"date":"2005-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1315017127,"date":"2005-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9419166667,"date":"2005-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1331825663,"date":"2005-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.999,"date":"2005-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1348634198,"date":"2005-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9995,"date":"2005-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1365442734,"date":"2005-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.99025,"date":"2005-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.138225127,"date":"2005-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9981666667,"date":"2005-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1399059806,"date":"2005-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0178333333,"date":"2005-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1415868342,"date":"2005-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0865,"date":"2005-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1432676877,"date":"2005-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1434166667,"date":"2005-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1449485413,"date":"2005-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1928333333,"date":"2005-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1466293949,"date":"2005-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.239,"date":"2005-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1483102485,"date":"2005-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3041666667,"date":"2005-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1499911021,"date":"2005-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3708333333,"date":"2005-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1516719557,"date":"2005-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3345833333,"date":"2005-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1533528092,"date":"2005-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3335,"date":"2005-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1550336628,"date":"2005-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3328333333,"date":"2005-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1567145164,"date":"2005-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2903333333,"date":"2005-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.15839537,"date":"2005-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.26375,"date":"2005-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1600762236,"date":"2005-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2278333333,"date":"2005-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1617570771,"date":"2005-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1991666667,"date":"2005-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1634379307,"date":"2005-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.21325,"date":"2005-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1651187843,"date":"2005-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2250833333,"date":"2005-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1667996379,"date":"2005-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2561666667,"date":"2005-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1684804915,"date":"2005-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3065,"date":"2005-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1701613451,"date":"2005-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3208333333,"date":"2005-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1718421986,"date":"2005-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4215,"date":"2005-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1735230522,"date":"2005-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4158333333,"date":"2005-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1752039058,"date":"2005-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.394,"date":"2005-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1768847594,"date":"2005-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3951666667,"date":"2005-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.178565613,"date":"2005-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4658333333,"date":"2005-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1802464665,"date":"2005-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6425,"date":"2005-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1819273201,"date":"2005-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7038333333,"date":"2005-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1836081737,"date":"2005-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7031666667,"date":"2005-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1852890273,"date":"2005-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.17175,"date":"2005-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1869698809,"date":"2005-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0609166667,"date":"2005-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1886507344,"date":"2005-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.90075,"date":"2005-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.190331588,"date":"2005-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9080833333,"date":"2005-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1920124416,"date":"2005-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0210833333,"date":"2005-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1936932952,"date":"2005-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9484166667,"date":"2005-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1953741488,"date":"2005-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.832,"date":"2005-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1970550024,"date":"2005-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.71075,"date":"2005-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1987358559,"date":"2005-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5878333333,"date":"2005-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2004167095,"date":"2005-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4826666667,"date":"2005-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2020975631,"date":"2005-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.39925,"date":"2005-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2037784167,"date":"2005-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3025833333,"date":"2005-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2054592703,"date":"2005-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2535833333,"date":"2005-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2071401238,"date":"2005-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.24,"date":"2005-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2088209774,"date":"2005-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2729166667,"date":"2005-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.210501831,"date":"2005-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2985833333,"date":"2005-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2121826846,"date":"2005-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2854166667,"date":"2005-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2138635382,"date":"2005-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.32275,"date":"2006-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2155443917,"date":"2006-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4150833333,"date":"2006-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2172252453,"date":"2006-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4175,"date":"2006-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2189060989,"date":"2006-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4330833333,"date":"2006-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2205869525,"date":"2006-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4538333333,"date":"2006-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2222678061,"date":"2006-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4425,"date":"2006-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2239486597,"date":"2006-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3883333333,"date":"2006-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2256295132,"date":"2006-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.34125,"date":"2006-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2273103668,"date":"2006-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3454166667,"date":"2006-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2289912204,"date":"2006-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4161666667,"date":"2006-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.230672074,"date":"2006-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4521666667,"date":"2006-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2323529276,"date":"2006-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5919166667,"date":"2006-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2340337811,"date":"2006-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.58975,"date":"2006-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2357146347,"date":"2006-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.679,"date":"2006-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2373954883,"date":"2006-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7751666667,"date":"2006-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2390763419,"date":"2006-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.87575,"date":"2006-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2407571955,"date":"2006-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.01425,"date":"2006-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.242438049,"date":"2006-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0286666667,"date":"2006-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2441189026,"date":"2006-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.026,"date":"2006-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2457997562,"date":"2006-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0613333333,"date":"2006-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2474806098,"date":"2006-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0135833333,"date":"2006-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2491614634,"date":"2006-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.98525,"date":"2006-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.250842317,"date":"2006-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0086666667,"date":"2006-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2525231705,"date":"2006-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0198333333,"date":"2006-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2542040241,"date":"2006-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9880833333,"date":"2006-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2558848777,"date":"2006-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9829166667,"date":"2006-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2575657313,"date":"2006-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0421666667,"date":"2006-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2592465849,"date":"2006-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0805833333,"date":"2006-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2609274384,"date":"2006-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.09625,"date":"2006-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.262608292,"date":"2006-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.10925,"date":"2006-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2642891456,"date":"2006-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1105833333,"date":"2006-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2659699992,"date":"2006-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1380833333,"date":"2006-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2676508528,"date":"2006-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1065833333,"date":"2006-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2693317063,"date":"2006-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0330833333,"date":"2006-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2710125599,"date":"2006-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9561666667,"date":"2006-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2726934135,"date":"2006-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8425,"date":"2006-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2743742671,"date":"2006-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.73825,"date":"2006-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2760551207,"date":"2006-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6185,"date":"2006-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2777359743,"date":"2006-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4983333333,"date":"2006-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2794168278,"date":"2006-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4245,"date":"2006-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2810976814,"date":"2006-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.37075,"date":"2006-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.282778535,"date":"2006-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3316666667,"date":"2006-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2844593886,"date":"2006-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3078333333,"date":"2006-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2861402422,"date":"2006-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3133333333,"date":"2006-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2878210957,"date":"2006-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2950833333,"date":"2006-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2895019493,"date":"2006-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3283333333,"date":"2006-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2911828029,"date":"2006-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3375833333,"date":"2006-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2928636565,"date":"2006-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3456666667,"date":"2006-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2945445101,"date":"2006-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3929166667,"date":"2006-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2962253636,"date":"2006-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.39325,"date":"2006-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2979062172,"date":"2006-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4204166667,"date":"2006-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2995870708,"date":"2006-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4443333333,"date":"2006-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3012679244,"date":"2006-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4400833333,"date":"2007-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.302948778,"date":"2007-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4170833333,"date":"2007-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3046296316,"date":"2007-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3470833333,"date":"2007-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3063104851,"date":"2007-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.285,"date":"2007-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3079913387,"date":"2007-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2755,"date":"2007-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3096721923,"date":"2007-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.296,"date":"2007-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3113530459,"date":"2007-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3460833333,"date":"2007-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3130338995,"date":"2007-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3995833333,"date":"2007-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.314714753,"date":"2007-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4864166667,"date":"2007-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3163956066,"date":"2007-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6093333333,"date":"2007-03-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3180764602,"date":"2007-03-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6698333333,"date":"2007-03-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3197573138,"date":"2007-03-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6906666667,"date":"2007-03-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3214381674,"date":"2007-03-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7228333333,"date":"2007-03-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3231190209,"date":"2007-03-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8213333333,"date":"2007-04-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3247998745,"date":"2007-04-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9113333333,"date":"2007-04-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3264807281,"date":"2007-04-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9845833333,"date":"2007-04-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3281615817,"date":"2007-04-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9815833333,"date":"2007-04-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3298424353,"date":"2007-04-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0775833333,"date":"2007-04-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3315232889,"date":"2007-04-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1566666667,"date":"2007-05-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3332041424,"date":"2007-05-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1949166667,"date":"2007-05-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.334884996,"date":"2007-05-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2998333333,"date":"2007-05-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3365658496,"date":"2007-05-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2950833333,"date":"2007-05-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3382467032,"date":"2007-05-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2505,"date":"2007-06-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3399275568,"date":"2007-06-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.17925,"date":"2007-06-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3416084103,"date":"2007-06-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1141666667,"date":"2007-06-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3432892639,"date":"2007-06-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0856666667,"date":"2007-06-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3449701175,"date":"2007-06-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0596666667,"date":"2007-07-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3466509711,"date":"2007-07-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0726666667,"date":"2007-07-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3483318247,"date":"2007-07-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1346666667,"date":"2007-07-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3500126782,"date":"2007-07-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0573333333,"date":"2007-07-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3516935318,"date":"2007-07-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9830833333,"date":"2007-07-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3533743854,"date":"2007-07-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9445,"date":"2007-08-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.355055239,"date":"2007-08-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8753333333,"date":"2007-08-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3567360926,"date":"2007-08-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8784166667,"date":"2007-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3584169462,"date":"2007-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8395833333,"date":"2007-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3600977997,"date":"2007-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8755833333,"date":"2007-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3617786533,"date":"2007-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8976666667,"date":"2007-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3634595069,"date":"2007-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8786666667,"date":"2007-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3651403605,"date":"2007-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9046666667,"date":"2007-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3668212141,"date":"2007-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8880833333,"date":"2007-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3685020676,"date":"2007-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.87325,"date":"2007-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3701829212,"date":"2007-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.86825,"date":"2007-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3718637748,"date":"2007-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9268333333,"date":"2007-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3735446284,"date":"2007-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.97275,"date":"2007-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.375225482,"date":"2007-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1065,"date":"2007-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3769063355,"date":"2007-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2076666667,"date":"2007-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3785871891,"date":"2007-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2023333333,"date":"2007-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3802680427,"date":"2007-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2025833333,"date":"2007-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3819488963,"date":"2007-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.17275,"date":"2007-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3836297499,"date":"2007-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.11825,"date":"2007-12-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3853106035,"date":"2007-12-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1125,"date":"2007-12-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.386991457,"date":"2007-12-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0951666667,"date":"2007-12-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3886723106,"date":"2007-12-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1611666667,"date":"2007-12-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3903531642,"date":"2007-12-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.214,"date":"2008-01-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3920340178,"date":"2008-01-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1775833333,"date":"2008-01-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3937148714,"date":"2008-01-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1298333333,"date":"2008-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3953957249,"date":"2008-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0889166667,"date":"2008-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3970765785,"date":"2008-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.08375,"date":"2008-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3987574321,"date":"2008-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0645,"date":"2008-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4004382857,"date":"2008-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1416666667,"date":"2008-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4021191393,"date":"2008-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2320833333,"date":"2008-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4037999928,"date":"2008-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2688333333,"date":"2008-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4054808464,"date":"2008-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3283333333,"date":"2008-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4071617,"date":"2008-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3881666667,"date":"2008-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4088425536,"date":"2008-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3705,"date":"2008-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4105234072,"date":"2008-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3976666667,"date":"2008-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4122042608,"date":"2008-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4386666667,"date":"2008-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4138851143,"date":"2008-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4974166667,"date":"2008-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4155659679,"date":"2008-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.618,"date":"2008-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4172468215,"date":"2008-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7129166667,"date":"2008-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4189276751,"date":"2008-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.72475,"date":"2008-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4206085287,"date":"2008-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8268333333,"date":"2008-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4222893822,"date":"2008-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8965,"date":"2008-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4239702358,"date":"2008-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0405833333,"date":"2008-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4256510894,"date":"2008-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0870833333,"date":"2008-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.427331943,"date":"2008-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1576666667,"date":"2008-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4290127966,"date":"2008-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2085,"date":"2008-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4306936501,"date":"2008-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2068333333,"date":"2008-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4323745037,"date":"2008-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2181666667,"date":"2008-06-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4340553573,"date":"2008-06-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2355833333,"date":"2008-07-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4357362109,"date":"2008-07-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2320833333,"date":"2008-07-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4374170645,"date":"2008-07-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1891666667,"date":"2008-07-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4390979181,"date":"2008-07-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0839166667,"date":"2008-07-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4407787716,"date":"2008-07-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0065833333,"date":"2008-08-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4424596252,"date":"2008-08-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9318333333,"date":"2008-08-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4441404788,"date":"2008-08-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8578333333,"date":"2008-08-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4458213324,"date":"2008-08-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7986666667,"date":"2008-08-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.447502186,"date":"2008-08-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7900833333,"date":"2008-09-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4491830395,"date":"2008-09-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7563333333,"date":"2008-09-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4508638931,"date":"2008-09-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9248333333,"date":"2008-09-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4525447467,"date":"2008-09-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.81875,"date":"2008-09-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4542256003,"date":"2008-09-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.73675,"date":"2008-09-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4559064539,"date":"2008-09-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.598,"date":"2008-10-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4575873074,"date":"2008-10-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2870833333,"date":"2008-10-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.459268161,"date":"2008-10-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0535,"date":"2008-10-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4609490146,"date":"2008-10-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.801,"date":"2008-10-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4626298682,"date":"2008-10-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5434166667,"date":"2008-11-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4643107218,"date":"2008-11-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3621666667,"date":"2008-11-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4659915754,"date":"2008-11-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2063333333,"date":"2008-11-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4676724289,"date":"2008-11-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0235,"date":"2008-11-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4693532825,"date":"2008-11-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9355833333,"date":"2008-12-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4710341361,"date":"2008-12-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8225833333,"date":"2008-12-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4727149897,"date":"2008-12-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7749166667,"date":"2008-12-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4743958433,"date":"2008-12-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7714166667,"date":"2008-12-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4760766968,"date":"2008-12-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7331666667,"date":"2008-12-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4777575504,"date":"2008-12-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7925,"date":"2009-01-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.479438404,"date":"2009-01-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8889166667,"date":"2009-01-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4811192576,"date":"2009-01-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9520833333,"date":"2009-01-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4828001112,"date":"2009-01-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9475833333,"date":"2009-01-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4844809647,"date":"2009-01-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0001666667,"date":"2009-02-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4861618183,"date":"2009-02-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0380833333,"date":"2009-02-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4878426719,"date":"2009-02-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0774166667,"date":"2009-02-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4895235255,"date":"2009-02-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.029,"date":"2009-02-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4912043791,"date":"2009-02-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.04775,"date":"2009-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4928852327,"date":"2009-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0509166667,"date":"2009-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4945660862,"date":"2009-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0240833333,"date":"2009-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4962469398,"date":"2009-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0690833333,"date":"2009-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4979277934,"date":"2009-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1516666667,"date":"2009-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.499608647,"date":"2009-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.14875,"date":"2009-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5012895006,"date":"2009-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1625833333,"date":"2009-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5029703541,"date":"2009-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1716666667,"date":"2009-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5046512077,"date":"2009-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1639166667,"date":"2009-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5063320613,"date":"2009-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1895,"date":"2009-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5080129149,"date":"2009-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3448333333,"date":"2009-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5096937685,"date":"2009-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.418,"date":"2009-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.511374622,"date":"2009-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5395,"date":"2009-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5130554756,"date":"2009-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.625,"date":"2009-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5147363292,"date":"2009-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.727,"date":"2009-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5164171828,"date":"2009-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7804166667,"date":"2009-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5180980364,"date":"2009-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8056666667,"date":"2009-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.51977889,"date":"2009-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7625833333,"date":"2009-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5214597435,"date":"2009-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7340833333,"date":"2009-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5231405971,"date":"2009-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6543333333,"date":"2009-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5248214507,"date":"2009-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5905833333,"date":"2009-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5265023043,"date":"2009-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6231666667,"date":"2009-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5281831579,"date":"2009-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6755833333,"date":"2009-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5298640114,"date":"2009-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.76725,"date":"2009-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.531544865,"date":"2009-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7614166667,"date":"2009-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5332257186,"date":"2009-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.75225,"date":"2009-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5349065722,"date":"2009-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7399166667,"date":"2009-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5365874258,"date":"2009-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7181666667,"date":"2009-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5382682793,"date":"2009-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7104166667,"date":"2009-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5399491329,"date":"2009-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6855833333,"date":"2009-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5416299865,"date":"2009-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6331666667,"date":"2009-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5433108401,"date":"2009-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6019166667,"date":"2009-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5449916937,"date":"2009-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6148333333,"date":"2009-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5466725473,"date":"2009-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6908333333,"date":"2009-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5483534008,"date":"2009-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7878333333,"date":"2009-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5500342544,"date":"2009-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.80825,"date":"2009-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.551715108,"date":"2009-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.78425,"date":"2009-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5533959616,"date":"2009-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7516666667,"date":"2009-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5550768152,"date":"2009-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7580833333,"date":"2009-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5567576687,"date":"2009-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.74875,"date":"2009-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5584385223,"date":"2009-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7535833333,"date":"2009-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5601193759,"date":"2009-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.72225,"date":"2009-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5618002295,"date":"2009-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7128333333,"date":"2009-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5634810831,"date":"2009-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7283333333,"date":"2009-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5651619366,"date":"2009-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7819166667,"date":"2010-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5668427902,"date":"2010-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8648333333,"date":"2010-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5685236438,"date":"2010-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8563333333,"date":"2010-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5702044974,"date":"2010-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8261666667,"date":"2010-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.571885351,"date":"2010-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.784,"date":"2010-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5735662046,"date":"2010-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7740833333,"date":"2010-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5752470581,"date":"2010-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7338333333,"date":"2010-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5769279117,"date":"2010-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7724166667,"date":"2010-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5786087653,"date":"2010-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8181666667,"date":"2010-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5802896189,"date":"2010-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.864,"date":"2010-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5819704725,"date":"2010-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8996666667,"date":"2010-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.583651326,"date":"2010-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.92825,"date":"2010-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5853321796,"date":"2010-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.91175,"date":"2010-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5870130332,"date":"2010-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.93575,"date":"2010-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5886938868,"date":"2010-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9665833333,"date":"2010-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5903747404,"date":"2010-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9691666667,"date":"2010-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5920555939,"date":"2010-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9620833333,"date":"2010-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5937364475,"date":"2010-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0093333333,"date":"2010-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5954173011,"date":"2010-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0193333333,"date":"2010-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5970981547,"date":"2010-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.983,"date":"2010-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5987790083,"date":"2010-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9106666667,"date":"2010-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6004598619,"date":"2010-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.85425,"date":"2010-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6021407154,"date":"2010-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8503333333,"date":"2010-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.603821569,"date":"2010-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8255,"date":"2010-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6055024226,"date":"2010-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8619166667,"date":"2010-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6071832762,"date":"2010-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.87475,"date":"2010-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6088641298,"date":"2010-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8473333333,"date":"2010-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6105449833,"date":"2010-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.84,"date":"2010-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6122258369,"date":"2010-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8430833333,"date":"2010-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6139066905,"date":"2010-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8665,"date":"2010-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6155875441,"date":"2010-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8558333333,"date":"2010-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6172683977,"date":"2010-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8999166667,"date":"2010-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6189492512,"date":"2010-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.86625,"date":"2010-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6206301048,"date":"2010-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8288333333,"date":"2010-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6223109584,"date":"2010-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8029166667,"date":"2010-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.623991812,"date":"2010-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7980833333,"date":"2010-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6256726656,"date":"2010-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8306666667,"date":"2010-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6273535192,"date":"2010-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.83275,"date":"2010-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6290343727,"date":"2010-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8078333333,"date":"2010-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6307152263,"date":"2010-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8433333333,"date":"2010-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6323960799,"date":"2010-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.92875,"date":"2010-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6340769335,"date":"2010-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9503333333,"date":"2010-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6357577871,"date":"2010-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9365,"date":"2010-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6374386406,"date":"2010-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9285833333,"date":"2010-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6391194942,"date":"2010-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9778333333,"date":"2010-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6408003478,"date":"2010-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0080833333,"date":"2010-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6424812014,"date":"2010-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3,"date":"2010-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.644162055,"date":"2010-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9825833333,"date":"2010-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6458429085,"date":"2010-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0786666667,"date":"2010-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6475237621,"date":"2010-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1004166667,"date":"2010-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6492046157,"date":"2010-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.10525,"date":"2010-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6508854693,"date":"2010-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1688333333,"date":"2010-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6525663229,"date":"2010-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1865,"date":"2011-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6542471765,"date":"2011-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2041666667,"date":"2011-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.65592803,"date":"2011-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2201666667,"date":"2011-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6576088836,"date":"2011-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2259166667,"date":"2011-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6592897372,"date":"2011-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2195,"date":"2011-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6609705908,"date":"2011-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2478333333,"date":"2011-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6626514444,"date":"2011-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2588333333,"date":"2011-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6643322979,"date":"2011-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3095,"date":"2011-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6660131515,"date":"2011-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4985833333,"date":"2011-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6676940051,"date":"2011-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6375833333,"date":"2011-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6693748587,"date":"2011-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6886666667,"date":"2011-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6710557123,"date":"2011-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6863333333,"date":"2011-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6727365658,"date":"2011-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7195,"date":"2011-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6744174194,"date":"2011-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8025,"date":"2011-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.676098273,"date":"2011-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.909,"date":"2011-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6777791266,"date":"2011-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9649166667,"date":"2011-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6794599802,"date":"2011-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.002,"date":"2011-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6811408338,"date":"2011-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0819166667,"date":"2011-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6828216873,"date":"2011-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.08775,"date":"2011-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6845025409,"date":"2011-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0836666667,"date":"2011-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6861833945,"date":"2011-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9784166667,"date":"2011-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6878642481,"date":"2011-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.91875,"date":"2011-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6895451017,"date":"2011-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8975,"date":"2011-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6912259552,"date":"2011-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8353333333,"date":"2011-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6929068088,"date":"2011-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7805833333,"date":"2011-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6945876624,"date":"2011-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7065833333,"date":"2011-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.696268516,"date":"2011-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7025,"date":"2011-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6979493696,"date":"2011-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7580833333,"date":"2011-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6996302231,"date":"2011-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7989166667,"date":"2011-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7013110767,"date":"2011-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8170833333,"date":"2011-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7029919303,"date":"2011-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8271666667,"date":"2011-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7046727839,"date":"2011-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.79175,"date":"2011-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7063536375,"date":"2011-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7258333333,"date":"2011-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7080344911,"date":"2011-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.70175,"date":"2011-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7097153446,"date":"2011-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7428333333,"date":"2011-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7113961982,"date":"2011-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7889166667,"date":"2011-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7130770518,"date":"2011-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7779166667,"date":"2011-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7147579054,"date":"2011-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7255,"date":"2011-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.716438759,"date":"2011-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6406666667,"date":"2011-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7181196125,"date":"2011-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5676666667,"date":"2011-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7198004661,"date":"2011-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5489166667,"date":"2011-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7214813197,"date":"2011-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6025,"date":"2011-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7231621733,"date":"2011-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5915,"date":"2011-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7248430269,"date":"2011-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5828333333,"date":"2011-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7265238804,"date":"2011-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5561666667,"date":"2011-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.728204734,"date":"2011-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.56775,"date":"2011-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7298855876,"date":"2011-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5034166667,"date":"2011-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7315664412,"date":"2011-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.447,"date":"2011-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7332472948,"date":"2011-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4248333333,"date":"2011-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7349281484,"date":"2011-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4170833333,"date":"2011-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7366090019,"date":"2011-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3644166667,"date":"2011-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7382898555,"date":"2011-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3875,"date":"2011-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7399707091,"date":"2011-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.429,"date":"2012-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7416515627,"date":"2012-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.513,"date":"2012-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7433324163,"date":"2012-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.52275,"date":"2012-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7450132698,"date":"2012-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5246666667,"date":"2012-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7466941234,"date":"2012-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5743333333,"date":"2012-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.748374977,"date":"2012-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.61375,"date":"2012-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7500558306,"date":"2012-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6596666667,"date":"2012-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7517366842,"date":"2012-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.732,"date":"2012-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7534175377,"date":"2012-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8614166667,"date":"2012-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7550983913,"date":"2012-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9273333333,"date":"2012-03-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7567792449,"date":"2012-03-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.964,"date":"2012-03-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7584600985,"date":"2012-03-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0018333333,"date":"2012-03-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7601409521,"date":"2012-03-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0504166667,"date":"2012-03-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7618218057,"date":"2012-03-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0706666667,"date":"2012-04-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7635026592,"date":"2012-04-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.07175,"date":"2012-04-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7651835128,"date":"2012-04-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0521666667,"date":"2012-04-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7668643664,"date":"2012-04-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0058333333,"date":"2012-04-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.76854522,"date":"2012-04-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9668333333,"date":"2012-04-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7702260736,"date":"2012-04-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.92975,"date":"2012-05-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7719069271,"date":"2012-05-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.905,"date":"2012-05-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7735877807,"date":"2012-05-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8615,"date":"2012-05-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7752686343,"date":"2012-05-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8170833333,"date":"2012-05-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7769494879,"date":"2012-05-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7609166667,"date":"2012-06-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7786303415,"date":"2012-06-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7135833333,"date":"2012-06-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.780311195,"date":"2012-06-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6640833333,"date":"2012-06-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7819920486,"date":"2012-06-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5713333333,"date":"2012-06-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7836729022,"date":"2012-06-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4944166667,"date":"2012-07-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7853537558,"date":"2012-07-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5433333333,"date":"2012-07-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7870346094,"date":"2012-07-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5616666667,"date":"2012-07-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.788715463,"date":"2012-07-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6311666667,"date":"2012-07-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7903963165,"date":"2012-07-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6438333333,"date":"2012-07-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7920771701,"date":"2012-07-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.76925,"date":"2012-08-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7937580237,"date":"2012-08-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8539166667,"date":"2012-08-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7954388773,"date":"2012-08-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8799166667,"date":"2012-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7971197309,"date":"2012-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9118333333,"date":"2012-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7988005844,"date":"2012-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.974,"date":"2012-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.800481438,"date":"2012-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9806666667,"date":"2012-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8021622916,"date":"2012-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.012,"date":"2012-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8038431452,"date":"2012-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9665833333,"date":"2012-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8055239988,"date":"2012-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.94525,"date":"2012-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8072048523,"date":"2012-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0136666667,"date":"2012-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8088857059,"date":"2012-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.98625,"date":"2012-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8105665595,"date":"2012-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8585,"date":"2012-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8122474131,"date":"2012-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7351666667,"date":"2012-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8139282667,"date":"2012-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6595833333,"date":"2012-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8156091203,"date":"2012-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6109166667,"date":"2012-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8172899738,"date":"2012-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5866666667,"date":"2012-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8189708274,"date":"2012-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5889166667,"date":"2012-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.820651681,"date":"2012-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5489166667,"date":"2012-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8223325346,"date":"2012-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5030833333,"date":"2012-12-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8240133882,"date":"2012-12-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4101666667,"date":"2012-12-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8256942417,"date":"2012-12-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4134166667,"date":"2012-12-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8273750953,"date":"2012-12-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4539166667,"date":"2012-12-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8290559489,"date":"2012-12-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4639166667,"date":"2013-01-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8307368025,"date":"2013-01-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.469,"date":"2013-01-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8324176561,"date":"2013-01-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4744166667,"date":"2013-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8340985096,"date":"2013-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5135,"date":"2013-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8357793632,"date":"2013-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6901666667,"date":"2013-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8374602168,"date":"2013-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7646666667,"date":"2013-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8391410704,"date":"2013-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8923333333,"date":"2013-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.840821924,"date":"2013-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9339166667,"date":"2013-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8425027776,"date":"2013-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.91,"date":"2013-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8441836311,"date":"2013-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.86525,"date":"2013-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8458644847,"date":"2013-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8494166667,"date":"2013-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8475453383,"date":"2013-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8305833333,"date":"2013-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8492261919,"date":"2013-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8023333333,"date":"2013-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8509070455,"date":"2013-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7638333333,"date":"2013-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.852587899,"date":"2013-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7015,"date":"2013-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8542687526,"date":"2013-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.688,"date":"2013-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8559496062,"date":"2013-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6716666667,"date":"2013-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8576304598,"date":"2013-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6834166667,"date":"2013-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8593113134,"date":"2013-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.74425,"date":"2013-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8609921669,"date":"2013-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7975,"date":"2013-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8626730205,"date":"2013-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7765833333,"date":"2013-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8643538741,"date":"2013-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7738333333,"date":"2013-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8660347277,"date":"2013-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.78475,"date":"2013-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8677155813,"date":"2013-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7660833333,"date":"2013-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8693964349,"date":"2013-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7355,"date":"2013-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8710772884,"date":"2013-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6634166667,"date":"2013-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.872758142,"date":"2013-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.65675,"date":"2013-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8744389956,"date":"2013-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7924166667,"date":"2013-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8761198492,"date":"2013-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8378333333,"date":"2013-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8778007028,"date":"2013-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.80725,"date":"2013-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8794815563,"date":"2013-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.78775,"date":"2013-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8811624099,"date":"2013-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7235833333,"date":"2013-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8828432635,"date":"2013-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7071666667,"date":"2013-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8845241171,"date":"2013-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.70625,"date":"2013-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8862049707,"date":"2013-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.754,"date":"2013-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8878858242,"date":"2013-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7398333333,"date":"2013-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8895666778,"date":"2013-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7113333333,"date":"2013-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8912475314,"date":"2013-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6588333333,"date":"2013-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.892928385,"date":"2013-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.59425,"date":"2013-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8946092386,"date":"2013-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.53525,"date":"2013-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8962900922,"date":"2013-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.52225,"date":"2013-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8979709457,"date":"2013-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5230833333,"date":"2013-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8996517993,"date":"2013-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4666666667,"date":"2013-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9013326529,"date":"2013-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.43525,"date":"2013-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9030135065,"date":"2013-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3709166667,"date":"2013-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9046943601,"date":"2013-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3919166667,"date":"2013-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9063752136,"date":"2013-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4623333333,"date":"2013-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9080560672,"date":"2013-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4495,"date":"2013-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9097369208,"date":"2013-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.44625,"date":"2013-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9114177744,"date":"2013-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4215,"date":"2013-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.913098628,"date":"2013-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.45025,"date":"2013-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9147794816,"date":"2013-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5034166667,"date":"2013-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9164603351,"date":"2013-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5093333333,"date":"2014-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9181411887,"date":"2014-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4998333333,"date":"2014-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9198220423,"date":"2014-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4701666667,"date":"2014-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9215028959,"date":"2014-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4669166667,"date":"2014-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9231837495,"date":"2014-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.46375,"date":"2014-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.924864603,"date":"2014-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.479,"date":"2014-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9265454566,"date":"2014-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5475,"date":"2014-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9282263102,"date":"2014-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.60675,"date":"2014-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9299071638,"date":"2014-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.64175,"date":"2014-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9315880174,"date":"2014-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6708333333,"date":"2014-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9332688709,"date":"2014-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.706,"date":"2014-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9349497245,"date":"2014-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7111666667,"date":"2014-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9366305781,"date":"2014-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7381666667,"date":"2014-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9383114317,"date":"2014-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7605,"date":"2014-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9399922853,"date":"2014-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.816,"date":"2014-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9416731389,"date":"2014-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.85025,"date":"2014-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9433539924,"date":"2014-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8839166667,"date":"2014-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.945034846,"date":"2014-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.85875,"date":"2014-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9467156996,"date":"2014-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8420833333,"date":"2014-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9483965532,"date":"2014-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8385833333,"date":"2014-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9500774068,"date":"2014-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.84325,"date":"2014-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9517582603,"date":"2014-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8565833333,"date":"2014-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9534391139,"date":"2014-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8398333333,"date":"2014-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9551199675,"date":"2014-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.85,"date":"2014-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9568008211,"date":"2014-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8686666667,"date":"2014-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9584816747,"date":"2014-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8699166667,"date":"2014-06-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9601625282,"date":"2014-06-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8475,"date":"2014-07-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9618433818,"date":"2014-07-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.80875,"date":"2014-07-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9635242354,"date":"2014-07-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7668333333,"date":"2014-07-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.965205089,"date":"2014-07-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7155833333,"date":"2014-07-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9668859426,"date":"2014-07-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6915,"date":"2014-08-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9685667962,"date":"2014-08-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6748333333,"date":"2014-08-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9702476497,"date":"2014-08-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.64375,"date":"2014-08-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9719285033,"date":"2014-08-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6246666667,"date":"2014-08-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9736093569,"date":"2014-08-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6250833333,"date":"2014-09-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9752902105,"date":"2014-09-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6225,"date":"2014-09-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9769710641,"date":"2014-09-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5761666667,"date":"2014-09-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9786519176,"date":"2014-09-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5251666667,"date":"2014-09-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9803327712,"date":"2014-09-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5249166667,"date":"2014-09-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9820136248,"date":"2014-09-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4766666667,"date":"2014-10-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9836944784,"date":"2014-10-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3915,"date":"2014-10-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.985375332,"date":"2014-10-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3021666667,"date":"2014-10-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9870561855,"date":"2014-10-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2323333333,"date":"2014-10-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9887370391,"date":"2014-10-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.17,"date":"2014-11-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9904178927,"date":"2014-11-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.116,"date":"2014-11-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9920987463,"date":"2014-11-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0705833333,"date":"2014-11-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9937795999,"date":"2014-11-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0020833333,"date":"2014-11-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9954604535,"date":"2014-11-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9605,"date":"2014-12-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.997141307,"date":"2014-12-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8666666667,"date":"2014-12-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9988221606,"date":"2014-12-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.74625,"date":"2014-12-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0005030142,"date":"2014-12-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6041666667,"date":"2014-12-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0021838678,"date":"2014-12-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5036666667,"date":"2014-12-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0038647214,"date":"2014-12-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.42375,"date":"2015-01-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0055455749,"date":"2015-01-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3450833333,"date":"2015-01-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0072264285,"date":"2015-01-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2650833333,"date":"2015-01-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0089072821,"date":"2015-01-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2385833333,"date":"2015-01-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0105881357,"date":"2015-01-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2544166667,"date":"2015-02-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0122689893,"date":"2015-02-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3746666667,"date":"2015-02-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0139498428,"date":"2015-02-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.45975,"date":"2015-02-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0156306964,"date":"2015-02-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5195833333,"date":"2015-02-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.01731155,"date":"2015-02-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.67225,"date":"2015-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0189924036,"date":"2015-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6890833333,"date":"2015-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0206732572,"date":"2015-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.65525,"date":"2015-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0223541108,"date":"2015-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6515833333,"date":"2015-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0240349643,"date":"2015-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.64325,"date":"2015-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0257158179,"date":"2015-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6116666667,"date":"2015-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0273966715,"date":"2015-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6054166667,"date":"2015-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0290775251,"date":"2015-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6794166667,"date":"2015-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0307583787,"date":"2015-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.776,"date":"2015-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0324392322,"date":"2015-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8776666667,"date":"2015-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0341200858,"date":"2015-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9048333333,"date":"2015-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0358009394,"date":"2015-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.95325,"date":"2015-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.037481793,"date":"2015-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9800833333,"date":"2015-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0391626466,"date":"2015-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9816666667,"date":"2015-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0408435001,"date":"2015-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9790833333,"date":"2015-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0425243537,"date":"2015-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0245833333,"date":"2015-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0442052073,"date":"2015-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0031666667,"date":"2015-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0458860609,"date":"2015-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9933333333,"date":"2015-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0475669145,"date":"2015-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9863333333,"date":"2015-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0492477681,"date":"2015-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0495833333,"date":"2015-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0509286216,"date":"2015-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.01825,"date":"2015-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0526094752,"date":"2015-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.964,"date":"2015-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0542903288,"date":"2015-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9108333333,"date":"2015-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0559711824,"date":"2015-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8488333333,"date":"2015-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.057652036,"date":"2015-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9221666667,"date":"2015-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0593328895,"date":"2015-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8459166667,"date":"2015-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0610137431,"date":"2015-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7256666667,"date":"2015-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0626945967,"date":"2015-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6556666667,"date":"2015-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0643754503,"date":"2015-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5951666667,"date":"2015-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0660563039,"date":"2015-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5485833333,"date":"2015-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0677371574,"date":"2015-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5356666667,"date":"2015-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.069418011,"date":"2015-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.52875,"date":"2015-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0710988646,"date":"2015-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5398333333,"date":"2015-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0727797182,"date":"2015-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4845833333,"date":"2015-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0744605718,"date":"2015-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4403333333,"date":"2015-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0761414254,"date":"2015-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.43425,"date":"2015-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0778222789,"date":"2015-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.45025,"date":"2015-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0795031325,"date":"2015-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.40075,"date":"2015-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0811839861,"date":"2015-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3225,"date":"2015-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0828648397,"date":"2015-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2930833333,"date":"2015-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0845456933,"date":"2015-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2871666667,"date":"2015-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0862265468,"date":"2015-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2714166667,"date":"2015-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0879074004,"date":"2015-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2659166667,"date":"2015-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.089588254,"date":"2015-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2755,"date":"2015-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0912691076,"date":"2015-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2711666667,"date":"2016-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0929499612,"date":"2016-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2410833333,"date":"2016-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0946308147,"date":"2016-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.15825,"date":"2016-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0963116683,"date":"2016-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1033333333,"date":"2016-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0979925219,"date":"2016-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0665833333,"date":"2016-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0996733755,"date":"2016-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0065,"date":"2016-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1013542291,"date":"2016-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9654166667,"date":"2016-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1030350827,"date":"2016-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9610833333,"date":"2016-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1047159362,"date":"2016-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0085,"date":"2016-02-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1063967898,"date":"2016-02-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0591666667,"date":"2016-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1080776434,"date":"2016-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1816666667,"date":"2016-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.109758497,"date":"2016-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2295,"date":"2016-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1114393506,"date":"2016-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.29525,"date":"2016-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1131202041,"date":"2016-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3093333333,"date":"2016-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1148010577,"date":"2016-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2985833333,"date":"2016-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1164819113,"date":"2016-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3630833333,"date":"2016-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1181627649,"date":"2016-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3878333333,"date":"2016-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1198436185,"date":"2016-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4613333333,"date":"2016-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.121524472,"date":"2016-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.448,"date":"2016-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1232053256,"date":"2016-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4648333333,"date":"2016-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1248861792,"date":"2016-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5193333333,"date":"2016-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1265670328,"date":"2016-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5528333333,"date":"2016-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1282478864,"date":"2016-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5924166667,"date":"2016-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.12992874,"date":"2016-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6095,"date":"2016-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1316095935,"date":"2016-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.57025,"date":"2016-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1332904471,"date":"2016-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.554,"date":"2016-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1349713007,"date":"2016-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5216666667,"date":"2016-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1366521543,"date":"2016-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.48475,"date":"2016-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1383330079,"date":"2016-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.46225,"date":"2016-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1400138614,"date":"2016-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4148333333,"date":"2016-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.141694715,"date":"2016-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3898333333,"date":"2016-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1433755686,"date":"2016-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.37575,"date":"2016-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1450564222,"date":"2016-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3731666667,"date":"2016-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1467372758,"date":"2016-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.41625,"date":"2016-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1484181293,"date":"2016-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4548333333,"date":"2016-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1500989829,"date":"2016-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4455833333,"date":"2016-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1517798365,"date":"2016-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.43125,"date":"2016-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1534606901,"date":"2016-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4525833333,"date":"2016-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1551415437,"date":"2016-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.455,"date":"2016-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1568223973,"date":"2016-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4759166667,"date":"2016-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1585032508,"date":"2016-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5001666667,"date":"2016-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1601841044,"date":"2016-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4879166667,"date":"2016-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.161864958,"date":"2016-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4775833333,"date":"2016-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1635458116,"date":"2016-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4675833333,"date":"2016-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1652266652,"date":"2016-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4754166667,"date":"2016-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1669075187,"date":"2016-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.43125,"date":"2016-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1685883723,"date":"2016-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.401,"date":"2016-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1702692259,"date":"2016-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3985833333,"date":"2016-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1719500795,"date":"2016-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.449,"date":"2016-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1736309331,"date":"2016-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4711666667,"date":"2016-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1753117866,"date":"2016-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.49825,"date":"2016-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1769926402,"date":"2016-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5386666667,"date":"2016-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1786734938,"date":"2016-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6046666667,"date":"2017-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1803543474,"date":"2017-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.61675,"date":"2017-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.182035201,"date":"2017-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.58775,"date":"2017-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1837160546,"date":"2017-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.56,"date":"2017-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1853969081,"date":"2017-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5350833333,"date":"2017-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1870777617,"date":"2017-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5325,"date":"2017-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1887586153,"date":"2017-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.54775,"date":"2017-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1904394689,"date":"2017-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5439166667,"date":"2017-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1921203225,"date":"2017-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5585,"date":"2017-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.193801176,"date":"2017-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5819166667,"date":"2017-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1954820296,"date":"2017-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5659166667,"date":"2017-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1971628832,"date":"2017-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.56525,"date":"2017-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1988437368,"date":"2017-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5618333333,"date":"2017-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2005245904,"date":"2017-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6004166667,"date":"2017-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2022054439,"date":"2017-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6600833333,"date":"2017-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2038862975,"date":"2017-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6749166667,"date":"2017-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2055671511,"date":"2017-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6858333333,"date":"2017-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2072480047,"date":"2017-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6525833333,"date":"2017-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2089288583,"date":"2017-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.61625,"date":"2017-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2106097119,"date":"2017-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6148333333,"date":"2017-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2122905654,"date":"2017-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.64425,"date":"2017-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.213971419,"date":"2017-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6515,"date":"2017-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2156522726,"date":"2017-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6581666667,"date":"2017-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2173331262,"date":"2017-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.61375,"date":"2017-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2190139798,"date":"2017-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5715,"date":"2017-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2206948333,"date":"2017-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.54175,"date":"2017-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2223756869,"date":"2017-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5163333333,"date":"2017-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2240565405,"date":"2017-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5458333333,"date":"2017-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2257373941,"date":"2017-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5284166667,"date":"2017-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2274182477,"date":"2017-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5604166667,"date":"2017-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2290991012,"date":"2017-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6000833333,"date":"2017-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2307799548,"date":"2017-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.62575,"date":"2017-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2324608084,"date":"2017-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6303333333,"date":"2017-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.234141662,"date":"2017-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6093333333,"date":"2017-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2358225156,"date":"2017-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6433333333,"date":"2017-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2375033692,"date":"2017-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.92375,"date":"2017-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2391842227,"date":"2017-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9299166667,"date":"2017-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2408650763,"date":"2017-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8819166667,"date":"2017-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2425459299,"date":"2017-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8330833333,"date":"2017-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2442267835,"date":"2017-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.81325,"date":"2017-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2459076371,"date":"2017-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7553333333,"date":"2017-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2475884906,"date":"2017-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7374166667,"date":"2017-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2492693442,"date":"2017-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7245,"date":"2017-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2509501978,"date":"2017-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7345833333,"date":"2017-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2526310514,"date":"2017-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8086666667,"date":"2017-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.254311905,"date":"2017-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8403333333,"date":"2017-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2559927585,"date":"2017-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8186666667,"date":"2017-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2576736121,"date":"2017-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7854166667,"date":"2017-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2593544657,"date":"2017-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.75475,"date":"2017-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2610353193,"date":"2017-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7375833333,"date":"2017-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2627161729,"date":"2017-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.707,"date":"2017-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2643970265,"date":"2017-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.72575,"date":"2017-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.26607788,"date":"2017-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7724166667,"date":"2018-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2677587336,"date":"2018-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.77875,"date":"2018-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2694395872,"date":"2018-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8083333333,"date":"2018-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2711204408,"date":"2018-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8210833333,"date":"2018-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2728012944,"date":"2018-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8610833333,"date":"2018-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2744821479,"date":"2018-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8919166667,"date":"2018-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2761630015,"date":"2018-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8649166667,"date":"2018-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2778438551,"date":"2018-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8209166667,"date":"2018-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2795247087,"date":"2018-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.81125,"date":"2018-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2812055623,"date":"2018-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8225833333,"date":"2018-03-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2828864158,"date":"2018-03-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8216666667,"date":"2018-03-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2845672694,"date":"2018-03-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8598333333,"date":"2018-03-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.286248123,"date":"2018-03-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9085833333,"date":"2018-03-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2879289766,"date":"2018-03-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.96025,"date":"2018-04-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2896098302,"date":"2018-04-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9554166667,"date":"2018-04-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2912906838,"date":"2018-04-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.00425,"date":"2018-04-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2929715373,"date":"2018-04-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0555833333,"date":"2018-04-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2946523909,"date":"2018-04-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1013333333,"date":"2018-04-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2963332445,"date":"2018-04-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.10325,"date":"2018-05-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2980140981,"date":"2018-05-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1435833333,"date":"2018-05-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2996949517,"date":"2018-05-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1908333333,"date":"2018-05-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3013758052,"date":"2018-05-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2299166667,"date":"2018-05-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3030566588,"date":"2018-05-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2145833333,"date":"2018-06-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3047375124,"date":"2018-06-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1860833333,"date":"2018-06-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.306418366,"date":"2018-06-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1563333333,"date":"2018-06-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3080992196,"date":"2018-06-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1141666667,"date":"2018-06-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3097800731,"date":"2018-06-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1225,"date":"2018-07-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3114609267,"date":"2018-07-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1355,"date":"2018-07-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3131417803,"date":"2018-07-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1366666667,"date":"2018-07-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3148226339,"date":"2018-07-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1070833333,"date":"2018-07-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3165034875,"date":"2018-07-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1183333333,"date":"2018-07-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3181843411,"date":"2018-07-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1210833333,"date":"2018-08-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3198651946,"date":"2018-08-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.11275,"date":"2018-08-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3215460482,"date":"2018-08-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0929166667,"date":"2018-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3232269018,"date":"2018-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.09825,"date":"2018-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3249077554,"date":"2018-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0974166667,"date":"2018-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.326588609,"date":"2018-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1075833333,"date":"2018-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3282694625,"date":"2018-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1165,"date":"2018-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3299503161,"date":"2018-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.11675,"date":"2018-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3316311697,"date":"2018-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.14475,"date":"2018-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3333120233,"date":"2018-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1826666667,"date":"2018-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3349928769,"date":"2018-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1639166667,"date":"2018-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3366737304,"date":"2018-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.13325,"date":"2018-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.338354584,"date":"2018-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.10525,"date":"2018-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3400354376,"date":"2018-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0535,"date":"2018-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3417162912,"date":"2018-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9895833333,"date":"2018-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3433971448,"date":"2018-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9201666667,"date":"2018-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3450779984,"date":"2018-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8581666667,"date":"2018-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3467588519,"date":"2018-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7746666667,"date":"2018-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3484397055,"date":"2018-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7373333333,"date":"2018-12-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3501205591,"date":"2018-12-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6884166667,"date":"2018-12-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3518014127,"date":"2018-12-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6433333333,"date":"2018-12-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3534822663,"date":"2018-12-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5909166667,"date":"2018-12-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3551631198,"date":"2018-12-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5606666667,"date":"2019-01-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3568439734,"date":"2019-01-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.564,"date":"2019-01-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.358524827,"date":"2019-01-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.56425,"date":"2019-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3602056806,"date":"2019-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5623333333,"date":"2019-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3618865342,"date":"2019-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5584166667,"date":"2019-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3635673877,"date":"2019-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.57625,"date":"2019-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3652482413,"date":"2019-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6099166667,"date":"2019-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3669290949,"date":"2019-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6711666667,"date":"2019-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3686099485,"date":"2019-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6981666667,"date":"2019-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3702908021,"date":"2019-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.74175,"date":"2019-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3719716557,"date":"2019-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8166666667,"date":"2019-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3736525092,"date":"2019-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8960833333,"date":"2019-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3753333628,"date":"2019-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9681666667,"date":"2019-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3770142164,"date":"2019-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0340833333,"date":"2019-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.37869507,"date":"2019-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1266666667,"date":"2019-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3803759236,"date":"2019-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.14875,"date":"2019-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3820567771,"date":"2019-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.19725,"date":"2019-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3837376307,"date":"2019-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.21075,"date":"2019-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3854184843,"date":"2019-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1830833333,"date":"2019-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3870993379,"date":"2019-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1685,"date":"2019-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3887801915,"date":"2019-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1375833333,"date":"2019-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.390461045,"date":"2019-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1171666667,"date":"2019-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3921418986,"date":"2019-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0486666667,"date":"2019-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3938227522,"date":"2019-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.99025,"date":"2019-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3955036058,"date":"2019-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9665,"date":"2019-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3971844594,"date":"2019-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.01575,"date":"2019-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.398865313,"date":"2019-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0401666667,"date":"2019-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4005461665,"date":"2019-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0685833333,"date":"2019-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4022270201,"date":"2019-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0430833333,"date":"2019-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4039078737,"date":"2019-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0111666667,"date":"2019-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4055887273,"date":"2019-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.987,"date":"2019-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4072695809,"date":"2019-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9296666667,"date":"2019-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4089504344,"date":"2019-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9025833333,"date":"2019-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.410631288,"date":"2019-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.883,"date":"2019-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4123121416,"date":"2019-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8750833333,"date":"2019-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4139929952,"date":"2019-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8625833333,"date":"2019-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4156738488,"date":"2019-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.86325,"date":"2019-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4173547023,"date":"2019-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9605,"date":"2019-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4190355559,"date":"2019-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.98525,"date":"2019-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4207164095,"date":"2019-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9979166667,"date":"2019-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4223972631,"date":"2019-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.985,"date":"2019-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4240781167,"date":"2019-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9860833333,"date":"2019-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4257589703,"date":"2019-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.94375,"date":"2019-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4274398238,"date":"2019-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9556666667,"date":"2019-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4291206774,"date":"2019-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9631666667,"date":"2019-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.430801531,"date":"2019-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9349166667,"date":"2019-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4324823846,"date":"2019-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9135833333,"date":"2019-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4341632382,"date":"2019-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8996666667,"date":"2019-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4358440917,"date":"2019-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.88125,"date":"2019-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4375249453,"date":"2019-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8563333333,"date":"2019-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4392057989,"date":"2019-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8466666667,"date":"2019-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4408866525,"date":"2019-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8751666667,"date":"2019-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4425675061,"date":"2019-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8808333333,"date":"2020-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4442483596,"date":"2020-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.87475,"date":"2020-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4459292132,"date":"2020-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8461666667,"date":"2020-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4476100668,"date":"2020-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8190833333,"date":"2020-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4492909204,"date":"2020-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7765,"date":"2020-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.450971774,"date":"2020-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7435833333,"date":"2020-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4526526276,"date":"2020-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.74575,"date":"2020-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4543334811,"date":"2020-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7789166667,"date":"2020-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4560143347,"date":"2020-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7453333333,"date":"2020-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4576951883,"date":"2020-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7021666667,"date":"2020-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4593760419,"date":"2020-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.58475,"date":"2020-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4610568955,"date":"2020-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4628333333,"date":"2020-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.462737749,"date":"2020-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.355,"date":"2020-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4644186026,"date":"2020-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2745833333,"date":"2020-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4660994562,"date":"2020-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.20125,"date":"2020-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4677803098,"date":"2020-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1604166667,"date":"2020-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4694611634,"date":"2020-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.11725,"date":"2020-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4711420169,"date":"2020-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1213333333,"date":"2020-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4728228705,"date":"2020-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1696666667,"date":"2020-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4745037241,"date":"2020-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1990833333,"date":"2020-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4761845777,"date":"2020-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2720833333,"date":"2020-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4778654313,"date":"2020-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2890833333,"date":"2020-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4795462849,"date":"2020-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.344,"date":"2020-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4812271384,"date":"2020-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4030833333,"date":"2020-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.482907992,"date":"2020-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.43225,"date":"2020-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4845888456,"date":"2020-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4748333333,"date":"2020-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4862696992,"date":"2020-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.48025,"date":"2020-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4879505528,"date":"2020-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.49975,"date":"2020-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4896314063,"date":"2020-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4939166667,"date":"2020-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4913122599,"date":"2020-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4895,"date":"2020-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4929931135,"date":"2020-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.49,"date":"2020-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4946739671,"date":"2020-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4801666667,"date":"2020-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4963548207,"date":"2020-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4823333333,"date":"2020-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4980356742,"date":"2020-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.498,"date":"2020-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4997165278,"date":"2020-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5341666667,"date":"2020-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5013973814,"date":"2020-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5275,"date":"2020-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.503078235,"date":"2020-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5030833333,"date":"2020-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5047590886,"date":"2020-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4869166667,"date":"2020-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5064399422,"date":"2020-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4848333333,"date":"2020-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5081207957,"date":"2020-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4865,"date":"2020-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5098016493,"date":"2020-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4828333333,"date":"2020-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5114825029,"date":"2020-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4681666667,"date":"2020-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5131633565,"date":"2020-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4629166667,"date":"2020-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5148442101,"date":"2020-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.436,"date":"2020-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5165250636,"date":"2020-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.42075,"date":"2020-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5182059172,"date":"2020-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4341666667,"date":"2020-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5198867708,"date":"2020-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4274166667,"date":"2020-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5215676244,"date":"2020-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.443,"date":"2020-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.523248478,"date":"2020-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4734166667,"date":"2020-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5249293315,"date":"2020-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4745,"date":"2020-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5266101851,"date":"2020-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5308333333,"date":"2020-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5282910387,"date":"2020-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5481666667,"date":"2020-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5299718923,"date":"2020-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5546666667,"date":"2021-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5316527459,"date":"2021-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6196666667,"date":"2021-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5333335995,"date":"2021-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6805,"date":"2021-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.535014453,"date":"2021-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6963333333,"date":"2021-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5366953066,"date":"2021-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7136666667,"date":"2021-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5383761602,"date":"2021-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.76625,"date":"2021-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5400570138,"date":"2021-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8070833333,"date":"2021-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5417378674,"date":"2021-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9301666667,"date":"2021-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5434187209,"date":"2021-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0103333333,"date":"2021-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5450995745,"date":"2021-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0729166667,"date":"2021-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5467804281,"date":"2021-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1585,"date":"2021-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5484612817,"date":"2021-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1751666667,"date":"2021-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5501421353,"date":"2021-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1625833333,"date":"2021-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5518229888,"date":"2021-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.16725,"date":"2021-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5535038424,"date":"2021-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1645833333,"date":"2021-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.555184696,"date":"2021-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.172,"date":"2021-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5568655496,"date":"2021-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1914166667,"date":"2021-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5585464032,"date":"2021-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2116666667,"date":"2021-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5602272568,"date":"2021-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2814166667,"date":"2021-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5619081103,"date":"2021-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.34575,"date":"2021-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5635889639,"date":"2021-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.34525,"date":"2021-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5652698175,"date":"2021-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.35275,"date":"2021-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5669506711,"date":"2021-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3636666667,"date":"2021-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5686315247,"date":"2021-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.39425,"date":"2021-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5703123782,"date":"2021-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3904166667,"date":"2021-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5719932318,"date":"2021-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4235,"date":"2021-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5736740854,"date":"2021-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4525833333,"date":"2021-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.575354939,"date":"2021-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4655,"date":"2021-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5770357926,"date":"2021-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4844166667,"date":"2021-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5787166461,"date":"2021-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4724166667,"date":"2021-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5803974997,"date":"2021-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4996666667,"date":"2021-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5820783533,"date":"2021-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5111666667,"date":"2021-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5837592069,"date":"2021-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.51675,"date":"2021-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5854400605,"date":"2021-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4896666667,"date":"2021-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5871209141,"date":"2021-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4851666667,"date":"2021-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5888017676,"date":"2021-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5165833333,"date":"2021-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5904826212,"date":"2021-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5061666667,"date":"2021-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5921634748,"date":"2021-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5210833333,"date":"2021-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5938443284,"date":"2021-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5143333333,"date":"2021-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.595525182,"date":"2021-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5270833333,"date":"2021-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5972060355,"date":"2021-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5971666667,"date":"2021-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5988868891,"date":"2021-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.65275,"date":"2021-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6005677427,"date":"2021-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7156666667,"date":"2021-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6022485963,"date":"2021-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7273333333,"date":"2021-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6039294499,"date":"2021-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7481666667,"date":"2021-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6056103034,"date":"2021-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7454166667,"date":"2021-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.607291157,"date":"2021-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.74575,"date":"2021-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6089720106,"date":"2021-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7333333333,"date":"2021-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6106528642,"date":"2021-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.69975,"date":"2021-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6123337178,"date":"2021-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6755,"date":"2021-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6140145714,"date":"2021-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6595,"date":"2021-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6156954249,"date":"2021-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6401666667,"date":"2021-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6173762785,"date":"2021-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.64475,"date":"2022-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6190571321,"date":"2022-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6535833333,"date":"2022-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6207379857,"date":"2022-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6615,"date":"2022-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6224188393,"date":"2022-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6755,"date":"2022-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6240996928,"date":"2022-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7140833333,"date":"2022-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6257805464,"date":"2022-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7806666667,"date":"2022-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6274614,"date":"2022-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.82275,"date":"2022-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6291422536,"date":"2022-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8669166667,"date":"2022-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6308231072,"date":"2022-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9433333333,"date":"2022-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6325039608,"date":"2022-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4456666667,"date":"2022-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6341848143,"date":"2022-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.6726666667,"date":"2022-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6358656679,"date":"2022-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.6170833333,"date":"2022-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6375465215,"date":"2022-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.61125,"date":"2022-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6392273751,"date":"2022-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.5525833333,"date":"2022-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6409082287,"date":"2022-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4771666667,"date":"2022-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6425890822,"date":"2022-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4511666667,"date":"2022-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6442699358,"date":"2022-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4879166667,"date":"2022-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6459507894,"date":"2022-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.5610833333,"date":"2022-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.647631643,"date":"2022-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.701,"date":"2022-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6493124966,"date":"2022-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.8656666667,"date":"2022-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6509933501,"date":"2022-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.9719166667,"date":"2022-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6526742037,"date":"2022-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.012,"date":"2022-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6543550573,"date":"2022-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.2535,"date":"2022-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6560359109,"date":"2022-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.38075,"date":"2022-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6577167645,"date":"2022-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.3458333333,"date":"2022-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6593976181,"date":"2022-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.2643333333,"date":"2022-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6610784716,"date":"2022-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.1664166667,"date":"2022-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6627593252,"date":"2022-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.0398333333,"date":"2022-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6644401788,"date":"2022-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.883,"date":"2022-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6661210324,"date":"2022-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.7291666667,"date":"2022-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.667801886,"date":"2022-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.5989166667,"date":"2022-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6694827395,"date":"2022-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4489166667,"date":"2022-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6711635931,"date":"2022-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.349,"date":"2022-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6728444467,"date":"2022-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2890833333,"date":"2022-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6745253003,"date":"2022-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2285,"date":"2022-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6762061539,"date":"2022-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1523333333,"date":"2022-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6778870074,"date":"2022-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1074166667,"date":"2022-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.679567861,"date":"2022-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0789166667,"date":"2022-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6812487146,"date":"2022-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.14825,"date":"2022-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6829295682,"date":"2022-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2526666667,"date":"2022-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6846104218,"date":"2022-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.3633333333,"date":"2022-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6862912754,"date":"2022-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.3120833333,"date":"2022-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6879721289,"date":"2022-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1995833333,"date":"2022-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6896529825,"date":"2022-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1658333333,"date":"2022-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6913338361,"date":"2022-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2105,"date":"2022-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6930146897,"date":"2022-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.17825,"date":"2022-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6946955433,"date":"2022-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0665,"date":"2022-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6963763968,"date":"2022-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9478333333,"date":"2022-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6980572504,"date":"2022-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7958333333,"date":"2022-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.699738104,"date":"2022-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6435833333,"date":"2022-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7014189576,"date":"2022-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.523,"date":"2022-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7030998112,"date":"2022-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4898333333,"date":"2022-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7047806647,"date":"2022-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6025,"date":"2023-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7064615183,"date":"2023-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6311666667,"date":"2023-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7081423719,"date":"2023-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.67775,"date":"2023-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7098232255,"date":"2023-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.774,"date":"2023-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7115040791,"date":"2023-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8493333333,"date":"2023-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7131849327,"date":"2023-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8183333333,"date":"2023-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7148657862,"date":"2023-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.77675,"date":"2023-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7165466398,"date":"2023-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.776,"date":"2023-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7182274934,"date":"2023-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7435833333,"date":"2023-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.719908347,"date":"2023-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7944166667,"date":"2023-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7215892006,"date":"2023-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8526666667,"date":"2023-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7232700541,"date":"2023-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.81625,"date":"2023-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7249509077,"date":"2023-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.81875,"date":"2023-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7266317613,"date":"2023-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.883,"date":"2023-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7283126149,"date":"2023-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9720833333,"date":"2023-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7299934685,"date":"2023-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0398333333,"date":"2023-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.731674322,"date":"2023-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0428333333,"date":"2023-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7333551756,"date":"2023-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9936666667,"date":"2023-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7350360292,"date":"2023-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9304166667,"date":"2023-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7367168828,"date":"2023-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9295,"date":"2023-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7383977364,"date":"2023-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9285833333,"date":"2023-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.74007859,"date":"2023-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9719166667,"date":"2023-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7417594435,"date":"2023-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9455833333,"date":"2023-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7434402971,"date":"2023-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.995,"date":"2023-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7451211507,"date":"2023-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.98025,"date":"2023-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7468020043,"date":"2023-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9753333333,"date":"2023-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7484828579,"date":"2023-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9385833333,"date":"2023-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7501637114,"date":"2023-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9613333333,"date":"2023-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.751844565,"date":"2023-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9698333333,"date":"2023-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7535254186,"date":"2023-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0019166667,"date":"2023-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7552062722,"date":"2023-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1503333333,"date":"2023-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7568871258,"date":"2023-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2188333333,"date":"2023-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7585679793,"date":"2023-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2440833333,"date":"2023-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7602488329,"date":"2023-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2770833333,"date":"2023-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7619296865,"date":"2023-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.23275,"date":"2023-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7636105401,"date":"2023-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.22625,"date":"2023-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7652913937,"date":"2023-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2460833333,"date":"2023-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7669722473,"date":"2023-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.323,"date":"2023-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7686531008,"date":"2023-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2991666667,"date":"2023-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7703339544,"date":"2023-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.28625,"date":"2023-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.772014808,"date":"2023-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1599166667,"date":"2023-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7736956616,"date":"2023-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0485,"date":"2023-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7753765152,"date":"2023-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.99475,"date":"2023-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7770573687,"date":"2023-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9290833333,"date":"2023-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7787382223,"date":"2023-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8448333333,"date":"2023-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7804190759,"date":"2023-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.789,"date":"2023-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7820999295,"date":"2023-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7325833333,"date":"2023-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7837807831,"date":"2023-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6828333333,"date":"2023-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7854616366,"date":"2023-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6656666667,"date":"2023-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7871424902,"date":"2023-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5654166667,"date":"2023-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7888233438,"date":"2023-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4815,"date":"2023-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7905041974,"date":"2023-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5409166667,"date":"2023-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.792185051,"date":"2023-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5228333333,"date":"2024-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7938659046,"date":"2024-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5079166667,"date":"2024-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7955467581,"date":"2024-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4788333333,"date":"2024-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7972276117,"date":"2024-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4768333333,"date":"2024-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.7989084653,"date":"2024-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5109166667,"date":"2024-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8005893189,"date":"2024-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.54975,"date":"2024-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8022701725,"date":"2024-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5989166667,"date":"2024-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.803951026,"date":"2024-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6731666667,"date":"2024-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8056318796,"date":"2024-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6526666667,"date":"2024-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8073127332,"date":"2024-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7561666667,"date":"2024-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8089935868,"date":"2024-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.781,"date":"2024-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8106744404,"date":"2024-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8548333333,"date":"2024-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8123552939,"date":"2024-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9271666667,"date":"2024-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8140361475,"date":"2024-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9306666667,"date":"2024-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8157170011,"date":"2024-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0188333333,"date":"2024-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8173978547,"date":"2024-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.06375,"date":"2024-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8190787083,"date":"2024-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.10625,"date":"2024-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8207595619,"date":"2024-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.09125,"date":"2024-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8224404154,"date":"2024-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0814166667,"date":"2024-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.824121269,"date":"2024-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0420833333,"date":"2024-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8258021226,"date":"2024-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0134166667,"date":"2024-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8274829762,"date":"2024-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.00925,"date":"2024-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8291638298,"date":"2024-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9465,"date":"2024-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8308446833,"date":"2024-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8579166667,"date":"2024-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8325255369,"date":"2024-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8586666667,"date":"2024-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8342063905,"date":"2024-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8534166667,"date":"2024-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8358872441,"date":"2024-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8831666667,"date":"2024-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8375680977,"date":"2024-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.90025,"date":"2024-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8392489512,"date":"2024-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9055,"date":"2024-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8409298048,"date":"2024-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.87175,"date":"2024-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8426106584,"date":"2024-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.879,"date":"2024-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.844291512,"date":"2024-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.84375,"date":"2024-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8459723656,"date":"2024-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8125,"date":"2024-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8476532192,"date":"2024-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7886666667,"date":"2024-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8493340727,"date":"2024-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7275,"date":"2024-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8510149263,"date":"2024-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7145,"date":"2024-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8526957799,"date":"2024-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6693333333,"date":"2024-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8543766335,"date":"2024-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.62675,"date":"2024-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8560574871,"date":"2024-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6224166667,"date":"2024-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8577383406,"date":"2024-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6073333333,"date":"2024-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8594191942,"date":"2024-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5685833333,"date":"2024-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8611000478,"date":"2024-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5970833333,"date":"2024-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8627809014,"date":"2024-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5735,"date":"2024-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.864461755,"date":"2024-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5249166667,"date":"2024-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8661426085,"date":"2024-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.493,"date":"2024-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8678234621,"date":"2024-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4789166667,"date":"2024-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8695043157,"date":"2024-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4660833333,"date":"2024-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8711851693,"date":"2024-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4660833333,"date":"2024-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8728660229,"date":"2024-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.45425,"date":"2024-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8745468765,"date":"2024-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.431,"date":"2024-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.87622773,"date":"2024-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.431,"date":"2024-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8779085836,"date":"2024-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4395,"date":"2024-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8795894372,"date":"2024-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4266666667,"date":"2024-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8812702908,"date":"2024-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4620833333,"date":"2025-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8829511444,"date":"2025-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4610833333,"date":"2025-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8846319979,"date":"2025-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5243333333,"date":"2025-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8863128515,"date":"2025-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.522,"date":"2025-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8879937051,"date":"2025-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5101666667,"date":"2025-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8896745587,"date":"2025-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5611666667,"date":"2025-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8913554123,"date":"2025-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5964166667,"date":"2025-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8930362658,"date":"2025-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.57775,"date":"2025-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8947171194,"date":"2025-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5271666667,"date":"2025-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.896397973,"date":"2025-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.51375,"date":"2025-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8980788266,"date":"2025-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4978333333,"date":"2025-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.8997596802,"date":"2025-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5485833333,"date":"2025-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9014405338,"date":"2025-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6035,"date":"2025-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9031213873,"date":"2025-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6863333333,"date":"2025-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9048022409,"date":"2025-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.613,"date":"2025-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9064830945,"date":"2025-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.58525,"date":"2025-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9081639481,"date":"2025-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.57875,"date":"2025-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9098448017,"date":"2025-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5851666667,"date":"2025-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9115256552,"date":"2025-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5728333333,"date":"2025-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9132065088,"date":"2025-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6244166667,"date":"2025-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9148873624,"date":"2025-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6089166667,"date":"2025-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.916568216,"date":"2025-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5746666667,"date":"2025-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9182490696,"date":"2025-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5501666667,"date":"2025-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9199299231,"date":"2025-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5765,"date":"2025-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9216107767,"date":"2025-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6445833333,"date":"2025-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.9232916303,"date":"2025-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9264132155,"date":"2025-07-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9280940691,"date":"2025-07-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9297749227,"date":"2025-07-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9314557763,"date":"2025-07-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9331366299,"date":"2025-08-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9348174834,"date":"2025-08-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.936498337,"date":"2025-08-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9381791906,"date":"2025-08-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9398600442,"date":"2025-08-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9415408978,"date":"2025-09-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9432217513,"date":"2025-09-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9449026049,"date":"2025-09-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9465834585,"date":"2025-09-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9482643121,"date":"2025-10-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9499451657,"date":"2025-10-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9516260193,"date":"2025-10-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9533068728,"date":"2025-10-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9549877264,"date":"2025-11-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.95666858,"date":"2025-11-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9583494336,"date":"2025-11-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9600302872,"date":"2025-11-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9617111407,"date":"2025-11-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9633919943,"date":"2025-12-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9650728479,"date":"2025-12-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9667537015,"date":"2025-12-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9684345551,"date":"2025-12-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9701154086,"date":"2026-01-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9717962622,"date":"2026-01-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9734771158,"date":"2026-01-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9751579694,"date":"2026-01-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.976838823,"date":"2026-02-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9785196766,"date":"2026-02-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9802005301,"date":"2026-02-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9818813837,"date":"2026-02-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9835622373,"date":"2026-03-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9852430909,"date":"2026-03-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9869239445,"date":"2026-03-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.988604798,"date":"2026-03-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9902856516,"date":"2026-03-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9919665052,"date":"2026-04-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9936473588,"date":"2026-04-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9953282124,"date":"2026-04-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9970090659,"date":"2026-04-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.9986899195,"date":"2026-05-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0003707731,"date":"2026-05-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0020516267,"date":"2026-05-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0037324803,"date":"2026-05-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0054133339,"date":"2026-05-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0070941874,"date":"2026-06-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.008775041,"date":"2026-06-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0104558946,"date":"2026-06-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0121367482,"date":"2026-06-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0138176018,"date":"2026-07-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0154984553,"date":"2026-07-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0171793089,"date":"2026-07-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0188601625,"date":"2026-07-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0205410161,"date":"2026-08-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0222218697,"date":"2026-08-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0239027232,"date":"2026-08-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0255835768,"date":"2026-08-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0272644304,"date":"2026-08-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.028945284,"date":"2026-09-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0306261376,"date":"2026-09-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0323069912,"date":"2026-09-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0339878447,"date":"2026-09-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0356686983,"date":"2026-10-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0373495519,"date":"2026-10-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0390304055,"date":"2026-10-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0407112591,"date":"2026-10-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0423921126,"date":"2026-11-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0440729662,"date":"2026-11-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0457538198,"date":"2026-11-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0474346734,"date":"2026-11-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.049115527,"date":"2026-11-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0507963805,"date":"2026-12-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0524772341,"date":"2026-12-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0541580877,"date":"2026-12-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0558389413,"date":"2026-12-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0575197949,"date":"2027-01-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0592006485,"date":"2027-01-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.060881502,"date":"2027-01-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0625623556,"date":"2027-01-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0642432092,"date":"2027-01-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0659240628,"date":"2027-02-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0676049164,"date":"2027-02-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0692857699,"date":"2027-02-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0709666235,"date":"2027-02-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0726474771,"date":"2027-03-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0743283307,"date":"2027-03-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0760091843,"date":"2027-03-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0776900378,"date":"2027-03-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0793708914,"date":"2027-04-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.081051745,"date":"2027-04-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0827325986,"date":"2027-04-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0844134522,"date":"2027-04-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0860943058,"date":"2027-05-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0877751593,"date":"2027-05-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0894560129,"date":"2027-05-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0911368665,"date":"2027-05-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0928177201,"date":"2027-05-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0944985737,"date":"2027-06-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0961794272,"date":"2027-06-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0978602808,"date":"2027-06-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.0995411344,"date":"2027-06-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.101221988,"date":"2027-07-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1029028416,"date":"2027-07-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1045836951,"date":"2027-07-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1062645487,"date":"2027-07-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1079454023,"date":"2027-08-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1096262559,"date":"2027-08-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1113071095,"date":"2027-08-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1129879631,"date":"2027-08-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1146688166,"date":"2027-08-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1163496702,"date":"2027-09-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1180305238,"date":"2027-09-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1197113774,"date":"2027-09-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.121392231,"date":"2027-09-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1230730845,"date":"2027-10-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1247539381,"date":"2027-10-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1264347917,"date":"2027-10-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1281156453,"date":"2027-10-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1297964989,"date":"2027-10-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1314773524,"date":"2027-11-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.133158206,"date":"2027-11-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1348390596,"date":"2027-11-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1365199132,"date":"2027-11-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1382007668,"date":"2027-12-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1398816204,"date":"2027-12-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1415624739,"date":"2027-12-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1432433275,"date":"2027-12-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1449241811,"date":"2028-01-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1466050347,"date":"2028-01-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1482858883,"date":"2028-01-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1499667418,"date":"2028-01-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1516475954,"date":"2028-01-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.153328449,"date":"2028-02-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1550093026,"date":"2028-02-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1566901562,"date":"2028-02-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1583710097,"date":"2028-02-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1600518633,"date":"2028-03-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1617327169,"date":"2028-03-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1634135705,"date":"2028-03-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1650944241,"date":"2028-03-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1667752777,"date":"2028-04-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1684561312,"date":"2028-04-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1701369848,"date":"2028-04-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1718178384,"date":"2028-04-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.173498692,"date":"2028-04-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1751795456,"date":"2028-05-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1768603991,"date":"2028-05-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1785412527,"date":"2028-05-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1802221063,"date":"2028-05-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1819029599,"date":"2028-06-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1835838135,"date":"2028-06-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.185264667,"date":"2028-06-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1869455206,"date":"2028-06-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1886263742,"date":"2028-07-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1903072278,"date":"2028-07-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1919880814,"date":"2028-07-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.193668935,"date":"2028-07-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1953497885,"date":"2028-07-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1970306421,"date":"2028-08-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.1987114957,"date":"2028-08-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2003923493,"date":"2028-08-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2020732029,"date":"2028-08-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2037540564,"date":"2028-09-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.20543491,"date":"2028-09-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2071157636,"date":"2028-09-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2087966172,"date":"2028-09-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2104774708,"date":"2028-10-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2121583243,"date":"2028-10-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2138391779,"date":"2028-10-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2155200315,"date":"2028-10-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2172008851,"date":"2028-10-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2188817387,"date":"2028-11-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2205625923,"date":"2028-11-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2222434458,"date":"2028-11-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2239242994,"date":"2028-11-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.225605153,"date":"2028-12-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2272860066,"date":"2028-12-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2289668602,"date":"2028-12-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2306477137,"date":"2028-12-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2323285673,"date":"2028-12-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2340094209,"date":"2029-01-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2356902745,"date":"2029-01-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2373711281,"date":"2029-01-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2390519816,"date":"2029-01-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2407328352,"date":"2029-02-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2424136888,"date":"2029-02-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2440945424,"date":"2029-02-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.245775396,"date":"2029-02-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2474562496,"date":"2029-03-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2491371031,"date":"2029-03-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2508179567,"date":"2029-03-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2524988103,"date":"2029-03-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2541796639,"date":"2029-04-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2558605175,"date":"2029-04-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.257541371,"date":"2029-04-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2592222246,"date":"2029-04-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2609030782,"date":"2029-04-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2625839318,"date":"2029-05-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2642647854,"date":"2029-05-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2659456389,"date":"2029-05-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2676264925,"date":"2029-05-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2693073461,"date":"2029-06-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2709881997,"date":"2029-06-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2726690533,"date":"2029-06-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2743499069,"date":"2029-06-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2760307604,"date":"2029-07-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.277711614,"date":"2029-07-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2793924676,"date":"2029-07-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2810733212,"date":"2029-07-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2827541748,"date":"2029-07-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2844350283,"date":"2029-08-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2861158819,"date":"2029-08-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2877967355,"date":"2029-08-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2894775891,"date":"2029-08-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2911584427,"date":"2029-09-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2928392962,"date":"2029-09-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2945201498,"date":"2029-09-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2962010034,"date":"2029-09-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.297881857,"date":"2029-09-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.2995627106,"date":"2029-10-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3012435642,"date":"2029-10-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3029244177,"date":"2029-10-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3046052713,"date":"2029-10-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3062861249,"date":"2029-11-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3079669785,"date":"2029-11-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3096478321,"date":"2029-11-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3113286856,"date":"2029-11-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3130095392,"date":"2029-12-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3146903928,"date":"2029-12-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3163712464,"date":"2029-12-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3180521,"date":"2029-12-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3197329535,"date":"2029-12-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3214138071,"date":"2030-01-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3230946607,"date":"2030-01-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3247755143,"date":"2030-01-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3264563679,"date":"2030-01-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3281372215,"date":"2030-02-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.329818075,"date":"2030-02-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3314989286,"date":"2030-02-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3331797822,"date":"2030-02-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3348606358,"date":"2030-03-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3365414894,"date":"2030-03-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3382223429,"date":"2030-03-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3399031965,"date":"2030-03-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3415840501,"date":"2030-03-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3432649037,"date":"2030-04-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3449457573,"date":"2030-04-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3466266108,"date":"2030-04-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3483074644,"date":"2030-04-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.349988318,"date":"2030-05-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3516691716,"date":"2030-05-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3533500252,"date":"2030-05-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3550308788,"date":"2030-05-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3567117323,"date":"2030-06-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3583925859,"date":"2030-06-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3600734395,"date":"2030-06-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":4.3617542931,"date":"2030-06-23","fuel":"gasoline","is_predicted":"forecasting"}],"metadata":{"avg_price":{"type":"number","semanticType":"Number"},"date":{"type":"date","semanticType":"Date"},"fuel":{"type":"string","semanticType":"String"},"is_predicted":{"type":"string","semanticType":"String","levels":["original","regression","forecasting"]}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.linear_model import LinearRegression\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train linear regression model\n model = LinearRegression()\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n","source":["weekly_gas_prices"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n date fuel avg_price\n0 1990-08-20 gasoline 1.191\n1 1990-08-27 gasoline 1.245\n2 1990-09-03 gasoline 1.242\n3 1990-09-10 gasoline 1.252\n4 1990-09-17 gasoline 1.266\n5 1990-09-24 gasoline 1.272\n6 1990-10-01 gasoline 1.321\n7 1990-10-08 gasoline 1.333\n8 1990-10-15 gasoline 1.339\n9 1990-10-22 gasoline 1.345\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"forecast the price trend for the next 5 years with some propert model!\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"column\": \"fuel\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Build upon the previous price trends visualization by adding forecasted prices for the next 5 years (2025-2030) using a time series forecasting model. The output should include both historical actual prices and forecasted prices, with an indicator to distinguish between them.\",\n \"display_instruction\": \"Forecast **price** trends for the next 5 years for each **fuel** type\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\", \"is_predicted\"],\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"facet\": \"is_predicted\"\n },\n \"reason\": \"The user wants to extend the price trend analysis with forecasting for the next 5 years. Following the guidelines for forecasting, the output should include a 'is_predicted' column to distinguish between actual historical data, regression on historical data, and forecasted future values. The chart should be a line chart showing both historical and predicted values for each fuel type.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.linear_model import LinearRegression\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train linear regression model\n model = LinearRegression()\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-904593","sourceTableIds":["weekly_gas_prices"],"instruction":"forecast the price trend for the next 5 years with some propert model!","displayInstruction":"Forecast **price** trends for the next 5 years for each **fuel** type","chart":{"id":"chart-1760745146503","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--date"},"y":{"fieldID":"concept-avg_price-1760744859365"},"color":{"fieldID":"original--weekly_gas_prices--fuel"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"original--weekly_gas_prices--fuel"},"row":{"channel":"row","bin":false}},"tableRef":"table-904593","saved":false,"source":"trigger","unread":false},"resultTableId":"table-34"},"explanation":{"agent":"CodeExplanationAgent","code":"This code performs **time series analysis and forecasting** on historical gas prices:\n\n1. **Aggregate historical prices** by calculating the mean `price` across all `grade` and `formulation` values for each `date` and `fuel` type combination, creating an `avg_price` metric.\n\n2. **Prepare temporal features** by converting `date` to datetime format and calculating `days_since_start` (the number of days elapsed since the earliest date) for each `fuel` type separately.\n\n3. **Train linear regression models** for each `fuel` type (diesel, gasoline) using `days_since_start` as the predictor variable and `avg_price` as the target variable.\n\n4. **Generate three data series** for each fuel type:\n - **Original**: Historical `avg_price` values with label `is_predicted = 'original'`\n - **Regression**: Fitted values from the linear model for historical dates with label `is_predicted = 'regression'`\n - **Forecasting**: Predicted prices for the next **5 years** (260 weekly periods) beyond the latest historical date with label `is_predicted = 'forecasting'`\n\n5. **Combine and format** all series into a single dataset sorted by `fuel` and `date`, with dates converted back to string format.","concepts":[{"explanation":"This analysis uses **linear regression modeling** to capture long-term price trends and forecast future gas prices. The model treats time as a continuous predictor variable (days_since_start) to predict average price. Each fuel type is modeled independently to account for different pricing dynamics. The approach assumes a linear relationship between time and price, which captures overall trend but may not account for cyclical patterns, seasonality, or market shocks. **Alternative modeling approaches** could include: (1) ARIMA/SARIMA models to capture autocorrelation and seasonality, (2) exponential smoothing methods (Holt-Winters) for trend and seasonal components, (3) polynomial regression for non-linear trends, or (4) more advanced machine learning methods like LSTM neural networks for complex temporal patterns.","field":"Statistical Analysis"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.linear_model import LinearRegression\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train linear regression model\n model = LinearRegression()\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThis code performs **time series analysis and forecasting** on historical gas prices:\n\n1. **Aggregate historical prices** by calculating the mean `price` across all `grade` and `formulation` values for each `date` and `fuel` type combination, creating an `avg_price` metric.\n\n2. **Prepare temporal features** by converting `date` to datetime format and calculating `days_since_start` (the number of days elapsed since the earliest date) for each `fuel` type separately.\n\n3. **Train linear regression models** for each `fuel` type (diesel, gasoline) using `days_since_start` as the predictor variable and `avg_price` as the target variable.\n\n4. **Generate three data series** for each fuel type:\n - **Original**: Historical `avg_price` values with label `is_predicted = 'original'`\n - **Regression**: Fitted values from the linear model for historical dates with label `is_predicted = 'regression'`\n - **Forecasting**: Predicted prices for the next **5 years** (260 weekly periods) beyond the latest historical date with label `is_predicted = 'forecasting'`\n\n5. **Combine and format** all series into a single dataset sorted by `fuel` and `date`, with dates converted back to string format.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis uses **linear regression modeling** to capture long-term price trends and forecast future gas prices. The model treats time as a continuous predictor variable (days_since_start) to predict average price. Each fuel type is modeled independently to account for different pricing dynamics. The approach assumes a linear relationship between time and price, which captures overall trend but may not account for cyclical patterns, seasonality, or market shocks. **Alternative modeling approaches** could include: (1) ARIMA/SARIMA models to capture autocorrelation and seasonality, (2) exponential smoothing methods (Holt-Winters) for trend and seasonal components, (3) polynomial regression for non-linear trends, or (4) more advanced machine learning methods like LSTM neural networks for complex temporal patterns.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-22","displayId":"fuel-price-forecast1","names":["avg_price","date","fuel","is_predicted"],"rows":[{"avg_price":1.106,"date":"1994-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":0.5951388141,"date":"1994-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.107,"date":"1994-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":0.5986628745,"date":"1994-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1994-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6021849755,"date":"1994-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.108,"date":"1994-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6057051172,"date":"1994-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.105,"date":"1994-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6092232996,"date":"1994-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1994-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6127395226,"date":"1994-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.104,"date":"1994-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6162537863,"date":"1994-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.101,"date":"1994-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6197660906,"date":"1994-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.099,"date":"1994-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6232764356,"date":"1994-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.099,"date":"1994-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6267848212,"date":"1994-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.098,"date":"1994-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6302912475,"date":"1994-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.101,"date":"1994-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6337957144,"date":"1994-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.098,"date":"1994-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":0.637298222,"date":"1994-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.103,"date":"1994-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6407987703,"date":"1994-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.108,"date":"1994-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6442973591,"date":"1994-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1994-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6477939887,"date":"1994-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.11,"date":"1994-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6512886589,"date":"1994-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.111,"date":"1994-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6547813697,"date":"1994-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.111,"date":"1994-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6582721212,"date":"1994-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.116,"date":"1994-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6617609134,"date":"1994-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.127,"date":"1994-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6652477462,"date":"1994-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.127,"date":"1994-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6687326197,"date":"1994-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1994-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6722155338,"date":"1994-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.122,"date":"1994-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6756964886,"date":"1994-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1994-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":0.679175484,"date":"1994-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.128,"date":"1994-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6826525201,"date":"1994-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1994-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6861275968,"date":"1994-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.12,"date":"1994-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6896007142,"date":"1994-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.118,"date":"1994-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6930718722,"date":"1994-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1994-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":0.6965410709,"date":"1994-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.119,"date":"1994-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7000083102,"date":"1994-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.122,"date":"1994-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7034735902,"date":"1994-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.133,"date":"1994-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7069369109,"date":"1994-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.133,"date":"1994-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7103982722,"date":"1994-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.135,"date":"1994-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7138576741,"date":"1994-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.13,"date":"1994-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7173151167,"date":"1994-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1994-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7207706,"date":"1994-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.123,"date":"1994-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7242241239,"date":"1994-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.114,"date":"1994-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7276756885,"date":"1994-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1994-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7311252937,"date":"1994-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1994-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7345729396,"date":"1994-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.104,"date":"1995-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7380186261,"date":"1995-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.102,"date":"1995-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7414623533,"date":"1995-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.1,"date":"1995-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7449041211,"date":"1995-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.095,"date":"1995-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7483439296,"date":"1995-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.09,"date":"1995-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7517817787,"date":"1995-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.086,"date":"1995-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7552176685,"date":"1995-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.088,"date":"1995-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":0.758651599,"date":"1995-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.088,"date":"1995-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7620835701,"date":"1995-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.089,"date":"1995-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7655135818,"date":"1995-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.089,"date":"1995-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7689416342,"date":"1995-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.088,"date":"1995-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7723677273,"date":"1995-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.085,"date":"1995-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":0.775791861,"date":"1995-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.088,"date":"1995-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7792140353,"date":"1995-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.094,"date":"1995-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7826342504,"date":"1995-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.101,"date":"1995-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":0.786052506,"date":"1995-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1995-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7894688023,"date":"1995-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.115,"date":"1995-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7928831393,"date":"1995-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.119,"date":"1995-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":0.796295517,"date":"1995-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1995-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":0.7997059352,"date":"1995-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1995-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8031143942,"date":"1995-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1995-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8065208938,"date":"1995-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.13,"date":"1995-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":0.809925434,"date":"1995-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1995-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8133280149,"date":"1995-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.122,"date":"1995-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8167286364,"date":"1995-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1995-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8201272986,"date":"1995-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.112,"date":"1995-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8235240015,"date":"1995-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1995-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":0.826918745,"date":"1995-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.103,"date":"1995-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8303115291,"date":"1995-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.099,"date":"1995-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":0.833702354,"date":"1995-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.098,"date":"1995-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8370912194,"date":"1995-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.093,"date":"1995-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8404781255,"date":"1995-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.099,"date":"1995-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8438630723,"date":"1995-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1995-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8472460597,"date":"1995-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.106,"date":"1995-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8506270878,"date":"1995-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1995-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8540061565,"date":"1995-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.115,"date":"1995-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8573832659,"date":"1995-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.119,"date":"1995-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":0.860758416,"date":"1995-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.122,"date":"1995-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8641316066,"date":"1995-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.121,"date":"1995-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":0.867502838,"date":"1995-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1995-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":0.87087211,"date":"1995-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1995-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8742394226,"date":"1995-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.117,"date":"1995-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8776047759,"date":"1995-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.114,"date":"1995-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8809681699,"date":"1995-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.11,"date":"1995-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8843296045,"date":"1995-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.118,"date":"1995-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8876890797,"date":"1995-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.118,"date":"1995-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8910465957,"date":"1995-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.119,"date":"1995-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8944021522,"date":"1995-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1995-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":0.8977557494,"date":"1995-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.123,"date":"1995-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9011073873,"date":"1995-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.124,"date":"1995-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9044570658,"date":"1995-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.13,"date":"1995-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":0.907804785,"date":"1995-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.141,"date":"1995-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9111505449,"date":"1995-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.148,"date":"1996-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9144943453,"date":"1996-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.146,"date":"1996-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9178361865,"date":"1996-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.152,"date":"1996-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9211760683,"date":"1996-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.144,"date":"1996-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9245139907,"date":"1996-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.136,"date":"1996-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9278499538,"date":"1996-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.13,"date":"1996-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9311839576,"date":"1996-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.134,"date":"1996-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":0.934516002,"date":"1996-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.151,"date":"1996-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":0.937846087,"date":"1996-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.164,"date":"1996-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9411742127,"date":"1996-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.175,"date":"1996-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9445003791,"date":"1996-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.173,"date":"1996-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9478245861,"date":"1996-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.172,"date":"1996-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9511468338,"date":"1996-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.21,"date":"1996-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9544671221,"date":"1996-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.222,"date":"1996-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9577854511,"date":"1996-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.249,"date":"1996-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9611018207,"date":"1996-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.305,"date":"1996-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":0.964416231,"date":"1996-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.304,"date":"1996-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9677286819,"date":"1996-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.285,"date":"1996-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9710391735,"date":"1996-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.292,"date":"1996-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9743477057,"date":"1996-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.285,"date":"1996-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9776542786,"date":"1996-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.274,"date":"1996-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9809588922,"date":"1996-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.254,"date":"1996-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9842615464,"date":"1996-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.24,"date":"1996-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9875622412,"date":"1996-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.215,"date":"1996-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9908609767,"date":"1996-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.193,"date":"1996-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9941577529,"date":"1996-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.179,"date":"1996-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":0.9974525697,"date":"1996-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.172,"date":"1996-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0007454272,"date":"1996-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.173,"date":"1996-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0040363253,"date":"1996-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.178,"date":"1996-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.007325264,"date":"1996-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.184,"date":"1996-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0106122435,"date":"1996-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.178,"date":"1996-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0138972635,"date":"1996-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.184,"date":"1996-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0171803243,"date":"1996-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.191,"date":"1996-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0204614257,"date":"1996-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.206,"date":"1996-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0237405677,"date":"1996-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.222,"date":"1996-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0270177504,"date":"1996-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.231,"date":"1996-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0302929737,"date":"1996-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.25,"date":"1996-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0335662377,"date":"1996-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.276,"date":"1996-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0368375424,"date":"1996-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.277,"date":"1996-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0401068877,"date":"1996-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.289,"date":"1996-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0433742736,"date":"1996-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.308,"date":"1996-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0466397002,"date":"1996-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.326,"date":"1996-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0499031675,"date":"1996-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.329,"date":"1996-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0531646754,"date":"1996-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.329,"date":"1996-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.056424224,"date":"1996-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.323,"date":"1996-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0596818132,"date":"1996-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.316,"date":"1996-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0629374431,"date":"1996-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.324,"date":"1996-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0661911136,"date":"1996-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.327,"date":"1996-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0694428248,"date":"1996-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.323,"date":"1996-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0726925766,"date":"1996-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.32,"date":"1996-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0759403691,"date":"1996-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.307,"date":"1996-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0791862022,"date":"1996-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.3,"date":"1996-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.082430076,"date":"1996-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.295,"date":"1996-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0856719904,"date":"1996-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.291,"date":"1997-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0889119455,"date":"1997-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.296,"date":"1997-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0921499413,"date":"1997-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.293,"date":"1997-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0953859777,"date":"1997-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.283,"date":"1997-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.0986200548,"date":"1997-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.288,"date":"1997-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1018521725,"date":"1997-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.285,"date":"1997-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1050823308,"date":"1997-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.278,"date":"1997-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1083105298,"date":"1997-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.269,"date":"1997-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1115367695,"date":"1997-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.252,"date":"1997-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1147610498,"date":"1997-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.23,"date":"1997-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1179833708,"date":"1997-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.22,"date":"1997-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1212037324,"date":"1997-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.22,"date":"1997-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1244221347,"date":"1997-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.225,"date":"1997-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1276385776,"date":"1997-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.217,"date":"1997-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1308530612,"date":"1997-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.216,"date":"1997-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1340655855,"date":"1997-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.211,"date":"1997-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1372761504,"date":"1997-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.205,"date":"1997-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1404847559,"date":"1997-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.205,"date":"1997-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1436914021,"date":"1997-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.191,"date":"1997-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.146896089,"date":"1997-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.191,"date":"1997-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1500988165,"date":"1997-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.196,"date":"1997-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1532995846,"date":"1997-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.19,"date":"1997-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1564983934,"date":"1997-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.187,"date":"1997-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1596952429,"date":"1997-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.172,"date":"1997-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.162890133,"date":"1997-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.162,"date":"1997-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1660830638,"date":"1997-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.153,"date":"1997-06-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1692740352,"date":"1997-06-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.159,"date":"1997-07-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1724630473,"date":"1997-07-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.152,"date":"1997-07-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1756501,"date":"1997-07-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.147,"date":"1997-07-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1788351934,"date":"1997-07-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.145,"date":"1997-07-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1820183274,"date":"1997-07-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.155,"date":"1997-08-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1851995021,"date":"1997-08-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.168,"date":"1997-08-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1883787175,"date":"1997-08-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.167,"date":"1997-08-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1915559735,"date":"1997-08-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.169,"date":"1997-08-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1947312701,"date":"1997-08-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.165,"date":"1997-09-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.1979046074,"date":"1997-09-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.163,"date":"1997-09-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2010759854,"date":"1997-09-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.156,"date":"1997-09-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.204245404,"date":"1997-09-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.154,"date":"1997-09-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2074128632,"date":"1997-09-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.16,"date":"1997-09-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2105783631,"date":"1997-09-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.175,"date":"1997-10-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2137419037,"date":"1997-10-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.185,"date":"1997-10-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2169034849,"date":"1997-10-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.185,"date":"1997-10-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2200631068,"date":"1997-10-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.185,"date":"1997-10-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2232207693,"date":"1997-10-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.188,"date":"1997-11-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2263764725,"date":"1997-11-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.19,"date":"1997-11-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2295302163,"date":"1997-11-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.195,"date":"1997-11-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2326820008,"date":"1997-11-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.193,"date":"1997-11-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.235831826,"date":"1997-11-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.189,"date":"1997-12-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2389796917,"date":"1997-12-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.174,"date":"1997-12-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2421255982,"date":"1997-12-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.162,"date":"1997-12-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2452695453,"date":"1997-12-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.155,"date":"1997-12-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.248411533,"date":"1997-12-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.15,"date":"1997-12-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2515515614,"date":"1997-12-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.147,"date":"1998-01-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2546896305,"date":"1998-01-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.126,"date":"1998-01-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2578257402,"date":"1998-01-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.109,"date":"1998-01-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2609598906,"date":"1998-01-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.096,"date":"1998-01-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2640920816,"date":"1998-01-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.091,"date":"1998-02-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2672223132,"date":"1998-02-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.085,"date":"1998-02-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2703505856,"date":"1998-02-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.082,"date":"1998-02-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2734768985,"date":"1998-02-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.079,"date":"1998-02-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2766012522,"date":"1998-02-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.074,"date":"1998-03-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2797236464,"date":"1998-03-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.066,"date":"1998-03-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2828440814,"date":"1998-03-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.057,"date":"1998-03-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.285962557,"date":"1998-03-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.049,"date":"1998-03-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2890790732,"date":"1998-03-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.068,"date":"1998-03-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2921936301,"date":"1998-03-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.067,"date":"1998-04-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2953062276,"date":"1998-04-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.065,"date":"1998-04-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.2984168658,"date":"1998-04-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.065,"date":"1998-04-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3015255447,"date":"1998-04-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.07,"date":"1998-04-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3046322642,"date":"1998-04-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.072,"date":"1998-05-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3077370244,"date":"1998-05-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.075,"date":"1998-05-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3108398252,"date":"1998-05-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.069,"date":"1998-05-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3139406666,"date":"1998-05-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.06,"date":"1998-05-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3170395488,"date":"1998-05-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.053,"date":"1998-06-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3201364715,"date":"1998-06-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.045,"date":"1998-06-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3232314349,"date":"1998-06-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.04,"date":"1998-06-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.326324439,"date":"1998-06-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.033,"date":"1998-06-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3294154838,"date":"1998-06-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.034,"date":"1998-06-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3325045691,"date":"1998-06-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.036,"date":"1998-07-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3355916952,"date":"1998-07-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.031,"date":"1998-07-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3386768619,"date":"1998-07-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.027,"date":"1998-07-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3417600692,"date":"1998-07-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.02,"date":"1998-07-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3448413172,"date":"1998-07-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.016,"date":"1998-08-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3479206058,"date":"1998-08-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.01,"date":"1998-08-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3509979351,"date":"1998-08-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.007,"date":"1998-08-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3540733051,"date":"1998-08-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.004,"date":"1998-08-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3571467157,"date":"1998-08-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1,"date":"1998-08-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.360218167,"date":"1998-08-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.009,"date":"1998-09-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3632876589,"date":"1998-09-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.019,"date":"1998-09-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3663551914,"date":"1998-09-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.03,"date":"1998-09-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3694207647,"date":"1998-09-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.039,"date":"1998-09-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3724843785,"date":"1998-09-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.041,"date":"1998-10-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3755460331,"date":"1998-10-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.041,"date":"1998-10-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3786057282,"date":"1998-10-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.036,"date":"1998-10-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3816634641,"date":"1998-10-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.036,"date":"1998-10-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3847192406,"date":"1998-10-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.035,"date":"1998-11-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3877730577,"date":"1998-11-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.034,"date":"1998-11-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3908249155,"date":"1998-11-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.026,"date":"1998-11-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3938748139,"date":"1998-11-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.012,"date":"1998-11-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.396922753,"date":"1998-11-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.004,"date":"1998-11-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.3999687328,"date":"1998-11-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.986,"date":"1998-12-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4030127532,"date":"1998-12-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.972,"date":"1998-12-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4060548142,"date":"1998-12-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.968,"date":"1998-12-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4090949159,"date":"1998-12-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.966,"date":"1998-12-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4121330583,"date":"1998-12-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.965,"date":"1999-01-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4151692413,"date":"1999-01-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.967,"date":"1999-01-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.418203465,"date":"1999-01-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.97,"date":"1999-01-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4212357293,"date":"1999-01-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.964,"date":"1999-01-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4242660343,"date":"1999-01-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.962,"date":"1999-02-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4272943799,"date":"1999-02-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.962,"date":"1999-02-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4303207662,"date":"1999-02-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.959,"date":"1999-02-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4333451931,"date":"1999-02-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.953,"date":"1999-02-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4363676607,"date":"1999-02-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.956,"date":"1999-03-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4393881689,"date":"1999-03-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":0.964,"date":"1999-03-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4424067178,"date":"1999-03-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1,"date":"1999-03-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4454233074,"date":"1999-03-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.018,"date":"1999-03-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4484379376,"date":"1999-03-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.046,"date":"1999-03-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4514506084,"date":"1999-03-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.075,"date":"1999-04-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4544613199,"date":"1999-04-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.084,"date":"1999-04-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4574700721,"date":"1999-04-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.08,"date":"1999-04-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4604768649,"date":"1999-04-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.078,"date":"1999-04-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4634816984,"date":"1999-04-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.078,"date":"1999-05-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4664845725,"date":"1999-05-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.083,"date":"1999-05-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4694854873,"date":"1999-05-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.075,"date":"1999-05-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4724844427,"date":"1999-05-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.066,"date":"1999-05-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4754814388,"date":"1999-05-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.065,"date":"1999-05-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4784764755,"date":"1999-05-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.059,"date":"1999-06-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4814695529,"date":"1999-06-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.068,"date":"1999-06-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4844606709,"date":"1999-06-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.082,"date":"1999-06-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4874498296,"date":"1999-06-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.087,"date":"1999-06-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4904370289,"date":"1999-06-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.102,"date":"1999-07-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4934222689,"date":"1999-07-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.114,"date":"1999-07-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4964055496,"date":"1999-07-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.133,"date":"1999-07-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.4993868709,"date":"1999-07-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.137,"date":"1999-07-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5023662328,"date":"1999-07-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.146,"date":"1999-08-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5053436354,"date":"1999-08-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.156,"date":"1999-08-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5083190787,"date":"1999-08-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.178,"date":"1999-08-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5112925626,"date":"1999-08-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.186,"date":"1999-08-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5142640872,"date":"1999-08-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.194,"date":"1999-08-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5172336524,"date":"1999-08-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.198,"date":"1999-09-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5202012583,"date":"1999-09-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.209,"date":"1999-09-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5231669048,"date":"1999-09-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.226,"date":"1999-09-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.526130592,"date":"1999-09-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.226,"date":"1999-09-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5290923198,"date":"1999-09-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.234,"date":"1999-10-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5320520883,"date":"1999-10-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.228,"date":"1999-10-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5350098974,"date":"1999-10-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.224,"date":"1999-10-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5379657472,"date":"1999-10-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.226,"date":"1999-10-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5409196377,"date":"1999-10-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.229,"date":"1999-11-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5438715688,"date":"1999-11-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.234,"date":"1999-11-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5468215405,"date":"1999-11-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.261,"date":"1999-11-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5497695529,"date":"1999-11-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.289,"date":"1999-11-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.552715606,"date":"1999-11-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.304,"date":"1999-11-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5556596997,"date":"1999-11-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.294,"date":"1999-12-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.558601834,"date":"1999-12-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.288,"date":"1999-12-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5615420091,"date":"1999-12-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.287,"date":"1999-12-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5644802247,"date":"1999-12-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.298,"date":"1999-12-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.567416481,"date":"1999-12-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.309,"date":"2000-01-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.570350778,"date":"2000-01-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.307,"date":"2000-01-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5732831156,"date":"2000-01-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.307,"date":"2000-01-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5762134939,"date":"2000-01-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.418,"date":"2000-01-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5791419129,"date":"2000-01-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.439,"date":"2000-01-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5820683724,"date":"2000-01-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.47,"date":"2000-02-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5849928727,"date":"2000-02-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.456,"date":"2000-02-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5879154136,"date":"2000-02-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.456,"date":"2000-02-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5908359951,"date":"2000-02-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.461,"date":"2000-02-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5937546173,"date":"2000-02-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.49,"date":"2000-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5966712802,"date":"2000-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.496,"date":"2000-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.5995859837,"date":"2000-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.479,"date":"2000-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6024987278,"date":"2000-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.451,"date":"2000-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6054095126,"date":"2000-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.442,"date":"2000-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6083183381,"date":"2000-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.419,"date":"2000-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6112252042,"date":"2000-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.398,"date":"2000-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.614130111,"date":"2000-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.428,"date":"2000-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6170330584,"date":"2000-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.418,"date":"2000-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6199340465,"date":"2000-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.402,"date":"2000-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6228330752,"date":"2000-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.415,"date":"2000-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6257301446,"date":"2000-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.432,"date":"2000-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6286252546,"date":"2000-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.431,"date":"2000-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6315184053,"date":"2000-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.419,"date":"2000-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6344095967,"date":"2000-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.411,"date":"2000-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6372988287,"date":"2000-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.423,"date":"2000-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6401861013,"date":"2000-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.432,"date":"2000-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6430714146,"date":"2000-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.453,"date":"2000-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6459547686,"date":"2000-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.449,"date":"2000-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6488361632,"date":"2000-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.435,"date":"2000-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6517155984,"date":"2000-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.424,"date":"2000-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6545930744,"date":"2000-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.408,"date":"2000-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6574685909,"date":"2000-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.41,"date":"2000-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6603421481,"date":"2000-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.447,"date":"2000-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.663213746,"date":"2000-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.471,"date":"2000-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6660833845,"date":"2000-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.536,"date":"2000-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6689510637,"date":"2000-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.609,"date":"2000-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6718167835,"date":"2000-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.629,"date":"2000-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.674680544,"date":"2000-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.653,"date":"2000-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6775423452,"date":"2000-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.657,"date":"2000-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.680402187,"date":"2000-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.625,"date":"2000-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6832600694,"date":"2000-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.614,"date":"2000-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6861159925,"date":"2000-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.67,"date":"2000-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6889699563,"date":"2000-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.648,"date":"2000-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6918219607,"date":"2000-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.629,"date":"2000-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6946720057,"date":"2000-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.61,"date":"2000-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.6975200914,"date":"2000-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.603,"date":"2000-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7003662178,"date":"2000-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.627,"date":"2000-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7032103848,"date":"2000-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.645,"date":"2000-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7060525925,"date":"2000-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.622,"date":"2000-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7088928408,"date":"2000-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.577,"date":"2000-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7117311298,"date":"2000-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.545,"date":"2000-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7145674594,"date":"2000-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.515,"date":"2000-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7174018297,"date":"2000-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.522,"date":"2001-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7202342406,"date":"2001-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.52,"date":"2001-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7230646922,"date":"2001-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.509,"date":"2001-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7258931844,"date":"2001-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.528,"date":"2001-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7287197173,"date":"2001-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.539,"date":"2001-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7315442909,"date":"2001-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.52,"date":"2001-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7343669051,"date":"2001-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.518,"date":"2001-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7371875599,"date":"2001-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.48,"date":"2001-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7400062554,"date":"2001-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.451,"date":"2001-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7428229916,"date":"2001-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.42,"date":"2001-03-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7456377684,"date":"2001-03-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.406,"date":"2001-03-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7484505859,"date":"2001-03-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.392,"date":"2001-03-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.751261444,"date":"2001-03-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.379,"date":"2001-03-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7540703427,"date":"2001-03-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.391,"date":"2001-04-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7568772822,"date":"2001-04-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.397,"date":"2001-04-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7596822622,"date":"2001-04-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.437,"date":"2001-04-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.762485283,"date":"2001-04-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.443,"date":"2001-04-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7652863444,"date":"2001-04-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.442,"date":"2001-04-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7680854464,"date":"2001-04-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.47,"date":"2001-05-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7708825891,"date":"2001-05-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.491,"date":"2001-05-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7736777724,"date":"2001-05-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.494,"date":"2001-05-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7764709964,"date":"2001-05-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.529,"date":"2001-05-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7792622611,"date":"2001-05-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.514,"date":"2001-06-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7820515664,"date":"2001-06-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.486,"date":"2001-06-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7848389123,"date":"2001-06-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.48,"date":"2001-06-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7876242989,"date":"2001-06-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.447,"date":"2001-06-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7904077262,"date":"2001-06-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.407,"date":"2001-07-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7931891941,"date":"2001-07-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.392,"date":"2001-07-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7959687027,"date":"2001-07-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.38,"date":"2001-07-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.7987462519,"date":"2001-07-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.348,"date":"2001-07-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8015218418,"date":"2001-07-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.347,"date":"2001-07-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8042954723,"date":"2001-07-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.345,"date":"2001-08-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8070671435,"date":"2001-08-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.367,"date":"2001-08-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8098368553,"date":"2001-08-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.394,"date":"2001-08-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8126046078,"date":"2001-08-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.452,"date":"2001-08-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8153704009,"date":"2001-08-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.488,"date":"2001-09-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8181342347,"date":"2001-09-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.492,"date":"2001-09-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8208961091,"date":"2001-09-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.527,"date":"2001-09-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8236560242,"date":"2001-09-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.473,"date":"2001-09-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.82641398,"date":"2001-09-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.39,"date":"2001-10-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8291699764,"date":"2001-10-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.371,"date":"2001-10-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8319240134,"date":"2001-10-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.353,"date":"2001-10-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8346760912,"date":"2001-10-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.318,"date":"2001-10-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8374262095,"date":"2001-10-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.31,"date":"2001-10-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8401743685,"date":"2001-10-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.291,"date":"2001-11-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8429205682,"date":"2001-11-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.269,"date":"2001-11-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8456648085,"date":"2001-11-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.252,"date":"2001-11-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8484070895,"date":"2001-11-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.223,"date":"2001-11-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8511474111,"date":"2001-11-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.194,"date":"2001-12-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8538857734,"date":"2001-12-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.173,"date":"2001-12-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8566221763,"date":"2001-12-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.143,"date":"2001-12-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8593566199,"date":"2001-12-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.154,"date":"2001-12-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8620891042,"date":"2001-12-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.169,"date":"2001-12-31","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8648196291,"date":"2001-12-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.168,"date":"2002-01-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8675481946,"date":"2002-01-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.159,"date":"2002-01-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8702748008,"date":"2002-01-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.14,"date":"2002-01-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8729994477,"date":"2002-01-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.144,"date":"2002-01-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8757221352,"date":"2002-01-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.144,"date":"2002-02-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8784428633,"date":"2002-02-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.153,"date":"2002-02-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8811616321,"date":"2002-02-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.156,"date":"2002-02-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8838784416,"date":"2002-02-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.154,"date":"2002-02-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8865932917,"date":"2002-02-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.173,"date":"2002-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8893061825,"date":"2002-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.216,"date":"2002-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8920171139,"date":"2002-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.251,"date":"2002-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.894726086,"date":"2002-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.281,"date":"2002-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.8974330987,"date":"2002-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.295,"date":"2002-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9001381521,"date":"2002-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.323,"date":"2002-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9028412461,"date":"2002-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.32,"date":"2002-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9055423808,"date":"2002-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.304,"date":"2002-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9082415562,"date":"2002-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.302,"date":"2002-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9109387722,"date":"2002-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.305,"date":"2002-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9136340288,"date":"2002-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.299,"date":"2002-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9163273261,"date":"2002-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.309,"date":"2002-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9190186641,"date":"2002-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.308,"date":"2002-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9217080427,"date":"2002-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.3,"date":"2002-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9243954619,"date":"2002-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.286,"date":"2002-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9270809218,"date":"2002-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.275,"date":"2002-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9297644224,"date":"2002-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.281,"date":"2002-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9324459636,"date":"2002-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.289,"date":"2002-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9351255455,"date":"2002-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.294,"date":"2002-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":1.937803168,"date":"2002-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.3,"date":"2002-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9404788312,"date":"2002-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.311,"date":"2002-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":1.943152535,"date":"2002-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.303,"date":"2002-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9458242795,"date":"2002-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.304,"date":"2002-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9484940647,"date":"2002-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.303,"date":"2002-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9511618904,"date":"2002-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.333,"date":"2002-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9538277569,"date":"2002-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.37,"date":"2002-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":1.956491664,"date":"2002-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.388,"date":"2002-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9591536117,"date":"2002-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.396,"date":"2002-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9618136001,"date":"2002-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.414,"date":"2002-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9644716292,"date":"2002-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.417,"date":"2002-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9671276989,"date":"2002-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.438,"date":"2002-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9697818093,"date":"2002-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.46,"date":"2002-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9724339603,"date":"2002-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.461,"date":"2002-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9750841519,"date":"2002-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.469,"date":"2002-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9777323843,"date":"2002-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.456,"date":"2002-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9803786572,"date":"2002-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.442,"date":"2002-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9830229709,"date":"2002-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.427,"date":"2002-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9856653251,"date":"2002-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.405,"date":"2002-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9883057201,"date":"2002-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.405,"date":"2002-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9909441557,"date":"2002-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.407,"date":"2002-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9935806319,"date":"2002-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.405,"date":"2002-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9962151488,"date":"2002-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.401,"date":"2002-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":1.9988477063,"date":"2002-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.44,"date":"2002-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0014783045,"date":"2002-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.491,"date":"2002-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0041069434,"date":"2002-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.501,"date":"2003-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0067336229,"date":"2003-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.478,"date":"2003-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0093583431,"date":"2003-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.48,"date":"2003-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0119811039,"date":"2003-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.492,"date":"2003-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0146019053,"date":"2003-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.542,"date":"2003-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0172207475,"date":"2003-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.662,"date":"2003-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0198376302,"date":"2003-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.704,"date":"2003-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0224525536,"date":"2003-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.709,"date":"2003-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0250655177,"date":"2003-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.753,"date":"2003-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0276765225,"date":"2003-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.771,"date":"2003-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0302855678,"date":"2003-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.752,"date":"2003-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0328926539,"date":"2003-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.662,"date":"2003-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0354977806,"date":"2003-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.602,"date":"2003-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0381009479,"date":"2003-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.554,"date":"2003-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0407021559,"date":"2003-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.539,"date":"2003-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0433014045,"date":"2003-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.529,"date":"2003-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0458986938,"date":"2003-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.508,"date":"2003-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0484940238,"date":"2003-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.484,"date":"2003-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0510873944,"date":"2003-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.444,"date":"2003-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0536788057,"date":"2003-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.443,"date":"2003-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0562682576,"date":"2003-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.434,"date":"2003-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0588557501,"date":"2003-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.423,"date":"2003-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0614412834,"date":"2003-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.422,"date":"2003-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0640248572,"date":"2003-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.432,"date":"2003-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0666064718,"date":"2003-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.423,"date":"2003-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0691861269,"date":"2003-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.42,"date":"2003-06-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0717638228,"date":"2003-06-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.428,"date":"2003-07-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0743395593,"date":"2003-07-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.435,"date":"2003-07-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0769133364,"date":"2003-07-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.439,"date":"2003-07-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0794851542,"date":"2003-07-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.438,"date":"2003-07-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0820550126,"date":"2003-07-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.453,"date":"2003-08-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0846229117,"date":"2003-08-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.492,"date":"2003-08-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0871888515,"date":"2003-08-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.498,"date":"2003-08-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0897528319,"date":"2003-08-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.503,"date":"2003-08-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0923148529,"date":"2003-08-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.501,"date":"2003-09-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.0948749146,"date":"2003-09-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.488,"date":"2003-09-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.097433017,"date":"2003-09-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.471,"date":"2003-09-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.09998916,"date":"2003-09-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.444,"date":"2003-09-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1025433437,"date":"2003-09-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.429,"date":"2003-09-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.105095568,"date":"2003-09-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.445,"date":"2003-10-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.107645833,"date":"2003-10-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.483,"date":"2003-10-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1101941386,"date":"2003-10-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.502,"date":"2003-10-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1127404849,"date":"2003-10-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.495,"date":"2003-10-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1152848718,"date":"2003-10-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.481,"date":"2003-11-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1178272994,"date":"2003-11-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.476,"date":"2003-11-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1203677676,"date":"2003-11-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.481,"date":"2003-11-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1229062765,"date":"2003-11-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.491,"date":"2003-11-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1254428261,"date":"2003-11-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.476,"date":"2003-12-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1279774163,"date":"2003-12-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.481,"date":"2003-12-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1305100471,"date":"2003-12-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.486,"date":"2003-12-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1330407186,"date":"2003-12-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.504,"date":"2003-12-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1355694308,"date":"2003-12-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.502,"date":"2003-12-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1380961836,"date":"2003-12-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.503,"date":"2004-01-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1406209771,"date":"2004-01-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.551,"date":"2004-01-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1431438112,"date":"2004-01-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.559,"date":"2004-01-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.145664686,"date":"2004-01-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.591,"date":"2004-01-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1481836014,"date":"2004-01-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.581,"date":"2004-02-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1507005575,"date":"2004-02-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.568,"date":"2004-02-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1532155542,"date":"2004-02-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.584,"date":"2004-02-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1557285916,"date":"2004-02-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.595,"date":"2004-02-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1582396696,"date":"2004-02-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.619,"date":"2004-03-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1607487883,"date":"2004-03-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.628,"date":"2004-03-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1632559476,"date":"2004-03-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.617,"date":"2004-03-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1657611476,"date":"2004-03-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.641,"date":"2004-03-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1682643883,"date":"2004-03-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.642,"date":"2004-03-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1707656696,"date":"2004-03-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.648,"date":"2004-04-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1732649915,"date":"2004-04-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.679,"date":"2004-04-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1757623541,"date":"2004-04-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.724,"date":"2004-04-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1782577574,"date":"2004-04-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.718,"date":"2004-04-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1807512013,"date":"2004-04-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.717,"date":"2004-05-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1832426859,"date":"2004-05-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.745,"date":"2004-05-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1857322111,"date":"2004-05-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.763,"date":"2004-05-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.188219777,"date":"2004-05-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.761,"date":"2004-05-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1907053835,"date":"2004-05-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.746,"date":"2004-05-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1931890307,"date":"2004-05-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.734,"date":"2004-06-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.1956707185,"date":"2004-06-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.711,"date":"2004-06-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.198150447,"date":"2004-06-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.7,"date":"2004-06-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2006282161,"date":"2004-06-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.7,"date":"2004-06-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2031040259,"date":"2004-06-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.716,"date":"2004-07-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2055778764,"date":"2004-07-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.74,"date":"2004-07-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2080497675,"date":"2004-07-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.744,"date":"2004-07-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2105196992,"date":"2004-07-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.754,"date":"2004-07-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2129876716,"date":"2004-07-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.78,"date":"2004-08-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2154536847,"date":"2004-08-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.814,"date":"2004-08-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2179177384,"date":"2004-08-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.825,"date":"2004-08-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2203798327,"date":"2004-08-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.874,"date":"2004-08-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2228399678,"date":"2004-08-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.871,"date":"2004-08-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2252981434,"date":"2004-08-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.869,"date":"2004-09-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2277543597,"date":"2004-09-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.874,"date":"2004-09-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2302086167,"date":"2004-09-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.912,"date":"2004-09-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2326609143,"date":"2004-09-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.012,"date":"2004-09-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2351112526,"date":"2004-09-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.053,"date":"2004-10-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2375596316,"date":"2004-10-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.092,"date":"2004-10-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2400060512,"date":"2004-10-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.18,"date":"2004-10-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2424505114,"date":"2004-10-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.212,"date":"2004-10-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2448930123,"date":"2004-10-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.206,"date":"2004-11-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2473335538,"date":"2004-11-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.163,"date":"2004-11-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.249772136,"date":"2004-11-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.132,"date":"2004-11-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2522087589,"date":"2004-11-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.116,"date":"2004-11-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2546434224,"date":"2004-11-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.116,"date":"2004-11-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2570761265,"date":"2004-11-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.069,"date":"2004-12-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2595068714,"date":"2004-12-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.997,"date":"2004-12-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2619356568,"date":"2004-12-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.984,"date":"2004-12-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2643624829,"date":"2004-12-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.987,"date":"2004-12-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2667873497,"date":"2004-12-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.957,"date":"2005-01-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2692102571,"date":"2005-01-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.934,"date":"2005-01-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2716312052,"date":"2005-01-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.952,"date":"2005-01-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2740501939,"date":"2005-01-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.959,"date":"2005-01-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2764672233,"date":"2005-01-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.992,"date":"2005-01-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2788822934,"date":"2005-01-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.983,"date":"2005-02-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.281295404,"date":"2005-02-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.986,"date":"2005-02-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2837065554,"date":"2005-02-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.02,"date":"2005-02-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2861157474,"date":"2005-02-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.118,"date":"2005-02-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.28852298,"date":"2005-02-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.168,"date":"2005-03-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2909282533,"date":"2005-03-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.194,"date":"2005-03-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2933315673,"date":"2005-03-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.244,"date":"2005-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2957329219,"date":"2005-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.249,"date":"2005-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.2981323171,"date":"2005-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.303,"date":"2005-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3005297531,"date":"2005-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.316,"date":"2005-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3029252296,"date":"2005-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.259,"date":"2005-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3053187468,"date":"2005-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.289,"date":"2005-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3077103047,"date":"2005-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.262,"date":"2005-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3100999032,"date":"2005-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.227,"date":"2005-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3124875424,"date":"2005-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.189,"date":"2005-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3148732223,"date":"2005-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.156,"date":"2005-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3172569427,"date":"2005-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.16,"date":"2005-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3196387039,"date":"2005-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.234,"date":"2005-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3220185057,"date":"2005-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.276,"date":"2005-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3243963481,"date":"2005-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.313,"date":"2005-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3267722312,"date":"2005-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.336,"date":"2005-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.329146155,"date":"2005-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.348,"date":"2005-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3315181194,"date":"2005-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.408,"date":"2005-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3338881244,"date":"2005-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.392,"date":"2005-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3362561701,"date":"2005-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.342,"date":"2005-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3386222565,"date":"2005-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.348,"date":"2005-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3409863835,"date":"2005-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.407,"date":"2005-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3433485512,"date":"2005-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.567,"date":"2005-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3457087595,"date":"2005-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.588,"date":"2005-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3480670085,"date":"2005-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.59,"date":"2005-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3504232981,"date":"2005-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.898,"date":"2005-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3527776284,"date":"2005-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.847,"date":"2005-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3551299993,"date":"2005-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.732,"date":"2005-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3574804109,"date":"2005-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.798,"date":"2005-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3598288631,"date":"2005-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.144,"date":"2005-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.362175356,"date":"2005-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.15,"date":"2005-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3645198896,"date":"2005-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.148,"date":"2005-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3668624638,"date":"2005-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.157,"date":"2005-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3692030786,"date":"2005-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.876,"date":"2005-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3715417341,"date":"2005-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.698,"date":"2005-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3738784303,"date":"2005-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.602,"date":"2005-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3762131671,"date":"2005-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.513,"date":"2005-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3785459446,"date":"2005-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.479,"date":"2005-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3808767627,"date":"2005-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.425,"date":"2005-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3832056214,"date":"2005-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.436,"date":"2005-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3855325209,"date":"2005-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.462,"date":"2005-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3878574609,"date":"2005-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.448,"date":"2005-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3901804417,"date":"2005-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.442,"date":"2006-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3925014631,"date":"2006-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.485,"date":"2006-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3948205251,"date":"2006-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.449,"date":"2006-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3971376278,"date":"2006-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.472,"date":"2006-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.3994527711,"date":"2006-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.489,"date":"2006-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4017659551,"date":"2006-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.499,"date":"2006-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4040771798,"date":"2006-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.476,"date":"2006-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4063864451,"date":"2006-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.455,"date":"2006-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.408693751,"date":"2006-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.471,"date":"2006-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4109990976,"date":"2006-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.545,"date":"2006-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4133024849,"date":"2006-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.543,"date":"2006-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4156039128,"date":"2006-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.581,"date":"2006-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4179033814,"date":"2006-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.565,"date":"2006-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4202008906,"date":"2006-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.617,"date":"2006-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4224964405,"date":"2006-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.654,"date":"2006-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.424790031,"date":"2006-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.765,"date":"2006-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4270816622,"date":"2006-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.876,"date":"2006-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.429371334,"date":"2006-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.896,"date":"2006-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4316590465,"date":"2006-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.897,"date":"2006-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4339447996,"date":"2006-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.92,"date":"2006-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4362285934,"date":"2006-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.888,"date":"2006-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4385104279,"date":"2006-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.882,"date":"2006-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4407903029,"date":"2006-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.89,"date":"2006-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4430682187,"date":"2006-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.918,"date":"2006-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4453441751,"date":"2006-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.915,"date":"2006-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4476181722,"date":"2006-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.867,"date":"2006-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4498902099,"date":"2006-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.898,"date":"2006-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4521602882,"date":"2006-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.918,"date":"2006-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4544284072,"date":"2006-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.926,"date":"2006-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4566945669,"date":"2006-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.946,"date":"2006-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4589587672,"date":"2006-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.98,"date":"2006-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4612210082,"date":"2006-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.055,"date":"2006-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4634812898,"date":"2006-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.065,"date":"2006-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4657396121,"date":"2006-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.033,"date":"2006-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.467995975,"date":"2006-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.027,"date":"2006-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4702503786,"date":"2006-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.967,"date":"2006-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4725028229,"date":"2006-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.857,"date":"2006-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4747533078,"date":"2006-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.713,"date":"2006-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4770018333,"date":"2006-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.595,"date":"2006-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4792483995,"date":"2006-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.546,"date":"2006-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4814930064,"date":"2006-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.506,"date":"2006-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4837356539,"date":"2006-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.503,"date":"2006-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.485976342,"date":"2006-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.524,"date":"2006-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4882150708,"date":"2006-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.517,"date":"2006-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4904518403,"date":"2006-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.506,"date":"2006-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4926866504,"date":"2006-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.552,"date":"2006-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4949195012,"date":"2006-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.553,"date":"2006-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4971503926,"date":"2006-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.567,"date":"2006-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.4993793247,"date":"2006-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.618,"date":"2006-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5016062974,"date":"2006-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.621,"date":"2006-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5038313108,"date":"2006-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.606,"date":"2006-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5060543648,"date":"2006-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.596,"date":"2006-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5082754595,"date":"2006-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.58,"date":"2007-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5104945949,"date":"2007-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.537,"date":"2007-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5127117709,"date":"2007-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.463,"date":"2007-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5149269875,"date":"2007-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.43,"date":"2007-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5171402448,"date":"2007-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.413,"date":"2007-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5193515428,"date":"2007-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.4256666667,"date":"2007-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5215608814,"date":"2007-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.466,"date":"2007-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5237682606,"date":"2007-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.481,"date":"2007-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5259736805,"date":"2007-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.5423333333,"date":"2007-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5281771411,"date":"2007-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6166666667,"date":"2007-03-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5303786423,"date":"2007-03-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.679,"date":"2007-03-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5325781842,"date":"2007-03-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.673,"date":"2007-03-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5347757667,"date":"2007-03-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6666666667,"date":"2007-03-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5369713899,"date":"2007-03-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7813333333,"date":"2007-04-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5391650537,"date":"2007-04-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8306666667,"date":"2007-04-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5413567582,"date":"2007-04-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8696666667,"date":"2007-04-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5435465034,"date":"2007-04-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8416666667,"date":"2007-04-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5457342891,"date":"2007-04-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.796,"date":"2007-04-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5479201156,"date":"2007-04-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7746666667,"date":"2007-05-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5501039827,"date":"2007-05-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.755,"date":"2007-05-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5522858904,"date":"2007-05-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7883333333,"date":"2007-05-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5544658388,"date":"2007-05-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8016666667,"date":"2007-05-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5566438279,"date":"2007-05-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7833333333,"date":"2007-06-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5588198576,"date":"2007-06-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.774,"date":"2007-06-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.560993928,"date":"2007-06-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7916666667,"date":"2007-06-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.563166039,"date":"2007-06-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8226666667,"date":"2007-06-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5653361907,"date":"2007-06-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8166666667,"date":"2007-07-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.567504383,"date":"2007-07-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.839,"date":"2007-07-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5696706159,"date":"2007-07-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.875,"date":"2007-07-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5718348896,"date":"2007-07-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8736666667,"date":"2007-07-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5739972039,"date":"2007-07-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.872,"date":"2007-07-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5761575588,"date":"2007-07-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8846666667,"date":"2007-08-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5783159544,"date":"2007-08-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8326666667,"date":"2007-08-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5804723906,"date":"2007-08-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8573333333,"date":"2007-08-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5826268675,"date":"2007-08-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8523333333,"date":"2007-08-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5847793851,"date":"2007-08-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8843333333,"date":"2007-09-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5869299433,"date":"2007-09-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9156666667,"date":"2007-09-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5890785421,"date":"2007-09-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9563333333,"date":"2007-09-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5912251816,"date":"2007-09-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.026,"date":"2007-09-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5933698618,"date":"2007-09-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.04,"date":"2007-10-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5955125826,"date":"2007-10-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.022,"date":"2007-10-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.597653344,"date":"2007-10-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.0226666667,"date":"2007-10-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.5997921462,"date":"2007-10-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.0756666667,"date":"2007-10-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6019289889,"date":"2007-10-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.141,"date":"2007-10-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6040638724,"date":"2007-10-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2913333333,"date":"2007-11-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6061967964,"date":"2007-11-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.4103333333,"date":"2007-11-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6083277612,"date":"2007-11-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3896666667,"date":"2007-11-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6104567665,"date":"2007-11-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.4273333333,"date":"2007-11-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6125838126,"date":"2007-11-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.393,"date":"2007-12-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6147088993,"date":"2007-12-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2963333333,"date":"2007-12-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6168320266,"date":"2007-12-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2816666667,"date":"2007-12-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6189531946,"date":"2007-12-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2846666667,"date":"2007-12-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6210724032,"date":"2007-12-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3243333333,"date":"2007-12-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6231896526,"date":"2007-12-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3546666667,"date":"2008-01-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6253049425,"date":"2008-01-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2986666667,"date":"2008-01-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6274182731,"date":"2008-01-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2416666667,"date":"2008-01-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6295296444,"date":"2008-01-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.234,"date":"2008-01-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6316390563,"date":"2008-01-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.2593333333,"date":"2008-02-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6337465089,"date":"2008-02-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.258,"date":"2008-02-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6358520021,"date":"2008-02-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3786666667,"date":"2008-02-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6379555359,"date":"2008-02-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.5403333333,"date":"2008-02-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6400571105,"date":"2008-02-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.6403333333,"date":"2008-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6421567256,"date":"2008-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.806,"date":"2008-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6442543815,"date":"2008-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.96,"date":"2008-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.646350078,"date":"2008-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.973,"date":"2008-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6484438151,"date":"2008-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.9416666667,"date":"2008-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6505355929,"date":"2008-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.932,"date":"2008-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6526254113,"date":"2008-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.0383333333,"date":"2008-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6547132704,"date":"2008-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.1216666667,"date":"2008-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6567991702,"date":"2008-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.154,"date":"2008-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6588831106,"date":"2008-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.12,"date":"2008-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6609650916,"date":"2008-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.3113333333,"date":"2008-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6630451133,"date":"2008-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.4823333333,"date":"2008-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6651231757,"date":"2008-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.7043333333,"date":"2008-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6671992787,"date":"2008-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.6863333333,"date":"2008-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6692734224,"date":"2008-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.668,"date":"2008-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6713456067,"date":"2008-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.6666666667,"date":"2008-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6734158317,"date":"2008-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.6196666667,"date":"2008-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6754840973,"date":"2008-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.6186666667,"date":"2008-06-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6775504036,"date":"2008-06-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.712,"date":"2008-07-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6796147505,"date":"2008-07-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.7473333333,"date":"2008-07-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6816771381,"date":"2008-07-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.692,"date":"2008-07-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6837375664,"date":"2008-07-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.5763333333,"date":"2008-07-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6857960353,"date":"2008-07-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.4706666667,"date":"2008-08-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6878525448,"date":"2008-08-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.3203333333,"date":"2008-08-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.689907095,"date":"2008-08-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.176,"date":"2008-08-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6919596858,"date":"2008-08-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.114,"date":"2008-08-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6940103174,"date":"2008-08-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.0903333333,"date":"2008-09-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6960589895,"date":"2008-09-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.0233333333,"date":"2008-09-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.6981057023,"date":"2008-09-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.997,"date":"2008-09-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7001504558,"date":"2008-09-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.9366666667,"date":"2008-09-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7021932499,"date":"2008-09-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.9383333333,"date":"2008-09-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7042340847,"date":"2008-09-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.8476666667,"date":"2008-10-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7062729601,"date":"2008-10-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.6296666667,"date":"2008-10-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7083098762,"date":"2008-10-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.4456666667,"date":"2008-10-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7103448329,"date":"2008-10-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.259,"date":"2008-10-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7123778303,"date":"2008-10-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.0606666667,"date":"2008-11-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7144088683,"date":"2008-11-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9103333333,"date":"2008-11-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.716437947,"date":"2008-11-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7766666667,"date":"2008-11-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7184650663,"date":"2008-11-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.637,"date":"2008-11-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7204902263,"date":"2008-11-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.5943333333,"date":"2008-12-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.722513427,"date":"2008-12-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.519,"date":"2008-12-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7245346683,"date":"2008-12-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.426,"date":"2008-12-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7265539502,"date":"2008-12-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.3695,"date":"2008-12-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7285712729,"date":"2008-12-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.331,"date":"2008-12-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7305866361,"date":"2008-12-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.295,"date":"2009-01-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.73260004,"date":"2009-01-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.319,"date":"2009-01-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7346114846,"date":"2009-01-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.3015,"date":"2009-01-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7366209698,"date":"2009-01-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.273,"date":"2009-01-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7386284957,"date":"2009-01-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.251,"date":"2009-02-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7406340622,"date":"2009-02-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2245,"date":"2009-02-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7426376694,"date":"2009-02-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.1915,"date":"2009-02-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7446393172,"date":"2009-02-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.134,"date":"2009-02-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7466390057,"date":"2009-02-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.091,"date":"2009-03-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7486367348,"date":"2009-03-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.048,"date":"2009-03-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7506325046,"date":"2009-03-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.02,"date":"2009-03-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7526263151,"date":"2009-03-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.0915,"date":"2009-03-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7546181662,"date":"2009-03-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.223,"date":"2009-03-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7566080579,"date":"2009-03-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2305,"date":"2009-04-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7585959903,"date":"2009-04-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2315,"date":"2009-04-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7605819634,"date":"2009-04-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2235,"date":"2009-04-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7625659771,"date":"2009-04-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.204,"date":"2009-04-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7645480315,"date":"2009-04-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.1885,"date":"2009-05-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7665281265,"date":"2009-05-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.2195,"date":"2009-05-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7685062621,"date":"2009-05-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.234,"date":"2009-05-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7704824385,"date":"2009-05-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.276,"date":"2009-05-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7724566554,"date":"2009-05-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.353,"date":"2009-06-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7744289131,"date":"2009-06-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.4995,"date":"2009-06-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7763992113,"date":"2009-06-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.5735,"date":"2009-06-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7783675503,"date":"2009-06-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6175,"date":"2009-06-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7803339299,"date":"2009-06-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.61,"date":"2009-06-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7822983501,"date":"2009-06-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.596,"date":"2009-07-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.784260811,"date":"2009-07-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.544,"date":"2009-07-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7862213125,"date":"2009-07-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.4985,"date":"2009-07-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7881798547,"date":"2009-07-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.53,"date":"2009-07-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7901364376,"date":"2009-07-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.552,"date":"2009-08-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7920910611,"date":"2009-08-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6265,"date":"2009-08-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7940437253,"date":"2009-08-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.654,"date":"2009-08-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7959944301,"date":"2009-08-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.67,"date":"2009-08-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7979431755,"date":"2009-08-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6765,"date":"2009-08-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.7998899616,"date":"2009-08-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6485,"date":"2009-09-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8018347884,"date":"2009-09-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.636,"date":"2009-09-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8037776558,"date":"2009-09-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.624,"date":"2009-09-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8057185639,"date":"2009-09-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.6035,"date":"2009-09-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8076575126,"date":"2009-09-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.585,"date":"2009-10-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.809594502,"date":"2009-10-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.602,"date":"2009-10-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8115295321,"date":"2009-10-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7065,"date":"2009-10-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8134626028,"date":"2009-10-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.803,"date":"2009-10-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8153937141,"date":"2009-10-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8095,"date":"2009-11-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8173228661,"date":"2009-11-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.803,"date":"2009-11-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8192500587,"date":"2009-11-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7925,"date":"2009-11-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.821175292,"date":"2009-11-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7895,"date":"2009-11-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.823098566,"date":"2009-11-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7775,"date":"2009-11-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8250198806,"date":"2009-11-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7745,"date":"2009-12-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8269392359,"date":"2009-12-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7505,"date":"2009-12-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8288566318,"date":"2009-12-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7285,"date":"2009-12-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8307720683,"date":"2009-12-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.734,"date":"2009-12-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8326855456,"date":"2009-12-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.799,"date":"2010-01-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8345970634,"date":"2010-01-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8805,"date":"2010-01-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.836506622,"date":"2010-01-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.872,"date":"2010-01-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8384142211,"date":"2010-01-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.8355,"date":"2010-01-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.840319861,"date":"2010-01-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.784,"date":"2010-02-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8422235414,"date":"2010-02-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.772,"date":"2010-02-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8441252626,"date":"2010-02-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.7585,"date":"2010-02-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8460250244,"date":"2010-02-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.833,"date":"2010-02-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8479228268,"date":"2010-02-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.863,"date":"2010-03-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8498186699,"date":"2010-03-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.905,"date":"2010-03-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8517125537,"date":"2010-03-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.925,"date":"2010-03-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8536044781,"date":"2010-03-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9475,"date":"2010-03-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8554944431,"date":"2010-03-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9405,"date":"2010-03-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8573824488,"date":"2010-03-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.016,"date":"2010-04-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8592684952,"date":"2010-04-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.071,"date":"2010-04-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8611525822,"date":"2010-04-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.076,"date":"2010-04-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8630347099,"date":"2010-04-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.08,"date":"2010-04-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8649148782,"date":"2010-04-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.124,"date":"2010-05-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8667930872,"date":"2010-05-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.129,"date":"2010-05-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8686693368,"date":"2010-05-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.096,"date":"2010-05-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8705436271,"date":"2010-05-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.023,"date":"2010-05-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.872415958,"date":"2010-05-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9815,"date":"2010-05-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8742863296,"date":"2010-05-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9475,"date":"2010-06-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8761547418,"date":"2010-06-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.929,"date":"2010-06-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8780211947,"date":"2010-06-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9615,"date":"2010-06-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8798856883,"date":"2010-06-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9565,"date":"2010-06-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8817482225,"date":"2010-06-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9245,"date":"2010-07-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8836087973,"date":"2010-07-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9035,"date":"2010-07-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8854674128,"date":"2010-07-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.899,"date":"2010-07-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.887324069,"date":"2010-07-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.919,"date":"2010-07-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8891787658,"date":"2010-07-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.928,"date":"2010-08-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8910315033,"date":"2010-08-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.991,"date":"2010-08-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8928822814,"date":"2010-08-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.979,"date":"2010-08-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8947311002,"date":"2010-08-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.957,"date":"2010-08-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8965779596,"date":"2010-08-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.938,"date":"2010-08-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.8984228597,"date":"2010-08-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.931,"date":"2010-09-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9002658004,"date":"2010-09-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.943,"date":"2010-09-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9021067818,"date":"2010-09-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.96,"date":"2010-09-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9039458038,"date":"2010-09-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.951,"date":"2010-09-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9057828665,"date":"2010-09-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3,"date":"2010-10-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9076179698,"date":"2010-10-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.066,"date":"2010-10-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9094511138,"date":"2010-10-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.073,"date":"2010-10-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9112822985,"date":"2010-10-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.067,"date":"2010-10-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9131115238,"date":"2010-10-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.067,"date":"2010-11-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9149387897,"date":"2010-11-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.116,"date":"2010-11-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9167640963,"date":"2010-11-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.184,"date":"2010-11-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9185874436,"date":"2010-11-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.171,"date":"2010-11-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9204088315,"date":"2010-11-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.162,"date":"2010-11-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9222282601,"date":"2010-11-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.197,"date":"2010-12-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9240457293,"date":"2010-12-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.231,"date":"2010-12-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9258612392,"date":"2010-12-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.248,"date":"2010-12-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9276747897,"date":"2010-12-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.294,"date":"2010-12-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9294863809,"date":"2010-12-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.331,"date":"2011-01-03","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9312960127,"date":"2011-01-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.333,"date":"2011-01-10","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9331036852,"date":"2011-01-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.407,"date":"2011-01-17","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9349093983,"date":"2011-01-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.43,"date":"2011-01-24","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9367131521,"date":"2011-01-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.438,"date":"2011-01-31","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9385149466,"date":"2011-01-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.513,"date":"2011-02-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9403147817,"date":"2011-02-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.534,"date":"2011-02-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9421126574,"date":"2011-02-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.573,"date":"2011-02-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9439085738,"date":"2011-02-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.716,"date":"2011-02-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9457025309,"date":"2011-02-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.871,"date":"2011-03-07","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9474945286,"date":"2011-03-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.908,"date":"2011-03-14","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9492845669,"date":"2011-03-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.907,"date":"2011-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":2.951072646,"date":"2011-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.932,"date":"2011-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9528587656,"date":"2011-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.976,"date":"2011-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9546429259,"date":"2011-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.078,"date":"2011-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9564251269,"date":"2011-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.105,"date":"2011-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9582053685,"date":"2011-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.098,"date":"2011-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9599836508,"date":"2011-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.124,"date":"2011-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9617599738,"date":"2011-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.104,"date":"2011-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9635343373,"date":"2011-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.061,"date":"2011-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9653067416,"date":"2011-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.997,"date":"2011-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9670771865,"date":"2011-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.948,"date":"2011-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":2.968845672,"date":"2011-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.94,"date":"2011-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9706121982,"date":"2011-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.954,"date":"2011-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9723767651,"date":"2011-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.95,"date":"2011-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9741393726,"date":"2011-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.888,"date":"2011-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9759000207,"date":"2011-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.85,"date":"2011-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9776587095,"date":"2011-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.899,"date":"2011-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":2.979415439,"date":"2011-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.923,"date":"2011-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9811702091,"date":"2011-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.949,"date":"2011-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9829230199,"date":"2011-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.937,"date":"2011-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9846738713,"date":"2011-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.897,"date":"2011-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9864227634,"date":"2011-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.835,"date":"2011-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9881696961,"date":"2011-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.81,"date":"2011-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9899146695,"date":"2011-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.82,"date":"2011-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9916576835,"date":"2011-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.868,"date":"2011-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9933987382,"date":"2011-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.862,"date":"2011-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9951378336,"date":"2011-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.833,"date":"2011-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9968749696,"date":"2011-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.786,"date":"2011-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":2.9986101462,"date":"2011-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.749,"date":"2011-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0003433635,"date":"2011-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.721,"date":"2011-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0020746215,"date":"2011-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.801,"date":"2011-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0038039201,"date":"2011-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.825,"date":"2011-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0055312593,"date":"2011-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.892,"date":"2011-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0072566393,"date":"2011-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.887,"date":"2011-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0089800598,"date":"2011-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.987,"date":"2011-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.010701521,"date":"2011-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.01,"date":"2011-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0124210229,"date":"2011-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.964,"date":"2011-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0141385654,"date":"2011-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.931,"date":"2011-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0158541486,"date":"2011-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2011-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0175677724,"date":"2011-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.828,"date":"2011-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0192794369,"date":"2011-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.791,"date":"2011-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0209891421,"date":"2011-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.783,"date":"2012-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0226968879,"date":"2012-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.828,"date":"2012-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0244026743,"date":"2012-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.854,"date":"2012-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0261065014,"date":"2012-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.848,"date":"2012-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0278083692,"date":"2012-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.85,"date":"2012-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0295082776,"date":"2012-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.856,"date":"2012-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0312062266,"date":"2012-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.943,"date":"2012-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0329022163,"date":"2012-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.96,"date":"2012-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0345962467,"date":"2012-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.051,"date":"2012-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0362883177,"date":"2012-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.094,"date":"2012-03-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0379784294,"date":"2012-03-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.123,"date":"2012-03-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0396665817,"date":"2012-03-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.142,"date":"2012-03-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0413527747,"date":"2012-03-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.147,"date":"2012-03-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0430370083,"date":"2012-03-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.142,"date":"2012-04-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0447192826,"date":"2012-04-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.148,"date":"2012-04-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0463995975,"date":"2012-04-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.127,"date":"2012-04-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0480779531,"date":"2012-04-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.085,"date":"2012-04-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0497543493,"date":"2012-04-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.073,"date":"2012-04-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0514287862,"date":"2012-04-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.057,"date":"2012-05-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0531012638,"date":"2012-05-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.004,"date":"2012-05-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.054771782,"date":"2012-05-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.956,"date":"2012-05-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0564403408,"date":"2012-05-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.897,"date":"2012-05-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0581069403,"date":"2012-05-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.846,"date":"2012-06-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0597715805,"date":"2012-06-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.781,"date":"2012-06-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0614342613,"date":"2012-06-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.729,"date":"2012-06-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0630949828,"date":"2012-06-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.678,"date":"2012-06-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0647537449,"date":"2012-06-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.648,"date":"2012-07-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0664105476,"date":"2012-07-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.683,"date":"2012-07-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0680653911,"date":"2012-07-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.695,"date":"2012-07-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0697182751,"date":"2012-07-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.783,"date":"2012-07-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0713691999,"date":"2012-07-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.796,"date":"2012-07-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0730181653,"date":"2012-07-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.85,"date":"2012-08-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0746651713,"date":"2012-08-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.965,"date":"2012-08-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.076310218,"date":"2012-08-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.026,"date":"2012-08-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0779533053,"date":"2012-08-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.089,"date":"2012-08-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0795944333,"date":"2012-08-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.127,"date":"2012-09-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.081233602,"date":"2012-09-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.132,"date":"2012-09-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0828708113,"date":"2012-09-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.135,"date":"2012-09-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0845060612,"date":"2012-09-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.086,"date":"2012-09-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0861393518,"date":"2012-09-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.079,"date":"2012-10-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0877706831,"date":"2012-10-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.094,"date":"2012-10-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.089400055,"date":"2012-10-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.15,"date":"2012-10-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0910274676,"date":"2012-10-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.116,"date":"2012-10-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0926529208,"date":"2012-10-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.03,"date":"2012-10-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0942764147,"date":"2012-10-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.01,"date":"2012-11-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0958979492,"date":"2012-11-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.98,"date":"2012-11-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0975175244,"date":"2012-11-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.976,"date":"2012-11-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.0991351402,"date":"2012-11-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.034,"date":"2012-11-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1007507967,"date":"2012-11-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.027,"date":"2012-12-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1023644938,"date":"2012-12-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.991,"date":"2012-12-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1039762316,"date":"2012-12-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.945,"date":"2012-12-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1055860101,"date":"2012-12-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.923,"date":"2012-12-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1071938291,"date":"2012-12-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.918,"date":"2012-12-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1087996889,"date":"2012-12-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.911,"date":"2013-01-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1104035893,"date":"2013-01-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2013-01-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1120055304,"date":"2013-01-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.902,"date":"2013-01-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1136055121,"date":"2013-01-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.927,"date":"2013-01-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1152035344,"date":"2013-01-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.022,"date":"2013-02-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1167995974,"date":"2013-02-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.104,"date":"2013-02-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1183937011,"date":"2013-02-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.157,"date":"2013-02-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1199858454,"date":"2013-02-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.159,"date":"2013-02-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1215760304,"date":"2013-02-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.13,"date":"2013-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.123164256,"date":"2013-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.088,"date":"2013-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1247505223,"date":"2013-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.047,"date":"2013-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1263348292,"date":"2013-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.006,"date":"2013-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1279171768,"date":"2013-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.993,"date":"2013-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1294975651,"date":"2013-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.977,"date":"2013-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.131075994,"date":"2013-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.942,"date":"2013-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1326524635,"date":"2013-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.887,"date":"2013-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1342269737,"date":"2013-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.851,"date":"2013-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1357995246,"date":"2013-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.845,"date":"2013-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1373701161,"date":"2013-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.866,"date":"2013-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1389387482,"date":"2013-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.89,"date":"2013-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.140505421,"date":"2013-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.88,"date":"2013-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1420701345,"date":"2013-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.869,"date":"2013-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1436328886,"date":"2013-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.849,"date":"2013-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1451936834,"date":"2013-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.841,"date":"2013-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1467525188,"date":"2013-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.838,"date":"2013-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1483093949,"date":"2013-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.817,"date":"2013-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1498643116,"date":"2013-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.828,"date":"2013-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.151417269,"date":"2013-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.867,"date":"2013-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.152968267,"date":"2013-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.903,"date":"2013-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1545173057,"date":"2013-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.915,"date":"2013-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1560643851,"date":"2013-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.909,"date":"2013-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1576095051,"date":"2013-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.896,"date":"2013-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1591526657,"date":"2013-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.9,"date":"2013-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.160693867,"date":"2013-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.913,"date":"2013-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.162233109,"date":"2013-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.981,"date":"2013-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1637703916,"date":"2013-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.981,"date":"2013-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1653057148,"date":"2013-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.974,"date":"2013-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1668390787,"date":"2013-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.949,"date":"2013-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1683704833,"date":"2013-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.919,"date":"2013-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1698999285,"date":"2013-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.897,"date":"2013-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1714274144,"date":"2013-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.886,"date":"2013-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1729529409,"date":"2013-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.886,"date":"2013-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1744765081,"date":"2013-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.87,"date":"2013-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1759981159,"date":"2013-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.857,"date":"2013-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1775177644,"date":"2013-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.832,"date":"2013-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1790354536,"date":"2013-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.822,"date":"2013-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1805511834,"date":"2013-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.844,"date":"2013-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1820649538,"date":"2013-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.883,"date":"2013-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1835767649,"date":"2013-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.879,"date":"2013-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1850866166,"date":"2013-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.871,"date":"2013-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.186594509,"date":"2013-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.873,"date":"2013-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1881004421,"date":"2013-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.903,"date":"2013-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1896044158,"date":"2013-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.91,"date":"2014-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1911064302,"date":"2014-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.886,"date":"2014-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1926064852,"date":"2014-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.873,"date":"2014-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1941045809,"date":"2014-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.904,"date":"2014-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1956007172,"date":"2014-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.951,"date":"2014-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1970948941,"date":"2014-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.977,"date":"2014-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.1985871118,"date":"2014-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.989,"date":"2014-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2000773701,"date":"2014-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.017,"date":"2014-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.201565669,"date":"2014-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.016,"date":"2014-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2030520086,"date":"2014-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.021,"date":"2014-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2045363888,"date":"2014-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.003,"date":"2014-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2060188097,"date":"2014-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.988,"date":"2014-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2074992713,"date":"2014-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.975,"date":"2014-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2089777735,"date":"2014-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.959,"date":"2014-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2104543163,"date":"2014-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.952,"date":"2014-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2119288998,"date":"2014-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.971,"date":"2014-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.213401524,"date":"2014-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.975,"date":"2014-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2148721888,"date":"2014-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.964,"date":"2014-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2163408942,"date":"2014-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.948,"date":"2014-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2178076404,"date":"2014-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.934,"date":"2014-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2192724271,"date":"2014-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.925,"date":"2014-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2207352546,"date":"2014-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.918,"date":"2014-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2221961226,"date":"2014-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.892,"date":"2014-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2236550314,"date":"2014-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.882,"date":"2014-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2251119807,"date":"2014-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.919,"date":"2014-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2265669708,"date":"2014-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.92,"date":"2014-06-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2280200015,"date":"2014-06-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.913,"date":"2014-07-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2294710728,"date":"2014-07-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2014-07-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2309201848,"date":"2014-07-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.869,"date":"2014-07-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2323673375,"date":"2014-07-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.858,"date":"2014-07-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2338125308,"date":"2014-07-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.853,"date":"2014-08-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2352557647,"date":"2014-08-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.843,"date":"2014-08-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2366970393,"date":"2014-08-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.835,"date":"2014-08-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2381363546,"date":"2014-08-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.821,"date":"2014-08-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2395737105,"date":"2014-08-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.814,"date":"2014-09-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2410091071,"date":"2014-09-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.814,"date":"2014-09-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2424425443,"date":"2014-09-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.801,"date":"2014-09-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2438740221,"date":"2014-09-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.778,"date":"2014-09-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2453035407,"date":"2014-09-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.755,"date":"2014-09-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2467310999,"date":"2014-09-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.733,"date":"2014-10-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2481566997,"date":"2014-10-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.698,"date":"2014-10-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2495803402,"date":"2014-10-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.656,"date":"2014-10-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2510020213,"date":"2014-10-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.635,"date":"2014-10-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2524217431,"date":"2014-10-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.623,"date":"2014-11-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2538395055,"date":"2014-11-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.677,"date":"2014-11-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2552553086,"date":"2014-11-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.661,"date":"2014-11-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2566691524,"date":"2014-11-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.628,"date":"2014-11-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2580810368,"date":"2014-11-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.605,"date":"2014-12-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2594909618,"date":"2014-12-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.535,"date":"2014-12-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2608989276,"date":"2014-12-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.419,"date":"2014-12-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2623049339,"date":"2014-12-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.281,"date":"2014-12-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2637089809,"date":"2014-12-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.213,"date":"2014-12-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2651110686,"date":"2014-12-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.137,"date":"2015-01-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2665111969,"date":"2015-01-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.053,"date":"2015-01-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2679093659,"date":"2015-01-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.933,"date":"2015-01-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2693055755,"date":"2015-01-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.866,"date":"2015-01-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2706998258,"date":"2015-01-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.831,"date":"2015-02-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2720921167,"date":"2015-02-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.835,"date":"2015-02-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2734824483,"date":"2015-02-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.865,"date":"2015-02-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2748708206,"date":"2015-02-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.9,"date":"2015-02-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2762572335,"date":"2015-02-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.936,"date":"2015-03-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.277641687,"date":"2015-03-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.944,"date":"2015-03-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2790241812,"date":"2015-03-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.917,"date":"2015-03-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2804047161,"date":"2015-03-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.864,"date":"2015-03-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2817832916,"date":"2015-03-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.824,"date":"2015-03-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2831599077,"date":"2015-03-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.784,"date":"2015-04-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2845345645,"date":"2015-04-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.754,"date":"2015-04-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.285907262,"date":"2015-04-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.78,"date":"2015-04-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2872780001,"date":"2015-04-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.811,"date":"2015-04-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2886467789,"date":"2015-04-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.854,"date":"2015-05-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2900135983,"date":"2015-05-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.878,"date":"2015-05-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2913784584,"date":"2015-05-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.904,"date":"2015-05-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2927413591,"date":"2015-05-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.914,"date":"2015-05-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2941023005,"date":"2015-05-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.909,"date":"2015-06-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2954612825,"date":"2015-06-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.884,"date":"2015-06-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2968183052,"date":"2015-06-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.87,"date":"2015-06-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2981733686,"date":"2015-06-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.859,"date":"2015-06-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.2995264725,"date":"2015-06-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.843,"date":"2015-06-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3008776172,"date":"2015-06-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.832,"date":"2015-07-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3022268025,"date":"2015-07-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.814,"date":"2015-07-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3035740285,"date":"2015-07-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.782,"date":"2015-07-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3049192951,"date":"2015-07-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.723,"date":"2015-07-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3062626023,"date":"2015-07-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.668,"date":"2015-08-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3076039502,"date":"2015-08-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.617,"date":"2015-08-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3089433388,"date":"2015-08-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.615,"date":"2015-08-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.310280768,"date":"2015-08-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.561,"date":"2015-08-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3116162379,"date":"2015-08-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.514,"date":"2015-08-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3129497484,"date":"2015-08-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.534,"date":"2015-09-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3142812996,"date":"2015-09-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.517,"date":"2015-09-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3156108914,"date":"2015-09-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.493,"date":"2015-09-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3169385239,"date":"2015-09-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.476,"date":"2015-09-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.318264197,"date":"2015-09-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.492,"date":"2015-10-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3195879108,"date":"2015-10-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.556,"date":"2015-10-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3209096653,"date":"2015-10-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.531,"date":"2015-10-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3222294604,"date":"2015-10-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.498,"date":"2015-10-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3235472961,"date":"2015-10-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.485,"date":"2015-11-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3248631725,"date":"2015-11-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.502,"date":"2015-11-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3261770896,"date":"2015-11-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.482,"date":"2015-11-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3274890473,"date":"2015-11-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.445,"date":"2015-11-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3287990457,"date":"2015-11-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.421,"date":"2015-11-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3301070847,"date":"2015-11-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.379,"date":"2015-12-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3314131643,"date":"2015-12-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.338,"date":"2015-12-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3327172847,"date":"2015-12-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.284,"date":"2015-12-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3340194456,"date":"2015-12-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.237,"date":"2015-12-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3353196473,"date":"2015-12-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.211,"date":"2016-01-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3366178895,"date":"2016-01-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.177,"date":"2016-01-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3379141725,"date":"2016-01-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.112,"date":"2016-01-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3392084961,"date":"2016-01-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.071,"date":"2016-01-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3405008603,"date":"2016-01-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.031,"date":"2016-02-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3417912652,"date":"2016-02-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.008,"date":"2016-02-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3430797107,"date":"2016-02-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.98,"date":"2016-02-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3443661969,"date":"2016-02-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.983,"date":"2016-02-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3456507238,"date":"2016-02-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":1.989,"date":"2016-02-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3469332913,"date":"2016-02-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.021,"date":"2016-03-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3482138995,"date":"2016-03-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.099,"date":"2016-03-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3494925483,"date":"2016-03-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.119,"date":"2016-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3507692377,"date":"2016-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.121,"date":"2016-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3520439679,"date":"2016-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.115,"date":"2016-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3533167386,"date":"2016-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.128,"date":"2016-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.35458755,"date":"2016-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.165,"date":"2016-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3558564021,"date":"2016-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.198,"date":"2016-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3571232949,"date":"2016-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.266,"date":"2016-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3583882282,"date":"2016-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.271,"date":"2016-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3596512023,"date":"2016-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.297,"date":"2016-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.360912217,"date":"2016-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.357,"date":"2016-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3621712723,"date":"2016-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.382,"date":"2016-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3634283683,"date":"2016-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.407,"date":"2016-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3646835049,"date":"2016-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.431,"date":"2016-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3659366822,"date":"2016-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.426,"date":"2016-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3671879002,"date":"2016-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.426,"date":"2016-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3684371588,"date":"2016-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.423,"date":"2016-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3696844581,"date":"2016-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.414,"date":"2016-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.370929798,"date":"2016-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.402,"date":"2016-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3721731785,"date":"2016-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.379,"date":"2016-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3734145998,"date":"2016-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.348,"date":"2016-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3746540616,"date":"2016-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.316,"date":"2016-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3758915642,"date":"2016-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.31,"date":"2016-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3771271073,"date":"2016-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.37,"date":"2016-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3783606912,"date":"2016-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.409,"date":"2016-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3795923157,"date":"2016-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.407,"date":"2016-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3808219808,"date":"2016-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.399,"date":"2016-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3820496866,"date":"2016-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.389,"date":"2016-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.383275433,"date":"2016-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.382,"date":"2016-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3844992201,"date":"2016-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.389,"date":"2016-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3857210479,"date":"2016-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.445,"date":"2016-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3869409163,"date":"2016-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.481,"date":"2016-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3881588253,"date":"2016-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.478,"date":"2016-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.389374775,"date":"2016-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.479,"date":"2016-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3905887654,"date":"2016-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.47,"date":"2016-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3918007964,"date":"2016-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.443,"date":"2016-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3930108681,"date":"2016-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.421,"date":"2016-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3942189804,"date":"2016-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.42,"date":"2016-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3954251334,"date":"2016-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.48,"date":"2016-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.396629327,"date":"2016-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.493,"date":"2016-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3978315613,"date":"2016-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.527,"date":"2016-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.3990318362,"date":"2016-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.54,"date":"2016-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4002301518,"date":"2016-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.586,"date":"2017-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4014265081,"date":"2017-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.597,"date":"2017-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4026209049,"date":"2017-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.585,"date":"2017-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4038133425,"date":"2017-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.569,"date":"2017-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4050038207,"date":"2017-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.562,"date":"2017-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4061923395,"date":"2017-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.558,"date":"2017-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.407378899,"date":"2017-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.565,"date":"2017-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4085634992,"date":"2017-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.572,"date":"2017-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.40974614,"date":"2017-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.577,"date":"2017-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4109268215,"date":"2017-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.579,"date":"2017-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4121055436,"date":"2017-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.564,"date":"2017-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4132823064,"date":"2017-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.539,"date":"2017-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4144571098,"date":"2017-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.532,"date":"2017-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4156299539,"date":"2017-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.556,"date":"2017-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4168008386,"date":"2017-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.582,"date":"2017-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.417969764,"date":"2017-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.597,"date":"2017-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.41913673,"date":"2017-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.595,"date":"2017-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4203017367,"date":"2017-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.583,"date":"2017-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.421464784,"date":"2017-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.565,"date":"2017-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.422625872,"date":"2017-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.544,"date":"2017-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4237850007,"date":"2017-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.539,"date":"2017-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.42494217,"date":"2017-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.571,"date":"2017-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4260973799,"date":"2017-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.564,"date":"2017-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4272506305,"date":"2017-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.524,"date":"2017-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4284019218,"date":"2017-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.489,"date":"2017-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4295512537,"date":"2017-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.465,"date":"2017-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4306986263,"date":"2017-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.472,"date":"2017-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4318440395,"date":"2017-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.481,"date":"2017-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4329874934,"date":"2017-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.491,"date":"2017-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4341289879,"date":"2017-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.507,"date":"2017-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4352685231,"date":"2017-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.531,"date":"2017-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4364060989,"date":"2017-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.581,"date":"2017-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4375417154,"date":"2017-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.598,"date":"2017-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4386753725,"date":"2017-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.596,"date":"2017-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4398070703,"date":"2017-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.605,"date":"2017-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4409368088,"date":"2017-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.758,"date":"2017-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4420645879,"date":"2017-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.802,"date":"2017-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4431904076,"date":"2017-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.791,"date":"2017-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.444314268,"date":"2017-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.788,"date":"2017-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4454361691,"date":"2017-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.792,"date":"2017-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4465561108,"date":"2017-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.776,"date":"2017-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4476740931,"date":"2017-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.787,"date":"2017-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4487901162,"date":"2017-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.797,"date":"2017-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4499041798,"date":"2017-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.819,"date":"2017-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4510162842,"date":"2017-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.882,"date":"2017-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4521264291,"date":"2017-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.915,"date":"2017-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4532346148,"date":"2017-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.912,"date":"2017-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.454340841,"date":"2017-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.926,"date":"2017-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.455445108,"date":"2017-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.922,"date":"2017-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4565474156,"date":"2017-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.91,"date":"2017-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4576477638,"date":"2017-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.901,"date":"2017-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4587461527,"date":"2017-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.903,"date":"2017-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4598425822,"date":"2017-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.973,"date":"2018-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4609370524,"date":"2018-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.996,"date":"2018-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4620295633,"date":"2018-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.028,"date":"2018-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4631201148,"date":"2018-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.025,"date":"2018-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4642087069,"date":"2018-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.07,"date":"2018-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4652953398,"date":"2018-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.086,"date":"2018-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4663800132,"date":"2018-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.063,"date":"2018-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4674627273,"date":"2018-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.027,"date":"2018-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4685434821,"date":"2018-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.007,"date":"2018-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4696222775,"date":"2018-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.992,"date":"2018-03-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4706991136,"date":"2018-03-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.976,"date":"2018-03-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4717739903,"date":"2018-03-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.972,"date":"2018-03-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4728469077,"date":"2018-03-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.01,"date":"2018-03-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4739178658,"date":"2018-03-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.042,"date":"2018-04-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4749868644,"date":"2018-04-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.043,"date":"2018-04-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4760539038,"date":"2018-04-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.104,"date":"2018-04-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4771189838,"date":"2018-04-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.133,"date":"2018-04-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4781821044,"date":"2018-04-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.157,"date":"2018-04-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4792432657,"date":"2018-04-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.171,"date":"2018-05-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4803024677,"date":"2018-05-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.239,"date":"2018-05-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4813597103,"date":"2018-05-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.277,"date":"2018-05-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4824149936,"date":"2018-05-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.288,"date":"2018-05-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4834683175,"date":"2018-05-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.285,"date":"2018-06-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.484519682,"date":"2018-06-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.266,"date":"2018-06-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4855690873,"date":"2018-06-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.244,"date":"2018-06-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4866165331,"date":"2018-06-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.216,"date":"2018-06-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4876620197,"date":"2018-06-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.236,"date":"2018-07-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4887055468,"date":"2018-07-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.243,"date":"2018-07-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4897471147,"date":"2018-07-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.239,"date":"2018-07-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4907867231,"date":"2018-07-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.22,"date":"2018-07-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4918243723,"date":"2018-07-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.226,"date":"2018-07-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4928600621,"date":"2018-07-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.223,"date":"2018-08-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4938937925,"date":"2018-08-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.217,"date":"2018-08-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4949255636,"date":"2018-08-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.207,"date":"2018-08-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4959553754,"date":"2018-08-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.226,"date":"2018-08-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4969832278,"date":"2018-08-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.252,"date":"2018-09-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4980091208,"date":"2018-09-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.258,"date":"2018-09-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.4990330545,"date":"2018-09-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.268,"date":"2018-09-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5000550289,"date":"2018-09-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.271,"date":"2018-09-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5010750439,"date":"2018-09-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.313,"date":"2018-10-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5020930996,"date":"2018-10-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.385,"date":"2018-10-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5031091959,"date":"2018-10-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.394,"date":"2018-10-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5041233329,"date":"2018-10-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.38,"date":"2018-10-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5051355105,"date":"2018-10-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.355,"date":"2018-10-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5061457288,"date":"2018-10-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.338,"date":"2018-11-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5071539877,"date":"2018-11-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.317,"date":"2018-11-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5081602873,"date":"2018-11-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.282,"date":"2018-11-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5091646275,"date":"2018-11-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.261,"date":"2018-11-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5101670084,"date":"2018-11-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.207,"date":"2018-12-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.51116743,"date":"2018-12-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.161,"date":"2018-12-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5121658922,"date":"2018-12-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.121,"date":"2018-12-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.513162395,"date":"2018-12-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.077,"date":"2018-12-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5141569385,"date":"2018-12-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.048,"date":"2018-12-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5151495227,"date":"2018-12-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.013,"date":"2019-01-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5161401475,"date":"2019-01-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.976,"date":"2019-01-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.517128813,"date":"2019-01-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.965,"date":"2019-01-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5181155191,"date":"2019-01-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.965,"date":"2019-01-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5191002659,"date":"2019-01-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.966,"date":"2019-02-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5200830533,"date":"2019-02-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.966,"date":"2019-02-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5210638814,"date":"2019-02-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.006,"date":"2019-02-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5220427501,"date":"2019-02-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.048,"date":"2019-02-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5230196595,"date":"2019-02-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.076,"date":"2019-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5239946095,"date":"2019-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.079,"date":"2019-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5249676002,"date":"2019-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.07,"date":"2019-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5259386315,"date":"2019-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.08,"date":"2019-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5269077035,"date":"2019-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.078,"date":"2019-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5278748162,"date":"2019-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.093,"date":"2019-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5288399695,"date":"2019-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.118,"date":"2019-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5298031634,"date":"2019-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.147,"date":"2019-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.530764398,"date":"2019-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.169,"date":"2019-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5317236733,"date":"2019-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.171,"date":"2019-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5326809892,"date":"2019-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.16,"date":"2019-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5336363458,"date":"2019-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.163,"date":"2019-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.534589743,"date":"2019-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.151,"date":"2019-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5355411809,"date":"2019-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.136,"date":"2019-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5364906594,"date":"2019-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.105,"date":"2019-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5374381786,"date":"2019-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.07,"date":"2019-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5383837384,"date":"2019-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.043,"date":"2019-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5393273389,"date":"2019-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.042,"date":"2019-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.54026898,"date":"2019-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.055,"date":"2019-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5412086618,"date":"2019-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.051,"date":"2019-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5421463843,"date":"2019-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.044,"date":"2019-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5430821474,"date":"2019-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.034,"date":"2019-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5440159511,"date":"2019-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.032,"date":"2019-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5449477955,"date":"2019-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.011,"date":"2019-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5458776806,"date":"2019-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.994,"date":"2019-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5468056063,"date":"2019-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.983,"date":"2019-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5477315726,"date":"2019-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.976,"date":"2019-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5486555797,"date":"2019-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.971,"date":"2019-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5495776273,"date":"2019-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.987,"date":"2019-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5504977156,"date":"2019-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.081,"date":"2019-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5514158446,"date":"2019-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.066,"date":"2019-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5523320142,"date":"2019-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.047,"date":"2019-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5532462245,"date":"2019-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.051,"date":"2019-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5541584755,"date":"2019-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.05,"date":"2019-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.555068767,"date":"2019-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.064,"date":"2019-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5559770993,"date":"2019-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.062,"date":"2019-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5568834722,"date":"2019-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.073,"date":"2019-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5577878857,"date":"2019-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.074,"date":"2019-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5586903399,"date":"2019-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.066,"date":"2019-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5595908348,"date":"2019-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.07,"date":"2019-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5604893703,"date":"2019-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.049,"date":"2019-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5613859464,"date":"2019-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.046,"date":"2019-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5622805633,"date":"2019-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.041,"date":"2019-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5631732207,"date":"2019-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.069,"date":"2019-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5640639188,"date":"2019-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.079,"date":"2020-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5649526576,"date":"2020-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.064,"date":"2020-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.565839437,"date":"2020-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.037,"date":"2020-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5667242571,"date":"2020-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.01,"date":"2020-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5676071178,"date":"2020-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.956,"date":"2020-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5684880192,"date":"2020-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.91,"date":"2020-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5693669613,"date":"2020-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.89,"date":"2020-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5702439439,"date":"2020-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.882,"date":"2020-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5711189673,"date":"2020-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.851,"date":"2020-03-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5719920313,"date":"2020-03-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.814,"date":"2020-03-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5728631359,"date":"2020-03-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.733,"date":"2020-03-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5737322812,"date":"2020-03-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.659,"date":"2020-03-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5745994672,"date":"2020-03-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.586,"date":"2020-03-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5754646938,"date":"2020-03-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.548,"date":"2020-04-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.576327961,"date":"2020-04-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.507,"date":"2020-04-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.577189269,"date":"2020-04-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.48,"date":"2020-04-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5780486175,"date":"2020-04-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.437,"date":"2020-04-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5789060067,"date":"2020-04-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.399,"date":"2020-05-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5797614366,"date":"2020-05-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.394,"date":"2020-05-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5806149071,"date":"2020-05-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.386,"date":"2020-05-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5814664183,"date":"2020-05-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.39,"date":"2020-05-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5823159702,"date":"2020-05-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.386,"date":"2020-06-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5831635626,"date":"2020-06-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.396,"date":"2020-06-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5840091958,"date":"2020-06-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.403,"date":"2020-06-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5848528696,"date":"2020-06-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.425,"date":"2020-06-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.585694584,"date":"2020-06-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.43,"date":"2020-06-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5865343391,"date":"2020-06-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.437,"date":"2020-07-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5873721349,"date":"2020-07-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.438,"date":"2020-07-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5882079713,"date":"2020-07-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.433,"date":"2020-07-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5890418483,"date":"2020-07-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.427,"date":"2020-07-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.589873766,"date":"2020-07-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.424,"date":"2020-08-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5907037244,"date":"2020-08-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.428,"date":"2020-08-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5915317234,"date":"2020-08-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.427,"date":"2020-08-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5923577631,"date":"2020-08-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.426,"date":"2020-08-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5931818434,"date":"2020-08-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.441,"date":"2020-08-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5940039644,"date":"2020-08-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.435,"date":"2020-09-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.594824126,"date":"2020-09-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.422,"date":"2020-09-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5956423283,"date":"2020-09-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.404,"date":"2020-09-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5964585712,"date":"2020-09-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.394,"date":"2020-09-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5972728548,"date":"2020-09-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.387,"date":"2020-10-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.598085179,"date":"2020-10-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.395,"date":"2020-10-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5988955439,"date":"2020-10-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.388,"date":"2020-10-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.5997039495,"date":"2020-10-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.385,"date":"2020-10-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6005103957,"date":"2020-10-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.372,"date":"2020-11-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6013148825,"date":"2020-11-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.383,"date":"2020-11-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.60211741,"date":"2020-11-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.441,"date":"2020-11-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6029179782,"date":"2020-11-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.462,"date":"2020-11-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.603716587,"date":"2020-11-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.502,"date":"2020-11-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6045132365,"date":"2020-11-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.526,"date":"2020-12-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6053079266,"date":"2020-12-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.559,"date":"2020-12-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6061006573,"date":"2020-12-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.619,"date":"2020-12-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6068914288,"date":"2020-12-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.635,"date":"2020-12-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6076802408,"date":"2020-12-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.64,"date":"2021-01-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6084670936,"date":"2021-01-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.67,"date":"2021-01-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.609251987,"date":"2021-01-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.696,"date":"2021-01-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.610034921,"date":"2021-01-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.716,"date":"2021-01-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6108158957,"date":"2021-01-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.738,"date":"2021-02-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.611594911,"date":"2021-02-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.801,"date":"2021-02-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.612371967,"date":"2021-02-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.876,"date":"2021-02-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6131470637,"date":"2021-02-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":2.973,"date":"2021-02-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.613920201,"date":"2021-02-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.072,"date":"2021-03-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6146913789,"date":"2021-03-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.143,"date":"2021-03-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6154605975,"date":"2021-03-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.191,"date":"2021-03-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6162278568,"date":"2021-03-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.194,"date":"2021-03-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6169931567,"date":"2021-03-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.161,"date":"2021-03-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6177564973,"date":"2021-03-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.144,"date":"2021-04-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6185178785,"date":"2021-04-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.129,"date":"2021-04-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6192773004,"date":"2021-04-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.124,"date":"2021-04-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6200347629,"date":"2021-04-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.124,"date":"2021-04-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6207902661,"date":"2021-04-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.142,"date":"2021-05-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6215438099,"date":"2021-05-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.186,"date":"2021-05-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6222953944,"date":"2021-05-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.249,"date":"2021-05-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6230450195,"date":"2021-05-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.253,"date":"2021-05-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6237926853,"date":"2021-05-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.255,"date":"2021-05-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6245383918,"date":"2021-05-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.274,"date":"2021-06-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6252821389,"date":"2021-06-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.286,"date":"2021-06-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6260239266,"date":"2021-06-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.287,"date":"2021-06-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.626763755,"date":"2021-06-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.3,"date":"2021-06-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6275016241,"date":"2021-06-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.331,"date":"2021-07-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6282375338,"date":"2021-07-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.338,"date":"2021-07-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6289714841,"date":"2021-07-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.344,"date":"2021-07-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6297034751,"date":"2021-07-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.342,"date":"2021-07-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6304335068,"date":"2021-07-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.367,"date":"2021-08-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6311615791,"date":"2021-08-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.364,"date":"2021-08-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6318876921,"date":"2021-08-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.356,"date":"2021-08-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6326118457,"date":"2021-08-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.324,"date":"2021-08-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.63333404,"date":"2021-08-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.339,"date":"2021-08-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.634054275,"date":"2021-08-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.373,"date":"2021-09-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6347725505,"date":"2021-09-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.372,"date":"2021-09-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6354888668,"date":"2021-09-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.385,"date":"2021-09-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6362032237,"date":"2021-09-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.406,"date":"2021-09-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6369156212,"date":"2021-09-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.477,"date":"2021-10-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6376260594,"date":"2021-10-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.586,"date":"2021-10-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6383345383,"date":"2021-10-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.671,"date":"2021-10-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6390410578,"date":"2021-10-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.713,"date":"2021-10-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6397456179,"date":"2021-10-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.727,"date":"2021-11-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6404482187,"date":"2021-11-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.73,"date":"2021-11-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6411488602,"date":"2021-11-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.734,"date":"2021-11-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6418475423,"date":"2021-11-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.724,"date":"2021-11-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6425442651,"date":"2021-11-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.72,"date":"2021-11-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6432390285,"date":"2021-11-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.674,"date":"2021-12-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6439318326,"date":"2021-12-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.649,"date":"2021-12-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6446226773,"date":"2021-12-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.626,"date":"2021-12-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6453115627,"date":"2021-12-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.615,"date":"2021-12-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6459984887,"date":"2021-12-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.613,"date":"2022-01-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6466834554,"date":"2022-01-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.657,"date":"2022-01-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6473664628,"date":"2022-01-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.725,"date":"2022-01-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6480475108,"date":"2022-01-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.78,"date":"2022-01-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6487265994,"date":"2022-01-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.846,"date":"2022-01-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6494037287,"date":"2022-01-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.951,"date":"2022-02-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6500788987,"date":"2022-02-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.019,"date":"2022-02-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6507521093,"date":"2022-02-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.055,"date":"2022-02-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6514233605,"date":"2022-02-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.104,"date":"2022-02-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6520926525,"date":"2022-02-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.849,"date":"2022-03-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.652759985,"date":"2022-03-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.25,"date":"2022-03-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6534253582,"date":"2022-03-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.134,"date":"2022-03-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6540887721,"date":"2022-03-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.185,"date":"2022-03-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6547502266,"date":"2022-03-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.144,"date":"2022-04-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6554097218,"date":"2022-04-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.073,"date":"2022-04-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6560672576,"date":"2022-04-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.101,"date":"2022-04-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6567228341,"date":"2022-04-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.16,"date":"2022-04-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6573764513,"date":"2022-04-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.509,"date":"2022-05-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6580281091,"date":"2022-05-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.623,"date":"2022-05-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6586778075,"date":"2022-05-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.613,"date":"2022-05-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6593255466,"date":"2022-05-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.571,"date":"2022-05-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6599713263,"date":"2022-05-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.539,"date":"2022-05-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6606151468,"date":"2022-05-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.703,"date":"2022-06-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6612570078,"date":"2022-06-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.718,"date":"2022-06-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6618969095,"date":"2022-06-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.81,"date":"2022-06-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6625348519,"date":"2022-06-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.783,"date":"2022-06-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6631708349,"date":"2022-06-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.675,"date":"2022-07-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6638048586,"date":"2022-07-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.568,"date":"2022-07-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6644369229,"date":"2022-07-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.432,"date":"2022-07-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6650670279,"date":"2022-07-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.268,"date":"2022-07-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6656951735,"date":"2022-07-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.138,"date":"2022-08-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6663213598,"date":"2022-08-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.993,"date":"2022-08-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6669455867,"date":"2022-08-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.911,"date":"2022-08-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6675678543,"date":"2022-08-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.909,"date":"2022-08-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6681881625,"date":"2022-08-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.115,"date":"2022-08-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6688065114,"date":"2022-08-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.084,"date":"2022-09-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.669422901,"date":"2022-09-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.033,"date":"2022-09-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6700373312,"date":"2022-09-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.964,"date":"2022-09-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.670649802,"date":"2022-09-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.889,"date":"2022-09-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6712603135,"date":"2022-09-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.836,"date":"2022-10-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6718688657,"date":"2022-10-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.224,"date":"2022-10-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6724754585,"date":"2022-10-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.339,"date":"2022-10-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.673080092,"date":"2022-10-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.341,"date":"2022-10-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6736827661,"date":"2022-10-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.317,"date":"2022-10-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6742834808,"date":"2022-10-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.333,"date":"2022-11-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6748822363,"date":"2022-11-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.313,"date":"2022-11-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6754790323,"date":"2022-11-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.233,"date":"2022-11-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6760738691,"date":"2022-11-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":5.141,"date":"2022-11-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6766667465,"date":"2022-11-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.967,"date":"2022-12-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6772576645,"date":"2022-12-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.754,"date":"2022-12-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6778466232,"date":"2022-12-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.596,"date":"2022-12-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6784336225,"date":"2022-12-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.537,"date":"2022-12-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6790186625,"date":"2022-12-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.583,"date":"2023-01-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6796017432,"date":"2023-01-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.549,"date":"2023-01-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6801828645,"date":"2023-01-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.524,"date":"2023-01-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6807620264,"date":"2023-01-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.604,"date":"2023-01-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.681339229,"date":"2023-01-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.622,"date":"2023-01-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6819144723,"date":"2023-01-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.539,"date":"2023-02-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6824877562,"date":"2023-02-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.444,"date":"2023-02-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6830590808,"date":"2023-02-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.376,"date":"2023-02-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.683628446,"date":"2023-02-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.294,"date":"2023-02-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6841958519,"date":"2023-02-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.282,"date":"2023-03-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6847612984,"date":"2023-03-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.247,"date":"2023-03-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6853247856,"date":"2023-03-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.185,"date":"2023-03-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6858863134,"date":"2023-03-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.128,"date":"2023-03-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6864458819,"date":"2023-03-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.105,"date":"2023-04-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.687003491,"date":"2023-04-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.098,"date":"2023-04-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6875591408,"date":"2023-04-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.116,"date":"2023-04-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6881128312,"date":"2023-04-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.077,"date":"2023-04-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6886645623,"date":"2023-04-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.018,"date":"2023-05-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6892143341,"date":"2023-05-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.922,"date":"2023-05-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6897621465,"date":"2023-05-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.897,"date":"2023-05-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6903079996,"date":"2023-05-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.883,"date":"2023-05-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6908518933,"date":"2023-05-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.855,"date":"2023-05-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6913938276,"date":"2023-05-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.797,"date":"2023-06-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6919338026,"date":"2023-06-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.794,"date":"2023-06-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6924718183,"date":"2023-06-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.815,"date":"2023-06-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6930078746,"date":"2023-06-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.801,"date":"2023-06-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6935419716,"date":"2023-06-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.767,"date":"2023-07-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6940741092,"date":"2023-07-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.806,"date":"2023-07-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6946042875,"date":"2023-07-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.806,"date":"2023-07-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6951325064,"date":"2023-07-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.905,"date":"2023-07-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.695658766,"date":"2023-07-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.127,"date":"2023-07-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6961830663,"date":"2023-07-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.239,"date":"2023-08-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6967054072,"date":"2023-08-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.378,"date":"2023-08-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6972257887,"date":"2023-08-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.389,"date":"2023-08-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6977442109,"date":"2023-08-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.475,"date":"2023-08-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6982606738,"date":"2023-08-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.492,"date":"2023-09-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6987751773,"date":"2023-09-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.54,"date":"2023-09-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6992877214,"date":"2023-09-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.633,"date":"2023-09-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.6997983062,"date":"2023-09-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.586,"date":"2023-09-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7003069317,"date":"2023-09-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.593,"date":"2023-10-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7008135978,"date":"2023-10-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.498,"date":"2023-10-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7013183046,"date":"2023-10-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.444,"date":"2023-10-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.701821052,"date":"2023-10-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.545,"date":"2023-10-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7023218401,"date":"2023-10-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.454,"date":"2023-10-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7028206688,"date":"2023-10-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.366,"date":"2023-11-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7033175382,"date":"2023-11-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.294,"date":"2023-11-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7038124482,"date":"2023-11-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.209,"date":"2023-11-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7043053989,"date":"2023-11-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.146,"date":"2023-11-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7047963903,"date":"2023-11-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.092,"date":"2023-12-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7052854223,"date":"2023-12-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.987,"date":"2023-12-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7057724949,"date":"2023-12-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2023-12-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7062576082,"date":"2023-12-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.914,"date":"2023-12-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7067407622,"date":"2023-12-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.876,"date":"2024-01-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7072219568,"date":"2024-01-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.828,"date":"2024-01-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.707701192,"date":"2024-01-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.863,"date":"2024-01-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7081784679,"date":"2024-01-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.838,"date":"2024-01-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7086537845,"date":"2024-01-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.867,"date":"2024-01-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7091271417,"date":"2024-01-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.899,"date":"2024-02-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7095985396,"date":"2024-02-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.109,"date":"2024-02-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7100679781,"date":"2024-02-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.109,"date":"2024-02-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7105354573,"date":"2024-02-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.058,"date":"2024-02-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7110009771,"date":"2024-02-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.022,"date":"2024-03-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7114645376,"date":"2024-03-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.004,"date":"2024-03-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7119261388,"date":"2024-03-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.028,"date":"2024-03-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7123857806,"date":"2024-03-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.034,"date":"2024-03-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.712843463,"date":"2024-03-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.996,"date":"2024-04-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7132991861,"date":"2024-04-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.061,"date":"2024-04-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7137529498,"date":"2024-04-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":4.015,"date":"2024-04-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7142047542,"date":"2024-04-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.992,"date":"2024-04-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7146545993,"date":"2024-04-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.947,"date":"2024-04-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.715102485,"date":"2024-04-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.894,"date":"2024-05-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7155484114,"date":"2024-05-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.848,"date":"2024-05-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7159923784,"date":"2024-05-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.789,"date":"2024-05-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7164343861,"date":"2024-05-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.758,"date":"2024-05-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7168744344,"date":"2024-05-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.726,"date":"2024-06-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7173125234,"date":"2024-06-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.658,"date":"2024-06-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.717748653,"date":"2024-06-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.735,"date":"2024-06-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7181828233,"date":"2024-06-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.769,"date":"2024-06-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7186150342,"date":"2024-06-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.813,"date":"2024-07-01","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7190452858,"date":"2024-07-01","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.865,"date":"2024-07-08","fuel":"diesel","is_predicted":"original"},{"avg_price":3.719473578,"date":"2024-07-08","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.826,"date":"2024-07-15","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7198999109,"date":"2024-07-15","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.779,"date":"2024-07-22","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7203242845,"date":"2024-07-22","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.768,"date":"2024-07-29","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7207466987,"date":"2024-07-29","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.755,"date":"2024-08-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7211671535,"date":"2024-08-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.704,"date":"2024-08-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.721585649,"date":"2024-08-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.688,"date":"2024-08-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7220021852,"date":"2024-08-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.651,"date":"2024-08-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.722416762,"date":"2024-08-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.625,"date":"2024-09-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7228293794,"date":"2024-09-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.555,"date":"2024-09-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7232400376,"date":"2024-09-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.526,"date":"2024-09-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7236487363,"date":"2024-09-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.539,"date":"2024-09-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7240554758,"date":"2024-09-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.544,"date":"2024-09-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7244602558,"date":"2024-09-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.584,"date":"2024-10-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7248630766,"date":"2024-10-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.631,"date":"2024-10-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7252639379,"date":"2024-10-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.553,"date":"2024-10-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.72566284,"date":"2024-10-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.573,"date":"2024-10-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7260597827,"date":"2024-10-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.536,"date":"2024-11-04","fuel":"diesel","is_predicted":"original"},{"avg_price":3.726454766,"date":"2024-11-04","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.521,"date":"2024-11-11","fuel":"diesel","is_predicted":"original"},{"avg_price":3.72684779,"date":"2024-11-11","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.491,"date":"2024-11-18","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7272388547,"date":"2024-11-18","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.539,"date":"2024-11-25","fuel":"diesel","is_predicted":"original"},{"avg_price":3.72762796,"date":"2024-11-25","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.54,"date":"2024-12-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7280151059,"date":"2024-12-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.458,"date":"2024-12-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7284002925,"date":"2024-12-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.494,"date":"2024-12-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7287835198,"date":"2024-12-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.476,"date":"2024-12-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7291647877,"date":"2024-12-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.503,"date":"2024-12-30","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7295440963,"date":"2024-12-30","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.561,"date":"2025-01-06","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7299214455,"date":"2025-01-06","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.602,"date":"2025-01-13","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7302968354,"date":"2025-01-13","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.715,"date":"2025-01-20","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7306702659,"date":"2025-01-20","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.659,"date":"2025-01-27","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7310417371,"date":"2025-01-27","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.66,"date":"2025-02-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7314112489,"date":"2025-02-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.665,"date":"2025-02-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7317788014,"date":"2025-02-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.677,"date":"2025-02-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7321443945,"date":"2025-02-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.697,"date":"2025-02-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7325080283,"date":"2025-02-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.635,"date":"2025-03-03","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7328697027,"date":"2025-03-03","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.582,"date":"2025-03-10","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7332294178,"date":"2025-03-10","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.549,"date":"2025-03-17","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7335871736,"date":"2025-03-17","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.567,"date":"2025-03-24","fuel":"diesel","is_predicted":"original"},{"avg_price":3.73394297,"date":"2025-03-24","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.592,"date":"2025-03-31","fuel":"diesel","is_predicted":"original"},{"avg_price":3.734296807,"date":"2025-03-31","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.639,"date":"2025-04-07","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7346486848,"date":"2025-04-07","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.579,"date":"2025-04-14","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7349986031,"date":"2025-04-14","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.534,"date":"2025-04-21","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7353465621,"date":"2025-04-21","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.514,"date":"2025-04-28","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7356925618,"date":"2025-04-28","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.497,"date":"2025-05-05","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7360366021,"date":"2025-05-05","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.476,"date":"2025-05-12","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7363786831,"date":"2025-05-12","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.536,"date":"2025-05-19","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7367188047,"date":"2025-05-19","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.487,"date":"2025-05-26","fuel":"diesel","is_predicted":"original"},{"avg_price":3.737056967,"date":"2025-05-26","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.451,"date":"2025-06-02","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7373931699,"date":"2025-06-02","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.471,"date":"2025-06-09","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7377274135,"date":"2025-06-09","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.571,"date":"2025-06-16","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7380596978,"date":"2025-06-16","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.775,"date":"2025-06-23","fuel":"diesel","is_predicted":"original"},{"avg_price":3.7383900227,"date":"2025-06-23","fuel":"diesel","is_predicted":"regression"},{"avg_price":3.7389982849,"date":"2025-07-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7393230117,"date":"2025-07-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7396457791,"date":"2025-07-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7399665871,"date":"2025-07-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7402854359,"date":"2025-08-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7406023252,"date":"2025-08-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7409172553,"date":"2025-08-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7412302259,"date":"2025-08-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7415412373,"date":"2025-08-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7418502892,"date":"2025-09-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7421573819,"date":"2025-09-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7424625152,"date":"2025-09-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7427656891,"date":"2025-09-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7430669037,"date":"2025-10-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.743366159,"date":"2025-10-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7436634549,"date":"2025-10-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7439587914,"date":"2025-10-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7442521686,"date":"2025-11-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7445435865,"date":"2025-11-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.744833045,"date":"2025-11-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7451205442,"date":"2025-11-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.745406084,"date":"2025-11-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7456896645,"date":"2025-12-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7459712856,"date":"2025-12-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7462509474,"date":"2025-12-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7465286498,"date":"2025-12-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7468043929,"date":"2026-01-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7470781766,"date":"2026-01-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.747350001,"date":"2026-01-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7476198661,"date":"2026-01-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7478877718,"date":"2026-02-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7481537181,"date":"2026-02-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7484177051,"date":"2026-02-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7486797328,"date":"2026-02-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7489398011,"date":"2026-03-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.74919791,"date":"2026-03-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7494540597,"date":"2026-03-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7497082499,"date":"2026-03-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7499604808,"date":"2026-03-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7502107524,"date":"2026-04-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7504590646,"date":"2026-04-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7507054175,"date":"2026-04-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7509498111,"date":"2026-04-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7511922452,"date":"2026-05-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7514327201,"date":"2026-05-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7516712356,"date":"2026-05-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7519077917,"date":"2026-05-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7521423885,"date":"2026-05-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.752375026,"date":"2026-06-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7526057041,"date":"2026-06-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7528344228,"date":"2026-06-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7530611823,"date":"2026-06-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7532859823,"date":"2026-07-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.753508823,"date":"2026-07-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7537297044,"date":"2026-07-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7539486264,"date":"2026-07-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7541655891,"date":"2026-08-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7543805924,"date":"2026-08-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7545936364,"date":"2026-08-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7548047211,"date":"2026-08-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7550138463,"date":"2026-08-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7552210123,"date":"2026-09-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7554262189,"date":"2026-09-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7556294661,"date":"2026-09-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.755830754,"date":"2026-09-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7560300826,"date":"2026-10-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7562274518,"date":"2026-10-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7564228617,"date":"2026-10-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7566163122,"date":"2026-10-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7568078033,"date":"2026-11-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7569973352,"date":"2026-11-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7571849076,"date":"2026-11-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7573705208,"date":"2026-11-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7575541745,"date":"2026-11-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.757735869,"date":"2026-12-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7579156041,"date":"2026-12-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7580933798,"date":"2026-12-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7582691962,"date":"2026-12-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7584430532,"date":"2027-01-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7586149509,"date":"2027-01-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7587848893,"date":"2027-01-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7589528683,"date":"2027-01-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7591188879,"date":"2027-01-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7592829482,"date":"2027-02-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7594450492,"date":"2027-02-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7596051908,"date":"2027-02-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7597633731,"date":"2027-02-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.759919596,"date":"2027-03-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7600738596,"date":"2027-03-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7602261638,"date":"2027-03-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7603765087,"date":"2027-03-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7605248942,"date":"2027-04-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7606713204,"date":"2027-04-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7608157873,"date":"2027-04-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7609582948,"date":"2027-04-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7610988429,"date":"2027-05-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7612374317,"date":"2027-05-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7613740612,"date":"2027-05-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7615087313,"date":"2027-05-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.761641442,"date":"2027-05-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7617721934,"date":"2027-06-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7619009855,"date":"2027-06-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7620278182,"date":"2027-06-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7621526916,"date":"2027-06-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7622756056,"date":"2027-07-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7623965603,"date":"2027-07-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7625155556,"date":"2027-07-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7626325916,"date":"2027-07-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7627476682,"date":"2027-08-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7628607855,"date":"2027-08-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7629719435,"date":"2027-08-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7630811421,"date":"2027-08-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7631883813,"date":"2027-08-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7632936612,"date":"2027-09-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7633969818,"date":"2027-09-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.763498343,"date":"2027-09-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7635977448,"date":"2027-09-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7636951874,"date":"2027-10-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7637906705,"date":"2027-10-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7638841943,"date":"2027-10-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7639757588,"date":"2027-10-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7640653639,"date":"2027-10-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7641530097,"date":"2027-11-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7642386961,"date":"2027-11-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7643224232,"date":"2027-11-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.764404191,"date":"2027-11-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7644839994,"date":"2027-12-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7645618484,"date":"2027-12-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7646377381,"date":"2027-12-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7647116685,"date":"2027-12-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7647836395,"date":"2028-01-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7648536511,"date":"2028-01-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7649217034,"date":"2028-01-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7649877964,"date":"2028-01-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.76505193,"date":"2028-01-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7651141043,"date":"2028-02-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7651743192,"date":"2028-02-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7652325748,"date":"2028-02-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.765288871,"date":"2028-02-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7653432079,"date":"2028-03-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7653955854,"date":"2028-03-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7654460036,"date":"2028-03-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7654944624,"date":"2028-03-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7655409619,"date":"2028-04-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7655855021,"date":"2028-04-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7656280829,"date":"2028-04-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7656687043,"date":"2028-04-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7657073664,"date":"2028-04-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7657440692,"date":"2028-05-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7657788126,"date":"2028-05-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7658115967,"date":"2028-05-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7658424214,"date":"2028-05-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7658712868,"date":"2028-06-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7658981928,"date":"2028-06-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659231395,"date":"2028-06-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659461268,"date":"2028-06-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659671548,"date":"2028-07-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659862234,"date":"2028-07-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660033327,"date":"2028-07-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660184826,"date":"2028-07-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660316732,"date":"2028-07-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660429045,"date":"2028-08-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660521764,"date":"2028-08-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660594889,"date":"2028-08-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660648422,"date":"2028-08-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.766068236,"date":"2028-09-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660696705,"date":"2028-09-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660691457,"date":"2028-09-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660666615,"date":"2028-09-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.766062218,"date":"2028-10-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660558151,"date":"2028-10-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660474529,"date":"2028-10-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660371313,"date":"2028-10-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660248504,"date":"2028-10-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7660106101,"date":"2028-11-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659944105,"date":"2028-11-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659762516,"date":"2028-11-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659561333,"date":"2028-11-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659340556,"date":"2028-12-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7659100186,"date":"2028-12-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7658840223,"date":"2028-12-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7658560666,"date":"2028-12-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7658261516,"date":"2028-12-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7657942772,"date":"2029-01-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7657604435,"date":"2029-01-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7657246504,"date":"2029-01-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7656868979,"date":"2029-01-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7656471862,"date":"2029-02-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7656055151,"date":"2029-02-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7655618846,"date":"2029-02-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7655162948,"date":"2029-02-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7654687456,"date":"2029-03-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7654192371,"date":"2029-03-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7653677693,"date":"2029-03-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7653143421,"date":"2029-03-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7652589555,"date":"2029-04-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7652016096,"date":"2029-04-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7651423044,"date":"2029-04-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7650810398,"date":"2029-04-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7650178159,"date":"2029-04-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7649526326,"date":"2029-05-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7648854899,"date":"2029-05-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.764816388,"date":"2029-05-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7647453266,"date":"2029-05-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.764672306,"date":"2029-06-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.764597326,"date":"2029-06-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7645203866,"date":"2029-06-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7644414879,"date":"2029-06-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7643606298,"date":"2029-07-01","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7642778124,"date":"2029-07-08","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7641930357,"date":"2029-07-15","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7641062996,"date":"2029-07-22","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7640176041,"date":"2029-07-29","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7639269493,"date":"2029-08-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7638343352,"date":"2029-08-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7637397617,"date":"2029-08-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7636432289,"date":"2029-08-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7635447367,"date":"2029-09-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7634442852,"date":"2029-09-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7633418743,"date":"2029-09-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7632375041,"date":"2029-09-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7631311745,"date":"2029-09-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7630228856,"date":"2029-10-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7629126373,"date":"2029-10-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7628004297,"date":"2029-10-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7626862628,"date":"2029-10-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7625701365,"date":"2029-11-04","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7624520508,"date":"2029-11-11","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7623320058,"date":"2029-11-18","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7622100015,"date":"2029-11-25","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7620860378,"date":"2029-12-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7619601147,"date":"2029-12-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7618322324,"date":"2029-12-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7617023906,"date":"2029-12-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7615705895,"date":"2029-12-30","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7614368291,"date":"2030-01-06","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7613011094,"date":"2030-01-13","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7611634302,"date":"2030-01-20","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7610237918,"date":"2030-01-27","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.760882194,"date":"2030-02-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7607386368,"date":"2030-02-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7605931203,"date":"2030-02-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7604456444,"date":"2030-02-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7602962092,"date":"2030-03-03","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7601448147,"date":"2030-03-10","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7599914608,"date":"2030-03-17","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7598361476,"date":"2030-03-24","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.759678875,"date":"2030-03-31","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.759519643,"date":"2030-04-07","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7593584517,"date":"2030-04-14","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7591953011,"date":"2030-04-21","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7590301911,"date":"2030-04-28","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7588631218,"date":"2030-05-05","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7586940931,"date":"2030-05-12","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7585231051,"date":"2030-05-19","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7583501578,"date":"2030-05-26","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7581752511,"date":"2030-06-02","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.757998385,"date":"2030-06-09","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7578195596,"date":"2030-06-16","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":3.7576387748,"date":"2030-06-23","fuel":"diesel","is_predicted":"forecasting"},{"avg_price":1.191,"date":"1990-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6232239578,"date":"1990-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.245,"date":"1990-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6257036097,"date":"1990-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.242,"date":"1990-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.628182385,"date":"1990-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.252,"date":"1990-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6306602838,"date":"1990-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.266,"date":"1990-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.633137306,"date":"1990-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.272,"date":"1990-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6356134516,"date":"1990-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.321,"date":"1990-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6380887207,"date":"1990-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.333,"date":"1990-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6405631132,"date":"1990-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.339,"date":"1990-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6430366292,"date":"1990-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.345,"date":"1990-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6455092686,"date":"1990-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.339,"date":"1990-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6479810315,"date":"1990-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.334,"date":"1990-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6504519178,"date":"1990-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.328,"date":"1990-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6529219276,"date":"1990-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.323,"date":"1990-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6553910607,"date":"1990-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.311,"date":"1990-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6578593174,"date":"1990-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.341,"date":"1990-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6603266975,"date":"1990-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.192,"date":"1991-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6775738144,"date":"1991-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.168,"date":"1991-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.680034182,"date":"1991-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.139,"date":"1991-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6824936731,"date":"1991-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1991-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6849522876,"date":"1991-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.078,"date":"1991-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6874100256,"date":"1991-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.054,"date":"1991-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6898668869,"date":"1991-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.025,"date":"1991-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6923228718,"date":"1991-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.045,"date":"1991-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6947779801,"date":"1991-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.043,"date":"1991-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.6972322118,"date":"1991-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.047,"date":"1991-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.699685567,"date":"1991-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.052,"date":"1991-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7021380456,"date":"1991-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.066,"date":"1991-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7045896476,"date":"1991-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.069,"date":"1991-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7070403731,"date":"1991-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.09,"date":"1991-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7094902221,"date":"1991-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.104,"date":"1991-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7119391944,"date":"1991-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.113,"date":"1991-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7143872903,"date":"1991-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.121,"date":"1991-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7168345095,"date":"1991-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.129,"date":"1991-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7192808522,"date":"1991-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.14,"date":"1991-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7217263184,"date":"1991-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.138,"date":"1991-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.724170908,"date":"1991-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.135,"date":"1991-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.726614621,"date":"1991-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.126,"date":"1991-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7290574575,"date":"1991-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.114,"date":"1991-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7314994175,"date":"1991-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.104,"date":"1991-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7339405008,"date":"1991-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.098,"date":"1991-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7363807076,"date":"1991-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.094,"date":"1991-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7388200379,"date":"1991-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7412584916,"date":"1991-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7436960687,"date":"1991-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.099,"date":"1991-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7461327693,"date":"1991-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.112,"date":"1991-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7485685934,"date":"1991-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.124,"date":"1991-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7510035408,"date":"1991-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.124,"date":"1991-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7534376117,"date":"1991-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.127,"date":"1991-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7558708061,"date":"1991-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1991-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7583031239,"date":"1991-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.11,"date":"1991-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7607345652,"date":"1991-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.097,"date":"1991-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7631651298,"date":"1991-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.092,"date":"1991-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.765594818,"date":"1991-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.089,"date":"1991-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7680236295,"date":"1991-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.084,"date":"1991-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7704515646,"date":"1991-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.088,"date":"1991-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.772878623,"date":"1991-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7753048049,"date":"1991-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7777301103,"date":"1991-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.102,"date":"1991-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7801545391,"date":"1991-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.104,"date":"1991-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7825780913,"date":"1991-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.099,"date":"1991-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.785000767,"date":"1991-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.099,"date":"1991-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7874225661,"date":"1991-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.091,"date":"1991-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7898434887,"date":"1991-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.075,"date":"1991-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7922635347,"date":"1991-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.063,"date":"1991-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7946827041,"date":"1991-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.053,"date":"1991-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.797100997,"date":"1991-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.042,"date":"1992-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.7995184133,"date":"1992-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.026,"date":"1992-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8019349531,"date":"1992-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.014,"date":"1992-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8043506163,"date":"1992-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.006,"date":"1992-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.806765403,"date":"1992-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.995,"date":"1992-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8091793131,"date":"1992-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.004,"date":"1992-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8115923467,"date":"1992-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.011,"date":"1992-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8140045037,"date":"1992-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.014,"date":"1992-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8164157841,"date":"1992-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.012,"date":"1992-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.818826188,"date":"1992-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.013,"date":"1992-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8212357153,"date":"1992-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.01,"date":"1992-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8236443661,"date":"1992-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.015,"date":"1992-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8260521403,"date":"1992-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.013,"date":"1992-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8284590379,"date":"1992-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.026,"date":"1992-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.830865059,"date":"1992-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.051,"date":"1992-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8332702036,"date":"1992-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.058,"date":"1992-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8356744716,"date":"1992-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.072,"date":"1992-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.838077863,"date":"1992-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.089,"date":"1992-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8404803779,"date":"1992-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.102,"date":"1992-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8428820162,"date":"1992-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.118,"date":"1992-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8452827779,"date":"1992-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1992-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8476826631,"date":"1992-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.128,"date":"1992-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8500816718,"date":"1992-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.143,"date":"1992-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8524798038,"date":"1992-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.151,"date":"1992-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8548770594,"date":"1992-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.153,"date":"1992-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8572734383,"date":"1992-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.149,"date":"1992-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8596689408,"date":"1992-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.147,"date":"1992-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8620635666,"date":"1992-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.139,"date":"1992-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8644573159,"date":"1992-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.132,"date":"1992-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8668501887,"date":"1992-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.128,"date":"1992-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8692421848,"date":"1992-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.126,"date":"1992-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8716333045,"date":"1992-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.123,"date":"1992-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8740235475,"date":"1992-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.116,"date":"1992-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8764129141,"date":"1992-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.123,"date":"1992-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.878801404,"date":"1992-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.121,"date":"1992-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8811890174,"date":"1992-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.121,"date":"1992-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8835757543,"date":"1992-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.124,"date":"1992-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8859616146,"date":"1992-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.123,"date":"1992-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8883465983,"date":"1992-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.118,"date":"1992-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8907307055,"date":"1992-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.115,"date":"1992-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8931139361,"date":"1992-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.115,"date":"1992-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8954962901,"date":"1992-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.113,"date":"1992-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.8978777676,"date":"1992-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.113,"date":"1992-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9002583686,"date":"1992-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1992-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.902638093,"date":"1992-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1992-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9050169408,"date":"1992-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.112,"date":"1992-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9073949121,"date":"1992-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1992-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9097720068,"date":"1992-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.098,"date":"1992-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.912148225,"date":"1992-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.089,"date":"1992-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9145235666,"date":"1992-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.078,"date":"1992-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9168980316,"date":"1992-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.074,"date":"1992-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9192716201,"date":"1992-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.069,"date":"1992-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9216443321,"date":"1992-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.065,"date":"1993-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9240161674,"date":"1993-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.066,"date":"1993-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9263871263,"date":"1993-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.061,"date":"1993-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9287572085,"date":"1993-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.055,"date":"1993-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9311264142,"date":"1993-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.055,"date":"1993-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9334947434,"date":"1993-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.062,"date":"1993-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.935862196,"date":"1993-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.053,"date":"1993-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.938228772,"date":"1993-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.047,"date":"1993-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9405944715,"date":"1993-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.042,"date":"1993-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9429592944,"date":"1993-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.048,"date":"1993-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9453232408,"date":"1993-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.058,"date":"1993-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9476863106,"date":"1993-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.056,"date":"1993-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9500485038,"date":"1993-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.057,"date":"1993-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9524098205,"date":"1993-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.068,"date":"1993-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9547702607,"date":"1993-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.079,"date":"1993-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9571298243,"date":"1993-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.079,"date":"1993-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9594885113,"date":"1993-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.086,"date":"1993-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9618463218,"date":"1993-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.086,"date":"1993-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9642032557,"date":"1993-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.097,"date":"1993-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.966559313,"date":"1993-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1993-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9689144938,"date":"1993-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1993-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9712687981,"date":"1993-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.107,"date":"1993-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9736222257,"date":"1993-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.104,"date":"1993-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9759747769,"date":"1993-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.101,"date":"1993-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9783264514,"date":"1993-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.095,"date":"1993-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9806772495,"date":"1993-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.089,"date":"1993-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9830271709,"date":"1993-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.086,"date":"1993-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9853762158,"date":"1993-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.081,"date":"1993-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9877243842,"date":"1993-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.075,"date":"1993-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9900716759,"date":"1993-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.069,"date":"1993-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9924180912,"date":"1993-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.062,"date":"1993-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9947636298,"date":"1993-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.06,"date":"1993-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.997108292,"date":"1993-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.059,"date":"1993-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":0.9994520775,"date":"1993-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.065,"date":"1993-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0017949865,"date":"1993-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.062,"date":"1993-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.004137019,"date":"1993-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.055,"date":"1993-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0064781748,"date":"1993-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.051,"date":"1993-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0088184542,"date":"1993-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.045,"date":"1993-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.011157857,"date":"1993-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.047,"date":"1993-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0134963832,"date":"1993-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.092,"date":"1993-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0158340328,"date":"1993-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.09,"date":"1993-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0181708059,"date":"1993-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.093,"date":"1993-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0205067025,"date":"1993-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.092,"date":"1993-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0228417225,"date":"1993-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.084,"date":"1993-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0251758659,"date":"1993-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.075,"date":"1993-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0275091328,"date":"1993-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.064,"date":"1993-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0298415231,"date":"1993-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.058,"date":"1993-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0321730369,"date":"1993-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.051,"date":"1993-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0345036741,"date":"1993-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.036,"date":"1993-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0368334347,"date":"1993-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.018,"date":"1993-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0391623188,"date":"1993-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.003,"date":"1993-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0414903263,"date":"1993-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.999,"date":"1993-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0438174573,"date":"1993-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.992,"date":"1994-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0461437117,"date":"1994-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.995,"date":"1994-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0484690896,"date":"1994-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.001,"date":"1994-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0507935909,"date":"1994-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":0.999,"date":"1994-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0531172157,"date":"1994-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.005,"date":"1994-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0554399639,"date":"1994-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.007,"date":"1994-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0577618355,"date":"1994-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.016,"date":"1994-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0600828306,"date":"1994-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.009,"date":"1994-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0624029491,"date":"1994-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.004,"date":"1994-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0647221911,"date":"1994-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.007,"date":"1994-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0670405565,"date":"1994-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.005,"date":"1994-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0693580453,"date":"1994-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.007,"date":"1994-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0716746576,"date":"1994-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.012,"date":"1994-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0739903934,"date":"1994-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.011,"date":"1994-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0763052525,"date":"1994-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.028,"date":"1994-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0786192352,"date":"1994-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.033,"date":"1994-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0809323412,"date":"1994-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.037,"date":"1994-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0832445707,"date":"1994-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.04,"date":"1994-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0855559237,"date":"1994-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.045,"date":"1994-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0878664001,"date":"1994-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.046,"date":"1994-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0901759999,"date":"1994-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.05,"date":"1994-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0924847232,"date":"1994-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.056,"date":"1994-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0947925699,"date":"1994-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.065,"date":"1994-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0970995401,"date":"1994-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.073,"date":"1994-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.0994056337,"date":"1994-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.079,"date":"1994-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1017108508,"date":"1994-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.095,"date":"1994-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1040151913,"date":"1994-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.097,"date":"1994-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1063186552,"date":"1994-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.103,"date":"1994-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1086212426,"date":"1994-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.109,"date":"1994-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1109229534,"date":"1994-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.114,"date":"1994-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1132237877,"date":"1994-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.13,"date":"1994-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1155237454,"date":"1994-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.157,"date":"1994-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1178228266,"date":"1994-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.161,"date":"1994-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1201210312,"date":"1994-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.165,"date":"1994-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1224183592,"date":"1994-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.161,"date":"1994-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1247148107,"date":"1994-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.156,"date":"1994-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1270103857,"date":"1994-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.15,"date":"1994-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.129305084,"date":"1994-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.14,"date":"1994-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1315989058,"date":"1994-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.129,"date":"1994-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1338918511,"date":"1994-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.12,"date":"1994-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1361839198,"date":"1994-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.114,"date":"1994-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.138475112,"date":"1994-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.106,"date":"1994-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1407654275,"date":"1994-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.107,"date":"1994-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1430548666,"date":"1994-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.121,"date":"1994-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1453434291,"date":"1994-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.123,"date":"1994-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.147631115,"date":"1994-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.122,"date":"1994-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1499179243,"date":"1994-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.113,"date":"1994-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1522038571,"date":"1994-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2025833333,"date":"1994-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1544889134,"date":"1994-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2031666667,"date":"1994-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1567730931,"date":"1994-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.19275,"date":"1994-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1590563962,"date":"1994-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1849166667,"date":"1994-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1613388228,"date":"1994-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1778333333,"date":"1994-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1636203728,"date":"1994-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1921666667,"date":"1995-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1659010463,"date":"1995-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1970833333,"date":"1995-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1681808432,"date":"1995-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.19125,"date":"1995-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1704597635,"date":"1995-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1944166667,"date":"1995-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1727378073,"date":"1995-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.192,"date":"1995-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1750149746,"date":"1995-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.187,"date":"1995-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1772912652,"date":"1995-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1839166667,"date":"1995-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1795666794,"date":"1995-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1785,"date":"1995-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1818412169,"date":"1995-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.182,"date":"1995-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1841148779,"date":"1995-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.18225,"date":"1995-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1863876624,"date":"1995-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.17525,"date":"1995-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1886595703,"date":"1995-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.174,"date":"1995-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1909306016,"date":"1995-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1771666667,"date":"1995-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1932007564,"date":"1995-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1860833333,"date":"1995-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1954700346,"date":"1995-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2000833333,"date":"1995-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.1977384363,"date":"1995-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2124166667,"date":"1995-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2000059614,"date":"1995-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2325833333,"date":"1995-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.20227261,"date":"1995-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.24275,"date":"1995-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.204538382,"date":"1995-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2643333333,"date":"1995-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2068032774,"date":"1995-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.274,"date":"1995-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2090672963,"date":"1995-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2905833333,"date":"1995-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2113304386,"date":"1995-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.29425,"date":"1995-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2135927044,"date":"1995-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2939166667,"date":"1995-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2158540936,"date":"1995-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2913333333,"date":"1995-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2181146062,"date":"1995-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.28575,"date":"1995-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2203742423,"date":"1995-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2798333333,"date":"1995-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2226330019,"date":"1995-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2730833333,"date":"1995-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2248908849,"date":"1995-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2644166667,"date":"1995-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2271478913,"date":"1995-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2545833333,"date":"1995-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2294040212,"date":"1995-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2445833333,"date":"1995-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2316592745,"date":"1995-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2321666667,"date":"1995-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2339136512,"date":"1995-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2270833333,"date":"1995-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2361671514,"date":"1995-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2228333333,"date":"1995-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2384197751,"date":"1995-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2206666667,"date":"1995-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2406715222,"date":"1995-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.21325,"date":"1995-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2429223927,"date":"1995-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2110833333,"date":"1995-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2451723867,"date":"1995-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2075833333,"date":"1995-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2474215041,"date":"1995-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2063333333,"date":"1995-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.249669745,"date":"1995-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2041666667,"date":"1995-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2519171093,"date":"1995-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2005833333,"date":"1995-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.254163597,"date":"1995-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1949166667,"date":"1995-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2564092082,"date":"1995-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1870833333,"date":"1995-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2586539428,"date":"1995-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1790833333,"date":"1995-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2608978009,"date":"1995-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1693333333,"date":"1995-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2631407824,"date":"1995-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.16475,"date":"1995-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2653828874,"date":"1995-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1621666667,"date":"1995-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2676241158,"date":"1995-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.158,"date":"1995-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2698644676,"date":"1995-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1574166667,"date":"1995-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2721039429,"date":"1995-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1586666667,"date":"1995-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2743425417,"date":"1995-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1598333333,"date":"1995-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2765802638,"date":"1995-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1716666667,"date":"1995-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2788171095,"date":"1995-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1763333333,"date":"1995-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2810530785,"date":"1995-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.178,"date":"1996-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.283288171,"date":"1996-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1848333333,"date":"1996-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.285522387,"date":"1996-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1918333333,"date":"1996-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2877557264,"date":"1996-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.18725,"date":"1996-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2899881892,"date":"1996-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.18275,"date":"1996-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2922197755,"date":"1996-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1796666667,"date":"1996-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2944504852,"date":"1996-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1765833333,"date":"1996-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.2966803184,"date":"1996-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1820833333,"date":"1996-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.298909275,"date":"1996-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.20075,"date":"1996-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.301137355,"date":"1996-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.216,"date":"1996-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3033645585,"date":"1996-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2185,"date":"1996-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3055908855,"date":"1996-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2275833333,"date":"1996-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3078163359,"date":"1996-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2536666667,"date":"1996-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3100409097,"date":"1996-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2685833333,"date":"1996-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3122646069,"date":"1996-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2933333333,"date":"1996-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3144874277,"date":"1996-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3344166667,"date":"1996-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3167093718,"date":"1996-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.35825,"date":"1996-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3189304394,"date":"1996-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3765833333,"date":"1996-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3211506304,"date":"1996-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3811666667,"date":"1996-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3233699449,"date":"1996-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.38375,"date":"1996-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3255883829,"date":"1996-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3891666667,"date":"1996-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3278059442,"date":"1996-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.37975,"date":"1996-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.330022629,"date":"1996-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3785833333,"date":"1996-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3322384373,"date":"1996-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.36975,"date":"1996-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.334453369,"date":"1996-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3625,"date":"1996-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3366674241,"date":"1996-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3511666667,"date":"1996-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3388806027,"date":"1996-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.34025,"date":"1996-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3410929047,"date":"1996-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3360833333,"date":"1996-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3433043302,"date":"1996-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.332,"date":"1996-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3455148791,"date":"1996-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3288333333,"date":"1996-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3477245515,"date":"1996-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3199166667,"date":"1996-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3499333473,"date":"1996-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.30975,"date":"1996-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3521412665,"date":"1996-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3026666667,"date":"1996-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3543483092,"date":"1996-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3000833333,"date":"1996-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3565544753,"date":"1996-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3024166667,"date":"1996-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3587597649,"date":"1996-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2905,"date":"1996-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3609641779,"date":"1996-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2938333333,"date":"1996-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3631677144,"date":"1996-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2966666667,"date":"1996-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3653703743,"date":"1996-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.29675,"date":"1996-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3675721576,"date":"1996-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2916666667,"date":"1996-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3697730644,"date":"1996-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2855,"date":"1996-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3719730947,"date":"1996-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2918333333,"date":"1996-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3741722483,"date":"1996-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2916666667,"date":"1996-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3763705255,"date":"1996-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2986666667,"date":"1996-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.378567926,"date":"1996-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3048333333,"date":"1996-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.38076445,"date":"1996-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3065833333,"date":"1996-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3829600975,"date":"1996-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.31575,"date":"1996-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3851548684,"date":"1996-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.32175,"date":"1996-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3873487627,"date":"1996-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3219166667,"date":"1996-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3895417805,"date":"1996-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.32275,"date":"1996-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3917339217,"date":"1996-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.32075,"date":"1996-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3939251864,"date":"1996-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3175,"date":"1996-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.3961155745,"date":"1996-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3154166667,"date":"1996-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.398305086,"date":"1996-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.31525,"date":"1997-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.400493721,"date":"1997-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3293333333,"date":"1997-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4026814794,"date":"1997-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3296666667,"date":"1997-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4048683613,"date":"1997-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3268333333,"date":"1997-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4070543666,"date":"1997-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3263333333,"date":"1997-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4092394954,"date":"1997-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3243333333,"date":"1997-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4114237476,"date":"1997-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3195,"date":"1997-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4136071233,"date":"1997-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3165833333,"date":"1997-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4157896224,"date":"1997-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.30825,"date":"1997-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4179712449,"date":"1997-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3035833333,"date":"1997-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4201519909,"date":"1997-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2974166667,"date":"1997-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4223318603,"date":"1997-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2995833333,"date":"1997-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4245108532,"date":"1997-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2985833333,"date":"1997-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4266889695,"date":"1997-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3015833333,"date":"1997-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4288662092,"date":"1997-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2985833333,"date":"1997-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4310425724,"date":"1997-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2971666667,"date":"1997-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4332180591,"date":"1997-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2928333333,"date":"1997-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4353926692,"date":"1997-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2909166667,"date":"1997-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4375664027,"date":"1997-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2889166667,"date":"1997-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4397392597,"date":"1997-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2956666667,"date":"1997-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4419112401,"date":"1997-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3023333333,"date":"1997-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4440823439,"date":"1997-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3034166667,"date":"1997-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4462525712,"date":"1997-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.298,"date":"1997-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.448421922,"date":"1997-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2903333333,"date":"1997-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4505903961,"date":"1997-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2814166667,"date":"1997-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4527579938,"date":"1997-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2731666667,"date":"1997-06-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4549247148,"date":"1997-06-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.26925,"date":"1997-07-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4570905594,"date":"1997-07-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.26475,"date":"1997-07-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4592555273,"date":"1997-07-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.26675,"date":"1997-07-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4614196187,"date":"1997-07-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2615833333,"date":"1997-07-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4635828336,"date":"1997-07-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.282,"date":"1997-08-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4657451718,"date":"1997-08-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3171666667,"date":"1997-08-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4679066336,"date":"1997-08-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3226666667,"date":"1997-08-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4700672187,"date":"1997-08-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3403333333,"date":"1997-08-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4722269274,"date":"1997-08-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3423333333,"date":"1997-09-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4743857594,"date":"1997-09-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3435833333,"date":"1997-09-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4765437149,"date":"1997-09-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3390833333,"date":"1997-09-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4787007939,"date":"1997-09-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3289166667,"date":"1997-09-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4808569963,"date":"1997-09-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3160833333,"date":"1997-09-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4830123221,"date":"1997-09-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3143333333,"date":"1997-10-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4851667714,"date":"1997-10-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3075,"date":"1997-10-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4873203441,"date":"1997-10-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2989166667,"date":"1997-10-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4894730402,"date":"1997-10-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2889166667,"date":"1997-10-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4916248598,"date":"1997-10-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2814166667,"date":"1997-11-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4937758029,"date":"1997-11-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2804166667,"date":"1997-11-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4959258694,"date":"1997-11-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.27175,"date":"1997-11-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.4980750593,"date":"1997-11-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2656666667,"date":"1997-11-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5002233727,"date":"1997-11-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2570833333,"date":"1997-12-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5023708095,"date":"1997-12-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2458333333,"date":"1997-12-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5045173698,"date":"1997-12-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2355833333,"date":"1997-12-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5066630535,"date":"1997-12-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2255,"date":"1997-12-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5088078606,"date":"1997-12-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2175833333,"date":"1997-12-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5109517912,"date":"1997-12-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2095,"date":"1998-01-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5130948453,"date":"1998-01-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1999166667,"date":"1998-01-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5152370227,"date":"1998-01-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1858333333,"date":"1998-01-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5173783237,"date":"1998-01-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1703333333,"date":"1998-01-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.519518748,"date":"1998-01-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1635833333,"date":"1998-02-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5216582958,"date":"1998-02-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1553333333,"date":"1998-02-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5237969671,"date":"1998-02-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1394166667,"date":"1998-02-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5259347618,"date":"1998-02-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1393333333,"date":"1998-02-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5280716799,"date":"1998-02-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1236666667,"date":"1998-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5302077215,"date":"1998-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1116666667,"date":"1998-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5323428865,"date":"1998-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1015,"date":"1998-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.534477175,"date":"1998-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.093,"date":"1998-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5366105869,"date":"1998-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1211666667,"date":"1998-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5387431222,"date":"1998-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1190833333,"date":"1998-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.540874781,"date":"1998-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1186666667,"date":"1998-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5430055633,"date":"1998-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1206666667,"date":"1998-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.545135469,"date":"1998-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1316666667,"date":"1998-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5472644981,"date":"1998-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1455,"date":"1998-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5493926507,"date":"1998-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1580833333,"date":"1998-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5515199267,"date":"1998-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1619166667,"date":"1998-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5536463261,"date":"1998-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1605833333,"date":"1998-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.555771849,"date":"1998-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1571666667,"date":"1998-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5578964954,"date":"1998-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1628333333,"date":"1998-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5600202652,"date":"1998-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1561666667,"date":"1998-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5621431584,"date":"1998-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.15,"date":"1998-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.564265175,"date":"1998-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1484166667,"date":"1998-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5663863152,"date":"1998-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1486666667,"date":"1998-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5685065787,"date":"1998-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1450833333,"date":"1998-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5706259657,"date":"1998-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1476666667,"date":"1998-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5727444762,"date":"1998-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1401666667,"date":"1998-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.57486211,"date":"1998-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1303333333,"date":"1998-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5769788674,"date":"1998-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1250833333,"date":"1998-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5790947481,"date":"1998-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1194166667,"date":"1998-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5812097524,"date":"1998-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.11275,"date":"1998-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.58332388,"date":"1998-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.107,"date":"1998-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5854371311,"date":"1998-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1015,"date":"1998-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5875495057,"date":"1998-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.09725,"date":"1998-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5896610037,"date":"1998-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1071666667,"date":"1998-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5917716251,"date":"1998-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1075833333,"date":"1998-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.59388137,"date":"1998-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1115,"date":"1998-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.5959902383,"date":"1998-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1158333333,"date":"1998-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.59809823,"date":"1998-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1113333333,"date":"1998-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6002053452,"date":"1998-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1086666667,"date":"1998-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6023115839,"date":"1998-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1045,"date":"1998-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.604416946,"date":"1998-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1028333333,"date":"1998-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6065214315,"date":"1998-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0931666667,"date":"1998-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6086250405,"date":"1998-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0886666667,"date":"1998-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6107277729,"date":"1998-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0763333333,"date":"1998-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6128296288,"date":"1998-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0594166667,"date":"1998-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6149306081,"date":"1998-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.05125,"date":"1998-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6170307108,"date":"1998-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.049,"date":"1998-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.619129937,"date":"1998-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.043,"date":"1998-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6212282867,"date":"1998-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0405833333,"date":"1999-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6233257597,"date":"1999-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0429166667,"date":"1999-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6254223563,"date":"1999-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0458333333,"date":"1999-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6275180762,"date":"1999-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0391666667,"date":"1999-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6296129196,"date":"1999-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0320833333,"date":"1999-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6317068865,"date":"1999-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.02875,"date":"1999-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6337999768,"date":"1999-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0210833333,"date":"1999-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6358921905,"date":"1999-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.012,"date":"1999-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6379835277,"date":"1999-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0169166667,"date":"1999-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6400739883,"date":"1999-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0249166667,"date":"1999-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6421635724,"date":"1999-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.0733333333,"date":"1999-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6442522799,"date":"1999-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1114166667,"date":"1999-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6463401108,"date":"1999-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1826666667,"date":"1999-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6484270652,"date":"1999-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.22625,"date":"1999-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6505131431,"date":"1999-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2495,"date":"1999-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6525983444,"date":"1999-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2458333333,"date":"1999-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6546826691,"date":"1999-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2426666667,"date":"1999-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6567661173,"date":"1999-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.244,"date":"1999-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6588486889,"date":"1999-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2485,"date":"1999-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6609303839,"date":"1999-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2455833333,"date":"1999-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6630112024,"date":"1999-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2296666667,"date":"1999-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6650911444,"date":"1999-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2144166667,"date":"1999-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6671702097,"date":"1999-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.21125,"date":"1999-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6692483986,"date":"1999-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2073333333,"date":"1999-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6713257108,"date":"1999-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2195,"date":"1999-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6734021466,"date":"1999-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2113333333,"date":"1999-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6754777057,"date":"1999-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.22,"date":"1999-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6775523883,"date":"1999-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2401666667,"date":"1999-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6796261944,"date":"1999-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2691666667,"date":"1999-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6816991238,"date":"1999-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.29075,"date":"1999-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6837711768,"date":"1999-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2959166667,"date":"1999-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6858423531,"date":"1999-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3089166667,"date":"1999-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.687912653,"date":"1999-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3348333333,"date":"1999-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6899820762,"date":"1999-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.33425,"date":"1999-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6920506229,"date":"1999-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3328333333,"date":"1999-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6941182931,"date":"1999-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3393333333,"date":"1999-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6961850866,"date":"1999-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3453333333,"date":"1999-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.6982510037,"date":"1999-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3605833333,"date":"1999-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7003160442,"date":"1999-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3545,"date":"1999-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7023802081,"date":"1999-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3503333333,"date":"1999-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7044434954,"date":"1999-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3466666667,"date":"1999-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7065059062,"date":"1999-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3353333333,"date":"1999-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7085674405,"date":"1999-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3331666667,"date":"1999-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7106280982,"date":"1999-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3265833333,"date":"1999-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7126878793,"date":"1999-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3271666667,"date":"1999-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7147467839,"date":"1999-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.34325,"date":"1999-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7168048119,"date":"1999-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.35925,"date":"1999-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7188619634,"date":"1999-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3671666667,"date":"1999-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7209182383,"date":"1999-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3674166667,"date":"1999-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7229736366,"date":"1999-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3680833333,"date":"1999-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7250281584,"date":"1999-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3629166667,"date":"1999-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7270818036,"date":"1999-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3658333333,"date":"1999-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7291345723,"date":"1999-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3645,"date":"2000-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7311864644,"date":"2000-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3575833333,"date":"2000-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.73323748,"date":"2000-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3674166667,"date":"2000-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.735287619,"date":"2000-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3995,"date":"2000-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7373368815,"date":"2000-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4033333333,"date":"2000-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7393852674,"date":"2000-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4104166667,"date":"2000-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7414327767,"date":"2000-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4378333333,"date":"2000-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7434794095,"date":"2000-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4835,"date":"2000-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7455251657,"date":"2000-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5021666667,"date":"2000-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7475700454,"date":"2000-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5858333333,"date":"2000-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7496140485,"date":"2000-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6205833333,"date":"2000-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.751657175,"date":"2000-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.62925,"date":"2000-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.753699425,"date":"2000-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.613,"date":"2000-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7557407985,"date":"2000-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6068333333,"date":"2000-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7577812953,"date":"2000-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5824166667,"date":"2000-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7598209157,"date":"2000-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5545,"date":"2000-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7618596594,"date":"2000-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5449166667,"date":"2000-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7638975266,"date":"2000-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.52925,"date":"2000-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7659345173,"date":"2000-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5560833333,"date":"2000-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7679706314,"date":"2000-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5860833333,"date":"2000-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7700058689,"date":"2000-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6116666667,"date":"2000-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7720402299,"date":"2000-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6254166667,"date":"2000-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7740737143,"date":"2000-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6456666667,"date":"2000-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7761063222,"date":"2000-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6994166667,"date":"2000-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7781380535,"date":"2000-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7399166667,"date":"2000-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7801689083,"date":"2000-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7258333333,"date":"2000-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7821988865,"date":"2000-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7075,"date":"2000-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7842279881,"date":"2000-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6853333333,"date":"2000-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7862562132,"date":"2000-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6488333333,"date":"2000-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7882835617,"date":"2000-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6263333333,"date":"2000-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7903100337,"date":"2000-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5839166667,"date":"2000-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7923356291,"date":"2000-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.573,"date":"2000-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.794360348,"date":"2000-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5595,"date":"2000-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.7963841903,"date":"2000-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5729166667,"date":"2000-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.798407156,"date":"2000-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5854166667,"date":"2000-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8004292452,"date":"2000-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6298333333,"date":"2000-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8024504578,"date":"2000-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6595833333,"date":"2000-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8044707939,"date":"2000-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6579166667,"date":"2000-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8064902534,"date":"2000-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6485,"date":"2000-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8085088364,"date":"2000-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6289166667,"date":"2000-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8105265428,"date":"2000-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.60925,"date":"2000-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8125433726,"date":"2000-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6384166667,"date":"2000-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8145593259,"date":"2000-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6444166667,"date":"2000-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8165744027,"date":"2000-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6425833333,"date":"2000-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8185886028,"date":"2000-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.62675,"date":"2000-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8206019265,"date":"2000-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6224166667,"date":"2000-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8226143735,"date":"2000-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6113333333,"date":"2000-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.824625944,"date":"2000-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6089166667,"date":"2000-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.826636638,"date":"2000-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.58775,"date":"2000-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8286464554,"date":"2000-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5559166667,"date":"2000-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8306553962,"date":"2000-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5295833333,"date":"2000-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8326634605,"date":"2000-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5176666667,"date":"2000-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8346706482,"date":"2000-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5119166667,"date":"2001-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8366769594,"date":"2001-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5254166667,"date":"2001-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.838682394,"date":"2001-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5641666667,"date":"2001-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.840686952,"date":"2001-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.562,"date":"2001-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8426906335,"date":"2001-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.551,"date":"2001-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8446934384,"date":"2001-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5389166667,"date":"2001-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8466953668,"date":"2001-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5669166667,"date":"2001-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8486964187,"date":"2001-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5478333333,"date":"2001-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8506965939,"date":"2001-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.532,"date":"2001-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8526958926,"date":"2001-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5219166667,"date":"2001-03-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8546943148,"date":"2001-03-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5171666667,"date":"2001-03-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8566918604,"date":"2001-03-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5091666667,"date":"2001-03-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8586885294,"date":"2001-03-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.50775,"date":"2001-03-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8606843219,"date":"2001-03-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.543,"date":"2001-04-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8626792378,"date":"2001-04-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5984166667,"date":"2001-04-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8646732772,"date":"2001-04-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6590833333,"date":"2001-04-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.86666644,"date":"2001-04-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7113333333,"date":"2001-04-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8686587262,"date":"2001-04-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7231666667,"date":"2001-04-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8706501359,"date":"2001-04-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7915,"date":"2001-05-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8726406691,"date":"2001-05-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8036666667,"date":"2001-05-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8746303257,"date":"2001-05-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7833333333,"date":"2001-05-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8766191057,"date":"2001-05-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7961666667,"date":"2001-05-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8786070092,"date":"2001-05-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7734166667,"date":"2001-06-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8805940361,"date":"2001-06-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7493333333,"date":"2001-06-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8825801864,"date":"2001-06-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.709,"date":"2001-06-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8845654602,"date":"2001-06-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6539166667,"date":"2001-06-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8865498575,"date":"2001-06-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.594,"date":"2001-07-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8885333782,"date":"2001-07-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5575,"date":"2001-07-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8905160223,"date":"2001-07-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.531,"date":"2001-07-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8924977899,"date":"2001-07-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.509,"date":"2001-07-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8944786809,"date":"2001-07-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4925,"date":"2001-07-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8964586953,"date":"2001-07-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4800833333,"date":"2001-08-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.8984378332,"date":"2001-08-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.48925,"date":"2001-08-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9004160946,"date":"2001-08-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5150833333,"date":"2001-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9023934794,"date":"2001-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5595833333,"date":"2001-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9043699876,"date":"2001-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6145833333,"date":"2001-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9063456193,"date":"2001-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6018333333,"date":"2001-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9083203744,"date":"2001-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6029166667,"date":"2001-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9102942529,"date":"2001-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.56675,"date":"2001-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9122672549,"date":"2001-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5041666667,"date":"2001-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9142393804,"date":"2001-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.44575,"date":"2001-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9162106293,"date":"2001-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4055,"date":"2001-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9181810016,"date":"2001-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3616666667,"date":"2001-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9201504974,"date":"2001-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3309166667,"date":"2001-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9221191166,"date":"2001-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3013333333,"date":"2001-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9240868593,"date":"2001-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2753333333,"date":"2001-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9260537254,"date":"2001-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2565,"date":"2001-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9280197149,"date":"2001-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.217,"date":"2001-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9299848279,"date":"2001-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.19575,"date":"2001-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9319490643,"date":"2001-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1815833333,"date":"2001-12-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9339124242,"date":"2001-12-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1470833333,"date":"2001-12-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9358749075,"date":"2001-12-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1550833333,"date":"2001-12-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9378365143,"date":"2001-12-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.175,"date":"2001-12-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9397972445,"date":"2001-12-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1911666667,"date":"2002-01-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9417570982,"date":"2002-01-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1951666667,"date":"2002-01-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9437160753,"date":"2002-01-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.191,"date":"2002-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9456741758,"date":"2002-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.18775,"date":"2002-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9476313998,"date":"2002-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2014166667,"date":"2002-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9495877472,"date":"2002-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.1946666667,"date":"2002-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9515432181,"date":"2002-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2049166667,"date":"2002-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9534978124,"date":"2002-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.2063333333,"date":"2002-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9554515301,"date":"2002-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.23225,"date":"2002-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9574043713,"date":"2002-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.3095,"date":"2002-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.959356336,"date":"2002-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.37525,"date":"2002-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.961307424,"date":"2002-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4305,"date":"2002-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9632576356,"date":"2002-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4621666667,"date":"2002-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9652069705,"date":"2002-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5031666667,"date":"2002-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9671554289,"date":"2002-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4981666667,"date":"2002-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9691030108,"date":"2002-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4981666667,"date":"2002-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9710497161,"date":"2002-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4885,"date":"2002-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9729955448,"date":"2002-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.49,"date":"2002-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.974940497,"date":"2002-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4839166667,"date":"2002-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9768845726,"date":"2002-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4909166667,"date":"2002-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9788277717,"date":"2002-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4819166667,"date":"2002-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9807700942,"date":"2002-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4848333333,"date":"2002-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9827115402,"date":"2002-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.47,"date":"2002-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9846521096,"date":"2002-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.473,"date":"2002-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9865918024,"date":"2002-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.47825,"date":"2002-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9885306187,"date":"2002-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4840833333,"date":"2002-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9904685584,"date":"2002-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4753333333,"date":"2002-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9924056216,"date":"2002-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4848333333,"date":"2002-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9943418082,"date":"2002-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4994166667,"date":"2002-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9962771183,"date":"2002-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4964166667,"date":"2002-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":1.9982115518,"date":"2002-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.48975,"date":"2002-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0001451087,"date":"2002-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.487,"date":"2002-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0020777891,"date":"2002-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4855833333,"date":"2002-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0040095929,"date":"2002-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.49675,"date":"2002-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0059405202,"date":"2002-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.489,"date":"2002-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0078705709,"date":"2002-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4896666667,"date":"2002-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0097997451,"date":"2002-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4935,"date":"2002-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0117280427,"date":"2002-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4884166667,"date":"2002-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0136554637,"date":"2002-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5038333333,"date":"2002-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0155820082,"date":"2002-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.526,"date":"2002-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0175076761,"date":"2002-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5265,"date":"2002-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0194324675,"date":"2002-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5418333333,"date":"2002-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0213563823,"date":"2002-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.53,"date":"2002-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0232794206,"date":"2002-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5349166667,"date":"2002-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0252015823,"date":"2002-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5301666667,"date":"2002-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0271228675,"date":"2002-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5036666667,"date":"2002-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.029043276,"date":"2002-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4781666667,"date":"2002-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0309628081,"date":"2002-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.4655833333,"date":"2002-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0328814636,"date":"2002-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.46025,"date":"2002-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0347992425,"date":"2002-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.462,"date":"2002-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0367161448,"date":"2002-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.49375,"date":"2002-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0386321706,"date":"2002-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5318333333,"date":"2002-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0405473199,"date":"2002-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5385,"date":"2003-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0424615926,"date":"2003-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.54725,"date":"2003-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0443749887,"date":"2003-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5548333333,"date":"2003-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0462875083,"date":"2003-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5669166667,"date":"2003-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0481991513,"date":"2003-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6178333333,"date":"2003-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0501099178,"date":"2003-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6974166667,"date":"2003-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0520198077,"date":"2003-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.75,"date":"2003-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.053928821,"date":"2003-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7515833333,"date":"2003-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0558369578,"date":"2003-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7805833333,"date":"2003-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0577442181,"date":"2003-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8073333333,"date":"2003-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0596506018,"date":"2003-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8255833333,"date":"2003-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0615561089,"date":"2003-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7935,"date":"2003-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0634607394,"date":"2003-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7578333333,"date":"2003-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0653644935,"date":"2003-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.739,"date":"2003-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0672673709,"date":"2003-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7065,"date":"2003-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0691693718,"date":"2003-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.683,"date":"2003-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0710704961,"date":"2003-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6653333333,"date":"2003-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0729707439,"date":"2003-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6220833333,"date":"2003-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0748701152,"date":"2003-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5969166667,"date":"2003-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0767686098,"date":"2003-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.597,"date":"2003-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0786662279,"date":"2003-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5835833333,"date":"2003-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0805629695,"date":"2003-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5686666667,"date":"2003-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0824588345,"date":"2003-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.57975,"date":"2003-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0843538229,"date":"2003-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6100833333,"date":"2003-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0862479348,"date":"2003-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.59225,"date":"2003-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0881411701,"date":"2003-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5835833333,"date":"2003-06-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0900335289,"date":"2003-06-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5844166667,"date":"2003-07-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0919250111,"date":"2003-07-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6138333333,"date":"2003-07-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0938156168,"date":"2003-07-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.616,"date":"2003-07-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0957053459,"date":"2003-07-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.60775,"date":"2003-07-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0975941984,"date":"2003-07-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6225833333,"date":"2003-08-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.0994821744,"date":"2003-08-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6566666667,"date":"2003-08-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1013692738,"date":"2003-08-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7179166667,"date":"2003-08-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1032554967,"date":"2003-08-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8441666667,"date":"2003-08-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.105140843,"date":"2003-08-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8455,"date":"2003-09-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1070253128,"date":"2003-09-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.82,"date":"2003-09-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.108908906,"date":"2003-09-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.79925,"date":"2003-09-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1107916226,"date":"2003-09-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.749,"date":"2003-09-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1126734627,"date":"2003-09-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7005833333,"date":"2003-09-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1145544263,"date":"2003-09-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.68025,"date":"2003-10-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1164345132,"date":"2003-10-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6696666667,"date":"2003-10-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1183137237,"date":"2003-10-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6673333333,"date":"2003-10-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1201920575,"date":"2003-10-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6398333333,"date":"2003-10-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1220695148,"date":"2003-10-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6315833333,"date":"2003-11-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1239460956,"date":"2003-11-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6018333333,"date":"2003-11-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1258217998,"date":"2003-11-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5941666667,"date":"2003-11-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1276966274,"date":"2003-11-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.60675,"date":"2003-11-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1295705785,"date":"2003-11-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5871666667,"date":"2003-12-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.131443653,"date":"2003-12-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5726666667,"date":"2003-12-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1333158509,"date":"2003-12-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.56125,"date":"2003-12-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1351871724,"date":"2003-12-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5781666667,"date":"2003-12-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1370576172,"date":"2003-12-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5713333333,"date":"2003-12-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1389271855,"date":"2003-12-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.5993333333,"date":"2004-01-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1407958772,"date":"2004-01-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6494166667,"date":"2004-01-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1426636924,"date":"2004-01-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.6829166667,"date":"2004-01-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.144530631,"date":"2004-01-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.711,"date":"2004-01-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1463966931,"date":"2004-01-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7094166667,"date":"2004-02-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1482618786,"date":"2004-02-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7310833333,"date":"2004-02-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1501261876,"date":"2004-02-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.74075,"date":"2004-02-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1519896199,"date":"2004-02-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7856666667,"date":"2004-02-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1538521758,"date":"2004-02-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8166666667,"date":"2004-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1557138551,"date":"2004-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8374166667,"date":"2004-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1575746578,"date":"2004-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8249166667,"date":"2004-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.159434584,"date":"2004-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8415,"date":"2004-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1612936336,"date":"2004-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8549166667,"date":"2004-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1631518066,"date":"2004-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8768333333,"date":"2004-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1650091031,"date":"2004-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8833333333,"date":"2004-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1668655231,"date":"2004-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.90625,"date":"2004-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1687210664,"date":"2004-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9049166667,"date":"2004-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1705757333,"date":"2004-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.93375,"date":"2004-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1724295235,"date":"2004-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0290833333,"date":"2004-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1742824372,"date":"2004-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1054166667,"date":"2004-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1761344744,"date":"2004-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1555,"date":"2004-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.177985635,"date":"2004-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1475833333,"date":"2004-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.179835919,"date":"2004-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1325,"date":"2004-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1816853265,"date":"2004-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0908333333,"date":"2004-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1835338574,"date":"2004-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.04575,"date":"2004-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1853815118,"date":"2004-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0275,"date":"2004-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1872282896,"date":"2004-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0013333333,"date":"2004-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1890741909,"date":"2004-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0170833333,"date":"2004-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1909192156,"date":"2004-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.026,"date":"2004-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1927633637,"date":"2004-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.004,"date":"2004-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1946066353,"date":"2004-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9855,"date":"2004-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1964490303,"date":"2004-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.974,"date":"2004-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.1982905488,"date":"2004-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9690833333,"date":"2004-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2001311907,"date":"2004-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9764166667,"date":"2004-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2019709561,"date":"2004-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9636666667,"date":"2004-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2038098449,"date":"2004-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9471666667,"date":"2004-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2056478571,"date":"2004-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9415,"date":"2004-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2074849928,"date":"2004-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9576666667,"date":"2004-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.209321252,"date":"2004-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.00625,"date":"2004-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2111566345,"date":"2004-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.03225,"date":"2004-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2129911405,"date":"2004-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.09025,"date":"2004-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.21482477,"date":"2004-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.135,"date":"2004-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2166575229,"date":"2004-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1330833333,"date":"2004-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2184893993,"date":"2004-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1336666667,"date":"2004-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.220320399,"date":"2004-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1045833333,"date":"2004-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2221505223,"date":"2004-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0746666667,"date":"2004-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.223979769,"date":"2004-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0511666667,"date":"2004-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2258081391,"date":"2004-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.04525,"date":"2004-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2276356326,"date":"2004-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0135833333,"date":"2004-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2294622496,"date":"2004-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.95375,"date":"2004-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2312879901,"date":"2004-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.918,"date":"2004-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.233112854,"date":"2004-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8945833333,"date":"2004-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2349368413,"date":"2004-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8795833333,"date":"2005-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2367599521,"date":"2005-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8873333333,"date":"2005-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2385821863,"date":"2005-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.91075,"date":"2005-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.240403544,"date":"2005-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9419166667,"date":"2005-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2422240251,"date":"2005-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.999,"date":"2005-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2440436296,"date":"2005-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9995,"date":"2005-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2458623576,"date":"2005-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.99025,"date":"2005-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2476802091,"date":"2005-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9981666667,"date":"2005-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.249497184,"date":"2005-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0178333333,"date":"2005-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2513132823,"date":"2005-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0865,"date":"2005-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.253128504,"date":"2005-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1434166667,"date":"2005-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2549428493,"date":"2005-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1928333333,"date":"2005-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2567563179,"date":"2005-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.239,"date":"2005-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.25856891,"date":"2005-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3041666667,"date":"2005-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2603806255,"date":"2005-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3708333333,"date":"2005-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2621914645,"date":"2005-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3345833333,"date":"2005-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2640014269,"date":"2005-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3335,"date":"2005-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2658105128,"date":"2005-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3328333333,"date":"2005-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2676187221,"date":"2005-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2903333333,"date":"2005-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2694260549,"date":"2005-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.26375,"date":"2005-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2712325111,"date":"2005-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2278333333,"date":"2005-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2730380907,"date":"2005-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1991666667,"date":"2005-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2748427938,"date":"2005-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.21325,"date":"2005-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2766466203,"date":"2005-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2250833333,"date":"2005-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2784495703,"date":"2005-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2561666667,"date":"2005-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2802516437,"date":"2005-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3065,"date":"2005-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2820528406,"date":"2005-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3208333333,"date":"2005-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2838531609,"date":"2005-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4215,"date":"2005-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2856526046,"date":"2005-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4158333333,"date":"2005-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2874511718,"date":"2005-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.394,"date":"2005-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2892488624,"date":"2005-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3951666667,"date":"2005-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2910456765,"date":"2005-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4658333333,"date":"2005-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.292841614,"date":"2005-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6425,"date":"2005-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.294636675,"date":"2005-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7038333333,"date":"2005-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2964308594,"date":"2005-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7031666667,"date":"2005-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.2982241672,"date":"2005-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.17175,"date":"2005-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3000165985,"date":"2005-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0609166667,"date":"2005-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3018081532,"date":"2005-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.90075,"date":"2005-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3035988314,"date":"2005-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9080833333,"date":"2005-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.305388633,"date":"2005-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0210833333,"date":"2005-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3071775581,"date":"2005-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9484166667,"date":"2005-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3089656066,"date":"2005-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.832,"date":"2005-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3107527785,"date":"2005-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.71075,"date":"2005-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3125390739,"date":"2005-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5878333333,"date":"2005-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3143244928,"date":"2005-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4826666667,"date":"2005-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.316109035,"date":"2005-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.39925,"date":"2005-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3178927008,"date":"2005-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3025833333,"date":"2005-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3196754899,"date":"2005-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2535833333,"date":"2005-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3214574025,"date":"2005-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.24,"date":"2005-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3232384386,"date":"2005-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2729166667,"date":"2005-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3250185981,"date":"2005-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2985833333,"date":"2005-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.326797881,"date":"2005-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2854166667,"date":"2005-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3285762874,"date":"2005-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.32275,"date":"2006-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3303538172,"date":"2006-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4150833333,"date":"2006-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3321304705,"date":"2006-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4175,"date":"2006-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3339062472,"date":"2006-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4330833333,"date":"2006-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3356811473,"date":"2006-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4538333333,"date":"2006-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3374551709,"date":"2006-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4425,"date":"2006-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3392283179,"date":"2006-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3883333333,"date":"2006-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3410005884,"date":"2006-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.34125,"date":"2006-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3427719823,"date":"2006-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3454166667,"date":"2006-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3445424997,"date":"2006-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4161666667,"date":"2006-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3463121405,"date":"2006-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4521666667,"date":"2006-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3480809048,"date":"2006-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5919166667,"date":"2006-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3498487925,"date":"2006-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.58975,"date":"2006-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3516158036,"date":"2006-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.679,"date":"2006-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3533819382,"date":"2006-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7751666667,"date":"2006-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3551471962,"date":"2006-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.87575,"date":"2006-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3569115777,"date":"2006-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.01425,"date":"2006-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3586750826,"date":"2006-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0286666667,"date":"2006-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3604377109,"date":"2006-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.026,"date":"2006-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3621994627,"date":"2006-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0613333333,"date":"2006-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.363960338,"date":"2006-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0135833333,"date":"2006-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3657203367,"date":"2006-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.98525,"date":"2006-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3674794588,"date":"2006-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0086666667,"date":"2006-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3692377044,"date":"2006-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0198333333,"date":"2006-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3709950734,"date":"2006-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9880833333,"date":"2006-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3727515658,"date":"2006-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9829166667,"date":"2006-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3745071817,"date":"2006-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0421666667,"date":"2006-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3762619211,"date":"2006-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0805833333,"date":"2006-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3780157839,"date":"2006-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.09625,"date":"2006-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3797687701,"date":"2006-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.10925,"date":"2006-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3815208798,"date":"2006-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1105833333,"date":"2006-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3832721129,"date":"2006-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1380833333,"date":"2006-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3850224694,"date":"2006-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1065833333,"date":"2006-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3867719494,"date":"2006-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0330833333,"date":"2006-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3885205529,"date":"2006-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9561666667,"date":"2006-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3902682798,"date":"2006-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8425,"date":"2006-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3920151301,"date":"2006-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.73825,"date":"2006-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3937611039,"date":"2006-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6185,"date":"2006-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3955062011,"date":"2006-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4983333333,"date":"2006-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3972504217,"date":"2006-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4245,"date":"2006-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.3989937658,"date":"2006-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.37075,"date":"2006-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4007362334,"date":"2006-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3316666667,"date":"2006-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4024778244,"date":"2006-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3078333333,"date":"2006-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4042185388,"date":"2006-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3133333333,"date":"2006-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4059583767,"date":"2006-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2950833333,"date":"2006-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.407697338,"date":"2006-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3283333333,"date":"2006-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4094354228,"date":"2006-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3375833333,"date":"2006-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.411172631,"date":"2006-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3456666667,"date":"2006-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4129089626,"date":"2006-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3929166667,"date":"2006-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4146444177,"date":"2006-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.39325,"date":"2006-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4163789963,"date":"2006-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4204166667,"date":"2006-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4181126982,"date":"2006-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4443333333,"date":"2006-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4198455236,"date":"2006-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4400833333,"date":"2007-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4215774725,"date":"2007-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4170833333,"date":"2007-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4233085448,"date":"2007-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3470833333,"date":"2007-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4250387406,"date":"2007-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.285,"date":"2007-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4267680598,"date":"2007-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2755,"date":"2007-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4284965024,"date":"2007-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.296,"date":"2007-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4302240685,"date":"2007-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3460833333,"date":"2007-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.431950758,"date":"2007-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3995833333,"date":"2007-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.433676571,"date":"2007-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4864166667,"date":"2007-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4354015074,"date":"2007-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6093333333,"date":"2007-03-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4371255672,"date":"2007-03-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6698333333,"date":"2007-03-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4388487505,"date":"2007-03-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6906666667,"date":"2007-03-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4405710573,"date":"2007-03-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7228333333,"date":"2007-03-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4422924874,"date":"2007-03-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8213333333,"date":"2007-04-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4440130411,"date":"2007-04-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9113333333,"date":"2007-04-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4457327181,"date":"2007-04-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9845833333,"date":"2007-04-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4474515186,"date":"2007-04-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9815833333,"date":"2007-04-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4491694426,"date":"2007-04-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0775833333,"date":"2007-04-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.45088649,"date":"2007-04-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1566666667,"date":"2007-05-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4526026608,"date":"2007-05-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1949166667,"date":"2007-05-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4543179551,"date":"2007-05-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2998333333,"date":"2007-05-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4560323728,"date":"2007-05-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2950833333,"date":"2007-05-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.457745914,"date":"2007-05-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2505,"date":"2007-06-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4594585786,"date":"2007-06-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.17925,"date":"2007-06-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4611703667,"date":"2007-06-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1141666667,"date":"2007-06-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4628812782,"date":"2007-06-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0856666667,"date":"2007-06-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4645913131,"date":"2007-06-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0596666667,"date":"2007-07-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4663004715,"date":"2007-07-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0726666667,"date":"2007-07-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4680087533,"date":"2007-07-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1346666667,"date":"2007-07-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4697161586,"date":"2007-07-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0573333333,"date":"2007-07-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4714226873,"date":"2007-07-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9830833333,"date":"2007-07-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4731283395,"date":"2007-07-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9445,"date":"2007-08-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4748331151,"date":"2007-08-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8753333333,"date":"2007-08-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4765370141,"date":"2007-08-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8784166667,"date":"2007-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4782400366,"date":"2007-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8395833333,"date":"2007-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4799421825,"date":"2007-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8755833333,"date":"2007-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4816434519,"date":"2007-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8976666667,"date":"2007-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4833438447,"date":"2007-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8786666667,"date":"2007-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.485043361,"date":"2007-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9046666667,"date":"2007-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4867420007,"date":"2007-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8880833333,"date":"2007-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4884397638,"date":"2007-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.87325,"date":"2007-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4901366504,"date":"2007-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.86825,"date":"2007-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4918326605,"date":"2007-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9268333333,"date":"2007-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4935277939,"date":"2007-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.97275,"date":"2007-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4952220509,"date":"2007-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1065,"date":"2007-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.4969154312,"date":"2007-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2076666667,"date":"2007-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.498607935,"date":"2007-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2023333333,"date":"2007-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5002995623,"date":"2007-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2025833333,"date":"2007-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.501990313,"date":"2007-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.17275,"date":"2007-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5036801871,"date":"2007-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.11825,"date":"2007-12-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5053691847,"date":"2007-12-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1125,"date":"2007-12-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5070573057,"date":"2007-12-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0951666667,"date":"2007-12-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5087445502,"date":"2007-12-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1611666667,"date":"2007-12-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5104309181,"date":"2007-12-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.214,"date":"2008-01-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5121164094,"date":"2008-01-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1775833333,"date":"2008-01-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5138010242,"date":"2008-01-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1298333333,"date":"2008-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5154847624,"date":"2008-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0889166667,"date":"2008-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5171676241,"date":"2008-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.08375,"date":"2008-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5188496092,"date":"2008-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0645,"date":"2008-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5205307178,"date":"2008-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1416666667,"date":"2008-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5222109498,"date":"2008-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2320833333,"date":"2008-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5238903053,"date":"2008-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2688333333,"date":"2008-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5255687842,"date":"2008-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3283333333,"date":"2008-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5272463865,"date":"2008-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3881666667,"date":"2008-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5289231123,"date":"2008-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3705,"date":"2008-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5305989615,"date":"2008-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3976666667,"date":"2008-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5322739342,"date":"2008-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4386666667,"date":"2008-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5339480303,"date":"2008-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4974166667,"date":"2008-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5356212498,"date":"2008-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.618,"date":"2008-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5372935928,"date":"2008-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7129166667,"date":"2008-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5389650593,"date":"2008-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.72475,"date":"2008-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5406356491,"date":"2008-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8268333333,"date":"2008-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5423053625,"date":"2008-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8965,"date":"2008-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5439741992,"date":"2008-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0405833333,"date":"2008-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5456421595,"date":"2008-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0870833333,"date":"2008-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5473092431,"date":"2008-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1576666667,"date":"2008-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5489754502,"date":"2008-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2085,"date":"2008-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5506407808,"date":"2008-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2068333333,"date":"2008-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5523052347,"date":"2008-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2181666667,"date":"2008-06-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5539688122,"date":"2008-06-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2355833333,"date":"2008-07-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.555631513,"date":"2008-07-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2320833333,"date":"2008-07-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5572933373,"date":"2008-07-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1891666667,"date":"2008-07-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5589542851,"date":"2008-07-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0839166667,"date":"2008-07-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5606143563,"date":"2008-07-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0065833333,"date":"2008-08-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5622735509,"date":"2008-08-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9318333333,"date":"2008-08-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.563931869,"date":"2008-08-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8578333333,"date":"2008-08-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5655893106,"date":"2008-08-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7986666667,"date":"2008-08-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5672458755,"date":"2008-08-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7900833333,"date":"2008-09-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.568901564,"date":"2008-09-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7563333333,"date":"2008-09-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5705563758,"date":"2008-09-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9248333333,"date":"2008-09-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5722103111,"date":"2008-09-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.81875,"date":"2008-09-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5738633699,"date":"2008-09-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.73675,"date":"2008-09-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5755155521,"date":"2008-09-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.598,"date":"2008-10-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5771668577,"date":"2008-10-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2870833333,"date":"2008-10-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5788172868,"date":"2008-10-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0535,"date":"2008-10-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5804668393,"date":"2008-10-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.801,"date":"2008-10-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5821155152,"date":"2008-10-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5434166667,"date":"2008-11-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5837633146,"date":"2008-11-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3621666667,"date":"2008-11-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5854102375,"date":"2008-11-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2063333333,"date":"2008-11-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5870562838,"date":"2008-11-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0235,"date":"2008-11-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5887014535,"date":"2008-11-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9355833333,"date":"2008-12-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5903457467,"date":"2008-12-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8225833333,"date":"2008-12-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5919891633,"date":"2008-12-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7749166667,"date":"2008-12-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5936317034,"date":"2008-12-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7714166667,"date":"2008-12-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5952733669,"date":"2008-12-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7331666667,"date":"2008-12-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5969141538,"date":"2008-12-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.7925,"date":"2009-01-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.5985540642,"date":"2009-01-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.8889166667,"date":"2009-01-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6001930981,"date":"2009-01-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9520833333,"date":"2009-01-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6018312553,"date":"2009-01-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9475833333,"date":"2009-01-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6034685361,"date":"2009-01-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0001666667,"date":"2009-02-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6051049402,"date":"2009-02-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0380833333,"date":"2009-02-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6067404678,"date":"2009-02-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0774166667,"date":"2009-02-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6083751189,"date":"2009-02-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.029,"date":"2009-02-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6100088934,"date":"2009-02-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.04775,"date":"2009-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6116417913,"date":"2009-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0509166667,"date":"2009-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6132738127,"date":"2009-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0240833333,"date":"2009-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6149049575,"date":"2009-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0690833333,"date":"2009-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6165352258,"date":"2009-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1516666667,"date":"2009-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6181646175,"date":"2009-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.14875,"date":"2009-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6197931326,"date":"2009-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1625833333,"date":"2009-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6214207712,"date":"2009-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1716666667,"date":"2009-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6230475333,"date":"2009-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1639166667,"date":"2009-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6246734188,"date":"2009-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1895,"date":"2009-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6262984277,"date":"2009-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3448333333,"date":"2009-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6279225601,"date":"2009-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.418,"date":"2009-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6295458159,"date":"2009-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5395,"date":"2009-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6311681951,"date":"2009-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.625,"date":"2009-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6327896978,"date":"2009-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.727,"date":"2009-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.634410324,"date":"2009-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7804166667,"date":"2009-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6360300735,"date":"2009-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8056666667,"date":"2009-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6376489466,"date":"2009-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7625833333,"date":"2009-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.639266943,"date":"2009-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7340833333,"date":"2009-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.640884063,"date":"2009-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6543333333,"date":"2009-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6425003063,"date":"2009-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5905833333,"date":"2009-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6441156731,"date":"2009-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6231666667,"date":"2009-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6457301634,"date":"2009-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6755833333,"date":"2009-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.647343777,"date":"2009-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.76725,"date":"2009-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6489565142,"date":"2009-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7614166667,"date":"2009-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6505683747,"date":"2009-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.75225,"date":"2009-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6521793588,"date":"2009-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7399166667,"date":"2009-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6537894662,"date":"2009-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7181666667,"date":"2009-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6553986971,"date":"2009-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7104166667,"date":"2009-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6570070515,"date":"2009-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6855833333,"date":"2009-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6586145293,"date":"2009-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6331666667,"date":"2009-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6602211305,"date":"2009-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6019166667,"date":"2009-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6618268552,"date":"2009-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6148333333,"date":"2009-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6634317033,"date":"2009-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6908333333,"date":"2009-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6650356748,"date":"2009-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7878333333,"date":"2009-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6666387698,"date":"2009-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.80825,"date":"2009-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6682409883,"date":"2009-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.78425,"date":"2009-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6698423302,"date":"2009-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7516666667,"date":"2009-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6714427955,"date":"2009-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7580833333,"date":"2009-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6730423843,"date":"2009-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.74875,"date":"2009-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6746410965,"date":"2009-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7535833333,"date":"2009-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6762389322,"date":"2009-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.72225,"date":"2009-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6778358913,"date":"2009-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7128333333,"date":"2009-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6794319738,"date":"2009-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7283333333,"date":"2009-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6810271798,"date":"2009-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7819166667,"date":"2010-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6826215093,"date":"2010-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8648333333,"date":"2010-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6842149621,"date":"2010-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8563333333,"date":"2010-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6858075385,"date":"2010-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8261666667,"date":"2010-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6873992382,"date":"2010-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.784,"date":"2010-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6889900614,"date":"2010-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7740833333,"date":"2010-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6905800081,"date":"2010-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7338333333,"date":"2010-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6921690782,"date":"2010-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7724166667,"date":"2010-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6937572717,"date":"2010-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8181666667,"date":"2010-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6953445887,"date":"2010-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.864,"date":"2010-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.6969310291,"date":"2010-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8996666667,"date":"2010-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.698516593,"date":"2010-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.92825,"date":"2010-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7001012803,"date":"2010-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.91175,"date":"2010-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.701685091,"date":"2010-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.93575,"date":"2010-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7032680252,"date":"2010-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9665833333,"date":"2010-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7048500829,"date":"2010-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9691666667,"date":"2010-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.706431264,"date":"2010-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9620833333,"date":"2010-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7080115685,"date":"2010-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0093333333,"date":"2010-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7095909965,"date":"2010-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0193333333,"date":"2010-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7111695479,"date":"2010-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.983,"date":"2010-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7127472227,"date":"2010-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9106666667,"date":"2010-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.714324021,"date":"2010-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.85425,"date":"2010-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7158999428,"date":"2010-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8503333333,"date":"2010-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7174749879,"date":"2010-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8255,"date":"2010-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7190491566,"date":"2010-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8619166667,"date":"2010-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7206224486,"date":"2010-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.87475,"date":"2010-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7221948642,"date":"2010-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8473333333,"date":"2010-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7237664031,"date":"2010-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.84,"date":"2010-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7253370655,"date":"2010-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8430833333,"date":"2010-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7269068514,"date":"2010-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8665,"date":"2010-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7284757606,"date":"2010-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8558333333,"date":"2010-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7300437934,"date":"2010-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8999166667,"date":"2010-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7316109495,"date":"2010-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.86625,"date":"2010-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7331772292,"date":"2010-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8288333333,"date":"2010-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7347426322,"date":"2010-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8029166667,"date":"2010-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7363071587,"date":"2010-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7980833333,"date":"2010-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7378708087,"date":"2010-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8306666667,"date":"2010-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.739433582,"date":"2010-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.83275,"date":"2010-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7409954789,"date":"2010-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8078333333,"date":"2010-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7425564992,"date":"2010-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8433333333,"date":"2010-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7441166429,"date":"2010-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.92875,"date":"2010-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.74567591,"date":"2010-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9503333333,"date":"2010-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7472343006,"date":"2010-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9365,"date":"2010-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7487918147,"date":"2010-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9285833333,"date":"2010-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7503484522,"date":"2010-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9778333333,"date":"2010-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7519042131,"date":"2010-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0080833333,"date":"2010-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7534590975,"date":"2010-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3,"date":"2010-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7550131053,"date":"2010-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9825833333,"date":"2010-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7565662366,"date":"2010-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0786666667,"date":"2010-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7581184913,"date":"2010-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1004166667,"date":"2010-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7596698694,"date":"2010-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.10525,"date":"2010-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.761220371,"date":"2010-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1688333333,"date":"2010-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.762769996,"date":"2010-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1865,"date":"2011-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7643187445,"date":"2011-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2041666667,"date":"2011-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7658666164,"date":"2011-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2201666667,"date":"2011-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7674136118,"date":"2011-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2259166667,"date":"2011-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7689597306,"date":"2011-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2195,"date":"2011-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7705049729,"date":"2011-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2478333333,"date":"2011-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7720493386,"date":"2011-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2588333333,"date":"2011-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7735928277,"date":"2011-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3095,"date":"2011-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7751354403,"date":"2011-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4985833333,"date":"2011-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7766771763,"date":"2011-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6375833333,"date":"2011-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7782180358,"date":"2011-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6886666667,"date":"2011-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7797580187,"date":"2011-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6863333333,"date":"2011-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.781297125,"date":"2011-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7195,"date":"2011-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7828353548,"date":"2011-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8025,"date":"2011-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7843727081,"date":"2011-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.909,"date":"2011-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7859091847,"date":"2011-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9649166667,"date":"2011-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7874447849,"date":"2011-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.002,"date":"2011-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7889795084,"date":"2011-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0819166667,"date":"2011-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7905133554,"date":"2011-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.08775,"date":"2011-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7920463259,"date":"2011-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0836666667,"date":"2011-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7935784198,"date":"2011-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9784166667,"date":"2011-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7951096371,"date":"2011-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.91875,"date":"2011-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7966399779,"date":"2011-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8975,"date":"2011-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7981694421,"date":"2011-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8353333333,"date":"2011-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.7996980298,"date":"2011-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7805833333,"date":"2011-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8012257409,"date":"2011-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7065833333,"date":"2011-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8027525755,"date":"2011-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7025,"date":"2011-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8042785335,"date":"2011-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7580833333,"date":"2011-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8058036149,"date":"2011-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7989166667,"date":"2011-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8073278198,"date":"2011-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8170833333,"date":"2011-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8088511481,"date":"2011-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8271666667,"date":"2011-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8103735999,"date":"2011-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.79175,"date":"2011-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8118951751,"date":"2011-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7258333333,"date":"2011-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8134158738,"date":"2011-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.70175,"date":"2011-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8149356959,"date":"2011-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7428333333,"date":"2011-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8164546414,"date":"2011-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7889166667,"date":"2011-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8179727104,"date":"2011-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7779166667,"date":"2011-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8194899029,"date":"2011-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7255,"date":"2011-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8210062187,"date":"2011-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6406666667,"date":"2011-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.822521658,"date":"2011-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5676666667,"date":"2011-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8240362208,"date":"2011-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5489166667,"date":"2011-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.825549907,"date":"2011-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6025,"date":"2011-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8270627167,"date":"2011-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5915,"date":"2011-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8285746497,"date":"2011-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5828333333,"date":"2011-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8300857063,"date":"2011-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5561666667,"date":"2011-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8315958862,"date":"2011-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.56775,"date":"2011-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8331051897,"date":"2011-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5034166667,"date":"2011-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8346136165,"date":"2011-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.447,"date":"2011-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8361211668,"date":"2011-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4248333333,"date":"2011-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8376278406,"date":"2011-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4170833333,"date":"2011-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8391336378,"date":"2011-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3644166667,"date":"2011-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8406385584,"date":"2011-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3875,"date":"2011-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8421426025,"date":"2011-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.429,"date":"2012-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.84364577,"date":"2012-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.513,"date":"2012-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.845148061,"date":"2012-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.52275,"date":"2012-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8466494754,"date":"2012-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5246666667,"date":"2012-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8481500132,"date":"2012-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5743333333,"date":"2012-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8496496745,"date":"2012-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.61375,"date":"2012-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8511484593,"date":"2012-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6596666667,"date":"2012-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8526463674,"date":"2012-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.732,"date":"2012-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8541433991,"date":"2012-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8614166667,"date":"2012-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8556395541,"date":"2012-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9273333333,"date":"2012-03-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8571348326,"date":"2012-03-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.964,"date":"2012-03-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8586292346,"date":"2012-03-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0018333333,"date":"2012-03-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.86012276,"date":"2012-03-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0504166667,"date":"2012-03-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8616154088,"date":"2012-03-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0706666667,"date":"2012-04-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8631071811,"date":"2012-04-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.07175,"date":"2012-04-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8645980768,"date":"2012-04-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0521666667,"date":"2012-04-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.866088096,"date":"2012-04-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0058333333,"date":"2012-04-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8675772386,"date":"2012-04-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9668333333,"date":"2012-04-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8690655047,"date":"2012-04-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.92975,"date":"2012-05-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8705528942,"date":"2012-05-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.905,"date":"2012-05-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8720394071,"date":"2012-05-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8615,"date":"2012-05-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8735250435,"date":"2012-05-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8170833333,"date":"2012-05-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8750098033,"date":"2012-05-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7609166667,"date":"2012-06-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8764936866,"date":"2012-06-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7135833333,"date":"2012-06-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8779766933,"date":"2012-06-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6640833333,"date":"2012-06-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8794588234,"date":"2012-06-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5713333333,"date":"2012-06-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.880940077,"date":"2012-06-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4944166667,"date":"2012-07-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8824204541,"date":"2012-07-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5433333333,"date":"2012-07-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8838999546,"date":"2012-07-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5616666667,"date":"2012-07-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8853785785,"date":"2012-07-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6311666667,"date":"2012-07-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8868563259,"date":"2012-07-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6438333333,"date":"2012-07-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8883331967,"date":"2012-07-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.76925,"date":"2012-08-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8898091909,"date":"2012-08-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8539166667,"date":"2012-08-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8912843086,"date":"2012-08-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8799166667,"date":"2012-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8927585498,"date":"2012-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9118333333,"date":"2012-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8942319144,"date":"2012-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.974,"date":"2012-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8957044024,"date":"2012-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9806666667,"date":"2012-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8971760139,"date":"2012-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.012,"date":"2012-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.8986467488,"date":"2012-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9665833333,"date":"2012-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9001166072,"date":"2012-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.94525,"date":"2012-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.901585589,"date":"2012-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0136666667,"date":"2012-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9030536942,"date":"2012-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.98625,"date":"2012-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9045209229,"date":"2012-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8585,"date":"2012-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.905987275,"date":"2012-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7351666667,"date":"2012-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9074527506,"date":"2012-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6595833333,"date":"2012-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9089173496,"date":"2012-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6109166667,"date":"2012-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9103810721,"date":"2012-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5866666667,"date":"2012-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.911843918,"date":"2012-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5889166667,"date":"2012-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9133058873,"date":"2012-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5489166667,"date":"2012-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9147669801,"date":"2012-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5030833333,"date":"2012-12-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9162271964,"date":"2012-12-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4101666667,"date":"2012-12-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.917686536,"date":"2012-12-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4134166667,"date":"2012-12-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9191449992,"date":"2012-12-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4539166667,"date":"2012-12-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9206025857,"date":"2012-12-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4639166667,"date":"2013-01-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9220592957,"date":"2013-01-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.469,"date":"2013-01-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9235151292,"date":"2013-01-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4744166667,"date":"2013-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9249700861,"date":"2013-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5135,"date":"2013-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9264241664,"date":"2013-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6901666667,"date":"2013-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9278773702,"date":"2013-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7646666667,"date":"2013-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9293296974,"date":"2013-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8923333333,"date":"2013-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9307811481,"date":"2013-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9339166667,"date":"2013-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9322317222,"date":"2013-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.91,"date":"2013-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9336814197,"date":"2013-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.86525,"date":"2013-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9351302407,"date":"2013-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8494166667,"date":"2013-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9365781852,"date":"2013-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8305833333,"date":"2013-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.938025253,"date":"2013-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8023333333,"date":"2013-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9394714444,"date":"2013-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7638333333,"date":"2013-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9409167591,"date":"2013-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7015,"date":"2013-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9423611973,"date":"2013-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.688,"date":"2013-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.943804759,"date":"2013-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6716666667,"date":"2013-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9452474441,"date":"2013-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6834166667,"date":"2013-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9466892526,"date":"2013-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.74425,"date":"2013-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9481301846,"date":"2013-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7975,"date":"2013-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.94957024,"date":"2013-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7765833333,"date":"2013-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9510094189,"date":"2013-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7738333333,"date":"2013-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9524477212,"date":"2013-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.78475,"date":"2013-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.953885147,"date":"2013-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7660833333,"date":"2013-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9553216962,"date":"2013-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7355,"date":"2013-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9567573688,"date":"2013-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6634166667,"date":"2013-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9581921649,"date":"2013-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.65675,"date":"2013-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9596260844,"date":"2013-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7924166667,"date":"2013-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9610591274,"date":"2013-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8378333333,"date":"2013-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9624912938,"date":"2013-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.80725,"date":"2013-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9639225837,"date":"2013-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.78775,"date":"2013-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.965352997,"date":"2013-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7235833333,"date":"2013-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9667825337,"date":"2013-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7071666667,"date":"2013-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9682111939,"date":"2013-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.70625,"date":"2013-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9696389775,"date":"2013-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.754,"date":"2013-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9710658846,"date":"2013-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7398333333,"date":"2013-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9724919151,"date":"2013-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7113333333,"date":"2013-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9739170691,"date":"2013-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6588333333,"date":"2013-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9753413465,"date":"2013-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.59425,"date":"2013-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9767647473,"date":"2013-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.53525,"date":"2013-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9781872716,"date":"2013-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.52225,"date":"2013-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9796089194,"date":"2013-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5230833333,"date":"2013-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9810296905,"date":"2013-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4666666667,"date":"2013-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9824495852,"date":"2013-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.43525,"date":"2013-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9838686032,"date":"2013-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3709166667,"date":"2013-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9852867447,"date":"2013-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3919166667,"date":"2013-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9867040097,"date":"2013-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4623333333,"date":"2013-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9881203981,"date":"2013-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4495,"date":"2013-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9895359099,"date":"2013-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.44625,"date":"2013-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9909505452,"date":"2013-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4215,"date":"2013-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9923643039,"date":"2013-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.45025,"date":"2013-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9937771861,"date":"2013-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5034166667,"date":"2013-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9951891917,"date":"2013-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5093333333,"date":"2014-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9966003207,"date":"2014-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4998333333,"date":"2014-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9980105732,"date":"2014-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4701666667,"date":"2014-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":2.9994199491,"date":"2014-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4669166667,"date":"2014-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0008284485,"date":"2014-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.46375,"date":"2014-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0022360713,"date":"2014-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.479,"date":"2014-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0036428176,"date":"2014-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5475,"date":"2014-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0050486873,"date":"2014-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.60675,"date":"2014-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0064536805,"date":"2014-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.64175,"date":"2014-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0078577971,"date":"2014-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6708333333,"date":"2014-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0092610371,"date":"2014-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.706,"date":"2014-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0106634006,"date":"2014-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7111666667,"date":"2014-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0120648875,"date":"2014-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7381666667,"date":"2014-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0134654979,"date":"2014-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7605,"date":"2014-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0148652317,"date":"2014-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.816,"date":"2014-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0162640889,"date":"2014-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.85025,"date":"2014-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0176620696,"date":"2014-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8839166667,"date":"2014-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0190591738,"date":"2014-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.85875,"date":"2014-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0204554013,"date":"2014-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8420833333,"date":"2014-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0218507524,"date":"2014-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8385833333,"date":"2014-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0232452268,"date":"2014-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.84325,"date":"2014-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0246388248,"date":"2014-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8565833333,"date":"2014-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0260315461,"date":"2014-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8398333333,"date":"2014-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0274233909,"date":"2014-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.85,"date":"2014-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0288143591,"date":"2014-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8686666667,"date":"2014-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0302044508,"date":"2014-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8699166667,"date":"2014-06-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.031593666,"date":"2014-06-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8475,"date":"2014-07-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0329820045,"date":"2014-07-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.80875,"date":"2014-07-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0343694665,"date":"2014-07-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7668333333,"date":"2014-07-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.035756052,"date":"2014-07-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7155833333,"date":"2014-07-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0371417609,"date":"2014-07-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6915,"date":"2014-08-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0385265932,"date":"2014-08-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6748333333,"date":"2014-08-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.039910549,"date":"2014-08-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.64375,"date":"2014-08-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0412936283,"date":"2014-08-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6246666667,"date":"2014-08-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0426758309,"date":"2014-08-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6250833333,"date":"2014-09-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0440571571,"date":"2014-09-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6225,"date":"2014-09-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0454376066,"date":"2014-09-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5761666667,"date":"2014-09-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0468171796,"date":"2014-09-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5251666667,"date":"2014-09-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0481958761,"date":"2014-09-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5249166667,"date":"2014-09-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0495736959,"date":"2014-09-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4766666667,"date":"2014-10-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0509506393,"date":"2014-10-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3915,"date":"2014-10-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0523267061,"date":"2014-10-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3021666667,"date":"2014-10-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0537018963,"date":"2014-10-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2323333333,"date":"2014-10-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0550762099,"date":"2014-10-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.17,"date":"2014-11-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.056449647,"date":"2014-11-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.116,"date":"2014-11-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0578222076,"date":"2014-11-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0705833333,"date":"2014-11-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0591938916,"date":"2014-11-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0020833333,"date":"2014-11-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.060564699,"date":"2014-11-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9605,"date":"2014-12-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0619346299,"date":"2014-12-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8666666667,"date":"2014-12-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0633036842,"date":"2014-12-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.74625,"date":"2014-12-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.064671862,"date":"2014-12-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6041666667,"date":"2014-12-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0660391632,"date":"2014-12-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5036666667,"date":"2014-12-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0674055878,"date":"2014-12-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.42375,"date":"2015-01-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0687711359,"date":"2015-01-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3450833333,"date":"2015-01-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0701358074,"date":"2015-01-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2650833333,"date":"2015-01-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0714996024,"date":"2015-01-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2385833333,"date":"2015-01-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0728625208,"date":"2015-01-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2544166667,"date":"2015-02-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0742245627,"date":"2015-02-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3746666667,"date":"2015-02-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.075585728,"date":"2015-02-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.45975,"date":"2015-02-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0769460168,"date":"2015-02-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5195833333,"date":"2015-02-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.078305429,"date":"2015-02-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.67225,"date":"2015-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0796639646,"date":"2015-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6890833333,"date":"2015-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0810216237,"date":"2015-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.65525,"date":"2015-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0823784062,"date":"2015-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6515833333,"date":"2015-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0837343122,"date":"2015-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.64325,"date":"2015-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0850893416,"date":"2015-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6116666667,"date":"2015-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0864434944,"date":"2015-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6054166667,"date":"2015-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0877967707,"date":"2015-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6794166667,"date":"2015-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0891491705,"date":"2015-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.776,"date":"2015-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0905006937,"date":"2015-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8776666667,"date":"2015-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0918513403,"date":"2015-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9048333333,"date":"2015-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0932011103,"date":"2015-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.95325,"date":"2015-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0945500039,"date":"2015-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9800833333,"date":"2015-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0958980208,"date":"2015-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9816666667,"date":"2015-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0972451612,"date":"2015-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9790833333,"date":"2015-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0985914251,"date":"2015-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0245833333,"date":"2015-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.0999368123,"date":"2015-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0031666667,"date":"2015-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1012813231,"date":"2015-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9933333333,"date":"2015-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1026249572,"date":"2015-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9863333333,"date":"2015-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1039677149,"date":"2015-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0495833333,"date":"2015-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1053095959,"date":"2015-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.01825,"date":"2015-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1066506004,"date":"2015-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.964,"date":"2015-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1079907284,"date":"2015-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9108333333,"date":"2015-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1093299797,"date":"2015-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8488333333,"date":"2015-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1106683546,"date":"2015-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9221666667,"date":"2015-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1120058528,"date":"2015-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8459166667,"date":"2015-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1133424746,"date":"2015-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7256666667,"date":"2015-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1146782197,"date":"2015-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6556666667,"date":"2015-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1160130883,"date":"2015-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5951666667,"date":"2015-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1173470804,"date":"2015-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5485833333,"date":"2015-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1186801958,"date":"2015-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5356666667,"date":"2015-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1200124348,"date":"2015-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.52875,"date":"2015-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1213437972,"date":"2015-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5398333333,"date":"2015-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.122674283,"date":"2015-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4845833333,"date":"2015-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1240038922,"date":"2015-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4403333333,"date":"2015-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1253326249,"date":"2015-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.43425,"date":"2015-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1266604811,"date":"2015-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.45025,"date":"2015-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1279874607,"date":"2015-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.40075,"date":"2015-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1293135637,"date":"2015-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3225,"date":"2015-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1306387902,"date":"2015-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2930833333,"date":"2015-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1319631401,"date":"2015-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2871666667,"date":"2015-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1332866135,"date":"2015-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2714166667,"date":"2015-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1346092103,"date":"2015-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2659166667,"date":"2015-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1359309305,"date":"2015-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2755,"date":"2015-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1372517742,"date":"2015-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2711666667,"date":"2016-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1385717413,"date":"2016-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2410833333,"date":"2016-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1398908319,"date":"2016-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.15825,"date":"2016-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1412090459,"date":"2016-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1033333333,"date":"2016-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1425263834,"date":"2016-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0665833333,"date":"2016-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1438428443,"date":"2016-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0065,"date":"2016-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1451584287,"date":"2016-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9654166667,"date":"2016-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1464731365,"date":"2016-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":1.9610833333,"date":"2016-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1477869677,"date":"2016-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0085,"date":"2016-02-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1490999224,"date":"2016-02-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.0591666667,"date":"2016-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1504120005,"date":"2016-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1816666667,"date":"2016-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1517232021,"date":"2016-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2295,"date":"2016-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1530335271,"date":"2016-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.29525,"date":"2016-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1543429755,"date":"2016-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3093333333,"date":"2016-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1556515474,"date":"2016-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2985833333,"date":"2016-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1569592428,"date":"2016-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3630833333,"date":"2016-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1582660615,"date":"2016-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3878333333,"date":"2016-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1595720038,"date":"2016-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4613333333,"date":"2016-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1608770694,"date":"2016-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.448,"date":"2016-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1621812586,"date":"2016-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4648333333,"date":"2016-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1634845711,"date":"2016-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5193333333,"date":"2016-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1647870071,"date":"2016-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5528333333,"date":"2016-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1660885665,"date":"2016-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5924166667,"date":"2016-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1673892494,"date":"2016-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6095,"date":"2016-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1686890558,"date":"2016-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.57025,"date":"2016-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1699879855,"date":"2016-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.554,"date":"2016-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1712860387,"date":"2016-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5216666667,"date":"2016-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1725832154,"date":"2016-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.48475,"date":"2016-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1738795155,"date":"2016-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.46225,"date":"2016-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.175174939,"date":"2016-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4148333333,"date":"2016-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.176469486,"date":"2016-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3898333333,"date":"2016-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1777631565,"date":"2016-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.37575,"date":"2016-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1790559503,"date":"2016-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3731666667,"date":"2016-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1803478676,"date":"2016-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.41625,"date":"2016-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1816389084,"date":"2016-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4548333333,"date":"2016-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1829290726,"date":"2016-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4455833333,"date":"2016-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1842183602,"date":"2016-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.43125,"date":"2016-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1855067713,"date":"2016-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4525833333,"date":"2016-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1867943059,"date":"2016-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.455,"date":"2016-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1880809638,"date":"2016-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4759166667,"date":"2016-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1893667453,"date":"2016-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5001666667,"date":"2016-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1906516501,"date":"2016-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4879166667,"date":"2016-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1919356784,"date":"2016-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4775833333,"date":"2016-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1932188302,"date":"2016-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4675833333,"date":"2016-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1945011054,"date":"2016-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4754166667,"date":"2016-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.195782504,"date":"2016-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.43125,"date":"2016-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1970630261,"date":"2016-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.401,"date":"2016-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1983426716,"date":"2016-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.3985833333,"date":"2016-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.1996214405,"date":"2016-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.449,"date":"2016-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2008993329,"date":"2016-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4711666667,"date":"2016-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2021763488,"date":"2016-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.49825,"date":"2016-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2034524881,"date":"2016-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5386666667,"date":"2016-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2047277508,"date":"2016-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6046666667,"date":"2017-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.206002137,"date":"2017-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.61675,"date":"2017-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2072756466,"date":"2017-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.58775,"date":"2017-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2085482797,"date":"2017-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.56,"date":"2017-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2098200362,"date":"2017-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5350833333,"date":"2017-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2110909161,"date":"2017-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5325,"date":"2017-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2123609195,"date":"2017-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.54775,"date":"2017-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2136300464,"date":"2017-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5439166667,"date":"2017-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2148982967,"date":"2017-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5585,"date":"2017-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2161656704,"date":"2017-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5819166667,"date":"2017-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2174321675,"date":"2017-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5659166667,"date":"2017-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2186977882,"date":"2017-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.56525,"date":"2017-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2199625322,"date":"2017-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5618333333,"date":"2017-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2212263997,"date":"2017-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6004166667,"date":"2017-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2224893906,"date":"2017-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6600833333,"date":"2017-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.223751505,"date":"2017-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6749166667,"date":"2017-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2250127428,"date":"2017-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6858333333,"date":"2017-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2262731041,"date":"2017-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6525833333,"date":"2017-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2275325888,"date":"2017-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.61625,"date":"2017-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.228791197,"date":"2017-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6148333333,"date":"2017-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2300489286,"date":"2017-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.64425,"date":"2017-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2313057836,"date":"2017-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6515,"date":"2017-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2325617621,"date":"2017-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6581666667,"date":"2017-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.233816864,"date":"2017-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.61375,"date":"2017-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2350710894,"date":"2017-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5715,"date":"2017-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2363244382,"date":"2017-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.54175,"date":"2017-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2375769105,"date":"2017-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5163333333,"date":"2017-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2388285062,"date":"2017-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5458333333,"date":"2017-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2400792253,"date":"2017-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5284166667,"date":"2017-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2413290679,"date":"2017-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5604166667,"date":"2017-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2425780339,"date":"2017-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6000833333,"date":"2017-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2438261234,"date":"2017-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.62575,"date":"2017-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2450733363,"date":"2017-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6303333333,"date":"2017-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2463196727,"date":"2017-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6093333333,"date":"2017-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2475651325,"date":"2017-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6433333333,"date":"2017-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2488097157,"date":"2017-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.92375,"date":"2017-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2500534224,"date":"2017-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9299166667,"date":"2017-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2512962525,"date":"2017-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8819166667,"date":"2017-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2525382061,"date":"2017-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8330833333,"date":"2017-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2537792831,"date":"2017-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.81325,"date":"2017-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2550194836,"date":"2017-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7553333333,"date":"2017-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2562588075,"date":"2017-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7374166667,"date":"2017-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2574972548,"date":"2017-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7245,"date":"2017-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2587348256,"date":"2017-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7345833333,"date":"2017-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2599715198,"date":"2017-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8086666667,"date":"2017-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2612073375,"date":"2017-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8403333333,"date":"2017-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2624422786,"date":"2017-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8186666667,"date":"2017-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2636763432,"date":"2017-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7854166667,"date":"2017-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2649095312,"date":"2017-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.75475,"date":"2017-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2661418427,"date":"2017-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7375833333,"date":"2017-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2673732775,"date":"2017-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.707,"date":"2017-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2686038359,"date":"2017-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.72575,"date":"2017-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2698335177,"date":"2017-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7724166667,"date":"2018-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2710623229,"date":"2018-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.77875,"date":"2018-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2722902515,"date":"2018-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8083333333,"date":"2018-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2735173037,"date":"2018-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8210833333,"date":"2018-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2747434792,"date":"2018-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8610833333,"date":"2018-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2759687782,"date":"2018-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8919166667,"date":"2018-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2771932006,"date":"2018-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8649166667,"date":"2018-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2784167465,"date":"2018-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8209166667,"date":"2018-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2796394158,"date":"2018-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.81125,"date":"2018-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2808612086,"date":"2018-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8225833333,"date":"2018-03-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2820821248,"date":"2018-03-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8216666667,"date":"2018-03-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2833021645,"date":"2018-03-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8598333333,"date":"2018-03-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2845213276,"date":"2018-03-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9085833333,"date":"2018-03-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2857396141,"date":"2018-03-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.96025,"date":"2018-04-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2869570241,"date":"2018-04-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9554166667,"date":"2018-04-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2881735575,"date":"2018-04-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.00425,"date":"2018-04-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2893892144,"date":"2018-04-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0555833333,"date":"2018-04-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2906039947,"date":"2018-04-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1013333333,"date":"2018-04-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2918178984,"date":"2018-04-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.10325,"date":"2018-05-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2930309256,"date":"2018-05-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1435833333,"date":"2018-05-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2942430763,"date":"2018-05-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1908333333,"date":"2018-05-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2954543504,"date":"2018-05-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2299166667,"date":"2018-05-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2966647479,"date":"2018-05-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2145833333,"date":"2018-06-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2978742688,"date":"2018-06-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1860833333,"date":"2018-06-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.2990829133,"date":"2018-06-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1563333333,"date":"2018-06-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3002906811,"date":"2018-06-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1141666667,"date":"2018-06-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3014975724,"date":"2018-06-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1225,"date":"2018-07-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3027035872,"date":"2018-07-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1355,"date":"2018-07-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3039087253,"date":"2018-07-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1366666667,"date":"2018-07-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.305112987,"date":"2018-07-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1070833333,"date":"2018-07-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.306316372,"date":"2018-07-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1183333333,"date":"2018-07-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3075188806,"date":"2018-07-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1210833333,"date":"2018-08-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3087205125,"date":"2018-08-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.11275,"date":"2018-08-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3099212679,"date":"2018-08-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0929166667,"date":"2018-08-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3111211468,"date":"2018-08-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.09825,"date":"2018-08-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.312320149,"date":"2018-08-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0974166667,"date":"2018-09-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3135182748,"date":"2018-09-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1075833333,"date":"2018-09-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3147155239,"date":"2018-09-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1165,"date":"2018-09-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3159118966,"date":"2018-09-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.11675,"date":"2018-09-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3171073926,"date":"2018-09-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.14475,"date":"2018-10-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3183020121,"date":"2018-10-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1826666667,"date":"2018-10-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3194957551,"date":"2018-10-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1639166667,"date":"2018-10-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3206886215,"date":"2018-10-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.13325,"date":"2018-10-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3218806113,"date":"2018-10-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.10525,"date":"2018-10-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3230717246,"date":"2018-10-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0535,"date":"2018-11-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3242619613,"date":"2018-11-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9895833333,"date":"2018-11-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3254513214,"date":"2018-11-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9201666667,"date":"2018-11-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3266398051,"date":"2018-11-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8581666667,"date":"2018-11-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3278274121,"date":"2018-11-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7746666667,"date":"2018-12-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3290141426,"date":"2018-12-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7373333333,"date":"2018-12-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3301999965,"date":"2018-12-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6884166667,"date":"2018-12-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3313849739,"date":"2018-12-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6433333333,"date":"2018-12-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3325690747,"date":"2018-12-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5909166667,"date":"2018-12-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.333752299,"date":"2018-12-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5606666667,"date":"2019-01-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3349346467,"date":"2019-01-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.564,"date":"2019-01-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3361161178,"date":"2019-01-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.56425,"date":"2019-01-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3372967124,"date":"2019-01-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5623333333,"date":"2019-01-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3384764305,"date":"2019-01-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5584166667,"date":"2019-02-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.339655272,"date":"2019-02-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.57625,"date":"2019-02-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3408332369,"date":"2019-02-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6099166667,"date":"2019-02-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3420103252,"date":"2019-02-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6711666667,"date":"2019-02-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.343186537,"date":"2019-02-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6981666667,"date":"2019-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3443618723,"date":"2019-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.74175,"date":"2019-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.345536331,"date":"2019-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8166666667,"date":"2019-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3467099131,"date":"2019-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8960833333,"date":"2019-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3478826187,"date":"2019-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9681666667,"date":"2019-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3490544477,"date":"2019-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0340833333,"date":"2019-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3502254002,"date":"2019-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1266666667,"date":"2019-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3513954761,"date":"2019-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.14875,"date":"2019-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3525646755,"date":"2019-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.19725,"date":"2019-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3537329983,"date":"2019-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.21075,"date":"2019-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3549004445,"date":"2019-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1830833333,"date":"2019-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3560670142,"date":"2019-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1685,"date":"2019-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3572327073,"date":"2019-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1375833333,"date":"2019-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3583975239,"date":"2019-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1171666667,"date":"2019-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3595614639,"date":"2019-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0486666667,"date":"2019-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3607245273,"date":"2019-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.99025,"date":"2019-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3618867142,"date":"2019-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9665,"date":"2019-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3630480246,"date":"2019-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.01575,"date":"2019-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3642084584,"date":"2019-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0401666667,"date":"2019-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3653680156,"date":"2019-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0685833333,"date":"2019-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3665266963,"date":"2019-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0430833333,"date":"2019-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3676845004,"date":"2019-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0111666667,"date":"2019-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3688414279,"date":"2019-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.987,"date":"2019-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3699974789,"date":"2019-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9296666667,"date":"2019-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3711526534,"date":"2019-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9025833333,"date":"2019-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3723069513,"date":"2019-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.883,"date":"2019-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3734603726,"date":"2019-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8750833333,"date":"2019-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3746129174,"date":"2019-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8625833333,"date":"2019-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3757645856,"date":"2019-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.86325,"date":"2019-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3769153773,"date":"2019-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9605,"date":"2019-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3780652924,"date":"2019-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.98525,"date":"2019-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3792143309,"date":"2019-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9979166667,"date":"2019-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3803624929,"date":"2019-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.985,"date":"2019-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3815097783,"date":"2019-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9860833333,"date":"2019-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3826561872,"date":"2019-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.94375,"date":"2019-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3838017195,"date":"2019-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9556666667,"date":"2019-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3849463753,"date":"2019-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9631666667,"date":"2019-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3860901545,"date":"2019-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9349166667,"date":"2019-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3872330571,"date":"2019-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9135833333,"date":"2019-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3883750832,"date":"2019-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8996666667,"date":"2019-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3895162328,"date":"2019-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.88125,"date":"2019-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3906565057,"date":"2019-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8563333333,"date":"2019-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3917959021,"date":"2019-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8466666667,"date":"2019-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.392934422,"date":"2019-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8751666667,"date":"2019-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3940720653,"date":"2019-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8808333333,"date":"2020-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3952088321,"date":"2020-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.87475,"date":"2020-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3963447223,"date":"2020-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8461666667,"date":"2020-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3974797359,"date":"2020-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8190833333,"date":"2020-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.398613873,"date":"2020-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7765,"date":"2020-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.3997471335,"date":"2020-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7435833333,"date":"2020-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4008795175,"date":"2020-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.74575,"date":"2020-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4020110249,"date":"2020-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7789166667,"date":"2020-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4031416557,"date":"2020-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7453333333,"date":"2020-03-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.40427141,"date":"2020-03-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7021666667,"date":"2020-03-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4054002878,"date":"2020-03-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.58475,"date":"2020-03-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4065282889,"date":"2020-03-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4628333333,"date":"2020-03-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4076554136,"date":"2020-03-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.355,"date":"2020-03-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4087816616,"date":"2020-03-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2745833333,"date":"2020-04-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4099070331,"date":"2020-04-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.20125,"date":"2020-04-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4110315281,"date":"2020-04-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1604166667,"date":"2020-04-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4121551465,"date":"2020-04-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.11725,"date":"2020-04-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4132778883,"date":"2020-04-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1213333333,"date":"2020-05-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4143997536,"date":"2020-05-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1696666667,"date":"2020-05-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4155207423,"date":"2020-05-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.1990833333,"date":"2020-05-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4166408545,"date":"2020-05-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2720833333,"date":"2020-05-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4177600901,"date":"2020-05-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.2890833333,"date":"2020-06-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4188784492,"date":"2020-06-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.344,"date":"2020-06-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4199959317,"date":"2020-06-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4030833333,"date":"2020-06-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4211125376,"date":"2020-06-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.43225,"date":"2020-06-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.422228267,"date":"2020-06-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4748333333,"date":"2020-06-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4233431198,"date":"2020-06-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.48025,"date":"2020-07-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4244570961,"date":"2020-07-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.49975,"date":"2020-07-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4255701958,"date":"2020-07-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4939166667,"date":"2020-07-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.426682419,"date":"2020-07-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4895,"date":"2020-07-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4277937656,"date":"2020-07-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.49,"date":"2020-08-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4289042356,"date":"2020-08-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4801666667,"date":"2020-08-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4300138291,"date":"2020-08-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4823333333,"date":"2020-08-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.431122546,"date":"2020-08-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.498,"date":"2020-08-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4322303864,"date":"2020-08-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5341666667,"date":"2020-08-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4333373502,"date":"2020-08-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5275,"date":"2020-09-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4344434375,"date":"2020-09-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5030833333,"date":"2020-09-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4355486482,"date":"2020-09-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4869166667,"date":"2020-09-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4366529823,"date":"2020-09-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4848333333,"date":"2020-09-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4377564399,"date":"2020-09-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4865,"date":"2020-10-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4388590209,"date":"2020-10-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4828333333,"date":"2020-10-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4399607254,"date":"2020-10-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4681666667,"date":"2020-10-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4410615533,"date":"2020-10-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4629166667,"date":"2020-10-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4421615047,"date":"2020-10-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.436,"date":"2020-11-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4432605795,"date":"2020-11-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.42075,"date":"2020-11-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4443587777,"date":"2020-11-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4341666667,"date":"2020-11-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4454560994,"date":"2020-11-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4274166667,"date":"2020-11-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4465525446,"date":"2020-11-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.443,"date":"2020-11-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4476481131,"date":"2020-11-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4734166667,"date":"2020-12-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4487428052,"date":"2020-12-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.4745,"date":"2020-12-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4498366206,"date":"2020-12-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5308333333,"date":"2020-12-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4509295595,"date":"2020-12-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5481666667,"date":"2020-12-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4520216219,"date":"2020-12-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.5546666667,"date":"2021-01-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4531128077,"date":"2021-01-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6196666667,"date":"2021-01-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4542031169,"date":"2021-01-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6805,"date":"2021-01-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4552925496,"date":"2021-01-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.6963333333,"date":"2021-01-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4563811057,"date":"2021-01-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.7136666667,"date":"2021-02-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4574687853,"date":"2021-02-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.76625,"date":"2021-02-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4585555883,"date":"2021-02-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.8070833333,"date":"2021-02-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4596415147,"date":"2021-02-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":2.9301666667,"date":"2021-02-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4607265646,"date":"2021-02-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0103333333,"date":"2021-03-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.461810738,"date":"2021-03-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.0729166667,"date":"2021-03-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4628940347,"date":"2021-03-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1585,"date":"2021-03-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.463976455,"date":"2021-03-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1751666667,"date":"2021-03-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4650579986,"date":"2021-03-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1625833333,"date":"2021-03-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4661386657,"date":"2021-03-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.16725,"date":"2021-04-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4672184563,"date":"2021-04-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1645833333,"date":"2021-04-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4682973703,"date":"2021-04-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.172,"date":"2021-04-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4693754077,"date":"2021-04-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.1914166667,"date":"2021-04-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4704525686,"date":"2021-04-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2116666667,"date":"2021-05-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4715288529,"date":"2021-05-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.2814166667,"date":"2021-05-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4726042607,"date":"2021-05-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.34575,"date":"2021-05-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4736787919,"date":"2021-05-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.34525,"date":"2021-05-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4747524466,"date":"2021-05-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.35275,"date":"2021-05-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4758252247,"date":"2021-05-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3636666667,"date":"2021-06-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4768971262,"date":"2021-06-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.39425,"date":"2021-06-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4779681512,"date":"2021-06-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.3904166667,"date":"2021-06-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4790382996,"date":"2021-06-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4235,"date":"2021-06-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4801075715,"date":"2021-06-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4525833333,"date":"2021-07-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4811759668,"date":"2021-07-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4655,"date":"2021-07-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4822434856,"date":"2021-07-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4844166667,"date":"2021-07-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4833101278,"date":"2021-07-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4724166667,"date":"2021-07-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4843758934,"date":"2021-07-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4996666667,"date":"2021-08-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4854407825,"date":"2021-08-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5111666667,"date":"2021-08-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.486504795,"date":"2021-08-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.51675,"date":"2021-08-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.487567931,"date":"2021-08-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4896666667,"date":"2021-08-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4886301904,"date":"2021-08-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4851666667,"date":"2021-08-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4896915733,"date":"2021-08-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5165833333,"date":"2021-09-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4907520796,"date":"2021-09-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5061666667,"date":"2021-09-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4918117093,"date":"2021-09-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5210833333,"date":"2021-09-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4928704625,"date":"2021-09-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5143333333,"date":"2021-09-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4939283391,"date":"2021-09-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5270833333,"date":"2021-10-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4949853392,"date":"2021-10-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5971666667,"date":"2021-10-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4960414627,"date":"2021-10-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.65275,"date":"2021-10-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4970967097,"date":"2021-10-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7156666667,"date":"2021-10-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4981510801,"date":"2021-10-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7273333333,"date":"2021-11-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.4992045739,"date":"2021-11-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7481666667,"date":"2021-11-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5002571912,"date":"2021-11-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7454166667,"date":"2021-11-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.501308932,"date":"2021-11-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.74575,"date":"2021-11-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5023597961,"date":"2021-11-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7333333333,"date":"2021-11-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5034097837,"date":"2021-11-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.69975,"date":"2021-12-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5044588948,"date":"2021-12-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6755,"date":"2021-12-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5055071293,"date":"2021-12-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6595,"date":"2021-12-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5065544873,"date":"2021-12-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6401666667,"date":"2021-12-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5076009687,"date":"2021-12-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.64475,"date":"2022-01-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5086465735,"date":"2022-01-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6535833333,"date":"2022-01-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5096913018,"date":"2022-01-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6615,"date":"2022-01-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5107351535,"date":"2022-01-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6755,"date":"2022-01-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5117781287,"date":"2022-01-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7140833333,"date":"2022-01-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5128202273,"date":"2022-01-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7806666667,"date":"2022-02-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5138614493,"date":"2022-02-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.82275,"date":"2022-02-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5149017948,"date":"2022-02-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8669166667,"date":"2022-02-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5159412637,"date":"2022-02-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9433333333,"date":"2022-02-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5169798561,"date":"2022-02-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4456666667,"date":"2022-03-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5180175719,"date":"2022-03-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.6726666667,"date":"2022-03-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5190544112,"date":"2022-03-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.6170833333,"date":"2022-03-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5200903739,"date":"2022-03-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.61125,"date":"2022-03-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5211254601,"date":"2022-03-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.5525833333,"date":"2022-04-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5221596697,"date":"2022-04-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4771666667,"date":"2022-04-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5231930027,"date":"2022-04-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4511666667,"date":"2022-04-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5242254592,"date":"2022-04-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4879166667,"date":"2022-04-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5252570391,"date":"2022-04-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.5610833333,"date":"2022-05-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5262877425,"date":"2022-05-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.701,"date":"2022-05-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5273175693,"date":"2022-05-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.8656666667,"date":"2022-05-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5283465195,"date":"2022-05-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.9719166667,"date":"2022-05-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5293745932,"date":"2022-05-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.012,"date":"2022-05-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5304017904,"date":"2022-05-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.2535,"date":"2022-06-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.531428111,"date":"2022-06-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.38075,"date":"2022-06-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.532453555,"date":"2022-06-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.3458333333,"date":"2022-06-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5334781225,"date":"2022-06-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.2643333333,"date":"2022-06-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5345018134,"date":"2022-06-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.1664166667,"date":"2022-07-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5355246277,"date":"2022-07-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":5.0398333333,"date":"2022-07-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5365465655,"date":"2022-07-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.883,"date":"2022-07-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5375676268,"date":"2022-07-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.7291666667,"date":"2022-07-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5385878115,"date":"2022-07-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.5989166667,"date":"2022-08-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5396071196,"date":"2022-08-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.4489166667,"date":"2022-08-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5406255512,"date":"2022-08-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.349,"date":"2022-08-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5416431062,"date":"2022-08-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2890833333,"date":"2022-08-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5426597846,"date":"2022-08-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2285,"date":"2022-08-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5436755865,"date":"2022-08-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1523333333,"date":"2022-09-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5446905119,"date":"2022-09-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1074166667,"date":"2022-09-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5457045607,"date":"2022-09-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0789166667,"date":"2022-09-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5467177329,"date":"2022-09-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.14825,"date":"2022-09-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5477300286,"date":"2022-09-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2526666667,"date":"2022-10-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5487414477,"date":"2022-10-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.3633333333,"date":"2022-10-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5497519903,"date":"2022-10-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.3120833333,"date":"2022-10-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5507616563,"date":"2022-10-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1995833333,"date":"2022-10-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5517704457,"date":"2022-10-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1658333333,"date":"2022-10-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5527783586,"date":"2022-10-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2105,"date":"2022-11-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5537853949,"date":"2022-11-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.17825,"date":"2022-11-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5547915547,"date":"2022-11-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0665,"date":"2022-11-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5557968379,"date":"2022-11-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9478333333,"date":"2022-11-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5568012446,"date":"2022-11-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7958333333,"date":"2022-12-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5578047747,"date":"2022-12-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6435833333,"date":"2022-12-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5588074282,"date":"2022-12-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.523,"date":"2022-12-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5598092052,"date":"2022-12-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4898333333,"date":"2022-12-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5608101057,"date":"2022-12-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6025,"date":"2023-01-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5618101295,"date":"2023-01-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6311666667,"date":"2023-01-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5628092769,"date":"2023-01-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.67775,"date":"2023-01-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5638075476,"date":"2023-01-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.774,"date":"2023-01-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5648049418,"date":"2023-01-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8493333333,"date":"2023-01-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5658014595,"date":"2023-01-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8183333333,"date":"2023-02-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5667971006,"date":"2023-02-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.77675,"date":"2023-02-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5677918651,"date":"2023-02-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.776,"date":"2023-02-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5687857531,"date":"2023-02-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7435833333,"date":"2023-02-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5697787645,"date":"2023-02-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7944166667,"date":"2023-03-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5707708994,"date":"2023-03-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8526666667,"date":"2023-03-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5717621577,"date":"2023-03-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.81625,"date":"2023-03-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5727525394,"date":"2023-03-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.81875,"date":"2023-03-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5737420446,"date":"2023-03-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.883,"date":"2023-04-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5747306733,"date":"2023-04-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9720833333,"date":"2023-04-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5757184254,"date":"2023-04-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0398333333,"date":"2023-04-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5767053009,"date":"2023-04-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0428333333,"date":"2023-04-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5776912998,"date":"2023-04-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9936666667,"date":"2023-05-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5786764223,"date":"2023-05-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9304166667,"date":"2023-05-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5796606681,"date":"2023-05-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9295,"date":"2023-05-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5806440374,"date":"2023-05-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9285833333,"date":"2023-05-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5816265302,"date":"2023-05-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9719166667,"date":"2023-05-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5826081463,"date":"2023-05-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9455833333,"date":"2023-06-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.583588886,"date":"2023-06-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.995,"date":"2023-06-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.584568749,"date":"2023-06-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.98025,"date":"2023-06-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5855477355,"date":"2023-06-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9753333333,"date":"2023-06-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5865258455,"date":"2023-06-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9385833333,"date":"2023-07-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5875030789,"date":"2023-07-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9613333333,"date":"2023-07-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5884794357,"date":"2023-07-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9698333333,"date":"2023-07-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.589454916,"date":"2023-07-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0019166667,"date":"2023-07-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5904295198,"date":"2023-07-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1503333333,"date":"2023-07-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5914032469,"date":"2023-07-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2188333333,"date":"2023-08-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5923760975,"date":"2023-08-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2440833333,"date":"2023-08-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5933480716,"date":"2023-08-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2770833333,"date":"2023-08-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5943191691,"date":"2023-08-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.23275,"date":"2023-08-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.59528939,"date":"2023-08-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.22625,"date":"2023-09-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5962587344,"date":"2023-09-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2460833333,"date":"2023-09-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5972272023,"date":"2023-09-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.323,"date":"2023-09-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5981947935,"date":"2023-09-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.2991666667,"date":"2023-09-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.5991615083,"date":"2023-09-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.28625,"date":"2023-10-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6001273464,"date":"2023-10-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.1599166667,"date":"2023-10-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.601092308,"date":"2023-10-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0485,"date":"2023-10-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6020563931,"date":"2023-10-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.99475,"date":"2023-10-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6030196015,"date":"2023-10-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9290833333,"date":"2023-10-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6039819335,"date":"2023-10-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8448333333,"date":"2023-11-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6049433889,"date":"2023-11-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.789,"date":"2023-11-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6059039677,"date":"2023-11-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7325833333,"date":"2023-11-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6068636699,"date":"2023-11-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6828333333,"date":"2023-11-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6078224956,"date":"2023-11-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6656666667,"date":"2023-12-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6087804448,"date":"2023-12-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5654166667,"date":"2023-12-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6097375174,"date":"2023-12-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4815,"date":"2023-12-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6106937134,"date":"2023-12-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5409166667,"date":"2023-12-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6116490329,"date":"2023-12-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5228333333,"date":"2024-01-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6126034758,"date":"2024-01-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5079166667,"date":"2024-01-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6135570422,"date":"2024-01-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4788333333,"date":"2024-01-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.614509732,"date":"2024-01-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4768333333,"date":"2024-01-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6154615452,"date":"2024-01-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5109166667,"date":"2024-01-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6164124819,"date":"2024-01-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.54975,"date":"2024-02-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6173625421,"date":"2024-02-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5989166667,"date":"2024-02-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6183117256,"date":"2024-02-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6731666667,"date":"2024-02-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6192600327,"date":"2024-02-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6526666667,"date":"2024-02-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6202074631,"date":"2024-02-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7561666667,"date":"2024-03-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.621154017,"date":"2024-03-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.781,"date":"2024-03-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6220996944,"date":"2024-03-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8548333333,"date":"2024-03-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6230444952,"date":"2024-03-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9271666667,"date":"2024-03-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6239884194,"date":"2024-03-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9306666667,"date":"2024-04-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6249314671,"date":"2024-04-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0188333333,"date":"2024-04-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6258736382,"date":"2024-04-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.06375,"date":"2024-04-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6268149328,"date":"2024-04-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.10625,"date":"2024-04-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6277553508,"date":"2024-04-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.09125,"date":"2024-04-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6286948923,"date":"2024-04-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0814166667,"date":"2024-05-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6296335572,"date":"2024-05-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0420833333,"date":"2024-05-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6305713455,"date":"2024-05-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.0134166667,"date":"2024-05-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6315082573,"date":"2024-05-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":4.00925,"date":"2024-05-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6324442925,"date":"2024-05-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9465,"date":"2024-06-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6333794512,"date":"2024-06-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8579166667,"date":"2024-06-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6343137333,"date":"2024-06-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8586666667,"date":"2024-06-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6352471388,"date":"2024-06-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8534166667,"date":"2024-06-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6361796678,"date":"2024-06-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8831666667,"date":"2024-07-01","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6371113203,"date":"2024-07-01","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.90025,"date":"2024-07-08","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6380420962,"date":"2024-07-08","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.9055,"date":"2024-07-15","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6389719955,"date":"2024-07-15","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.87175,"date":"2024-07-22","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6399010183,"date":"2024-07-22","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.879,"date":"2024-07-29","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6408291645,"date":"2024-07-29","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.84375,"date":"2024-08-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6417564341,"date":"2024-08-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.8125,"date":"2024-08-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6426828272,"date":"2024-08-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7886666667,"date":"2024-08-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6436083438,"date":"2024-08-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7275,"date":"2024-08-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6445329838,"date":"2024-08-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.7145,"date":"2024-09-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6454567472,"date":"2024-09-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6693333333,"date":"2024-09-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6463796341,"date":"2024-09-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.62675,"date":"2024-09-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6473016444,"date":"2024-09-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6224166667,"date":"2024-09-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6482227782,"date":"2024-09-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6073333333,"date":"2024-09-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6491430354,"date":"2024-09-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5685833333,"date":"2024-10-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.650062416,"date":"2024-10-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5970833333,"date":"2024-10-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6509809201,"date":"2024-10-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5735,"date":"2024-10-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6518985476,"date":"2024-10-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5249166667,"date":"2024-10-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6528152986,"date":"2024-10-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.493,"date":"2024-11-04","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.653731173,"date":"2024-11-04","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4789166667,"date":"2024-11-11","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6546461709,"date":"2024-11-11","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4660833333,"date":"2024-11-18","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6555602922,"date":"2024-11-18","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4660833333,"date":"2024-11-25","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6564735369,"date":"2024-11-25","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.45425,"date":"2024-12-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6573859051,"date":"2024-12-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.431,"date":"2024-12-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6582973968,"date":"2024-12-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.431,"date":"2024-12-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6592080118,"date":"2024-12-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4395,"date":"2024-12-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6601177503,"date":"2024-12-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4266666667,"date":"2024-12-30","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6610266123,"date":"2024-12-30","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4620833333,"date":"2025-01-06","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6619345977,"date":"2025-01-06","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4610833333,"date":"2025-01-13","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6628417066,"date":"2025-01-13","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5243333333,"date":"2025-01-20","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6637479389,"date":"2025-01-20","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.522,"date":"2025-01-27","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6646532946,"date":"2025-01-27","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5101666667,"date":"2025-02-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6655577738,"date":"2025-02-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5611666667,"date":"2025-02-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6664613764,"date":"2025-02-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5964166667,"date":"2025-02-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6673641025,"date":"2025-02-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.57775,"date":"2025-02-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.668265952,"date":"2025-02-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5271666667,"date":"2025-03-03","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6691669249,"date":"2025-03-03","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.51375,"date":"2025-03-10","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6700670213,"date":"2025-03-10","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.4978333333,"date":"2025-03-17","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6709662412,"date":"2025-03-17","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5485833333,"date":"2025-03-24","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6718645844,"date":"2025-03-24","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6035,"date":"2025-03-31","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6727620512,"date":"2025-03-31","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6863333333,"date":"2025-04-07","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6736586413,"date":"2025-04-07","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.613,"date":"2025-04-14","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6745543549,"date":"2025-04-14","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.58525,"date":"2025-04-21","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.675449192,"date":"2025-04-21","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.57875,"date":"2025-04-28","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6763431525,"date":"2025-04-28","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5851666667,"date":"2025-05-05","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6772362364,"date":"2025-05-05","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5728333333,"date":"2025-05-12","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6781284438,"date":"2025-05-12","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6244166667,"date":"2025-05-19","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6790197746,"date":"2025-05-19","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6089166667,"date":"2025-05-26","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6799102289,"date":"2025-05-26","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5746666667,"date":"2025-06-02","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6807998066,"date":"2025-06-02","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5501666667,"date":"2025-06-09","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6816885078,"date":"2025-06-09","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.5765,"date":"2025-06-16","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6825763324,"date":"2025-06-16","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6445833333,"date":"2025-06-23","fuel":"gasoline","is_predicted":"original"},{"avg_price":3.6834632804,"date":"2025-06-23","fuel":"gasoline","is_predicted":"regression"},{"avg_price":3.6851081441,"date":"2025-07-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6859925877,"date":"2025-07-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6868761547,"date":"2025-07-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6877588452,"date":"2025-07-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6886406591,"date":"2025-08-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6895215965,"date":"2025-08-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6904016573,"date":"2025-08-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6912808415,"date":"2025-08-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6921591492,"date":"2025-08-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6930365804,"date":"2025-09-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6939131349,"date":"2025-09-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.694788813,"date":"2025-09-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6956636144,"date":"2025-09-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6965375394,"date":"2025-10-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6974105877,"date":"2025-10-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6982827595,"date":"2025-10-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.6991540547,"date":"2025-10-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7000244734,"date":"2025-11-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7008940156,"date":"2025-11-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7017626811,"date":"2025-11-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7026304701,"date":"2025-11-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7034973826,"date":"2025-11-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7043634185,"date":"2025-12-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7052285778,"date":"2025-12-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7060928606,"date":"2025-12-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7069562668,"date":"2025-12-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7078187965,"date":"2026-01-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7086804496,"date":"2026-01-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7095412262,"date":"2026-01-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7104011262,"date":"2026-01-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7112601496,"date":"2026-02-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7121182965,"date":"2026-02-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7129755669,"date":"2026-02-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7138319606,"date":"2026-02-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7146874778,"date":"2026-03-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7155421185,"date":"2026-03-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7163958826,"date":"2026-03-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7172487702,"date":"2026-03-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7181007811,"date":"2026-03-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7189519156,"date":"2026-04-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7198021734,"date":"2026-04-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7206515548,"date":"2026-04-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7215000595,"date":"2026-04-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7223476877,"date":"2026-05-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7231944394,"date":"2026-05-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7240403145,"date":"2026-05-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.724885313,"date":"2026-05-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.725729435,"date":"2026-05-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7265726804,"date":"2026-06-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7274150493,"date":"2026-06-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7282565416,"date":"2026-06-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7290971573,"date":"2026-06-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7299368965,"date":"2026-07-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7307757592,"date":"2026-07-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7316137452,"date":"2026-07-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7324508548,"date":"2026-07-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7332870877,"date":"2026-08-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7341224441,"date":"2026-08-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.734956924,"date":"2026-08-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7357905273,"date":"2026-08-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.736623254,"date":"2026-08-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7374551042,"date":"2026-09-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7382860778,"date":"2026-09-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7391161749,"date":"2026-09-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7399453954,"date":"2026-09-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7407737394,"date":"2026-10-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7416012067,"date":"2026-10-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7424277976,"date":"2026-10-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7432535119,"date":"2026-10-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7440783496,"date":"2026-11-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7449023108,"date":"2026-11-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7457253954,"date":"2026-11-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7465476034,"date":"2026-11-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7473689349,"date":"2026-11-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7481893899,"date":"2026-12-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7490089683,"date":"2026-12-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7498276701,"date":"2026-12-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7506454954,"date":"2026-12-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7514624441,"date":"2027-01-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7522785162,"date":"2027-01-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7530937118,"date":"2027-01-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7539080309,"date":"2027-01-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7547214734,"date":"2027-01-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7555340393,"date":"2027-02-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7563457287,"date":"2027-02-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7571565415,"date":"2027-02-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7579664777,"date":"2027-02-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7587755374,"date":"2027-03-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7595837206,"date":"2027-03-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7603910272,"date":"2027-03-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7611974572,"date":"2027-03-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7620030107,"date":"2027-04-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7628076876,"date":"2027-04-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.763611488,"date":"2027-04-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7644144118,"date":"2027-04-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.765216459,"date":"2027-05-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7660176297,"date":"2027-05-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7668179238,"date":"2027-05-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7676173414,"date":"2027-05-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7684158824,"date":"2027-05-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7692135469,"date":"2027-06-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7700103348,"date":"2027-06-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7708062462,"date":"2027-06-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.771601281,"date":"2027-06-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7723954392,"date":"2027-07-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7731887209,"date":"2027-07-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.773981126,"date":"2027-07-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7747726546,"date":"2027-07-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7755633066,"date":"2027-08-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.776353082,"date":"2027-08-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7771419809,"date":"2027-08-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7779300032,"date":"2027-08-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.778717149,"date":"2027-08-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7795034183,"date":"2027-09-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7802888109,"date":"2027-09-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.781073327,"date":"2027-09-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7818569666,"date":"2027-09-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7826397296,"date":"2027-10-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.783421616,"date":"2027-10-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7842026259,"date":"2027-10-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7849827592,"date":"2027-10-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.785762016,"date":"2027-10-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7865403962,"date":"2027-11-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7873178999,"date":"2027-11-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.788094527,"date":"2027-11-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7888702775,"date":"2027-11-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7896451515,"date":"2027-12-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7904191489,"date":"2027-12-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7911922698,"date":"2027-12-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7919645141,"date":"2027-12-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7927358819,"date":"2028-01-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7935063731,"date":"2028-01-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7942759877,"date":"2028-01-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7950447258,"date":"2028-01-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7958125873,"date":"2028-01-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7965795723,"date":"2028-02-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7973456807,"date":"2028-02-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7981109126,"date":"2028-02-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7988752679,"date":"2028-02-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.7996387466,"date":"2028-03-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8004013488,"date":"2028-03-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8011630744,"date":"2028-03-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8019239235,"date":"2028-03-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.802683896,"date":"2028-04-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.803442992,"date":"2028-04-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8042012114,"date":"2028-04-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8049585542,"date":"2028-04-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8057150205,"date":"2028-04-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8064706103,"date":"2028-05-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8072253234,"date":"2028-05-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8079791601,"date":"2028-05-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8087321201,"date":"2028-05-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8094842036,"date":"2028-06-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8102354106,"date":"2028-06-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.810985741,"date":"2028-06-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8117351948,"date":"2028-06-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8124837721,"date":"2028-07-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8132314728,"date":"2028-07-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.813978297,"date":"2028-07-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8147242446,"date":"2028-07-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8154693156,"date":"2028-07-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8162135101,"date":"2028-08-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8169568281,"date":"2028-08-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8176992694,"date":"2028-08-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8184408343,"date":"2028-08-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8191815225,"date":"2028-09-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8199213342,"date":"2028-09-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8206602694,"date":"2028-09-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.821398328,"date":"2028-09-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.82213551,"date":"2028-10-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8228718155,"date":"2028-10-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8236072444,"date":"2028-10-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8243417968,"date":"2028-10-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8250754726,"date":"2028-10-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8258082719,"date":"2028-11-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8265401946,"date":"2028-11-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8272712407,"date":"2028-11-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8280014103,"date":"2028-11-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8287307033,"date":"2028-12-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8294591198,"date":"2028-12-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8301866597,"date":"2028-12-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8309133231,"date":"2028-12-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8316391099,"date":"2028-12-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8323640201,"date":"2029-01-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8330880538,"date":"2029-01-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8338112109,"date":"2029-01-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8345334915,"date":"2029-01-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8352548955,"date":"2029-02-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.835975423,"date":"2029-02-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8366950739,"date":"2029-02-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8374138482,"date":"2029-02-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.838131746,"date":"2029-03-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8388487672,"date":"2029-03-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8395649119,"date":"2029-03-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.84028018,"date":"2029-03-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8409945716,"date":"2029-04-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8417080866,"date":"2029-04-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.842420725,"date":"2029-04-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8431324869,"date":"2029-04-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8438433723,"date":"2029-04-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.844553381,"date":"2029-05-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8452625133,"date":"2029-05-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8459707689,"date":"2029-05-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.846678148,"date":"2029-05-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8473846506,"date":"2029-06-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8480902766,"date":"2029-06-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.848795026,"date":"2029-06-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8494988989,"date":"2029-06-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8502018952,"date":"2029-07-01","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.850904015,"date":"2029-07-08","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8516052582,"date":"2029-07-15","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8523056248,"date":"2029-07-22","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8530051149,"date":"2029-07-29","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8537037285,"date":"2029-08-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8544014654,"date":"2029-08-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8550983259,"date":"2029-08-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8557943097,"date":"2029-08-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.856489417,"date":"2029-09-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8571836478,"date":"2029-09-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.857877002,"date":"2029-09-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8585694796,"date":"2029-09-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8592610807,"date":"2029-09-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8599518052,"date":"2029-10-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8606416532,"date":"2029-10-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8613306246,"date":"2029-10-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8620187195,"date":"2029-10-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8627059378,"date":"2029-11-04","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8633922795,"date":"2029-11-11","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8640777447,"date":"2029-11-18","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8647623333,"date":"2029-11-25","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8654460454,"date":"2029-12-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8661288809,"date":"2029-12-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8668108399,"date":"2029-12-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8674919223,"date":"2029-12-23","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8681721281,"date":"2029-12-30","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8688514574,"date":"2030-01-06","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8695299101,"date":"2030-01-13","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8702074863,"date":"2030-01-20","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8708841859,"date":"2030-01-27","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.871560009,"date":"2030-02-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8722349555,"date":"2030-02-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8729090254,"date":"2030-02-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8735822188,"date":"2030-02-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8742545356,"date":"2030-03-03","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8749259759,"date":"2030-03-10","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8755965396,"date":"2030-03-17","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8762662268,"date":"2030-03-24","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8769350374,"date":"2030-03-31","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8776029714,"date":"2030-04-07","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8782700289,"date":"2030-04-14","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8789362098,"date":"2030-04-21","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8796015142,"date":"2030-04-28","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.880265942,"date":"2030-05-05","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8809294933,"date":"2030-05-12","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.881592168,"date":"2030-05-19","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8822539662,"date":"2030-05-26","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8829148877,"date":"2030-06-02","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8835749328,"date":"2030-06-09","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8842341013,"date":"2030-06-16","fuel":"gasoline","is_predicted":"forecasting"},{"avg_price":3.8848923932,"date":"2030-06-23","fuel":"gasoline","is_predicted":"forecasting"}],"metadata":{"avg_price":{"type":"number","semanticType":"Number"},"date":{"type":"date","semanticType":"Date"},"fuel":{"type":"string","semanticType":"String"},"is_predicted":{"type":"string","semanticType":"String","levels":["original","regression","forecasting"]}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.preprocessing import PolynomialFeatures\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.pipeline import make_pipeline\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train polynomial regression model (degree 2 for non-linear trends)\n model = make_pipeline(PolynomialFeatures(degree=2), LinearRegression())\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n","source":["weekly_gas_prices"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n date fuel avg_price\n0 1990-08-20 gasoline 1.191\n1 1990-08-27 gasoline 1.245\n2 1990-09-03 gasoline 1.242\n3 1990-09-10 gasoline 1.252\n4 1990-09-17 gasoline 1.266\n5 1990-09-24 gasoline 1.272\n6 1990-10-01 gasoline 1.321\n7 1990-10-08 gasoline 1.333\n8 1990-10-15 gasoline 1.339\n9 1990-10-22 gasoline 1.345\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"forecast the price trend for the next 5 years with some propert model!\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"column\": \"fuel\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Build upon the previous price trends visualization by adding forecasted prices for the next 5 years (2025-2030) using a time series forecasting model. The output should include both historical actual prices and forecasted prices, with an indicator to distinguish between them.\",\n \"display_instruction\": \"Forecast **price** trends for the next 5 years for each **fuel** type\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\", \"is_predicted\"],\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"facet\": \"is_predicted\"\n },\n \"reason\": \"The user wants to extend the price trend analysis with forecasting for the next 5 years. Following the guidelines for forecasting, the output should include a 'is_predicted' column to distinguish between actual historical data, regression on historical data, and forecasted future values. The chart should be a line chart showing both historical and predicted values for each fuel type.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.linear_model import LinearRegression\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train linear regression model\n model = LinearRegression()\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n avg_price date fuel is_predicted\n0 1.106000 1994-03-21 diesel original\n1 1.029221 1994-03-21 diesel regression\n2 1.107000 1994-03-28 diesel original\n3 1.031148 1994-03-28 diesel regression\n4 1.109000 1994-04-04 diesel original\n5 1.033075 1994-04-04 diesel regression\n6 1.108000 1994-04-11 diesel original\n7 1.035002 1994-04-11 diesel regression\n8 1.105000 1994-04-18 diesel original\n9 1.036929 1994-04-18 diesel regression\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"use some more complex model\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"is_predicted\",\n \"column\": \"fuel\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Improve the forecasting model by using a more sophisticated time series model (polynomial regression with degree 2) instead of simple linear regression to better capture non-linear trends in fuel price data. The output should still include historical actual prices, regression fitted values, and forecasted prices for the next 5 years.\",\n \"display_instruction\": \"Forecast **price** trends using a more complex model for each **fuel** type\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\", \"is_predicted\"],\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"is_predicted\",\n \"facet\": \"fuel\"\n },\n \"reason\": \"The user wants to use a more complex forecasting model to potentially capture non-linear trends better. We'll use polynomial regression (degree 2) which can model curved trends while still being interpretable. The chart encodings are updated to color by prediction type and facet by fuel type as specified by the user.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.preprocessing import PolynomialFeatures\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.pipeline import make_pipeline\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train polynomial regression model (degree 2 for non-linear trends)\n model = make_pipeline(PolynomialFeatures(degree=2), LinearRegression())\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-34","sourceTableIds":["weekly_gas_prices"],"instruction":"use some more complex model","displayInstruction":"Forecast **price** trends using a more complex model for each **fuel** type","chart":{"id":"chart-1760745227478","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--date"},"y":{"fieldID":"concept-avg_price-1760744859365"},"color":{"fieldID":"concept-is_predicted-1760745153175","sortBy":"[\"original\",\"regression\",\"forecasting\"]"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"original--weekly_gas_prices--fuel"},"row":{"channel":"row","bin":false}},"tableRef":"table-34","saved":false,"source":"trigger","unread":false},"resultTableId":"table-22"},"explanation":{"agent":"CodeExplanationAgent","code":"This code performs **price trend analysis and forecasting** for different fuel types:\n\n1. **Aggregates** historical gas prices by calculating the **mean price** across all **grades** and **formulations** for each **date** and **fuel** type\n2. **Prepares** time series data by converting **dates** to datetime format and creating a **days_since_start** numeric variable (days elapsed since the first recorded date)\n3. **Trains** a **polynomial regression model** (degree 2) separately for each **fuel type** to capture non-linear price trends over time\n4. **Generates** three types of price records for each fuel:\n - **Original**: actual historical average prices with label `'original'`\n - **Regression**: model-fitted prices for historical dates with label `'regression'`\n - **Forecasting**: predicted prices for the **next 5 years** (260 weekly periods) with label `'forecasting'`\n5. **Combines** all records and sorts by **fuel** type and **date**","concepts":[{"explanation":"A numeric time variable representing the number of days elapsed since the first recorded date in the dataset. This transforms calendar dates into a continuous numeric scale suitable for regression modeling: \\( \\text{days\\_since\\_start} = (\\text{current\\_date} - \\text{min\\_date}) \\)","field":"days_since_start"},{"explanation":"A categorical label indicating the source and nature of the price data: 'original' for actual historical observations, 'regression' for model-fitted values on historical dates (representing the polynomial trend), and 'forecasting' for future price predictions beyond the observed data range.","field":"is_predicted"},{"explanation":"This analysis models fuel price trends using **polynomial regression (degree 2)** to capture non-linear patterns in price evolution over time. The model treats time (days since start) as the independent variable and average price as the dependent variable, fitted separately for each fuel type. The quadratic polynomial allows the model to capture acceleration or deceleration in price trends (e.g., prices rising faster over time or stabilizing). Alternative approaches could include: **ARIMA models** for capturing autocorrelation and seasonality, **exponential smoothing** for weighted recent observations, **Prophet** for handling multiple seasonality patterns and holidays, or **LSTM neural networks** for complex non-linear temporal dependencies.","field":"Statistical Analysis"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.preprocessing import PolynomialFeatures\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.pipeline import make_pipeline\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train polynomial regression model (degree 2 for non-linear trends)\n model = make_pipeline(PolynomialFeatures(degree=2), LinearRegression())\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThis code performs **price trend analysis and forecasting** for different fuel types:\n\n1. **Aggregates** historical gas prices by calculating the **mean price** across all **grades** and **formulations** for each **date** and **fuel** type\n2. **Prepares** time series data by converting **dates** to datetime format and creating a **days_since_start** numeric variable (days elapsed since the first recorded date)\n3. **Trains** a **polynomial regression model** (degree 2) separately for each **fuel type** to capture non-linear price trends over time\n4. **Generates** three types of price records for each fuel:\n - **Original**: actual historical average prices with label `'original'`\n - **Regression**: model-fitted prices for historical dates with label `'regression'`\n - **Forecasting**: predicted prices for the **next 5 years** (260 weekly periods) with label `'forecasting'`\n5. **Combines** all records and sorts by **fuel** type and **date**\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"days_since_start\",\n \"explanation\": \"A numeric time variable representing the number of days elapsed since the first recorded date in the dataset. This transforms calendar dates into a continuous numeric scale suitable for regression modeling: \\\\( \\\\text{days\\\\_since\\\\_start} = (\\\\text{current\\\\_date} - \\\\text{min\\\\_date}) \\\\)\"\n },\n {\n \"field\": \"is_predicted\",\n \"explanation\": \"A categorical label indicating the source and nature of the price data: 'original' for actual historical observations, 'regression' for model-fitted values on historical dates (representing the polynomial trend), and 'forecasting' for future price predictions beyond the observed data range.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis models fuel price trends using **polynomial regression (degree 2)** to capture non-linear patterns in price evolution over time. The model treats time (days since start) as the independent variable and average price as the dependent variable, fitted separately for each fuel type. The quadratic polynomial allows the model to capture acceleration or deceleration in price trends (e.g., prices rising faster over time or stabilizing). Alternative approaches could include: **ARIMA models** for capturing autocorrelation and seasonality, **exponential smoothing** for weighted recent observations, **Prophet** for handling multiple seasonality patterns and holidays, or **LSTM neural networks** for complex non-linear temporal dependencies.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""}],"charts":[{"id":"chart-1760745227133","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--date"},"y":{"fieldID":"concept-avg_price-1760744859365"},"color":{"fieldID":"concept-is_predicted-1760745153175","sortBy":"[\"original\",\"regression\",\"forecasting\"]"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"original--weekly_gas_prices--fuel"},"row":{"channel":"row","bin":false}},"tableRef":"table-22","saved":false,"source":"user","unread":false},{"id":"chart-1760745149814","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--date"},"y":{"fieldID":"concept-avg_price-1760744859365"},"color":{"fieldID":"concept-is_predicted-1760745153175","sortBy":"[\"original\",\"regression\",\"forecasting\"]"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"original--weekly_gas_prices--fuel"},"row":{"channel":"row","bin":false}},"tableRef":"table-34","saved":false,"source":"user","unread":false},{"id":"chart-1760744944490","chartType":"Grouped Bar Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--fuel"},"y":{"fieldID":"concept-coefficient_of_variation-1760744946001-0.1428610684738313"},"color":{"fieldID":"concept-period-1760744946001-0.2526720867029991","sortBy":"[\"Pre-2000 (1990-1999)\",\"Post-2000 (2000-2025)\"]"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-937785","saved":false,"source":"user","unread":false},{"id":"chart-1760744923768","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--date"},"y":{"fieldID":"concept-absolute_change-1760744928850-0.13994508966754027"},"color":{"fieldID":"original--weekly_gas_prices--fuel"},"opacity":{},"column":{"fieldID":"original--weekly_gas_prices--fuel"},"row":{"channel":"row","bin":false}},"tableRef":"table-922023","saved":false,"source":"user","unread":false},{"id":"chart-1760744910486","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--date"},"y":{"fieldID":"concept-price_premium-1760744912591"},"color":{"fieldID":"original--weekly_gas_prices--grade","sortBy":"[\"all\",\"midgrade\",\"premium\"]"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"original--weekly_gas_prices--fuel"},"row":{"channel":"row","bin":false}},"tableRef":"table-906894","saved":false,"source":"user","unread":false},{"id":"chart-1760744903250","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--date"},"y":{"fieldID":"concept-avg_price-1760744859365"},"color":{"fieldID":"original--weekly_gas_prices--fuel"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"original--weekly_gas_prices--fuel"},"row":{"channel":"row","bin":false}},"tableRef":"table-904593","saved":false,"source":"user","unread":false},{"id":"chart-1760745061868","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--weekly_gas_prices--date"},"y":{"fieldID":"concept-percentage_change-1760744928850-0.05895473410098917"},"color":{"fieldID":"original--weekly_gas_prices--fuel"},"opacity":{},"column":{"fieldID":"original--weekly_gas_prices--fuel"},"row":{"channel":"row","bin":false}},"tableRef":"table-922023","saved":false,"source":"user","unread":false}],"conceptShelfItems":[{"id":"concept-is_predicted-1760745153175","name":"is_predicted","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-period-1760744946001-0.2526720867029991","name":"period","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-std_dev-1760744946001-0.8917004422728384","name":"std_dev","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-coefficient_of_variation-1760744946001-0.1428610684738313","name":"coefficient_of_variation","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-current_price-1760744928850-0.34299289766164665","name":"current_price","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-yoy_price-1760744928850-0.04566871507692338","name":"yoy_price","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-absolute_change-1760744928850-0.13994508966754027","name":"absolute_change","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-percentage_change-1760744928850-0.05895473410098917","name":"percentage_change","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-price_premium-1760744912591","name":"price_premium","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-avg_price-1760744859365","name":"avg_price","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-avg_price-1760744857739-0.586061332977602","name":"avg_price","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"original--weekly_gas_prices--date","name":"date","type":"date","source":"original","description":"","tableRef":"weekly_gas_prices"},{"id":"original--weekly_gas_prices--fuel","name":"fuel","type":"string","source":"original","description":"","tableRef":"weekly_gas_prices"},{"id":"original--weekly_gas_prices--grade","name":"grade","type":"string","source":"original","description":"","tableRef":"weekly_gas_prices"},{"id":"original--weekly_gas_prices--formulation","name":"formulation","type":"string","source":"original","description":"","tableRef":"weekly_gas_prices"},{"id":"original--weekly_gas_prices--price","name":"price","type":"number","source":"original","description":"","tableRef":"weekly_gas_prices"}],"messages":[{"timestamp":1760830949676,"type":"success","component":"data formulator","value":"Successfully loaded Gas Prices"}],"displayedMessageIdx":0,"focusedTableId":"table-22","focusedChartId":"chart-1760745227133","viewMode":"report","chartSynthesisInProgress":[],"config":{"formulateTimeoutSeconds":60,"maxRepairAttempts":1,"defaultChartWidth":300,"defaultChartHeight":300},"agentActions":[{"actionId":"exploreDataFromNL_1760744902503","tableId":"table-937785","description":"• **Long-term price trends (1990-2025)**: Both diesel and gasoline showed overall upward trends from 1990 to mid-2000s, peaking around 2008, then stabilizing at higher levels with fluctuations through 2025. Diesel consistently priced higher than gasoline throughout most of the period.\n\n• **Year-over-year volatility**: The scatter plot reveals several dramatic price spikes, with the largest absolute changes (~2.5) and percentage changes (70-75%) occurring in recent years (2021-2025), indicating major price disruptions in the post-pandemic period.\n\n• **Price stability comparison**: Price volatility increased dramatically post-2000, with coefficient of variation rising from ~7-9% (pre-2000) to ~29-33% (post-2000) for both fuel types, indicating prices became 3-4x more volatile in recent decades. Diesel shows slightly higher volatility than gasoline in both periods.","status":"completed","hidden":false,"lastUpdate":1760744954367}],"dataCleanBlocks":[],"cleanInProgress":false,"generatedReports":[{"id":"report-1760831021256-7310","content":"# Fuel Price Volatility and Premium Trends: A Three-Decade Analysis\n\nThe U.S. fuel market has undergone dramatic shifts in pricing dynamics over the past 35 years, with post-2000 prices showing significantly higher volatility and expanding premium differentials across gasoline grades.\n\n[IMAGE(chart-1760744944490)]\n\n**Price volatility has intensified dramatically in the modern era.** The coefficient of variation—a measure of price instability relative to average costs—reveals that both diesel and gasoline experienced roughly **four-fold increases** in volatility post-2000. Diesel prices showed particularly heightened instability with a coefficient of variation of 33.48% (2000-2025) compared to just 7.65% in the 1990s. This shift reflects increased sensitivity to global crude oil market fluctuations, geopolitical tensions, and refining capacity constraints. Average prices also more than doubled across both fuel types, with diesel climbing from $1.14 to $2.93 per gallon.\n\n[IMAGE(chart-1760744910486)]\n\n**Premium gasoline pricing has steadily diverged from regular grades over time.** The price premium commanded by higher-octane gasoline grades has expanded substantially, with premium gasoline reaching spreads of **$0.90-$0.95 above regular** by 2025—nearly five times the $0.18-$0.20 premium observed in the mid-1990s. Midgrade gasoline follows a similar trajectory, reaching $0.55-$0.60 premiums. This widening gap suggests evolving refining economics, increased consumer segmentation, and potentially higher margins on premium products.\n\n**In summary**, the fuel market has transitioned from relative price stability in the 1990s to an era characterized by substantial volatility and expanding price differentiation. Consumers and businesses face both higher absolute costs and greater uncertainty in budgeting for fuel expenses. Key questions for further investigation include: What specific market mechanisms drive the premium expansion? How do regional variations affect these national trends? What role do alternative fuels play in moderating future volatility?","style":"executive summary","selectedChartIds":["chart-1760744944490","chart-1760744910486"],"createdAt":1760831035718},{"id":"report-1760830985775-9885","content":"# Fuel Prices Set to Continue Rising Through 2030\n\nHistorical data reveals a clear upward trend in both diesel and gasoline prices since the 1990s. Our polynomial regression model shows prices have increased nearly sixfold over three decades, with notable volatility around 2008 and 2022 reflecting global economic shocks.\n\n[IMAGE(chart-1760745227133)]\n\nThe forecast suggests this upward trajectory will persist, with both fuel types projected to reach approximately $3.80-$3.90 per gallon by 2030. While short-term fluctuations are inevitable, the long-term trend remains consistently upward.\n\n**In summary**, fuel prices have demonstrated sustained growth over 35 years and are expected to continue rising. Consumers and businesses should anticipate higher energy costs in coming years and consider efficiency improvements or alternative energy sources.","style":"short note","selectedChartIds":["chart-1760745227133"],"createdAt":1760830993075}],"currentReport":{"id":"report-1760750575650-2619","content":"# Hollywood's Billion-Dollar Hitmakers\n\n*Avatar* stands alone—earning over $2.5B in profit, dwarfing all competition. Action and Adventure films dominate the most profitable titles, with franchises like *Jurassic Park*, *The Dark Knight*, and *Lord of the Rings* proving blockbuster formulas work.\n\n\"Chart\"\n\nSteven Spielberg leads all directors with $7.2B in total profit across his career, showcasing remarkable consistency with hits spanning decades—from *Jurassic Park* to *E.T.* His nearest competitors trail by billions, underlining his unmatched commercial impact.\n\n\"Chart\"\n\n**In summary**, mega-budget Action and Adventure films generate extraordinary returns when they succeed, and a handful of elite directors—led by Spielberg—have mastered the formula for sustained box office dominance.","style":"short note","selectedChartIds":["chart-1760743347871","chart-1760743768741"],"chartImages":{},"createdAt":1760750584189,"title":"Report - 10/17/2025"},"activeChallenges":[],"agentWorkInProgress":[],"_persist":{"version":-1,"rehydrated":true}} \ No newline at end of file +{"tables": [{"kind": "table", "id": "weekly_gas_prices", "displayId": "gas-prices", "names": ["date", "fuel", "grade", "formulation", "price"], "metadata": {"date": {"type": "date", "semanticType": "Date"}, "fuel": {"type": "string", "semanticType": "String"}, "grade": {"type": "string", "semanticType": "String", "levels": ["all", "regular", "midgrade", "premium", "low_sulfur", "ultra_low_sulfur"]}, "formulation": {"type": "string", "semanticType": "String", "levels": ["all", "conventional", "reformulated", "NA"]}, "price": {"type": "number", "semanticType": "Number"}}, "rows": [{"date": "1990-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.191}, {"date": "1990-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.191}, {"date": "1990-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.245}, {"date": "1990-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.245}, {"date": "1990-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.242}, {"date": "1990-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.242}, {"date": "1990-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.252}, {"date": "1990-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.252}, {"date": "1990-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.266}, {"date": "1990-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.266}, {"date": "1990-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.272}, {"date": "1990-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.272}, {"date": "1990-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.321}, {"date": "1990-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.321}, {"date": "1990-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.333}, {"date": "1990-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.333}, {"date": "1990-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.339}, {"date": "1990-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.339}, {"date": "1990-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.345}, {"date": "1990-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.345}, {"date": "1990-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.339}, {"date": "1990-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.339}, {"date": "1990-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.334}, {"date": "1990-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.334}, {"date": "1990-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.328}, {"date": "1990-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.328}, {"date": "1990-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.323}, {"date": "1990-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.323}, {"date": "1990-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.311}, {"date": "1990-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.311}, {"date": "1990-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.341}, {"date": "1990-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.341}, {"date": "1991-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.192}, {"date": "1991-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.192}, {"date": "1991-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.168}, {"date": "1991-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.168}, {"date": "1991-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.139}, {"date": "1991-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.139}, {"date": "1991-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.106}, {"date": "1991-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.106}, {"date": "1991-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.078}, {"date": "1991-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.078}, {"date": "1991-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.054}, {"date": "1991-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.054}, {"date": "1991-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.025}, {"date": "1991-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.025}, {"date": "1991-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.045}, {"date": "1991-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.045}, {"date": "1991-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.043}, {"date": "1991-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.043}, {"date": "1991-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.047}, {"date": "1991-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.047}, {"date": "1991-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.052}, {"date": "1991-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.052}, {"date": "1991-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.066}, {"date": "1991-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.066}, {"date": "1991-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.069}, {"date": "1991-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.069}, {"date": "1991-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.09}, {"date": "1991-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.09}, {"date": "1991-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.104}, {"date": "1991-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.104}, {"date": "1991-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.113}, {"date": "1991-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.113}, {"date": "1991-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.121}, {"date": "1991-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.121}, {"date": "1991-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.129}, {"date": "1991-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.129}, {"date": "1991-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.14}, {"date": "1991-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.14}, {"date": "1991-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.138}, {"date": "1991-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.138}, {"date": "1991-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.135}, {"date": "1991-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.135}, {"date": "1991-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.126}, {"date": "1991-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.126}, {"date": "1991-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.114}, {"date": "1991-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.114}, {"date": "1991-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.104}, {"date": "1991-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.104}, {"date": "1991-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.098}, {"date": "1991-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.098}, {"date": "1991-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.094}, {"date": "1991-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.094}, {"date": "1991-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.091}, {"date": "1991-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.091}, {"date": "1991-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.091}, {"date": "1991-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.091}, {"date": "1991-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.099}, {"date": "1991-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.099}, {"date": "1991-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.112}, {"date": "1991-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.112}, {"date": "1991-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.124}, {"date": "1991-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.124}, {"date": "1991-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.124}, {"date": "1991-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.124}, {"date": "1991-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.127}, {"date": "1991-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.127}, {"date": "1991-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.12}, {"date": "1991-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.12}, {"date": "1991-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.11}, {"date": "1991-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.11}, {"date": "1991-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.097}, {"date": "1991-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.097}, {"date": "1991-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.092}, {"date": "1991-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.092}, {"date": "1991-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.089}, {"date": "1991-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.089}, {"date": "1991-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.084}, {"date": "1991-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.084}, {"date": "1991-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.088}, {"date": "1991-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.088}, {"date": "1991-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.091}, {"date": "1991-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.091}, {"date": "1991-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.091}, {"date": "1991-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.091}, {"date": "1991-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.102}, {"date": "1991-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.102}, {"date": "1991-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.104}, {"date": "1991-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.104}, {"date": "1991-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.099}, {"date": "1991-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.099}, {"date": "1991-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.099}, {"date": "1991-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.099}, {"date": "1991-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.091}, {"date": "1991-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.091}, {"date": "1991-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.075}, {"date": "1991-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.075}, {"date": "1991-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.063}, {"date": "1991-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.063}, {"date": "1991-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.053}, {"date": "1991-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.053}, {"date": "1992-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.042}, {"date": "1992-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.042}, {"date": "1992-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.026}, {"date": "1992-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.026}, {"date": "1992-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.014}, {"date": "1992-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.014}, {"date": "1992-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.006}, {"date": "1992-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.006}, {"date": "1992-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.995}, {"date": "1992-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.995}, {"date": "1992-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.004}, {"date": "1992-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.004}, {"date": "1992-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.011}, {"date": "1992-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.011}, {"date": "1992-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.014}, {"date": "1992-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.014}, {"date": "1992-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.012}, {"date": "1992-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.012}, {"date": "1992-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.013}, {"date": "1992-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.013}, {"date": "1992-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.01}, {"date": "1992-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.01}, {"date": "1992-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.015}, {"date": "1992-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.015}, {"date": "1992-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.013}, {"date": "1992-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.013}, {"date": "1992-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.026}, {"date": "1992-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.026}, {"date": "1992-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.051}, {"date": "1992-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.051}, {"date": "1992-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.058}, {"date": "1992-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.058}, {"date": "1992-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.072}, {"date": "1992-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.072}, {"date": "1992-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.089}, {"date": "1992-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.089}, {"date": "1992-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.102}, {"date": "1992-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.102}, {"date": "1992-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.118}, {"date": "1992-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.118}, {"date": "1992-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.12}, {"date": "1992-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.12}, {"date": "1992-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.128}, {"date": "1992-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.128}, {"date": "1992-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.143}, {"date": "1992-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.143}, {"date": "1992-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.151}, {"date": "1992-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.151}, {"date": "1992-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.153}, {"date": "1992-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.153}, {"date": "1992-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.149}, {"date": "1992-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.149}, {"date": "1992-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.147}, {"date": "1992-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.147}, {"date": "1992-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.139}, {"date": "1992-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.139}, {"date": "1992-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.132}, {"date": "1992-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.132}, {"date": "1992-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.128}, {"date": "1992-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.128}, {"date": "1992-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.126}, {"date": "1992-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.126}, {"date": "1992-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.123}, {"date": "1992-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.123}, {"date": "1992-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.116}, {"date": "1992-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.116}, {"date": "1992-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.123}, {"date": "1992-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.123}, {"date": "1992-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.121}, {"date": "1992-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.121}, {"date": "1992-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.121}, {"date": "1992-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.121}, {"date": "1992-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.124}, {"date": "1992-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.124}, {"date": "1992-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.123}, {"date": "1992-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.123}, {"date": "1992-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.118}, {"date": "1992-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.118}, {"date": "1992-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.115}, {"date": "1992-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.115}, {"date": "1992-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.115}, {"date": "1992-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.115}, {"date": "1992-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.113}, {"date": "1992-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.113}, {"date": "1992-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.113}, {"date": "1992-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.113}, {"date": "1992-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.12}, {"date": "1992-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.12}, {"date": "1992-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.12}, {"date": "1992-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.12}, {"date": "1992-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.112}, {"date": "1992-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.112}, {"date": "1992-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.106}, {"date": "1992-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.106}, {"date": "1992-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.098}, {"date": "1992-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.098}, {"date": "1992-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.089}, {"date": "1992-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.089}, {"date": "1992-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.078}, {"date": "1992-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.078}, {"date": "1992-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.074}, {"date": "1992-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.074}, {"date": "1992-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.069}, {"date": "1992-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.069}, {"date": "1993-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.065}, {"date": "1993-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.065}, {"date": "1993-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.066}, {"date": "1993-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.066}, {"date": "1993-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.061}, {"date": "1993-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.061}, {"date": "1993-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.055}, {"date": "1993-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.055}, {"date": "1993-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.055}, {"date": "1993-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.055}, {"date": "1993-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.062}, {"date": "1993-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.062}, {"date": "1993-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.053}, {"date": "1993-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.053}, {"date": "1993-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.047}, {"date": "1993-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.047}, {"date": "1993-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.042}, {"date": "1993-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.042}, {"date": "1993-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.048}, {"date": "1993-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.048}, {"date": "1993-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.058}, {"date": "1993-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.058}, {"date": "1993-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.056}, {"date": "1993-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.056}, {"date": "1993-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.057}, {"date": "1993-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.057}, {"date": "1993-04-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.068}, {"date": "1993-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.068}, {"date": "1993-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.068}, {"date": "1993-04-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.079}, {"date": "1993-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.079}, {"date": "1993-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.079}, {"date": "1993-04-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.079}, {"date": "1993-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.079}, {"date": "1993-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.079}, {"date": "1993-04-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.086}, {"date": "1993-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.086}, {"date": "1993-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.086}, {"date": "1993-05-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.086}, {"date": "1993-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.086}, {"date": "1993-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.086}, {"date": "1993-05-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.097}, {"date": "1993-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.097}, {"date": "1993-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.097}, {"date": "1993-05-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.106}, {"date": "1993-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.106}, {"date": "1993-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.106}, {"date": "1993-05-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.106}, {"date": "1993-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.106}, {"date": "1993-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.106}, {"date": "1993-05-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.107}, {"date": "1993-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.107}, {"date": "1993-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.107}, {"date": "1993-06-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.104}, {"date": "1993-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.104}, {"date": "1993-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.104}, {"date": "1993-06-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.101}, {"date": "1993-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.101}, {"date": "1993-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.101}, {"date": "1993-06-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.095}, {"date": "1993-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.095}, {"date": "1993-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.095}, {"date": "1993-06-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.089}, {"date": "1993-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.089}, {"date": "1993-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.089}, {"date": "1993-07-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.086}, {"date": "1993-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.086}, {"date": "1993-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.086}, {"date": "1993-07-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.081}, {"date": "1993-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.081}, {"date": "1993-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.081}, {"date": "1993-07-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.075}, {"date": "1993-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.075}, {"date": "1993-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.075}, {"date": "1993-07-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.069}, {"date": "1993-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.069}, {"date": "1993-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.069}, {"date": "1993-08-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.062}, {"date": "1993-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.062}, {"date": "1993-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.062}, {"date": "1993-08-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.06}, {"date": "1993-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.06}, {"date": "1993-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.06}, {"date": "1993-08-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.059}, {"date": "1993-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.059}, {"date": "1993-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.059}, {"date": "1993-08-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.065}, {"date": "1993-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.065}, {"date": "1993-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.065}, {"date": "1993-08-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.062}, {"date": "1993-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.062}, {"date": "1993-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.062}, {"date": "1993-09-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.055}, {"date": "1993-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.055}, {"date": "1993-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.055}, {"date": "1993-09-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.051}, {"date": "1993-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.051}, {"date": "1993-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.051}, {"date": "1993-09-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.045}, {"date": "1993-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.045}, {"date": "1993-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.045}, {"date": "1993-09-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.047}, {"date": "1993-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.047}, {"date": "1993-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.047}, {"date": "1993-10-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.092}, {"date": "1993-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.092}, {"date": "1993-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.092}, {"date": "1993-10-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.09}, {"date": "1993-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.09}, {"date": "1993-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.09}, {"date": "1993-10-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.093}, {"date": "1993-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.093}, {"date": "1993-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.093}, {"date": "1993-10-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.092}, {"date": "1993-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.092}, {"date": "1993-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.092}, {"date": "1993-11-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.084}, {"date": "1993-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.084}, {"date": "1993-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.084}, {"date": "1993-11-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.075}, {"date": "1993-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.075}, {"date": "1993-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.075}, {"date": "1993-11-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.064}, {"date": "1993-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.064}, {"date": "1993-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.064}, {"date": "1993-11-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.058}, {"date": "1993-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.058}, {"date": "1993-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.058}, {"date": "1993-11-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.051}, {"date": "1993-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.051}, {"date": "1993-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.051}, {"date": "1993-12-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.036}, {"date": "1993-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.036}, {"date": "1993-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.036}, {"date": "1993-12-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.018}, {"date": "1993-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.018}, {"date": "1993-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.018}, {"date": "1993-12-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.003}, {"date": "1993-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.003}, {"date": "1993-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.003}, {"date": "1993-12-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.999}, {"date": "1993-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.999}, {"date": "1993-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.999}, {"date": "1994-01-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.992}, {"date": "1994-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.992}, {"date": "1994-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.992}, {"date": "1994-01-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.995}, {"date": "1994-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.995}, {"date": "1994-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.995}, {"date": "1994-01-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.001}, {"date": "1994-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.001}, {"date": "1994-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.001}, {"date": "1994-01-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.999}, {"date": "1994-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.999}, {"date": "1994-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.999}, {"date": "1994-01-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.005}, {"date": "1994-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.005}, {"date": "1994-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.005}, {"date": "1994-02-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.007}, {"date": "1994-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.007}, {"date": "1994-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.007}, {"date": "1994-02-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.016}, {"date": "1994-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.016}, {"date": "1994-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.016}, {"date": "1994-02-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.009}, {"date": "1994-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.009}, {"date": "1994-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.009}, {"date": "1994-02-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.004}, {"date": "1994-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.004}, {"date": "1994-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.004}, {"date": "1994-03-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.007}, {"date": "1994-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.007}, {"date": "1994-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.007}, {"date": "1994-03-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.005}, {"date": "1994-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.005}, {"date": "1994-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.005}, {"date": "1994-03-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.007}, {"date": "1994-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.007}, {"date": "1994-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.007}, {"date": "1994-03-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.106}, {"date": "1994-03-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.012}, {"date": "1994-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.012}, {"date": "1994-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.012}, {"date": "1994-03-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.107}, {"date": "1994-04-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.011}, {"date": "1994-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.011}, {"date": "1994-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.011}, {"date": "1994-04-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.109}, {"date": "1994-04-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.028}, {"date": "1994-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.028}, {"date": "1994-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.028}, {"date": "1994-04-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.108}, {"date": "1994-04-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.033}, {"date": "1994-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.033}, {"date": "1994-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.033}, {"date": "1994-04-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.105}, {"date": "1994-04-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.037}, {"date": "1994-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.037}, {"date": "1994-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.037}, {"date": "1994-04-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.106}, {"date": "1994-05-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.04}, {"date": "1994-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.04}, {"date": "1994-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.04}, {"date": "1994-05-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.104}, {"date": "1994-05-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.045}, {"date": "1994-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.045}, {"date": "1994-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.045}, {"date": "1994-05-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.101}, {"date": "1994-05-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.046}, {"date": "1994-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.046}, {"date": "1994-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.046}, {"date": "1994-05-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.099}, {"date": "1994-05-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.05}, {"date": "1994-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.05}, {"date": "1994-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.05}, {"date": "1994-05-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.099}, {"date": "1994-05-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.056}, {"date": "1994-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.056}, {"date": "1994-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.056}, {"date": "1994-05-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.098}, {"date": "1994-06-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.065}, {"date": "1994-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.065}, {"date": "1994-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.065}, {"date": "1994-06-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.101}, {"date": "1994-06-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.073}, {"date": "1994-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.073}, {"date": "1994-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.073}, {"date": "1994-06-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.098}, {"date": "1994-06-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.079}, {"date": "1994-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.079}, {"date": "1994-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.079}, {"date": "1994-06-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.103}, {"date": "1994-06-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.095}, {"date": "1994-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.095}, {"date": "1994-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.095}, {"date": "1994-06-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.108}, {"date": "1994-07-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.097}, {"date": "1994-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.097}, {"date": "1994-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.097}, {"date": "1994-07-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.109}, {"date": "1994-07-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.103}, {"date": "1994-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.103}, {"date": "1994-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.103}, {"date": "1994-07-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.11}, {"date": "1994-07-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.109}, {"date": "1994-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.109}, {"date": "1994-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.109}, {"date": "1994-07-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.111}, {"date": "1994-07-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.114}, {"date": "1994-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.114}, {"date": "1994-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.114}, {"date": "1994-07-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.111}, {"date": "1994-08-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.13}, {"date": "1994-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.13}, {"date": "1994-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.13}, {"date": "1994-08-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.116}, {"date": "1994-08-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.157}, {"date": "1994-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.157}, {"date": "1994-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.157}, {"date": "1994-08-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.127}, {"date": "1994-08-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.161}, {"date": "1994-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.161}, {"date": "1994-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.161}, {"date": "1994-08-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.127}, {"date": "1994-08-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.165}, {"date": "1994-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.165}, {"date": "1994-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.165}, {"date": "1994-08-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.124}, {"date": "1994-08-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.161}, {"date": "1994-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.161}, {"date": "1994-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.161}, {"date": "1994-08-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.122}, {"date": "1994-09-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.156}, {"date": "1994-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.156}, {"date": "1994-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.156}, {"date": "1994-09-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.126}, {"date": "1994-09-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.15}, {"date": "1994-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.15}, {"date": "1994-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.15}, {"date": "1994-09-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.128}, {"date": "1994-09-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.14}, {"date": "1994-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.14}, {"date": "1994-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.14}, {"date": "1994-09-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.126}, {"date": "1994-09-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.129}, {"date": "1994-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.129}, {"date": "1994-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.129}, {"date": "1994-09-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.12}, {"date": "1994-10-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.12}, {"date": "1994-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.12}, {"date": "1994-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.12}, {"date": "1994-10-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.118}, {"date": "1994-10-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.114}, {"date": "1994-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.114}, {"date": "1994-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.114}, {"date": "1994-10-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.117}, {"date": "1994-10-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.106}, {"date": "1994-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.106}, {"date": "1994-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.106}, {"date": "1994-10-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.119}, {"date": "1994-10-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.107}, {"date": "1994-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.107}, {"date": "1994-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.107}, {"date": "1994-10-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.122}, {"date": "1994-10-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.121}, {"date": "1994-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.121}, {"date": "1994-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.121}, {"date": "1994-10-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.133}, {"date": "1994-11-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.123}, {"date": "1994-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.123}, {"date": "1994-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.123}, {"date": "1994-11-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.133}, {"date": "1994-11-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.122}, {"date": "1994-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.122}, {"date": "1994-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.122}, {"date": "1994-11-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.135}, {"date": "1994-11-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.113}, {"date": "1994-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.113}, {"date": "1994-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.113}, {"date": "1994-11-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.13}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.117}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.175}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.259}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.105}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.082}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.149}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.197}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.174}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.249}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.303}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.27}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.351}, {"date": "1994-11-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.126}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.127}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.143}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.254}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.103}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.075}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.169}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.197}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.167}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.272}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.301}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.26}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.37}, {"date": "1994-12-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.123}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.131}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.118}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.231}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.095}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.064}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.167}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.188}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.156}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.268}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.288}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.244}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.363}, {"date": "1994-12-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.114}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.134}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.099}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.216}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.087}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.056}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.167}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.179}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.147}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.262}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.279}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.233}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.36}, {"date": "1994-12-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.109}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.125}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.088}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.213}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.077}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.044}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.165}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.171}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.136}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.265}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.27}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.222}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.358}, {"date": "1994-12-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.106}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.127}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.104}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.231}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.079}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.063}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.167}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.17}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.159}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.298}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.272}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.25}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.386}, {"date": "1995-01-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.104}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.134}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.111}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.232}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.086}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.07}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.169}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.177}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.164}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.3}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.279}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.256}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.387}, {"date": "1995-01-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.102}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.126}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.102}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.231}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.078}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.062}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.169}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.168}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.155}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.299}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.271}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.249}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.385}, {"date": "1995-01-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.1}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.132}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.11}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.226}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.083}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.068}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.165}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.177}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.165}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.296}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.277}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.256}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.378}, {"date": "1995-01-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.095}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.131}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.109}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.221}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.083}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.068}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.162}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.176}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.163}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.291}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.275}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.255}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.37}, {"date": "1995-01-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.09}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.124}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.103}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.218}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.076}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.062}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.159}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.169}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.157}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.288}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.27}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.25}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.368}, {"date": "1995-02-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.086}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.121}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.099}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.218}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.074}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.058}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.158}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.166}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.153}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.285}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.265}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.243}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.367}, {"date": "1995-02-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.088}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.115}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.093}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.213}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.067}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.052}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.153}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.16}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.148}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.28}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.259}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.239}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.363}, {"date": "1995-02-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.088}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.121}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.101}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.211}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.073}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.06}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.152}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.164}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.153}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.276}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.265}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.246}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.362}, {"date": "1995-02-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.089}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.123}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.103}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.209}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.076}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.063}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.149}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.167}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.157}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.275}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.263}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.244}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.358}, {"date": "1995-03-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.089}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.116}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.096}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.202}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.069}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.056}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.141}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.158}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.15}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.268}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.256}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.238}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.353}, {"date": "1995-03-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.088}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.114}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.095}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.201}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.068}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.055}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.14}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.158}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.149}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.267}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.254}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.236}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.351}, {"date": "1995-03-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.085}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.121}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.102}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.198}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.075}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.063}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.138}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.162}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.153}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.265}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.259}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.241}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.349}, {"date": "1995-03-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.088}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.133}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.116}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.198}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.087}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.077}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.14}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.174}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.167}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.266}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.27}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.255}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.35}, {"date": "1995-04-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.094}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.149}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.134}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.207}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.103}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.094}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.149}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.19}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.186}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.273}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.286}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.273}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.357}, {"date": "1995-04-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.101}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.163}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.149}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.215}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.117}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.11}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.16}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.205}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.201}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.278}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.3}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.29}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.361}, {"date": "1995-04-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.106}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.184}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.173}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.231}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.138}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.133}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.176}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.226}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.224}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.291}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.323}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.315}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.377}, {"date": "1995-04-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.115}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.194}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.181}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.242}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.148}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.141}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.188}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.236}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.234}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.305}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.332}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.323}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.389}, {"date": "1995-05-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.119}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.216}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.204}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.261}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.169}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.164}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.205}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.259}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.257}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.324}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.356}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.349}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.408}, {"date": "1995-05-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.126}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.226}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.213}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.273}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.179}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.173}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.215}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.269}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.267}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.334}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.364}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.357}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.418}, {"date": "1995-05-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.126}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.244}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.232}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.285}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.197}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.191}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.233}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.288}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.285}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.344}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.383}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.376}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.429}, {"date": "1995-05-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.124}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.246}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.234}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.291}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.199}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.193}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.239}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.29}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.288}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.351}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.386}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.379}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.435}, {"date": "1995-05-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.13}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.246}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.234}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.289}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.199}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.194}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.238}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.29}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.288}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.349}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.386}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.38}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.434}, {"date": "1995-06-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.124}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.243}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.23}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.287}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.196}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.19}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.237}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.288}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.286}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.348}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.383}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.375}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.433}, {"date": "1995-06-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.122}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.236}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.224}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.285}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.189}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.183}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.234}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.28}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.277}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.345}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.376}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.368}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.432}, {"date": "1995-06-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.117}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.229}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.217}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.28}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.182}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.177}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.228}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.273}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.27}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.341}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.37}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.363}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.428}, {"date": "1995-06-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.112}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.222}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.209}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.275}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.175}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.169}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.223}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.266}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.262}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.337}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.362}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.354}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.423}, {"date": "1995-07-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.106}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.212}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.2}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.269}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.165}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.159}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.216}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.255}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.252}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.333}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.352}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.344}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.416}, {"date": "1995-07-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.103}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.2}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.189}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.26}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.153}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.148}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.207}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.244}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.243}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.325}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.342}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.335}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.409}, {"date": "1995-07-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.099}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.191}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.179}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.248}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.144}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.138}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.196}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.236}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.234}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.314}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.333}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.325}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.397}, {"date": "1995-07-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.098}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.179}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.166}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.237}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.132}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.126}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.183}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.222}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.22}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.304}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.319}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.311}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.387}, {"date": "1995-07-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.093}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.174}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.164}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.229}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.127}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.124}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.174}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.217}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.216}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.296}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.316}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.309}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.379}, {"date": "1995-08-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.099}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.172}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.162}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.221}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.125}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.121}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.166}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.215}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.214}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.288}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.312}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.306}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.372}, {"date": "1995-08-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.106}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.171}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.163}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.214}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.124}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.122}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.16}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.214}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.215}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.28}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.311}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.308}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.366}, {"date": "1995-08-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.106}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.163}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.154}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.209}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.117}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.113}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.156}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.205}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.206}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.275}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.305}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.3}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.356}, {"date": "1995-08-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.109}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.16}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.151}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.209}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.113}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.111}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.152}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.202}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.202}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.277}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.3}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.294}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.362}, {"date": "1995-09-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.115}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.158}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.148}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.203}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.111}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.107}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.148}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.201}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.201}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.268}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.298}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.292}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.356}, {"date": "1995-09-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.119}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.157}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.147}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.202}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.11}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.106}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.146}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.2}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.2}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.265}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.297}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.291}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.355}, {"date": "1995-09-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.122}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.156}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.146}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.198}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.109}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.106}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.142}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.198}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.197}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.26}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.296}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.29}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.352}, {"date": "1995-09-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.121}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.151}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.14}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.2}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.105}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.1}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.142}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.192}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.191}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.262}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.29}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.282}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.352}, {"date": "1995-10-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.117}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.144}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.132}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.198}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.097}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.092}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.139}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.185}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.182}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.261}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.283}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.275}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.351}, {"date": "1995-10-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.117}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.133}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.121}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.195}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.087}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.081}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.135}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.175}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.173}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.26}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.273}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.264}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.348}, {"date": "1995-10-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.117}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.125}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.113}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.19}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.079}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.073}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.129}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.165}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.163}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.254}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.263}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.254}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.341}, {"date": "1995-10-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.114}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.115}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.102}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.179}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.068}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.062}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.117}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.157}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.154}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.246}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.255}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.245}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.332}, {"date": "1995-10-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.11}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.112}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.1}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.171}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.065}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.06}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.11}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.153}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.151}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.24}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.252}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.245}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.318}, {"date": "1995-11-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.118}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.109}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.099}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.168}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.063}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.059}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.107}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.151}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.149}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.236}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.248}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.242}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.315}, {"date": "1995-11-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.118}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.106}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.095}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.162}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.06}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.056}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.1}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.149}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.146}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.231}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.244}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.238}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.309}, {"date": "1995-11-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.119}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.107}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.096}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.16}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.061}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.057}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.098}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.149}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.146}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.229}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.243}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.237}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.306}, {"date": "1995-11-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.124}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.108}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.097}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.16}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.062}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.058}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.101}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.151}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.147}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.229}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.246}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.238}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.307}, {"date": "1995-12-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.123}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.11}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.097}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.161}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.063}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.057}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.104}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.154}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.148}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.23}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.248}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.239}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.307}, {"date": "1995-12-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.124}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.124}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.111}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.169}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.078}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.072}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.113}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.167}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.161}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.236}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.262}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.253}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.314}, {"date": "1995-12-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.13}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.128}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.114}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.178}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.082}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.075}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.122}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.17}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.163}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.242}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.265}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.255}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.322}, {"date": "1995-12-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.141}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.129}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.116}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.178}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.083}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.077}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.122}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.171}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.164}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.244}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.268}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.258}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.326}, {"date": "1996-01-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.148}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.139}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.125}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.181}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.093}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.086}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.128}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.181}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.174}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.242}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.277}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.266}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.326}, {"date": "1996-01-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.146}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.145}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.131}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.189}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.098}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.092}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.135}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.186}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.18}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.252}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.285}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.274}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.335}, {"date": "1996-01-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.152}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.138}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.124}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.189}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.091}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.084}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.132}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.179}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.173}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.255}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.278}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.267}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.337}, {"date": "1996-01-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.144}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.133}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.118}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.185}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.087}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.079}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.128}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.176}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.168}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.253}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.272}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.26}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.334}, {"date": "1996-01-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.136}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.13}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.115}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.182}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.083}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.076}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.126}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.172}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.164}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.25}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.269}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.258}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.331}, {"date": "1996-02-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.13}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.126}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.112}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.18}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.08}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.073}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.123}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.169}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.161}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.249}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.265}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.252}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.329}, {"date": "1996-02-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.134}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.133}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.118}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.184}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.087}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.078}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.126}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.177}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.169}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.253}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.271}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.259}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.33}, {"date": "1996-02-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.151}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.153}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.138}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.2}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.107}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.099}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.142}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.197}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.189}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.269}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.291}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.279}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.345}, {"date": "1996-02-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.164}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.17}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.155}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.213}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.124}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.115}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.158}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.213}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.205}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.279}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.308}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.297}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.355}, {"date": "1996-03-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.175}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.171}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.156}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.221}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.125}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.116}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.165}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.213}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.206}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.284}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.308}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.296}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.361}, {"date": "1996-03-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.173}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.181}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.167}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.227}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.135}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.128}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.17}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.222}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.216}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.292}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.317}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.307}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.369}, {"date": "1996-03-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.172}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.21}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.196}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.247}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.164}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.158}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.192}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.25}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.244}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.314}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.345}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.334}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.39}, {"date": "1996-03-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.21}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.223}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.21}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.266}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.178}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.172}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.209}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.263}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.258}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.334}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.357}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.347}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.406}, {"date": "1996-04-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.222}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.248}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.233}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.293}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.204}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.195}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.236}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.289}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.282}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.36}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.381}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.37}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.429}, {"date": "1996-04-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.249}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.287}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.272}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.337}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.242}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.234}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.28}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.329}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.321}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.405}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.422}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.411}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.473}, {"date": "1996-04-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.305}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.301}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.282}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.386}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.256}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.243}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.32}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.341}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.333}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.458}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.438}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.422}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.519}, {"date": "1996-04-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.304}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.318}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.296}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.413}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.273}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.257}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.342}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.356}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.347}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.481}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.455}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.437}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.544}, {"date": "1996-04-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.285}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.321}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.298}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.422}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.275}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.259}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.351}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.359}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.349}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.49}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.458}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.439}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.553}, {"date": "1996-05-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.292}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.323}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.301}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.424}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.277}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.262}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.354}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.361}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.352}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.493}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.461}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.442}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.555}, {"date": "1996-05-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.285}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.33}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.308}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.425}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.285}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.269}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.357}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.369}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.359}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.494}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.468}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.45}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.556}, {"date": "1996-05-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.274}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.321}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.299}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.417}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.275}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.26}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.349}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.358}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.347}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.484}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.458}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.44}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.549}, {"date": "1996-05-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.254}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.315}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.292}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.419}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.269}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.252}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.367}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.353}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.342}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.49}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.454}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.434}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.556}, {"date": "1996-06-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.24}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.307}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.286}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.407}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.262}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.247}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.356}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.345}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.335}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.479}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.444}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.426}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.543}, {"date": "1996-06-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.215}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.302}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.28}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.397}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.258}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.241}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.344}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.34}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.329}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.469}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.438}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.419}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.533}, {"date": "1996-06-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.193}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.289}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.268}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.387}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.245}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.23}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.332}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.328}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.318}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.46}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.425}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.407}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.525}, {"date": "1996-06-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.179}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.279}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.258}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.375}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.234}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.219}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.319}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.317}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.307}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.448}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.416}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.397}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.514}, {"date": "1996-07-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.172}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.276}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.256}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.367}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.231}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.217}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.312}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.315}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.307}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.439}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.412}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.395}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.506}, {"date": "1996-07-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.173}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.273}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.254}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.36}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.228}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.215}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.305}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.311}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.304}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.432}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.409}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.394}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.499}, {"date": "1996-07-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.178}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.272}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.254}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.351}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.227}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.215}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.296}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.31}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.304}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.424}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.408}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.394}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.491}, {"date": "1996-07-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.184}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.263}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.247}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.34}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.218}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.209}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.284}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.302}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.297}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.414}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.399}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.386}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.48}, {"date": "1996-07-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.178}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.253}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.239}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.327}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.207}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.199}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.271}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.292}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.289}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.402}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.389}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.379}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.47}, {"date": "1996-08-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.184}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.248}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.235}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.315}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.203}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.196}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.259}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.287}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.284}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.389}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.384}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.374}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.458}, {"date": "1996-08-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.191}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.249}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.238}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.305}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.205}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.199}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.251}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.288}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.287}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.376}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.382}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.376}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.445}, {"date": "1996-08-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.206}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.253}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.24}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.307}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.209}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.201}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.252}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.29}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.288}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.378}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.386}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.378}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.447}, {"date": "1996-08-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.222}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.242}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.232}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.289}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.197}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.193}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.235}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.281}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.281}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.359}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.375}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.37}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.432}, {"date": "1996-09-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.231}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.247}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.239}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.287}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.203}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.201}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.235}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.286}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.287}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.357}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.38}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.375}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.429}, {"date": "1996-09-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.25}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.25}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.241}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.29}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.206}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.203}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.237}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.291}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.29}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.36}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.383}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.376}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.433}, {"date": "1996-09-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.276}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.251}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.241}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.29}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.206}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.203}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.238}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.29}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.29}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.359}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.383}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.378}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.432}, {"date": "1996-09-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.277}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.245}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.237}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.284}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.2}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.199}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.233}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.285}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.286}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.352}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.379}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.374}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.426}, {"date": "1996-09-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.289}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.239}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.23}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.278}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.194}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.191}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.227}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.279}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.279}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.348}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.373}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.367}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.421}, {"date": "1996-10-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.308}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.248}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.241}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.278}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.203}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.203}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.228}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.288}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.29}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.344}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.382}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.378}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.419}, {"date": "1996-10-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.326}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.249}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.244}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.273}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.204}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.205}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.222}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.29}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.292}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.339}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.384}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.382}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.416}, {"date": "1996-10-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.329}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.26}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.256}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.27}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.215}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.217}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.221}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.302}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.305}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.335}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.395}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.395}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.413}, {"date": "1996-10-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.329}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.268}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.264}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.273}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.223}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.225}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.225}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.31}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.312}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.336}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.403}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.403}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.416}, {"date": "1996-11-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.323}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.272}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.268}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.27}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.226}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.229}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.223}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.315}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.317}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.329}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.408}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.409}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.413}, {"date": "1996-11-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.316}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.282}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.277}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.277}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.236}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.238}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.23}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.326}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.326}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.338}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.418}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.419}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.422}, {"date": "1996-11-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.324}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.289}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.284}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.283}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.244}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.246}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.236}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.332}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.332}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.341}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.423}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.423}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.428}, {"date": "1996-11-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.327}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.287}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.281}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.288}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.241}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.242}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.24}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.332}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.33}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.345}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.423}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.421}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.433}, {"date": "1996-12-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.323}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.287}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.28}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.293}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.241}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.241}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.245}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.33}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.327}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.349}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.422}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.421}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.437}, {"date": "1996-12-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.32}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.283}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.272}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.297}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.236}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.233}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.248}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.327}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.322}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.354}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.419}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.415}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.443}, {"date": "1996-12-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.307}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.278}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.267}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.298}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.231}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.227}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.249}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.323}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.317}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.355}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.414}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.409}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.442}, {"date": "1996-12-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.3}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.274}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.263}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.299}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.227}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.224}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.25}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.318}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.313}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.355}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.412}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.407}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.443}, {"date": "1996-12-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.295}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.272}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.26}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.304}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.225}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.22}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.254}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.317}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.311}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.361}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.409}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.402}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.448}, {"date": "1997-01-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.291}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.287}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.275}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.316}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.241}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.235}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.266}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.332}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.326}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.375}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.423}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.418}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.458}, {"date": "1997-01-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.296}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.287}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.275}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.318}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.241}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.236}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.268}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.329}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.324}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.377}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.424}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.418}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.459}, {"date": "1997-01-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.293}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.284}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.271}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.316}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.238}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.232}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.265}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.325}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.321}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.376}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.421}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.415}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.458}, {"date": "1997-01-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.283}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.282}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.27}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.318}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.236}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.23}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.267}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.324}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.319}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.378}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.42}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.414}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.458}, {"date": "1997-02-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.288}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.28}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.266}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.32}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.234}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.227}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.271}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.321}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.315}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.379}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.414}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.405}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.46}, {"date": "1997-02-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.285}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.273}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.26}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.316}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.227}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.22}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.266}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.314}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.309}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.378}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.41}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.403}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.458}, {"date": "1997-02-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.278}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.27}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.257}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.313}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.223}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.217}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.26}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.312}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.307}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.377}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.408}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.401}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.454}, {"date": "1997-02-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.269}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.261}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.248}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.306}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.215}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.208}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.253}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.302}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.298}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.371}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.398}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.391}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.448}, {"date": "1997-03-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.252}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.253}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.24}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.306}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.206}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.199}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.252}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.296}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.292}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.373}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.393}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.385}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.448}, {"date": "1997-03-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.23}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.246}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.231}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.304}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.2}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.191}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.249}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.289}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.283}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.373}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.384}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.375}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.444}, {"date": "1997-03-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.22}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.25}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.235}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.305}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.204}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.196}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.252}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.291}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.285}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.374}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.385}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.376}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.442}, {"date": "1997-03-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.22}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.246}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.231}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.31}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.2}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.191}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.256}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.286}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.281}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.38}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.383}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.373}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.446}, {"date": "1997-03-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.225}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.248}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.232}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.314}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.203}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.192}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.259}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.288}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.282}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.388}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.386}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.374}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.453}, {"date": "1997-04-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.217}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.244}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.227}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.315}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.199}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.187}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.26}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.283}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.278}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.388}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.381}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.369}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.452}, {"date": "1997-04-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.216}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.245}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.228}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.31}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.199}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.188}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.256}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.284}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.278}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.381}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.381}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.369}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.447}, {"date": "1997-04-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.211}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.24}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.224}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.305}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.195}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.185}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.25}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.279}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.273}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.379}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.377}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.365}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.442}, {"date": "1997-04-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.205}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.238}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.221}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.305}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.193}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.182}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.249}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.276}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.269}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.379}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.374}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.363}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.442}, {"date": "1997-05-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.205}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.238}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.221}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.3}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.193}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.182}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.244}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.278}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.271}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.372}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.372}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.359}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.437}, {"date": "1997-05-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.191}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.247}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.233}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.301}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.203}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.195}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.246}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.286}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.28}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.371}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.38}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.37}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.436}, {"date": "1997-05-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.191}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.255}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.241}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.306}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.212}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.204}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.252}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.294}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.287}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.375}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.385}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.375}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.442}, {"date": "1997-05-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.196}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.258}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.243}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.304}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.215}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.206}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.25}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.297}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.29}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.373}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.388}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.378}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.439}, {"date": "1997-06-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.19}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.251}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.236}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.301}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.207}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.198}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.246}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.291}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.283}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.37}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.382}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.372}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.439}, {"date": "1997-06-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.187}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.242}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.227}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.296}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.198}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.189}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.241}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.282}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.274}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.365}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.373}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.362}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.435}, {"date": "1997-06-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.172}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.232}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.217}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.288}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.187}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.179}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.232}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.272}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.265}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.359}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.364}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.353}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.429}, {"date": "1997-06-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.162}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.226}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.21}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.273}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.181}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.171}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.22}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.267}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.259}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.347}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.359}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.348}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.417}, {"date": "1997-06-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.153}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.222}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.208}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.268}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.177}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.169}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.215}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.264}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.257}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.339}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.356}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.346}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.41}, {"date": "1997-07-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.159}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.219}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.203}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.262}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.173}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.165}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.208}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.261}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.254}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.333}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.352}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.342}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.405}, {"date": "1997-07-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.152}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.222}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.209}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.259}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.177}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.17}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.206}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.265}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.258}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.331}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.356}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.347}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.401}, {"date": "1997-07-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.147}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.216}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.203}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.254}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.17}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.164}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.201}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.259}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.252}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.327}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.351}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.342}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.4}, {"date": "1997-07-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.145}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.237}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.222}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.279}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.193}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.185}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.228}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.277}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.268}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.347}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.37}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.358}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.42}, {"date": "1997-08-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.155}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.272}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.256}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.316}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.228}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.219}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.265}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.311}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.302}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.385}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.404}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.393}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.455}, {"date": "1997-08-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.168}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.274}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.255}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.331}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.229}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.218}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.277}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.312}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.301}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.401}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.408}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.393}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.473}, {"date": "1997-08-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.167}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.288}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.268}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.357}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.244}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.23}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.302}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.327}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.314}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.428}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.422}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.406}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.498}, {"date": "1997-08-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.169}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.287}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.267}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.365}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.243}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.229}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.309}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.326}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.315}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.434}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.422}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.407}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.504}, {"date": "1997-09-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.165}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.288}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.266}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.369}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.243}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.227}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.313}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.326}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.313}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.44}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.423}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.406}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.509}, {"date": "1997-09-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.163}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.281}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.258}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.371}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.236}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.219}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.315}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.318}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.305}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.443}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.416}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.398}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.509}, {"date": "1997-09-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.156}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.269}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.247}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.363}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.225}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.208}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.305}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.306}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.294}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.437}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.404}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.387}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.502}, {"date": "1997-09-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.154}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.255}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.233}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.352}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.21}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.195}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.293}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.292}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.281}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.426}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.391}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.373}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.492}, {"date": "1997-09-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.16}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.254}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.234}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.347}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.209}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.195}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.288}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.292}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.283}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.42}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.39}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.374}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.486}, {"date": "1997-10-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.175}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.248}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.227}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.338}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.203}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.187}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.277}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.287}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.276}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.414}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.385}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.368}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.48}, {"date": "1997-10-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.185}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.238}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.218}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.33}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.193}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.178}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.269}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.278}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.268}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.407}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.376}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.36}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.472}, {"date": "1997-10-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.185}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.228}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.208}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.32}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.182}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.168}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.26}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.267}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.258}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.398}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.366}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.351}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.461}, {"date": "1997-10-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.185}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.221}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.202}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.311}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.176}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.163}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.254}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.259}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.251}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.387}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.357}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.344}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.452}, {"date": "1997-11-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.188}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.222}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.204}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.304}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.177}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.164}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.247}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.261}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.253}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.38}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.36}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.347}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.446}, {"date": "1997-11-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.19}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.213}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.195}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.296}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.168}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.156}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.238}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.251}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.244}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.372}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.352}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.339}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.437}, {"date": "1997-11-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.195}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.207}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.19}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.288}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.162}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.15}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.232}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.246}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.239}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.365}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.346}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.333}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.43}, {"date": "1997-11-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.193}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.197}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.18}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.282}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.152}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.14}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.226}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.236}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.23}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.358}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.336}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.324}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.424}, {"date": "1997-12-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.189}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.187}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.168}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.27}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.141}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.128}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.215}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.226}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.218}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.347}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.326}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.312}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.412}, {"date": "1997-12-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.174}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.176}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.158}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.26}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.131}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.118}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.207}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.215}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.208}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.337}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.315}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.301}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.401}, {"date": "1997-12-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.162}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.167}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.148}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.249}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.121}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.108}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.197}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.205}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.198}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.324}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.307}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.293}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.389}, {"date": "1997-12-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.155}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.158}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.139}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.243}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.112}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.099}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.19}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.196}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.189}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.319}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.298}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.284}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.384}, {"date": "1997-12-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.15}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.148}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.13}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.236}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.102}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.089}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.183}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.188}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.181}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.313}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.29}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.276}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.378}, {"date": "1998-01-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.147}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.14}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.123}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.222}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.094}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.083}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.169}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.181}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.174}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.299}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.281}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.268}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.365}, {"date": "1998-01-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.126}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.129}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.112}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.204}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.083}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.072}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.152}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.168}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.162}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.277}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.269}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.257}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.345}, {"date": "1998-01-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.109}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.112}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.095}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.19}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.066}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.055}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.138}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.152}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.146}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.263}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.253}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.241}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.333}, {"date": "1998-01-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.096}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.108}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.092}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.177}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.061}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.051}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.124}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.149}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.144}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.249}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.25}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.239}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.319}, {"date": "1998-02-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.091}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.101}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.086}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.165}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.053}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.045}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.113}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.143}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.138}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.237}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.243}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.233}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.307}, {"date": "1998-02-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.085}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.085}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.072}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.148}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.038}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.032}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.095}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.127}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.123}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.219}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.226}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.217}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.291}, {"date": "1998-02-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.082}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.09}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.078}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.137}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.044}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.038}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.086}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.132}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.128}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.209}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.23}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.221}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.279}, {"date": "1998-02-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.079}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.075}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.065}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.117}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.028}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.025}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.065}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.119}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.117}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.187}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.216}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.211}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.259}, {"date": "1998-03-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.074}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.065}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.057}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.098}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.018}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.017}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.045}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.111}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.11}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.17}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.205}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.203}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.241}, {"date": "1998-03-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.066}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.055}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.047}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.088}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.008}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.006}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.035}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.101}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.1}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.159}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.195}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.192}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.232}, {"date": "1998-03-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.057}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.047}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.038}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.081}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.998}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.029}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.091}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.09}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.151}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.185}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.181}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.225}, {"date": "1998-03-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.049}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.077}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.066}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.107}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.03}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.026}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.057}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.121}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.117}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.177}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.215}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.21}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.251}, {"date": "1998-03-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.068}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.074}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.063}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.108}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.028}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.023}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.059}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.118}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.114}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.176}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.212}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.206}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.248}, {"date": "1998-04-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.067}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.072}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.058}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.113}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.025}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.018}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.066}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.115}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.111}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.181}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.21}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.203}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.252}, {"date": "1998-04-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.065}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.075}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.062}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.112}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.028}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.021}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.065}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.118}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.114}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.18}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.214}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.208}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.251}, {"date": "1998-04-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.065}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.086}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.073}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.123}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.04}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.032}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.077}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.128}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.123}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.191}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.227}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.22}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.26}, {"date": "1998-04-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.07}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.095}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.079}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.149}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.049}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.038}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.101}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.137}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.131}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.221}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.236}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.227}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.283}, {"date": "1998-05-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.072}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.109}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.092}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.161}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.063}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.052}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.115}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.15}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.144}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.232}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.247}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.237}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.295}, {"date": "1998-05-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.075}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.109}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.092}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.175}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.072}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.055}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.12}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.161}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.137}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.24}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.246}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.228}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.308}, {"date": "1998-05-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.069}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.108}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.09}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.175}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.07}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.052}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.12}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.16}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.138}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.236}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.245}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.226}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.307}, {"date": "1998-05-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.06}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.104}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.086}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.172}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.066}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.047}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.119}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.156}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.132}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.234}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.242}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.224}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.304}, {"date": "1998-06-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.053}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.113}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.097}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.17}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.075}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.06}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.116}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.164}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.142}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.232}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.248}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.232}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.305}, {"date": "1998-06-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.045}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.104}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.087}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.166}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.066}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.049}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.111}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.156}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.134}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.23}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.243}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.226}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.302}, {"date": "1998-06-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.04}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.096}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.079}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.161}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.058}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.041}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.106}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.15}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.127}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.226}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.237}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.218}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.301}, {"date": "1998-06-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.033}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.096}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.081}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.156}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.057}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.042}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.099}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.149}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.128}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.22}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.237}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.22}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.296}, {"date": "1998-06-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.034}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.097}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.08}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.157}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.058}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.041}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.103}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.149}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.127}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.22}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.237}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.219}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.296}, {"date": "1998-07-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.036}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.092}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.076}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.154}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.054}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.037}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.099}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.146}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.123}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.218}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.233}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.215}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.294}, {"date": "1998-07-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.031}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.097}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.082}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.153}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.059}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.044}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.098}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.149}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.128}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.217}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.235}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.217}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.293}, {"date": "1998-07-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.027}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.088}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.073}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.147}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.05}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.035}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.09}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.14}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.118}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.212}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.229}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.211}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.289}, {"date": "1998-07-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.02}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.077}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.061}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.139}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.039}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.023}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.082}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.131}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.109}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.204}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.218}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.199}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.282}, {"date": "1998-08-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.016}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.072}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.056}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.134}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.033}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.018}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.076}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.124}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.102}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.199}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.214}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.195}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.278}, {"date": "1998-08-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.01}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.065}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.049}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.13}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.026}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.011}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.072}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.119}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.097}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.194}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.207}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.188}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.275}, {"date": "1998-08-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.007}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.058}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.042}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.123}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.019}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.004}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.065}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.113}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.09}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.19}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.2}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.181}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.268}, {"date": "1998-08-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.004}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.053}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.037}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.116}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.013}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.998}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.059}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.107}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.085}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.181}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.196}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.178}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.261}, {"date": "1998-08-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.046}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.03}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.112}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.007}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.991}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.054}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.101}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.079}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.177}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.191}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.172}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.258}, {"date": "1998-09-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.009}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.042}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.026}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.107}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.002}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.987}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.049}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.097}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.075}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.173}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.187}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.168}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.254}, {"date": "1998-09-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.019}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.053}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.038}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.114}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.014}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.999}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.055}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.108}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.086}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.182}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.197}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.179}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.261}, {"date": "1998-09-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.03}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.053}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.037}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.117}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.014}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.999}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.058}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.107}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.085}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.183}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.197}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.178}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.263}, {"date": "1998-09-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.039}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.059}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.045}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.116}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.019}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.006}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.057}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.113}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.093}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.181}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.202}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.186}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.261}, {"date": "1998-10-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.041}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.063}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.05}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.117}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.022}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.01}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.06}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.118}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.1}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.184}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.209}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.194}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.263}, {"date": "1998-10-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.041}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.058}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.046}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.113}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.019}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.007}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.055}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.113}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.095}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.179}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.204}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.19}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.257}, {"date": "1998-10-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.036}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.055}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.04}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.115}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.015}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.001}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.057}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.109}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.089}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.18}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.2}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.183}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.26}, {"date": "1998-10-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.036}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.05}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.037}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.11}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.01}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.997}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.052}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.105}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.086}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.176}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.196}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.18}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.255}, {"date": "1998-11-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.035}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.048}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.034}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.109}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.008}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.994}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.051}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.104}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.083}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.175}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.194}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.178}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.256}, {"date": "1998-11-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.034}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.037}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.022}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.103}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.996}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.981}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.045}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.094}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.073}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.17}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.183}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.166}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.248}, {"date": "1998-11-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.026}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.03}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.012}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.105}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.989}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.971}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.044}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.089}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.065}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.174}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.177}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.156}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.252}, {"date": "1998-11-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.012}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.015}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.995}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.099}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.974}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.954}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.035}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.074}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.048}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.169}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.164}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.141}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.248}, {"date": "1998-11-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.004}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.996}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.974}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.088}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.954}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.933}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.024}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.056}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.027}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.157}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.146}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.12}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.238}, {"date": "1998-12-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.986}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.987}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.964}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.081}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.945}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.923}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.017}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.046}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.016}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.152}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.139}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.112}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.233}, {"date": "1998-12-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.972}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.986}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.962}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.079}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.944}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.921}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.014}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.044}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.014}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.152}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.135}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.107}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.23}, {"date": "1998-12-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.968}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.979}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.955}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.074}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.937}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.914}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.009}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.038}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.008}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.147}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.129}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.1}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.226}, {"date": "1998-12-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.966}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.977}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.953}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.071}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.935}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.913}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.006}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.036}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.006}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.143}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.126}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.098}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.223}, {"date": "1999-01-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.965}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.982}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.96}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.068}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.941}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.92}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.005}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.039}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.011}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.139}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.129}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.102}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.219}, {"date": "1999-01-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.967}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.985}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.961}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.073}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.944}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.921}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.013}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.042}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.012}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.143}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.131}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.104}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.221}, {"date": "1999-01-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.97}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.977}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.954}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.067}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.936}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.913}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.006}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.035}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.006}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.137}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.125}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.098}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.216}, {"date": "1999-01-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.964}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.971}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.948}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.056}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.929}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.908}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 0.994}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.029}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.002}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.127}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.12}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.094}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.207}, {"date": "1999-02-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.962}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.968}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.947}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.05}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.927}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.907}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 0.987}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.026}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 0.999}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.122}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.117}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.092}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.203}, {"date": "1999-02-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.962}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.96}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.939}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.043}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.919}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.899}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 0.981}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.018}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 0.99}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.116}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.109}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.084}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.195}, {"date": "1999-02-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.959}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.949}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.926}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.039}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.907}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.885}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 0.974}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.008}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 0.979}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.112}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.1}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.074}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.191}, {"date": "1999-02-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.953}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.955}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.932}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.042}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.913}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.891}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 0.978}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.016}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 0.987}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.116}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.104}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.077}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.192}, {"date": "1999-03-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.956}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 0.963}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.941}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.051}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.921}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.9}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 0.985}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.024}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 0.995}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.126}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.11}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.085}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.198}, {"date": "1999-03-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 0.964}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.017}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 0.997}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.09}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 0.977}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.958}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.03}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.074}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.048}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.162}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.16}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.137}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.23}, {"date": "1999-03-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.056}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.038}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.126}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.017}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 0.999}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.067}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.112}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.086}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.197}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.199}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.178}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.262}, {"date": "1999-03-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.018}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.121}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.093}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.225}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.082}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.055}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.156}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.177}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.141}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.303}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.259}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.229}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.351}, {"date": "1999-03-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.046}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.158}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.125}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.287}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.118}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.087}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.21}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.216}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.172}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.374}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.296}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.26}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.412}, {"date": "1999-04-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.075}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.179}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.144}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.316}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.14}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.107}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.239}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.238}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.193}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.403}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.316}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.277}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.442}, {"date": "1999-04-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.084}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.175}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.14}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.311}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.135}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.103}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.234}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.234}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.19}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.397}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.314}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.275}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.442}, {"date": "1999-04-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.08}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.171}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.137}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.306}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.131}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.099}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.229}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.231}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.187}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.392}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.314}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.275}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.44}, {"date": "1999-04-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.078}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.176}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.145}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.3}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.136}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.107}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.224}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.234}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.194}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.383}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.316}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.28}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.433}, {"date": "1999-05-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.078}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.18}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.149}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.302}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.14}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.109}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.231}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.24}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.201}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.38}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.324}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.288}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.438}, {"date": "1999-05-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.083}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.18}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.151}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.291}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.14}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.112}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.221}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.239}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.203}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.369}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.323}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.291}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.427}, {"date": "1999-05-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.075}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.166}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.14}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.269}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.126}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.101}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.201}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.224}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.191}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.343}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.309}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.279}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.407}, {"date": "1999-05-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.066}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.151}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.128}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.248}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.111}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.088}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.182}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.21}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.18}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.319}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.297}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.27}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.389}, {"date": "1999-05-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.065}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.152}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.132}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.235}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.112}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.092}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.168}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.21}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.184}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.306}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.296}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.272}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.376}, {"date": "1999-06-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.059}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.148}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.127}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.233}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.108}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.088}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.169}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.205}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.178}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.301}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.292}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.268}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.371}, {"date": "1999-06-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.068}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.163}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.144}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.239}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.124}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.105}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.176}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.219}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.195}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.307}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.304}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.282}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.376}, {"date": "1999-06-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.082}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.153}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.134}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.233}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.113}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.095}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.168}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.21}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.185}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.304}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.296}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.274}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.371}, {"date": "1999-06-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.087}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.165}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.149}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.233}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.125}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.11}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.17}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.221}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.2}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.302}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.306}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.289}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.37}, {"date": "1999-07-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.102}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.182}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.161}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.267}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.143}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.123}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.203}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.236}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.21}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.334}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.322}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.299}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.402}, {"date": "1999-07-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.114}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.208}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.187}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.301}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.169}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.148}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.232}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.265}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.238}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.372}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.35}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.326}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.434}, {"date": "1999-07-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.133}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.232}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.211}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.32}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.193}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.172}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.252}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.288}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.261}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.39}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.371}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.348}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.451}, {"date": "1999-07-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.137}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.234}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.211}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.331}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.195}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.172}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.261}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.292}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.262}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.405}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.375}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.35}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.463}, {"date": "1999-08-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.146}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.246}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.222}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.349}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.206}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.183}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.275}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.302}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.27}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.424}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.387}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.361}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.482}, {"date": "1999-08-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.156}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.275}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.251}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.369}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.236}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.214}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.299}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.331}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.3}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.441}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.413}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.388}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.501}, {"date": "1999-08-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.178}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.273}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.25}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.368}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.234}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.212}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.298}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.33}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.301}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.441}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.414}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.389}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.501}, {"date": "1999-08-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.186}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.273}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.253}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.361}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.233}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.214}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.29}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.329}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.302}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.433}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.416}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.393}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.497}, {"date": "1999-08-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.194}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.282}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.262}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.362}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.242}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.223}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.297}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.338}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.311}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.432}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.423}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.401}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.499}, {"date": "1999-09-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.198}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.29}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.274}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.359}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.25}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.234}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.294}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.346}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.325}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.428}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.432}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.415}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.497}, {"date": "1999-09-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.209}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.307}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.292}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.369}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.268}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.252}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.311}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.365}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.345}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.433}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.448}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.431}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.506}, {"date": "1999-09-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.226}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.302}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.288}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.359}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.262}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.248}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.302}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.359}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.342}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.422}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.444}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.429}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.497}, {"date": "1999-09-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.226}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.296}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.282}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.357}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.255}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.242}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.297}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.353}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.335}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.421}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.441}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.425}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.5}, {"date": "1999-10-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.234}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.29}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.275}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.36}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.249}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.234}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.299}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.347}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.327}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.424}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.435}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.418}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.502}, {"date": "1999-10-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.228}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.277}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.261}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.352}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.236}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.22}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.288}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.334}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.314}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.416}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.424}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.407}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.495}, {"date": "1999-10-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.224}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.277}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.265}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.34}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.237}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.225}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.276}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.336}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.319}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.404}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.424}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.41}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.485}, {"date": "1999-10-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.226}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.271}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.258}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.334}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.23}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.218}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.272}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.329}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.312}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.398}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.417}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.403}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.477}, {"date": "1999-11-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.229}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.274}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.262}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.33}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.233}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.222}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.271}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.33}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.314}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.393}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.418}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.405}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.474}, {"date": "1999-11-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.234}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.292}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.281}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.341}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.251}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.24}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.284}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.35}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.334}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.404}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.436}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.425}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.481}, {"date": "1999-11-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.261}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.309}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.298}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.355}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.269}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.258}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.298}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.367}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.353}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.419}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.451}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.44}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.494}, {"date": "1999-11-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.289}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.315}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.303}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.369}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.274}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.262}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.312}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.372}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.357}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.432}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.457}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.445}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.508}, {"date": "1999-11-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.304}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.313}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.301}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.372}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.273}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.26}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.313}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.37}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.353}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.437}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.458}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.445}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.514}, {"date": "1999-12-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.294}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.315}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.303}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.371}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.275}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.263}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.312}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.372}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.356}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.435}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.459}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.446}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.51}, {"date": "1999-12-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.288}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.31}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.298}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.365}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.269}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.257}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.305}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.367}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.351}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.429}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.455}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.442}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.507}, {"date": "1999-12-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.287}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.314}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.304}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.363}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.273}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.263}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.303}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.372}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.358}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.428}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.459}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.448}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.505}, {"date": "1999-12-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.298}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.312}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.301}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.365}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.272}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.26}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.306}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.369}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.353}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.428}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.457}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.444}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.507}, {"date": "2000-01-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.309}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.304}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.292}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.36}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.264}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.252}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.301}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.361}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.345}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.423}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.45}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.437}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.502}, {"date": "2000-01-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.307}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.318}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.308}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.36}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.277}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.268}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.303}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.375}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.362}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.423}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.461}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.451}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.503}, {"date": "2000-01-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.307}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.354}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.346}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.385}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.315}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.307}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.335}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.409}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.397}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.445}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.493}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.484}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.524}, {"date": "2000-01-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.418}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.355}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.346}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.394}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.316}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.307}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.34}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.411}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.398}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.457}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.496}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.485}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.535}, {"date": "2000-01-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.439}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.364}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.358}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.397}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.325}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.319}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.343}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.417}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.406}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.458}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.504}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.496}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.538}, {"date": "2000-02-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.47}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.394}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.389}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.419}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.356}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.35}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.37}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.447}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.438}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.477}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.533}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.527}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.554}, {"date": "2000-02-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.456}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.443}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.438}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.46}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.406}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.4}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.414}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.495}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.487}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.519}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.577}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.573}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.59}, {"date": "2000-02-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.456}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.458}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.45}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.489}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.421}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.413}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.438}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.511}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.499}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.551}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.593}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.584}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.619}, {"date": "2000-02-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.461}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.539}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.528}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.582}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.501}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.49}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.529}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.593}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.579}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.643}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.674}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.663}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.709}, {"date": "2000-03-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.49}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.566}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.55}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.637}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.527}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.511}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.574}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.621}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.6}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.703}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.705}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.689}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.764}, {"date": "2000-03-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.496}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.569}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.548}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.662}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.529}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.508}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.592}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.624}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.597}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.731}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.711}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.689}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.791}, {"date": "2000-03-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.479}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.549}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.524}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.655}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.508}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.484}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.583}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.606}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.576}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.725}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.693}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.667}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.786}, {"date": "2000-03-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.451}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.543}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.518}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.647}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.503}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.478}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.578}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.602}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.572}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.717}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.687}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.661}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.776}, {"date": "2000-04-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.442}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.516}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.487}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.63}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.475}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.447}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.559}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.575}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.541}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.702}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.662}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.632}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.763}, {"date": "2000-04-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.419}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.486}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.455}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.608}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.444}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.415}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.534}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.544}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.508}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.68}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.634}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.601}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.745}, {"date": "2000-04-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.398}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.478}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.445}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.599}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.437}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.406}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.532}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.535}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.495}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.669}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.622}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.587}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.734}, {"date": "2000-04-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.428}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.461}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.426}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.587}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.42}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.386}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.522}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.517}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.477}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.655}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.607}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.57}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.723}, {"date": "2000-05-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.418}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.495}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.467}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.593}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.455}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.427}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.535}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.552}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.518}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.659}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.638}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.609}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.725}, {"date": "2000-05-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.402}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.531}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.505}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.609}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.492}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.466}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.562}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.586}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.556}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.67}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.672}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.646}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.738}, {"date": "2000-05-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.415}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.566}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.533}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.623}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.527}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.494}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.587}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.618}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.581}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.682}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.703}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.674}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.752}, {"date": "2000-05-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.432}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.579}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.547}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.642}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.54}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.509}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.603}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.63}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.594}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.697}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.713}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.684}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.767}, {"date": "2000-05-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.431}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.599}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.571}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.66}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.563}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.535}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.627}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.646}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.615}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.712}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.73}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.703}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.787}, {"date": "2000-06-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.419}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.664}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.64}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.692}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.631}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.607}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.669}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.706}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.68}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.74}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.785}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.763}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.816}, {"date": "2000-06-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.411}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.711}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.695}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.715}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.681}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.664}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.694}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.751}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.73}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.762}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.827}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.811}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.838}, {"date": "2000-06-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.423}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.691}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.674}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.712}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.658}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.641}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.679}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.733}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.712}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.762}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.813}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.796}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.839}, {"date": "2000-06-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.432}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.661}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.642}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.716}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.625}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.606}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.666}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.707}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.682}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.774}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.792}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.772}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.847}, {"date": "2000-07-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.453}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.63}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.608}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.709}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.593}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.571}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.651}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.682}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.654}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.769}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.769}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.745}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.843}, {"date": "2000-07-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.449}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.586}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.561}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.686}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.546}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.521}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.62}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.64}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.61}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.749}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.733}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.708}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.826}, {"date": "2000-07-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.435}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.562}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.539}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.663}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.52}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.499}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.59}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.619}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.591}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.728}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.711}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.687}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.807}, {"date": "2000-07-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.424}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.514}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.489}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.631}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.471}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.447}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.553}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.573}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.541}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.699}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.668}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.641}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.78}, {"date": "2000-07-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.408}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.504}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.479}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.619}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.462}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.437}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.54}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.564}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.532}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.686}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.656}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.627}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.77}, {"date": "2000-08-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.41}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.489}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.46}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.614}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.447}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.42}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.536}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.546}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.511}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.682}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.639}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.607}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.763}, {"date": "2000-08-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.447}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.508}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.484}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.614}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.468}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.444}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.54}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.565}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.534}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.679}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.654}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.626}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.759}, {"date": "2000-08-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.471}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.521}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.495}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.629}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.481}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.456}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.555}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.577}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.544}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.697}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.664}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.635}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.771}, {"date": "2000-08-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.536}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.568}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.539}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.675}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.53}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.502}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.605}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.622}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.586}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.743}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.706}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.674}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.808}, {"date": "2000-09-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.609}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.598}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.571}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.704}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.561}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.535}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.632}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.65}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.615}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.773}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.735}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.704}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.837}, {"date": "2000-09-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.629}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.599}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.575}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.696}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.562}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.539}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.624}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.65}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.619}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.765}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.733}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.706}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.827}, {"date": "2000-09-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.653}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.586}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.562}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.69}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.548}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.525}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.615}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.639}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.607}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.761}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.726}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.698}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.825}, {"date": "2000-09-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.657}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.563}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.536}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.68}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.524}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.498}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.601}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.616}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.58}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.754}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.704}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.674}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.817}, {"date": "2000-10-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.625}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.541}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.511}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.668}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.502}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.473}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.589}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.593}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.554}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.742}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.683}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.649}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.806}, {"date": "2000-10-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.614}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.578}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.554}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.675}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.539}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.516}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.603}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.631}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.6}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.746}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.717}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.691}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.811}, {"date": "2000-10-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.67}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.588}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.568}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.67}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.551}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.532}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.599}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.641}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.614}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.74}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.724}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.7}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.806}, {"date": "2000-10-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.648}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.584}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.561}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.675}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.545}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.523}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.606}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.637}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.608}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.743}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.722}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.696}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.811}, {"date": "2000-10-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.629}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.565}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.54}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.666}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.526}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.502}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.594}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.618}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.586}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.735}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.706}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.679}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.804}, {"date": "2000-11-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.61}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.562}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.539}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.657}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.523}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.501}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.587}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.616}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.587}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.727}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.701}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.677}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.792}, {"date": "2000-11-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.603}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.55}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.525}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.648}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.51}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.487}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.579}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.605}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.573}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.719}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.69}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.664}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.786}, {"date": "2000-11-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.627}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.549}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.527}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.64}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.51}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.489}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.571}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.603}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.575}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.708}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.69}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.666}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.779}, {"date": "2000-11-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.645}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.526}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.503}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.623}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.486}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.464}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.55}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.581}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.55}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.695}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.668}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.643}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.764}, {"date": "2000-12-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.622}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.49}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.465}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.598}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.449}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.425}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.524}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.547}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.514}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.672}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.636}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.608}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.743}, {"date": "2000-12-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.577}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.462}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.436}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.575}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.422}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.396}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.499}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.518}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.485}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.647}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.609}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.579}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.727}, {"date": "2000-12-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.545}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.453}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.426}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.564}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.414}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.388}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.491}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.502}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.467}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.633}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.597}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.566}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.711}, {"date": "2000-12-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.515}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.446}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.416}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.558}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.406}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.377}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.489}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.503}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.467}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.628}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.59}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.559}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.704}, {"date": "2001-01-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.522}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.465}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.439}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.558}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.425}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.4}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.492}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.523}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.492}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.628}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.606}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.581}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.696}, {"date": "2001-01-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.52}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.513}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.497}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.569}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.474}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.458}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.511}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.566}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.546}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.631}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.656}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.639}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.71}, {"date": "2001-01-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.509}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.511}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.496}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.565}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.471}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.456}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.509}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.562}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.543}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.627}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.656}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.64}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.708}, {"date": "2001-01-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.528}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.5}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.486}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.554}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.46}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.446}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.497}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.551}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.533}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.616}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.644}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.628}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.697}, {"date": "2001-01-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.539}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.483}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.466}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.551}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.443}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.426}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.489}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.538}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.517}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.617}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.63}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.611}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.696}, {"date": "2001-02-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.52}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.515}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.499}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.575}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.476}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.46}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.514}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.568}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.547}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.64}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.656}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.639}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.714}, {"date": "2001-02-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.518}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.489}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.468}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.573}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.449}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.429}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.507}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.543}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.517}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.641}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.634}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.611}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.713}, {"date": "2001-02-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.48}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.471}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.45}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.561}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.431}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.41}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.491}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.526}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.498}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.631}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.618}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.594}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.703}, {"date": "2001-02-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.451}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.457}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.433}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.562}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.417}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.393}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.489}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.513}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.482}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.633}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.605}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.578}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.701}, {"date": "2001-03-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.42}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.453}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.426}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.558}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.412}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.387}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.485}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.51}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.477}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.632}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.598}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.569}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.699}, {"date": "2001-03-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.406}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.444}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.416}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.553}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.404}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.377}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.482}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.5}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.464}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.628}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.589}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.558}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.695}, {"date": "2001-03-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.392}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.445}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.418}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.545}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.404}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.379}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.475}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.502}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.468}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.621}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.59}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.56}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.686}, {"date": "2001-03-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.379}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.482}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.451}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.581}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.442}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.411}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.518}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.54}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.502}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.656}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.624}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.591}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.718}, {"date": "2001-04-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.391}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.54}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.509}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.632}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.5}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.469}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.575}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.596}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.562}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.702}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.682}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.651}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.763}, {"date": "2001-04-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.397}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.61}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.575}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.673}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.571}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.535}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.631}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.665}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.625}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.736}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.753}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.718}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.817}, {"date": "2001-04-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.437}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.658}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.625}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.736}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.619}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.586}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.696}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.712}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.676}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.792}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.797}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.766}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.873}, {"date": "2001-04-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.443}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.665}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.624}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.765}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.626}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.585}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.724}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.717}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.671}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.823}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.806}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.765}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.907}, {"date": "2001-04-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.442}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.739}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.695}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.833}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.703}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.659}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.794}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.788}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.738}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.889}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.869}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.826}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.965}, {"date": "2001-05-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.47}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.748}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.697}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.861}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.713}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.663}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.821}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.793}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.735}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.918}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.876}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.824}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.995}, {"date": "2001-05-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.491}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.724}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.673}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.842}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.687}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.637}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.802}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.773}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.715}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.903}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.858}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.805}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.981}, {"date": "2001-05-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.494}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.739}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.691}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.849}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.704}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.656}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.807}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.787}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.73}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.91}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.871}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.819}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.991}, {"date": "2001-05-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.529}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.715}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.665}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.831}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.679}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.63}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.79}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.762}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.703}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.893}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.847}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.794}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.972}, {"date": "2001-06-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.514}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.688}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.617}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.828}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.647}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.58}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.783}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.741}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.66}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.897}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.829}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.754}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.968}, {"date": "2001-06-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.486}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.644}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.566}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.797}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.601}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.526}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.75}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.7}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.611}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.869}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.792}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.71}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.942}, {"date": "2001-06-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.48}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.583}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.495}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.757}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.538}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.454}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.708}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.644}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.546}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.833}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.737}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.645}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.907}, {"date": "2001-06-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.447}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.52}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.427}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.703}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.474}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.384}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.654}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.585}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.482}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.784}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.678}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.582}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.855}, {"date": "2001-07-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.407}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.484}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.392}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.664}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.437}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.35}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.613}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.55}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.448}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.746}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.641}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.544}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.821}, {"date": "2001-07-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.392}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.459}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.372}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.63}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.413}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.33}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.579}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.524}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.428}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.71}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.616}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.525}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.786}, {"date": "2001-07-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.38}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.44}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.358}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.601}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.395}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.318}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.55}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.5}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.408}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.677}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.595}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.505}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.761}, {"date": "2001-07-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.348}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.428}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.358}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.565}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.384}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.319}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.514}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.486}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.406}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.641}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.581}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.503}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.725}, {"date": "2001-07-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.347}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.419}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.358}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.539}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.376}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.319}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.49}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.476}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.406}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.611}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.57}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.501}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.696}, {"date": "2001-08-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.345}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.434}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.385}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.53}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.392}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.347}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.482}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.487}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.43}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.596}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.58}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.524}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.684}, {"date": "2001-08-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.367}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.467}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.435}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.53}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.427}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.399}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.485}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.516}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.476}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.591}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.608}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.57}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.677}, {"date": "2001-08-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.394}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.523}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.51}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.547}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.488}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.48}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.505}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.561}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.538}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.604}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.647}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.626}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.686}, {"date": "2001-08-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.452}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.579}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.568}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.6}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.545}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.538}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.559}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.619}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.599}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.659}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.698}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.683}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.728}, {"date": "2001-09-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.488}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.562}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.543}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.601}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.527}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.511}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.559}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.604}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.575}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.661}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.686}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.662}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.731}, {"date": "2001-09-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.492}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.564}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.548}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.595}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.529}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.516}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.554}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.607}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.58}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.658}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.689}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.668}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.727}, {"date": "2001-09-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.527}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.522}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.495}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.577}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.485}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.46}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.534}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.569}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.532}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.641}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.653}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.622}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.711}, {"date": "2001-09-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.473}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.455}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.417}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.531}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.416}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.381}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.487}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.503}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.455}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.596}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.591}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.549}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.669}, {"date": "2001-10-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.39}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.393}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.347}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.483}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.352}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.31}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.438}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.444}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.39}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.548}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.535}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.486}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.623}, {"date": "2001-10-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.371}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.351}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.303}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.445}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.309}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.264}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.401}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.405}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.349}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.512}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.495}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.447}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.585}, {"date": "2001-10-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.353}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.307}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.26}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.4}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.265}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.221}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.355}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.361}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.306}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.467}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.452}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.402}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.544}, {"date": "2001-10-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.318}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.277}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.233}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.365}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.235}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.193}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.319}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.331}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.278}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.432}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.423}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.376}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.509}, {"date": "2001-10-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.31}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.249}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.209}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.327}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.206}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.17}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.28}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.303}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.256}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.394}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.395}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.353}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.474}, {"date": "2001-11-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.291}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.224}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.186}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.298}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.182}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.147}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.253}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.278}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.233}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.365}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.368}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.328}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.442}, {"date": "2001-11-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.269}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.208}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.178}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.268}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.167}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.14}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.222}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.26}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.222}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.333}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.351}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.317}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.412}, {"date": "2001-11-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.252}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.168}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.136}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.231}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.127}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.097}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.186}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.219}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.18}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.295}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.312}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.277}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.376}, {"date": "2001-11-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.223}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.149}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.122}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.201}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.108}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.084}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.156}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.2}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.167}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.264}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.291}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.263}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.344}, {"date": "2001-12-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.194}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.136}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.114}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.179}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.095}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.075}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.134}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.187}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.161}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.239}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.28}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.257}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.322}, {"date": "2001-12-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.173}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.101}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.082}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.139}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.059}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.042}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.093}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.154}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.13}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.201}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.249}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.229}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.286}, {"date": "2001-12-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.143}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.113}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.103}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.133}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.072}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.063}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.088}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.165}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.151}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.192}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.257}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.245}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.279}, {"date": "2001-12-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.154}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.137}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.135}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.14}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.096}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.096}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.097}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.187}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.182}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.196}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.277}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.275}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.282}, {"date": "2001-12-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.169}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.152}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.148}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.16}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.112}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.109}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.117}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.202}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.194}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.217}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.293}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.289}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.301}, {"date": "2002-01-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.168}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.152}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.139}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.178}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.111}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.099}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.134}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.202}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.185}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.236}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.299}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.287}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.32}, {"date": "2002-01-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.159}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.146}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.127}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.185}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.105}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.087}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.141}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.198}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.175}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.244}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.289}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.27}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.325}, {"date": "2002-01-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.14}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.142}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.12}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.185}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.101}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.081}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.142}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.194}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.167}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.246}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.286}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.264}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.325}, {"date": "2002-01-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.144}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.157}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.137}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.196}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.116}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.098}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.154}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.209}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.184}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.258}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.297}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.278}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.333}, {"date": "2002-02-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.144}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.148}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.125}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.195}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.107}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.085}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.152}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.201}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.172}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.258}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.291}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.269}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.333}, {"date": "2002-02-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.153}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.157}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.129}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.213}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.116}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.089}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.169}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.21}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.175}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.277}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.3}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.272}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.352}, {"date": "2002-02-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.156}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.157}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.126}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.219}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.116}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.087}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.174}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.21}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.172}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.285}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.301}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.27}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.359}, {"date": "2002-02-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.154}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.185}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.157}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.239}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.144}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.118}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.196}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.238}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.204}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.304}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.326}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.299}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.377}, {"date": "2002-03-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.173}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.262}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.232}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.322}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.223}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.194}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.279}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.316}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.277}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.39}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.398}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.368}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.453}, {"date": "2002-03-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.216}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.328}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.3}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.384}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.288}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.262}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.341}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.382}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.346}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.451}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.466}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.439}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.516}, {"date": "2002-03-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.251}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.382}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.346}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.451}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.342}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.308}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.41}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.435}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.393}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.515}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.519}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.486}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.579}, {"date": "2002-03-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.281}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.412}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.379}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.479}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.371}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.339}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.436}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.468}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.428}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.545}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.554}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.522}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.613}, {"date": "2002-04-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.295}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.454}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.422}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.518}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.413}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.382}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.476}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.509}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.472}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.582}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.595}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.564}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.651}, {"date": "2002-04-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.323}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.446}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.408}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.522}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.404}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.368}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.478}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.502}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.457}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.588}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.591}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.555}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.659}, {"date": "2002-04-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.32}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.446}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.407}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.523}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.404}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.367}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.478}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.502}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.457}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.589}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.591}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.553}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.661}, {"date": "2002-04-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.304}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.435}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.393}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.519}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.393}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.353}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.475}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.49}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.44}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.584}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.581}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.54}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.659}, {"date": "2002-04-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.302}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.437}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.396}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.518}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.395}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.356}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.474}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.493}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.446}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.582}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.583}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.542}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.658}, {"date": "2002-05-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.305}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.431}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.389}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.512}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.388}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.349}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.467}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.487}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.439}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.578}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.577}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.535}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.655}, {"date": "2002-05-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.299}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.439}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.4}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.517}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.397}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.36}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.473}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.494}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.449}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.579}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.583}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.543}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.657}, {"date": "2002-05-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.309}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.429}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.389}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.509}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.387}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.348}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.465}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.484}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.438}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.572}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.576}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.536}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.65}, {"date": "2002-05-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.308}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.433}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.393}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.512}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.392}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.353}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.469}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.488}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.442}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.574}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.576}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.536}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.65}, {"date": "2002-06-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.3}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.417}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.372}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.505}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.375}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.332}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.462}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.47}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.42}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.566}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.561}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.518}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.642}, {"date": "2002-06-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.286}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.419}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.375}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.508}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.378}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.335}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.464}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.474}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.423}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.573}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.563}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.518}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.646}, {"date": "2002-06-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.275}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.425}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.381}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.512}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.384}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.342}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.468}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.48}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.428}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.579}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.567}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.523}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.65}, {"date": "2002-06-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.281}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.433}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.396}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.506}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.392}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.357}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.461}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.489}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.444}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.574}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.575}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.538}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.644}, {"date": "2002-07-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.289}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.423}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.384}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.501}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.382}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.345}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.456}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.478}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.431}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.569}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.567}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.527}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.641}, {"date": "2002-07-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.294}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.435}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.399}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.506}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.394}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.361}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.461}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.488}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.444}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.573}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.575}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.538}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.644}, {"date": "2002-07-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.3}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.451}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.419}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.513}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.41}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.381}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.469}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.503}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.465}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.578}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.592}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.559}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.653}, {"date": "2002-07-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.311}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.447}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.414}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.513}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.407}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.376}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.468}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.5}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.459}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.577}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.589}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.553}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.654}, {"date": "2002-07-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.303}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.437}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.395}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.52}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.395}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.355}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.475}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.491}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.443}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.584}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.582}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.538}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.662}, {"date": "2002-08-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.304}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.435}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.395}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.514}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.393}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.355}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.468}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.488}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.441}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.579}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.58}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.538}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.658}, {"date": "2002-08-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.303}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.434}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.397}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.508}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.392}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.357}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.462}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.488}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.443}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.574}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.58}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.54}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.652}, {"date": "2002-08-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.333}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.444}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.404}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.525}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.403}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.365}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.479}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.498}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.45}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.59}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.589}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.546}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.668}, {"date": "2002-08-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.37}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.436}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.393}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.521}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.394}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.353}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.476}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.489}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.438}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.586}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.581}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.536}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.665}, {"date": "2002-09-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.388}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.437}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.395}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.52}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.395}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.355}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.475}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.49}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.441}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.585}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.582}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.539}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.662}, {"date": "2002-09-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.396}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.442}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.406}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.515}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.401}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.367}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.469}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.496}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.452}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.58}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.587}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.549}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.658}, {"date": "2002-09-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.414}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.436}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.396}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.516}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.395}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.357}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.472}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.488}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.441}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.579}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.582}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.541}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.658}, {"date": "2002-09-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.417}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.455}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.424}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.515}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.413}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.385}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.47}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.508}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.471}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.579}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.6}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.568}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.658}, {"date": "2002-09-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.438}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.48}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.456}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.527}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.439}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.416}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.484}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.531}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.502}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.587}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.623}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.598}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.669}, {"date": "2002-10-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.46}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.481}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.461}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.522}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.44}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.422}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.478}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.533}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.507}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.581}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.625}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.603}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.665}, {"date": "2002-10-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.461}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.499}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.482}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.532}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.458}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.443}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.489}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.549}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.527}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.59}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.64}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.622}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.671}, {"date": "2002-10-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.469}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.485}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.466}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.524}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.444}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.427}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.48}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.535}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.51}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.583}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.629}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.609}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.668}, {"date": "2002-10-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.456}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.489}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.466}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.534}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.448}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.427}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.489}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.541}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.513}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.596}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.632}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.608}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.676}, {"date": "2002-11-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.442}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.48}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.445}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.55}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.439}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.406}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.505}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.531}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.489}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.612}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.624}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.588}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.693}, {"date": "2002-11-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.427}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.451}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.41}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.531}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.409}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.37}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.486}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.503}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.456}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.594}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.599}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.556}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.679}, {"date": "2002-11-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.405}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.423}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.376}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.515}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.38}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.336}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.468}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.476}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.423}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.579}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.573}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.524}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.665}, {"date": "2002-11-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.405}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.408}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.358}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.507}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.364}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.316}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.459}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.464}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.405}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.575}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.562}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.509}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.66}, {"date": "2002-12-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.407}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.404}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.357}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.497}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.36}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.316}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.448}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.459}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.405}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.563}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.557}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.506}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.651}, {"date": "2002-12-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.405}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.407}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.363}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.494}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.363}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.322}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.446}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.462}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.411}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.56}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.558}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.51}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.648}, {"date": "2002-12-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.401}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.443}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.411}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.507}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.401}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.371}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.46}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.497}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.459}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.569}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.592}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.557}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.658}, {"date": "2002-12-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.44}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.484}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.457}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.536}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.441}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.417}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.491}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.537}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.506}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.598}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.63}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.602}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.683}, {"date": "2002-12-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.491}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.487}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.453}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.554}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.444}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.412}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.507}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.541}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.502}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.616}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.639}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.603}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.704}, {"date": "2003-01-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.501}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.496}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.463}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.562}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.454}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.423}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.516}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.551}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.512}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.625}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.645}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.61}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.71}, {"date": "2003-01-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.478}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.502}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.463}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.579}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.459}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.422}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.534}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.557}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.512}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.643}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.651}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.612}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.724}, {"date": "2003-01-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.48}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.515}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.478}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.589}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.473}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.437}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.544}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.569}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.525}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.653}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.663}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.624}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.733}, {"date": "2003-01-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.492}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.569}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.539}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.629}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.527}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.499}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.585}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.623}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.588}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.69}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.713}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.683}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.769}, {"date": "2003-02-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.542}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.649}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.623}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.701}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.607}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.582}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.656}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.705}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.673}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.765}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.795}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.769}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.844}, {"date": "2003-02-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.662}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.701}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.668}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.766}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.66}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.63}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.722}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.754}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.716}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.83}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.841}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.809}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.903}, {"date": "2003-02-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.704}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.699}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.656}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.785}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.658}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.617}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.741}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.752}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.7}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.852}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.841}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.797}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.921}, {"date": "2003-02-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.709}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.726}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.679}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.821}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.686}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.641}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.778}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.782}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.725}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.893}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.865}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.819}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.952}, {"date": "2003-03-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.753}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.752}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.701}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.854}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.712}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.663}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.812}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.809}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.748}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.927}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.889}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.839}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.982}, {"date": "2003-03-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.771}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.768}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.712}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.881}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.728}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.673}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.838}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.826}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.758}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.956}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.906}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.852}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.009}, {"date": "2003-03-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.752}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.732}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.665}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.864}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.69}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.626}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.82}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.791}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.712}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.943}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.874}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.808}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.997}, {"date": "2003-03-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.662}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.692}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.618}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.841}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.649}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.577}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.795}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.753}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.666}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.92}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.84}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.766}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.977}, {"date": "2003-03-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.602}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.673}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.597}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.824}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.63}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.557}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.778}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.735}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.645}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.907}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.819}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.743}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.96}, {"date": "2003-04-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.554}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.639}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.561}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.794}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.595}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.521}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.747}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.702}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.611}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.876}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.788}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.71}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.934}, {"date": "2003-04-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.539}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.618}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.544}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.764}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.574}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.504}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.718}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.678}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.593}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.842}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.766}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.691}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.904}, {"date": "2003-04-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.529}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.6}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.526}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.748}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.557}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.486}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.701}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.659}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.574}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.824}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.748}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.673}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.888}, {"date": "2003-04-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.508}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.556}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.482}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.706}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.513}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.441}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.659}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.615}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.528}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.782}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.706}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.629}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.848}, {"date": "2003-05-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.484}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.534}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.467}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.668}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.491}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.427}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.62}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.592}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.514}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.743}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.682}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.612}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.813}, {"date": "2003-05-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.444}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.539}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.482}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.653}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.498}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.444}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.607}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.592}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.524}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.725}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.682}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.621}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.797}, {"date": "2003-05-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.443}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.528}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.477}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.63}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.487}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.439}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.584}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.58}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.517}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.699}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.672}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.618}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.772}, {"date": "2003-05-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.434}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.514}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.466}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.61}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.473}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.428}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.564}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.566}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.507}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.68}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.657}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.605}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.754}, {"date": "2003-06-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.423}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.53}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.492}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.605}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.49}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.456}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.56}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.58}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.534}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.671}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.668}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.626}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.745}, {"date": "2003-06-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.422}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.558}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.517}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.642}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.518}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.48}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.598}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.611}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.561}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.71}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.696}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.654}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.776}, {"date": "2003-06-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.432}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.537}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.489}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.636}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.496}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.451}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.591}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.591}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.532}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.707}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.678}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.63}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.769}, {"date": "2003-06-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.423}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.528}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.481}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.625}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.487}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.443}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.58}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.584}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.525}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.697}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.67}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.622}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.761}, {"date": "2003-06-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.42}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.53}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.485}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.622}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.489}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.448}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.577}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.585}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.529}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.693}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.672}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.626}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.757}, {"date": "2003-07-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.428}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.563}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.528}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.635}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.521}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.489}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.589}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.617}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.573}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.704}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.705}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.67}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.772}, {"date": "2003-07-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.435}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.566}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.534}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.63}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.524}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.496}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.584}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.621}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.582}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.697}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.71}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.677}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.771}, {"date": "2003-07-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.439}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.558}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.527}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.621}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.516}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.488}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.574}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.613}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.574}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.688}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.702}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.67}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.762}, {"date": "2003-07-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.438}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.576}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.553}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.625}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.536}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.516}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.579}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.628}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.596}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.691}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.716}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.69}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.765}, {"date": "2003-08-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.453}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.611}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.587}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.659}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.571}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.55}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.614}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.663}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.632}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.723}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.749}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.725}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.796}, {"date": "2003-08-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.492}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.668}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.631}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.742}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.627}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.594}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.699}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.721}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.676}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.81}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.805}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.769}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.873}, {"date": "2003-08-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.498}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.787}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.73}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.902}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.747}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.693}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.859}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.842}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.775}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.971}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.925}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.867}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.032}, {"date": "2003-08-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.503}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.786}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.724}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.913}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.746}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.688}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.868}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.841}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.767}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.984}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.924}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.858}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.047}, {"date": "2003-09-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.501}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.758}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.69}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.896}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.717}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.653}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.851}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.814}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.733}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.969}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.899}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.828}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.032}, {"date": "2003-09-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.488}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.739}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.674}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.869}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.697}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.636}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.824}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.795}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.721}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.938}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.88}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.814}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.004}, {"date": "2003-09-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.471}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.686}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.618}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.823}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.643}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.58}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.776}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.742}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.664}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.893}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.834}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.761}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.968}, {"date": "2003-09-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.444}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.635}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.564}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.78}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.591}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.524}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.732}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.693}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.613}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.849}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.787}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.713}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.926}, {"date": "2003-09-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.429}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.617}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.551}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.751}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.573}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.511}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.704}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.674}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.599}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.82}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.767}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.697}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.899}, {"date": "2003-10-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.445}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.611}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.553}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.727}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.568}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.515}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.68}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.664}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.597}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.793}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.758}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.696}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.874}, {"date": "2003-10-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.483}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.612}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.564}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.71}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.571}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.527}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.662}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.664}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.607}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.774}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.757}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.703}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.857}, {"date": "2003-10-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.502}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.584}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.536}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.682}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.542}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.499}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.634}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.637}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.579}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.747}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.73}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.676}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.832}, {"date": "2003-10-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.495}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.577}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.532}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.668}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.535}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.494}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.62}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.63}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.577}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.733}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.723}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.672}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.818}, {"date": "2003-11-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.481}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.547}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.502}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.638}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.504}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.464}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.59}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.6}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.547}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.704}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.694}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.643}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.789}, {"date": "2003-11-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.476}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.54}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.498}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.625}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.497}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.459}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.577}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.593}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.544}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.69}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.689}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.642}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.776}, {"date": "2003-11-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.481}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.554}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.517}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.631}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.512}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.478}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.584}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.608}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.563}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.695}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.701}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.66}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.778}, {"date": "2003-11-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.491}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.533}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.493}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.615}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.49}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.454}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.567}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.588}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.54}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.68}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.683}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.639}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.764}, {"date": "2003-12-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.476}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.519}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.481}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.597}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.476}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.441}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.549}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.574}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.528}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.662}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.67}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.628}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.747}, {"date": "2003-12-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.481}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.509}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.473}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.58}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.465}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.433}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.532}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.563}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.521}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.645}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.66}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.622}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.732}, {"date": "2003-12-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.486}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.528}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.499}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.586}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.485}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.459}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.538}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.583}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.549}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.649}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.678}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.647}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.737}, {"date": "2003-12-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.504}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.521}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.495}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.575}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.478}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.454}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.527}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.577}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.544}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.639}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.674}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.645}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.727}, {"date": "2003-12-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.502}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.552}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.532}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.595}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.51}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.492}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.547}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.605}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.578}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.659}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.701}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.677}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.744}, {"date": "2004-01-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.503}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.603}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.585}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.641}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.56}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.544}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.594}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.657}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.634}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.703}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.752}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.733}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.787}, {"date": "2004-01-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.551}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.637}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.619}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.674}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.595}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.579}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.628}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.69}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.667}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.735}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.785}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.767}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.819}, {"date": "2004-01-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.559}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.664}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.644}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.707}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.622}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.604}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.661}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.717}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.691}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.766}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.813}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.793}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.85}, {"date": "2004-01-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.591}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.66}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.632}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.717}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.616}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.591}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.67}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.713}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.679}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.779}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.811}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.783}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.862}, {"date": "2004-02-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.581}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.681}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.649}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.746}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.638}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.609}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.7}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.734}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.695}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.809}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.828}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.797}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.887}, {"date": "2004-02-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.568}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.69}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.656}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.758}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.648}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.617}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.714}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.744}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.703}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.824}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.836}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.804}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.895}, {"date": "2004-02-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.584}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.73}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.68}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.83}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.688}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.641}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.786}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.786}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.726}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.901}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.873}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.827}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.96}, {"date": "2004-02-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.595}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.758}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.703}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.871}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.717}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.664}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.826}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.816}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.749}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.945}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.902}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.848}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.001}, {"date": "2004-03-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.619}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.78}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.729}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.884}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.738}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.69}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.838}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.838}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.777}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.957}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.925}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.875}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.018}, {"date": "2004-03-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.628}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.767}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.714}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.874}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.724}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.675}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.828}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.826}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.762}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.949}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.912}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.86}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.008}, {"date": "2004-03-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.617}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.785}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.737}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.883}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.743}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.698}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.838}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.843}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.784}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.956}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.93}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.884}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.017}, {"date": "2004-03-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.641}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.8}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.755}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.892}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.758}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.716}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.847}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.857}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.802}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.963}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.944}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.901}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.024}, {"date": "2004-03-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.642}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.822}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.776}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.916}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.78}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.737}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.871}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.879}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.823}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.989}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.963}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.919}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.047}, {"date": "2004-04-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.648}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.827}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.778}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.927}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.786}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.74}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.883}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.885}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.826}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.001}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.969}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.921}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.057}, {"date": "2004-04-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.679}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.853}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.81}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.942}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.813}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.773}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.899}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.909}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.856}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.011}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.991}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.949}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.069}, {"date": "2004-04-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.724}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.853}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.812}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.935}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.812}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.774}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.891}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.908}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.859}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.005}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.992}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.952}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.066}, {"date": "2004-04-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.718}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.884}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.848}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.957}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.844}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.811}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.913}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.937}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.892}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.024}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.021}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.985}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.089}, {"date": "2004-05-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.717}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.979}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.939}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.06}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.941}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.904}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.017}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.031}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.981}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.128}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.111}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.07}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.188}, {"date": "2004-05-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.745}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.055}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.015}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.138}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.017}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.979}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.095}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.106}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.056}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.201}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.189}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.147}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.267}, {"date": "2004-05-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.763}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.104}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.063}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.189}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.064}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.026}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.145}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.155}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.104}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.253}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.242}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.199}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.322}, {"date": "2004-05-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.761}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.092}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.041}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.195}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.051}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.004}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.15}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.145}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.084}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.262}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.234}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.181}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.332}, {"date": "2004-05-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.746}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.075}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.021}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.186}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.034}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.983}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.14}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.128}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.064}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.253}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.219}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.163}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.324}, {"date": "2004-06-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.734}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.029}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.966}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.157}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.985}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.926}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.11}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.086}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.014}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.227}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.178}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.114}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.298}, {"date": "2004-06-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.711}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.981}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.914}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.12}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.937}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.873}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.072}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.039}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.961}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.189}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.134}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.064}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.265}, {"date": "2004-06-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.7}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.965}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.9}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.096}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.921}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.859}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.049}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.021}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.947}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.163}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.118}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.051}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.24}, {"date": "2004-06-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.7}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.939}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.875}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.068}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.895}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.835}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.02}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.995}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.922}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.136}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.091}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.025}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.215}, {"date": "2004-07-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.716}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.959}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.907}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.065}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.917}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.869}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.017}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.013}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.951}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.134}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.108}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.052}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.213}, {"date": "2004-07-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.74}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.971}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.926}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.062}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.928}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.888}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.014}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.025}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.971}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.13}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.119}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.07}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.208}, {"date": "2004-07-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.744}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.948}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.901}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.043}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.905}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.861}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.996}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.003}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.948}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.109}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.097}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.048}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.189}, {"date": "2004-07-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.754}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.93}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.885}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.022}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.888}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.846}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.975}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.985}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.931}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.089}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.078}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.029}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.168}, {"date": "2004-08-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.78}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.92}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.878}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.005}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.877}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.839}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.957}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.973}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.923}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.072}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.068}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.022}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.154}, {"date": "2004-08-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.814}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.917}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.881}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.992}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.875}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.842}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.945}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.97}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.925}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.056}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.064}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.023}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.139}, {"date": "2004-08-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.825}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.926}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.892}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.995}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.884}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.854}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.947}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.978}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.936}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.059}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.071}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.033}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.142}, {"date": "2004-08-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.874}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.909}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.866}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.997}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.866}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.827}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.949}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.964}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.911}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.067}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.056}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.01}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.142}, {"date": "2004-08-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.871}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.893}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.854}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.973}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.85}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.815}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.924}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.949}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.901}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.043}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.043}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.121}, {"date": "2004-09-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.869}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.889}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.852}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.963}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.846}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.813}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.915}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.945}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.9}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.03}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.037}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.998}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.11}, {"date": "2004-09-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.874}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.908}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.878}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.969}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.866}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.839}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.922}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.962}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.923}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.036}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.054}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.023}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.112}, {"date": "2004-09-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.912}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.959}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.934}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.009}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.917}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.895}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.963}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.012}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.979}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.076}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.103}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.077}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.151}, {"date": "2004-09-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.012}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.98}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.941}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.058}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.938}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.902}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.012}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.035}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.987}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.127}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.125}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.087}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.195}, {"date": "2004-10-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.053}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.035}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.988}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.13}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.993}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.949}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.086}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.091}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.035}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.2}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.179}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.134}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.263}, {"date": "2004-10-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.092}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.077}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.024}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.187}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.035}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.984}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.142}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.133}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.07}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.256}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.222}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.17}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.32}, {"date": "2004-10-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.18}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.074}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.02}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.185}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.032}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.98}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.14}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.133}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.068}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.258}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.221}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.169}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.317}, {"date": "2004-10-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.212}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.076}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.026}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.179}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.034}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.986}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.133}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.134}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.074}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.252}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.223}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.173}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.314}, {"date": "2004-11-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.206}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.045}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.992}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.154}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.001}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.951}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.107}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.105}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.042}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.226}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.196}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.144}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.292}, {"date": "2004-11-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.163}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.014}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.96}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.124}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.969}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.918}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.077}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.075}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.013}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.197}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.168}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.114}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.267}, {"date": "2004-11-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.132}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.992}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.943}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.094}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.948}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.901}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.046}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.051}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.993}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.165}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.146}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.097}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.238}, {"date": "2004-11-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.116}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.989}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.945}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.078}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.945}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.903}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.031}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.047}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.994}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.149}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.142}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.099}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.221}, {"date": "2004-11-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.116}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.956}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.91}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.05}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.911}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.868}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.002}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.014}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.96}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.12}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.111}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.065}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.196}, {"date": "2004-12-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.069}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.893}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.842}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.998}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.847}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.799}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.948}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.953}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.893}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.069}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.053}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.002}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.148}, {"date": "2004-12-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.997}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.861}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.82}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.944}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.815}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.777}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.894}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.921}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.873}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.014}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.02}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.978}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.099}, {"date": "2004-12-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.984}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.838}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.798}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.919}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.791}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.754}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.869}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.898}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.851}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.988}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.998}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.958}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.073}, {"date": "2004-12-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.987}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.824}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.788}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.898}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.778}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.745}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.848}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.882}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.839}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.965}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.985}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.948}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.055}, {"date": "2005-01-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.957}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.837}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.813}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.887}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.793}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.771}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.838}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.893}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.862}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.952}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.993}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.968}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.041}, {"date": "2005-01-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.934}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.863}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.843}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.902}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.819}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.802}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.854}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.918}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.893}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.965}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.017}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.997}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.056}, {"date": "2005-01-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.952}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.896}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.88}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.929}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.853}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.839}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.882}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.95}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.929}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.991}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.046}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.03}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.078}, {"date": "2005-01-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.959}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.953}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.936}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.988}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.911}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.896}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.941}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.006}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.982}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.052}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.103}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.087}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.133}, {"date": "2005-01-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.992}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.952}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.93}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.996}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.909}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.89}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.949}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.006}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.978}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.06}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.102}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.082}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.14}, {"date": "2005-02-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.983}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.941}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.914}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.996}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.898}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.873}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.949}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.995}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.96}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.062}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.091}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.065}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.139}, {"date": "2005-02-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.986}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.948}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.919}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.007}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.905}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.878}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.961}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.004}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.966}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.079}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.096}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.069}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.146}, {"date": "2005-02-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.02}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.969}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.943}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.023}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.928}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.904}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.978}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.025}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.989}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.094}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.113}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.088}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.16}, {"date": "2005-02-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.118}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.04}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.018}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.086}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.999}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.979}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.041}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.094}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.063}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.153}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.182}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.162}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.221}, {"date": "2005-03-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.168}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.098}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.078}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.138}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.056}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.039}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.094}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.151}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.123}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.206}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.241}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.224}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.273}, {"date": "2005-03-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.194}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.149}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.134}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.181}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.109}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.095}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.138}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.2}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.177}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.245}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.292}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.281}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.313}, {"date": "2005-03-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.244}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.194}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.177}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.229}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.153}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.137}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.186}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.25}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.225}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.297}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.336}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.322}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.362}, {"date": "2005-03-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.249}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.258}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.236}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.302}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.217}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.196}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.26}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.313}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.284}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.37}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.4}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.384}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.43}, {"date": "2005-04-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.303}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.321}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.29}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.384}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.28}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.251}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.34}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.377}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.337}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.455}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.464}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.436}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.515}, {"date": "2005-04-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.316}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.28}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.239}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.364}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.237}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.198}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.319}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.339}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.288}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.438}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.427}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.388}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.498}, {"date": "2005-04-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.259}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.279}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.237}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.364}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.236}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.197}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.319}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.337}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.285}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.437}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.426}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.386}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.499}, {"date": "2005-04-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.289}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.277}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.231}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.371}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.235}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.191}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.326}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.333}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.278}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.44}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.425}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.381}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.506}, {"date": "2005-05-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.262}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.231}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.179}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.336}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.186}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.137}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.29}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.291}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.23}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.407}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.385}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.336}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.476}, {"date": "2005-05-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.227}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.206}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.156}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.308}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.163}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.116}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.262}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.262}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.202}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.377}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.357}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.306}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.45}, {"date": "2005-05-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.189}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.169}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.118}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.274}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.125}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.077}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.226}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.226}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.165}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.344}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.322}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.27}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.418}, {"date": "2005-05-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.156}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.141}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.092}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.24}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.097}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.051}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.192}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.198}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.14}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.311}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.295}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.245}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.388}, {"date": "2005-05-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.16}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.159}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.118}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.242}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.116}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.078}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.195}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.214}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.165}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.308}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.309}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.267}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.388}, {"date": "2005-06-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.234}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.173}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.139}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.243}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.13}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.099}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.196}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.227}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.186}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.308}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.323}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.288}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.389}, {"date": "2005-06-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.276}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.204}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.167}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.278}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.161}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.128}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.232}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.257}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.213}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.342}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.353}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.314}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.425}, {"date": "2005-06-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.313}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.257}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.224}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.323}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.215}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.186}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.278}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.307}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.266}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.386}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.402}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.369}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.465}, {"date": "2005-06-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.336}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.268}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.228}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.35}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.226}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.189}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.304}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.321}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.273}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.413}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.414}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.374}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.49}, {"date": "2005-07-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.348}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.369}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.331}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.448}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.328}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.292}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.402}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.419}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.373}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.51}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.517}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.476}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.593}, {"date": "2005-07-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.408}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.36}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.312}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.458}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.317}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.272}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.411}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.41}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.354}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.519}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.511}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.46}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.606}, {"date": "2005-07-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.392}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.333}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.276}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.45}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.289}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.235}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.403}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.388}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.323}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.516}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.488}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.429}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.598}, {"date": "2005-07-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.342}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.335}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.279}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.449}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.291}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.239}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.402}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.389}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.324}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.514}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.49}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.433}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.597}, {"date": "2005-08-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.348}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.41}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.363}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.507}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.368}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.323}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.461}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.461}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.404}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.571}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.56}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.512}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.65}, {"date": "2005-08-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.407}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.592}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.56}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.659}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.55}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.519}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.613}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.643}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.603}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.718}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.742}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.711}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.8}, {"date": "2005-08-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.567}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.654}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.622}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.719}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.612}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.583}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.674}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.704}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.666}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.778}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.802}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.77}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.862}, {"date": "2005-08-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.588}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.653}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.621}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.718}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.61}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.581}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.672}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.705}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.665}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.781}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.801}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.768}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.863}, {"date": "2005-08-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.59}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.117}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.083}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.186}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.069}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.037}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.137}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.172}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.138}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.236}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.285}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.248}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.353}, {"date": "2005-09-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.898}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.002}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.956}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.096}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.955}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.912}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.045}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.054}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.003}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.151}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.171}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.121}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.265}, {"date": "2005-09-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.847}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.835}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.776}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.956}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.786}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.73}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.904}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.894}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.831}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.018}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.009}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.947}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.123}, {"date": "2005-09-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.732}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.851}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.812}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.929}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.803}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.767}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.878}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.909}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.865}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.995}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.018}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.978}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.092}, {"date": "2005-09-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.798}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.975}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.968}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.99}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.928}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.922}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.941}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.033}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.023}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.052}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.139}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.135}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.147}, {"date": "2005-10-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.144}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.896}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.875}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.939}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.848}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.828}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.889}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.959}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.936}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.004}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.064}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.046}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.097}, {"date": "2005-10-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.15}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.775}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.741}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.843}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.725}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.693}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.794}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.838}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.801}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.909}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.947}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.92}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.998}, {"date": "2005-10-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.148}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.652}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.612}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.732}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.603}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.564}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.683}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.716}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.672}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.8}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.822}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.787}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.886}, {"date": "2005-10-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.157}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.528}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.485}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.616}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.48}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.438}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.567}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.59}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.542}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.683}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.698}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.66}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.767}, {"date": "2005-10-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.876}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.424}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.382}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.51}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.376}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.336}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.461}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.485}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.436}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.58}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.59}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.552}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.66}, {"date": "2005-11-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.698}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.342}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.302}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.423}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.296}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.258}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.375}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.402}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.355}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.493}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.505}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.469}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.571}, {"date": "2005-11-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.602}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.247}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.211}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.32}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.201}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.168}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.27}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.306}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.263}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.391}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.408}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.373}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.473}, {"date": "2005-11-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.513}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.2}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.166}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.267}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.154}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.124}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.218}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.258}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.217}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.338}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.358}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.325}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.418}, {"date": "2005-11-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.479}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.191}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.168}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.238}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.147}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.127}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.19}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.245}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.214}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.306}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.345}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.322}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.387}, {"date": "2005-12-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.425}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.228}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.217}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.252}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.185}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.175}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.204}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.281}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.265}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.314}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.381}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.369}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.404}, {"date": "2005-12-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.436}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.255}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.247}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.272}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.211}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.205}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.224}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.308}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.296}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.33}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.409}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.4}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.426}, {"date": "2005-12-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.462}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.241}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.23}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.263}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.197}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.188}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.216}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.292}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.278}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.32}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.397}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.386}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.417}, {"date": "2005-12-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.448}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.281}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.277}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.29}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.238}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.236}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.242}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.329}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.321}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.344}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.437}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.432}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.446}, {"date": "2006-01-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.442}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.371}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.363}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.388}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.327}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.321}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.341}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.421}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.41}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.442}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.531}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.524}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.542}, {"date": "2006-01-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.485}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.366}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.342}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.416}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.32}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.297}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.368}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.421}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.392}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.476}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.531}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.51}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.571}, {"date": "2006-01-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.449}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.382}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.359}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.431}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.336}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.314}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.382}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.436}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.409}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.489}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.547}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.526}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.586}, {"date": "2006-01-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.472}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.402}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.375}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.458}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.357}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.332}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.409}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.456}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.422}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.521}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.564}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.538}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.612}, {"date": "2006-01-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.489}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.388}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.354}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.458}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.342}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.31}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.41}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.445}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.404}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.524}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.549}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.517}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.609}, {"date": "2006-02-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.499}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.331}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.29}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.413}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.284}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.246}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.364}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.391}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.344}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.482}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.494}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.455}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.566}, {"date": "2006-02-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.476}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.286}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.249}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.361}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.24}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.205}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.312}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.345}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.301}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.43}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.445}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.409}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.512}, {"date": "2006-02-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.455}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.298}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.277}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.34}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.254}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.236}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.293}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.351}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.323}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.406}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.45}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.429}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.488}, {"date": "2006-02-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.471}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.373}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.36}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.398}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.331}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.321}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.353}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.425}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.407}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.459}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.519}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.509}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.539}, {"date": "2006-03-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.545}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.408}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.395}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.435}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.366}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.355}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.389}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.46}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.44}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.5}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.556}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.545}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.577}, {"date": "2006-03-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.543}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.548}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.537}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.569}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.504}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.495}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.523}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.602}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.586}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.632}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.701}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.694}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.712}, {"date": "2006-03-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.581}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.542}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.522}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.583}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.498}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.479}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.537}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.597}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.57}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.649}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.695}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.679}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.726}, {"date": "2006-03-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.565}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.631}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.609}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.676}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.588}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.567}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.63}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.684}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.656}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.738}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.785}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.767}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.817}, {"date": "2006-04-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.617}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.727}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.706}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.77}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.683}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.663}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.724}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.781}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.756}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.83}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.883}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.868}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.911}, {"date": "2006-04-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.654}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.828}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.807}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.87}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.783}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.764}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.824}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.879}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.853}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.93}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.986}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.971}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.014}, {"date": "2006-04-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.765}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.96}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.924}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.033}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.914}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.881}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.984}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.014}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.972}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.095}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.121}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.085}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.188}, {"date": "2006-04-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.876}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.966}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.91}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.08}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.919}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.866}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.03}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.026}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.961}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.151}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.129}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.073}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.233}, {"date": "2006-05-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.896}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.955}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.876}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.116}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.909}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.834}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.067}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.017}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.926}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.193}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.117}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.036}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.266}, {"date": "2006-05-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.897}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.992}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.911}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.156}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.947}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.871}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.107}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.049}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.956}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.229}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.149}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.065}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.304}, {"date": "2006-05-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.92}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.938}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.842}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.132}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.892}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.801}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.082}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.998}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.889}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.208}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.098}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.998}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.285}, {"date": "2006-05-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.888}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.913}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.824}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.092}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.867}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.784}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.042}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.971}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.871}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.166}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.071}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.977}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.245}, {"date": "2006-05-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.882}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.937}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.852}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.112}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.892}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.811}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.062}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.995}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.898}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.183}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.095}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.005}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.262}, {"date": "2006-06-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.89}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.951}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.874}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.109}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.906}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.833}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.06}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.009}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.921}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.179}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.108}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.026}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.262}, {"date": "2006-06-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.918}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.917}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.834}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.084}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.871}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.793}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.034}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.977}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.884}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.156}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.077}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.989}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.241}, {"date": "2006-06-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.915}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.914}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.837}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.071}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.869}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.796}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.02}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.972}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.885}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.141}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.072}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.987}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.231}, {"date": "2006-06-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.867}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.979}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.914}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.111}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.934}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.873}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.063}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.034}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.961}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.177}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.133}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.063}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.264}, {"date": "2006-07-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.898}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.017}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.949}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.154}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.973}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.91}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.106}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.072}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.997}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.218}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.169}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.095}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.307}, {"date": "2006-07-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.918}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.033}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.968}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.165}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.989}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.928}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.116}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.089}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.016}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.231}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.186}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.116}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.318}, {"date": "2006-07-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.926}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.048}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.992}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.162}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.003}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.95}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.112}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.106}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.043}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.228}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.205}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.145}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.317}, {"date": "2006-07-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.946}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.05}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.997}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.157}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.004}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.955}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.107}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.106}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.046}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.223}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.211}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.155}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.316}, {"date": "2006-07-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.98}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.083}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.045}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.16}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.038}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.004}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.109}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.137}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.091}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.227}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.242}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.2}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.321}, {"date": "2006-08-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.055}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.047}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.142}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.958}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.089}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.104}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.047}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.215}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.21}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.157}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.31}, {"date": "2006-08-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.065}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.971}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.919}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.076}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.924}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.877}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.021}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.031}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.968}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.152}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.136}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.078}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.244}, {"date": "2006-08-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.033}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.893}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.843}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.996}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.845}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.8}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.94}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.953}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.891}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.073}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.064}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.008}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.168}, {"date": "2006-08-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.027}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.777}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.725}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.884}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.727}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.68}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.828}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.842}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.777}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.966}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.952}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.896}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.056}, {"date": "2006-09-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.967}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.67}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.611}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.79}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.618}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.563}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.734}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.739}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.669}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.873}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.847}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.788}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.957}, {"date": "2006-09-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.857}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.549}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.489}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.672}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.497}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.441}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.616}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.617}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.545}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.756}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.729}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.668}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.843}, {"date": "2006-09-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.713}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.429}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.368}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.554}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.378}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.32}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.499}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.498}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.425}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.64}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.605}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.542}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.722}, {"date": "2006-09-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.595}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.36}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.309}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.465}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.31}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.263}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.409}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.426}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.362}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.55}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.531}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.478}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.631}, {"date": "2006-10-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.546}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.31}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.266}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.399}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.261}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.222}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.345}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.373}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.316}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.483}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.478}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.433}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.563}, {"date": "2006-10-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.506}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.274}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.239}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.346}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.226}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.195}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.291}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.338}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.291}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.428}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.44}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.403}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.509}, {"date": "2006-10-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.503}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.255}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.229}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.307}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.208}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.186}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.254}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.315}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.278}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.386}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.418}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.391}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.467}, {"date": "2006-10-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.524}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.264}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.247}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.299}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.218}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.204}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.247}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.322}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.294}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.376}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.424}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.406}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.459}, {"date": "2006-10-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.517}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.246}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.232}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.276}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.2}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.189}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.222}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.306}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.281}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.354}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.407}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.39}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.438}, {"date": "2006-11-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.506}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.278}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.259}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.318}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.232}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.216}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.266}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.338}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.308}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.397}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.437}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.417}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.474}, {"date": "2006-11-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.552}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.285}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.261}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.336}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.239}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.218}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.283}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.346}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.31}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.416}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.445}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.418}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.494}, {"date": "2006-11-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.553}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.292}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.264}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.35}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.246}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.221}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.298}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.352}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.314}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.427}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.453}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.423}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.508}, {"date": "2006-11-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.567}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.342}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.32}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.388}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.297}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.277}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.338}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.399}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.368}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.46}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.502}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.479}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.545}, {"date": "2006-12-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.618}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.34}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.311}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.398}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.293}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.267}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.348}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.399}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.362}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.47}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.502}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.474}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.555}, {"date": "2006-12-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.621}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.366}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.333}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.433}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.32}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.29}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.382}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.424}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.382}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.505}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.527}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.494}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.589}, {"date": "2006-12-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.606}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.387}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.346}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.471}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.341}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.303}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.421}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.446}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.396}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.541}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.548}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.508}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.624}, {"date": "2006-12-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.596}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.382}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.34}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.465}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.334}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.296}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.414}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.442}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.392}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.54}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.547}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.505}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.624}, {"date": "2007-01-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.58}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.354}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.304}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.458}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.306}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.258}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.406}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.418}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.357}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.534}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.523}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.473}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.614}, {"date": "2007-01-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.537}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.28}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.22}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.401}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.229}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.173}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.348}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.347}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.279}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.48}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.453}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.394}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.561}, {"date": "2007-01-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.463}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.216}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.155}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.341}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.165}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.107}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.287}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.285}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.213}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.424}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.391}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.329}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.507}, {"date": "2007-01-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.43}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.213}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.164}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.313}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.165}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.119}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.261}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.277}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.217}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.392}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.381}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.331}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.473}, {"date": "2007-01-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.413}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.237}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.194}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.326}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.191}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.151}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.275}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.3}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.244}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.407}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.396}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.35}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.481}, {"date": "2007-02-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.435}, {"date": "2007-02-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.463}, {"date": "2007-02-05", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.379}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.287}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.24}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.382}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.241}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.198}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.332}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.35}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.292}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.463}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.442}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.395}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.531}, {"date": "2007-02-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.476}, {"date": "2007-02-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.502}, {"date": "2007-02-12", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.42}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.341}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.292}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.439}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.296}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.251}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.39}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.401}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.339}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.52}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.495}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.446}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.585}, {"date": "2007-02-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.491}, {"date": "2007-02-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.515}, {"date": "2007-02-19", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.437}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.428}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.379}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.526}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.383}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.338}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.477}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.488}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.426}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.608}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.581}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.533}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.67}, {"date": "2007-02-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.551}, {"date": "2007-02-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.571}, {"date": "2007-02-26", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.505}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.551}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.504}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.647}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.505}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.46}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.599}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.609}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.549}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.726}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.709}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.667}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.786}, {"date": "2007-03-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.626}, {"date": "2007-03-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.64}, {"date": "2007-03-05", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.584}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.605}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.542}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.734}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.559}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.499}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.686}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.667}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.589}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.817}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.763}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.704}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.873}, {"date": "2007-03-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.685}, {"date": "2007-03-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.695}, {"date": "2007-03-12", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.657}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.623}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.554}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.765}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.577}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.511}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.716}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.688}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.605}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.849}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.781}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.714}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.905}, {"date": "2007-03-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.681}, {"date": "2007-03-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.694}, {"date": "2007-03-19", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.644}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.655}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.582}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.804}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.61}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.54}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.755}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.716}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.628}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.887}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.812}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.74}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.945}, {"date": "2007-03-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.676}, {"date": "2007-03-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.69}, {"date": "2007-03-26", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.634}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.753}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.678}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.904}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.707}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.636}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.855}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.814}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.725}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.986}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.912}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.838}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.048}, {"date": "2007-04-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.79}, {"date": "2007-04-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.803}, {"date": "2007-04-02", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.751}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.848}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.79}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.968}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.802}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.746}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.92}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.909}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.838}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.047}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.007}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.953}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.108}, {"date": "2007-04-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.84}, {"date": "2007-04-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.853}, {"date": "2007-04-09", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.799}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.922}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.866}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.036}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.876}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.822}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.988}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.983}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.916}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.115}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.083}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.034}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.174}, {"date": "2007-04-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.877}, {"date": "2007-04-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.887}, {"date": "2007-04-16", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.845}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.917}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.857}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.038}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.869}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.811}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.988}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.98}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.908}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.12}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.082}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.028}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.181}, {"date": "2007-04-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.851}, {"date": "2007-04-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.863}, {"date": "2007-04-23", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.811}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.017}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.966}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.121}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.971}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.922}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.073}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.079}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.016}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.199}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.176}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.129}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.262}, {"date": "2007-04-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.811}, {"date": "2007-04-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.831}, {"date": "2007-04-30", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.746}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.097}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.043}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.208}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.054}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.002}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.162}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.155}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.089}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.284}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.247}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.194}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.345}, {"date": "2007-05-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.792}, {"date": "2007-05-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.816}, {"date": "2007-05-07", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.716}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.143}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.106}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.22}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.103}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.069}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.173}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.197}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.146}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.295}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.284}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.244}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.359}, {"date": "2007-05-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.773}, {"date": "2007-05-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.797}, {"date": "2007-05-14", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.695}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.258}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.247}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.28}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.218}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.211}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.233}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.308}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.286}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.352}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.398}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.385}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.422}, {"date": "2007-05-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.803}, {"date": "2007-05-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.822}, {"date": "2007-05-21", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.74}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.25}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.233}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.285}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.209}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.195}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.238}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.302}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.274}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.354}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.395}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.377}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.429}, {"date": "2007-05-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.817}, {"date": "2007-05-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.836}, {"date": "2007-05-28", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.752}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.2}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.172}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.257}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.157}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.132}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.208}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.255}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.218}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.328}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.351}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.323}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.405}, {"date": "2007-06-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.799}, {"date": "2007-06-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.819}, {"date": "2007-06-04", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.732}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.122}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.083}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.202}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.076}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.04}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.151}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.185}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.138}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.277}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.281}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.241}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.355}, {"date": "2007-06-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.792}, {"date": "2007-06-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.814}, {"date": "2007-06-11", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.716}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.057}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.018}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.135}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.009}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.974}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.083}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.116}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.068}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.209}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.222}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.182}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.297}, {"date": "2007-06-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.805}, {"date": "2007-06-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.822}, {"date": "2007-06-18", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.748}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.029}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.995}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.099}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.982}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.951}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.046}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.089}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.046}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.173}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.196}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.16}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.262}, {"date": "2007-06-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.835}, {"date": "2007-06-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.847}, {"date": "2007-06-25", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.786}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.005}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.976}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.066}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.959}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.933}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.012}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.064}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.025}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.141}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.168}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.134}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.233}, {"date": "2007-07-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.829}, {"date": "2007-07-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.842}, {"date": "2007-07-02", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.779}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.026}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.01}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.058}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.981}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.971}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.004}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.077}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.048}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.132}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.182}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.159}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.224}, {"date": "2007-07-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.849}, {"date": "2007-07-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.859}, {"date": "2007-07-09", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.809}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.092}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.084}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.107}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.049}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.046}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.055}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.143}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.125}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.177}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.242}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.229}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.267}, {"date": "2007-07-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.889}, {"date": "2007-07-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.902}, {"date": "2007-07-16", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.834}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.005}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.98}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.056}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.958}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.938}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.001}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.062}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.026}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.131}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.168}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.138}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.225}, {"date": "2007-07-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.889}, {"date": "2007-07-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.903}, {"date": "2007-07-23", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.829}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.926}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.894}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.99}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.876}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.849}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.934}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.987}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.944}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.069}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.099}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.065}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.164}, {"date": "2007-07-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.886}, {"date": "2007-07-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.899}, {"date": "2007-07-30", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.831}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.888}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.861}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.943}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.838}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.816}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.885}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.951}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.912}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.027}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.062}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.031}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.12}, {"date": "2007-08-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.898}, {"date": "2007-08-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.91}, {"date": "2007-08-06", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.846}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.821}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.797}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.869}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.771}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.752}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.813}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.88}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.845}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.948}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.995}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.969}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.044}, {"date": "2007-08-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.847}, {"date": "2007-08-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.861}, {"date": "2007-08-13", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.79}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.832}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.825}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.847}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.785}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.783}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.791}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.886}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.867}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.922}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.997}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.985}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.021}, {"date": "2007-08-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.868}, {"date": "2007-08-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.878}, {"date": "2007-08-20", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.826}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.796}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.799}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.79}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.749}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.756}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.734}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.851}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.843}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.866}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.963}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.96}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.968}, {"date": "2007-08-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.863}, {"date": "2007-08-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.873}, {"date": "2007-08-27", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.821}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.84}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.857}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.804}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.796}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.818}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.749}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.89}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.897}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.876}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.997}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.008}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.975}, {"date": "2007-09-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.893}, {"date": "2007-09-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.901}, {"date": "2007-09-03", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.859}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.862}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.879}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.827}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.818}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.84}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.773}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.912}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.918}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.901}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.018}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.03}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.994}, {"date": "2007-09-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.924}, {"date": "2007-09-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.932}, {"date": "2007-09-10", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.891}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.835}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.836}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.831}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.787}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.792}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.776}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.892}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.882}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.91}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.001}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.003}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.999}, {"date": "2007-09-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.964}, {"date": "2007-09-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.971}, {"date": "2007-09-17", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.934}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.86}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.861}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.858}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.812}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.816}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.804}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.917}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.906}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.938}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.029}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.032}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.023}, {"date": "2007-09-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.032}, {"date": "2007-09-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.038}, {"date": "2007-09-24", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.008}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.838}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.832}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.852}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.788}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.784}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.796}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.903}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.887}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.934}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.013}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.008}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.022}, {"date": "2007-10-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.048}, {"date": "2007-10-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.055}, {"date": "2007-10-01", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.017}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.821}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.809}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.846}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.77}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.761}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.789}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.887}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.863}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.932}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.997}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.987}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.017}, {"date": "2007-10-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.035}, {"date": "2007-10-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.046}, {"date": "2007-10-08", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.985}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.813}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.793}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.854}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.762}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.746}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.796}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.879}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.846}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.944}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.99}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.971}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.025}, {"date": "2007-10-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.039}, {"date": "2007-10-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.053}, {"date": "2007-10-15", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.976}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.873}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.853}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.914}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.823}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.806}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.859}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.937}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.904}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.001}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.046}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.029}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.077}, {"date": "2007-10-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.094}, {"date": "2007-10-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.11}, {"date": "2007-10-22", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.023}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.921}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.905}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.954}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.872}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.859}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.9}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.983}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.955}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.038}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.092}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.078}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.116}, {"date": "2007-10-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.157}, {"date": "2007-10-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.171}, {"date": "2007-10-29", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.095}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.06}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.051}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.077}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.013}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.007}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.025}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.117}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.097}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.154}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.224}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.219}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.234}, {"date": "2007-11-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.303}, {"date": "2007-11-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.314}, {"date": "2007-11-05", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.257}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.158}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.146}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.184}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.111}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.101}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.13}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.218}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.195}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.265}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.325}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.314}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.345}, {"date": "2007-11-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.425}, {"date": "2007-11-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.438}, {"date": "2007-11-12", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.368}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.148}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.123}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.199}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.099}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.077}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.144}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.208}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.17}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.281}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.32}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.297}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.362}, {"date": "2007-11-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.41}, {"date": "2007-11-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.426}, {"date": "2007-11-19", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.333}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.147}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.118}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.204}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.097}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.072}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.149}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.209}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.168}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.287}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.319}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.292}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.369}, {"date": "2007-11-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.444}, {"date": "2007-11-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.456}, {"date": "2007-11-26", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.382}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.113}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.077}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.184}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.061}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.029}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.128}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.178}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.131}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.267}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.292}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.259}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.354}, {"date": "2007-12-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.416}, {"date": "2007-12-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.433}, {"date": "2007-12-03", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.33}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.053}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.007}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.147}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.957}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.091}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.121}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.065}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.228}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.238}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.194}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.318}, {"date": "2007-12-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.325}, {"date": "2007-12-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.345}, {"date": "2007-12-10", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.219}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.05}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.011}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.131}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.998}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.962}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.075}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.116}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.066}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.212}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.232}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.194}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.303}, {"date": "2007-12-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.309}, {"date": "2007-12-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.325}, {"date": "2007-12-17", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.211}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.032}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.991}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.116}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.98}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.943}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.059}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.099}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.047}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.199}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.214}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.172}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.29}, {"date": "2007-12-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.308}, {"date": "2007-12-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.321}, {"date": "2007-12-24", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.225}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.104}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.076}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.161}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.053}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.028}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.106}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.167}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.129}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.24}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.283}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.257}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.33}, {"date": "2007-12-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.345}, {"date": "2007-12-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.356}, {"date": "2007-12-31", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.272}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.159}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.135}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.208}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.109}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.088}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.154}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.22}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.187}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.285}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.335}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.313}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.375}, {"date": "2008-01-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.376}, {"date": "2008-01-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.387}, {"date": "2008-01-07", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.301}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.119}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.09}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.179}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.068}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.041}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.123}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.185}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.147}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.257}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.3}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.272}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.35}, {"date": "2008-01-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.326}, {"date": "2008-01-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.341}, {"date": "2008-01-14", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.229}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.07}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.041}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.13}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.017}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.991}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.072}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.136}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.097}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.212}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.256}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.227}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.309}, {"date": "2008-01-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.27}, {"date": "2008-01-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.286}, {"date": "2008-01-21", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.169}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.03}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.004}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.083}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.977}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.953}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.026}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.097}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.063}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.162}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.217}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.194}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.261}, {"date": "2008-01-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.259}, {"date": "2008-01-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.272}, {"date": "2008-01-28", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.171}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.03}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.014}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.061}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.978}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.966}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.002}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.094}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.069}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.141}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.212}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.196}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.242}, {"date": "2008-02-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.28}, {"date": "2008-02-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.291}, {"date": "2008-02-04", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.207}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.011}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.995}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.043}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.96}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.947}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.986}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.074}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.049}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.123}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.19}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.173}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.223}, {"date": "2008-02-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.28}, {"date": "2008-02-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.291}, {"date": "2008-02-11", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.203}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.092}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.082}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.111}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.042}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.035}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.056}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.153}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.136}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.188}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.266}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.259}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.28}, {"date": "2008-02-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.396}, {"date": "2008-02-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.405}, {"date": "2008-02-18", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.335}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.18}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.163}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.213}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.13}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.115}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.159}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.243}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.218}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.29}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.354}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.341}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.379}, {"date": "2008-02-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.552}, {"date": "2008-02-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.558}, {"date": "2008-02-25", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.511}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.212}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.185}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.269}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.162}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.137}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.216}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.277}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.239}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.351}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.386}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.362}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.43}, {"date": "2008-03-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.658}, {"date": "2008-03-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.666}, {"date": "2008-03-03", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.597}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.273}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.246}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.329}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.225}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.2}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.277}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.334}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.294}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.412}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.443}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.42}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.487}, {"date": "2008-03-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.819}, {"date": "2008-03-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.825}, {"date": "2008-03-10", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.774}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.332}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.303}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.391}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.284}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.257}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.34}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.398}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.359}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.473}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.5}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.476}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.545}, {"date": "2008-03-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.974}, {"date": "2008-03-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.982}, {"date": "2008-03-17", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.924}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.31}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.273}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.386}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.259}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.224}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.333}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.378}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.33}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.469}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.486}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.454}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.544}, {"date": "2008-03-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.989}, {"date": "2008-03-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.998}, {"date": "2008-03-24", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.932}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.339}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.306}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.407}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.29}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.259}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.355}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.405}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.361}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.491}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.512}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.484}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.563}, {"date": "2008-03-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.964}, {"date": "2008-03-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.976}, {"date": "2008-03-31", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.885}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.381}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.346}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.453}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.332}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.299}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.403}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.444}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.396}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.536}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.55}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.522}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.602}, {"date": "2008-04-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.955}, {"date": "2008-04-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.966}, {"date": "2008-04-07", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.875}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.438}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.397}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.52}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.389}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.35}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.469}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.502}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.45}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.604}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.607}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.574}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.669}, {"date": "2008-04-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.059}, {"date": "2008-04-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.069}, {"date": "2008-04-14", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.987}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.557}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.515}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.645}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.508}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.467}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.595}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.621}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.569}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.722}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.729}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.693}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.795}, {"date": "2008-04-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.143}, {"date": "2008-04-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.153}, {"date": "2008-04-21", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.069}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.653}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.615}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.732}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.603}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.566}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.681}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.716}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.668}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.807}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.829}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.797}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.888}, {"date": "2008-04-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.177}, {"date": "2008-04-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.187}, {"date": "2008-04-28", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.098}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.663}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.62}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.751}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.613}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.571}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.699}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.725}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.673}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.825}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.842}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.804}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.911}, {"date": "2008-05-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.149}, {"date": "2008-05-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.162}, {"date": "2008-05-05", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.049}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.771}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.741}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.833}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.722}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.694}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.781}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.83}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.791}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.904}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.944}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.919}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.992}, {"date": "2008-05-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.331}, {"date": "2008-05-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.339}, {"date": "2008-05-12", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.264}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.84}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.81}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.903}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.791}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.762}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.851}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.897}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.86}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.97}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.017}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.991}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.066}, {"date": "2008-05-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.497}, {"date": "2008-05-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.504}, {"date": "2008-05-19", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.446}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.986}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.96}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.04}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.937}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.913}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.989}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.045}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.011}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.11}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.159}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.136}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.201}, {"date": "2008-05-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.723}, {"date": "2008-05-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.731}, {"date": "2008-05-26", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.659}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.026}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.98}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.118}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.976}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.932}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.066}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.086}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.032}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.191}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.201}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.161}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.276}, {"date": "2008-06-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.707}, {"date": "2008-06-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.716}, {"date": "2008-06-02", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.636}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.09}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.027}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.217}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.039}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.979}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.165}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.152}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.077}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.297}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.267}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.21}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.372}, {"date": "2008-06-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.692}, {"date": "2008-06-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.702}, {"date": "2008-06-09", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.61}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.134}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.056}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.293}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.082}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.007}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.24}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.199}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.105}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.382}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.314}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.242}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.448}, {"date": "2008-06-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.692}, {"date": "2008-06-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.702}, {"date": "2008-06-16", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.606}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.131}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.051}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.295}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.079}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.002}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.241}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.197}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.101}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.384}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.312}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.236}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.453}, {"date": "2008-06-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.648}, {"date": "2008-06-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.659}, {"date": "2008-06-23", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.552}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.146}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.075}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.292}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.095}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.027}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.238}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.209}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.121}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.38}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.326}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.259}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.45}, {"date": "2008-06-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.645}, {"date": "2008-06-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.657}, {"date": "2008-06-30", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.554}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.165}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.099}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.301}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.114}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.051}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.247}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.229}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.148}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.387}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.344}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.283}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.459}, {"date": "2008-07-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.727}, {"date": "2008-07-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.733}, {"date": "2008-07-07", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.676}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.164}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.102}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.289}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.113}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.054}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.235}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.228}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.153}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.374}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.341}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.283}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.449}, {"date": "2008-07-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.764}, {"date": "2008-07-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.771}, {"date": "2008-07-14", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.707}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.118}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.054}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.246}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.064}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.005}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.19}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.186}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.109}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.337}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.303}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.242}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.416}, {"date": "2008-07-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.718}, {"date": "2008-07-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.729}, {"date": "2008-07-21", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.629}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.01}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.948}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.137}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.955}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.896}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.077}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.082}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.005}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.23}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.205}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.145}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.317}, {"date": "2008-07-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.603}, {"date": "2008-07-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.614}, {"date": "2008-07-28", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.512}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.935}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.88}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.048}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.88}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.828}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.988}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.006}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.937}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.141}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.13}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.075}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.231}, {"date": "2008-08-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.502}, {"date": "2008-08-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.515}, {"date": "2008-08-04", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.395}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.864}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.815}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.963}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.809}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.764}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.903}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.932}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.868}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.056}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.055}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.005}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.148}, {"date": "2008-08-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.353}, {"date": "2008-08-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.368}, {"date": "2008-08-11", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.24}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.794}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.754}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.875}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.74}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.706}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.813}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.862}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.805}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.971}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.979}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.935}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.06}, {"date": "2008-08-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.207}, {"date": "2008-08-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.219}, {"date": "2008-08-18", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.102}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.738}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.707}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.799}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.685}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.66}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.736}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.806}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.758}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.898}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.922}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.886}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.989}, {"date": "2008-08-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.145}, {"date": "2008-08-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.158}, {"date": "2008-08-25", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.039}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.733}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.715}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.769}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.68}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.667}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.707}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.802}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.769}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.867}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.918}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.897}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.957}, {"date": "2008-09-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.121}, {"date": "2008-09-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.135}, {"date": "2008-09-01", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 4.015}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.701}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.686}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.731}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.648}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.637}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.67}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.769}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.742}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.822}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.885}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.87}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.915}, {"date": "2008-09-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.059}, {"date": "2008-09-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.075}, {"date": "2008-09-08", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.936}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.887}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.919}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.822}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.835}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.867}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.766}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.948}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.973}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.898}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.073}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.115}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.995}, {"date": "2008-09-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.023}, {"date": "2008-09-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.035}, {"date": "2008-09-15", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.933}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.772}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.785}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.746}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.718}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.732}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.687}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.839}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.847}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.825}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.963}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.982}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.929}, {"date": "2008-09-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.958}, {"date": "2008-09-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.967}, {"date": "2008-09-22", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.885}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.687}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.697}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.669}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.632}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.644}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.607}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.755}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.756}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.754}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.883}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.895}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.862}, {"date": "2008-09-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.959}, {"date": "2008-09-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.969}, {"date": "2008-09-29", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.887}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.543}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.541}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.545}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.484}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.485}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.482}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.618}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.609}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.636}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.746}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.752}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.735}, {"date": "2008-10-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.875}, {"date": "2008-10-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.887}, {"date": "2008-10-06", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.781}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.213}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.166}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.307}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.151}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.109}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.239}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.296}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.235}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.414}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.425}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.378}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.512}, {"date": "2008-10-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.659}, {"date": "2008-10-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.672}, {"date": "2008-10-13", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.558}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.974}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.909}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.107}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.914}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.855}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.04}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.053}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.968}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.219}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.182}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.115}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.306}, {"date": "2008-10-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.482}, {"date": "2008-10-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.497}, {"date": "2008-10-20", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.358}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.718}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.644}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.867}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.656}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.589}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.797}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.8}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.707}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.981}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.929}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.851}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.073}, {"date": "2008-10-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.288}, {"date": "2008-10-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.3}, {"date": "2008-10-27", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 3.189}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.462}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.395}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.597}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.4}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.34}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.525}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.543}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.457}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.709}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.677}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.603}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.813}, {"date": "2008-11-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.088}, {"date": "2008-11-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.1}, {"date": "2008-11-03", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.994}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.284}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.224}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.407}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.224}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.17}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.337}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.363}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.285}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.512}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.494}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.426}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.62}, {"date": "2008-11-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.944}, {"date": "2008-11-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.958}, {"date": "2008-11-10", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.829}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.132}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.081}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.236}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.072}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.027}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.166}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.211}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.144}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.34}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.339}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.281}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.447}, {"date": "2008-11-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.809}, {"date": "2008-11-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.822}, {"date": "2008-11-17", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.699}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.952}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.912}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.035}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.892}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.857}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.964}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.029}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.972}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.138}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.163}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.115}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.253}, {"date": "2008-11-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.664}, {"date": "2008-11-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.676}, {"date": "2008-11-24", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.571}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.87}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.844}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.924}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.811}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.79}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.854}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.945}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.906}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.021}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.077}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.044}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.141}, {"date": "2008-12-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.615}, {"date": "2008-12-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.624}, {"date": "2008-12-01", "fuel": "diesel", "grade": "low_sulfur", "formulation": "NA", "price": 2.544}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.758}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.734}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.808}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.699}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.681}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.738}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.832}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.797}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.901}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.965}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.933}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.025}, {"date": "2008-12-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.515}, {"date": "2008-12-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.523}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.716}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.699}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.749}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.659}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.648}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.682}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.785}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.758}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.838}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.915}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.892}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.958}, {"date": "2008-12-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.422}, {"date": "2008-12-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.43}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.71}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.685}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.758}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.653}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.635}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.692}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.781}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.744}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.852}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.907}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.875}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.965}, {"date": "2008-12-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.366}, {"date": "2008-12-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.373}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.67}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.642}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.727}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.613}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.59}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.662}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.743}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.702}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.823}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.866}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.831}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.929}, {"date": "2008-12-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.327}, {"date": "2008-12-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.335}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.737}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.72}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.772}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.684}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.672}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.711}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.8}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.769}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.861}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 1.922}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 1.902}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 1.96}, {"date": "2009-01-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.291}, {"date": "2009-01-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.299}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.835}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.82}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.866}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.784}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.772}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.808}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.9}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.873}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 1.951}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.015}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.043}, {"date": "2009-01-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.314}, {"date": "2009-01-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.324}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.898}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.88}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.935}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.847}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.832}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.878}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.961}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.931}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.02}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.077}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.061}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.105}, {"date": "2009-01-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.296}, {"date": "2009-01-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.307}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.89}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.862}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.947}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.838}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.813}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.892}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.954}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.915}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.029}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.07}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.046}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.115}, {"date": "2009-01-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.268}, {"date": "2009-01-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.278}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.944}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.92}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.992}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.892}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.871}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.936}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.007}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.974}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.071}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.126}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.107}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.162}, {"date": "2009-02-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.246}, {"date": "2009-02-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.256}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.978}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.946}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.043}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.926}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.897}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.986}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.044}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.002}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.127}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.161}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.133}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.214}, {"date": "2009-02-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.219}, {"date": "2009-02-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.23}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.016}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.981}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.089}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.964}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.931}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.034}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.083}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.036}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.174}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.198}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.168}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.255}, {"date": "2009-02-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.186}, {"date": "2009-02-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.197}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.963}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.919}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.052}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.909}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.868}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.995}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.032}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.976}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.141}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.153}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.113}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.227}, {"date": "2009-02-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.13}, {"date": "2009-02-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.138}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.988}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.961}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.043}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.934}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.91}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.984}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.057}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.016}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.137}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.174}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.151}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.218}, {"date": "2009-03-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.087}, {"date": "2009-03-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.095}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.993}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.967}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.046}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.941}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.918}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.99}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.059}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.022}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.131}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.175}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.154}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.215}, {"date": "2009-03-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.045}, {"date": "2009-03-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.051}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.964}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.937}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.02}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.91}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.885}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.962}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.034}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.996}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.108}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.151}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.127}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.195}, {"date": "2009-03-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.017}, {"date": "2009-03-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.023}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.014}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.993}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.056}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.962}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.944}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.001}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.079}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.049}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.137}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.193}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.175}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.226}, {"date": "2009-03-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.09}, {"date": "2009-03-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.093}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.097}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.079}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.135}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.046}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.03}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.08}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.163}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.136}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.216}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.275}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.259}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.304}, {"date": "2009-03-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.221}, {"date": "2009-03-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.225}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.09}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.061}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.148}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.037}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.011}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.092}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.158}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.119}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.234}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.271}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.245}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.319}, {"date": "2009-04-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.228}, {"date": "2009-04-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.233}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.104}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.075}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.163}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.051}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.025}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.107}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.172}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.132}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.248}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.284}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.26}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.33}, {"date": "2009-04-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.229}, {"date": "2009-04-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.234}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.112}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.081}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.174}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.059}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.031}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.118}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.181}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.14}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.259}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.294}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.268}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.343}, {"date": "2009-04-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.221}, {"date": "2009-04-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.226}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.102}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.066}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.175}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.049}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.016}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.118}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.171}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.124}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.262}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.285}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.251}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.348}, {"date": "2009-04-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.201}, {"date": "2009-04-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.207}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.129}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.093}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.202}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.078}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.045}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.147}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.195}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.149}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.284}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.308}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.275}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.369}, {"date": "2009-05-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.185}, {"date": "2009-05-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.192}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.29}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.267}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.337}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.24}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.218}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.285}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.352}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.322}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.411}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.467}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.45}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.499}, {"date": "2009-05-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.216}, {"date": "2009-05-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.223}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.36}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.331}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.421}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.309}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.281}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.368}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.424}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.387}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.495}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.54}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.517}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.583}, {"date": "2009-05-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.231}, {"date": "2009-05-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.237}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.485}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.463}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.531}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.435}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.414}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.477}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.547}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.516}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.608}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.661}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.644}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.693}, {"date": "2009-05-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.274}, {"date": "2009-05-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.278}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.572}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.548}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.621}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.524}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.502}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.57}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.63}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.595}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.698}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.741}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.721}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.778}, {"date": "2009-06-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.352}, {"date": "2009-06-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.354}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.673}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.646}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.728}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.624}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.6}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.676}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.731}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.692}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.806}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.843}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.82}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.885}, {"date": "2009-06-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.498}, {"date": "2009-06-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.501}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.722}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.686}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.794}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.672}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.639}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.742}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.784}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.737}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.875}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.896}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.866}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.952}, {"date": "2009-06-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.572}, {"date": "2009-06-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.575}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.743}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.7}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.831}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.691}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.65}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.777}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.808}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.755}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.91}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.924}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.887}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.992}, {"date": "2009-06-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.616}, {"date": "2009-06-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.619}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.695}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.644}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.799}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.642}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.593}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.744}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.763}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.701}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.882}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.883}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.839}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.966}, {"date": "2009-06-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.608}, {"date": "2009-06-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.612}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.666}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.615}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.77}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.612}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.563}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.713}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.736}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.673}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.856}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.855}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.81}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.94}, {"date": "2009-07-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.594}, {"date": "2009-07-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.598}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.584}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.532}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.69}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.528}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.479}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.631}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.656}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.593}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.78}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.779}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.731}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.869}, {"date": "2009-07-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.542}, {"date": "2009-07-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.546}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.519}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.463}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.633}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.463}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.411}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.572}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.591}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.522}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.725}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.714}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.659}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.815}, {"date": "2009-07-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.496}, {"date": "2009-07-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.501}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.557}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.51}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.652}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.503}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.46}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.594}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.625}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.564}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.742}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.744}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.698}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.829}, {"date": "2009-07-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.528}, {"date": "2009-07-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.532}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.61}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.561}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.71}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.557}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.511}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.653}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.676}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.613}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.796}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.793}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.747}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.88}, {"date": "2009-08-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.55}, {"date": "2009-08-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.554}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.7}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.645}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.81}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.647}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.596}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.755}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.767}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.7}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.896}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.883}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.833}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.975}, {"date": "2009-08-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.625}, {"date": "2009-08-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.628}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.691}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.631}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.813}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.637}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.58}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.757}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.761}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.688}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.901}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.877}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.821}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.98}, {"date": "2009-08-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.652}, {"date": "2009-08-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.656}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.682}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.622}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.802}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.628}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.572}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.746}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.751}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.677}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.893}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.869}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.813}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.972}, {"date": "2009-08-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.668}, {"date": "2009-08-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.672}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.667}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.605}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.795}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.613}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.553}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.737}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.739}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.662}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.887}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.857}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.797}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.967}, {"date": "2009-08-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.674}, {"date": "2009-08-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.679}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.642}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.569}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.792}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.588}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.519}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.733}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.711}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.619}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.89}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.831}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.759}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.965}, {"date": "2009-09-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.647}, {"date": "2009-09-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.65}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.632}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.55}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.799}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.577}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.499}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.741}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.704}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.603}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.899}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.818}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.739}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.964}, {"date": "2009-09-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.634}, {"date": "2009-09-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.638}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.607}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.526}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.771}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.552}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.477}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.712}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.68}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.58}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.874}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.793}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.714}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.941}, {"date": "2009-09-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.622}, {"date": "2009-09-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.626}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.554}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.475}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.715}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.499}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.425}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.655}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.631}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.531}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.823}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.741}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.663}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.886}, {"date": "2009-09-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.601}, {"date": "2009-09-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.606}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.523}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.446}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.681}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.468}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.396}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.621}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.6}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.502}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.788}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.711}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.634}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.853}, {"date": "2009-10-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.582}, {"date": "2009-10-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.588}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.543}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.48}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.67}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.489}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.432}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.611}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.614}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.532}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.774}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.727}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.665}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.841}, {"date": "2009-10-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.6}, {"date": "2009-10-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.604}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.626}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.58}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.719}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.574}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.532}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.663}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.694}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.633}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.812}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.807}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.763}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.887}, {"date": "2009-10-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.705}, {"date": "2009-10-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.708}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.727}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.691}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.8}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.674}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.641}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.744}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.792}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.744}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.886}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.909}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.878}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.968}, {"date": "2009-10-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.801}, {"date": "2009-10-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.805}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.746}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.71}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.822}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.694}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.66}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.766}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.812}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.764}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.907}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.93}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.897}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.991}, {"date": "2009-11-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.808}, {"date": "2009-11-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.811}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.72}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.678}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.805}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.666}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.627}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.748}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.787}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.733}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.891}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.908}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.871}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.977}, {"date": "2009-11-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.801}, {"date": "2009-11-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.805}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.684}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.638}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.778}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.629}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.585}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.72}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.755}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.697}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.867}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.877}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.835}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.955}, {"date": "2009-11-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.79}, {"date": "2009-11-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.795}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.694}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.655}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.773}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.639}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.603}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.714}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.764}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.713}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.862}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.883}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.846}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.951}, {"date": "2009-11-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.787}, {"date": "2009-11-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.792}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.684}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.646}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.763}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.629}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.594}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.704}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.754}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.704}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.851}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.875}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.84}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.941}, {"date": "2009-11-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.775}, {"date": "2009-11-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.78}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.689}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.653}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.763}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.634}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.601}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.703}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.761}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.715}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.851}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.882}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.849}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.942}, {"date": "2009-12-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.772}, {"date": "2009-12-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.777}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.655}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.613}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.742}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.599}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.56}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.681}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.727}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.672}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.835}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.849}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.809}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.925}, {"date": "2009-12-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.748}, {"date": "2009-12-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.753}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.645}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.599}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.739}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.589}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.546}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.679}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.717}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.658}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.829}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.839}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.796}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.918}, {"date": "2009-12-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.726}, {"date": "2009-12-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.731}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.662}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.616}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.754}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.607}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.564}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.696}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.731}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.673}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.843}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.853}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.811}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.93}, {"date": "2009-12-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.732}, {"date": "2009-12-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.736}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.718}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.677}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.802}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.665}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.627}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.745}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.784}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.73}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.889}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.905}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.869}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.972}, {"date": "2010-01-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.797}, {"date": "2010-01-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.801}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.804}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.768}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.877}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.751}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.717}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.822}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.869}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.823}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.958}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.988}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.959}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.042}, {"date": "2010-01-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.879}, {"date": "2010-01-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.882}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.793}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.755}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.87}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.739}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.703}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.813}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.861}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.813}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.954}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.983}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.951}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.041}, {"date": "2010-01-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.87}, {"date": "2010-01-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.874}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.76}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.719}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.844}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.705}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.666}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.787}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.832}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.78}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.932}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.953}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.918}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.018}, {"date": "2010-01-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.833}, {"date": "2010-01-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.838}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.717}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.672}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.809}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.661}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.618}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.75}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.787}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.731}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.897}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.911}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.871}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.984}, {"date": "2010-02-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.781}, {"date": "2010-02-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.787}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.707}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.664}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.796}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.652}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.611}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.738}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.778}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.723}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.885}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.9}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.862}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.973}, {"date": "2010-02-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.769}, {"date": "2010-02-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.775}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.664}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.617}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.761}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.608}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.563}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.701}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.738}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.678}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.853}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.862}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.818}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.943}, {"date": "2010-02-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.756}, {"date": "2010-02-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.761}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.709}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.673}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.783}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.655}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.621}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.726}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.778}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.731}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.869}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.899}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.867}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.958}, {"date": "2010-02-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.832}, {"date": "2010-02-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.834}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.756}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.723}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.824}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.702}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.671}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.768}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.827}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.784}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.911}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.943}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.917}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.992}, {"date": "2010-03-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.861}, {"date": "2010-03-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.865}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.804}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.773}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.868}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.751}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.721}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.813}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.871}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.829}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.952}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.988}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.964}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.034}, {"date": "2010-03-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.904}, {"date": "2010-03-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.906}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.841}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.812}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.9}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.788}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.76}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.846}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.908}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.87}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.982}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.024}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.002}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.063}, {"date": "2010-03-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.924}, {"date": "2010-03-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.926}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.87}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.842}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.928}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.819}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.792}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.875}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.936}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.897}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.012}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.05}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.028}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.09}, {"date": "2010-03-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.946}, {"date": "2010-03-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.949}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.851}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.816}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.921}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.798}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.765}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.867}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.918}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.873}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.006}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.034}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.006}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.086}, {"date": "2010-03-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.939}, {"date": "2010-03-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.942}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.877}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.844}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.944}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.826}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.795}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.891}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.94}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.897}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.024}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.056}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.029}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.106}, {"date": "2010-04-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.015}, {"date": "2010-04-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.017}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.909}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.879}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.97}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.858}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.829}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.917}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.972}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.933}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.048}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.088}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.065}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.131}, {"date": "2010-04-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.069}, {"date": "2010-04-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.073}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.911}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.881}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.973}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.86}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.831}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.92}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.974}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.935}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.051}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.091}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.068}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.135}, {"date": "2010-04-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.074}, {"date": "2010-04-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.078}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.901}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.865}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.976}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.849}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.815}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.922}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.966}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.92}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.054}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.083}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.053}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.141}, {"date": "2010-04-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.078}, {"date": "2010-04-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.082}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.95}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.914}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.023}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.898}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.864}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.97}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.011}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.967}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.096}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.131}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.103}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.185}, {"date": "2010-05-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.122}, {"date": "2010-05-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.126}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.958}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.921}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.034}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.905}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.87}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.979}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.023}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.976}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.113}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.142}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.109}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.202}, {"date": "2010-05-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.127}, {"date": "2010-05-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.131}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.918}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.874}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.007}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.864}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.823}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.95}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.985}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.932}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.088}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.107}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.067}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.181}, {"date": "2010-05-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.094}, {"date": "2010-05-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.098}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.842}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.794}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.939}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.786}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.741}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.88}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.914}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.856}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.026}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.037}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.993}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.12}, {"date": "2010-05-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.021}, {"date": "2010-05-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.025}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.784}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.731}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.891}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.728}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.679}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.83}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.855}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.789}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.981}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.98}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.929}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.074}, {"date": "2010-05-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.98}, {"date": "2010-05-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.983}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.78}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.725}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.892}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.725}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.674}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.831}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.849}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.778}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.986}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.972}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.917}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.075}, {"date": "2010-06-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.946}, {"date": "2010-06-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.949}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.756}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.703}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.864}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.701}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.652}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.803}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.825}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.756}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.958}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.947}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.894}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.047}, {"date": "2010-06-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.928}, {"date": "2010-06-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.93}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.795}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.745}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.898}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.743}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.696}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.84}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.861}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.794}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.989}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.98}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.931}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.071}, {"date": "2010-06-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.961}, {"date": "2010-06-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.962}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.809}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.76}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.91}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.757}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.712}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.852}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.873}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.807}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.992}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.944}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.081}, {"date": "2010-06-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.956}, {"date": "2010-06-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.957}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.779}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.724}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.889}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.726}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.676}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.83}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.846}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.774}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.984}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.964}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.91}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.066}, {"date": "2010-07-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.924}, {"date": "2010-07-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.925}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.771}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.715}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.885}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.718}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.666}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.826}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.838}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.765}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.98}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.956}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.901}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.059}, {"date": "2010-07-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.903}, {"date": "2010-07-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.904}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.775}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.72}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.886}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.722}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.672}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.827}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.843}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.771}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.981}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.958}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.904}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.058}, {"date": "2010-07-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.899}, {"date": "2010-07-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.899}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.801}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.751}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.901}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.749}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.703}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.843}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.867}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.801}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.995}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.982}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.933}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.072}, {"date": "2010-07-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.919}, {"date": "2010-07-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.919}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.788}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.736}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.894}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.735}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.687}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.836}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.856}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.788}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.988}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.973}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.922}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.067}, {"date": "2010-08-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.928}, {"date": "2010-08-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.928}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.835}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.789}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.929}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.783}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.74}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.873}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.903}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.842}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.021}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.016}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.973}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.095}, {"date": "2010-08-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.991}, {"date": "2010-08-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.991}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.798}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.746}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.904}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.745}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.696}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.847}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.869}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.802}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.982}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.933}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.073}, {"date": "2010-08-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.979}, {"date": "2010-08-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.979}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.759}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.703}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.872}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.704}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.653}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.812}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.831}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.758}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.972}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.945}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.891}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.046}, {"date": "2010-08-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.957}, {"date": "2010-08-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.957}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.736}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.69}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.831}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.682}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.64}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.771}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.806}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.743}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.93}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.922}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.875}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.009}, {"date": "2010-08-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.938}, {"date": "2010-08-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.938}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.735}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.695}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.815}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.682}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.647}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.755}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.803}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.748}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.911}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.917}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.877}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.992}, {"date": "2010-09-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.931}, {"date": "2010-09-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.931}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.772}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.742}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.834}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.721}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.695}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.776}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.836}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.79}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.926}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.95}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.92}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.006}, {"date": "2010-09-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.943}, {"date": "2010-09-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.943}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.775}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.751}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.824}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.723}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.703}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.766}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.844}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.806}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.917}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.954}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.931}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.999}, {"date": "2010-09-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.96}, {"date": "2010-09-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.96}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.747}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.718}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.807}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.694}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.668}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.747}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.818}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.775}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.9}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.932}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.903}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.985}, {"date": "2010-09-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.951}, {"date": "2010-09-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.951}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.784}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.754}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.845}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.732}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.705}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.787}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.85}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.807}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.933}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.966}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.938}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.019}, {"date": "2010-10-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3}, {"date": "2010-10-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.871}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.842}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.929}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.819}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.793}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.873}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.934}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.894}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.011}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.053}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.029}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.097}, {"date": "2010-10-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.066}, {"date": "2010-10-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.066}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.887}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.845}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.972}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.834}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.795}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.917}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.953}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.9}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.056}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.071}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.034}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.14}, {"date": "2010-10-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.073}, {"date": "2010-10-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.073}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.87}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.823}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.966}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.817}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.772}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.909}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.938}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.879}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.053}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.058}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.014}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.139}, {"date": "2010-10-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.067}, {"date": "2010-10-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.067}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.861}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.811}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.962}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.806}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.76}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.903}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.929}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.867}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.05}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.051}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.004}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.139}, {"date": "2010-11-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.067}, {"date": "2010-11-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.067}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.917}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.881}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.99}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.865}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.832}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.934}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.979}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.931}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.073}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.102}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.069}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.161}, {"date": "2010-11-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.116}, {"date": "2010-11-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.116}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.944}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.899}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.035}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.892}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.849}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.98}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.007}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.952}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.115}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.13}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.089}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.205}, {"date": "2010-11-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.184}, {"date": "2010-11-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.184}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.931}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.88}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.037}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.876}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.828}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.979}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.999}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.937}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.119}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.124}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.075}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.215}, {"date": "2010-11-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.171}, {"date": "2010-11-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.171}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.912}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.858}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.022}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.856}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.805}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.963}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.982}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.917}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.107}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.108}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.056}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.205}, {"date": "2010-11-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.162}, {"date": "2010-11-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.162}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.013}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.97}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.101}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.958}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.917}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.045}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.079}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.027}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.181}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.207}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.169}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.277}, {"date": "2010-12-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.197}, {"date": "2010-12-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.197}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.035}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.99}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.126}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.98}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.937}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.07}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.101}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.047}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.204}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.227}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.189}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.299}, {"date": "2010-12-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.231}, {"date": "2010-12-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.231}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.037}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.987}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.14}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.982}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.934}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.084}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.104}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.046}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.217}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.231}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.188}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.313}, {"date": "2010-12-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.248}, {"date": "2010-12-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.248}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.106}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.067}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.185}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.052}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.015}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.13}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.171}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.124}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.262}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.296}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.264}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.354}, {"date": "2010-12-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.294}, {"date": "2010-12-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.294}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.124}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.086}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.201}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.07}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.034}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.146}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.188}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.142}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.278}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.314}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.283}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.372}, {"date": "2011-01-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.331}, {"date": "2011-01-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.331}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.142}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.103}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.221}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.089}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.052}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.166}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.204}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.157}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.297}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.33}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.298}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.391}, {"date": "2011-01-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.333}, {"date": "2011-01-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.333}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.158}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.12}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.235}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.104}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.068}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.179}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.222}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.174}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.313}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.347}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.316}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.406}, {"date": "2011-01-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.407}, {"date": "2011-01-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.407}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.163}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.125}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.241}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.11}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.074}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.186}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.227}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.18}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.318}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.353}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.322}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.412}, {"date": "2011-01-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.43}, {"date": "2011-01-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.43}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.155}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.113}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.241}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.101}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.061}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.186}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.221}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.169}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.321}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.345}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.308}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.413}, {"date": "2011-01-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.438}, {"date": "2011-01-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.438}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.185}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.145}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.266}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.132}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.094}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.211}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.251}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.202}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.345}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.371}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.338}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.434}, {"date": "2011-02-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.513}, {"date": "2011-02-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.513}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.193}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.147}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.288}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.14}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.095}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.233}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.259}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.203}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.368}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.382}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.343}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.455}, {"date": "2011-02-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.534}, {"date": "2011-02-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.534}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.243}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.193}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.345}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.189}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.141}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.29}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.311}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.251}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.428}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.428}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.384}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.511}, {"date": "2011-02-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.573}, {"date": "2011-02-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.573}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.435}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.392}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.523}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.383}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.341}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.471}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.499}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.446}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.603}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.62}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.587}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.683}, {"date": "2011-02-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.716}, {"date": "2011-02-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.716}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.572}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.524}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.671}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.52}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.473}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.617}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.636}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.576}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.753}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.758}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.717}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.834}, {"date": "2011-03-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.871}, {"date": "2011-03-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.871}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.621}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.569}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.726}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.567}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.517}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.671}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.69}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.626}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.813}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.809}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.768}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.887}, {"date": "2011-03-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.908}, {"date": "2011-03-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.908}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.617}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.56}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.732}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.562}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.507}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.678}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.686}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.617}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.819}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.806}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.759}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.893}, {"date": "2011-03-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.907}, {"date": "2011-03-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.907}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.65}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.59}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.771}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.596}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.538}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.719}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.718}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.647}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.857}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.836}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.787}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.925}, {"date": "2011-03-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.932}, {"date": "2011-03-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.932}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.737}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.686}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.84}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.684}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.635}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.786}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.801}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.737}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.925}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.921}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.88}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.998}, {"date": "2011-04-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.976}, {"date": "2011-04-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.976}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.843}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.793}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.947}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.791}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.743}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.893}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.907}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.842}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.032}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.027}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.985}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.105}, {"date": "2011-04-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.078}, {"date": "2011-04-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.078}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.896}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.837}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.017}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.844}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.787}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.964}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.96}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.887}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.101}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.08}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.029}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.177}, {"date": "2011-04-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.105}, {"date": "2011-04-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.105}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.932}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.867}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.064}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.879}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.817}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.011}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.994}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.916}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.143}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.117}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.059}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.225}, {"date": "2011-04-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.098}, {"date": "2011-04-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.098}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.014}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.955}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.134}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.963}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.906}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.081}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.075}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.004}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.212}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.198}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.144}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.297}, {"date": "2011-05-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.124}, {"date": "2011-05-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.124}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.018}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.957}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.142}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.965}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.907}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.087}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.081}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.009}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.221}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.206}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.15}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.31}, {"date": "2011-05-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.104}, {"date": "2011-05-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.104}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.014}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.956}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.132}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.96}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.905}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.076}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.079}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.01}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.213}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.204}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.15}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.305}, {"date": "2011-05-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.061}, {"date": "2011-05-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.061}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.904}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.84}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.035}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.849}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.788}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.976}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.975}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.9}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.12}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.1}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.036}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.218}, {"date": "2011-05-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.997}, {"date": "2011-05-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.997}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.848}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.791}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.965}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.794}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.741}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.905}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.914}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.842}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.053}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.041}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.981}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.15}, {"date": "2011-05-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.948}, {"date": "2011-05-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.948}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.833}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.785}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.929}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.781}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.738}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.87}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.891}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.827}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.014}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.02}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.97}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.112}, {"date": "2011-06-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.94}, {"date": "2011-06-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.94}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.767}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.713}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.877}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.713}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.664}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.816}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.829}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.761}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.961}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.958}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.902}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.063}, {"date": "2011-06-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.954}, {"date": "2011-06-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.954}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.708}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.647}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.831}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.652}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.597}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.769}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.776}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.702}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.919}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.904}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.84}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.022}, {"date": "2011-06-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.95}, {"date": "2011-06-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.95}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.631}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.565}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.765}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.574}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.513}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.702}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.7}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.621}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.852}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.833}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.764}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.959}, {"date": "2011-06-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.888}, {"date": "2011-06-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.888}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.634}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.584}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.736}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.579}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.534}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.674}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.699}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.635}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.822}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.829}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.775}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.929}, {"date": "2011-07-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.85}, {"date": "2011-07-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.85}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.695}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.658}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.771}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.641}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.608}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.71}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.756}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.707}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.851}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.889}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.851}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.96}, {"date": "2011-07-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.899}, {"date": "2011-07-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.899}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.736}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.699}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.812}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.682}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.648}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.753}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.796}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.75}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.885}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.932}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.896}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.998}, {"date": "2011-07-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.923}, {"date": "2011-07-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.923}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.754}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.72}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.824}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.699}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.667}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.766}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.819}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.777}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.899}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.951}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.919}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.01}, {"date": "2011-07-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.949}, {"date": "2011-07-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.949}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.766}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.737}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.826}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.711}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.684}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.768}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.829}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.792}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.9}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.963}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.937}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.013}, {"date": "2011-08-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.937}, {"date": "2011-08-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.937}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.73}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.698}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.794}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.674}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.646}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.733}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.794}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.753}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.872}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.927}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.895}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.985}, {"date": "2011-08-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.897}, {"date": "2011-08-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.897}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.662}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.629}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.727}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.604}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.576}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.664}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.728}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.686}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.81}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.865}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.832}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.927}, {"date": "2011-08-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.835}, {"date": "2011-08-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.835}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.638}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.605}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.705}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.581}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.552}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.641}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.703}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.658}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.791}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.839}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.804}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.904}, {"date": "2011-08-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.81}, {"date": "2011-08-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.81}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.682}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.651}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.744}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.627}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.601}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.683}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.746}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.703}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.828}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.874}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.842}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.933}, {"date": "2011-08-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.82}, {"date": "2011-08-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.82}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.727}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.692}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.8}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.674}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.643}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.741}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.791}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.742}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.885}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.914}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.878}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.98}, {"date": "2011-09-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.868}, {"date": "2011-09-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.868}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.715}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.678}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.79}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.661}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.629}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.729}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.78}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.728}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.881}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.904}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.866}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.974}, {"date": "2011-09-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.862}, {"date": "2011-09-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.862}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.657}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.611}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.751}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.601}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.56}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.688}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.727}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.666}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.846}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.853}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.805}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.941}, {"date": "2011-09-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.833}, {"date": "2011-09-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.833}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.568}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.514}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.677}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.509}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.461}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.612}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.642}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.573}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.775}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.77}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.716}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.871}, {"date": "2011-09-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.786}, {"date": "2011-09-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.786}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.492}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.435}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.609}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.433}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.381}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.543}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.569}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.495}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.711}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.698}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.64}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.806}, {"date": "2011-10-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.749}, {"date": "2011-10-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.749}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.476}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.422}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.584}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.417}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.368}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.52}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.551}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.481}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.685}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.679}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.627}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.777}, {"date": "2011-10-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.721}, {"date": "2011-10-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.721}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.533}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.484}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.632}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.476}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.431}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.571}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.604}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.54}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.728}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.73}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.683}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.818}, {"date": "2011-10-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.801}, {"date": "2011-10-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.801}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.52}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.469}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.623}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.462}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.415}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.56}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.594}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.529}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.721}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.721}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.673}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.811}, {"date": "2011-10-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.825}, {"date": "2011-10-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.825}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.511}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.46}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.614}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.452}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.405}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.551}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.587}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.52}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.714}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.713}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.664}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.803}, {"date": "2011-10-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.892}, {"date": "2011-10-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.892}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.482}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.424}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.599}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.424}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.37}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.535}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.558}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.483}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.701}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.683}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.627}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.788}, {"date": "2011-11-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.887}, {"date": "2011-11-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.887}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.495}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.442}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.602}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.436}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.388}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.538}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.571}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.502}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.703}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.697}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.647}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.792}, {"date": "2011-11-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.987}, {"date": "2011-11-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.987}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.427}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.367}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.55}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.368}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.312}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.485}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.503}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.426}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.652}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.634}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.576}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.741}, {"date": "2011-11-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.01}, {"date": "2011-11-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.01}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.368}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.305}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.496}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.307}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.248}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.43}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.447}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.367}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.601}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.581}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.52}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.694}, {"date": "2011-11-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.964}, {"date": "2011-11-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.964}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.35}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.296}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.46}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.29}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.24}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.395}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.426}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.355}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.562}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.56}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.508}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.656}, {"date": "2011-12-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.931}, {"date": "2011-12-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.931}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.346}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.301}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.437}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.286}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.244}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.372}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.421}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.362}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.537}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.554}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.512}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.633}, {"date": "2011-12-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.894}, {"date": "2011-12-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.894}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.29}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.242}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.39}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.229}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.183}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.325}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.368}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.306}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.489}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.504}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.46}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.587}, {"date": "2011-12-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.828}, {"date": "2011-12-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.828}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.317}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.269}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.413}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.258}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.213}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.35}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.388}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.326}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.508}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.524}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.481}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.603}, {"date": "2011-12-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.791}, {"date": "2011-12-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.791}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.358}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.31}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.454}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.299}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.254}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.393}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.429}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.368}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.548}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.567}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.527}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.641}, {"date": "2012-01-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.783}, {"date": "2012-01-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.783}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.441}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.39}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.546}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.382}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.333}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.486}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.512}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.448}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.637}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.649}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.607}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.725}, {"date": "2012-01-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.828}, {"date": "2012-01-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.828}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.451}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.4}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.554}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.391}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.342}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.494}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.522}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.459}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.645}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.66}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.621}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.734}, {"date": "2012-01-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.854}, {"date": "2012-01-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.854}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.45}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.392}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.566}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.389}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.333}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.505}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.522}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.453}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.655}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.664}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.617}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.75}, {"date": "2012-01-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.848}, {"date": "2012-01-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.848}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.5}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.446}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.61}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.439}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.386}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.55}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.573}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.51}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.694}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.716}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.675}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.793}, {"date": "2012-01-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.85}, {"date": "2012-01-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.85}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.542}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.496}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.637}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.482}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.436}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.578}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.614}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.558}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.723}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.756}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.721}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.822}, {"date": "2012-02-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.856}, {"date": "2012-02-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.856}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.584}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.526}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.702}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.523}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.466}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.642}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.659}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.593}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.787}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.798}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.751}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.885}, {"date": "2012-02-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.943}, {"date": "2012-02-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.943}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.652}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.582}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.794}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.591}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.523}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.735}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.729}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.647}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.887}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.865}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.808}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.971}, {"date": "2012-02-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.96}, {"date": "2012-02-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.96}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.78}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.698}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.945}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.721}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.641}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.889}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.855}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.759}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.041}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.983}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.915}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.11}, {"date": "2012-02-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.051}, {"date": "2012-02-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.051}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.849}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.771}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.009}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.793}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.717}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.954}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.92}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.824}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.104}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.043}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.977}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.167}, {"date": "2012-03-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.094}, {"date": "2012-03-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.094}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.884}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.8}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.056}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.829}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.747}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.002}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.954}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.852}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.15}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.077}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.003}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.214}, {"date": "2012-03-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.123}, {"date": "2012-03-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.123}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.923}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.841}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.089}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.867}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.787}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.034}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.993}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.895}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.182}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.117}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.045}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.249}, {"date": "2012-03-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.142}, {"date": "2012-03-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.142}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.973}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.897}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.129}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.918}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.843}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.076}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.042}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.952}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.216}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.168}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.104}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.287}, {"date": "2012-03-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.147}, {"date": "2012-03-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.147}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.996}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.928}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.135}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.941}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.874}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.08}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.063}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.981}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.222}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.193}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.136}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.299}, {"date": "2012-04-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.142}, {"date": "2012-04-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.142}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.997}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.934}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.126}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.939}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.877}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.069}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.067}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.993}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.211}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.201}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.148}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.299}, {"date": "2012-04-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.148}, {"date": "2012-04-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.148}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.98}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.923}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.097}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.922}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.867}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.039}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.047}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.978}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.181}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.183}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.134}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.275}, {"date": "2012-04-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.127}, {"date": "2012-04-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.127}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.929}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.861}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.066}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.87}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.805}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.007}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.999}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.919}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.154}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.136}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.074}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.25}, {"date": "2012-04-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.085}, {"date": "2012-04-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.085}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.889}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.821}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.027}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.83}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.764}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.967}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.962}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.882}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.116}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.097}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.036}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.211}, {"date": "2012-04-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.073}, {"date": "2012-04-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.073}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.849}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.773}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.005}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.79}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.718}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.943}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.923}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.831}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.101}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.054}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.98}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.19}, {"date": "2012-05-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.057}, {"date": "2012-05-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.057}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.814}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.713}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.02}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.754}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.658}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.956}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.895}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.774}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.13}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.02}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.919}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.207}, {"date": "2012-05-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.004}, {"date": "2012-05-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.004}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.773}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.676}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.972}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.715}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.622}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.909}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.85}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.731}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.081}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.975}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.878}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.156}, {"date": "2012-05-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.956}, {"date": "2012-05-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.956}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.728}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.628}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.932}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.67}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.575}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.868}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.805}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.682}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.043}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.929}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.828}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.117}, {"date": "2012-05-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.897}, {"date": "2012-05-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.897}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.671}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.57}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.878}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.613}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.518}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.812}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.75}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.624}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.993}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.871}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.766}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.065}, {"date": "2012-06-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.846}, {"date": "2012-06-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.846}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.629}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.541}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.809}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.572}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.489}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.745}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.703}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.592}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.92}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.829}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.74}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.994}, {"date": "2012-06-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.781}, {"date": "2012-06-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.781}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.589}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.522}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.724}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.533}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.473}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.66}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.661}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.572}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.833}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.78}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.708}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.914}, {"date": "2012-06-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.729}, {"date": "2012-06-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.729}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.494}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.428}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.629}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.437}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.378}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.562}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.568}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.481}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.735}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.693}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.619}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.832}, {"date": "2012-06-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.678}, {"date": "2012-06-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.678}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.415}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.343}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.561}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.356}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.291}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.493}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.489}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.398}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.665}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.618}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.54}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.764}, {"date": "2012-07-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.648}, {"date": "2012-07-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.648}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.469}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.411}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.588}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.411}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.357}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.522}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.539}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.465}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.682}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.674}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.613}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.789}, {"date": "2012-07-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.683}, {"date": "2012-07-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.683}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.485}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.416}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.625}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.427}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.364}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.561}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.551}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.467}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.713}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.69}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.618}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.823}, {"date": "2012-07-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.695}, {"date": "2012-07-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.695}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.554}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.491}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.683}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.494}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.435}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.619}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.626}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.552}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.771}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.765}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.703}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.881}, {"date": "2012-07-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.783}, {"date": "2012-07-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.783}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.568}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.506}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.693}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.508}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.45}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.63}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.639}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.565}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.78}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.779}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.719}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.889}, {"date": "2012-07-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.796}, {"date": "2012-07-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.796}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.702}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.66}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.788}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.645}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.606}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.727}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.767}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.714}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.87}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.907}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.869}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.976}, {"date": "2012-08-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.85}, {"date": "2012-08-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.85}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.779}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.717}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.906}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.721}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.662}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.846}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.847}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.771}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.994}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.985}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.928}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.091}, {"date": "2012-08-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.965}, {"date": "2012-08-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.965}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.803}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.739}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.934}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.744}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.682}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.873}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.874}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.797}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.023}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.014}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.956}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.12}, {"date": "2012-08-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.026}, {"date": "2012-08-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.026}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.837}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.78}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.951}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.776}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.722}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.888}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.909}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.839}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.044}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.051}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.003}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.142}, {"date": "2012-08-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.089}, {"date": "2012-08-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.089}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.903}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.854}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.001}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.843}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.797}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.94}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.975}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.916}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.089}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.111}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.07}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.189}, {"date": "2012-09-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.127}, {"date": "2012-09-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.127}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.907}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.856}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.012}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.847}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.799}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.949}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.981}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.919}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.1}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.119}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.071}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.208}, {"date": "2012-09-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.132}, {"date": "2012-09-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.132}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.939}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.89}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.038}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.878}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.832}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.974}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.013}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.955}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.124}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.154}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.108}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.239}, {"date": "2012-09-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.135}, {"date": "2012-09-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.135}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.889}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.834}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.002}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.826}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.775}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.934}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.966}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.899}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.098}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.11}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.056}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.21}, {"date": "2012-09-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.086}, {"date": "2012-09-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.086}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.866}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.808}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.986}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.804}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.75}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.916}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.944}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.87}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.086}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.087}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.026}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.2}, {"date": "2012-10-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.079}, {"date": "2012-10-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.079}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.914}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.8}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.147}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.85}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.742}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.078}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.002}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.864}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.27}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.133}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.02}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.344}, {"date": "2012-10-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.094}, {"date": "2012-10-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.094}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.886}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.774}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.113}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.819}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.713}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.042}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.976}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.841}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.238}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.113}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.004}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.316}, {"date": "2012-10-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.15}, {"date": "2012-10-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.15}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.756}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.645}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.981}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.687}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.582}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.908}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.85}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.717}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.107}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.992}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.884}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.193}, {"date": "2012-10-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.116}, {"date": "2012-10-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.116}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.638}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.545}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.826}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.568}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.48}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.752}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.733}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.622}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.948}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.878}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.788}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.044}, {"date": "2012-10-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.03}, {"date": "2012-10-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.03}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.563}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.471}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.749}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.492}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.406}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.673}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.652}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.542}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.864}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.808}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.717}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.978}, {"date": "2012-11-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.01}, {"date": "2012-11-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.01}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.518}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.437}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.685}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.449}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.372}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.611}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.605}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.509}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.793}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.761}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.678}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.913}, {"date": "2012-11-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.98}, {"date": "2012-11-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.98}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.497}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.423}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.649}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.429}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.36}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.573}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.579}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.489}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.754}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.74}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.662}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.885}, {"date": "2012-11-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.976}, {"date": "2012-11-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.976}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.505}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.445}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.628}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.437}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.382}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.553}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.585}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.511}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.73}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.746}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.684}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.861}, {"date": "2012-11-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.034}, {"date": "2012-11-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.034}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.463}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.401}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.589}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.394}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.337}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.513}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.548}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.474}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.692}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.707}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.643}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.826}, {"date": "2012-12-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.027}, {"date": "2012-12-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.027}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.419}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.363}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.534}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.349}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.297}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.459}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.504}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.436}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.636}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.664}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.606}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.77}, {"date": "2012-12-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.991}, {"date": "2012-12-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.991}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.324}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.263}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.448}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.254}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.198}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.371}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.409}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.336}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.551}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.571}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.507}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.69}, {"date": "2012-12-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.945}, {"date": "2012-12-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.945}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.328}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.271}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.444}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.257}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.205}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.366}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.415}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.346}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.548}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.576}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.517}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.688}, {"date": "2012-12-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.923}, {"date": "2012-12-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.923}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.369}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.311}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.486}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.298}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.245}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.41}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.455}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.386}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.587}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.617}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.56}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.723}, {"date": "2012-12-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.918}, {"date": "2012-12-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.918}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.373}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.304}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.512}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.299}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.233}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.437}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.463}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.383}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.616}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.631}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.568}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.748}, {"date": "2013-01-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.911}, {"date": "2013-01-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.911}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.377}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.308}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.519}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.303}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.236}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.444}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.467}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.386}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.623}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.637}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.575}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.753}, {"date": "2013-01-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.894}, {"date": "2013-01-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.894}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.386}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.321}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.519}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.315}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.254}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.444}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.473}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.394}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.626}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.636}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.574}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.751}, {"date": "2013-01-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.902}, {"date": "2013-01-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.902}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.427}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.362}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.558}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.357}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.296}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.484}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.512}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.434}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.663}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.673}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.613}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.783}, {"date": "2013-01-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.927}, {"date": "2013-01-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.927}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.604}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.534}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.748}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.538}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.471}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.678}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.683}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.598}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.848}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.841}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.776}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.963}, {"date": "2013-02-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.022}, {"date": "2013-02-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.022}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.677}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.599}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.836}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.611}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.537}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.769}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.756}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.663}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.938}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.91}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.838}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.042}, {"date": "2013-02-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.104}, {"date": "2013-02-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.104}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.812}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.753}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.932}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.747}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.69}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.866}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.891}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.819}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.031}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.042}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.993}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.132}, {"date": "2013-02-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.157}, {"date": "2013-02-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.157}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.851}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.787}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.98}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.784}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.722}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.914}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.934}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.859}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.08}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.084}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.031}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.181}, {"date": "2013-02-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.159}, {"date": "2013-02-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.159}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.826}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.763}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.955}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.759}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.698}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.888}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.91}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.833}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.06}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.061}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.009}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.158}, {"date": "2013-03-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.13}, {"date": "2013-03-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.13}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.779}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.71}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.918}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.71}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.644}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.85}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.865}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.783}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.022}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.018}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.96}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.124}, {"date": "2013-03-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.088}, {"date": "2013-03-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.088}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.764}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.699}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.897}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.696}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.633}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.829}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.85}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.772}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.001}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.002}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.946}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.104}, {"date": "2013-03-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.047}, {"date": "2013-03-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.047}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.746}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.68}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.881}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.68}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.616}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.813}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.828}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.749}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.982}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.981}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.924}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.087}, {"date": "2013-03-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.006}, {"date": "2013-03-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.006}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.714}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.638}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.867}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.645}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.572}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.799}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.798}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.71}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.969}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.953}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.887}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.076}, {"date": "2013-04-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.993}, {"date": "2013-04-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.993}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.676}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.604}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.822}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.608}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.539}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.751}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.761}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.673}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.93}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.916}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.852}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.034}, {"date": "2013-04-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.977}, {"date": "2013-04-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.977}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.611}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.535}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.766}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.542}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.469}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.694}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.7}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.609}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.878}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.852}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.782}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.98}, {"date": "2013-04-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.942}, {"date": "2013-04-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.942}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.603}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.536}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.74}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.536}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.472}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.671}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.687}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.604}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.847}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.836}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.777}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.947}, {"date": "2013-04-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.887}, {"date": "2013-04-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.887}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.587}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.519}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.725}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.52}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.455}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.657}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.668}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.584}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.829}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.822}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.763}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.931}, {"date": "2013-04-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.851}, {"date": "2013-04-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.851}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.602}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.54}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.729}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.538}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.478}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.662}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.681}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.603}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.832}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.83}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.776}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.93}, {"date": "2013-05-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.845}, {"date": "2013-05-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.845}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.665}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.601}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.795}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.603}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.543}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.729}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.739}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.656}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.9}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.883}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.824}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.993}, {"date": "2013-05-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.866}, {"date": "2013-05-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.866}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.729}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.687}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.816}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.673}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.636}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.752}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.801}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.741}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.918}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.926}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.88}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.011}, {"date": "2013-05-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.89}, {"date": "2013-05-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.89}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.704}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.656}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.802}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.645}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.601}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.736}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.779}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.714}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.904}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.912}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.863}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.003}, {"date": "2013-05-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.88}, {"date": "2013-05-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.88}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.705}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.664}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.788}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.646}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.61}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.721}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.773}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.712}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.892}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.913}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.87}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.992}, {"date": "2013-06-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.869}, {"date": "2013-06-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.869}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.715}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.674}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.798}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.655}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.619}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.731}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.783}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.722}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.9}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.929}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.891}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4}, {"date": "2013-06-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.849}, {"date": "2013-06-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.849}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.689}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.636}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.798}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.626}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.577}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.73}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.764}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.692}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.901}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.912}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.863}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.005}, {"date": "2013-06-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.841}, {"date": "2013-06-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.841}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.645}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.563}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.81}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.577}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.498}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.741}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.733}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.635}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.922}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.88}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.807}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.015}, {"date": "2013-06-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.838}, {"date": "2013-06-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.838}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.567}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.478}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.748}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.496}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.41}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.676}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.66}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.557}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.86}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.813}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.732}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.964}, {"date": "2013-07-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.817}, {"date": "2013-07-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.817}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.563}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.481}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.729}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.492}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.413}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.657}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.654}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.558}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.84}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.81}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.737}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.947}, {"date": "2013-07-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.828}, {"date": "2013-07-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.828}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.706}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.634}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.853}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.639}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.57}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.786}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.786}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.701}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.952}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.943}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.88}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.059}, {"date": "2013-07-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.867}, {"date": "2013-07-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.867}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.751}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.678}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.898}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.682}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.612}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.831}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.831}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.746}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.995}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.993}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.932}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.105}, {"date": "2013-07-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.903}, {"date": "2013-07-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.903}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.716}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.638}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.876}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.646}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.57}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.806}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.801}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.71}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.975}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.963}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.895}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.091}, {"date": "2013-07-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.915}, {"date": "2013-07-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.915}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.701}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.633}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.84}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.632}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.566}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.769}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.781}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.7}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.938}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.947}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.887}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.059}, {"date": "2013-08-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.909}, {"date": "2013-08-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.909}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.633}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.562}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.778}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.561}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.493}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.703}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.719}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.635}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.883}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.886}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.82}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.01}, {"date": "2013-08-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.896}, {"date": "2013-08-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.896}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.622}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.565}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.738}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.55}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.496}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.664}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.707}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.638}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.841}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.874}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.824}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.967}, {"date": "2013-08-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.9}, {"date": "2013-08-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.9}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.623}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.573}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.727}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.552}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.504}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.653}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.707}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.644}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.829}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.875}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.832}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.956}, {"date": "2013-08-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.913}, {"date": "2013-08-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.913}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.678}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.641}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.751}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.608}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.575}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.679}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.76}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.713}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.851}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.922}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.893}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.977}, {"date": "2013-09-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.981}, {"date": "2013-09-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.981}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.658}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.607}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.761}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.587}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.54}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.687}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.741}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.678}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.864}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.906}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.862}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.987}, {"date": "2013-09-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.981}, {"date": "2013-09-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.981}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.619}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.544}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.773}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.547}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.475}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.698}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.709}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.617}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.887}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.87}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.802}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.995}, {"date": "2013-09-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.974}, {"date": "2013-09-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.974}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.567}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.493}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.717}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.495}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.425}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.641}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.656}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.564}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.833}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.819}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.751}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.945}, {"date": "2013-09-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.949}, {"date": "2013-09-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.949}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.499}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.425}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.651}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.425}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.354}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.574}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.596}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.507}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.77}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.758}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.691}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.881}, {"date": "2013-09-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.919}, {"date": "2013-09-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.919}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.441}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.369}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.589}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.367}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.298}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.511}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.535}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.445}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.708}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.701}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.635}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.824}, {"date": "2013-10-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.897}, {"date": "2013-10-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.897}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.43}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.368}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.557}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.354}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.296}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.478}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.527}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.451}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.676}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.694}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.638}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.798}, {"date": "2013-10-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.886}, {"date": "2013-10-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.886}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.435}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.382}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.542}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.36}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.31}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.464}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.531}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.463}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.663}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.696}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.652}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.779}, {"date": "2013-10-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.886}, {"date": "2013-10-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.886}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.372}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.311}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.498}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.294}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.235}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.417}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.475}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.4}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.621}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.644}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.591}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.742}, {"date": "2013-10-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.87}, {"date": "2013-10-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.87}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.343}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.284}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.463}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.265}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.209}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.382}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.441}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.366}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.584}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.614}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.564}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.708}, {"date": "2013-11-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.857}, {"date": "2013-11-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.857}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.274}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.21}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.405}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.194}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.133}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.323}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.38}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.303}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.528}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.552}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.498}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.651}, {"date": "2013-11-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.832}, {"date": "2013-11-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.832}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.298}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.239}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.419}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.219}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.161}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.341}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.401}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.333}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.532}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.573}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.526}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.661}, {"date": "2013-11-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.822}, {"date": "2013-11-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.822}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.372}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.32}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.478}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.293}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.241}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.401}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.47}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.413}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.581}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.649}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.611}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.719}, {"date": "2013-11-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.844}, {"date": "2013-11-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.844}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.353}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.29}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.482}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.272}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.209}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.403}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.457}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.387}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.592}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.635}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.585}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.729}, {"date": "2013-12-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.883}, {"date": "2013-12-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.883}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.35}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.287}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.478}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.269}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.208}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.397}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.453}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.381}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.591}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.632}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.579}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.73}, {"date": "2013-12-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.879}, {"date": "2013-12-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.879}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.321}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.245}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.475}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.239}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.165}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.395}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.423}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.339}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.585}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.605}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.541}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.725}, {"date": "2013-12-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.871}, {"date": "2013-12-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.871}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.351}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.277}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.502}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.271}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.198}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.422}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.451}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.368}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.613}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.632}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.567}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.751}, {"date": "2013-12-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.873}, {"date": "2013-12-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.873}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.409}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.34}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.548}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.331}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.264}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.471}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.503}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.425}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.654}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.682}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.625}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.789}, {"date": "2013-12-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.903}, {"date": "2013-12-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.903}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.411}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.34}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.557}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.332}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.261}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.48}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.513}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.434}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.665}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.69}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.633}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.796}, {"date": "2014-01-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.91}, {"date": "2014-01-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.91}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.406}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.345}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.53}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.327}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.267}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.452}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.505}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.435}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.641}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.683}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.636}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.771}, {"date": "2014-01-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.886}, {"date": "2014-01-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.886}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.376}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.319}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.494}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.296}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.24}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.414}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.477}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.41}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.607}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.657}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.611}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.741}, {"date": "2014-01-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.873}, {"date": "2014-01-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.873}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.375}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.32}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.486}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.295}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.241}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.407}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.474}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.41}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.598}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.654}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.612}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.731}, {"date": "2014-01-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.904}, {"date": "2014-01-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.904}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.372}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.322}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.475}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.292}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.243}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.395}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.475}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.415}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.59}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.651}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.612}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.723}, {"date": "2014-02-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.951}, {"date": "2014-02-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.951}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.388}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.335}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.496}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.309}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.257}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.417}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.487}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.423}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.61}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.664}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.623}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.739}, {"date": "2014-02-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.977}, {"date": "2014-02-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.977}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.457}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.402}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.569}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.38}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.326}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.492}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.555}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.491}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.678}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.728}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.686}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.806}, {"date": "2014-02-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.989}, {"date": "2014-02-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.989}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.52}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.469}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.624}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.444}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.394}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.55}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.615}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.555}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.73}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.783}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.747}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.85}, {"date": "2014-02-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.017}, {"date": "2014-02-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.017}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.553}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.494}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.673}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.479}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.421}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.601}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.648}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.58}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.779}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.812}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.768}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.893}, {"date": "2014-03-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.016}, {"date": "2014-03-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.016}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.584}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.523}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.707}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.512}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.452}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.637}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.674}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.605}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.81}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.835}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.788}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.923}, {"date": "2014-03-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.021}, {"date": "2014-03-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.021}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.619}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.56}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.74}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.547}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.489}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.669}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.71}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.638}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.848}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.871}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.825}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.956}, {"date": "2014-03-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.003}, {"date": "2014-03-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.003}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.622}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.559}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.751}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.549}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.487}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.68}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.716}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.642}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.859}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.876}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.828}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.965}, {"date": "2014-03-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.988}, {"date": "2014-03-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.988}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.651}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.592}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.771}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.579}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.521}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.701}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.743}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.673}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.879}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.904}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.86}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.984}, {"date": "2014-03-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.975}, {"date": "2014-03-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.975}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.67}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.607}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.798}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.596}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.533}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.728}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.769}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.697}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.907}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.928}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.884}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.009}, {"date": "2014-04-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.959}, {"date": "2014-04-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.959}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.725}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.655}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.867}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.651}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.581}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.798}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.823}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.743}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.978}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.976}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.927}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.068}, {"date": "2014-04-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.952}, {"date": "2014-04-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.952}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.758}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.687}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.901}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.683}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.612}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.832}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.857}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.779}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.01}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.014}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.966}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.104}, {"date": "2014-04-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.971}, {"date": "2014-04-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.971}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.788}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.71}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.947}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.713}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.635}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.879}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.888}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.802}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.055}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.047}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.991}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.152}, {"date": "2014-04-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.975}, {"date": "2014-04-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.975}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.761}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.683}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.92}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.684}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.606}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.849}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.864}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.777}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.033}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.027}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.971}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.13}, {"date": "2014-05-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.964}, {"date": "2014-05-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.964}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.746}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.675}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.89}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.668}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.597}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.817}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.85}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.771}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.003}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.015}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.966}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.107}, {"date": "2014-05-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.948}, {"date": "2014-05-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.948}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.743}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.671}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.889}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.665}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.593}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.816}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.844}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.763}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.002}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.011}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.96}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.106}, {"date": "2014-05-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.934}, {"date": "2014-05-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.934}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.75}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.683}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.887}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.674}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.607}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.815}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.85}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.773}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.998}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.014}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.966}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.102}, {"date": "2014-05-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.925}, {"date": "2014-05-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.925}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.765}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.699}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.9}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.69}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.624}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.83}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.862}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.786}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.009}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.024}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.977}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.113}, {"date": "2014-06-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.918}, {"date": "2014-06-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.918}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.749}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.683}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.882}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.674}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.61}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.811}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.844}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.768}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.992}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.008}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.959}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.098}, {"date": "2014-06-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.892}, {"date": "2014-06-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.892}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.76}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.694}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.894}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.686}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.621}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.824}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.853}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.777}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.016}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.966}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.109}, {"date": "2014-06-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.882}, {"date": "2014-06-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.882}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.778}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.713}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.911}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.704}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.639}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.84}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.873}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.8}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.016}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.036}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.988}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.126}, {"date": "2014-06-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.919}, {"date": "2014-06-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.919}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.778}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.708}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.921}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.704}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.635}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.85}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.872}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.793}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.024}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.036}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.981}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.137}, {"date": "2014-06-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.92}, {"date": "2014-06-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.92}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.753}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.68}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.903}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.678}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.605}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.831}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.849}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.766}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.01}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.015}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.957}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.123}, {"date": "2014-07-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.913}, {"date": "2014-07-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.913}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.712}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.635}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.868}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.635}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.56}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.793}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.811}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.725}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.979}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.978}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.915}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.094}, {"date": "2014-07-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.894}, {"date": "2014-07-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.894}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.671}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.599}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.816}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.593}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.523}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.741}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.773}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.692}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.93}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.938}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.881}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.045}, {"date": "2014-07-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.869}, {"date": "2014-07-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.869}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.617}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.544}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.766}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.539}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.468}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.687}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.723}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.639}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.886}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.888}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.825}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.005}, {"date": "2014-07-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.858}, {"date": "2014-07-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.858}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.595}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.526}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.734}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.515}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.449}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.655}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.701}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.622}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.854}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.866}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.81}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.971}, {"date": "2014-08-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.853}, {"date": "2014-08-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.853}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.582}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.522}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.705}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.505}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.447}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.628}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.684}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.612}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.822}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.85}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.8}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.941}, {"date": "2014-08-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.843}, {"date": "2014-08-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.843}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.549}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.484}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.682}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.472}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.408}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.605}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.653}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.577}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.8}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.816}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.764}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.915}, {"date": "2014-08-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.835}, {"date": "2014-08-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.835}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.532}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.473}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.653}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.454}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.397}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.574}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.635}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.563}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.773}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.8}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.753}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.889}, {"date": "2014-08-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.821}, {"date": "2014-08-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.821}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.536}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.486}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.638}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.459}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.41}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.561}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.638}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.577}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.755}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.803}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.767}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.871}, {"date": "2014-09-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.814}, {"date": "2014-09-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.814}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.534}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.482}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.639}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.457}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.406}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.563}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.632}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.571}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.751}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.801}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.763}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.871}, {"date": "2014-09-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.814}, {"date": "2014-09-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.814}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.485}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.428}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.601}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.408}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.352}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.525}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.585}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.518}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.713}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.754}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.712}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.833}, {"date": "2014-09-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.801}, {"date": "2014-09-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.801}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.432}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.375}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.549}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.353}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.296}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.472}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.536}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.47}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.662}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.707}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.666}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.784}, {"date": "2014-09-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.778}, {"date": "2014-09-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.778}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.434}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.384}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.537}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.354}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.304}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.459}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.537}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.478}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.652}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.71}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.677}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.773}, {"date": "2014-09-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.755}, {"date": "2014-09-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.755}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.382}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.329}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.49}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.299}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.246}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.41}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.492}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.432}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.609}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.667}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.631}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.733}, {"date": "2014-10-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.733}, {"date": "2014-10-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.733}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.292}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.229}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.418}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.207}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.147}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.334}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.406}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.335}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.544}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.581}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.532}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.673}, {"date": "2014-10-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.698}, {"date": "2014-10-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.698}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.205}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.154}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.309}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.12}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.07}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.223}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.319}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.257}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.439}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.499}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.46}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.571}, {"date": "2014-10-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.656}, {"date": "2014-10-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.656}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.139}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.094}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.231}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.056}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.016}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.142}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.248}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.188}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.364}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.425}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.385}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.5}, {"date": "2014-10-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.635}, {"date": "2014-10-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.635}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.077}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.037}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.16}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.993}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.956}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.071}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.187}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.133}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.29}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.369}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.335}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.432}, {"date": "2014-11-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.623}, {"date": "2014-11-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.623}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.025}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.988}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.1}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.941}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.907}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.012}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.134}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.085}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.229}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.315}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.286}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.37}, {"date": "2014-11-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.677}, {"date": "2014-11-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.677}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.978}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.938}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.06}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.894}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.856}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.973}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.088}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.037}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.186}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.27}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.239}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.328}, {"date": "2014-11-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.661}, {"date": "2014-11-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.661}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.907}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.864}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.994}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.821}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.781}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.904}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.019}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.964}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.125}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.205}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.17}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.271}, {"date": "2014-11-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.628}, {"date": "2014-11-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.628}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.864}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.821}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.953}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.778}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.738}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.861}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.978}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.922}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.086}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.164}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.127}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.234}, {"date": "2014-12-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.605}, {"date": "2014-12-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.605}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.767}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.718}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.869}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.679}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.634}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.776}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.882}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.819}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.003}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.072}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.028}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.153}, {"date": "2014-12-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.535}, {"date": "2014-12-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.535}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.643}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.586}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.76}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.554}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.499}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.667}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.763}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.694}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.895}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.951}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.902}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.041}, {"date": "2014-12-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.419}, {"date": "2014-12-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.419}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.496}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.43}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.629}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.403}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.341}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.535}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.619}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.544}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.766}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.813}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.757}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.917}, {"date": "2014-12-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.281}, {"date": "2014-12-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.281}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.392}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.32}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.539}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.299}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.229}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.445}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.517}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.436}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.675}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.713}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.651}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.828}, {"date": "2014-12-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.213}, {"date": "2014-12-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.213}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.308}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.228}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.472}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.214}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.136}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.378}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.437}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.346}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.614}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.631}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.562}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.759}, {"date": "2015-01-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.137}, {"date": "2015-01-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.137}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.232}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.157}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.386}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.139}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.066}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.293}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.358}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.273}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.524}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.553}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.492}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.668}, {"date": "2015-01-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.053}, {"date": "2015-01-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.053}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.157}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.089}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.295}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.066}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.999}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.204}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.277}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.198}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.43}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.473}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.42}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.573}, {"date": "2015-01-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.933}, {"date": "2015-01-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.933}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.133}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.069}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.264}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.044}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.982}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.174}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.25}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.173}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.399}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.444}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.393}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.538}, {"date": "2015-01-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.866}, {"date": "2015-01-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.866}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.154}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.097}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.271}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.068}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.013}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.183}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.268}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.198}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.402}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.454}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.409}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.536}, {"date": "2015-02-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.831}, {"date": "2015-02-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.831}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.276}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.216}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.397}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.191}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.133}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.313}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.388}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.318}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.524}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.568}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.524}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.648}, {"date": "2015-02-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.835}, {"date": "2015-02-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.835}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.358}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.29}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.498}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.274}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.206}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.416}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.467}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.384}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.627}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.651}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.6}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.746}, {"date": "2015-02-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.865}, {"date": "2015-02-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.865}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.415}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.338}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.573}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.332}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.256}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.491}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.526}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.432}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.708}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.704}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.645}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.815}, {"date": "2015-02-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.9}, {"date": "2015-02-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.9}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.556}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.441}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.79}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.473}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.36}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.71}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.671}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.534}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.937}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.837}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.741}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.017}, {"date": "2015-03-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.936}, {"date": "2015-03-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.936}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.57}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.448}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.819}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.487}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.367}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.739}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.686}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.542}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.964}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.853}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.749}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.045}, {"date": "2015-03-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.944}, {"date": "2015-03-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.944}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.537}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.42}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.776}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.453}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.339}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.693}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.652}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.514}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.919}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.824}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.721}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.015}, {"date": "2015-03-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.917}, {"date": "2015-03-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.917}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.538}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.427}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.764}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.457}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.347}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.685}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.65}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.519}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.903}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.817}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.725}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.987}, {"date": "2015-03-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.864}, {"date": "2015-03-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.864}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.531}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.43}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.737}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.448}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.348}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.658}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.649}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.53}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.877}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.814}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.733}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.964}, {"date": "2015-03-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.824}, {"date": "2015-03-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.824}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.499}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.399}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.701}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.413}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.315}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.619}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.617}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.502}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.839}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.789}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.709}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.938}, {"date": "2015-04-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.784}, {"date": "2015-04-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.784}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.494}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.402}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.68}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.408}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.317}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.598}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.616}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.51}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.821}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.786}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.714}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.919}, {"date": "2015-04-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.754}, {"date": "2015-04-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.754}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.57}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.477}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.759}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.485}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.393}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.679}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.686}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.582}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.888}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.857}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.785}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.992}, {"date": "2015-04-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.78}, {"date": "2015-04-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.78}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.656}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.536}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.899}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.57}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.451}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.821}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.777}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.643}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.036}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.947}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.85}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.126}, {"date": "2015-04-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.811}, {"date": "2015-04-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.811}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.749}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.601}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.049}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.664}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.517}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.971}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.87}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.703}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.192}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.036}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.911}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.269}, {"date": "2015-05-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.854}, {"date": "2015-05-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.854}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.776}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.631}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.072}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.691}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.547}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.995}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.9}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.738}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.214}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.063}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.94}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.291}, {"date": "2015-05-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.878}, {"date": "2015-05-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.878}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.827}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.687}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.114}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.744}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.604}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.037}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.949}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.789}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.26}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.109}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.991}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.328}, {"date": "2015-05-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.904}, {"date": "2015-05-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.904}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.857}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.724}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.129}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.774}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.642}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.051}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.975}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.825}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.267}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.14}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.026}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.351}, {"date": "2015-05-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.914}, {"date": "2015-05-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.914}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.863}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.738}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.118}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.78}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.656}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.041}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.978}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.837}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.25}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.143}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.038}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.338}, {"date": "2015-06-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.909}, {"date": "2015-06-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.909}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.863}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.751}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.093}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.78}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.668}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.014}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.977}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.849}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.224}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.15}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.057}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.323}, {"date": "2015-06-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.884}, {"date": "2015-06-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.884}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.918}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.825}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.105}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.835}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.744}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.028}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.025}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.922}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.225}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.202}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.128}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.338}, {"date": "2015-06-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.87}, {"date": "2015-06-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.87}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.895}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.803}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.082}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.812}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.72}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.004}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.006}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.902}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.206}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.182}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.109}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.317}, {"date": "2015-06-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.859}, {"date": "2015-06-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.859}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.885}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.796}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.066}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.801}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.713}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.985}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.997}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.896}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.193}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.175}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.103}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.31}, {"date": "2015-06-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.843}, {"date": "2015-06-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.843}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.877}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.786}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.063}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.793}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.702}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.982}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.99}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.887}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.188}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.168}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.093}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.307}, {"date": "2015-07-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.832}, {"date": "2015-07-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.832}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.92}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.778}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.21}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.834}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.694}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.127}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.044}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.878}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.364}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.213}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.087}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.446}, {"date": "2015-07-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.814}, {"date": "2015-07-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.814}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.888}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.744}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.183}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.802}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.661}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.098}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.012}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.841}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.343}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.179}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.049}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.419}, {"date": "2015-07-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.782}, {"date": "2015-07-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.782}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.833}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.69}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.124}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.745}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.605}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.037}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.96}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.792}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.286}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.129}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.002}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.365}, {"date": "2015-07-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.723}, {"date": "2015-07-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.723}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.779}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.641}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.06}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.689}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.555}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.971}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.909}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.745}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.225}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.083}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.959}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.314}, {"date": "2015-08-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.668}, {"date": "2015-08-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.668}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.72}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.594}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.977}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.629}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.505}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.888}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.85}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.703}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.134}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.03}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.92}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.236}, {"date": "2015-08-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.617}, {"date": "2015-08-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.617}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.803}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.691}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.029}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.716}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.608}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.943}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.927}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.794}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.184}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.096}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.999}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.276}, {"date": "2015-08-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.615}, {"date": "2015-08-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.615}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.726}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.62}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.941}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.637}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.534}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.853}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.854}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.728}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.098}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.027}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.936}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.197}, {"date": "2015-08-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.561}, {"date": "2015-08-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.561}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.602}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.496}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.819}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.51}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.406}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.727}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.734}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.606}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.981}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.916}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.824}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.087}, {"date": "2015-08-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.514}, {"date": "2015-08-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.514}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.532}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.428}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.743}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.437}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.337}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.648}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.662}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.536}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.908}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.853}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.764}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.02}, {"date": "2015-09-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.534}, {"date": "2015-09-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.534}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.471}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.374}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.67}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.375}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.28}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.573}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.605}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.488}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.833}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.801}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.72}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.952}, {"date": "2015-09-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.517}, {"date": "2015-09-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.517}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.425}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.332}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.615}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.327}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.237}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.518}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.561}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.449}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.778}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.759}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.682}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.9}, {"date": "2015-09-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.493}, {"date": "2015-09-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.493}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.418}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.34}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.579}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.322}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.246}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.482}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.551}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.454}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.739}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.748}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.685}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.864}, {"date": "2015-09-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.476}, {"date": "2015-09-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.476}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.415}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.347}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.554}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.318}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.252}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.456}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.545}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.459}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.712}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.748}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.697}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.842}, {"date": "2015-10-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.492}, {"date": "2015-10-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.492}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.432}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.376}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.545}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.337}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.283}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.448}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.561}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.487}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.703}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.757}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.717}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.832}, {"date": "2015-10-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.556}, {"date": "2015-10-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.556}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.374}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.314}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.494}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.277}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.22}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.396}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.505}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.429}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.653}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.705}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.662}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.786}, {"date": "2015-10-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.531}, {"date": "2015-10-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.531}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.326}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.262}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.457}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.228}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.166}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.357}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.46}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.379}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.617}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.663}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.614}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.755}, {"date": "2015-10-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.498}, {"date": "2015-10-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.498}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.322}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.265}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.439}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.224}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.17}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.337}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.455}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.379}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.602}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.66}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.617}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.741}, {"date": "2015-11-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.485}, {"date": "2015-11-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.485}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.335}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.269}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.468}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.235}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.172}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.367}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.468}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.387}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.626}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.678}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.629}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.769}, {"date": "2015-11-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.502}, {"date": "2015-11-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.502}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.281}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.21}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.424}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.178}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.11}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.322}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.42}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.335}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.585}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.633}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.58}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.731}, {"date": "2015-11-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.482}, {"date": "2015-11-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.482}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.198}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.117}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.362}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.094}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.015}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.258}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.338}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.243}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.522}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.556}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.492}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.675}, {"date": "2015-11-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.445}, {"date": "2015-11-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.445}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.165}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.079}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.34}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.059}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.974}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.236}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.308}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.209}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.501}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.529}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.462}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.655}, {"date": "2015-11-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.421}, {"date": "2015-11-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.421}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.159}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.074}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.334}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.053}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.969}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.231}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.303}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.206}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.49}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.523}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.457}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.647}, {"date": "2015-12-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.379}, {"date": "2015-12-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.379}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.144}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.059}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.317}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.037}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.953}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.214}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.287}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.191}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.474}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.509}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.446}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.626}, {"date": "2015-12-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.338}, {"date": "2015-12-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.338}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.133}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.035}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.332}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.026}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.929}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.23}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.28}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.169}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.495}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.499}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.425}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.638}, {"date": "2015-12-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.284}, {"date": "2015-12-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.284}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.141}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.039}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.348}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.034}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.933}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.244}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.29}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.172}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.519}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.506}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.427}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.653}, {"date": "2015-12-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.237}, {"date": "2015-12-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.237}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.135}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.027}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.354}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.028}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.922}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.25}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.285}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.161}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.525}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.498}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.413}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.656}, {"date": "2016-01-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.211}, {"date": "2016-01-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.211}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.104}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.994}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.327}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.996}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.888}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.224}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.253}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.126}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.499}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.469}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.382}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.631}, {"date": "2016-01-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.177}, {"date": "2016-01-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.177}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.022}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.917}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.235}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.914}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.81}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.131}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.172}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.052}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.404}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.39}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.308}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.544}, {"date": "2016-01-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.112}, {"date": "2016-01-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.112}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.965}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.859}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.182}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.856}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.752}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.076}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.118}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.996}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.352}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.337}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.252}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.495}, {"date": "2016-01-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.071}, {"date": "2016-01-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.071}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.932}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.837}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.124}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.822}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.729}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.017}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.085}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.976}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.294}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.307}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.233}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.443}, {"date": "2016-02-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.031}, {"date": "2016-02-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.031}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.87}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.773}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.068}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.759}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.663}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.961}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.025}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.915}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.237}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.247}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.172}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.388}, {"date": "2016-02-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.008}, {"date": "2016-02-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.008}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.834}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.747}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.01}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.724}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.638}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.904}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.984}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.885}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.176}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.209}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.144}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.33}, {"date": "2016-02-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.98}, {"date": "2016-02-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 1.98}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.837}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.767}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 1.98}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.73}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.661}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.874}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 1.983}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.902}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.14}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.205}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.154}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.3}, {"date": "2016-02-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.983}, {"date": "2016-02-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 1.983}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.887}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.817}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.03}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.783}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.715}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.925}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.029}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 1.943}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.196}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.244}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.191}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.342}, {"date": "2016-02-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 1.989}, {"date": "2016-02-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 1.989}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.943}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.882}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.067}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.841}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.782}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 1.964}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.081}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.005}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.227}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.294}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.25}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.374}, {"date": "2016-03-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.021}, {"date": "2016-03-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.021}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.062}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.988}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.214}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.961}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.888}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.116}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.2}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.114}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.366}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.409}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.357}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.505}, {"date": "2016-03-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.099}, {"date": "2016-03-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.099}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.109}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.036}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.258}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.007}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.935}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.159}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.248}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.163}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.413}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.461}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.41}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.555}, {"date": "2016-03-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.119}, {"date": "2016-03-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.119}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.169}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.079}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.353}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.066}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.976}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.255}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.31}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.208}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.507}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.521}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.454}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.645}, {"date": "2016-03-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.121}, {"date": "2016-03-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.121}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.185}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.095}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.367}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.083}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.994}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.271}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.323}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.222}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.52}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.532}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.465}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.655}, {"date": "2016-04-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.115}, {"date": "2016-04-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.115}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.173}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.085}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.351}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.069}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.981}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.253}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.315}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.217}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.504}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.527}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.463}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.645}, {"date": "2016-04-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.128}, {"date": "2016-04-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.128}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.24}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.155}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.411}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.137}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.053}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.314}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.378}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.283}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.562}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.59}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.528}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.706}, {"date": "2016-04-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.165}, {"date": "2016-04-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.165}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.265}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.182}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.432}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.162}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.08}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.335}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.405}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.313}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.582}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.616}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.557}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.725}, {"date": "2016-04-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.198}, {"date": "2016-04-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.198}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.342}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.271}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.487}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.24}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.168}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.391}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.482}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.404}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.633}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.693}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.647}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.778}, {"date": "2016-05-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.266}, {"date": "2016-05-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.266}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.325}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.249}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.481}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.22}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.143}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.384}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.469}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.387}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.627}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.683}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.633}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.775}, {"date": "2016-05-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.271}, {"date": "2016-05-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.271}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.345}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.274}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.489}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.242}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.17}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.392}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.485}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.41}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.631}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.7}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.655}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.785}, {"date": "2016-05-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.297}, {"date": "2016-05-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.297}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.403}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.339}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.532}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.3}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.235}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.435}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.541}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.472}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.674}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.756}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.717}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.828}, {"date": "2016-05-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.357}, {"date": "2016-05-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.357}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.44}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.382}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.557}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.339}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.281}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.461}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.574}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.511}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.696}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.788}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.753}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.852}, {"date": "2016-05-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.382}, {"date": "2016-05-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.382}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.482}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.43}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.586}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.381}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.328}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.491}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.616}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.56}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.725}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.83}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.804}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.876}, {"date": "2016-06-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.407}, {"date": "2016-06-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.407}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.499}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.444}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.61}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.399}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.343}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.516}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.632}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.573}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.748}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.842}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.812}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.896}, {"date": "2016-06-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.431}, {"date": "2016-06-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.431}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.455}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.393}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.581}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.353}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.29}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.484}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.592}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.523}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.725}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.805}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.77}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.872}, {"date": "2016-06-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.426}, {"date": "2016-06-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.426}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.432}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.353}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.593}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.329}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.25}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.496}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.57}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.481}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.742}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.785}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.732}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.885}, {"date": "2016-06-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.426}, {"date": "2016-06-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.426}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.396}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.311}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.57}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.291}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.205}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.472}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.537}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.442}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.72}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.755}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.696}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.865}, {"date": "2016-07-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.423}, {"date": "2016-07-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.423}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.359}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.276}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.527}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.253}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.171}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.426}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.501}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.408}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.682}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.721}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.663}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.83}, {"date": "2016-07-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.414}, {"date": "2016-07-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.414}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.336}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.254}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.503}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.23}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.148}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.402}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.479}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.386}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.657}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.701}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.645}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.806}, {"date": "2016-07-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.402}, {"date": "2016-07-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.402}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.289}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.211}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.447}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.182}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.105}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.344}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.434}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.345}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.606}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.656}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.602}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.757}, {"date": "2016-07-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.379}, {"date": "2016-07-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.379}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.267}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.198}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.406}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.159}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.091}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.302}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.413}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.335}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.565}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.635}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.591}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.716}, {"date": "2016-08-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.348}, {"date": "2016-08-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.348}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.256}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.193}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.384}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.15}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.087}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.281}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.398}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.325}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.539}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.621}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.582}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.693}, {"date": "2016-08-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.316}, {"date": "2016-08-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.316}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.256}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.203}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.364}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.149}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.096}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.262}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.401}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.34}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.518}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.622}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.593}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.674}, {"date": "2016-08-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.31}, {"date": "2016-08-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.31}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.299}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.243}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.413}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.193}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.136}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.312}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.441}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.378}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.563}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.664}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.635}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.718}, {"date": "2016-08-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.37}, {"date": "2016-08-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.37}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.341}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.292}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.441}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.237}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.187}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.341}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.481}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.424}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.589}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.701}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.677}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.747}, {"date": "2016-08-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.409}, {"date": "2016-08-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.409}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.329}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.277}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.436}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.223}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.17}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.333}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.468}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.405}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.588}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.698}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.671}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.749}, {"date": "2016-09-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.407}, {"date": "2016-09-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.407}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.31}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.246}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.439}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.202}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.138}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.336}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.454}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.38}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.597}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.68}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.642}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.751}, {"date": "2016-09-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.399}, {"date": "2016-09-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.399}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.333}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.28}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.443}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.225}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.17}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.339}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.481}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.419}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.6}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.706}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.679}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.756}, {"date": "2016-09-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.389}, {"date": "2016-09-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.389}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.334}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.276}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.451}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.224}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.166}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.348}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.484}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.419}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.609}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.708}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.679}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.762}, {"date": "2016-09-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.382}, {"date": "2016-09-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.382}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.354}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.295}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.476}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.245}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.184}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.375}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.506}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.441}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.631}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.726}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.696}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.782}, {"date": "2016-10-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.389}, {"date": "2016-10-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.389}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.381}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.327}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.491}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.272}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.216}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.389}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.529}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.469}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.644}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.754}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.728}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.802}, {"date": "2016-10-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.445}, {"date": "2016-10-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.445}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.367}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.309}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.484}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.257}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.198}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.381}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.516}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.452}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.64}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.742}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.712}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.797}, {"date": "2016-10-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.481}, {"date": "2016-10-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.481}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.353}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.286}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.49}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.243}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.175}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.386}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.502}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.429}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.644}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.73}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.689}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.804}, {"date": "2016-10-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.478}, {"date": "2016-10-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.478}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.341}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.27}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.484}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.23}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.159}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.379}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.493}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.415}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.645}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.719}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.675}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.801}, {"date": "2016-10-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.479}, {"date": "2016-10-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.479}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.345}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.27}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.499}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.233}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.157}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.392}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.498}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.416}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.656}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.732}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.681}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.826}, {"date": "2016-11-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.47}, {"date": "2016-11-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.47}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.298}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.22}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.458}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.184}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.105}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.349}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.455}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.37}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.618}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.691}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.64}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.787}, {"date": "2016-11-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.443}, {"date": "2016-11-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.443}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.269}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.192}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.427}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.155}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.078}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.318}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.423}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.341}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.582}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.66}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.605}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.762}, {"date": "2016-11-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.421}, {"date": "2016-11-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.421}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.268}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.193}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.42}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.154}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.079}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.312}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.423}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.342}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.578}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.657}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.607}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.75}, {"date": "2016-11-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.42}, {"date": "2016-11-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.42}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.321}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.25}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.464}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.208}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.137}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.356}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.471}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.397}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.615}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.71}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.664}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.795}, {"date": "2016-12-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.48}, {"date": "2016-12-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.48}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.347}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.286}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.473}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.236}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.174}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.366}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.494}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.428}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.622}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.732}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.695}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.801}, {"date": "2016-12-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.493}, {"date": "2016-12-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.493}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.375}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.316}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.496}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.264}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.203}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.391}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.522}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.461}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.639}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.761}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.727}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.824}, {"date": "2016-12-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.527}, {"date": "2016-12-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.527}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.419}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.364}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.531}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.309}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.254}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.426}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.561}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.502}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.673}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.799}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.768}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.858}, {"date": "2016-12-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.54}, {"date": "2016-12-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.54}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.485}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.429}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.601}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.377}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.319}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.497}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.622}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.56}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.742}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.865}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.832}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.927}, {"date": "2017-01-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.586}, {"date": "2017-01-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.586}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.496}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.437}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.618}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.388}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.328}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.514}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.636}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.571}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.76}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.874}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.838}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.941}, {"date": "2017-01-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.597}, {"date": "2017-01-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.597}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.467}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.407}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.59}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.358}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.298}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.486}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.607}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.542}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.732}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.845}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.807}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.914}, {"date": "2017-01-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.585}, {"date": "2017-01-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.585}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.436}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.368}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.573}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.326}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.258}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.468}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.578}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.505}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.719}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.817}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.771}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.901}, {"date": "2017-01-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.569}, {"date": "2017-01-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.569}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.408}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.337}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.552}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.296}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.224}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.446}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.553}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.476}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.703}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.795}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.749}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.882}, {"date": "2017-01-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.562}, {"date": "2017-01-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.562}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.405}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.333}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.552}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.293}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.221}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.446}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.552}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.474}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.703}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.79}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.743}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.878}, {"date": "2017-02-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.558}, {"date": "2017-02-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.558}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.418}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.34}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.578}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.307}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.228}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.472}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.566}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.48}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.733}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.801}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.747}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.903}, {"date": "2017-02-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.565}, {"date": "2017-02-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.565}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.414}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.336}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.573}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.302}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.224}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.467}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.564}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.477}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.731}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.798}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.744}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.897}, {"date": "2017-02-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.572}, {"date": "2017-02-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.572}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.427}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.346}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.592}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.314}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.233}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.484}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.579}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.489}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.753}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.812}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.756}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.917}, {"date": "2017-02-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.577}, {"date": "2017-02-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.577}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.452}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.375}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.61}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.341}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.264}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.504}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.604}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.515}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.775}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.833}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.781}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.929}, {"date": "2017-03-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.579}, {"date": "2017-03-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.579}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.434}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.353}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.601}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.323}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.242}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.494}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.586}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.492}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.768}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.816}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.759}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.923}, {"date": "2017-03-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.564}, {"date": "2017-03-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.564}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.433}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.35}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.602}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.321}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.238}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.495}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.587}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.494}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.766}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.816}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.758}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.923}, {"date": "2017-03-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.539}, {"date": "2017-03-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.539}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.428}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.341}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.605}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.315}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.228}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.499}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.583}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.487}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.767}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.812}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.752}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.925}, {"date": "2017-03-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.532}, {"date": "2017-03-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.532}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.471}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.393}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.631}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.36}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.281}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.527}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.622}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.537}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.785}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.851}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.799}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.948}, {"date": "2017-04-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.556}, {"date": "2017-04-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.556}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.534}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.463}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.68}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.424}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.351}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.577}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.683}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.606}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.831}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.912}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.869}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.991}, {"date": "2017-04-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.582}, {"date": "2017-04-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.582}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.546}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.468}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.706}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.436}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.356}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.602}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.694}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.609}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.858}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.927}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.876}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.021}, {"date": "2017-04-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.597}, {"date": "2017-04-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.597}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.559}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.484}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.711}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.449}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.372}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.609}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.706}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.627}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.859}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.938}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.893}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.023}, {"date": "2017-04-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.595}, {"date": "2017-04-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.595}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.522}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.444}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.683}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.411}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.331}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.578}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.673}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.588}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.837}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.907}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.855}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.002}, {"date": "2017-05-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.583}, {"date": "2017-05-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.583}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.484}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.401}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.654}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.372}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.288}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.549}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.635}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.545}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.809}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.87}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.814}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.974}, {"date": "2017-05-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.565}, {"date": "2017-05-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.565}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.481}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.396}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.656}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.369}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.283}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.55}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.634}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.54}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.816}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.867}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.807}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.979}, {"date": "2017-05-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.544}, {"date": "2017-05-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.544}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.51}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.418}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.698}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.399}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.306}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.594}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.663}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.562}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.857}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.889}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.822}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.013}, {"date": "2017-05-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.539}, {"date": "2017-05-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.539}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.516}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.418}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.716}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.406}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.308}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.612}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.665}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.558}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.874}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.894}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.821}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.03}, {"date": "2017-05-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.571}, {"date": "2017-05-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.571}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.525}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.437}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.705}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.414}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.325}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.601}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.677}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.579}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.864}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.906}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.843}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.022}, {"date": "2017-06-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.564}, {"date": "2017-06-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.564}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.479}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.389}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.661}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.366}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.276}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.554}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.633}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.535}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.823}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.865}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.8}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.984}, {"date": "2017-06-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.524}, {"date": "2017-06-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.524}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.433}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.339}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.623}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.318}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.224}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.514}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.593}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.492}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.789}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.825}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.756}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.952}, {"date": "2017-06-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.489}, {"date": "2017-06-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.489}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.404}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.316}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.583}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.288}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.201}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.473}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.565}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.468}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.753}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.799}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.735}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.916}, {"date": "2017-06-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.465}, {"date": "2017-06-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.465}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.376}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.278}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.574}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.26}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.163}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.464}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.536}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.43}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.742}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.77}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.696}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.907}, {"date": "2017-07-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.472}, {"date": "2017-07-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.472}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.411}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.324}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.588}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.297}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.21}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.481}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.569}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.475}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.749}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.798}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.736}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.912}, {"date": "2017-07-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.481}, {"date": "2017-07-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.481}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.392}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.303}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.574}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.278}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.188}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.466}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.551}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.455}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.736}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.781}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.719}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.898}, {"date": "2017-07-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.491}, {"date": "2017-07-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.491}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.426}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.34}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.601}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.312}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.224}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.495}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.582}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.492}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.757}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.816}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.76}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.92}, {"date": "2017-07-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.507}, {"date": "2017-07-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.507}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.467}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.386}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.631}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.352}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.269}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.526}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.623}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.538}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.787}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.86}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.81}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.952}, {"date": "2017-07-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.531}, {"date": "2017-07-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.531}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.492}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.405}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.668}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.378}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.29}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.564}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.644}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.553}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.821}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.882}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.825}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.987}, {"date": "2017-08-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.581}, {"date": "2017-08-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.581}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.497}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.416}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.664}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.384}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.301}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.558}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.653}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.565}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.823}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.886}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.834}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.983}, {"date": "2017-08-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.598}, {"date": "2017-08-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.598}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.474}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.389}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.649}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.36}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.273}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.543}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.631}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.539}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.811}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.865}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.81}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.968}, {"date": "2017-08-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.596}, {"date": "2017-08-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.596}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.513}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.438}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.665}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.399}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.322}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.561}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.668}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.588}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.825}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.901}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.859}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.981}, {"date": "2017-08-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.605}, {"date": "2017-08-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.605}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.794}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.722}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.939}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.679}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.604}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.835}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.946}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.875}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.085}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.191}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.153}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.262}, {"date": "2017-09-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.758}, {"date": "2017-09-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.758}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.8}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.728}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.946}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.685}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.61}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.842}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.953}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.88}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.092}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.197}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.158}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.268}, {"date": "2017-09-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.802}, {"date": "2017-09-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.802}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.75}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.678}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.897}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.634}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.559}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.791}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.906}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.831}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.05}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.151}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.112}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.224}, {"date": "2017-09-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.791}, {"date": "2017-09-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.791}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.701}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.629}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.846}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.583}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.508}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.74}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.859}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.785}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.001}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.105}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.069}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.171}, {"date": "2017-09-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.788}, {"date": "2017-09-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.788}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.682}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.614}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.82}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.565}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.493}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.715}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.841}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.772}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.975}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.085}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.055}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.142}, {"date": "2017-10-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.792}, {"date": "2017-10-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.792}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.622}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.547}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.774}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.504}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.426}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.668}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.78}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.702}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.932}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.025}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.986}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.098}, {"date": "2017-10-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.776}, {"date": "2017-10-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.776}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.605}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.532}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.754}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.489}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.413}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.648}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.764}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.687}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.913}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.003}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.964}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.077}, {"date": "2017-10-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.787}, {"date": "2017-10-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.787}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.594}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.523}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.739}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.479}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.406}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.632}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.75}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.672}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.902}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.987}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.946}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.064}, {"date": "2017-10-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.797}, {"date": "2017-10-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.797}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.602}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.526}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.758}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.488}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.41}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.652}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.76}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.679}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.918}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.994}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.947}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.081}, {"date": "2017-10-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.819}, {"date": "2017-10-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.819}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.673}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.583}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.858}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.561}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.468}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.754}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.829}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.732}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.018}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.059}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.999}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.17}, {"date": "2017-11-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.882}, {"date": "2017-11-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.882}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.706}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.619}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.881}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.592}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.504}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.777}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.865}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.771}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.046}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.092}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.037}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.194}, {"date": "2017-11-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.915}, {"date": "2017-11-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.915}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.683}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.597}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.858}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.568}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.48}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.753}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.843}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.75}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.022}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.075}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.021}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.174}, {"date": "2017-11-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.912}, {"date": "2017-11-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.912}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.648}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.562}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.825}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.533}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.444}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.719}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.81}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.717}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.99}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.043}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.988}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.146}, {"date": "2017-11-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.926}, {"date": "2017-11-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.926}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.617}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.528}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.797}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.5}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.41}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.689}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.778}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.683}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.962}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.014}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.957}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.122}, {"date": "2017-12-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.922}, {"date": "2017-12-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.922}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.601}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.519}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.769}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.485}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.401}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.661}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.763}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.675}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.933}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.949}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.095}, {"date": "2017-12-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.91}, {"date": "2017-12-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.91}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.568}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.478}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.75}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.45}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.358}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.642}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.731}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.636}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.914}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.969}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.912}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.076}, {"date": "2017-12-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.901}, {"date": "2017-12-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.901}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.589}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.502}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.765}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.472}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.384}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.658}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.749}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.655}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.931}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.985}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.929}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.09}, {"date": "2017-12-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.903}, {"date": "2017-12-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.903}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.637}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.554}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.804}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.52}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.436}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.697}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.798}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.711}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.965}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.035}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.983}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.129}, {"date": "2018-01-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.973}, {"date": "2018-01-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.973}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.639}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.548}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.824}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.522}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.429}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.716}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.802}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.705}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.989}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.04}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.981}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.15}, {"date": "2018-01-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.996}, {"date": "2018-01-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.996}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.673}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.589}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.843}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.557}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.473}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.735}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.831}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.74}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.009}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.068}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.013}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.169}, {"date": "2018-01-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.028}, {"date": "2018-01-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.028}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.684}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.601}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.854}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.567}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.482}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.744}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.845}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.754}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.022}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.085}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.031}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.184}, {"date": "2018-01-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.025}, {"date": "2018-01-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.025}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.723}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.634}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.905}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.607}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.516}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.797}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.882}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.784}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.07}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.122}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.064}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.229}, {"date": "2018-01-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.07}, {"date": "2018-01-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.07}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.753}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.661}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.94}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.637}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.544}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.832}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.914}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.813}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.109}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.149}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.089}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.262}, {"date": "2018-02-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.086}, {"date": "2018-02-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.086}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.724}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.63}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.915}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.607}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.511}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.806}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.888}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.785}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.086}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.125}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.063}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.239}, {"date": "2018-02-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.063}, {"date": "2018-02-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.063}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.676}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.576}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.881}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.557}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.455}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.77}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.843}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.732}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.056}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.082}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.013}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.21}, {"date": "2018-02-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.027}, {"date": "2018-02-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.027}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.666}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.561}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.88}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.548}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.442}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.77}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.83}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.713}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.055}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.069}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.996}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.205}, {"date": "2018-02-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.007}, {"date": "2018-02-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.007}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.679}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.582}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.877}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.56}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.462}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.767}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.845}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.738}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.053}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.084}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.02}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.204}, {"date": "2018-03-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.992}, {"date": "2018-03-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.992}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.677}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.574}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.887}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.559}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.455}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.777}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.843}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.728}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.065}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.078}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.007}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.21}, {"date": "2018-03-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.976}, {"date": "2018-03-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.976}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.716}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.612}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.926}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.598}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.494}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.817}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.881}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.765}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.105}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.114}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.043}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.247}, {"date": "2018-03-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.972}, {"date": "2018-03-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.972}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.764}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.659}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.979}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.648}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.541}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.871}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.928}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.81}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.157}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.161}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.086}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.299}, {"date": "2018-03-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.01}, {"date": "2018-03-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.01}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.817}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.71}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.033}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.7}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.592}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.927}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.979}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.863}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.205}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.212}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.14}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.345}, {"date": "2018-04-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.042}, {"date": "2018-04-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.042}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.811}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.707}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.024}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.694}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.587}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.918}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.977}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.864}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.196}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.209}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.14}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.338}, {"date": "2018-04-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.043}, {"date": "2018-04-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.043}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.863}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.762}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.068}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.747}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.644}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.963}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.025}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.915}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.238}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.256}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.189}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.381}, {"date": "2018-04-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.104}, {"date": "2018-04-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.104}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.914}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.814}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.119}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.798}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.696}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.014}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.075}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.967}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.284}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.31}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.243}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.433}, {"date": "2018-04-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.133}, {"date": "2018-04-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.133}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.961}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.858}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.17}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.846}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.741}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.068}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.117}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.008}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.33}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.353}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.285}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.479}, {"date": "2018-04-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.157}, {"date": "2018-04-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.157}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.96}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.851}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.182}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.845}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.733}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.078}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.119}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.003}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.343}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.354}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.28}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.491}, {"date": "2018-05-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.171}, {"date": "2018-05-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.171}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.949}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.846}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.148}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.873}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.786}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.055}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.212}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.076}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.405}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.452}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.347}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.574}, {"date": "2018-05-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.239}, {"date": "2018-05-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.239}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.999}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.893}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.201}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.923}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.834}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.109}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.257}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.121}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.448}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.497}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.391}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.617}, {"date": "2018-05-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.277}, {"date": "2018-05-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.277}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.039}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.937}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.235}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.962}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.877}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.142}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.296}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.165}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.482}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.536}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.435}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.653}, {"date": "2018-05-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.288}, {"date": "2018-05-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.288}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.018}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.91}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.226}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.94}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.849}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.131}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.285}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.146}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.482}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.524}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.417}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.647}, {"date": "2018-06-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.285}, {"date": "2018-06-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.285}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.989}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.883}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.194}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.911}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.822}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.099}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.259}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.122}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.453}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.495}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.387}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.619}, {"date": "2018-06-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.266}, {"date": "2018-06-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.266}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.958}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.852}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.161}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.879}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.79}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.064}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.23}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.093}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.422}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.47}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.359}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.598}, {"date": "2018-06-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.244}, {"date": "2018-06-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.244}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.913}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.808}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.116}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.833}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.745}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.018}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.189}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.055}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.38}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.432}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.324}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.557}, {"date": "2018-06-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.216}, {"date": "2018-06-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.216}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.924}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.824}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.117}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.844}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.762}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.019}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.197}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.068}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.382}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.439}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.335}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.559}, {"date": "2018-07-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.236}, {"date": "2018-07-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.236}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.937}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.837}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.132}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.857}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.774}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.034}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.207}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.08}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.389}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.454}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.354}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.571}, {"date": "2018-07-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.243}, {"date": "2018-07-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.243}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.943}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.852}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.12}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.865}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.79}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.023}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.209}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.093}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.377}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.451}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.362}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.555}, {"date": "2018-07-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.239}, {"date": "2018-07-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.239}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.911}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.818}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.092}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.831}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.754}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.994}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.18}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.06}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.352}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.426}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.338}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.529}, {"date": "2018-07-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.22}, {"date": "2018-07-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.22}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.924}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.834}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.102}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.846}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.772}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.006}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.189}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.075}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.357}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.433}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.349}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.533}, {"date": "2018-07-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.226}, {"date": "2018-07-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.226}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.93}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.843}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.101}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.852}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.781}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.004}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.191}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.08}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.352}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.435}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.354}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.53}, {"date": "2018-08-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.223}, {"date": "2018-08-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.223}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.921}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.836}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.089}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.843}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.774}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.993}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.184}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.077}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.339}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.428}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.351}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.518}, {"date": "2018-08-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.217}, {"date": "2018-08-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.217}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.9}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.818}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.062}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.821}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.755}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.964}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.171}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.066}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.323}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.407}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.334}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.494}, {"date": "2018-08-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.207}, {"date": "2018-08-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.207}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.906}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.824}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.068}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.827}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.761}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.969}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.176}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.069}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.329}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.412}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.336}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.502}, {"date": "2018-08-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.226}, {"date": "2018-08-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.226}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.903}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.822}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.064}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.824}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.759}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.964}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.175}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.069}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.328}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.416}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.34}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.505}, {"date": "2018-09-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.252}, {"date": "2018-09-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.252}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.912}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.829}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.079}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.833}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.765}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.98}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.184}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.08}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.336}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.426}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.351}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.516}, {"date": "2018-09-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.258}, {"date": "2018-09-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.258}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.921}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.834}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.091}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.841}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.771}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.991}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.194}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.081}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.355}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.435}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.35}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.534}, {"date": "2018-09-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.268}, {"date": "2018-09-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.268}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.923}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.841}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.082}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.844}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.779}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.982}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.195}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.086}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.349}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.436}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.356}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.528}, {"date": "2018-09-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.271}, {"date": "2018-09-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.271}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.947}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.859}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.117}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.866}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.796}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.014}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.223}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.106}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.39}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.468}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.378}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.573}, {"date": "2018-10-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.313}, {"date": "2018-10-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.313}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.984}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.892}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.161}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.903}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.829}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.057}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.263}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.136}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.44}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.504}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.405}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.618}, {"date": "2018-10-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.385}, {"date": "2018-10-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.385}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.961}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.869}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.141}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.879}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.806}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.034}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.249}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.119}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.431}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.488}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.387}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.603}, {"date": "2018-10-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.394}, {"date": "2018-10-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.394}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.925}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.828}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.113}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.841}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.763}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.005}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.221}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.084}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.414}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.463}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.357}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.585}, {"date": "2018-10-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.38}, {"date": "2018-10-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.38}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.896}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.799}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.083}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.811}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.732}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.975}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.196}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.064}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.381}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.437}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.334}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.555}, {"date": "2018-10-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.355}, {"date": "2018-10-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.355}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.84}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.738}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.036}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.753}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.67}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.927}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.146}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.008}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.34}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.389}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.281}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.514}, {"date": "2018-11-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.338}, {"date": "2018-11-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.338}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.773}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.672}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.971}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.686}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.604}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.86}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.086}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.949}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.28}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.326}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.22}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.448}, {"date": "2018-11-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.317}, {"date": "2018-11-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.317}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.7}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.594}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.903}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.611}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.525}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.793}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.022}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.883}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.219}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.258}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.151}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.383}, {"date": "2018-11-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.282}, {"date": "2018-11-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.282}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.63}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.517}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.85}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.539}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.445}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.736}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.965}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.819}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.171}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.203}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.088}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.335}, {"date": "2018-11-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.261}, {"date": "2018-11-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.261}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.544}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.422}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.777}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.451}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.35}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.665}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.883}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.731}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.098}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.119}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.998}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.258}, {"date": "2018-12-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.207}, {"date": "2018-12-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.207}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.511}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.395}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.734}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.421}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.325}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.622}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.842}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.696}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.047}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.079}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.959}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.217}, {"date": "2018-12-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.161}, {"date": "2018-12-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.161}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.46}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.338}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.694}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.369}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.268}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.583}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.793}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.643}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.004}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.03}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.903}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.176}, {"date": "2018-12-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.121}, {"date": "2018-12-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.121}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.413}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.287}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.653}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.321}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.216}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.54}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.75}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.588}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.974}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.987}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.848}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.143}, {"date": "2018-12-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.077}, {"date": "2018-12-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.077}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.358}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.227}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.608}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.266}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.156}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.496}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.697}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.532}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.928}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.934}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.793}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.096}, {"date": "2018-12-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.048}, {"date": "2018-12-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.048}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.329}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.199}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.578}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.237}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.128}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.465}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.662}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.496}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.895}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.906}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.764}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.069}, {"date": "2019-01-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.013}, {"date": "2019-01-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.013}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.338}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.212}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.578}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.247}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.143}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.466}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.66}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.496}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.888}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.907}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.764}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.069}, {"date": "2019-01-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.976}, {"date": "2019-01-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.976}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.34}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.216}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.577}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.251}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.147}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.468}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.661}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.5}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.885}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.902}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.769}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.055}, {"date": "2019-01-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.965}, {"date": "2019-01-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.965}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.343}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.229}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.567}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.256}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.162}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.458}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.65}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.5}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.866}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.899}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.773}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.045}, {"date": "2019-01-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.965}, {"date": "2019-01-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.965}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.341}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.228}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.561}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.254}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.162}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.451}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.644}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.488}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.867}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.895}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.77}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.04}, {"date": "2019-02-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.966}, {"date": "2019-02-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.966}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.361}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.251}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.577}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.276}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.187}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.466}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.657}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.5}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.883}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.912}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.783}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.062}, {"date": "2019-02-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.966}, {"date": "2019-02-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.966}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.4}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.293}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.61}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.317}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.23}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.502}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.688}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.535}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.906}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.94}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.817}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.081}, {"date": "2019-02-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.006}, {"date": "2019-02-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.006}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.471}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.372}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.664}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.39}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.311}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.56}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.739}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.601}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.937}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.998}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.887}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.124}, {"date": "2019-02-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.048}, {"date": "2019-02-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.048}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.502}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.412}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.678}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.422}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.352}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.574}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.768}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.638}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.956}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.02}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.919}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.137}, {"date": "2019-03-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.076}, {"date": "2019-03-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.076}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.549}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.458}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.726}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.471}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.399}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.625}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.807}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.674}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.999}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.059}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.959}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.175}, {"date": "2019-03-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.079}, {"date": "2019-03-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.079}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.625}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.537}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.8}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.548}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.477}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.7}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.879}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.75}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.064}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.135}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.041}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.244}, {"date": "2019-03-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.07}, {"date": "2019-03-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.07}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.701}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.604}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.893}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.623}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.544}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.793}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.96}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.819}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.162}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.212}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.105}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.337}, {"date": "2019-03-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.08}, {"date": "2019-03-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.08}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.77}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.67}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.967}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.691}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.611}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.863}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.034}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.885}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.25}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.286}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.172}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.419}, {"date": "2019-04-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.078}, {"date": "2019-04-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.078}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.826}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.71}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.055}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.745}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.65}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.949}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.103}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.93}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.355}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.354}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.214}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.518}, {"date": "2019-04-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.093}, {"date": "2019-04-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.093}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.912}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.785}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.162}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.828}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.725}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.052}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.198}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.006}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.478}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.449}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.29}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.635}, {"date": "2019-04-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.118}, {"date": "2019-04-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.118}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.926}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.785}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.206}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.841}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.723}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.097}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.221}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.019}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.515}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.474}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.301}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.677}, {"date": "2019-04-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.147}, {"date": "2019-04-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.147}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.972}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.824}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.264}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.887}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.761}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.156}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.27}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.062}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.571}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.523}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.343}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.734}, {"date": "2019-04-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.169}, {"date": "2019-04-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.169}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.983}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.834}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.279}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.897}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.771}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.171}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.286}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.083}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.583}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.537}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.357}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.748}, {"date": "2019-05-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.171}, {"date": "2019-05-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.171}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.954}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.8}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.256}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.866}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.735}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.149}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.258}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.054}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.554}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.514}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.331}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.726}, {"date": "2019-05-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.16}, {"date": "2019-05-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.16}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.939}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.789}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.236}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.852}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.723}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.129}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.245}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.045}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.536}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.499}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.323}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.706}, {"date": "2019-05-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.163}, {"date": "2019-05-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.163}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.909}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.762}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.2}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.822}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.696}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.094}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.212}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.022}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.493}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.471}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.3}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.67}, {"date": "2019-05-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.151}, {"date": "2019-05-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.151}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.893}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.757}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.164}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.807}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.691}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.058}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.194}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.015}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.458}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.447}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.295}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.627}, {"date": "2019-06-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.136}, {"date": "2019-06-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.136}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.821}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.687}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.086}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.732}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.62}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.976}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.134}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.955}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.398}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.383}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.231}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.561}, {"date": "2019-06-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.105}, {"date": "2019-06-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.105}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.759}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.621}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.032}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.67}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.553}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.923}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.079}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.897}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.344}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.326}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.174}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.505}, {"date": "2019-06-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.07}, {"date": "2019-06-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.07}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.741}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.608}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.002}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.654}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.541}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.896}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.051}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.881}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.299}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.3}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.154}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.471}, {"date": "2019-06-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.043}, {"date": "2019-06-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.043}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.798}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.674}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.043}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.713}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.608}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.938}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.095}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.931}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.336}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.343}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.205}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.505}, {"date": "2019-07-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.042}, {"date": "2019-07-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.042}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.827}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.708}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.06}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.743}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.644}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.956}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.117}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.959}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.348}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.366}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.237}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.517}, {"date": "2019-07-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.055}, {"date": "2019-07-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.055}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.86}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.745}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.089}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.779}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.682}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.987}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.137}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.982}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.365}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.392}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.266}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.539}, {"date": "2019-07-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.051}, {"date": "2019-07-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.051}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.833}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.716}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.062}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.75}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.653}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.959}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.116}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.958}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.345}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.368}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.244}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.513}, {"date": "2019-07-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.044}, {"date": "2019-07-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.044}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.798}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.68}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.032}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.715}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.615}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.928}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.084}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.924}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.318}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.339}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.21}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.491}, {"date": "2019-07-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.034}, {"date": "2019-07-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.034}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.772}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.653}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.007}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.688}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.588}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.902}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.062}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.899}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.3}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.317}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.187}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.469}, {"date": "2019-08-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.032}, {"date": "2019-08-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.032}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.71}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.59}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.946}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.624}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.524}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.839}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.01}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.851}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.242}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.266}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.137}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.417}, {"date": "2019-08-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.011}, {"date": "2019-08-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.011}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.684}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.567}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.914}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.598}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.501}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.807}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.982}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.826}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.21}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.24}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.115}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.387}, {"date": "2019-08-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.994}, {"date": "2019-08-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.994}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.661}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.538}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.905}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.574}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.471}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.797}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.965}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.799}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.206}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.219}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.087}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.374}, {"date": "2019-08-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.983}, {"date": "2019-08-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.983}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.651}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.527}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.893}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.563}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.461}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.782}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.96}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.789}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.207}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.215}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.076}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.377}, {"date": "2019-09-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.976}, {"date": "2019-09-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.976}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.638}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.517}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.876}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.55}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.45}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.765}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.95}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.783}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.194}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.202}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.069}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.357}, {"date": "2019-09-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.971}, {"date": "2019-09-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.971}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.64}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.521}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.874}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.552}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.454}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.763}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.95}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.787}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.186}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.203}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.07}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.359}, {"date": "2019-09-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.987}, {"date": "2019-09-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.987}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.741}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.627}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.964}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.654}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.561}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.852}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.048}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.883}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.286}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.296}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.164}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.45}, {"date": "2019-09-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.081}, {"date": "2019-09-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.081}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.737}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.586}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.033}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.642}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.518}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.907}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.082}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.855}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.409}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.341}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.142}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.571}, {"date": "2019-09-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.066}, {"date": "2019-09-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.066}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.742}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.581}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.058}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.645}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.513}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.929}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.097}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.855}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.449}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.356}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.14}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.61}, {"date": "2019-10-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.047}, {"date": "2019-10-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.047}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.727}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.565}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.048}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.629}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.495}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.919}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.085}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.843}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.438}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.345}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.129}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.597}, {"date": "2019-10-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.051}, {"date": "2019-10-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.051}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.735}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.581}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.036}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.638}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.512}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.91}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.089}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.861}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.419}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.34}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.144}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.568}, {"date": "2019-10-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.05}, {"date": "2019-10-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.05}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.692}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.539}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.995}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.596}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.469}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.871}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.046}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.825}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.366}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.298}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.106}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.522}, {"date": "2019-10-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.064}, {"date": "2019-10-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.064}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.702}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.555}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.994}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.605}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.485}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.866}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.064}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.847}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.379}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.313}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.123}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.535}, {"date": "2019-11-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.062}, {"date": "2019-11-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.062}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.711}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.563}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.004}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.615}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.493}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.879}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.067}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.855}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.379}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.321}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.136}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.535}, {"date": "2019-11-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.073}, {"date": "2019-11-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.073}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.688}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.544}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.971}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.592}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.473}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.851}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.036}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.84}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.323}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.291}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.12}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.49}, {"date": "2019-11-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.074}, {"date": "2019-11-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.074}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.672}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.539}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.936}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.579}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.469}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.817}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.015}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.83}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.287}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.264}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.106}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.449}, {"date": "2019-11-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.066}, {"date": "2019-11-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.066}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.667}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.554}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.894}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.575}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.485}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.775}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.999}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.84}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.236}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.249}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.116}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.406}, {"date": "2019-12-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.07}, {"date": "2019-12-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.07}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.652}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.548}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.863}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.561}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.478}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.745}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.981}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.837}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.197}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.23}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.111}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.372}, {"date": "2019-12-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.049}, {"date": "2019-12-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.049}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.627}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.518}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.845}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.536}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.448}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.73}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.955}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.811}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.17}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.204}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.081}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.351}, {"date": "2019-12-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.046}, {"date": "2019-12-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.046}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.621}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.516}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.833}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.532}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.447}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.718}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.943}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.802}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.153}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.191}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.074}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.33}, {"date": "2019-12-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.041}, {"date": "2019-12-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.041}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.658}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.555}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.862}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.571}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.488}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.751}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.968}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.827}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.176}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.209}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.099}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.338}, {"date": "2019-12-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.069}, {"date": "2019-12-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.069}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.665}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.561}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.87}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.578}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.494}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.761}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.973}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.833}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.176}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.214}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.103}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.342}, {"date": "2020-01-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.079}, {"date": "2020-01-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.079}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.657}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.549}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.871}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.57}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.482}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.762}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.964}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.817}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.178}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.209}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.093}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.345}, {"date": "2020-01-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.064}, {"date": "2020-01-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.064}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.625}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.516}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.841}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.537}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.448}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.731}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.94}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.792}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.155}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.183}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.068}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.318}, {"date": "2020-01-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.037}, {"date": "2020-01-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.037}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.595}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.482}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.818}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.506}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.412}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.706}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.911}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.761}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.129}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.163}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.042}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.304}, {"date": "2020-01-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.01}, {"date": "2020-01-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.01}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.546}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.428}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.779}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.455}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.358}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.664}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.872}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.709}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.11}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.125}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.998}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.274}, {"date": "2020-02-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.956}, {"date": "2020-02-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.956}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.511}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.396}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.74}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.419}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.324}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.624}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.842}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.684}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.075}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.095}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.972}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.241}, {"date": "2020-02-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.91}, {"date": "2020-02-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.91}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.518}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.405}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.742}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.428}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.337}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.626}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.841}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.68}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.077}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.091}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.963}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.241}, {"date": "2020-02-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.89}, {"date": "2020-02-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.89}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.555}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.441}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.78}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.466}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.373}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.666}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.868}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.709}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.101}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.122}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.996}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.27}, {"date": "2020-02-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.882}, {"date": "2020-02-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.882}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.514}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.394}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.754}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.423}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.324}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.639}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.838}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.671}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.085}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.093}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.961}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.248}, {"date": "2020-03-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.851}, {"date": "2020-03-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.851}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.468}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.344}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.713}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.375}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.272}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.597}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.798}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.626}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.049}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.054}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.921}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.209}, {"date": "2020-03-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.814}, {"date": "2020-03-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.814}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.343}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.213}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.6}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.248}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.139}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.483}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.689}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.516}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.942}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.941}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.805}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.098}, {"date": "2020-03-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.733}, {"date": "2020-03-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.733}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.217}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.083}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.478}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.12}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.007}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.361}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.58}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.409}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.828}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.817}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.684}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.97}, {"date": "2020-03-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.659}, {"date": "2020-03-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.659}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.103}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.962}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.378}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.005}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.886}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.26}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.473}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.295}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.731}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.716}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.576}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.875}, {"date": "2020-03-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.586}, {"date": "2020-03-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.586}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.022}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.877}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.304}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.924}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.8}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.185}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.392}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.207}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.658}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.635}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.485}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.806}, {"date": "2020-04-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.548}, {"date": "2020-04-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.548}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.951}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.811}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.224}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.853}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.735}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.106}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.316}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.142}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.568}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.562}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.418}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.729}, {"date": "2020-04-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.507}, {"date": "2020-04-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.507}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.91}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.77}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.186}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.812}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.694}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.068}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.275}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.1}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.529}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.519}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.375}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.687}, {"date": "2020-04-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.48}, {"date": "2020-04-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.48}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.87}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.731}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.141}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.773}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.655}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.025}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.226}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.053}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.477}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.478}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.334}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.644}, {"date": "2020-04-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.437}, {"date": "2020-04-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.437}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.883}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.753}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.136}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.789}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.68}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.02}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.221}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.052}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.465}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.479}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.339}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.639}, {"date": "2020-05-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.399}, {"date": "2020-05-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.399}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.941}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.818}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.182}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.851}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.75}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.069}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.257}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.089}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.5}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.519}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.383}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.677}, {"date": "2020-05-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.394}, {"date": "2020-05-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.394}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 1.969}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.845}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.211}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.878}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.776}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.095}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.286}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.113}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.536}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.553}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.415}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.712}, {"date": "2020-05-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.386}, {"date": "2020-05-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.386}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.049}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.938}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.267}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.96}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.87}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.153}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.363}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.205}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.588}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.618}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.493}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.761}, {"date": "2020-05-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.39}, {"date": "2020-05-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.39}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.064}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 1.952}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.285}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 1.974}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.883}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.169}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.38}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.227}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.601}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.638}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.512}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.784}, {"date": "2020-06-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.386}, {"date": "2020-06-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.386}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.123}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.014}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.338}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.036}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 1.947}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.226}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.434}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.283}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.652}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.686}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.565}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.824}, {"date": "2020-06-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.396}, {"date": "2020-06-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.396}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.185}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.084}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.384}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.098}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.017}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.272}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.495}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.357}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.695}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.745}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.636}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.869}, {"date": "2020-06-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.403}, {"date": "2020-06-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.403}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.216}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.115}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.414}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.129}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.048}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.303}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.521}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.383}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.721}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.773}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.663}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.901}, {"date": "2020-06-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.425}, {"date": "2020-06-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.425}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.26}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.162}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.456}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.174}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.094}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.346}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.563}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.428}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.761}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.812}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.707}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.935}, {"date": "2020-06-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.43}, {"date": "2020-06-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.43}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.265}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.168}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.456}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.177}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.1}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.344}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.571}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.438}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.764}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.821}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.719}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.94}, {"date": "2020-07-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.437}, {"date": "2020-07-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.437}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.283}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.181}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.482}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.195}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.113}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.372}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.589}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.454}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.786}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.842}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.737}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.963}, {"date": "2020-07-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.438}, {"date": "2020-07-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.438}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.275}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.168}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.484}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.186}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.099}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.373}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.584}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.443}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.789}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.836}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.726}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.964}, {"date": "2020-07-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.433}, {"date": "2020-07-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.433}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.265}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.155}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.482}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.175}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.085}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.369}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.582}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.436}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.793}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.838}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.724}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.97}, {"date": "2020-07-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.427}, {"date": "2020-07-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.427}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.266}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.156}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.481}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.176}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.085}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.37}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.587}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.445}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.793}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.834}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.723}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.964}, {"date": "2020-08-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.424}, {"date": "2020-08-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.424}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.256}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.149}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.466}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.166}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.078}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.354}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.578}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.437}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.782}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.826}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.716}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.954}, {"date": "2020-08-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.428}, {"date": "2020-08-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.428}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.256}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.147}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.473}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.166}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.077}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.359}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.577}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.433}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.791}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.829}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.714}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.966}, {"date": "2020-08-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.427}, {"date": "2020-08-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.427}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.272}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.161}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.491}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.182}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.09}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.378}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.595}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.442}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.817}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.842}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.725}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.981}, {"date": "2020-08-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.426}, {"date": "2020-08-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.426}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.311}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.204}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.523}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.222}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.135}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.411}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.629}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.484}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.84}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.877}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.763}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.011}, {"date": "2020-08-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.441}, {"date": "2020-08-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.441}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.302}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.193}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.518}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.211}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.122}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.405}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.624}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.481}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.836}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.872}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.758}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.008}, {"date": "2020-09-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.435}, {"date": "2020-09-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.435}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.274}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.162}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.497}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.183}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.091}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.383}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.6}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.451}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.82}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.851}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.733}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.992}, {"date": "2020-09-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.422}, {"date": "2020-09-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.422}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.259}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.149}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.478}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.168}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.078}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.365}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.582}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.432}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.803}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.836}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.721}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.972}, {"date": "2020-09-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.404}, {"date": "2020-09-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.404}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.259}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.157}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.463}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.169}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.088}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.346}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.583}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.438}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.799}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.831}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.719}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.966}, {"date": "2020-09-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.394}, {"date": "2020-09-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.394}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.262}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.161}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.464}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.172}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.091}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.349}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.583}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.442}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.793}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.833}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.723}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.965}, {"date": "2020-10-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.387}, {"date": "2020-10-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.387}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.257}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.154}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.465}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.167}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.084}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.35}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.579}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.434}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.794}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.829}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.716}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.965}, {"date": "2020-10-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.395}, {"date": "2020-10-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.395}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.24}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.134}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.454}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.15}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.064}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.338}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.565}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.416}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.787}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.815}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.698}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.957}, {"date": "2020-10-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.388}, {"date": "2020-10-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.388}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.234}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.124}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.455}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.143}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.053}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.34}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.559}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.407}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.785}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.81}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.69}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.955}, {"date": "2020-10-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.385}, {"date": "2020-10-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.385}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.204}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.092}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.43}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.112}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.021}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.314}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.533}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.378}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.765}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.786}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.661}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.936}, {"date": "2020-11-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.372}, {"date": "2020-11-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.372}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.188}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.074}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.417}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.096}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.004}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.3}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.517}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.358}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.755}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.771}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.643}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.926}, {"date": "2020-11-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.383}, {"date": "2020-11-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.383}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.202}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.089}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.429}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.111}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.018}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.312}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.532}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.377}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.765}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.783}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.656}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.936}, {"date": "2020-11-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.441}, {"date": "2020-11-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.441}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.194}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.08}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.422}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.102}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.009}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.305}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.525}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.369}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.759}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.779}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.652}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.933}, {"date": "2020-11-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.462}, {"date": "2020-11-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.462}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.211}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.093}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.444}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.12}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.022}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.329}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.54}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.379}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.778}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.792}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.661}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.947}, {"date": "2020-11-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.502}, {"date": "2020-11-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.502}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.246}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.133}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.469}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.156}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.063}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.355}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.567}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.412}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.798}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.82}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.694}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.968}, {"date": "2020-12-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.526}, {"date": "2020-12-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.526}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.247}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.132}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.474}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.158}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.063}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.361}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.565}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.407}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.8}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.821}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.693}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 2.973}, {"date": "2020-12-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.559}, {"date": "2020-12-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.559}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.311}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.204}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.522}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.224}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.137}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.41}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.618}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.466}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.843}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.871}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.749}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.015}, {"date": "2020-12-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.619}, {"date": "2020-12-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.619}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.33}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.225}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.535}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.243}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.158}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.423}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.634}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.482}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.858}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.889}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.77}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.031}, {"date": "2020-12-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.635}, {"date": "2020-12-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.635}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.336}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.227}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.549}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.249}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.16}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.437}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.639}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.484}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.867}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.895}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.771}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.042}, {"date": "2021-01-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.64}, {"date": "2021-01-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.64}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.403}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.298}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.61}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.317}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.232}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.498}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.702}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.55}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.927}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 2.959}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.839}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.101}, {"date": "2021-01-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.67}, {"date": "2021-01-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.67}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.464}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.351}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.688}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.379}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.285}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.579}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.759}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.601}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 2.995}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.014}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.885}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.166}, {"date": "2021-01-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.696}, {"date": "2021-01-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.696}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.478}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.363}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.703}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.392}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.298}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.593}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.776}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.615}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.014}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.033}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.9}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.191}, {"date": "2021-01-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.716}, {"date": "2021-01-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.716}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.495}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.382}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.72}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.409}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.316}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.608}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.792}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.63}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.034}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.051}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.917}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.21}, {"date": "2021-02-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.738}, {"date": "2021-02-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.738}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.548}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.438}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.766}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.461}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.372}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.653}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.847}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.69}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.083}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.104}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 2.975}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.258}, {"date": "2021-02-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.801}, {"date": "2021-02-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.801}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.588}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.475}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.812}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.501}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.409}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.701}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 2.89}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.73}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.13}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.141}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.011}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.297}, {"date": "2021-02-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.876}, {"date": "2021-02-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.876}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.717}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.613}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 2.926}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.633}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.549}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.815}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.006}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.854}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.235}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.263}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.14}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.411}, {"date": "2021-02-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 2.973}, {"date": "2021-02-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 2.973}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.796}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.689}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.012}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.711}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.625}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.899}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.084}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.926}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.324}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.344}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.213}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.501}, {"date": "2021-03-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.072}, {"date": "2021-03-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.072}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.857}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.749}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.072}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.771}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.684}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 2.961}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.15}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 2.997}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.38}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.41}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.284}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.56}, {"date": "2021-03-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.143}, {"date": "2021-03-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.143}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.94}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.832}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.156}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.853}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.766}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.044}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.241}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.088}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.472}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.495}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.369}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.646}, {"date": "2021-03-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.191}, {"date": "2021-03-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.191}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.954}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.849}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.164}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.865}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.78}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.051}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.265}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.119}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.485}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.516}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.399}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.655}, {"date": "2021-03-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.194}, {"date": "2021-03-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.194}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.941}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.839}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.146}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.852}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.771}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.032}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.251}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.113}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.465}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.506}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.39}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.645}, {"date": "2021-03-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.161}, {"date": "2021-03-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.161}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.945}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.845}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.147}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.857}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.777}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.032}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.259}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.118}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.472}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.511}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.395}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.649}, {"date": "2021-04-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.144}, {"date": "2021-04-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.144}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.939}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.832}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.152}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.849}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.763}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.036}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.259}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.104}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.49}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.51}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.385}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.656}, {"date": "2021-04-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.129}, {"date": "2021-04-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.129}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.945}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.836}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.162}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.855}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.767}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.045}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.267}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.106}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.507}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.517}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.391}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.666}, {"date": "2021-04-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.124}, {"date": "2021-04-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.124}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.962}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.844}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.197}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.872}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.776}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.08}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.283}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.113}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.536}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.536}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.4}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.698}, {"date": "2021-04-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.124}, {"date": "2021-04-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.124}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 2.981}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.859}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.223}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.89}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.79}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.106}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.303}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.132}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.559}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.557}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.415}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.725}, {"date": "2021-05-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.142}, {"date": "2021-05-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.142}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.051}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.929}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.296}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 2.961}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.86}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.181}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.372}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.2}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.628}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.624}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.482}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.793}, {"date": "2021-05-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.186}, {"date": "2021-05-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.186}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.118}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.996}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.355}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.028}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.928}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.241}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.44}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.273}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.684}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.688}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.552}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.846}, {"date": "2021-05-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.249}, {"date": "2021-05-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.249}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.112}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.99}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.353}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.02}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.92}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.237}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.445}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.277}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.695}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.69}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.554}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.85}, {"date": "2021-05-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.253}, {"date": "2021-05-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.253}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.119}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 2.997}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.362}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.027}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.927}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.244}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.45}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.278}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.706}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.699}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.558}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.866}, {"date": "2021-05-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.255}, {"date": "2021-05-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.255}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.128}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.005}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.373}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.035}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.935}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.255}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.463}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.293}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.715}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.712}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.568}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.882}, {"date": "2021-06-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.274}, {"date": "2021-06-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.274}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.161}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.041}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.401}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.069}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.97}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.283}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.488}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.322}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.737}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.744}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.606}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.909}, {"date": "2021-06-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.286}, {"date": "2021-06-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.286}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.153}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.033}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.395}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.06}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.961}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.276}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.489}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.326}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.735}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.744}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.606}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.907}, {"date": "2021-06-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.287}, {"date": "2021-06-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.287}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.185}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.062}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.43}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.091}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.99}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.309}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.524}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.357}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.775}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.777}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.635}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.947}, {"date": "2021-06-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.3}, {"date": "2021-06-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.3}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.216}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.104}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.441}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.122}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.032}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.321}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.559}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.407}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.787}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.806}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.681}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.955}, {"date": "2021-07-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.331}, {"date": "2021-07-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.331}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.227}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.112}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.459}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.133}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.039}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.339}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.573}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.416}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.807}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.819}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.691}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.971}, {"date": "2021-07-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.338}, {"date": "2021-07-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.338}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.247}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.135}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.473}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.153}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.061}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.354}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.592}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.443}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.815}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.839}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.717}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.984}, {"date": "2021-07-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.344}, {"date": "2021-07-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.344}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.232}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.118}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.46}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.136}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.044}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.34}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.584}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.434}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.81}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.829}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.706}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 3.976}, {"date": "2021-07-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.342}, {"date": "2021-07-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.342}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.256}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.134}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.5}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.159}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.059}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.378}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.607}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.448}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.846}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.861}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.725}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.023}, {"date": "2021-08-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.367}, {"date": "2021-08-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.367}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.269}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.157}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.494}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.172}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.081}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.372}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.624}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.479}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.841}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.874}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.752}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.019}, {"date": "2021-08-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.364}, {"date": "2021-08-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.364}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.272}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.155}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.505}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.174}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.079}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.381}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.629}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.478}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.857}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.882}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.752}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.037}, {"date": "2021-08-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.356}, {"date": "2021-08-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.356}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.243}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.125}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.479}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.145}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.048}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.356}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.606}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.452}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.838}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.853}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.729}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.002}, {"date": "2021-08-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.324}, {"date": "2021-08-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.324}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.237}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.118}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.476}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.139}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.041}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.352}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.599}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.444}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.832}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.853}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.724}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.007}, {"date": "2021-08-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.339}, {"date": "2021-08-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.339}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.273}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.156}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.507}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.176}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.08}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.385}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.628}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.474}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.858}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.879}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.751}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.032}, {"date": "2021-09-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.373}, {"date": "2021-09-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.373}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.262}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.143}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.499}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.165}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.068}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.378}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.618}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.464}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.849}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.868}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.739}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.021}, {"date": "2021-09-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.372}, {"date": "2021-09-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.372}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.28}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.169}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.504}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.184}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.094}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.382}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.632}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.486}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.851}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.883}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.762}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.026}, {"date": "2021-09-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.385}, {"date": "2021-09-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.385}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.271}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.155}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.505}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.175}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.08}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.382}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.625}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.472}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.855}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.876}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.747}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.029}, {"date": "2021-09-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.406}, {"date": "2021-09-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.406}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.285}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.168}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.521}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.19}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.093}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.4}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.635}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.48}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.869}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.886}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.757}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.041}, {"date": "2021-10-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.477}, {"date": "2021-10-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.477}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.36}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.247}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.59}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.267}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.173}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.474}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.697}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.551}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.925}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.952}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.829}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.101}, {"date": "2021-10-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.586}, {"date": "2021-10-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.586}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.416}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.297}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.655}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.322}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.225}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.537}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.751}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.592}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.99}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.007}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.871}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.17}, {"date": "2021-10-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.671}, {"date": "2021-10-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.671}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.476}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.351}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.73}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.383}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.279}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.611}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.809}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.643}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.063}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.071}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.926}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.246}, {"date": "2021-10-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.713}, {"date": "2021-10-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.713}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.484}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.352}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.751}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.39}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.28}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.632}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.822}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.648}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.085}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.084}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.929}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.271}, {"date": "2021-11-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.727}, {"date": "2021-11-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.727}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.505}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.366}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.783}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.41}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.294}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.665}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.842}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.66}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.117}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.101}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.935}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.3}, {"date": "2021-11-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.73}, {"date": "2021-11-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.73}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.495}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.349}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.789}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.399}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.277}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.668}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.841}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.647}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.134}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.103}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.927}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.316}, {"date": "2021-11-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.734}, {"date": "2021-11-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.734}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.493}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.344}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.791}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.395}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.271}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.668}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.843}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.645}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.143}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.107}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.93}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.319}, {"date": "2021-11-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.724}, {"date": "2021-11-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.724}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.478}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.326}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.783}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.38}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.253}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.66}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.831}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.626}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.141}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.095}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.913}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.314}, {"date": "2021-11-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.72}, {"date": "2021-11-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.72}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.44}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.279}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.761}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.341}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.204}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.639}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.8}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.587}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.12}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.063}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.875}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.288}, {"date": "2021-12-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.674}, {"date": "2021-12-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.674}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.414}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.252}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.738}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.315}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.178}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.614}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.776}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.558}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.106}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.039}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.846}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.27}, {"date": "2021-12-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.649}, {"date": "2021-12-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.649}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.395}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.229}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.727}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.295}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.154}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.602}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.763}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.539}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.099}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.024}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.826}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.261}, {"date": "2021-12-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.626}, {"date": "2021-12-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.626}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.375}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.211}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.704}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.275}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.136}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.577}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.743}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.521}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.078}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.008}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.81}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.244}, {"date": "2021-12-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.615}, {"date": "2021-12-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.615}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.381}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.216}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.71}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.281}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.141}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.585}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.746}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.524}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.079}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.012}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.813}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.249}, {"date": "2022-01-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.613}, {"date": "2022-01-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.613}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.394}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.238}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.708}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.295}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.164}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.582}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.752}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.535}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.078}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.02}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.829}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.248}, {"date": "2022-01-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.657}, {"date": "2022-01-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.657}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.404}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.255}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.707}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.306}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.182}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.581}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.758}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.548}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.076}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.028}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.847}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.246}, {"date": "2022-01-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.725}, {"date": "2022-01-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.725}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.421}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.271}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.722}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.323}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.199}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.597}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.769}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.56}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.086}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.04}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.858}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.26}, {"date": "2022-01-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.78}, {"date": "2022-01-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.78}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.464}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.321}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.754}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.368}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.249}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.63}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.804}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.604}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.105}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.078}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.904}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.288}, {"date": "2022-01-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.846}, {"date": "2022-01-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.846}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.538}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.401}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.812}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.444}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.33}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.69}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.867}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.673}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.158}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.141}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.974}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.34}, {"date": "2022-02-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.951}, {"date": "2022-02-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.951}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.581}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.441}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.859}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.487}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.372}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.738}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.908}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.71}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.204}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.18}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.009}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.384}, {"date": "2022-02-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.019}, {"date": "2022-02-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.019}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.624}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.48}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.911}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.53}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.41}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.79}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.954}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.752}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.256}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.221}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.045}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.43}, {"date": "2022-02-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.055}, {"date": "2022-02-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.055}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.701}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.554}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.994}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.608}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.486}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.874}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.025}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.814}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.341}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.296}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.114}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.513}, {"date": "2022-02-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.104}, {"date": "2022-02-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.104}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.196}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.031}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.527}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.102}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.963}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.407}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.524}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.292}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.872}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.798}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.592}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.044}, {"date": "2022-03-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.849}, {"date": "2022-03-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.849}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.414}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.252}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.737}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.315}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.18}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.61}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.765}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.538}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.106}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.038}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.833}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.284}, {"date": "2022-03-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.25}, {"date": "2022-03-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.25}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.343}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.165}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.697}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.239}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.091}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.562}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.719}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.462}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.107}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.992}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.759}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.269}, {"date": "2022-03-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.134}, {"date": "2022-03-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.134}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.334}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.152}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.697}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.231}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.078}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.562}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.714}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.447}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.116}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.985}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.749}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.27}, {"date": "2022-03-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.185}, {"date": "2022-03-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.185}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.274}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.096}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.629}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.17}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.021}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.495}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.659}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.403}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.046}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.931}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.703}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.204}, {"date": "2022-04-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.144}, {"date": "2022-04-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.144}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.196}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.019}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.552}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.091}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.943}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.417}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.587}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.331}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.976}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.854}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.627}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.133}, {"date": "2022-04-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.073}, {"date": "2022-04-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.073}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.17}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.992}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.528}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.066}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.915}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.395}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.557}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.303}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.945}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.831}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.605}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.107}, {"date": "2022-04-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.101}, {"date": "2022-04-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.101}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.211}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.035}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.565}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.107}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.959}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.433}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.587}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.344}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.96}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.869}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.646}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.139}, {"date": "2022-04-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.16}, {"date": "2022-04-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.16}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.285}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.105}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.646}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.182}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.031}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.512}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.657}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.401}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.047}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.939}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.707}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.221}, {"date": "2022-05-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.509}, {"date": "2022-05-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.509}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.428}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.233}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.821}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.328}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.161}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.695}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.779}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.508}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.193}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.07}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.819}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.377}, {"date": "2022-05-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.623}, {"date": "2022-05-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.623}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.591}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.392}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.99}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.491}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.32}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.862}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.941}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.662}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.365}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.24}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.979}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.555}, {"date": "2022-05-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.613}, {"date": "2022-05-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.613}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.694}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.481}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 5.121}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.593}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.41}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.994}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 5.04}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.747}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.485}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.346}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.069}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.683}, {"date": "2022-05-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.571}, {"date": "2022-05-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.571}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.727}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.513}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 5.158}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.624}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.439}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 5.027}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 5.083}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.79}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.528}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.399}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.118}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.738}, {"date": "2022-05-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.539}, {"date": "2022-05-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.539}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.977}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.773}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 5.387}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.876}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.702}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 5.256}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 5.32}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 5.037}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.752}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.635}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.363}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.964}, {"date": "2022-06-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.703}, {"date": "2022-06-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.703}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 5.107}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.916}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 5.491}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 5.006}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.844}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 5.362}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 5.455}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 5.191}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.858}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.762}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.513}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 6.064}, {"date": "2022-06-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.718}, {"date": "2022-06-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.718}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 5.066}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.874}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 5.451}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.962}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.798}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 5.319}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 5.428}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 5.167}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.826}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.736}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.49}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 6.033}, {"date": "2022-06-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.81}, {"date": "2022-06-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.81}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.979}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.788}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 5.36}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.872}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.71}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 5.225}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 5.355}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 5.098}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.745}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.664}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.421}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.955}, {"date": "2022-06-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.783}, {"date": "2022-06-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.783}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.879}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.699}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 5.242}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.771}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.619}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 5.103}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 5.261}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 5.016}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.635}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.575}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.344}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.853}, {"date": "2022-07-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.675}, {"date": "2022-07-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.675}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.754}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.582}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 5.099}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.646}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.501}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.963}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 5.147}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.915}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.501}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.442}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.233}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.695}, {"date": "2022-07-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.568}, {"date": "2022-07-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.568}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.599}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.432}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.934}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.49}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.35}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.798}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.994}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.771}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.33}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.285}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 5.084}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.529}, {"date": "2022-07-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.432}, {"date": "2022-07-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.432}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.44}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.266}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.789}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.33}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.183}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.652}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.836}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.609}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.182}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.14}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.933}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.39}, {"date": "2022-07-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.268}, {"date": "2022-07-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.268}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.304}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 4.119}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.674}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.192}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 4.034}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.536}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.703}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.467}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.062}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 5.017}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.794}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.285}, {"date": "2022-08-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.138}, {"date": "2022-08-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.138}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.151}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.964}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.526}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 4.038}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.879}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.386}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.553}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.312}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.92}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.87}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.645}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.143}, {"date": "2022-08-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.993}, {"date": "2022-08-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.993}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.051}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.863}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.424}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.938}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.78}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.28}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.453}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.2}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.831}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.774}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.539}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.055}, {"date": "2022-08-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.911}, {"date": "2022-08-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.911}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.993}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.808}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.358}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.88}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.724}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.214}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.394}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.143}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.77}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.713}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.481}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.991}, {"date": "2022-08-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.909}, {"date": "2022-08-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.909}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.938}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.774}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.265}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.827}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.691}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.121}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.334}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.1}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.686}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.654}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.449}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.903}, {"date": "2022-08-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.115}, {"date": "2022-08-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.115}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.859}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.7}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.176}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.746}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.617}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.026}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.262}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.026}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.618}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.585}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.378}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.835}, {"date": "2022-09-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.084}, {"date": "2022-09-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.084}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.805}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.635}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.144}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.69}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.551}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.989}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.217}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.965}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.597}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.549}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.319}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.828}, {"date": "2022-09-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.033}, {"date": "2022-09-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.033}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.771}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.597}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.118}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.654}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.513}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.96}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.194}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.929}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.592}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.523}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.283}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.813}, {"date": "2022-09-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.964}, {"date": "2022-09-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.964}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.832}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.653}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.186}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.711}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.569}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.018}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.275}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.984}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.707}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.598}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.34}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.906}, {"date": "2022-09-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.889}, {"date": "2022-09-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.889}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.909}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.676}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.367}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.782}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.592}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.188}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.371}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.996}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.932}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.718}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.371}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.13}, {"date": "2022-10-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.836}, {"date": "2022-10-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.836}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.034}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.805}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.486}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.912}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.723}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.318}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.47}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.114}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 5.002}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.811}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.477}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.208}, {"date": "2022-10-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.224}, {"date": "2022-10-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.224}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.99}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.774}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.416}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.871}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.692}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.255}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.425}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.096}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.917}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.751}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.45}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.108}, {"date": "2022-10-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.339}, {"date": "2022-10-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.339}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.887}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.693}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.271}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.769}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.609}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.113}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.314}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.021}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.752}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.639}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.374}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.953}, {"date": "2022-10-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.341}, {"date": "2022-10-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.341}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.857}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.652}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.263}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.742}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.57}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.112}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.262}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.968}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.707}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.6}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.327}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.93}, {"date": "2022-10-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.317}, {"date": "2022-10-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.317}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.909}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.708}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.312}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.796}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.628}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.162}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.296}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.003}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.735}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.641}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.368}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.968}, {"date": "2022-11-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.333}, {"date": "2022-11-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.333}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.876}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.688}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.253}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.762}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.606}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.102}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.27}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.996}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.687}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.615}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.364}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.92}, {"date": "2022-11-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.313}, {"date": "2022-11-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.313}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.763}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.582}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.126}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.648}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.498}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.973}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.167}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.901}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.568}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.507}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.265}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.8}, {"date": "2022-11-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.233}, {"date": "2022-11-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.233}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.649}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.473}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.997}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.534}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.389}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.848}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.053}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.802}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.432}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.383}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.157}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.657}, {"date": "2022-11-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 5.141}, {"date": "2022-11-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 5.141}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.504}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.345}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.82}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.39}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.26}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.673}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.901}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.677}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.242}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.232}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.03}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.476}, {"date": "2022-12-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.967}, {"date": "2022-12-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.967}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.353}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.194}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.669}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.239}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.109}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.522}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.748}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.531}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.077}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.08}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.881}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.32}, {"date": "2022-12-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.754}, {"date": "2022-12-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.754}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.234}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.08}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.541}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.12}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.994}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.396}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.628}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.418}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.945}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.96}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.772}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.188}, {"date": "2022-12-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.596}, {"date": "2022-12-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.596}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.203}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.055}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.501}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.091}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.971}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.352}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.593}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.381}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.916}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.925}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.732}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.158}, {"date": "2022-12-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.537}, {"date": "2022-12-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.537}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.331}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.203}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.588}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.223}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.123}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.441}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.7}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.506}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.995}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.028}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.855}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.237}, {"date": "2023-01-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.583}, {"date": "2023-01-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.583}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.366}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.246}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.604}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.259}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.167}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.46}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.727}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.549}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.998}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.055}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.893}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.25}, {"date": "2023-01-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.549}, {"date": "2023-01-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.549}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.416}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.306}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.635}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.31}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.225}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.494}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.782}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.62}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.027}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.096}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.957}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.265}, {"date": "2023-01-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.524}, {"date": "2023-01-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.524}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.519}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.42}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.715}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.415}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.34}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.577}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.88}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.741}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.09}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.189}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.069}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.333}, {"date": "2023-01-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.604}, {"date": "2023-01-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.604}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.594}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.499}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.784}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.489}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.417}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.645}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.954}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.819}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.157}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.27}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.151}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.413}, {"date": "2023-01-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.622}, {"date": "2023-01-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.622}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.552}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.446}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.763}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.444}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.362}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.622}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.931}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.793}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.143}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.246}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.116}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.402}, {"date": "2023-02-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.539}, {"date": "2023-02-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.539}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.502}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.397}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.712}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.39}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.311}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.563}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.902}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.754}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.126}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.212}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.079}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.373}, {"date": "2023-02-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.444}, {"date": "2023-02-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.444}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.494}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.381}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.718}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.379}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.293}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.566}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.908}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.752}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.145}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.215}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.07}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.391}, {"date": "2023-02-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.376}, {"date": "2023-02-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.376}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.457}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.338}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.694}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.342}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.25}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.54}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.874}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.707}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.124}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.189}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.034}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.374}, {"date": "2023-02-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.294}, {"date": "2023-02-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.294}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.505}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.374}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.767}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.389}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.288}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.61}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.916}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.724}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.205}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.239}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.055}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.461}, {"date": "2023-03-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.282}, {"date": "2023-03-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.282}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.568}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.434}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.838}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.456}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.35}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.688}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.97}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.778}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.262}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.284}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.105}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.499}, {"date": "2023-03-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.247}, {"date": "2023-03-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.247}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.534}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.405}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.794}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.422}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.321}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.644}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.935}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.749}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.215}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.247}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.075}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.454}, {"date": "2023-03-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.185}, {"date": "2023-03-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.185}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.533}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.389}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.822}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.421}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.304}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.676}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.934}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.735}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.234}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.247}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.066}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.464}, {"date": "2023-03-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.128}, {"date": "2023-03-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.128}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.606}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.465}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.887}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.497}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.384}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.743}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.988}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.788}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.288}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.305}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.125}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.52}, {"date": "2023-04-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.105}, {"date": "2023-04-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.105}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.703}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.572}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.965}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.596}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.493}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.822}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.069}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.878}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.36}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.391}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.216}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.6}, {"date": "2023-04-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.098}, {"date": "2023-04-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.098}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.769}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.632}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.044}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.663}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.553}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.902}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.134}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.936}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.435}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.458}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.278}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.674}, {"date": "2023-04-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.116}, {"date": "2023-04-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.116}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.765}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.623}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.05}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.656}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.542}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.905}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.142}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.935}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.454}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.469}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.285}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.688}, {"date": "2023-04-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.077}, {"date": "2023-04-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.077}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.711}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.562}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.009}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.6}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.48}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.864}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.094}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.884}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.411}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.424}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.235}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.65}, {"date": "2023-05-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.018}, {"date": "2023-05-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.018}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.644}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.491}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.952}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.533}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.407}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.808}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.033}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.825}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.348}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.362}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.173}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.589}, {"date": "2023-05-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.922}, {"date": "2023-05-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.922}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.647}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.499}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.944}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.536}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.415}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.8}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.031}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.826}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.343}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.359}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.175}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.579}, {"date": "2023-05-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.897}, {"date": "2023-05-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.897}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.645}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.5}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.938}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.534}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.416}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.794}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.029}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.83}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.335}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.361}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.181}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.58}, {"date": "2023-05-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.883}, {"date": "2023-05-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.883}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.684}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.526}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.571}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.443}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.854}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.072}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.855}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.401}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.406}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.206}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.645}, {"date": "2023-05-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.855}, {"date": "2023-05-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.855}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.655}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.5}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.965}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.541}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.414}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.818}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.051}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.84}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.372}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.384}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.189}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.618}, {"date": "2023-06-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.797}, {"date": "2023-06-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.797}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.707}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.559}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.005}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.595}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.475}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.857}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.105}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.897}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.419}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.428}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.237}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.656}, {"date": "2023-06-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.794}, {"date": "2023-06-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.794}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.69}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.535}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.577}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.449}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.855}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.091}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.887}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.4}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.414}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.223}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.642}, {"date": "2023-06-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.815}, {"date": "2023-06-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.815}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.685}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.533}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.989}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.571}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.445}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.845}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.089}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.891}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.39}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.41}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.233}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.623}, {"date": "2023-06-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.801}, {"date": "2023-06-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.801}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.643}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.486}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.957}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.527}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.397}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.811}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.054}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.853}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.36}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.379}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.194}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.602}, {"date": "2023-07-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.767}, {"date": "2023-07-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.767}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.663}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.51}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.971}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.546}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.42}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.822}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.081}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.876}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.394}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.405}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.223}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.625}, {"date": "2023-07-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.806}, {"date": "2023-07-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.806}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.676}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.527}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.973}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.559}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.438}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.825}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.087}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.889}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.39}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.412}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.232}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.63}, {"date": "2023-07-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.806}, {"date": "2023-07-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.806}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.711}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.568}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.999}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.596}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.479}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.852}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.118}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.928}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.407}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.443}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.273}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.649}, {"date": "2023-07-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.905}, {"date": "2023-07-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.905}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.869}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.736}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.136}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.757}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.65}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.99}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.263}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.078}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.545}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.582}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.419}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.779}, {"date": "2023-07-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.127}, {"date": "2023-07-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.127}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.94}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.816}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.189}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.828}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.731}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.041}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.332}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.155}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.6}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.655}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.502}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.837}, {"date": "2023-08-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.239}, {"date": "2023-08-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.239}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.962}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.831}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.225}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.85}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.746}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.076}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.353}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.166}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.637}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.683}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.516}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.884}, {"date": "2023-08-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.378}, {"date": "2023-08-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.378}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.984}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.833}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.285}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.868}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.746}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.134}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.393}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.183}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.71}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.717}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.526}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.946}, {"date": "2023-08-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.389}, {"date": "2023-08-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.389}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.931}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.772}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.249}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.813}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.684}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.094}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.349}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.125}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.687}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.683}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.477}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.929}, {"date": "2023-08-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.475}, {"date": "2023-08-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.475}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.925}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.768}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.238}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.807}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.68}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.082}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.347}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.125}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.685}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.672}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.468}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.918}, {"date": "2023-09-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.492}, {"date": "2023-09-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.492}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.941}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.78}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.263}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.822}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.692}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.105}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.367}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.13}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.727}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.694}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.479}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.953}, {"date": "2023-09-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.54}, {"date": "2023-09-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.54}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 4.001}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.811}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.381}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.878}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.724}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.215}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.446}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.161}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.88}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.775}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.51}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.094}, {"date": "2023-09-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.633}, {"date": "2023-09-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.633}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.963}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.752}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.387}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.837}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.663}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.216}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.423}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.101}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.912}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.758}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.463}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.115}, {"date": "2023-09-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.586}, {"date": "2023-09-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.586}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.93}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.688}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.412}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.798}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.598}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.233}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.414}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 4.048}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.969}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.759}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.415}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 5.171}, {"date": "2023-10-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.593}, {"date": "2023-10-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.593}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.814}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.597}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.248}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.684}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.506}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.073}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.293}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.965}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.797}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.627}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.327}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.988}, {"date": "2023-10-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.498}, {"date": "2023-10-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.498}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.706}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.496}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.125}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.576}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.404}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.951}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.177}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.862}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.659}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.522}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.231}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.873}, {"date": "2023-10-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.444}, {"date": "2023-10-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.444}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.66}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.461}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.059}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.533}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.369}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.89}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.117}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.826}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.571}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.465}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.192}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.794}, {"date": "2023-10-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.545}, {"date": "2023-10-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.545}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.6}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.411}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.978}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.473}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.32}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.809}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.053}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.773}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.48}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.4}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.141}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.711}, {"date": "2023-10-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.454}, {"date": "2023-10-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.454}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.52}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.334}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.894}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.396}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.245}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.725}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.962}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.684}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.388}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.312}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.05}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.628}, {"date": "2023-11-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.366}, {"date": "2023-11-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.366}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.473}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.3}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.816}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.349}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.212}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.646}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.908}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.645}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.289}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.262}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.016}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.552}, {"date": "2023-11-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.294}, {"date": "2023-11-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.294}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.414}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.233}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.77}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.289}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.144}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.602}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.85}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.583}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.236}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.209}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.959}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.502}, {"date": "2023-11-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.209}, {"date": "2023-11-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.209}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.363}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.178}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.727}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.238}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.088}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.562}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.801}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.535}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.187}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.157}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.91}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.448}, {"date": "2023-11-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.146}, {"date": "2023-11-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.146}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.355}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.194}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.67}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.231}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.104}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.503}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.791}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.548}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.142}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.138}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.925}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.387}, {"date": "2023-12-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.092}, {"date": "2023-12-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.092}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.259}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.104}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.563}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.136}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.014}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.399}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.682}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.454}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.014}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.042}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.837}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.281}, {"date": "2023-12-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.987}, {"date": "2023-12-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.987}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.176}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.023}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.476}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.053}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.931}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.312}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.602}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.378}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.924}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.957}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.761}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.185}, {"date": "2023-12-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.894}, {"date": "2023-12-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.894}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.238}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.094}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.522}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.116}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.005}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.357}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.663}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.447}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.976}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.014}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.822}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.237}, {"date": "2023-12-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.914}, {"date": "2023-12-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.914}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.213}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.055}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.522}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.089}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.966}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.354}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.646}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.408}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.987}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.784}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.25}, {"date": "2024-01-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.876}, {"date": "2024-01-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.876}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.197}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.035}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.514}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.073}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.945}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.347}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.632}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.394}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.974}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.983}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.764}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.237}, {"date": "2024-01-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.828}, {"date": "2024-01-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.828}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.179}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.032}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.466}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.058}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.944}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.302}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.599}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.377}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.916}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.947}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.75}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.176}, {"date": "2024-01-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.863}, {"date": "2024-01-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.863}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.181}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.037}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.464}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.062}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.95}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.304}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.591}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.375}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.901}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.942}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.75}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.165}, {"date": "2024-01-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.838}, {"date": "2024-01-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.838}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.214}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.066}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.507}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.095}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.979}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.347}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.626}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.403}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.948}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.971}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.772}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.203}, {"date": "2024-01-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.867}, {"date": "2024-01-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.867}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.254}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.107}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.545}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.136}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.021}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.385}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.663}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.438}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.988}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.009}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.811}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.24}, {"date": "2024-02-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.899}, {"date": "2024-02-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.899}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.309}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.168}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.585}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.192}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.083}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.424}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.707}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.488}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.022}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.059}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.867}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.283}, {"date": "2024-02-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.109}, {"date": "2024-02-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.109}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.385}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.244}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.661}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.269}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.159}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.504}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.782}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.566}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.093}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.128}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.941}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.346}, {"date": "2024-02-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.109}, {"date": "2024-02-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.109}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.365}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.231}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.629}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.249}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.145}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.471}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.763}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.553}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.066}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.11}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.934}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.316}, {"date": "2024-02-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.058}, {"date": "2024-02-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.058}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.466}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.327}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.74}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.35}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.243}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.578}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.866}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.641}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.189}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.214}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.022}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.438}, {"date": "2024-03-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.022}, {"date": "2024-03-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.022}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.492}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.355}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.762}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.376}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.27}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.602}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.889}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.67}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.205}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.24}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.052}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.459}, {"date": "2024-03-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.004}, {"date": "2024-03-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.004}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.569}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.433}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.836}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.453}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.348}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.679}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.963}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.751}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.266}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.31}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.131}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.519}, {"date": "2024-03-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.028}, {"date": "2024-03-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.028}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.639}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.494}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.923}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.523}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.409}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.767}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.033}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.815}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.347}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.381}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.187}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.608}, {"date": "2024-03-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.034}, {"date": "2024-03-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.034}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.636}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.487}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.926}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.517}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.401}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.766}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.041}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.818}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.364}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.393}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.196}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.623}, {"date": "2024-04-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.996}, {"date": "2024-04-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.996}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.712}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.534}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.06}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.591}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.448}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.897}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.124}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.863}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.501}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.485}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.241}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.77}, {"date": "2024-04-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.061}, {"date": "2024-04-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.061}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.751}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.567}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.111}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.628}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.479}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.947}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.171}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.903}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.557}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.536}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.285}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.83}, {"date": "2024-04-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 4.015}, {"date": "2024-04-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 4.015}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.791}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.594}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.177}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.668}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.506}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 4.015}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.211}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.931}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.617}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.574}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.31}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.881}, {"date": "2024-04-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.992}, {"date": "2024-04-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.992}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.777}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.587}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.149}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.653}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.498}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.987}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.195}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.926}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.583}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.566}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.314}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.86}, {"date": "2024-04-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.947}, {"date": "2024-04-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.947}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.766}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.577}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.137}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.643}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.487}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.976}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.194}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.927}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.579}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.55}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.303}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.838}, {"date": "2024-05-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.894}, {"date": "2024-05-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.894}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.731}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.551}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.084}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.608}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.463}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.922}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.15}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.893}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.523}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.513}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.272}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.795}, {"date": "2024-05-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.848}, {"date": "2024-05-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.848}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.706}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.54}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.033}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.584}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.451}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.871}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.126}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.885}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.474}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.485}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.264}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.742}, {"date": "2024-05-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.789}, {"date": "2024-05-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.789}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.698}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.522}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 4.052}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.577}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.434}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.894}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.112}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.864}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.471}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.479}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.25}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.758}, {"date": "2024-05-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.758}, {"date": "2024-05-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.758}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.638}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.466}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.975}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.516}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.376}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.816}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.059}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.82}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.405}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.417}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.198}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.672}, {"date": "2024-06-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.726}, {"date": "2024-06-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.726}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.551}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.387}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.874}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.429}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.297}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.713}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.97}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.738}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.306}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.331}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.118}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.581}, {"date": "2024-06-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.658}, {"date": "2024-06-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.658}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.556}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.399}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.863}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.435}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.31}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.704}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.976}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.752}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.298}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.326}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.129}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.556}, {"date": "2024-06-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.735}, {"date": "2024-06-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.735}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.557}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.41}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.846}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.438}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.322}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.688}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.965}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.753}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.273}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.319}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.131}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.539}, {"date": "2024-06-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.769}, {"date": "2024-06-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.769}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.595}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.458}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.865}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.479}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.371}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.71}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.99}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.79}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.28}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.344}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.169}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.547}, {"date": "2024-07-01", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.813}, {"date": "2024-07-01", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.813}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.608}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.472}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.876}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.489}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.384}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.717}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.013}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.818}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.295}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.367}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.191}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.573}, {"date": "2024-07-08", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.865}, {"date": "2024-07-08", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.865}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.614}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.476}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.887}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.496}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.388}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.731}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 4.014}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.822}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.294}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.371}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.197}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.576}, {"date": "2024-07-15", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.826}, {"date": "2024-07-15", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.826}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.587}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.451}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.855}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.471}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.364}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.703}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.974}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.781}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.254}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.331}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.162}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.528}, {"date": "2024-07-22", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.779}, {"date": "2024-07-22", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.779}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.598}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.467}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.856}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.484}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.381}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.706}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.982}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.797}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.251}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.333}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.177}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.516}, {"date": "2024-07-29", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.768}, {"date": "2024-07-29", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.768}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.563}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.444}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.797}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.448}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.357}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.644}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.955}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.784}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.202}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.302}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.159}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.47}, {"date": "2024-08-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.755}, {"date": "2024-08-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.755}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.53}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.414}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.761}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.414}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.326}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.606}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.926}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.757}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.17}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.274}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.132}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.44}, {"date": "2024-08-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.704}, {"date": "2024-08-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.704}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.5}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.375}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.747}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.382}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.286}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.592}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.906}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.727}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.167}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.252}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.101}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.429}, {"date": "2024-08-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.688}, {"date": "2024-08-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.688}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.433}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.301}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.693}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.313}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.212}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.534}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.842}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.652}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.119}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.201}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.036}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.394}, {"date": "2024-08-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.651}, {"date": "2024-08-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.651}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.411}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.281}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.674}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.289}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.191}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.509}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.835}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.642}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.116}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.196}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 4.023}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.407}, {"date": "2024-09-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.625}, {"date": "2024-09-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.625}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.36}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.211}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.654}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.236}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.12}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.488}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.791}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.576}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.103}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.153}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.957}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.383}, {"date": "2024-09-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.555}, {"date": "2024-09-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.555}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.307}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.15}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.618}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.18}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.057}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.447}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.755}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.527}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.087}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.119}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.911}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.363}, {"date": "2024-09-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.526}, {"date": "2024-09-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.526}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.311}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.166}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.597}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.185}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.074}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.426}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.751}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.532}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.068}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.108}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.913}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.338}, {"date": "2024-09-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.539}, {"date": "2024-09-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.539}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.303}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.179}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.548}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.179}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.087}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.378}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.738}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.549}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.015}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.094}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.926}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.292}, {"date": "2024-09-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.544}, {"date": "2024-09-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.544}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.26}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.117}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.545}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.136}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.026}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.377}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.692}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.474}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.014}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.049}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.857}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.276}, {"date": "2024-10-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.584}, {"date": "2024-10-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.584}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.294}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.158}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.562}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.171}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.069}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.394}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.719}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.513}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.021}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.077}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.89}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.297}, {"date": "2024-10-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.631}, {"date": "2024-10-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.631}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.268}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.135}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.53}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.144}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.044}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.361}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.7}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.501}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.993}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.058}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.881}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.267}, {"date": "2024-10-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.553}, {"date": "2024-10-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.553}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.22}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.097}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.466}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.097}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.005}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.296}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.654}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.465}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.933}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.012}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.843}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.211}, {"date": "2024-10-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.573}, {"date": "2024-10-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.573}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.191}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.065}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.441}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.069}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.975}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.272}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.616}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.423}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.902}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.977}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.805}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.18}, {"date": "2024-11-04", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.536}, {"date": "2024-11-04", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.536}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.176}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.054}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.416}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.052}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.962}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.245}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.613}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.421}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.89}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.964}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.799}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.155}, {"date": "2024-11-11", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.521}, {"date": "2024-11-11", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.521}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.168}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.042}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.414}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.046}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.95}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.249}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.593}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.402}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.867}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.946}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.788}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.128}, {"date": "2024-11-18", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.491}, {"date": "2024-11-18", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.491}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.166}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.037}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.421}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.044}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.946}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.254}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.586}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.39}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.871}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.95}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.779}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.149}, {"date": "2024-11-25", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.539}, {"date": "2024-11-25", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.539}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.156}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.027}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.408}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.034}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.936}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.242}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.574}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.375}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.861}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.937}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.767}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.134}, {"date": "2024-12-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.54}, {"date": "2024-12-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.54}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.131}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.004}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.379}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.008}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.912}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.213}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.558}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.364}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.835}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.914}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.751}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.103}, {"date": "2024-12-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.458}, {"date": "2024-12-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.458}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.137}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.023}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.362}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.016}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.933}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.196}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.556}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.379}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.813}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.911}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.76}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.086}, {"date": "2024-12-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.494}, {"date": "2024-12-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.494}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.145}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.025}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.382}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.024}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.935}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.216}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.564}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.374}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.838}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.915}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.753}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.103}, {"date": "2024-12-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.476}, {"date": "2024-12-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.476}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.128}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.005}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.37}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.006}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.914}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.203}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.554}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.365}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.827}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.907}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.745}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.096}, {"date": "2024-12-30", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.503}, {"date": "2024-12-30", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.503}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.168}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.047}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.406}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.047}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.958}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.239}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.587}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.395}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.865}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.935}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.77}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.128}, {"date": "2025-01-06", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.561}, {"date": "2025-01-06", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.561}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.164}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.04}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.408}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.043}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.95}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.242}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.585}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.394}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.862}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.939}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.77}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.136}, {"date": "2025-01-13", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.602}, {"date": "2025-01-13", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.602}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.229}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.099}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.485}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.109}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.011}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.32}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.642}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.444}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.928}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.998}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.821}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.206}, {"date": "2025-01-20", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.715}, {"date": "2025-01-20", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.715}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.224}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.096}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.478}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.103}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.006}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.313}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.644}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.45}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.923}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.999}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.825}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.203}, {"date": "2025-01-27", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.659}, {"date": "2025-01-27", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.659}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.205}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.062}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.486}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.082}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.972}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.32}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.633}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.42}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.941}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.99}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.799}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.212}, {"date": "2025-02-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.66}, {"date": "2025-02-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.66}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.253}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.113}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.529}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.128}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.022}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.357}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.685}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.471}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.995}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.05}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.853}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.278}, {"date": "2025-02-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.665}, {"date": "2025-02-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.665}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.276}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.113}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.597}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.148}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.021}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.422}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.723}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.477}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.078}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.088}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.855}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.359}, {"date": "2025-02-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.677}, {"date": "2025-02-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.677}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.255}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.09}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.577}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.125}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.997}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.399}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.706}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.457}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.064}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.075}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.839}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.349}, {"date": "2025-02-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.697}, {"date": "2025-02-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.697}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.206}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.043}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.524}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.078}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.951}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.349}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.654}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.406}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.012}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.022}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.795}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.286}, {"date": "2025-03-03", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.635}, {"date": "2025-03-03", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.635}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.197}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.039}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.505}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.069}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.947}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.332}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.64}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.4}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.986}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.005}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.791}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.254}, {"date": "2025-03-10", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.582}, {"date": "2025-03-10", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.582}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.184}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.035}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.475}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.058}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.943}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.303}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.627}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.401}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.95}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 3.989}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.788}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.221}, {"date": "2025-03-17", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.549}, {"date": "2025-03-17", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.549}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.24}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.09}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.531}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.115}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.999}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.362}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.674}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.45}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 3.995}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.032}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.83}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.265}, {"date": "2025-03-24", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.567}, {"date": "2025-03-24", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.567}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.288}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.131}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.594}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.162}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.04}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.422}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.73}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.492}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.07}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.093}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.876}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.344}, {"date": "2025-03-31", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.592}, {"date": "2025-03-31", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.592}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.37}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.209}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.683}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.243}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.118}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.511}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.815}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.573}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.158}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.174}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.952}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.43}, {"date": "2025-04-07", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.639}, {"date": "2025-04-07", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.639}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.295}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.135}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.607}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.168}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.043}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.435}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.743}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.503}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.085}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.103}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.888}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.351}, {"date": "2025-04-14", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.579}, {"date": "2025-04-14", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.579}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.268}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.112}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.572}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.141}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.02}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.4}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.718}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.482}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.056}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.074}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.862}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.318}, {"date": "2025-04-21", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.534}, {"date": "2025-04-21", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.534}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.261}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.107}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.561}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.133}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.013}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.388}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.713}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.485}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.039}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.071}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.864}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.31}, {"date": "2025-04-28", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.514}, {"date": "2025-04-28", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.514}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.273}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.123}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.564}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.147}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.031}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.393}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.715}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.488}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.041}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.072}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.869}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.306}, {"date": "2025-05-05", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.497}, {"date": "2025-05-05", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.497}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.249}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.08}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.578}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.12}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.986}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.404}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.703}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.449}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.066}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.068}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.84}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.331}, {"date": "2025-05-12", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.476}, {"date": "2025-05-12", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.476}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.302}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.135}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.628}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.173}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.041}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.455}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.756}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.507}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.113}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.116}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.892}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.375}, {"date": "2025-05-19", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.536}, {"date": "2025-05-19", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.536}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.288}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.124}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.608}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.16}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.03}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.436}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.74}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.498}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.084}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.102}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.884}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.353}, {"date": "2025-05-26", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.487}, {"date": "2025-05-26", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.487}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.256}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.103}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.552}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.127}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.008}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.38}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.712}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.49}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.029}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.069}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.871}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.299}, {"date": "2025-06-02", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.451}, {"date": "2025-06-02", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.451}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.235}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.084}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.529}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.108}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 2.99}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.36}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.687}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.465}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.003}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.037}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.843}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.261}, {"date": "2025-06-09", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.471}, {"date": "2025-06-09", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.471}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.265}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.117}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.552}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.139}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.023}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.384}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.711}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.496}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.016}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.062}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.877}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.276}, {"date": "2025-06-16", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.571}, {"date": "2025-06-16", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.571}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "all", "formulation": "all", "price": 3.338}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "all", "formulation": "conventional", "price": 3.196}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "all", "formulation": "reformulated", "price": 3.614}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "all", "price": 3.213}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "conventional", "price": 3.102}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "regular", "formulation": "reformulated", "price": 3.449}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "all", "price": 3.775}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "conventional", "price": 3.568}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "midgrade", "formulation": "reformulated", "price": 4.069}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "all", "price": 4.128}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "conventional", "price": 3.95}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "premium", "formulation": "reformulated", "price": 4.333}, {"date": "2025-06-23", "fuel": "diesel", "grade": "all", "formulation": "NA", "price": 3.775}, {"date": "2025-06-23", "fuel": "diesel", "grade": "ultra_low_sulfur", "formulation": "NA", "price": 3.775}], "anchored": true, "attachedMetadata": ""}, {"kind": "table", "id": "table-904593", "displayId": "fuel-prices", "names": ["date", "fuel", "avg_price"], "rows": [{"date": "1990-08-20", "fuel": "gasoline", "avg_price": 1.191}, {"date": "1990-08-27", "fuel": "gasoline", "avg_price": 1.245}, {"date": "1990-09-03", "fuel": "gasoline", "avg_price": 1.242}, {"date": "1990-09-10", "fuel": "gasoline", "avg_price": 1.252}, {"date": "1990-09-17", "fuel": "gasoline", "avg_price": 1.266}, {"date": "1990-09-24", "fuel": "gasoline", "avg_price": 1.272}, {"date": "1990-10-01", "fuel": "gasoline", "avg_price": 1.321}, {"date": "1990-10-08", "fuel": "gasoline", "avg_price": 1.333}, {"date": "1990-10-15", "fuel": "gasoline", "avg_price": 1.339}, {"date": "1990-10-22", "fuel": "gasoline", "avg_price": 1.345}, {"date": "1990-10-29", "fuel": "gasoline", "avg_price": 1.339}, {"date": "1990-11-05", "fuel": "gasoline", "avg_price": 1.334}, {"date": "1990-11-12", "fuel": "gasoline", "avg_price": 1.328}, {"date": "1990-11-19", "fuel": "gasoline", "avg_price": 1.323}, {"date": "1990-11-26", "fuel": "gasoline", "avg_price": 1.311}, {"date": "1990-12-03", "fuel": "gasoline", "avg_price": 1.341}, {"date": "1991-01-21", "fuel": "gasoline", "avg_price": 1.192}, {"date": "1991-01-28", "fuel": "gasoline", "avg_price": 1.168}, {"date": "1991-02-04", "fuel": "gasoline", "avg_price": 1.139}, {"date": "1991-02-11", "fuel": "gasoline", "avg_price": 1.106}, {"date": "1991-02-18", "fuel": "gasoline", "avg_price": 1.078}, {"date": "1991-02-25", "fuel": "gasoline", "avg_price": 1.054}, {"date": "1991-03-04", "fuel": "gasoline", "avg_price": 1.025}, {"date": "1991-03-11", "fuel": "gasoline", "avg_price": 1.045}, {"date": "1991-03-18", "fuel": "gasoline", "avg_price": 1.043}, {"date": "1991-03-25", "fuel": "gasoline", "avg_price": 1.047}, {"date": "1991-04-01", "fuel": "gasoline", "avg_price": 1.052}, {"date": "1991-04-08", "fuel": "gasoline", "avg_price": 1.066}, {"date": "1991-04-15", "fuel": "gasoline", "avg_price": 1.069}, {"date": "1991-04-22", "fuel": "gasoline", "avg_price": 1.09}, {"date": "1991-04-29", "fuel": "gasoline", "avg_price": 1.104}, {"date": "1991-05-06", "fuel": "gasoline", "avg_price": 1.113}, {"date": "1991-05-13", "fuel": "gasoline", "avg_price": 1.121}, {"date": "1991-05-20", "fuel": "gasoline", "avg_price": 1.129}, {"date": "1991-05-27", "fuel": "gasoline", "avg_price": 1.14}, {"date": "1991-06-03", "fuel": "gasoline", "avg_price": 1.138}, {"date": "1991-06-10", "fuel": "gasoline", "avg_price": 1.135}, {"date": "1991-06-17", "fuel": "gasoline", "avg_price": 1.126}, {"date": "1991-06-24", "fuel": "gasoline", "avg_price": 1.114}, {"date": "1991-07-01", "fuel": "gasoline", "avg_price": 1.104}, {"date": "1991-07-08", "fuel": "gasoline", "avg_price": 1.098}, {"date": "1991-07-15", "fuel": "gasoline", "avg_price": 1.094}, {"date": "1991-07-22", "fuel": "gasoline", "avg_price": 1.091}, {"date": "1991-07-29", "fuel": "gasoline", "avg_price": 1.091}, {"date": "1991-08-05", "fuel": "gasoline", "avg_price": 1.099}, {"date": "1991-08-12", "fuel": "gasoline", "avg_price": 1.112}, {"date": "1991-08-19", "fuel": "gasoline", "avg_price": 1.124}, {"date": "1991-08-26", "fuel": "gasoline", "avg_price": 1.124}, {"date": "1991-09-02", "fuel": "gasoline", "avg_price": 1.127}, {"date": "1991-09-09", "fuel": "gasoline", "avg_price": 1.12}, {"date": "1991-09-16", "fuel": "gasoline", "avg_price": 1.11}, {"date": "1991-09-23", "fuel": "gasoline", "avg_price": 1.097}, {"date": "1991-09-30", "fuel": "gasoline", "avg_price": 1.092}, {"date": "1991-10-07", "fuel": "gasoline", "avg_price": 1.089}, {"date": "1991-10-14", "fuel": "gasoline", "avg_price": 1.084}, {"date": "1991-10-21", "fuel": "gasoline", "avg_price": 1.088}, {"date": "1991-10-28", "fuel": "gasoline", "avg_price": 1.091}, {"date": "1991-11-04", "fuel": "gasoline", "avg_price": 1.091}, {"date": "1991-11-11", "fuel": "gasoline", "avg_price": 1.102}, {"date": "1991-11-18", "fuel": "gasoline", "avg_price": 1.104}, {"date": "1991-11-25", "fuel": "gasoline", "avg_price": 1.099}, {"date": "1991-12-02", "fuel": "gasoline", "avg_price": 1.099}, {"date": "1991-12-09", "fuel": "gasoline", "avg_price": 1.091}, {"date": "1991-12-16", "fuel": "gasoline", "avg_price": 1.075}, {"date": "1991-12-23", "fuel": "gasoline", "avg_price": 1.063}, {"date": "1991-12-30", "fuel": "gasoline", "avg_price": 1.053}, {"date": "1992-01-06", "fuel": "gasoline", "avg_price": 1.042}, {"date": "1992-01-13", "fuel": "gasoline", "avg_price": 1.026}, {"date": "1992-01-20", "fuel": "gasoline", "avg_price": 1.014}, {"date": "1992-01-27", "fuel": "gasoline", "avg_price": 1.006}, {"date": "1992-02-03", "fuel": "gasoline", "avg_price": 0.995}, {"date": "1992-02-10", "fuel": "gasoline", "avg_price": 1.004}, {"date": "1992-02-17", "fuel": "gasoline", "avg_price": 1.011}, {"date": "1992-02-24", "fuel": "gasoline", "avg_price": 1.014}, {"date": "1992-03-02", "fuel": "gasoline", "avg_price": 1.012}, {"date": "1992-03-09", "fuel": "gasoline", "avg_price": 1.013}, {"date": "1992-03-16", "fuel": "gasoline", "avg_price": 1.01}, {"date": "1992-03-23", "fuel": "gasoline", "avg_price": 1.015}, {"date": "1992-03-30", "fuel": "gasoline", "avg_price": 1.013}, {"date": "1992-04-06", "fuel": "gasoline", "avg_price": 1.026}, {"date": "1992-04-13", "fuel": "gasoline", "avg_price": 1.051}, {"date": "1992-04-20", "fuel": "gasoline", "avg_price": 1.058}, {"date": "1992-04-27", "fuel": "gasoline", "avg_price": 1.072}, {"date": "1992-05-04", "fuel": "gasoline", "avg_price": 1.089}, {"date": "1992-05-11", "fuel": "gasoline", "avg_price": 1.102}, {"date": "1992-05-18", "fuel": "gasoline", "avg_price": 1.118}, {"date": "1992-05-25", "fuel": "gasoline", "avg_price": 1.12}, {"date": "1992-06-01", "fuel": "gasoline", "avg_price": 1.128}, {"date": "1992-06-08", "fuel": "gasoline", "avg_price": 1.143}, {"date": "1992-06-15", "fuel": "gasoline", "avg_price": 1.151}, {"date": "1992-06-22", "fuel": "gasoline", "avg_price": 1.153}, {"date": "1992-06-29", "fuel": "gasoline", "avg_price": 1.149}, {"date": "1992-07-06", "fuel": "gasoline", "avg_price": 1.147}, {"date": "1992-07-13", "fuel": "gasoline", "avg_price": 1.139}, {"date": "1992-07-20", "fuel": "gasoline", "avg_price": 1.132}, {"date": "1992-07-27", "fuel": "gasoline", "avg_price": 1.128}, {"date": "1992-08-03", "fuel": "gasoline", "avg_price": 1.126}, {"date": "1992-08-10", "fuel": "gasoline", "avg_price": 1.123}, {"date": "1992-08-17", "fuel": "gasoline", "avg_price": 1.116}, {"date": "1992-08-24", "fuel": "gasoline", "avg_price": 1.123}, {"date": "1992-08-31", "fuel": "gasoline", "avg_price": 1.121}, {"date": "1992-09-07", "fuel": "gasoline", "avg_price": 1.121}, {"date": "1992-09-14", "fuel": "gasoline", "avg_price": 1.124}, {"date": "1992-09-21", "fuel": "gasoline", "avg_price": 1.123}, {"date": "1992-09-28", "fuel": "gasoline", "avg_price": 1.118}, {"date": "1992-10-05", "fuel": "gasoline", "avg_price": 1.115}, {"date": "1992-10-12", "fuel": "gasoline", "avg_price": 1.115}, {"date": "1992-10-19", "fuel": "gasoline", "avg_price": 1.113}, {"date": "1992-10-26", "fuel": "gasoline", "avg_price": 1.113}, {"date": "1992-11-02", "fuel": "gasoline", "avg_price": 1.12}, {"date": "1992-11-09", "fuel": "gasoline", "avg_price": 1.12}, {"date": "1992-11-16", "fuel": "gasoline", "avg_price": 1.112}, {"date": "1992-11-23", "fuel": "gasoline", "avg_price": 1.106}, {"date": "1992-11-30", "fuel": "gasoline", "avg_price": 1.098}, {"date": "1992-12-07", "fuel": "gasoline", "avg_price": 1.089}, {"date": "1992-12-14", "fuel": "gasoline", "avg_price": 1.078}, {"date": "1992-12-21", "fuel": "gasoline", "avg_price": 1.074}, {"date": "1992-12-28", "fuel": "gasoline", "avg_price": 1.069}, {"date": "1993-01-04", "fuel": "gasoline", "avg_price": 1.065}, {"date": "1993-01-11", "fuel": "gasoline", "avg_price": 1.066}, {"date": "1993-01-18", "fuel": "gasoline", "avg_price": 1.061}, {"date": "1993-01-25", "fuel": "gasoline", "avg_price": 1.055}, {"date": "1993-02-01", "fuel": "gasoline", "avg_price": 1.055}, {"date": "1993-02-08", "fuel": "gasoline", "avg_price": 1.062}, {"date": "1993-02-15", "fuel": "gasoline", "avg_price": 1.053}, {"date": "1993-02-22", "fuel": "gasoline", "avg_price": 1.047}, {"date": "1993-03-01", "fuel": "gasoline", "avg_price": 1.042}, {"date": "1993-03-08", "fuel": "gasoline", "avg_price": 1.048}, {"date": "1993-03-15", "fuel": "gasoline", "avg_price": 1.058}, {"date": "1993-03-22", "fuel": "gasoline", "avg_price": 1.056}, {"date": "1993-03-29", "fuel": "gasoline", "avg_price": 1.057}, {"date": "1993-04-05", "fuel": "gasoline", "avg_price": 1.068}, {"date": "1993-04-12", "fuel": "gasoline", "avg_price": 1.079}, {"date": "1993-04-19", "fuel": "gasoline", "avg_price": 1.079}, {"date": "1993-04-26", "fuel": "gasoline", "avg_price": 1.086}, {"date": "1993-05-03", "fuel": "gasoline", "avg_price": 1.086}, {"date": "1993-05-10", "fuel": "gasoline", "avg_price": 1.097}, {"date": "1993-05-17", "fuel": "gasoline", "avg_price": 1.106}, {"date": "1993-05-24", "fuel": "gasoline", "avg_price": 1.106}, {"date": "1993-05-31", "fuel": "gasoline", "avg_price": 1.107}, {"date": "1993-06-07", "fuel": "gasoline", "avg_price": 1.104}, {"date": "1993-06-14", "fuel": "gasoline", "avg_price": 1.101}, {"date": "1993-06-21", "fuel": "gasoline", "avg_price": 1.095}, {"date": "1993-06-28", "fuel": "gasoline", "avg_price": 1.089}, {"date": "1993-07-05", "fuel": "gasoline", "avg_price": 1.086}, {"date": "1993-07-12", "fuel": "gasoline", "avg_price": 1.081}, {"date": "1993-07-19", "fuel": "gasoline", "avg_price": 1.075}, {"date": "1993-07-26", "fuel": "gasoline", "avg_price": 1.069}, {"date": "1993-08-02", "fuel": "gasoline", "avg_price": 1.062}, {"date": "1993-08-09", "fuel": "gasoline", "avg_price": 1.06}, {"date": "1993-08-16", "fuel": "gasoline", "avg_price": 1.059}, {"date": "1993-08-23", "fuel": "gasoline", "avg_price": 1.065}, {"date": "1993-08-30", "fuel": "gasoline", "avg_price": 1.062}, {"date": "1993-09-06", "fuel": "gasoline", "avg_price": 1.055}, {"date": "1993-09-13", "fuel": "gasoline", "avg_price": 1.051}, {"date": "1993-09-20", "fuel": "gasoline", "avg_price": 1.045}, {"date": "1993-09-27", "fuel": "gasoline", "avg_price": 1.047}, {"date": "1993-10-04", "fuel": "gasoline", "avg_price": 1.092}, {"date": "1993-10-11", "fuel": "gasoline", "avg_price": 1.09}, {"date": "1993-10-18", "fuel": "gasoline", "avg_price": 1.093}, {"date": "1993-10-25", "fuel": "gasoline", "avg_price": 1.092}, {"date": "1993-11-01", "fuel": "gasoline", "avg_price": 1.084}, {"date": "1993-11-08", "fuel": "gasoline", "avg_price": 1.075}, {"date": "1993-11-15", "fuel": "gasoline", "avg_price": 1.064}, {"date": "1993-11-22", "fuel": "gasoline", "avg_price": 1.058}, {"date": "1993-11-29", "fuel": "gasoline", "avg_price": 1.051}, {"date": "1993-12-06", "fuel": "gasoline", "avg_price": 1.036}, {"date": "1993-12-13", "fuel": "gasoline", "avg_price": 1.018}, {"date": "1993-12-20", "fuel": "gasoline", "avg_price": 1.003}, {"date": "1993-12-27", "fuel": "gasoline", "avg_price": 0.999}, {"date": "1994-01-03", "fuel": "gasoline", "avg_price": 0.992}, {"date": "1994-01-10", "fuel": "gasoline", "avg_price": 0.995}, {"date": "1994-01-17", "fuel": "gasoline", "avg_price": 1.001}, {"date": "1994-01-24", "fuel": "gasoline", "avg_price": 0.999}, {"date": "1994-01-31", "fuel": "gasoline", "avg_price": 1.005}, {"date": "1994-02-07", "fuel": "gasoline", "avg_price": 1.007}, {"date": "1994-02-14", "fuel": "gasoline", "avg_price": 1.016}, {"date": "1994-02-21", "fuel": "gasoline", "avg_price": 1.009}, {"date": "1994-02-28", "fuel": "gasoline", "avg_price": 1.004}, {"date": "1994-03-07", "fuel": "gasoline", "avg_price": 1.007}, {"date": "1994-03-14", "fuel": "gasoline", "avg_price": 1.005}, {"date": "1994-03-21", "fuel": "diesel", "avg_price": 1.106}, {"date": "1994-03-21", "fuel": "gasoline", "avg_price": 1.007}, {"date": "1994-03-28", "fuel": "diesel", "avg_price": 1.107}, {"date": "1994-03-28", "fuel": "gasoline", "avg_price": 1.012}, {"date": "1994-04-04", "fuel": "gasoline", "avg_price": 1.011}, {"date": "1994-04-04", "fuel": "diesel", "avg_price": 1.109}, {"date": "1994-04-11", "fuel": "diesel", "avg_price": 1.108}, {"date": "1994-04-11", "fuel": "gasoline", "avg_price": 1.028}, {"date": "1994-04-18", "fuel": "diesel", "avg_price": 1.105}, {"date": "1994-04-18", "fuel": "gasoline", "avg_price": 1.033}, {"date": "1994-04-25", "fuel": "diesel", "avg_price": 1.106}, {"date": "1994-04-25", "fuel": "gasoline", "avg_price": 1.037}, {"date": "1994-05-02", "fuel": "diesel", "avg_price": 1.104}, {"date": "1994-05-02", "fuel": "gasoline", "avg_price": 1.04}, {"date": "1994-05-09", "fuel": "diesel", "avg_price": 1.101}, {"date": "1994-05-09", "fuel": "gasoline", "avg_price": 1.045}, {"date": "1994-05-16", "fuel": "gasoline", "avg_price": 1.046}, {"date": "1994-05-16", "fuel": "diesel", "avg_price": 1.099}, {"date": "1994-05-23", "fuel": "gasoline", "avg_price": 1.05}, {"date": "1994-05-23", "fuel": "diesel", "avg_price": 1.099}, {"date": "1994-05-30", "fuel": "diesel", "avg_price": 1.098}, {"date": "1994-05-30", "fuel": "gasoline", "avg_price": 1.056}, {"date": "1994-06-06", "fuel": "diesel", "avg_price": 1.101}, {"date": "1994-06-06", "fuel": "gasoline", "avg_price": 1.065}, {"date": "1994-06-13", "fuel": "diesel", "avg_price": 1.098}, {"date": "1994-06-13", "fuel": "gasoline", "avg_price": 1.073}, {"date": "1994-06-20", "fuel": "diesel", "avg_price": 1.103}, {"date": "1994-06-20", "fuel": "gasoline", "avg_price": 1.079}, {"date": "1994-06-27", "fuel": "diesel", "avg_price": 1.108}, {"date": "1994-06-27", "fuel": "gasoline", "avg_price": 1.095}, {"date": "1994-07-04", "fuel": "diesel", "avg_price": 1.109}, {"date": "1994-07-04", "fuel": "gasoline", "avg_price": 1.097}, {"date": "1994-07-11", "fuel": "gasoline", "avg_price": 1.103}, {"date": "1994-07-11", "fuel": "diesel", "avg_price": 1.11}, {"date": "1994-07-18", "fuel": "diesel", "avg_price": 1.111}, {"date": "1994-07-18", "fuel": "gasoline", "avg_price": 1.109}, {"date": "1994-07-25", "fuel": "diesel", "avg_price": 1.111}, {"date": "1994-07-25", "fuel": "gasoline", "avg_price": 1.114}, {"date": "1994-08-01", "fuel": "diesel", "avg_price": 1.116}, {"date": "1994-08-01", "fuel": "gasoline", "avg_price": 1.13}, {"date": "1994-08-08", "fuel": "diesel", "avg_price": 1.127}, {"date": "1994-08-08", "fuel": "gasoline", "avg_price": 1.157}, {"date": "1994-08-15", "fuel": "diesel", "avg_price": 1.127}, {"date": "1994-08-15", "fuel": "gasoline", "avg_price": 1.161}, {"date": "1994-08-22", "fuel": "gasoline", "avg_price": 1.165}, {"date": "1994-08-22", "fuel": "diesel", "avg_price": 1.124}, {"date": "1994-08-29", "fuel": "diesel", "avg_price": 1.122}, {"date": "1994-08-29", "fuel": "gasoline", "avg_price": 1.161}, {"date": "1994-09-05", "fuel": "diesel", "avg_price": 1.126}, {"date": "1994-09-05", "fuel": "gasoline", "avg_price": 1.156}, {"date": "1994-09-12", "fuel": "diesel", "avg_price": 1.128}, {"date": "1994-09-12", "fuel": "gasoline", "avg_price": 1.15}, {"date": "1994-09-19", "fuel": "diesel", "avg_price": 1.126}, {"date": "1994-09-19", "fuel": "gasoline", "avg_price": 1.14}, {"date": "1994-09-26", "fuel": "diesel", "avg_price": 1.12}, {"date": "1994-09-26", "fuel": "gasoline", "avg_price": 1.129}, {"date": "1994-10-03", "fuel": "diesel", "avg_price": 1.118}, {"date": "1994-10-03", "fuel": "gasoline", "avg_price": 1.12}, {"date": "1994-10-10", "fuel": "gasoline", "avg_price": 1.114}, {"date": "1994-10-10", "fuel": "diesel", "avg_price": 1.117}, {"date": "1994-10-17", "fuel": "diesel", "avg_price": 1.119}, {"date": "1994-10-17", "fuel": "gasoline", "avg_price": 1.106}, {"date": "1994-10-24", "fuel": "diesel", "avg_price": 1.122}, {"date": "1994-10-24", "fuel": "gasoline", "avg_price": 1.107}, {"date": "1994-10-31", "fuel": "diesel", "avg_price": 1.133}, {"date": "1994-10-31", "fuel": "gasoline", "avg_price": 1.121}, {"date": "1994-11-07", "fuel": "diesel", "avg_price": 1.133}, {"date": "1994-11-07", "fuel": "gasoline", "avg_price": 1.123}, {"date": "1994-11-14", "fuel": "diesel", "avg_price": 1.135}, {"date": "1994-11-14", "fuel": "gasoline", "avg_price": 1.122}, {"date": "1994-11-21", "fuel": "gasoline", "avg_price": 1.113}, {"date": "1994-11-21", "fuel": "diesel", "avg_price": 1.13}, {"date": "1994-11-28", "fuel": "gasoline", "avg_price": 1.2025833333}, {"date": "1994-11-28", "fuel": "diesel", "avg_price": 1.126}, {"date": "1994-12-05", "fuel": "diesel", "avg_price": 1.123}, {"date": "1994-12-05", "fuel": "gasoline", "avg_price": 1.2031666667}, {"date": "1994-12-12", "fuel": "diesel", "avg_price": 1.114}, {"date": "1994-12-12", "fuel": "gasoline", "avg_price": 1.19275}, {"date": "1994-12-19", "fuel": "diesel", "avg_price": 1.109}, {"date": "1994-12-19", "fuel": "gasoline", "avg_price": 1.1849166667}, {"date": "1994-12-26", "fuel": "diesel", "avg_price": 1.106}, {"date": "1994-12-26", "fuel": "gasoline", "avg_price": 1.1778333333}, {"date": "1995-01-02", "fuel": "diesel", "avg_price": 1.104}, {"date": "1995-01-02", "fuel": "gasoline", "avg_price": 1.1921666667}, {"date": "1995-01-09", "fuel": "gasoline", "avg_price": 1.1970833333}, {"date": "1995-01-09", "fuel": "diesel", "avg_price": 1.102}, {"date": "1995-01-16", "fuel": "gasoline", "avg_price": 1.19125}, {"date": "1995-01-16", "fuel": "diesel", "avg_price": 1.1}, {"date": "1995-01-23", "fuel": "diesel", "avg_price": 1.095}, {"date": "1995-01-23", "fuel": "gasoline", "avg_price": 1.1944166667}, {"date": "1995-01-30", "fuel": "diesel", "avg_price": 1.09}, {"date": "1995-01-30", "fuel": "gasoline", "avg_price": 1.192}, {"date": "1995-02-06", "fuel": "diesel", "avg_price": 1.086}, {"date": "1995-02-06", "fuel": "gasoline", "avg_price": 1.187}, {"date": "1995-02-13", "fuel": "diesel", "avg_price": 1.088}, {"date": "1995-02-13", "fuel": "gasoline", "avg_price": 1.1839166667}, {"date": "1995-02-20", "fuel": "diesel", "avg_price": 1.088}, {"date": "1995-02-20", "fuel": "gasoline", "avg_price": 1.1785}, {"date": "1995-02-27", "fuel": "diesel", "avg_price": 1.089}, {"date": "1995-02-27", "fuel": "gasoline", "avg_price": 1.182}, {"date": "1995-03-06", "fuel": "gasoline", "avg_price": 1.18225}, {"date": "1995-03-06", "fuel": "diesel", "avg_price": 1.089}, {"date": "1995-03-13", "fuel": "diesel", "avg_price": 1.088}, {"date": "1995-03-13", "fuel": "gasoline", "avg_price": 1.17525}, {"date": "1995-03-20", "fuel": "diesel", "avg_price": 1.085}, {"date": "1995-03-20", "fuel": "gasoline", "avg_price": 1.174}, {"date": "1995-03-27", "fuel": "diesel", "avg_price": 1.088}, {"date": "1995-03-27", "fuel": "gasoline", "avg_price": 1.1771666667}, {"date": "1995-04-03", "fuel": "diesel", "avg_price": 1.094}, {"date": "1995-04-03", "fuel": "gasoline", "avg_price": 1.1860833333}, {"date": "1995-04-10", "fuel": "diesel", "avg_price": 1.101}, {"date": "1995-04-10", "fuel": "gasoline", "avg_price": 1.2000833333}, {"date": "1995-04-17", "fuel": "gasoline", "avg_price": 1.2124166667}, {"date": "1995-04-17", "fuel": "diesel", "avg_price": 1.106}, {"date": "1995-04-24", "fuel": "gasoline", "avg_price": 1.2325833333}, {"date": "1995-04-24", "fuel": "diesel", "avg_price": 1.115}, {"date": "1995-05-01", "fuel": "diesel", "avg_price": 1.119}, {"date": "1995-05-01", "fuel": "gasoline", "avg_price": 1.24275}, {"date": "1995-05-08", "fuel": "diesel", "avg_price": 1.126}, {"date": "1995-05-08", "fuel": "gasoline", "avg_price": 1.2643333333}, {"date": "1995-05-15", "fuel": "diesel", "avg_price": 1.126}, {"date": "1995-05-15", "fuel": "gasoline", "avg_price": 1.274}, {"date": "1995-05-22", "fuel": "diesel", "avg_price": 1.124}, {"date": "1995-05-22", "fuel": "gasoline", "avg_price": 1.2905833333}, {"date": "1995-05-29", "fuel": "diesel", "avg_price": 1.13}, {"date": "1995-05-29", "fuel": "gasoline", "avg_price": 1.29425}, {"date": "1995-06-05", "fuel": "diesel", "avg_price": 1.124}, {"date": "1995-06-05", "fuel": "gasoline", "avg_price": 1.2939166667}, {"date": "1995-06-12", "fuel": "gasoline", "avg_price": 1.2913333333}, {"date": "1995-06-12", "fuel": "diesel", "avg_price": 1.122}, {"date": "1995-06-19", "fuel": "diesel", "avg_price": 1.117}, {"date": "1995-06-19", "fuel": "gasoline", "avg_price": 1.28575}, {"date": "1995-06-26", "fuel": "diesel", "avg_price": 1.112}, {"date": "1995-06-26", "fuel": "gasoline", "avg_price": 1.2798333333}, {"date": "1995-07-03", "fuel": "diesel", "avg_price": 1.106}, {"date": "1995-07-03", "fuel": "gasoline", "avg_price": 1.2730833333}, {"date": "1995-07-10", "fuel": "diesel", "avg_price": 1.103}, {"date": "1995-07-10", "fuel": "gasoline", "avg_price": 1.2644166667}, {"date": "1995-07-17", "fuel": "diesel", "avg_price": 1.099}, {"date": "1995-07-17", "fuel": "gasoline", "avg_price": 1.2545833333}, {"date": "1995-07-24", "fuel": "gasoline", "avg_price": 1.2445833333}, {"date": "1995-07-24", "fuel": "diesel", "avg_price": 1.098}, {"date": "1995-07-31", "fuel": "diesel", "avg_price": 1.093}, {"date": "1995-07-31", "fuel": "gasoline", "avg_price": 1.2321666667}, {"date": "1995-08-07", "fuel": "diesel", "avg_price": 1.099}, {"date": "1995-08-07", "fuel": "gasoline", "avg_price": 1.2270833333}, {"date": "1995-08-14", "fuel": "diesel", "avg_price": 1.106}, {"date": "1995-08-14", "fuel": "gasoline", "avg_price": 1.2228333333}, {"date": "1995-08-21", "fuel": "diesel", "avg_price": 1.106}, {"date": "1995-08-21", "fuel": "gasoline", "avg_price": 1.2206666667}, {"date": "1995-08-28", "fuel": "diesel", "avg_price": 1.109}, {"date": "1995-08-28", "fuel": "gasoline", "avg_price": 1.21325}, {"date": "1995-09-04", "fuel": "diesel", "avg_price": 1.115}, {"date": "1995-09-04", "fuel": "gasoline", "avg_price": 1.2110833333}, {"date": "1995-09-11", "fuel": "gasoline", "avg_price": 1.2075833333}, {"date": "1995-09-11", "fuel": "diesel", "avg_price": 1.119}, {"date": "1995-09-18", "fuel": "diesel", "avg_price": 1.122}, {"date": "1995-09-18", "fuel": "gasoline", "avg_price": 1.2063333333}, {"date": "1995-09-25", "fuel": "diesel", "avg_price": 1.121}, {"date": "1995-09-25", "fuel": "gasoline", "avg_price": 1.2041666667}, {"date": "1995-10-02", "fuel": "diesel", "avg_price": 1.117}, {"date": "1995-10-02", "fuel": "gasoline", "avg_price": 1.2005833333}, {"date": "1995-10-09", "fuel": "diesel", "avg_price": 1.117}, {"date": "1995-10-09", "fuel": "gasoline", "avg_price": 1.1949166667}, {"date": "1995-10-16", "fuel": "diesel", "avg_price": 1.117}, {"date": "1995-10-16", "fuel": "gasoline", "avg_price": 1.1870833333}, {"date": "1995-10-23", "fuel": "gasoline", "avg_price": 1.1790833333}, {"date": "1995-10-23", "fuel": "diesel", "avg_price": 1.114}, {"date": "1995-10-30", "fuel": "diesel", "avg_price": 1.11}, {"date": "1995-10-30", "fuel": "gasoline", "avg_price": 1.1693333333}, {"date": "1995-11-06", "fuel": "diesel", "avg_price": 1.118}, {"date": "1995-11-06", "fuel": "gasoline", "avg_price": 1.16475}, {"date": "1995-11-13", "fuel": "diesel", "avg_price": 1.118}, {"date": "1995-11-13", "fuel": "gasoline", "avg_price": 1.1621666667}, {"date": "1995-11-20", "fuel": "diesel", "avg_price": 1.119}, {"date": "1995-11-20", "fuel": "gasoline", "avg_price": 1.158}, {"date": "1995-11-27", "fuel": "diesel", "avg_price": 1.124}, {"date": "1995-11-27", "fuel": "gasoline", "avg_price": 1.1574166667}, {"date": "1995-12-04", "fuel": "gasoline", "avg_price": 1.1586666667}, {"date": "1995-12-04", "fuel": "diesel", "avg_price": 1.123}, {"date": "1995-12-11", "fuel": "diesel", "avg_price": 1.124}, {"date": "1995-12-11", "fuel": "gasoline", "avg_price": 1.1598333333}, {"date": "1995-12-18", "fuel": "diesel", "avg_price": 1.13}, {"date": "1995-12-18", "fuel": "gasoline", "avg_price": 1.1716666667}, {"date": "1995-12-25", "fuel": "diesel", "avg_price": 1.141}, {"date": "1995-12-25", "fuel": "gasoline", "avg_price": 1.1763333333}, {"date": "1996-01-01", "fuel": "diesel", "avg_price": 1.148}, {"date": "1996-01-01", "fuel": "gasoline", "avg_price": 1.178}, {"date": "1996-01-08", "fuel": "diesel", "avg_price": 1.146}, {"date": "1996-01-08", "fuel": "gasoline", "avg_price": 1.1848333333}, {"date": "1996-01-15", "fuel": "diesel", "avg_price": 1.152}, {"date": "1996-01-15", "fuel": "gasoline", "avg_price": 1.1918333333}, {"date": "1996-01-22", "fuel": "gasoline", "avg_price": 1.18725}, {"date": "1996-01-22", "fuel": "diesel", "avg_price": 1.144}, {"date": "1996-01-29", "fuel": "diesel", "avg_price": 1.136}, {"date": "1996-01-29", "fuel": "gasoline", "avg_price": 1.18275}, {"date": "1996-02-05", "fuel": "diesel", "avg_price": 1.13}, {"date": "1996-02-05", "fuel": "gasoline", "avg_price": 1.1796666667}, {"date": "1996-02-12", "fuel": "diesel", "avg_price": 1.134}, {"date": "1996-02-12", "fuel": "gasoline", "avg_price": 1.1765833333}, {"date": "1996-02-19", "fuel": "diesel", "avg_price": 1.151}, {"date": "1996-02-19", "fuel": "gasoline", "avg_price": 1.1820833333}, {"date": "1996-02-26", "fuel": "diesel", "avg_price": 1.164}, {"date": "1996-02-26", "fuel": "gasoline", "avg_price": 1.20075}, {"date": "1996-03-04", "fuel": "gasoline", "avg_price": 1.216}, {"date": "1996-03-04", "fuel": "diesel", "avg_price": 1.175}, {"date": "1996-03-11", "fuel": "diesel", "avg_price": 1.173}, {"date": "1996-03-11", "fuel": "gasoline", "avg_price": 1.2185}, {"date": "1996-03-18", "fuel": "diesel", "avg_price": 1.172}, {"date": "1996-03-18", "fuel": "gasoline", "avg_price": 1.2275833333}, {"date": "1996-03-25", "fuel": "diesel", "avg_price": 1.21}, {"date": "1996-03-25", "fuel": "gasoline", "avg_price": 1.2536666667}, {"date": "1996-04-01", "fuel": "diesel", "avg_price": 1.222}, {"date": "1996-04-01", "fuel": "gasoline", "avg_price": 1.2685833333}, {"date": "1996-04-08", "fuel": "diesel", "avg_price": 1.249}, {"date": "1996-04-08", "fuel": "gasoline", "avg_price": 1.2933333333}, {"date": "1996-04-15", "fuel": "gasoline", "avg_price": 1.3344166667}, {"date": "1996-04-15", "fuel": "diesel", "avg_price": 1.305}, {"date": "1996-04-22", "fuel": "gasoline", "avg_price": 1.35825}, {"date": "1996-04-22", "fuel": "diesel", "avg_price": 1.304}, {"date": "1996-04-29", "fuel": "diesel", "avg_price": 1.285}, {"date": "1996-04-29", "fuel": "gasoline", "avg_price": 1.3765833333}, {"date": "1996-05-06", "fuel": "diesel", "avg_price": 1.292}, {"date": "1996-05-06", "fuel": "gasoline", "avg_price": 1.3811666667}, {"date": "1996-05-13", "fuel": "diesel", "avg_price": 1.285}, {"date": "1996-05-13", "fuel": "gasoline", "avg_price": 1.38375}, {"date": "1996-05-20", "fuel": "diesel", "avg_price": 1.274}, {"date": "1996-05-20", "fuel": "gasoline", "avg_price": 1.3891666667}, {"date": "1996-05-27", "fuel": "diesel", "avg_price": 1.254}, {"date": "1996-05-27", "fuel": "gasoline", "avg_price": 1.37975}, {"date": "1996-06-03", "fuel": "gasoline", "avg_price": 1.3785833333}, {"date": "1996-06-03", "fuel": "diesel", "avg_price": 1.24}, {"date": "1996-06-10", "fuel": "diesel", "avg_price": 1.215}, {"date": "1996-06-10", "fuel": "gasoline", "avg_price": 1.36975}, {"date": "1996-06-17", "fuel": "diesel", "avg_price": 1.193}, {"date": "1996-06-17", "fuel": "gasoline", "avg_price": 1.3625}, {"date": "1996-06-24", "fuel": "diesel", "avg_price": 1.179}, {"date": "1996-06-24", "fuel": "gasoline", "avg_price": 1.3511666667}, {"date": "1996-07-01", "fuel": "diesel", "avg_price": 1.172}, {"date": "1996-07-01", "fuel": "gasoline", "avg_price": 1.34025}, {"date": "1996-07-08", "fuel": "diesel", "avg_price": 1.173}, {"date": "1996-07-08", "fuel": "gasoline", "avg_price": 1.3360833333}, {"date": "1996-07-15", "fuel": "diesel", "avg_price": 1.178}, {"date": "1996-07-15", "fuel": "gasoline", "avg_price": 1.332}, {"date": "1996-07-22", "fuel": "diesel", "avg_price": 1.184}, {"date": "1996-07-22", "fuel": "gasoline", "avg_price": 1.3288333333}, {"date": "1996-07-29", "fuel": "gasoline", "avg_price": 1.3199166667}, {"date": "1996-07-29", "fuel": "diesel", "avg_price": 1.178}, {"date": "1996-08-05", "fuel": "gasoline", "avg_price": 1.30975}, {"date": "1996-08-05", "fuel": "diesel", "avg_price": 1.184}, {"date": "1996-08-12", "fuel": "diesel", "avg_price": 1.191}, {"date": "1996-08-12", "fuel": "gasoline", "avg_price": 1.3026666667}, {"date": "1996-08-19", "fuel": "diesel", "avg_price": 1.206}, {"date": "1996-08-19", "fuel": "gasoline", "avg_price": 1.3000833333}, {"date": "1996-08-26", "fuel": "diesel", "avg_price": 1.222}, {"date": "1996-08-26", "fuel": "gasoline", "avg_price": 1.3024166667}, {"date": "1996-09-02", "fuel": "diesel", "avg_price": 1.231}, {"date": "1996-09-02", "fuel": "gasoline", "avg_price": 1.2905}, {"date": "1996-09-09", "fuel": "diesel", "avg_price": 1.25}, {"date": "1996-09-09", "fuel": "gasoline", "avg_price": 1.2938333333}, {"date": "1996-09-16", "fuel": "diesel", "avg_price": 1.276}, {"date": "1996-09-16", "fuel": "gasoline", "avg_price": 1.2966666667}, {"date": "1996-09-23", "fuel": "gasoline", "avg_price": 1.29675}, {"date": "1996-09-23", "fuel": "diesel", "avg_price": 1.277}, {"date": "1996-09-30", "fuel": "diesel", "avg_price": 1.289}, {"date": "1996-09-30", "fuel": "gasoline", "avg_price": 1.2916666667}, {"date": "1996-10-07", "fuel": "diesel", "avg_price": 1.308}, {"date": "1996-10-07", "fuel": "gasoline", "avg_price": 1.2855}, {"date": "1996-10-14", "fuel": "diesel", "avg_price": 1.326}, {"date": "1996-10-14", "fuel": "gasoline", "avg_price": 1.2918333333}, {"date": "1996-10-21", "fuel": "diesel", "avg_price": 1.329}, {"date": "1996-10-21", "fuel": "gasoline", "avg_price": 1.2916666667}, {"date": "1996-10-28", "fuel": "diesel", "avg_price": 1.329}, {"date": "1996-10-28", "fuel": "gasoline", "avg_price": 1.2986666667}, {"date": "1996-11-04", "fuel": "gasoline", "avg_price": 1.3048333333}, {"date": "1996-11-04", "fuel": "diesel", "avg_price": 1.323}, {"date": "1996-11-11", "fuel": "diesel", "avg_price": 1.316}, {"date": "1996-11-11", "fuel": "gasoline", "avg_price": 1.3065833333}, {"date": "1996-11-18", "fuel": "diesel", "avg_price": 1.324}, {"date": "1996-11-18", "fuel": "gasoline", "avg_price": 1.31575}, {"date": "1996-11-25", "fuel": "diesel", "avg_price": 1.327}, {"date": "1996-11-25", "fuel": "gasoline", "avg_price": 1.32175}, {"date": "1996-12-02", "fuel": "diesel", "avg_price": 1.323}, {"date": "1996-12-02", "fuel": "gasoline", "avg_price": 1.3219166667}, {"date": "1996-12-09", "fuel": "diesel", "avg_price": 1.32}, {"date": "1996-12-09", "fuel": "gasoline", "avg_price": 1.32275}, {"date": "1996-12-16", "fuel": "gasoline", "avg_price": 1.32075}, {"date": "1996-12-16", "fuel": "diesel", "avg_price": 1.307}, {"date": "1996-12-23", "fuel": "diesel", "avg_price": 1.3}, {"date": "1996-12-23", "fuel": "gasoline", "avg_price": 1.3175}, {"date": "1996-12-30", "fuel": "diesel", "avg_price": 1.295}, {"date": "1996-12-30", "fuel": "gasoline", "avg_price": 1.3154166667}, {"date": "1997-01-06", "fuel": "diesel", "avg_price": 1.291}, {"date": "1997-01-06", "fuel": "gasoline", "avg_price": 1.31525}, {"date": "1997-01-13", "fuel": "diesel", "avg_price": 1.296}, {"date": "1997-01-13", "fuel": "gasoline", "avg_price": 1.3293333333}, {"date": "1997-01-20", "fuel": "diesel", "avg_price": 1.293}, {"date": "1997-01-20", "fuel": "gasoline", "avg_price": 1.3296666667}, {"date": "1997-01-27", "fuel": "diesel", "avg_price": 1.283}, {"date": "1997-01-27", "fuel": "gasoline", "avg_price": 1.3268333333}, {"date": "1997-02-03", "fuel": "gasoline", "avg_price": 1.3263333333}, {"date": "1997-02-03", "fuel": "diesel", "avg_price": 1.288}, {"date": "1997-02-10", "fuel": "diesel", "avg_price": 1.285}, {"date": "1997-02-10", "fuel": "gasoline", "avg_price": 1.3243333333}, {"date": "1997-02-17", "fuel": "diesel", "avg_price": 1.278}, {"date": "1997-02-17", "fuel": "gasoline", "avg_price": 1.3195}, {"date": "1997-02-24", "fuel": "diesel", "avg_price": 1.269}, {"date": "1997-02-24", "fuel": "gasoline", "avg_price": 1.3165833333}, {"date": "1997-03-03", "fuel": "diesel", "avg_price": 1.252}, {"date": "1997-03-03", "fuel": "gasoline", "avg_price": 1.30825}, {"date": "1997-03-10", "fuel": "diesel", "avg_price": 1.23}, {"date": "1997-03-10", "fuel": "gasoline", "avg_price": 1.3035833333}, {"date": "1997-03-17", "fuel": "gasoline", "avg_price": 1.2974166667}, {"date": "1997-03-17", "fuel": "diesel", "avg_price": 1.22}, {"date": "1997-03-24", "fuel": "diesel", "avg_price": 1.22}, {"date": "1997-03-24", "fuel": "gasoline", "avg_price": 1.2995833333}, {"date": "1997-03-31", "fuel": "diesel", "avg_price": 1.225}, {"date": "1997-03-31", "fuel": "gasoline", "avg_price": 1.2985833333}, {"date": "1997-04-07", "fuel": "diesel", "avg_price": 1.217}, {"date": "1997-04-07", "fuel": "gasoline", "avg_price": 1.3015833333}, {"date": "1997-04-14", "fuel": "diesel", "avg_price": 1.216}, {"date": "1997-04-14", "fuel": "gasoline", "avg_price": 1.2985833333}, {"date": "1997-04-21", "fuel": "diesel", "avg_price": 1.211}, {"date": "1997-04-21", "fuel": "gasoline", "avg_price": 1.2971666667}, {"date": "1997-04-28", "fuel": "gasoline", "avg_price": 1.2928333333}, {"date": "1997-04-28", "fuel": "diesel", "avg_price": 1.205}, {"date": "1997-05-05", "fuel": "gasoline", "avg_price": 1.2909166667}, {"date": "1997-05-05", "fuel": "diesel", "avg_price": 1.205}, {"date": "1997-05-12", "fuel": "diesel", "avg_price": 1.191}, {"date": "1997-05-12", "fuel": "gasoline", "avg_price": 1.2889166667}, {"date": "1997-05-19", "fuel": "diesel", "avg_price": 1.191}, {"date": "1997-05-19", "fuel": "gasoline", "avg_price": 1.2956666667}, {"date": "1997-05-26", "fuel": "diesel", "avg_price": 1.196}, {"date": "1997-05-26", "fuel": "gasoline", "avg_price": 1.3023333333}, {"date": "1997-06-02", "fuel": "diesel", "avg_price": 1.19}, {"date": "1997-06-02", "fuel": "gasoline", "avg_price": 1.3034166667}, {"date": "1997-06-09", "fuel": "diesel", "avg_price": 1.187}, {"date": "1997-06-09", "fuel": "gasoline", "avg_price": 1.298}, {"date": "1997-06-16", "fuel": "gasoline", "avg_price": 1.2903333333}, {"date": "1997-06-16", "fuel": "diesel", "avg_price": 1.172}, {"date": "1997-06-23", "fuel": "diesel", "avg_price": 1.162}, {"date": "1997-06-23", "fuel": "gasoline", "avg_price": 1.2814166667}, {"date": "1997-06-30", "fuel": "diesel", "avg_price": 1.153}, {"date": "1997-06-30", "fuel": "gasoline", "avg_price": 1.2731666667}, {"date": "1997-07-07", "fuel": "diesel", "avg_price": 1.159}, {"date": "1997-07-07", "fuel": "gasoline", "avg_price": 1.26925}, {"date": "1997-07-14", "fuel": "diesel", "avg_price": 1.152}, {"date": "1997-07-14", "fuel": "gasoline", "avg_price": 1.26475}, {"date": "1997-07-21", "fuel": "diesel", "avg_price": 1.147}, {"date": "1997-07-21", "fuel": "gasoline", "avg_price": 1.26675}, {"date": "1997-07-28", "fuel": "diesel", "avg_price": 1.145}, {"date": "1997-07-28", "fuel": "gasoline", "avg_price": 1.2615833333}, {"date": "1997-08-04", "fuel": "diesel", "avg_price": 1.155}, {"date": "1997-08-04", "fuel": "gasoline", "avg_price": 1.282}, {"date": "1997-08-11", "fuel": "gasoline", "avg_price": 1.3171666667}, {"date": "1997-08-11", "fuel": "diesel", "avg_price": 1.168}, {"date": "1997-08-18", "fuel": "diesel", "avg_price": 1.167}, {"date": "1997-08-18", "fuel": "gasoline", "avg_price": 1.3226666667}, {"date": "1997-08-25", "fuel": "diesel", "avg_price": 1.169}, {"date": "1997-08-25", "fuel": "gasoline", "avg_price": 1.3403333333}, {"date": "1997-09-01", "fuel": "diesel", "avg_price": 1.165}, {"date": "1997-09-01", "fuel": "gasoline", "avg_price": 1.3423333333}, {"date": "1997-09-08", "fuel": "diesel", "avg_price": 1.163}, {"date": "1997-09-08", "fuel": "gasoline", "avg_price": 1.3435833333}, {"date": "1997-09-15", "fuel": "diesel", "avg_price": 1.156}, {"date": "1997-09-15", "fuel": "gasoline", "avg_price": 1.3390833333}, {"date": "1997-09-22", "fuel": "gasoline", "avg_price": 1.3289166667}, {"date": "1997-09-22", "fuel": "diesel", "avg_price": 1.154}, {"date": "1997-09-29", "fuel": "diesel", "avg_price": 1.16}, {"date": "1997-09-29", "fuel": "gasoline", "avg_price": 1.3160833333}, {"date": "1997-10-06", "fuel": "diesel", "avg_price": 1.175}, {"date": "1997-10-06", "fuel": "gasoline", "avg_price": 1.3143333333}, {"date": "1997-10-13", "fuel": "diesel", "avg_price": 1.185}, {"date": "1997-10-13", "fuel": "gasoline", "avg_price": 1.3075}, {"date": "1997-10-20", "fuel": "diesel", "avg_price": 1.185}, {"date": "1997-10-20", "fuel": "gasoline", "avg_price": 1.2989166667}, {"date": "1997-10-27", "fuel": "diesel", "avg_price": 1.185}, {"date": "1997-10-27", "fuel": "gasoline", "avg_price": 1.2889166667}, {"date": "1997-11-03", "fuel": "diesel", "avg_price": 1.188}, {"date": "1997-11-03", "fuel": "gasoline", "avg_price": 1.2814166667}, {"date": "1997-11-10", "fuel": "gasoline", "avg_price": 1.2804166667}, {"date": "1997-11-10", "fuel": "diesel", "avg_price": 1.19}, {"date": "1997-11-17", "fuel": "diesel", "avg_price": 1.195}, {"date": "1997-11-17", "fuel": "gasoline", "avg_price": 1.27175}, {"date": "1997-11-24", "fuel": "diesel", "avg_price": 1.193}, {"date": "1997-11-24", "fuel": "gasoline", "avg_price": 1.2656666667}, {"date": "1997-12-01", "fuel": "diesel", "avg_price": 1.189}, {"date": "1997-12-01", "fuel": "gasoline", "avg_price": 1.2570833333}, {"date": "1997-12-08", "fuel": "diesel", "avg_price": 1.174}, {"date": "1997-12-08", "fuel": "gasoline", "avg_price": 1.2458333333}, {"date": "1997-12-15", "fuel": "diesel", "avg_price": 1.162}, {"date": "1997-12-15", "fuel": "gasoline", "avg_price": 1.2355833333}, {"date": "1997-12-22", "fuel": "gasoline", "avg_price": 1.2255}, {"date": "1997-12-22", "fuel": "diesel", "avg_price": 1.155}, {"date": "1997-12-29", "fuel": "gasoline", "avg_price": 1.2175833333}, {"date": "1997-12-29", "fuel": "diesel", "avg_price": 1.15}, {"date": "1998-01-05", "fuel": "diesel", "avg_price": 1.147}, {"date": "1998-01-05", "fuel": "gasoline", "avg_price": 1.2095}, {"date": "1998-01-12", "fuel": "diesel", "avg_price": 1.126}, {"date": "1998-01-12", "fuel": "gasoline", "avg_price": 1.1999166667}, {"date": "1998-01-19", "fuel": "diesel", "avg_price": 1.109}, {"date": "1998-01-19", "fuel": "gasoline", "avg_price": 1.1858333333}, {"date": "1998-01-26", "fuel": "diesel", "avg_price": 1.096}, {"date": "1998-01-26", "fuel": "gasoline", "avg_price": 1.1703333333}, {"date": "1998-02-02", "fuel": "diesel", "avg_price": 1.091}, {"date": "1998-02-02", "fuel": "gasoline", "avg_price": 1.1635833333}, {"date": "1998-02-09", "fuel": "gasoline", "avg_price": 1.1553333333}, {"date": "1998-02-09", "fuel": "diesel", "avg_price": 1.085}, {"date": "1998-02-16", "fuel": "gasoline", "avg_price": 1.1394166667}, {"date": "1998-02-16", "fuel": "diesel", "avg_price": 1.082}, {"date": "1998-02-23", "fuel": "diesel", "avg_price": 1.079}, {"date": "1998-02-23", "fuel": "gasoline", "avg_price": 1.1393333333}, {"date": "1998-03-02", "fuel": "diesel", "avg_price": 1.074}, {"date": "1998-03-02", "fuel": "gasoline", "avg_price": 1.1236666667}, {"date": "1998-03-09", "fuel": "diesel", "avg_price": 1.066}, {"date": "1998-03-09", "fuel": "gasoline", "avg_price": 1.1116666667}, {"date": "1998-03-16", "fuel": "diesel", "avg_price": 1.057}, {"date": "1998-03-16", "fuel": "gasoline", "avg_price": 1.1015}, {"date": "1998-03-23", "fuel": "diesel", "avg_price": 1.049}, {"date": "1998-03-23", "fuel": "gasoline", "avg_price": 1.093}, {"date": "1998-03-30", "fuel": "diesel", "avg_price": 1.068}, {"date": "1998-03-30", "fuel": "gasoline", "avg_price": 1.1211666667}, {"date": "1998-04-06", "fuel": "gasoline", "avg_price": 1.1190833333}, {"date": "1998-04-06", "fuel": "diesel", "avg_price": 1.067}, {"date": "1998-04-13", "fuel": "diesel", "avg_price": 1.065}, {"date": "1998-04-13", "fuel": "gasoline", "avg_price": 1.1186666667}, {"date": "1998-04-20", "fuel": "diesel", "avg_price": 1.065}, {"date": "1998-04-20", "fuel": "gasoline", "avg_price": 1.1206666667}, {"date": "1998-04-27", "fuel": "diesel", "avg_price": 1.07}, {"date": "1998-04-27", "fuel": "gasoline", "avg_price": 1.1316666667}, {"date": "1998-05-04", "fuel": "diesel", "avg_price": 1.072}, {"date": "1998-05-04", "fuel": "gasoline", "avg_price": 1.1455}, {"date": "1998-05-11", "fuel": "diesel", "avg_price": 1.075}, {"date": "1998-05-11", "fuel": "gasoline", "avg_price": 1.1580833333}, {"date": "1998-05-18", "fuel": "gasoline", "avg_price": 1.1619166667}, {"date": "1998-05-18", "fuel": "diesel", "avg_price": 1.069}, {"date": "1998-05-25", "fuel": "diesel", "avg_price": 1.06}, {"date": "1998-05-25", "fuel": "gasoline", "avg_price": 1.1605833333}, {"date": "1998-06-01", "fuel": "diesel", "avg_price": 1.053}, {"date": "1998-06-01", "fuel": "gasoline", "avg_price": 1.1571666667}, {"date": "1998-06-08", "fuel": "diesel", "avg_price": 1.045}, {"date": "1998-06-08", "fuel": "gasoline", "avg_price": 1.1628333333}, {"date": "1998-06-15", "fuel": "diesel", "avg_price": 1.04}, {"date": "1998-06-15", "fuel": "gasoline", "avg_price": 1.1561666667}, {"date": "1998-06-22", "fuel": "diesel", "avg_price": 1.033}, {"date": "1998-06-22", "fuel": "gasoline", "avg_price": 1.15}, {"date": "1998-06-29", "fuel": "gasoline", "avg_price": 1.1484166667}, {"date": "1998-06-29", "fuel": "diesel", "avg_price": 1.034}, {"date": "1998-07-06", "fuel": "diesel", "avg_price": 1.036}, {"date": "1998-07-06", "fuel": "gasoline", "avg_price": 1.1486666667}, {"date": "1998-07-13", "fuel": "diesel", "avg_price": 1.031}, {"date": "1998-07-13", "fuel": "gasoline", "avg_price": 1.1450833333}, {"date": "1998-07-20", "fuel": "diesel", "avg_price": 1.027}, {"date": "1998-07-20", "fuel": "gasoline", "avg_price": 1.1476666667}, {"date": "1998-07-27", "fuel": "diesel", "avg_price": 1.02}, {"date": "1998-07-27", "fuel": "gasoline", "avg_price": 1.1401666667}, {"date": "1998-08-03", "fuel": "diesel", "avg_price": 1.016}, {"date": "1998-08-03", "fuel": "gasoline", "avg_price": 1.1303333333}, {"date": "1998-08-10", "fuel": "diesel", "avg_price": 1.01}, {"date": "1998-08-10", "fuel": "gasoline", "avg_price": 1.1250833333}, {"date": "1998-08-17", "fuel": "diesel", "avg_price": 1.007}, {"date": "1998-08-17", "fuel": "gasoline", "avg_price": 1.1194166667}, {"date": "1998-08-24", "fuel": "gasoline", "avg_price": 1.11275}, {"date": "1998-08-24", "fuel": "diesel", "avg_price": 1.004}, {"date": "1998-08-31", "fuel": "diesel", "avg_price": 1}, {"date": "1998-08-31", "fuel": "gasoline", "avg_price": 1.107}, {"date": "1998-09-07", "fuel": "diesel", "avg_price": 1.009}, {"date": "1998-09-07", "fuel": "gasoline", "avg_price": 1.1015}, {"date": "1998-09-14", "fuel": "diesel", "avg_price": 1.019}, {"date": "1998-09-14", "fuel": "gasoline", "avg_price": 1.09725}, {"date": "1998-09-21", "fuel": "diesel", "avg_price": 1.03}, {"date": "1998-09-21", "fuel": "gasoline", "avg_price": 1.1071666667}, {"date": "1998-09-28", "fuel": "diesel", "avg_price": 1.039}, {"date": "1998-09-28", "fuel": "gasoline", "avg_price": 1.1075833333}, {"date": "1998-10-05", "fuel": "gasoline", "avg_price": 1.1115}, {"date": "1998-10-05", "fuel": "diesel", "avg_price": 1.041}, {"date": "1998-10-12", "fuel": "diesel", "avg_price": 1.041}, {"date": "1998-10-12", "fuel": "gasoline", "avg_price": 1.1158333333}, {"date": "1998-10-19", "fuel": "diesel", "avg_price": 1.036}, {"date": "1998-10-19", "fuel": "gasoline", "avg_price": 1.1113333333}, {"date": "1998-10-26", "fuel": "diesel", "avg_price": 1.036}, {"date": "1998-10-26", "fuel": "gasoline", "avg_price": 1.1086666667}, {"date": "1998-11-02", "fuel": "diesel", "avg_price": 1.035}, {"date": "1998-11-02", "fuel": "gasoline", "avg_price": 1.1045}, {"date": "1998-11-09", "fuel": "diesel", "avg_price": 1.034}, {"date": "1998-11-09", "fuel": "gasoline", "avg_price": 1.1028333333}, {"date": "1998-11-16", "fuel": "diesel", "avg_price": 1.026}, {"date": "1998-11-16", "fuel": "gasoline", "avg_price": 1.0931666667}, {"date": "1998-11-23", "fuel": "gasoline", "avg_price": 1.0886666667}, {"date": "1998-11-23", "fuel": "diesel", "avg_price": 1.012}, {"date": "1998-11-30", "fuel": "diesel", "avg_price": 1.004}, {"date": "1998-11-30", "fuel": "gasoline", "avg_price": 1.0763333333}, {"date": "1998-12-07", "fuel": "diesel", "avg_price": 0.986}, {"date": "1998-12-07", "fuel": "gasoline", "avg_price": 1.0594166667}, {"date": "1998-12-14", "fuel": "diesel", "avg_price": 0.972}, {"date": "1998-12-14", "fuel": "gasoline", "avg_price": 1.05125}, {"date": "1998-12-21", "fuel": "diesel", "avg_price": 0.968}, {"date": "1998-12-21", "fuel": "gasoline", "avg_price": 1.049}, {"date": "1998-12-28", "fuel": "diesel", "avg_price": 0.966}, {"date": "1998-12-28", "fuel": "gasoline", "avg_price": 1.043}, {"date": "1999-01-04", "fuel": "gasoline", "avg_price": 1.0405833333}, {"date": "1999-01-04", "fuel": "diesel", "avg_price": 0.965}, {"date": "1999-01-11", "fuel": "gasoline", "avg_price": 1.0429166667}, {"date": "1999-01-11", "fuel": "diesel", "avg_price": 0.967}, {"date": "1999-01-18", "fuel": "diesel", "avg_price": 0.97}, {"date": "1999-01-18", "fuel": "gasoline", "avg_price": 1.0458333333}, {"date": "1999-01-25", "fuel": "diesel", "avg_price": 0.964}, {"date": "1999-01-25", "fuel": "gasoline", "avg_price": 1.0391666667}, {"date": "1999-02-01", "fuel": "diesel", "avg_price": 0.962}, {"date": "1999-02-01", "fuel": "gasoline", "avg_price": 1.0320833333}, {"date": "1999-02-08", "fuel": "diesel", "avg_price": 0.962}, {"date": "1999-02-08", "fuel": "gasoline", "avg_price": 1.02875}, {"date": "1999-02-15", "fuel": "diesel", "avg_price": 0.959}, {"date": "1999-02-15", "fuel": "gasoline", "avg_price": 1.0210833333}, {"date": "1999-02-22", "fuel": "gasoline", "avg_price": 1.012}, {"date": "1999-02-22", "fuel": "diesel", "avg_price": 0.953}, {"date": "1999-03-01", "fuel": "gasoline", "avg_price": 1.0169166667}, {"date": "1999-03-01", "fuel": "diesel", "avg_price": 0.956}, {"date": "1999-03-08", "fuel": "diesel", "avg_price": 0.964}, {"date": "1999-03-08", "fuel": "gasoline", "avg_price": 1.0249166667}, {"date": "1999-03-15", "fuel": "diesel", "avg_price": 1}, {"date": "1999-03-15", "fuel": "gasoline", "avg_price": 1.0733333333}, {"date": "1999-03-22", "fuel": "diesel", "avg_price": 1.018}, {"date": "1999-03-22", "fuel": "gasoline", "avg_price": 1.1114166667}, {"date": "1999-03-29", "fuel": "diesel", "avg_price": 1.046}, {"date": "1999-03-29", "fuel": "gasoline", "avg_price": 1.1826666667}, {"date": "1999-04-05", "fuel": "diesel", "avg_price": 1.075}, {"date": "1999-04-05", "fuel": "gasoline", "avg_price": 1.22625}, {"date": "1999-04-12", "fuel": "diesel", "avg_price": 1.084}, {"date": "1999-04-12", "fuel": "gasoline", "avg_price": 1.2495}, {"date": "1999-04-19", "fuel": "gasoline", "avg_price": 1.2458333333}, {"date": "1999-04-19", "fuel": "diesel", "avg_price": 1.08}, {"date": "1999-04-26", "fuel": "diesel", "avg_price": 1.078}, {"date": "1999-04-26", "fuel": "gasoline", "avg_price": 1.2426666667}, {"date": "1999-05-03", "fuel": "diesel", "avg_price": 1.078}, {"date": "1999-05-03", "fuel": "gasoline", "avg_price": 1.244}, {"date": "1999-05-10", "fuel": "diesel", "avg_price": 1.083}, {"date": "1999-05-10", "fuel": "gasoline", "avg_price": 1.2485}, {"date": "1999-05-17", "fuel": "diesel", "avg_price": 1.075}, {"date": "1999-05-17", "fuel": "gasoline", "avg_price": 1.2455833333}, {"date": "1999-05-24", "fuel": "diesel", "avg_price": 1.066}, {"date": "1999-05-24", "fuel": "gasoline", "avg_price": 1.2296666667}, {"date": "1999-05-31", "fuel": "gasoline", "avg_price": 1.2144166667}, {"date": "1999-05-31", "fuel": "diesel", "avg_price": 1.065}, {"date": "1999-06-07", "fuel": "gasoline", "avg_price": 1.21125}, {"date": "1999-06-07", "fuel": "diesel", "avg_price": 1.059}, {"date": "1999-06-14", "fuel": "diesel", "avg_price": 1.068}, {"date": "1999-06-14", "fuel": "gasoline", "avg_price": 1.2073333333}, {"date": "1999-06-21", "fuel": "diesel", "avg_price": 1.082}, {"date": "1999-06-21", "fuel": "gasoline", "avg_price": 1.2195}, {"date": "1999-06-28", "fuel": "diesel", "avg_price": 1.087}, {"date": "1999-06-28", "fuel": "gasoline", "avg_price": 1.2113333333}, {"date": "1999-07-05", "fuel": "diesel", "avg_price": 1.102}, {"date": "1999-07-05", "fuel": "gasoline", "avg_price": 1.22}, {"date": "1999-07-12", "fuel": "diesel", "avg_price": 1.114}, {"date": "1999-07-12", "fuel": "gasoline", "avg_price": 1.2401666667}, {"date": "1999-07-19", "fuel": "diesel", "avg_price": 1.133}, {"date": "1999-07-19", "fuel": "gasoline", "avg_price": 1.2691666667}, {"date": "1999-07-26", "fuel": "gasoline", "avg_price": 1.29075}, {"date": "1999-07-26", "fuel": "diesel", "avg_price": 1.137}, {"date": "1999-08-02", "fuel": "diesel", "avg_price": 1.146}, {"date": "1999-08-02", "fuel": "gasoline", "avg_price": 1.2959166667}, {"date": "1999-08-09", "fuel": "diesel", "avg_price": 1.156}, {"date": "1999-08-09", "fuel": "gasoline", "avg_price": 1.3089166667}, {"date": "1999-08-16", "fuel": "diesel", "avg_price": 1.178}, {"date": "1999-08-16", "fuel": "gasoline", "avg_price": 1.3348333333}, {"date": "1999-08-23", "fuel": "diesel", "avg_price": 1.186}, {"date": "1999-08-23", "fuel": "gasoline", "avg_price": 1.33425}, {"date": "1999-08-30", "fuel": "diesel", "avg_price": 1.194}, {"date": "1999-08-30", "fuel": "gasoline", "avg_price": 1.3328333333}, {"date": "1999-09-06", "fuel": "gasoline", "avg_price": 1.3393333333}, {"date": "1999-09-06", "fuel": "diesel", "avg_price": 1.198}, {"date": "1999-09-13", "fuel": "diesel", "avg_price": 1.209}, {"date": "1999-09-13", "fuel": "gasoline", "avg_price": 1.3453333333}, {"date": "1999-09-20", "fuel": "diesel", "avg_price": 1.226}, {"date": "1999-09-20", "fuel": "gasoline", "avg_price": 1.3605833333}, {"date": "1999-09-27", "fuel": "diesel", "avg_price": 1.226}, {"date": "1999-09-27", "fuel": "gasoline", "avg_price": 1.3545}, {"date": "1999-10-04", "fuel": "diesel", "avg_price": 1.234}, {"date": "1999-10-04", "fuel": "gasoline", "avg_price": 1.3503333333}, {"date": "1999-10-11", "fuel": "diesel", "avg_price": 1.228}, {"date": "1999-10-11", "fuel": "gasoline", "avg_price": 1.3466666667}, {"date": "1999-10-18", "fuel": "diesel", "avg_price": 1.224}, {"date": "1999-10-18", "fuel": "gasoline", "avg_price": 1.3353333333}, {"date": "1999-10-25", "fuel": "gasoline", "avg_price": 1.3331666667}, {"date": "1999-10-25", "fuel": "diesel", "avg_price": 1.226}, {"date": "1999-11-01", "fuel": "diesel", "avg_price": 1.229}, {"date": "1999-11-01", "fuel": "gasoline", "avg_price": 1.3265833333}, {"date": "1999-11-08", "fuel": "diesel", "avg_price": 1.234}, {"date": "1999-11-08", "fuel": "gasoline", "avg_price": 1.3271666667}, {"date": "1999-11-15", "fuel": "diesel", "avg_price": 1.261}, {"date": "1999-11-15", "fuel": "gasoline", "avg_price": 1.34325}, {"date": "1999-11-22", "fuel": "diesel", "avg_price": 1.289}, {"date": "1999-11-22", "fuel": "gasoline", "avg_price": 1.35925}, {"date": "1999-11-29", "fuel": "diesel", "avg_price": 1.304}, {"date": "1999-11-29", "fuel": "gasoline", "avg_price": 1.3671666667}, {"date": "1999-12-06", "fuel": "gasoline", "avg_price": 1.3674166667}, {"date": "1999-12-06", "fuel": "diesel", "avg_price": 1.294}, {"date": "1999-12-13", "fuel": "diesel", "avg_price": 1.288}, {"date": "1999-12-13", "fuel": "gasoline", "avg_price": 1.3680833333}, {"date": "1999-12-20", "fuel": "diesel", "avg_price": 1.287}, {"date": "1999-12-20", "fuel": "gasoline", "avg_price": 1.3629166667}, {"date": "1999-12-27", "fuel": "diesel", "avg_price": 1.298}, {"date": "1999-12-27", "fuel": "gasoline", "avg_price": 1.3658333333}, {"date": "2000-01-03", "fuel": "diesel", "avg_price": 1.309}, {"date": "2000-01-03", "fuel": "gasoline", "avg_price": 1.3645}, {"date": "2000-01-10", "fuel": "diesel", "avg_price": 1.307}, {"date": "2000-01-10", "fuel": "gasoline", "avg_price": 1.3575833333}, {"date": "2000-01-17", "fuel": "gasoline", "avg_price": 1.3674166667}, {"date": "2000-01-17", "fuel": "diesel", "avg_price": 1.307}, {"date": "2000-01-24", "fuel": "diesel", "avg_price": 1.418}, {"date": "2000-01-24", "fuel": "gasoline", "avg_price": 1.3995}, {"date": "2000-01-31", "fuel": "diesel", "avg_price": 1.439}, {"date": "2000-01-31", "fuel": "gasoline", "avg_price": 1.4033333333}, {"date": "2000-02-07", "fuel": "diesel", "avg_price": 1.47}, {"date": "2000-02-07", "fuel": "gasoline", "avg_price": 1.4104166667}, {"date": "2000-02-14", "fuel": "diesel", "avg_price": 1.456}, {"date": "2000-02-14", "fuel": "gasoline", "avg_price": 1.4378333333}, {"date": "2000-02-21", "fuel": "diesel", "avg_price": 1.456}, {"date": "2000-02-21", "fuel": "gasoline", "avg_price": 1.4835}, {"date": "2000-02-28", "fuel": "diesel", "avg_price": 1.461}, {"date": "2000-02-28", "fuel": "gasoline", "avg_price": 1.5021666667}, {"date": "2000-03-06", "fuel": "gasoline", "avg_price": 1.5858333333}, {"date": "2000-03-06", "fuel": "diesel", "avg_price": 1.49}, {"date": "2000-03-13", "fuel": "diesel", "avg_price": 1.496}, {"date": "2000-03-13", "fuel": "gasoline", "avg_price": 1.6205833333}, {"date": "2000-03-20", "fuel": "diesel", "avg_price": 1.479}, {"date": "2000-03-20", "fuel": "gasoline", "avg_price": 1.62925}, {"date": "2000-03-27", "fuel": "diesel", "avg_price": 1.451}, {"date": "2000-03-27", "fuel": "gasoline", "avg_price": 1.613}, {"date": "2000-04-03", "fuel": "diesel", "avg_price": 1.442}, {"date": "2000-04-03", "fuel": "gasoline", "avg_price": 1.6068333333}, {"date": "2000-04-10", "fuel": "diesel", "avg_price": 1.419}, {"date": "2000-04-10", "fuel": "gasoline", "avg_price": 1.5824166667}, {"date": "2000-04-17", "fuel": "gasoline", "avg_price": 1.5545}, {"date": "2000-04-17", "fuel": "diesel", "avg_price": 1.398}, {"date": "2000-04-24", "fuel": "diesel", "avg_price": 1.428}, {"date": "2000-04-24", "fuel": "gasoline", "avg_price": 1.5449166667}, {"date": "2000-05-01", "fuel": "diesel", "avg_price": 1.418}, {"date": "2000-05-01", "fuel": "gasoline", "avg_price": 1.52925}, {"date": "2000-05-08", "fuel": "diesel", "avg_price": 1.402}, {"date": "2000-05-08", "fuel": "gasoline", "avg_price": 1.5560833333}, {"date": "2000-05-15", "fuel": "diesel", "avg_price": 1.415}, {"date": "2000-05-15", "fuel": "gasoline", "avg_price": 1.5860833333}, {"date": "2000-05-22", "fuel": "diesel", "avg_price": 1.432}, {"date": "2000-05-22", "fuel": "gasoline", "avg_price": 1.6116666667}, {"date": "2000-05-29", "fuel": "gasoline", "avg_price": 1.6254166667}, {"date": "2000-05-29", "fuel": "diesel", "avg_price": 1.431}, {"date": "2000-06-05", "fuel": "gasoline", "avg_price": 1.6456666667}, {"date": "2000-06-05", "fuel": "diesel", "avg_price": 1.419}, {"date": "2000-06-12", "fuel": "diesel", "avg_price": 1.411}, {"date": "2000-06-12", "fuel": "gasoline", "avg_price": 1.6994166667}, {"date": "2000-06-19", "fuel": "diesel", "avg_price": 1.423}, {"date": "2000-06-19", "fuel": "gasoline", "avg_price": 1.7399166667}, {"date": "2000-06-26", "fuel": "diesel", "avg_price": 1.432}, {"date": "2000-06-26", "fuel": "gasoline", "avg_price": 1.7258333333}, {"date": "2000-07-03", "fuel": "diesel", "avg_price": 1.453}, {"date": "2000-07-03", "fuel": "gasoline", "avg_price": 1.7075}, {"date": "2000-07-10", "fuel": "diesel", "avg_price": 1.449}, {"date": "2000-07-10", "fuel": "gasoline", "avg_price": 1.6853333333}, {"date": "2000-07-17", "fuel": "gasoline", "avg_price": 1.6488333333}, {"date": "2000-07-17", "fuel": "diesel", "avg_price": 1.435}, {"date": "2000-07-24", "fuel": "diesel", "avg_price": 1.424}, {"date": "2000-07-24", "fuel": "gasoline", "avg_price": 1.6263333333}, {"date": "2000-07-31", "fuel": "diesel", "avg_price": 1.408}, {"date": "2000-07-31", "fuel": "gasoline", "avg_price": 1.5839166667}, {"date": "2000-08-07", "fuel": "diesel", "avg_price": 1.41}, {"date": "2000-08-07", "fuel": "gasoline", "avg_price": 1.573}, {"date": "2000-08-14", "fuel": "diesel", "avg_price": 1.447}, {"date": "2000-08-14", "fuel": "gasoline", "avg_price": 1.5595}, {"date": "2000-08-21", "fuel": "diesel", "avg_price": 1.471}, {"date": "2000-08-21", "fuel": "gasoline", "avg_price": 1.5729166667}, {"date": "2000-08-28", "fuel": "diesel", "avg_price": 1.536}, {"date": "2000-08-28", "fuel": "gasoline", "avg_price": 1.5854166667}, {"date": "2000-09-04", "fuel": "diesel", "avg_price": 1.609}, {"date": "2000-09-04", "fuel": "gasoline", "avg_price": 1.6298333333}, {"date": "2000-09-11", "fuel": "diesel", "avg_price": 1.629}, {"date": "2000-09-11", "fuel": "gasoline", "avg_price": 1.6595833333}, {"date": "2000-09-18", "fuel": "gasoline", "avg_price": 1.6579166667}, {"date": "2000-09-18", "fuel": "diesel", "avg_price": 1.653}, {"date": "2000-09-25", "fuel": "diesel", "avg_price": 1.657}, {"date": "2000-09-25", "fuel": "gasoline", "avg_price": 1.6485}, {"date": "2000-10-02", "fuel": "diesel", "avg_price": 1.625}, {"date": "2000-10-02", "fuel": "gasoline", "avg_price": 1.6289166667}, {"date": "2000-10-09", "fuel": "diesel", "avg_price": 1.614}, {"date": "2000-10-09", "fuel": "gasoline", "avg_price": 1.60925}, {"date": "2000-10-16", "fuel": "diesel", "avg_price": 1.67}, {"date": "2000-10-16", "fuel": "gasoline", "avg_price": 1.6384166667}, {"date": "2000-10-23", "fuel": "diesel", "avg_price": 1.648}, {"date": "2000-10-23", "fuel": "gasoline", "avg_price": 1.6444166667}, {"date": "2000-10-30", "fuel": "gasoline", "avg_price": 1.6425833333}, {"date": "2000-10-30", "fuel": "diesel", "avg_price": 1.629}, {"date": "2000-11-06", "fuel": "diesel", "avg_price": 1.61}, {"date": "2000-11-06", "fuel": "gasoline", "avg_price": 1.62675}, {"date": "2000-11-13", "fuel": "diesel", "avg_price": 1.603}, {"date": "2000-11-13", "fuel": "gasoline", "avg_price": 1.6224166667}, {"date": "2000-11-20", "fuel": "diesel", "avg_price": 1.627}, {"date": "2000-11-20", "fuel": "gasoline", "avg_price": 1.6113333333}, {"date": "2000-11-27", "fuel": "diesel", "avg_price": 1.645}, {"date": "2000-11-27", "fuel": "gasoline", "avg_price": 1.6089166667}, {"date": "2000-12-04", "fuel": "diesel", "avg_price": 1.622}, {"date": "2000-12-04", "fuel": "gasoline", "avg_price": 1.58775}, {"date": "2000-12-11", "fuel": "gasoline", "avg_price": 1.5559166667}, {"date": "2000-12-11", "fuel": "diesel", "avg_price": 1.577}, {"date": "2000-12-18", "fuel": "gasoline", "avg_price": 1.5295833333}, {"date": "2000-12-18", "fuel": "diesel", "avg_price": 1.545}, {"date": "2000-12-25", "fuel": "diesel", "avg_price": 1.515}, {"date": "2000-12-25", "fuel": "gasoline", "avg_price": 1.5176666667}, {"date": "2001-01-01", "fuel": "diesel", "avg_price": 1.522}, {"date": "2001-01-01", "fuel": "gasoline", "avg_price": 1.5119166667}, {"date": "2001-01-08", "fuel": "diesel", "avg_price": 1.52}, {"date": "2001-01-08", "fuel": "gasoline", "avg_price": 1.5254166667}, {"date": "2001-01-15", "fuel": "diesel", "avg_price": 1.509}, {"date": "2001-01-15", "fuel": "gasoline", "avg_price": 1.5641666667}, {"date": "2001-01-22", "fuel": "diesel", "avg_price": 1.528}, {"date": "2001-01-22", "fuel": "gasoline", "avg_price": 1.562}, {"date": "2001-01-29", "fuel": "gasoline", "avg_price": 1.551}, {"date": "2001-01-29", "fuel": "diesel", "avg_price": 1.539}, {"date": "2001-02-05", "fuel": "diesel", "avg_price": 1.52}, {"date": "2001-02-05", "fuel": "gasoline", "avg_price": 1.5389166667}, {"date": "2001-02-12", "fuel": "diesel", "avg_price": 1.518}, {"date": "2001-02-12", "fuel": "gasoline", "avg_price": 1.5669166667}, {"date": "2001-02-19", "fuel": "diesel", "avg_price": 1.48}, {"date": "2001-02-19", "fuel": "gasoline", "avg_price": 1.5478333333}, {"date": "2001-02-26", "fuel": "diesel", "avg_price": 1.451}, {"date": "2001-02-26", "fuel": "gasoline", "avg_price": 1.532}, {"date": "2001-03-05", "fuel": "diesel", "avg_price": 1.42}, {"date": "2001-03-05", "fuel": "gasoline", "avg_price": 1.5219166667}, {"date": "2001-03-12", "fuel": "diesel", "avg_price": 1.406}, {"date": "2001-03-12", "fuel": "gasoline", "avg_price": 1.5171666667}, {"date": "2001-03-19", "fuel": "gasoline", "avg_price": 1.5091666667}, {"date": "2001-03-19", "fuel": "diesel", "avg_price": 1.392}, {"date": "2001-03-26", "fuel": "diesel", "avg_price": 1.379}, {"date": "2001-03-26", "fuel": "gasoline", "avg_price": 1.50775}, {"date": "2001-04-02", "fuel": "diesel", "avg_price": 1.391}, {"date": "2001-04-02", "fuel": "gasoline", "avg_price": 1.543}, {"date": "2001-04-09", "fuel": "diesel", "avg_price": 1.397}, {"date": "2001-04-09", "fuel": "gasoline", "avg_price": 1.5984166667}, {"date": "2001-04-16", "fuel": "diesel", "avg_price": 1.437}, {"date": "2001-04-16", "fuel": "gasoline", "avg_price": 1.6590833333}, {"date": "2001-04-23", "fuel": "diesel", "avg_price": 1.443}, {"date": "2001-04-23", "fuel": "gasoline", "avg_price": 1.7113333333}, {"date": "2001-04-30", "fuel": "gasoline", "avg_price": 1.7231666667}, {"date": "2001-04-30", "fuel": "diesel", "avg_price": 1.442}, {"date": "2001-05-07", "fuel": "diesel", "avg_price": 1.47}, {"date": "2001-05-07", "fuel": "gasoline", "avg_price": 1.7915}, {"date": "2001-05-14", "fuel": "diesel", "avg_price": 1.491}, {"date": "2001-05-14", "fuel": "gasoline", "avg_price": 1.8036666667}, {"date": "2001-05-21", "fuel": "diesel", "avg_price": 1.494}, {"date": "2001-05-21", "fuel": "gasoline", "avg_price": 1.7833333333}, {"date": "2001-05-28", "fuel": "diesel", "avg_price": 1.529}, {"date": "2001-05-28", "fuel": "gasoline", "avg_price": 1.7961666667}, {"date": "2001-06-04", "fuel": "diesel", "avg_price": 1.514}, {"date": "2001-06-04", "fuel": "gasoline", "avg_price": 1.7734166667}, {"date": "2001-06-11", "fuel": "gasoline", "avg_price": 1.7493333333}, {"date": "2001-06-11", "fuel": "diesel", "avg_price": 1.486}, {"date": "2001-06-18", "fuel": "gasoline", "avg_price": 1.709}, {"date": "2001-06-18", "fuel": "diesel", "avg_price": 1.48}, {"date": "2001-06-25", "fuel": "diesel", "avg_price": 1.447}, {"date": "2001-06-25", "fuel": "gasoline", "avg_price": 1.6539166667}, {"date": "2001-07-02", "fuel": "diesel", "avg_price": 1.407}, {"date": "2001-07-02", "fuel": "gasoline", "avg_price": 1.594}, {"date": "2001-07-09", "fuel": "diesel", "avg_price": 1.392}, {"date": "2001-07-09", "fuel": "gasoline", "avg_price": 1.5575}, {"date": "2001-07-16", "fuel": "diesel", "avg_price": 1.38}, {"date": "2001-07-16", "fuel": "gasoline", "avg_price": 1.531}, {"date": "2001-07-23", "fuel": "diesel", "avg_price": 1.348}, {"date": "2001-07-23", "fuel": "gasoline", "avg_price": 1.509}, {"date": "2001-07-30", "fuel": "gasoline", "avg_price": 1.4925}, {"date": "2001-07-30", "fuel": "diesel", "avg_price": 1.347}, {"date": "2001-08-06", "fuel": "diesel", "avg_price": 1.345}, {"date": "2001-08-06", "fuel": "gasoline", "avg_price": 1.4800833333}, {"date": "2001-08-13", "fuel": "diesel", "avg_price": 1.367}, {"date": "2001-08-13", "fuel": "gasoline", "avg_price": 1.48925}, {"date": "2001-08-20", "fuel": "diesel", "avg_price": 1.394}, {"date": "2001-08-20", "fuel": "gasoline", "avg_price": 1.5150833333}, {"date": "2001-08-27", "fuel": "diesel", "avg_price": 1.452}, {"date": "2001-08-27", "fuel": "gasoline", "avg_price": 1.5595833333}, {"date": "2001-09-03", "fuel": "diesel", "avg_price": 1.488}, {"date": "2001-09-03", "fuel": "gasoline", "avg_price": 1.6145833333}, {"date": "2001-09-10", "fuel": "diesel", "avg_price": 1.492}, {"date": "2001-09-10", "fuel": "gasoline", "avg_price": 1.6018333333}, {"date": "2001-09-17", "fuel": "diesel", "avg_price": 1.527}, {"date": "2001-09-17", "fuel": "gasoline", "avg_price": 1.6029166667}, {"date": "2001-09-24", "fuel": "gasoline", "avg_price": 1.56675}, {"date": "2001-09-24", "fuel": "diesel", "avg_price": 1.473}, {"date": "2001-10-01", "fuel": "diesel", "avg_price": 1.39}, {"date": "2001-10-01", "fuel": "gasoline", "avg_price": 1.5041666667}, {"date": "2001-10-08", "fuel": "diesel", "avg_price": 1.371}, {"date": "2001-10-08", "fuel": "gasoline", "avg_price": 1.44575}, {"date": "2001-10-15", "fuel": "diesel", "avg_price": 1.353}, {"date": "2001-10-15", "fuel": "gasoline", "avg_price": 1.4055}, {"date": "2001-10-22", "fuel": "diesel", "avg_price": 1.318}, {"date": "2001-10-22", "fuel": "gasoline", "avg_price": 1.3616666667}, {"date": "2001-10-29", "fuel": "diesel", "avg_price": 1.31}, {"date": "2001-10-29", "fuel": "gasoline", "avg_price": 1.3309166667}, {"date": "2001-11-05", "fuel": "gasoline", "avg_price": 1.3013333333}, {"date": "2001-11-05", "fuel": "diesel", "avg_price": 1.291}, {"date": "2001-11-12", "fuel": "diesel", "avg_price": 1.269}, {"date": "2001-11-12", "fuel": "gasoline", "avg_price": 1.2753333333}, {"date": "2001-11-19", "fuel": "diesel", "avg_price": 1.252}, {"date": "2001-11-19", "fuel": "gasoline", "avg_price": 1.2565}, {"date": "2001-11-26", "fuel": "diesel", "avg_price": 1.223}, {"date": "2001-11-26", "fuel": "gasoline", "avg_price": 1.217}, {"date": "2001-12-03", "fuel": "diesel", "avg_price": 1.194}, {"date": "2001-12-03", "fuel": "gasoline", "avg_price": 1.19575}, {"date": "2001-12-10", "fuel": "diesel", "avg_price": 1.173}, {"date": "2001-12-10", "fuel": "gasoline", "avg_price": 1.1815833333}, {"date": "2001-12-17", "fuel": "diesel", "avg_price": 1.143}, {"date": "2001-12-17", "fuel": "gasoline", "avg_price": 1.1470833333}, {"date": "2001-12-24", "fuel": "gasoline", "avg_price": 1.1550833333}, {"date": "2001-12-24", "fuel": "diesel", "avg_price": 1.154}, {"date": "2001-12-31", "fuel": "diesel", "avg_price": 1.169}, {"date": "2001-12-31", "fuel": "gasoline", "avg_price": 1.175}, {"date": "2002-01-07", "fuel": "diesel", "avg_price": 1.168}, {"date": "2002-01-07", "fuel": "gasoline", "avg_price": 1.1911666667}, {"date": "2002-01-14", "fuel": "diesel", "avg_price": 1.159}, {"date": "2002-01-14", "fuel": "gasoline", "avg_price": 1.1951666667}, {"date": "2002-01-21", "fuel": "diesel", "avg_price": 1.14}, {"date": "2002-01-21", "fuel": "gasoline", "avg_price": 1.191}, {"date": "2002-01-28", "fuel": "diesel", "avg_price": 1.144}, {"date": "2002-01-28", "fuel": "gasoline", "avg_price": 1.18775}, {"date": "2002-02-04", "fuel": "gasoline", "avg_price": 1.2014166667}, {"date": "2002-02-04", "fuel": "diesel", "avg_price": 1.144}, {"date": "2002-02-11", "fuel": "gasoline", "avg_price": 1.1946666667}, {"date": "2002-02-11", "fuel": "diesel", "avg_price": 1.153}, {"date": "2002-02-18", "fuel": "diesel", "avg_price": 1.156}, {"date": "2002-02-18", "fuel": "gasoline", "avg_price": 1.2049166667}, {"date": "2002-02-25", "fuel": "diesel", "avg_price": 1.154}, {"date": "2002-02-25", "fuel": "gasoline", "avg_price": 1.2063333333}, {"date": "2002-03-04", "fuel": "diesel", "avg_price": 1.173}, {"date": "2002-03-04", "fuel": "gasoline", "avg_price": 1.23225}, {"date": "2002-03-11", "fuel": "diesel", "avg_price": 1.216}, {"date": "2002-03-11", "fuel": "gasoline", "avg_price": 1.3095}, {"date": "2002-03-18", "fuel": "diesel", "avg_price": 1.251}, {"date": "2002-03-18", "fuel": "gasoline", "avg_price": 1.37525}, {"date": "2002-03-25", "fuel": "gasoline", "avg_price": 1.4305}, {"date": "2002-03-25", "fuel": "diesel", "avg_price": 1.281}, {"date": "2002-04-01", "fuel": "gasoline", "avg_price": 1.4621666667}, {"date": "2002-04-01", "fuel": "diesel", "avg_price": 1.295}, {"date": "2002-04-08", "fuel": "diesel", "avg_price": 1.323}, {"date": "2002-04-08", "fuel": "gasoline", "avg_price": 1.5031666667}, {"date": "2002-04-15", "fuel": "diesel", "avg_price": 1.32}, {"date": "2002-04-15", "fuel": "gasoline", "avg_price": 1.4981666667}, {"date": "2002-04-22", "fuel": "diesel", "avg_price": 1.304}, {"date": "2002-04-22", "fuel": "gasoline", "avg_price": 1.4981666667}, {"date": "2002-04-29", "fuel": "diesel", "avg_price": 1.302}, {"date": "2002-04-29", "fuel": "gasoline", "avg_price": 1.4885}, {"date": "2002-05-06", "fuel": "diesel", "avg_price": 1.305}, {"date": "2002-05-06", "fuel": "gasoline", "avg_price": 1.49}, {"date": "2002-05-13", "fuel": "diesel", "avg_price": 1.299}, {"date": "2002-05-13", "fuel": "gasoline", "avg_price": 1.4839166667}, {"date": "2002-05-20", "fuel": "gasoline", "avg_price": 1.4909166667}, {"date": "2002-05-20", "fuel": "diesel", "avg_price": 1.309}, {"date": "2002-05-27", "fuel": "diesel", "avg_price": 1.308}, {"date": "2002-05-27", "fuel": "gasoline", "avg_price": 1.4819166667}, {"date": "2002-06-03", "fuel": "diesel", "avg_price": 1.3}, {"date": "2002-06-03", "fuel": "gasoline", "avg_price": 1.4848333333}, {"date": "2002-06-10", "fuel": "diesel", "avg_price": 1.286}, {"date": "2002-06-10", "fuel": "gasoline", "avg_price": 1.47}, {"date": "2002-06-17", "fuel": "diesel", "avg_price": 1.275}, {"date": "2002-06-17", "fuel": "gasoline", "avg_price": 1.473}, {"date": "2002-06-24", "fuel": "diesel", "avg_price": 1.281}, {"date": "2002-06-24", "fuel": "gasoline", "avg_price": 1.47825}, {"date": "2002-07-01", "fuel": "gasoline", "avg_price": 1.4840833333}, {"date": "2002-07-01", "fuel": "diesel", "avg_price": 1.289}, {"date": "2002-07-08", "fuel": "diesel", "avg_price": 1.294}, {"date": "2002-07-08", "fuel": "gasoline", "avg_price": 1.4753333333}, {"date": "2002-07-15", "fuel": "diesel", "avg_price": 1.3}, {"date": "2002-07-15", "fuel": "gasoline", "avg_price": 1.4848333333}, {"date": "2002-07-22", "fuel": "diesel", "avg_price": 1.311}, {"date": "2002-07-22", "fuel": "gasoline", "avg_price": 1.4994166667}, {"date": "2002-07-29", "fuel": "diesel", "avg_price": 1.303}, {"date": "2002-07-29", "fuel": "gasoline", "avg_price": 1.4964166667}, {"date": "2002-08-05", "fuel": "diesel", "avg_price": 1.304}, {"date": "2002-08-05", "fuel": "gasoline", "avg_price": 1.48975}, {"date": "2002-08-12", "fuel": "gasoline", "avg_price": 1.487}, {"date": "2002-08-12", "fuel": "diesel", "avg_price": 1.303}, {"date": "2002-08-19", "fuel": "diesel", "avg_price": 1.333}, {"date": "2002-08-19", "fuel": "gasoline", "avg_price": 1.4855833333}, {"date": "2002-08-26", "fuel": "diesel", "avg_price": 1.37}, {"date": "2002-08-26", "fuel": "gasoline", "avg_price": 1.49675}, {"date": "2002-09-02", "fuel": "diesel", "avg_price": 1.388}, {"date": "2002-09-02", "fuel": "gasoline", "avg_price": 1.489}, {"date": "2002-09-09", "fuel": "diesel", "avg_price": 1.396}, {"date": "2002-09-09", "fuel": "gasoline", "avg_price": 1.4896666667}, {"date": "2002-09-16", "fuel": "diesel", "avg_price": 1.414}, {"date": "2002-09-16", "fuel": "gasoline", "avg_price": 1.4935}, {"date": "2002-09-23", "fuel": "diesel", "avg_price": 1.417}, {"date": "2002-09-23", "fuel": "gasoline", "avg_price": 1.4884166667}, {"date": "2002-09-30", "fuel": "diesel", "avg_price": 1.438}, {"date": "2002-09-30", "fuel": "gasoline", "avg_price": 1.5038333333}, {"date": "2002-10-07", "fuel": "gasoline", "avg_price": 1.526}, {"date": "2002-10-07", "fuel": "diesel", "avg_price": 1.46}, {"date": "2002-10-14", "fuel": "diesel", "avg_price": 1.461}, {"date": "2002-10-14", "fuel": "gasoline", "avg_price": 1.5265}, {"date": "2002-10-21", "fuel": "diesel", "avg_price": 1.469}, {"date": "2002-10-21", "fuel": "gasoline", "avg_price": 1.5418333333}, {"date": "2002-10-28", "fuel": "diesel", "avg_price": 1.456}, {"date": "2002-10-28", "fuel": "gasoline", "avg_price": 1.53}, {"date": "2002-11-04", "fuel": "diesel", "avg_price": 1.442}, {"date": "2002-11-04", "fuel": "gasoline", "avg_price": 1.5349166667}, {"date": "2002-11-11", "fuel": "diesel", "avg_price": 1.427}, {"date": "2002-11-11", "fuel": "gasoline", "avg_price": 1.5301666667}, {"date": "2002-11-18", "fuel": "gasoline", "avg_price": 1.5036666667}, {"date": "2002-11-18", "fuel": "diesel", "avg_price": 1.405}, {"date": "2002-11-25", "fuel": "diesel", "avg_price": 1.405}, {"date": "2002-11-25", "fuel": "gasoline", "avg_price": 1.4781666667}, {"date": "2002-12-02", "fuel": "diesel", "avg_price": 1.407}, {"date": "2002-12-02", "fuel": "gasoline", "avg_price": 1.4655833333}, {"date": "2002-12-09", "fuel": "diesel", "avg_price": 1.405}, {"date": "2002-12-09", "fuel": "gasoline", "avg_price": 1.46025}, {"date": "2002-12-16", "fuel": "diesel", "avg_price": 1.401}, {"date": "2002-12-16", "fuel": "gasoline", "avg_price": 1.462}, {"date": "2002-12-23", "fuel": "diesel", "avg_price": 1.44}, {"date": "2002-12-23", "fuel": "gasoline", "avg_price": 1.49375}, {"date": "2002-12-30", "fuel": "diesel", "avg_price": 1.491}, {"date": "2002-12-30", "fuel": "gasoline", "avg_price": 1.5318333333}, {"date": "2003-01-06", "fuel": "gasoline", "avg_price": 1.5385}, {"date": "2003-01-06", "fuel": "diesel", "avg_price": 1.501}, {"date": "2003-01-13", "fuel": "diesel", "avg_price": 1.478}, {"date": "2003-01-13", "fuel": "gasoline", "avg_price": 1.54725}, {"date": "2003-01-20", "fuel": "diesel", "avg_price": 1.48}, {"date": "2003-01-20", "fuel": "gasoline", "avg_price": 1.5548333333}, {"date": "2003-01-27", "fuel": "diesel", "avg_price": 1.492}, {"date": "2003-01-27", "fuel": "gasoline", "avg_price": 1.5669166667}, {"date": "2003-02-03", "fuel": "diesel", "avg_price": 1.542}, {"date": "2003-02-03", "fuel": "gasoline", "avg_price": 1.6178333333}, {"date": "2003-02-10", "fuel": "diesel", "avg_price": 1.662}, {"date": "2003-02-10", "fuel": "gasoline", "avg_price": 1.6974166667}, {"date": "2003-02-17", "fuel": "gasoline", "avg_price": 1.75}, {"date": "2003-02-17", "fuel": "diesel", "avg_price": 1.704}, {"date": "2003-02-24", "fuel": "gasoline", "avg_price": 1.7515833333}, {"date": "2003-02-24", "fuel": "diesel", "avg_price": 1.709}, {"date": "2003-03-03", "fuel": "diesel", "avg_price": 1.753}, {"date": "2003-03-03", "fuel": "gasoline", "avg_price": 1.7805833333}, {"date": "2003-03-10", "fuel": "diesel", "avg_price": 1.771}, {"date": "2003-03-10", "fuel": "gasoline", "avg_price": 1.8073333333}, {"date": "2003-03-17", "fuel": "diesel", "avg_price": 1.752}, {"date": "2003-03-17", "fuel": "gasoline", "avg_price": 1.8255833333}, {"date": "2003-03-24", "fuel": "diesel", "avg_price": 1.662}, {"date": "2003-03-24", "fuel": "gasoline", "avg_price": 1.7935}, {"date": "2003-03-31", "fuel": "diesel", "avg_price": 1.602}, {"date": "2003-03-31", "fuel": "gasoline", "avg_price": 1.7578333333}, {"date": "2003-04-07", "fuel": "gasoline", "avg_price": 1.739}, {"date": "2003-04-07", "fuel": "diesel", "avg_price": 1.554}, {"date": "2003-04-14", "fuel": "gasoline", "avg_price": 1.7065}, {"date": "2003-04-14", "fuel": "diesel", "avg_price": 1.539}, {"date": "2003-04-21", "fuel": "diesel", "avg_price": 1.529}, {"date": "2003-04-21", "fuel": "gasoline", "avg_price": 1.683}, {"date": "2003-04-28", "fuel": "diesel", "avg_price": 1.508}, {"date": "2003-04-28", "fuel": "gasoline", "avg_price": 1.6653333333}, {"date": "2003-05-05", "fuel": "diesel", "avg_price": 1.484}, {"date": "2003-05-05", "fuel": "gasoline", "avg_price": 1.6220833333}, {"date": "2003-05-12", "fuel": "diesel", "avg_price": 1.444}, {"date": "2003-05-12", "fuel": "gasoline", "avg_price": 1.5969166667}, {"date": "2003-05-19", "fuel": "diesel", "avg_price": 1.443}, {"date": "2003-05-19", "fuel": "gasoline", "avg_price": 1.597}, {"date": "2003-05-26", "fuel": "diesel", "avg_price": 1.434}, {"date": "2003-05-26", "fuel": "gasoline", "avg_price": 1.5835833333}, {"date": "2003-06-02", "fuel": "gasoline", "avg_price": 1.5686666667}, {"date": "2003-06-02", "fuel": "diesel", "avg_price": 1.423}, {"date": "2003-06-09", "fuel": "diesel", "avg_price": 1.422}, {"date": "2003-06-09", "fuel": "gasoline", "avg_price": 1.57975}, {"date": "2003-06-16", "fuel": "diesel", "avg_price": 1.432}, {"date": "2003-06-16", "fuel": "gasoline", "avg_price": 1.6100833333}, {"date": "2003-06-23", "fuel": "diesel", "avg_price": 1.423}, {"date": "2003-06-23", "fuel": "gasoline", "avg_price": 1.59225}, {"date": "2003-06-30", "fuel": "diesel", "avg_price": 1.42}, {"date": "2003-06-30", "fuel": "gasoline", "avg_price": 1.5835833333}, {"date": "2003-07-07", "fuel": "diesel", "avg_price": 1.428}, {"date": "2003-07-07", "fuel": "gasoline", "avg_price": 1.5844166667}, {"date": "2003-07-14", "fuel": "gasoline", "avg_price": 1.6138333333}, {"date": "2003-07-14", "fuel": "diesel", "avg_price": 1.435}, {"date": "2003-07-21", "fuel": "gasoline", "avg_price": 1.616}, {"date": "2003-07-21", "fuel": "diesel", "avg_price": 1.439}, {"date": "2003-07-28", "fuel": "diesel", "avg_price": 1.438}, {"date": "2003-07-28", "fuel": "gasoline", "avg_price": 1.60775}, {"date": "2003-08-04", "fuel": "diesel", "avg_price": 1.453}, {"date": "2003-08-04", "fuel": "gasoline", "avg_price": 1.6225833333}, {"date": "2003-08-11", "fuel": "diesel", "avg_price": 1.492}, {"date": "2003-08-11", "fuel": "gasoline", "avg_price": 1.6566666667}, {"date": "2003-08-18", "fuel": "diesel", "avg_price": 1.498}, {"date": "2003-08-18", "fuel": "gasoline", "avg_price": 1.7179166667}, {"date": "2003-08-25", "fuel": "diesel", "avg_price": 1.503}, {"date": "2003-08-25", "fuel": "gasoline", "avg_price": 1.8441666667}, {"date": "2003-09-01", "fuel": "diesel", "avg_price": 1.501}, {"date": "2003-09-01", "fuel": "gasoline", "avg_price": 1.8455}, {"date": "2003-09-08", "fuel": "gasoline", "avg_price": 1.82}, {"date": "2003-09-08", "fuel": "diesel", "avg_price": 1.488}, {"date": "2003-09-15", "fuel": "diesel", "avg_price": 1.471}, {"date": "2003-09-15", "fuel": "gasoline", "avg_price": 1.79925}, {"date": "2003-09-22", "fuel": "diesel", "avg_price": 1.444}, {"date": "2003-09-22", "fuel": "gasoline", "avg_price": 1.749}, {"date": "2003-09-29", "fuel": "diesel", "avg_price": 1.429}, {"date": "2003-09-29", "fuel": "gasoline", "avg_price": 1.7005833333}, {"date": "2003-10-06", "fuel": "diesel", "avg_price": 1.445}, {"date": "2003-10-06", "fuel": "gasoline", "avg_price": 1.68025}, {"date": "2003-10-13", "fuel": "diesel", "avg_price": 1.483}, {"date": "2003-10-13", "fuel": "gasoline", "avg_price": 1.6696666667}, {"date": "2003-10-20", "fuel": "gasoline", "avg_price": 1.6673333333}, {"date": "2003-10-20", "fuel": "diesel", "avg_price": 1.502}, {"date": "2003-10-27", "fuel": "diesel", "avg_price": 1.495}, {"date": "2003-10-27", "fuel": "gasoline", "avg_price": 1.6398333333}, {"date": "2003-11-03", "fuel": "diesel", "avg_price": 1.481}, {"date": "2003-11-03", "fuel": "gasoline", "avg_price": 1.6315833333}, {"date": "2003-11-10", "fuel": "diesel", "avg_price": 1.476}, {"date": "2003-11-10", "fuel": "gasoline", "avg_price": 1.6018333333}, {"date": "2003-11-17", "fuel": "diesel", "avg_price": 1.481}, {"date": "2003-11-17", "fuel": "gasoline", "avg_price": 1.5941666667}, {"date": "2003-11-24", "fuel": "diesel", "avg_price": 1.491}, {"date": "2003-11-24", "fuel": "gasoline", "avg_price": 1.60675}, {"date": "2003-12-01", "fuel": "diesel", "avg_price": 1.476}, {"date": "2003-12-01", "fuel": "gasoline", "avg_price": 1.5871666667}, {"date": "2003-12-08", "fuel": "gasoline", "avg_price": 1.5726666667}, {"date": "2003-12-08", "fuel": "diesel", "avg_price": 1.481}, {"date": "2003-12-15", "fuel": "diesel", "avg_price": 1.486}, {"date": "2003-12-15", "fuel": "gasoline", "avg_price": 1.56125}, {"date": "2003-12-22", "fuel": "diesel", "avg_price": 1.504}, {"date": "2003-12-22", "fuel": "gasoline", "avg_price": 1.5781666667}, {"date": "2003-12-29", "fuel": "diesel", "avg_price": 1.502}, {"date": "2003-12-29", "fuel": "gasoline", "avg_price": 1.5713333333}, {"date": "2004-01-05", "fuel": "diesel", "avg_price": 1.503}, {"date": "2004-01-05", "fuel": "gasoline", "avg_price": 1.5993333333}, {"date": "2004-01-12", "fuel": "diesel", "avg_price": 1.551}, {"date": "2004-01-12", "fuel": "gasoline", "avg_price": 1.6494166667}, {"date": "2004-01-19", "fuel": "gasoline", "avg_price": 1.6829166667}, {"date": "2004-01-19", "fuel": "diesel", "avg_price": 1.559}, {"date": "2004-01-26", "fuel": "diesel", "avg_price": 1.591}, {"date": "2004-01-26", "fuel": "gasoline", "avg_price": 1.711}, {"date": "2004-02-02", "fuel": "diesel", "avg_price": 1.581}, {"date": "2004-02-02", "fuel": "gasoline", "avg_price": 1.7094166667}, {"date": "2004-02-09", "fuel": "diesel", "avg_price": 1.568}, {"date": "2004-02-09", "fuel": "gasoline", "avg_price": 1.7310833333}, {"date": "2004-02-16", "fuel": "diesel", "avg_price": 1.584}, {"date": "2004-02-16", "fuel": "gasoline", "avg_price": 1.74075}, {"date": "2004-02-23", "fuel": "diesel", "avg_price": 1.595}, {"date": "2004-02-23", "fuel": "gasoline", "avg_price": 1.7856666667}, {"date": "2004-03-01", "fuel": "gasoline", "avg_price": 1.8166666667}, {"date": "2004-03-01", "fuel": "diesel", "avg_price": 1.619}, {"date": "2004-03-08", "fuel": "diesel", "avg_price": 1.628}, {"date": "2004-03-08", "fuel": "gasoline", "avg_price": 1.8374166667}, {"date": "2004-03-15", "fuel": "diesel", "avg_price": 1.617}, {"date": "2004-03-15", "fuel": "gasoline", "avg_price": 1.8249166667}, {"date": "2004-03-22", "fuel": "diesel", "avg_price": 1.641}, {"date": "2004-03-22", "fuel": "gasoline", "avg_price": 1.8415}, {"date": "2004-03-29", "fuel": "diesel", "avg_price": 1.642}, {"date": "2004-03-29", "fuel": "gasoline", "avg_price": 1.8549166667}, {"date": "2004-04-05", "fuel": "diesel", "avg_price": 1.648}, {"date": "2004-04-05", "fuel": "gasoline", "avg_price": 1.8768333333}, {"date": "2004-04-12", "fuel": "diesel", "avg_price": 1.679}, {"date": "2004-04-12", "fuel": "gasoline", "avg_price": 1.8833333333}, {"date": "2004-04-19", "fuel": "gasoline", "avg_price": 1.90625}, {"date": "2004-04-19", "fuel": "diesel", "avg_price": 1.724}, {"date": "2004-04-26", "fuel": "diesel", "avg_price": 1.718}, {"date": "2004-04-26", "fuel": "gasoline", "avg_price": 1.9049166667}, {"date": "2004-05-03", "fuel": "diesel", "avg_price": 1.717}, {"date": "2004-05-03", "fuel": "gasoline", "avg_price": 1.93375}, {"date": "2004-05-10", "fuel": "diesel", "avg_price": 1.745}, {"date": "2004-05-10", "fuel": "gasoline", "avg_price": 2.0290833333}, {"date": "2004-05-17", "fuel": "diesel", "avg_price": 1.763}, {"date": "2004-05-17", "fuel": "gasoline", "avg_price": 2.1054166667}, {"date": "2004-05-24", "fuel": "diesel", "avg_price": 1.761}, {"date": "2004-05-24", "fuel": "gasoline", "avg_price": 2.1555}, {"date": "2004-05-31", "fuel": "gasoline", "avg_price": 2.1475833333}, {"date": "2004-05-31", "fuel": "diesel", "avg_price": 1.746}, {"date": "2004-06-07", "fuel": "diesel", "avg_price": 1.734}, {"date": "2004-06-07", "fuel": "gasoline", "avg_price": 2.1325}, {"date": "2004-06-14", "fuel": "diesel", "avg_price": 1.711}, {"date": "2004-06-14", "fuel": "gasoline", "avg_price": 2.0908333333}, {"date": "2004-06-21", "fuel": "diesel", "avg_price": 1.7}, {"date": "2004-06-21", "fuel": "gasoline", "avg_price": 2.04575}, {"date": "2004-06-28", "fuel": "diesel", "avg_price": 1.7}, {"date": "2004-06-28", "fuel": "gasoline", "avg_price": 2.0275}, {"date": "2004-07-05", "fuel": "diesel", "avg_price": 1.716}, {"date": "2004-07-05", "fuel": "gasoline", "avg_price": 2.0013333333}, {"date": "2004-07-12", "fuel": "gasoline", "avg_price": 2.0170833333}, {"date": "2004-07-12", "fuel": "diesel", "avg_price": 1.74}, {"date": "2004-07-19", "fuel": "gasoline", "avg_price": 2.026}, {"date": "2004-07-19", "fuel": "diesel", "avg_price": 1.744}, {"date": "2004-07-26", "fuel": "diesel", "avg_price": 1.754}, {"date": "2004-07-26", "fuel": "gasoline", "avg_price": 2.004}, {"date": "2004-08-02", "fuel": "diesel", "avg_price": 1.78}, {"date": "2004-08-02", "fuel": "gasoline", "avg_price": 1.9855}, {"date": "2004-08-09", "fuel": "diesel", "avg_price": 1.814}, {"date": "2004-08-09", "fuel": "gasoline", "avg_price": 1.974}, {"date": "2004-08-16", "fuel": "diesel", "avg_price": 1.825}, {"date": "2004-08-16", "fuel": "gasoline", "avg_price": 1.9690833333}, {"date": "2004-08-23", "fuel": "diesel", "avg_price": 1.874}, {"date": "2004-08-23", "fuel": "gasoline", "avg_price": 1.9764166667}, {"date": "2004-08-30", "fuel": "gasoline", "avg_price": 1.9636666667}, {"date": "2004-08-30", "fuel": "diesel", "avg_price": 1.871}, {"date": "2004-09-06", "fuel": "diesel", "avg_price": 1.869}, {"date": "2004-09-06", "fuel": "gasoline", "avg_price": 1.9471666667}, {"date": "2004-09-13", "fuel": "diesel", "avg_price": 1.874}, {"date": "2004-09-13", "fuel": "gasoline", "avg_price": 1.9415}, {"date": "2004-09-20", "fuel": "diesel", "avg_price": 1.912}, {"date": "2004-09-20", "fuel": "gasoline", "avg_price": 1.9576666667}, {"date": "2004-09-27", "fuel": "diesel", "avg_price": 2.012}, {"date": "2004-09-27", "fuel": "gasoline", "avg_price": 2.00625}, {"date": "2004-10-04", "fuel": "diesel", "avg_price": 2.053}, {"date": "2004-10-04", "fuel": "gasoline", "avg_price": 2.03225}, {"date": "2004-10-11", "fuel": "diesel", "avg_price": 2.092}, {"date": "2004-10-11", "fuel": "gasoline", "avg_price": 2.09025}, {"date": "2004-10-18", "fuel": "diesel", "avg_price": 2.18}, {"date": "2004-10-18", "fuel": "gasoline", "avg_price": 2.135}, {"date": "2004-10-25", "fuel": "gasoline", "avg_price": 2.1330833333}, {"date": "2004-10-25", "fuel": "diesel", "avg_price": 2.212}, {"date": "2004-11-01", "fuel": "gasoline", "avg_price": 2.1336666667}, {"date": "2004-11-01", "fuel": "diesel", "avg_price": 2.206}, {"date": "2004-11-08", "fuel": "diesel", "avg_price": 2.163}, {"date": "2004-11-08", "fuel": "gasoline", "avg_price": 2.1045833333}, {"date": "2004-11-15", "fuel": "diesel", "avg_price": 2.132}, {"date": "2004-11-15", "fuel": "gasoline", "avg_price": 2.0746666667}, {"date": "2004-11-22", "fuel": "diesel", "avg_price": 2.116}, {"date": "2004-11-22", "fuel": "gasoline", "avg_price": 2.0511666667}, {"date": "2004-11-29", "fuel": "diesel", "avg_price": 2.116}, {"date": "2004-11-29", "fuel": "gasoline", "avg_price": 2.04525}, {"date": "2004-12-06", "fuel": "diesel", "avg_price": 2.069}, {"date": "2004-12-06", "fuel": "gasoline", "avg_price": 2.0135833333}, {"date": "2004-12-13", "fuel": "diesel", "avg_price": 1.997}, {"date": "2004-12-13", "fuel": "gasoline", "avg_price": 1.95375}, {"date": "2004-12-20", "fuel": "gasoline", "avg_price": 1.918}, {"date": "2004-12-20", "fuel": "diesel", "avg_price": 1.984}, {"date": "2004-12-27", "fuel": "diesel", "avg_price": 1.987}, {"date": "2004-12-27", "fuel": "gasoline", "avg_price": 1.8945833333}, {"date": "2005-01-03", "fuel": "diesel", "avg_price": 1.957}, {"date": "2005-01-03", "fuel": "gasoline", "avg_price": 1.8795833333}, {"date": "2005-01-10", "fuel": "diesel", "avg_price": 1.934}, {"date": "2005-01-10", "fuel": "gasoline", "avg_price": 1.8873333333}, {"date": "2005-01-17", "fuel": "diesel", "avg_price": 1.952}, {"date": "2005-01-17", "fuel": "gasoline", "avg_price": 1.91075}, {"date": "2005-01-24", "fuel": "diesel", "avg_price": 1.959}, {"date": "2005-01-24", "fuel": "gasoline", "avg_price": 1.9419166667}, {"date": "2005-01-31", "fuel": "gasoline", "avg_price": 1.999}, {"date": "2005-01-31", "fuel": "diesel", "avg_price": 1.992}, {"date": "2005-02-07", "fuel": "diesel", "avg_price": 1.983}, {"date": "2005-02-07", "fuel": "gasoline", "avg_price": 1.9995}, {"date": "2005-02-14", "fuel": "diesel", "avg_price": 1.986}, {"date": "2005-02-14", "fuel": "gasoline", "avg_price": 1.99025}, {"date": "2005-02-21", "fuel": "diesel", "avg_price": 2.02}, {"date": "2005-02-21", "fuel": "gasoline", "avg_price": 1.9981666667}, {"date": "2005-02-28", "fuel": "diesel", "avg_price": 2.118}, {"date": "2005-02-28", "fuel": "gasoline", "avg_price": 2.0178333333}, {"date": "2005-03-07", "fuel": "diesel", "avg_price": 2.168}, {"date": "2005-03-07", "fuel": "gasoline", "avg_price": 2.0865}, {"date": "2005-03-14", "fuel": "gasoline", "avg_price": 2.1434166667}, {"date": "2005-03-14", "fuel": "diesel", "avg_price": 2.194}, {"date": "2005-03-21", "fuel": "diesel", "avg_price": 2.244}, {"date": "2005-03-21", "fuel": "gasoline", "avg_price": 2.1928333333}, {"date": "2005-03-28", "fuel": "diesel", "avg_price": 2.249}, {"date": "2005-03-28", "fuel": "gasoline", "avg_price": 2.239}, {"date": "2005-04-04", "fuel": "diesel", "avg_price": 2.303}, {"date": "2005-04-04", "fuel": "gasoline", "avg_price": 2.3041666667}, {"date": "2005-04-11", "fuel": "diesel", "avg_price": 2.316}, {"date": "2005-04-11", "fuel": "gasoline", "avg_price": 2.3708333333}, {"date": "2005-04-18", "fuel": "diesel", "avg_price": 2.259}, {"date": "2005-04-18", "fuel": "gasoline", "avg_price": 2.3345833333}, {"date": "2005-04-25", "fuel": "diesel", "avg_price": 2.289}, {"date": "2005-04-25", "fuel": "gasoline", "avg_price": 2.3335}, {"date": "2005-05-02", "fuel": "gasoline", "avg_price": 2.3328333333}, {"date": "2005-05-02", "fuel": "diesel", "avg_price": 2.262}, {"date": "2005-05-09", "fuel": "diesel", "avg_price": 2.227}, {"date": "2005-05-09", "fuel": "gasoline", "avg_price": 2.2903333333}, {"date": "2005-05-16", "fuel": "diesel", "avg_price": 2.189}, {"date": "2005-05-16", "fuel": "gasoline", "avg_price": 2.26375}, {"date": "2005-05-23", "fuel": "diesel", "avg_price": 2.156}, {"date": "2005-05-23", "fuel": "gasoline", "avg_price": 2.2278333333}, {"date": "2005-05-30", "fuel": "diesel", "avg_price": 2.16}, {"date": "2005-05-30", "fuel": "gasoline", "avg_price": 2.1991666667}, {"date": "2005-06-06", "fuel": "diesel", "avg_price": 2.234}, {"date": "2005-06-06", "fuel": "gasoline", "avg_price": 2.21325}, {"date": "2005-06-13", "fuel": "gasoline", "avg_price": 2.2250833333}, {"date": "2005-06-13", "fuel": "diesel", "avg_price": 2.276}, {"date": "2005-06-20", "fuel": "diesel", "avg_price": 2.313}, {"date": "2005-06-20", "fuel": "gasoline", "avg_price": 2.2561666667}, {"date": "2005-06-27", "fuel": "diesel", "avg_price": 2.336}, {"date": "2005-06-27", "fuel": "gasoline", "avg_price": 2.3065}, {"date": "2005-07-04", "fuel": "diesel", "avg_price": 2.348}, {"date": "2005-07-04", "fuel": "gasoline", "avg_price": 2.3208333333}, {"date": "2005-07-11", "fuel": "diesel", "avg_price": 2.408}, {"date": "2005-07-11", "fuel": "gasoline", "avg_price": 2.4215}, {"date": "2005-07-18", "fuel": "diesel", "avg_price": 2.392}, {"date": "2005-07-18", "fuel": "gasoline", "avg_price": 2.4158333333}, {"date": "2005-07-25", "fuel": "gasoline", "avg_price": 2.394}, {"date": "2005-07-25", "fuel": "diesel", "avg_price": 2.342}, {"date": "2005-08-01", "fuel": "gasoline", "avg_price": 2.3951666667}, {"date": "2005-08-01", "fuel": "diesel", "avg_price": 2.348}, {"date": "2005-08-08", "fuel": "diesel", "avg_price": 2.407}, {"date": "2005-08-08", "fuel": "gasoline", "avg_price": 2.4658333333}, {"date": "2005-08-15", "fuel": "diesel", "avg_price": 2.567}, {"date": "2005-08-15", "fuel": "gasoline", "avg_price": 2.6425}, {"date": "2005-08-22", "fuel": "diesel", "avg_price": 2.588}, {"date": "2005-08-22", "fuel": "gasoline", "avg_price": 2.7038333333}, {"date": "2005-08-29", "fuel": "diesel", "avg_price": 2.59}, {"date": "2005-08-29", "fuel": "gasoline", "avg_price": 2.7031666667}, {"date": "2005-09-05", "fuel": "diesel", "avg_price": 2.898}, {"date": "2005-09-05", "fuel": "gasoline", "avg_price": 3.17175}, {"date": "2005-09-12", "fuel": "gasoline", "avg_price": 3.0609166667}, {"date": "2005-09-12", "fuel": "diesel", "avg_price": 2.847}, {"date": "2005-09-19", "fuel": "diesel", "avg_price": 2.732}, {"date": "2005-09-19", "fuel": "gasoline", "avg_price": 2.90075}, {"date": "2005-09-26", "fuel": "diesel", "avg_price": 2.798}, {"date": "2005-09-26", "fuel": "gasoline", "avg_price": 2.9080833333}, {"date": "2005-10-03", "fuel": "diesel", "avg_price": 3.144}, {"date": "2005-10-03", "fuel": "gasoline", "avg_price": 3.0210833333}, {"date": "2005-10-10", "fuel": "diesel", "avg_price": 3.15}, {"date": "2005-10-10", "fuel": "gasoline", "avg_price": 2.9484166667}, {"date": "2005-10-17", "fuel": "diesel", "avg_price": 3.148}, {"date": "2005-10-17", "fuel": "gasoline", "avg_price": 2.832}, {"date": "2005-10-24", "fuel": "diesel", "avg_price": 3.157}, {"date": "2005-10-24", "fuel": "gasoline", "avg_price": 2.71075}, {"date": "2005-10-31", "fuel": "diesel", "avg_price": 2.876}, {"date": "2005-10-31", "fuel": "gasoline", "avg_price": 2.5878333333}, {"date": "2005-11-07", "fuel": "gasoline", "avg_price": 2.4826666667}, {"date": "2005-11-07", "fuel": "diesel", "avg_price": 2.698}, {"date": "2005-11-14", "fuel": "diesel", "avg_price": 2.602}, {"date": "2005-11-14", "fuel": "gasoline", "avg_price": 2.39925}, {"date": "2005-11-21", "fuel": "diesel", "avg_price": 2.513}, {"date": "2005-11-21", "fuel": "gasoline", "avg_price": 2.3025833333}, {"date": "2005-11-28", "fuel": "diesel", "avg_price": 2.479}, {"date": "2005-11-28", "fuel": "gasoline", "avg_price": 2.2535833333}, {"date": "2005-12-05", "fuel": "diesel", "avg_price": 2.425}, {"date": "2005-12-05", "fuel": "gasoline", "avg_price": 2.24}, {"date": "2005-12-12", "fuel": "diesel", "avg_price": 2.436}, {"date": "2005-12-12", "fuel": "gasoline", "avg_price": 2.2729166667}, {"date": "2005-12-19", "fuel": "gasoline", "avg_price": 2.2985833333}, {"date": "2005-12-19", "fuel": "diesel", "avg_price": 2.462}, {"date": "2005-12-26", "fuel": "diesel", "avg_price": 2.448}, {"date": "2005-12-26", "fuel": "gasoline", "avg_price": 2.2854166667}, {"date": "2006-01-02", "fuel": "diesel", "avg_price": 2.442}, {"date": "2006-01-02", "fuel": "gasoline", "avg_price": 2.32275}, {"date": "2006-01-09", "fuel": "diesel", "avg_price": 2.485}, {"date": "2006-01-09", "fuel": "gasoline", "avg_price": 2.4150833333}, {"date": "2006-01-16", "fuel": "diesel", "avg_price": 2.449}, {"date": "2006-01-16", "fuel": "gasoline", "avg_price": 2.4175}, {"date": "2006-01-23", "fuel": "diesel", "avg_price": 2.472}, {"date": "2006-01-23", "fuel": "gasoline", "avg_price": 2.4330833333}, {"date": "2006-01-30", "fuel": "diesel", "avg_price": 2.489}, {"date": "2006-01-30", "fuel": "gasoline", "avg_price": 2.4538333333}, {"date": "2006-02-06", "fuel": "gasoline", "avg_price": 2.4425}, {"date": "2006-02-06", "fuel": "diesel", "avg_price": 2.499}, {"date": "2006-02-13", "fuel": "diesel", "avg_price": 2.476}, {"date": "2006-02-13", "fuel": "gasoline", "avg_price": 2.3883333333}, {"date": "2006-02-20", "fuel": "diesel", "avg_price": 2.455}, {"date": "2006-02-20", "fuel": "gasoline", "avg_price": 2.34125}, {"date": "2006-02-27", "fuel": "diesel", "avg_price": 2.471}, {"date": "2006-02-27", "fuel": "gasoline", "avg_price": 2.3454166667}, {"date": "2006-03-06", "fuel": "diesel", "avg_price": 2.545}, {"date": "2006-03-06", "fuel": "gasoline", "avg_price": 2.4161666667}, {"date": "2006-03-13", "fuel": "diesel", "avg_price": 2.543}, {"date": "2006-03-13", "fuel": "gasoline", "avg_price": 2.4521666667}, {"date": "2006-03-20", "fuel": "gasoline", "avg_price": 2.5919166667}, {"date": "2006-03-20", "fuel": "diesel", "avg_price": 2.581}, {"date": "2006-03-27", "fuel": "gasoline", "avg_price": 2.58975}, {"date": "2006-03-27", "fuel": "diesel", "avg_price": 2.565}, {"date": "2006-04-03", "fuel": "diesel", "avg_price": 2.617}, {"date": "2006-04-03", "fuel": "gasoline", "avg_price": 2.679}, {"date": "2006-04-10", "fuel": "diesel", "avg_price": 2.654}, {"date": "2006-04-10", "fuel": "gasoline", "avg_price": 2.7751666667}, {"date": "2006-04-17", "fuel": "diesel", "avg_price": 2.765}, {"date": "2006-04-17", "fuel": "gasoline", "avg_price": 2.87575}, {"date": "2006-04-24", "fuel": "diesel", "avg_price": 2.876}, {"date": "2006-04-24", "fuel": "gasoline", "avg_price": 3.01425}, {"date": "2006-05-01", "fuel": "diesel", "avg_price": 2.896}, {"date": "2006-05-01", "fuel": "gasoline", "avg_price": 3.0286666667}, {"date": "2006-05-08", "fuel": "gasoline", "avg_price": 3.026}, {"date": "2006-05-08", "fuel": "diesel", "avg_price": 2.897}, {"date": "2006-05-15", "fuel": "gasoline", "avg_price": 3.0613333333}, {"date": "2006-05-15", "fuel": "diesel", "avg_price": 2.92}, {"date": "2006-05-22", "fuel": "diesel", "avg_price": 2.888}, {"date": "2006-05-22", "fuel": "gasoline", "avg_price": 3.0135833333}, {"date": "2006-05-29", "fuel": "diesel", "avg_price": 2.882}, {"date": "2006-05-29", "fuel": "gasoline", "avg_price": 2.98525}, {"date": "2006-06-05", "fuel": "diesel", "avg_price": 2.89}, {"date": "2006-06-05", "fuel": "gasoline", "avg_price": 3.0086666667}, {"date": "2006-06-12", "fuel": "diesel", "avg_price": 2.918}, {"date": "2006-06-12", "fuel": "gasoline", "avg_price": 3.0198333333}, {"date": "2006-06-19", "fuel": "diesel", "avg_price": 2.915}, {"date": "2006-06-19", "fuel": "gasoline", "avg_price": 2.9880833333}, {"date": "2006-06-26", "fuel": "diesel", "avg_price": 2.867}, {"date": "2006-06-26", "fuel": "gasoline", "avg_price": 2.9829166667}, {"date": "2006-07-03", "fuel": "gasoline", "avg_price": 3.0421666667}, {"date": "2006-07-03", "fuel": "diesel", "avg_price": 2.898}, {"date": "2006-07-10", "fuel": "diesel", "avg_price": 2.918}, {"date": "2006-07-10", "fuel": "gasoline", "avg_price": 3.0805833333}, {"date": "2006-07-17", "fuel": "diesel", "avg_price": 2.926}, {"date": "2006-07-17", "fuel": "gasoline", "avg_price": 3.09625}, {"date": "2006-07-24", "fuel": "diesel", "avg_price": 2.946}, {"date": "2006-07-24", "fuel": "gasoline", "avg_price": 3.10925}, {"date": "2006-07-31", "fuel": "diesel", "avg_price": 2.98}, {"date": "2006-07-31", "fuel": "gasoline", "avg_price": 3.1105833333}, {"date": "2006-08-07", "fuel": "diesel", "avg_price": 3.055}, {"date": "2006-08-07", "fuel": "gasoline", "avg_price": 3.1380833333}, {"date": "2006-08-14", "fuel": "gasoline", "avg_price": 3.1065833333}, {"date": "2006-08-14", "fuel": "diesel", "avg_price": 3.065}, {"date": "2006-08-21", "fuel": "diesel", "avg_price": 3.033}, {"date": "2006-08-21", "fuel": "gasoline", "avg_price": 3.0330833333}, {"date": "2006-08-28", "fuel": "diesel", "avg_price": 3.027}, {"date": "2006-08-28", "fuel": "gasoline", "avg_price": 2.9561666667}, {"date": "2006-09-04", "fuel": "diesel", "avg_price": 2.967}, {"date": "2006-09-04", "fuel": "gasoline", "avg_price": 2.8425}, {"date": "2006-09-11", "fuel": "diesel", "avg_price": 2.857}, {"date": "2006-09-11", "fuel": "gasoline", "avg_price": 2.73825}, {"date": "2006-09-18", "fuel": "diesel", "avg_price": 2.713}, {"date": "2006-09-18", "fuel": "gasoline", "avg_price": 2.6185}, {"date": "2006-09-25", "fuel": "gasoline", "avg_price": 2.4983333333}, {"date": "2006-09-25", "fuel": "diesel", "avg_price": 2.595}, {"date": "2006-10-02", "fuel": "diesel", "avg_price": 2.546}, {"date": "2006-10-02", "fuel": "gasoline", "avg_price": 2.4245}, {"date": "2006-10-09", "fuel": "diesel", "avg_price": 2.506}, {"date": "2006-10-09", "fuel": "gasoline", "avg_price": 2.37075}, {"date": "2006-10-16", "fuel": "diesel", "avg_price": 2.503}, {"date": "2006-10-16", "fuel": "gasoline", "avg_price": 2.3316666667}, {"date": "2006-10-23", "fuel": "diesel", "avg_price": 2.524}, {"date": "2006-10-23", "fuel": "gasoline", "avg_price": 2.3078333333}, {"date": "2006-10-30", "fuel": "diesel", "avg_price": 2.517}, {"date": "2006-10-30", "fuel": "gasoline", "avg_price": 2.3133333333}, {"date": "2006-11-06", "fuel": "diesel", "avg_price": 2.506}, {"date": "2006-11-06", "fuel": "gasoline", "avg_price": 2.2950833333}, {"date": "2006-11-13", "fuel": "diesel", "avg_price": 2.552}, {"date": "2006-11-13", "fuel": "gasoline", "avg_price": 2.3283333333}, {"date": "2006-11-20", "fuel": "gasoline", "avg_price": 2.3375833333}, {"date": "2006-11-20", "fuel": "diesel", "avg_price": 2.553}, {"date": "2006-11-27", "fuel": "diesel", "avg_price": 2.567}, {"date": "2006-11-27", "fuel": "gasoline", "avg_price": 2.3456666667}, {"date": "2006-12-04", "fuel": "diesel", "avg_price": 2.618}, {"date": "2006-12-04", "fuel": "gasoline", "avg_price": 2.3929166667}, {"date": "2006-12-11", "fuel": "diesel", "avg_price": 2.621}, {"date": "2006-12-11", "fuel": "gasoline", "avg_price": 2.39325}, {"date": "2006-12-18", "fuel": "diesel", "avg_price": 2.606}, {"date": "2006-12-18", "fuel": "gasoline", "avg_price": 2.4204166667}, {"date": "2006-12-25", "fuel": "diesel", "avg_price": 2.596}, {"date": "2006-12-25", "fuel": "gasoline", "avg_price": 2.4443333333}, {"date": "2007-01-01", "fuel": "gasoline", "avg_price": 2.4400833333}, {"date": "2007-01-01", "fuel": "diesel", "avg_price": 2.58}, {"date": "2007-01-08", "fuel": "diesel", "avg_price": 2.537}, {"date": "2007-01-08", "fuel": "gasoline", "avg_price": 2.4170833333}, {"date": "2007-01-15", "fuel": "diesel", "avg_price": 2.463}, {"date": "2007-01-15", "fuel": "gasoline", "avg_price": 2.3470833333}, {"date": "2007-01-22", "fuel": "diesel", "avg_price": 2.43}, {"date": "2007-01-22", "fuel": "gasoline", "avg_price": 2.285}, {"date": "2007-01-29", "fuel": "diesel", "avg_price": 2.413}, {"date": "2007-01-29", "fuel": "gasoline", "avg_price": 2.2755}, {"date": "2007-02-05", "fuel": "diesel", "avg_price": 2.4256666667}, {"date": "2007-02-05", "fuel": "gasoline", "avg_price": 2.296}, {"date": "2007-02-12", "fuel": "diesel", "avg_price": 2.466}, {"date": "2007-02-12", "fuel": "gasoline", "avg_price": 2.3460833333}, {"date": "2007-02-19", "fuel": "gasoline", "avg_price": 2.3995833333}, {"date": "2007-02-19", "fuel": "diesel", "avg_price": 2.481}, {"date": "2007-02-26", "fuel": "diesel", "avg_price": 2.5423333333}, {"date": "2007-02-26", "fuel": "gasoline", "avg_price": 2.4864166667}, {"date": "2007-03-05", "fuel": "diesel", "avg_price": 2.6166666667}, {"date": "2007-03-05", "fuel": "gasoline", "avg_price": 2.6093333333}, {"date": "2007-03-12", "fuel": "diesel", "avg_price": 2.679}, {"date": "2007-03-12", "fuel": "gasoline", "avg_price": 2.6698333333}, {"date": "2007-03-19", "fuel": "diesel", "avg_price": 2.673}, {"date": "2007-03-19", "fuel": "gasoline", "avg_price": 2.6906666667}, {"date": "2007-03-26", "fuel": "diesel", "avg_price": 2.6666666667}, {"date": "2007-03-26", "fuel": "gasoline", "avg_price": 2.7228333333}, {"date": "2007-04-02", "fuel": "gasoline", "avg_price": 2.8213333333}, {"date": "2007-04-02", "fuel": "diesel", "avg_price": 2.7813333333}, {"date": "2007-04-09", "fuel": "gasoline", "avg_price": 2.9113333333}, {"date": "2007-04-09", "fuel": "diesel", "avg_price": 2.8306666667}, {"date": "2007-04-16", "fuel": "diesel", "avg_price": 2.8696666667}, {"date": "2007-04-16", "fuel": "gasoline", "avg_price": 2.9845833333}, {"date": "2007-04-23", "fuel": "diesel", "avg_price": 2.8416666667}, {"date": "2007-04-23", "fuel": "gasoline", "avg_price": 2.9815833333}, {"date": "2007-04-30", "fuel": "diesel", "avg_price": 2.796}, {"date": "2007-04-30", "fuel": "gasoline", "avg_price": 3.0775833333}, {"date": "2007-05-07", "fuel": "diesel", "avg_price": 2.7746666667}, {"date": "2007-05-07", "fuel": "gasoline", "avg_price": 3.1566666667}, {"date": "2007-05-14", "fuel": "diesel", "avg_price": 2.755}, {"date": "2007-05-14", "fuel": "gasoline", "avg_price": 3.1949166667}, {"date": "2007-05-21", "fuel": "gasoline", "avg_price": 3.2998333333}, {"date": "2007-05-21", "fuel": "diesel", "avg_price": 2.7883333333}, {"date": "2007-05-28", "fuel": "gasoline", "avg_price": 3.2950833333}, {"date": "2007-05-28", "fuel": "diesel", "avg_price": 2.8016666667}, {"date": "2007-06-04", "fuel": "diesel", "avg_price": 2.7833333333}, {"date": "2007-06-04", "fuel": "gasoline", "avg_price": 3.2505}, {"date": "2007-06-11", "fuel": "diesel", "avg_price": 2.774}, {"date": "2007-06-11", "fuel": "gasoline", "avg_price": 3.17925}, {"date": "2007-06-18", "fuel": "diesel", "avg_price": 2.7916666667}, {"date": "2007-06-18", "fuel": "gasoline", "avg_price": 3.1141666667}, {"date": "2007-06-25", "fuel": "diesel", "avg_price": 2.8226666667}, {"date": "2007-06-25", "fuel": "gasoline", "avg_price": 3.0856666667}, {"date": "2007-07-02", "fuel": "diesel", "avg_price": 2.8166666667}, {"date": "2007-07-02", "fuel": "gasoline", "avg_price": 3.0596666667}, {"date": "2007-07-09", "fuel": "diesel", "avg_price": 2.839}, {"date": "2007-07-09", "fuel": "gasoline", "avg_price": 3.0726666667}, {"date": "2007-07-16", "fuel": "gasoline", "avg_price": 3.1346666667}, {"date": "2007-07-16", "fuel": "diesel", "avg_price": 2.875}, {"date": "2007-07-23", "fuel": "diesel", "avg_price": 2.8736666667}, {"date": "2007-07-23", "fuel": "gasoline", "avg_price": 3.0573333333}, {"date": "2007-07-30", "fuel": "diesel", "avg_price": 2.872}, {"date": "2007-07-30", "fuel": "gasoline", "avg_price": 2.9830833333}, {"date": "2007-08-06", "fuel": "diesel", "avg_price": 2.8846666667}, {"date": "2007-08-06", "fuel": "gasoline", "avg_price": 2.9445}, {"date": "2007-08-13", "fuel": "diesel", "avg_price": 2.8326666667}, {"date": "2007-08-13", "fuel": "gasoline", "avg_price": 2.8753333333}, {"date": "2007-08-20", "fuel": "diesel", "avg_price": 2.8573333333}, {"date": "2007-08-20", "fuel": "gasoline", "avg_price": 2.8784166667}, {"date": "2007-08-27", "fuel": "gasoline", "avg_price": 2.8395833333}, {"date": "2007-08-27", "fuel": "diesel", "avg_price": 2.8523333333}, {"date": "2007-09-03", "fuel": "gasoline", "avg_price": 2.8755833333}, {"date": "2007-09-03", "fuel": "diesel", "avg_price": 2.8843333333}, {"date": "2007-09-10", "fuel": "diesel", "avg_price": 2.9156666667}, {"date": "2007-09-10", "fuel": "gasoline", "avg_price": 2.8976666667}, {"date": "2007-09-17", "fuel": "diesel", "avg_price": 2.9563333333}, {"date": "2007-09-17", "fuel": "gasoline", "avg_price": 2.8786666667}, {"date": "2007-09-24", "fuel": "diesel", "avg_price": 3.026}, {"date": "2007-09-24", "fuel": "gasoline", "avg_price": 2.9046666667}, {"date": "2007-10-01", "fuel": "diesel", "avg_price": 3.04}, {"date": "2007-10-01", "fuel": "gasoline", "avg_price": 2.8880833333}, {"date": "2007-10-08", "fuel": "diesel", "avg_price": 3.022}, {"date": "2007-10-08", "fuel": "gasoline", "avg_price": 2.87325}, {"date": "2007-10-15", "fuel": "diesel", "avg_price": 3.0226666667}, {"date": "2007-10-15", "fuel": "gasoline", "avg_price": 2.86825}, {"date": "2007-10-22", "fuel": "gasoline", "avg_price": 2.9268333333}, {"date": "2007-10-22", "fuel": "diesel", "avg_price": 3.0756666667}, {"date": "2007-10-29", "fuel": "diesel", "avg_price": 3.141}, {"date": "2007-10-29", "fuel": "gasoline", "avg_price": 2.97275}, {"date": "2007-11-05", "fuel": "diesel", "avg_price": 3.2913333333}, {"date": "2007-11-05", "fuel": "gasoline", "avg_price": 3.1065}, {"date": "2007-11-12", "fuel": "diesel", "avg_price": 3.4103333333}, {"date": "2007-11-12", "fuel": "gasoline", "avg_price": 3.2076666667}, {"date": "2007-11-19", "fuel": "diesel", "avg_price": 3.3896666667}, {"date": "2007-11-19", "fuel": "gasoline", "avg_price": 3.2023333333}, {"date": "2007-11-26", "fuel": "diesel", "avg_price": 3.4273333333}, {"date": "2007-11-26", "fuel": "gasoline", "avg_price": 3.2025833333}, {"date": "2007-12-03", "fuel": "gasoline", "avg_price": 3.17275}, {"date": "2007-12-03", "fuel": "diesel", "avg_price": 3.393}, {"date": "2007-12-10", "fuel": "diesel", "avg_price": 3.2963333333}, {"date": "2007-12-10", "fuel": "gasoline", "avg_price": 3.11825}, {"date": "2007-12-17", "fuel": "diesel", "avg_price": 3.2816666667}, {"date": "2007-12-17", "fuel": "gasoline", "avg_price": 3.1125}, {"date": "2007-12-24", "fuel": "diesel", "avg_price": 3.2846666667}, {"date": "2007-12-24", "fuel": "gasoline", "avg_price": 3.0951666667}, {"date": "2007-12-31", "fuel": "diesel", "avg_price": 3.3243333333}, {"date": "2007-12-31", "fuel": "gasoline", "avg_price": 3.1611666667}, {"date": "2008-01-07", "fuel": "diesel", "avg_price": 3.3546666667}, {"date": "2008-01-07", "fuel": "gasoline", "avg_price": 3.214}, {"date": "2008-01-14", "fuel": "diesel", "avg_price": 3.2986666667}, {"date": "2008-01-14", "fuel": "gasoline", "avg_price": 3.1775833333}, {"date": "2008-01-21", "fuel": "gasoline", "avg_price": 3.1298333333}, {"date": "2008-01-21", "fuel": "diesel", "avg_price": 3.2416666667}, {"date": "2008-01-28", "fuel": "diesel", "avg_price": 3.234}, {"date": "2008-01-28", "fuel": "gasoline", "avg_price": 3.0889166667}, {"date": "2008-02-04", "fuel": "diesel", "avg_price": 3.2593333333}, {"date": "2008-02-04", "fuel": "gasoline", "avg_price": 3.08375}, {"date": "2008-02-11", "fuel": "diesel", "avg_price": 3.258}, {"date": "2008-02-11", "fuel": "gasoline", "avg_price": 3.0645}, {"date": "2008-02-18", "fuel": "diesel", "avg_price": 3.3786666667}, {"date": "2008-02-18", "fuel": "gasoline", "avg_price": 3.1416666667}, {"date": "2008-02-25", "fuel": "diesel", "avg_price": 3.5403333333}, {"date": "2008-02-25", "fuel": "gasoline", "avg_price": 3.2320833333}, {"date": "2008-03-03", "fuel": "gasoline", "avg_price": 3.2688333333}, {"date": "2008-03-03", "fuel": "diesel", "avg_price": 3.6403333333}, {"date": "2008-03-10", "fuel": "diesel", "avg_price": 3.806}, {"date": "2008-03-10", "fuel": "gasoline", "avg_price": 3.3283333333}, {"date": "2008-03-17", "fuel": "diesel", "avg_price": 3.96}, {"date": "2008-03-17", "fuel": "gasoline", "avg_price": 3.3881666667}, {"date": "2008-03-24", "fuel": "diesel", "avg_price": 3.973}, {"date": "2008-03-24", "fuel": "gasoline", "avg_price": 3.3705}, {"date": "2008-03-31", "fuel": "diesel", "avg_price": 3.9416666667}, {"date": "2008-03-31", "fuel": "gasoline", "avg_price": 3.3976666667}, {"date": "2008-04-07", "fuel": "diesel", "avg_price": 3.932}, {"date": "2008-04-07", "fuel": "gasoline", "avg_price": 3.4386666667}, {"date": "2008-04-14", "fuel": "gasoline", "avg_price": 3.4974166667}, {"date": "2008-04-14", "fuel": "diesel", "avg_price": 4.0383333333}, {"date": "2008-04-21", "fuel": "diesel", "avg_price": 4.1216666667}, {"date": "2008-04-21", "fuel": "gasoline", "avg_price": 3.618}, {"date": "2008-04-28", "fuel": "diesel", "avg_price": 4.154}, {"date": "2008-04-28", "fuel": "gasoline", "avg_price": 3.7129166667}, {"date": "2008-05-05", "fuel": "diesel", "avg_price": 4.12}, {"date": "2008-05-05", "fuel": "gasoline", "avg_price": 3.72475}, {"date": "2008-05-12", "fuel": "diesel", "avg_price": 4.3113333333}, {"date": "2008-05-12", "fuel": "gasoline", "avg_price": 3.8268333333}, {"date": "2008-05-19", "fuel": "diesel", "avg_price": 4.4823333333}, {"date": "2008-05-19", "fuel": "gasoline", "avg_price": 3.8965}, {"date": "2008-05-26", "fuel": "diesel", "avg_price": 4.7043333333}, {"date": "2008-05-26", "fuel": "gasoline", "avg_price": 4.0405833333}, {"date": "2008-06-02", "fuel": "gasoline", "avg_price": 4.0870833333}, {"date": "2008-06-02", "fuel": "diesel", "avg_price": 4.6863333333}, {"date": "2008-06-09", "fuel": "diesel", "avg_price": 4.668}, {"date": "2008-06-09", "fuel": "gasoline", "avg_price": 4.1576666667}, {"date": "2008-06-16", "fuel": "diesel", "avg_price": 4.6666666667}, {"date": "2008-06-16", "fuel": "gasoline", "avg_price": 4.2085}, {"date": "2008-06-23", "fuel": "diesel", "avg_price": 4.6196666667}, {"date": "2008-06-23", "fuel": "gasoline", "avg_price": 4.2068333333}, {"date": "2008-06-30", "fuel": "diesel", "avg_price": 4.6186666667}, {"date": "2008-06-30", "fuel": "gasoline", "avg_price": 4.2181666667}, {"date": "2008-07-07", "fuel": "diesel", "avg_price": 4.712}, {"date": "2008-07-07", "fuel": "gasoline", "avg_price": 4.2355833333}, {"date": "2008-07-14", "fuel": "gasoline", "avg_price": 4.2320833333}, {"date": "2008-07-14", "fuel": "diesel", "avg_price": 4.7473333333}, {"date": "2008-07-21", "fuel": "diesel", "avg_price": 4.692}, {"date": "2008-07-21", "fuel": "gasoline", "avg_price": 4.1891666667}, {"date": "2008-07-28", "fuel": "diesel", "avg_price": 4.5763333333}, {"date": "2008-07-28", "fuel": "gasoline", "avg_price": 4.0839166667}, {"date": "2008-08-04", "fuel": "diesel", "avg_price": 4.4706666667}, {"date": "2008-08-04", "fuel": "gasoline", "avg_price": 4.0065833333}, {"date": "2008-08-11", "fuel": "diesel", "avg_price": 4.3203333333}, {"date": "2008-08-11", "fuel": "gasoline", "avg_price": 3.9318333333}, {"date": "2008-08-18", "fuel": "diesel", "avg_price": 4.176}, {"date": "2008-08-18", "fuel": "gasoline", "avg_price": 3.8578333333}, {"date": "2008-08-25", "fuel": "gasoline", "avg_price": 3.7986666667}, {"date": "2008-08-25", "fuel": "diesel", "avg_price": 4.114}, {"date": "2008-09-01", "fuel": "gasoline", "avg_price": 3.7900833333}, {"date": "2008-09-01", "fuel": "diesel", "avg_price": 4.0903333333}, {"date": "2008-09-08", "fuel": "diesel", "avg_price": 4.0233333333}, {"date": "2008-09-08", "fuel": "gasoline", "avg_price": 3.7563333333}, {"date": "2008-09-15", "fuel": "diesel", "avg_price": 3.997}, {"date": "2008-09-15", "fuel": "gasoline", "avg_price": 3.9248333333}, {"date": "2008-09-22", "fuel": "diesel", "avg_price": 3.9366666667}, {"date": "2008-09-22", "fuel": "gasoline", "avg_price": 3.81875}, {"date": "2008-09-29", "fuel": "diesel", "avg_price": 3.9383333333}, {"date": "2008-09-29", "fuel": "gasoline", "avg_price": 3.73675}, {"date": "2008-10-06", "fuel": "diesel", "avg_price": 3.8476666667}, {"date": "2008-10-06", "fuel": "gasoline", "avg_price": 3.598}, {"date": "2008-10-13", "fuel": "gasoline", "avg_price": 3.2870833333}, {"date": "2008-10-13", "fuel": "diesel", "avg_price": 3.6296666667}, {"date": "2008-10-20", "fuel": "diesel", "avg_price": 3.4456666667}, {"date": "2008-10-20", "fuel": "gasoline", "avg_price": 3.0535}, {"date": "2008-10-27", "fuel": "diesel", "avg_price": 3.259}, {"date": "2008-10-27", "fuel": "gasoline", "avg_price": 2.801}, {"date": "2008-11-03", "fuel": "diesel", "avg_price": 3.0606666667}, {"date": "2008-11-03", "fuel": "gasoline", "avg_price": 2.5434166667}, {"date": "2008-11-10", "fuel": "diesel", "avg_price": 2.9103333333}, {"date": "2008-11-10", "fuel": "gasoline", "avg_price": 2.3621666667}, {"date": "2008-11-17", "fuel": "diesel", "avg_price": 2.7766666667}, {"date": "2008-11-17", "fuel": "gasoline", "avg_price": 2.2063333333}, {"date": "2008-11-24", "fuel": "diesel", "avg_price": 2.637}, {"date": "2008-11-24", "fuel": "gasoline", "avg_price": 2.0235}, {"date": "2008-12-01", "fuel": "diesel", "avg_price": 2.5943333333}, {"date": "2008-12-01", "fuel": "gasoline", "avg_price": 1.9355833333}, {"date": "2008-12-08", "fuel": "diesel", "avg_price": 2.519}, {"date": "2008-12-08", "fuel": "gasoline", "avg_price": 1.8225833333}, {"date": "2008-12-15", "fuel": "diesel", "avg_price": 2.426}, {"date": "2008-12-15", "fuel": "gasoline", "avg_price": 1.7749166667}, {"date": "2008-12-22", "fuel": "gasoline", "avg_price": 1.7714166667}, {"date": "2008-12-22", "fuel": "diesel", "avg_price": 2.3695}, {"date": "2008-12-29", "fuel": "diesel", "avg_price": 2.331}, {"date": "2008-12-29", "fuel": "gasoline", "avg_price": 1.7331666667}, {"date": "2009-01-05", "fuel": "diesel", "avg_price": 2.295}, {"date": "2009-01-05", "fuel": "gasoline", "avg_price": 1.7925}, {"date": "2009-01-12", "fuel": "diesel", "avg_price": 2.319}, {"date": "2009-01-12", "fuel": "gasoline", "avg_price": 1.8889166667}, {"date": "2009-01-19", "fuel": "diesel", "avg_price": 2.3015}, {"date": "2009-01-19", "fuel": "gasoline", "avg_price": 1.9520833333}, {"date": "2009-01-26", "fuel": "diesel", "avg_price": 2.273}, {"date": "2009-01-26", "fuel": "gasoline", "avg_price": 1.9475833333}, {"date": "2009-02-02", "fuel": "gasoline", "avg_price": 2.0001666667}, {"date": "2009-02-02", "fuel": "diesel", "avg_price": 2.251}, {"date": "2009-02-09", "fuel": "diesel", "avg_price": 2.2245}, {"date": "2009-02-09", "fuel": "gasoline", "avg_price": 2.0380833333}, {"date": "2009-02-16", "fuel": "diesel", "avg_price": 2.1915}, {"date": "2009-02-16", "fuel": "gasoline", "avg_price": 2.0774166667}, {"date": "2009-02-23", "fuel": "diesel", "avg_price": 2.134}, {"date": "2009-02-23", "fuel": "gasoline", "avg_price": 2.029}, {"date": "2009-03-02", "fuel": "diesel", "avg_price": 2.091}, {"date": "2009-03-02", "fuel": "gasoline", "avg_price": 2.04775}, {"date": "2009-03-09", "fuel": "diesel", "avg_price": 2.048}, {"date": "2009-03-09", "fuel": "gasoline", "avg_price": 2.0509166667}, {"date": "2009-03-16", "fuel": "gasoline", "avg_price": 2.0240833333}, {"date": "2009-03-16", "fuel": "diesel", "avg_price": 2.02}, {"date": "2009-03-23", "fuel": "gasoline", "avg_price": 2.0690833333}, {"date": "2009-03-23", "fuel": "diesel", "avg_price": 2.0915}, {"date": "2009-03-30", "fuel": "diesel", "avg_price": 2.223}, {"date": "2009-03-30", "fuel": "gasoline", "avg_price": 2.1516666667}, {"date": "2009-04-06", "fuel": "diesel", "avg_price": 2.2305}, {"date": "2009-04-06", "fuel": "gasoline", "avg_price": 2.14875}, {"date": "2009-04-13", "fuel": "diesel", "avg_price": 2.2315}, {"date": "2009-04-13", "fuel": "gasoline", "avg_price": 2.1625833333}, {"date": "2009-04-20", "fuel": "diesel", "avg_price": 2.2235}, {"date": "2009-04-20", "fuel": "gasoline", "avg_price": 2.1716666667}, {"date": "2009-04-27", "fuel": "diesel", "avg_price": 2.204}, {"date": "2009-04-27", "fuel": "gasoline", "avg_price": 2.1639166667}, {"date": "2009-05-04", "fuel": "gasoline", "avg_price": 2.1895}, {"date": "2009-05-04", "fuel": "diesel", "avg_price": 2.1885}, {"date": "2009-05-11", "fuel": "diesel", "avg_price": 2.2195}, {"date": "2009-05-11", "fuel": "gasoline", "avg_price": 2.3448333333}, {"date": "2009-05-18", "fuel": "diesel", "avg_price": 2.234}, {"date": "2009-05-18", "fuel": "gasoline", "avg_price": 2.418}, {"date": "2009-05-25", "fuel": "diesel", "avg_price": 2.276}, {"date": "2009-05-25", "fuel": "gasoline", "avg_price": 2.5395}, {"date": "2009-06-01", "fuel": "diesel", "avg_price": 2.353}, {"date": "2009-06-01", "fuel": "gasoline", "avg_price": 2.625}, {"date": "2009-06-08", "fuel": "diesel", "avg_price": 2.4995}, {"date": "2009-06-08", "fuel": "gasoline", "avg_price": 2.727}, {"date": "2009-06-15", "fuel": "diesel", "avg_price": 2.5735}, {"date": "2009-06-15", "fuel": "gasoline", "avg_price": 2.7804166667}, {"date": "2009-06-22", "fuel": "gasoline", "avg_price": 2.8056666667}, {"date": "2009-06-22", "fuel": "diesel", "avg_price": 2.6175}, {"date": "2009-06-29", "fuel": "diesel", "avg_price": 2.61}, {"date": "2009-06-29", "fuel": "gasoline", "avg_price": 2.7625833333}, {"date": "2009-07-06", "fuel": "diesel", "avg_price": 2.596}, {"date": "2009-07-06", "fuel": "gasoline", "avg_price": 2.7340833333}, {"date": "2009-07-13", "fuel": "diesel", "avg_price": 2.544}, {"date": "2009-07-13", "fuel": "gasoline", "avg_price": 2.6543333333}, {"date": "2009-07-20", "fuel": "diesel", "avg_price": 2.4985}, {"date": "2009-07-20", "fuel": "gasoline", "avg_price": 2.5905833333}, {"date": "2009-07-27", "fuel": "diesel", "avg_price": 2.53}, {"date": "2009-07-27", "fuel": "gasoline", "avg_price": 2.6231666667}, {"date": "2009-08-03", "fuel": "gasoline", "avg_price": 2.6755833333}, {"date": "2009-08-03", "fuel": "diesel", "avg_price": 2.552}, {"date": "2009-08-10", "fuel": "diesel", "avg_price": 2.6265}, {"date": "2009-08-10", "fuel": "gasoline", "avg_price": 2.76725}, {"date": "2009-08-17", "fuel": "diesel", "avg_price": 2.654}, {"date": "2009-08-17", "fuel": "gasoline", "avg_price": 2.7614166667}, {"date": "2009-08-24", "fuel": "diesel", "avg_price": 2.67}, {"date": "2009-08-24", "fuel": "gasoline", "avg_price": 2.75225}, {"date": "2009-08-31", "fuel": "diesel", "avg_price": 2.6765}, {"date": "2009-08-31", "fuel": "gasoline", "avg_price": 2.7399166667}, {"date": "2009-09-07", "fuel": "diesel", "avg_price": 2.6485}, {"date": "2009-09-07", "fuel": "gasoline", "avg_price": 2.7181666667}, {"date": "2009-09-14", "fuel": "gasoline", "avg_price": 2.7104166667}, {"date": "2009-09-14", "fuel": "diesel", "avg_price": 2.636}, {"date": "2009-09-21", "fuel": "gasoline", "avg_price": 2.6855833333}, {"date": "2009-09-21", "fuel": "diesel", "avg_price": 2.624}, {"date": "2009-09-28", "fuel": "diesel", "avg_price": 2.6035}, {"date": "2009-09-28", "fuel": "gasoline", "avg_price": 2.6331666667}, {"date": "2009-10-05", "fuel": "diesel", "avg_price": 2.585}, {"date": "2009-10-05", "fuel": "gasoline", "avg_price": 2.6019166667}, {"date": "2009-10-12", "fuel": "diesel", "avg_price": 2.602}, {"date": "2009-10-12", "fuel": "gasoline", "avg_price": 2.6148333333}, {"date": "2009-10-19", "fuel": "diesel", "avg_price": 2.7065}, {"date": "2009-10-19", "fuel": "gasoline", "avg_price": 2.6908333333}, {"date": "2009-10-26", "fuel": "diesel", "avg_price": 2.803}, {"date": "2009-10-26", "fuel": "gasoline", "avg_price": 2.7878333333}, {"date": "2009-11-02", "fuel": "gasoline", "avg_price": 2.80825}, {"date": "2009-11-02", "fuel": "diesel", "avg_price": 2.8095}, {"date": "2009-11-09", "fuel": "diesel", "avg_price": 2.803}, {"date": "2009-11-09", "fuel": "gasoline", "avg_price": 2.78425}, {"date": "2009-11-16", "fuel": "diesel", "avg_price": 2.7925}, {"date": "2009-11-16", "fuel": "gasoline", "avg_price": 2.7516666667}, {"date": "2009-11-23", "fuel": "diesel", "avg_price": 2.7895}, {"date": "2009-11-23", "fuel": "gasoline", "avg_price": 2.7580833333}, {"date": "2009-11-30", "fuel": "diesel", "avg_price": 2.7775}, {"date": "2009-11-30", "fuel": "gasoline", "avg_price": 2.74875}, {"date": "2009-12-07", "fuel": "diesel", "avg_price": 2.7745}, {"date": "2009-12-07", "fuel": "gasoline", "avg_price": 2.7535833333}, {"date": "2009-12-14", "fuel": "diesel", "avg_price": 2.7505}, {"date": "2009-12-14", "fuel": "gasoline", "avg_price": 2.72225}, {"date": "2009-12-21", "fuel": "diesel", "avg_price": 2.7285}, {"date": "2009-12-21", "fuel": "gasoline", "avg_price": 2.7128333333}, {"date": "2009-12-28", "fuel": "gasoline", "avg_price": 2.7283333333}, {"date": "2009-12-28", "fuel": "diesel", "avg_price": 2.734}, {"date": "2010-01-04", "fuel": "diesel", "avg_price": 2.799}, {"date": "2010-01-04", "fuel": "gasoline", "avg_price": 2.7819166667}, {"date": "2010-01-11", "fuel": "diesel", "avg_price": 2.8805}, {"date": "2010-01-11", "fuel": "gasoline", "avg_price": 2.8648333333}, {"date": "2010-01-18", "fuel": "diesel", "avg_price": 2.872}, {"date": "2010-01-18", "fuel": "gasoline", "avg_price": 2.8563333333}, {"date": "2010-01-25", "fuel": "diesel", "avg_price": 2.8355}, {"date": "2010-01-25", "fuel": "gasoline", "avg_price": 2.8261666667}, {"date": "2010-02-01", "fuel": "diesel", "avg_price": 2.784}, {"date": "2010-02-01", "fuel": "gasoline", "avg_price": 2.784}, {"date": "2010-02-08", "fuel": "gasoline", "avg_price": 2.7740833333}, {"date": "2010-02-08", "fuel": "diesel", "avg_price": 2.772}, {"date": "2010-02-15", "fuel": "diesel", "avg_price": 2.7585}, {"date": "2010-02-15", "fuel": "gasoline", "avg_price": 2.7338333333}, {"date": "2010-02-22", "fuel": "diesel", "avg_price": 2.833}, {"date": "2010-02-22", "fuel": "gasoline", "avg_price": 2.7724166667}, {"date": "2010-03-01", "fuel": "diesel", "avg_price": 2.863}, {"date": "2010-03-01", "fuel": "gasoline", "avg_price": 2.8181666667}, {"date": "2010-03-08", "fuel": "diesel", "avg_price": 2.905}, {"date": "2010-03-08", "fuel": "gasoline", "avg_price": 2.864}, {"date": "2010-03-15", "fuel": "diesel", "avg_price": 2.925}, {"date": "2010-03-15", "fuel": "gasoline", "avg_price": 2.8996666667}, {"date": "2010-03-22", "fuel": "diesel", "avg_price": 2.9475}, {"date": "2010-03-22", "fuel": "gasoline", "avg_price": 2.92825}, {"date": "2010-03-29", "fuel": "gasoline", "avg_price": 2.91175}, {"date": "2010-03-29", "fuel": "diesel", "avg_price": 2.9405}, {"date": "2010-04-05", "fuel": "diesel", "avg_price": 3.016}, {"date": "2010-04-05", "fuel": "gasoline", "avg_price": 2.93575}, {"date": "2010-04-12", "fuel": "diesel", "avg_price": 3.071}, {"date": "2010-04-12", "fuel": "gasoline", "avg_price": 2.9665833333}, {"date": "2010-04-19", "fuel": "diesel", "avg_price": 3.076}, {"date": "2010-04-19", "fuel": "gasoline", "avg_price": 2.9691666667}, {"date": "2010-04-26", "fuel": "diesel", "avg_price": 3.08}, {"date": "2010-04-26", "fuel": "gasoline", "avg_price": 2.9620833333}, {"date": "2010-05-03", "fuel": "diesel", "avg_price": 3.124}, {"date": "2010-05-03", "fuel": "gasoline", "avg_price": 3.0093333333}, {"date": "2010-05-10", "fuel": "gasoline", "avg_price": 3.0193333333}, {"date": "2010-05-10", "fuel": "diesel", "avg_price": 3.129}, {"date": "2010-05-17", "fuel": "gasoline", "avg_price": 2.983}, {"date": "2010-05-17", "fuel": "diesel", "avg_price": 3.096}, {"date": "2010-05-24", "fuel": "diesel", "avg_price": 3.023}, {"date": "2010-05-24", "fuel": "gasoline", "avg_price": 2.9106666667}, {"date": "2010-05-31", "fuel": "diesel", "avg_price": 2.9815}, {"date": "2010-05-31", "fuel": "gasoline", "avg_price": 2.85425}, {"date": "2010-06-07", "fuel": "diesel", "avg_price": 2.9475}, {"date": "2010-06-07", "fuel": "gasoline", "avg_price": 2.8503333333}, {"date": "2010-06-14", "fuel": "diesel", "avg_price": 2.929}, {"date": "2010-06-14", "fuel": "gasoline", "avg_price": 2.8255}, {"date": "2010-06-21", "fuel": "diesel", "avg_price": 2.9615}, {"date": "2010-06-21", "fuel": "gasoline", "avg_price": 2.8619166667}, {"date": "2010-06-28", "fuel": "gasoline", "avg_price": 2.87475}, {"date": "2010-06-28", "fuel": "diesel", "avg_price": 2.9565}, {"date": "2010-07-05", "fuel": "gasoline", "avg_price": 2.8473333333}, {"date": "2010-07-05", "fuel": "diesel", "avg_price": 2.9245}, {"date": "2010-07-12", "fuel": "diesel", "avg_price": 2.9035}, {"date": "2010-07-12", "fuel": "gasoline", "avg_price": 2.84}, {"date": "2010-07-19", "fuel": "diesel", "avg_price": 2.899}, {"date": "2010-07-19", "fuel": "gasoline", "avg_price": 2.8430833333}, {"date": "2010-07-26", "fuel": "diesel", "avg_price": 2.919}, {"date": "2010-07-26", "fuel": "gasoline", "avg_price": 2.8665}, {"date": "2010-08-02", "fuel": "diesel", "avg_price": 2.928}, {"date": "2010-08-02", "fuel": "gasoline", "avg_price": 2.8558333333}, {"date": "2010-08-09", "fuel": "diesel", "avg_price": 2.991}, {"date": "2010-08-09", "fuel": "gasoline", "avg_price": 2.8999166667}, {"date": "2010-08-16", "fuel": "diesel", "avg_price": 2.979}, {"date": "2010-08-16", "fuel": "gasoline", "avg_price": 2.86625}, {"date": "2010-08-23", "fuel": "gasoline", "avg_price": 2.8288333333}, {"date": "2010-08-23", "fuel": "diesel", "avg_price": 2.957}, {"date": "2010-08-30", "fuel": "diesel", "avg_price": 2.938}, {"date": "2010-08-30", "fuel": "gasoline", "avg_price": 2.8029166667}, {"date": "2010-09-06", "fuel": "diesel", "avg_price": 2.931}, {"date": "2010-09-06", "fuel": "gasoline", "avg_price": 2.7980833333}, {"date": "2010-09-13", "fuel": "diesel", "avg_price": 2.943}, {"date": "2010-09-13", "fuel": "gasoline", "avg_price": 2.8306666667}, {"date": "2010-09-20", "fuel": "diesel", "avg_price": 2.96}, {"date": "2010-09-20", "fuel": "gasoline", "avg_price": 2.83275}, {"date": "2010-09-27", "fuel": "diesel", "avg_price": 2.951}, {"date": "2010-09-27", "fuel": "gasoline", "avg_price": 2.8078333333}, {"date": "2010-10-04", "fuel": "gasoline", "avg_price": 2.8433333333}, {"date": "2010-10-04", "fuel": "diesel", "avg_price": 3}, {"date": "2010-10-11", "fuel": "diesel", "avg_price": 3.066}, {"date": "2010-10-11", "fuel": "gasoline", "avg_price": 2.92875}, {"date": "2010-10-18", "fuel": "diesel", "avg_price": 3.073}, {"date": "2010-10-18", "fuel": "gasoline", "avg_price": 2.9503333333}, {"date": "2010-10-25", "fuel": "diesel", "avg_price": 3.067}, {"date": "2010-10-25", "fuel": "gasoline", "avg_price": 2.9365}, {"date": "2010-11-01", "fuel": "diesel", "avg_price": 3.067}, {"date": "2010-11-01", "fuel": "gasoline", "avg_price": 2.9285833333}, {"date": "2010-11-08", "fuel": "diesel", "avg_price": 3.116}, {"date": "2010-11-08", "fuel": "gasoline", "avg_price": 2.9778333333}, {"date": "2010-11-15", "fuel": "gasoline", "avg_price": 3.0080833333}, {"date": "2010-11-15", "fuel": "diesel", "avg_price": 3.184}, {"date": "2010-11-22", "fuel": "diesel", "avg_price": 3.171}, {"date": "2010-11-22", "fuel": "gasoline", "avg_price": 3}, {"date": "2010-11-29", "fuel": "diesel", "avg_price": 3.162}, {"date": "2010-11-29", "fuel": "gasoline", "avg_price": 2.9825833333}, {"date": "2010-12-06", "fuel": "diesel", "avg_price": 3.197}, {"date": "2010-12-06", "fuel": "gasoline", "avg_price": 3.0786666667}, {"date": "2010-12-13", "fuel": "diesel", "avg_price": 3.231}, {"date": "2010-12-13", "fuel": "gasoline", "avg_price": 3.1004166667}, {"date": "2010-12-20", "fuel": "diesel", "avg_price": 3.248}, {"date": "2010-12-20", "fuel": "gasoline", "avg_price": 3.10525}, {"date": "2010-12-27", "fuel": "diesel", "avg_price": 3.294}, {"date": "2010-12-27", "fuel": "gasoline", "avg_price": 3.1688333333}, {"date": "2011-01-03", "fuel": "diesel", "avg_price": 3.331}, {"date": "2011-01-03", "fuel": "gasoline", "avg_price": 3.1865}, {"date": "2011-01-10", "fuel": "gasoline", "avg_price": 3.2041666667}, {"date": "2011-01-10", "fuel": "diesel", "avg_price": 3.333}, {"date": "2011-01-17", "fuel": "diesel", "avg_price": 3.407}, {"date": "2011-01-17", "fuel": "gasoline", "avg_price": 3.2201666667}, {"date": "2011-01-24", "fuel": "diesel", "avg_price": 3.43}, {"date": "2011-01-24", "fuel": "gasoline", "avg_price": 3.2259166667}, {"date": "2011-01-31", "fuel": "diesel", "avg_price": 3.438}, {"date": "2011-01-31", "fuel": "gasoline", "avg_price": 3.2195}, {"date": "2011-02-07", "fuel": "diesel", "avg_price": 3.513}, {"date": "2011-02-07", "fuel": "gasoline", "avg_price": 3.2478333333}, {"date": "2011-02-14", "fuel": "diesel", "avg_price": 3.534}, {"date": "2011-02-14", "fuel": "gasoline", "avg_price": 3.2588333333}, {"date": "2011-02-21", "fuel": "gasoline", "avg_price": 3.3095}, {"date": "2011-02-21", "fuel": "diesel", "avg_price": 3.573}, {"date": "2011-02-28", "fuel": "diesel", "avg_price": 3.716}, {"date": "2011-02-28", "fuel": "gasoline", "avg_price": 3.4985833333}, {"date": "2011-03-07", "fuel": "diesel", "avg_price": 3.871}, {"date": "2011-03-07", "fuel": "gasoline", "avg_price": 3.6375833333}, {"date": "2011-03-14", "fuel": "diesel", "avg_price": 3.908}, {"date": "2011-03-14", "fuel": "gasoline", "avg_price": 3.6886666667}, {"date": "2011-03-21", "fuel": "diesel", "avg_price": 3.907}, {"date": "2011-03-21", "fuel": "gasoline", "avg_price": 3.6863333333}, {"date": "2011-03-28", "fuel": "diesel", "avg_price": 3.932}, {"date": "2011-03-28", "fuel": "gasoline", "avg_price": 3.7195}, {"date": "2011-04-04", "fuel": "diesel", "avg_price": 3.976}, {"date": "2011-04-04", "fuel": "gasoline", "avg_price": 3.8025}, {"date": "2011-04-11", "fuel": "gasoline", "avg_price": 3.909}, {"date": "2011-04-11", "fuel": "diesel", "avg_price": 4.078}, {"date": "2011-04-18", "fuel": "diesel", "avg_price": 4.105}, {"date": "2011-04-18", "fuel": "gasoline", "avg_price": 3.9649166667}, {"date": "2011-04-25", "fuel": "diesel", "avg_price": 4.098}, {"date": "2011-04-25", "fuel": "gasoline", "avg_price": 4.002}, {"date": "2011-05-02", "fuel": "diesel", "avg_price": 4.124}, {"date": "2011-05-02", "fuel": "gasoline", "avg_price": 4.0819166667}, {"date": "2011-05-09", "fuel": "diesel", "avg_price": 4.104}, {"date": "2011-05-09", "fuel": "gasoline", "avg_price": 4.08775}, {"date": "2011-05-16", "fuel": "diesel", "avg_price": 4.061}, {"date": "2011-05-16", "fuel": "gasoline", "avg_price": 4.0836666667}, {"date": "2011-05-23", "fuel": "gasoline", "avg_price": 3.9784166667}, {"date": "2011-05-23", "fuel": "diesel", "avg_price": 3.997}, {"date": "2011-05-30", "fuel": "gasoline", "avg_price": 3.91875}, {"date": "2011-05-30", "fuel": "diesel", "avg_price": 3.948}, {"date": "2011-06-06", "fuel": "diesel", "avg_price": 3.94}, {"date": "2011-06-06", "fuel": "gasoline", "avg_price": 3.8975}, {"date": "2011-06-13", "fuel": "diesel", "avg_price": 3.954}, {"date": "2011-06-13", "fuel": "gasoline", "avg_price": 3.8353333333}, {"date": "2011-06-20", "fuel": "diesel", "avg_price": 3.95}, {"date": "2011-06-20", "fuel": "gasoline", "avg_price": 3.7805833333}, {"date": "2011-06-27", "fuel": "diesel", "avg_price": 3.888}, {"date": "2011-06-27", "fuel": "gasoline", "avg_price": 3.7065833333}, {"date": "2011-07-04", "fuel": "diesel", "avg_price": 3.85}, {"date": "2011-07-04", "fuel": "gasoline", "avg_price": 3.7025}, {"date": "2011-07-11", "fuel": "gasoline", "avg_price": 3.7580833333}, {"date": "2011-07-11", "fuel": "diesel", "avg_price": 3.899}, {"date": "2011-07-18", "fuel": "gasoline", "avg_price": 3.7989166667}, {"date": "2011-07-18", "fuel": "diesel", "avg_price": 3.923}, {"date": "2011-07-25", "fuel": "diesel", "avg_price": 3.949}, {"date": "2011-07-25", "fuel": "gasoline", "avg_price": 3.8170833333}, {"date": "2011-08-01", "fuel": "diesel", "avg_price": 3.937}, {"date": "2011-08-01", "fuel": "gasoline", "avg_price": 3.8271666667}, {"date": "2011-08-08", "fuel": "diesel", "avg_price": 3.897}, {"date": "2011-08-08", "fuel": "gasoline", "avg_price": 3.79175}, {"date": "2011-08-15", "fuel": "diesel", "avg_price": 3.835}, {"date": "2011-08-15", "fuel": "gasoline", "avg_price": 3.7258333333}, {"date": "2011-08-22", "fuel": "diesel", "avg_price": 3.81}, {"date": "2011-08-22", "fuel": "gasoline", "avg_price": 3.70175}, {"date": "2011-08-29", "fuel": "diesel", "avg_price": 3.82}, {"date": "2011-08-29", "fuel": "gasoline", "avg_price": 3.7428333333}, {"date": "2011-09-05", "fuel": "gasoline", "avg_price": 3.7889166667}, {"date": "2011-09-05", "fuel": "diesel", "avg_price": 3.868}, {"date": "2011-09-12", "fuel": "diesel", "avg_price": 3.862}, {"date": "2011-09-12", "fuel": "gasoline", "avg_price": 3.7779166667}, {"date": "2011-09-19", "fuel": "diesel", "avg_price": 3.833}, {"date": "2011-09-19", "fuel": "gasoline", "avg_price": 3.7255}, {"date": "2011-09-26", "fuel": "diesel", "avg_price": 3.786}, {"date": "2011-09-26", "fuel": "gasoline", "avg_price": 3.6406666667}, {"date": "2011-10-03", "fuel": "diesel", "avg_price": 3.749}, {"date": "2011-10-03", "fuel": "gasoline", "avg_price": 3.5676666667}, {"date": "2011-10-10", "fuel": "diesel", "avg_price": 3.721}, {"date": "2011-10-10", "fuel": "gasoline", "avg_price": 3.5489166667}, {"date": "2011-10-17", "fuel": "gasoline", "avg_price": 3.6025}, {"date": "2011-10-17", "fuel": "diesel", "avg_price": 3.801}, {"date": "2011-10-24", "fuel": "gasoline", "avg_price": 3.5915}, {"date": "2011-10-24", "fuel": "diesel", "avg_price": 3.825}, {"date": "2011-10-31", "fuel": "diesel", "avg_price": 3.892}, {"date": "2011-10-31", "fuel": "gasoline", "avg_price": 3.5828333333}, {"date": "2011-11-07", "fuel": "diesel", "avg_price": 3.887}, {"date": "2011-11-07", "fuel": "gasoline", "avg_price": 3.5561666667}, {"date": "2011-11-14", "fuel": "diesel", "avg_price": 3.987}, {"date": "2011-11-14", "fuel": "gasoline", "avg_price": 3.56775}, {"date": "2011-11-21", "fuel": "diesel", "avg_price": 4.01}, {"date": "2011-11-21", "fuel": "gasoline", "avg_price": 3.5034166667}, {"date": "2011-11-28", "fuel": "diesel", "avg_price": 3.964}, {"date": "2011-11-28", "fuel": "gasoline", "avg_price": 3.447}, {"date": "2011-12-05", "fuel": "diesel", "avg_price": 3.931}, {"date": "2011-12-05", "fuel": "gasoline", "avg_price": 3.4248333333}, {"date": "2011-12-12", "fuel": "gasoline", "avg_price": 3.4170833333}, {"date": "2011-12-12", "fuel": "diesel", "avg_price": 3.894}, {"date": "2011-12-19", "fuel": "diesel", "avg_price": 3.828}, {"date": "2011-12-19", "fuel": "gasoline", "avg_price": 3.3644166667}, {"date": "2011-12-26", "fuel": "diesel", "avg_price": 3.791}, {"date": "2011-12-26", "fuel": "gasoline", "avg_price": 3.3875}, {"date": "2012-01-02", "fuel": "diesel", "avg_price": 3.783}, {"date": "2012-01-02", "fuel": "gasoline", "avg_price": 3.429}, {"date": "2012-01-09", "fuel": "diesel", "avg_price": 3.828}, {"date": "2012-01-09", "fuel": "gasoline", "avg_price": 3.513}, {"date": "2012-01-16", "fuel": "diesel", "avg_price": 3.854}, {"date": "2012-01-16", "fuel": "gasoline", "avg_price": 3.52275}, {"date": "2012-01-23", "fuel": "gasoline", "avg_price": 3.5246666667}, {"date": "2012-01-23", "fuel": "diesel", "avg_price": 3.848}, {"date": "2012-01-30", "fuel": "diesel", "avg_price": 3.85}, {"date": "2012-01-30", "fuel": "gasoline", "avg_price": 3.5743333333}, {"date": "2012-02-06", "fuel": "diesel", "avg_price": 3.856}, {"date": "2012-02-06", "fuel": "gasoline", "avg_price": 3.61375}, {"date": "2012-02-13", "fuel": "diesel", "avg_price": 3.943}, {"date": "2012-02-13", "fuel": "gasoline", "avg_price": 3.6596666667}, {"date": "2012-02-20", "fuel": "diesel", "avg_price": 3.96}, {"date": "2012-02-20", "fuel": "gasoline", "avg_price": 3.732}, {"date": "2012-02-27", "fuel": "diesel", "avg_price": 4.051}, {"date": "2012-02-27", "fuel": "gasoline", "avg_price": 3.8614166667}, {"date": "2012-03-05", "fuel": "diesel", "avg_price": 4.094}, {"date": "2012-03-05", "fuel": "gasoline", "avg_price": 3.9273333333}, {"date": "2012-03-12", "fuel": "gasoline", "avg_price": 3.964}, {"date": "2012-03-12", "fuel": "diesel", "avg_price": 4.123}, {"date": "2012-03-19", "fuel": "diesel", "avg_price": 4.142}, {"date": "2012-03-19", "fuel": "gasoline", "avg_price": 4.0018333333}, {"date": "2012-03-26", "fuel": "diesel", "avg_price": 4.147}, {"date": "2012-03-26", "fuel": "gasoline", "avg_price": 4.0504166667}, {"date": "2012-04-02", "fuel": "diesel", "avg_price": 4.142}, {"date": "2012-04-02", "fuel": "gasoline", "avg_price": 4.0706666667}, {"date": "2012-04-09", "fuel": "diesel", "avg_price": 4.148}, {"date": "2012-04-09", "fuel": "gasoline", "avg_price": 4.07175}, {"date": "2012-04-16", "fuel": "diesel", "avg_price": 4.127}, {"date": "2012-04-16", "fuel": "gasoline", "avg_price": 4.0521666667}, {"date": "2012-04-23", "fuel": "gasoline", "avg_price": 4.0058333333}, {"date": "2012-04-23", "fuel": "diesel", "avg_price": 4.085}, {"date": "2012-04-30", "fuel": "diesel", "avg_price": 4.073}, {"date": "2012-04-30", "fuel": "gasoline", "avg_price": 3.9668333333}, {"date": "2012-05-07", "fuel": "diesel", "avg_price": 4.057}, {"date": "2012-05-07", "fuel": "gasoline", "avg_price": 3.92975}, {"date": "2012-05-14", "fuel": "diesel", "avg_price": 4.004}, {"date": "2012-05-14", "fuel": "gasoline", "avg_price": 3.905}, {"date": "2012-05-21", "fuel": "diesel", "avg_price": 3.956}, {"date": "2012-05-21", "fuel": "gasoline", "avg_price": 3.8615}, {"date": "2012-05-28", "fuel": "diesel", "avg_price": 3.897}, {"date": "2012-05-28", "fuel": "gasoline", "avg_price": 3.8170833333}, {"date": "2012-06-04", "fuel": "gasoline", "avg_price": 3.7609166667}, {"date": "2012-06-04", "fuel": "diesel", "avg_price": 3.846}, {"date": "2012-06-11", "fuel": "diesel", "avg_price": 3.781}, {"date": "2012-06-11", "fuel": "gasoline", "avg_price": 3.7135833333}, {"date": "2012-06-18", "fuel": "diesel", "avg_price": 3.729}, {"date": "2012-06-18", "fuel": "gasoline", "avg_price": 3.6640833333}, {"date": "2012-06-25", "fuel": "diesel", "avg_price": 3.678}, {"date": "2012-06-25", "fuel": "gasoline", "avg_price": 3.5713333333}, {"date": "2012-07-02", "fuel": "diesel", "avg_price": 3.648}, {"date": "2012-07-02", "fuel": "gasoline", "avg_price": 3.4944166667}, {"date": "2012-07-09", "fuel": "diesel", "avg_price": 3.683}, {"date": "2012-07-09", "fuel": "gasoline", "avg_price": 3.5433333333}, {"date": "2012-07-16", "fuel": "diesel", "avg_price": 3.695}, {"date": "2012-07-16", "fuel": "gasoline", "avg_price": 3.5616666667}, {"date": "2012-07-23", "fuel": "gasoline", "avg_price": 3.6311666667}, {"date": "2012-07-23", "fuel": "diesel", "avg_price": 3.783}, {"date": "2012-07-30", "fuel": "diesel", "avg_price": 3.796}, {"date": "2012-07-30", "fuel": "gasoline", "avg_price": 3.6438333333}, {"date": "2012-08-06", "fuel": "diesel", "avg_price": 3.85}, {"date": "2012-08-06", "fuel": "gasoline", "avg_price": 3.76925}, {"date": "2012-08-13", "fuel": "diesel", "avg_price": 3.965}, {"date": "2012-08-13", "fuel": "gasoline", "avg_price": 3.8539166667}, {"date": "2012-08-20", "fuel": "diesel", "avg_price": 4.026}, {"date": "2012-08-20", "fuel": "gasoline", "avg_price": 3.8799166667}, {"date": "2012-08-27", "fuel": "diesel", "avg_price": 4.089}, {"date": "2012-08-27", "fuel": "gasoline", "avg_price": 3.9118333333}, {"date": "2012-09-03", "fuel": "gasoline", "avg_price": 3.974}, {"date": "2012-09-03", "fuel": "diesel", "avg_price": 4.127}, {"date": "2012-09-10", "fuel": "diesel", "avg_price": 4.132}, {"date": "2012-09-10", "fuel": "gasoline", "avg_price": 3.9806666667}, {"date": "2012-09-17", "fuel": "diesel", "avg_price": 4.135}, {"date": "2012-09-17", "fuel": "gasoline", "avg_price": 4.012}, {"date": "2012-09-24", "fuel": "diesel", "avg_price": 4.086}, {"date": "2012-09-24", "fuel": "gasoline", "avg_price": 3.9665833333}, {"date": "2012-10-01", "fuel": "diesel", "avg_price": 4.079}, {"date": "2012-10-01", "fuel": "gasoline", "avg_price": 3.94525}, {"date": "2012-10-08", "fuel": "diesel", "avg_price": 4.094}, {"date": "2012-10-08", "fuel": "gasoline", "avg_price": 4.0136666667}, {"date": "2012-10-15", "fuel": "gasoline", "avg_price": 3.98625}, {"date": "2012-10-15", "fuel": "diesel", "avg_price": 4.15}, {"date": "2012-10-22", "fuel": "gasoline", "avg_price": 3.8585}, {"date": "2012-10-22", "fuel": "diesel", "avg_price": 4.116}, {"date": "2012-10-29", "fuel": "diesel", "avg_price": 4.03}, {"date": "2012-10-29", "fuel": "gasoline", "avg_price": 3.7351666667}, {"date": "2012-11-05", "fuel": "diesel", "avg_price": 4.01}, {"date": "2012-11-05", "fuel": "gasoline", "avg_price": 3.6595833333}, {"date": "2012-11-12", "fuel": "diesel", "avg_price": 3.98}, {"date": "2012-11-12", "fuel": "gasoline", "avg_price": 3.6109166667}, {"date": "2012-11-19", "fuel": "diesel", "avg_price": 3.976}, {"date": "2012-11-19", "fuel": "gasoline", "avg_price": 3.5866666667}, {"date": "2012-11-26", "fuel": "diesel", "avg_price": 4.034}, {"date": "2012-11-26", "fuel": "gasoline", "avg_price": 3.5889166667}, {"date": "2012-12-03", "fuel": "gasoline", "avg_price": 3.5489166667}, {"date": "2012-12-03", "fuel": "diesel", "avg_price": 4.027}, {"date": "2012-12-10", "fuel": "diesel", "avg_price": 3.991}, {"date": "2012-12-10", "fuel": "gasoline", "avg_price": 3.5030833333}, {"date": "2012-12-17", "fuel": "diesel", "avg_price": 3.945}, {"date": "2012-12-17", "fuel": "gasoline", "avg_price": 3.4101666667}, {"date": "2012-12-24", "fuel": "diesel", "avg_price": 3.923}, {"date": "2012-12-24", "fuel": "gasoline", "avg_price": 3.4134166667}, {"date": "2012-12-31", "fuel": "diesel", "avg_price": 3.918}, {"date": "2012-12-31", "fuel": "gasoline", "avg_price": 3.4539166667}, {"date": "2013-01-07", "fuel": "diesel", "avg_price": 3.911}, {"date": "2013-01-07", "fuel": "gasoline", "avg_price": 3.4639166667}, {"date": "2013-01-14", "fuel": "diesel", "avg_price": 3.894}, {"date": "2013-01-14", "fuel": "gasoline", "avg_price": 3.469}, {"date": "2013-01-21", "fuel": "diesel", "avg_price": 3.902}, {"date": "2013-01-21", "fuel": "gasoline", "avg_price": 3.4744166667}, {"date": "2013-01-28", "fuel": "diesel", "avg_price": 3.927}, {"date": "2013-01-28", "fuel": "gasoline", "avg_price": 3.5135}, {"date": "2013-02-04", "fuel": "gasoline", "avg_price": 3.6901666667}, {"date": "2013-02-04", "fuel": "diesel", "avg_price": 4.022}, {"date": "2013-02-11", "fuel": "diesel", "avg_price": 4.104}, {"date": "2013-02-11", "fuel": "gasoline", "avg_price": 3.7646666667}, {"date": "2013-02-18", "fuel": "diesel", "avg_price": 4.157}, {"date": "2013-02-18", "fuel": "gasoline", "avg_price": 3.8923333333}, {"date": "2013-02-25", "fuel": "diesel", "avg_price": 4.159}, {"date": "2013-02-25", "fuel": "gasoline", "avg_price": 3.9339166667}, {"date": "2013-03-04", "fuel": "diesel", "avg_price": 4.13}, {"date": "2013-03-04", "fuel": "gasoline", "avg_price": 3.91}, {"date": "2013-03-11", "fuel": "diesel", "avg_price": 4.088}, {"date": "2013-03-11", "fuel": "gasoline", "avg_price": 3.86525}, {"date": "2013-03-18", "fuel": "gasoline", "avg_price": 3.8494166667}, {"date": "2013-03-18", "fuel": "diesel", "avg_price": 4.047}, {"date": "2013-03-25", "fuel": "diesel", "avg_price": 4.006}, {"date": "2013-03-25", "fuel": "gasoline", "avg_price": 3.8305833333}, {"date": "2013-04-01", "fuel": "diesel", "avg_price": 3.993}, {"date": "2013-04-01", "fuel": "gasoline", "avg_price": 3.8023333333}, {"date": "2013-04-08", "fuel": "diesel", "avg_price": 3.977}, {"date": "2013-04-08", "fuel": "gasoline", "avg_price": 3.7638333333}, {"date": "2013-04-15", "fuel": "diesel", "avg_price": 3.942}, {"date": "2013-04-15", "fuel": "gasoline", "avg_price": 3.7015}, {"date": "2013-04-22", "fuel": "diesel", "avg_price": 3.887}, {"date": "2013-04-22", "fuel": "gasoline", "avg_price": 3.688}, {"date": "2013-04-29", "fuel": "diesel", "avg_price": 3.851}, {"date": "2013-04-29", "fuel": "gasoline", "avg_price": 3.6716666667}, {"date": "2013-05-06", "fuel": "gasoline", "avg_price": 3.6834166667}, {"date": "2013-05-06", "fuel": "diesel", "avg_price": 3.845}, {"date": "2013-05-13", "fuel": "diesel", "avg_price": 3.866}, {"date": "2013-05-13", "fuel": "gasoline", "avg_price": 3.74425}, {"date": "2013-05-20", "fuel": "diesel", "avg_price": 3.89}, {"date": "2013-05-20", "fuel": "gasoline", "avg_price": 3.7975}, {"date": "2013-05-27", "fuel": "diesel", "avg_price": 3.88}, {"date": "2013-05-27", "fuel": "gasoline", "avg_price": 3.7765833333}, {"date": "2013-06-03", "fuel": "diesel", "avg_price": 3.869}, {"date": "2013-06-03", "fuel": "gasoline", "avg_price": 3.7738333333}, {"date": "2013-06-10", "fuel": "diesel", "avg_price": 3.849}, {"date": "2013-06-10", "fuel": "gasoline", "avg_price": 3.78475}, {"date": "2013-06-17", "fuel": "gasoline", "avg_price": 3.7660833333}, {"date": "2013-06-17", "fuel": "diesel", "avg_price": 3.841}, {"date": "2013-06-24", "fuel": "gasoline", "avg_price": 3.7355}, {"date": "2013-06-24", "fuel": "diesel", "avg_price": 3.838}, {"date": "2013-07-01", "fuel": "diesel", "avg_price": 3.817}, {"date": "2013-07-01", "fuel": "gasoline", "avg_price": 3.6634166667}, {"date": "2013-07-08", "fuel": "diesel", "avg_price": 3.828}, {"date": "2013-07-08", "fuel": "gasoline", "avg_price": 3.65675}, {"date": "2013-07-15", "fuel": "diesel", "avg_price": 3.867}, {"date": "2013-07-15", "fuel": "gasoline", "avg_price": 3.7924166667}, {"date": "2013-07-22", "fuel": "diesel", "avg_price": 3.903}, {"date": "2013-07-22", "fuel": "gasoline", "avg_price": 3.8378333333}, {"date": "2013-07-29", "fuel": "diesel", "avg_price": 3.915}, {"date": "2013-07-29", "fuel": "gasoline", "avg_price": 3.80725}, {"date": "2013-08-05", "fuel": "gasoline", "avg_price": 3.78775}, {"date": "2013-08-05", "fuel": "diesel", "avg_price": 3.909}, {"date": "2013-08-12", "fuel": "gasoline", "avg_price": 3.7235833333}, {"date": "2013-08-12", "fuel": "diesel", "avg_price": 3.896}, {"date": "2013-08-19", "fuel": "diesel", "avg_price": 3.9}, {"date": "2013-08-19", "fuel": "gasoline", "avg_price": 3.7071666667}, {"date": "2013-08-26", "fuel": "diesel", "avg_price": 3.913}, {"date": "2013-08-26", "fuel": "gasoline", "avg_price": 3.70625}, {"date": "2013-09-02", "fuel": "diesel", "avg_price": 3.981}, {"date": "2013-09-02", "fuel": "gasoline", "avg_price": 3.754}, {"date": "2013-09-09", "fuel": "diesel", "avg_price": 3.981}, {"date": "2013-09-09", "fuel": "gasoline", "avg_price": 3.7398333333}, {"date": "2013-09-16", "fuel": "diesel", "avg_price": 3.974}, {"date": "2013-09-16", "fuel": "gasoline", "avg_price": 3.7113333333}, {"date": "2013-09-23", "fuel": "diesel", "avg_price": 3.949}, {"date": "2013-09-23", "fuel": "gasoline", "avg_price": 3.6588333333}, {"date": "2013-09-30", "fuel": "gasoline", "avg_price": 3.59425}, {"date": "2013-09-30", "fuel": "diesel", "avg_price": 3.919}, {"date": "2013-10-07", "fuel": "diesel", "avg_price": 3.897}, {"date": "2013-10-07", "fuel": "gasoline", "avg_price": 3.53525}, {"date": "2013-10-14", "fuel": "diesel", "avg_price": 3.886}, {"date": "2013-10-14", "fuel": "gasoline", "avg_price": 3.52225}, {"date": "2013-10-21", "fuel": "diesel", "avg_price": 3.886}, {"date": "2013-10-21", "fuel": "gasoline", "avg_price": 3.5230833333}, {"date": "2013-10-28", "fuel": "diesel", "avg_price": 3.87}, {"date": "2013-10-28", "fuel": "gasoline", "avg_price": 3.4666666667}, {"date": "2013-11-04", "fuel": "diesel", "avg_price": 3.857}, {"date": "2013-11-04", "fuel": "gasoline", "avg_price": 3.43525}, {"date": "2013-11-11", "fuel": "gasoline", "avg_price": 3.3709166667}, {"date": "2013-11-11", "fuel": "diesel", "avg_price": 3.832}, {"date": "2013-11-18", "fuel": "gasoline", "avg_price": 3.3919166667}, {"date": "2013-11-18", "fuel": "diesel", "avg_price": 3.822}, {"date": "2013-11-25", "fuel": "diesel", "avg_price": 3.844}, {"date": "2013-11-25", "fuel": "gasoline", "avg_price": 3.4623333333}, {"date": "2013-12-02", "fuel": "diesel", "avg_price": 3.883}, {"date": "2013-12-02", "fuel": "gasoline", "avg_price": 3.4495}, {"date": "2013-12-09", "fuel": "diesel", "avg_price": 3.879}, {"date": "2013-12-09", "fuel": "gasoline", "avg_price": 3.44625}, {"date": "2013-12-16", "fuel": "diesel", "avg_price": 3.871}, {"date": "2013-12-16", "fuel": "gasoline", "avg_price": 3.4215}, {"date": "2013-12-23", "fuel": "diesel", "avg_price": 3.873}, {"date": "2013-12-23", "fuel": "gasoline", "avg_price": 3.45025}, {"date": "2013-12-30", "fuel": "diesel", "avg_price": 3.903}, {"date": "2013-12-30", "fuel": "gasoline", "avg_price": 3.5034166667}, {"date": "2014-01-06", "fuel": "gasoline", "avg_price": 3.5093333333}, {"date": "2014-01-06", "fuel": "diesel", "avg_price": 3.91}, {"date": "2014-01-13", "fuel": "diesel", "avg_price": 3.886}, {"date": "2014-01-13", "fuel": "gasoline", "avg_price": 3.4998333333}, {"date": "2014-01-20", "fuel": "diesel", "avg_price": 3.873}, {"date": "2014-01-20", "fuel": "gasoline", "avg_price": 3.4701666667}, {"date": "2014-01-27", "fuel": "diesel", "avg_price": 3.904}, {"date": "2014-01-27", "fuel": "gasoline", "avg_price": 3.4669166667}, {"date": "2014-02-03", "fuel": "diesel", "avg_price": 3.951}, {"date": "2014-02-03", "fuel": "gasoline", "avg_price": 3.46375}, {"date": "2014-02-10", "fuel": "diesel", "avg_price": 3.977}, {"date": "2014-02-10", "fuel": "gasoline", "avg_price": 3.479}, {"date": "2014-02-17", "fuel": "gasoline", "avg_price": 3.5475}, {"date": "2014-02-17", "fuel": "diesel", "avg_price": 3.989}, {"date": "2014-02-24", "fuel": "diesel", "avg_price": 4.017}, {"date": "2014-02-24", "fuel": "gasoline", "avg_price": 3.60675}, {"date": "2014-03-03", "fuel": "diesel", "avg_price": 4.016}, {"date": "2014-03-03", "fuel": "gasoline", "avg_price": 3.64175}, {"date": "2014-03-10", "fuel": "diesel", "avg_price": 4.021}, {"date": "2014-03-10", "fuel": "gasoline", "avg_price": 3.6708333333}, {"date": "2014-03-17", "fuel": "diesel", "avg_price": 4.003}, {"date": "2014-03-17", "fuel": "gasoline", "avg_price": 3.706}, {"date": "2014-03-24", "fuel": "diesel", "avg_price": 3.988}, {"date": "2014-03-24", "fuel": "gasoline", "avg_price": 3.7111666667}, {"date": "2014-03-31", "fuel": "gasoline", "avg_price": 3.7381666667}, {"date": "2014-03-31", "fuel": "diesel", "avg_price": 3.975}, {"date": "2014-04-07", "fuel": "diesel", "avg_price": 3.959}, {"date": "2014-04-07", "fuel": "gasoline", "avg_price": 3.7605}, {"date": "2014-04-14", "fuel": "diesel", "avg_price": 3.952}, {"date": "2014-04-14", "fuel": "gasoline", "avg_price": 3.816}, {"date": "2014-04-21", "fuel": "diesel", "avg_price": 3.971}, {"date": "2014-04-21", "fuel": "gasoline", "avg_price": 3.85025}, {"date": "2014-04-28", "fuel": "diesel", "avg_price": 3.975}, {"date": "2014-04-28", "fuel": "gasoline", "avg_price": 3.8839166667}, {"date": "2014-05-05", "fuel": "diesel", "avg_price": 3.964}, {"date": "2014-05-05", "fuel": "gasoline", "avg_price": 3.85875}, {"date": "2014-05-12", "fuel": "diesel", "avg_price": 3.948}, {"date": "2014-05-12", "fuel": "gasoline", "avg_price": 3.8420833333}, {"date": "2014-05-19", "fuel": "gasoline", "avg_price": 3.8385833333}, {"date": "2014-05-19", "fuel": "diesel", "avg_price": 3.934}, {"date": "2014-05-26", "fuel": "diesel", "avg_price": 3.925}, {"date": "2014-05-26", "fuel": "gasoline", "avg_price": 3.84325}, {"date": "2014-06-02", "fuel": "diesel", "avg_price": 3.918}, {"date": "2014-06-02", "fuel": "gasoline", "avg_price": 3.8565833333}, {"date": "2014-06-09", "fuel": "diesel", "avg_price": 3.892}, {"date": "2014-06-09", "fuel": "gasoline", "avg_price": 3.8398333333}, {"date": "2014-06-16", "fuel": "diesel", "avg_price": 3.882}, {"date": "2014-06-16", "fuel": "gasoline", "avg_price": 3.85}, {"date": "2014-06-23", "fuel": "diesel", "avg_price": 3.919}, {"date": "2014-06-23", "fuel": "gasoline", "avg_price": 3.8686666667}, {"date": "2014-06-30", "fuel": "gasoline", "avg_price": 3.8699166667}, {"date": "2014-06-30", "fuel": "diesel", "avg_price": 3.92}, {"date": "2014-07-07", "fuel": "gasoline", "avg_price": 3.8475}, {"date": "2014-07-07", "fuel": "diesel", "avg_price": 3.913}, {"date": "2014-07-14", "fuel": "diesel", "avg_price": 3.894}, {"date": "2014-07-14", "fuel": "gasoline", "avg_price": 3.80875}, {"date": "2014-07-21", "fuel": "diesel", "avg_price": 3.869}, {"date": "2014-07-21", "fuel": "gasoline", "avg_price": 3.7668333333}, {"date": "2014-07-28", "fuel": "diesel", "avg_price": 3.858}, {"date": "2014-07-28", "fuel": "gasoline", "avg_price": 3.7155833333}, {"date": "2014-08-04", "fuel": "diesel", "avg_price": 3.853}, {"date": "2014-08-04", "fuel": "gasoline", "avg_price": 3.6915}, {"date": "2014-08-11", "fuel": "diesel", "avg_price": 3.843}, {"date": "2014-08-11", "fuel": "gasoline", "avg_price": 3.6748333333}, {"date": "2014-08-18", "fuel": "diesel", "avg_price": 3.835}, {"date": "2014-08-18", "fuel": "gasoline", "avg_price": 3.64375}, {"date": "2014-08-25", "fuel": "gasoline", "avg_price": 3.6246666667}, {"date": "2014-08-25", "fuel": "diesel", "avg_price": 3.821}, {"date": "2014-09-01", "fuel": "diesel", "avg_price": 3.814}, {"date": "2014-09-01", "fuel": "gasoline", "avg_price": 3.6250833333}, {"date": "2014-09-08", "fuel": "diesel", "avg_price": 3.814}, {"date": "2014-09-08", "fuel": "gasoline", "avg_price": 3.6225}, {"date": "2014-09-15", "fuel": "diesel", "avg_price": 3.801}, {"date": "2014-09-15", "fuel": "gasoline", "avg_price": 3.5761666667}, {"date": "2014-09-22", "fuel": "diesel", "avg_price": 3.778}, {"date": "2014-09-22", "fuel": "gasoline", "avg_price": 3.5251666667}, {"date": "2014-09-29", "fuel": "diesel", "avg_price": 3.755}, {"date": "2014-09-29", "fuel": "gasoline", "avg_price": 3.5249166667}, {"date": "2014-10-06", "fuel": "gasoline", "avg_price": 3.4766666667}, {"date": "2014-10-06", "fuel": "diesel", "avg_price": 3.733}, {"date": "2014-10-13", "fuel": "diesel", "avg_price": 3.698}, {"date": "2014-10-13", "fuel": "gasoline", "avg_price": 3.3915}, {"date": "2014-10-20", "fuel": "diesel", "avg_price": 3.656}, {"date": "2014-10-20", "fuel": "gasoline", "avg_price": 3.3021666667}, {"date": "2014-10-27", "fuel": "diesel", "avg_price": 3.635}, {"date": "2014-10-27", "fuel": "gasoline", "avg_price": 3.2323333333}, {"date": "2014-11-03", "fuel": "diesel", "avg_price": 3.623}, {"date": "2014-11-03", "fuel": "gasoline", "avg_price": 3.17}, {"date": "2014-11-10", "fuel": "diesel", "avg_price": 3.677}, {"date": "2014-11-10", "fuel": "gasoline", "avg_price": 3.116}, {"date": "2014-11-17", "fuel": "gasoline", "avg_price": 3.0705833333}, {"date": "2014-11-17", "fuel": "diesel", "avg_price": 3.661}, {"date": "2014-11-24", "fuel": "gasoline", "avg_price": 3.0020833333}, {"date": "2014-11-24", "fuel": "diesel", "avg_price": 3.628}, {"date": "2014-12-01", "fuel": "diesel", "avg_price": 3.605}, {"date": "2014-12-01", "fuel": "gasoline", "avg_price": 2.9605}, {"date": "2014-12-08", "fuel": "diesel", "avg_price": 3.535}, {"date": "2014-12-08", "fuel": "gasoline", "avg_price": 2.8666666667}, {"date": "2014-12-15", "fuel": "diesel", "avg_price": 3.419}, {"date": "2014-12-15", "fuel": "gasoline", "avg_price": 2.74625}, {"date": "2014-12-22", "fuel": "diesel", "avg_price": 3.281}, {"date": "2014-12-22", "fuel": "gasoline", "avg_price": 2.6041666667}, {"date": "2014-12-29", "fuel": "diesel", "avg_price": 3.213}, {"date": "2014-12-29", "fuel": "gasoline", "avg_price": 2.5036666667}, {"date": "2015-01-05", "fuel": "gasoline", "avg_price": 2.42375}, {"date": "2015-01-05", "fuel": "diesel", "avg_price": 3.137}, {"date": "2015-01-12", "fuel": "diesel", "avg_price": 3.053}, {"date": "2015-01-12", "fuel": "gasoline", "avg_price": 2.3450833333}, {"date": "2015-01-19", "fuel": "diesel", "avg_price": 2.933}, {"date": "2015-01-19", "fuel": "gasoline", "avg_price": 2.2650833333}, {"date": "2015-01-26", "fuel": "diesel", "avg_price": 2.866}, {"date": "2015-01-26", "fuel": "gasoline", "avg_price": 2.2385833333}, {"date": "2015-02-02", "fuel": "diesel", "avg_price": 2.831}, {"date": "2015-02-02", "fuel": "gasoline", "avg_price": 2.2544166667}, {"date": "2015-02-09", "fuel": "diesel", "avg_price": 2.835}, {"date": "2015-02-09", "fuel": "gasoline", "avg_price": 2.3746666667}, {"date": "2015-02-16", "fuel": "diesel", "avg_price": 2.865}, {"date": "2015-02-16", "fuel": "gasoline", "avg_price": 2.45975}, {"date": "2015-02-23", "fuel": "gasoline", "avg_price": 2.5195833333}, {"date": "2015-02-23", "fuel": "diesel", "avg_price": 2.9}, {"date": "2015-03-02", "fuel": "gasoline", "avg_price": 2.67225}, {"date": "2015-03-02", "fuel": "diesel", "avg_price": 2.936}, {"date": "2015-03-09", "fuel": "diesel", "avg_price": 2.944}, {"date": "2015-03-09", "fuel": "gasoline", "avg_price": 2.6890833333}, {"date": "2015-03-16", "fuel": "diesel", "avg_price": 2.917}, {"date": "2015-03-16", "fuel": "gasoline", "avg_price": 2.65525}, {"date": "2015-03-23", "fuel": "diesel", "avg_price": 2.864}, {"date": "2015-03-23", "fuel": "gasoline", "avg_price": 2.6515833333}, {"date": "2015-03-30", "fuel": "diesel", "avg_price": 2.824}, {"date": "2015-03-30", "fuel": "gasoline", "avg_price": 2.64325}, {"date": "2015-04-06", "fuel": "diesel", "avg_price": 2.784}, {"date": "2015-04-06", "fuel": "gasoline", "avg_price": 2.6116666667}, {"date": "2015-04-13", "fuel": "diesel", "avg_price": 2.754}, {"date": "2015-04-13", "fuel": "gasoline", "avg_price": 2.6054166667}, {"date": "2015-04-20", "fuel": "gasoline", "avg_price": 2.6794166667}, {"date": "2015-04-20", "fuel": "diesel", "avg_price": 2.78}, {"date": "2015-04-27", "fuel": "diesel", "avg_price": 2.811}, {"date": "2015-04-27", "fuel": "gasoline", "avg_price": 2.776}, {"date": "2015-05-04", "fuel": "diesel", "avg_price": 2.854}, {"date": "2015-05-04", "fuel": "gasoline", "avg_price": 2.8776666667}, {"date": "2015-05-11", "fuel": "diesel", "avg_price": 2.878}, {"date": "2015-05-11", "fuel": "gasoline", "avg_price": 2.9048333333}, {"date": "2015-05-18", "fuel": "diesel", "avg_price": 2.904}, {"date": "2015-05-18", "fuel": "gasoline", "avg_price": 2.95325}, {"date": "2015-05-25", "fuel": "diesel", "avg_price": 2.914}, {"date": "2015-05-25", "fuel": "gasoline", "avg_price": 2.9800833333}, {"date": "2015-06-01", "fuel": "gasoline", "avg_price": 2.9816666667}, {"date": "2015-06-01", "fuel": "diesel", "avg_price": 2.909}, {"date": "2015-06-08", "fuel": "diesel", "avg_price": 2.884}, {"date": "2015-06-08", "fuel": "gasoline", "avg_price": 2.9790833333}, {"date": "2015-06-15", "fuel": "diesel", "avg_price": 2.87}, {"date": "2015-06-15", "fuel": "gasoline", "avg_price": 3.0245833333}, {"date": "2015-06-22", "fuel": "diesel", "avg_price": 2.859}, {"date": "2015-06-22", "fuel": "gasoline", "avg_price": 3.0031666667}, {"date": "2015-06-29", "fuel": "diesel", "avg_price": 2.843}, {"date": "2015-06-29", "fuel": "gasoline", "avg_price": 2.9933333333}, {"date": "2015-07-06", "fuel": "diesel", "avg_price": 2.832}, {"date": "2015-07-06", "fuel": "gasoline", "avg_price": 2.9863333333}, {"date": "2015-07-13", "fuel": "gasoline", "avg_price": 3.0495833333}, {"date": "2015-07-13", "fuel": "diesel", "avg_price": 2.814}, {"date": "2015-07-20", "fuel": "diesel", "avg_price": 2.782}, {"date": "2015-07-20", "fuel": "gasoline", "avg_price": 3.01825}, {"date": "2015-07-27", "fuel": "diesel", "avg_price": 2.723}, {"date": "2015-07-27", "fuel": "gasoline", "avg_price": 2.964}, {"date": "2015-08-03", "fuel": "diesel", "avg_price": 2.668}, {"date": "2015-08-03", "fuel": "gasoline", "avg_price": 2.9108333333}, {"date": "2015-08-10", "fuel": "diesel", "avg_price": 2.617}, {"date": "2015-08-10", "fuel": "gasoline", "avg_price": 2.8488333333}, {"date": "2015-08-17", "fuel": "diesel", "avg_price": 2.615}, {"date": "2015-08-17", "fuel": "gasoline", "avg_price": 2.9221666667}, {"date": "2015-08-24", "fuel": "diesel", "avg_price": 2.561}, {"date": "2015-08-24", "fuel": "gasoline", "avg_price": 2.8459166667}, {"date": "2015-08-31", "fuel": "gasoline", "avg_price": 2.7256666667}, {"date": "2015-08-31", "fuel": "diesel", "avg_price": 2.514}, {"date": "2015-09-07", "fuel": "diesel", "avg_price": 2.534}, {"date": "2015-09-07", "fuel": "gasoline", "avg_price": 2.6556666667}, {"date": "2015-09-14", "fuel": "diesel", "avg_price": 2.517}, {"date": "2015-09-14", "fuel": "gasoline", "avg_price": 2.5951666667}, {"date": "2015-09-21", "fuel": "diesel", "avg_price": 2.493}, {"date": "2015-09-21", "fuel": "gasoline", "avg_price": 2.5485833333}, {"date": "2015-09-28", "fuel": "diesel", "avg_price": 2.476}, {"date": "2015-09-28", "fuel": "gasoline", "avg_price": 2.5356666667}, {"date": "2015-10-05", "fuel": "diesel", "avg_price": 2.492}, {"date": "2015-10-05", "fuel": "gasoline", "avg_price": 2.52875}, {"date": "2015-10-12", "fuel": "gasoline", "avg_price": 2.5398333333}, {"date": "2015-10-12", "fuel": "diesel", "avg_price": 2.556}, {"date": "2015-10-19", "fuel": "diesel", "avg_price": 2.531}, {"date": "2015-10-19", "fuel": "gasoline", "avg_price": 2.4845833333}, {"date": "2015-10-26", "fuel": "diesel", "avg_price": 2.498}, {"date": "2015-10-26", "fuel": "gasoline", "avg_price": 2.4403333333}, {"date": "2015-11-02", "fuel": "diesel", "avg_price": 2.485}, {"date": "2015-11-02", "fuel": "gasoline", "avg_price": 2.43425}, {"date": "2015-11-09", "fuel": "diesel", "avg_price": 2.502}, {"date": "2015-11-09", "fuel": "gasoline", "avg_price": 2.45025}, {"date": "2015-11-16", "fuel": "diesel", "avg_price": 2.482}, {"date": "2015-11-16", "fuel": "gasoline", "avg_price": 2.40075}, {"date": "2015-11-23", "fuel": "gasoline", "avg_price": 2.3225}, {"date": "2015-11-23", "fuel": "diesel", "avg_price": 2.445}, {"date": "2015-11-30", "fuel": "gasoline", "avg_price": 2.2930833333}, {"date": "2015-11-30", "fuel": "diesel", "avg_price": 2.421}, {"date": "2015-12-07", "fuel": "diesel", "avg_price": 2.379}, {"date": "2015-12-07", "fuel": "gasoline", "avg_price": 2.2871666667}, {"date": "2015-12-14", "fuel": "diesel", "avg_price": 2.338}, {"date": "2015-12-14", "fuel": "gasoline", "avg_price": 2.2714166667}, {"date": "2015-12-21", "fuel": "diesel", "avg_price": 2.284}, {"date": "2015-12-21", "fuel": "gasoline", "avg_price": 2.2659166667}, {"date": "2015-12-28", "fuel": "diesel", "avg_price": 2.237}, {"date": "2015-12-28", "fuel": "gasoline", "avg_price": 2.2755}, {"date": "2016-01-04", "fuel": "diesel", "avg_price": 2.211}, {"date": "2016-01-04", "fuel": "gasoline", "avg_price": 2.2711666667}, {"date": "2016-01-11", "fuel": "gasoline", "avg_price": 2.2410833333}, {"date": "2016-01-11", "fuel": "diesel", "avg_price": 2.177}, {"date": "2016-01-18", "fuel": "diesel", "avg_price": 2.112}, {"date": "2016-01-18", "fuel": "gasoline", "avg_price": 2.15825}, {"date": "2016-01-25", "fuel": "diesel", "avg_price": 2.071}, {"date": "2016-01-25", "fuel": "gasoline", "avg_price": 2.1033333333}, {"date": "2016-02-01", "fuel": "diesel", "avg_price": 2.031}, {"date": "2016-02-01", "fuel": "gasoline", "avg_price": 2.0665833333}, {"date": "2016-02-08", "fuel": "diesel", "avg_price": 2.008}, {"date": "2016-02-08", "fuel": "gasoline", "avg_price": 2.0065}, {"date": "2016-02-15", "fuel": "diesel", "avg_price": 1.98}, {"date": "2016-02-15", "fuel": "gasoline", "avg_price": 1.9654166667}, {"date": "2016-02-22", "fuel": "diesel", "avg_price": 1.983}, {"date": "2016-02-22", "fuel": "gasoline", "avg_price": 1.9610833333}, {"date": "2016-02-29", "fuel": "diesel", "avg_price": 1.989}, {"date": "2016-02-29", "fuel": "gasoline", "avg_price": 2.0085}, {"date": "2016-03-07", "fuel": "gasoline", "avg_price": 2.0591666667}, {"date": "2016-03-07", "fuel": "diesel", "avg_price": 2.021}, {"date": "2016-03-14", "fuel": "diesel", "avg_price": 2.099}, {"date": "2016-03-14", "fuel": "gasoline", "avg_price": 2.1816666667}, {"date": "2016-03-21", "fuel": "diesel", "avg_price": 2.119}, {"date": "2016-03-21", "fuel": "gasoline", "avg_price": 2.2295}, {"date": "2016-03-28", "fuel": "diesel", "avg_price": 2.121}, {"date": "2016-03-28", "fuel": "gasoline", "avg_price": 2.29525}, {"date": "2016-04-04", "fuel": "diesel", "avg_price": 2.115}, {"date": "2016-04-04", "fuel": "gasoline", "avg_price": 2.3093333333}, {"date": "2016-04-11", "fuel": "diesel", "avg_price": 2.128}, {"date": "2016-04-11", "fuel": "gasoline", "avg_price": 2.2985833333}, {"date": "2016-04-18", "fuel": "gasoline", "avg_price": 2.3630833333}, {"date": "2016-04-18", "fuel": "diesel", "avg_price": 2.165}, {"date": "2016-04-25", "fuel": "diesel", "avg_price": 2.198}, {"date": "2016-04-25", "fuel": "gasoline", "avg_price": 2.3878333333}, {"date": "2016-05-02", "fuel": "diesel", "avg_price": 2.266}, {"date": "2016-05-02", "fuel": "gasoline", "avg_price": 2.4613333333}, {"date": "2016-05-09", "fuel": "diesel", "avg_price": 2.271}, {"date": "2016-05-09", "fuel": "gasoline", "avg_price": 2.448}, {"date": "2016-05-16", "fuel": "diesel", "avg_price": 2.297}, {"date": "2016-05-16", "fuel": "gasoline", "avg_price": 2.4648333333}, {"date": "2016-05-23", "fuel": "diesel", "avg_price": 2.357}, {"date": "2016-05-23", "fuel": "gasoline", "avg_price": 2.5193333333}, {"date": "2016-05-30", "fuel": "diesel", "avg_price": 2.382}, {"date": "2016-05-30", "fuel": "gasoline", "avg_price": 2.5528333333}, {"date": "2016-06-06", "fuel": "gasoline", "avg_price": 2.5924166667}, {"date": "2016-06-06", "fuel": "diesel", "avg_price": 2.407}, {"date": "2016-06-13", "fuel": "diesel", "avg_price": 2.431}, {"date": "2016-06-13", "fuel": "gasoline", "avg_price": 2.6095}, {"date": "2016-06-20", "fuel": "diesel", "avg_price": 2.426}, {"date": "2016-06-20", "fuel": "gasoline", "avg_price": 2.57025}, {"date": "2016-06-27", "fuel": "diesel", "avg_price": 2.426}, {"date": "2016-06-27", "fuel": "gasoline", "avg_price": 2.554}, {"date": "2016-07-04", "fuel": "diesel", "avg_price": 2.423}, {"date": "2016-07-04", "fuel": "gasoline", "avg_price": 2.5216666667}, {"date": "2016-07-11", "fuel": "diesel", "avg_price": 2.414}, {"date": "2016-07-11", "fuel": "gasoline", "avg_price": 2.48475}, {"date": "2016-07-18", "fuel": "gasoline", "avg_price": 2.46225}, {"date": "2016-07-18", "fuel": "diesel", "avg_price": 2.402}, {"date": "2016-07-25", "fuel": "gasoline", "avg_price": 2.4148333333}, {"date": "2016-07-25", "fuel": "diesel", "avg_price": 2.379}, {"date": "2016-08-01", "fuel": "diesel", "avg_price": 2.348}, {"date": "2016-08-01", "fuel": "gasoline", "avg_price": 2.3898333333}, {"date": "2016-08-08", "fuel": "diesel", "avg_price": 2.316}, {"date": "2016-08-08", "fuel": "gasoline", "avg_price": 2.37575}, {"date": "2016-08-15", "fuel": "diesel", "avg_price": 2.31}, {"date": "2016-08-15", "fuel": "gasoline", "avg_price": 2.3731666667}, {"date": "2016-08-22", "fuel": "diesel", "avg_price": 2.37}, {"date": "2016-08-22", "fuel": "gasoline", "avg_price": 2.41625}, {"date": "2016-08-29", "fuel": "diesel", "avg_price": 2.409}, {"date": "2016-08-29", "fuel": "gasoline", "avg_price": 2.4548333333}, {"date": "2016-09-05", "fuel": "gasoline", "avg_price": 2.4455833333}, {"date": "2016-09-05", "fuel": "diesel", "avg_price": 2.407}, {"date": "2016-09-12", "fuel": "gasoline", "avg_price": 2.43125}, {"date": "2016-09-12", "fuel": "diesel", "avg_price": 2.399}, {"date": "2016-09-19", "fuel": "diesel", "avg_price": 2.389}, {"date": "2016-09-19", "fuel": "gasoline", "avg_price": 2.4525833333}, {"date": "2016-09-26", "fuel": "diesel", "avg_price": 2.382}, {"date": "2016-09-26", "fuel": "gasoline", "avg_price": 2.455}, {"date": "2016-10-03", "fuel": "diesel", "avg_price": 2.389}, {"date": "2016-10-03", "fuel": "gasoline", "avg_price": 2.4759166667}, {"date": "2016-10-10", "fuel": "diesel", "avg_price": 2.445}, {"date": "2016-10-10", "fuel": "gasoline", "avg_price": 2.5001666667}, {"date": "2016-10-17", "fuel": "diesel", "avg_price": 2.481}, {"date": "2016-10-17", "fuel": "gasoline", "avg_price": 2.4879166667}, {"date": "2016-10-24", "fuel": "diesel", "avg_price": 2.478}, {"date": "2016-10-24", "fuel": "gasoline", "avg_price": 2.4775833333}, {"date": "2016-10-31", "fuel": "gasoline", "avg_price": 2.4675833333}, {"date": "2016-10-31", "fuel": "diesel", "avg_price": 2.479}, {"date": "2016-11-07", "fuel": "diesel", "avg_price": 2.47}, {"date": "2016-11-07", "fuel": "gasoline", "avg_price": 2.4754166667}, {"date": "2016-11-14", "fuel": "diesel", "avg_price": 2.443}, {"date": "2016-11-14", "fuel": "gasoline", "avg_price": 2.43125}, {"date": "2016-11-21", "fuel": "diesel", "avg_price": 2.421}, {"date": "2016-11-21", "fuel": "gasoline", "avg_price": 2.401}, {"date": "2016-11-28", "fuel": "diesel", "avg_price": 2.42}, {"date": "2016-11-28", "fuel": "gasoline", "avg_price": 2.3985833333}, {"date": "2016-12-05", "fuel": "diesel", "avg_price": 2.48}, {"date": "2016-12-05", "fuel": "gasoline", "avg_price": 2.449}, {"date": "2016-12-12", "fuel": "gasoline", "avg_price": 2.4711666667}, {"date": "2016-12-12", "fuel": "diesel", "avg_price": 2.493}, {"date": "2016-12-19", "fuel": "diesel", "avg_price": 2.527}, {"date": "2016-12-19", "fuel": "gasoline", "avg_price": 2.49825}, {"date": "2016-12-26", "fuel": "diesel", "avg_price": 2.54}, {"date": "2016-12-26", "fuel": "gasoline", "avg_price": 2.5386666667}, {"date": "2017-01-02", "fuel": "diesel", "avg_price": 2.586}, {"date": "2017-01-02", "fuel": "gasoline", "avg_price": 2.6046666667}, {"date": "2017-01-09", "fuel": "diesel", "avg_price": 2.597}, {"date": "2017-01-09", "fuel": "gasoline", "avg_price": 2.61675}, {"date": "2017-01-16", "fuel": "diesel", "avg_price": 2.585}, {"date": "2017-01-16", "fuel": "gasoline", "avg_price": 2.58775}, {"date": "2017-01-23", "fuel": "gasoline", "avg_price": 2.56}, {"date": "2017-01-23", "fuel": "diesel", "avg_price": 2.569}, {"date": "2017-01-30", "fuel": "diesel", "avg_price": 2.562}, {"date": "2017-01-30", "fuel": "gasoline", "avg_price": 2.5350833333}, {"date": "2017-02-06", "fuel": "diesel", "avg_price": 2.558}, {"date": "2017-02-06", "fuel": "gasoline", "avg_price": 2.5325}, {"date": "2017-02-13", "fuel": "diesel", "avg_price": 2.565}, {"date": "2017-02-13", "fuel": "gasoline", "avg_price": 2.54775}, {"date": "2017-02-20", "fuel": "diesel", "avg_price": 2.572}, {"date": "2017-02-20", "fuel": "gasoline", "avg_price": 2.5439166667}, {"date": "2017-02-27", "fuel": "diesel", "avg_price": 2.577}, {"date": "2017-02-27", "fuel": "gasoline", "avg_price": 2.5585}, {"date": "2017-03-06", "fuel": "diesel", "avg_price": 2.579}, {"date": "2017-03-06", "fuel": "gasoline", "avg_price": 2.5819166667}, {"date": "2017-03-13", "fuel": "diesel", "avg_price": 2.564}, {"date": "2017-03-13", "fuel": "gasoline", "avg_price": 2.5659166667}, {"date": "2017-03-20", "fuel": "gasoline", "avg_price": 2.56525}, {"date": "2017-03-20", "fuel": "diesel", "avg_price": 2.539}, {"date": "2017-03-27", "fuel": "gasoline", "avg_price": 2.5618333333}, {"date": "2017-03-27", "fuel": "diesel", "avg_price": 2.532}, {"date": "2017-04-03", "fuel": "diesel", "avg_price": 2.556}, {"date": "2017-04-03", "fuel": "gasoline", "avg_price": 2.6004166667}, {"date": "2017-04-10", "fuel": "diesel", "avg_price": 2.582}, {"date": "2017-04-10", "fuel": "gasoline", "avg_price": 2.6600833333}, {"date": "2017-04-17", "fuel": "diesel", "avg_price": 2.597}, {"date": "2017-04-17", "fuel": "gasoline", "avg_price": 2.6749166667}, {"date": "2017-04-24", "fuel": "diesel", "avg_price": 2.595}, {"date": "2017-04-24", "fuel": "gasoline", "avg_price": 2.6858333333}, {"date": "2017-05-01", "fuel": "diesel", "avg_price": 2.583}, {"date": "2017-05-01", "fuel": "gasoline", "avg_price": 2.6525833333}, {"date": "2017-05-08", "fuel": "diesel", "avg_price": 2.565}, {"date": "2017-05-08", "fuel": "gasoline", "avg_price": 2.61625}, {"date": "2017-05-15", "fuel": "gasoline", "avg_price": 2.6148333333}, {"date": "2017-05-15", "fuel": "diesel", "avg_price": 2.544}, {"date": "2017-05-22", "fuel": "diesel", "avg_price": 2.539}, {"date": "2017-05-22", "fuel": "gasoline", "avg_price": 2.64425}, {"date": "2017-05-29", "fuel": "diesel", "avg_price": 2.571}, {"date": "2017-05-29", "fuel": "gasoline", "avg_price": 2.6515}, {"date": "2017-06-05", "fuel": "diesel", "avg_price": 2.564}, {"date": "2017-06-05", "fuel": "gasoline", "avg_price": 2.6581666667}, {"date": "2017-06-12", "fuel": "diesel", "avg_price": 2.524}, {"date": "2017-06-12", "fuel": "gasoline", "avg_price": 2.61375}, {"date": "2017-06-19", "fuel": "diesel", "avg_price": 2.489}, {"date": "2017-06-19", "fuel": "gasoline", "avg_price": 2.5715}, {"date": "2017-06-26", "fuel": "gasoline", "avg_price": 2.54175}, {"date": "2017-06-26", "fuel": "diesel", "avg_price": 2.465}, {"date": "2017-07-03", "fuel": "gasoline", "avg_price": 2.5163333333}, {"date": "2017-07-03", "fuel": "diesel", "avg_price": 2.472}, {"date": "2017-07-10", "fuel": "diesel", "avg_price": 2.481}, {"date": "2017-07-10", "fuel": "gasoline", "avg_price": 2.5458333333}, {"date": "2017-07-17", "fuel": "diesel", "avg_price": 2.491}, {"date": "2017-07-17", "fuel": "gasoline", "avg_price": 2.5284166667}, {"date": "2017-07-24", "fuel": "diesel", "avg_price": 2.507}, {"date": "2017-07-24", "fuel": "gasoline", "avg_price": 2.5604166667}, {"date": "2017-07-31", "fuel": "diesel", "avg_price": 2.531}, {"date": "2017-07-31", "fuel": "gasoline", "avg_price": 2.6000833333}, {"date": "2017-08-07", "fuel": "diesel", "avg_price": 2.581}, {"date": "2017-08-07", "fuel": "gasoline", "avg_price": 2.62575}, {"date": "2017-08-14", "fuel": "diesel", "avg_price": 2.598}, {"date": "2017-08-14", "fuel": "gasoline", "avg_price": 2.6303333333}, {"date": "2017-08-21", "fuel": "gasoline", "avg_price": 2.6093333333}, {"date": "2017-08-21", "fuel": "diesel", "avg_price": 2.596}, {"date": "2017-08-28", "fuel": "diesel", "avg_price": 2.605}, {"date": "2017-08-28", "fuel": "gasoline", "avg_price": 2.6433333333}, {"date": "2017-09-04", "fuel": "diesel", "avg_price": 2.758}, {"date": "2017-09-04", "fuel": "gasoline", "avg_price": 2.92375}, {"date": "2017-09-11", "fuel": "diesel", "avg_price": 2.802}, {"date": "2017-09-11", "fuel": "gasoline", "avg_price": 2.9299166667}, {"date": "2017-09-18", "fuel": "diesel", "avg_price": 2.791}, {"date": "2017-09-18", "fuel": "gasoline", "avg_price": 2.8819166667}, {"date": "2017-09-25", "fuel": "diesel", "avg_price": 2.788}, {"date": "2017-09-25", "fuel": "gasoline", "avg_price": 2.8330833333}, {"date": "2017-10-02", "fuel": "gasoline", "avg_price": 2.81325}, {"date": "2017-10-02", "fuel": "diesel", "avg_price": 2.792}, {"date": "2017-10-09", "fuel": "diesel", "avg_price": 2.776}, {"date": "2017-10-09", "fuel": "gasoline", "avg_price": 2.7553333333}, {"date": "2017-10-16", "fuel": "diesel", "avg_price": 2.787}, {"date": "2017-10-16", "fuel": "gasoline", "avg_price": 2.7374166667}, {"date": "2017-10-23", "fuel": "diesel", "avg_price": 2.797}, {"date": "2017-10-23", "fuel": "gasoline", "avg_price": 2.7245}, {"date": "2017-10-30", "fuel": "diesel", "avg_price": 2.819}, {"date": "2017-10-30", "fuel": "gasoline", "avg_price": 2.7345833333}, {"date": "2017-11-06", "fuel": "diesel", "avg_price": 2.882}, {"date": "2017-11-06", "fuel": "gasoline", "avg_price": 2.8086666667}, {"date": "2017-11-13", "fuel": "gasoline", "avg_price": 2.8403333333}, {"date": "2017-11-13", "fuel": "diesel", "avg_price": 2.915}, {"date": "2017-11-20", "fuel": "diesel", "avg_price": 2.912}, {"date": "2017-11-20", "fuel": "gasoline", "avg_price": 2.8186666667}, {"date": "2017-11-27", "fuel": "diesel", "avg_price": 2.926}, {"date": "2017-11-27", "fuel": "gasoline", "avg_price": 2.7854166667}, {"date": "2017-12-04", "fuel": "diesel", "avg_price": 2.922}, {"date": "2017-12-04", "fuel": "gasoline", "avg_price": 2.75475}, {"date": "2017-12-11", "fuel": "diesel", "avg_price": 2.91}, {"date": "2017-12-11", "fuel": "gasoline", "avg_price": 2.7375833333}, {"date": "2017-12-18", "fuel": "diesel", "avg_price": 2.901}, {"date": "2017-12-18", "fuel": "gasoline", "avg_price": 2.707}, {"date": "2017-12-25", "fuel": "diesel", "avg_price": 2.903}, {"date": "2017-12-25", "fuel": "gasoline", "avg_price": 2.72575}, {"date": "2018-01-01", "fuel": "gasoline", "avg_price": 2.7724166667}, {"date": "2018-01-01", "fuel": "diesel", "avg_price": 2.973}, {"date": "2018-01-08", "fuel": "diesel", "avg_price": 2.996}, {"date": "2018-01-08", "fuel": "gasoline", "avg_price": 2.77875}, {"date": "2018-01-15", "fuel": "diesel", "avg_price": 3.028}, {"date": "2018-01-15", "fuel": "gasoline", "avg_price": 2.8083333333}, {"date": "2018-01-22", "fuel": "diesel", "avg_price": 3.025}, {"date": "2018-01-22", "fuel": "gasoline", "avg_price": 2.8210833333}, {"date": "2018-01-29", "fuel": "diesel", "avg_price": 3.07}, {"date": "2018-01-29", "fuel": "gasoline", "avg_price": 2.8610833333}, {"date": "2018-02-05", "fuel": "diesel", "avg_price": 3.086}, {"date": "2018-02-05", "fuel": "gasoline", "avg_price": 2.8919166667}, {"date": "2018-02-12", "fuel": "gasoline", "avg_price": 2.8649166667}, {"date": "2018-02-12", "fuel": "diesel", "avg_price": 3.063}, {"date": "2018-02-19", "fuel": "gasoline", "avg_price": 2.8209166667}, {"date": "2018-02-19", "fuel": "diesel", "avg_price": 3.027}, {"date": "2018-02-26", "fuel": "diesel", "avg_price": 3.007}, {"date": "2018-02-26", "fuel": "gasoline", "avg_price": 2.81125}, {"date": "2018-03-05", "fuel": "diesel", "avg_price": 2.992}, {"date": "2018-03-05", "fuel": "gasoline", "avg_price": 2.8225833333}, {"date": "2018-03-12", "fuel": "diesel", "avg_price": 2.976}, {"date": "2018-03-12", "fuel": "gasoline", "avg_price": 2.8216666667}, {"date": "2018-03-19", "fuel": "diesel", "avg_price": 2.972}, {"date": "2018-03-19", "fuel": "gasoline", "avg_price": 2.8598333333}, {"date": "2018-03-26", "fuel": "diesel", "avg_price": 3.01}, {"date": "2018-03-26", "fuel": "gasoline", "avg_price": 2.9085833333}, {"date": "2018-04-02", "fuel": "diesel", "avg_price": 3.042}, {"date": "2018-04-02", "fuel": "gasoline", "avg_price": 2.96025}, {"date": "2018-04-09", "fuel": "gasoline", "avg_price": 2.9554166667}, {"date": "2018-04-09", "fuel": "diesel", "avg_price": 3.043}, {"date": "2018-04-16", "fuel": "diesel", "avg_price": 3.104}, {"date": "2018-04-16", "fuel": "gasoline", "avg_price": 3.00425}, {"date": "2018-04-23", "fuel": "diesel", "avg_price": 3.133}, {"date": "2018-04-23", "fuel": "gasoline", "avg_price": 3.0555833333}, {"date": "2018-04-30", "fuel": "diesel", "avg_price": 3.157}, {"date": "2018-04-30", "fuel": "gasoline", "avg_price": 3.1013333333}, {"date": "2018-05-07", "fuel": "diesel", "avg_price": 3.171}, {"date": "2018-05-07", "fuel": "gasoline", "avg_price": 3.10325}, {"date": "2018-05-14", "fuel": "diesel", "avg_price": 3.239}, {"date": "2018-05-14", "fuel": "gasoline", "avg_price": 3.1435833333}, {"date": "2018-05-21", "fuel": "gasoline", "avg_price": 3.1908333333}, {"date": "2018-05-21", "fuel": "diesel", "avg_price": 3.277}, {"date": "2018-05-28", "fuel": "diesel", "avg_price": 3.288}, {"date": "2018-05-28", "fuel": "gasoline", "avg_price": 3.2299166667}, {"date": "2018-06-04", "fuel": "diesel", "avg_price": 3.285}, {"date": "2018-06-04", "fuel": "gasoline", "avg_price": 3.2145833333}, {"date": "2018-06-11", "fuel": "diesel", "avg_price": 3.266}, {"date": "2018-06-11", "fuel": "gasoline", "avg_price": 3.1860833333}, {"date": "2018-06-18", "fuel": "diesel", "avg_price": 3.244}, {"date": "2018-06-18", "fuel": "gasoline", "avg_price": 3.1563333333}, {"date": "2018-06-25", "fuel": "diesel", "avg_price": 3.216}, {"date": "2018-06-25", "fuel": "gasoline", "avg_price": 3.1141666667}, {"date": "2018-07-02", "fuel": "diesel", "avg_price": 3.236}, {"date": "2018-07-02", "fuel": "gasoline", "avg_price": 3.1225}, {"date": "2018-07-09", "fuel": "gasoline", "avg_price": 3.1355}, {"date": "2018-07-09", "fuel": "diesel", "avg_price": 3.243}, {"date": "2018-07-16", "fuel": "diesel", "avg_price": 3.239}, {"date": "2018-07-16", "fuel": "gasoline", "avg_price": 3.1366666667}, {"date": "2018-07-23", "fuel": "diesel", "avg_price": 3.22}, {"date": "2018-07-23", "fuel": "gasoline", "avg_price": 3.1070833333}, {"date": "2018-07-30", "fuel": "diesel", "avg_price": 3.226}, {"date": "2018-07-30", "fuel": "gasoline", "avg_price": 3.1183333333}, {"date": "2018-08-06", "fuel": "diesel", "avg_price": 3.223}, {"date": "2018-08-06", "fuel": "gasoline", "avg_price": 3.1210833333}, {"date": "2018-08-13", "fuel": "diesel", "avg_price": 3.217}, {"date": "2018-08-13", "fuel": "gasoline", "avg_price": 3.11275}, {"date": "2018-08-20", "fuel": "gasoline", "avg_price": 3.0929166667}, {"date": "2018-08-20", "fuel": "diesel", "avg_price": 3.207}, {"date": "2018-08-27", "fuel": "gasoline", "avg_price": 3.09825}, {"date": "2018-08-27", "fuel": "diesel", "avg_price": 3.226}, {"date": "2018-09-03", "fuel": "diesel", "avg_price": 3.252}, {"date": "2018-09-03", "fuel": "gasoline", "avg_price": 3.0974166667}, {"date": "2018-09-10", "fuel": "diesel", "avg_price": 3.258}, {"date": "2018-09-10", "fuel": "gasoline", "avg_price": 3.1075833333}, {"date": "2018-09-17", "fuel": "diesel", "avg_price": 3.268}, {"date": "2018-09-17", "fuel": "gasoline", "avg_price": 3.1165}, {"date": "2018-09-24", "fuel": "diesel", "avg_price": 3.271}, {"date": "2018-09-24", "fuel": "gasoline", "avg_price": 3.11675}, {"date": "2018-10-01", "fuel": "diesel", "avg_price": 3.313}, {"date": "2018-10-01", "fuel": "gasoline", "avg_price": 3.14475}, {"date": "2018-10-08", "fuel": "gasoline", "avg_price": 3.1826666667}, {"date": "2018-10-08", "fuel": "diesel", "avg_price": 3.385}, {"date": "2018-10-15", "fuel": "gasoline", "avg_price": 3.1639166667}, {"date": "2018-10-15", "fuel": "diesel", "avg_price": 3.394}, {"date": "2018-10-22", "fuel": "diesel", "avg_price": 3.38}, {"date": "2018-10-22", "fuel": "gasoline", "avg_price": 3.13325}, {"date": "2018-10-29", "fuel": "diesel", "avg_price": 3.355}, {"date": "2018-10-29", "fuel": "gasoline", "avg_price": 3.10525}, {"date": "2018-11-05", "fuel": "diesel", "avg_price": 3.338}, {"date": "2018-11-05", "fuel": "gasoline", "avg_price": 3.0535}, {"date": "2018-11-12", "fuel": "diesel", "avg_price": 3.317}, {"date": "2018-11-12", "fuel": "gasoline", "avg_price": 2.9895833333}, {"date": "2018-11-19", "fuel": "diesel", "avg_price": 3.282}, {"date": "2018-11-19", "fuel": "gasoline", "avg_price": 2.9201666667}, {"date": "2018-11-26", "fuel": "diesel", "avg_price": 3.261}, {"date": "2018-11-26", "fuel": "gasoline", "avg_price": 2.8581666667}, {"date": "2018-12-03", "fuel": "gasoline", "avg_price": 2.7746666667}, {"date": "2018-12-03", "fuel": "diesel", "avg_price": 3.207}, {"date": "2018-12-10", "fuel": "diesel", "avg_price": 3.161}, {"date": "2018-12-10", "fuel": "gasoline", "avg_price": 2.7373333333}, {"date": "2018-12-17", "fuel": "diesel", "avg_price": 3.121}, {"date": "2018-12-17", "fuel": "gasoline", "avg_price": 2.6884166667}, {"date": "2018-12-24", "fuel": "diesel", "avg_price": 3.077}, {"date": "2018-12-24", "fuel": "gasoline", "avg_price": 2.6433333333}, {"date": "2018-12-31", "fuel": "diesel", "avg_price": 3.048}, {"date": "2018-12-31", "fuel": "gasoline", "avg_price": 2.5909166667}, {"date": "2019-01-07", "fuel": "diesel", "avg_price": 3.013}, {"date": "2019-01-07", "fuel": "gasoline", "avg_price": 2.5606666667}, {"date": "2019-01-14", "fuel": "gasoline", "avg_price": 2.564}, {"date": "2019-01-14", "fuel": "diesel", "avg_price": 2.976}, {"date": "2019-01-21", "fuel": "diesel", "avg_price": 2.965}, {"date": "2019-01-21", "fuel": "gasoline", "avg_price": 2.56425}, {"date": "2019-01-28", "fuel": "diesel", "avg_price": 2.965}, {"date": "2019-01-28", "fuel": "gasoline", "avg_price": 2.5623333333}, {"date": "2019-02-04", "fuel": "diesel", "avg_price": 2.966}, {"date": "2019-02-04", "fuel": "gasoline", "avg_price": 2.5584166667}, {"date": "2019-02-11", "fuel": "diesel", "avg_price": 2.966}, {"date": "2019-02-11", "fuel": "gasoline", "avg_price": 2.57625}, {"date": "2019-02-18", "fuel": "diesel", "avg_price": 3.006}, {"date": "2019-02-18", "fuel": "gasoline", "avg_price": 2.6099166667}, {"date": "2019-02-25", "fuel": "gasoline", "avg_price": 2.6711666667}, {"date": "2019-02-25", "fuel": "diesel", "avg_price": 3.048}, {"date": "2019-03-04", "fuel": "diesel", "avg_price": 3.076}, {"date": "2019-03-04", "fuel": "gasoline", "avg_price": 2.6981666667}, {"date": "2019-03-11", "fuel": "diesel", "avg_price": 3.079}, {"date": "2019-03-11", "fuel": "gasoline", "avg_price": 2.74175}, {"date": "2019-03-18", "fuel": "diesel", "avg_price": 3.07}, {"date": "2019-03-18", "fuel": "gasoline", "avg_price": 2.8166666667}, {"date": "2019-03-25", "fuel": "diesel", "avg_price": 3.08}, {"date": "2019-03-25", "fuel": "gasoline", "avg_price": 2.8960833333}, {"date": "2019-04-01", "fuel": "diesel", "avg_price": 3.078}, {"date": "2019-04-01", "fuel": "gasoline", "avg_price": 2.9681666667}, {"date": "2019-04-08", "fuel": "diesel", "avg_price": 3.093}, {"date": "2019-04-08", "fuel": "gasoline", "avg_price": 3.0340833333}, {"date": "2019-04-15", "fuel": "gasoline", "avg_price": 3.1266666667}, {"date": "2019-04-15", "fuel": "diesel", "avg_price": 3.118}, {"date": "2019-04-22", "fuel": "gasoline", "avg_price": 3.14875}, {"date": "2019-04-22", "fuel": "diesel", "avg_price": 3.147}, {"date": "2019-04-29", "fuel": "diesel", "avg_price": 3.169}, {"date": "2019-04-29", "fuel": "gasoline", "avg_price": 3.19725}, {"date": "2019-05-06", "fuel": "diesel", "avg_price": 3.171}, {"date": "2019-05-06", "fuel": "gasoline", "avg_price": 3.21075}, {"date": "2019-05-13", "fuel": "diesel", "avg_price": 3.16}, {"date": "2019-05-13", "fuel": "gasoline", "avg_price": 3.1830833333}, {"date": "2019-05-20", "fuel": "diesel", "avg_price": 3.163}, {"date": "2019-05-20", "fuel": "gasoline", "avg_price": 3.1685}, {"date": "2019-05-27", "fuel": "diesel", "avg_price": 3.151}, {"date": "2019-05-27", "fuel": "gasoline", "avg_price": 3.1375833333}, {"date": "2019-06-03", "fuel": "gasoline", "avg_price": 3.1171666667}, {"date": "2019-06-03", "fuel": "diesel", "avg_price": 3.136}, {"date": "2019-06-10", "fuel": "diesel", "avg_price": 3.105}, {"date": "2019-06-10", "fuel": "gasoline", "avg_price": 3.0486666667}, {"date": "2019-06-17", "fuel": "diesel", "avg_price": 3.07}, {"date": "2019-06-17", "fuel": "gasoline", "avg_price": 2.99025}, {"date": "2019-06-24", "fuel": "diesel", "avg_price": 3.043}, {"date": "2019-06-24", "fuel": "gasoline", "avg_price": 2.9665}, {"date": "2019-07-01", "fuel": "diesel", "avg_price": 3.042}, {"date": "2019-07-01", "fuel": "gasoline", "avg_price": 3.01575}, {"date": "2019-07-08", "fuel": "diesel", "avg_price": 3.055}, {"date": "2019-07-08", "fuel": "gasoline", "avg_price": 3.0401666667}, {"date": "2019-07-15", "fuel": "diesel", "avg_price": 3.051}, {"date": "2019-07-15", "fuel": "gasoline", "avg_price": 3.0685833333}, {"date": "2019-07-22", "fuel": "gasoline", "avg_price": 3.0430833333}, {"date": "2019-07-22", "fuel": "diesel", "avg_price": 3.044}, {"date": "2019-07-29", "fuel": "diesel", "avg_price": 3.034}, {"date": "2019-07-29", "fuel": "gasoline", "avg_price": 3.0111666667}, {"date": "2019-08-05", "fuel": "diesel", "avg_price": 3.032}, {"date": "2019-08-05", "fuel": "gasoline", "avg_price": 2.987}, {"date": "2019-08-12", "fuel": "diesel", "avg_price": 3.011}, {"date": "2019-08-12", "fuel": "gasoline", "avg_price": 2.9296666667}, {"date": "2019-08-19", "fuel": "diesel", "avg_price": 2.994}, {"date": "2019-08-19", "fuel": "gasoline", "avg_price": 2.9025833333}, {"date": "2019-08-26", "fuel": "diesel", "avg_price": 2.983}, {"date": "2019-08-26", "fuel": "gasoline", "avg_price": 2.883}, {"date": "2019-09-02", "fuel": "gasoline", "avg_price": 2.8750833333}, {"date": "2019-09-02", "fuel": "diesel", "avg_price": 2.976}, {"date": "2019-09-09", "fuel": "gasoline", "avg_price": 2.8625833333}, {"date": "2019-09-09", "fuel": "diesel", "avg_price": 2.971}, {"date": "2019-09-16", "fuel": "diesel", "avg_price": 2.987}, {"date": "2019-09-16", "fuel": "gasoline", "avg_price": 2.86325}, {"date": "2019-09-23", "fuel": "diesel", "avg_price": 3.081}, {"date": "2019-09-23", "fuel": "gasoline", "avg_price": 2.9605}, {"date": "2019-09-30", "fuel": "diesel", "avg_price": 3.066}, {"date": "2019-09-30", "fuel": "gasoline", "avg_price": 2.98525}, {"date": "2019-10-07", "fuel": "diesel", "avg_price": 3.047}, {"date": "2019-10-07", "fuel": "gasoline", "avg_price": 2.9979166667}, {"date": "2019-10-14", "fuel": "diesel", "avg_price": 3.051}, {"date": "2019-10-14", "fuel": "gasoline", "avg_price": 2.985}, {"date": "2019-10-21", "fuel": "diesel", "avg_price": 3.05}, {"date": "2019-10-21", "fuel": "gasoline", "avg_price": 2.9860833333}, {"date": "2019-10-28", "fuel": "gasoline", "avg_price": 2.94375}, {"date": "2019-10-28", "fuel": "diesel", "avg_price": 3.064}, {"date": "2019-11-04", "fuel": "diesel", "avg_price": 3.062}, {"date": "2019-11-04", "fuel": "gasoline", "avg_price": 2.9556666667}, {"date": "2019-11-11", "fuel": "diesel", "avg_price": 3.073}, {"date": "2019-11-11", "fuel": "gasoline", "avg_price": 2.9631666667}, {"date": "2019-11-18", "fuel": "diesel", "avg_price": 3.074}, {"date": "2019-11-18", "fuel": "gasoline", "avg_price": 2.9349166667}, {"date": "2019-11-25", "fuel": "diesel", "avg_price": 3.066}, {"date": "2019-11-25", "fuel": "gasoline", "avg_price": 2.9135833333}, {"date": "2019-12-02", "fuel": "diesel", "avg_price": 3.07}, {"date": "2019-12-02", "fuel": "gasoline", "avg_price": 2.8996666667}, {"date": "2019-12-09", "fuel": "gasoline", "avg_price": 2.88125}, {"date": "2019-12-09", "fuel": "diesel", "avg_price": 3.049}, {"date": "2019-12-16", "fuel": "diesel", "avg_price": 3.046}, {"date": "2019-12-16", "fuel": "gasoline", "avg_price": 2.8563333333}, {"date": "2019-12-23", "fuel": "diesel", "avg_price": 3.041}, {"date": "2019-12-23", "fuel": "gasoline", "avg_price": 2.8466666667}, {"date": "2019-12-30", "fuel": "diesel", "avg_price": 3.069}, {"date": "2019-12-30", "fuel": "gasoline", "avg_price": 2.8751666667}, {"date": "2020-01-06", "fuel": "diesel", "avg_price": 3.079}, {"date": "2020-01-06", "fuel": "gasoline", "avg_price": 2.8808333333}, {"date": "2020-01-13", "fuel": "diesel", "avg_price": 3.064}, {"date": "2020-01-13", "fuel": "gasoline", "avg_price": 2.87475}, {"date": "2020-01-20", "fuel": "gasoline", "avg_price": 2.8461666667}, {"date": "2020-01-20", "fuel": "diesel", "avg_price": 3.037}, {"date": "2020-01-27", "fuel": "gasoline", "avg_price": 2.8190833333}, {"date": "2020-01-27", "fuel": "diesel", "avg_price": 3.01}, {"date": "2020-02-03", "fuel": "diesel", "avg_price": 2.956}, {"date": "2020-02-03", "fuel": "gasoline", "avg_price": 2.7765}, {"date": "2020-02-10", "fuel": "diesel", "avg_price": 2.91}, {"date": "2020-02-10", "fuel": "gasoline", "avg_price": 2.7435833333}, {"date": "2020-02-17", "fuel": "diesel", "avg_price": 2.89}, {"date": "2020-02-17", "fuel": "gasoline", "avg_price": 2.74575}, {"date": "2020-02-24", "fuel": "diesel", "avg_price": 2.882}, {"date": "2020-02-24", "fuel": "gasoline", "avg_price": 2.7789166667}, {"date": "2020-03-02", "fuel": "diesel", "avg_price": 2.851}, {"date": "2020-03-02", "fuel": "gasoline", "avg_price": 2.7453333333}, {"date": "2020-03-09", "fuel": "gasoline", "avg_price": 2.7021666667}, {"date": "2020-03-09", "fuel": "diesel", "avg_price": 2.814}, {"date": "2020-03-16", "fuel": "diesel", "avg_price": 2.733}, {"date": "2020-03-16", "fuel": "gasoline", "avg_price": 2.58475}, {"date": "2020-03-23", "fuel": "diesel", "avg_price": 2.659}, {"date": "2020-03-23", "fuel": "gasoline", "avg_price": 2.4628333333}, {"date": "2020-03-30", "fuel": "diesel", "avg_price": 2.586}, {"date": "2020-03-30", "fuel": "gasoline", "avg_price": 2.355}, {"date": "2020-04-06", "fuel": "diesel", "avg_price": 2.548}, {"date": "2020-04-06", "fuel": "gasoline", "avg_price": 2.2745833333}, {"date": "2020-04-13", "fuel": "diesel", "avg_price": 2.507}, {"date": "2020-04-13", "fuel": "gasoline", "avg_price": 2.20125}, {"date": "2020-04-20", "fuel": "diesel", "avg_price": 2.48}, {"date": "2020-04-20", "fuel": "gasoline", "avg_price": 2.1604166667}, {"date": "2020-04-27", "fuel": "gasoline", "avg_price": 2.11725}, {"date": "2020-04-27", "fuel": "diesel", "avg_price": 2.437}, {"date": "2020-05-04", "fuel": "gasoline", "avg_price": 2.1213333333}, {"date": "2020-05-04", "fuel": "diesel", "avg_price": 2.399}, {"date": "2020-05-11", "fuel": "diesel", "avg_price": 2.394}, {"date": "2020-05-11", "fuel": "gasoline", "avg_price": 2.1696666667}, {"date": "2020-05-18", "fuel": "diesel", "avg_price": 2.386}, {"date": "2020-05-18", "fuel": "gasoline", "avg_price": 2.1990833333}, {"date": "2020-05-25", "fuel": "diesel", "avg_price": 2.39}, {"date": "2020-05-25", "fuel": "gasoline", "avg_price": 2.2720833333}, {"date": "2020-06-01", "fuel": "diesel", "avg_price": 2.386}, {"date": "2020-06-01", "fuel": "gasoline", "avg_price": 2.2890833333}, {"date": "2020-06-08", "fuel": "diesel", "avg_price": 2.396}, {"date": "2020-06-08", "fuel": "gasoline", "avg_price": 2.344}, {"date": "2020-06-15", "fuel": "diesel", "avg_price": 2.403}, {"date": "2020-06-15", "fuel": "gasoline", "avg_price": 2.4030833333}, {"date": "2020-06-22", "fuel": "gasoline", "avg_price": 2.43225}, {"date": "2020-06-22", "fuel": "diesel", "avg_price": 2.425}, {"date": "2020-06-29", "fuel": "diesel", "avg_price": 2.43}, {"date": "2020-06-29", "fuel": "gasoline", "avg_price": 2.4748333333}, {"date": "2020-07-06", "fuel": "diesel", "avg_price": 2.437}, {"date": "2020-07-06", "fuel": "gasoline", "avg_price": 2.48025}, {"date": "2020-07-13", "fuel": "diesel", "avg_price": 2.438}, {"date": "2020-07-13", "fuel": "gasoline", "avg_price": 2.49975}, {"date": "2020-07-20", "fuel": "diesel", "avg_price": 2.433}, {"date": "2020-07-20", "fuel": "gasoline", "avg_price": 2.4939166667}, {"date": "2020-07-27", "fuel": "diesel", "avg_price": 2.427}, {"date": "2020-07-27", "fuel": "gasoline", "avg_price": 2.4895}, {"date": "2020-08-03", "fuel": "gasoline", "avg_price": 2.49}, {"date": "2020-08-03", "fuel": "diesel", "avg_price": 2.424}, {"date": "2020-08-10", "fuel": "gasoline", "avg_price": 2.4801666667}, {"date": "2020-08-10", "fuel": "diesel", "avg_price": 2.428}, {"date": "2020-08-17", "fuel": "diesel", "avg_price": 2.427}, {"date": "2020-08-17", "fuel": "gasoline", "avg_price": 2.4823333333}, {"date": "2020-08-24", "fuel": "diesel", "avg_price": 2.426}, {"date": "2020-08-24", "fuel": "gasoline", "avg_price": 2.498}, {"date": "2020-08-31", "fuel": "diesel", "avg_price": 2.441}, {"date": "2020-08-31", "fuel": "gasoline", "avg_price": 2.5341666667}, {"date": "2020-09-07", "fuel": "diesel", "avg_price": 2.435}, {"date": "2020-09-07", "fuel": "gasoline", "avg_price": 2.5275}, {"date": "2020-09-14", "fuel": "diesel", "avg_price": 2.422}, {"date": "2020-09-14", "fuel": "gasoline", "avg_price": 2.5030833333}, {"date": "2020-09-21", "fuel": "diesel", "avg_price": 2.404}, {"date": "2020-09-21", "fuel": "gasoline", "avg_price": 2.4869166667}, {"date": "2020-09-28", "fuel": "gasoline", "avg_price": 2.4848333333}, {"date": "2020-09-28", "fuel": "diesel", "avg_price": 2.394}, {"date": "2020-10-05", "fuel": "diesel", "avg_price": 2.387}, {"date": "2020-10-05", "fuel": "gasoline", "avg_price": 2.4865}, {"date": "2020-10-12", "fuel": "diesel", "avg_price": 2.395}, {"date": "2020-10-12", "fuel": "gasoline", "avg_price": 2.4828333333}, {"date": "2020-10-19", "fuel": "diesel", "avg_price": 2.388}, {"date": "2020-10-19", "fuel": "gasoline", "avg_price": 2.4681666667}, {"date": "2020-10-26", "fuel": "diesel", "avg_price": 2.385}, {"date": "2020-10-26", "fuel": "gasoline", "avg_price": 2.4629166667}, {"date": "2020-11-02", "fuel": "diesel", "avg_price": 2.372}, {"date": "2020-11-02", "fuel": "gasoline", "avg_price": 2.436}, {"date": "2020-11-09", "fuel": "gasoline", "avg_price": 2.42075}, {"date": "2020-11-09", "fuel": "diesel", "avg_price": 2.383}, {"date": "2020-11-16", "fuel": "diesel", "avg_price": 2.441}, {"date": "2020-11-16", "fuel": "gasoline", "avg_price": 2.4341666667}, {"date": "2020-11-23", "fuel": "diesel", "avg_price": 2.462}, {"date": "2020-11-23", "fuel": "gasoline", "avg_price": 2.4274166667}, {"date": "2020-11-30", "fuel": "diesel", "avg_price": 2.502}, {"date": "2020-11-30", "fuel": "gasoline", "avg_price": 2.443}, {"date": "2020-12-07", "fuel": "diesel", "avg_price": 2.526}, {"date": "2020-12-07", "fuel": "gasoline", "avg_price": 2.4734166667}, {"date": "2020-12-14", "fuel": "diesel", "avg_price": 2.559}, {"date": "2020-12-14", "fuel": "gasoline", "avg_price": 2.4745}, {"date": "2020-12-21", "fuel": "gasoline", "avg_price": 2.5308333333}, {"date": "2020-12-21", "fuel": "diesel", "avg_price": 2.619}, {"date": "2020-12-28", "fuel": "diesel", "avg_price": 2.635}, {"date": "2020-12-28", "fuel": "gasoline", "avg_price": 2.5481666667}, {"date": "2021-01-04", "fuel": "diesel", "avg_price": 2.64}, {"date": "2021-01-04", "fuel": "gasoline", "avg_price": 2.5546666667}, {"date": "2021-01-11", "fuel": "diesel", "avg_price": 2.67}, {"date": "2021-01-11", "fuel": "gasoline", "avg_price": 2.6196666667}, {"date": "2021-01-18", "fuel": "diesel", "avg_price": 2.696}, {"date": "2021-01-18", "fuel": "gasoline", "avg_price": 2.6805}, {"date": "2021-01-25", "fuel": "diesel", "avg_price": 2.716}, {"date": "2021-01-25", "fuel": "gasoline", "avg_price": 2.6963333333}, {"date": "2021-02-01", "fuel": "diesel", "avg_price": 2.738}, {"date": "2021-02-01", "fuel": "gasoline", "avg_price": 2.7136666667}, {"date": "2021-02-08", "fuel": "gasoline", "avg_price": 2.76625}, {"date": "2021-02-08", "fuel": "diesel", "avg_price": 2.801}, {"date": "2021-02-15", "fuel": "diesel", "avg_price": 2.876}, {"date": "2021-02-15", "fuel": "gasoline", "avg_price": 2.8070833333}, {"date": "2021-02-22", "fuel": "diesel", "avg_price": 2.973}, {"date": "2021-02-22", "fuel": "gasoline", "avg_price": 2.9301666667}, {"date": "2021-03-01", "fuel": "diesel", "avg_price": 3.072}, {"date": "2021-03-01", "fuel": "gasoline", "avg_price": 3.0103333333}, {"date": "2021-03-08", "fuel": "diesel", "avg_price": 3.143}, {"date": "2021-03-08", "fuel": "gasoline", "avg_price": 3.0729166667}, {"date": "2021-03-15", "fuel": "diesel", "avg_price": 3.191}, {"date": "2021-03-15", "fuel": "gasoline", "avg_price": 3.1585}, {"date": "2021-03-22", "fuel": "gasoline", "avg_price": 3.1751666667}, {"date": "2021-03-22", "fuel": "diesel", "avg_price": 3.194}, {"date": "2021-03-29", "fuel": "diesel", "avg_price": 3.161}, {"date": "2021-03-29", "fuel": "gasoline", "avg_price": 3.1625833333}, {"date": "2021-04-05", "fuel": "diesel", "avg_price": 3.144}, {"date": "2021-04-05", "fuel": "gasoline", "avg_price": 3.16725}, {"date": "2021-04-12", "fuel": "diesel", "avg_price": 3.129}, {"date": "2021-04-12", "fuel": "gasoline", "avg_price": 3.1645833333}, {"date": "2021-04-19", "fuel": "diesel", "avg_price": 3.124}, {"date": "2021-04-19", "fuel": "gasoline", "avg_price": 3.172}, {"date": "2021-04-26", "fuel": "diesel", "avg_price": 3.124}, {"date": "2021-04-26", "fuel": "gasoline", "avg_price": 3.1914166667}, {"date": "2021-05-03", "fuel": "gasoline", "avg_price": 3.2116666667}, {"date": "2021-05-03", "fuel": "diesel", "avg_price": 3.142}, {"date": "2021-05-10", "fuel": "gasoline", "avg_price": 3.2814166667}, {"date": "2021-05-10", "fuel": "diesel", "avg_price": 3.186}, {"date": "2021-05-17", "fuel": "diesel", "avg_price": 3.249}, {"date": "2021-05-17", "fuel": "gasoline", "avg_price": 3.34575}, {"date": "2021-05-24", "fuel": "diesel", "avg_price": 3.253}, {"date": "2021-05-24", "fuel": "gasoline", "avg_price": 3.34525}, {"date": "2021-05-31", "fuel": "diesel", "avg_price": 3.255}, {"date": "2021-05-31", "fuel": "gasoline", "avg_price": 3.35275}, {"date": "2021-06-07", "fuel": "diesel", "avg_price": 3.274}, {"date": "2021-06-07", "fuel": "gasoline", "avg_price": 3.3636666667}, {"date": "2021-06-14", "fuel": "diesel", "avg_price": 3.286}, {"date": "2021-06-14", "fuel": "gasoline", "avg_price": 3.39425}, {"date": "2021-06-21", "fuel": "diesel", "avg_price": 3.287}, {"date": "2021-06-21", "fuel": "gasoline", "avg_price": 3.3904166667}, {"date": "2021-06-28", "fuel": "gasoline", "avg_price": 3.4235}, {"date": "2021-06-28", "fuel": "diesel", "avg_price": 3.3}, {"date": "2021-07-05", "fuel": "diesel", "avg_price": 3.331}, {"date": "2021-07-05", "fuel": "gasoline", "avg_price": 3.4525833333}, {"date": "2021-07-12", "fuel": "diesel", "avg_price": 3.338}, {"date": "2021-07-12", "fuel": "gasoline", "avg_price": 3.4655}, {"date": "2021-07-19", "fuel": "diesel", "avg_price": 3.344}, {"date": "2021-07-19", "fuel": "gasoline", "avg_price": 3.4844166667}, {"date": "2021-07-26", "fuel": "diesel", "avg_price": 3.342}, {"date": "2021-07-26", "fuel": "gasoline", "avg_price": 3.4724166667}, {"date": "2021-08-02", "fuel": "diesel", "avg_price": 3.367}, {"date": "2021-08-02", "fuel": "gasoline", "avg_price": 3.4996666667}, {"date": "2021-08-09", "fuel": "gasoline", "avg_price": 3.5111666667}, {"date": "2021-08-09", "fuel": "diesel", "avg_price": 3.364}, {"date": "2021-08-16", "fuel": "diesel", "avg_price": 3.356}, {"date": "2021-08-16", "fuel": "gasoline", "avg_price": 3.51675}, {"date": "2021-08-23", "fuel": "diesel", "avg_price": 3.324}, {"date": "2021-08-23", "fuel": "gasoline", "avg_price": 3.4896666667}, {"date": "2021-08-30", "fuel": "diesel", "avg_price": 3.339}, {"date": "2021-08-30", "fuel": "gasoline", "avg_price": 3.4851666667}, {"date": "2021-09-06", "fuel": "diesel", "avg_price": 3.373}, {"date": "2021-09-06", "fuel": "gasoline", "avg_price": 3.5165833333}, {"date": "2021-09-13", "fuel": "diesel", "avg_price": 3.372}, {"date": "2021-09-13", "fuel": "gasoline", "avg_price": 3.5061666667}, {"date": "2021-09-20", "fuel": "gasoline", "avg_price": 3.5210833333}, {"date": "2021-09-20", "fuel": "diesel", "avg_price": 3.385}, {"date": "2021-09-27", "fuel": "diesel", "avg_price": 3.406}, {"date": "2021-09-27", "fuel": "gasoline", "avg_price": 3.5143333333}, {"date": "2021-10-04", "fuel": "diesel", "avg_price": 3.477}, {"date": "2021-10-04", "fuel": "gasoline", "avg_price": 3.5270833333}, {"date": "2021-10-11", "fuel": "diesel", "avg_price": 3.586}, {"date": "2021-10-11", "fuel": "gasoline", "avg_price": 3.5971666667}, {"date": "2021-10-18", "fuel": "diesel", "avg_price": 3.671}, {"date": "2021-10-18", "fuel": "gasoline", "avg_price": 3.65275}, {"date": "2021-10-25", "fuel": "diesel", "avg_price": 3.713}, {"date": "2021-10-25", "fuel": "gasoline", "avg_price": 3.7156666667}, {"date": "2021-11-01", "fuel": "diesel", "avg_price": 3.727}, {"date": "2021-11-01", "fuel": "gasoline", "avg_price": 3.7273333333}, {"date": "2021-11-08", "fuel": "gasoline", "avg_price": 3.7481666667}, {"date": "2021-11-08", "fuel": "diesel", "avg_price": 3.73}, {"date": "2021-11-15", "fuel": "diesel", "avg_price": 3.734}, {"date": "2021-11-15", "fuel": "gasoline", "avg_price": 3.7454166667}, {"date": "2021-11-22", "fuel": "diesel", "avg_price": 3.724}, {"date": "2021-11-22", "fuel": "gasoline", "avg_price": 3.74575}, {"date": "2021-11-29", "fuel": "diesel", "avg_price": 3.72}, {"date": "2021-11-29", "fuel": "gasoline", "avg_price": 3.7333333333}, {"date": "2021-12-06", "fuel": "diesel", "avg_price": 3.674}, {"date": "2021-12-06", "fuel": "gasoline", "avg_price": 3.69975}, {"date": "2021-12-13", "fuel": "diesel", "avg_price": 3.649}, {"date": "2021-12-13", "fuel": "gasoline", "avg_price": 3.6755}, {"date": "2021-12-20", "fuel": "gasoline", "avg_price": 3.6595}, {"date": "2021-12-20", "fuel": "diesel", "avg_price": 3.626}, {"date": "2021-12-27", "fuel": "diesel", "avg_price": 3.615}, {"date": "2021-12-27", "fuel": "gasoline", "avg_price": 3.6401666667}, {"date": "2022-01-03", "fuel": "diesel", "avg_price": 3.613}, {"date": "2022-01-03", "fuel": "gasoline", "avg_price": 3.64475}, {"date": "2022-01-10", "fuel": "diesel", "avg_price": 3.657}, {"date": "2022-01-10", "fuel": "gasoline", "avg_price": 3.6535833333}, {"date": "2022-01-17", "fuel": "diesel", "avg_price": 3.725}, {"date": "2022-01-17", "fuel": "gasoline", "avg_price": 3.6615}, {"date": "2022-01-24", "fuel": "diesel", "avg_price": 3.78}, {"date": "2022-01-24", "fuel": "gasoline", "avg_price": 3.6755}, {"date": "2022-01-31", "fuel": "gasoline", "avg_price": 3.7140833333}, {"date": "2022-01-31", "fuel": "diesel", "avg_price": 3.846}, {"date": "2022-02-07", "fuel": "gasoline", "avg_price": 3.7806666667}, {"date": "2022-02-07", "fuel": "diesel", "avg_price": 3.951}, {"date": "2022-02-14", "fuel": "diesel", "avg_price": 4.019}, {"date": "2022-02-14", "fuel": "gasoline", "avg_price": 3.82275}, {"date": "2022-02-21", "fuel": "diesel", "avg_price": 4.055}, {"date": "2022-02-21", "fuel": "gasoline", "avg_price": 3.8669166667}, {"date": "2022-02-28", "fuel": "diesel", "avg_price": 4.104}, {"date": "2022-02-28", "fuel": "gasoline", "avg_price": 3.9433333333}, {"date": "2022-03-07", "fuel": "diesel", "avg_price": 4.849}, {"date": "2022-03-07", "fuel": "gasoline", "avg_price": 4.4456666667}, {"date": "2022-03-14", "fuel": "diesel", "avg_price": 5.25}, {"date": "2022-03-14", "fuel": "gasoline", "avg_price": 4.6726666667}, {"date": "2022-03-21", "fuel": "gasoline", "avg_price": 4.6170833333}, {"date": "2022-03-21", "fuel": "diesel", "avg_price": 5.134}, {"date": "2022-03-28", "fuel": "diesel", "avg_price": 5.185}, {"date": "2022-03-28", "fuel": "gasoline", "avg_price": 4.61125}, {"date": "2022-04-04", "fuel": "diesel", "avg_price": 5.144}, {"date": "2022-04-04", "fuel": "gasoline", "avg_price": 4.5525833333}, {"date": "2022-04-11", "fuel": "diesel", "avg_price": 5.073}, {"date": "2022-04-11", "fuel": "gasoline", "avg_price": 4.4771666667}, {"date": "2022-04-18", "fuel": "diesel", "avg_price": 5.101}, {"date": "2022-04-18", "fuel": "gasoline", "avg_price": 4.4511666667}, {"date": "2022-04-25", "fuel": "diesel", "avg_price": 5.16}, {"date": "2022-04-25", "fuel": "gasoline", "avg_price": 4.4879166667}, {"date": "2022-05-02", "fuel": "diesel", "avg_price": 5.509}, {"date": "2022-05-02", "fuel": "gasoline", "avg_price": 4.5610833333}, {"date": "2022-05-09", "fuel": "diesel", "avg_price": 5.623}, {"date": "2022-05-09", "fuel": "gasoline", "avg_price": 4.701}, {"date": "2022-05-16", "fuel": "gasoline", "avg_price": 4.8656666667}, {"date": "2022-05-16", "fuel": "diesel", "avg_price": 5.613}, {"date": "2022-05-23", "fuel": "diesel", "avg_price": 5.571}, {"date": "2022-05-23", "fuel": "gasoline", "avg_price": 4.9719166667}, {"date": "2022-05-30", "fuel": "diesel", "avg_price": 5.539}, {"date": "2022-05-30", "fuel": "gasoline", "avg_price": 5.012}, {"date": "2022-06-06", "fuel": "diesel", "avg_price": 5.703}, {"date": "2022-06-06", "fuel": "gasoline", "avg_price": 5.2535}, {"date": "2022-06-13", "fuel": "diesel", "avg_price": 5.718}, {"date": "2022-06-13", "fuel": "gasoline", "avg_price": 5.38075}, {"date": "2022-06-20", "fuel": "diesel", "avg_price": 5.81}, {"date": "2022-06-20", "fuel": "gasoline", "avg_price": 5.3458333333}, {"date": "2022-06-27", "fuel": "gasoline", "avg_price": 5.2643333333}, {"date": "2022-06-27", "fuel": "diesel", "avg_price": 5.783}, {"date": "2022-07-04", "fuel": "diesel", "avg_price": 5.675}, {"date": "2022-07-04", "fuel": "gasoline", "avg_price": 5.1664166667}, {"date": "2022-07-11", "fuel": "diesel", "avg_price": 5.568}, {"date": "2022-07-11", "fuel": "gasoline", "avg_price": 5.0398333333}, {"date": "2022-07-18", "fuel": "diesel", "avg_price": 5.432}, {"date": "2022-07-18", "fuel": "gasoline", "avg_price": 4.883}, {"date": "2022-07-25", "fuel": "diesel", "avg_price": 5.268}, {"date": "2022-07-25", "fuel": "gasoline", "avg_price": 4.7291666667}, {"date": "2022-08-01", "fuel": "diesel", "avg_price": 5.138}, {"date": "2022-08-01", "fuel": "gasoline", "avg_price": 4.5989166667}, {"date": "2022-08-08", "fuel": "diesel", "avg_price": 4.993}, {"date": "2022-08-08", "fuel": "gasoline", "avg_price": 4.4489166667}, {"date": "2022-08-15", "fuel": "gasoline", "avg_price": 4.349}, {"date": "2022-08-15", "fuel": "diesel", "avg_price": 4.911}, {"date": "2022-08-22", "fuel": "diesel", "avg_price": 4.909}, {"date": "2022-08-22", "fuel": "gasoline", "avg_price": 4.2890833333}, {"date": "2022-08-29", "fuel": "diesel", "avg_price": 5.115}, {"date": "2022-08-29", "fuel": "gasoline", "avg_price": 4.2285}, {"date": "2022-09-05", "fuel": "diesel", "avg_price": 5.084}, {"date": "2022-09-05", "fuel": "gasoline", "avg_price": 4.1523333333}, {"date": "2022-09-12", "fuel": "diesel", "avg_price": 5.033}, {"date": "2022-09-12", "fuel": "gasoline", "avg_price": 4.1074166667}, {"date": "2022-09-19", "fuel": "diesel", "avg_price": 4.964}, {"date": "2022-09-19", "fuel": "gasoline", "avg_price": 4.0789166667}, {"date": "2022-09-26", "fuel": "gasoline", "avg_price": 4.14825}, {"date": "2022-09-26", "fuel": "diesel", "avg_price": 4.889}, {"date": "2022-10-03", "fuel": "gasoline", "avg_price": 4.2526666667}, {"date": "2022-10-03", "fuel": "diesel", "avg_price": 4.836}, {"date": "2022-10-10", "fuel": "diesel", "avg_price": 5.224}, {"date": "2022-10-10", "fuel": "gasoline", "avg_price": 4.3633333333}, {"date": "2022-10-17", "fuel": "diesel", "avg_price": 5.339}, {"date": "2022-10-17", "fuel": "gasoline", "avg_price": 4.3120833333}, {"date": "2022-10-24", "fuel": "diesel", "avg_price": 5.341}, {"date": "2022-10-24", "fuel": "gasoline", "avg_price": 4.1995833333}, {"date": "2022-10-31", "fuel": "diesel", "avg_price": 5.317}, {"date": "2022-10-31", "fuel": "gasoline", "avg_price": 4.1658333333}, {"date": "2022-11-07", "fuel": "diesel", "avg_price": 5.333}, {"date": "2022-11-07", "fuel": "gasoline", "avg_price": 4.2105}, {"date": "2022-11-14", "fuel": "gasoline", "avg_price": 4.17825}, {"date": "2022-11-14", "fuel": "diesel", "avg_price": 5.313}, {"date": "2022-11-21", "fuel": "gasoline", "avg_price": 4.0665}, {"date": "2022-11-21", "fuel": "diesel", "avg_price": 5.233}, {"date": "2022-11-28", "fuel": "diesel", "avg_price": 5.141}, {"date": "2022-11-28", "fuel": "gasoline", "avg_price": 3.9478333333}, {"date": "2022-12-05", "fuel": "diesel", "avg_price": 4.967}, {"date": "2022-12-05", "fuel": "gasoline", "avg_price": 3.7958333333}, {"date": "2022-12-12", "fuel": "diesel", "avg_price": 4.754}, {"date": "2022-12-12", "fuel": "gasoline", "avg_price": 3.6435833333}, {"date": "2022-12-19", "fuel": "diesel", "avg_price": 4.596}, {"date": "2022-12-19", "fuel": "gasoline", "avg_price": 3.523}, {"date": "2022-12-26", "fuel": "diesel", "avg_price": 4.537}, {"date": "2022-12-26", "fuel": "gasoline", "avg_price": 3.4898333333}, {"date": "2023-01-02", "fuel": "diesel", "avg_price": 4.583}, {"date": "2023-01-02", "fuel": "gasoline", "avg_price": 3.6025}, {"date": "2023-01-09", "fuel": "gasoline", "avg_price": 3.6311666667}, {"date": "2023-01-09", "fuel": "diesel", "avg_price": 4.549}, {"date": "2023-01-16", "fuel": "diesel", "avg_price": 4.524}, {"date": "2023-01-16", "fuel": "gasoline", "avg_price": 3.67775}, {"date": "2023-01-23", "fuel": "diesel", "avg_price": 4.604}, {"date": "2023-01-23", "fuel": "gasoline", "avg_price": 3.774}, {"date": "2023-01-30", "fuel": "diesel", "avg_price": 4.622}, {"date": "2023-01-30", "fuel": "gasoline", "avg_price": 3.8493333333}, {"date": "2023-02-06", "fuel": "diesel", "avg_price": 4.539}, {"date": "2023-02-06", "fuel": "gasoline", "avg_price": 3.8183333333}, {"date": "2023-02-13", "fuel": "diesel", "avg_price": 4.444}, {"date": "2023-02-13", "fuel": "gasoline", "avg_price": 3.77675}, {"date": "2023-02-20", "fuel": "gasoline", "avg_price": 3.776}, {"date": "2023-02-20", "fuel": "diesel", "avg_price": 4.376}, {"date": "2023-02-27", "fuel": "diesel", "avg_price": 4.294}, {"date": "2023-02-27", "fuel": "gasoline", "avg_price": 3.7435833333}, {"date": "2023-03-06", "fuel": "diesel", "avg_price": 4.282}, {"date": "2023-03-06", "fuel": "gasoline", "avg_price": 3.7944166667}, {"date": "2023-03-13", "fuel": "diesel", "avg_price": 4.247}, {"date": "2023-03-13", "fuel": "gasoline", "avg_price": 3.8526666667}, {"date": "2023-03-20", "fuel": "diesel", "avg_price": 4.185}, {"date": "2023-03-20", "fuel": "gasoline", "avg_price": 3.81625}, {"date": "2023-03-27", "fuel": "diesel", "avg_price": 4.128}, {"date": "2023-03-27", "fuel": "gasoline", "avg_price": 3.81875}, {"date": "2023-04-03", "fuel": "gasoline", "avg_price": 3.883}, {"date": "2023-04-03", "fuel": "diesel", "avg_price": 4.105}, {"date": "2023-04-10", "fuel": "diesel", "avg_price": 4.098}, {"date": "2023-04-10", "fuel": "gasoline", "avg_price": 3.9720833333}, {"date": "2023-04-17", "fuel": "diesel", "avg_price": 4.116}, {"date": "2023-04-17", "fuel": "gasoline", "avg_price": 4.0398333333}, {"date": "2023-04-24", "fuel": "diesel", "avg_price": 4.077}, {"date": "2023-04-24", "fuel": "gasoline", "avg_price": 4.0428333333}, {"date": "2023-05-01", "fuel": "diesel", "avg_price": 4.018}, {"date": "2023-05-01", "fuel": "gasoline", "avg_price": 3.9936666667}, {"date": "2023-05-08", "fuel": "diesel", "avg_price": 3.922}, {"date": "2023-05-08", "fuel": "gasoline", "avg_price": 3.9304166667}, {"date": "2023-05-15", "fuel": "diesel", "avg_price": 3.897}, {"date": "2023-05-15", "fuel": "gasoline", "avg_price": 3.9295}, {"date": "2023-05-22", "fuel": "diesel", "avg_price": 3.883}, {"date": "2023-05-22", "fuel": "gasoline", "avg_price": 3.9285833333}, {"date": "2023-05-29", "fuel": "gasoline", "avg_price": 3.9719166667}, {"date": "2023-05-29", "fuel": "diesel", "avg_price": 3.855}, {"date": "2023-06-05", "fuel": "diesel", "avg_price": 3.797}, {"date": "2023-06-05", "fuel": "gasoline", "avg_price": 3.9455833333}, {"date": "2023-06-12", "fuel": "diesel", "avg_price": 3.794}, {"date": "2023-06-12", "fuel": "gasoline", "avg_price": 3.995}, {"date": "2023-06-19", "fuel": "diesel", "avg_price": 3.815}, {"date": "2023-06-19", "fuel": "gasoline", "avg_price": 3.98025}, {"date": "2023-06-26", "fuel": "diesel", "avg_price": 3.801}, {"date": "2023-06-26", "fuel": "gasoline", "avg_price": 3.9753333333}, {"date": "2023-07-03", "fuel": "diesel", "avg_price": 3.767}, {"date": "2023-07-03", "fuel": "gasoline", "avg_price": 3.9385833333}, {"date": "2023-07-10", "fuel": "gasoline", "avg_price": 3.9613333333}, {"date": "2023-07-10", "fuel": "diesel", "avg_price": 3.806}, {"date": "2023-07-17", "fuel": "diesel", "avg_price": 3.806}, {"date": "2023-07-17", "fuel": "gasoline", "avg_price": 3.9698333333}, {"date": "2023-07-24", "fuel": "diesel", "avg_price": 3.905}, {"date": "2023-07-24", "fuel": "gasoline", "avg_price": 4.0019166667}, {"date": "2023-07-31", "fuel": "diesel", "avg_price": 4.127}, {"date": "2023-07-31", "fuel": "gasoline", "avg_price": 4.1503333333}, {"date": "2023-08-07", "fuel": "diesel", "avg_price": 4.239}, {"date": "2023-08-07", "fuel": "gasoline", "avg_price": 4.2188333333}, {"date": "2023-08-14", "fuel": "diesel", "avg_price": 4.378}, {"date": "2023-08-14", "fuel": "gasoline", "avg_price": 4.2440833333}, {"date": "2023-08-21", "fuel": "diesel", "avg_price": 4.389}, {"date": "2023-08-21", "fuel": "gasoline", "avg_price": 4.2770833333}, {"date": "2023-08-28", "fuel": "gasoline", "avg_price": 4.23275}, {"date": "2023-08-28", "fuel": "diesel", "avg_price": 4.475}, {"date": "2023-09-04", "fuel": "diesel", "avg_price": 4.492}, {"date": "2023-09-04", "fuel": "gasoline", "avg_price": 4.22625}, {"date": "2023-09-11", "fuel": "diesel", "avg_price": 4.54}, {"date": "2023-09-11", "fuel": "gasoline", "avg_price": 4.2460833333}, {"date": "2023-09-18", "fuel": "diesel", "avg_price": 4.633}, {"date": "2023-09-18", "fuel": "gasoline", "avg_price": 4.323}, {"date": "2023-09-25", "fuel": "diesel", "avg_price": 4.586}, {"date": "2023-09-25", "fuel": "gasoline", "avg_price": 4.2991666667}, {"date": "2023-10-02", "fuel": "diesel", "avg_price": 4.593}, {"date": "2023-10-02", "fuel": "gasoline", "avg_price": 4.28625}, {"date": "2023-10-09", "fuel": "gasoline", "avg_price": 4.1599166667}, {"date": "2023-10-09", "fuel": "diesel", "avg_price": 4.498}, {"date": "2023-10-16", "fuel": "gasoline", "avg_price": 4.0485}, {"date": "2023-10-16", "fuel": "diesel", "avg_price": 4.444}, {"date": "2023-10-23", "fuel": "diesel", "avg_price": 4.545}, {"date": "2023-10-23", "fuel": "gasoline", "avg_price": 3.99475}, {"date": "2023-10-30", "fuel": "diesel", "avg_price": 4.454}, {"date": "2023-10-30", "fuel": "gasoline", "avg_price": 3.9290833333}, {"date": "2023-11-06", "fuel": "diesel", "avg_price": 4.366}, {"date": "2023-11-06", "fuel": "gasoline", "avg_price": 3.8448333333}, {"date": "2023-11-13", "fuel": "diesel", "avg_price": 4.294}, {"date": "2023-11-13", "fuel": "gasoline", "avg_price": 3.789}, {"date": "2023-11-20", "fuel": "diesel", "avg_price": 4.209}, {"date": "2023-11-20", "fuel": "gasoline", "avg_price": 3.7325833333}, {"date": "2023-11-27", "fuel": "gasoline", "avg_price": 3.6828333333}, {"date": "2023-11-27", "fuel": "diesel", "avg_price": 4.146}, {"date": "2023-12-04", "fuel": "gasoline", "avg_price": 3.6656666667}, {"date": "2023-12-04", "fuel": "diesel", "avg_price": 4.092}, {"date": "2023-12-11", "fuel": "diesel", "avg_price": 3.987}, {"date": "2023-12-11", "fuel": "gasoline", "avg_price": 3.5654166667}, {"date": "2023-12-18", "fuel": "diesel", "avg_price": 3.894}, {"date": "2023-12-18", "fuel": "gasoline", "avg_price": 3.4815}, {"date": "2023-12-25", "fuel": "diesel", "avg_price": 3.914}, {"date": "2023-12-25", "fuel": "gasoline", "avg_price": 3.5409166667}, {"date": "2024-01-01", "fuel": "diesel", "avg_price": 3.876}, {"date": "2024-01-01", "fuel": "gasoline", "avg_price": 3.5228333333}, {"date": "2024-01-08", "fuel": "diesel", "avg_price": 3.828}, {"date": "2024-01-08", "fuel": "gasoline", "avg_price": 3.5079166667}, {"date": "2024-01-15", "fuel": "diesel", "avg_price": 3.863}, {"date": "2024-01-15", "fuel": "gasoline", "avg_price": 3.4788333333}, {"date": "2024-01-22", "fuel": "gasoline", "avg_price": 3.4768333333}, {"date": "2024-01-22", "fuel": "diesel", "avg_price": 3.838}, {"date": "2024-01-29", "fuel": "diesel", "avg_price": 3.867}, {"date": "2024-01-29", "fuel": "gasoline", "avg_price": 3.5109166667}, {"date": "2024-02-05", "fuel": "diesel", "avg_price": 3.899}, {"date": "2024-02-05", "fuel": "gasoline", "avg_price": 3.54975}, {"date": "2024-02-12", "fuel": "diesel", "avg_price": 4.109}, {"date": "2024-02-12", "fuel": "gasoline", "avg_price": 3.5989166667}, {"date": "2024-02-19", "fuel": "diesel", "avg_price": 4.109}, {"date": "2024-02-19", "fuel": "gasoline", "avg_price": 3.6731666667}, {"date": "2024-02-26", "fuel": "diesel", "avg_price": 4.058}, {"date": "2024-02-26", "fuel": "gasoline", "avg_price": 3.6526666667}, {"date": "2024-03-04", "fuel": "gasoline", "avg_price": 3.7561666667}, {"date": "2024-03-04", "fuel": "diesel", "avg_price": 4.022}, {"date": "2024-03-11", "fuel": "gasoline", "avg_price": 3.781}, {"date": "2024-03-11", "fuel": "diesel", "avg_price": 4.004}, {"date": "2024-03-18", "fuel": "diesel", "avg_price": 4.028}, {"date": "2024-03-18", "fuel": "gasoline", "avg_price": 3.8548333333}, {"date": "2024-03-25", "fuel": "diesel", "avg_price": 4.034}, {"date": "2024-03-25", "fuel": "gasoline", "avg_price": 3.9271666667}, {"date": "2024-04-01", "fuel": "diesel", "avg_price": 3.996}, {"date": "2024-04-01", "fuel": "gasoline", "avg_price": 3.9306666667}, {"date": "2024-04-08", "fuel": "diesel", "avg_price": 4.061}, {"date": "2024-04-08", "fuel": "gasoline", "avg_price": 4.0188333333}, {"date": "2024-04-15", "fuel": "diesel", "avg_price": 4.015}, {"date": "2024-04-15", "fuel": "gasoline", "avg_price": 4.06375}, {"date": "2024-04-22", "fuel": "diesel", "avg_price": 3.992}, {"date": "2024-04-22", "fuel": "gasoline", "avg_price": 4.10625}, {"date": "2024-04-29", "fuel": "gasoline", "avg_price": 4.09125}, {"date": "2024-04-29", "fuel": "diesel", "avg_price": 3.947}, {"date": "2024-05-06", "fuel": "diesel", "avg_price": 3.894}, {"date": "2024-05-06", "fuel": "gasoline", "avg_price": 4.0814166667}, {"date": "2024-05-13", "fuel": "diesel", "avg_price": 3.848}, {"date": "2024-05-13", "fuel": "gasoline", "avg_price": 4.0420833333}, {"date": "2024-05-20", "fuel": "diesel", "avg_price": 3.789}, {"date": "2024-05-20", "fuel": "gasoline", "avg_price": 4.0134166667}, {"date": "2024-05-27", "fuel": "diesel", "avg_price": 3.758}, {"date": "2024-05-27", "fuel": "gasoline", "avg_price": 4.00925}, {"date": "2024-06-03", "fuel": "diesel", "avg_price": 3.726}, {"date": "2024-06-03", "fuel": "gasoline", "avg_price": 3.9465}, {"date": "2024-06-10", "fuel": "gasoline", "avg_price": 3.8579166667}, {"date": "2024-06-10", "fuel": "diesel", "avg_price": 3.658}, {"date": "2024-06-17", "fuel": "diesel", "avg_price": 3.735}, {"date": "2024-06-17", "fuel": "gasoline", "avg_price": 3.8586666667}, {"date": "2024-06-24", "fuel": "diesel", "avg_price": 3.769}, {"date": "2024-06-24", "fuel": "gasoline", "avg_price": 3.8534166667}, {"date": "2024-07-01", "fuel": "diesel", "avg_price": 3.813}, {"date": "2024-07-01", "fuel": "gasoline", "avg_price": 3.8831666667}, {"date": "2024-07-08", "fuel": "diesel", "avg_price": 3.865}, {"date": "2024-07-08", "fuel": "gasoline", "avg_price": 3.90025}, {"date": "2024-07-15", "fuel": "diesel", "avg_price": 3.826}, {"date": "2024-07-15", "fuel": "gasoline", "avg_price": 3.9055}, {"date": "2024-07-22", "fuel": "diesel", "avg_price": 3.779}, {"date": "2024-07-22", "fuel": "gasoline", "avg_price": 3.87175}, {"date": "2024-07-29", "fuel": "gasoline", "avg_price": 3.879}, {"date": "2024-07-29", "fuel": "diesel", "avg_price": 3.768}, {"date": "2024-08-05", "fuel": "diesel", "avg_price": 3.755}, {"date": "2024-08-05", "fuel": "gasoline", "avg_price": 3.84375}, {"date": "2024-08-12", "fuel": "diesel", "avg_price": 3.704}, {"date": "2024-08-12", "fuel": "gasoline", "avg_price": 3.8125}, {"date": "2024-08-19", "fuel": "diesel", "avg_price": 3.688}, {"date": "2024-08-19", "fuel": "gasoline", "avg_price": 3.7886666667}, {"date": "2024-08-26", "fuel": "diesel", "avg_price": 3.651}, {"date": "2024-08-26", "fuel": "gasoline", "avg_price": 3.7275}, {"date": "2024-09-02", "fuel": "diesel", "avg_price": 3.625}, {"date": "2024-09-02", "fuel": "gasoline", "avg_price": 3.7145}, {"date": "2024-09-09", "fuel": "gasoline", "avg_price": 3.6693333333}, {"date": "2024-09-09", "fuel": "diesel", "avg_price": 3.555}, {"date": "2024-09-16", "fuel": "diesel", "avg_price": 3.526}, {"date": "2024-09-16", "fuel": "gasoline", "avg_price": 3.62675}, {"date": "2024-09-23", "fuel": "diesel", "avg_price": 3.539}, {"date": "2024-09-23", "fuel": "gasoline", "avg_price": 3.6224166667}, {"date": "2024-09-30", "fuel": "diesel", "avg_price": 3.544}, {"date": "2024-09-30", "fuel": "gasoline", "avg_price": 3.6073333333}, {"date": "2024-10-07", "fuel": "diesel", "avg_price": 3.584}, {"date": "2024-10-07", "fuel": "gasoline", "avg_price": 3.5685833333}, {"date": "2024-10-14", "fuel": "diesel", "avg_price": 3.631}, {"date": "2024-10-14", "fuel": "gasoline", "avg_price": 3.5970833333}, {"date": "2024-10-21", "fuel": "gasoline", "avg_price": 3.5735}, {"date": "2024-10-21", "fuel": "diesel", "avg_price": 3.553}, {"date": "2024-10-28", "fuel": "diesel", "avg_price": 3.573}, {"date": "2024-10-28", "fuel": "gasoline", "avg_price": 3.5249166667}, {"date": "2024-11-04", "fuel": "diesel", "avg_price": 3.536}, {"date": "2024-11-04", "fuel": "gasoline", "avg_price": 3.493}, {"date": "2024-11-11", "fuel": "diesel", "avg_price": 3.521}, {"date": "2024-11-11", "fuel": "gasoline", "avg_price": 3.4789166667}, {"date": "2024-11-18", "fuel": "diesel", "avg_price": 3.491}, {"date": "2024-11-18", "fuel": "gasoline", "avg_price": 3.4660833333}, {"date": "2024-11-25", "fuel": "diesel", "avg_price": 3.539}, {"date": "2024-11-25", "fuel": "gasoline", "avg_price": 3.4660833333}, {"date": "2024-12-02", "fuel": "diesel", "avg_price": 3.54}, {"date": "2024-12-02", "fuel": "gasoline", "avg_price": 3.45425}, {"date": "2024-12-09", "fuel": "gasoline", "avg_price": 3.431}, {"date": "2024-12-09", "fuel": "diesel", "avg_price": 3.458}, {"date": "2024-12-16", "fuel": "diesel", "avg_price": 3.494}, {"date": "2024-12-16", "fuel": "gasoline", "avg_price": 3.431}, {"date": "2024-12-23", "fuel": "diesel", "avg_price": 3.476}, {"date": "2024-12-23", "fuel": "gasoline", "avg_price": 3.4395}, {"date": "2024-12-30", "fuel": "diesel", "avg_price": 3.503}, {"date": "2024-12-30", "fuel": "gasoline", "avg_price": 3.4266666667}, {"date": "2025-01-06", "fuel": "diesel", "avg_price": 3.561}, {"date": "2025-01-06", "fuel": "gasoline", "avg_price": 3.4620833333}, {"date": "2025-01-13", "fuel": "diesel", "avg_price": 3.602}, {"date": "2025-01-13", "fuel": "gasoline", "avg_price": 3.4610833333}, {"date": "2025-01-20", "fuel": "gasoline", "avg_price": 3.5243333333}, {"date": "2025-01-20", "fuel": "diesel", "avg_price": 3.715}, {"date": "2025-01-27", "fuel": "diesel", "avg_price": 3.659}, {"date": "2025-01-27", "fuel": "gasoline", "avg_price": 3.522}, {"date": "2025-02-03", "fuel": "diesel", "avg_price": 3.66}, {"date": "2025-02-03", "fuel": "gasoline", "avg_price": 3.5101666667}, {"date": "2025-02-10", "fuel": "diesel", "avg_price": 3.665}, {"date": "2025-02-10", "fuel": "gasoline", "avg_price": 3.5611666667}, {"date": "2025-02-17", "fuel": "diesel", "avg_price": 3.677}, {"date": "2025-02-17", "fuel": "gasoline", "avg_price": 3.5964166667}, {"date": "2025-02-24", "fuel": "diesel", "avg_price": 3.697}, {"date": "2025-02-24", "fuel": "gasoline", "avg_price": 3.57775}, {"date": "2025-03-03", "fuel": "gasoline", "avg_price": 3.5271666667}, {"date": "2025-03-03", "fuel": "diesel", "avg_price": 3.635}, {"date": "2025-03-10", "fuel": "gasoline", "avg_price": 3.51375}, {"date": "2025-03-10", "fuel": "diesel", "avg_price": 3.582}, {"date": "2025-03-17", "fuel": "diesel", "avg_price": 3.549}, {"date": "2025-03-17", "fuel": "gasoline", "avg_price": 3.4978333333}, {"date": "2025-03-24", "fuel": "diesel", "avg_price": 3.567}, {"date": "2025-03-24", "fuel": "gasoline", "avg_price": 3.5485833333}, {"date": "2025-03-31", "fuel": "diesel", "avg_price": 3.592}, {"date": "2025-03-31", "fuel": "gasoline", "avg_price": 3.6035}, {"date": "2025-04-07", "fuel": "diesel", "avg_price": 3.639}, {"date": "2025-04-07", "fuel": "gasoline", "avg_price": 3.6863333333}, {"date": "2025-04-14", "fuel": "diesel", "avg_price": 3.579}, {"date": "2025-04-14", "fuel": "gasoline", "avg_price": 3.613}, {"date": "2025-04-21", "fuel": "gasoline", "avg_price": 3.58525}, {"date": "2025-04-21", "fuel": "diesel", "avg_price": 3.534}, {"date": "2025-04-28", "fuel": "diesel", "avg_price": 3.514}, {"date": "2025-04-28", "fuel": "gasoline", "avg_price": 3.57875}, {"date": "2025-05-05", "fuel": "diesel", "avg_price": 3.497}, {"date": "2025-05-05", "fuel": "gasoline", "avg_price": 3.5851666667}, {"date": "2025-05-12", "fuel": "diesel", "avg_price": 3.476}, {"date": "2025-05-12", "fuel": "gasoline", "avg_price": 3.5728333333}, {"date": "2025-05-19", "fuel": "diesel", "avg_price": 3.536}, {"date": "2025-05-19", "fuel": "gasoline", "avg_price": 3.6244166667}, {"date": "2025-05-26", "fuel": "diesel", "avg_price": 3.487}, {"date": "2025-05-26", "fuel": "gasoline", "avg_price": 3.6089166667}, {"date": "2025-06-02", "fuel": "diesel", "avg_price": 3.451}, {"date": "2025-06-02", "fuel": "gasoline", "avg_price": 3.5746666667}, {"date": "2025-06-09", "fuel": "diesel", "avg_price": 3.471}, {"date": "2025-06-09", "fuel": "gasoline", "avg_price": 3.5501666667}, {"date": "2025-06-16", "fuel": "diesel", "avg_price": 3.571}, {"date": "2025-06-16", "fuel": "gasoline", "avg_price": 3.5765}, {"date": "2025-06-23", "fuel": "diesel", "avg_price": 3.775}, {"date": "2025-06-23", "fuel": "gasoline", "avg_price": 3.6445833333}], "metadata": {"date": {"type": "date", "semanticType": "Date"}, "fuel": {"type": "string", "semanticType": "String"}, "avg_price": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n", "source": ["weekly_gas_prices"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```"}], "trigger": {"tableId": "weekly_gas_prices", "resultTableId": "table-904593", "chart": {"id": "chart-1760744901532", "chartType": "Auto", "encodingMap": {}, "tableRef": "weekly_gas_prices", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "What are the major **price trends** across all fuel types from 1990 to 2025?", "displayContent": "Show **price** trends over time for different **fuel** types"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "The code transforms weekly gas price data by performing the following steps:\n\n- **Groups** the data by `date` and `fuel` type (gasoline or diesel)\n- **Calculates** the mean `price` across all `grade` categories (regular, premium, midgrade, etc.) and `formulation` types (conventional, reformulated, etc.) for each date-fuel combination\n- **Renames** the aggregated price column to `avg_price` for clarity\n- **Sorts** the resulting data chronologically by `date` to ensure proper time-series visualization", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThe code transforms weekly gas price data by performing the following steps:\n\n- **Groups** the data by `date` and `fuel` type (gasoline or diesel)\n- **Calculates** the mean `price` across all `grade` categories (regular, premium, midgrade, etc.) and `formulation` types (conventional, reformulated, etc.) for each date-fuel combination\n- **Renames** the aggregated price column to `avg_price` for clarity\n- **Sorts** the resulting data chronologically by `date` to ensure proper time-series visualization\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-906894", "displayId": "gas-price-prem", "names": ["date", "fuel", "grade", "price_premium"], "rows": [{"date": "1993-04-05", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-04-12", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-04-19", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-04-26", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-05-03", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-05-10", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-05-17", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-05-24", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-05-31", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-06-07", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-06-14", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-06-21", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-06-28", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-07-05", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-07-12", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-07-19", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-07-26", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-08-02", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-08-09", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-08-16", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-08-23", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-08-30", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-09-06", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-09-13", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-09-20", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-09-27", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-10-04", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-10-11", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-10-18", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-10-25", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-11-01", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-11-08", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-11-15", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-11-22", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-11-29", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-12-06", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-12-13", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-12-20", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1993-12-27", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-01-03", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-01-10", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-01-17", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-01-24", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-01-31", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-02-07", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-02-14", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-02-21", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-02-28", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-03-07", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-03-14", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-03-21", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-03-28", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-04-04", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-04-11", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-04-18", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-04-25", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-05-02", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-05-09", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-05-16", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-05-23", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-05-30", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-06-06", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-06-13", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-06-20", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-06-27", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-07-04", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-07-11", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-07-18", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-07-25", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-08-01", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-08-08", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-08-15", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-08-22", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-08-29", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-09-05", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-09-12", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-09-19", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-09-26", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-10-03", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-10-10", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-10-17", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-10-24", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-10-31", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-11-07", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-11-14", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-11-21", "fuel": "gasoline", "grade": "all", "price_premium": 0}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.012}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1994-11-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.024}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1994-12-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.036}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1994-12-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1994-12-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1994-12-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-01-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-01-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-01-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1995-01-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1995-01-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1995-02-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1995-02-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1995-02-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-02-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-03-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1995-03-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-03-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1995-03-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1995-04-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1995-04-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-04-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-04-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-05-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-05-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-05-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-05-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-05-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-06-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1995-06-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-06-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-06-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-07-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-07-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-07-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1995-07-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-07-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-08-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-08-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-08-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-08-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1995-09-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-09-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1995-09-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1995-09-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1995-10-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-10-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-10-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.086}, {"date": "1995-10-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1995-10-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-11-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-11-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1995-11-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-11-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1995-12-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1995-12-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1995-12-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1995-12-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1996-01-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1996-01-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1996-01-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1996-01-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1996-01-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1996-02-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1996-02-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1996-02-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1996-02-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1996-03-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1996-03-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1996-03-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.086}, {"date": "1996-03-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1996-04-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1996-04-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1996-04-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1996-04-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-04-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-05-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-05-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-05-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-05-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-06-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-06-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.082}, {"date": "1996-06-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-06-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-07-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-07-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-07-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-07-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-07-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1996-08-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-08-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-08-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.081}, {"date": "1996-08-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-09-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1996-09-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1996-09-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1996-09-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1996-09-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1996-10-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1996-10-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.086}, {"date": "1996-10-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1996-10-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1996-11-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1996-11-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1996-11-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1996-11-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1996-12-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1996-12-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1996-12-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1996-12-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1996-12-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1997-01-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1997-01-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1997-01-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1997-01-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1997-02-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1997-02-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1997-02-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1997-02-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1997-03-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1997-03-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1997-03-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1997-03-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.086}, {"date": "1997-03-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1997-04-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-04-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1997-04-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-04-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-05-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1997-05-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-05-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.082}, {"date": "1997-05-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.173}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.082}, {"date": "1997-06-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.173}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-06-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.175}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-06-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.175}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1997-06-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.086}, {"date": "1997-06-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1997-07-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1997-07-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1997-07-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1997-07-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-08-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-08-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.176}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-08-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-08-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-09-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-09-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.082}, {"date": "1997-09-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.081}, {"date": "1997-09-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.082}, {"date": "1997-09-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-10-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-10-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1997-10-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1997-10-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-11-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-11-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "1997-11-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-11-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-12-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1997-12-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-12-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-12-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "1997-12-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.086}, {"date": "1998-01-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1998-01-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "1998-01-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.086}, {"date": "1998-01-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1998-02-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-02-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1998-02-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1998-02-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1998-03-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1998-03-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1998-03-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1998-03-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1998-03-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-04-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-04-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-04-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1998-04-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "1998-05-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "1998-05-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1998-05-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.174}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-05-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.175}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-06-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.176}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "1998-06-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.173}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-06-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1998-06-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1998-06-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1998-07-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1998-07-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-07-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.176}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "1998-07-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "1998-08-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "1998-08-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1998-08-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1998-08-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1998-08-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1998-09-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "1998-09-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1998-09-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1998-09-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1998-10-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1998-10-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1998-10-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "1998-10-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "1998-11-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1998-11-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1998-11-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "1998-11-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "1998-11-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "1998-12-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "1998-12-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "1998-12-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "1998-12-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "1999-01-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-01-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-01-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-01-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "1999-02-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-02-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-02-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "1999-02-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "1999-03-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "1999-03-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-03-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "1999-03-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "1999-03-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-04-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-04-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.176}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-04-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "1999-04-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-05-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "1999-05-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-05-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-05-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-05-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-06-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-06-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "1999-06-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-06-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1999-07-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "1999-07-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1999-07-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "1999-07-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-08-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1999-08-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "1999-08-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1999-08-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1999-08-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1999-09-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "1999-09-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-09-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-09-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-10-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-10-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-10-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-10-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-11-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-11-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-11-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-11-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-11-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-12-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "1999-12-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "1999-12-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "1999-12-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2000-01-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2000-01-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2000-01-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2000-01-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2000-01-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2000-02-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2000-02-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "2000-02-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.171}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "2000-02-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.172}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2000-03-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.173}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2000-03-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2000-03-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2000-03-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2000-04-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2000-04-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2000-04-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2000-04-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2000-05-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2000-05-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2000-05-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2000-05-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.176}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "2000-05-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.173}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.036}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "2000-06-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.167}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.033}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.075}, {"date": "2000-06-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.154}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.03}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.07}, {"date": "2000-06-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.146}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.033}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.075}, {"date": "2000-06-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.155}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.036}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.082}, {"date": "2000-07-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.167}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "2000-07-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.176}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2000-07-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2000-07-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2000-07-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2000-08-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2000-08-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2000-08-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2000-08-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2000-09-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.176}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "2000-09-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.174}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "2000-09-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.171}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2000-09-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2000-10-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2000-10-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2000-10-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "2000-10-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.173}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2000-10-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2000-11-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2000-11-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2000-11-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2000-11-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2000-12-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2000-12-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2000-12-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.088}, {"date": "2000-12-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2001-01-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2001-01-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2001-01-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2001-01-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2001-01-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2001-02-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2001-02-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2001-02-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2001-02-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2001-03-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2001-03-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2001-03-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2001-03-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2001-04-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2001-04-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2001-04-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2001-04-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2001-04-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.036}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.085}, {"date": "2001-05-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.166}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.035}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.08}, {"date": "2001-05-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.163}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.086}, {"date": "2001-05-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.171}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.035}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "2001-05-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.167}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.036}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.083}, {"date": "2001-06-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.168}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2001-06-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2001-06-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2001-06-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.199}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2001-07-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2001-07-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2001-07-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.203}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2001-07-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.2}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2001-07-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2001-08-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2001-08-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "2001-08-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.035}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.073}, {"date": "2001-08-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.159}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.034}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.074}, {"date": "2001-09-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.153}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.035}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.077}, {"date": "2001-09-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.159}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.035}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.078}, {"date": "2001-09-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.16}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.037}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.084}, {"date": "2001-09-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.168}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.087}, {"date": "2001-10-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.175}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2001-10-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2001-10-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2001-10-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2001-10-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2001-11-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2001-11-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2001-11-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2001-11-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2001-12-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2001-12-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2001-12-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2001-12-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2001-12-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "2002-01-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2002-01-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-01-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-01-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-02-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2002-02-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2002-02-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2002-02-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2002-03-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.039}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-03-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.175}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2002-03-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-03-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2002-04-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-04-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2002-04-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2002-04-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2002-04-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2002-05-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2002-05-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2002-05-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2002-05-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-06-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2002-06-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-06-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-06-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2002-07-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-07-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2002-07-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-07-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-07-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-08-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2002-08-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-08-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2002-08-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2002-09-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2002-09-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2002-09-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-09-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2002-09-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2002-10-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-10-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2002-10-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2002-10-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2002-11-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2002-11-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2002-11-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-11-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2002-12-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2002-12-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2002-12-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.195}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-12-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2002-12-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2003-01-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.195}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2003-01-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2003-01-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-01-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-02-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2003-02-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2003-02-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2003-02-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-03-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.179}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2003-03-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2003-03-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2003-03-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2003-03-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2003-04-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2003-04-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2003-04-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2003-04-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2003-05-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2003-05-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2003-05-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2003-05-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2003-06-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "2003-06-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2003-06-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2003-06-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2003-06-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-07-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-07-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2003-07-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2003-07-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2003-08-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2003-08-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2003-08-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2003-08-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2003-09-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2003-09-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.182}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2003-09-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2003-09-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2003-09-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.196}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2003-10-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-10-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2003-10-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2003-10-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2003-11-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-11-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-11-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2003-11-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2003-12-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2003-12-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2003-12-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.195}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2003-12-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2003-12-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.196}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2004-01-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2004-01-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2004-01-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2004-01-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2004-02-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.195}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2004-02-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2004-02-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2004-02-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2004-03-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2004-03-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2004-03-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2004-03-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2004-03-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2004-04-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2004-04-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2004-04-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2004-04-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2004-05-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.177}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "2004-05-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.17}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.038}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.089}, {"date": "2004-05-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.172}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2004-05-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.178}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2004-05-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2004-06-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2004-06-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2004-06-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2004-06-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2004-07-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.196}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2004-07-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2004-07-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2004-07-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2004-08-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2004-08-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2004-08-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2004-08-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2004-08-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2004-09-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2004-09-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2004-09-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2004-09-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2004-10-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2004-10-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2004-10-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2004-10-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2004-11-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2004-11-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.195}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2004-11-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.199}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "2004-11-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2004-11-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "2004-12-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.2}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2004-12-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.206}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2004-12-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2004-12-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2005-01-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2005-01-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.2}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2005-01-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2005-01-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2005-01-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2005-02-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2005-02-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2005-02-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2005-02-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2005-03-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2005-03-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.185}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2005-03-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2005-03-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2005-04-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.183}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2005-04-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.184}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2005-04-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2005-04-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2005-05-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2005-05-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.199}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2005-05-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2005-05-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2005-05-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2005-06-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2005-06-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2005-06-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2005-06-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.187}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2005-07-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2005-07-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.189}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2005-07-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2005-07-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.199}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2005-08-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.199}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2005-08-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2005-08-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.192}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.092}, {"date": "2005-08-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2005-08-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.191}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "2005-09-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.216}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2005-09-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.216}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.108}, {"date": "2005-09-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.223}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2005-09-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.215}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2005-10-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.211}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2005-10-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.216}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2005-10-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.222}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2005-10-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.219}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.11}, {"date": "2005-10-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.218}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.109}, {"date": "2005-11-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.214}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2005-11-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.209}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2005-11-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2005-11-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2005-12-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2005-12-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.196}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2005-12-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.095}, {"date": "2005-12-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.2}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.091}, {"date": "2006-01-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.199}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2006-01-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2006-01-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.211}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2006-01-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.211}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2006-01-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "2006-02-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2006-02-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.21}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2006-02-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.097}, {"date": "2006-02-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.196}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2006-03-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.188}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.042}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2006-03-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.19}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2006-03-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2006-03-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2006-04-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2006-04-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.2}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2006-04-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.203}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2006-04-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2006-05-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.21}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.108}, {"date": "2006-05-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.208}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2006-05-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.202}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2006-05-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.206}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2006-05-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "2006-06-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.203}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "2006-06-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.202}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2006-06-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.206}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "2006-06-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.203}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2006-07-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.199}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2006-07-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.196}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.1}, {"date": "2006-07-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.197}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.103}, {"date": "2006-07-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.202}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2006-07-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.099}, {"date": "2006-08-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2006-08-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.21}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2006-08-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.212}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.108}, {"date": "2006-08-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.219}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2006-09-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.225}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2006-09-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.229}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2006-09-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.232}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2006-09-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.227}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2006-10-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.221}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2006-10-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.217}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2006-10-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.214}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2006-10-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.21}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2006-10-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.206}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2006-11-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2006-11-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2006-11-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.206}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2006-11-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2006-12-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2006-12-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.209}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2006-12-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2006-12-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.108}, {"date": "2007-01-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.213}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2007-01-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.217}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2007-01-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.224}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2007-01-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.226}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2007-01-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.216}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.109}, {"date": "2007-02-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.109}, {"date": "2007-02-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.201}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2007-02-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.199}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2007-02-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.198}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2007-03-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.108}, {"date": "2007-03-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2007-03-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.204}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2007-03-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.202}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2007-04-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2007-04-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2007-04-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.207}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2007-04-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.213}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.108}, {"date": "2007-04-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2007-05-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2007-05-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.181}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.04}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.09}, {"date": "2007-05-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.18}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.041}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.093}, {"date": "2007-05-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.186}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.098}, {"date": "2007-06-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.194}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.109}, {"date": "2007-06-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.205}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2007-06-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.213}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2007-06-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.214}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.046}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2007-07-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.209}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.045}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.096}, {"date": "2007-07-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.201}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.043}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2007-07-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.193}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2007-07-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.21}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2007-07-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.223}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2007-08-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.224}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.109}, {"date": "2007-08-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.224}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.101}, {"date": "2007-08-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.212}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.102}, {"date": "2007-08-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.214}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2007-09-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.201}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.044}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.094}, {"date": "2007-09-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.2}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2007-09-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.214}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.105}, {"date": "2007-09-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.217}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2007-10-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.225}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2007-10-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.227}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2007-10-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.228}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2007-10-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.223}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2007-10-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.22}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.104}, {"date": "2007-11-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.211}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.047}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2007-11-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.214}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.109}, {"date": "2007-11-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.221}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2007-11-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.222}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2007-12-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.231}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2007-12-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2007-12-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2007-12-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2007-12-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.23}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2008-01-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.226}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2008-01-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.232}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2008-01-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.239}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2008-01-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.24}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2008-02-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2008-02-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.23}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.111}, {"date": "2008-02-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.224}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2008-02-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.224}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2008-03-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.224}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.109}, {"date": "2008-03-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.218}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2008-03-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.216}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2008-03-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.227}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2008-03-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.222}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2008-04-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.218}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2008-04-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.218}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2008-04-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.221}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2008-04-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.226}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2008-05-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.229}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.108}, {"date": "2008-05-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.222}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2008-05-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.226}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.108}, {"date": "2008-05-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.222}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.11}, {"date": "2008-06-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.225}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2008-06-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.228}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2008-06-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.232}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2008-06-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.233}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2008-06-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.231}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2008-07-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.23}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2008-07-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.228}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2008-07-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.239}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.127}, {"date": "2008-07-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2008-08-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2008-08-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.246}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2008-08-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.239}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2008-08-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2008-09-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2008-09-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2008-09-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2008-09-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.245}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2008-09-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.251}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.134}, {"date": "2008-10-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.262}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.062}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.145}, {"date": "2008-10-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.274}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.139}, {"date": "2008-10-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.268}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.062}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.144}, {"date": "2008-10-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.273}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.062}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.143}, {"date": "2008-11-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.277}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.139}, {"date": "2008-11-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.27}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.139}, {"date": "2008-11-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.267}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.137}, {"date": "2008-11-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.271}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.134}, {"date": "2008-12-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.266}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.133}, {"date": "2008-12-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.266}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2008-12-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.256}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2008-12-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.254}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.13}, {"date": "2008-12-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.253}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2009-01-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2009-01-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.231}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2009-01-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.23}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2009-01-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.232}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2009-02-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2009-02-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.235}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2009-02-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2009-02-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2009-03-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.24}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2009-03-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2009-03-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2009-03-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.231}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2009-03-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.229}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2009-04-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2009-04-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.233}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2009-04-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.235}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2009-04-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2009-05-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.23}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2009-05-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.227}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2009-05-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.231}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2009-05-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.226}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.048}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.106}, {"date": "2009-06-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.217}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.049}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.107}, {"date": "2009-06-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.219}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.05}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2009-06-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.224}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2009-06-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.233}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2009-06-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2009-07-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.243}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2009-07-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.251}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2009-07-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.251}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2009-07-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2009-08-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2009-08-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2009-08-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.24}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2009-08-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2009-08-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2009-09-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.243}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.127}, {"date": "2009-09-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2009-09-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.132}, {"date": "2009-09-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.242}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.132}, {"date": "2009-10-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.243}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.125}, {"date": "2009-10-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2009-10-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.233}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2009-10-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.235}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2009-11-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2009-11-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.242}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2009-11-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.248}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.125}, {"date": "2009-11-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.125}, {"date": "2009-11-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.246}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.127}, {"date": "2009-12-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.248}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2009-12-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2009-12-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2009-12-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.246}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2010-01-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.24}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2010-01-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2010-01-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.127}, {"date": "2010-01-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.248}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2010-02-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2010-02-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.248}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.13}, {"date": "2010-02-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.254}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2010-02-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.125}, {"date": "2010-03-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2010-03-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2010-03-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2010-03-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.231}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2010-03-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2010-04-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.23}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2010-04-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.23}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2010-04-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.231}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2010-04-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.113}, {"date": "2010-05-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.233}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2010-05-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2010-05-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.243}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2010-05-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.251}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.127}, {"date": "2010-05-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.252}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2010-06-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.247}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2010-06-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.246}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2010-06-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2010-06-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.235}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2010-07-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2010-07-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2010-07-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2010-07-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.233}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2010-08-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2010-08-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.233}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2010-08-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.127}, {"date": "2010-08-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2010-08-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.24}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2010-09-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.235}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2010-09-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.229}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2010-09-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.231}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2010-09-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2010-10-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2010-10-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.234}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2010-10-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2010-10-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2010-11-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.245}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2010-11-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2010-11-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2010-11-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.248}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2010-11-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.252}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2010-12-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.249}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.121}, {"date": "2010-12-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.247}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2010-12-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.249}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2010-12-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2011-01-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2011-01-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2011-01-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.243}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2011-01-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.243}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2011-01-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2011-02-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.239}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2011-02-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.242}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2011-02-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.239}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2011-02-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2011-03-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.123}, {"date": "2011-03-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.242}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2011-03-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2011-03-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.24}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2011-04-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.237}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2011-04-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2011-04-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.236}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2011-04-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.238}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.051}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.112}, {"date": "2011-05-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.235}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2011-05-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.241}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2011-05-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.244}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2011-05-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.251}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2011-05-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.247}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.052}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.11}, {"date": "2011-06-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.239}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.116}, {"date": "2011-06-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.245}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2011-06-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.252}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2011-06-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.259}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2011-07-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.115}, {"date": "2011-07-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.248}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.114}, {"date": "2011-07-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2011-07-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.252}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.118}, {"date": "2011-08-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.252}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.12}, {"date": "2011-08-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.253}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2011-08-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.261}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2011-08-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.258}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2011-08-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.247}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.053}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.117}, {"date": "2011-09-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.24}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.054}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.119}, {"date": "2011-09-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.243}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2011-09-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.252}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.133}, {"date": "2011-09-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.261}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.136}, {"date": "2011-10-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.265}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.134}, {"date": "2011-10-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.262}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2011-10-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.254}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.132}, {"date": "2011-10-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.259}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.135}, {"date": "2011-10-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.261}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.134}, {"date": "2011-11-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.259}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.135}, {"date": "2011-11-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.261}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.135}, {"date": "2011-11-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.266}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.061}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.14}, {"date": "2011-11-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.274}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.136}, {"date": "2011-12-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.27}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.135}, {"date": "2011-12-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.268}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.061}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.139}, {"date": "2011-12-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.275}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.13}, {"date": "2011-12-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.266}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.13}, {"date": "2012-01-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.268}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.13}, {"date": "2012-01-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.267}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.131}, {"date": "2012-01-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.269}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.061}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.133}, {"date": "2012-01-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.275}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.061}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.134}, {"date": "2012-01-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.277}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.132}, {"date": "2012-02-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.274}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.061}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.136}, {"date": "2012-02-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.275}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.061}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.138}, {"date": "2012-02-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.274}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.134}, {"date": "2012-02-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.262}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.127}, {"date": "2012-03-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.125}, {"date": "2012-03-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.248}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2012-03-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2012-03-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.25}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.055}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2012-04-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.252}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2012-04-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.262}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.125}, {"date": "2012-04-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.261}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.129}, {"date": "2012-04-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.266}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.132}, {"date": "2012-04-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.267}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.133}, {"date": "2012-05-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.264}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.141}, {"date": "2012-05-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.266}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.135}, {"date": "2012-05-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.26}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.135}, {"date": "2012-05-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.259}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.137}, {"date": "2012-06-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.258}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.131}, {"date": "2012-06-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.257}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2012-06-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.247}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.131}, {"date": "2012-06-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.256}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.133}, {"date": "2012-07-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.262}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2012-07-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.263}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.124}, {"date": "2012-07-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.263}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.132}, {"date": "2012-07-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.271}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.131}, {"date": "2012-07-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.271}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.057}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.122}, {"date": "2012-08-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.262}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.058}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.126}, {"date": "2012-08-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.264}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.13}, {"date": "2012-08-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.27}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.061}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.133}, {"date": "2012-08-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.275}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.132}, {"date": "2012-09-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.268}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.134}, {"date": "2012-09-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.272}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.061}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.135}, {"date": "2012-09-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.276}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.063}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.14}, {"date": "2012-09-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.284}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.062}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.14}, {"date": "2012-10-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.283}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.064}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.152}, {"date": "2012-10-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.283}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.067}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.157}, {"date": "2012-10-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.294}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.069}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.163}, {"date": "2012-10-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.305}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.07}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.165}, {"date": "2012-10-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.31}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.071}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.16}, {"date": "2012-11-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.316}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.069}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.156}, {"date": "2012-11-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.312}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.068}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.15}, {"date": "2012-11-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.311}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.068}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.148}, {"date": "2012-11-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.309}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.069}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.154}, {"date": "2012-12-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.313}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.07}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.155}, {"date": "2012-12-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.315}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.07}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.155}, {"date": "2012-12-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.317}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.071}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.158}, {"date": "2012-12-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.319}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.071}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.157}, {"date": "2012-12-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.319}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.164}, {"date": "2013-01-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.332}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.164}, {"date": "2013-01-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.334}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.071}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.158}, {"date": "2013-01-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.321}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.07}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.155}, {"date": "2013-01-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.316}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.066}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.145}, {"date": "2013-02-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.303}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.066}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.145}, {"date": "2013-02-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.299}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.065}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.144}, {"date": "2013-02-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.295}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.067}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.15}, {"date": "2013-02-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.3}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.067}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.151}, {"date": "2013-03-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.302}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.069}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.155}, {"date": "2013-03-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.308}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.068}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.154}, {"date": "2013-03-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.306}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.066}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.148}, {"date": "2013-03-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.301}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.069}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.153}, {"date": "2013-04-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.308}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.068}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.153}, {"date": "2013-04-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.308}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.069}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.158}, {"date": "2013-04-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.31}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.067}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.151}, {"date": "2013-04-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.3}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.067}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.148}, {"date": "2013-04-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.302}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.064}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.143}, {"date": "2013-05-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.292}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.062}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.136}, {"date": "2013-05-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.28}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.056}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2013-05-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.253}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.134}, {"date": "2013-05-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.267}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.059}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.127}, {"date": "2013-06-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.267}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.06}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.128}, {"date": "2013-06-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.274}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.063}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.138}, {"date": "2013-06-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.286}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.068}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.156}, {"date": "2013-06-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.303}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.071}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.164}, {"date": "2013-07-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.317}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.071}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.162}, {"date": "2013-07-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.318}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.067}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.147}, {"date": "2013-07-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.304}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.069}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.149}, {"date": "2013-07-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.311}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.07}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.155}, {"date": "2013-07-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.317}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.069}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.149}, {"date": "2013-08-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.315}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.072}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.158}, {"date": "2013-08-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.325}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.072}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.157}, {"date": "2013-08-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.324}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.071}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.155}, {"date": "2013-08-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.323}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.07}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.152}, {"date": "2013-09-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.314}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.071}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.154}, {"date": "2013-09-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.319}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.072}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.162}, {"date": "2013-09-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.323}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.072}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.161}, {"date": "2013-09-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.324}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.171}, {"date": "2013-09-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.333}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.168}, {"date": "2013-10-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.334}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.076}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.173}, {"date": "2013-10-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.34}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.075}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.171}, {"date": "2013-10-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.336}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.181}, {"date": "2013-10-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.35}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.176}, {"date": "2013-11-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.349}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.186}, {"date": "2013-11-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.358}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.182}, {"date": "2013-11-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.354}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.177}, {"date": "2013-11-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.356}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.081}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.185}, {"date": "2013-12-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.363}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.081}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.184}, {"date": "2013-12-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.363}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.082}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.184}, {"date": "2013-12-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.366}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.18}, {"date": "2013-12-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.361}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.172}, {"date": "2013-12-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.351}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.181}, {"date": "2014-01-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.358}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.178}, {"date": "2014-01-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.356}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.181}, {"date": "2014-01-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.361}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.179}, {"date": "2014-01-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.359}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.183}, {"date": "2014-02-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.359}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.178}, {"date": "2014-02-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.355}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.175}, {"date": "2014-02-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.348}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.076}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.171}, {"date": "2014-02-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.339}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.169}, {"date": "2014-03-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.333}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.072}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.162}, {"date": "2014-03-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.323}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.072}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.163}, {"date": "2014-03-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.324}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.073}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.167}, {"date": "2014-03-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.327}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.072}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.164}, {"date": "2014-03-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.325}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.173}, {"date": "2014-04-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.332}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.172}, {"date": "2014-04-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.325}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.075}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.174}, {"date": "2014-04-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.331}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.075}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.175}, {"date": "2014-04-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.334}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.18}, {"date": "2014-05-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.343}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.182}, {"date": "2014-05-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.347}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.179}, {"date": "2014-05-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.346}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.076}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.176}, {"date": "2014-05-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.34}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.075}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.172}, {"date": "2014-06-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.334}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.075}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.17}, {"date": "2014-06-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.334}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.167}, {"date": "2014-06-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.33}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.169}, {"date": "2014-06-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.332}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.074}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.168}, {"date": "2014-06-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.332}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.075}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.171}, {"date": "2014-07-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.337}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.176}, {"date": "2014-07-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.343}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.18}, {"date": "2014-07-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.345}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.184}, {"date": "2014-07-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.349}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.186}, {"date": "2014-08-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.351}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.179}, {"date": "2014-08-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.345}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.181}, {"date": "2014-08-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.344}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.181}, {"date": "2014-08-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.346}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.179}, {"date": "2014-09-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.344}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.175}, {"date": "2014-09-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.344}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.177}, {"date": "2014-09-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.346}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.183}, {"date": "2014-09-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.354}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.183}, {"date": "2014-09-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.356}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.193}, {"date": "2014-10-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.368}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.199}, {"date": "2014-10-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.374}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.199}, {"date": "2014-10-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.379}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.192}, {"date": "2014-10-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.369}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.194}, {"date": "2014-11-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.376}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.193}, {"date": "2014-11-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.374}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.194}, {"date": "2014-11-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.376}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.198}, {"date": "2014-11-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.384}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.2}, {"date": "2014-12-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.386}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.203}, {"date": "2014-12-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.393}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.209}, {"date": "2014-12-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.397}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.216}, {"date": "2014-12-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.41}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.218}, {"date": "2014-12-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.414}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.223}, {"date": "2015-01-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.417}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.219}, {"date": "2015-01-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.414}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.211}, {"date": "2015-01-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.407}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.206}, {"date": "2015-01-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.4}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.2}, {"date": "2015-02-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.386}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.197}, {"date": "2015-02-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.377}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.193}, {"date": "2015-02-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.377}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.194}, {"date": "2015-02-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.372}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.198}, {"date": "2015-03-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.364}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.199}, {"date": "2015-03-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.366}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.199}, {"date": "2015-03-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.371}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.081}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.193}, {"date": "2015-03-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.36}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.201}, {"date": "2015-03-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.366}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.204}, {"date": "2015-04-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.376}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.208}, {"date": "2015-04-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.378}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.201}, {"date": "2015-04-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.372}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.207}, {"date": "2015-04-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.377}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.206}, {"date": "2015-05-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.372}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.209}, {"date": "2015-05-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.372}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.205}, {"date": "2015-05-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.365}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.201}, {"date": "2015-05-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.366}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.198}, {"date": "2015-06-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.363}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.197}, {"date": "2015-06-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.37}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.19}, {"date": "2015-06-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.367}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.194}, {"date": "2015-06-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.37}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.196}, {"date": "2015-06-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.374}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.197}, {"date": "2015-07-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.375}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.21}, {"date": "2015-07-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.379}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.21}, {"date": "2015-07-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.377}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.215}, {"date": "2015-07-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.384}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.22}, {"date": "2015-08-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.394}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.221}, {"date": "2015-08-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.401}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.211}, {"date": "2015-08-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.38}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.217}, {"date": "2015-08-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.39}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.224}, {"date": "2015-08-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.406}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.095}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.225}, {"date": "2015-09-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.416}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.23}, {"date": "2015-09-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.426}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.234}, {"date": "2015-09-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.432}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.229}, {"date": "2015-09-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.426}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.227}, {"date": "2015-10-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.43}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.095}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.224}, {"date": "2015-10-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.42}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.228}, {"date": "2015-10-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.428}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.232}, {"date": "2015-10-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.435}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.231}, {"date": "2015-11-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.436}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.1}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.233}, {"date": "2015-11-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.443}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.242}, {"date": "2015-11-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.455}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.244}, {"date": "2015-11-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.462}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.249}, {"date": "2015-11-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.47}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.25}, {"date": "2015-12-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.47}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.25}, {"date": "2015-12-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.472}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.254}, {"date": "2015-12-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.473}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.256}, {"date": "2015-12-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.472}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.257}, {"date": "2016-01-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.47}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.257}, {"date": "2016-01-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.473}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.258}, {"date": "2016-01-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.476}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.109}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.262}, {"date": "2016-01-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.481}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.263}, {"date": "2016-02-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.485}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.266}, {"date": "2016-02-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.488}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.26}, {"date": "2016-02-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.485}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.253}, {"date": "2016-02-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.475}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.246}, {"date": "2016-02-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.461}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.102}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.24}, {"date": "2016-03-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.453}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.101}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.239}, {"date": "2016-03-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.448}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.102}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.241}, {"date": "2016-03-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.454}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.244}, {"date": "2016-03-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.455}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.102}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.24}, {"date": "2016-04-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.449}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.246}, {"date": "2016-04-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.458}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.241}, {"date": "2016-04-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.453}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.243}, {"date": "2016-04-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.454}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.102}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.242}, {"date": "2016-05-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.453}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.105}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.249}, {"date": "2016-05-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.463}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.243}, {"date": "2016-05-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.458}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.241}, {"date": "2016-05-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.456}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.101}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.235}, {"date": "2016-05-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.449}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.101}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.235}, {"date": "2016-06-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.449}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.1}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.233}, {"date": "2016-06-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.443}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.102}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.239}, {"date": "2016-06-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.452}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.241}, {"date": "2016-06-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.456}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.105}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.246}, {"date": "2016-07-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.464}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.248}, {"date": "2016-07-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.468}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.249}, {"date": "2016-07-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.471}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.252}, {"date": "2016-07-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.474}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.254}, {"date": "2016-08-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.476}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.248}, {"date": "2016-08-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.471}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.252}, {"date": "2016-08-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.473}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.248}, {"date": "2016-08-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.471}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.244}, {"date": "2016-08-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.464}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.245}, {"date": "2016-09-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.475}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.252}, {"date": "2016-09-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.478}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.256}, {"date": "2016-09-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.481}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.26}, {"date": "2016-09-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.484}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.109}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.261}, {"date": "2016-10-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.481}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.109}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.257}, {"date": "2016-10-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.482}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.259}, {"date": "2016-10-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.485}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.259}, {"date": "2016-10-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.487}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.263}, {"date": "2016-10-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.489}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.265}, {"date": "2016-11-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.499}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.271}, {"date": "2016-11-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.507}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.268}, {"date": "2016-11-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.505}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.269}, {"date": "2016-11-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.503}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.263}, {"date": "2016-12-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.502}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.258}, {"date": "2016-12-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.496}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.258}, {"date": "2016-12-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.497}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.252}, {"date": "2016-12-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.49}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.245}, {"date": "2017-01-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.488}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.248}, {"date": "2017-01-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.486}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.109}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.249}, {"date": "2017-01-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.487}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.252}, {"date": "2017-01-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.491}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.257}, {"date": "2017-01-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.499}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.259}, {"date": "2017-02-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.497}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.259}, {"date": "2017-02-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.494}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.262}, {"date": "2017-02-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.496}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.265}, {"date": "2017-02-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.498}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.263}, {"date": "2017-03-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.492}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.263}, {"date": "2017-03-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.493}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.266}, {"date": "2017-03-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.495}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.268}, {"date": "2017-03-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.497}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.262}, {"date": "2017-04-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.491}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.259}, {"date": "2017-04-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.488}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.258}, {"date": "2017-04-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.491}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.257}, {"date": "2017-04-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.489}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.262}, {"date": "2017-05-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.496}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.263}, {"date": "2017-05-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.498}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.265}, {"date": "2017-05-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.498}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.264}, {"date": "2017-05-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.49}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.259}, {"date": "2017-05-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.488}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.263}, {"date": "2017-06-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.492}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.267}, {"date": "2017-06-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.499}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.275}, {"date": "2017-06-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.507}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.277}, {"date": "2017-06-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.511}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.276}, {"date": "2017-07-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.51}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.272}, {"date": "2017-07-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.501}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.273}, {"date": "2017-07-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.503}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.27}, {"date": "2017-07-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.504}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.271}, {"date": "2017-07-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.508}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.266}, {"date": "2017-08-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.504}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.269}, {"date": "2017-08-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.502}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.271}, {"date": "2017-08-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.505}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.269}, {"date": "2017-08-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.502}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.267}, {"date": "2017-09-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.512}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.268}, {"date": "2017-09-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.512}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.272}, {"date": "2017-09-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.517}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.276}, {"date": "2017-09-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.522}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.276}, {"date": "2017-10-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.52}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.276}, {"date": "2017-10-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.521}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.275}, {"date": "2017-10-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.514}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.271}, {"date": "2017-10-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.508}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.272}, {"date": "2017-10-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.506}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.268}, {"date": "2017-11-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.498}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.273}, {"date": "2017-11-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.5}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.275}, {"date": "2017-11-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.507}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.277}, {"date": "2017-11-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.51}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.278}, {"date": "2017-12-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.514}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.278}, {"date": "2017-12-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.515}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.281}, {"date": "2017-12-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.519}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.277}, {"date": "2017-12-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.513}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.278}, {"date": "2018-01-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.515}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.28}, {"date": "2018-01-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.518}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.274}, {"date": "2018-01-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.511}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.278}, {"date": "2018-01-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.518}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.275}, {"date": "2018-01-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.515}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.277}, {"date": "2018-02-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.512}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.281}, {"date": "2018-02-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.518}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.286}, {"date": "2018-02-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.525}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.282}, {"date": "2018-02-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.521}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.285}, {"date": "2018-03-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.524}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.284}, {"date": "2018-03-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.519}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.283}, {"date": "2018-03-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.516}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.28}, {"date": "2018-03-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.513}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.279}, {"date": "2018-04-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.512}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.283}, {"date": "2018-04-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.515}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.278}, {"date": "2018-04-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.509}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.277}, {"date": "2018-04-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.512}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.271}, {"date": "2018-04-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.507}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.274}, {"date": "2018-05-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.509}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.076}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.339}, {"date": "2018-05-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.579}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.076}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.334}, {"date": "2018-05-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.574}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.334}, {"date": "2018-05-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.574}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.345}, {"date": "2018-06-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.584}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.348}, {"date": "2018-06-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.584}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.351}, {"date": "2018-06-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.591}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.356}, {"date": "2018-06-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.599}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.353}, {"date": "2018-07-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.595}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.35}, {"date": "2018-07-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.597}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.344}, {"date": "2018-07-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.586}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.349}, {"date": "2018-07-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.595}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.343}, {"date": "2018-07-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.587}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.339}, {"date": "2018-08-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.583}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.341}, {"date": "2018-08-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.585}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.35}, {"date": "2018-08-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.586}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.349}, {"date": "2018-08-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.585}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.351}, {"date": "2018-09-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.592}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.351}, {"date": "2018-09-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.593}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.353}, {"date": "2018-09-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.594}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.351}, {"date": "2018-09-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.592}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.081}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.357}, {"date": "2018-10-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.602}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.081}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.36}, {"date": "2018-10-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.601}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.082}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.37}, {"date": "2018-10-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.609}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.38}, {"date": "2018-10-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.622}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.385}, {"date": "2018-10-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.626}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.393}, {"date": "2018-11-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.636}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.4}, {"date": "2018-11-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.64}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.411}, {"date": "2018-11-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.647}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.426}, {"date": "2018-11-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.664}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.432}, {"date": "2018-12-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.668}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.421}, {"date": "2018-12-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.658}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.424}, {"date": "2018-12-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.661}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.429}, {"date": "2018-12-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.666}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.431}, {"date": "2018-12-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.668}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.425}, {"date": "2019-01-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.669}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.413}, {"date": "2019-01-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.66}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.41}, {"date": "2019-01-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.651}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.394}, {"date": "2019-01-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.643}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.39}, {"date": "2019-02-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.641}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.381}, {"date": "2019-02-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.636}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.371}, {"date": "2019-02-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.623}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.081}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.349}, {"date": "2019-02-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.608}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.08}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.346}, {"date": "2019-03-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.598}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.336}, {"date": "2019-03-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.588}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.077}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.331}, {"date": "2019-03-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.587}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.078}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.337}, {"date": "2019-03-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.589}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.079}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.343}, {"date": "2019-04-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.595}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.081}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.358}, {"date": "2019-04-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.609}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.37}, {"date": "2019-04-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.621}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.38}, {"date": "2019-04-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.633}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.383}, {"date": "2019-04-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.636}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.389}, {"date": "2019-05-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.64}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.392}, {"date": "2019-05-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.648}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.393}, {"date": "2019-05-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.647}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.39}, {"date": "2019-05-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.649}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.387}, {"date": "2019-06-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.64}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.402}, {"date": "2019-06-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.651}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.409}, {"date": "2019-06-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.656}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.397}, {"date": "2019-06-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.646}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.382}, {"date": "2019-07-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.63}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.374}, {"date": "2019-07-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.623}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.081}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.358}, {"date": "2019-07-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.613}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.366}, {"date": "2019-07-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.618}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.083}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.369}, {"date": "2019-07-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.624}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.374}, {"date": "2019-08-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.629}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.386}, {"date": "2019-08-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.642}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.384}, {"date": "2019-08-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.642}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.391}, {"date": "2019-08-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.645}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.397}, {"date": "2019-09-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.652}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.4}, {"date": "2019-09-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.652}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.398}, {"date": "2019-09-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.651}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.394}, {"date": "2019-09-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.642}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.095}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.44}, {"date": "2019-09-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.699}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.452}, {"date": "2019-10-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.711}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.456}, {"date": "2019-10-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.716}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.451}, {"date": "2019-10-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.702}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.45}, {"date": "2019-10-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.702}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.459}, {"date": "2019-11-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.708}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.452}, {"date": "2019-11-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.706}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.444}, {"date": "2019-11-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.699}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.436}, {"date": "2019-11-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.685}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.424}, {"date": "2019-12-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.674}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.42}, {"date": "2019-12-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.669}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.419}, {"date": "2019-12-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.668}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.411}, {"date": "2019-12-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.659}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.397}, {"date": "2019-12-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.638}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.395}, {"date": "2020-01-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.636}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.394}, {"date": "2020-01-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.639}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.403}, {"date": "2020-01-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.646}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.405}, {"date": "2020-01-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.657}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.417}, {"date": "2020-02-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.67}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.423}, {"date": "2020-02-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.676}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.413}, {"date": "2020-02-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.663}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.402}, {"date": "2020-02-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.656}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.415}, {"date": "2020-03-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.67}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.423}, {"date": "2020-03-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.679}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.095}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.441}, {"date": "2020-03-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.693}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.46}, {"date": "2020-03-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.697}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.468}, {"date": "2020-03-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.711}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.468}, {"date": "2020-04-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.711}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.463}, {"date": "2020-04-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.709}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.463}, {"date": "2020-04-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.707}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.453}, {"date": "2020-04-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.705}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.432}, {"date": "2020-05-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.69}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.406}, {"date": "2020-05-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.668}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.408}, {"date": "2020-05-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.675}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.403}, {"date": "2020-05-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.658}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.406}, {"date": "2020-06-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.664}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.398}, {"date": "2020-06-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.65}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.397}, {"date": "2020-06-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.647}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.392}, {"date": "2020-06-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.644}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.389}, {"date": "2020-06-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.638}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.394}, {"date": "2020-07-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.644}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.394}, {"date": "2020-07-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.647}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.398}, {"date": "2020-07-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.65}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.407}, {"date": "2020-07-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.663}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.411}, {"date": "2020-08-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.658}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.412}, {"date": "2020-08-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.66}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.411}, {"date": "2020-08-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.663}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.413}, {"date": "2020-08-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.66}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.407}, {"date": "2020-08-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.655}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.413}, {"date": "2020-09-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.661}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.417}, {"date": "2020-09-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.668}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.414}, {"date": "2020-09-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.668}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.414}, {"date": "2020-09-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.662}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.411}, {"date": "2020-10-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.661}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.412}, {"date": "2020-10-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.662}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.415}, {"date": "2020-10-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.665}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.416}, {"date": "2020-10-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.667}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.421}, {"date": "2020-11-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.674}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.421}, {"date": "2020-11-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.675}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.421}, {"date": "2020-11-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.672}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.423}, {"date": "2020-11-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.677}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.42}, {"date": "2020-11-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.672}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.411}, {"date": "2020-12-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.664}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.407}, {"date": "2020-12-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.663}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.394}, {"date": "2020-12-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.647}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.391}, {"date": "2020-12-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.646}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.39}, {"date": "2021-01-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.646}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.385}, {"date": "2021-01-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.642}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.38}, {"date": "2021-01-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.635}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.384}, {"date": "2021-01-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.641}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.383}, {"date": "2021-02-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.642}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.386}, {"date": "2021-02-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.643}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.389}, {"date": "2021-02-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.64}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.084}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.373}, {"date": "2021-02-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.63}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.085}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.373}, {"date": "2021-03-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.633}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.086}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.379}, {"date": "2021-03-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.639}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.087}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.388}, {"date": "2021-03-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.642}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.4}, {"date": "2021-03-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.651}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.089}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.399}, {"date": "2021-03-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.654}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.088}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.402}, {"date": "2021-04-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.654}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.41}, {"date": "2021-04-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.661}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.412}, {"date": "2021-04-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.662}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.411}, {"date": "2021-04-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.664}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.091}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.413}, {"date": "2021-05-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.667}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.411}, {"date": "2021-05-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.663}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.09}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.412}, {"date": "2021-05-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.66}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.425}, {"date": "2021-05-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.67}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.423}, {"date": "2021-05-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.672}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.428}, {"date": "2021-06-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.677}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.092}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.419}, {"date": "2021-06-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.675}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.429}, {"date": "2021-06-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.684}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.433}, {"date": "2021-06-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.686}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.437}, {"date": "2021-07-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.684}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.44}, {"date": "2021-07-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.686}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.439}, {"date": "2021-07-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.686}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.448}, {"date": "2021-07-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.693}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.448}, {"date": "2021-08-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.702}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.452}, {"date": "2021-08-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.702}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.455}, {"date": "2021-08-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.708}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.461}, {"date": "2021-08-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.708}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.46}, {"date": "2021-08-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.714}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.452}, {"date": "2021-09-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.703}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.097}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.453}, {"date": "2021-09-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.703}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.448}, {"date": "2021-09-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.699}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.45}, {"date": "2021-09-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.701}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.095}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.445}, {"date": "2021-10-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.696}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.43}, {"date": "2021-10-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.685}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.429}, {"date": "2021-10-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.685}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.426}, {"date": "2021-10-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.688}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.432}, {"date": "2021-11-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.694}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.095}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.432}, {"date": "2021-11-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.691}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.442}, {"date": "2021-11-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.704}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.448}, {"date": "2021-11-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.712}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.451}, {"date": "2021-11-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.715}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.099}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.459}, {"date": "2021-12-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.722}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.099}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.461}, {"date": "2021-12-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.724}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.1}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.468}, {"date": "2021-12-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.729}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.1}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.468}, {"date": "2021-12-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.733}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.1}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.465}, {"date": "2022-01-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.731}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.099}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.457}, {"date": "2022-01-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.725}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.452}, {"date": "2022-01-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.722}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.098}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.446}, {"date": "2022-01-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.717}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.096}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.436}, {"date": "2022-01-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.71}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.423}, {"date": "2022-02-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.697}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.421}, {"date": "2022-02-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.693}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.424}, {"date": "2022-02-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.691}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.093}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.417}, {"date": "2022-02-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.688}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.094}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.422}, {"date": "2022-03-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.696}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.099}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.45}, {"date": "2022-03-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.723}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.48}, {"date": "2022-03-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.753}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.483}, {"date": "2022-03-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.754}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.489}, {"date": "2022-04-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.761}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.105}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.496}, {"date": "2022-04-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.763}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.491}, {"date": "2022-04-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.765}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.48}, {"date": "2022-04-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.762}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.475}, {"date": "2022-05-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.757}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.1}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.451}, {"date": "2022-05-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.742}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.1}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.45}, {"date": "2022-05-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.749}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.101}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.447}, {"date": "2022-05-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.753}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.103}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.459}, {"date": "2022-05-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.775}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.101}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.444}, {"date": "2022-06-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.759}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.101}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.449}, {"date": "2022-06-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.756}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.466}, {"date": "2022-06-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.774}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.483}, {"date": "2022-06-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.792}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.49}, {"date": "2022-07-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.804}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.501}, {"date": "2022-07-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.796}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.109}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.504}, {"date": "2022-07-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.795}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.11}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.506}, {"date": "2022-07-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.81}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.511}, {"date": "2022-08-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.825}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.515}, {"date": "2022-08-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.832}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.515}, {"date": "2022-08-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.836}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.514}, {"date": "2022-08-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.833}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.507}, {"date": "2022-08-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.827}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.516}, {"date": "2022-09-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.839}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.527}, {"date": "2022-09-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.859}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.54}, {"date": "2022-09-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.869}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.564}, {"date": "2022-09-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.887}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.127}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.589}, {"date": "2022-10-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.936}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.558}, {"date": "2022-10-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.899}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.554}, {"date": "2022-10-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.88}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.545}, {"date": "2022-10-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.87}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.52}, {"date": "2022-10-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.858}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.5}, {"date": "2022-11-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.845}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.508}, {"date": "2022-11-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.853}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.519}, {"date": "2022-11-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.859}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.519}, {"date": "2022-11-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.849}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.511}, {"date": "2022-12-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.842}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.509}, {"date": "2022-12-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.841}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.508}, {"date": "2022-12-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.84}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.502}, {"date": "2022-12-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.834}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.477}, {"date": "2023-01-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.805}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.468}, {"date": "2023-01-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.796}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.472}, {"date": "2023-01-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.786}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.104}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.465}, {"date": "2023-01-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.774}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.105}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.465}, {"date": "2023-01-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.781}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.108}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.487}, {"date": "2023-02-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.802}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.512}, {"date": "2023-02-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.822}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.529}, {"date": "2023-02-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.836}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.532}, {"date": "2023-02-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.847}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.527}, {"date": "2023-03-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.85}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.514}, {"date": "2023-03-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.828}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.513}, {"date": "2023-03-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.825}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.513}, {"date": "2023-03-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.826}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.109}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.491}, {"date": "2023-04-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.808}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.107}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.473}, {"date": "2023-04-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.795}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.106}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.471}, {"date": "2023-04-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.795}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.109}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.486}, {"date": "2023-04-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.813}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.494}, {"date": "2023-05-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.824}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.5}, {"date": "2023-05-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.829}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.495}, {"date": "2023-05-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.823}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.111}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.495}, {"date": "2023-05-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.827}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.501}, {"date": "2023-05-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.835}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.51}, {"date": "2023-06-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.843}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.51}, {"date": "2023-06-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.833}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.113}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.514}, {"date": "2023-06-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.837}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.518}, {"date": "2023-06-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.839}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.527}, {"date": "2023-07-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.852}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.535}, {"date": "2023-07-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.859}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.528}, {"date": "2023-07-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.853}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.522}, {"date": "2023-07-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.847}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.506}, {"date": "2023-07-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.825}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.504}, {"date": "2023-08-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.827}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.112}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.503}, {"date": "2023-08-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.833}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.525}, {"date": "2023-08-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.849}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.536}, {"date": "2023-08-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.87}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.54}, {"date": "2023-09-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.865}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.545}, {"date": "2023-09-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.872}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.568}, {"date": "2023-09-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.897}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.126}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.586}, {"date": "2023-09-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.921}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.132}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.616}, {"date": "2023-10-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.961}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.13}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.609}, {"date": "2023-10-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.943}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.13}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.601}, {"date": "2023-10-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.946}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.127}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.584}, {"date": "2023-10-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.932}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.127}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.58}, {"date": "2023-10-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.927}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.566}, {"date": "2023-11-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.916}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.559}, {"date": "2023-11-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.913}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.125}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.561}, {"date": "2023-11-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.92}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.125}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.563}, {"date": "2023-11-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.919}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.56}, {"date": "2023-12-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.907}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.546}, {"date": "2023-12-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.906}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.549}, {"date": "2023-12-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.904}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.547}, {"date": "2023-12-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.898}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.557}, {"date": "2024-01-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.911}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.559}, {"date": "2024-01-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.91}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.541}, {"date": "2024-01-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.889}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.529}, {"date": "2024-01-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.88}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.531}, {"date": "2024-01-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.876}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.527}, {"date": "2024-02-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.873}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.117}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.515}, {"date": "2024-02-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.867}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.513}, {"date": "2024-02-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.859}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.514}, {"date": "2024-02-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.861}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.516}, {"date": "2024-03-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.864}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.513}, {"date": "2024-03-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.864}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.51}, {"date": "2024-03-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.857}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.51}, {"date": "2024-03-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.858}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.524}, {"date": "2024-04-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.876}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.533}, {"date": "2024-04-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.894}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.543}, {"date": "2024-04-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.908}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.543}, {"date": "2024-04-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.906}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.542}, {"date": "2024-04-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.913}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.551}, {"date": "2024-05-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.907}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.542}, {"date": "2024-05-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.905}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.542}, {"date": "2024-05-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.901}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.535}, {"date": "2024-05-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.902}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.543}, {"date": "2024-06-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.901}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.541}, {"date": "2024-06-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.902}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.541}, {"date": "2024-06-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.891}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.527}, {"date": "2024-06-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.881}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.511}, {"date": "2024-07-01", "fuel": "gasoline", "grade": "premium", "price_premium": 0.865}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "all", "price_premium": 0.119}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.524}, {"date": "2024-07-08", "fuel": "gasoline", "grade": "premium", "price_premium": 0.878}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.518}, {"date": "2024-07-15", "fuel": "gasoline", "grade": "premium", "price_premium": 0.875}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.503}, {"date": "2024-07-22", "fuel": "gasoline", "grade": "premium", "price_premium": 0.86}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "all", "price_premium": 0.114}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.498}, {"date": "2024-07-29", "fuel": "gasoline", "grade": "premium", "price_premium": 0.849}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.115}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.507}, {"date": "2024-08-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.854}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.116}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.512}, {"date": "2024-08-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.86}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.118}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.524}, {"date": "2024-08-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.87}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.12}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.529}, {"date": "2024-08-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.888}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.546}, {"date": "2024-09-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.907}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.555}, {"date": "2024-09-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.917}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.127}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.575}, {"date": "2024-09-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.939}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.126}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.566}, {"date": "2024-09-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.923}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.559}, {"date": "2024-09-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.915}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.556}, {"date": "2024-10-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.913}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.548}, {"date": "2024-10-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.906}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.556}, {"date": "2024-10-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.914}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.557}, {"date": "2024-10-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.915}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.547}, {"date": "2024-11-04", "fuel": "gasoline", "grade": "premium", "price_premium": 0.908}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "all", "price_premium": 0.124}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.561}, {"date": "2024-11-11", "fuel": "gasoline", "grade": "premium", "price_premium": 0.912}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.547}, {"date": "2024-11-18", "fuel": "gasoline", "grade": "premium", "price_premium": 0.9}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.542}, {"date": "2024-11-25", "fuel": "gasoline", "grade": "premium", "price_premium": 0.906}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.54}, {"date": "2024-12-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.903}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.55}, {"date": "2024-12-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.906}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.54}, {"date": "2024-12-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.895}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.54}, {"date": "2024-12-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.891}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "all", "price_premium": 0.122}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.548}, {"date": "2024-12-30", "fuel": "gasoline", "grade": "premium", "price_premium": 0.901}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.54}, {"date": "2025-01-06", "fuel": "gasoline", "grade": "premium", "price_premium": 0.888}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.542}, {"date": "2025-01-13", "fuel": "gasoline", "grade": "premium", "price_premium": 0.896}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "all", "price_premium": 0.12}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.533}, {"date": "2025-01-20", "fuel": "gasoline", "grade": "premium", "price_premium": 0.889}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "all", "price_premium": 0.121}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.541}, {"date": "2025-01-27", "fuel": "gasoline", "grade": "premium", "price_premium": 0.896}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.123}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.551}, {"date": "2025-02-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.908}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.125}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.557}, {"date": "2025-02-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.922}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.128}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.575}, {"date": "2025-02-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.94}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.13}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.581}, {"date": "2025-02-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.95}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "all", "price_premium": 0.128}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.576}, {"date": "2025-03-03", "fuel": "gasoline", "grade": "premium", "price_premium": 0.944}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "all", "price_premium": 0.128}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.571}, {"date": "2025-03-10", "fuel": "gasoline", "grade": "premium", "price_premium": 0.936}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "all", "price_premium": 0.126}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.569}, {"date": "2025-03-17", "fuel": "gasoline", "grade": "premium", "price_premium": 0.931}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "all", "price_premium": 0.125}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.559}, {"date": "2025-03-24", "fuel": "gasoline", "grade": "premium", "price_premium": 0.917}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "all", "price_premium": 0.126}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.568}, {"date": "2025-03-31", "fuel": "gasoline", "grade": "premium", "price_premium": 0.931}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "all", "price_premium": 0.127}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.572}, {"date": "2025-04-07", "fuel": "gasoline", "grade": "premium", "price_premium": 0.931}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "all", "price_premium": 0.127}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.575}, {"date": "2025-04-14", "fuel": "gasoline", "grade": "premium", "price_premium": 0.935}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "all", "price_premium": 0.127}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.577}, {"date": "2025-04-21", "fuel": "gasoline", "grade": "premium", "price_premium": 0.933}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "all", "price_premium": 0.128}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.58}, {"date": "2025-04-28", "fuel": "gasoline", "grade": "premium", "price_premium": 0.938}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "all", "price_premium": 0.126}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.568}, {"date": "2025-05-05", "fuel": "gasoline", "grade": "premium", "price_premium": 0.925}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "all", "price_premium": 0.129}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.583}, {"date": "2025-05-12", "fuel": "gasoline", "grade": "premium", "price_premium": 0.948}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "all", "price_premium": 0.129}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.583}, {"date": "2025-05-19", "fuel": "gasoline", "grade": "premium", "price_premium": 0.943}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "all", "price_premium": 0.128}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.58}, {"date": "2025-05-26", "fuel": "gasoline", "grade": "premium", "price_premium": 0.942}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "all", "price_premium": 0.129}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.585}, {"date": "2025-06-02", "fuel": "gasoline", "grade": "premium", "price_premium": 0.942}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "all", "price_premium": 0.127}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.579}, {"date": "2025-06-09", "fuel": "gasoline", "grade": "premium", "price_premium": 0.929}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "all", "price_premium": 0.126}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.572}, {"date": "2025-06-16", "fuel": "gasoline", "grade": "premium", "price_premium": 0.923}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "all", "price_premium": 0.125}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "midgrade", "price_premium": 0.562}, {"date": "2025-06-23", "fuel": "gasoline", "grade": "premium", "price_premium": 0.915}], "metadata": {"date": {"type": "date", "semanticType": "Date"}, "fuel": {"type": "string", "semanticType": "String"}, "grade": {"type": "string", "semanticType": "String", "levels": ["all", "midgrade", "premium"]}, "price_premium": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas):\n # Filter for 'all' formulation to avoid duplicates and focus on overall prices\n df_filtered = df_gas[df_gas['formulation'] == 'all'].copy()\n \n # Get regular grade prices as baseline\n df_regular = df_filtered[df_filtered['grade'] == 'regular'][['date', 'fuel', 'price']].rename(columns={'price': 'regular_price'})\n \n # Get all non-regular grades\n df_premium_grades = df_filtered[df_filtered['grade'] != 'regular'][['date', 'fuel', 'grade', 'price']].copy()\n \n # Merge to calculate premium\n df_merged = df_premium_grades.merge(df_regular, on=['date', 'fuel'], how='left')\n \n # Calculate price premium\n df_merged['price_premium'] = df_merged['price'] - df_merged['regular_price']\n \n # Select output fields\n transformed_df = df_merged[['date', 'fuel', 'grade', 'price_premium']].copy()\n \n # Remove rows with missing premium values\n transformed_df = transformed_df.dropna(subset=['price_premium'])\n \n return transformed_df\n", "source": ["weekly_gas_prices"], "dialog": [{"content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhich **fuel grade** commands the highest **price premium** and how has this premium evolved?", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Analyze which fuel grade commands the highest price premium compared to regular grade, and visualize how this premium has evolved over time.\",\n \"display_instruction\": \"Compare **price premium** across **fuel grades** over time\",\n \"recommendation\": \"Calculate the price premium for each fuel grade by comparing it to the regular grade baseline for the same date and fuel type. This will show both the absolute premium values and their trends over time.\",\n \"output_fields\": [\"date\", \"fuel\", \"grade\", \"price_premium\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"price_premium\",\n \"color\": \"grade\",\n \"facet\": \"fuel\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas):\n # Filter for 'all' formulation to avoid duplicates and focus on overall prices\n df_filtered = df_gas[df_gas['formulation'] == 'all'].copy()\n \n # Get regular grade prices as baseline\n df_regular = df_filtered[df_filtered['grade'] == 'regular'][['date', 'fuel', 'price']].rename(columns={'price': 'regular_price'})\n \n # Get all non-regular grades\n df_premium_grades = df_filtered[df_filtered['grade'] != 'regular'][['date', 'fuel', 'grade', 'price']].copy()\n \n # Merge to calculate premium\n df_merged = df_premium_grades.merge(df_regular, on=['date', 'fuel'], how='left')\n \n # Calculate price premium\n df_merged['price_premium'] = df_merged['price'] - df_merged['regular_price']\n \n # Select output fields\n transformed_df = df_merged[['date', 'fuel', 'grade', 'price_premium']].copy()\n \n # Remove rows with missing premium values\n transformed_df = transformed_df.dropna(subset=['price_premium'])\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "weekly_gas_prices", "resultTableId": "table-906894", "chart": {"id": "chart-1760744911829", "chartType": "Auto", "encodingMap": {}, "tableRef": "weekly_gas_prices", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "Which **fuel grade** commands the highest **price premium** and how has this premium evolved?", "displayContent": "Compare **price premium** across **fuel grades** over time"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Filter the dataset to only include entries where **formulation** is `'all'` to avoid duplicate records and focus on overall price data\n- Extract **regular grade** prices as a baseline, creating a reference table with **date**, **fuel**, and **regular_price**\n- Extract all **non-regular grades** (such as **premium**, **midgrade**, etc.) with their corresponding **date**, **fuel**, **grade**, and **price**\n- Merge the non-regular grades with the regular grade baseline by matching on **date** and **fuel** type\n- Calculate the **price_premium** for each non-regular grade by subtracting the **regular_price** from the grade's **price**\n- Select the final output fields: **date**, **fuel**, **grade**, and **price_premium**\n- Remove any rows with missing **price_premium** values to ensure data completeness", "concepts": [{"explanation": "The additional cost of a specific fuel grade compared to regular grade fuel. Calculated as: \\( \\text{price\\_premium} = \\text{price}_{\\text{grade}} - \\text{price}_{\\text{regular}} \\). This metric indicates how much more consumers pay for higher-quality fuel grades (premium, midgrade, etc.) relative to the baseline regular grade on the same date and for the same fuel type.", "field": "price_premium"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas):\n # Filter for 'all' formulation to avoid duplicates and focus on overall prices\n df_filtered = df_gas[df_gas['formulation'] == 'all'].copy()\n \n # Get regular grade prices as baseline\n df_regular = df_filtered[df_filtered['grade'] == 'regular'][['date', 'fuel', 'price']].rename(columns={'price': 'regular_price'})\n \n # Get all non-regular grades\n df_premium_grades = df_filtered[df_filtered['grade'] != 'regular'][['date', 'fuel', 'grade', 'price']].copy()\n \n # Merge to calculate premium\n df_merged = df_premium_grades.merge(df_regular, on=['date', 'fuel'], how='left')\n \n # Calculate price premium\n df_merged['price_premium'] = df_merged['price'] - df_merged['regular_price']\n \n # Select output fields\n transformed_df = df_merged[['date', 'fuel', 'grade', 'price_premium']].copy()\n \n # Remove rows with missing premium values\n transformed_df = transformed_df.dropna(subset=['price_premium'])\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Filter the dataset to only include entries where **formulation** is `'all'` to avoid duplicate records and focus on overall price data\n- Extract **regular grade** prices as a baseline, creating a reference table with **date**, **fuel**, and **regular_price**\n- Extract all **non-regular grades** (such as **premium**, **midgrade**, etc.) with their corresponding **date**, **fuel**, **grade**, and **price**\n- Merge the non-regular grades with the regular grade baseline by matching on **date** and **fuel** type\n- Calculate the **price_premium** for each non-regular grade by subtracting the **regular_price** from the grade's **price**\n- Select the final output fields: **date**, **fuel**, **grade**, and **price_premium**\n- Remove any rows with missing **price_premium** values to ensure data completeness\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"price_premium\",\n \"explanation\": \"The additional cost of a specific fuel grade compared to regular grade fuel. Calculated as: \\\\( \\\\text{price\\\\_premium} = \\\\text{price}_{\\\\text{grade}} - \\\\text{price}_{\\\\text{regular}} \\\\). This metric indicates how much more consumers pay for higher-quality fuel grades (premium, midgrade, etc.) relative to the baseline regular grade on the same date and for the same fuel type.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-922023", "displayId": "fuel-price-yoy", "names": ["date", "fuel", "current_price", "yoy_price", "absolute_change", "percentage_change"], "rows": [{"date": "1995-03-20", "fuel": "diesel", "current_price": 1.085, "yoy_price": 1.106, "absolute_change": -0.021, "percentage_change": -1.8987341772}, {"date": "1995-03-27", "fuel": "diesel", "current_price": 1.088, "yoy_price": 1.107, "absolute_change": -0.019, "percentage_change": -1.7163504968}, {"date": "1995-04-03", "fuel": "diesel", "current_price": 1.094, "yoy_price": 1.109, "absolute_change": -0.015, "percentage_change": -1.3525698828}, {"date": "1995-04-10", "fuel": "diesel", "current_price": 1.101, "yoy_price": 1.108, "absolute_change": -0.007, "percentage_change": -0.6317689531}, {"date": "1995-04-17", "fuel": "diesel", "current_price": 1.106, "yoy_price": 1.105, "absolute_change": 0.001, "percentage_change": 0.0904977376}, {"date": "1995-04-24", "fuel": "diesel", "current_price": 1.115, "yoy_price": 1.106, "absolute_change": 0.009, "percentage_change": 0.8137432188}, {"date": "1995-05-01", "fuel": "diesel", "current_price": 1.119, "yoy_price": 1.104, "absolute_change": 0.015, "percentage_change": 1.3586956522}, {"date": "1995-05-08", "fuel": "diesel", "current_price": 1.126, "yoy_price": 1.101, "absolute_change": 0.025, "percentage_change": 2.2706630336}, {"date": "1995-05-15", "fuel": "diesel", "current_price": 1.126, "yoy_price": 1.099, "absolute_change": 0.027, "percentage_change": 2.4567788899}, {"date": "1995-05-22", "fuel": "diesel", "current_price": 1.124, "yoy_price": 1.099, "absolute_change": 0.025, "percentage_change": 2.2747952684}, {"date": "1995-05-29", "fuel": "diesel", "current_price": 1.13, "yoy_price": 1.098, "absolute_change": 0.032, "percentage_change": 2.9143897996}, {"date": "1995-06-05", "fuel": "diesel", "current_price": 1.124, "yoy_price": 1.101, "absolute_change": 0.023, "percentage_change": 2.0890099909}, {"date": "1995-06-12", "fuel": "diesel", "current_price": 1.122, "yoy_price": 1.098, "absolute_change": 0.024, "percentage_change": 2.1857923497}, {"date": "1995-06-19", "fuel": "diesel", "current_price": 1.117, "yoy_price": 1.103, "absolute_change": 0.014, "percentage_change": 1.2692656392}, {"date": "1995-06-26", "fuel": "diesel", "current_price": 1.112, "yoy_price": 1.108, "absolute_change": 0.004, "percentage_change": 0.3610108303}, {"date": "1995-07-03", "fuel": "diesel", "current_price": 1.106, "yoy_price": 1.109, "absolute_change": -0.003, "percentage_change": -0.2705139766}, {"date": "1995-07-10", "fuel": "diesel", "current_price": 1.103, "yoy_price": 1.11, "absolute_change": -0.007, "percentage_change": -0.6306306306}, {"date": "1995-07-17", "fuel": "diesel", "current_price": 1.099, "yoy_price": 1.111, "absolute_change": -0.012, "percentage_change": -1.0801080108}, {"date": "1995-07-24", "fuel": "diesel", "current_price": 1.098, "yoy_price": 1.111, "absolute_change": -0.013, "percentage_change": -1.1701170117}, {"date": "1995-07-31", "fuel": "diesel", "current_price": 1.093, "yoy_price": 1.116, "absolute_change": -0.023, "percentage_change": -2.0609318996}, {"date": "1995-08-07", "fuel": "diesel", "current_price": 1.099, "yoy_price": 1.127, "absolute_change": -0.028, "percentage_change": -2.4844720497}, {"date": "1995-08-14", "fuel": "diesel", "current_price": 1.106, "yoy_price": 1.127, "absolute_change": -0.021, "percentage_change": -1.8633540373}, {"date": "1995-08-21", "fuel": "diesel", "current_price": 1.106, "yoy_price": 1.124, "absolute_change": -0.018, "percentage_change": -1.6014234875}, {"date": "1995-08-28", "fuel": "diesel", "current_price": 1.109, "yoy_price": 1.122, "absolute_change": -0.013, "percentage_change": -1.1586452763}, {"date": "1995-09-04", "fuel": "diesel", "current_price": 1.115, "yoy_price": 1.126, "absolute_change": -0.011, "percentage_change": -0.9769094139}, {"date": "1995-09-11", "fuel": "diesel", "current_price": 1.119, "yoy_price": 1.128, "absolute_change": -0.009, "percentage_change": -0.7978723404}, {"date": "1995-09-18", "fuel": "diesel", "current_price": 1.122, "yoy_price": 1.126, "absolute_change": -0.004, "percentage_change": -0.3552397869}, {"date": "1995-09-25", "fuel": "diesel", "current_price": 1.121, "yoy_price": 1.12, "absolute_change": 0.001, "percentage_change": 0.0892857143}, {"date": "1995-10-02", "fuel": "diesel", "current_price": 1.117, "yoy_price": 1.118, "absolute_change": -0.001, "percentage_change": -0.0894454383}, {"date": "1995-10-09", "fuel": "diesel", "current_price": 1.117, "yoy_price": 1.117, "absolute_change": 0, "percentage_change": 0}, {"date": "1995-10-16", "fuel": "diesel", "current_price": 1.117, "yoy_price": 1.119, "absolute_change": -0.002, "percentage_change": -0.1787310098}, {"date": "1995-10-23", "fuel": "diesel", "current_price": 1.114, "yoy_price": 1.122, "absolute_change": -0.008, "percentage_change": -0.7130124777}, {"date": "1995-10-30", "fuel": "diesel", "current_price": 1.11, "yoy_price": 1.133, "absolute_change": -0.023, "percentage_change": -2.0300088261}, {"date": "1995-11-06", "fuel": "diesel", "current_price": 1.118, "yoy_price": 1.133, "absolute_change": -0.015, "percentage_change": -1.3239187996}, {"date": "1995-11-13", "fuel": "diesel", "current_price": 1.118, "yoy_price": 1.135, "absolute_change": -0.017, "percentage_change": -1.4977973568}, {"date": "1995-11-20", "fuel": "diesel", "current_price": 1.119, "yoy_price": 1.13, "absolute_change": -0.011, "percentage_change": -0.9734513274}, {"date": "1995-11-27", "fuel": "diesel", "current_price": 1.124, "yoy_price": 1.126, "absolute_change": -0.002, "percentage_change": -0.1776198934}, {"date": "1995-12-04", "fuel": "diesel", "current_price": 1.123, "yoy_price": 1.123, "absolute_change": 0, "percentage_change": 0}, {"date": "1995-12-11", "fuel": "diesel", "current_price": 1.124, "yoy_price": 1.114, "absolute_change": 0.01, "percentage_change": 0.8976660682}, {"date": "1995-12-18", "fuel": "diesel", "current_price": 1.13, "yoy_price": 1.109, "absolute_change": 0.021, "percentage_change": 1.8935978359}, {"date": "1995-12-25", "fuel": "diesel", "current_price": 1.141, "yoy_price": 1.106, "absolute_change": 0.035, "percentage_change": 3.164556962}, {"date": "1996-01-01", "fuel": "diesel", "current_price": 1.148, "yoy_price": 1.104, "absolute_change": 0.044, "percentage_change": 3.9855072464}, {"date": "1996-01-08", "fuel": "diesel", "current_price": 1.146, "yoy_price": 1.102, "absolute_change": 0.044, "percentage_change": 3.9927404719}, {"date": "1996-01-15", "fuel": "diesel", "current_price": 1.152, "yoy_price": 1.1, "absolute_change": 0.052, "percentage_change": 4.7272727273}, {"date": "1996-01-22", "fuel": "diesel", "current_price": 1.144, "yoy_price": 1.095, "absolute_change": 0.049, "percentage_change": 4.4748858447}, {"date": "1996-01-29", "fuel": "diesel", "current_price": 1.136, "yoy_price": 1.09, "absolute_change": 0.046, "percentage_change": 4.2201834862}, {"date": "1996-02-05", "fuel": "diesel", "current_price": 1.13, "yoy_price": 1.086, "absolute_change": 0.044, "percentage_change": 4.0515653775}, {"date": "1996-02-12", "fuel": "diesel", "current_price": 1.134, "yoy_price": 1.088, "absolute_change": 0.046, "percentage_change": 4.2279411765}, {"date": "1996-02-19", "fuel": "diesel", "current_price": 1.151, "yoy_price": 1.088, "absolute_change": 0.063, "percentage_change": 5.7904411765}, {"date": "1996-02-26", "fuel": "diesel", "current_price": 1.164, "yoy_price": 1.089, "absolute_change": 0.075, "percentage_change": 6.8870523416}, {"date": "1996-03-04", "fuel": "diesel", "current_price": 1.175, "yoy_price": 1.089, "absolute_change": 0.086, "percentage_change": 7.8971533517}, {"date": "1996-03-11", "fuel": "diesel", "current_price": 1.173, "yoy_price": 1.088, "absolute_change": 0.085, "percentage_change": 7.8125}, {"date": "1996-03-18", "fuel": "diesel", "current_price": 1.172, "yoy_price": 1.085, "absolute_change": 0.087, "percentage_change": 8.0184331797}, {"date": "1996-03-25", "fuel": "diesel", "current_price": 1.21, "yoy_price": 1.088, "absolute_change": 0.122, "percentage_change": 11.2132352941}, {"date": "1996-04-01", "fuel": "diesel", "current_price": 1.222, "yoy_price": 1.094, "absolute_change": 0.128, "percentage_change": 11.7001828154}, {"date": "1996-04-08", "fuel": "diesel", "current_price": 1.249, "yoy_price": 1.101, "absolute_change": 0.148, "percentage_change": 13.4423251589}, {"date": "1996-04-15", "fuel": "diesel", "current_price": 1.305, "yoy_price": 1.106, "absolute_change": 0.199, "percentage_change": 17.9927667269}, {"date": "1996-04-22", "fuel": "diesel", "current_price": 1.304, "yoy_price": 1.115, "absolute_change": 0.189, "percentage_change": 16.9506726457}, {"date": "1996-04-29", "fuel": "diesel", "current_price": 1.285, "yoy_price": 1.119, "absolute_change": 0.166, "percentage_change": 14.8346738159}, {"date": "1996-05-06", "fuel": "diesel", "current_price": 1.292, "yoy_price": 1.126, "absolute_change": 0.166, "percentage_change": 14.7424511545}, {"date": "1996-05-13", "fuel": "diesel", "current_price": 1.285, "yoy_price": 1.126, "absolute_change": 0.159, "percentage_change": 14.1207815275}, {"date": "1996-05-20", "fuel": "diesel", "current_price": 1.274, "yoy_price": 1.124, "absolute_change": 0.15, "percentage_change": 13.3451957295}, {"date": "1996-05-27", "fuel": "diesel", "current_price": 1.254, "yoy_price": 1.13, "absolute_change": 0.124, "percentage_change": 10.9734513274}, {"date": "1996-06-03", "fuel": "diesel", "current_price": 1.24, "yoy_price": 1.124, "absolute_change": 0.116, "percentage_change": 10.3202846975}, {"date": "1996-06-10", "fuel": "diesel", "current_price": 1.215, "yoy_price": 1.122, "absolute_change": 0.093, "percentage_change": 8.2887700535}, {"date": "1996-06-17", "fuel": "diesel", "current_price": 1.193, "yoy_price": 1.117, "absolute_change": 0.076, "percentage_change": 6.8039391226}, {"date": "1996-06-24", "fuel": "diesel", "current_price": 1.179, "yoy_price": 1.112, "absolute_change": 0.067, "percentage_change": 6.0251798561}, {"date": "1996-07-01", "fuel": "diesel", "current_price": 1.172, "yoy_price": 1.106, "absolute_change": 0.066, "percentage_change": 5.9674502712}, {"date": "1996-07-08", "fuel": "diesel", "current_price": 1.173, "yoy_price": 1.103, "absolute_change": 0.07, "percentage_change": 6.3463281958}, {"date": "1996-07-15", "fuel": "diesel", "current_price": 1.178, "yoy_price": 1.099, "absolute_change": 0.079, "percentage_change": 7.1883530482}, {"date": "1996-07-22", "fuel": "diesel", "current_price": 1.184, "yoy_price": 1.098, "absolute_change": 0.086, "percentage_change": 7.8324225865}, {"date": "1996-07-29", "fuel": "diesel", "current_price": 1.178, "yoy_price": 1.093, "absolute_change": 0.085, "percentage_change": 7.7767612077}, {"date": "1996-08-05", "fuel": "diesel", "current_price": 1.184, "yoy_price": 1.099, "absolute_change": 0.085, "percentage_change": 7.7343039126}, {"date": "1996-08-12", "fuel": "diesel", "current_price": 1.191, "yoy_price": 1.106, "absolute_change": 0.085, "percentage_change": 7.6853526221}, {"date": "1996-08-19", "fuel": "diesel", "current_price": 1.206, "yoy_price": 1.106, "absolute_change": 0.1, "percentage_change": 9.0415913201}, {"date": "1996-08-26", "fuel": "diesel", "current_price": 1.222, "yoy_price": 1.109, "absolute_change": 0.113, "percentage_change": 10.1893597836}, {"date": "1996-09-02", "fuel": "diesel", "current_price": 1.231, "yoy_price": 1.115, "absolute_change": 0.116, "percentage_change": 10.4035874439}, {"date": "1996-09-09", "fuel": "diesel", "current_price": 1.25, "yoy_price": 1.119, "absolute_change": 0.131, "percentage_change": 11.7068811439}, {"date": "1996-09-16", "fuel": "diesel", "current_price": 1.276, "yoy_price": 1.122, "absolute_change": 0.154, "percentage_change": 13.7254901961}, {"date": "1996-09-23", "fuel": "diesel", "current_price": 1.277, "yoy_price": 1.121, "absolute_change": 0.156, "percentage_change": 13.9161462979}, {"date": "1996-09-30", "fuel": "diesel", "current_price": 1.289, "yoy_price": 1.117, "absolute_change": 0.172, "percentage_change": 15.3983885407}, {"date": "1996-10-07", "fuel": "diesel", "current_price": 1.308, "yoy_price": 1.117, "absolute_change": 0.191, "percentage_change": 17.0993733214}, {"date": "1996-10-14", "fuel": "diesel", "current_price": 1.326, "yoy_price": 1.117, "absolute_change": 0.209, "percentage_change": 18.7108325873}, {"date": "1996-10-21", "fuel": "diesel", "current_price": 1.329, "yoy_price": 1.114, "absolute_change": 0.215, "percentage_change": 19.2998204668}, {"date": "1996-10-28", "fuel": "diesel", "current_price": 1.329, "yoy_price": 1.11, "absolute_change": 0.219, "percentage_change": 19.7297297297}, {"date": "1996-11-04", "fuel": "diesel", "current_price": 1.323, "yoy_price": 1.118, "absolute_change": 0.205, "percentage_change": 18.3363148479}, {"date": "1996-11-11", "fuel": "diesel", "current_price": 1.316, "yoy_price": 1.118, "absolute_change": 0.198, "percentage_change": 17.71019678}, {"date": "1996-11-18", "fuel": "diesel", "current_price": 1.324, "yoy_price": 1.119, "absolute_change": 0.205, "percentage_change": 18.3199285076}, {"date": "1996-11-25", "fuel": "diesel", "current_price": 1.327, "yoy_price": 1.124, "absolute_change": 0.203, "percentage_change": 18.0604982206}, {"date": "1996-12-02", "fuel": "diesel", "current_price": 1.323, "yoy_price": 1.123, "absolute_change": 0.2, "percentage_change": 17.8094390027}, {"date": "1996-12-09", "fuel": "diesel", "current_price": 1.32, "yoy_price": 1.124, "absolute_change": 0.196, "percentage_change": 17.4377224199}, {"date": "1996-12-16", "fuel": "diesel", "current_price": 1.307, "yoy_price": 1.13, "absolute_change": 0.177, "percentage_change": 15.6637168142}, {"date": "1996-12-23", "fuel": "diesel", "current_price": 1.3, "yoy_price": 1.141, "absolute_change": 0.159, "percentage_change": 13.93514461}, {"date": "1996-12-30", "fuel": "diesel", "current_price": 1.295, "yoy_price": 1.148, "absolute_change": 0.147, "percentage_change": 12.8048780488}, {"date": "1997-01-06", "fuel": "diesel", "current_price": 1.291, "yoy_price": 1.146, "absolute_change": 0.145, "percentage_change": 12.6527050611}, {"date": "1997-01-13", "fuel": "diesel", "current_price": 1.296, "yoy_price": 1.152, "absolute_change": 0.144, "percentage_change": 12.5}, {"date": "1997-01-20", "fuel": "diesel", "current_price": 1.293, "yoy_price": 1.144, "absolute_change": 0.149, "percentage_change": 13.0244755245}, {"date": "1997-01-27", "fuel": "diesel", "current_price": 1.283, "yoy_price": 1.136, "absolute_change": 0.147, "percentage_change": 12.9401408451}, {"date": "1997-02-03", "fuel": "diesel", "current_price": 1.288, "yoy_price": 1.13, "absolute_change": 0.158, "percentage_change": 13.982300885}, {"date": "1997-02-10", "fuel": "diesel", "current_price": 1.285, "yoy_price": 1.134, "absolute_change": 0.151, "percentage_change": 13.315696649}, {"date": "1997-02-17", "fuel": "diesel", "current_price": 1.278, "yoy_price": 1.151, "absolute_change": 0.127, "percentage_change": 11.0338835795}, {"date": "1997-02-24", "fuel": "diesel", "current_price": 1.269, "yoy_price": 1.164, "absolute_change": 0.105, "percentage_change": 9.0206185567}, {"date": "1997-03-03", "fuel": "diesel", "current_price": 1.252, "yoy_price": 1.175, "absolute_change": 0.077, "percentage_change": 6.5531914894}, {"date": "1997-03-10", "fuel": "diesel", "current_price": 1.23, "yoy_price": 1.173, "absolute_change": 0.057, "percentage_change": 4.8593350384}, {"date": "1997-03-17", "fuel": "diesel", "current_price": 1.22, "yoy_price": 1.172, "absolute_change": 0.048, "percentage_change": 4.0955631399}, {"date": "1997-03-24", "fuel": "diesel", "current_price": 1.22, "yoy_price": 1.21, "absolute_change": 0.01, "percentage_change": 0.826446281}, {"date": "1997-03-31", "fuel": "diesel", "current_price": 1.225, "yoy_price": 1.222, "absolute_change": 0.003, "percentage_change": 0.2454991817}, {"date": "1997-04-07", "fuel": "diesel", "current_price": 1.217, "yoy_price": 1.249, "absolute_change": -0.032, "percentage_change": -2.5620496397}, {"date": "1997-04-14", "fuel": "diesel", "current_price": 1.216, "yoy_price": 1.305, "absolute_change": -0.089, "percentage_change": -6.8199233716}, {"date": "1997-04-21", "fuel": "diesel", "current_price": 1.211, "yoy_price": 1.304, "absolute_change": -0.093, "percentage_change": -7.1319018405}, {"date": "1997-04-28", "fuel": "diesel", "current_price": 1.205, "yoy_price": 1.285, "absolute_change": -0.08, "percentage_change": -6.2256809339}, {"date": "1997-05-05", "fuel": "diesel", "current_price": 1.205, "yoy_price": 1.292, "absolute_change": -0.087, "percentage_change": -6.73374613}, {"date": "1997-05-12", "fuel": "diesel", "current_price": 1.191, "yoy_price": 1.285, "absolute_change": -0.094, "percentage_change": -7.3151750973}, {"date": "1997-05-19", "fuel": "diesel", "current_price": 1.191, "yoy_price": 1.274, "absolute_change": -0.083, "percentage_change": -6.5149136578}, {"date": "1997-05-26", "fuel": "diesel", "current_price": 1.196, "yoy_price": 1.254, "absolute_change": -0.058, "percentage_change": -4.625199362}, {"date": "1997-06-02", "fuel": "diesel", "current_price": 1.19, "yoy_price": 1.24, "absolute_change": -0.05, "percentage_change": -4.0322580645}, {"date": "1997-06-09", "fuel": "diesel", "current_price": 1.187, "yoy_price": 1.215, "absolute_change": -0.028, "percentage_change": -2.304526749}, {"date": "1997-06-16", "fuel": "diesel", "current_price": 1.172, "yoy_price": 1.193, "absolute_change": -0.021, "percentage_change": -1.7602682313}, {"date": "1997-06-23", "fuel": "diesel", "current_price": 1.162, "yoy_price": 1.179, "absolute_change": -0.017, "percentage_change": -1.4418999152}, {"date": "1997-06-30", "fuel": "diesel", "current_price": 1.153, "yoy_price": 1.172, "absolute_change": -0.019, "percentage_change": -1.6211604096}, {"date": "1997-07-07", "fuel": "diesel", "current_price": 1.159, "yoy_price": 1.173, "absolute_change": -0.014, "percentage_change": -1.1935208866}, {"date": "1997-07-14", "fuel": "diesel", "current_price": 1.152, "yoy_price": 1.178, "absolute_change": -0.026, "percentage_change": -2.2071307301}, {"date": "1997-07-21", "fuel": "diesel", "current_price": 1.147, "yoy_price": 1.184, "absolute_change": -0.037, "percentage_change": -3.125}, {"date": "1997-07-28", "fuel": "diesel", "current_price": 1.145, "yoy_price": 1.178, "absolute_change": -0.033, "percentage_change": -2.8013582343}, {"date": "1997-08-04", "fuel": "diesel", "current_price": 1.155, "yoy_price": 1.184, "absolute_change": -0.029, "percentage_change": -2.4493243243}, {"date": "1997-08-11", "fuel": "diesel", "current_price": 1.168, "yoy_price": 1.191, "absolute_change": -0.023, "percentage_change": -1.9311502939}, {"date": "1997-08-18", "fuel": "diesel", "current_price": 1.167, "yoy_price": 1.206, "absolute_change": -0.039, "percentage_change": -3.2338308458}, {"date": "1997-08-25", "fuel": "diesel", "current_price": 1.169, "yoy_price": 1.222, "absolute_change": -0.053, "percentage_change": -4.3371522095}, {"date": "1997-09-01", "fuel": "diesel", "current_price": 1.165, "yoy_price": 1.231, "absolute_change": -0.066, "percentage_change": -5.3614947197}, {"date": "1997-09-08", "fuel": "diesel", "current_price": 1.163, "yoy_price": 1.25, "absolute_change": -0.087, "percentage_change": -6.96}, {"date": "1997-09-15", "fuel": "diesel", "current_price": 1.156, "yoy_price": 1.276, "absolute_change": -0.12, "percentage_change": -9.4043887147}, {"date": "1997-09-22", "fuel": "diesel", "current_price": 1.154, "yoy_price": 1.277, "absolute_change": -0.123, "percentage_change": -9.6319498825}, {"date": "1997-09-29", "fuel": "diesel", "current_price": 1.16, "yoy_price": 1.289, "absolute_change": -0.129, "percentage_change": -10.0077579519}, {"date": "1997-10-06", "fuel": "diesel", "current_price": 1.175, "yoy_price": 1.308, "absolute_change": -0.133, "percentage_change": -10.1681957187}, {"date": "1997-10-13", "fuel": "diesel", "current_price": 1.185, "yoy_price": 1.326, "absolute_change": -0.141, "percentage_change": -10.6334841629}, {"date": "1997-10-20", "fuel": "diesel", "current_price": 1.185, "yoy_price": 1.329, "absolute_change": -0.144, "percentage_change": -10.835214447}, {"date": "1997-10-27", "fuel": "diesel", "current_price": 1.185, "yoy_price": 1.329, "absolute_change": -0.144, "percentage_change": -10.835214447}, {"date": "1997-11-03", "fuel": "diesel", "current_price": 1.188, "yoy_price": 1.323, "absolute_change": -0.135, "percentage_change": -10.2040816327}, {"date": "1997-11-10", "fuel": "diesel", "current_price": 1.19, "yoy_price": 1.316, "absolute_change": -0.126, "percentage_change": -9.5744680851}, {"date": "1997-11-17", "fuel": "diesel", "current_price": 1.195, "yoy_price": 1.324, "absolute_change": -0.129, "percentage_change": -9.7432024169}, {"date": "1997-11-24", "fuel": "diesel", "current_price": 1.193, "yoy_price": 1.327, "absolute_change": -0.134, "percentage_change": -10.0979653353}, {"date": "1997-12-01", "fuel": "diesel", "current_price": 1.189, "yoy_price": 1.323, "absolute_change": -0.134, "percentage_change": -10.1284958428}, {"date": "1997-12-08", "fuel": "diesel", "current_price": 1.174, "yoy_price": 1.32, "absolute_change": -0.146, "percentage_change": -11.0606060606}, {"date": "1997-12-15", "fuel": "diesel", "current_price": 1.162, "yoy_price": 1.307, "absolute_change": -0.145, "percentage_change": -11.0941086458}, {"date": "1997-12-22", "fuel": "diesel", "current_price": 1.155, "yoy_price": 1.3, "absolute_change": -0.145, "percentage_change": -11.1538461538}, {"date": "1997-12-29", "fuel": "diesel", "current_price": 1.15, "yoy_price": 1.295, "absolute_change": -0.145, "percentage_change": -11.1969111969}, {"date": "1998-01-05", "fuel": "diesel", "current_price": 1.147, "yoy_price": 1.291, "absolute_change": -0.144, "percentage_change": -11.1541440744}, {"date": "1998-01-12", "fuel": "diesel", "current_price": 1.126, "yoy_price": 1.296, "absolute_change": -0.17, "percentage_change": -13.1172839506}, {"date": "1998-01-19", "fuel": "diesel", "current_price": 1.109, "yoy_price": 1.293, "absolute_change": -0.184, "percentage_change": -14.2304717711}, {"date": "1998-01-26", "fuel": "diesel", "current_price": 1.096, "yoy_price": 1.283, "absolute_change": -0.187, "percentage_change": -14.5752143414}, {"date": "1998-02-02", "fuel": "diesel", "current_price": 1.091, "yoy_price": 1.288, "absolute_change": -0.197, "percentage_change": -15.2950310559}, {"date": "1998-02-09", "fuel": "diesel", "current_price": 1.085, "yoy_price": 1.285, "absolute_change": -0.2, "percentage_change": -15.5642023346}, {"date": "1998-02-16", "fuel": "diesel", "current_price": 1.082, "yoy_price": 1.278, "absolute_change": -0.196, "percentage_change": -15.3364632238}, {"date": "1998-02-23", "fuel": "diesel", "current_price": 1.079, "yoy_price": 1.269, "absolute_change": -0.19, "percentage_change": -14.9724192277}, {"date": "1998-03-02", "fuel": "diesel", "current_price": 1.074, "yoy_price": 1.252, "absolute_change": -0.178, "percentage_change": -14.2172523962}, {"date": "1998-03-09", "fuel": "diesel", "current_price": 1.066, "yoy_price": 1.23, "absolute_change": -0.164, "percentage_change": -13.3333333333}, {"date": "1998-03-16", "fuel": "diesel", "current_price": 1.057, "yoy_price": 1.22, "absolute_change": -0.163, "percentage_change": -13.3606557377}, {"date": "1998-03-23", "fuel": "diesel", "current_price": 1.049, "yoy_price": 1.22, "absolute_change": -0.171, "percentage_change": -14.0163934426}, {"date": "1998-03-30", "fuel": "diesel", "current_price": 1.068, "yoy_price": 1.225, "absolute_change": -0.157, "percentage_change": -12.8163265306}, {"date": "1998-04-06", "fuel": "diesel", "current_price": 1.067, "yoy_price": 1.217, "absolute_change": -0.15, "percentage_change": -12.325390304}, {"date": "1998-04-13", "fuel": "diesel", "current_price": 1.065, "yoy_price": 1.216, "absolute_change": -0.151, "percentage_change": -12.4177631579}, {"date": "1998-04-20", "fuel": "diesel", "current_price": 1.065, "yoy_price": 1.211, "absolute_change": -0.146, "percentage_change": -12.0561519405}, {"date": "1998-04-27", "fuel": "diesel", "current_price": 1.07, "yoy_price": 1.205, "absolute_change": -0.135, "percentage_change": -11.2033195021}, {"date": "1998-05-04", "fuel": "diesel", "current_price": 1.072, "yoy_price": 1.205, "absolute_change": -0.133, "percentage_change": -11.0373443983}, {"date": "1998-05-11", "fuel": "diesel", "current_price": 1.075, "yoy_price": 1.191, "absolute_change": -0.116, "percentage_change": -9.7397145256}, {"date": "1998-05-18", "fuel": "diesel", "current_price": 1.069, "yoy_price": 1.191, "absolute_change": -0.122, "percentage_change": -10.2434928631}, {"date": "1998-05-25", "fuel": "diesel", "current_price": 1.06, "yoy_price": 1.196, "absolute_change": -0.136, "percentage_change": -11.3712374582}, {"date": "1998-06-01", "fuel": "diesel", "current_price": 1.053, "yoy_price": 1.19, "absolute_change": -0.137, "percentage_change": -11.512605042}, {"date": "1998-06-08", "fuel": "diesel", "current_price": 1.045, "yoy_price": 1.187, "absolute_change": -0.142, "percentage_change": -11.9629317607}, {"date": "1998-06-15", "fuel": "diesel", "current_price": 1.04, "yoy_price": 1.172, "absolute_change": -0.132, "percentage_change": -11.2627986348}, {"date": "1998-06-22", "fuel": "diesel", "current_price": 1.033, "yoy_price": 1.162, "absolute_change": -0.129, "percentage_change": -11.1015490534}, {"date": "1998-06-29", "fuel": "diesel", "current_price": 1.034, "yoy_price": 1.153, "absolute_change": -0.119, "percentage_change": -10.3209019948}, {"date": "1998-07-06", "fuel": "diesel", "current_price": 1.036, "yoy_price": 1.159, "absolute_change": -0.123, "percentage_change": -10.6125970664}, {"date": "1998-07-13", "fuel": "diesel", "current_price": 1.031, "yoy_price": 1.152, "absolute_change": -0.121, "percentage_change": -10.5034722222}, {"date": "1998-07-20", "fuel": "diesel", "current_price": 1.027, "yoy_price": 1.147, "absolute_change": -0.12, "percentage_change": -10.4620749782}, {"date": "1998-07-27", "fuel": "diesel", "current_price": 1.02, "yoy_price": 1.145, "absolute_change": -0.125, "percentage_change": -10.9170305677}, {"date": "1998-08-03", "fuel": "diesel", "current_price": 1.016, "yoy_price": 1.155, "absolute_change": -0.139, "percentage_change": -12.0346320346}, {"date": "1998-08-10", "fuel": "diesel", "current_price": 1.01, "yoy_price": 1.168, "absolute_change": -0.158, "percentage_change": -13.5273972603}, {"date": "1998-08-17", "fuel": "diesel", "current_price": 1.007, "yoy_price": 1.167, "absolute_change": -0.16, "percentage_change": -13.7103684662}, {"date": "1998-08-24", "fuel": "diesel", "current_price": 1.004, "yoy_price": 1.169, "absolute_change": -0.165, "percentage_change": -14.1146278871}, {"date": "1998-08-31", "fuel": "diesel", "current_price": 1, "yoy_price": 1.165, "absolute_change": -0.165, "percentage_change": -14.1630901288}, {"date": "1998-09-07", "fuel": "diesel", "current_price": 1.009, "yoy_price": 1.163, "absolute_change": -0.154, "percentage_change": -13.241616509}, {"date": "1998-09-14", "fuel": "diesel", "current_price": 1.019, "yoy_price": 1.156, "absolute_change": -0.137, "percentage_change": -11.8512110727}, {"date": "1998-09-21", "fuel": "diesel", "current_price": 1.03, "yoy_price": 1.154, "absolute_change": -0.124, "percentage_change": -10.7452339688}, {"date": "1998-09-28", "fuel": "diesel", "current_price": 1.039, "yoy_price": 1.16, "absolute_change": -0.121, "percentage_change": -10.4310344828}, {"date": "1998-10-05", "fuel": "diesel", "current_price": 1.041, "yoy_price": 1.175, "absolute_change": -0.134, "percentage_change": -11.4042553191}, {"date": "1998-10-12", "fuel": "diesel", "current_price": 1.041, "yoy_price": 1.185, "absolute_change": -0.144, "percentage_change": -12.1518987342}, {"date": "1998-10-19", "fuel": "diesel", "current_price": 1.036, "yoy_price": 1.185, "absolute_change": -0.149, "percentage_change": -12.5738396624}, {"date": "1998-10-26", "fuel": "diesel", "current_price": 1.036, "yoy_price": 1.185, "absolute_change": -0.149, "percentage_change": -12.5738396624}, {"date": "1998-11-02", "fuel": "diesel", "current_price": 1.035, "yoy_price": 1.188, "absolute_change": -0.153, "percentage_change": -12.8787878788}, {"date": "1998-11-09", "fuel": "diesel", "current_price": 1.034, "yoy_price": 1.19, "absolute_change": -0.156, "percentage_change": -13.1092436975}, {"date": "1998-11-16", "fuel": "diesel", "current_price": 1.026, "yoy_price": 1.195, "absolute_change": -0.169, "percentage_change": -14.1422594142}, {"date": "1998-11-23", "fuel": "diesel", "current_price": 1.012, "yoy_price": 1.193, "absolute_change": -0.181, "percentage_change": -15.1718357083}, {"date": "1998-11-30", "fuel": "diesel", "current_price": 1.004, "yoy_price": 1.189, "absolute_change": -0.185, "percentage_change": -15.559293524}, {"date": "1998-12-07", "fuel": "diesel", "current_price": 0.986, "yoy_price": 1.174, "absolute_change": -0.188, "percentage_change": -16.0136286201}, {"date": "1998-12-14", "fuel": "diesel", "current_price": 0.972, "yoy_price": 1.162, "absolute_change": -0.19, "percentage_change": -16.3511187608}, {"date": "1998-12-21", "fuel": "diesel", "current_price": 0.968, "yoy_price": 1.155, "absolute_change": -0.187, "percentage_change": -16.1904761905}, {"date": "1998-12-28", "fuel": "diesel", "current_price": 0.966, "yoy_price": 1.15, "absolute_change": -0.184, "percentage_change": -16}, {"date": "1999-01-04", "fuel": "diesel", "current_price": 0.965, "yoy_price": 1.147, "absolute_change": -0.182, "percentage_change": -15.8674803836}, {"date": "1999-01-11", "fuel": "diesel", "current_price": 0.967, "yoy_price": 1.126, "absolute_change": -0.159, "percentage_change": -14.1207815275}, {"date": "1999-01-18", "fuel": "diesel", "current_price": 0.97, "yoy_price": 1.109, "absolute_change": -0.139, "percentage_change": -12.5338142471}, {"date": "1999-01-25", "fuel": "diesel", "current_price": 0.964, "yoy_price": 1.096, "absolute_change": -0.132, "percentage_change": -12.0437956204}, {"date": "1999-02-01", "fuel": "diesel", "current_price": 0.962, "yoy_price": 1.091, "absolute_change": -0.129, "percentage_change": -11.8240146654}, {"date": "1999-02-08", "fuel": "diesel", "current_price": 0.962, "yoy_price": 1.085, "absolute_change": -0.123, "percentage_change": -11.33640553}, {"date": "1999-02-15", "fuel": "diesel", "current_price": 0.959, "yoy_price": 1.082, "absolute_change": -0.123, "percentage_change": -11.3678373383}, {"date": "1999-02-22", "fuel": "diesel", "current_price": 0.953, "yoy_price": 1.079, "absolute_change": -0.126, "percentage_change": -11.6774791474}, {"date": "1999-03-01", "fuel": "diesel", "current_price": 0.956, "yoy_price": 1.074, "absolute_change": -0.118, "percentage_change": -10.9869646182}, {"date": "1999-03-08", "fuel": "diesel", "current_price": 0.964, "yoy_price": 1.066, "absolute_change": -0.102, "percentage_change": -9.5684803002}, {"date": "1999-03-15", "fuel": "diesel", "current_price": 1, "yoy_price": 1.057, "absolute_change": -0.057, "percentage_change": -5.3926206244}, {"date": "1999-03-22", "fuel": "diesel", "current_price": 1.018, "yoy_price": 1.049, "absolute_change": -0.031, "percentage_change": -2.9551954242}, {"date": "1999-03-29", "fuel": "diesel", "current_price": 1.046, "yoy_price": 1.068, "absolute_change": -0.022, "percentage_change": -2.0599250936}, {"date": "1999-04-05", "fuel": "diesel", "current_price": 1.075, "yoy_price": 1.067, "absolute_change": 0.008, "percentage_change": 0.7497656982}, {"date": "1999-04-12", "fuel": "diesel", "current_price": 1.084, "yoy_price": 1.065, "absolute_change": 0.019, "percentage_change": 1.7840375587}, {"date": "1999-04-19", "fuel": "diesel", "current_price": 1.08, "yoy_price": 1.065, "absolute_change": 0.015, "percentage_change": 1.4084507042}, {"date": "1999-04-26", "fuel": "diesel", "current_price": 1.078, "yoy_price": 1.07, "absolute_change": 0.008, "percentage_change": 0.7476635514}, {"date": "1999-05-03", "fuel": "diesel", "current_price": 1.078, "yoy_price": 1.072, "absolute_change": 0.006, "percentage_change": 0.5597014925}, {"date": "1999-05-10", "fuel": "diesel", "current_price": 1.083, "yoy_price": 1.075, "absolute_change": 0.008, "percentage_change": 0.7441860465}, {"date": "1999-05-17", "fuel": "diesel", "current_price": 1.075, "yoy_price": 1.069, "absolute_change": 0.006, "percentage_change": 0.561272217}, {"date": "1999-05-24", "fuel": "diesel", "current_price": 1.066, "yoy_price": 1.06, "absolute_change": 0.006, "percentage_change": 0.5660377358}, {"date": "1999-05-31", "fuel": "diesel", "current_price": 1.065, "yoy_price": 1.053, "absolute_change": 0.012, "percentage_change": 1.1396011396}, {"date": "1999-06-07", "fuel": "diesel", "current_price": 1.059, "yoy_price": 1.045, "absolute_change": 0.014, "percentage_change": 1.3397129187}, {"date": "1999-06-14", "fuel": "diesel", "current_price": 1.068, "yoy_price": 1.04, "absolute_change": 0.028, "percentage_change": 2.6923076923}, {"date": "1999-06-21", "fuel": "diesel", "current_price": 1.082, "yoy_price": 1.033, "absolute_change": 0.049, "percentage_change": 4.7434656341}, {"date": "1999-06-28", "fuel": "diesel", "current_price": 1.087, "yoy_price": 1.034, "absolute_change": 0.053, "percentage_change": 5.1257253385}, {"date": "1999-07-05", "fuel": "diesel", "current_price": 1.102, "yoy_price": 1.036, "absolute_change": 0.066, "percentage_change": 6.3706563707}, {"date": "1999-07-12", "fuel": "diesel", "current_price": 1.114, "yoy_price": 1.031, "absolute_change": 0.083, "percentage_change": 8.0504364694}, {"date": "1999-07-19", "fuel": "diesel", "current_price": 1.133, "yoy_price": 1.027, "absolute_change": 0.106, "percentage_change": 10.3213242454}, {"date": "1999-07-26", "fuel": "diesel", "current_price": 1.137, "yoy_price": 1.02, "absolute_change": 0.117, "percentage_change": 11.4705882353}, {"date": "1999-08-02", "fuel": "diesel", "current_price": 1.146, "yoy_price": 1.016, "absolute_change": 0.13, "percentage_change": 12.7952755906}, {"date": "1999-08-09", "fuel": "diesel", "current_price": 1.156, "yoy_price": 1.01, "absolute_change": 0.146, "percentage_change": 14.4554455446}, {"date": "1999-08-16", "fuel": "diesel", "current_price": 1.178, "yoy_price": 1.007, "absolute_change": 0.171, "percentage_change": 16.9811320755}, {"date": "1999-08-23", "fuel": "diesel", "current_price": 1.186, "yoy_price": 1.004, "absolute_change": 0.182, "percentage_change": 18.1274900398}, {"date": "1999-08-30", "fuel": "diesel", "current_price": 1.194, "yoy_price": 1, "absolute_change": 0.194, "percentage_change": 19.4}, {"date": "1999-09-06", "fuel": "diesel", "current_price": 1.198, "yoy_price": 1.009, "absolute_change": 0.189, "percentage_change": 18.7314172448}, {"date": "1999-09-13", "fuel": "diesel", "current_price": 1.209, "yoy_price": 1.019, "absolute_change": 0.19, "percentage_change": 18.6457311089}, {"date": "1999-09-20", "fuel": "diesel", "current_price": 1.226, "yoy_price": 1.03, "absolute_change": 0.196, "percentage_change": 19.0291262136}, {"date": "1999-09-27", "fuel": "diesel", "current_price": 1.226, "yoy_price": 1.039, "absolute_change": 0.187, "percentage_change": 17.9980750722}, {"date": "1999-10-04", "fuel": "diesel", "current_price": 1.234, "yoy_price": 1.041, "absolute_change": 0.193, "percentage_change": 18.5398655139}, {"date": "1999-10-11", "fuel": "diesel", "current_price": 1.228, "yoy_price": 1.041, "absolute_change": 0.187, "percentage_change": 17.9634966378}, {"date": "1999-10-18", "fuel": "diesel", "current_price": 1.224, "yoy_price": 1.036, "absolute_change": 0.188, "percentage_change": 18.1467181467}, {"date": "1999-10-25", "fuel": "diesel", "current_price": 1.226, "yoy_price": 1.036, "absolute_change": 0.19, "percentage_change": 18.3397683398}, {"date": "1999-11-01", "fuel": "diesel", "current_price": 1.229, "yoy_price": 1.035, "absolute_change": 0.194, "percentage_change": 18.7439613527}, {"date": "1999-11-08", "fuel": "diesel", "current_price": 1.234, "yoy_price": 1.034, "absolute_change": 0.2, "percentage_change": 19.3423597679}, {"date": "1999-11-15", "fuel": "diesel", "current_price": 1.261, "yoy_price": 1.026, "absolute_change": 0.235, "percentage_change": 22.9044834308}, {"date": "1999-11-22", "fuel": "diesel", "current_price": 1.289, "yoy_price": 1.012, "absolute_change": 0.277, "percentage_change": 27.371541502}, {"date": "1999-11-29", "fuel": "diesel", "current_price": 1.304, "yoy_price": 1.004, "absolute_change": 0.3, "percentage_change": 29.8804780876}, {"date": "1999-12-06", "fuel": "diesel", "current_price": 1.294, "yoy_price": 0.986, "absolute_change": 0.308, "percentage_change": 31.2373225152}, {"date": "1999-12-13", "fuel": "diesel", "current_price": 1.288, "yoy_price": 0.972, "absolute_change": 0.316, "percentage_change": 32.5102880658}, {"date": "1999-12-20", "fuel": "diesel", "current_price": 1.287, "yoy_price": 0.968, "absolute_change": 0.319, "percentage_change": 32.9545454545}, {"date": "1999-12-27", "fuel": "diesel", "current_price": 1.298, "yoy_price": 0.966, "absolute_change": 0.332, "percentage_change": 34.3685300207}, {"date": "2000-01-03", "fuel": "diesel", "current_price": 1.309, "yoy_price": 0.965, "absolute_change": 0.344, "percentage_change": 35.6476683938}, {"date": "2000-01-10", "fuel": "diesel", "current_price": 1.307, "yoy_price": 0.967, "absolute_change": 0.34, "percentage_change": 35.1602895553}, {"date": "2000-01-17", "fuel": "diesel", "current_price": 1.307, "yoy_price": 0.97, "absolute_change": 0.337, "percentage_change": 34.7422680412}, {"date": "2000-01-24", "fuel": "diesel", "current_price": 1.418, "yoy_price": 0.964, "absolute_change": 0.454, "percentage_change": 47.0954356846}, {"date": "2000-01-31", "fuel": "diesel", "current_price": 1.439, "yoy_price": 0.962, "absolute_change": 0.477, "percentage_change": 49.5841995842}, {"date": "2000-02-07", "fuel": "diesel", "current_price": 1.47, "yoy_price": 0.962, "absolute_change": 0.508, "percentage_change": 52.8066528067}, {"date": "2000-02-14", "fuel": "diesel", "current_price": 1.456, "yoy_price": 0.959, "absolute_change": 0.497, "percentage_change": 51.8248175182}, {"date": "2000-02-21", "fuel": "diesel", "current_price": 1.456, "yoy_price": 0.953, "absolute_change": 0.503, "percentage_change": 52.7806925498}, {"date": "2000-02-28", "fuel": "diesel", "current_price": 1.461, "yoy_price": 0.956, "absolute_change": 0.505, "percentage_change": 52.8242677824}, {"date": "2000-03-06", "fuel": "diesel", "current_price": 1.49, "yoy_price": 0.964, "absolute_change": 0.526, "percentage_change": 54.5643153527}, {"date": "2000-03-13", "fuel": "diesel", "current_price": 1.496, "yoy_price": 1, "absolute_change": 0.496, "percentage_change": 49.6}, {"date": "2000-03-20", "fuel": "diesel", "current_price": 1.479, "yoy_price": 1.018, "absolute_change": 0.461, "percentage_change": 45.2848722986}, {"date": "2000-03-27", "fuel": "diesel", "current_price": 1.451, "yoy_price": 1.046, "absolute_change": 0.405, "percentage_change": 38.7189292543}, {"date": "2000-04-03", "fuel": "diesel", "current_price": 1.442, "yoy_price": 1.075, "absolute_change": 0.367, "percentage_change": 34.1395348837}, {"date": "2000-04-10", "fuel": "diesel", "current_price": 1.419, "yoy_price": 1.084, "absolute_change": 0.335, "percentage_change": 30.9040590406}, {"date": "2000-04-17", "fuel": "diesel", "current_price": 1.398, "yoy_price": 1.08, "absolute_change": 0.318, "percentage_change": 29.4444444444}, {"date": "2000-04-24", "fuel": "diesel", "current_price": 1.428, "yoy_price": 1.078, "absolute_change": 0.35, "percentage_change": 32.4675324675}, {"date": "2000-05-01", "fuel": "diesel", "current_price": 1.418, "yoy_price": 1.078, "absolute_change": 0.34, "percentage_change": 31.5398886827}, {"date": "2000-05-08", "fuel": "diesel", "current_price": 1.402, "yoy_price": 1.083, "absolute_change": 0.319, "percentage_change": 29.4552169898}, {"date": "2000-05-15", "fuel": "diesel", "current_price": 1.415, "yoy_price": 1.075, "absolute_change": 0.34, "percentage_change": 31.6279069767}, {"date": "2000-05-22", "fuel": "diesel", "current_price": 1.432, "yoy_price": 1.066, "absolute_change": 0.366, "percentage_change": 34.3339587242}, {"date": "2000-05-29", "fuel": "diesel", "current_price": 1.431, "yoy_price": 1.065, "absolute_change": 0.366, "percentage_change": 34.3661971831}, {"date": "2000-06-05", "fuel": "diesel", "current_price": 1.419, "yoy_price": 1.059, "absolute_change": 0.36, "percentage_change": 33.9943342776}, {"date": "2000-06-12", "fuel": "diesel", "current_price": 1.411, "yoy_price": 1.068, "absolute_change": 0.343, "percentage_change": 32.1161048689}, {"date": "2000-06-19", "fuel": "diesel", "current_price": 1.423, "yoy_price": 1.082, "absolute_change": 0.341, "percentage_change": 31.5157116451}, {"date": "2000-06-26", "fuel": "diesel", "current_price": 1.432, "yoy_price": 1.087, "absolute_change": 0.345, "percentage_change": 31.7387304508}, {"date": "2000-07-03", "fuel": "diesel", "current_price": 1.453, "yoy_price": 1.102, "absolute_change": 0.351, "percentage_change": 31.8511796733}, {"date": "2000-07-10", "fuel": "diesel", "current_price": 1.449, "yoy_price": 1.114, "absolute_change": 0.335, "percentage_change": 30.0718132855}, {"date": "2000-07-17", "fuel": "diesel", "current_price": 1.435, "yoy_price": 1.133, "absolute_change": 0.302, "percentage_change": 26.6548984996}, {"date": "2000-07-24", "fuel": "diesel", "current_price": 1.424, "yoy_price": 1.137, "absolute_change": 0.287, "percentage_change": 25.2418645558}, {"date": "2000-07-31", "fuel": "diesel", "current_price": 1.408, "yoy_price": 1.146, "absolute_change": 0.262, "percentage_change": 22.8621291449}, {"date": "2000-08-07", "fuel": "diesel", "current_price": 1.41, "yoy_price": 1.156, "absolute_change": 0.254, "percentage_change": 21.9723183391}, {"date": "2000-08-14", "fuel": "diesel", "current_price": 1.447, "yoy_price": 1.178, "absolute_change": 0.269, "percentage_change": 22.8353140917}, {"date": "2000-08-21", "fuel": "diesel", "current_price": 1.471, "yoy_price": 1.186, "absolute_change": 0.285, "percentage_change": 24.0303541315}, {"date": "2000-08-28", "fuel": "diesel", "current_price": 1.536, "yoy_price": 1.194, "absolute_change": 0.342, "percentage_change": 28.6432160804}, {"date": "2000-09-04", "fuel": "diesel", "current_price": 1.609, "yoy_price": 1.198, "absolute_change": 0.411, "percentage_change": 34.3071786311}, {"date": "2000-09-11", "fuel": "diesel", "current_price": 1.629, "yoy_price": 1.209, "absolute_change": 0.42, "percentage_change": 34.7394540943}, {"date": "2000-09-18", "fuel": "diesel", "current_price": 1.653, "yoy_price": 1.226, "absolute_change": 0.427, "percentage_change": 34.8287112561}, {"date": "2000-09-25", "fuel": "diesel", "current_price": 1.657, "yoy_price": 1.226, "absolute_change": 0.431, "percentage_change": 35.1549755302}, {"date": "2000-10-02", "fuel": "diesel", "current_price": 1.625, "yoy_price": 1.234, "absolute_change": 0.391, "percentage_change": 31.6855753647}, {"date": "2000-10-09", "fuel": "diesel", "current_price": 1.614, "yoy_price": 1.228, "absolute_change": 0.386, "percentage_change": 31.4332247557}, {"date": "2000-10-16", "fuel": "diesel", "current_price": 1.67, "yoy_price": 1.224, "absolute_change": 0.446, "percentage_change": 36.4379084967}, {"date": "2000-10-23", "fuel": "diesel", "current_price": 1.648, "yoy_price": 1.226, "absolute_change": 0.422, "percentage_change": 34.4208809135}, {"date": "2000-10-30", "fuel": "diesel", "current_price": 1.629, "yoy_price": 1.229, "absolute_change": 0.4, "percentage_change": 32.5467860049}, {"date": "2000-11-06", "fuel": "diesel", "current_price": 1.61, "yoy_price": 1.234, "absolute_change": 0.376, "percentage_change": 30.4700162075}, {"date": "2000-11-13", "fuel": "diesel", "current_price": 1.603, "yoy_price": 1.261, "absolute_change": 0.342, "percentage_change": 27.121332276}, {"date": "2000-11-20", "fuel": "diesel", "current_price": 1.627, "yoy_price": 1.289, "absolute_change": 0.338, "percentage_change": 26.2218774244}, {"date": "2000-11-27", "fuel": "diesel", "current_price": 1.645, "yoy_price": 1.304, "absolute_change": 0.341, "percentage_change": 26.1503067485}, {"date": "2000-12-04", "fuel": "diesel", "current_price": 1.622, "yoy_price": 1.294, "absolute_change": 0.328, "percentage_change": 25.3477588872}, {"date": "2000-12-11", "fuel": "diesel", "current_price": 1.577, "yoy_price": 1.288, "absolute_change": 0.289, "percentage_change": 22.4378881988}, {"date": "2000-12-18", "fuel": "diesel", "current_price": 1.545, "yoy_price": 1.287, "absolute_change": 0.258, "percentage_change": 20.0466200466}, {"date": "2000-12-25", "fuel": "diesel", "current_price": 1.515, "yoy_price": 1.298, "absolute_change": 0.217, "percentage_change": 16.718027735}, {"date": "2001-01-01", "fuel": "diesel", "current_price": 1.522, "yoy_price": 1.309, "absolute_change": 0.213, "percentage_change": 16.2719633308}, {"date": "2001-01-08", "fuel": "diesel", "current_price": 1.52, "yoy_price": 1.307, "absolute_change": 0.213, "percentage_change": 16.2968630451}, {"date": "2001-01-15", "fuel": "diesel", "current_price": 1.509, "yoy_price": 1.307, "absolute_change": 0.202, "percentage_change": 15.4552410099}, {"date": "2001-01-22", "fuel": "diesel", "current_price": 1.528, "yoy_price": 1.418, "absolute_change": 0.11, "percentage_change": 7.7574047955}, {"date": "2001-01-29", "fuel": "diesel", "current_price": 1.539, "yoy_price": 1.439, "absolute_change": 0.1, "percentage_change": 6.9492703266}, {"date": "2001-02-05", "fuel": "diesel", "current_price": 1.52, "yoy_price": 1.47, "absolute_change": 0.05, "percentage_change": 3.4013605442}, {"date": "2001-02-12", "fuel": "diesel", "current_price": 1.518, "yoy_price": 1.456, "absolute_change": 0.062, "percentage_change": 4.2582417582}, {"date": "2001-02-19", "fuel": "diesel", "current_price": 1.48, "yoy_price": 1.456, "absolute_change": 0.024, "percentage_change": 1.6483516484}, {"date": "2001-02-26", "fuel": "diesel", "current_price": 1.451, "yoy_price": 1.461, "absolute_change": -0.01, "percentage_change": -0.6844626968}, {"date": "2001-03-05", "fuel": "diesel", "current_price": 1.42, "yoy_price": 1.49, "absolute_change": -0.07, "percentage_change": -4.6979865772}, {"date": "2001-03-12", "fuel": "diesel", "current_price": 1.406, "yoy_price": 1.496, "absolute_change": -0.09, "percentage_change": -6.0160427807}, {"date": "2001-03-19", "fuel": "diesel", "current_price": 1.392, "yoy_price": 1.479, "absolute_change": -0.087, "percentage_change": -5.8823529412}, {"date": "2001-03-26", "fuel": "diesel", "current_price": 1.379, "yoy_price": 1.451, "absolute_change": -0.072, "percentage_change": -4.9620951068}, {"date": "2001-04-02", "fuel": "diesel", "current_price": 1.391, "yoy_price": 1.442, "absolute_change": -0.051, "percentage_change": -3.5367545076}, {"date": "2001-04-09", "fuel": "diesel", "current_price": 1.397, "yoy_price": 1.419, "absolute_change": -0.022, "percentage_change": -1.5503875969}, {"date": "2001-04-16", "fuel": "diesel", "current_price": 1.437, "yoy_price": 1.398, "absolute_change": 0.039, "percentage_change": 2.7896995708}, {"date": "2001-04-23", "fuel": "diesel", "current_price": 1.443, "yoy_price": 1.428, "absolute_change": 0.015, "percentage_change": 1.0504201681}, {"date": "2001-04-30", "fuel": "diesel", "current_price": 1.442, "yoy_price": 1.418, "absolute_change": 0.024, "percentage_change": 1.6925246827}, {"date": "2001-05-07", "fuel": "diesel", "current_price": 1.47, "yoy_price": 1.402, "absolute_change": 0.068, "percentage_change": 4.85021398}, {"date": "2001-05-14", "fuel": "diesel", "current_price": 1.491, "yoy_price": 1.415, "absolute_change": 0.076, "percentage_change": 5.371024735}, {"date": "2001-05-21", "fuel": "diesel", "current_price": 1.494, "yoy_price": 1.432, "absolute_change": 0.062, "percentage_change": 4.3296089385}, {"date": "2001-05-28", "fuel": "diesel", "current_price": 1.529, "yoy_price": 1.431, "absolute_change": 0.098, "percentage_change": 6.8483577918}, {"date": "2001-06-04", "fuel": "diesel", "current_price": 1.514, "yoy_price": 1.419, "absolute_change": 0.095, "percentage_change": 6.6948555321}, {"date": "2001-06-11", "fuel": "diesel", "current_price": 1.486, "yoy_price": 1.411, "absolute_change": 0.075, "percentage_change": 5.3153791637}, {"date": "2001-06-18", "fuel": "diesel", "current_price": 1.48, "yoy_price": 1.423, "absolute_change": 0.057, "percentage_change": 4.0056219255}, {"date": "2001-06-25", "fuel": "diesel", "current_price": 1.447, "yoy_price": 1.432, "absolute_change": 0.015, "percentage_change": 1.0474860335}, {"date": "2001-07-02", "fuel": "diesel", "current_price": 1.407, "yoy_price": 1.453, "absolute_change": -0.046, "percentage_change": -3.1658637302}, {"date": "2001-07-09", "fuel": "diesel", "current_price": 1.392, "yoy_price": 1.449, "absolute_change": -0.057, "percentage_change": -3.933747412}, {"date": "2001-07-16", "fuel": "diesel", "current_price": 1.38, "yoy_price": 1.435, "absolute_change": -0.055, "percentage_change": -3.8327526132}, {"date": "2001-07-23", "fuel": "diesel", "current_price": 1.348, "yoy_price": 1.424, "absolute_change": -0.076, "percentage_change": -5.3370786517}, {"date": "2001-07-30", "fuel": "diesel", "current_price": 1.347, "yoy_price": 1.408, "absolute_change": -0.061, "percentage_change": -4.3323863636}, {"date": "2001-08-06", "fuel": "diesel", "current_price": 1.345, "yoy_price": 1.41, "absolute_change": -0.065, "percentage_change": -4.609929078}, {"date": "2001-08-13", "fuel": "diesel", "current_price": 1.367, "yoy_price": 1.447, "absolute_change": -0.08, "percentage_change": -5.5286800276}, {"date": "2001-08-20", "fuel": "diesel", "current_price": 1.394, "yoy_price": 1.471, "absolute_change": -0.077, "percentage_change": -5.2345343304}, {"date": "2001-08-27", "fuel": "diesel", "current_price": 1.452, "yoy_price": 1.536, "absolute_change": -0.084, "percentage_change": -5.46875}, {"date": "2001-09-03", "fuel": "diesel", "current_price": 1.488, "yoy_price": 1.609, "absolute_change": -0.121, "percentage_change": -7.5201988813}, {"date": "2001-09-10", "fuel": "diesel", "current_price": 1.492, "yoy_price": 1.629, "absolute_change": -0.137, "percentage_change": -8.4100675261}, {"date": "2001-09-17", "fuel": "diesel", "current_price": 1.527, "yoy_price": 1.653, "absolute_change": -0.126, "percentage_change": -7.6225045372}, {"date": "2001-09-24", "fuel": "diesel", "current_price": 1.473, "yoy_price": 1.657, "absolute_change": -0.184, "percentage_change": -11.1044055522}, {"date": "2001-10-01", "fuel": "diesel", "current_price": 1.39, "yoy_price": 1.625, "absolute_change": -0.235, "percentage_change": -14.4615384615}, {"date": "2001-10-08", "fuel": "diesel", "current_price": 1.371, "yoy_price": 1.614, "absolute_change": -0.243, "percentage_change": -15.0557620818}, {"date": "2001-10-15", "fuel": "diesel", "current_price": 1.353, "yoy_price": 1.67, "absolute_change": -0.317, "percentage_change": -18.9820359281}, {"date": "2001-10-22", "fuel": "diesel", "current_price": 1.318, "yoy_price": 1.648, "absolute_change": -0.33, "percentage_change": -20.0242718447}, {"date": "2001-10-29", "fuel": "diesel", "current_price": 1.31, "yoy_price": 1.629, "absolute_change": -0.319, "percentage_change": -19.5825659914}, {"date": "2001-11-05", "fuel": "diesel", "current_price": 1.291, "yoy_price": 1.61, "absolute_change": -0.319, "percentage_change": -19.8136645963}, {"date": "2001-11-12", "fuel": "diesel", "current_price": 1.269, "yoy_price": 1.603, "absolute_change": -0.334, "percentage_change": -20.8359326263}, {"date": "2001-11-19", "fuel": "diesel", "current_price": 1.252, "yoy_price": 1.627, "absolute_change": -0.375, "percentage_change": -23.0485556238}, {"date": "2001-11-26", "fuel": "diesel", "current_price": 1.223, "yoy_price": 1.645, "absolute_change": -0.422, "percentage_change": -25.6534954407}, {"date": "2001-12-03", "fuel": "diesel", "current_price": 1.194, "yoy_price": 1.622, "absolute_change": -0.428, "percentage_change": -26.3871763255}, {"date": "2001-12-10", "fuel": "diesel", "current_price": 1.173, "yoy_price": 1.577, "absolute_change": -0.404, "percentage_change": -25.6182625238}, {"date": "2001-12-17", "fuel": "diesel", "current_price": 1.143, "yoy_price": 1.545, "absolute_change": -0.402, "percentage_change": -26.0194174757}, {"date": "2001-12-24", "fuel": "diesel", "current_price": 1.154, "yoy_price": 1.515, "absolute_change": -0.361, "percentage_change": -23.8283828383}, {"date": "2001-12-31", "fuel": "diesel", "current_price": 1.169, "yoy_price": 1.522, "absolute_change": -0.353, "percentage_change": -23.1931668857}, {"date": "2002-01-07", "fuel": "diesel", "current_price": 1.168, "yoy_price": 1.52, "absolute_change": -0.352, "percentage_change": -23.1578947368}, {"date": "2002-01-14", "fuel": "diesel", "current_price": 1.159, "yoy_price": 1.509, "absolute_change": -0.35, "percentage_change": -23.1941683234}, {"date": "2002-01-21", "fuel": "diesel", "current_price": 1.14, "yoy_price": 1.528, "absolute_change": -0.388, "percentage_change": -25.3926701571}, {"date": "2002-01-28", "fuel": "diesel", "current_price": 1.144, "yoy_price": 1.539, "absolute_change": -0.395, "percentage_change": -25.6660168941}, {"date": "2002-02-04", "fuel": "diesel", "current_price": 1.144, "yoy_price": 1.52, "absolute_change": -0.376, "percentage_change": -24.7368421053}, {"date": "2002-02-11", "fuel": "diesel", "current_price": 1.153, "yoy_price": 1.518, "absolute_change": -0.365, "percentage_change": -24.0447957839}, {"date": "2002-02-18", "fuel": "diesel", "current_price": 1.156, "yoy_price": 1.48, "absolute_change": -0.324, "percentage_change": -21.8918918919}, {"date": "2002-02-25", "fuel": "diesel", "current_price": 1.154, "yoy_price": 1.451, "absolute_change": -0.297, "percentage_change": -20.4686423156}, {"date": "2002-03-04", "fuel": "diesel", "current_price": 1.173, "yoy_price": 1.42, "absolute_change": -0.247, "percentage_change": -17.3943661972}, {"date": "2002-03-11", "fuel": "diesel", "current_price": 1.216, "yoy_price": 1.406, "absolute_change": -0.19, "percentage_change": -13.5135135135}, {"date": "2002-03-18", "fuel": "diesel", "current_price": 1.251, "yoy_price": 1.392, "absolute_change": -0.141, "percentage_change": -10.1293103448}, {"date": "2002-03-25", "fuel": "diesel", "current_price": 1.281, "yoy_price": 1.379, "absolute_change": -0.098, "percentage_change": -7.1065989848}, {"date": "2002-04-01", "fuel": "diesel", "current_price": 1.295, "yoy_price": 1.391, "absolute_change": -0.096, "percentage_change": -6.9015097052}, {"date": "2002-04-08", "fuel": "diesel", "current_price": 1.323, "yoy_price": 1.397, "absolute_change": -0.074, "percentage_change": -5.2970651396}, {"date": "2002-04-15", "fuel": "diesel", "current_price": 1.32, "yoy_price": 1.437, "absolute_change": -0.117, "percentage_change": -8.1419624217}, {"date": "2002-04-22", "fuel": "diesel", "current_price": 1.304, "yoy_price": 1.443, "absolute_change": -0.139, "percentage_change": -9.6327096327}, {"date": "2002-04-29", "fuel": "diesel", "current_price": 1.302, "yoy_price": 1.442, "absolute_change": -0.14, "percentage_change": -9.7087378641}, {"date": "2002-05-06", "fuel": "diesel", "current_price": 1.305, "yoy_price": 1.47, "absolute_change": -0.165, "percentage_change": -11.2244897959}, {"date": "2002-05-13", "fuel": "diesel", "current_price": 1.299, "yoy_price": 1.491, "absolute_change": -0.192, "percentage_change": -12.8772635815}, {"date": "2002-05-20", "fuel": "diesel", "current_price": 1.309, "yoy_price": 1.494, "absolute_change": -0.185, "percentage_change": -12.3828647925}, {"date": "2002-05-27", "fuel": "diesel", "current_price": 1.308, "yoy_price": 1.529, "absolute_change": -0.221, "percentage_change": -14.4538914323}, {"date": "2002-06-03", "fuel": "diesel", "current_price": 1.3, "yoy_price": 1.514, "absolute_change": -0.214, "percentage_change": -14.1347424042}, {"date": "2002-06-10", "fuel": "diesel", "current_price": 1.286, "yoy_price": 1.486, "absolute_change": -0.2, "percentage_change": -13.4589502019}, {"date": "2002-06-17", "fuel": "diesel", "current_price": 1.275, "yoy_price": 1.48, "absolute_change": -0.205, "percentage_change": -13.8513513514}, {"date": "2002-06-24", "fuel": "diesel", "current_price": 1.281, "yoy_price": 1.447, "absolute_change": -0.166, "percentage_change": -11.4720110574}, {"date": "2002-07-01", "fuel": "diesel", "current_price": 1.289, "yoy_price": 1.407, "absolute_change": -0.118, "percentage_change": -8.3866382374}, {"date": "2002-07-08", "fuel": "diesel", "current_price": 1.294, "yoy_price": 1.392, "absolute_change": -0.098, "percentage_change": -7.0402298851}, {"date": "2002-07-15", "fuel": "diesel", "current_price": 1.3, "yoy_price": 1.38, "absolute_change": -0.08, "percentage_change": -5.7971014493}, {"date": "2002-07-22", "fuel": "diesel", "current_price": 1.311, "yoy_price": 1.348, "absolute_change": -0.037, "percentage_change": -2.7448071217}, {"date": "2002-07-29", "fuel": "diesel", "current_price": 1.303, "yoy_price": 1.347, "absolute_change": -0.044, "percentage_change": -3.2665181886}, {"date": "2002-08-05", "fuel": "diesel", "current_price": 1.304, "yoy_price": 1.345, "absolute_change": -0.041, "percentage_change": -3.0483271375}, {"date": "2002-08-12", "fuel": "diesel", "current_price": 1.303, "yoy_price": 1.367, "absolute_change": -0.064, "percentage_change": -4.6817849305}, {"date": "2002-08-19", "fuel": "diesel", "current_price": 1.333, "yoy_price": 1.394, "absolute_change": -0.061, "percentage_change": -4.3758967001}, {"date": "2002-08-26", "fuel": "diesel", "current_price": 1.37, "yoy_price": 1.452, "absolute_change": -0.082, "percentage_change": -5.6473829201}, {"date": "2002-09-02", "fuel": "diesel", "current_price": 1.388, "yoy_price": 1.488, "absolute_change": -0.1, "percentage_change": -6.7204301075}, {"date": "2002-09-09", "fuel": "diesel", "current_price": 1.396, "yoy_price": 1.492, "absolute_change": -0.096, "percentage_change": -6.4343163539}, {"date": "2002-09-16", "fuel": "diesel", "current_price": 1.414, "yoy_price": 1.527, "absolute_change": -0.113, "percentage_change": -7.4001309758}, {"date": "2002-09-23", "fuel": "diesel", "current_price": 1.417, "yoy_price": 1.473, "absolute_change": -0.056, "percentage_change": -3.8017651052}, {"date": "2002-09-30", "fuel": "diesel", "current_price": 1.438, "yoy_price": 1.39, "absolute_change": 0.048, "percentage_change": 3.4532374101}, {"date": "2002-10-07", "fuel": "diesel", "current_price": 1.46, "yoy_price": 1.371, "absolute_change": 0.089, "percentage_change": 6.4916119621}, {"date": "2002-10-14", "fuel": "diesel", "current_price": 1.461, "yoy_price": 1.353, "absolute_change": 0.108, "percentage_change": 7.9822616408}, {"date": "2002-10-21", "fuel": "diesel", "current_price": 1.469, "yoy_price": 1.318, "absolute_change": 0.151, "percentage_change": 11.4567526555}, {"date": "2002-10-28", "fuel": "diesel", "current_price": 1.456, "yoy_price": 1.31, "absolute_change": 0.146, "percentage_change": 11.1450381679}, {"date": "2002-11-04", "fuel": "diesel", "current_price": 1.442, "yoy_price": 1.291, "absolute_change": 0.151, "percentage_change": 11.6963594113}, {"date": "2002-11-11", "fuel": "diesel", "current_price": 1.427, "yoy_price": 1.269, "absolute_change": 0.158, "percentage_change": 12.450748621}, {"date": "2002-11-18", "fuel": "diesel", "current_price": 1.405, "yoy_price": 1.252, "absolute_change": 0.153, "percentage_change": 12.2204472843}, {"date": "2002-11-25", "fuel": "diesel", "current_price": 1.405, "yoy_price": 1.223, "absolute_change": 0.182, "percentage_change": 14.8814390842}, {"date": "2002-12-02", "fuel": "diesel", "current_price": 1.407, "yoy_price": 1.194, "absolute_change": 0.213, "percentage_change": 17.8391959799}, {"date": "2002-12-09", "fuel": "diesel", "current_price": 1.405, "yoy_price": 1.173, "absolute_change": 0.232, "percentage_change": 19.7783461211}, {"date": "2002-12-16", "fuel": "diesel", "current_price": 1.401, "yoy_price": 1.143, "absolute_change": 0.258, "percentage_change": 22.5721784777}, {"date": "2002-12-23", "fuel": "diesel", "current_price": 1.44, "yoy_price": 1.154, "absolute_change": 0.286, "percentage_change": 24.7833622184}, {"date": "2002-12-30", "fuel": "diesel", "current_price": 1.491, "yoy_price": 1.169, "absolute_change": 0.322, "percentage_change": 27.5449101796}, {"date": "2003-01-06", "fuel": "diesel", "current_price": 1.501, "yoy_price": 1.168, "absolute_change": 0.333, "percentage_change": 28.5102739726}, {"date": "2003-01-13", "fuel": "diesel", "current_price": 1.478, "yoy_price": 1.159, "absolute_change": 0.319, "percentage_change": 27.5237273512}, {"date": "2003-01-20", "fuel": "diesel", "current_price": 1.48, "yoy_price": 1.14, "absolute_change": 0.34, "percentage_change": 29.8245614035}, {"date": "2003-01-27", "fuel": "diesel", "current_price": 1.492, "yoy_price": 1.144, "absolute_change": 0.348, "percentage_change": 30.4195804196}, {"date": "2003-02-03", "fuel": "diesel", "current_price": 1.542, "yoy_price": 1.144, "absolute_change": 0.398, "percentage_change": 34.7902097902}, {"date": "2003-02-10", "fuel": "diesel", "current_price": 1.662, "yoy_price": 1.153, "absolute_change": 0.509, "percentage_change": 44.1457068517}, {"date": "2003-02-17", "fuel": "diesel", "current_price": 1.704, "yoy_price": 1.156, "absolute_change": 0.548, "percentage_change": 47.4048442907}, {"date": "2003-02-24", "fuel": "diesel", "current_price": 1.709, "yoy_price": 1.154, "absolute_change": 0.555, "percentage_change": 48.0935875217}, {"date": "2003-03-03", "fuel": "diesel", "current_price": 1.753, "yoy_price": 1.173, "absolute_change": 0.58, "percentage_change": 49.4458653026}, {"date": "2003-03-10", "fuel": "diesel", "current_price": 1.771, "yoy_price": 1.216, "absolute_change": 0.555, "percentage_change": 45.6414473684}, {"date": "2003-03-17", "fuel": "diesel", "current_price": 1.752, "yoy_price": 1.251, "absolute_change": 0.501, "percentage_change": 40.0479616307}, {"date": "2003-03-24", "fuel": "diesel", "current_price": 1.662, "yoy_price": 1.281, "absolute_change": 0.381, "percentage_change": 29.7423887588}, {"date": "2003-03-31", "fuel": "diesel", "current_price": 1.602, "yoy_price": 1.295, "absolute_change": 0.307, "percentage_change": 23.7065637066}, {"date": "2003-04-07", "fuel": "diesel", "current_price": 1.554, "yoy_price": 1.323, "absolute_change": 0.231, "percentage_change": 17.4603174603}, {"date": "2003-04-14", "fuel": "diesel", "current_price": 1.539, "yoy_price": 1.32, "absolute_change": 0.219, "percentage_change": 16.5909090909}, {"date": "2003-04-21", "fuel": "diesel", "current_price": 1.529, "yoy_price": 1.304, "absolute_change": 0.225, "percentage_change": 17.254601227}, {"date": "2003-04-28", "fuel": "diesel", "current_price": 1.508, "yoy_price": 1.302, "absolute_change": 0.206, "percentage_change": 15.821812596}, {"date": "2003-05-05", "fuel": "diesel", "current_price": 1.484, "yoy_price": 1.305, "absolute_change": 0.179, "percentage_change": 13.7164750958}, {"date": "2003-05-12", "fuel": "diesel", "current_price": 1.444, "yoy_price": 1.299, "absolute_change": 0.145, "percentage_change": 11.1624326405}, {"date": "2003-05-19", "fuel": "diesel", "current_price": 1.443, "yoy_price": 1.309, "absolute_change": 0.134, "percentage_change": 10.2368220015}, {"date": "2003-05-26", "fuel": "diesel", "current_price": 1.434, "yoy_price": 1.308, "absolute_change": 0.126, "percentage_change": 9.6330275229}, {"date": "2003-06-02", "fuel": "diesel", "current_price": 1.423, "yoy_price": 1.3, "absolute_change": 0.123, "percentage_change": 9.4615384615}, {"date": "2003-06-09", "fuel": "diesel", "current_price": 1.422, "yoy_price": 1.286, "absolute_change": 0.136, "percentage_change": 10.5754276827}, {"date": "2003-06-16", "fuel": "diesel", "current_price": 1.432, "yoy_price": 1.275, "absolute_change": 0.157, "percentage_change": 12.3137254902}, {"date": "2003-06-23", "fuel": "diesel", "current_price": 1.423, "yoy_price": 1.281, "absolute_change": 0.142, "percentage_change": 11.0850897736}, {"date": "2003-06-30", "fuel": "diesel", "current_price": 1.42, "yoy_price": 1.289, "absolute_change": 0.131, "percentage_change": 10.1629169899}, {"date": "2003-07-07", "fuel": "diesel", "current_price": 1.428, "yoy_price": 1.294, "absolute_change": 0.134, "percentage_change": 10.3554868624}, {"date": "2003-07-14", "fuel": "diesel", "current_price": 1.435, "yoy_price": 1.3, "absolute_change": 0.135, "percentage_change": 10.3846153846}, {"date": "2003-07-21", "fuel": "diesel", "current_price": 1.439, "yoy_price": 1.311, "absolute_change": 0.128, "percentage_change": 9.763539283}, {"date": "2003-07-28", "fuel": "diesel", "current_price": 1.438, "yoy_price": 1.303, "absolute_change": 0.135, "percentage_change": 10.3607060629}, {"date": "2003-08-04", "fuel": "diesel", "current_price": 1.453, "yoy_price": 1.304, "absolute_change": 0.149, "percentage_change": 11.4263803681}, {"date": "2003-08-11", "fuel": "diesel", "current_price": 1.492, "yoy_price": 1.303, "absolute_change": 0.189, "percentage_change": 14.5049884881}, {"date": "2003-08-18", "fuel": "diesel", "current_price": 1.498, "yoy_price": 1.333, "absolute_change": 0.165, "percentage_change": 12.3780945236}, {"date": "2003-08-25", "fuel": "diesel", "current_price": 1.503, "yoy_price": 1.37, "absolute_change": 0.133, "percentage_change": 9.7080291971}, {"date": "2003-09-01", "fuel": "diesel", "current_price": 1.501, "yoy_price": 1.388, "absolute_change": 0.113, "percentage_change": 8.1412103746}, {"date": "2003-09-08", "fuel": "diesel", "current_price": 1.488, "yoy_price": 1.396, "absolute_change": 0.092, "percentage_change": 6.5902578797}, {"date": "2003-09-15", "fuel": "diesel", "current_price": 1.471, "yoy_price": 1.414, "absolute_change": 0.057, "percentage_change": 4.0311173975}, {"date": "2003-09-22", "fuel": "diesel", "current_price": 1.444, "yoy_price": 1.417, "absolute_change": 0.027, "percentage_change": 1.9054340155}, {"date": "2003-09-29", "fuel": "diesel", "current_price": 1.429, "yoy_price": 1.438, "absolute_change": -0.009, "percentage_change": -0.6258692629}, {"date": "2003-10-06", "fuel": "diesel", "current_price": 1.445, "yoy_price": 1.46, "absolute_change": -0.015, "percentage_change": -1.0273972603}, {"date": "2003-10-13", "fuel": "diesel", "current_price": 1.483, "yoy_price": 1.461, "absolute_change": 0.022, "percentage_change": 1.5058179329}, {"date": "2003-10-20", "fuel": "diesel", "current_price": 1.502, "yoy_price": 1.469, "absolute_change": 0.033, "percentage_change": 2.2464261402}, {"date": "2003-10-27", "fuel": "diesel", "current_price": 1.495, "yoy_price": 1.456, "absolute_change": 0.039, "percentage_change": 2.6785714286}, {"date": "2003-11-03", "fuel": "diesel", "current_price": 1.481, "yoy_price": 1.442, "absolute_change": 0.039, "percentage_change": 2.7045769764}, {"date": "2003-11-10", "fuel": "diesel", "current_price": 1.476, "yoy_price": 1.427, "absolute_change": 0.049, "percentage_change": 3.4337771549}, {"date": "2003-11-17", "fuel": "diesel", "current_price": 1.481, "yoy_price": 1.405, "absolute_change": 0.076, "percentage_change": 5.409252669}, {"date": "2003-11-24", "fuel": "diesel", "current_price": 1.491, "yoy_price": 1.405, "absolute_change": 0.086, "percentage_change": 6.1209964413}, {"date": "2003-12-01", "fuel": "diesel", "current_price": 1.476, "yoy_price": 1.407, "absolute_change": 0.069, "percentage_change": 4.9040511727}, {"date": "2003-12-08", "fuel": "diesel", "current_price": 1.481, "yoy_price": 1.405, "absolute_change": 0.076, "percentage_change": 5.409252669}, {"date": "2003-12-15", "fuel": "diesel", "current_price": 1.486, "yoy_price": 1.401, "absolute_change": 0.085, "percentage_change": 6.0670949322}, {"date": "2003-12-22", "fuel": "diesel", "current_price": 1.504, "yoy_price": 1.44, "absolute_change": 0.064, "percentage_change": 4.4444444444}, {"date": "2003-12-29", "fuel": "diesel", "current_price": 1.502, "yoy_price": 1.491, "absolute_change": 0.011, "percentage_change": 0.7377598927}, {"date": "2004-01-05", "fuel": "diesel", "current_price": 1.503, "yoy_price": 1.501, "absolute_change": 0.002, "percentage_change": 0.1332445037}, {"date": "2004-01-12", "fuel": "diesel", "current_price": 1.551, "yoy_price": 1.478, "absolute_change": 0.073, "percentage_change": 4.9391069012}, {"date": "2004-01-19", "fuel": "diesel", "current_price": 1.559, "yoy_price": 1.48, "absolute_change": 0.079, "percentage_change": 5.3378378378}, {"date": "2004-01-26", "fuel": "diesel", "current_price": 1.591, "yoy_price": 1.492, "absolute_change": 0.099, "percentage_change": 6.6353887399}, {"date": "2004-02-02", "fuel": "diesel", "current_price": 1.581, "yoy_price": 1.542, "absolute_change": 0.039, "percentage_change": 2.5291828794}, {"date": "2004-02-09", "fuel": "diesel", "current_price": 1.568, "yoy_price": 1.662, "absolute_change": -0.094, "percentage_change": -5.6558363418}, {"date": "2004-02-16", "fuel": "diesel", "current_price": 1.584, "yoy_price": 1.704, "absolute_change": -0.12, "percentage_change": -7.0422535211}, {"date": "2004-02-23", "fuel": "diesel", "current_price": 1.595, "yoy_price": 1.709, "absolute_change": -0.114, "percentage_change": -6.6705675834}, {"date": "2004-03-01", "fuel": "diesel", "current_price": 1.619, "yoy_price": 1.753, "absolute_change": -0.134, "percentage_change": -7.6440387906}, {"date": "2004-03-08", "fuel": "diesel", "current_price": 1.628, "yoy_price": 1.771, "absolute_change": -0.143, "percentage_change": -8.0745341615}, {"date": "2004-03-15", "fuel": "diesel", "current_price": 1.617, "yoy_price": 1.752, "absolute_change": -0.135, "percentage_change": -7.7054794521}, {"date": "2004-03-22", "fuel": "diesel", "current_price": 1.641, "yoy_price": 1.662, "absolute_change": -0.021, "percentage_change": -1.2635379061}, {"date": "2004-03-29", "fuel": "diesel", "current_price": 1.642, "yoy_price": 1.602, "absolute_change": 0.04, "percentage_change": 2.4968789014}, {"date": "2004-04-05", "fuel": "diesel", "current_price": 1.648, "yoy_price": 1.554, "absolute_change": 0.094, "percentage_change": 6.0489060489}, {"date": "2004-04-12", "fuel": "diesel", "current_price": 1.679, "yoy_price": 1.539, "absolute_change": 0.14, "percentage_change": 9.0968161144}, {"date": "2004-04-19", "fuel": "diesel", "current_price": 1.724, "yoy_price": 1.529, "absolute_change": 0.195, "percentage_change": 12.7534336167}, {"date": "2004-04-26", "fuel": "diesel", "current_price": 1.718, "yoy_price": 1.508, "absolute_change": 0.21, "percentage_change": 13.925729443}, {"date": "2004-05-03", "fuel": "diesel", "current_price": 1.717, "yoy_price": 1.484, "absolute_change": 0.233, "percentage_change": 15.7008086253}, {"date": "2004-05-10", "fuel": "diesel", "current_price": 1.745, "yoy_price": 1.444, "absolute_change": 0.301, "percentage_change": 20.8448753463}, {"date": "2004-05-17", "fuel": "diesel", "current_price": 1.763, "yoy_price": 1.443, "absolute_change": 0.32, "percentage_change": 22.176022176}, {"date": "2004-05-24", "fuel": "diesel", "current_price": 1.761, "yoy_price": 1.434, "absolute_change": 0.327, "percentage_change": 22.8033472803}, {"date": "2004-05-31", "fuel": "diesel", "current_price": 1.746, "yoy_price": 1.423, "absolute_change": 0.323, "percentage_change": 22.6985242446}, {"date": "2004-06-07", "fuel": "diesel", "current_price": 1.734, "yoy_price": 1.422, "absolute_change": 0.312, "percentage_change": 21.94092827}, {"date": "2004-06-14", "fuel": "diesel", "current_price": 1.711, "yoy_price": 1.432, "absolute_change": 0.279, "percentage_change": 19.4832402235}, {"date": "2004-06-21", "fuel": "diesel", "current_price": 1.7, "yoy_price": 1.423, "absolute_change": 0.277, "percentage_change": 19.4659170766}, {"date": "2004-06-28", "fuel": "diesel", "current_price": 1.7, "yoy_price": 1.42, "absolute_change": 0.28, "percentage_change": 19.7183098592}, {"date": "2004-07-05", "fuel": "diesel", "current_price": 1.716, "yoy_price": 1.428, "absolute_change": 0.288, "percentage_change": 20.1680672269}, {"date": "2004-07-12", "fuel": "diesel", "current_price": 1.74, "yoy_price": 1.435, "absolute_change": 0.305, "percentage_change": 21.2543554007}, {"date": "2004-07-19", "fuel": "diesel", "current_price": 1.744, "yoy_price": 1.439, "absolute_change": 0.305, "percentage_change": 21.1952744962}, {"date": "2004-07-26", "fuel": "diesel", "current_price": 1.754, "yoy_price": 1.438, "absolute_change": 0.316, "percentage_change": 21.9749652295}, {"date": "2004-08-02", "fuel": "diesel", "current_price": 1.78, "yoy_price": 1.453, "absolute_change": 0.327, "percentage_change": 22.5051617343}, {"date": "2004-08-09", "fuel": "diesel", "current_price": 1.814, "yoy_price": 1.492, "absolute_change": 0.322, "percentage_change": 21.581769437}, {"date": "2004-08-16", "fuel": "diesel", "current_price": 1.825, "yoy_price": 1.498, "absolute_change": 0.327, "percentage_change": 21.829105474}, {"date": "2004-08-23", "fuel": "diesel", "current_price": 1.874, "yoy_price": 1.503, "absolute_change": 0.371, "percentage_change": 24.6839654025}, {"date": "2004-08-30", "fuel": "diesel", "current_price": 1.871, "yoy_price": 1.501, "absolute_change": 0.37, "percentage_change": 24.6502331779}, {"date": "2004-09-06", "fuel": "diesel", "current_price": 1.869, "yoy_price": 1.488, "absolute_change": 0.381, "percentage_change": 25.6048387097}, {"date": "2004-09-13", "fuel": "diesel", "current_price": 1.874, "yoy_price": 1.471, "absolute_change": 0.403, "percentage_change": 27.3963290279}, {"date": "2004-09-20", "fuel": "diesel", "current_price": 1.912, "yoy_price": 1.444, "absolute_change": 0.468, "percentage_change": 32.4099722992}, {"date": "2004-09-27", "fuel": "diesel", "current_price": 2.012, "yoy_price": 1.429, "absolute_change": 0.583, "percentage_change": 40.7977606718}, {"date": "2004-10-04", "fuel": "diesel", "current_price": 2.053, "yoy_price": 1.445, "absolute_change": 0.608, "percentage_change": 42.0761245675}, {"date": "2004-10-11", "fuel": "diesel", "current_price": 2.092, "yoy_price": 1.483, "absolute_change": 0.609, "percentage_change": 41.0654079568}, {"date": "2004-10-18", "fuel": "diesel", "current_price": 2.18, "yoy_price": 1.502, "absolute_change": 0.678, "percentage_change": 45.1398135819}, {"date": "2004-10-25", "fuel": "diesel", "current_price": 2.212, "yoy_price": 1.495, "absolute_change": 0.717, "percentage_change": 47.9598662207}, {"date": "2004-11-01", "fuel": "diesel", "current_price": 2.206, "yoy_price": 1.481, "absolute_change": 0.725, "percentage_change": 48.9534098582}, {"date": "2004-11-08", "fuel": "diesel", "current_price": 2.163, "yoy_price": 1.476, "absolute_change": 0.687, "percentage_change": 46.5447154472}, {"date": "2004-11-15", "fuel": "diesel", "current_price": 2.132, "yoy_price": 1.481, "absolute_change": 0.651, "percentage_change": 43.9567859554}, {"date": "2004-11-22", "fuel": "diesel", "current_price": 2.116, "yoy_price": 1.491, "absolute_change": 0.625, "percentage_change": 41.918175721}, {"date": "2004-11-29", "fuel": "diesel", "current_price": 2.116, "yoy_price": 1.476, "absolute_change": 0.64, "percentage_change": 43.3604336043}, {"date": "2004-12-06", "fuel": "diesel", "current_price": 2.069, "yoy_price": 1.481, "absolute_change": 0.588, "percentage_change": 39.7029034436}, {"date": "2004-12-13", "fuel": "diesel", "current_price": 1.997, "yoy_price": 1.486, "absolute_change": 0.511, "percentage_change": 34.3876177658}, {"date": "2004-12-20", "fuel": "diesel", "current_price": 1.984, "yoy_price": 1.504, "absolute_change": 0.48, "percentage_change": 31.914893617}, {"date": "2004-12-27", "fuel": "diesel", "current_price": 1.987, "yoy_price": 1.502, "absolute_change": 0.485, "percentage_change": 32.2902796272}, {"date": "2005-01-03", "fuel": "diesel", "current_price": 1.957, "yoy_price": 1.503, "absolute_change": 0.454, "percentage_change": 30.2062541583}, {"date": "2005-01-10", "fuel": "diesel", "current_price": 1.934, "yoy_price": 1.551, "absolute_change": 0.383, "percentage_change": 24.6937459703}, {"date": "2005-01-17", "fuel": "diesel", "current_price": 1.952, "yoy_price": 1.559, "absolute_change": 0.393, "percentage_change": 25.208466966}, {"date": "2005-01-24", "fuel": "diesel", "current_price": 1.959, "yoy_price": 1.591, "absolute_change": 0.368, "percentage_change": 23.130106851}, {"date": "2005-01-31", "fuel": "diesel", "current_price": 1.992, "yoy_price": 1.581, "absolute_change": 0.411, "percentage_change": 25.9962049336}, {"date": "2005-02-07", "fuel": "diesel", "current_price": 1.983, "yoy_price": 1.568, "absolute_change": 0.415, "percentage_change": 26.4668367347}, {"date": "2005-02-14", "fuel": "diesel", "current_price": 1.986, "yoy_price": 1.584, "absolute_change": 0.402, "percentage_change": 25.3787878788}, {"date": "2005-02-21", "fuel": "diesel", "current_price": 2.02, "yoy_price": 1.595, "absolute_change": 0.425, "percentage_change": 26.6457680251}, {"date": "2005-02-28", "fuel": "diesel", "current_price": 2.118, "yoy_price": 1.619, "absolute_change": 0.499, "percentage_change": 30.8214947498}, {"date": "2005-03-07", "fuel": "diesel", "current_price": 2.168, "yoy_price": 1.628, "absolute_change": 0.54, "percentage_change": 33.1695331695}, {"date": "2005-03-14", "fuel": "diesel", "current_price": 2.194, "yoy_price": 1.617, "absolute_change": 0.577, "percentage_change": 35.6833642548}, {"date": "2005-03-21", "fuel": "diesel", "current_price": 2.244, "yoy_price": 1.641, "absolute_change": 0.603, "percentage_change": 36.7458866545}, {"date": "2005-03-28", "fuel": "diesel", "current_price": 2.249, "yoy_price": 1.642, "absolute_change": 0.607, "percentage_change": 36.9671132765}, {"date": "2005-04-04", "fuel": "diesel", "current_price": 2.303, "yoy_price": 1.648, "absolute_change": 0.655, "percentage_change": 39.7451456311}, {"date": "2005-04-11", "fuel": "diesel", "current_price": 2.316, "yoy_price": 1.679, "absolute_change": 0.637, "percentage_change": 37.9392495533}, {"date": "2005-04-18", "fuel": "diesel", "current_price": 2.259, "yoy_price": 1.724, "absolute_change": 0.535, "percentage_change": 31.0324825986}, {"date": "2005-04-25", "fuel": "diesel", "current_price": 2.289, "yoy_price": 1.718, "absolute_change": 0.571, "percentage_change": 33.2363213038}, {"date": "2005-05-02", "fuel": "diesel", "current_price": 2.262, "yoy_price": 1.717, "absolute_change": 0.545, "percentage_change": 31.7414094351}, {"date": "2005-05-09", "fuel": "diesel", "current_price": 2.227, "yoy_price": 1.745, "absolute_change": 0.482, "percentage_change": 27.6217765043}, {"date": "2005-05-16", "fuel": "diesel", "current_price": 2.189, "yoy_price": 1.763, "absolute_change": 0.426, "percentage_change": 24.1633579126}, {"date": "2005-05-23", "fuel": "diesel", "current_price": 2.156, "yoy_price": 1.761, "absolute_change": 0.395, "percentage_change": 22.4304372516}, {"date": "2005-05-30", "fuel": "diesel", "current_price": 2.16, "yoy_price": 1.746, "absolute_change": 0.414, "percentage_change": 23.7113402062}, {"date": "2005-06-06", "fuel": "diesel", "current_price": 2.234, "yoy_price": 1.734, "absolute_change": 0.5, "percentage_change": 28.8350634371}, {"date": "2005-06-13", "fuel": "diesel", "current_price": 2.276, "yoy_price": 1.711, "absolute_change": 0.565, "percentage_change": 33.0216247808}, {"date": "2005-06-20", "fuel": "diesel", "current_price": 2.313, "yoy_price": 1.7, "absolute_change": 0.613, "percentage_change": 36.0588235294}, {"date": "2005-06-27", "fuel": "diesel", "current_price": 2.336, "yoy_price": 1.7, "absolute_change": 0.636, "percentage_change": 37.4117647059}, {"date": "2005-07-04", "fuel": "diesel", "current_price": 2.348, "yoy_price": 1.716, "absolute_change": 0.632, "percentage_change": 36.8298368298}, {"date": "2005-07-11", "fuel": "diesel", "current_price": 2.408, "yoy_price": 1.74, "absolute_change": 0.668, "percentage_change": 38.3908045977}, {"date": "2005-07-18", "fuel": "diesel", "current_price": 2.392, "yoy_price": 1.744, "absolute_change": 0.648, "percentage_change": 37.1559633028}, {"date": "2005-07-25", "fuel": "diesel", "current_price": 2.342, "yoy_price": 1.754, "absolute_change": 0.588, "percentage_change": 33.5233751425}, {"date": "2005-08-01", "fuel": "diesel", "current_price": 2.348, "yoy_price": 1.78, "absolute_change": 0.568, "percentage_change": 31.9101123596}, {"date": "2005-08-08", "fuel": "diesel", "current_price": 2.407, "yoy_price": 1.814, "absolute_change": 0.593, "percentage_change": 32.6901874311}, {"date": "2005-08-15", "fuel": "diesel", "current_price": 2.567, "yoy_price": 1.825, "absolute_change": 0.742, "percentage_change": 40.6575342466}, {"date": "2005-08-22", "fuel": "diesel", "current_price": 2.588, "yoy_price": 1.874, "absolute_change": 0.714, "percentage_change": 38.1003201708}, {"date": "2005-08-29", "fuel": "diesel", "current_price": 2.59, "yoy_price": 1.871, "absolute_change": 0.719, "percentage_change": 38.4286477819}, {"date": "2005-09-05", "fuel": "diesel", "current_price": 2.898, "yoy_price": 1.869, "absolute_change": 1.029, "percentage_change": 55.0561797753}, {"date": "2005-09-12", "fuel": "diesel", "current_price": 2.847, "yoy_price": 1.874, "absolute_change": 0.973, "percentage_change": 51.9210245464}, {"date": "2005-09-19", "fuel": "diesel", "current_price": 2.732, "yoy_price": 1.912, "absolute_change": 0.82, "percentage_change": 42.8870292887}, {"date": "2005-09-26", "fuel": "diesel", "current_price": 2.798, "yoy_price": 2.012, "absolute_change": 0.786, "percentage_change": 39.0656063618}, {"date": "2005-10-03", "fuel": "diesel", "current_price": 3.144, "yoy_price": 2.053, "absolute_change": 1.091, "percentage_change": 53.1417437896}, {"date": "2005-10-10", "fuel": "diesel", "current_price": 3.15, "yoy_price": 2.092, "absolute_change": 1.058, "percentage_change": 50.5736137667}, {"date": "2005-10-17", "fuel": "diesel", "current_price": 3.148, "yoy_price": 2.18, "absolute_change": 0.968, "percentage_change": 44.4036697248}, {"date": "2005-10-24", "fuel": "diesel", "current_price": 3.157, "yoy_price": 2.212, "absolute_change": 0.945, "percentage_change": 42.7215189873}, {"date": "2005-10-31", "fuel": "diesel", "current_price": 2.876, "yoy_price": 2.206, "absolute_change": 0.67, "percentage_change": 30.3717135086}, {"date": "2005-11-07", "fuel": "diesel", "current_price": 2.698, "yoy_price": 2.163, "absolute_change": 0.535, "percentage_change": 24.7341655109}, {"date": "2005-11-14", "fuel": "diesel", "current_price": 2.602, "yoy_price": 2.132, "absolute_change": 0.47, "percentage_change": 22.0450281426}, {"date": "2005-11-21", "fuel": "diesel", "current_price": 2.513, "yoy_price": 2.116, "absolute_change": 0.397, "percentage_change": 18.7618147448}, {"date": "2005-11-28", "fuel": "diesel", "current_price": 2.479, "yoy_price": 2.116, "absolute_change": 0.363, "percentage_change": 17.1550094518}, {"date": "2005-12-05", "fuel": "diesel", "current_price": 2.425, "yoy_price": 2.069, "absolute_change": 0.356, "percentage_change": 17.2063798937}, {"date": "2005-12-12", "fuel": "diesel", "current_price": 2.436, "yoy_price": 1.997, "absolute_change": 0.439, "percentage_change": 21.9829744617}, {"date": "2005-12-19", "fuel": "diesel", "current_price": 2.462, "yoy_price": 1.984, "absolute_change": 0.478, "percentage_change": 24.0927419355}, {"date": "2005-12-26", "fuel": "diesel", "current_price": 2.448, "yoy_price": 1.987, "absolute_change": 0.461, "percentage_change": 23.200805234}, {"date": "2006-01-02", "fuel": "diesel", "current_price": 2.442, "yoy_price": 1.957, "absolute_change": 0.485, "percentage_change": 24.7828308636}, {"date": "2006-01-09", "fuel": "diesel", "current_price": 2.485, "yoy_price": 1.934, "absolute_change": 0.551, "percentage_change": 28.4901758014}, {"date": "2006-01-16", "fuel": "diesel", "current_price": 2.449, "yoy_price": 1.952, "absolute_change": 0.497, "percentage_change": 25.4610655738}, {"date": "2006-01-23", "fuel": "diesel", "current_price": 2.472, "yoy_price": 1.959, "absolute_change": 0.513, "percentage_change": 26.1868300153}, {"date": "2006-01-30", "fuel": "diesel", "current_price": 2.489, "yoy_price": 1.992, "absolute_change": 0.497, "percentage_change": 24.9497991968}, {"date": "2006-02-06", "fuel": "diesel", "current_price": 2.499, "yoy_price": 1.983, "absolute_change": 0.516, "percentage_change": 26.0211800303}, {"date": "2006-02-13", "fuel": "diesel", "current_price": 2.476, "yoy_price": 1.986, "absolute_change": 0.49, "percentage_change": 24.6727089627}, {"date": "2006-02-20", "fuel": "diesel", "current_price": 2.455, "yoy_price": 2.02, "absolute_change": 0.435, "percentage_change": 21.5346534653}, {"date": "2006-02-27", "fuel": "diesel", "current_price": 2.471, "yoy_price": 2.118, "absolute_change": 0.353, "percentage_change": 16.6666666667}, {"date": "2006-03-06", "fuel": "diesel", "current_price": 2.545, "yoy_price": 2.168, "absolute_change": 0.377, "percentage_change": 17.389298893}, {"date": "2006-03-13", "fuel": "diesel", "current_price": 2.543, "yoy_price": 2.194, "absolute_change": 0.349, "percentage_change": 15.9070191431}, {"date": "2006-03-20", "fuel": "diesel", "current_price": 2.581, "yoy_price": 2.244, "absolute_change": 0.337, "percentage_change": 15.0178253119}, {"date": "2006-03-27", "fuel": "diesel", "current_price": 2.565, "yoy_price": 2.249, "absolute_change": 0.316, "percentage_change": 14.0506891952}, {"date": "2006-04-03", "fuel": "diesel", "current_price": 2.617, "yoy_price": 2.303, "absolute_change": 0.314, "percentage_change": 13.6343899262}, {"date": "2006-04-10", "fuel": "diesel", "current_price": 2.654, "yoy_price": 2.316, "absolute_change": 0.338, "percentage_change": 14.5941278066}, {"date": "2006-04-17", "fuel": "diesel", "current_price": 2.765, "yoy_price": 2.259, "absolute_change": 0.506, "percentage_change": 22.399291722}, {"date": "2006-04-24", "fuel": "diesel", "current_price": 2.876, "yoy_price": 2.289, "absolute_change": 0.587, "percentage_change": 25.6443861948}, {"date": "2006-05-01", "fuel": "diesel", "current_price": 2.896, "yoy_price": 2.262, "absolute_change": 0.634, "percentage_change": 28.0282935455}, {"date": "2006-05-08", "fuel": "diesel", "current_price": 2.897, "yoy_price": 2.227, "absolute_change": 0.67, "percentage_change": 30.0853165694}, {"date": "2006-05-15", "fuel": "diesel", "current_price": 2.92, "yoy_price": 2.189, "absolute_change": 0.731, "percentage_change": 33.394243947}, {"date": "2006-05-22", "fuel": "diesel", "current_price": 2.888, "yoy_price": 2.156, "absolute_change": 0.732, "percentage_change": 33.9517625232}, {"date": "2006-05-29", "fuel": "diesel", "current_price": 2.882, "yoy_price": 2.16, "absolute_change": 0.722, "percentage_change": 33.4259259259}, {"date": "2006-06-05", "fuel": "diesel", "current_price": 2.89, "yoy_price": 2.234, "absolute_change": 0.656, "percentage_change": 29.3643688451}, {"date": "2006-06-12", "fuel": "diesel", "current_price": 2.918, "yoy_price": 2.276, "absolute_change": 0.642, "percentage_change": 28.2073813708}, {"date": "2006-06-19", "fuel": "diesel", "current_price": 2.915, "yoy_price": 2.313, "absolute_change": 0.602, "percentage_change": 26.0268050151}, {"date": "2006-06-26", "fuel": "diesel", "current_price": 2.867, "yoy_price": 2.336, "absolute_change": 0.531, "percentage_change": 22.7311643836}, {"date": "2006-07-03", "fuel": "diesel", "current_price": 2.898, "yoy_price": 2.348, "absolute_change": 0.55, "percentage_change": 23.4241908007}, {"date": "2006-07-10", "fuel": "diesel", "current_price": 2.918, "yoy_price": 2.408, "absolute_change": 0.51, "percentage_change": 21.1794019934}, {"date": "2006-07-17", "fuel": "diesel", "current_price": 2.926, "yoy_price": 2.392, "absolute_change": 0.534, "percentage_change": 22.3244147157}, {"date": "2006-07-24", "fuel": "diesel", "current_price": 2.946, "yoy_price": 2.342, "absolute_change": 0.604, "percentage_change": 25.7899231426}, {"date": "2006-07-31", "fuel": "diesel", "current_price": 2.98, "yoy_price": 2.348, "absolute_change": 0.632, "percentage_change": 26.9165247019}, {"date": "2006-08-07", "fuel": "diesel", "current_price": 3.055, "yoy_price": 2.407, "absolute_change": 0.648, "percentage_change": 26.9214790195}, {"date": "2006-08-14", "fuel": "diesel", "current_price": 3.065, "yoy_price": 2.567, "absolute_change": 0.498, "percentage_change": 19.400077912}, {"date": "2006-08-21", "fuel": "diesel", "current_price": 3.033, "yoy_price": 2.588, "absolute_change": 0.445, "percentage_change": 17.1947449768}, {"date": "2006-08-28", "fuel": "diesel", "current_price": 3.027, "yoy_price": 2.59, "absolute_change": 0.437, "percentage_change": 16.8725868726}, {"date": "2006-09-04", "fuel": "diesel", "current_price": 2.967, "yoy_price": 2.898, "absolute_change": 0.069, "percentage_change": 2.380952381}, {"date": "2006-09-11", "fuel": "diesel", "current_price": 2.857, "yoy_price": 2.847, "absolute_change": 0.01, "percentage_change": 0.3512469266}, {"date": "2006-09-18", "fuel": "diesel", "current_price": 2.713, "yoy_price": 2.732, "absolute_change": -0.019, "percentage_change": -0.6954612006}, {"date": "2006-09-25", "fuel": "diesel", "current_price": 2.595, "yoy_price": 2.798, "absolute_change": -0.203, "percentage_change": -7.2551822731}, {"date": "2006-10-02", "fuel": "diesel", "current_price": 2.546, "yoy_price": 3.144, "absolute_change": -0.598, "percentage_change": -19.0203562341}, {"date": "2006-10-09", "fuel": "diesel", "current_price": 2.506, "yoy_price": 3.15, "absolute_change": -0.644, "percentage_change": -20.4444444444}, {"date": "2006-10-16", "fuel": "diesel", "current_price": 2.503, "yoy_price": 3.148, "absolute_change": -0.645, "percentage_change": -20.4891994917}, {"date": "2006-10-23", "fuel": "diesel", "current_price": 2.524, "yoy_price": 3.157, "absolute_change": -0.633, "percentage_change": -20.0506810263}, {"date": "2006-10-30", "fuel": "diesel", "current_price": 2.517, "yoy_price": 2.876, "absolute_change": -0.359, "percentage_change": -12.4826147427}, {"date": "2006-11-06", "fuel": "diesel", "current_price": 2.506, "yoy_price": 2.698, "absolute_change": -0.192, "percentage_change": -7.1163825056}, {"date": "2006-11-13", "fuel": "diesel", "current_price": 2.552, "yoy_price": 2.602, "absolute_change": -0.05, "percentage_change": -1.9215987702}, {"date": "2006-11-20", "fuel": "diesel", "current_price": 2.553, "yoy_price": 2.513, "absolute_change": 0.04, "percentage_change": 1.5917230402}, {"date": "2006-11-27", "fuel": "diesel", "current_price": 2.567, "yoy_price": 2.479, "absolute_change": 0.088, "percentage_change": 3.5498184752}, {"date": "2006-12-04", "fuel": "diesel", "current_price": 2.618, "yoy_price": 2.425, "absolute_change": 0.193, "percentage_change": 7.9587628866}, {"date": "2006-12-11", "fuel": "diesel", "current_price": 2.621, "yoy_price": 2.436, "absolute_change": 0.185, "percentage_change": 7.5944170772}, {"date": "2006-12-18", "fuel": "diesel", "current_price": 2.606, "yoy_price": 2.462, "absolute_change": 0.144, "percentage_change": 5.8489033306}, {"date": "2006-12-25", "fuel": "diesel", "current_price": 2.596, "yoy_price": 2.448, "absolute_change": 0.148, "percentage_change": 6.045751634}, {"date": "2007-01-01", "fuel": "diesel", "current_price": 2.58, "yoy_price": 2.442, "absolute_change": 0.138, "percentage_change": 5.6511056511}, {"date": "2007-01-08", "fuel": "diesel", "current_price": 2.537, "yoy_price": 2.485, "absolute_change": 0.052, "percentage_change": 2.092555332}, {"date": "2007-01-15", "fuel": "diesel", "current_price": 2.463, "yoy_price": 2.449, "absolute_change": 0.014, "percentage_change": 0.5716619028}, {"date": "2007-01-22", "fuel": "diesel", "current_price": 2.43, "yoy_price": 2.472, "absolute_change": -0.042, "percentage_change": -1.6990291262}, {"date": "2007-01-29", "fuel": "diesel", "current_price": 2.413, "yoy_price": 2.489, "absolute_change": -0.076, "percentage_change": -3.0534351145}, {"date": "2007-02-05", "fuel": "diesel", "current_price": 2.4256666667, "yoy_price": 2.499, "absolute_change": -0.0733333333, "percentage_change": -2.9345071362}, {"date": "2007-02-12", "fuel": "diesel", "current_price": 2.466, "yoy_price": 2.476, "absolute_change": -0.01, "percentage_change": -0.4038772213}, {"date": "2007-02-19", "fuel": "diesel", "current_price": 2.481, "yoy_price": 2.455, "absolute_change": 0.026, "percentage_change": 1.0590631365}, {"date": "2007-02-26", "fuel": "diesel", "current_price": 2.5423333333, "yoy_price": 2.471, "absolute_change": 0.0713333333, "percentage_change": 2.8868204506}, {"date": "2007-03-05", "fuel": "diesel", "current_price": 2.6166666667, "yoy_price": 2.545, "absolute_change": 0.0716666667, "percentage_change": 2.8159790439}, {"date": "2007-03-12", "fuel": "diesel", "current_price": 2.679, "yoy_price": 2.543, "absolute_change": 0.136, "percentage_change": 5.3480141565}, {"date": "2007-03-19", "fuel": "diesel", "current_price": 2.673, "yoy_price": 2.581, "absolute_change": 0.092, "percentage_change": 3.5645098799}, {"date": "2007-03-26", "fuel": "diesel", "current_price": 2.6666666667, "yoy_price": 2.565, "absolute_change": 0.1016666667, "percentage_change": 3.9636127355}, {"date": "2007-04-02", "fuel": "diesel", "current_price": 2.7813333333, "yoy_price": 2.617, "absolute_change": 0.1643333333, "percentage_change": 6.2794548465}, {"date": "2007-04-09", "fuel": "diesel", "current_price": 2.8306666667, "yoy_price": 2.654, "absolute_change": 0.1766666667, "percentage_change": 6.65661894}, {"date": "2007-04-16", "fuel": "diesel", "current_price": 2.8696666667, "yoy_price": 2.765, "absolute_change": 0.1046666667, "percentage_change": 3.7854128993}, {"date": "2007-04-23", "fuel": "diesel", "current_price": 2.8416666667, "yoy_price": 2.876, "absolute_change": -0.0343333333, "percentage_change": -1.1937876681}, {"date": "2007-04-30", "fuel": "diesel", "current_price": 2.796, "yoy_price": 2.896, "absolute_change": -0.1, "percentage_change": -3.453038674}, {"date": "2007-05-07", "fuel": "diesel", "current_price": 2.7746666667, "yoy_price": 2.897, "absolute_change": -0.1223333333, "percentage_change": -4.2227591762}, {"date": "2007-05-14", "fuel": "diesel", "current_price": 2.755, "yoy_price": 2.92, "absolute_change": -0.165, "percentage_change": -5.6506849315}, {"date": "2007-05-21", "fuel": "diesel", "current_price": 2.7883333333, "yoy_price": 2.888, "absolute_change": -0.0996666667, "percentage_change": -3.4510618652}, {"date": "2007-05-28", "fuel": "diesel", "current_price": 2.8016666667, "yoy_price": 2.882, "absolute_change": -0.0803333333, "percentage_change": -2.7874161462}, {"date": "2007-06-04", "fuel": "diesel", "current_price": 2.7833333333, "yoy_price": 2.89, "absolute_change": -0.1066666667, "percentage_change": -3.69088812}, {"date": "2007-06-11", "fuel": "diesel", "current_price": 2.774, "yoy_price": 2.918, "absolute_change": -0.144, "percentage_change": -4.9348869088}, {"date": "2007-06-18", "fuel": "diesel", "current_price": 2.7916666667, "yoy_price": 2.915, "absolute_change": -0.1233333333, "percentage_change": -4.2309891366}, {"date": "2007-06-25", "fuel": "diesel", "current_price": 2.8226666667, "yoy_price": 2.867, "absolute_change": -0.0443333333, "percentage_change": -1.5463318219}, {"date": "2007-07-02", "fuel": "diesel", "current_price": 2.8166666667, "yoy_price": 2.898, "absolute_change": -0.0813333333, "percentage_change": -2.8065332413}, {"date": "2007-07-09", "fuel": "diesel", "current_price": 2.839, "yoy_price": 2.918, "absolute_change": -0.079, "percentage_change": -2.7073337903}, {"date": "2007-07-16", "fuel": "diesel", "current_price": 2.875, "yoy_price": 2.926, "absolute_change": -0.051, "percentage_change": -1.7429938483}, {"date": "2007-07-23", "fuel": "diesel", "current_price": 2.8736666667, "yoy_price": 2.946, "absolute_change": -0.0723333333, "percentage_change": -2.4553066305}, {"date": "2007-07-30", "fuel": "diesel", "current_price": 2.872, "yoy_price": 2.98, "absolute_change": -0.108, "percentage_change": -3.6241610738}, {"date": "2007-08-06", "fuel": "diesel", "current_price": 2.8846666667, "yoy_price": 3.055, "absolute_change": -0.1703333333, "percentage_change": -5.5755591926}, {"date": "2007-08-13", "fuel": "diesel", "current_price": 2.8326666667, "yoy_price": 3.065, "absolute_change": -0.2323333333, "percentage_change": -7.580206634}, {"date": "2007-08-20", "fuel": "diesel", "current_price": 2.8573333333, "yoy_price": 3.033, "absolute_change": -0.1756666667, "percentage_change": -5.7918452577}, {"date": "2007-08-27", "fuel": "diesel", "current_price": 2.8523333333, "yoy_price": 3.027, "absolute_change": -0.1746666667, "percentage_change": -5.7702896157}, {"date": "2007-09-03", "fuel": "diesel", "current_price": 2.8843333333, "yoy_price": 2.967, "absolute_change": -0.0826666667, "percentage_change": -2.7862037973}, {"date": "2007-09-10", "fuel": "diesel", "current_price": 2.9156666667, "yoy_price": 2.857, "absolute_change": 0.0586666667, "percentage_change": 2.0534360051}, {"date": "2007-09-17", "fuel": "diesel", "current_price": 2.9563333333, "yoy_price": 2.713, "absolute_change": 0.2433333333, "percentage_change": 8.9691608306}, {"date": "2007-09-24", "fuel": "diesel", "current_price": 3.026, "yoy_price": 2.595, "absolute_change": 0.431, "percentage_change": 16.6088631985}, {"date": "2007-10-01", "fuel": "diesel", "current_price": 3.04, "yoy_price": 2.546, "absolute_change": 0.494, "percentage_change": 19.4029850746}, {"date": "2007-10-08", "fuel": "diesel", "current_price": 3.022, "yoy_price": 2.506, "absolute_change": 0.516, "percentage_change": 20.5905826018}, {"date": "2007-10-15", "fuel": "diesel", "current_price": 3.0226666667, "yoy_price": 2.503, "absolute_change": 0.5196666667, "percentage_change": 20.7617525636}, {"date": "2007-10-22", "fuel": "diesel", "current_price": 3.0756666667, "yoy_price": 2.524, "absolute_change": 0.5516666667, "percentage_change": 21.8568409931}, {"date": "2007-10-29", "fuel": "diesel", "current_price": 3.141, "yoy_price": 2.517, "absolute_change": 0.624, "percentage_change": 24.7914183552}, {"date": "2007-11-05", "fuel": "diesel", "current_price": 3.2913333333, "yoy_price": 2.506, "absolute_change": 0.7853333333, "percentage_change": 31.3381218409}, {"date": "2007-11-12", "fuel": "diesel", "current_price": 3.4103333333, "yoy_price": 2.552, "absolute_change": 0.8583333333, "percentage_change": 33.6337513062}, {"date": "2007-11-19", "fuel": "diesel", "current_price": 3.3896666667, "yoy_price": 2.553, "absolute_change": 0.8366666667, "percentage_change": 32.7719023371}, {"date": "2007-11-26", "fuel": "diesel", "current_price": 3.4273333333, "yoy_price": 2.567, "absolute_change": 0.8603333333, "percentage_change": 33.5151279055}, {"date": "2007-12-03", "fuel": "diesel", "current_price": 3.393, "yoy_price": 2.618, "absolute_change": 0.775, "percentage_change": 29.602750191}, {"date": "2007-12-10", "fuel": "diesel", "current_price": 3.2963333333, "yoy_price": 2.621, "absolute_change": 0.6753333333, "percentage_change": 25.7662469795}, {"date": "2007-12-17", "fuel": "diesel", "current_price": 3.2816666667, "yoy_price": 2.606, "absolute_change": 0.6756666667, "percentage_change": 25.9273471476}, {"date": "2007-12-24", "fuel": "diesel", "current_price": 3.2846666667, "yoy_price": 2.596, "absolute_change": 0.6886666667, "percentage_change": 26.5279917822}, {"date": "2007-12-31", "fuel": "diesel", "current_price": 3.3243333333, "yoy_price": 2.58, "absolute_change": 0.7443333333, "percentage_change": 28.850129199}, {"date": "2008-01-07", "fuel": "diesel", "current_price": 3.3546666667, "yoy_price": 2.537, "absolute_change": 0.8176666667, "percentage_change": 32.2296675864}, {"date": "2008-01-14", "fuel": "diesel", "current_price": 3.2986666667, "yoy_price": 2.463, "absolute_change": 0.8356666667, "percentage_change": 33.9288131006}, {"date": "2008-01-21", "fuel": "diesel", "current_price": 3.2416666667, "yoy_price": 2.43, "absolute_change": 0.8116666667, "percentage_change": 33.401920439}, {"date": "2008-01-28", "fuel": "diesel", "current_price": 3.234, "yoy_price": 2.413, "absolute_change": 0.821, "percentage_change": 34.0240364691}, {"date": "2008-02-04", "fuel": "diesel", "current_price": 3.2593333333, "yoy_price": 2.4256666667, "absolute_change": 0.8336666667, "percentage_change": 34.3685584719}, {"date": "2008-02-11", "fuel": "diesel", "current_price": 3.258, "yoy_price": 2.466, "absolute_change": 0.792, "percentage_change": 32.1167883212}, {"date": "2008-02-18", "fuel": "diesel", "current_price": 3.3786666667, "yoy_price": 2.481, "absolute_change": 0.8976666667, "percentage_change": 36.1816471853}, {"date": "2008-02-25", "fuel": "diesel", "current_price": 3.5403333333, "yoy_price": 2.5423333333, "absolute_change": 0.998, "percentage_change": 39.2552773043}, {"date": "2008-03-03", "fuel": "diesel", "current_price": 3.6403333333, "yoy_price": 2.6166666667, "absolute_change": 1.0236666667, "percentage_change": 39.1210191083}, {"date": "2008-03-10", "fuel": "diesel", "current_price": 3.806, "yoy_price": 2.679, "absolute_change": 1.127, "percentage_change": 42.0679357969}, {"date": "2008-03-17", "fuel": "diesel", "current_price": 3.96, "yoy_price": 2.673, "absolute_change": 1.287, "percentage_change": 48.1481481481}, {"date": "2008-03-24", "fuel": "diesel", "current_price": 3.973, "yoy_price": 2.6666666667, "absolute_change": 1.3063333333, "percentage_change": 48.9875}, {"date": "2008-03-31", "fuel": "diesel", "current_price": 3.9416666667, "yoy_price": 2.7813333333, "absolute_change": 1.1603333333, "percentage_change": 41.7186001918}, {"date": "2008-04-07", "fuel": "diesel", "current_price": 3.932, "yoy_price": 2.8306666667, "absolute_change": 1.1013333333, "percentage_change": 38.9072067829}, {"date": "2008-04-14", "fuel": "diesel", "current_price": 4.0383333333, "yoy_price": 2.8696666667, "absolute_change": 1.1686666667, "percentage_change": 40.7248228598}, {"date": "2008-04-21", "fuel": "diesel", "current_price": 4.1216666667, "yoy_price": 2.8416666667, "absolute_change": 1.28, "percentage_change": 45.0439882698}, {"date": "2008-04-28", "fuel": "diesel", "current_price": 4.154, "yoy_price": 2.796, "absolute_change": 1.358, "percentage_change": 48.5693848355}, {"date": "2008-05-05", "fuel": "diesel", "current_price": 4.12, "yoy_price": 2.7746666667, "absolute_change": 1.3453333333, "percentage_change": 48.4863046612}, {"date": "2008-05-12", "fuel": "diesel", "current_price": 4.3113333333, "yoy_price": 2.755, "absolute_change": 1.5563333333, "percentage_change": 56.4912280702}, {"date": "2008-05-19", "fuel": "diesel", "current_price": 4.4823333333, "yoy_price": 2.7883333333, "absolute_change": 1.694, "percentage_change": 60.7531380753}, {"date": "2008-05-26", "fuel": "diesel", "current_price": 4.7043333333, "yoy_price": 2.8016666667, "absolute_change": 1.9026666667, "percentage_change": 67.9119571684}, {"date": "2008-06-02", "fuel": "diesel", "current_price": 4.6863333333, "yoy_price": 2.7833333333, "absolute_change": 1.903, "percentage_change": 68.371257485}, {"date": "2008-06-09", "fuel": "diesel", "current_price": 4.668, "yoy_price": 2.774, "absolute_change": 1.894, "percentage_change": 68.2768565249}, {"date": "2008-06-16", "fuel": "diesel", "current_price": 4.6666666667, "yoy_price": 2.7916666667, "absolute_change": 1.875, "percentage_change": 67.1641791045}, {"date": "2008-06-23", "fuel": "diesel", "current_price": 4.6196666667, "yoy_price": 2.8226666667, "absolute_change": 1.797, "percentage_change": 63.6632026453}, {"date": "2008-06-30", "fuel": "diesel", "current_price": 4.6186666667, "yoy_price": 2.8166666667, "absolute_change": 1.802, "percentage_change": 63.9763313609}, {"date": "2008-07-07", "fuel": "diesel", "current_price": 4.712, "yoy_price": 2.839, "absolute_change": 1.873, "percentage_change": 65.973934484}, {"date": "2008-07-14", "fuel": "diesel", "current_price": 4.7473333333, "yoy_price": 2.875, "absolute_change": 1.8723333333, "percentage_change": 65.1246376812}, {"date": "2008-07-21", "fuel": "diesel", "current_price": 4.692, "yoy_price": 2.8736666667, "absolute_change": 1.8183333333, "percentage_change": 63.275722074}, {"date": "2008-07-28", "fuel": "diesel", "current_price": 4.5763333333, "yoy_price": 2.872, "absolute_change": 1.7043333333, "percentage_change": 59.343082637}, {"date": "2008-08-04", "fuel": "diesel", "current_price": 4.4706666667, "yoy_price": 2.8846666667, "absolute_change": 1.586, "percentage_change": 54.9803559048}, {"date": "2008-08-11", "fuel": "diesel", "current_price": 4.3203333333, "yoy_price": 2.8326666667, "absolute_change": 1.4876666667, "percentage_change": 52.5182395858}, {"date": "2008-08-18", "fuel": "diesel", "current_price": 4.176, "yoy_price": 2.8573333333, "absolute_change": 1.3186666667, "percentage_change": 46.1502566496}, {"date": "2008-08-25", "fuel": "diesel", "current_price": 4.114, "yoy_price": 2.8523333333, "absolute_change": 1.2616666667, "percentage_change": 44.2327918663}, {"date": "2008-09-01", "fuel": "diesel", "current_price": 4.0903333333, "yoy_price": 2.8843333333, "absolute_change": 1.206, "percentage_change": 41.8120882931}, {"date": "2008-09-08", "fuel": "diesel", "current_price": 4.0233333333, "yoy_price": 2.9156666667, "absolute_change": 1.1076666667, "percentage_change": 37.9901680576}, {"date": "2008-09-15", "fuel": "diesel", "current_price": 3.997, "yoy_price": 2.9563333333, "absolute_change": 1.0406666667, "percentage_change": 35.2012628256}, {"date": "2008-09-22", "fuel": "diesel", "current_price": 3.9366666667, "yoy_price": 3.026, "absolute_change": 0.9106666667, "percentage_change": 30.094734523}, {"date": "2008-09-29", "fuel": "diesel", "current_price": 3.9383333333, "yoy_price": 3.04, "absolute_change": 0.8983333333, "percentage_change": 29.5504385965}, {"date": "2008-10-06", "fuel": "diesel", "current_price": 3.8476666667, "yoy_price": 3.022, "absolute_change": 0.8256666667, "percentage_change": 27.3218619016}, {"date": "2008-10-13", "fuel": "diesel", "current_price": 3.6296666667, "yoy_price": 3.0226666667, "absolute_change": 0.607, "percentage_change": 20.0816056462}, {"date": "2008-10-20", "fuel": "diesel", "current_price": 3.4456666667, "yoy_price": 3.0756666667, "absolute_change": 0.37, "percentage_change": 12.0299122142}, {"date": "2008-10-27", "fuel": "diesel", "current_price": 3.259, "yoy_price": 3.141, "absolute_change": 0.118, "percentage_change": 3.7567653613}, {"date": "2008-11-03", "fuel": "diesel", "current_price": 3.0606666667, "yoy_price": 3.2913333333, "absolute_change": -0.2306666667, "percentage_change": -7.0083046384}, {"date": "2008-11-10", "fuel": "diesel", "current_price": 2.9103333333, "yoy_price": 3.4103333333, "absolute_change": -0.5, "percentage_change": -14.6613234288}, {"date": "2008-11-17", "fuel": "diesel", "current_price": 2.7766666667, "yoy_price": 3.3896666667, "absolute_change": -0.613, "percentage_change": -18.0843740781}, {"date": "2008-11-24", "fuel": "diesel", "current_price": 2.637, "yoy_price": 3.4273333333, "absolute_change": -0.7903333333, "percentage_change": -23.0597160086}, {"date": "2008-12-01", "fuel": "diesel", "current_price": 2.5943333333, "yoy_price": 3.393, "absolute_change": -0.7986666667, "percentage_change": -23.5386580214}, {"date": "2008-12-08", "fuel": "diesel", "current_price": 2.519, "yoy_price": 3.2963333333, "absolute_change": -0.7773333333, "percentage_change": -23.5817575083}, {"date": "2008-12-15", "fuel": "diesel", "current_price": 2.426, "yoy_price": 3.2816666667, "absolute_change": -0.8556666667, "percentage_change": -26.0741493144}, {"date": "2008-12-22", "fuel": "diesel", "current_price": 2.3695, "yoy_price": 3.2846666667, "absolute_change": -0.9151666667, "percentage_change": -27.8617820175}, {"date": "2008-12-29", "fuel": "diesel", "current_price": 2.331, "yoy_price": 3.3243333333, "absolute_change": -0.9933333333, "percentage_change": -29.8806778301}, {"date": "2009-01-05", "fuel": "diesel", "current_price": 2.295, "yoy_price": 3.3546666667, "absolute_change": -1.0596666667, "percentage_change": -31.5878378378}, {"date": "2009-01-12", "fuel": "diesel", "current_price": 2.319, "yoy_price": 3.2986666667, "absolute_change": -0.9796666667, "percentage_change": -29.6988682296}, {"date": "2009-01-19", "fuel": "diesel", "current_price": 2.3015, "yoy_price": 3.2416666667, "absolute_change": -0.9401666667, "percentage_change": -29.0025706941}, {"date": "2009-01-26", "fuel": "diesel", "current_price": 2.273, "yoy_price": 3.234, "absolute_change": -0.961, "percentage_change": -29.7155225727}, {"date": "2009-02-02", "fuel": "diesel", "current_price": 2.251, "yoy_price": 3.2593333333, "absolute_change": -1.0083333333, "percentage_change": -30.936796891}, {"date": "2009-02-09", "fuel": "diesel", "current_price": 2.2245, "yoy_price": 3.258, "absolute_change": -1.0335, "percentage_change": -31.7219152855}, {"date": "2009-02-16", "fuel": "diesel", "current_price": 2.1915, "yoy_price": 3.3786666667, "absolute_change": -1.1871666667, "percentage_change": -35.1371349645}, {"date": "2009-02-23", "fuel": "diesel", "current_price": 2.134, "yoy_price": 3.5403333333, "absolute_change": -1.4063333333, "percentage_change": -39.7231899068}, {"date": "2009-03-02", "fuel": "diesel", "current_price": 2.091, "yoy_price": 3.6403333333, "absolute_change": -1.5493333333, "percentage_change": -42.5602051094}, {"date": "2009-03-09", "fuel": "diesel", "current_price": 2.048, "yoy_price": 3.806, "absolute_change": -1.758, "percentage_change": -46.190225959}, {"date": "2009-03-16", "fuel": "diesel", "current_price": 2.02, "yoy_price": 3.96, "absolute_change": -1.94, "percentage_change": -48.9898989899}, {"date": "2009-03-23", "fuel": "diesel", "current_price": 2.0915, "yoy_price": 3.973, "absolute_change": -1.8815, "percentage_change": -47.3571608356}, {"date": "2009-03-30", "fuel": "diesel", "current_price": 2.223, "yoy_price": 3.9416666667, "absolute_change": -1.7186666667, "percentage_change": -43.6025369979}, {"date": "2009-04-06", "fuel": "diesel", "current_price": 2.2305, "yoy_price": 3.932, "absolute_change": -1.7015, "percentage_change": -43.2731434385}, {"date": "2009-04-13", "fuel": "diesel", "current_price": 2.2315, "yoy_price": 4.0383333333, "absolute_change": -1.8068333333, "percentage_change": -44.7420553033}, {"date": "2009-04-20", "fuel": "diesel", "current_price": 2.2235, "yoy_price": 4.1216666667, "absolute_change": -1.8981666667, "percentage_change": -46.0533764658}, {"date": "2009-04-27", "fuel": "diesel", "current_price": 2.204, "yoy_price": 4.154, "absolute_change": -1.95, "percentage_change": -46.9427058257}, {"date": "2009-05-04", "fuel": "diesel", "current_price": 2.1885, "yoy_price": 4.12, "absolute_change": -1.9315, "percentage_change": -46.8810679612}, {"date": "2009-05-11", "fuel": "diesel", "current_price": 2.2195, "yoy_price": 4.3113333333, "absolute_change": -2.0918333333, "percentage_change": -48.5194062162}, {"date": "2009-05-18", "fuel": "diesel", "current_price": 2.234, "yoy_price": 4.4823333333, "absolute_change": -2.2483333333, "percentage_change": -50.1598869636}, {"date": "2009-05-25", "fuel": "diesel", "current_price": 2.276, "yoy_price": 4.7043333333, "absolute_change": -2.4283333333, "percentage_change": -51.6190746121}, {"date": "2009-06-01", "fuel": "diesel", "current_price": 2.353, "yoy_price": 4.6863333333, "absolute_change": -2.3333333333, "percentage_change": -49.7901699979}, {"date": "2009-06-08", "fuel": "diesel", "current_price": 2.4995, "yoy_price": 4.668, "absolute_change": -2.1685, "percentage_change": -46.4545844045}, {"date": "2009-06-15", "fuel": "diesel", "current_price": 2.5735, "yoy_price": 4.6666666667, "absolute_change": -2.0931666667, "percentage_change": -44.8535714286}, {"date": "2009-06-22", "fuel": "diesel", "current_price": 2.6175, "yoy_price": 4.6196666667, "absolute_change": -2.0021666667, "percentage_change": -43.340067826}, {"date": "2009-06-29", "fuel": "diesel", "current_price": 2.61, "yoy_price": 4.6186666667, "absolute_change": -2.0086666667, "percentage_change": -43.4901847575}, {"date": "2009-07-06", "fuel": "diesel", "current_price": 2.596, "yoy_price": 4.712, "absolute_change": -2.116, "percentage_change": -44.9066213922}, {"date": "2009-07-13", "fuel": "diesel", "current_price": 2.544, "yoy_price": 4.7473333333, "absolute_change": -2.2033333333, "percentage_change": -46.4120207836}, {"date": "2009-07-20", "fuel": "diesel", "current_price": 2.4985, "yoy_price": 4.692, "absolute_change": -2.1935, "percentage_change": -46.7497868713}, {"date": "2009-07-27", "fuel": "diesel", "current_price": 2.53, "yoy_price": 4.5763333333, "absolute_change": -2.0463333333, "percentage_change": -44.7155655911}, {"date": "2009-08-03", "fuel": "diesel", "current_price": 2.552, "yoy_price": 4.4706666667, "absolute_change": -1.9186666667, "percentage_change": -42.9167909335}, {"date": "2009-08-10", "fuel": "diesel", "current_price": 2.6265, "yoy_price": 4.3203333333, "absolute_change": -1.6938333333, "percentage_change": -39.2060797778}, {"date": "2009-08-17", "fuel": "diesel", "current_price": 2.654, "yoy_price": 4.176, "absolute_change": -1.522, "percentage_change": -36.4463601533}, {"date": "2009-08-24", "fuel": "diesel", "current_price": 2.67, "yoy_price": 4.114, "absolute_change": -1.444, "percentage_change": -35.0996596986}, {"date": "2009-08-31", "fuel": "diesel", "current_price": 2.6765, "yoy_price": 4.0903333333, "absolute_change": -1.4138333333, "percentage_change": -34.5652351072}, {"date": "2009-09-07", "fuel": "diesel", "current_price": 2.6485, "yoy_price": 4.0233333333, "absolute_change": -1.3748333333, "percentage_change": -34.1714995857}, {"date": "2009-09-14", "fuel": "diesel", "current_price": 2.636, "yoy_price": 3.997, "absolute_change": -1.361, "percentage_change": -34.0505379034}, {"date": "2009-09-21", "fuel": "diesel", "current_price": 2.624, "yoy_price": 3.9366666667, "absolute_change": -1.3126666667, "percentage_change": -33.3446232007}, {"date": "2009-09-28", "fuel": "diesel", "current_price": 2.6035, "yoy_price": 3.9383333333, "absolute_change": -1.3348333333, "percentage_change": -33.8933559035}, {"date": "2009-10-05", "fuel": "diesel", "current_price": 2.585, "yoy_price": 3.8476666667, "absolute_change": -1.2626666667, "percentage_change": -32.8164255393}, {"date": "2009-10-12", "fuel": "diesel", "current_price": 2.602, "yoy_price": 3.6296666667, "absolute_change": -1.0276666667, "percentage_change": -28.3129763982}, {"date": "2009-10-19", "fuel": "diesel", "current_price": 2.7065, "yoy_price": 3.4456666667, "absolute_change": -0.7391666667, "percentage_change": -21.4520653961}, {"date": "2009-10-26", "fuel": "diesel", "current_price": 2.803, "yoy_price": 3.259, "absolute_change": -0.456, "percentage_change": -13.9920220927}, {"date": "2009-11-02", "fuel": "diesel", "current_price": 2.8095, "yoy_price": 3.0606666667, "absolute_change": -0.2511666667, "percentage_change": -8.2062731431}, {"date": "2009-11-09", "fuel": "diesel", "current_price": 2.803, "yoy_price": 2.9103333333, "absolute_change": -0.1073333333, "percentage_change": -3.6880082465}, {"date": "2009-11-16", "fuel": "diesel", "current_price": 2.7925, "yoy_price": 2.7766666667, "absolute_change": 0.0158333333, "percentage_change": 0.5702280912}, {"date": "2009-11-23", "fuel": "diesel", "current_price": 2.7895, "yoy_price": 2.637, "absolute_change": 0.1525, "percentage_change": 5.7830868411}, {"date": "2009-11-30", "fuel": "diesel", "current_price": 2.7775, "yoy_price": 2.5943333333, "absolute_change": 0.1831666667, "percentage_change": 7.06025954}, {"date": "2009-12-07", "fuel": "diesel", "current_price": 2.7745, "yoy_price": 2.519, "absolute_change": 0.2555, "percentage_change": 10.1429138547}, {"date": "2009-12-14", "fuel": "diesel", "current_price": 2.7505, "yoy_price": 2.426, "absolute_change": 0.3245, "percentage_change": 13.3759274526}, {"date": "2009-12-21", "fuel": "diesel", "current_price": 2.7285, "yoy_price": 2.3695, "absolute_change": 0.359, "percentage_change": 15.1508757122}, {"date": "2009-12-28", "fuel": "diesel", "current_price": 2.734, "yoy_price": 2.331, "absolute_change": 0.403, "percentage_change": 17.2887172887}, {"date": "2010-01-04", "fuel": "diesel", "current_price": 2.799, "yoy_price": 2.295, "absolute_change": 0.504, "percentage_change": 21.9607843137}, {"date": "2010-01-11", "fuel": "diesel", "current_price": 2.8805, "yoy_price": 2.319, "absolute_change": 0.5615, "percentage_change": 24.2130228547}, {"date": "2010-01-18", "fuel": "diesel", "current_price": 2.872, "yoy_price": 2.3015, "absolute_change": 0.5705, "percentage_change": 24.7881816207}, {"date": "2010-01-25", "fuel": "diesel", "current_price": 2.8355, "yoy_price": 2.273, "absolute_change": 0.5625, "percentage_change": 24.7470303564}, {"date": "2010-02-01", "fuel": "diesel", "current_price": 2.784, "yoy_price": 2.251, "absolute_change": 0.533, "percentage_change": 23.678365171}, {"date": "2010-02-08", "fuel": "diesel", "current_price": 2.772, "yoy_price": 2.2245, "absolute_change": 0.5475, "percentage_change": 24.6122724208}, {"date": "2010-02-15", "fuel": "diesel", "current_price": 2.7585, "yoy_price": 2.1915, "absolute_change": 0.567, "percentage_change": 25.8726899384}, {"date": "2010-02-22", "fuel": "diesel", "current_price": 2.833, "yoy_price": 2.134, "absolute_change": 0.699, "percentage_change": 32.755388941}, {"date": "2010-03-01", "fuel": "diesel", "current_price": 2.863, "yoy_price": 2.091, "absolute_change": 0.772, "percentage_change": 36.9201339072}, {"date": "2010-03-08", "fuel": "diesel", "current_price": 2.905, "yoy_price": 2.048, "absolute_change": 0.857, "percentage_change": 41.845703125}, {"date": "2010-03-15", "fuel": "diesel", "current_price": 2.925, "yoy_price": 2.02, "absolute_change": 0.905, "percentage_change": 44.801980198}, {"date": "2010-03-22", "fuel": "diesel", "current_price": 2.9475, "yoy_price": 2.0915, "absolute_change": 0.856, "percentage_change": 40.9275639493}, {"date": "2010-03-29", "fuel": "diesel", "current_price": 2.9405, "yoy_price": 2.223, "absolute_change": 0.7175, "percentage_change": 32.2762033288}, {"date": "2010-04-05", "fuel": "diesel", "current_price": 3.016, "yoy_price": 2.2305, "absolute_change": 0.7855, "percentage_change": 35.2163192109}, {"date": "2010-04-12", "fuel": "diesel", "current_price": 3.071, "yoy_price": 2.2315, "absolute_change": 0.8395, "percentage_change": 37.6204346852}, {"date": "2010-04-19", "fuel": "diesel", "current_price": 3.076, "yoy_price": 2.2235, "absolute_change": 0.8525, "percentage_change": 38.3404542388}, {"date": "2010-04-26", "fuel": "diesel", "current_price": 3.08, "yoy_price": 2.204, "absolute_change": 0.876, "percentage_change": 39.7459165154}, {"date": "2010-05-03", "fuel": "diesel", "current_price": 3.124, "yoy_price": 2.1885, "absolute_change": 0.9355, "percentage_change": 42.746173178}, {"date": "2010-05-10", "fuel": "diesel", "current_price": 3.129, "yoy_price": 2.2195, "absolute_change": 0.9095, "percentage_change": 40.9776976797}, {"date": "2010-05-17", "fuel": "diesel", "current_price": 3.096, "yoy_price": 2.234, "absolute_change": 0.862, "percentage_change": 38.5854968666}, {"date": "2010-05-24", "fuel": "diesel", "current_price": 3.023, "yoy_price": 2.276, "absolute_change": 0.747, "percentage_change": 32.8207381371}, {"date": "2010-05-31", "fuel": "diesel", "current_price": 2.9815, "yoy_price": 2.353, "absolute_change": 0.6285, "percentage_change": 26.7105822354}, {"date": "2010-06-07", "fuel": "diesel", "current_price": 2.9475, "yoy_price": 2.4995, "absolute_change": 0.448, "percentage_change": 17.9235847169}, {"date": "2010-06-14", "fuel": "diesel", "current_price": 2.929, "yoy_price": 2.5735, "absolute_change": 0.3555, "percentage_change": 13.8138721585}, {"date": "2010-06-21", "fuel": "diesel", "current_price": 2.9615, "yoy_price": 2.6175, "absolute_change": 0.344, "percentage_change": 13.1423113658}, {"date": "2010-06-28", "fuel": "diesel", "current_price": 2.9565, "yoy_price": 2.61, "absolute_change": 0.3465, "percentage_change": 13.275862069}, {"date": "2010-07-05", "fuel": "diesel", "current_price": 2.9245, "yoy_price": 2.596, "absolute_change": 0.3285, "percentage_change": 12.6540832049}, {"date": "2010-07-12", "fuel": "diesel", "current_price": 2.9035, "yoy_price": 2.544, "absolute_change": 0.3595, "percentage_change": 14.1312893082}, {"date": "2010-07-19", "fuel": "diesel", "current_price": 2.899, "yoy_price": 2.4985, "absolute_change": 0.4005, "percentage_change": 16.0296177707}, {"date": "2010-07-26", "fuel": "diesel", "current_price": 2.919, "yoy_price": 2.53, "absolute_change": 0.389, "percentage_change": 15.3754940711}, {"date": "2010-08-02", "fuel": "diesel", "current_price": 2.928, "yoy_price": 2.552, "absolute_change": 0.376, "percentage_change": 14.7335423197}, {"date": "2010-08-09", "fuel": "diesel", "current_price": 2.991, "yoy_price": 2.6265, "absolute_change": 0.3645, "percentage_change": 13.8777841234}, {"date": "2010-08-16", "fuel": "diesel", "current_price": 2.979, "yoy_price": 2.654, "absolute_change": 0.325, "percentage_change": 12.2456669179}, {"date": "2010-08-23", "fuel": "diesel", "current_price": 2.957, "yoy_price": 2.67, "absolute_change": 0.287, "percentage_change": 10.7490636704}, {"date": "2010-08-30", "fuel": "diesel", "current_price": 2.938, "yoy_price": 2.6765, "absolute_change": 0.2615, "percentage_change": 9.7702223052}, {"date": "2010-09-06", "fuel": "diesel", "current_price": 2.931, "yoy_price": 2.6485, "absolute_change": 0.2825, "percentage_change": 10.6664149519}, {"date": "2010-09-13", "fuel": "diesel", "current_price": 2.943, "yoy_price": 2.636, "absolute_change": 0.307, "percentage_change": 11.6464339909}, {"date": "2010-09-20", "fuel": "diesel", "current_price": 2.96, "yoy_price": 2.624, "absolute_change": 0.336, "percentage_change": 12.8048780488}, {"date": "2010-09-27", "fuel": "diesel", "current_price": 2.951, "yoy_price": 2.6035, "absolute_change": 0.3475, "percentage_change": 13.3474169387}, {"date": "2010-10-04", "fuel": "diesel", "current_price": 3, "yoy_price": 2.585, "absolute_change": 0.415, "percentage_change": 16.0541586074}, {"date": "2010-10-11", "fuel": "diesel", "current_price": 3.066, "yoy_price": 2.602, "absolute_change": 0.464, "percentage_change": 17.8324365872}, {"date": "2010-10-18", "fuel": "diesel", "current_price": 3.073, "yoy_price": 2.7065, "absolute_change": 0.3665, "percentage_change": 13.5414742287}, {"date": "2010-10-25", "fuel": "diesel", "current_price": 3.067, "yoy_price": 2.803, "absolute_change": 0.264, "percentage_change": 9.4184801998}, {"date": "2010-11-01", "fuel": "diesel", "current_price": 3.067, "yoy_price": 2.8095, "absolute_change": 0.2575, "percentage_change": 9.1653319096}, {"date": "2010-11-08", "fuel": "diesel", "current_price": 3.116, "yoy_price": 2.803, "absolute_change": 0.313, "percentage_change": 11.1666072066}, {"date": "2010-11-15", "fuel": "diesel", "current_price": 3.184, "yoy_price": 2.7925, "absolute_change": 0.3915, "percentage_change": 14.0196956132}, {"date": "2010-11-22", "fuel": "diesel", "current_price": 3.171, "yoy_price": 2.7895, "absolute_change": 0.3815, "percentage_change": 13.6762860728}, {"date": "2010-11-29", "fuel": "diesel", "current_price": 3.162, "yoy_price": 2.7775, "absolute_change": 0.3845, "percentage_change": 13.8433843384}, {"date": "2010-12-06", "fuel": "diesel", "current_price": 3.197, "yoy_price": 2.7745, "absolute_change": 0.4225, "percentage_change": 15.2279690034}, {"date": "2010-12-13", "fuel": "diesel", "current_price": 3.231, "yoy_price": 2.7505, "absolute_change": 0.4805, "percentage_change": 17.4695509907}, {"date": "2010-12-20", "fuel": "diesel", "current_price": 3.248, "yoy_price": 2.7285, "absolute_change": 0.5195, "percentage_change": 19.0397654389}, {"date": "2010-12-27", "fuel": "diesel", "current_price": 3.294, "yoy_price": 2.734, "absolute_change": 0.56, "percentage_change": 20.482809071}, {"date": "2011-01-03", "fuel": "diesel", "current_price": 3.331, "yoy_price": 2.799, "absolute_change": 0.532, "percentage_change": 19.0067881386}, {"date": "2011-01-10", "fuel": "diesel", "current_price": 3.333, "yoy_price": 2.8805, "absolute_change": 0.4525, "percentage_change": 15.709078285}, {"date": "2011-01-17", "fuel": "diesel", "current_price": 3.407, "yoy_price": 2.872, "absolute_change": 0.535, "percentage_change": 18.6281337047}, {"date": "2011-01-24", "fuel": "diesel", "current_price": 3.43, "yoy_price": 2.8355, "absolute_change": 0.5945, "percentage_change": 20.966319873}, {"date": "2011-01-31", "fuel": "diesel", "current_price": 3.438, "yoy_price": 2.784, "absolute_change": 0.654, "percentage_change": 23.4913793103}, {"date": "2011-02-07", "fuel": "diesel", "current_price": 3.513, "yoy_price": 2.772, "absolute_change": 0.741, "percentage_change": 26.7316017316}, {"date": "2011-02-14", "fuel": "diesel", "current_price": 3.534, "yoy_price": 2.7585, "absolute_change": 0.7755, "percentage_change": 28.1131049483}, {"date": "2011-02-21", "fuel": "diesel", "current_price": 3.573, "yoy_price": 2.833, "absolute_change": 0.74, "percentage_change": 26.1207200847}, {"date": "2011-02-28", "fuel": "diesel", "current_price": 3.716, "yoy_price": 2.863, "absolute_change": 0.853, "percentage_change": 29.793922459}, {"date": "2011-03-07", "fuel": "diesel", "current_price": 3.871, "yoy_price": 2.905, "absolute_change": 0.966, "percentage_change": 33.2530120482}, {"date": "2011-03-14", "fuel": "diesel", "current_price": 3.908, "yoy_price": 2.925, "absolute_change": 0.983, "percentage_change": 33.6068376068}, {"date": "2011-03-21", "fuel": "diesel", "current_price": 3.907, "yoy_price": 2.9475, "absolute_change": 0.9595, "percentage_change": 32.5530110263}, {"date": "2011-03-28", "fuel": "diesel", "current_price": 3.932, "yoy_price": 2.9405, "absolute_change": 0.9915, "percentage_change": 33.7187553137}, {"date": "2011-04-04", "fuel": "diesel", "current_price": 3.976, "yoy_price": 3.016, "absolute_change": 0.96, "percentage_change": 31.8302387268}, {"date": "2011-04-11", "fuel": "diesel", "current_price": 4.078, "yoy_price": 3.071, "absolute_change": 1.007, "percentage_change": 32.7906219472}, {"date": "2011-04-18", "fuel": "diesel", "current_price": 4.105, "yoy_price": 3.076, "absolute_change": 1.029, "percentage_change": 33.4525357607}, {"date": "2011-04-25", "fuel": "diesel", "current_price": 4.098, "yoy_price": 3.08, "absolute_change": 1.018, "percentage_change": 33.0519480519}, {"date": "2011-05-02", "fuel": "diesel", "current_price": 4.124, "yoy_price": 3.124, "absolute_change": 1, "percentage_change": 32.0102432778}, {"date": "2011-05-09", "fuel": "diesel", "current_price": 4.104, "yoy_price": 3.129, "absolute_change": 0.975, "percentage_change": 31.1601150527}, {"date": "2011-05-16", "fuel": "diesel", "current_price": 4.061, "yoy_price": 3.096, "absolute_change": 0.965, "percentage_change": 31.169250646}, {"date": "2011-05-23", "fuel": "diesel", "current_price": 3.997, "yoy_price": 3.023, "absolute_change": 0.974, "percentage_change": 32.2196493549}, {"date": "2011-05-30", "fuel": "diesel", "current_price": 3.948, "yoy_price": 2.9815, "absolute_change": 0.9665, "percentage_change": 32.4165688412}, {"date": "2011-06-06", "fuel": "diesel", "current_price": 3.94, "yoy_price": 2.9475, "absolute_change": 0.9925, "percentage_change": 33.6726039016}, {"date": "2011-06-13", "fuel": "diesel", "current_price": 3.954, "yoy_price": 2.929, "absolute_change": 1.025, "percentage_change": 34.9948787982}, {"date": "2011-06-20", "fuel": "diesel", "current_price": 3.95, "yoy_price": 2.9615, "absolute_change": 0.9885, "percentage_change": 33.3783555631}, {"date": "2011-06-27", "fuel": "diesel", "current_price": 3.888, "yoy_price": 2.9565, "absolute_change": 0.9315, "percentage_change": 31.5068493151}, {"date": "2011-07-04", "fuel": "diesel", "current_price": 3.85, "yoy_price": 2.9245, "absolute_change": 0.9255, "percentage_change": 31.6464352881}, {"date": "2011-07-11", "fuel": "diesel", "current_price": 3.899, "yoy_price": 2.9035, "absolute_change": 0.9955, "percentage_change": 34.2862063027}, {"date": "2011-07-18", "fuel": "diesel", "current_price": 3.923, "yoy_price": 2.899, "absolute_change": 1.024, "percentage_change": 35.3225250086}, {"date": "2011-07-25", "fuel": "diesel", "current_price": 3.949, "yoy_price": 2.919, "absolute_change": 1.03, "percentage_change": 35.2860568688}, {"date": "2011-08-01", "fuel": "diesel", "current_price": 3.937, "yoy_price": 2.928, "absolute_change": 1.009, "percentage_change": 34.4603825137}, {"date": "2011-08-08", "fuel": "diesel", "current_price": 3.897, "yoy_price": 2.991, "absolute_change": 0.906, "percentage_change": 30.2908726179}, {"date": "2011-08-15", "fuel": "diesel", "current_price": 3.835, "yoy_price": 2.979, "absolute_change": 0.856, "percentage_change": 28.7344746559}, {"date": "2011-08-22", "fuel": "diesel", "current_price": 3.81, "yoy_price": 2.957, "absolute_change": 0.853, "percentage_change": 28.8468041934}, {"date": "2011-08-29", "fuel": "diesel", "current_price": 3.82, "yoy_price": 2.938, "absolute_change": 0.882, "percentage_change": 30.0204220558}, {"date": "2011-09-05", "fuel": "diesel", "current_price": 3.868, "yoy_price": 2.931, "absolute_change": 0.937, "percentage_change": 31.9686113954}, {"date": "2011-09-12", "fuel": "diesel", "current_price": 3.862, "yoy_price": 2.943, "absolute_change": 0.919, "percentage_change": 31.2266394835}, {"date": "2011-09-19", "fuel": "diesel", "current_price": 3.833, "yoy_price": 2.96, "absolute_change": 0.873, "percentage_change": 29.4932432432}, {"date": "2011-09-26", "fuel": "diesel", "current_price": 3.786, "yoy_price": 2.951, "absolute_change": 0.835, "percentage_change": 28.2954930532}, {"date": "2011-10-03", "fuel": "diesel", "current_price": 3.749, "yoy_price": 3, "absolute_change": 0.749, "percentage_change": 24.9666666667}, {"date": "2011-10-10", "fuel": "diesel", "current_price": 3.721, "yoy_price": 3.066, "absolute_change": 0.655, "percentage_change": 21.3633398565}, {"date": "2011-10-17", "fuel": "diesel", "current_price": 3.801, "yoy_price": 3.073, "absolute_change": 0.728, "percentage_change": 23.6902050114}, {"date": "2011-10-24", "fuel": "diesel", "current_price": 3.825, "yoy_price": 3.067, "absolute_change": 0.758, "percentage_change": 24.7147049234}, {"date": "2011-10-31", "fuel": "diesel", "current_price": 3.892, "yoy_price": 3.067, "absolute_change": 0.825, "percentage_change": 26.8992500815}, {"date": "2011-11-07", "fuel": "diesel", "current_price": 3.887, "yoy_price": 3.116, "absolute_change": 0.771, "percentage_change": 24.7432605905}, {"date": "2011-11-14", "fuel": "diesel", "current_price": 3.987, "yoy_price": 3.184, "absolute_change": 0.803, "percentage_change": 25.2198492462}, {"date": "2011-11-21", "fuel": "diesel", "current_price": 4.01, "yoy_price": 3.171, "absolute_change": 0.839, "percentage_change": 26.458530432}, {"date": "2011-11-28", "fuel": "diesel", "current_price": 3.964, "yoy_price": 3.162, "absolute_change": 0.802, "percentage_change": 25.3636938646}, {"date": "2011-12-05", "fuel": "diesel", "current_price": 3.931, "yoy_price": 3.197, "absolute_change": 0.734, "percentage_change": 22.9590240851}, {"date": "2011-12-12", "fuel": "diesel", "current_price": 3.894, "yoy_price": 3.231, "absolute_change": 0.663, "percentage_change": 20.5199628598}, {"date": "2011-12-19", "fuel": "diesel", "current_price": 3.828, "yoy_price": 3.248, "absolute_change": 0.58, "percentage_change": 17.8571428571}, {"date": "2011-12-26", "fuel": "diesel", "current_price": 3.791, "yoy_price": 3.294, "absolute_change": 0.497, "percentage_change": 15.0880388585}, {"date": "2012-01-02", "fuel": "diesel", "current_price": 3.783, "yoy_price": 3.331, "absolute_change": 0.452, "percentage_change": 13.5694986491}, {"date": "2012-01-09", "fuel": "diesel", "current_price": 3.828, "yoy_price": 3.333, "absolute_change": 0.495, "percentage_change": 14.8514851485}, {"date": "2012-01-16", "fuel": "diesel", "current_price": 3.854, "yoy_price": 3.407, "absolute_change": 0.447, "percentage_change": 13.1200469621}, {"date": "2012-01-23", "fuel": "diesel", "current_price": 3.848, "yoy_price": 3.43, "absolute_change": 0.418, "percentage_change": 12.1865889213}, {"date": "2012-01-30", "fuel": "diesel", "current_price": 3.85, "yoy_price": 3.438, "absolute_change": 0.412, "percentage_change": 11.9837114602}, {"date": "2012-02-06", "fuel": "diesel", "current_price": 3.856, "yoy_price": 3.513, "absolute_change": 0.343, "percentage_change": 9.7637346997}, {"date": "2012-02-13", "fuel": "diesel", "current_price": 3.943, "yoy_price": 3.534, "absolute_change": 0.409, "percentage_change": 11.5732880589}, {"date": "2012-02-20", "fuel": "diesel", "current_price": 3.96, "yoy_price": 3.573, "absolute_change": 0.387, "percentage_change": 10.8312342569}, {"date": "2012-02-27", "fuel": "diesel", "current_price": 4.051, "yoy_price": 3.716, "absolute_change": 0.335, "percentage_change": 9.0150699677}, {"date": "2012-03-05", "fuel": "diesel", "current_price": 4.094, "yoy_price": 3.871, "absolute_change": 0.223, "percentage_change": 5.7607853268}, {"date": "2012-03-12", "fuel": "diesel", "current_price": 4.123, "yoy_price": 3.908, "absolute_change": 0.215, "percentage_change": 5.5015353122}, {"date": "2012-03-19", "fuel": "diesel", "current_price": 4.142, "yoy_price": 3.907, "absolute_change": 0.235, "percentage_change": 6.0148451497}, {"date": "2012-03-26", "fuel": "diesel", "current_price": 4.147, "yoy_price": 3.932, "absolute_change": 0.215, "percentage_change": 5.4679552391}, {"date": "2012-04-02", "fuel": "diesel", "current_price": 4.142, "yoy_price": 3.976, "absolute_change": 0.166, "percentage_change": 4.1750503018}, {"date": "2012-04-09", "fuel": "diesel", "current_price": 4.148, "yoy_price": 4.078, "absolute_change": 0.07, "percentage_change": 1.7165277097}, {"date": "2012-04-16", "fuel": "diesel", "current_price": 4.127, "yoy_price": 4.105, "absolute_change": 0.022, "percentage_change": 0.5359317905}, {"date": "2012-04-23", "fuel": "diesel", "current_price": 4.085, "yoy_price": 4.098, "absolute_change": -0.013, "percentage_change": -0.3172279161}, {"date": "2012-04-30", "fuel": "diesel", "current_price": 4.073, "yoy_price": 4.124, "absolute_change": -0.051, "percentage_change": -1.2366634336}, {"date": "2012-05-07", "fuel": "diesel", "current_price": 4.057, "yoy_price": 4.104, "absolute_change": -0.047, "percentage_change": -1.1452241715}, {"date": "2012-05-14", "fuel": "diesel", "current_price": 4.004, "yoy_price": 4.061, "absolute_change": -0.057, "percentage_change": -1.4035951736}, {"date": "2012-05-21", "fuel": "diesel", "current_price": 3.956, "yoy_price": 3.997, "absolute_change": -0.041, "percentage_change": -1.025769327}, {"date": "2012-05-28", "fuel": "diesel", "current_price": 3.897, "yoy_price": 3.948, "absolute_change": -0.051, "percentage_change": -1.2917933131}, {"date": "2012-06-04", "fuel": "diesel", "current_price": 3.846, "yoy_price": 3.94, "absolute_change": -0.094, "percentage_change": -2.385786802}, {"date": "2012-06-11", "fuel": "diesel", "current_price": 3.781, "yoy_price": 3.954, "absolute_change": -0.173, "percentage_change": -4.3753161356}, {"date": "2012-06-18", "fuel": "diesel", "current_price": 3.729, "yoy_price": 3.95, "absolute_change": -0.221, "percentage_change": -5.5949367089}, {"date": "2012-06-25", "fuel": "diesel", "current_price": 3.678, "yoy_price": 3.888, "absolute_change": -0.21, "percentage_change": -5.4012345679}, {"date": "2012-07-02", "fuel": "diesel", "current_price": 3.648, "yoy_price": 3.85, "absolute_change": -0.202, "percentage_change": -5.2467532468}, {"date": "2012-07-09", "fuel": "diesel", "current_price": 3.683, "yoy_price": 3.899, "absolute_change": -0.216, "percentage_change": -5.539882021}, {"date": "2012-07-16", "fuel": "diesel", "current_price": 3.695, "yoy_price": 3.923, "absolute_change": -0.228, "percentage_change": -5.8118786643}, {"date": "2012-07-23", "fuel": "diesel", "current_price": 3.783, "yoy_price": 3.949, "absolute_change": -0.166, "percentage_change": -4.203595847}, {"date": "2012-07-30", "fuel": "diesel", "current_price": 3.796, "yoy_price": 3.937, "absolute_change": -0.141, "percentage_change": -3.5814071628}, {"date": "2012-08-06", "fuel": "diesel", "current_price": 3.85, "yoy_price": 3.897, "absolute_change": -0.047, "percentage_change": -1.2060559405}, {"date": "2012-08-13", "fuel": "diesel", "current_price": 3.965, "yoy_price": 3.835, "absolute_change": 0.13, "percentage_change": 3.3898305085}, {"date": "2012-08-20", "fuel": "diesel", "current_price": 4.026, "yoy_price": 3.81, "absolute_change": 0.216, "percentage_change": 5.6692913386}, {"date": "2012-08-27", "fuel": "diesel", "current_price": 4.089, "yoy_price": 3.82, "absolute_change": 0.269, "percentage_change": 7.0418848168}, {"date": "2012-09-03", "fuel": "diesel", "current_price": 4.127, "yoy_price": 3.868, "absolute_change": 0.259, "percentage_change": 6.695966908}, {"date": "2012-09-10", "fuel": "diesel", "current_price": 4.132, "yoy_price": 3.862, "absolute_change": 0.27, "percentage_change": 6.9911962714}, {"date": "2012-09-17", "fuel": "diesel", "current_price": 4.135, "yoy_price": 3.833, "absolute_change": 0.302, "percentage_change": 7.8789459953}, {"date": "2012-09-24", "fuel": "diesel", "current_price": 4.086, "yoy_price": 3.786, "absolute_change": 0.3, "percentage_change": 7.9239302694}, {"date": "2012-10-01", "fuel": "diesel", "current_price": 4.079, "yoy_price": 3.749, "absolute_change": 0.33, "percentage_change": 8.8023472926}, {"date": "2012-10-08", "fuel": "diesel", "current_price": 4.094, "yoy_price": 3.721, "absolute_change": 0.373, "percentage_change": 10.0241870465}, {"date": "2012-10-15", "fuel": "diesel", "current_price": 4.15, "yoy_price": 3.801, "absolute_change": 0.349, "percentage_change": 9.1817942647}, {"date": "2012-10-22", "fuel": "diesel", "current_price": 4.116, "yoy_price": 3.825, "absolute_change": 0.291, "percentage_change": 7.6078431373}, {"date": "2012-10-29", "fuel": "diesel", "current_price": 4.03, "yoy_price": 3.892, "absolute_change": 0.138, "percentage_change": 3.5457348407}, {"date": "2012-11-05", "fuel": "diesel", "current_price": 4.01, "yoy_price": 3.887, "absolute_change": 0.123, "percentage_change": 3.1643941343}, {"date": "2012-11-12", "fuel": "diesel", "current_price": 3.98, "yoy_price": 3.987, "absolute_change": -0.007, "percentage_change": -0.1755706045}, {"date": "2012-11-19", "fuel": "diesel", "current_price": 3.976, "yoy_price": 4.01, "absolute_change": -0.034, "percentage_change": -0.8478802993}, {"date": "2012-11-26", "fuel": "diesel", "current_price": 4.034, "yoy_price": 3.964, "absolute_change": 0.07, "percentage_change": 1.7658930373}, {"date": "2012-12-03", "fuel": "diesel", "current_price": 4.027, "yoy_price": 3.931, "absolute_change": 0.096, "percentage_change": 2.4421266853}, {"date": "2012-12-10", "fuel": "diesel", "current_price": 3.991, "yoy_price": 3.894, "absolute_change": 0.097, "percentage_change": 2.491011813}, {"date": "2012-12-17", "fuel": "diesel", "current_price": 3.945, "yoy_price": 3.828, "absolute_change": 0.117, "percentage_change": 3.0564263323}, {"date": "2012-12-24", "fuel": "diesel", "current_price": 3.923, "yoy_price": 3.791, "absolute_change": 0.132, "percentage_change": 3.4819308889}, {"date": "2012-12-31", "fuel": "diesel", "current_price": 3.918, "yoy_price": 3.783, "absolute_change": 0.135, "percentage_change": 3.5685963521}, {"date": "2013-01-07", "fuel": "diesel", "current_price": 3.911, "yoy_price": 3.828, "absolute_change": 0.083, "percentage_change": 2.1682340648}, {"date": "2013-01-14", "fuel": "diesel", "current_price": 3.894, "yoy_price": 3.854, "absolute_change": 0.04, "percentage_change": 1.0378827193}, {"date": "2013-01-21", "fuel": "diesel", "current_price": 3.902, "yoy_price": 3.848, "absolute_change": 0.054, "percentage_change": 1.4033264033}, {"date": "2013-01-28", "fuel": "diesel", "current_price": 3.927, "yoy_price": 3.85, "absolute_change": 0.077, "percentage_change": 2}, {"date": "2013-02-04", "fuel": "diesel", "current_price": 4.022, "yoy_price": 3.856, "absolute_change": 0.166, "percentage_change": 4.3049792531}, {"date": "2013-02-11", "fuel": "diesel", "current_price": 4.104, "yoy_price": 3.943, "absolute_change": 0.161, "percentage_change": 4.0831853918}, {"date": "2013-02-18", "fuel": "diesel", "current_price": 4.157, "yoy_price": 3.96, "absolute_change": 0.197, "percentage_change": 4.9747474747}, {"date": "2013-02-25", "fuel": "diesel", "current_price": 4.159, "yoy_price": 4.051, "absolute_change": 0.108, "percentage_change": 2.666008393}, {"date": "2013-03-04", "fuel": "diesel", "current_price": 4.13, "yoy_price": 4.094, "absolute_change": 0.036, "percentage_change": 0.8793356131}, {"date": "2013-03-11", "fuel": "diesel", "current_price": 4.088, "yoy_price": 4.123, "absolute_change": -0.035, "percentage_change": -0.8488964346}, {"date": "2013-03-18", "fuel": "diesel", "current_price": 4.047, "yoy_price": 4.142, "absolute_change": -0.095, "percentage_change": -2.2935779817}, {"date": "2013-03-25", "fuel": "diesel", "current_price": 4.006, "yoy_price": 4.147, "absolute_change": -0.141, "percentage_change": -3.4000482276}, {"date": "2013-04-01", "fuel": "diesel", "current_price": 3.993, "yoy_price": 4.142, "absolute_change": -0.149, "percentage_change": -3.5972959923}, {"date": "2013-04-08", "fuel": "diesel", "current_price": 3.977, "yoy_price": 4.148, "absolute_change": -0.171, "percentage_change": -4.1224686596}, {"date": "2013-04-15", "fuel": "diesel", "current_price": 3.942, "yoy_price": 4.127, "absolute_change": -0.185, "percentage_change": -4.4826750666}, {"date": "2013-04-22", "fuel": "diesel", "current_price": 3.887, "yoy_price": 4.085, "absolute_change": -0.198, "percentage_change": -4.847001224}, {"date": "2013-04-29", "fuel": "diesel", "current_price": 3.851, "yoy_price": 4.073, "absolute_change": -0.222, "percentage_change": -5.4505278664}, {"date": "2013-05-06", "fuel": "diesel", "current_price": 3.845, "yoy_price": 4.057, "absolute_change": -0.212, "percentage_change": -5.2255361104}, {"date": "2013-05-13", "fuel": "diesel", "current_price": 3.866, "yoy_price": 4.004, "absolute_change": -0.138, "percentage_change": -3.4465534466}, {"date": "2013-05-20", "fuel": "diesel", "current_price": 3.89, "yoy_price": 3.956, "absolute_change": -0.066, "percentage_change": -1.6683518706}, {"date": "2013-05-27", "fuel": "diesel", "current_price": 3.88, "yoy_price": 3.897, "absolute_change": -0.017, "percentage_change": -0.4362329997}, {"date": "2013-06-03", "fuel": "diesel", "current_price": 3.869, "yoy_price": 3.846, "absolute_change": 0.023, "percentage_change": 0.598023921}, {"date": "2013-06-10", "fuel": "diesel", "current_price": 3.849, "yoy_price": 3.781, "absolute_change": 0.068, "percentage_change": 1.7984660143}, {"date": "2013-06-17", "fuel": "diesel", "current_price": 3.841, "yoy_price": 3.729, "absolute_change": 0.112, "percentage_change": 3.0034861893}, {"date": "2013-06-24", "fuel": "diesel", "current_price": 3.838, "yoy_price": 3.678, "absolute_change": 0.16, "percentage_change": 4.3501903208}, {"date": "2013-07-01", "fuel": "diesel", "current_price": 3.817, "yoy_price": 3.648, "absolute_change": 0.169, "percentage_change": 4.6326754386}, {"date": "2013-07-08", "fuel": "diesel", "current_price": 3.828, "yoy_price": 3.683, "absolute_change": 0.145, "percentage_change": 3.937007874}, {"date": "2013-07-15", "fuel": "diesel", "current_price": 3.867, "yoy_price": 3.695, "absolute_change": 0.172, "percentage_change": 4.6549391069}, {"date": "2013-07-22", "fuel": "diesel", "current_price": 3.903, "yoy_price": 3.783, "absolute_change": 0.12, "percentage_change": 3.1720856463}, {"date": "2013-07-29", "fuel": "diesel", "current_price": 3.915, "yoy_price": 3.796, "absolute_change": 0.119, "percentage_change": 3.1348788198}, {"date": "2013-08-05", "fuel": "diesel", "current_price": 3.909, "yoy_price": 3.85, "absolute_change": 0.059, "percentage_change": 1.5324675325}, {"date": "2013-08-12", "fuel": "diesel", "current_price": 3.896, "yoy_price": 3.965, "absolute_change": -0.069, "percentage_change": -1.7402269861}, {"date": "2013-08-19", "fuel": "diesel", "current_price": 3.9, "yoy_price": 4.026, "absolute_change": -0.126, "percentage_change": -3.129657228}, {"date": "2013-08-26", "fuel": "diesel", "current_price": 3.913, "yoy_price": 4.089, "absolute_change": -0.176, "percentage_change": -4.3042308633}, {"date": "2013-09-02", "fuel": "diesel", "current_price": 3.981, "yoy_price": 4.127, "absolute_change": -0.146, "percentage_change": -3.5376787012}, {"date": "2013-09-09", "fuel": "diesel", "current_price": 3.981, "yoy_price": 4.132, "absolute_change": -0.151, "percentage_change": -3.6544046467}, {"date": "2013-09-16", "fuel": "diesel", "current_price": 3.974, "yoy_price": 4.135, "absolute_change": -0.161, "percentage_change": -3.8935912938}, {"date": "2013-09-23", "fuel": "diesel", "current_price": 3.949, "yoy_price": 4.086, "absolute_change": -0.137, "percentage_change": -3.3529123837}, {"date": "2013-09-30", "fuel": "diesel", "current_price": 3.919, "yoy_price": 4.079, "absolute_change": -0.16, "percentage_change": -3.9225300319}, {"date": "2013-10-07", "fuel": "diesel", "current_price": 3.897, "yoy_price": 4.094, "absolute_change": -0.197, "percentage_change": -4.8119198828}, {"date": "2013-10-14", "fuel": "diesel", "current_price": 3.886, "yoy_price": 4.15, "absolute_change": -0.264, "percentage_change": -6.3614457831}, {"date": "2013-10-21", "fuel": "diesel", "current_price": 3.886, "yoy_price": 4.116, "absolute_change": -0.23, "percentage_change": -5.5879494655}, {"date": "2013-10-28", "fuel": "diesel", "current_price": 3.87, "yoy_price": 4.03, "absolute_change": -0.16, "percentage_change": -3.9702233251}, {"date": "2013-11-04", "fuel": "diesel", "current_price": 3.857, "yoy_price": 4.01, "absolute_change": -0.153, "percentage_change": -3.8154613466}, {"date": "2013-11-11", "fuel": "diesel", "current_price": 3.832, "yoy_price": 3.98, "absolute_change": -0.148, "percentage_change": -3.7185929648}, {"date": "2013-11-18", "fuel": "diesel", "current_price": 3.822, "yoy_price": 3.976, "absolute_change": -0.154, "percentage_change": -3.8732394366}, {"date": "2013-11-25", "fuel": "diesel", "current_price": 3.844, "yoy_price": 4.034, "absolute_change": -0.19, "percentage_change": -4.709965295}, {"date": "2013-12-02", "fuel": "diesel", "current_price": 3.883, "yoy_price": 4.027, "absolute_change": -0.144, "percentage_change": -3.5758629253}, {"date": "2013-12-09", "fuel": "diesel", "current_price": 3.879, "yoy_price": 3.991, "absolute_change": -0.112, "percentage_change": -2.806314207}, {"date": "2013-12-16", "fuel": "diesel", "current_price": 3.871, "yoy_price": 3.945, "absolute_change": -0.074, "percentage_change": -1.875792142}, {"date": "2013-12-23", "fuel": "diesel", "current_price": 3.873, "yoy_price": 3.923, "absolute_change": -0.05, "percentage_change": -1.2745347948}, {"date": "2013-12-30", "fuel": "diesel", "current_price": 3.903, "yoy_price": 3.918, "absolute_change": -0.015, "percentage_change": -0.382848392}, {"date": "2014-01-06", "fuel": "diesel", "current_price": 3.91, "yoy_price": 3.911, "absolute_change": -0.001, "percentage_change": -0.0255689082}, {"date": "2014-01-13", "fuel": "diesel", "current_price": 3.886, "yoy_price": 3.894, "absolute_change": -0.008, "percentage_change": -0.2054442732}, {"date": "2014-01-20", "fuel": "diesel", "current_price": 3.873, "yoy_price": 3.902, "absolute_change": -0.029, "percentage_change": -0.743208611}, {"date": "2014-01-27", "fuel": "diesel", "current_price": 3.904, "yoy_price": 3.927, "absolute_change": -0.023, "percentage_change": -0.585688821}, {"date": "2014-02-03", "fuel": "diesel", "current_price": 3.951, "yoy_price": 4.022, "absolute_change": -0.071, "percentage_change": -1.7652909}, {"date": "2014-02-10", "fuel": "diesel", "current_price": 3.977, "yoy_price": 4.104, "absolute_change": -0.127, "percentage_change": -3.0945419103}, {"date": "2014-02-17", "fuel": "diesel", "current_price": 3.989, "yoy_price": 4.157, "absolute_change": -0.168, "percentage_change": -4.0413759923}, {"date": "2014-02-24", "fuel": "diesel", "current_price": 4.017, "yoy_price": 4.159, "absolute_change": -0.142, "percentage_change": -3.4142822794}, {"date": "2014-03-03", "fuel": "diesel", "current_price": 4.016, "yoy_price": 4.13, "absolute_change": -0.114, "percentage_change": -2.7602905569}, {"date": "2014-03-10", "fuel": "diesel", "current_price": 4.021, "yoy_price": 4.088, "absolute_change": -0.067, "percentage_change": -1.6389432485}, {"date": "2014-03-17", "fuel": "diesel", "current_price": 4.003, "yoy_price": 4.047, "absolute_change": -0.044, "percentage_change": -1.087225105}, {"date": "2014-03-24", "fuel": "diesel", "current_price": 3.988, "yoy_price": 4.006, "absolute_change": -0.018, "percentage_change": -0.449326011}, {"date": "2014-03-31", "fuel": "diesel", "current_price": 3.975, "yoy_price": 3.993, "absolute_change": -0.018, "percentage_change": -0.4507888805}, {"date": "2014-04-07", "fuel": "diesel", "current_price": 3.959, "yoy_price": 3.977, "absolute_change": -0.018, "percentage_change": -0.4526024642}, {"date": "2014-04-14", "fuel": "diesel", "current_price": 3.952, "yoy_price": 3.942, "absolute_change": 0.01, "percentage_change": 0.2536783359}, {"date": "2014-04-21", "fuel": "diesel", "current_price": 3.971, "yoy_price": 3.887, "absolute_change": 0.084, "percentage_change": 2.1610496527}, {"date": "2014-04-28", "fuel": "diesel", "current_price": 3.975, "yoy_price": 3.851, "absolute_change": 0.124, "percentage_change": 3.219942872}, {"date": "2014-05-05", "fuel": "diesel", "current_price": 3.964, "yoy_price": 3.845, "absolute_change": 0.119, "percentage_change": 3.0949284785}, {"date": "2014-05-12", "fuel": "diesel", "current_price": 3.948, "yoy_price": 3.866, "absolute_change": 0.082, "percentage_change": 2.1210553544}, {"date": "2014-05-19", "fuel": "diesel", "current_price": 3.934, "yoy_price": 3.89, "absolute_change": 0.044, "percentage_change": 1.1311053985}, {"date": "2014-05-26", "fuel": "diesel", "current_price": 3.925, "yoy_price": 3.88, "absolute_change": 0.045, "percentage_change": 1.1597938144}, {"date": "2014-06-02", "fuel": "diesel", "current_price": 3.918, "yoy_price": 3.869, "absolute_change": 0.049, "percentage_change": 1.2664771259}, {"date": "2014-06-09", "fuel": "diesel", "current_price": 3.892, "yoy_price": 3.849, "absolute_change": 0.043, "percentage_change": 1.1171732918}, {"date": "2014-06-16", "fuel": "diesel", "current_price": 3.882, "yoy_price": 3.841, "absolute_change": 0.041, "percentage_change": 1.0674303567}, {"date": "2014-06-23", "fuel": "diesel", "current_price": 3.919, "yoy_price": 3.838, "absolute_change": 0.081, "percentage_change": 2.1104742053}, {"date": "2014-06-30", "fuel": "diesel", "current_price": 3.92, "yoy_price": 3.817, "absolute_change": 0.103, "percentage_change": 2.6984542835}, {"date": "2014-07-07", "fuel": "diesel", "current_price": 3.913, "yoy_price": 3.828, "absolute_change": 0.085, "percentage_change": 2.2204806688}, {"date": "2014-07-14", "fuel": "diesel", "current_price": 3.894, "yoy_price": 3.867, "absolute_change": 0.027, "percentage_change": 0.6982156711}, {"date": "2014-07-21", "fuel": "diesel", "current_price": 3.869, "yoy_price": 3.903, "absolute_change": -0.034, "percentage_change": -0.8711247758}, {"date": "2014-07-28", "fuel": "diesel", "current_price": 3.858, "yoy_price": 3.915, "absolute_change": -0.057, "percentage_change": -1.4559386973}, {"date": "2014-08-04", "fuel": "diesel", "current_price": 3.853, "yoy_price": 3.909, "absolute_change": -0.056, "percentage_change": -1.4325914556}, {"date": "2014-08-11", "fuel": "diesel", "current_price": 3.843, "yoy_price": 3.896, "absolute_change": -0.053, "percentage_change": -1.3603696099}, {"date": "2014-08-18", "fuel": "diesel", "current_price": 3.835, "yoy_price": 3.9, "absolute_change": -0.065, "percentage_change": -1.6666666667}, {"date": "2014-08-25", "fuel": "diesel", "current_price": 3.821, "yoy_price": 3.913, "absolute_change": -0.092, "percentage_change": -2.3511372349}, {"date": "2014-09-01", "fuel": "diesel", "current_price": 3.814, "yoy_price": 3.981, "absolute_change": -0.167, "percentage_change": -4.194925898}, {"date": "2014-09-08", "fuel": "diesel", "current_price": 3.814, "yoy_price": 3.981, "absolute_change": -0.167, "percentage_change": -4.194925898}, {"date": "2014-09-15", "fuel": "diesel", "current_price": 3.801, "yoy_price": 3.974, "absolute_change": -0.173, "percentage_change": -4.3532964268}, {"date": "2014-09-22", "fuel": "diesel", "current_price": 3.778, "yoy_price": 3.949, "absolute_change": -0.171, "percentage_change": -4.3302101798}, {"date": "2014-09-29", "fuel": "diesel", "current_price": 3.755, "yoy_price": 3.919, "absolute_change": -0.164, "percentage_change": -4.1847410054}, {"date": "2014-10-06", "fuel": "diesel", "current_price": 3.733, "yoy_price": 3.897, "absolute_change": -0.164, "percentage_change": -4.2083654093}, {"date": "2014-10-13", "fuel": "diesel", "current_price": 3.698, "yoy_price": 3.886, "absolute_change": -0.188, "percentage_change": -4.8378795677}, {"date": "2014-10-20", "fuel": "diesel", "current_price": 3.656, "yoy_price": 3.886, "absolute_change": -0.23, "percentage_change": -5.9186824498}, {"date": "2014-10-27", "fuel": "diesel", "current_price": 3.635, "yoy_price": 3.87, "absolute_change": -0.235, "percentage_change": -6.0723514212}, {"date": "2014-11-03", "fuel": "diesel", "current_price": 3.623, "yoy_price": 3.857, "absolute_change": -0.234, "percentage_change": -6.0668913663}, {"date": "2014-11-10", "fuel": "diesel", "current_price": 3.677, "yoy_price": 3.832, "absolute_change": -0.155, "percentage_change": -4.0448851775}, {"date": "2014-11-17", "fuel": "diesel", "current_price": 3.661, "yoy_price": 3.822, "absolute_change": -0.161, "percentage_change": -4.2124542125}, {"date": "2014-11-24", "fuel": "diesel", "current_price": 3.628, "yoy_price": 3.844, "absolute_change": -0.216, "percentage_change": -5.6191467222}, {"date": "2014-12-01", "fuel": "diesel", "current_price": 3.605, "yoy_price": 3.883, "absolute_change": -0.278, "percentage_change": -7.1594128251}, {"date": "2014-12-08", "fuel": "diesel", "current_price": 3.535, "yoy_price": 3.879, "absolute_change": -0.344, "percentage_change": -8.8682650168}, {"date": "2014-12-15", "fuel": "diesel", "current_price": 3.419, "yoy_price": 3.871, "absolute_change": -0.452, "percentage_change": -11.6765693619}, {"date": "2014-12-22", "fuel": "diesel", "current_price": 3.281, "yoy_price": 3.873, "absolute_change": -0.592, "percentage_change": -15.2853085463}, {"date": "2014-12-29", "fuel": "diesel", "current_price": 3.213, "yoy_price": 3.903, "absolute_change": -0.69, "percentage_change": -17.6787086856}, {"date": "2015-01-05", "fuel": "diesel", "current_price": 3.137, "yoy_price": 3.91, "absolute_change": -0.773, "percentage_change": -19.7698209719}, {"date": "2015-01-12", "fuel": "diesel", "current_price": 3.053, "yoy_price": 3.886, "absolute_change": -0.833, "percentage_change": -21.4359238291}, {"date": "2015-01-19", "fuel": "diesel", "current_price": 2.933, "yoy_price": 3.873, "absolute_change": -0.94, "percentage_change": -24.2705912729}, {"date": "2015-01-26", "fuel": "diesel", "current_price": 2.866, "yoy_price": 3.904, "absolute_change": -1.038, "percentage_change": -26.5881147541}, {"date": "2015-02-02", "fuel": "diesel", "current_price": 2.831, "yoy_price": 3.951, "absolute_change": -1.12, "percentage_change": -28.3472538598}, {"date": "2015-02-09", "fuel": "diesel", "current_price": 2.835, "yoy_price": 3.977, "absolute_change": -1.142, "percentage_change": -28.7151118934}, {"date": "2015-02-16", "fuel": "diesel", "current_price": 2.865, "yoy_price": 3.989, "absolute_change": -1.124, "percentage_change": -28.1774880923}, {"date": "2015-02-23", "fuel": "diesel", "current_price": 2.9, "yoy_price": 4.017, "absolute_change": -1.117, "percentage_change": -27.8068210107}, {"date": "2015-03-02", "fuel": "diesel", "current_price": 2.936, "yoy_price": 4.016, "absolute_change": -1.08, "percentage_change": -26.8924302789}, {"date": "2015-03-09", "fuel": "diesel", "current_price": 2.944, "yoy_price": 4.021, "absolute_change": -1.077, "percentage_change": -26.7843819945}, {"date": "2015-03-16", "fuel": "diesel", "current_price": 2.917, "yoy_price": 4.003, "absolute_change": -1.086, "percentage_change": -27.1296527604}, {"date": "2015-03-23", "fuel": "diesel", "current_price": 2.864, "yoy_price": 3.988, "absolute_change": -1.124, "percentage_change": -28.184553661}, {"date": "2015-03-30", "fuel": "diesel", "current_price": 2.824, "yoy_price": 3.975, "absolute_change": -1.151, "percentage_change": -28.9559748428}, {"date": "2015-04-06", "fuel": "diesel", "current_price": 2.784, "yoy_price": 3.959, "absolute_change": -1.175, "percentage_change": -29.6792119222}, {"date": "2015-04-13", "fuel": "diesel", "current_price": 2.754, "yoy_price": 3.952, "absolute_change": -1.198, "percentage_change": -30.3137651822}, {"date": "2015-04-20", "fuel": "diesel", "current_price": 2.78, "yoy_price": 3.971, "absolute_change": -1.191, "percentage_change": -29.9924452279}, {"date": "2015-04-27", "fuel": "diesel", "current_price": 2.811, "yoy_price": 3.975, "absolute_change": -1.164, "percentage_change": -29.2830188679}, {"date": "2015-05-04", "fuel": "diesel", "current_price": 2.854, "yoy_price": 3.964, "absolute_change": -1.11, "percentage_change": -28.0020181635}, {"date": "2015-05-11", "fuel": "diesel", "current_price": 2.878, "yoy_price": 3.948, "absolute_change": -1.07, "percentage_change": -27.1023302938}, {"date": "2015-05-18", "fuel": "diesel", "current_price": 2.904, "yoy_price": 3.934, "absolute_change": -1.03, "percentage_change": -26.1820030503}, {"date": "2015-05-25", "fuel": "diesel", "current_price": 2.914, "yoy_price": 3.925, "absolute_change": -1.011, "percentage_change": -25.7579617834}, {"date": "2015-06-01", "fuel": "diesel", "current_price": 2.909, "yoy_price": 3.918, "absolute_change": -1.009, "percentage_change": -25.752935171}, {"date": "2015-06-08", "fuel": "diesel", "current_price": 2.884, "yoy_price": 3.892, "absolute_change": -1.008, "percentage_change": -25.8992805755}, {"date": "2015-06-15", "fuel": "diesel", "current_price": 2.87, "yoy_price": 3.882, "absolute_change": -1.012, "percentage_change": -26.0690365791}, {"date": "2015-06-22", "fuel": "diesel", "current_price": 2.859, "yoy_price": 3.919, "absolute_change": -1.06, "percentage_change": -27.0477162541}, {"date": "2015-06-29", "fuel": "diesel", "current_price": 2.843, "yoy_price": 3.92, "absolute_change": -1.077, "percentage_change": -27.4744897959}, {"date": "2015-07-06", "fuel": "diesel", "current_price": 2.832, "yoy_price": 3.913, "absolute_change": -1.081, "percentage_change": -27.6258625096}, {"date": "2015-07-13", "fuel": "diesel", "current_price": 2.814, "yoy_price": 3.894, "absolute_change": -1.08, "percentage_change": -27.7349768875}, {"date": "2015-07-20", "fuel": "diesel", "current_price": 2.782, "yoy_price": 3.869, "absolute_change": -1.087, "percentage_change": -28.0951150168}, {"date": "2015-07-27", "fuel": "diesel", "current_price": 2.723, "yoy_price": 3.858, "absolute_change": -1.135, "percentage_change": -29.4193882841}, {"date": "2015-08-03", "fuel": "diesel", "current_price": 2.668, "yoy_price": 3.853, "absolute_change": -1.185, "percentage_change": -30.755255645}, {"date": "2015-08-10", "fuel": "diesel", "current_price": 2.617, "yoy_price": 3.843, "absolute_change": -1.226, "percentage_change": -31.902159771}, {"date": "2015-08-17", "fuel": "diesel", "current_price": 2.615, "yoy_price": 3.835, "absolute_change": -1.22, "percentage_change": -31.8122555411}, {"date": "2015-08-24", "fuel": "diesel", "current_price": 2.561, "yoy_price": 3.821, "absolute_change": -1.26, "percentage_change": -32.9756608218}, {"date": "2015-08-31", "fuel": "diesel", "current_price": 2.514, "yoy_price": 3.814, "absolute_change": -1.3, "percentage_change": -34.0849501835}, {"date": "2015-09-07", "fuel": "diesel", "current_price": 2.534, "yoy_price": 3.814, "absolute_change": -1.28, "percentage_change": -33.5605663346}, {"date": "2015-09-14", "fuel": "diesel", "current_price": 2.517, "yoy_price": 3.801, "absolute_change": -1.284, "percentage_change": -33.7805840568}, {"date": "2015-09-21", "fuel": "diesel", "current_price": 2.493, "yoy_price": 3.778, "absolute_change": -1.285, "percentage_change": -34.012705135}, {"date": "2015-09-28", "fuel": "diesel", "current_price": 2.476, "yoy_price": 3.755, "absolute_change": -1.279, "percentage_change": -34.0612516644}, {"date": "2015-10-05", "fuel": "diesel", "current_price": 2.492, "yoy_price": 3.733, "absolute_change": -1.241, "percentage_change": -33.2440396464}, {"date": "2015-10-12", "fuel": "diesel", "current_price": 2.556, "yoy_price": 3.698, "absolute_change": -1.142, "percentage_change": -30.8815575987}, {"date": "2015-10-19", "fuel": "diesel", "current_price": 2.531, "yoy_price": 3.656, "absolute_change": -1.125, "percentage_change": -30.7713347921}, {"date": "2015-10-26", "fuel": "diesel", "current_price": 2.498, "yoy_price": 3.635, "absolute_change": -1.137, "percentage_change": -31.2792297111}, {"date": "2015-11-02", "fuel": "diesel", "current_price": 2.485, "yoy_price": 3.623, "absolute_change": -1.138, "percentage_change": -31.4104333425}, {"date": "2015-11-09", "fuel": "diesel", "current_price": 2.502, "yoy_price": 3.677, "absolute_change": -1.175, "percentage_change": -31.9553984226}, {"date": "2015-11-16", "fuel": "diesel", "current_price": 2.482, "yoy_price": 3.661, "absolute_change": -1.179, "percentage_change": -32.2043157607}, {"date": "2015-11-23", "fuel": "diesel", "current_price": 2.445, "yoy_price": 3.628, "absolute_change": -1.183, "percentage_change": -32.6074972437}, {"date": "2015-11-30", "fuel": "diesel", "current_price": 2.421, "yoy_price": 3.605, "absolute_change": -1.184, "percentage_change": -32.8432732316}, {"date": "2015-12-07", "fuel": "diesel", "current_price": 2.379, "yoy_price": 3.535, "absolute_change": -1.156, "percentage_change": -32.7015558699}, {"date": "2015-12-14", "fuel": "diesel", "current_price": 2.338, "yoy_price": 3.419, "absolute_change": -1.081, "percentage_change": -31.6174319977}, {"date": "2015-12-21", "fuel": "diesel", "current_price": 2.284, "yoy_price": 3.281, "absolute_change": -0.997, "percentage_change": -30.3870771106}, {"date": "2015-12-28", "fuel": "diesel", "current_price": 2.237, "yoy_price": 3.213, "absolute_change": -0.976, "percentage_change": -30.3765950825}, {"date": "2016-01-04", "fuel": "diesel", "current_price": 2.211, "yoy_price": 3.137, "absolute_change": -0.926, "percentage_change": -29.5186483902}, {"date": "2016-01-11", "fuel": "diesel", "current_price": 2.177, "yoy_price": 3.053, "absolute_change": -0.876, "percentage_change": -28.6930887651}, {"date": "2016-01-18", "fuel": "diesel", "current_price": 2.112, "yoy_price": 2.933, "absolute_change": -0.821, "percentage_change": -27.991817252}, {"date": "2016-01-25", "fuel": "diesel", "current_price": 2.071, "yoy_price": 2.866, "absolute_change": -0.795, "percentage_change": -27.7390090719}, {"date": "2016-02-01", "fuel": "diesel", "current_price": 2.031, "yoy_price": 2.831, "absolute_change": -0.8, "percentage_change": -28.2585658778}, {"date": "2016-02-08", "fuel": "diesel", "current_price": 2.008, "yoy_price": 2.835, "absolute_change": -0.827, "percentage_change": -29.1710758377}, {"date": "2016-02-15", "fuel": "diesel", "current_price": 1.98, "yoy_price": 2.865, "absolute_change": -0.885, "percentage_change": -30.890052356}, {"date": "2016-02-22", "fuel": "diesel", "current_price": 1.983, "yoy_price": 2.9, "absolute_change": -0.917, "percentage_change": -31.6206896552}, {"date": "2016-02-29", "fuel": "diesel", "current_price": 1.989, "yoy_price": 2.936, "absolute_change": -0.947, "percentage_change": -32.2547683924}, {"date": "2016-03-07", "fuel": "diesel", "current_price": 2.021, "yoy_price": 2.944, "absolute_change": -0.923, "percentage_change": -31.3519021739}, {"date": "2016-03-14", "fuel": "diesel", "current_price": 2.099, "yoy_price": 2.917, "absolute_change": -0.818, "percentage_change": -28.0425094275}, {"date": "2016-03-21", "fuel": "diesel", "current_price": 2.119, "yoy_price": 2.864, "absolute_change": -0.745, "percentage_change": -26.0125698324}, {"date": "2016-03-28", "fuel": "diesel", "current_price": 2.121, "yoy_price": 2.824, "absolute_change": -0.703, "percentage_change": -24.8937677054}, {"date": "2016-04-04", "fuel": "diesel", "current_price": 2.115, "yoy_price": 2.784, "absolute_change": -0.669, "percentage_change": -24.0301724138}, {"date": "2016-04-11", "fuel": "diesel", "current_price": 2.128, "yoy_price": 2.754, "absolute_change": -0.626, "percentage_change": -22.730573711}, {"date": "2016-04-18", "fuel": "diesel", "current_price": 2.165, "yoy_price": 2.78, "absolute_change": -0.615, "percentage_change": -22.1223021583}, {"date": "2016-04-25", "fuel": "diesel", "current_price": 2.198, "yoy_price": 2.811, "absolute_change": -0.613, "percentage_change": -21.8071860548}, {"date": "2016-05-02", "fuel": "diesel", "current_price": 2.266, "yoy_price": 2.854, "absolute_change": -0.588, "percentage_change": -20.6026629292}, {"date": "2016-05-09", "fuel": "diesel", "current_price": 2.271, "yoy_price": 2.878, "absolute_change": -0.607, "percentage_change": -21.0910354413}, {"date": "2016-05-16", "fuel": "diesel", "current_price": 2.297, "yoy_price": 2.904, "absolute_change": -0.607, "percentage_change": -20.9022038567}, {"date": "2016-05-23", "fuel": "diesel", "current_price": 2.357, "yoy_price": 2.914, "absolute_change": -0.557, "percentage_change": -19.1146190803}, {"date": "2016-05-30", "fuel": "diesel", "current_price": 2.382, "yoy_price": 2.909, "absolute_change": -0.527, "percentage_change": -18.116191131}, {"date": "2016-06-06", "fuel": "diesel", "current_price": 2.407, "yoy_price": 2.884, "absolute_change": -0.477, "percentage_change": -16.5395284327}, {"date": "2016-06-13", "fuel": "diesel", "current_price": 2.431, "yoy_price": 2.87, "absolute_change": -0.439, "percentage_change": -15.2961672474}, {"date": "2016-06-20", "fuel": "diesel", "current_price": 2.426, "yoy_price": 2.859, "absolute_change": -0.433, "percentage_change": -15.1451556488}, {"date": "2016-06-27", "fuel": "diesel", "current_price": 2.426, "yoy_price": 2.843, "absolute_change": -0.417, "percentage_change": -14.667604643}, {"date": "2016-07-04", "fuel": "diesel", "current_price": 2.423, "yoy_price": 2.832, "absolute_change": -0.409, "percentage_change": -14.4420903955}, {"date": "2016-07-11", "fuel": "diesel", "current_price": 2.414, "yoy_price": 2.814, "absolute_change": -0.4, "percentage_change": -14.2146410803}, {"date": "2016-07-18", "fuel": "diesel", "current_price": 2.402, "yoy_price": 2.782, "absolute_change": -0.38, "percentage_change": -13.6592379583}, {"date": "2016-07-25", "fuel": "diesel", "current_price": 2.379, "yoy_price": 2.723, "absolute_change": -0.344, "percentage_change": -12.6331252295}, {"date": "2016-08-01", "fuel": "diesel", "current_price": 2.348, "yoy_price": 2.668, "absolute_change": -0.32, "percentage_change": -11.9940029985}, {"date": "2016-08-08", "fuel": "diesel", "current_price": 2.316, "yoy_price": 2.617, "absolute_change": -0.301, "percentage_change": -11.5017195262}, {"date": "2016-08-15", "fuel": "diesel", "current_price": 2.31, "yoy_price": 2.615, "absolute_change": -0.305, "percentage_change": -11.6634799235}, {"date": "2016-08-22", "fuel": "diesel", "current_price": 2.37, "yoy_price": 2.561, "absolute_change": -0.191, "percentage_change": -7.4580242093}, {"date": "2016-08-29", "fuel": "diesel", "current_price": 2.409, "yoy_price": 2.514, "absolute_change": -0.105, "percentage_change": -4.1766109785}, {"date": "2016-09-05", "fuel": "diesel", "current_price": 2.407, "yoy_price": 2.534, "absolute_change": -0.127, "percentage_change": -5.0118389897}, {"date": "2016-09-12", "fuel": "diesel", "current_price": 2.399, "yoy_price": 2.517, "absolute_change": -0.118, "percentage_change": -4.6881207787}, {"date": "2016-09-19", "fuel": "diesel", "current_price": 2.389, "yoy_price": 2.493, "absolute_change": -0.104, "percentage_change": -4.171680706}, {"date": "2016-09-26", "fuel": "diesel", "current_price": 2.382, "yoy_price": 2.476, "absolute_change": -0.094, "percentage_change": -3.7964458805}, {"date": "2016-10-03", "fuel": "diesel", "current_price": 2.389, "yoy_price": 2.492, "absolute_change": -0.103, "percentage_change": -4.1332263242}, {"date": "2016-10-10", "fuel": "diesel", "current_price": 2.445, "yoy_price": 2.556, "absolute_change": -0.111, "percentage_change": -4.3427230047}, {"date": "2016-10-17", "fuel": "diesel", "current_price": 2.481, "yoy_price": 2.531, "absolute_change": -0.05, "percentage_change": -1.9755037535}, {"date": "2016-10-24", "fuel": "diesel", "current_price": 2.478, "yoy_price": 2.498, "absolute_change": -0.02, "percentage_change": -0.8006405124}, {"date": "2016-10-31", "fuel": "diesel", "current_price": 2.479, "yoy_price": 2.485, "absolute_change": -0.006, "percentage_change": -0.2414486922}, {"date": "2016-11-07", "fuel": "diesel", "current_price": 2.47, "yoy_price": 2.502, "absolute_change": -0.032, "percentage_change": -1.2789768185}, {"date": "2016-11-14", "fuel": "diesel", "current_price": 2.443, "yoy_price": 2.482, "absolute_change": -0.039, "percentage_change": -1.5713134569}, {"date": "2016-11-21", "fuel": "diesel", "current_price": 2.421, "yoy_price": 2.445, "absolute_change": -0.024, "percentage_change": -0.981595092}, {"date": "2016-11-28", "fuel": "diesel", "current_price": 2.42, "yoy_price": 2.421, "absolute_change": -0.001, "percentage_change": -0.0413052458}, {"date": "2016-12-05", "fuel": "diesel", "current_price": 2.48, "yoy_price": 2.379, "absolute_change": 0.101, "percentage_change": 4.2454812947}, {"date": "2016-12-12", "fuel": "diesel", "current_price": 2.493, "yoy_price": 2.338, "absolute_change": 0.155, "percentage_change": 6.629597947}, {"date": "2016-12-19", "fuel": "diesel", "current_price": 2.527, "yoy_price": 2.284, "absolute_change": 0.243, "percentage_change": 10.6392294221}, {"date": "2016-12-26", "fuel": "diesel", "current_price": 2.54, "yoy_price": 2.237, "absolute_change": 0.303, "percentage_change": 13.5449262405}, {"date": "2017-01-02", "fuel": "diesel", "current_price": 2.586, "yoy_price": 2.211, "absolute_change": 0.375, "percentage_change": 16.960651289}, {"date": "2017-01-09", "fuel": "diesel", "current_price": 2.597, "yoy_price": 2.177, "absolute_change": 0.42, "percentage_change": 19.2926045016}, {"date": "2017-01-16", "fuel": "diesel", "current_price": 2.585, "yoy_price": 2.112, "absolute_change": 0.473, "percentage_change": 22.3958333333}, {"date": "2017-01-23", "fuel": "diesel", "current_price": 2.569, "yoy_price": 2.071, "absolute_change": 0.498, "percentage_change": 24.0463544182}, {"date": "2017-01-30", "fuel": "diesel", "current_price": 2.562, "yoy_price": 2.031, "absolute_change": 0.531, "percentage_change": 26.1447562777}, {"date": "2017-02-06", "fuel": "diesel", "current_price": 2.558, "yoy_price": 2.008, "absolute_change": 0.55, "percentage_change": 27.390438247}, {"date": "2017-02-13", "fuel": "diesel", "current_price": 2.565, "yoy_price": 1.98, "absolute_change": 0.585, "percentage_change": 29.5454545455}, {"date": "2017-02-20", "fuel": "diesel", "current_price": 2.572, "yoy_price": 1.983, "absolute_change": 0.589, "percentage_change": 29.7024710035}, {"date": "2017-02-27", "fuel": "diesel", "current_price": 2.577, "yoy_price": 1.989, "absolute_change": 0.588, "percentage_change": 29.5625942685}, {"date": "2017-03-06", "fuel": "diesel", "current_price": 2.579, "yoy_price": 2.021, "absolute_change": 0.558, "percentage_change": 27.6100940129}, {"date": "2017-03-13", "fuel": "diesel", "current_price": 2.564, "yoy_price": 2.099, "absolute_change": 0.465, "percentage_change": 22.153406384}, {"date": "2017-03-20", "fuel": "diesel", "current_price": 2.539, "yoy_price": 2.119, "absolute_change": 0.42, "percentage_change": 19.8206701274}, {"date": "2017-03-27", "fuel": "diesel", "current_price": 2.532, "yoy_price": 2.121, "absolute_change": 0.411, "percentage_change": 19.3776520509}, {"date": "2017-04-03", "fuel": "diesel", "current_price": 2.556, "yoy_price": 2.115, "absolute_change": 0.441, "percentage_change": 20.8510638298}, {"date": "2017-04-10", "fuel": "diesel", "current_price": 2.582, "yoy_price": 2.128, "absolute_change": 0.454, "percentage_change": 21.3345864662}, {"date": "2017-04-17", "fuel": "diesel", "current_price": 2.597, "yoy_price": 2.165, "absolute_change": 0.432, "percentage_change": 19.9538106236}, {"date": "2017-04-24", "fuel": "diesel", "current_price": 2.595, "yoy_price": 2.198, "absolute_change": 0.397, "percentage_change": 18.0618744313}, {"date": "2017-05-01", "fuel": "diesel", "current_price": 2.583, "yoy_price": 2.266, "absolute_change": 0.317, "percentage_change": 13.9894086496}, {"date": "2017-05-08", "fuel": "diesel", "current_price": 2.565, "yoy_price": 2.271, "absolute_change": 0.294, "percentage_change": 12.9458388375}, {"date": "2017-05-15", "fuel": "diesel", "current_price": 2.544, "yoy_price": 2.297, "absolute_change": 0.247, "percentage_change": 10.7531562908}, {"date": "2017-05-22", "fuel": "diesel", "current_price": 2.539, "yoy_price": 2.357, "absolute_change": 0.182, "percentage_change": 7.7216801018}, {"date": "2017-05-29", "fuel": "diesel", "current_price": 2.571, "yoy_price": 2.382, "absolute_change": 0.189, "percentage_change": 7.9345088161}, {"date": "2017-06-05", "fuel": "diesel", "current_price": 2.564, "yoy_price": 2.407, "absolute_change": 0.157, "percentage_change": 6.5226422933}, {"date": "2017-06-12", "fuel": "diesel", "current_price": 2.524, "yoy_price": 2.431, "absolute_change": 0.093, "percentage_change": 3.8255861785}, {"date": "2017-06-19", "fuel": "diesel", "current_price": 2.489, "yoy_price": 2.426, "absolute_change": 0.063, "percentage_change": 2.5968672712}, {"date": "2017-06-26", "fuel": "diesel", "current_price": 2.465, "yoy_price": 2.426, "absolute_change": 0.039, "percentage_change": 1.6075845012}, {"date": "2017-07-03", "fuel": "diesel", "current_price": 2.472, "yoy_price": 2.423, "absolute_change": 0.049, "percentage_change": 2.0222864218}, {"date": "2017-07-10", "fuel": "diesel", "current_price": 2.481, "yoy_price": 2.414, "absolute_change": 0.067, "percentage_change": 2.7754763877}, {"date": "2017-07-17", "fuel": "diesel", "current_price": 2.491, "yoy_price": 2.402, "absolute_change": 0.089, "percentage_change": 3.7052456286}, {"date": "2017-07-24", "fuel": "diesel", "current_price": 2.507, "yoy_price": 2.379, "absolute_change": 0.128, "percentage_change": 5.3804119378}, {"date": "2017-07-31", "fuel": "diesel", "current_price": 2.531, "yoy_price": 2.348, "absolute_change": 0.183, "percentage_change": 7.793867121}, {"date": "2017-08-07", "fuel": "diesel", "current_price": 2.581, "yoy_price": 2.316, "absolute_change": 0.265, "percentage_change": 11.4421416235}, {"date": "2017-08-14", "fuel": "diesel", "current_price": 2.598, "yoy_price": 2.31, "absolute_change": 0.288, "percentage_change": 12.4675324675}, {"date": "2017-08-21", "fuel": "diesel", "current_price": 2.596, "yoy_price": 2.37, "absolute_change": 0.226, "percentage_change": 9.5358649789}, {"date": "2017-08-28", "fuel": "diesel", "current_price": 2.605, "yoy_price": 2.409, "absolute_change": 0.196, "percentage_change": 8.1361560814}, {"date": "2017-09-04", "fuel": "diesel", "current_price": 2.758, "yoy_price": 2.407, "absolute_change": 0.351, "percentage_change": 14.5824678022}, {"date": "2017-09-11", "fuel": "diesel", "current_price": 2.802, "yoy_price": 2.399, "absolute_change": 0.403, "percentage_change": 16.7986661109}, {"date": "2017-09-18", "fuel": "diesel", "current_price": 2.791, "yoy_price": 2.389, "absolute_change": 0.402, "percentage_change": 16.8271243198}, {"date": "2017-09-25", "fuel": "diesel", "current_price": 2.788, "yoy_price": 2.382, "absolute_change": 0.406, "percentage_change": 17.0445004198}, {"date": "2017-10-02", "fuel": "diesel", "current_price": 2.792, "yoy_price": 2.389, "absolute_change": 0.403, "percentage_change": 16.868982838}, {"date": "2017-10-09", "fuel": "diesel", "current_price": 2.776, "yoy_price": 2.445, "absolute_change": 0.331, "percentage_change": 13.5378323108}, {"date": "2017-10-16", "fuel": "diesel", "current_price": 2.787, "yoy_price": 2.481, "absolute_change": 0.306, "percentage_change": 12.3337363966}, {"date": "2017-10-23", "fuel": "diesel", "current_price": 2.797, "yoy_price": 2.478, "absolute_change": 0.319, "percentage_change": 12.8732849072}, {"date": "2017-10-30", "fuel": "diesel", "current_price": 2.819, "yoy_price": 2.479, "absolute_change": 0.34, "percentage_change": 13.7152077451}, {"date": "2017-11-06", "fuel": "diesel", "current_price": 2.882, "yoy_price": 2.47, "absolute_change": 0.412, "percentage_change": 16.6801619433}, {"date": "2017-11-13", "fuel": "diesel", "current_price": 2.915, "yoy_price": 2.443, "absolute_change": 0.472, "percentage_change": 19.3205075727}, {"date": "2017-11-20", "fuel": "diesel", "current_price": 2.912, "yoy_price": 2.421, "absolute_change": 0.491, "percentage_change": 20.2808756712}, {"date": "2017-11-27", "fuel": "diesel", "current_price": 2.926, "yoy_price": 2.42, "absolute_change": 0.506, "percentage_change": 20.9090909091}, {"date": "2017-12-04", "fuel": "diesel", "current_price": 2.922, "yoy_price": 2.48, "absolute_change": 0.442, "percentage_change": 17.8225806452}, {"date": "2017-12-11", "fuel": "diesel", "current_price": 2.91, "yoy_price": 2.493, "absolute_change": 0.417, "percentage_change": 16.7268351384}, {"date": "2017-12-18", "fuel": "diesel", "current_price": 2.901, "yoy_price": 2.527, "absolute_change": 0.374, "percentage_change": 14.8001582905}, {"date": "2017-12-25", "fuel": "diesel", "current_price": 2.903, "yoy_price": 2.54, "absolute_change": 0.363, "percentage_change": 14.2913385827}, {"date": "2018-01-01", "fuel": "diesel", "current_price": 2.973, "yoy_price": 2.586, "absolute_change": 0.387, "percentage_change": 14.9651972158}, {"date": "2018-01-08", "fuel": "diesel", "current_price": 2.996, "yoy_price": 2.597, "absolute_change": 0.399, "percentage_change": 15.3638814016}, {"date": "2018-01-15", "fuel": "diesel", "current_price": 3.028, "yoy_price": 2.585, "absolute_change": 0.443, "percentage_change": 17.1373307544}, {"date": "2018-01-22", "fuel": "diesel", "current_price": 3.025, "yoy_price": 2.569, "absolute_change": 0.456, "percentage_change": 17.7500973141}, {"date": "2018-01-29", "fuel": "diesel", "current_price": 3.07, "yoy_price": 2.562, "absolute_change": 0.508, "percentage_change": 19.8282591725}, {"date": "2018-02-05", "fuel": "diesel", "current_price": 3.086, "yoy_price": 2.558, "absolute_change": 0.528, "percentage_change": 20.6411258796}, {"date": "2018-02-12", "fuel": "diesel", "current_price": 3.063, "yoy_price": 2.565, "absolute_change": 0.498, "percentage_change": 19.4152046784}, {"date": "2018-02-19", "fuel": "diesel", "current_price": 3.027, "yoy_price": 2.572, "absolute_change": 0.455, "percentage_change": 17.6905132193}, {"date": "2018-02-26", "fuel": "diesel", "current_price": 3.007, "yoy_price": 2.577, "absolute_change": 0.43, "percentage_change": 16.6860690726}, {"date": "2018-03-05", "fuel": "diesel", "current_price": 2.992, "yoy_price": 2.579, "absolute_change": 0.413, "percentage_change": 16.0139588988}, {"date": "2018-03-12", "fuel": "diesel", "current_price": 2.976, "yoy_price": 2.564, "absolute_change": 0.412, "percentage_change": 16.0686427457}, {"date": "2018-03-19", "fuel": "diesel", "current_price": 2.972, "yoy_price": 2.539, "absolute_change": 0.433, "percentage_change": 17.0539582513}, {"date": "2018-03-26", "fuel": "diesel", "current_price": 3.01, "yoy_price": 2.532, "absolute_change": 0.478, "percentage_change": 18.87835703}, {"date": "2018-04-02", "fuel": "diesel", "current_price": 3.042, "yoy_price": 2.556, "absolute_change": 0.486, "percentage_change": 19.014084507}, {"date": "2018-04-09", "fuel": "diesel", "current_price": 3.043, "yoy_price": 2.582, "absolute_change": 0.461, "percentage_change": 17.8543764524}, {"date": "2018-04-16", "fuel": "diesel", "current_price": 3.104, "yoy_price": 2.597, "absolute_change": 0.507, "percentage_change": 19.5225259915}, {"date": "2018-04-23", "fuel": "diesel", "current_price": 3.133, "yoy_price": 2.595, "absolute_change": 0.538, "percentage_change": 20.732177264}, {"date": "2018-04-30", "fuel": "diesel", "current_price": 3.157, "yoy_price": 2.583, "absolute_change": 0.574, "percentage_change": 22.2222222222}, {"date": "2018-05-07", "fuel": "diesel", "current_price": 3.171, "yoy_price": 2.565, "absolute_change": 0.606, "percentage_change": 23.6257309942}, {"date": "2018-05-14", "fuel": "diesel", "current_price": 3.239, "yoy_price": 2.544, "absolute_change": 0.695, "percentage_change": 27.3191823899}, {"date": "2018-05-21", "fuel": "diesel", "current_price": 3.277, "yoy_price": 2.539, "absolute_change": 0.738, "percentage_change": 29.0665616384}, {"date": "2018-05-28", "fuel": "diesel", "current_price": 3.288, "yoy_price": 2.571, "absolute_change": 0.717, "percentage_change": 27.8879813302}, {"date": "2018-06-04", "fuel": "diesel", "current_price": 3.285, "yoy_price": 2.564, "absolute_change": 0.721, "percentage_change": 28.120124805}, {"date": "2018-06-11", "fuel": "diesel", "current_price": 3.266, "yoy_price": 2.524, "absolute_change": 0.742, "percentage_change": 29.3977812995}, {"date": "2018-06-18", "fuel": "diesel", "current_price": 3.244, "yoy_price": 2.489, "absolute_change": 0.755, "percentage_change": 30.3334672559}, {"date": "2018-06-25", "fuel": "diesel", "current_price": 3.216, "yoy_price": 2.465, "absolute_change": 0.751, "percentage_change": 30.4665314402}, {"date": "2018-07-02", "fuel": "diesel", "current_price": 3.236, "yoy_price": 2.472, "absolute_change": 0.764, "percentage_change": 30.9061488673}, {"date": "2018-07-09", "fuel": "diesel", "current_price": 3.243, "yoy_price": 2.481, "absolute_change": 0.762, "percentage_change": 30.7134220073}, {"date": "2018-07-16", "fuel": "diesel", "current_price": 3.239, "yoy_price": 2.491, "absolute_change": 0.748, "percentage_change": 30.0281011642}, {"date": "2018-07-23", "fuel": "diesel", "current_price": 3.22, "yoy_price": 2.507, "absolute_change": 0.713, "percentage_change": 28.4403669725}, {"date": "2018-07-30", "fuel": "diesel", "current_price": 3.226, "yoy_price": 2.531, "absolute_change": 0.695, "percentage_change": 27.4595021731}, {"date": "2018-08-06", "fuel": "diesel", "current_price": 3.223, "yoy_price": 2.581, "absolute_change": 0.642, "percentage_change": 24.874079814}, {"date": "2018-08-13", "fuel": "diesel", "current_price": 3.217, "yoy_price": 2.598, "absolute_change": 0.619, "percentage_change": 23.8260200154}, {"date": "2018-08-20", "fuel": "diesel", "current_price": 3.207, "yoy_price": 2.596, "absolute_change": 0.611, "percentage_change": 23.5362095532}, {"date": "2018-08-27", "fuel": "diesel", "current_price": 3.226, "yoy_price": 2.605, "absolute_change": 0.621, "percentage_change": 23.8387715931}, {"date": "2018-09-03", "fuel": "diesel", "current_price": 3.252, "yoy_price": 2.758, "absolute_change": 0.494, "percentage_change": 17.9115300943}, {"date": "2018-09-10", "fuel": "diesel", "current_price": 3.258, "yoy_price": 2.802, "absolute_change": 0.456, "percentage_change": 16.2740899358}, {"date": "2018-09-17", "fuel": "diesel", "current_price": 3.268, "yoy_price": 2.791, "absolute_change": 0.477, "percentage_change": 17.0906485131}, {"date": "2018-09-24", "fuel": "diesel", "current_price": 3.271, "yoy_price": 2.788, "absolute_change": 0.483, "percentage_change": 17.3242467719}, {"date": "2018-10-01", "fuel": "diesel", "current_price": 3.313, "yoy_price": 2.792, "absolute_change": 0.521, "percentage_change": 18.6604584527}, {"date": "2018-10-08", "fuel": "diesel", "current_price": 3.385, "yoy_price": 2.776, "absolute_change": 0.609, "percentage_change": 21.9380403458}, {"date": "2018-10-15", "fuel": "diesel", "current_price": 3.394, "yoy_price": 2.787, "absolute_change": 0.607, "percentage_change": 21.7796914245}, {"date": "2018-10-22", "fuel": "diesel", "current_price": 3.38, "yoy_price": 2.797, "absolute_change": 0.583, "percentage_change": 20.8437611727}, {"date": "2018-10-29", "fuel": "diesel", "current_price": 3.355, "yoy_price": 2.819, "absolute_change": 0.536, "percentage_change": 19.0138346932}, {"date": "2018-11-05", "fuel": "diesel", "current_price": 3.338, "yoy_price": 2.882, "absolute_change": 0.456, "percentage_change": 15.8223455933}, {"date": "2018-11-12", "fuel": "diesel", "current_price": 3.317, "yoy_price": 2.915, "absolute_change": 0.402, "percentage_change": 13.7907375643}, {"date": "2018-11-19", "fuel": "diesel", "current_price": 3.282, "yoy_price": 2.912, "absolute_change": 0.37, "percentage_change": 12.706043956}, {"date": "2018-11-26", "fuel": "diesel", "current_price": 3.261, "yoy_price": 2.926, "absolute_change": 0.335, "percentage_change": 11.4490772386}, {"date": "2018-12-03", "fuel": "diesel", "current_price": 3.207, "yoy_price": 2.922, "absolute_change": 0.285, "percentage_change": 9.7535934292}, {"date": "2018-12-10", "fuel": "diesel", "current_price": 3.161, "yoy_price": 2.91, "absolute_change": 0.251, "percentage_change": 8.6254295533}, {"date": "2018-12-17", "fuel": "diesel", "current_price": 3.121, "yoy_price": 2.901, "absolute_change": 0.22, "percentage_change": 7.5835918649}, {"date": "2018-12-24", "fuel": "diesel", "current_price": 3.077, "yoy_price": 2.903, "absolute_change": 0.174, "percentage_change": 5.9937995177}, {"date": "2018-12-31", "fuel": "diesel", "current_price": 3.048, "yoy_price": 2.973, "absolute_change": 0.075, "percentage_change": 2.5227043391}, {"date": "2019-01-07", "fuel": "diesel", "current_price": 3.013, "yoy_price": 2.996, "absolute_change": 0.017, "percentage_change": 0.567423231}, {"date": "2019-01-14", "fuel": "diesel", "current_price": 2.976, "yoy_price": 3.028, "absolute_change": -0.052, "percentage_change": -1.7173051519}, {"date": "2019-01-21", "fuel": "diesel", "current_price": 2.965, "yoy_price": 3.025, "absolute_change": -0.06, "percentage_change": -1.9834710744}, {"date": "2019-01-28", "fuel": "diesel", "current_price": 2.965, "yoy_price": 3.07, "absolute_change": -0.105, "percentage_change": -3.4201954397}, {"date": "2019-02-04", "fuel": "diesel", "current_price": 2.966, "yoy_price": 3.086, "absolute_change": -0.12, "percentage_change": -3.8885288399}, {"date": "2019-02-11", "fuel": "diesel", "current_price": 2.966, "yoy_price": 3.063, "absolute_change": -0.097, "percentage_change": -3.1668299053}, {"date": "2019-02-18", "fuel": "diesel", "current_price": 3.006, "yoy_price": 3.027, "absolute_change": -0.021, "percentage_change": -0.6937561943}, {"date": "2019-02-25", "fuel": "diesel", "current_price": 3.048, "yoy_price": 3.007, "absolute_change": 0.041, "percentage_change": 1.3634852012}, {"date": "2019-03-04", "fuel": "diesel", "current_price": 3.076, "yoy_price": 2.992, "absolute_change": 0.084, "percentage_change": 2.807486631}, {"date": "2019-03-11", "fuel": "diesel", "current_price": 3.079, "yoy_price": 2.976, "absolute_change": 0.103, "percentage_change": 3.4610215054}, {"date": "2019-03-18", "fuel": "diesel", "current_price": 3.07, "yoy_price": 2.972, "absolute_change": 0.098, "percentage_change": 3.2974427995}, {"date": "2019-03-25", "fuel": "diesel", "current_price": 3.08, "yoy_price": 3.01, "absolute_change": 0.07, "percentage_change": 2.3255813953}, {"date": "2019-04-01", "fuel": "diesel", "current_price": 3.078, "yoy_price": 3.042, "absolute_change": 0.036, "percentage_change": 1.1834319527}, {"date": "2019-04-08", "fuel": "diesel", "current_price": 3.093, "yoy_price": 3.043, "absolute_change": 0.05, "percentage_change": 1.6431153467}, {"date": "2019-04-15", "fuel": "diesel", "current_price": 3.118, "yoy_price": 3.104, "absolute_change": 0.014, "percentage_change": 0.4510309278}, {"date": "2019-04-22", "fuel": "diesel", "current_price": 3.147, "yoy_price": 3.133, "absolute_change": 0.014, "percentage_change": 0.4468560485}, {"date": "2019-04-29", "fuel": "diesel", "current_price": 3.169, "yoy_price": 3.157, "absolute_change": 0.012, "percentage_change": 0.3801076972}, {"date": "2019-05-06", "fuel": "diesel", "current_price": 3.171, "yoy_price": 3.171, "absolute_change": 0, "percentage_change": 0}, {"date": "2019-05-13", "fuel": "diesel", "current_price": 3.16, "yoy_price": 3.239, "absolute_change": -0.079, "percentage_change": -2.4390243902}, {"date": "2019-05-20", "fuel": "diesel", "current_price": 3.163, "yoy_price": 3.277, "absolute_change": -0.114, "percentage_change": -3.4787915777}, {"date": "2019-05-27", "fuel": "diesel", "current_price": 3.151, "yoy_price": 3.288, "absolute_change": -0.137, "percentage_change": -4.1666666667}, {"date": "2019-06-03", "fuel": "diesel", "current_price": 3.136, "yoy_price": 3.285, "absolute_change": -0.149, "percentage_change": -4.5357686454}, {"date": "2019-06-10", "fuel": "diesel", "current_price": 3.105, "yoy_price": 3.266, "absolute_change": -0.161, "percentage_change": -4.9295774648}, {"date": "2019-06-17", "fuel": "diesel", "current_price": 3.07, "yoy_price": 3.244, "absolute_change": -0.174, "percentage_change": -5.3637484587}, {"date": "2019-06-24", "fuel": "diesel", "current_price": 3.043, "yoy_price": 3.216, "absolute_change": -0.173, "percentage_change": -5.3793532338}, {"date": "2019-07-01", "fuel": "diesel", "current_price": 3.042, "yoy_price": 3.236, "absolute_change": -0.194, "percentage_change": -5.9950556242}, {"date": "2019-07-08", "fuel": "diesel", "current_price": 3.055, "yoy_price": 3.243, "absolute_change": -0.188, "percentage_change": -5.7971014493}, {"date": "2019-07-15", "fuel": "diesel", "current_price": 3.051, "yoy_price": 3.239, "absolute_change": -0.188, "percentage_change": -5.8042605743}, {"date": "2019-07-22", "fuel": "diesel", "current_price": 3.044, "yoy_price": 3.22, "absolute_change": -0.176, "percentage_change": -5.4658385093}, {"date": "2019-07-29", "fuel": "diesel", "current_price": 3.034, "yoy_price": 3.226, "absolute_change": -0.192, "percentage_change": -5.9516429014}, {"date": "2019-08-05", "fuel": "diesel", "current_price": 3.032, "yoy_price": 3.223, "absolute_change": -0.191, "percentage_change": -5.9261557555}, {"date": "2019-08-12", "fuel": "diesel", "current_price": 3.011, "yoy_price": 3.217, "absolute_change": -0.206, "percentage_change": -6.4034815045}, {"date": "2019-08-19", "fuel": "diesel", "current_price": 2.994, "yoy_price": 3.207, "absolute_change": -0.213, "percentage_change": -6.6417212348}, {"date": "2019-08-26", "fuel": "diesel", "current_price": 2.983, "yoy_price": 3.226, "absolute_change": -0.243, "percentage_change": -7.5325480471}, {"date": "2019-09-02", "fuel": "diesel", "current_price": 2.976, "yoy_price": 3.252, "absolute_change": -0.276, "percentage_change": -8.4870848708}, {"date": "2019-09-09", "fuel": "diesel", "current_price": 2.971, "yoy_price": 3.258, "absolute_change": -0.287, "percentage_change": -8.8090853284}, {"date": "2019-09-16", "fuel": "diesel", "current_price": 2.987, "yoy_price": 3.268, "absolute_change": -0.281, "percentage_change": -8.5985312118}, {"date": "2019-09-23", "fuel": "diesel", "current_price": 3.081, "yoy_price": 3.271, "absolute_change": -0.19, "percentage_change": -5.8086212168}, {"date": "2019-09-30", "fuel": "diesel", "current_price": 3.066, "yoy_price": 3.313, "absolute_change": -0.247, "percentage_change": -7.4554784184}, {"date": "2019-10-07", "fuel": "diesel", "current_price": 3.047, "yoy_price": 3.385, "absolute_change": -0.338, "percentage_change": -9.9852289513}, {"date": "2019-10-14", "fuel": "diesel", "current_price": 3.051, "yoy_price": 3.394, "absolute_change": -0.343, "percentage_change": -10.1060695345}, {"date": "2019-10-21", "fuel": "diesel", "current_price": 3.05, "yoy_price": 3.38, "absolute_change": -0.33, "percentage_change": -9.7633136095}, {"date": "2019-10-28", "fuel": "diesel", "current_price": 3.064, "yoy_price": 3.355, "absolute_change": -0.291, "percentage_change": -8.6736214605}, {"date": "2019-11-04", "fuel": "diesel", "current_price": 3.062, "yoy_price": 3.338, "absolute_change": -0.276, "percentage_change": -8.2684242061}, {"date": "2019-11-11", "fuel": "diesel", "current_price": 3.073, "yoy_price": 3.317, "absolute_change": -0.244, "percentage_change": -7.3560446186}, {"date": "2019-11-18", "fuel": "diesel", "current_price": 3.074, "yoy_price": 3.282, "absolute_change": -0.208, "percentage_change": -6.337599025}, {"date": "2019-11-25", "fuel": "diesel", "current_price": 3.066, "yoy_price": 3.261, "absolute_change": -0.195, "percentage_change": -5.9797608096}, {"date": "2019-12-02", "fuel": "diesel", "current_price": 3.07, "yoy_price": 3.207, "absolute_change": -0.137, "percentage_change": -4.2719052074}, {"date": "2019-12-09", "fuel": "diesel", "current_price": 3.049, "yoy_price": 3.161, "absolute_change": -0.112, "percentage_change": -3.5431825372}, {"date": "2019-12-16", "fuel": "diesel", "current_price": 3.046, "yoy_price": 3.121, "absolute_change": -0.075, "percentage_change": -2.4030759372}, {"date": "2019-12-23", "fuel": "diesel", "current_price": 3.041, "yoy_price": 3.077, "absolute_change": -0.036, "percentage_change": -1.1699707507}, {"date": "2019-12-30", "fuel": "diesel", "current_price": 3.069, "yoy_price": 3.048, "absolute_change": 0.021, "percentage_change": 0.688976378}, {"date": "2020-01-06", "fuel": "diesel", "current_price": 3.079, "yoy_price": 3.013, "absolute_change": 0.066, "percentage_change": 2.1905077995}, {"date": "2020-01-13", "fuel": "diesel", "current_price": 3.064, "yoy_price": 2.976, "absolute_change": 0.088, "percentage_change": 2.9569892473}, {"date": "2020-01-20", "fuel": "diesel", "current_price": 3.037, "yoy_price": 2.965, "absolute_change": 0.072, "percentage_change": 2.4283305228}, {"date": "2020-01-27", "fuel": "diesel", "current_price": 3.01, "yoy_price": 2.965, "absolute_change": 0.045, "percentage_change": 1.5177065767}, {"date": "2020-02-03", "fuel": "diesel", "current_price": 2.956, "yoy_price": 2.966, "absolute_change": -0.01, "percentage_change": -0.3371544167}, {"date": "2020-02-10", "fuel": "diesel", "current_price": 2.91, "yoy_price": 2.966, "absolute_change": -0.056, "percentage_change": -1.8880647336}, {"date": "2020-02-17", "fuel": "diesel", "current_price": 2.89, "yoy_price": 3.006, "absolute_change": -0.116, "percentage_change": -3.8589487691}, {"date": "2020-02-24", "fuel": "diesel", "current_price": 2.882, "yoy_price": 3.048, "absolute_change": -0.166, "percentage_change": -5.4461942257}, {"date": "2020-03-02", "fuel": "diesel", "current_price": 2.851, "yoy_price": 3.076, "absolute_change": -0.225, "percentage_change": -7.3146944083}, {"date": "2020-03-09", "fuel": "diesel", "current_price": 2.814, "yoy_price": 3.079, "absolute_change": -0.265, "percentage_change": -8.6066904839}, {"date": "2020-03-16", "fuel": "diesel", "current_price": 2.733, "yoy_price": 3.07, "absolute_change": -0.337, "percentage_change": -10.9771986971}, {"date": "2020-03-23", "fuel": "diesel", "current_price": 2.659, "yoy_price": 3.08, "absolute_change": -0.421, "percentage_change": -13.6688311688}, {"date": "2020-03-30", "fuel": "diesel", "current_price": 2.586, "yoy_price": 3.078, "absolute_change": -0.492, "percentage_change": -15.9844054581}, {"date": "2020-04-06", "fuel": "diesel", "current_price": 2.548, "yoy_price": 3.093, "absolute_change": -0.545, "percentage_change": -17.6204332363}, {"date": "2020-04-13", "fuel": "diesel", "current_price": 2.507, "yoy_price": 3.118, "absolute_change": -0.611, "percentage_change": -19.5958948044}, {"date": "2020-04-20", "fuel": "diesel", "current_price": 2.48, "yoy_price": 3.147, "absolute_change": -0.667, "percentage_change": -21.1947886876}, {"date": "2020-04-27", "fuel": "diesel", "current_price": 2.437, "yoy_price": 3.169, "absolute_change": -0.732, "percentage_change": -23.0987693279}, {"date": "2020-05-04", "fuel": "diesel", "current_price": 2.399, "yoy_price": 3.171, "absolute_change": -0.772, "percentage_change": -24.3456322927}, {"date": "2020-05-11", "fuel": "diesel", "current_price": 2.394, "yoy_price": 3.16, "absolute_change": -0.766, "percentage_change": -24.2405063291}, {"date": "2020-05-18", "fuel": "diesel", "current_price": 2.386, "yoy_price": 3.163, "absolute_change": -0.777, "percentage_change": -24.5652861208}, {"date": "2020-05-25", "fuel": "diesel", "current_price": 2.39, "yoy_price": 3.151, "absolute_change": -0.761, "percentage_change": -24.1510631546}, {"date": "2020-06-01", "fuel": "diesel", "current_price": 2.386, "yoy_price": 3.136, "absolute_change": -0.75, "percentage_change": -23.9158163265}, {"date": "2020-06-08", "fuel": "diesel", "current_price": 2.396, "yoy_price": 3.105, "absolute_change": -0.709, "percentage_change": -22.8341384863}, {"date": "2020-06-15", "fuel": "diesel", "current_price": 2.403, "yoy_price": 3.07, "absolute_change": -0.667, "percentage_change": -21.7263843648}, {"date": "2020-06-22", "fuel": "diesel", "current_price": 2.425, "yoy_price": 3.043, "absolute_change": -0.618, "percentage_change": -20.3089056852}, {"date": "2020-06-29", "fuel": "diesel", "current_price": 2.43, "yoy_price": 3.042, "absolute_change": -0.612, "percentage_change": -20.1183431953}, {"date": "2020-07-06", "fuel": "diesel", "current_price": 2.437, "yoy_price": 3.055, "absolute_change": -0.618, "percentage_change": -20.2291325696}, {"date": "2020-07-13", "fuel": "diesel", "current_price": 2.438, "yoy_price": 3.051, "absolute_change": -0.613, "percentage_change": -20.0917731891}, {"date": "2020-07-20", "fuel": "diesel", "current_price": 2.433, "yoy_price": 3.044, "absolute_change": -0.611, "percentage_change": -20.0722733246}, {"date": "2020-07-27", "fuel": "diesel", "current_price": 2.427, "yoy_price": 3.034, "absolute_change": -0.607, "percentage_change": -20.0065919578}, {"date": "2020-08-03", "fuel": "diesel", "current_price": 2.424, "yoy_price": 3.032, "absolute_change": -0.608, "percentage_change": -20.0527704485}, {"date": "2020-08-10", "fuel": "diesel", "current_price": 2.428, "yoy_price": 3.011, "absolute_change": -0.583, "percentage_change": -19.3623380937}, {"date": "2020-08-17", "fuel": "diesel", "current_price": 2.427, "yoy_price": 2.994, "absolute_change": -0.567, "percentage_change": -18.9378757515}, {"date": "2020-08-24", "fuel": "diesel", "current_price": 2.426, "yoy_price": 2.983, "absolute_change": -0.557, "percentage_change": -18.6724773718}, {"date": "2020-08-31", "fuel": "diesel", "current_price": 2.441, "yoy_price": 2.976, "absolute_change": -0.535, "percentage_change": -17.9771505376}, {"date": "2020-09-07", "fuel": "diesel", "current_price": 2.435, "yoy_price": 2.971, "absolute_change": -0.536, "percentage_change": -18.0410636149}, {"date": "2020-09-14", "fuel": "diesel", "current_price": 2.422, "yoy_price": 2.987, "absolute_change": -0.565, "percentage_change": -18.9152996317}, {"date": "2020-09-21", "fuel": "diesel", "current_price": 2.404, "yoy_price": 3.081, "absolute_change": -0.677, "percentage_change": -21.9733852645}, {"date": "2020-09-28", "fuel": "diesel", "current_price": 2.394, "yoy_price": 3.066, "absolute_change": -0.672, "percentage_change": -21.9178082192}, {"date": "2020-10-05", "fuel": "diesel", "current_price": 2.387, "yoy_price": 3.047, "absolute_change": -0.66, "percentage_change": -21.6606498195}, {"date": "2020-10-12", "fuel": "diesel", "current_price": 2.395, "yoy_price": 3.051, "absolute_change": -0.656, "percentage_change": -21.5011471649}, {"date": "2020-10-19", "fuel": "diesel", "current_price": 2.388, "yoy_price": 3.05, "absolute_change": -0.662, "percentage_change": -21.7049180328}, {"date": "2020-10-26", "fuel": "diesel", "current_price": 2.385, "yoy_price": 3.064, "absolute_change": -0.679, "percentage_change": -22.1605744125}, {"date": "2020-11-02", "fuel": "diesel", "current_price": 2.372, "yoy_price": 3.062, "absolute_change": -0.69, "percentage_change": -22.5342913129}, {"date": "2020-11-09", "fuel": "diesel", "current_price": 2.383, "yoy_price": 3.073, "absolute_change": -0.69, "percentage_change": -22.4536283762}, {"date": "2020-11-16", "fuel": "diesel", "current_price": 2.441, "yoy_price": 3.074, "absolute_change": -0.633, "percentage_change": -20.5920624593}, {"date": "2020-11-23", "fuel": "diesel", "current_price": 2.462, "yoy_price": 3.066, "absolute_change": -0.604, "percentage_change": -19.6999347684}, {"date": "2020-11-30", "fuel": "diesel", "current_price": 2.502, "yoy_price": 3.07, "absolute_change": -0.568, "percentage_change": -18.5016286645}, {"date": "2020-12-07", "fuel": "diesel", "current_price": 2.526, "yoy_price": 3.049, "absolute_change": -0.523, "percentage_change": -17.1531649721}, {"date": "2020-12-14", "fuel": "diesel", "current_price": 2.559, "yoy_price": 3.046, "absolute_change": -0.487, "percentage_change": -15.9881812213}, {"date": "2020-12-21", "fuel": "diesel", "current_price": 2.619, "yoy_price": 3.041, "absolute_change": -0.422, "percentage_change": -13.8770141401}, {"date": "2020-12-28", "fuel": "diesel", "current_price": 2.635, "yoy_price": 3.069, "absolute_change": -0.434, "percentage_change": -14.1414141414}, {"date": "2021-01-04", "fuel": "diesel", "current_price": 2.64, "yoy_price": 3.079, "absolute_change": -0.439, "percentage_change": -14.2578759337}, {"date": "2021-01-11", "fuel": "diesel", "current_price": 2.67, "yoy_price": 3.064, "absolute_change": -0.394, "percentage_change": -12.8590078329}, {"date": "2021-01-18", "fuel": "diesel", "current_price": 2.696, "yoy_price": 3.037, "absolute_change": -0.341, "percentage_change": -11.2281857096}, {"date": "2021-01-25", "fuel": "diesel", "current_price": 2.716, "yoy_price": 3.01, "absolute_change": -0.294, "percentage_change": -9.7674418605}, {"date": "2021-02-01", "fuel": "diesel", "current_price": 2.738, "yoy_price": 2.956, "absolute_change": -0.218, "percentage_change": -7.3748308525}, {"date": "2021-02-08", "fuel": "diesel", "current_price": 2.801, "yoy_price": 2.91, "absolute_change": -0.109, "percentage_change": -3.7457044674}, {"date": "2021-02-15", "fuel": "diesel", "current_price": 2.876, "yoy_price": 2.89, "absolute_change": -0.014, "percentage_change": -0.4844290657}, {"date": "2021-02-22", "fuel": "diesel", "current_price": 2.973, "yoy_price": 2.882, "absolute_change": 0.091, "percentage_change": 3.1575294934}, {"date": "2021-03-01", "fuel": "diesel", "current_price": 3.072, "yoy_price": 2.851, "absolute_change": 0.221, "percentage_change": 7.7516660821}, {"date": "2021-03-08", "fuel": "diesel", "current_price": 3.143, "yoy_price": 2.814, "absolute_change": 0.329, "percentage_change": 11.6915422886}, {"date": "2021-03-15", "fuel": "diesel", "current_price": 3.191, "yoy_price": 2.733, "absolute_change": 0.458, "percentage_change": 16.7581412367}, {"date": "2021-03-22", "fuel": "diesel", "current_price": 3.194, "yoy_price": 2.659, "absolute_change": 0.535, "percentage_change": 20.1203459947}, {"date": "2021-03-29", "fuel": "diesel", "current_price": 3.161, "yoy_price": 2.586, "absolute_change": 0.575, "percentage_change": 22.2351121423}, {"date": "2021-04-05", "fuel": "diesel", "current_price": 3.144, "yoy_price": 2.548, "absolute_change": 0.596, "percentage_change": 23.3908948195}, {"date": "2021-04-12", "fuel": "diesel", "current_price": 3.129, "yoy_price": 2.507, "absolute_change": 0.622, "percentage_change": 24.8105305146}, {"date": "2021-04-19", "fuel": "diesel", "current_price": 3.124, "yoy_price": 2.48, "absolute_change": 0.644, "percentage_change": 25.9677419355}, {"date": "2021-04-26", "fuel": "diesel", "current_price": 3.124, "yoy_price": 2.437, "absolute_change": 0.687, "percentage_change": 28.1903980304}, {"date": "2021-05-03", "fuel": "diesel", "current_price": 3.142, "yoy_price": 2.399, "absolute_change": 0.743, "percentage_change": 30.9712380158}, {"date": "2021-05-10", "fuel": "diesel", "current_price": 3.186, "yoy_price": 2.394, "absolute_change": 0.792, "percentage_change": 33.0827067669}, {"date": "2021-05-17", "fuel": "diesel", "current_price": 3.249, "yoy_price": 2.386, "absolute_change": 0.863, "percentage_change": 36.1693210394}, {"date": "2021-05-24", "fuel": "diesel", "current_price": 3.253, "yoy_price": 2.39, "absolute_change": 0.863, "percentage_change": 36.1087866109}, {"date": "2021-05-31", "fuel": "diesel", "current_price": 3.255, "yoy_price": 2.386, "absolute_change": 0.869, "percentage_change": 36.4207879296}, {"date": "2021-06-07", "fuel": "diesel", "current_price": 3.274, "yoy_price": 2.396, "absolute_change": 0.878, "percentage_change": 36.6444073456}, {"date": "2021-06-14", "fuel": "diesel", "current_price": 3.286, "yoy_price": 2.403, "absolute_change": 0.883, "percentage_change": 36.7457344985}, {"date": "2021-06-21", "fuel": "diesel", "current_price": 3.287, "yoy_price": 2.425, "absolute_change": 0.862, "percentage_change": 35.5463917526}, {"date": "2021-06-28", "fuel": "diesel", "current_price": 3.3, "yoy_price": 2.43, "absolute_change": 0.87, "percentage_change": 35.8024691358}, {"date": "2021-07-05", "fuel": "diesel", "current_price": 3.331, "yoy_price": 2.437, "absolute_change": 0.894, "percentage_change": 36.6844480919}, {"date": "2021-07-12", "fuel": "diesel", "current_price": 3.338, "yoy_price": 2.438, "absolute_change": 0.9, "percentage_change": 36.9155045119}, {"date": "2021-07-19", "fuel": "diesel", "current_price": 3.344, "yoy_price": 2.433, "absolute_change": 0.911, "percentage_change": 37.443485409}, {"date": "2021-07-26", "fuel": "diesel", "current_price": 3.342, "yoy_price": 2.427, "absolute_change": 0.915, "percentage_change": 37.7008652658}, {"date": "2021-08-02", "fuel": "diesel", "current_price": 3.367, "yoy_price": 2.424, "absolute_change": 0.943, "percentage_change": 38.902640264}, {"date": "2021-08-09", "fuel": "diesel", "current_price": 3.364, "yoy_price": 2.428, "absolute_change": 0.936, "percentage_change": 38.550247117}, {"date": "2021-08-16", "fuel": "diesel", "current_price": 3.356, "yoy_price": 2.427, "absolute_change": 0.929, "percentage_change": 38.2777091059}, {"date": "2021-08-23", "fuel": "diesel", "current_price": 3.324, "yoy_price": 2.426, "absolute_change": 0.898, "percentage_change": 37.0156636439}, {"date": "2021-08-30", "fuel": "diesel", "current_price": 3.339, "yoy_price": 2.441, "absolute_change": 0.898, "percentage_change": 36.7882015567}, {"date": "2021-09-06", "fuel": "diesel", "current_price": 3.373, "yoy_price": 2.435, "absolute_change": 0.938, "percentage_change": 38.5215605749}, {"date": "2021-09-13", "fuel": "diesel", "current_price": 3.372, "yoy_price": 2.422, "absolute_change": 0.95, "percentage_change": 39.2237819983}, {"date": "2021-09-20", "fuel": "diesel", "current_price": 3.385, "yoy_price": 2.404, "absolute_change": 0.981, "percentage_change": 40.8069883527}, {"date": "2021-09-27", "fuel": "diesel", "current_price": 3.406, "yoy_price": 2.394, "absolute_change": 1.012, "percentage_change": 42.2723475355}, {"date": "2021-10-04", "fuel": "diesel", "current_price": 3.477, "yoy_price": 2.387, "absolute_change": 1.09, "percentage_change": 45.6640134059}, {"date": "2021-10-11", "fuel": "diesel", "current_price": 3.586, "yoy_price": 2.395, "absolute_change": 1.191, "percentage_change": 49.7286012526}, {"date": "2021-10-18", "fuel": "diesel", "current_price": 3.671, "yoy_price": 2.388, "absolute_change": 1.283, "percentage_change": 53.7269681742}, {"date": "2021-10-25", "fuel": "diesel", "current_price": 3.713, "yoy_price": 2.385, "absolute_change": 1.328, "percentage_change": 55.6813417191}, {"date": "2021-11-01", "fuel": "diesel", "current_price": 3.727, "yoy_price": 2.372, "absolute_change": 1.355, "percentage_change": 57.1247892074}, {"date": "2021-11-08", "fuel": "diesel", "current_price": 3.73, "yoy_price": 2.383, "absolute_change": 1.347, "percentage_change": 56.5253881662}, {"date": "2021-11-15", "fuel": "diesel", "current_price": 3.734, "yoy_price": 2.441, "absolute_change": 1.293, "percentage_change": 52.9700942237}, {"date": "2021-11-22", "fuel": "diesel", "current_price": 3.724, "yoy_price": 2.462, "absolute_change": 1.262, "percentage_change": 51.2591389115}, {"date": "2021-11-29", "fuel": "diesel", "current_price": 3.72, "yoy_price": 2.502, "absolute_change": 1.218, "percentage_change": 48.6810551559}, {"date": "2021-12-06", "fuel": "diesel", "current_price": 3.674, "yoy_price": 2.526, "absolute_change": 1.148, "percentage_change": 45.4473475851}, {"date": "2021-12-13", "fuel": "diesel", "current_price": 3.649, "yoy_price": 2.559, "absolute_change": 1.09, "percentage_change": 42.5947635795}, {"date": "2021-12-20", "fuel": "diesel", "current_price": 3.626, "yoy_price": 2.619, "absolute_change": 1.007, "percentage_change": 38.4497899962}, {"date": "2021-12-27", "fuel": "diesel", "current_price": 3.615, "yoy_price": 2.635, "absolute_change": 0.98, "percentage_change": 37.1916508539}, {"date": "2022-01-03", "fuel": "diesel", "current_price": 3.613, "yoy_price": 2.64, "absolute_change": 0.973, "percentage_change": 36.8560606061}, {"date": "2022-01-10", "fuel": "diesel", "current_price": 3.657, "yoy_price": 2.67, "absolute_change": 0.987, "percentage_change": 36.9662921348}, {"date": "2022-01-17", "fuel": "diesel", "current_price": 3.725, "yoy_price": 2.696, "absolute_change": 1.029, "percentage_change": 38.1676557864}, {"date": "2022-01-24", "fuel": "diesel", "current_price": 3.78, "yoy_price": 2.716, "absolute_change": 1.064, "percentage_change": 39.175257732}, {"date": "2022-01-31", "fuel": "diesel", "current_price": 3.846, "yoy_price": 2.738, "absolute_change": 1.108, "percentage_change": 40.4674945215}, {"date": "2022-02-07", "fuel": "diesel", "current_price": 3.951, "yoy_price": 2.801, "absolute_change": 1.15, "percentage_change": 41.0567654409}, {"date": "2022-02-14", "fuel": "diesel", "current_price": 4.019, "yoy_price": 2.876, "absolute_change": 1.143, "percentage_change": 39.7426981919}, {"date": "2022-02-21", "fuel": "diesel", "current_price": 4.055, "yoy_price": 2.973, "absolute_change": 1.082, "percentage_change": 36.394214598}, {"date": "2022-02-28", "fuel": "diesel", "current_price": 4.104, "yoy_price": 3.072, "absolute_change": 1.032, "percentage_change": 33.59375}, {"date": "2022-03-07", "fuel": "diesel", "current_price": 4.849, "yoy_price": 3.143, "absolute_change": 1.706, "percentage_change": 54.2793509386}, {"date": "2022-03-14", "fuel": "diesel", "current_price": 5.25, "yoy_price": 3.191, "absolute_change": 2.059, "percentage_change": 64.5252272015}, {"date": "2022-03-21", "fuel": "diesel", "current_price": 5.134, "yoy_price": 3.194, "absolute_change": 1.94, "percentage_change": 60.7388854101}, {"date": "2022-03-28", "fuel": "diesel", "current_price": 5.185, "yoy_price": 3.161, "absolute_change": 2.024, "percentage_change": 64.030370136}, {"date": "2022-04-04", "fuel": "diesel", "current_price": 5.144, "yoy_price": 3.144, "absolute_change": 2, "percentage_change": 63.6132315522}, {"date": "2022-04-11", "fuel": "diesel", "current_price": 5.073, "yoy_price": 3.129, "absolute_change": 1.944, "percentage_change": 62.1284755513}, {"date": "2022-04-18", "fuel": "diesel", "current_price": 5.101, "yoy_price": 3.124, "absolute_change": 1.977, "percentage_change": 63.2842509603}, {"date": "2022-04-25", "fuel": "diesel", "current_price": 5.16, "yoy_price": 3.124, "absolute_change": 2.036, "percentage_change": 65.1728553137}, {"date": "2022-05-02", "fuel": "diesel", "current_price": 5.509, "yoy_price": 3.142, "absolute_change": 2.367, "percentage_change": 75.3341820496}, {"date": "2022-05-09", "fuel": "diesel", "current_price": 5.623, "yoy_price": 3.186, "absolute_change": 2.437, "percentage_change": 76.4908976773}, {"date": "2022-05-16", "fuel": "diesel", "current_price": 5.613, "yoy_price": 3.249, "absolute_change": 2.364, "percentage_change": 72.7608494922}, {"date": "2022-05-23", "fuel": "diesel", "current_price": 5.571, "yoy_price": 3.253, "absolute_change": 2.318, "percentage_change": 71.257300953}, {"date": "2022-05-30", "fuel": "diesel", "current_price": 5.539, "yoy_price": 3.255, "absolute_change": 2.284, "percentage_change": 70.1689708141}, {"date": "2022-06-06", "fuel": "diesel", "current_price": 5.703, "yoy_price": 3.274, "absolute_change": 2.429, "percentage_change": 74.1905925473}, {"date": "2022-06-13", "fuel": "diesel", "current_price": 5.718, "yoy_price": 3.286, "absolute_change": 2.432, "percentage_change": 74.0109555691}, {"date": "2022-06-20", "fuel": "diesel", "current_price": 5.81, "yoy_price": 3.287, "absolute_change": 2.523, "percentage_change": 76.7569212047}, {"date": "2022-06-27", "fuel": "diesel", "current_price": 5.783, "yoy_price": 3.3, "absolute_change": 2.483, "percentage_change": 75.2424242424}, {"date": "2022-07-04", "fuel": "diesel", "current_price": 5.675, "yoy_price": 3.331, "absolute_change": 2.344, "percentage_change": 70.3692584809}, {"date": "2022-07-11", "fuel": "diesel", "current_price": 5.568, "yoy_price": 3.338, "absolute_change": 2.23, "percentage_change": 66.8064709407}, {"date": "2022-07-18", "fuel": "diesel", "current_price": 5.432, "yoy_price": 3.344, "absolute_change": 2.088, "percentage_change": 62.4401913876}, {"date": "2022-07-25", "fuel": "diesel", "current_price": 5.268, "yoy_price": 3.342, "absolute_change": 1.926, "percentage_change": 57.6301615799}, {"date": "2022-08-01", "fuel": "diesel", "current_price": 5.138, "yoy_price": 3.367, "absolute_change": 1.771, "percentage_change": 52.5987525988}, {"date": "2022-08-08", "fuel": "diesel", "current_price": 4.993, "yoy_price": 3.364, "absolute_change": 1.629, "percentage_change": 48.4244946492}, {"date": "2022-08-15", "fuel": "diesel", "current_price": 4.911, "yoy_price": 3.356, "absolute_change": 1.555, "percentage_change": 46.3349225268}, {"date": "2022-08-22", "fuel": "diesel", "current_price": 4.909, "yoy_price": 3.324, "absolute_change": 1.585, "percentage_change": 47.6835138387}, {"date": "2022-08-29", "fuel": "diesel", "current_price": 5.115, "yoy_price": 3.339, "absolute_change": 1.776, "percentage_change": 53.1895777179}, {"date": "2022-09-05", "fuel": "diesel", "current_price": 5.084, "yoy_price": 3.373, "absolute_change": 1.711, "percentage_change": 50.7263563593}, {"date": "2022-09-12", "fuel": "diesel", "current_price": 5.033, "yoy_price": 3.372, "absolute_change": 1.661, "percentage_change": 49.2586002372}, {"date": "2022-09-19", "fuel": "diesel", "current_price": 4.964, "yoy_price": 3.385, "absolute_change": 1.579, "percentage_change": 46.646971935}, {"date": "2022-09-26", "fuel": "diesel", "current_price": 4.889, "yoy_price": 3.406, "absolute_change": 1.483, "percentage_change": 43.5408103347}, {"date": "2022-10-03", "fuel": "diesel", "current_price": 4.836, "yoy_price": 3.477, "absolute_change": 1.359, "percentage_change": 39.0854184642}, {"date": "2022-10-10", "fuel": "diesel", "current_price": 5.224, "yoy_price": 3.586, "absolute_change": 1.638, "percentage_change": 45.6776352482}, {"date": "2022-10-17", "fuel": "diesel", "current_price": 5.339, "yoy_price": 3.671, "absolute_change": 1.668, "percentage_change": 45.4372105693}, {"date": "2022-10-24", "fuel": "diesel", "current_price": 5.341, "yoy_price": 3.713, "absolute_change": 1.628, "percentage_change": 43.8459466738}, {"date": "2022-10-31", "fuel": "diesel", "current_price": 5.317, "yoy_price": 3.727, "absolute_change": 1.59, "percentage_change": 42.6616581701}, {"date": "2022-11-07", "fuel": "diesel", "current_price": 5.333, "yoy_price": 3.73, "absolute_change": 1.603, "percentage_change": 42.9758713137}, {"date": "2022-11-14", "fuel": "diesel", "current_price": 5.313, "yoy_price": 3.734, "absolute_change": 1.579, "percentage_change": 42.2870915908}, {"date": "2022-11-21", "fuel": "diesel", "current_price": 5.233, "yoy_price": 3.724, "absolute_change": 1.509, "percentage_change": 40.5209452202}, {"date": "2022-11-28", "fuel": "diesel", "current_price": 5.141, "yoy_price": 3.72, "absolute_change": 1.421, "percentage_change": 38.1989247312}, {"date": "2022-12-05", "fuel": "diesel", "current_price": 4.967, "yoy_price": 3.674, "absolute_change": 1.293, "percentage_change": 35.1932498639}, {"date": "2022-12-12", "fuel": "diesel", "current_price": 4.754, "yoy_price": 3.649, "absolute_change": 1.105, "percentage_change": 30.2822691148}, {"date": "2022-12-19", "fuel": "diesel", "current_price": 4.596, "yoy_price": 3.626, "absolute_change": 0.97, "percentage_change": 26.751241037}, {"date": "2022-12-26", "fuel": "diesel", "current_price": 4.537, "yoy_price": 3.615, "absolute_change": 0.922, "percentage_change": 25.5048409405}, {"date": "2023-01-02", "fuel": "diesel", "current_price": 4.583, "yoy_price": 3.613, "absolute_change": 0.97, "percentage_change": 26.8474951564}, {"date": "2023-01-09", "fuel": "diesel", "current_price": 4.549, "yoy_price": 3.657, "absolute_change": 0.892, "percentage_change": 24.391577796}, {"date": "2023-01-16", "fuel": "diesel", "current_price": 4.524, "yoy_price": 3.725, "absolute_change": 0.799, "percentage_change": 21.4496644295}, {"date": "2023-01-23", "fuel": "diesel", "current_price": 4.604, "yoy_price": 3.78, "absolute_change": 0.824, "percentage_change": 21.7989417989}, {"date": "2023-01-30", "fuel": "diesel", "current_price": 4.622, "yoy_price": 3.846, "absolute_change": 0.776, "percentage_change": 20.1768070723}, {"date": "2023-02-06", "fuel": "diesel", "current_price": 4.539, "yoy_price": 3.951, "absolute_change": 0.588, "percentage_change": 14.8823082764}, {"date": "2023-02-13", "fuel": "diesel", "current_price": 4.444, "yoy_price": 4.019, "absolute_change": 0.425, "percentage_change": 10.5747698432}, {"date": "2023-02-20", "fuel": "diesel", "current_price": 4.376, "yoy_price": 4.055, "absolute_change": 0.321, "percentage_change": 7.9161528977}, {"date": "2023-02-27", "fuel": "diesel", "current_price": 4.294, "yoy_price": 4.104, "absolute_change": 0.19, "percentage_change": 4.6296296296}, {"date": "2023-03-06", "fuel": "diesel", "current_price": 4.282, "yoy_price": 4.849, "absolute_change": -0.567, "percentage_change": -11.6931326047}, {"date": "2023-03-13", "fuel": "diesel", "current_price": 4.247, "yoy_price": 5.25, "absolute_change": -1.003, "percentage_change": -19.1047619048}, {"date": "2023-03-20", "fuel": "diesel", "current_price": 4.185, "yoy_price": 5.134, "absolute_change": -0.949, "percentage_change": -18.484612388}, {"date": "2023-03-27", "fuel": "diesel", "current_price": 4.128, "yoy_price": 5.185, "absolute_change": -1.057, "percentage_change": -20.3857280617}, {"date": "2023-04-03", "fuel": "diesel", "current_price": 4.105, "yoy_price": 5.144, "absolute_change": -1.039, "percentage_change": -20.1982892691}, {"date": "2023-04-10", "fuel": "diesel", "current_price": 4.098, "yoy_price": 5.073, "absolute_change": -0.975, "percentage_change": -19.2193968066}, {"date": "2023-04-17", "fuel": "diesel", "current_price": 4.116, "yoy_price": 5.101, "absolute_change": -0.985, "percentage_change": -19.3099392276}, {"date": "2023-04-24", "fuel": "diesel", "current_price": 4.077, "yoy_price": 5.16, "absolute_change": -1.083, "percentage_change": -20.988372093}, {"date": "2023-05-01", "fuel": "diesel", "current_price": 4.018, "yoy_price": 5.509, "absolute_change": -1.491, "percentage_change": -27.0648030496}, {"date": "2023-05-08", "fuel": "diesel", "current_price": 3.922, "yoy_price": 5.623, "absolute_change": -1.701, "percentage_change": -30.2507558243}, {"date": "2023-05-15", "fuel": "diesel", "current_price": 3.897, "yoy_price": 5.613, "absolute_change": -1.716, "percentage_change": -30.5718866916}, {"date": "2023-05-22", "fuel": "diesel", "current_price": 3.883, "yoy_price": 5.571, "absolute_change": -1.688, "percentage_change": -30.2997666487}, {"date": "2023-05-29", "fuel": "diesel", "current_price": 3.855, "yoy_price": 5.539, "absolute_change": -1.684, "percentage_change": -30.4025997472}, {"date": "2023-06-05", "fuel": "diesel", "current_price": 3.797, "yoy_price": 5.703, "absolute_change": -1.906, "percentage_change": -33.4210064878}, {"date": "2023-06-12", "fuel": "diesel", "current_price": 3.794, "yoy_price": 5.718, "absolute_change": -1.924, "percentage_change": -33.6481287163}, {"date": "2023-06-19", "fuel": "diesel", "current_price": 3.815, "yoy_price": 5.81, "absolute_change": -1.995, "percentage_change": -34.3373493976}, {"date": "2023-06-26", "fuel": "diesel", "current_price": 3.801, "yoy_price": 5.783, "absolute_change": -1.982, "percentage_change": -34.2728687532}, {"date": "2023-07-03", "fuel": "diesel", "current_price": 3.767, "yoy_price": 5.675, "absolute_change": -1.908, "percentage_change": -33.6211453744}, {"date": "2023-07-10", "fuel": "diesel", "current_price": 3.806, "yoy_price": 5.568, "absolute_change": -1.762, "percentage_change": -31.6451149425}, {"date": "2023-07-17", "fuel": "diesel", "current_price": 3.806, "yoy_price": 5.432, "absolute_change": -1.626, "percentage_change": -29.9337260677}, {"date": "2023-07-24", "fuel": "diesel", "current_price": 3.905, "yoy_price": 5.268, "absolute_change": -1.363, "percentage_change": -25.8731966591}, {"date": "2023-07-31", "fuel": "diesel", "current_price": 4.127, "yoy_price": 5.138, "absolute_change": -1.011, "percentage_change": -19.6769170884}, {"date": "2023-08-07", "fuel": "diesel", "current_price": 4.239, "yoy_price": 4.993, "absolute_change": -0.754, "percentage_change": -15.1011415982}, {"date": "2023-08-14", "fuel": "diesel", "current_price": 4.378, "yoy_price": 4.911, "absolute_change": -0.533, "percentage_change": -10.8531867237}, {"date": "2023-08-21", "fuel": "diesel", "current_price": 4.389, "yoy_price": 4.909, "absolute_change": -0.52, "percentage_change": -10.5927887553}, {"date": "2023-08-28", "fuel": "diesel", "current_price": 4.475, "yoy_price": 5.115, "absolute_change": -0.64, "percentage_change": -12.5122189638}, {"date": "2023-09-04", "fuel": "diesel", "current_price": 4.492, "yoy_price": 5.084, "absolute_change": -0.592, "percentage_change": -11.6443745083}, {"date": "2023-09-11", "fuel": "diesel", "current_price": 4.54, "yoy_price": 5.033, "absolute_change": -0.493, "percentage_change": -9.7953506855}, {"date": "2023-09-18", "fuel": "diesel", "current_price": 4.633, "yoy_price": 4.964, "absolute_change": -0.331, "percentage_change": -6.6680096696}, {"date": "2023-09-25", "fuel": "diesel", "current_price": 4.586, "yoy_price": 4.889, "absolute_change": -0.303, "percentage_change": -6.1975864185}, {"date": "2023-10-02", "fuel": "diesel", "current_price": 4.593, "yoy_price": 4.836, "absolute_change": -0.243, "percentage_change": -5.0248138958}, {"date": "2023-10-09", "fuel": "diesel", "current_price": 4.498, "yoy_price": 5.224, "absolute_change": -0.726, "percentage_change": -13.8973966309}, {"date": "2023-10-16", "fuel": "diesel", "current_price": 4.444, "yoy_price": 5.339, "absolute_change": -0.895, "percentage_change": -16.7634388462}, {"date": "2023-10-23", "fuel": "diesel", "current_price": 4.545, "yoy_price": 5.341, "absolute_change": -0.796, "percentage_change": -14.9035761093}, {"date": "2023-10-30", "fuel": "diesel", "current_price": 4.454, "yoy_price": 5.317, "absolute_change": -0.863, "percentage_change": -16.2309573068}, {"date": "2023-11-06", "fuel": "diesel", "current_price": 4.366, "yoy_price": 5.333, "absolute_change": -0.967, "percentage_change": -18.132383274}, {"date": "2023-11-13", "fuel": "diesel", "current_price": 4.294, "yoy_price": 5.313, "absolute_change": -1.019, "percentage_change": -19.1793713533}, {"date": "2023-11-20", "fuel": "diesel", "current_price": 4.209, "yoy_price": 5.233, "absolute_change": -1.024, "percentage_change": -19.5681253583}, {"date": "2023-11-27", "fuel": "diesel", "current_price": 4.146, "yoy_price": 5.141, "absolute_change": -0.995, "percentage_change": -19.3542112429}, {"date": "2023-12-04", "fuel": "diesel", "current_price": 4.092, "yoy_price": 4.967, "absolute_change": -0.875, "percentage_change": -17.6162673646}, {"date": "2023-12-11", "fuel": "diesel", "current_price": 3.987, "yoy_price": 4.754, "absolute_change": -0.767, "percentage_change": -16.1337820782}, {"date": "2023-12-18", "fuel": "diesel", "current_price": 3.894, "yoy_price": 4.596, "absolute_change": -0.702, "percentage_change": -15.274151436}, {"date": "2023-12-25", "fuel": "diesel", "current_price": 3.914, "yoy_price": 4.537, "absolute_change": -0.623, "percentage_change": -13.7315406656}, {"date": "2024-01-01", "fuel": "diesel", "current_price": 3.876, "yoy_price": 4.583, "absolute_change": -0.707, "percentage_change": -15.4265764783}, {"date": "2024-01-08", "fuel": "diesel", "current_price": 3.828, "yoy_price": 4.549, "absolute_change": -0.721, "percentage_change": -15.8496372829}, {"date": "2024-01-15", "fuel": "diesel", "current_price": 3.863, "yoy_price": 4.524, "absolute_change": -0.661, "percentage_change": -14.6109637489}, {"date": "2024-01-22", "fuel": "diesel", "current_price": 3.838, "yoy_price": 4.604, "absolute_change": -0.766, "percentage_change": -16.6377063423}, {"date": "2024-01-29", "fuel": "diesel", "current_price": 3.867, "yoy_price": 4.622, "absolute_change": -0.755, "percentage_change": -16.3349199481}, {"date": "2024-02-05", "fuel": "diesel", "current_price": 3.899, "yoy_price": 4.539, "absolute_change": -0.64, "percentage_change": -14.1000220313}, {"date": "2024-02-12", "fuel": "diesel", "current_price": 4.109, "yoy_price": 4.444, "absolute_change": -0.335, "percentage_change": -7.5382538254}, {"date": "2024-02-19", "fuel": "diesel", "current_price": 4.109, "yoy_price": 4.376, "absolute_change": -0.267, "percentage_change": -6.1014625229}, {"date": "2024-02-26", "fuel": "diesel", "current_price": 4.058, "yoy_price": 4.294, "absolute_change": -0.236, "percentage_change": -5.4960409874}, {"date": "2024-03-04", "fuel": "diesel", "current_price": 4.022, "yoy_price": 4.282, "absolute_change": -0.26, "percentage_change": -6.0719290051}, {"date": "2024-03-11", "fuel": "diesel", "current_price": 4.004, "yoy_price": 4.247, "absolute_change": -0.243, "percentage_change": -5.7216858959}, {"date": "2024-03-18", "fuel": "diesel", "current_price": 4.028, "yoy_price": 4.185, "absolute_change": -0.157, "percentage_change": -3.7514934289}, {"date": "2024-03-25", "fuel": "diesel", "current_price": 4.034, "yoy_price": 4.128, "absolute_change": -0.094, "percentage_change": -2.2771317829}, {"date": "2024-04-01", "fuel": "diesel", "current_price": 3.996, "yoy_price": 4.105, "absolute_change": -0.109, "percentage_change": -2.6552984166}, {"date": "2024-04-08", "fuel": "diesel", "current_price": 4.061, "yoy_price": 4.098, "absolute_change": -0.037, "percentage_change": -0.9028794534}, {"date": "2024-04-15", "fuel": "diesel", "current_price": 4.015, "yoy_price": 4.116, "absolute_change": -0.101, "percentage_change": -2.4538386783}, {"date": "2024-04-22", "fuel": "diesel", "current_price": 3.992, "yoy_price": 4.077, "absolute_change": -0.085, "percentage_change": -2.0848663233}, {"date": "2024-04-29", "fuel": "diesel", "current_price": 3.947, "yoy_price": 4.018, "absolute_change": -0.071, "percentage_change": -1.7670482827}, {"date": "2024-05-06", "fuel": "diesel", "current_price": 3.894, "yoy_price": 3.922, "absolute_change": -0.028, "percentage_change": -0.7139214686}, {"date": "2024-05-13", "fuel": "diesel", "current_price": 3.848, "yoy_price": 3.897, "absolute_change": -0.049, "percentage_change": -1.2573774698}, {"date": "2024-05-20", "fuel": "diesel", "current_price": 3.789, "yoy_price": 3.883, "absolute_change": -0.094, "percentage_change": -2.4208086531}, {"date": "2024-05-27", "fuel": "diesel", "current_price": 3.758, "yoy_price": 3.855, "absolute_change": -0.097, "percentage_change": -2.5162127108}, {"date": "2024-06-03", "fuel": "diesel", "current_price": 3.726, "yoy_price": 3.797, "absolute_change": -0.071, "percentage_change": -1.8698972873}, {"date": "2024-06-10", "fuel": "diesel", "current_price": 3.658, "yoy_price": 3.794, "absolute_change": -0.136, "percentage_change": -3.5846072746}, {"date": "2024-06-17", "fuel": "diesel", "current_price": 3.735, "yoy_price": 3.815, "absolute_change": -0.08, "percentage_change": -2.0969855832}, {"date": "2024-06-24", "fuel": "diesel", "current_price": 3.769, "yoy_price": 3.801, "absolute_change": -0.032, "percentage_change": -0.8418837148}, {"date": "2024-07-01", "fuel": "diesel", "current_price": 3.813, "yoy_price": 3.767, "absolute_change": 0.046, "percentage_change": 1.2211308734}, {"date": "2024-07-08", "fuel": "diesel", "current_price": 3.865, "yoy_price": 3.806, "absolute_change": 0.059, "percentage_change": 1.5501839201}, {"date": "2024-07-15", "fuel": "diesel", "current_price": 3.826, "yoy_price": 3.806, "absolute_change": 0.02, "percentage_change": 0.5254860746}, {"date": "2024-07-22", "fuel": "diesel", "current_price": 3.779, "yoy_price": 3.905, "absolute_change": -0.126, "percentage_change": -3.2266325224}, {"date": "2024-07-29", "fuel": "diesel", "current_price": 3.768, "yoy_price": 4.127, "absolute_change": -0.359, "percentage_change": -8.6988126969}, {"date": "2024-08-05", "fuel": "diesel", "current_price": 3.755, "yoy_price": 4.239, "absolute_change": -0.484, "percentage_change": -11.417787214}, {"date": "2024-08-12", "fuel": "diesel", "current_price": 3.704, "yoy_price": 4.378, "absolute_change": -0.674, "percentage_change": -15.3951576062}, {"date": "2024-08-19", "fuel": "diesel", "current_price": 3.688, "yoy_price": 4.389, "absolute_change": -0.701, "percentage_change": -15.9717475507}, {"date": "2024-08-26", "fuel": "diesel", "current_price": 3.651, "yoy_price": 4.475, "absolute_change": -0.824, "percentage_change": -18.4134078212}, {"date": "2024-09-02", "fuel": "diesel", "current_price": 3.625, "yoy_price": 4.492, "absolute_change": -0.867, "percentage_change": -19.3009795191}, {"date": "2024-09-09", "fuel": "diesel", "current_price": 3.555, "yoy_price": 4.54, "absolute_change": -0.985, "percentage_change": -21.6960352423}, {"date": "2024-09-16", "fuel": "diesel", "current_price": 3.526, "yoy_price": 4.633, "absolute_change": -1.107, "percentage_change": -23.8938053097}, {"date": "2024-09-23", "fuel": "diesel", "current_price": 3.539, "yoy_price": 4.586, "absolute_change": -1.047, "percentage_change": -22.830353249}, {"date": "2024-09-30", "fuel": "diesel", "current_price": 3.544, "yoy_price": 4.593, "absolute_change": -1.049, "percentage_change": -22.8391029828}, {"date": "2024-10-07", "fuel": "diesel", "current_price": 3.584, "yoy_price": 4.498, "absolute_change": -0.914, "percentage_change": -20.3201422855}, {"date": "2024-10-14", "fuel": "diesel", "current_price": 3.631, "yoy_price": 4.444, "absolute_change": -0.813, "percentage_change": -18.2943294329}, {"date": "2024-10-21", "fuel": "diesel", "current_price": 3.553, "yoy_price": 4.545, "absolute_change": -0.992, "percentage_change": -21.8261826183}, {"date": "2024-10-28", "fuel": "diesel", "current_price": 3.573, "yoy_price": 4.454, "absolute_change": -0.881, "percentage_change": -19.7799730579}, {"date": "2024-11-04", "fuel": "diesel", "current_price": 3.536, "yoy_price": 4.366, "absolute_change": -0.83, "percentage_change": -19.0105359597}, {"date": "2024-11-11", "fuel": "diesel", "current_price": 3.521, "yoy_price": 4.294, "absolute_change": -0.773, "percentage_change": -18.0018630647}, {"date": "2024-11-18", "fuel": "diesel", "current_price": 3.491, "yoy_price": 4.209, "absolute_change": -0.718, "percentage_change": -17.0586837729}, {"date": "2024-11-25", "fuel": "diesel", "current_price": 3.539, "yoy_price": 4.146, "absolute_change": -0.607, "percentage_change": -14.6406174626}, {"date": "2024-12-02", "fuel": "diesel", "current_price": 3.54, "yoy_price": 4.092, "absolute_change": -0.552, "percentage_change": -13.4897360704}, {"date": "2024-12-09", "fuel": "diesel", "current_price": 3.458, "yoy_price": 3.987, "absolute_change": -0.529, "percentage_change": -13.2681213945}, {"date": "2024-12-16", "fuel": "diesel", "current_price": 3.494, "yoy_price": 3.894, "absolute_change": -0.4, "percentage_change": -10.272213662}, {"date": "2024-12-23", "fuel": "diesel", "current_price": 3.476, "yoy_price": 3.914, "absolute_change": -0.438, "percentage_change": -11.1905978539}, {"date": "2024-12-30", "fuel": "diesel", "current_price": 3.503, "yoy_price": 3.876, "absolute_change": -0.373, "percentage_change": -9.6233230134}, {"date": "2025-01-06", "fuel": "diesel", "current_price": 3.561, "yoy_price": 3.828, "absolute_change": -0.267, "percentage_change": -6.9749216301}, {"date": "2025-01-13", "fuel": "diesel", "current_price": 3.602, "yoy_price": 3.863, "absolute_change": -0.261, "percentage_change": -6.7564069376}, {"date": "2025-01-20", "fuel": "diesel", "current_price": 3.715, "yoy_price": 3.838, "absolute_change": -0.123, "percentage_change": -3.2047941636}, {"date": "2025-01-27", "fuel": "diesel", "current_price": 3.659, "yoy_price": 3.867, "absolute_change": -0.208, "percentage_change": -5.3788466512}, {"date": "2025-02-03", "fuel": "diesel", "current_price": 3.66, "yoy_price": 3.899, "absolute_change": -0.239, "percentage_change": -6.1297768659}, {"date": "2025-02-10", "fuel": "diesel", "current_price": 3.665, "yoy_price": 4.109, "absolute_change": -0.444, "percentage_change": -10.8055487953}, {"date": "2025-02-17", "fuel": "diesel", "current_price": 3.677, "yoy_price": 4.109, "absolute_change": -0.432, "percentage_change": -10.513506936}, {"date": "2025-02-24", "fuel": "diesel", "current_price": 3.697, "yoy_price": 4.058, "absolute_change": -0.361, "percentage_change": -8.8960078857}, {"date": "2025-03-03", "fuel": "diesel", "current_price": 3.635, "yoy_price": 4.022, "absolute_change": -0.387, "percentage_change": -9.6220785679}, {"date": "2025-03-10", "fuel": "diesel", "current_price": 3.582, "yoy_price": 4.004, "absolute_change": -0.422, "percentage_change": -10.5394605395}, {"date": "2025-03-17", "fuel": "diesel", "current_price": 3.549, "yoy_price": 4.028, "absolute_change": -0.479, "percentage_change": -11.8917576961}, {"date": "2025-03-24", "fuel": "diesel", "current_price": 3.567, "yoy_price": 4.034, "absolute_change": -0.467, "percentage_change": -11.5765989093}, {"date": "2025-03-31", "fuel": "diesel", "current_price": 3.592, "yoy_price": 3.996, "absolute_change": -0.404, "percentage_change": -10.1101101101}, {"date": "2025-04-07", "fuel": "diesel", "current_price": 3.639, "yoy_price": 4.061, "absolute_change": -0.422, "percentage_change": -10.39152918}, {"date": "2025-04-14", "fuel": "diesel", "current_price": 3.579, "yoy_price": 4.015, "absolute_change": -0.436, "percentage_change": -10.8592777086}, {"date": "2025-04-21", "fuel": "diesel", "current_price": 3.534, "yoy_price": 3.992, "absolute_change": -0.458, "percentage_change": -11.4729458918}, {"date": "2025-04-28", "fuel": "diesel", "current_price": 3.514, "yoy_price": 3.947, "absolute_change": -0.433, "percentage_change": -10.9703572333}, {"date": "2025-05-05", "fuel": "diesel", "current_price": 3.497, "yoy_price": 3.894, "absolute_change": -0.397, "percentage_change": -10.1951720596}, {"date": "2025-05-12", "fuel": "diesel", "current_price": 3.476, "yoy_price": 3.848, "absolute_change": -0.372, "percentage_change": -9.6673596674}, {"date": "2025-05-19", "fuel": "diesel", "current_price": 3.536, "yoy_price": 3.789, "absolute_change": -0.253, "percentage_change": -6.6772235418}, {"date": "2025-05-26", "fuel": "diesel", "current_price": 3.487, "yoy_price": 3.758, "absolute_change": -0.271, "percentage_change": -7.2112825971}, {"date": "2025-06-02", "fuel": "diesel", "current_price": 3.451, "yoy_price": 3.726, "absolute_change": -0.275, "percentage_change": -7.3805689748}, {"date": "2025-06-09", "fuel": "diesel", "current_price": 3.471, "yoy_price": 3.658, "absolute_change": -0.187, "percentage_change": -5.1120831055}, {"date": "2025-06-16", "fuel": "diesel", "current_price": 3.571, "yoy_price": 3.735, "absolute_change": -0.164, "percentage_change": -4.390896921}, {"date": "2025-06-23", "fuel": "diesel", "current_price": 3.775, "yoy_price": 3.769, "absolute_change": 0.006, "percentage_change": 0.15919342}, {"date": "1991-09-30", "fuel": "gasoline", "current_price": 1.092, "yoy_price": 1.191, "absolute_change": -0.099, "percentage_change": -8.3123425693}, {"date": "1991-10-07", "fuel": "gasoline", "current_price": 1.089, "yoy_price": 1.245, "absolute_change": -0.156, "percentage_change": -12.5301204819}, {"date": "1991-10-14", "fuel": "gasoline", "current_price": 1.084, "yoy_price": 1.242, "absolute_change": -0.158, "percentage_change": -12.7214170692}, {"date": "1991-10-21", "fuel": "gasoline", "current_price": 1.088, "yoy_price": 1.252, "absolute_change": -0.164, "percentage_change": -13.0990415335}, {"date": "1991-10-28", "fuel": "gasoline", "current_price": 1.091, "yoy_price": 1.266, "absolute_change": -0.175, "percentage_change": -13.8230647709}, {"date": "1991-11-04", "fuel": "gasoline", "current_price": 1.091, "yoy_price": 1.272, "absolute_change": -0.181, "percentage_change": -14.2295597484}, {"date": "1991-11-11", "fuel": "gasoline", "current_price": 1.102, "yoy_price": 1.321, "absolute_change": -0.219, "percentage_change": -16.578349735}, {"date": "1991-11-18", "fuel": "gasoline", "current_price": 1.104, "yoy_price": 1.333, "absolute_change": -0.229, "percentage_change": -17.1792948237}, {"date": "1991-11-25", "fuel": "gasoline", "current_price": 1.099, "yoy_price": 1.339, "absolute_change": -0.24, "percentage_change": -17.9238237491}, {"date": "1991-12-02", "fuel": "gasoline", "current_price": 1.099, "yoy_price": 1.345, "absolute_change": -0.246, "percentage_change": -18.2899628253}, {"date": "1991-12-09", "fuel": "gasoline", "current_price": 1.091, "yoy_price": 1.339, "absolute_change": -0.248, "percentage_change": -18.5212845407}, {"date": "1991-12-16", "fuel": "gasoline", "current_price": 1.075, "yoy_price": 1.334, "absolute_change": -0.259, "percentage_change": -19.4152923538}, {"date": "1991-12-23", "fuel": "gasoline", "current_price": 1.063, "yoy_price": 1.328, "absolute_change": -0.265, "percentage_change": -19.9548192771}, {"date": "1991-12-30", "fuel": "gasoline", "current_price": 1.053, "yoy_price": 1.323, "absolute_change": -0.27, "percentage_change": -20.4081632653}, {"date": "1992-01-06", "fuel": "gasoline", "current_price": 1.042, "yoy_price": 1.311, "absolute_change": -0.269, "percentage_change": -20.5186880244}, {"date": "1992-01-13", "fuel": "gasoline", "current_price": 1.026, "yoy_price": 1.341, "absolute_change": -0.315, "percentage_change": -23.4899328859}, {"date": "1992-01-20", "fuel": "gasoline", "current_price": 1.014, "yoy_price": 1.192, "absolute_change": -0.178, "percentage_change": -14.932885906}, {"date": "1992-01-27", "fuel": "gasoline", "current_price": 1.006, "yoy_price": 1.168, "absolute_change": -0.162, "percentage_change": -13.8698630137}, {"date": "1992-02-03", "fuel": "gasoline", "current_price": 0.995, "yoy_price": 1.139, "absolute_change": -0.144, "percentage_change": -12.6426690079}, {"date": "1992-02-10", "fuel": "gasoline", "current_price": 1.004, "yoy_price": 1.106, "absolute_change": -0.102, "percentage_change": -9.2224231465}, {"date": "1992-02-17", "fuel": "gasoline", "current_price": 1.011, "yoy_price": 1.078, "absolute_change": -0.067, "percentage_change": -6.2152133581}, {"date": "1992-02-24", "fuel": "gasoline", "current_price": 1.014, "yoy_price": 1.054, "absolute_change": -0.04, "percentage_change": -3.7950664137}, {"date": "1992-03-02", "fuel": "gasoline", "current_price": 1.012, "yoy_price": 1.025, "absolute_change": -0.013, "percentage_change": -1.2682926829}, {"date": "1992-03-09", "fuel": "gasoline", "current_price": 1.013, "yoy_price": 1.045, "absolute_change": -0.032, "percentage_change": -3.0622009569}, {"date": "1992-03-16", "fuel": "gasoline", "current_price": 1.01, "yoy_price": 1.043, "absolute_change": -0.033, "percentage_change": -3.1639501438}, {"date": "1992-03-23", "fuel": "gasoline", "current_price": 1.015, "yoy_price": 1.047, "absolute_change": -0.032, "percentage_change": -3.0563514804}, {"date": "1992-03-30", "fuel": "gasoline", "current_price": 1.013, "yoy_price": 1.052, "absolute_change": -0.039, "percentage_change": -3.7072243346}, {"date": "1992-04-06", "fuel": "gasoline", "current_price": 1.026, "yoy_price": 1.066, "absolute_change": -0.04, "percentage_change": -3.7523452158}, {"date": "1992-04-13", "fuel": "gasoline", "current_price": 1.051, "yoy_price": 1.069, "absolute_change": -0.018, "percentage_change": -1.6838166511}, {"date": "1992-04-20", "fuel": "gasoline", "current_price": 1.058, "yoy_price": 1.09, "absolute_change": -0.032, "percentage_change": -2.9357798165}, {"date": "1992-04-27", "fuel": "gasoline", "current_price": 1.072, "yoy_price": 1.104, "absolute_change": -0.032, "percentage_change": -2.8985507246}, {"date": "1992-05-04", "fuel": "gasoline", "current_price": 1.089, "yoy_price": 1.113, "absolute_change": -0.024, "percentage_change": -2.1563342318}, {"date": "1992-05-11", "fuel": "gasoline", "current_price": 1.102, "yoy_price": 1.121, "absolute_change": -0.019, "percentage_change": -1.6949152542}, {"date": "1992-05-18", "fuel": "gasoline", "current_price": 1.118, "yoy_price": 1.129, "absolute_change": -0.011, "percentage_change": -0.9743135518}, {"date": "1992-05-25", "fuel": "gasoline", "current_price": 1.12, "yoy_price": 1.14, "absolute_change": -0.02, "percentage_change": -1.7543859649}, {"date": "1992-06-01", "fuel": "gasoline", "current_price": 1.128, "yoy_price": 1.138, "absolute_change": -0.01, "percentage_change": -0.8787346221}, {"date": "1992-06-08", "fuel": "gasoline", "current_price": 1.143, "yoy_price": 1.135, "absolute_change": 0.008, "percentage_change": 0.704845815}, {"date": "1992-06-15", "fuel": "gasoline", "current_price": 1.151, "yoy_price": 1.126, "absolute_change": 0.025, "percentage_change": 2.2202486679}, {"date": "1992-06-22", "fuel": "gasoline", "current_price": 1.153, "yoy_price": 1.114, "absolute_change": 0.039, "percentage_change": 3.5008976661}, {"date": "1992-06-29", "fuel": "gasoline", "current_price": 1.149, "yoy_price": 1.104, "absolute_change": 0.045, "percentage_change": 4.0760869565}, {"date": "1992-07-06", "fuel": "gasoline", "current_price": 1.147, "yoy_price": 1.098, "absolute_change": 0.049, "percentage_change": 4.4626593807}, {"date": "1992-07-13", "fuel": "gasoline", "current_price": 1.139, "yoy_price": 1.094, "absolute_change": 0.045, "percentage_change": 4.113345521}, {"date": "1992-07-20", "fuel": "gasoline", "current_price": 1.132, "yoy_price": 1.091, "absolute_change": 0.041, "percentage_change": 3.758020165}, {"date": "1992-07-27", "fuel": "gasoline", "current_price": 1.128, "yoy_price": 1.091, "absolute_change": 0.037, "percentage_change": 3.3913840513}, {"date": "1992-08-03", "fuel": "gasoline", "current_price": 1.126, "yoy_price": 1.099, "absolute_change": 0.027, "percentage_change": 2.4567788899}, {"date": "1992-08-10", "fuel": "gasoline", "current_price": 1.123, "yoy_price": 1.112, "absolute_change": 0.011, "percentage_change": 0.9892086331}, {"date": "1992-08-17", "fuel": "gasoline", "current_price": 1.116, "yoy_price": 1.124, "absolute_change": -0.008, "percentage_change": -0.7117437722}, {"date": "1992-08-24", "fuel": "gasoline", "current_price": 1.123, "yoy_price": 1.124, "absolute_change": -0.001, "percentage_change": -0.0889679715}, {"date": "1992-08-31", "fuel": "gasoline", "current_price": 1.121, "yoy_price": 1.127, "absolute_change": -0.006, "percentage_change": -0.5323868678}, {"date": "1992-09-07", "fuel": "gasoline", "current_price": 1.121, "yoy_price": 1.12, "absolute_change": 0.001, "percentage_change": 0.0892857143}, {"date": "1992-09-14", "fuel": "gasoline", "current_price": 1.124, "yoy_price": 1.11, "absolute_change": 0.014, "percentage_change": 1.2612612613}, {"date": "1992-09-21", "fuel": "gasoline", "current_price": 1.123, "yoy_price": 1.097, "absolute_change": 0.026, "percentage_change": 2.3701002735}, {"date": "1992-09-28", "fuel": "gasoline", "current_price": 1.118, "yoy_price": 1.092, "absolute_change": 0.026, "percentage_change": 2.380952381}, {"date": "1992-10-05", "fuel": "gasoline", "current_price": 1.115, "yoy_price": 1.089, "absolute_change": 0.026, "percentage_change": 2.3875114784}, {"date": "1992-10-12", "fuel": "gasoline", "current_price": 1.115, "yoy_price": 1.084, "absolute_change": 0.031, "percentage_change": 2.8597785978}, {"date": "1992-10-19", "fuel": "gasoline", "current_price": 1.113, "yoy_price": 1.088, "absolute_change": 0.025, "percentage_change": 2.2977941176}, {"date": "1992-10-26", "fuel": "gasoline", "current_price": 1.113, "yoy_price": 1.091, "absolute_change": 0.022, "percentage_change": 2.0164986251}, {"date": "1992-11-02", "fuel": "gasoline", "current_price": 1.12, "yoy_price": 1.091, "absolute_change": 0.029, "percentage_change": 2.658111824}, {"date": "1992-11-09", "fuel": "gasoline", "current_price": 1.12, "yoy_price": 1.102, "absolute_change": 0.018, "percentage_change": 1.6333938294}, {"date": "1992-11-16", "fuel": "gasoline", "current_price": 1.112, "yoy_price": 1.104, "absolute_change": 0.008, "percentage_change": 0.7246376812}, {"date": "1992-11-23", "fuel": "gasoline", "current_price": 1.106, "yoy_price": 1.099, "absolute_change": 0.007, "percentage_change": 0.6369426752}, {"date": "1992-11-30", "fuel": "gasoline", "current_price": 1.098, "yoy_price": 1.099, "absolute_change": -0.001, "percentage_change": -0.0909918107}, {"date": "1992-12-07", "fuel": "gasoline", "current_price": 1.089, "yoy_price": 1.091, "absolute_change": -0.002, "percentage_change": -0.1833180568}, {"date": "1992-12-14", "fuel": "gasoline", "current_price": 1.078, "yoy_price": 1.075, "absolute_change": 0.003, "percentage_change": 0.2790697674}, {"date": "1992-12-21", "fuel": "gasoline", "current_price": 1.074, "yoy_price": 1.063, "absolute_change": 0.011, "percentage_change": 1.0348071496}, {"date": "1992-12-28", "fuel": "gasoline", "current_price": 1.069, "yoy_price": 1.053, "absolute_change": 0.016, "percentage_change": 1.5194681861}, {"date": "1993-01-04", "fuel": "gasoline", "current_price": 1.065, "yoy_price": 1.042, "absolute_change": 0.023, "percentage_change": 2.207293666}, {"date": "1993-01-11", "fuel": "gasoline", "current_price": 1.066, "yoy_price": 1.026, "absolute_change": 0.04, "percentage_change": 3.8986354776}, {"date": "1993-01-18", "fuel": "gasoline", "current_price": 1.061, "yoy_price": 1.014, "absolute_change": 0.047, "percentage_change": 4.6351084813}, {"date": "1993-01-25", "fuel": "gasoline", "current_price": 1.055, "yoy_price": 1.006, "absolute_change": 0.049, "percentage_change": 4.8707753479}, {"date": "1993-02-01", "fuel": "gasoline", "current_price": 1.055, "yoy_price": 0.995, "absolute_change": 0.06, "percentage_change": 6.0301507538}, {"date": "1993-02-08", "fuel": "gasoline", "current_price": 1.062, "yoy_price": 1.004, "absolute_change": 0.058, "percentage_change": 5.7768924303}, {"date": "1993-02-15", "fuel": "gasoline", "current_price": 1.053, "yoy_price": 1.011, "absolute_change": 0.042, "percentage_change": 4.1543026706}, {"date": "1993-02-22", "fuel": "gasoline", "current_price": 1.047, "yoy_price": 1.014, "absolute_change": 0.033, "percentage_change": 3.2544378698}, {"date": "1993-03-01", "fuel": "gasoline", "current_price": 1.042, "yoy_price": 1.012, "absolute_change": 0.03, "percentage_change": 2.9644268775}, {"date": "1993-03-08", "fuel": "gasoline", "current_price": 1.048, "yoy_price": 1.013, "absolute_change": 0.035, "percentage_change": 3.4550839092}, {"date": "1993-03-15", "fuel": "gasoline", "current_price": 1.058, "yoy_price": 1.01, "absolute_change": 0.048, "percentage_change": 4.7524752475}, {"date": "1993-03-22", "fuel": "gasoline", "current_price": 1.056, "yoy_price": 1.015, "absolute_change": 0.041, "percentage_change": 4.039408867}, {"date": "1993-03-29", "fuel": "gasoline", "current_price": 1.057, "yoy_price": 1.013, "absolute_change": 0.044, "percentage_change": 4.3435340573}, {"date": "1993-04-05", "fuel": "gasoline", "current_price": 1.068, "yoy_price": 1.026, "absolute_change": 0.042, "percentage_change": 4.0935672515}, {"date": "1993-04-12", "fuel": "gasoline", "current_price": 1.079, "yoy_price": 1.051, "absolute_change": 0.028, "percentage_change": 2.6641294006}, {"date": "1993-04-19", "fuel": "gasoline", "current_price": 1.079, "yoy_price": 1.058, "absolute_change": 0.021, "percentage_change": 1.9848771267}, {"date": "1993-04-26", "fuel": "gasoline", "current_price": 1.086, "yoy_price": 1.072, "absolute_change": 0.014, "percentage_change": 1.3059701493}, {"date": "1993-05-03", "fuel": "gasoline", "current_price": 1.086, "yoy_price": 1.089, "absolute_change": -0.003, "percentage_change": -0.2754820937}, {"date": "1993-05-10", "fuel": "gasoline", "current_price": 1.097, "yoy_price": 1.102, "absolute_change": -0.005, "percentage_change": -0.4537205082}, {"date": "1993-05-17", "fuel": "gasoline", "current_price": 1.106, "yoy_price": 1.118, "absolute_change": -0.012, "percentage_change": -1.0733452594}, {"date": "1993-05-24", "fuel": "gasoline", "current_price": 1.106, "yoy_price": 1.12, "absolute_change": -0.014, "percentage_change": -1.25}, {"date": "1993-05-31", "fuel": "gasoline", "current_price": 1.107, "yoy_price": 1.128, "absolute_change": -0.021, "percentage_change": -1.8617021277}, {"date": "1993-06-07", "fuel": "gasoline", "current_price": 1.104, "yoy_price": 1.143, "absolute_change": -0.039, "percentage_change": -3.4120734908}, {"date": "1993-06-14", "fuel": "gasoline", "current_price": 1.101, "yoy_price": 1.151, "absolute_change": -0.05, "percentage_change": -4.3440486533}, {"date": "1993-06-21", "fuel": "gasoline", "current_price": 1.095, "yoy_price": 1.153, "absolute_change": -0.058, "percentage_change": -5.0303555941}, {"date": "1993-06-28", "fuel": "gasoline", "current_price": 1.089, "yoy_price": 1.149, "absolute_change": -0.06, "percentage_change": -5.2219321149}, {"date": "1993-07-05", "fuel": "gasoline", "current_price": 1.086, "yoy_price": 1.147, "absolute_change": -0.061, "percentage_change": -5.3182214473}, {"date": "1993-07-12", "fuel": "gasoline", "current_price": 1.081, "yoy_price": 1.139, "absolute_change": -0.058, "percentage_change": -5.0921861282}, {"date": "1993-07-19", "fuel": "gasoline", "current_price": 1.075, "yoy_price": 1.132, "absolute_change": -0.057, "percentage_change": -5.035335689}, {"date": "1993-07-26", "fuel": "gasoline", "current_price": 1.069, "yoy_price": 1.128, "absolute_change": -0.059, "percentage_change": -5.2304964539}, {"date": "1993-08-02", "fuel": "gasoline", "current_price": 1.062, "yoy_price": 1.126, "absolute_change": -0.064, "percentage_change": -5.6838365897}, {"date": "1993-08-09", "fuel": "gasoline", "current_price": 1.06, "yoy_price": 1.123, "absolute_change": -0.063, "percentage_change": -5.6099732858}, {"date": "1993-08-16", "fuel": "gasoline", "current_price": 1.059, "yoy_price": 1.116, "absolute_change": -0.057, "percentage_change": -5.1075268817}, {"date": "1993-08-23", "fuel": "gasoline", "current_price": 1.065, "yoy_price": 1.123, "absolute_change": -0.058, "percentage_change": -5.1647373108}, {"date": "1993-08-30", "fuel": "gasoline", "current_price": 1.062, "yoy_price": 1.121, "absolute_change": -0.059, "percentage_change": -5.2631578947}, {"date": "1993-09-06", "fuel": "gasoline", "current_price": 1.055, "yoy_price": 1.121, "absolute_change": -0.066, "percentage_change": -5.8876003568}, {"date": "1993-09-13", "fuel": "gasoline", "current_price": 1.051, "yoy_price": 1.124, "absolute_change": -0.073, "percentage_change": -6.4946619217}, {"date": "1993-09-20", "fuel": "gasoline", "current_price": 1.045, "yoy_price": 1.123, "absolute_change": -0.078, "percentage_change": -6.945681211}, {"date": "1993-09-27", "fuel": "gasoline", "current_price": 1.047, "yoy_price": 1.118, "absolute_change": -0.071, "percentage_change": -6.3506261181}, {"date": "1993-10-04", "fuel": "gasoline", "current_price": 1.092, "yoy_price": 1.115, "absolute_change": -0.023, "percentage_change": -2.0627802691}, {"date": "1993-10-11", "fuel": "gasoline", "current_price": 1.09, "yoy_price": 1.115, "absolute_change": -0.025, "percentage_change": -2.2421524664}, {"date": "1993-10-18", "fuel": "gasoline", "current_price": 1.093, "yoy_price": 1.113, "absolute_change": -0.02, "percentage_change": -1.7969451932}, {"date": "1993-10-25", "fuel": "gasoline", "current_price": 1.092, "yoy_price": 1.113, "absolute_change": -0.021, "percentage_change": -1.8867924528}, {"date": "1993-11-01", "fuel": "gasoline", "current_price": 1.084, "yoy_price": 1.12, "absolute_change": -0.036, "percentage_change": -3.2142857143}, {"date": "1993-11-08", "fuel": "gasoline", "current_price": 1.075, "yoy_price": 1.12, "absolute_change": -0.045, "percentage_change": -4.0178571429}, {"date": "1993-11-15", "fuel": "gasoline", "current_price": 1.064, "yoy_price": 1.112, "absolute_change": -0.048, "percentage_change": -4.3165467626}, {"date": "1993-11-22", "fuel": "gasoline", "current_price": 1.058, "yoy_price": 1.106, "absolute_change": -0.048, "percentage_change": -4.3399638336}, {"date": "1993-11-29", "fuel": "gasoline", "current_price": 1.051, "yoy_price": 1.098, "absolute_change": -0.047, "percentage_change": -4.2805100182}, {"date": "1993-12-06", "fuel": "gasoline", "current_price": 1.036, "yoy_price": 1.089, "absolute_change": -0.053, "percentage_change": -4.8668503214}, {"date": "1993-12-13", "fuel": "gasoline", "current_price": 1.018, "yoy_price": 1.078, "absolute_change": -0.06, "percentage_change": -5.5658627087}, {"date": "1993-12-20", "fuel": "gasoline", "current_price": 1.003, "yoy_price": 1.074, "absolute_change": -0.071, "percentage_change": -6.6108007449}, {"date": "1993-12-27", "fuel": "gasoline", "current_price": 0.999, "yoy_price": 1.069, "absolute_change": -0.07, "percentage_change": -6.5481758653}, {"date": "1994-01-03", "fuel": "gasoline", "current_price": 0.992, "yoy_price": 1.065, "absolute_change": -0.073, "percentage_change": -6.8544600939}, {"date": "1994-01-10", "fuel": "gasoline", "current_price": 0.995, "yoy_price": 1.066, "absolute_change": -0.071, "percentage_change": -6.660412758}, {"date": "1994-01-17", "fuel": "gasoline", "current_price": 1.001, "yoy_price": 1.061, "absolute_change": -0.06, "percentage_change": -5.6550424128}, {"date": "1994-01-24", "fuel": "gasoline", "current_price": 0.999, "yoy_price": 1.055, "absolute_change": -0.056, "percentage_change": -5.308056872}, {"date": "1994-01-31", "fuel": "gasoline", "current_price": 1.005, "yoy_price": 1.055, "absolute_change": -0.05, "percentage_change": -4.7393364929}, {"date": "1994-02-07", "fuel": "gasoline", "current_price": 1.007, "yoy_price": 1.062, "absolute_change": -0.055, "percentage_change": -5.1789077213}, {"date": "1994-02-14", "fuel": "gasoline", "current_price": 1.016, "yoy_price": 1.053, "absolute_change": -0.037, "percentage_change": -3.5137701804}, {"date": "1994-02-21", "fuel": "gasoline", "current_price": 1.009, "yoy_price": 1.047, "absolute_change": -0.038, "percentage_change": -3.629417383}, {"date": "1994-02-28", "fuel": "gasoline", "current_price": 1.004, "yoy_price": 1.042, "absolute_change": -0.038, "percentage_change": -3.6468330134}, {"date": "1994-03-07", "fuel": "gasoline", "current_price": 1.007, "yoy_price": 1.048, "absolute_change": -0.041, "percentage_change": -3.9122137405}, {"date": "1994-03-14", "fuel": "gasoline", "current_price": 1.005, "yoy_price": 1.058, "absolute_change": -0.053, "percentage_change": -5.0094517958}, {"date": "1994-03-21", "fuel": "gasoline", "current_price": 1.007, "yoy_price": 1.056, "absolute_change": -0.049, "percentage_change": -4.6401515152}, {"date": "1994-03-28", "fuel": "gasoline", "current_price": 1.012, "yoy_price": 1.057, "absolute_change": -0.045, "percentage_change": -4.2573320719}, {"date": "1994-04-04", "fuel": "gasoline", "current_price": 1.011, "yoy_price": 1.068, "absolute_change": -0.057, "percentage_change": -5.3370786517}, {"date": "1994-04-11", "fuel": "gasoline", "current_price": 1.028, "yoy_price": 1.079, "absolute_change": -0.051, "percentage_change": -4.7265987025}, {"date": "1994-04-18", "fuel": "gasoline", "current_price": 1.033, "yoy_price": 1.079, "absolute_change": -0.046, "percentage_change": -4.2632066728}, {"date": "1994-04-25", "fuel": "gasoline", "current_price": 1.037, "yoy_price": 1.086, "absolute_change": -0.049, "percentage_change": -4.5119705341}, {"date": "1994-05-02", "fuel": "gasoline", "current_price": 1.04, "yoy_price": 1.086, "absolute_change": -0.046, "percentage_change": -4.2357274401}, {"date": "1994-05-09", "fuel": "gasoline", "current_price": 1.045, "yoy_price": 1.097, "absolute_change": -0.052, "percentage_change": -4.7402005469}, {"date": "1994-05-16", "fuel": "gasoline", "current_price": 1.046, "yoy_price": 1.106, "absolute_change": -0.06, "percentage_change": -5.424954792}, {"date": "1994-05-23", "fuel": "gasoline", "current_price": 1.05, "yoy_price": 1.106, "absolute_change": -0.056, "percentage_change": -5.0632911392}, {"date": "1994-05-30", "fuel": "gasoline", "current_price": 1.056, "yoy_price": 1.107, "absolute_change": -0.051, "percentage_change": -4.6070460705}, {"date": "1994-06-06", "fuel": "gasoline", "current_price": 1.065, "yoy_price": 1.104, "absolute_change": -0.039, "percentage_change": -3.5326086957}, {"date": "1994-06-13", "fuel": "gasoline", "current_price": 1.073, "yoy_price": 1.101, "absolute_change": -0.028, "percentage_change": -2.5431425976}, {"date": "1994-06-20", "fuel": "gasoline", "current_price": 1.079, "yoy_price": 1.095, "absolute_change": -0.016, "percentage_change": -1.4611872146}, {"date": "1994-06-27", "fuel": "gasoline", "current_price": 1.095, "yoy_price": 1.089, "absolute_change": 0.006, "percentage_change": 0.5509641873}, {"date": "1994-07-04", "fuel": "gasoline", "current_price": 1.097, "yoy_price": 1.086, "absolute_change": 0.011, "percentage_change": 1.0128913444}, {"date": "1994-07-11", "fuel": "gasoline", "current_price": 1.103, "yoy_price": 1.081, "absolute_change": 0.022, "percentage_change": 2.0351526364}, {"date": "1994-07-18", "fuel": "gasoline", "current_price": 1.109, "yoy_price": 1.075, "absolute_change": 0.034, "percentage_change": 3.1627906977}, {"date": "1994-07-25", "fuel": "gasoline", "current_price": 1.114, "yoy_price": 1.069, "absolute_change": 0.045, "percentage_change": 4.2095416277}, {"date": "1994-08-01", "fuel": "gasoline", "current_price": 1.13, "yoy_price": 1.062, "absolute_change": 0.068, "percentage_change": 6.4030131827}, {"date": "1994-08-08", "fuel": "gasoline", "current_price": 1.157, "yoy_price": 1.06, "absolute_change": 0.097, "percentage_change": 9.1509433962}, {"date": "1994-08-15", "fuel": "gasoline", "current_price": 1.161, "yoy_price": 1.059, "absolute_change": 0.102, "percentage_change": 9.6317280453}, {"date": "1994-08-22", "fuel": "gasoline", "current_price": 1.165, "yoy_price": 1.065, "absolute_change": 0.1, "percentage_change": 9.3896713615}, {"date": "1994-08-29", "fuel": "gasoline", "current_price": 1.161, "yoy_price": 1.062, "absolute_change": 0.099, "percentage_change": 9.3220338983}, {"date": "1994-09-05", "fuel": "gasoline", "current_price": 1.156, "yoy_price": 1.055, "absolute_change": 0.101, "percentage_change": 9.5734597156}, {"date": "1994-09-12", "fuel": "gasoline", "current_price": 1.15, "yoy_price": 1.051, "absolute_change": 0.099, "percentage_change": 9.4196003806}, {"date": "1994-09-19", "fuel": "gasoline", "current_price": 1.14, "yoy_price": 1.045, "absolute_change": 0.095, "percentage_change": 9.0909090909}, {"date": "1994-09-26", "fuel": "gasoline", "current_price": 1.129, "yoy_price": 1.047, "absolute_change": 0.082, "percentage_change": 7.8319006686}, {"date": "1994-10-03", "fuel": "gasoline", "current_price": 1.12, "yoy_price": 1.092, "absolute_change": 0.028, "percentage_change": 2.5641025641}, {"date": "1994-10-10", "fuel": "gasoline", "current_price": 1.114, "yoy_price": 1.09, "absolute_change": 0.024, "percentage_change": 2.2018348624}, {"date": "1994-10-17", "fuel": "gasoline", "current_price": 1.106, "yoy_price": 1.093, "absolute_change": 0.013, "percentage_change": 1.1893870082}, {"date": "1994-10-24", "fuel": "gasoline", "current_price": 1.107, "yoy_price": 1.092, "absolute_change": 0.015, "percentage_change": 1.3736263736}, {"date": "1994-10-31", "fuel": "gasoline", "current_price": 1.121, "yoy_price": 1.084, "absolute_change": 0.037, "percentage_change": 3.4132841328}, {"date": "1994-11-07", "fuel": "gasoline", "current_price": 1.123, "yoy_price": 1.075, "absolute_change": 0.048, "percentage_change": 4.4651162791}, {"date": "1994-11-14", "fuel": "gasoline", "current_price": 1.122, "yoy_price": 1.064, "absolute_change": 0.058, "percentage_change": 5.4511278195}, {"date": "1994-11-21", "fuel": "gasoline", "current_price": 1.113, "yoy_price": 1.058, "absolute_change": 0.055, "percentage_change": 5.1984877127}, {"date": "1994-11-28", "fuel": "gasoline", "current_price": 1.2025833333, "yoy_price": 1.051, "absolute_change": 0.1515833333, "percentage_change": 14.4227719632}, {"date": "1994-12-05", "fuel": "gasoline", "current_price": 1.2031666667, "yoy_price": 1.036, "absolute_change": 0.1671666667, "percentage_change": 16.1357786358}, {"date": "1994-12-12", "fuel": "gasoline", "current_price": 1.19275, "yoy_price": 1.018, "absolute_change": 0.17475, "percentage_change": 17.1660117878}, {"date": "1994-12-19", "fuel": "gasoline", "current_price": 1.1849166667, "yoy_price": 1.003, "absolute_change": 0.1819166667, "percentage_change": 18.137254902}, {"date": "1994-12-26", "fuel": "gasoline", "current_price": 1.1778333333, "yoy_price": 0.999, "absolute_change": 0.1788333333, "percentage_change": 17.9012345679}, {"date": "1995-01-02", "fuel": "gasoline", "current_price": 1.1921666667, "yoy_price": 0.992, "absolute_change": 0.2001666667, "percentage_change": 20.1780913978}, {"date": "1995-01-09", "fuel": "gasoline", "current_price": 1.1970833333, "yoy_price": 0.995, "absolute_change": 0.2020833333, "percentage_change": 20.3098827471}, {"date": "1995-01-16", "fuel": "gasoline", "current_price": 1.19125, "yoy_price": 1.001, "absolute_change": 0.19025, "percentage_change": 19.005994006}, {"date": "1995-01-23", "fuel": "gasoline", "current_price": 1.1944166667, "yoy_price": 0.999, "absolute_change": 0.1954166667, "percentage_change": 19.5612278946}, {"date": "1995-01-30", "fuel": "gasoline", "current_price": 1.192, "yoy_price": 1.005, "absolute_change": 0.187, "percentage_change": 18.6069651741}, {"date": "1995-02-06", "fuel": "gasoline", "current_price": 1.187, "yoy_price": 1.007, "absolute_change": 0.18, "percentage_change": 17.8748758689}, {"date": "1995-02-13", "fuel": "gasoline", "current_price": 1.1839166667, "yoy_price": 1.016, "absolute_change": 0.1679166667, "percentage_change": 16.5272309711}, {"date": "1995-02-20", "fuel": "gasoline", "current_price": 1.1785, "yoy_price": 1.009, "absolute_change": 0.1695, "percentage_change": 16.7988107037}, {"date": "1995-02-27", "fuel": "gasoline", "current_price": 1.182, "yoy_price": 1.004, "absolute_change": 0.178, "percentage_change": 17.7290836653}, {"date": "1995-03-06", "fuel": "gasoline", "current_price": 1.18225, "yoy_price": 1.007, "absolute_change": 0.17525, "percentage_change": 17.4031777557}, {"date": "1995-03-13", "fuel": "gasoline", "current_price": 1.17525, "yoy_price": 1.005, "absolute_change": 0.17025, "percentage_change": 16.9402985075}, {"date": "1995-03-20", "fuel": "gasoline", "current_price": 1.174, "yoy_price": 1.007, "absolute_change": 0.167, "percentage_change": 16.5839126117}, {"date": "1995-03-27", "fuel": "gasoline", "current_price": 1.1771666667, "yoy_price": 1.012, "absolute_change": 0.1651666667, "percentage_change": 16.3208168643}, {"date": "1995-04-03", "fuel": "gasoline", "current_price": 1.1860833333, "yoy_price": 1.011, "absolute_change": 0.1750833333, "percentage_change": 17.317837125}, {"date": "1995-04-10", "fuel": "gasoline", "current_price": 1.2000833333, "yoy_price": 1.028, "absolute_change": 0.1720833333, "percentage_change": 16.7396238651}, {"date": "1995-04-17", "fuel": "gasoline", "current_price": 1.2124166667, "yoy_price": 1.033, "absolute_change": 0.1794166667, "percentage_change": 17.3685059697}, {"date": "1995-04-24", "fuel": "gasoline", "current_price": 1.2325833333, "yoy_price": 1.037, "absolute_change": 0.1955833333, "percentage_change": 18.8604950177}, {"date": "1995-05-01", "fuel": "gasoline", "current_price": 1.24275, "yoy_price": 1.04, "absolute_change": 0.20275, "percentage_change": 19.4951923077}, {"date": "1995-05-08", "fuel": "gasoline", "current_price": 1.2643333333, "yoy_price": 1.045, "absolute_change": 0.2193333333, "percentage_change": 20.9888357257}, {"date": "1995-05-15", "fuel": "gasoline", "current_price": 1.274, "yoy_price": 1.046, "absolute_change": 0.228, "percentage_change": 21.7973231358}, {"date": "1995-05-22", "fuel": "gasoline", "current_price": 1.2905833333, "yoy_price": 1.05, "absolute_change": 0.2405833333, "percentage_change": 22.9126984127}, {"date": "1995-05-29", "fuel": "gasoline", "current_price": 1.29425, "yoy_price": 1.056, "absolute_change": 0.23825, "percentage_change": 22.5615530303}, {"date": "1995-06-05", "fuel": "gasoline", "current_price": 1.2939166667, "yoy_price": 1.065, "absolute_change": 0.2289166667, "percentage_change": 21.4945226917}, {"date": "1995-06-12", "fuel": "gasoline", "current_price": 1.2913333333, "yoy_price": 1.073, "absolute_change": 0.2183333333, "percentage_change": 20.347934141}, {"date": "1995-06-19", "fuel": "gasoline", "current_price": 1.28575, "yoy_price": 1.079, "absolute_change": 0.20675, "percentage_change": 19.1612604263}, {"date": "1995-06-26", "fuel": "gasoline", "current_price": 1.2798333333, "yoy_price": 1.095, "absolute_change": 0.1848333333, "percentage_change": 16.8797564688}, {"date": "1995-07-03", "fuel": "gasoline", "current_price": 1.2730833333, "yoy_price": 1.097, "absolute_change": 0.1760833333, "percentage_change": 16.0513521726}, {"date": "1995-07-10", "fuel": "gasoline", "current_price": 1.2644166667, "yoy_price": 1.103, "absolute_change": 0.1614166667, "percentage_change": 14.6343306135}, {"date": "1995-07-17", "fuel": "gasoline", "current_price": 1.2545833333, "yoy_price": 1.109, "absolute_change": 0.1455833333, "percentage_change": 13.1274421401}, {"date": "1995-07-24", "fuel": "gasoline", "current_price": 1.2445833333, "yoy_price": 1.114, "absolute_change": 0.1305833333, "percentage_change": 11.7220227409}, {"date": "1995-07-31", "fuel": "gasoline", "current_price": 1.2321666667, "yoy_price": 1.13, "absolute_change": 0.1021666667, "percentage_change": 9.0412979351}, {"date": "1995-08-07", "fuel": "gasoline", "current_price": 1.2270833333, "yoy_price": 1.157, "absolute_change": 0.0700833333, "percentage_change": 6.0573321809}, {"date": "1995-08-14", "fuel": "gasoline", "current_price": 1.2228333333, "yoy_price": 1.161, "absolute_change": 0.0618333333, "percentage_change": 5.3258685042}, {"date": "1995-08-21", "fuel": "gasoline", "current_price": 1.2206666667, "yoy_price": 1.165, "absolute_change": 0.0556666667, "percentage_change": 4.7782546495}, {"date": "1995-08-28", "fuel": "gasoline", "current_price": 1.21325, "yoy_price": 1.161, "absolute_change": 0.05225, "percentage_change": 4.5004306632}, {"date": "1995-09-04", "fuel": "gasoline", "current_price": 1.2110833333, "yoy_price": 1.156, "absolute_change": 0.0550833333, "percentage_change": 4.764994233}, {"date": "1995-09-11", "fuel": "gasoline", "current_price": 1.2075833333, "yoy_price": 1.15, "absolute_change": 0.0575833333, "percentage_change": 5.0072463768}, {"date": "1995-09-18", "fuel": "gasoline", "current_price": 1.2063333333, "yoy_price": 1.14, "absolute_change": 0.0663333333, "percentage_change": 5.8187134503}, {"date": "1995-09-25", "fuel": "gasoline", "current_price": 1.2041666667, "yoy_price": 1.129, "absolute_change": 0.0751666667, "percentage_change": 6.6578092707}, {"date": "1995-10-02", "fuel": "gasoline", "current_price": 1.2005833333, "yoy_price": 1.12, "absolute_change": 0.0805833333, "percentage_change": 7.1949404762}, {"date": "1995-10-09", "fuel": "gasoline", "current_price": 1.1949166667, "yoy_price": 1.114, "absolute_change": 0.0809166667, "percentage_change": 7.263614602}, {"date": "1995-10-16", "fuel": "gasoline", "current_price": 1.1870833333, "yoy_price": 1.106, "absolute_change": 0.0810833333, "percentage_change": 7.3312236287}, {"date": "1995-10-23", "fuel": "gasoline", "current_price": 1.1790833333, "yoy_price": 1.107, "absolute_change": 0.0720833333, "percentage_change": 6.5115928937}, {"date": "1995-10-30", "fuel": "gasoline", "current_price": 1.1693333333, "yoy_price": 1.121, "absolute_change": 0.0483333333, "percentage_change": 4.3116265239}, {"date": "1995-11-06", "fuel": "gasoline", "current_price": 1.16475, "yoy_price": 1.123, "absolute_change": 0.04175, "percentage_change": 3.7177203918}, {"date": "1995-11-13", "fuel": "gasoline", "current_price": 1.1621666667, "yoy_price": 1.122, "absolute_change": 0.0401666667, "percentage_change": 3.5799168152}, {"date": "1995-11-20", "fuel": "gasoline", "current_price": 1.158, "yoy_price": 1.113, "absolute_change": 0.045, "percentage_change": 4.0431266846}, {"date": "1995-11-27", "fuel": "gasoline", "current_price": 1.1574166667, "yoy_price": 1.2025833333, "absolute_change": -0.0451666667, "percentage_change": -3.7558034786}, {"date": "1995-12-04", "fuel": "gasoline", "current_price": 1.1586666667, "yoy_price": 1.2031666667, "absolute_change": -0.0445, "percentage_change": -3.6985732096}, {"date": "1995-12-11", "fuel": "gasoline", "current_price": 1.1598333333, "yoy_price": 1.19275, "absolute_change": -0.0329166667, "percentage_change": -2.7597289178}, {"date": "1995-12-18", "fuel": "gasoline", "current_price": 1.1716666667, "yoy_price": 1.1849166667, "absolute_change": -0.01325, "percentage_change": -1.1182220972}, {"date": "1995-12-25", "fuel": "gasoline", "current_price": 1.1763333333, "yoy_price": 1.1778333333, "absolute_change": -0.0015, "percentage_change": -0.1273524834}, {"date": "1996-01-01", "fuel": "gasoline", "current_price": 1.178, "yoy_price": 1.1921666667, "absolute_change": -0.0141666667, "percentage_change": -1.1883125961}, {"date": "1996-01-08", "fuel": "gasoline", "current_price": 1.1848333333, "yoy_price": 1.1970833333, "absolute_change": -0.01225, "percentage_change": -1.0233205708}, {"date": "1996-01-15", "fuel": "gasoline", "current_price": 1.1918333333, "yoy_price": 1.19125, "absolute_change": 0.0005833333, "percentage_change": 0.0489681707}, {"date": "1996-01-22", "fuel": "gasoline", "current_price": 1.18725, "yoy_price": 1.1944166667, "absolute_change": -0.0071666667, "percentage_change": -0.6000139538}, {"date": "1996-01-29", "fuel": "gasoline", "current_price": 1.18275, "yoy_price": 1.192, "absolute_change": -0.00925, "percentage_change": -0.7760067114}, {"date": "1996-02-05", "fuel": "gasoline", "current_price": 1.1796666667, "yoy_price": 1.187, "absolute_change": -0.0073333333, "percentage_change": -0.6178039876}, {"date": "1996-02-12", "fuel": "gasoline", "current_price": 1.1765833333, "yoy_price": 1.1839166667, "absolute_change": -0.0073333333, "percentage_change": -0.6194129654}, {"date": "1996-02-19", "fuel": "gasoline", "current_price": 1.1820833333, "yoy_price": 1.1785, "absolute_change": 0.0035833333, "percentage_change": 0.3040588318}, {"date": "1996-02-26", "fuel": "gasoline", "current_price": 1.20075, "yoy_price": 1.182, "absolute_change": 0.01875, "percentage_change": 1.5862944162}, {"date": "1996-03-04", "fuel": "gasoline", "current_price": 1.216, "yoy_price": 1.18225, "absolute_change": 0.03375, "percentage_change": 2.8547261578}, {"date": "1996-03-11", "fuel": "gasoline", "current_price": 1.2185, "yoy_price": 1.17525, "absolute_change": 0.04325, "percentage_change": 3.6800680706}, {"date": "1996-03-18", "fuel": "gasoline", "current_price": 1.2275833333, "yoy_price": 1.174, "absolute_change": 0.0535833333, "percentage_change": 4.5641680863}, {"date": "1996-03-25", "fuel": "gasoline", "current_price": 1.2536666667, "yoy_price": 1.1771666667, "absolute_change": 0.0765, "percentage_change": 6.4986549625}, {"date": "1996-04-01", "fuel": "gasoline", "current_price": 1.2685833333, "yoy_price": 1.1860833333, "absolute_change": 0.0825, "percentage_change": 6.955666409}, {"date": "1996-04-08", "fuel": "gasoline", "current_price": 1.2933333333, "yoy_price": 1.2000833333, "absolute_change": 0.09325, "percentage_change": 7.7702937296}, {"date": "1996-04-15", "fuel": "gasoline", "current_price": 1.3344166667, "yoy_price": 1.2124166667, "absolute_change": 0.122, "percentage_change": 10.0625472541}, {"date": "1996-04-22", "fuel": "gasoline", "current_price": 1.35825, "yoy_price": 1.2325833333, "absolute_change": 0.1256666667, "percentage_change": 10.195389088}, {"date": "1996-04-29", "fuel": "gasoline", "current_price": 1.3765833333, "yoy_price": 1.24275, "absolute_change": 0.1338333333, "percentage_change": 10.7691276068}, {"date": "1996-05-06", "fuel": "gasoline", "current_price": 1.3811666667, "yoy_price": 1.2643333333, "absolute_change": 0.1168333333, "percentage_change": 9.2407065647}, {"date": "1996-05-13", "fuel": "gasoline", "current_price": 1.38375, "yoy_price": 1.274, "absolute_change": 0.10975, "percentage_change": 8.614599686}, {"date": "1996-05-20", "fuel": "gasoline", "current_price": 1.3891666667, "yoy_price": 1.2905833333, "absolute_change": 0.0985833333, "percentage_change": 7.6386646865}, {"date": "1996-05-27", "fuel": "gasoline", "current_price": 1.37975, "yoy_price": 1.29425, "absolute_change": 0.0855, "percentage_change": 6.6061425536}, {"date": "1996-06-03", "fuel": "gasoline", "current_price": 1.3785833333, "yoy_price": 1.2939166667, "absolute_change": 0.0846666667, "percentage_change": 6.5434404586}, {"date": "1996-06-10", "fuel": "gasoline", "current_price": 1.36975, "yoy_price": 1.2913333333, "absolute_change": 0.0784166667, "percentage_change": 6.0725348477}, {"date": "1996-06-17", "fuel": "gasoline", "current_price": 1.3625, "yoy_price": 1.28575, "absolute_change": 0.07675, "percentage_change": 5.9692786311}, {"date": "1996-06-24", "fuel": "gasoline", "current_price": 1.3511666667, "yoy_price": 1.2798333333, "absolute_change": 0.0713333333, "percentage_change": 5.5736424014}, {"date": "1996-07-01", "fuel": "gasoline", "current_price": 1.34025, "yoy_price": 1.2730833333, "absolute_change": 0.0671666667, "percentage_change": 5.2759049552}, {"date": "1996-07-08", "fuel": "gasoline", "current_price": 1.3360833333, "yoy_price": 1.2644166667, "absolute_change": 0.0716666667, "percentage_change": 5.6679628287}, {"date": "1996-07-15", "fuel": "gasoline", "current_price": 1.332, "yoy_price": 1.2545833333, "absolute_change": 0.0774166667, "percentage_change": 6.1707074062}, {"date": "1996-07-22", "fuel": "gasoline", "current_price": 1.3288333333, "yoy_price": 1.2445833333, "absolute_change": 0.08425, "percentage_change": 6.7693337797}, {"date": "1996-07-29", "fuel": "gasoline", "current_price": 1.3199166667, "yoy_price": 1.2321666667, "absolute_change": 0.08775, "percentage_change": 7.1216015149}, {"date": "1996-08-05", "fuel": "gasoline", "current_price": 1.30975, "yoy_price": 1.2270833333, "absolute_change": 0.0826666667, "percentage_change": 6.7368421053}, {"date": "1996-08-12", "fuel": "gasoline", "current_price": 1.3026666667, "yoy_price": 1.2228333333, "absolute_change": 0.0798333333, "percentage_change": 6.5285539049}, {"date": "1996-08-19", "fuel": "gasoline", "current_price": 1.3000833333, "yoy_price": 1.2206666667, "absolute_change": 0.0794166667, "percentage_change": 6.5060076461}, {"date": "1996-08-26", "fuel": "gasoline", "current_price": 1.3024166667, "yoy_price": 1.21325, "absolute_change": 0.0891666667, "percentage_change": 7.3494058658}, {"date": "1996-09-02", "fuel": "gasoline", "current_price": 1.2905, "yoy_price": 1.2110833333, "absolute_change": 0.0794166667, "percentage_change": 6.5574898507}, {"date": "1996-09-09", "fuel": "gasoline", "current_price": 1.2938333333, "yoy_price": 1.2075833333, "absolute_change": 0.08625, "percentage_change": 7.1423642261}, {"date": "1996-09-16", "fuel": "gasoline", "current_price": 1.2966666667, "yoy_price": 1.2063333333, "absolute_change": 0.0903333333, "percentage_change": 7.4882564244}, {"date": "1996-09-23", "fuel": "gasoline", "current_price": 1.29675, "yoy_price": 1.2041666667, "absolute_change": 0.0925833333, "percentage_change": 7.6885813149}, {"date": "1996-09-30", "fuel": "gasoline", "current_price": 1.2916666667, "yoy_price": 1.2005833333, "absolute_change": 0.0910833333, "percentage_change": 7.5865898522}, {"date": "1996-10-07", "fuel": "gasoline", "current_price": 1.2855, "yoy_price": 1.1949166667, "absolute_change": 0.0905833333, "percentage_change": 7.5807238999}, {"date": "1996-10-14", "fuel": "gasoline", "current_price": 1.2918333333, "yoy_price": 1.1870833333, "absolute_change": 0.10475, "percentage_change": 8.8241488241}, {"date": "1996-10-21", "fuel": "gasoline", "current_price": 1.2916666667, "yoy_price": 1.1790833333, "absolute_change": 0.1125833333, "percentage_change": 9.5483779772}, {"date": "1996-10-28", "fuel": "gasoline", "current_price": 1.2986666667, "yoy_price": 1.1693333333, "absolute_change": 0.1293333333, "percentage_change": 11.0604332953}, {"date": "1996-11-04", "fuel": "gasoline", "current_price": 1.3048333333, "yoy_price": 1.16475, "absolute_change": 0.1400833333, "percentage_change": 12.0269013379}, {"date": "1996-11-11", "fuel": "gasoline", "current_price": 1.3065833333, "yoy_price": 1.1621666667, "absolute_change": 0.1444166667, "percentage_change": 12.4265022229}, {"date": "1996-11-18", "fuel": "gasoline", "current_price": 1.31575, "yoy_price": 1.158, "absolute_change": 0.15775, "percentage_change": 13.6226252159}, {"date": "1996-11-25", "fuel": "gasoline", "current_price": 1.32175, "yoy_price": 1.1574166667, "absolute_change": 0.1643333333, "percentage_change": 14.1982864137}, {"date": "1996-12-02", "fuel": "gasoline", "current_price": 1.3219166667, "yoy_price": 1.1586666667, "absolute_change": 0.16325, "percentage_change": 14.0894706559}, {"date": "1996-12-09", "fuel": "gasoline", "current_price": 1.32275, "yoy_price": 1.1598333333, "absolute_change": 0.1629166667, "percentage_change": 14.0465584136}, {"date": "1996-12-16", "fuel": "gasoline", "current_price": 1.32075, "yoy_price": 1.1716666667, "absolute_change": 0.1490833333, "percentage_change": 12.7240398293}, {"date": "1996-12-23", "fuel": "gasoline", "current_price": 1.3175, "yoy_price": 1.1763333333, "absolute_change": 0.1411666667, "percentage_change": 12.0005667328}, {"date": "1996-12-30", "fuel": "gasoline", "current_price": 1.3154166667, "yoy_price": 1.178, "absolute_change": 0.1374166667, "percentage_change": 11.6652518393}, {"date": "1997-01-06", "fuel": "gasoline", "current_price": 1.31525, "yoy_price": 1.1848333333, "absolute_change": 0.1304166667, "percentage_change": 11.0071740048}, {"date": "1997-01-13", "fuel": "gasoline", "current_price": 1.3293333333, "yoy_price": 1.1918333333, "absolute_change": 0.1375, "percentage_change": 11.5368479933}, {"date": "1997-01-20", "fuel": "gasoline", "current_price": 1.3296666667, "yoy_price": 1.18725, "absolute_change": 0.1424166667, "percentage_change": 11.9955078262}, {"date": "1997-01-27", "fuel": "gasoline", "current_price": 1.3268333333, "yoy_price": 1.18275, "absolute_change": 0.1440833333, "percentage_change": 12.1820615797}, {"date": "1997-02-03", "fuel": "gasoline", "current_price": 1.3263333333, "yoy_price": 1.1796666667, "absolute_change": 0.1466666667, "percentage_change": 12.4328906471}, {"date": "1997-02-10", "fuel": "gasoline", "current_price": 1.3243333333, "yoy_price": 1.1765833333, "absolute_change": 0.14775, "percentage_change": 12.5575465685}, {"date": "1997-02-17", "fuel": "gasoline", "current_price": 1.3195, "yoy_price": 1.1820833333, "absolute_change": 0.1374166667, "percentage_change": 11.6249559394}, {"date": "1997-02-24", "fuel": "gasoline", "current_price": 1.3165833333, "yoy_price": 1.20075, "absolute_change": 0.1158333333, "percentage_change": 9.6467485599}, {"date": "1997-03-03", "fuel": "gasoline", "current_price": 1.30825, "yoy_price": 1.216, "absolute_change": 0.09225, "percentage_change": 7.5863486842}, {"date": "1997-03-10", "fuel": "gasoline", "current_price": 1.3035833333, "yoy_price": 1.2185, "absolute_change": 0.0850833333, "percentage_change": 6.9826289153}, {"date": "1997-03-17", "fuel": "gasoline", "current_price": 1.2974166667, "yoy_price": 1.2275833333, "absolute_change": 0.0698333333, "percentage_change": 5.6886837282}, {"date": "1997-03-24", "fuel": "gasoline", "current_price": 1.2995833333, "yoy_price": 1.2536666667, "absolute_change": 0.0459166667, "percentage_change": 3.6625897368}, {"date": "1997-03-31", "fuel": "gasoline", "current_price": 1.2985833333, "yoy_price": 1.2685833333, "absolute_change": 0.03, "percentage_change": 2.3648426723}, {"date": "1997-04-07", "fuel": "gasoline", "current_price": 1.3015833333, "yoy_price": 1.2933333333, "absolute_change": 0.00825, "percentage_change": 0.6378865979}, {"date": "1997-04-14", "fuel": "gasoline", "current_price": 1.2985833333, "yoy_price": 1.3344166667, "absolute_change": -0.0358333333, "percentage_change": -2.685318179}, {"date": "1997-04-21", "fuel": "gasoline", "current_price": 1.2971666667, "yoy_price": 1.35825, "absolute_change": -0.0610833333, "percentage_change": -4.4972084177}, {"date": "1997-04-28", "fuel": "gasoline", "current_price": 1.2928333333, "yoy_price": 1.3765833333, "absolute_change": -0.08375, "percentage_change": -6.083903384}, {"date": "1997-05-05", "fuel": "gasoline", "current_price": 1.2909166667, "yoy_price": 1.3811666667, "absolute_change": -0.09025, "percentage_change": -6.5343308797}, {"date": "1997-05-12", "fuel": "gasoline", "current_price": 1.2889166667, "yoy_price": 1.38375, "absolute_change": -0.0948333333, "percentage_change": -6.8533574225}, {"date": "1997-05-19", "fuel": "gasoline", "current_price": 1.2956666667, "yoy_price": 1.3891666667, "absolute_change": -0.0935, "percentage_change": -6.7306538692}, {"date": "1997-05-26", "fuel": "gasoline", "current_price": 1.3023333333, "yoy_price": 1.37975, "absolute_change": -0.0774166667, "percentage_change": -5.6109198526}, {"date": "1997-06-02", "fuel": "gasoline", "current_price": 1.3034166667, "yoy_price": 1.3785833333, "absolute_change": -0.0751666667, "percentage_change": -5.4524572327}, {"date": "1997-06-09", "fuel": "gasoline", "current_price": 1.298, "yoy_price": 1.36975, "absolute_change": -0.07175, "percentage_change": -5.23818215}, {"date": "1997-06-16", "fuel": "gasoline", "current_price": 1.2903333333, "yoy_price": 1.3625, "absolute_change": -0.0721666667, "percentage_change": -5.2966360856}, {"date": "1997-06-23", "fuel": "gasoline", "current_price": 1.2814166667, "yoy_price": 1.3511666667, "absolute_change": -0.06975, "percentage_change": -5.1622055014}, {"date": "1997-06-30", "fuel": "gasoline", "current_price": 1.2731666667, "yoy_price": 1.34025, "absolute_change": -0.0670833333, "percentage_change": -5.0052850836}, {"date": "1997-07-07", "fuel": "gasoline", "current_price": 1.26925, "yoy_price": 1.3360833333, "absolute_change": -0.0668333333, "percentage_change": -5.0021829976}, {"date": "1997-07-14", "fuel": "gasoline", "current_price": 1.26475, "yoy_price": 1.332, "absolute_change": -0.06725, "percentage_change": -5.0487987988}, {"date": "1997-07-21", "fuel": "gasoline", "current_price": 1.26675, "yoy_price": 1.3288333333, "absolute_change": -0.0620833333, "percentage_change": -4.672018061}, {"date": "1997-07-28", "fuel": "gasoline", "current_price": 1.2615833333, "yoy_price": 1.3199166667, "absolute_change": -0.0583333333, "percentage_change": -4.4194709262}, {"date": "1997-08-04", "fuel": "gasoline", "current_price": 1.282, "yoy_price": 1.30975, "absolute_change": -0.02775, "percentage_change": -2.1187249475}, {"date": "1997-08-11", "fuel": "gasoline", "current_price": 1.3171666667, "yoy_price": 1.3026666667, "absolute_change": 0.0145, "percentage_change": 1.1131013306}, {"date": "1997-08-18", "fuel": "gasoline", "current_price": 1.3226666667, "yoy_price": 1.3000833333, "absolute_change": 0.0225833333, "percentage_change": 1.7370681367}, {"date": "1997-08-25", "fuel": "gasoline", "current_price": 1.3403333333, "yoy_price": 1.3024166667, "absolute_change": 0.0379166667, "percentage_change": 2.9112547188}, {"date": "1997-09-01", "fuel": "gasoline", "current_price": 1.3423333333, "yoy_price": 1.2905, "absolute_change": 0.0518333333, "percentage_change": 4.0165310603}, {"date": "1997-09-08", "fuel": "gasoline", "current_price": 1.3435833333, "yoy_price": 1.2938333333, "absolute_change": 0.04975, "percentage_change": 3.8451629525}, {"date": "1997-09-15", "fuel": "gasoline", "current_price": 1.3390833333, "yoy_price": 1.2966666667, "absolute_change": 0.0424166667, "percentage_change": 3.2712082262}, {"date": "1997-09-22", "fuel": "gasoline", "current_price": 1.3289166667, "yoy_price": 1.29675, "absolute_change": 0.0321666667, "percentage_change": 2.4805603753}, {"date": "1997-09-29", "fuel": "gasoline", "current_price": 1.3160833333, "yoy_price": 1.2916666667, "absolute_change": 0.0244166667, "percentage_change": 1.8903225806}, {"date": "1997-10-06", "fuel": "gasoline", "current_price": 1.3143333333, "yoy_price": 1.2855, "absolute_change": 0.0288333333, "percentage_change": 2.2429664203}, {"date": "1997-10-13", "fuel": "gasoline", "current_price": 1.3075, "yoy_price": 1.2918333333, "absolute_change": 0.0156666667, "percentage_change": 1.2127467424}, {"date": "1997-10-20", "fuel": "gasoline", "current_price": 1.2989166667, "yoy_price": 1.2916666667, "absolute_change": 0.00725, "percentage_change": 0.5612903226}, {"date": "1997-10-27", "fuel": "gasoline", "current_price": 1.2889166667, "yoy_price": 1.2986666667, "absolute_change": -0.00975, "percentage_change": -0.7507700205}, {"date": "1997-11-03", "fuel": "gasoline", "current_price": 1.2814166667, "yoy_price": 1.3048333333, "absolute_change": -0.0234166667, "percentage_change": -1.7946097841}, {"date": "1997-11-10", "fuel": "gasoline", "current_price": 1.2804166667, "yoy_price": 1.3065833333, "absolute_change": -0.0261666667, "percentage_change": -2.0026787423}, {"date": "1997-11-17", "fuel": "gasoline", "current_price": 1.27175, "yoy_price": 1.31575, "absolute_change": -0.044, "percentage_change": -3.344100323}, {"date": "1997-11-24", "fuel": "gasoline", "current_price": 1.2656666667, "yoy_price": 1.32175, "absolute_change": -0.0560833333, "percentage_change": -4.2431120358}, {"date": "1997-12-01", "fuel": "gasoline", "current_price": 1.2570833333, "yoy_price": 1.3219166667, "absolute_change": -0.0648333333, "percentage_change": -4.9044947362}, {"date": "1997-12-08", "fuel": "gasoline", "current_price": 1.2458333333, "yoy_price": 1.32275, "absolute_change": -0.0769166667, "percentage_change": -5.8149058149}, {"date": "1997-12-15", "fuel": "gasoline", "current_price": 1.2355833333, "yoy_price": 1.32075, "absolute_change": -0.0851666667, "percentage_change": -6.4483563632}, {"date": "1997-12-22", "fuel": "gasoline", "current_price": 1.2255, "yoy_price": 1.3175, "absolute_change": -0.092, "percentage_change": -6.9829222011}, {"date": "1997-12-29", "fuel": "gasoline", "current_price": 1.2175833333, "yoy_price": 1.3154166667, "absolute_change": -0.0978333333, "percentage_change": -7.4374406082}, {"date": "1998-01-05", "fuel": "gasoline", "current_price": 1.2095, "yoy_price": 1.31525, "absolute_change": -0.10575, "percentage_change": -8.0402965216}, {"date": "1998-01-12", "fuel": "gasoline", "current_price": 1.1999166667, "yoy_price": 1.3293333333, "absolute_change": -0.1294166667, "percentage_change": -9.7354563691}, {"date": "1998-01-19", "fuel": "gasoline", "current_price": 1.1858333333, "yoy_price": 1.3296666667, "absolute_change": -0.1438333333, "percentage_change": -10.8172474304}, {"date": "1998-01-26", "fuel": "gasoline", "current_price": 1.1703333333, "yoy_price": 1.3268333333, "absolute_change": -0.1565, "percentage_change": -11.7950006281}, {"date": "1998-02-02", "fuel": "gasoline", "current_price": 1.1635833333, "yoy_price": 1.3263333333, "absolute_change": -0.16275, "percentage_change": -12.2706710229}, {"date": "1998-02-09", "fuel": "gasoline", "current_price": 1.1553333333, "yoy_price": 1.3243333333, "absolute_change": -0.169, "percentage_change": -12.7611376793}, {"date": "1998-02-16", "fuel": "gasoline", "current_price": 1.1394166667, "yoy_price": 1.3195, "absolute_change": -0.1800833333, "percentage_change": -13.6478464065}, {"date": "1998-02-23", "fuel": "gasoline", "current_price": 1.1393333333, "yoy_price": 1.3165833333, "absolute_change": -0.17725, "percentage_change": -13.4628773973}, {"date": "1998-03-02", "fuel": "gasoline", "current_price": 1.1236666667, "yoy_price": 1.30825, "absolute_change": -0.1845833333, "percentage_change": -14.1091789286}, {"date": "1998-03-09", "fuel": "gasoline", "current_price": 1.1116666667, "yoy_price": 1.3035833333, "absolute_change": -0.1919166667, "percentage_change": -14.7222399795}, {"date": "1998-03-16", "fuel": "gasoline", "current_price": 1.1015, "yoy_price": 1.2974166667, "absolute_change": -0.1959166667, "percentage_change": -15.1005202646}, {"date": "1998-03-23", "fuel": "gasoline", "current_price": 1.093, "yoy_price": 1.2995833333, "absolute_change": -0.2065833333, "percentage_change": -15.8961205515}, {"date": "1998-03-30", "fuel": "gasoline", "current_price": 1.1211666667, "yoy_price": 1.2985833333, "absolute_change": -0.1774166667, "percentage_change": -13.6623243278}, {"date": "1998-04-06", "fuel": "gasoline", "current_price": 1.1190833333, "yoy_price": 1.3015833333, "absolute_change": -0.1825, "percentage_change": -14.0213842115}, {"date": "1998-04-13", "fuel": "gasoline", "current_price": 1.1186666667, "yoy_price": 1.2985833333, "absolute_change": -0.1799166667, "percentage_change": -13.8548418148}, {"date": "1998-04-20", "fuel": "gasoline", "current_price": 1.1206666667, "yoy_price": 1.2971666667, "absolute_change": -0.1765, "percentage_change": -13.6065784402}, {"date": "1998-04-27", "fuel": "gasoline", "current_price": 1.1316666667, "yoy_price": 1.2928333333, "absolute_change": -0.1611666667, "percentage_change": -12.4661595978}, {"date": "1998-05-04", "fuel": "gasoline", "current_price": 1.1455, "yoy_price": 1.2909166667, "absolute_change": -0.1454166667, "percentage_change": -11.2646052547}, {"date": "1998-05-11", "fuel": "gasoline", "current_price": 1.1580833333, "yoy_price": 1.2889166667, "absolute_change": -0.1308333333, "percentage_change": -10.1506433051}, {"date": "1998-05-18", "fuel": "gasoline", "current_price": 1.1619166667, "yoy_price": 1.2956666667, "absolute_change": -0.13375, "percentage_change": -10.3228711088}, {"date": "1998-05-25", "fuel": "gasoline", "current_price": 1.1605833333, "yoy_price": 1.3023333333, "absolute_change": -0.14175, "percentage_change": -10.8843102124}, {"date": "1998-06-01", "fuel": "gasoline", "current_price": 1.1571666667, "yoy_price": 1.3034166667, "absolute_change": -0.14625, "percentage_change": -11.2205101976}, {"date": "1998-06-08", "fuel": "gasoline", "current_price": 1.1628333333, "yoy_price": 1.298, "absolute_change": -0.1351666667, "percentage_change": -10.4134565999}, {"date": "1998-06-15", "fuel": "gasoline", "current_price": 1.1561666667, "yoy_price": 1.2903333333, "absolute_change": -0.1341666667, "percentage_change": -10.3978300181}, {"date": "1998-06-22", "fuel": "gasoline", "current_price": 1.15, "yoy_price": 1.2814166667, "absolute_change": -0.1314166667, "percentage_change": -10.2555765104}, {"date": "1998-06-29", "fuel": "gasoline", "current_price": 1.1484166667, "yoy_price": 1.2731666667, "absolute_change": -0.12475, "percentage_change": -9.7984029323}, {"date": "1998-07-06", "fuel": "gasoline", "current_price": 1.1486666667, "yoy_price": 1.26925, "absolute_change": -0.1205833333, "percentage_change": -9.5003611056}, {"date": "1998-07-13", "fuel": "gasoline", "current_price": 1.1450833333, "yoy_price": 1.26475, "absolute_change": -0.1196666667, "percentage_change": -9.4616854451}, {"date": "1998-07-20", "fuel": "gasoline", "current_price": 1.1476666667, "yoy_price": 1.26675, "absolute_change": -0.1190833333, "percentage_change": -9.4006973225}, {"date": "1998-07-27", "fuel": "gasoline", "current_price": 1.1401666667, "yoy_price": 1.2615833333, "absolute_change": -0.1214166667, "percentage_change": -9.6241495475}, {"date": "1998-08-03", "fuel": "gasoline", "current_price": 1.1303333333, "yoy_price": 1.282, "absolute_change": -0.1516666667, "percentage_change": -11.8304732189}, {"date": "1998-08-10", "fuel": "gasoline", "current_price": 1.1250833333, "yoy_price": 1.3171666667, "absolute_change": -0.1920833333, "percentage_change": -14.5830697204}, {"date": "1998-08-17", "fuel": "gasoline", "current_price": 1.1194166667, "yoy_price": 1.3226666667, "absolute_change": -0.20325, "percentage_change": -15.3666834677}, {"date": "1998-08-24", "fuel": "gasoline", "current_price": 1.11275, "yoy_price": 1.3403333333, "absolute_change": -0.2275833333, "percentage_change": -16.9796070629}, {"date": "1998-08-31", "fuel": "gasoline", "current_price": 1.107, "yoy_price": 1.3423333333, "absolute_change": -0.2353333333, "percentage_change": -17.5316612863}, {"date": "1998-09-07", "fuel": "gasoline", "current_price": 1.1015, "yoy_price": 1.3435833333, "absolute_change": -0.2420833333, "percentage_change": -18.0177386342}, {"date": "1998-09-14", "fuel": "gasoline", "current_price": 1.09725, "yoy_price": 1.3390833333, "absolute_change": -0.2418333333, "percentage_change": -18.0596178978}, {"date": "1998-09-21", "fuel": "gasoline", "current_price": 1.1071666667, "yoy_price": 1.3289166667, "absolute_change": -0.22175, "percentage_change": -16.6865241111}, {"date": "1998-09-28", "fuel": "gasoline", "current_price": 1.1075833333, "yoy_price": 1.3160833333, "absolute_change": -0.2085, "percentage_change": -15.8424618502}, {"date": "1998-10-05", "fuel": "gasoline", "current_price": 1.1115, "yoy_price": 1.3143333333, "absolute_change": -0.2028333333, "percentage_change": -15.4324118691}, {"date": "1998-10-12", "fuel": "gasoline", "current_price": 1.1158333333, "yoy_price": 1.3075, "absolute_change": -0.1916666667, "percentage_change": -14.6590184831}, {"date": "1998-10-19", "fuel": "gasoline", "current_price": 1.1113333333, "yoy_price": 1.2989166667, "absolute_change": -0.1875833333, "percentage_change": -14.441521781}, {"date": "1998-10-26", "fuel": "gasoline", "current_price": 1.1086666667, "yoy_price": 1.2889166667, "absolute_change": -0.18025, "percentage_change": -13.9846124006}, {"date": "1998-11-02", "fuel": "gasoline", "current_price": 1.1045, "yoy_price": 1.2814166667, "absolute_change": -0.1769166667, "percentage_change": -13.8063341354}, {"date": "1998-11-09", "fuel": "gasoline", "current_price": 1.1028333333, "yoy_price": 1.2804166667, "absolute_change": -0.1775833333, "percentage_change": -13.8691832086}, {"date": "1998-11-16", "fuel": "gasoline", "current_price": 1.0931666667, "yoy_price": 1.27175, "absolute_change": -0.1785833333, "percentage_change": -14.0423301225}, {"date": "1998-11-23", "fuel": "gasoline", "current_price": 1.0886666667, "yoy_price": 1.2656666667, "absolute_change": -0.177, "percentage_change": -13.9847247827}, {"date": "1998-11-30", "fuel": "gasoline", "current_price": 1.0763333333, "yoy_price": 1.2570833333, "absolute_change": -0.18075, "percentage_change": -14.3785217103}, {"date": "1998-12-07", "fuel": "gasoline", "current_price": 1.0594166667, "yoy_price": 1.2458333333, "absolute_change": -0.1864166667, "percentage_change": -14.9632107023}, {"date": "1998-12-14", "fuel": "gasoline", "current_price": 1.05125, "yoy_price": 1.2355833333, "absolute_change": -0.1843333333, "percentage_change": -14.9187293451}, {"date": "1998-12-21", "fuel": "gasoline", "current_price": 1.049, "yoy_price": 1.2255, "absolute_change": -0.1765, "percentage_change": -14.4022847817}, {"date": "1998-12-28", "fuel": "gasoline", "current_price": 1.043, "yoy_price": 1.2175833333, "absolute_change": -0.1745833333, "percentage_change": -14.3385120799}, {"date": "1999-01-04", "fuel": "gasoline", "current_price": 1.0405833333, "yoy_price": 1.2095, "absolute_change": -0.1689166667, "percentage_change": -13.9658260989}, {"date": "1999-01-11", "fuel": "gasoline", "current_price": 1.0429166667, "yoy_price": 1.1999166667, "absolute_change": -0.157, "percentage_change": -13.0842419612}, {"date": "1999-01-18", "fuel": "gasoline", "current_price": 1.0458333333, "yoy_price": 1.1858333333, "absolute_change": -0.14, "percentage_change": -11.8060435699}, {"date": "1999-01-25", "fuel": "gasoline", "current_price": 1.0391666667, "yoy_price": 1.1703333333, "absolute_change": -0.1311666667, "percentage_change": -11.2076331529}, {"date": "1999-02-01", "fuel": "gasoline", "current_price": 1.0320833333, "yoy_price": 1.1635833333, "absolute_change": -0.1315, "percentage_change": -11.301296283}, {"date": "1999-02-08", "fuel": "gasoline", "current_price": 1.02875, "yoy_price": 1.1553333333, "absolute_change": -0.1265833333, "percentage_change": -10.9564339296}, {"date": "1999-02-15", "fuel": "gasoline", "current_price": 1.0210833333, "yoy_price": 1.1394166667, "absolute_change": -0.1183333333, "percentage_change": -10.3854311417}, {"date": "1999-02-22", "fuel": "gasoline", "current_price": 1.012, "yoy_price": 1.1393333333, "absolute_change": -0.1273333333, "percentage_change": -11.1761263897}, {"date": "1999-03-01", "fuel": "gasoline", "current_price": 1.0169166667, "yoy_price": 1.1236666667, "absolute_change": -0.10675, "percentage_change": -9.5001483239}, {"date": "1999-03-08", "fuel": "gasoline", "current_price": 1.0249166667, "yoy_price": 1.1116666667, "absolute_change": -0.08675, "percentage_change": -7.8035982009}, {"date": "1999-03-15", "fuel": "gasoline", "current_price": 1.0733333333, "yoy_price": 1.1015, "absolute_change": -0.0281666667, "percentage_change": -2.55711908}, {"date": "1999-03-22", "fuel": "gasoline", "current_price": 1.1114166667, "yoy_price": 1.093, "absolute_change": 0.0184166667, "percentage_change": 1.6849649283}, {"date": "1999-03-29", "fuel": "gasoline", "current_price": 1.1826666667, "yoy_price": 1.1211666667, "absolute_change": 0.0615, "percentage_change": 5.4853575145}, {"date": "1999-04-05", "fuel": "gasoline", "current_price": 1.22625, "yoy_price": 1.1190833333, "absolute_change": 0.1071666667, "percentage_change": 9.5762901184}, {"date": "1999-04-12", "fuel": "gasoline", "current_price": 1.2495, "yoy_price": 1.1186666667, "absolute_change": 0.1308333333, "percentage_change": 11.6954707986}, {"date": "1999-04-19", "fuel": "gasoline", "current_price": 1.2458333333, "yoy_price": 1.1206666667, "absolute_change": 0.1251666667, "percentage_change": 11.1689470553}, {"date": "1999-04-26", "fuel": "gasoline", "current_price": 1.2426666667, "yoy_price": 1.1316666667, "absolute_change": 0.111, "percentage_change": 9.8085419735}, {"date": "1999-05-03", "fuel": "gasoline", "current_price": 1.244, "yoy_price": 1.1455, "absolute_change": 0.0985, "percentage_change": 8.5988651244}, {"date": "1999-05-10", "fuel": "gasoline", "current_price": 1.2485, "yoy_price": 1.1580833333, "absolute_change": 0.0904166667, "percentage_change": 7.8074404548}, {"date": "1999-05-17", "fuel": "gasoline", "current_price": 1.2455833333, "yoy_price": 1.1619166667, "absolute_change": 0.0836666667, "percentage_change": 7.200745894}, {"date": "1999-05-24", "fuel": "gasoline", "current_price": 1.2296666667, "yoy_price": 1.1605833333, "absolute_change": 0.0690833333, "percentage_change": 5.9524664321}, {"date": "1999-05-31", "fuel": "gasoline", "current_price": 1.2144166667, "yoy_price": 1.1571666667, "absolute_change": 0.05725, "percentage_change": 4.9474290652}, {"date": "1999-06-07", "fuel": "gasoline", "current_price": 1.21125, "yoy_price": 1.1628333333, "absolute_change": 0.0484166667, "percentage_change": 4.163680665}, {"date": "1999-06-14", "fuel": "gasoline", "current_price": 1.2073333333, "yoy_price": 1.1561666667, "absolute_change": 0.0511666667, "percentage_change": 4.4255441834}, {"date": "1999-06-21", "fuel": "gasoline", "current_price": 1.2195, "yoy_price": 1.15, "absolute_change": 0.0695, "percentage_change": 6.0434782609}, {"date": "1999-06-28", "fuel": "gasoline", "current_price": 1.2113333333, "yoy_price": 1.1484166667, "absolute_change": 0.0629166667, "percentage_change": 5.4785574341}, {"date": "1999-07-05", "fuel": "gasoline", "current_price": 1.22, "yoy_price": 1.1486666667, "absolute_change": 0.0713333333, "percentage_change": 6.2100986651}, {"date": "1999-07-12", "fuel": "gasoline", "current_price": 1.2401666667, "yoy_price": 1.1450833333, "absolute_change": 0.0950833333, "percentage_change": 8.3036169129}, {"date": "1999-07-19", "fuel": "gasoline", "current_price": 1.2691666667, "yoy_price": 1.1476666667, "absolute_change": 0.1215, "percentage_change": 10.5866976474}, {"date": "1999-07-26", "fuel": "gasoline", "current_price": 1.29075, "yoy_price": 1.1401666667, "absolute_change": 0.1505833333, "percentage_change": 13.20713346}, {"date": "1999-08-02", "fuel": "gasoline", "current_price": 1.2959166667, "yoy_price": 1.1303333333, "absolute_change": 0.1655833333, "percentage_change": 14.6490710705}, {"date": "1999-08-09", "fuel": "gasoline", "current_price": 1.3089166667, "yoy_price": 1.1250833333, "absolute_change": 0.1838333333, "percentage_change": 16.3395304052}, {"date": "1999-08-16", "fuel": "gasoline", "current_price": 1.3348333333, "yoy_price": 1.1194166667, "absolute_change": 0.2154166667, "percentage_change": 19.2436536887}, {"date": "1999-08-23", "fuel": "gasoline", "current_price": 1.33425, "yoy_price": 1.11275, "absolute_change": 0.2215, "percentage_change": 19.9056391822}, {"date": "1999-08-30", "fuel": "gasoline", "current_price": 1.3328333333, "yoy_price": 1.107, "absolute_change": 0.2258333333, "percentage_change": 20.4004817826}, {"date": "1999-09-06", "fuel": "gasoline", "current_price": 1.3393333333, "yoy_price": 1.1015, "absolute_change": 0.2378333333, "percentage_change": 21.5917688001}, {"date": "1999-09-13", "fuel": "gasoline", "current_price": 1.3453333333, "yoy_price": 1.09725, "absolute_change": 0.2480833333, "percentage_change": 22.6095541885}, {"date": "1999-09-20", "fuel": "gasoline", "current_price": 1.3605833333, "yoy_price": 1.1071666667, "absolute_change": 0.2534166667, "percentage_change": 22.8887550805}, {"date": "1999-09-27", "fuel": "gasoline", "current_price": 1.3545, "yoy_price": 1.1075833333, "absolute_change": 0.2469166667, "percentage_change": 22.2932811677}, {"date": "1999-10-04", "fuel": "gasoline", "current_price": 1.3503333333, "yoy_price": 1.1115, "absolute_change": 0.2388333333, "percentage_change": 21.4874793822}, {"date": "1999-10-11", "fuel": "gasoline", "current_price": 1.3466666667, "yoy_price": 1.1158333333, "absolute_change": 0.2308333333, "percentage_change": 20.6870799104}, {"date": "1999-10-18", "fuel": "gasoline", "current_price": 1.3353333333, "yoy_price": 1.1113333333, "absolute_change": 0.224, "percentage_change": 20.1559688062}, {"date": "1999-10-25", "fuel": "gasoline", "current_price": 1.3331666667, "yoy_price": 1.1086666667, "absolute_change": 0.2245, "percentage_change": 20.2495490078}, {"date": "1999-11-01", "fuel": "gasoline", "current_price": 1.3265833333, "yoy_price": 1.1045, "absolute_change": 0.2220833333, "percentage_change": 20.1071374679}, {"date": "1999-11-08", "fuel": "gasoline", "current_price": 1.3271666667, "yoy_price": 1.1028333333, "absolute_change": 0.2243333333, "percentage_change": 20.3415445066}, {"date": "1999-11-15", "fuel": "gasoline", "current_price": 1.34325, "yoy_price": 1.0931666667, "absolute_change": 0.2500833333, "percentage_change": 22.8769629517}, {"date": "1999-11-22", "fuel": "gasoline", "current_price": 1.35925, "yoy_price": 1.0886666667, "absolute_change": 0.2705833333, "percentage_change": 24.8545621555}, {"date": "1999-11-29", "fuel": "gasoline", "current_price": 1.3671666667, "yoy_price": 1.0763333333, "absolute_change": 0.2908333333, "percentage_change": 27.020749458}, {"date": "1999-12-06", "fuel": "gasoline", "current_price": 1.3674166667, "yoy_price": 1.0594166667, "absolute_change": 0.308, "percentage_change": 29.0726028475}, {"date": "1999-12-13", "fuel": "gasoline", "current_price": 1.3680833333, "yoy_price": 1.05125, "absolute_change": 0.3168333333, "percentage_change": 30.1387237416}, {"date": "1999-12-20", "fuel": "gasoline", "current_price": 1.3629166667, "yoy_price": 1.049, "absolute_change": 0.3139166667, "percentage_change": 29.925325707}, {"date": "1999-12-27", "fuel": "gasoline", "current_price": 1.3658333333, "yoy_price": 1.043, "absolute_change": 0.3228333333, "percentage_change": 30.9523809524}, {"date": "2000-01-03", "fuel": "gasoline", "current_price": 1.3645, "yoy_price": 1.0405833333, "absolute_change": 0.3239166667, "percentage_change": 31.1283735084}, {"date": "2000-01-10", "fuel": "gasoline", "current_price": 1.3575833333, "yoy_price": 1.0429166667, "absolute_change": 0.3146666667, "percentage_change": 30.1717938474}, {"date": "2000-01-17", "fuel": "gasoline", "current_price": 1.3674166667, "yoy_price": 1.0458333333, "absolute_change": 0.3215833333, "percentage_change": 30.7490039841}, {"date": "2000-01-24", "fuel": "gasoline", "current_price": 1.3995, "yoy_price": 1.0391666667, "absolute_change": 0.3603333333, "percentage_change": 34.6752205293}, {"date": "2000-01-31", "fuel": "gasoline", "current_price": 1.4033333333, "yoy_price": 1.0320833333, "absolute_change": 0.37125, "percentage_change": 35.9709325797}, {"date": "2000-02-07", "fuel": "gasoline", "current_price": 1.4104166667, "yoy_price": 1.02875, "absolute_change": 0.3816666667, "percentage_change": 37.1000405022}, {"date": "2000-02-14", "fuel": "gasoline", "current_price": 1.4378333333, "yoy_price": 1.0210833333, "absolute_change": 0.41675, "percentage_change": 40.8144944095}, {"date": "2000-02-21", "fuel": "gasoline", "current_price": 1.4835, "yoy_price": 1.012, "absolute_change": 0.4715, "percentage_change": 46.5909090909}, {"date": "2000-02-28", "fuel": "gasoline", "current_price": 1.5021666667, "yoy_price": 1.0169166667, "absolute_change": 0.48525, "percentage_change": 47.7177743178}, {"date": "2000-03-06", "fuel": "gasoline", "current_price": 1.5858333333, "yoy_price": 1.0249166667, "absolute_change": 0.5609166667, "percentage_change": 54.7280266688}, {"date": "2000-03-13", "fuel": "gasoline", "current_price": 1.6205833333, "yoy_price": 1.0733333333, "absolute_change": 0.54725, "percentage_change": 50.9860248447}, {"date": "2000-03-20", "fuel": "gasoline", "current_price": 1.62925, "yoy_price": 1.1114166667, "absolute_change": 0.5178333333, "percentage_change": 46.5921871485}, {"date": "2000-03-27", "fuel": "gasoline", "current_price": 1.613, "yoy_price": 1.1826666667, "absolute_change": 0.4303333333, "percentage_change": 36.3866967306}, {"date": "2000-04-03", "fuel": "gasoline", "current_price": 1.6068333333, "yoy_price": 1.22625, "absolute_change": 0.3805833333, "percentage_change": 31.0363574584}, {"date": "2000-04-10", "fuel": "gasoline", "current_price": 1.5824166667, "yoy_price": 1.2495, "absolute_change": 0.3329166667, "percentage_change": 26.6439909297}, {"date": "2000-04-17", "fuel": "gasoline", "current_price": 1.5545, "yoy_price": 1.2458333333, "absolute_change": 0.3086666667, "percentage_change": 24.7759197324}, {"date": "2000-04-24", "fuel": "gasoline", "current_price": 1.5449166667, "yoy_price": 1.2426666667, "absolute_change": 0.30225, "percentage_change": 24.322693133}, {"date": "2000-05-01", "fuel": "gasoline", "current_price": 1.52925, "yoy_price": 1.244, "absolute_change": 0.28525, "percentage_change": 22.9300643087}, {"date": "2000-05-08", "fuel": "gasoline", "current_price": 1.5560833333, "yoy_price": 1.2485, "absolute_change": 0.3075833333, "percentage_change": 24.6362301428}, {"date": "2000-05-15", "fuel": "gasoline", "current_price": 1.5860833333, "yoy_price": 1.2455833333, "absolute_change": 0.3405, "percentage_change": 27.3365892821}, {"date": "2000-05-22", "fuel": "gasoline", "current_price": 1.6116666667, "yoy_price": 1.2296666667, "absolute_change": 0.382, "percentage_change": 31.0653293575}, {"date": "2000-05-29", "fuel": "gasoline", "current_price": 1.6254166667, "yoy_price": 1.2144166667, "absolute_change": 0.411, "percentage_change": 33.8434090441}, {"date": "2000-06-05", "fuel": "gasoline", "current_price": 1.6456666667, "yoy_price": 1.21125, "absolute_change": 0.4344166667, "percentage_change": 35.8651530788}, {"date": "2000-06-12", "fuel": "gasoline", "current_price": 1.6994166667, "yoy_price": 1.2073333333, "absolute_change": 0.4920833333, "percentage_change": 40.7578685809}, {"date": "2000-06-19", "fuel": "gasoline", "current_price": 1.7399166667, "yoy_price": 1.2195, "absolute_change": 0.5204166667, "percentage_change": 42.6745934126}, {"date": "2000-06-26", "fuel": "gasoline", "current_price": 1.7258333333, "yoy_price": 1.2113333333, "absolute_change": 0.5145, "percentage_change": 42.4738580077}, {"date": "2000-07-03", "fuel": "gasoline", "current_price": 1.7075, "yoy_price": 1.22, "absolute_change": 0.4875, "percentage_change": 39.9590163934}, {"date": "2000-07-10", "fuel": "gasoline", "current_price": 1.6853333333, "yoy_price": 1.2401666667, "absolute_change": 0.4451666667, "percentage_change": 35.8957129418}, {"date": "2000-07-17", "fuel": "gasoline", "current_price": 1.6488333333, "yoy_price": 1.2691666667, "absolute_change": 0.3796666667, "percentage_change": 29.9146421536}, {"date": "2000-07-24", "fuel": "gasoline", "current_price": 1.6263333333, "yoy_price": 1.29075, "absolute_change": 0.3355833333, "percentage_change": 25.9990961327}, {"date": "2000-07-31", "fuel": "gasoline", "current_price": 1.5839166667, "yoy_price": 1.2959166667, "absolute_change": 0.288, "percentage_change": 22.2236512121}, {"date": "2000-08-07", "fuel": "gasoline", "current_price": 1.573, "yoy_price": 1.3089166667, "absolute_change": 0.2640833333, "percentage_change": 20.1757178328}, {"date": "2000-08-14", "fuel": "gasoline", "current_price": 1.5595, "yoy_price": 1.3348333333, "absolute_change": 0.2246666667, "percentage_change": 16.8310650518}, {"date": "2000-08-21", "fuel": "gasoline", "current_price": 1.5729166667, "yoy_price": 1.33425, "absolute_change": 0.2386666667, "percentage_change": 17.8877022047}, {"date": "2000-08-28", "fuel": "gasoline", "current_price": 1.5854166667, "yoy_price": 1.3328333333, "absolute_change": 0.2525833333, "percentage_change": 18.9508565712}, {"date": "2000-09-04", "fuel": "gasoline", "current_price": 1.6298333333, "yoy_price": 1.3393333333, "absolute_change": 0.2905, "percentage_change": 21.6898954704}, {"date": "2000-09-11", "fuel": "gasoline", "current_price": 1.6595833333, "yoy_price": 1.3453333333, "absolute_change": 0.31425, "percentage_change": 23.3585232904}, {"date": "2000-09-18", "fuel": "gasoline", "current_price": 1.6579166667, "yoy_price": 1.3605833333, "absolute_change": 0.2973333333, "percentage_change": 21.8533717156}, {"date": "2000-09-25", "fuel": "gasoline", "current_price": 1.6485, "yoy_price": 1.3545, "absolute_change": 0.294, "percentage_change": 21.7054263566}, {"date": "2000-10-02", "fuel": "gasoline", "current_price": 1.6289166667, "yoy_price": 1.3503333333, "absolute_change": 0.2785833333, "percentage_change": 20.630708467}, {"date": "2000-10-09", "fuel": "gasoline", "current_price": 1.60925, "yoy_price": 1.3466666667, "absolute_change": 0.2625833333, "percentage_change": 19.4987623762}, {"date": "2000-10-16", "fuel": "gasoline", "current_price": 1.6384166667, "yoy_price": 1.3353333333, "absolute_change": 0.3030833333, "percentage_change": 22.6972041937}, {"date": "2000-10-23", "fuel": "gasoline", "current_price": 1.6444166667, "yoy_price": 1.3331666667, "absolute_change": 0.31125, "percentage_change": 23.3466683335}, {"date": "2000-10-30", "fuel": "gasoline", "current_price": 1.6425833333, "yoy_price": 1.3265833333, "absolute_change": 0.316, "percentage_change": 23.8205917457}, {"date": "2000-11-06", "fuel": "gasoline", "current_price": 1.62675, "yoy_price": 1.3271666667, "absolute_change": 0.2995833333, "percentage_change": 22.5731508226}, {"date": "2000-11-13", "fuel": "gasoline", "current_price": 1.6224166667, "yoy_price": 1.34325, "absolute_change": 0.2791666667, "percentage_change": 20.7829269806}, {"date": "2000-11-20", "fuel": "gasoline", "current_price": 1.6113333333, "yoy_price": 1.35925, "absolute_change": 0.2520833333, "percentage_change": 18.5457666605}, {"date": "2000-11-27", "fuel": "gasoline", "current_price": 1.6089166667, "yoy_price": 1.3671666667, "absolute_change": 0.24175, "percentage_change": 17.6825551627}, {"date": "2000-12-04", "fuel": "gasoline", "current_price": 1.58775, "yoy_price": 1.3674166667, "absolute_change": 0.2203333333, "percentage_change": 16.1131086599}, {"date": "2000-12-11", "fuel": "gasoline", "current_price": 1.5559166667, "yoy_price": 1.3680833333, "absolute_change": 0.1878333333, "percentage_change": 13.7296704635}, {"date": "2000-12-18", "fuel": "gasoline", "current_price": 1.5295833333, "yoy_price": 1.3629166667, "absolute_change": 0.1666666667, "percentage_change": 12.2286762458}, {"date": "2000-12-25", "fuel": "gasoline", "current_price": 1.5176666667, "yoy_price": 1.3658333333, "absolute_change": 0.1518333333, "percentage_change": 11.1165344722}, {"date": "2001-01-01", "fuel": "gasoline", "current_price": 1.5119166667, "yoy_price": 1.3645, "absolute_change": 0.1474166667, "percentage_change": 10.8037132039}, {"date": "2001-01-08", "fuel": "gasoline", "current_price": 1.5254166667, "yoy_price": 1.3575833333, "absolute_change": 0.1678333333, "percentage_change": 12.3626542263}, {"date": "2001-01-15", "fuel": "gasoline", "current_price": 1.5641666667, "yoy_price": 1.3674166667, "absolute_change": 0.19675, "percentage_change": 14.3884453653}, {"date": "2001-01-22", "fuel": "gasoline", "current_price": 1.562, "yoy_price": 1.3995, "absolute_change": 0.1625, "percentage_change": 11.6112897463}, {"date": "2001-01-29", "fuel": "gasoline", "current_price": 1.551, "yoy_price": 1.4033333333, "absolute_change": 0.1476666667, "percentage_change": 10.5225653207}, {"date": "2001-02-05", "fuel": "gasoline", "current_price": 1.5389166667, "yoy_price": 1.4104166667, "absolute_change": 0.1285, "percentage_change": 9.1107828656}, {"date": "2001-02-12", "fuel": "gasoline", "current_price": 1.5669166667, "yoy_price": 1.4378333333, "absolute_change": 0.1290833333, "percentage_change": 8.977628376}, {"date": "2001-02-19", "fuel": "gasoline", "current_price": 1.5478333333, "yoy_price": 1.4835, "absolute_change": 0.0643333333, "percentage_change": 4.3365913942}, {"date": "2001-02-26", "fuel": "gasoline", "current_price": 1.532, "yoy_price": 1.5021666667, "absolute_change": 0.0298333333, "percentage_change": 1.9860201931}, {"date": "2001-03-05", "fuel": "gasoline", "current_price": 1.5219166667, "yoy_price": 1.5858333333, "absolute_change": -0.0639166667, "percentage_change": -4.0304781923}, {"date": "2001-03-12", "fuel": "gasoline", "current_price": 1.5171666667, "yoy_price": 1.6205833333, "absolute_change": -0.1034166667, "percentage_change": -6.3814470098}, {"date": "2001-03-19", "fuel": "gasoline", "current_price": 1.5091666667, "yoy_price": 1.62925, "absolute_change": -0.1200833333, "percentage_change": -7.3704669838}, {"date": "2001-03-26", "fuel": "gasoline", "current_price": 1.50775, "yoy_price": 1.613, "absolute_change": -0.10525, "percentage_change": -6.5251084935}, {"date": "2001-04-02", "fuel": "gasoline", "current_price": 1.543, "yoy_price": 1.6068333333, "absolute_change": -0.0638333333, "percentage_change": -3.9726169484}, {"date": "2001-04-09", "fuel": "gasoline", "current_price": 1.5984166667, "yoy_price": 1.5824166667, "absolute_change": 0.016, "percentage_change": 1.0111116962}, {"date": "2001-04-16", "fuel": "gasoline", "current_price": 1.6590833333, "yoy_price": 1.5545, "absolute_change": 0.1045833333, "percentage_change": 6.7277795647}, {"date": "2001-04-23", "fuel": "gasoline", "current_price": 1.7113333333, "yoy_price": 1.5449166667, "absolute_change": 0.1664166667, "percentage_change": 10.7718862938}, {"date": "2001-04-30", "fuel": "gasoline", "current_price": 1.7231666667, "yoy_price": 1.52925, "absolute_change": 0.1939166667, "percentage_change": 12.6805078742}, {"date": "2001-05-07", "fuel": "gasoline", "current_price": 1.7915, "yoy_price": 1.5560833333, "absolute_change": 0.2354166667, "percentage_change": 15.1287955872}, {"date": "2001-05-14", "fuel": "gasoline", "current_price": 1.8036666667, "yoy_price": 1.5860833333, "absolute_change": 0.2175833333, "percentage_change": 13.718278779}, {"date": "2001-05-21", "fuel": "gasoline", "current_price": 1.7833333333, "yoy_price": 1.6116666667, "absolute_change": 0.1716666667, "percentage_change": 10.6514994829}, {"date": "2001-05-28", "fuel": "gasoline", "current_price": 1.7961666667, "yoy_price": 1.6254166667, "absolute_change": 0.17075, "percentage_change": 10.5049987183}, {"date": "2001-06-04", "fuel": "gasoline", "current_price": 1.7734166667, "yoy_price": 1.6456666667, "absolute_change": 0.12775, "percentage_change": 7.7628114239}, {"date": "2001-06-11", "fuel": "gasoline", "current_price": 1.7493333333, "yoy_price": 1.6994166667, "absolute_change": 0.0499166667, "percentage_change": 2.9372824008}, {"date": "2001-06-18", "fuel": "gasoline", "current_price": 1.709, "yoy_price": 1.7399166667, "absolute_change": -0.0309166667, "percentage_change": -1.7769050242}, {"date": "2001-06-25", "fuel": "gasoline", "current_price": 1.6539166667, "yoy_price": 1.7258333333, "absolute_change": -0.0719166667, "percentage_change": -4.1670690488}, {"date": "2001-07-02", "fuel": "gasoline", "current_price": 1.594, "yoy_price": 1.7075, "absolute_change": -0.1135, "percentage_change": -6.6471449488}, {"date": "2001-07-09", "fuel": "gasoline", "current_price": 1.5575, "yoy_price": 1.6853333333, "absolute_change": -0.1278333333, "percentage_change": -7.5850474684}, {"date": "2001-07-16", "fuel": "gasoline", "current_price": 1.531, "yoy_price": 1.6488333333, "absolute_change": -0.1178333333, "percentage_change": -7.146467199}, {"date": "2001-07-23", "fuel": "gasoline", "current_price": 1.509, "yoy_price": 1.6263333333, "absolute_change": -0.1173333333, "percentage_change": -7.2145931543}, {"date": "2001-07-30", "fuel": "gasoline", "current_price": 1.4925, "yoy_price": 1.5839166667, "absolute_change": -0.0914166667, "percentage_change": -5.7715578471}, {"date": "2001-08-06", "fuel": "gasoline", "current_price": 1.4800833333, "yoy_price": 1.573, "absolute_change": -0.0929166667, "percentage_change": -5.9069718161}, {"date": "2001-08-13", "fuel": "gasoline", "current_price": 1.48925, "yoy_price": 1.5595, "absolute_change": -0.07025, "percentage_change": -4.5046489259}, {"date": "2001-08-20", "fuel": "gasoline", "current_price": 1.5150833333, "yoy_price": 1.5729166667, "absolute_change": -0.0578333333, "percentage_change": -3.6768211921}, {"date": "2001-08-27", "fuel": "gasoline", "current_price": 1.5595833333, "yoy_price": 1.5854166667, "absolute_change": -0.0258333333, "percentage_change": -1.629434954}, {"date": "2001-09-03", "fuel": "gasoline", "current_price": 1.6145833333, "yoy_price": 1.6298333333, "absolute_change": -0.01525, "percentage_change": -0.9356784947}, {"date": "2001-09-10", "fuel": "gasoline", "current_price": 1.6018333333, "yoy_price": 1.6595833333, "absolute_change": -0.05775, "percentage_change": -3.4797891037}, {"date": "2001-09-17", "fuel": "gasoline", "current_price": 1.6029166667, "yoy_price": 1.6579166667, "absolute_change": -0.055, "percentage_change": -3.3174164363}, {"date": "2001-09-24", "fuel": "gasoline", "current_price": 1.56675, "yoy_price": 1.6485, "absolute_change": -0.08175, "percentage_change": -4.9590536852}, {"date": "2001-10-01", "fuel": "gasoline", "current_price": 1.5041666667, "yoy_price": 1.6289166667, "absolute_change": -0.12475, "percentage_change": -7.6584642145}, {"date": "2001-10-08", "fuel": "gasoline", "current_price": 1.44575, "yoy_price": 1.60925, "absolute_change": -0.1635, "percentage_change": -10.1600124281}, {"date": "2001-10-15", "fuel": "gasoline", "current_price": 1.4055, "yoy_price": 1.6384166667, "absolute_change": -0.2329166667, "percentage_change": -14.215960531}, {"date": "2001-10-22", "fuel": "gasoline", "current_price": 1.3616666667, "yoy_price": 1.6444166667, "absolute_change": -0.28275, "percentage_change": -17.1945472052}, {"date": "2001-10-29", "fuel": "gasoline", "current_price": 1.3309166667, "yoy_price": 1.6425833333, "absolute_change": -0.3116666667, "percentage_change": -18.9741768556}, {"date": "2001-11-05", "fuel": "gasoline", "current_price": 1.3013333333, "yoy_price": 1.62675, "absolute_change": -0.3254166667, "percentage_change": -20.0040981507}, {"date": "2001-11-12", "fuel": "gasoline", "current_price": 1.2753333333, "yoy_price": 1.6224166667, "absolute_change": -0.3470833333, "percentage_change": -21.3929837177}, {"date": "2001-11-19", "fuel": "gasoline", "current_price": 1.2565, "yoy_price": 1.6113333333, "absolute_change": -0.3548333333, "percentage_change": -22.0211005379}, {"date": "2001-11-26", "fuel": "gasoline", "current_price": 1.217, "yoy_price": 1.6089166667, "absolute_change": -0.3919166667, "percentage_change": -24.3590407624}, {"date": "2001-12-03", "fuel": "gasoline", "current_price": 1.19575, "yoy_price": 1.58775, "absolute_change": -0.392, "percentage_change": -24.6890253503}, {"date": "2001-12-10", "fuel": "gasoline", "current_price": 1.1815833333, "yoy_price": 1.5559166667, "absolute_change": -0.3743333333, "percentage_change": -24.0587006588}, {"date": "2001-12-17", "fuel": "gasoline", "current_price": 1.1470833333, "yoy_price": 1.5295833333, "absolute_change": -0.3825, "percentage_change": -25.0068101335}, {"date": "2001-12-24", "fuel": "gasoline", "current_price": 1.1550833333, "yoy_price": 1.5176666667, "absolute_change": -0.3625833333, "percentage_change": -23.8908412036}, {"date": "2001-12-31", "fuel": "gasoline", "current_price": 1.175, "yoy_price": 1.5119166667, "absolute_change": -0.3369166667, "percentage_change": -22.2840765033}, {"date": "2002-01-07", "fuel": "gasoline", "current_price": 1.1911666667, "yoy_price": 1.5254166667, "absolute_change": -0.33425, "percentage_change": -21.9120458891}, {"date": "2002-01-14", "fuel": "gasoline", "current_price": 1.1951666667, "yoy_price": 1.5641666667, "absolute_change": -0.369, "percentage_change": -23.5908364411}, {"date": "2002-01-21", "fuel": "gasoline", "current_price": 1.191, "yoy_price": 1.562, "absolute_change": -0.371, "percentage_change": -23.7516005122}, {"date": "2002-01-28", "fuel": "gasoline", "current_price": 1.18775, "yoy_price": 1.551, "absolute_change": -0.36325, "percentage_change": -23.4203739523}, {"date": "2002-02-04", "fuel": "gasoline", "current_price": 1.2014166667, "yoy_price": 1.5389166667, "absolute_change": -0.3375, "percentage_change": -21.9310120756}, {"date": "2002-02-11", "fuel": "gasoline", "current_price": 1.1946666667, "yoy_price": 1.5669166667, "absolute_change": -0.37225, "percentage_change": -23.7568473116}, {"date": "2002-02-18", "fuel": "gasoline", "current_price": 1.2049166667, "yoy_price": 1.5478333333, "absolute_change": -0.3429166667, "percentage_change": -22.1546247443}, {"date": "2002-02-25", "fuel": "gasoline", "current_price": 1.2063333333, "yoy_price": 1.532, "absolute_change": -0.3256666667, "percentage_change": -21.2576153177}, {"date": "2002-03-04", "fuel": "gasoline", "current_price": 1.23225, "yoy_price": 1.5219166667, "absolute_change": -0.2896666667, "percentage_change": -19.0330175765}, {"date": "2002-03-11", "fuel": "gasoline", "current_price": 1.3095, "yoy_price": 1.5171666667, "absolute_change": -0.2076666667, "percentage_change": -13.6877952323}, {"date": "2002-03-18", "fuel": "gasoline", "current_price": 1.37525, "yoy_price": 1.5091666667, "absolute_change": -0.1339166667, "percentage_change": -8.8735505246}, {"date": "2002-03-25", "fuel": "gasoline", "current_price": 1.4305, "yoy_price": 1.50775, "absolute_change": -0.07725, "percentage_change": -5.1235284364}, {"date": "2002-04-01", "fuel": "gasoline", "current_price": 1.4621666667, "yoy_price": 1.543, "absolute_change": -0.0808333333, "percentage_change": -5.2387124649}, {"date": "2002-04-08", "fuel": "gasoline", "current_price": 1.5031666667, "yoy_price": 1.5984166667, "absolute_change": -0.09525, "percentage_change": -5.9590219488}, {"date": "2002-04-15", "fuel": "gasoline", "current_price": 1.4981666667, "yoy_price": 1.6590833333, "absolute_change": -0.1609166667, "percentage_change": -9.6991310463}, {"date": "2002-04-22", "fuel": "gasoline", "current_price": 1.4981666667, "yoy_price": 1.7113333333, "absolute_change": -0.2131666667, "percentage_change": -12.4561745228}, {"date": "2002-04-29", "fuel": "gasoline", "current_price": 1.4885, "yoy_price": 1.7231666667, "absolute_change": -0.2346666667, "percentage_change": -13.6183383306}, {"date": "2002-05-06", "fuel": "gasoline", "current_price": 1.49, "yoy_price": 1.7915, "absolute_change": -0.3015, "percentage_change": -16.8294725091}, {"date": "2002-05-13", "fuel": "gasoline", "current_price": 1.4839166667, "yoy_price": 1.8036666667, "absolute_change": -0.31975, "percentage_change": -17.7277767511}, {"date": "2002-05-20", "fuel": "gasoline", "current_price": 1.4909166667, "yoy_price": 1.7833333333, "absolute_change": -0.2924166667, "percentage_change": -16.3971962617}, {"date": "2002-05-27", "fuel": "gasoline", "current_price": 1.4819166667, "yoy_price": 1.7961666667, "absolute_change": -0.31425, "percentage_change": -17.4955924654}, {"date": "2002-06-03", "fuel": "gasoline", "current_price": 1.4848333333, "yoy_price": 1.7734166667, "absolute_change": -0.2885833333, "percentage_change": -16.2727315446}, {"date": "2002-06-10", "fuel": "gasoline", "current_price": 1.47, "yoy_price": 1.7493333333, "absolute_change": -0.2793333333, "percentage_change": -15.9679878049}, {"date": "2002-06-17", "fuel": "gasoline", "current_price": 1.473, "yoy_price": 1.709, "absolute_change": -0.236, "percentage_change": -13.8092451726}, {"date": "2002-06-24", "fuel": "gasoline", "current_price": 1.47825, "yoy_price": 1.6539166667, "absolute_change": -0.1756666667, "percentage_change": -10.6212525823}, {"date": "2002-07-01", "fuel": "gasoline", "current_price": 1.4840833333, "yoy_price": 1.594, "absolute_change": -0.1099166667, "percentage_change": -6.8956503555}, {"date": "2002-07-08", "fuel": "gasoline", "current_price": 1.4753333333, "yoy_price": 1.5575, "absolute_change": -0.0821666667, "percentage_change": -5.2755484216}, {"date": "2002-07-15", "fuel": "gasoline", "current_price": 1.4848333333, "yoy_price": 1.531, "absolute_change": -0.0461666667, "percentage_change": -3.0154583061}, {"date": "2002-07-22", "fuel": "gasoline", "current_price": 1.4994166667, "yoy_price": 1.509, "absolute_change": -0.0095833333, "percentage_change": -0.6350784184}, {"date": "2002-07-29", "fuel": "gasoline", "current_price": 1.4964166667, "yoy_price": 1.4925, "absolute_change": 0.0039166667, "percentage_change": 0.2624232272}, {"date": "2002-08-05", "fuel": "gasoline", "current_price": 1.48975, "yoy_price": 1.4800833333, "absolute_change": 0.0096666667, "percentage_change": 0.6531163786}, {"date": "2002-08-12", "fuel": "gasoline", "current_price": 1.487, "yoy_price": 1.48925, "absolute_change": -0.00225, "percentage_change": -0.1510827598}, {"date": "2002-08-19", "fuel": "gasoline", "current_price": 1.4855833333, "yoy_price": 1.5150833333, "absolute_change": -0.0295, "percentage_change": -1.9470876189}, {"date": "2002-08-26", "fuel": "gasoline", "current_price": 1.49675, "yoy_price": 1.5595833333, "absolute_change": -0.0628333333, "percentage_change": -4.0288538605}, {"date": "2002-09-02", "fuel": "gasoline", "current_price": 1.489, "yoy_price": 1.6145833333, "absolute_change": -0.1255833333, "percentage_change": -7.7780645161}, {"date": "2002-09-09", "fuel": "gasoline", "current_price": 1.4896666667, "yoy_price": 1.6018333333, "absolute_change": -0.1121666667, "percentage_change": -7.0023930912}, {"date": "2002-09-16", "fuel": "gasoline", "current_price": 1.4935, "yoy_price": 1.6029166667, "absolute_change": -0.1094166667, "percentage_change": -6.8260982584}, {"date": "2002-09-23", "fuel": "gasoline", "current_price": 1.4884166667, "yoy_price": 1.56675, "absolute_change": -0.0783333333, "percentage_change": -4.9997340567}, {"date": "2002-09-30", "fuel": "gasoline", "current_price": 1.5038333333, "yoy_price": 1.5041666667, "absolute_change": -0.0003333333, "percentage_change": -0.0221606648}, {"date": "2002-10-07", "fuel": "gasoline", "current_price": 1.526, "yoy_price": 1.44575, "absolute_change": 0.08025, "percentage_change": 5.5507522047}, {"date": "2002-10-14", "fuel": "gasoline", "current_price": 1.5265, "yoy_price": 1.4055, "absolute_change": 0.121, "percentage_change": 8.6090359303}, {"date": "2002-10-21", "fuel": "gasoline", "current_price": 1.5418333333, "yoy_price": 1.3616666667, "absolute_change": 0.1801666667, "percentage_change": 13.2313341493}, {"date": "2002-10-28", "fuel": "gasoline", "current_price": 1.53, "yoy_price": 1.3309166667, "absolute_change": 0.1990833333, "percentage_change": 14.9583620312}, {"date": "2002-11-04", "fuel": "gasoline", "current_price": 1.5349166667, "yoy_price": 1.3013333333, "absolute_change": 0.2335833333, "percentage_change": 17.9495389344}, {"date": "2002-11-11", "fuel": "gasoline", "current_price": 1.5301666667, "yoy_price": 1.2753333333, "absolute_change": 0.2548333333, "percentage_change": 19.9817041296}, {"date": "2002-11-18", "fuel": "gasoline", "current_price": 1.5036666667, "yoy_price": 1.2565, "absolute_change": 0.2471666667, "percentage_change": 19.671043905}, {"date": "2002-11-25", "fuel": "gasoline", "current_price": 1.4781666667, "yoy_price": 1.217, "absolute_change": 0.2611666667, "percentage_change": 21.4598740071}, {"date": "2002-12-02", "fuel": "gasoline", "current_price": 1.4655833333, "yoy_price": 1.19575, "absolute_change": 0.2698333333, "percentage_change": 22.5660324761}, {"date": "2002-12-09", "fuel": "gasoline", "current_price": 1.46025, "yoy_price": 1.1815833333, "absolute_change": 0.2786666667, "percentage_change": 23.5841737781}, {"date": "2002-12-16", "fuel": "gasoline", "current_price": 1.462, "yoy_price": 1.1470833333, "absolute_change": 0.3149166667, "percentage_change": 27.453686887}, {"date": "2002-12-23", "fuel": "gasoline", "current_price": 1.49375, "yoy_price": 1.1550833333, "absolute_change": 0.3386666667, "percentage_change": 29.3196739052}, {"date": "2002-12-30", "fuel": "gasoline", "current_price": 1.5318333333, "yoy_price": 1.175, "absolute_change": 0.3568333333, "percentage_change": 30.3687943262}, {"date": "2003-01-06", "fuel": "gasoline", "current_price": 1.5385, "yoy_price": 1.1911666667, "absolute_change": 0.3473333333, "percentage_change": 29.1590877291}, {"date": "2003-01-13", "fuel": "gasoline", "current_price": 1.54725, "yoy_price": 1.1951666667, "absolute_change": 0.3520833333, "percentage_change": 29.4589318087}, {"date": "2003-01-20", "fuel": "gasoline", "current_price": 1.5548333333, "yoy_price": 1.191, "absolute_change": 0.3638333333, "percentage_change": 30.5485586342}, {"date": "2003-01-27", "fuel": "gasoline", "current_price": 1.5669166667, "yoy_price": 1.18775, "absolute_change": 0.3791666667, "percentage_change": 31.9231039079}, {"date": "2003-02-03", "fuel": "gasoline", "current_price": 1.6178333333, "yoy_price": 1.2014166667, "absolute_change": 0.4164166667, "percentage_change": 34.6604702781}, {"date": "2003-02-10", "fuel": "gasoline", "current_price": 1.6974166667, "yoy_price": 1.1946666667, "absolute_change": 0.50275, "percentage_change": 42.0828683036}, {"date": "2003-02-17", "fuel": "gasoline", "current_price": 1.75, "yoy_price": 1.2049166667, "absolute_change": 0.5450833333, "percentage_change": 45.2382599073}, {"date": "2003-02-24", "fuel": "gasoline", "current_price": 1.7515833333, "yoy_price": 1.2063333333, "absolute_change": 0.54525, "percentage_change": 45.1989499862}, {"date": "2003-03-03", "fuel": "gasoline", "current_price": 1.7805833333, "yoy_price": 1.23225, "absolute_change": 0.5483333333, "percentage_change": 44.4985460202}, {"date": "2003-03-10", "fuel": "gasoline", "current_price": 1.8073333333, "yoy_price": 1.3095, "absolute_change": 0.4978333333, "percentage_change": 38.0170548555}, {"date": "2003-03-17", "fuel": "gasoline", "current_price": 1.8255833333, "yoy_price": 1.37525, "absolute_change": 0.4503333333, "percentage_change": 32.7455614131}, {"date": "2003-03-24", "fuel": "gasoline", "current_price": 1.7935, "yoy_price": 1.4305, "absolute_change": 0.363, "percentage_change": 25.3757427473}, {"date": "2003-03-31", "fuel": "gasoline", "current_price": 1.7578333333, "yoy_price": 1.4621666667, "absolute_change": 0.2956666667, "percentage_change": 20.2211330218}, {"date": "2003-04-07", "fuel": "gasoline", "current_price": 1.739, "yoy_price": 1.5031666667, "absolute_change": 0.2358333333, "percentage_change": 15.6891007872}, {"date": "2003-04-14", "fuel": "gasoline", "current_price": 1.7065, "yoy_price": 1.4981666667, "absolute_change": 0.2083333333, "percentage_change": 13.9058849705}, {"date": "2003-04-21", "fuel": "gasoline", "current_price": 1.683, "yoy_price": 1.4981666667, "absolute_change": 0.1848333333, "percentage_change": 12.3373011458}, {"date": "2003-04-28", "fuel": "gasoline", "current_price": 1.6653333333, "yoy_price": 1.4885, "absolute_change": 0.1768333333, "percentage_change": 11.8799686485}, {"date": "2003-05-05", "fuel": "gasoline", "current_price": 1.6220833333, "yoy_price": 1.49, "absolute_change": 0.1320833333, "percentage_change": 8.8646532438}, {"date": "2003-05-12", "fuel": "gasoline", "current_price": 1.5969166667, "yoy_price": 1.4839166667, "absolute_change": 0.113, "percentage_change": 7.6149828719}, {"date": "2003-05-19", "fuel": "gasoline", "current_price": 1.597, "yoy_price": 1.4909166667, "absolute_change": 0.1060833333, "percentage_change": 7.1153093734}, {"date": "2003-05-26", "fuel": "gasoline", "current_price": 1.5835833333, "yoy_price": 1.4819166667, "absolute_change": 0.1016666667, "percentage_change": 6.8604847326}, {"date": "2003-06-02", "fuel": "gasoline", "current_price": 1.5686666667, "yoy_price": 1.4848333333, "absolute_change": 0.0838333333, "percentage_change": 5.6459759793}, {"date": "2003-06-09", "fuel": "gasoline", "current_price": 1.57975, "yoy_price": 1.47, "absolute_change": 0.10975, "percentage_change": 7.4659863946}, {"date": "2003-06-16", "fuel": "gasoline", "current_price": 1.6100833333, "yoy_price": 1.473, "absolute_change": 0.1370833333, "percentage_change": 9.3064041638}, {"date": "2003-06-23", "fuel": "gasoline", "current_price": 1.59225, "yoy_price": 1.47825, "absolute_change": 0.114, "percentage_change": 7.7118214105}, {"date": "2003-06-30", "fuel": "gasoline", "current_price": 1.5835833333, "yoy_price": 1.4840833333, "absolute_change": 0.0995, "percentage_change": 6.7044752653}, {"date": "2003-07-07", "fuel": "gasoline", "current_price": 1.5844166667, "yoy_price": 1.4753333333, "absolute_change": 0.1090833333, "percentage_change": 7.3938093086}, {"date": "2003-07-14", "fuel": "gasoline", "current_price": 1.6138333333, "yoy_price": 1.4848333333, "absolute_change": 0.129, "percentage_change": 8.6878437535}, {"date": "2003-07-21", "fuel": "gasoline", "current_price": 1.616, "yoy_price": 1.4994166667, "absolute_change": 0.1165833333, "percentage_change": 7.775245929}, {"date": "2003-07-28", "fuel": "gasoline", "current_price": 1.60775, "yoy_price": 1.4964166667, "absolute_change": 0.1113333333, "percentage_change": 7.4399955449}, {"date": "2003-08-04", "fuel": "gasoline", "current_price": 1.6225833333, "yoy_price": 1.48975, "absolute_change": 0.1328333333, "percentage_change": 8.9164848688}, {"date": "2003-08-11", "fuel": "gasoline", "current_price": 1.6566666667, "yoy_price": 1.487, "absolute_change": 0.1696666667, "percentage_change": 11.4099977584}, {"date": "2003-08-18", "fuel": "gasoline", "current_price": 1.7179166667, "yoy_price": 1.4855833333, "absolute_change": 0.2323333333, "percentage_change": 15.6391989679}, {"date": "2003-08-25", "fuel": "gasoline", "current_price": 1.8441666667, "yoy_price": 1.49675, "absolute_change": 0.3474166667, "percentage_change": 23.2114024832}, {"date": "2003-09-01", "fuel": "gasoline", "current_price": 1.8455, "yoy_price": 1.489, "absolute_change": 0.3565, "percentage_change": 23.9422431162}, {"date": "2003-09-08", "fuel": "gasoline", "current_price": 1.82, "yoy_price": 1.4896666667, "absolute_change": 0.3303333333, "percentage_change": 22.1749832177}, {"date": "2003-09-15", "fuel": "gasoline", "current_price": 1.79925, "yoy_price": 1.4935, "absolute_change": 0.30575, "percentage_change": 20.4720455306}, {"date": "2003-09-22", "fuel": "gasoline", "current_price": 1.749, "yoy_price": 1.4884166667, "absolute_change": 0.2605833333, "percentage_change": 17.5074183976}, {"date": "2003-09-29", "fuel": "gasoline", "current_price": 1.7005833333, "yoy_price": 1.5038333333, "absolute_change": 0.19675, "percentage_change": 13.0832317411}, {"date": "2003-10-06", "fuel": "gasoline", "current_price": 1.68025, "yoy_price": 1.526, "absolute_change": 0.15425, "percentage_change": 10.1081258191}, {"date": "2003-10-13", "fuel": "gasoline", "current_price": 1.6696666667, "yoy_price": 1.5265, "absolute_change": 0.1431666667, "percentage_change": 9.378753139}, {"date": "2003-10-20", "fuel": "gasoline", "current_price": 1.6673333333, "yoy_price": 1.5418333333, "absolute_change": 0.1255, "percentage_change": 8.1396605772}, {"date": "2003-10-27", "fuel": "gasoline", "current_price": 1.6398333333, "yoy_price": 1.53, "absolute_change": 0.1098333333, "percentage_change": 7.1786492375}, {"date": "2003-11-03", "fuel": "gasoline", "current_price": 1.6315833333, "yoy_price": 1.5349166667, "absolute_change": 0.0966666667, "percentage_change": 6.297844617}, {"date": "2003-11-10", "fuel": "gasoline", "current_price": 1.6018333333, "yoy_price": 1.5301666667, "absolute_change": 0.0716666667, "percentage_change": 4.683585666}, {"date": "2003-11-17", "fuel": "gasoline", "current_price": 1.5941666667, "yoy_price": 1.5036666667, "absolute_change": 0.0905, "percentage_change": 6.0186211483}, {"date": "2003-11-24", "fuel": "gasoline", "current_price": 1.60675, "yoy_price": 1.4781666667, "absolute_change": 0.1285833333, "percentage_change": 8.6988386515}, {"date": "2003-12-01", "fuel": "gasoline", "current_price": 1.5871666667, "yoy_price": 1.4655833333, "absolute_change": 0.1215833333, "percentage_change": 8.295900381}, {"date": "2003-12-08", "fuel": "gasoline", "current_price": 1.5726666667, "yoy_price": 1.46025, "absolute_change": 0.1124166667, "percentage_change": 7.6984534612}, {"date": "2003-12-15", "fuel": "gasoline", "current_price": 1.56125, "yoy_price": 1.462, "absolute_change": 0.09925, "percentage_change": 6.7886456908}, {"date": "2003-12-22", "fuel": "gasoline", "current_price": 1.5781666667, "yoy_price": 1.49375, "absolute_change": 0.0844166667, "percentage_change": 5.6513249651}, {"date": "2003-12-29", "fuel": "gasoline", "current_price": 1.5713333333, "yoy_price": 1.5318333333, "absolute_change": 0.0395, "percentage_change": 2.5786095093}, {"date": "2004-01-05", "fuel": "gasoline", "current_price": 1.5993333333, "yoy_price": 1.5385, "absolute_change": 0.0608333333, "percentage_change": 3.954067815}, {"date": "2004-01-12", "fuel": "gasoline", "current_price": 1.6494166667, "yoy_price": 1.54725, "absolute_change": 0.1021666667, "percentage_change": 6.60311305}, {"date": "2004-01-19", "fuel": "gasoline", "current_price": 1.6829166667, "yoy_price": 1.5548333333, "absolute_change": 0.1280833333, "percentage_change": 8.2377532426}, {"date": "2004-01-26", "fuel": "gasoline", "current_price": 1.711, "yoy_price": 1.5669166667, "absolute_change": 0.1440833333, "percentage_change": 9.195341169}, {"date": "2004-02-02", "fuel": "gasoline", "current_price": 1.7094166667, "yoy_price": 1.6178333333, "absolute_change": 0.0915833333, "percentage_change": 5.6608632945}, {"date": "2004-02-09", "fuel": "gasoline", "current_price": 1.7310833333, "yoy_price": 1.6974166667, "absolute_change": 0.0336666667, "percentage_change": 1.9834061564}, {"date": "2004-02-16", "fuel": "gasoline", "current_price": 1.74075, "yoy_price": 1.75, "absolute_change": -0.00925, "percentage_change": -0.5285714286}, {"date": "2004-02-23", "fuel": "gasoline", "current_price": 1.7856666667, "yoy_price": 1.7515833333, "absolute_change": 0.0340833333, "percentage_change": 1.945858509}, {"date": "2004-03-01", "fuel": "gasoline", "current_price": 1.8166666667, "yoy_price": 1.7805833333, "absolute_change": 0.0360833333, "percentage_change": 2.0264894463}, {"date": "2004-03-08", "fuel": "gasoline", "current_price": 1.8374166667, "yoy_price": 1.8073333333, "absolute_change": 0.0300833333, "percentage_change": 1.6645149391}, {"date": "2004-03-15", "fuel": "gasoline", "current_price": 1.8249166667, "yoy_price": 1.8255833333, "absolute_change": -0.0006666667, "percentage_change": -0.0365180079}, {"date": "2004-03-22", "fuel": "gasoline", "current_price": 1.8415, "yoy_price": 1.7935, "absolute_change": 0.048, "percentage_change": 2.676331196}, {"date": "2004-03-29", "fuel": "gasoline", "current_price": 1.8549166667, "yoy_price": 1.7578333333, "absolute_change": 0.0970833333, "percentage_change": 5.5228975064}, {"date": "2004-04-05", "fuel": "gasoline", "current_price": 1.8768333333, "yoy_price": 1.739, "absolute_change": 0.1378333333, "percentage_change": 7.9260111175}, {"date": "2004-04-12", "fuel": "gasoline", "current_price": 1.8833333333, "yoy_price": 1.7065, "absolute_change": 0.1768333333, "percentage_change": 10.3623400723}, {"date": "2004-04-19", "fuel": "gasoline", "current_price": 1.90625, "yoy_price": 1.683, "absolute_change": 0.22325, "percentage_change": 13.2650029709}, {"date": "2004-04-26", "fuel": "gasoline", "current_price": 1.9049166667, "yoy_price": 1.6653333333, "absolute_change": 0.2395833333, "percentage_change": 14.3865092074}, {"date": "2004-05-03", "fuel": "gasoline", "current_price": 1.93375, "yoy_price": 1.6220833333, "absolute_change": 0.3116666667, "percentage_change": 19.2139737991}, {"date": "2004-05-10", "fuel": "gasoline", "current_price": 2.0290833333, "yoy_price": 1.5969166667, "absolute_change": 0.4321666667, "percentage_change": 27.0625684914}, {"date": "2004-05-17", "fuel": "gasoline", "current_price": 2.1054166667, "yoy_price": 1.597, "absolute_change": 0.5084166667, "percentage_change": 31.8357336673}, {"date": "2004-05-24", "fuel": "gasoline", "current_price": 2.1555, "yoy_price": 1.5835833333, "absolute_change": 0.5719166667, "percentage_change": 36.1153502079}, {"date": "2004-05-31", "fuel": "gasoline", "current_price": 2.1475833333, "yoy_price": 1.5686666667, "absolute_change": 0.5789166667, "percentage_change": 36.9050148746}, {"date": "2004-06-07", "fuel": "gasoline", "current_price": 2.1325, "yoy_price": 1.57975, "absolute_change": 0.55275, "percentage_change": 34.9897135623}, {"date": "2004-06-14", "fuel": "gasoline", "current_price": 2.0908333333, "yoy_price": 1.6100833333, "absolute_change": 0.48075, "percentage_change": 29.8587029657}, {"date": "2004-06-21", "fuel": "gasoline", "current_price": 2.04575, "yoy_price": 1.59225, "absolute_change": 0.4535, "percentage_change": 28.4817082745}, {"date": "2004-06-28", "fuel": "gasoline", "current_price": 2.0275, "yoy_price": 1.5835833333, "absolute_change": 0.4439166667, "percentage_change": 28.0324159343}, {"date": "2004-07-05", "fuel": "gasoline", "current_price": 2.0013333333, "yoy_price": 1.5844166667, "absolute_change": 0.4169166667, "percentage_change": 26.3135749224}, {"date": "2004-07-12", "fuel": "gasoline", "current_price": 2.0170833333, "yoy_price": 1.6138333333, "absolute_change": 0.40325, "percentage_change": 24.9870907777}, {"date": "2004-07-19", "fuel": "gasoline", "current_price": 2.026, "yoy_price": 1.616, "absolute_change": 0.41, "percentage_change": 25.3712871287}, {"date": "2004-07-26", "fuel": "gasoline", "current_price": 2.004, "yoy_price": 1.60775, "absolute_change": 0.39625, "percentage_change": 24.646244752}, {"date": "2004-08-02", "fuel": "gasoline", "current_price": 1.9855, "yoy_price": 1.6225833333, "absolute_change": 0.3629166667, "percentage_change": 22.3665964768}, {"date": "2004-08-09", "fuel": "gasoline", "current_price": 1.974, "yoy_price": 1.6566666667, "absolute_change": 0.3173333333, "percentage_change": 19.1549295775}, {"date": "2004-08-16", "fuel": "gasoline", "current_price": 1.9690833333, "yoy_price": 1.7179166667, "absolute_change": 0.2511666667, "percentage_change": 14.6204220228}, {"date": "2004-08-23", "fuel": "gasoline", "current_price": 1.9764166667, "yoy_price": 1.8441666667, "absolute_change": 0.13225, "percentage_change": 7.171260732}, {"date": "2004-08-30", "fuel": "gasoline", "current_price": 1.9636666667, "yoy_price": 1.8455, "absolute_change": 0.1181666667, "percentage_change": 6.4029621602}, {"date": "2004-09-06", "fuel": "gasoline", "current_price": 1.9471666667, "yoy_price": 1.82, "absolute_change": 0.1271666667, "percentage_change": 6.9871794872}, {"date": "2004-09-13", "fuel": "gasoline", "current_price": 1.9415, "yoy_price": 1.79925, "absolute_change": 0.14225, "percentage_change": 7.9060719744}, {"date": "2004-09-20", "fuel": "gasoline", "current_price": 1.9576666667, "yoy_price": 1.749, "absolute_change": 0.2086666667, "percentage_change": 11.930627025}, {"date": "2004-09-27", "fuel": "gasoline", "current_price": 2.00625, "yoy_price": 1.7005833333, "absolute_change": 0.3056666667, "percentage_change": 17.9742245308}, {"date": "2004-10-04", "fuel": "gasoline", "current_price": 2.03225, "yoy_price": 1.68025, "absolute_change": 0.352, "percentage_change": 20.9492635025}, {"date": "2004-10-11", "fuel": "gasoline", "current_price": 2.09025, "yoy_price": 1.6696666667, "absolute_change": 0.4205833333, "percentage_change": 25.1896586145}, {"date": "2004-10-18", "fuel": "gasoline", "current_price": 2.135, "yoy_price": 1.6673333333, "absolute_change": 0.4676666667, "percentage_change": 28.0487804878}, {"date": "2004-10-25", "fuel": "gasoline", "current_price": 2.1330833333, "yoy_price": 1.6398333333, "absolute_change": 0.49325, "percentage_change": 30.0792763492}, {"date": "2004-11-01", "fuel": "gasoline", "current_price": 2.1336666667, "yoy_price": 1.6315833333, "absolute_change": 0.5020833333, "percentage_change": 30.7727667399}, {"date": "2004-11-08", "fuel": "gasoline", "current_price": 2.1045833333, "yoy_price": 1.6018333333, "absolute_change": 0.50275, "percentage_change": 31.3859119759}, {"date": "2004-11-15", "fuel": "gasoline", "current_price": 2.0746666667, "yoy_price": 1.5941666667, "absolute_change": 0.4805, "percentage_change": 30.1411395714}, {"date": "2004-11-22", "fuel": "gasoline", "current_price": 2.0511666667, "yoy_price": 1.60675, "absolute_change": 0.4444166667, "percentage_change": 27.659353768}, {"date": "2004-11-29", "fuel": "gasoline", "current_price": 2.04525, "yoy_price": 1.5871666667, "absolute_change": 0.4580833333, "percentage_change": 28.8617032448}, {"date": "2004-12-06", "fuel": "gasoline", "current_price": 2.0135833333, "yoy_price": 1.5726666667, "absolute_change": 0.4409166667, "percentage_change": 28.0362441713}, {"date": "2004-12-13", "fuel": "gasoline", "current_price": 1.95375, "yoy_price": 1.56125, "absolute_change": 0.3925, "percentage_change": 25.1401120897}, {"date": "2004-12-20", "fuel": "gasoline", "current_price": 1.918, "yoy_price": 1.5781666667, "absolute_change": 0.3398333333, "percentage_change": 21.5334248601}, {"date": "2004-12-27", "fuel": "gasoline", "current_price": 1.8945833333, "yoy_price": 1.5713333333, "absolute_change": 0.32325, "percentage_change": 20.5717013152}, {"date": "2005-01-03", "fuel": "gasoline", "current_price": 1.8795833333, "yoy_price": 1.5993333333, "absolute_change": 0.28025, "percentage_change": 17.5229262193}, {"date": "2005-01-10", "fuel": "gasoline", "current_price": 1.8873333333, "yoy_price": 1.6494166667, "absolute_change": 0.2379166667, "percentage_change": 14.4242914162}, {"date": "2005-01-17", "fuel": "gasoline", "current_price": 1.91075, "yoy_price": 1.6829166667, "absolute_change": 0.2278333333, "percentage_change": 13.5380044565}, {"date": "2005-01-24", "fuel": "gasoline", "current_price": 1.9419166667, "yoy_price": 1.711, "absolute_change": 0.2309166667, "percentage_change": 13.4960062342}, {"date": "2005-01-31", "fuel": "gasoline", "current_price": 1.999, "yoy_price": 1.7094166667, "absolute_change": 0.2895833333, "percentage_change": 16.9404767708}, {"date": "2005-02-07", "fuel": "gasoline", "current_price": 1.9995, "yoy_price": 1.7310833333, "absolute_change": 0.2684166667, "percentage_change": 15.5057045203}, {"date": "2005-02-14", "fuel": "gasoline", "current_price": 1.99025, "yoy_price": 1.74075, "absolute_change": 0.2495, "percentage_change": 14.3329024846}, {"date": "2005-02-21", "fuel": "gasoline", "current_price": 1.9981666667, "yoy_price": 1.7856666667, "absolute_change": 0.2125, "percentage_change": 11.9003173418}, {"date": "2005-02-28", "fuel": "gasoline", "current_price": 2.0178333333, "yoy_price": 1.8166666667, "absolute_change": 0.2011666667, "percentage_change": 11.0733944954}, {"date": "2005-03-07", "fuel": "gasoline", "current_price": 2.0865, "yoy_price": 1.8374166667, "absolute_change": 0.2490833333, "percentage_change": 13.5561703479}, {"date": "2005-03-14", "fuel": "gasoline", "current_price": 2.1434166667, "yoy_price": 1.8249166667, "absolute_change": 0.3185, "percentage_change": 17.4528517284}, {"date": "2005-03-21", "fuel": "gasoline", "current_price": 2.1928333333, "yoy_price": 1.8415, "absolute_change": 0.3513333333, "percentage_change": 19.0786496516}, {"date": "2005-03-28", "fuel": "gasoline", "current_price": 2.239, "yoy_price": 1.8549166667, "absolute_change": 0.3840833333, "percentage_change": 20.7062311874}, {"date": "2005-04-04", "fuel": "gasoline", "current_price": 2.3041666667, "yoy_price": 1.8768333333, "absolute_change": 0.4273333333, "percentage_change": 22.7688482373}, {"date": "2005-04-11", "fuel": "gasoline", "current_price": 2.3708333333, "yoy_price": 1.8833333333, "absolute_change": 0.4875, "percentage_change": 25.8849557522}, {"date": "2005-04-18", "fuel": "gasoline", "current_price": 2.3345833333, "yoy_price": 1.90625, "absolute_change": 0.4283333333, "percentage_change": 22.4699453552}, {"date": "2005-04-25", "fuel": "gasoline", "current_price": 2.3335, "yoy_price": 1.9049166667, "absolute_change": 0.4285833333, "percentage_change": 22.4987969727}, {"date": "2005-05-02", "fuel": "gasoline", "current_price": 2.3328333333, "yoy_price": 1.93375, "absolute_change": 0.3990833333, "percentage_change": 20.637793579}, {"date": "2005-05-09", "fuel": "gasoline", "current_price": 2.2903333333, "yoy_price": 2.0290833333, "absolute_change": 0.26125, "percentage_change": 12.8752720851}, {"date": "2005-05-16", "fuel": "gasoline", "current_price": 2.26375, "yoy_price": 2.1054166667, "absolute_change": 0.1583333333, "percentage_change": 7.5202849792}, {"date": "2005-05-23", "fuel": "gasoline", "current_price": 2.2278333333, "yoy_price": 2.1555, "absolute_change": 0.0723333333, "percentage_change": 3.3557565917}, {"date": "2005-05-30", "fuel": "gasoline", "current_price": 2.1991666667, "yoy_price": 2.1475833333, "absolute_change": 0.0515833333, "percentage_change": 2.401924644}, {"date": "2005-06-06", "fuel": "gasoline", "current_price": 2.21325, "yoy_price": 2.1325, "absolute_change": 0.08075, "percentage_change": 3.7866354045}, {"date": "2005-06-13", "fuel": "gasoline", "current_price": 2.2250833333, "yoy_price": 2.0908333333, "absolute_change": 0.13425, "percentage_change": 6.4208848147}, {"date": "2005-06-20", "fuel": "gasoline", "current_price": 2.2561666667, "yoy_price": 2.04575, "absolute_change": 0.2104166667, "percentage_change": 10.2855513463}, {"date": "2005-06-27", "fuel": "gasoline", "current_price": 2.3065, "yoy_price": 2.0275, "absolute_change": 0.279, "percentage_change": 13.7607891492}, {"date": "2005-07-04", "fuel": "gasoline", "current_price": 2.3208333333, "yoy_price": 2.0013333333, "absolute_change": 0.3195, "percentage_change": 15.9643570953}, {"date": "2005-07-11", "fuel": "gasoline", "current_price": 2.4215, "yoy_price": 2.0170833333, "absolute_change": 0.4044166667, "percentage_change": 20.0495765338}, {"date": "2005-07-18", "fuel": "gasoline", "current_price": 2.4158333333, "yoy_price": 2.026, "absolute_change": 0.3898333333, "percentage_change": 19.241526818}, {"date": "2005-07-25", "fuel": "gasoline", "current_price": 2.394, "yoy_price": 2.004, "absolute_change": 0.39, "percentage_change": 19.4610778443}, {"date": "2005-08-01", "fuel": "gasoline", "current_price": 2.3951666667, "yoy_price": 1.9855, "absolute_change": 0.4096666667, "percentage_change": 20.632922018}, {"date": "2005-08-08", "fuel": "gasoline", "current_price": 2.4658333333, "yoy_price": 1.974, "absolute_change": 0.4918333333, "percentage_change": 24.9155690645}, {"date": "2005-08-15", "fuel": "gasoline", "current_price": 2.6425, "yoy_price": 1.9690833333, "absolute_change": 0.6734166667, "percentage_change": 34.1995006137}, {"date": "2005-08-22", "fuel": "gasoline", "current_price": 2.7038333333, "yoy_price": 1.9764166667, "absolute_change": 0.7274166667, "percentage_change": 36.8048235443}, {"date": "2005-08-29", "fuel": "gasoline", "current_price": 2.7031666667, "yoy_price": 1.9636666667, "absolute_change": 0.7395, "percentage_change": 37.6591410626}, {"date": "2005-09-05", "fuel": "gasoline", "current_price": 3.17175, "yoy_price": 1.9471666667, "absolute_change": 1.2245833333, "percentage_change": 62.890524694}, {"date": "2005-09-12", "fuel": "gasoline", "current_price": 3.0609166667, "yoy_price": 1.9415, "absolute_change": 1.1194166667, "percentage_change": 57.6573096403}, {"date": "2005-09-19", "fuel": "gasoline", "current_price": 2.90075, "yoy_price": 1.9576666667, "absolute_change": 0.9430833333, "percentage_change": 48.1738464158}, {"date": "2005-09-26", "fuel": "gasoline", "current_price": 2.9080833333, "yoy_price": 2.00625, "absolute_change": 0.9018333333, "percentage_change": 44.9511941848}, {"date": "2005-10-03", "fuel": "gasoline", "current_price": 3.0210833333, "yoy_price": 2.03225, "absolute_change": 0.9888333333, "percentage_change": 48.6570713905}, {"date": "2005-10-10", "fuel": "gasoline", "current_price": 2.9484166667, "yoy_price": 2.09025, "absolute_change": 0.8581666667, "percentage_change": 41.0556950923}, {"date": "2005-10-17", "fuel": "gasoline", "current_price": 2.832, "yoy_price": 2.135, "absolute_change": 0.697, "percentage_change": 32.6463700234}, {"date": "2005-10-24", "fuel": "gasoline", "current_price": 2.71075, "yoy_price": 2.1330833333, "absolute_change": 0.5776666667, "percentage_change": 27.0812985897}, {"date": "2005-10-31", "fuel": "gasoline", "current_price": 2.5878333333, "yoy_price": 2.1336666667, "absolute_change": 0.4541666667, "percentage_change": 21.2857366037}, {"date": "2005-11-07", "fuel": "gasoline", "current_price": 2.4826666667, "yoy_price": 2.1045833333, "absolute_change": 0.3780833333, "percentage_change": 17.9647594536}, {"date": "2005-11-14", "fuel": "gasoline", "current_price": 2.39925, "yoy_price": 2.0746666667, "absolute_change": 0.3245833333, "percentage_change": 15.6450835476}, {"date": "2005-11-21", "fuel": "gasoline", "current_price": 2.3025833333, "yoy_price": 2.0511666667, "absolute_change": 0.2514166667, "percentage_change": 12.2572519704}, {"date": "2005-11-28", "fuel": "gasoline", "current_price": 2.2535833333, "yoy_price": 2.04525, "absolute_change": 0.2083333333, "percentage_change": 10.1862038056}, {"date": "2005-12-05", "fuel": "gasoline", "current_price": 2.24, "yoy_price": 2.0135833333, "absolute_change": 0.2264166667, "percentage_change": 11.2444646774}, {"date": "2005-12-12", "fuel": "gasoline", "current_price": 2.2729166667, "yoy_price": 1.95375, "absolute_change": 0.3191666667, "percentage_change": 16.3361057795}, {"date": "2005-12-19", "fuel": "gasoline", "current_price": 2.2985833333, "yoy_price": 1.918, "absolute_change": 0.3805833333, "percentage_change": 19.8427181091}, {"date": "2005-12-26", "fuel": "gasoline", "current_price": 2.2854166667, "yoy_price": 1.8945833333, "absolute_change": 0.3908333333, "percentage_change": 20.6289861447}, {"date": "2006-01-02", "fuel": "gasoline", "current_price": 2.32275, "yoy_price": 1.8795833333, "absolute_change": 0.4431666667, "percentage_change": 23.5779206384}, {"date": "2006-01-09", "fuel": "gasoline", "current_price": 2.4150833333, "yoy_price": 1.8873333333, "absolute_change": 0.52775, "percentage_change": 27.9627340162}, {"date": "2006-01-16", "fuel": "gasoline", "current_price": 2.4175, "yoy_price": 1.91075, "absolute_change": 0.50675, "percentage_change": 26.5209996075}, {"date": "2006-01-23", "fuel": "gasoline", "current_price": 2.4330833333, "yoy_price": 1.9419166667, "absolute_change": 0.4911666667, "percentage_change": 25.292880745}, {"date": "2006-01-30", "fuel": "gasoline", "current_price": 2.4538333333, "yoy_price": 1.999, "absolute_change": 0.4548333333, "percentage_change": 22.7530431883}, {"date": "2006-02-06", "fuel": "gasoline", "current_price": 2.4425, "yoy_price": 1.9995, "absolute_change": 0.443, "percentage_change": 22.1555388847}, {"date": "2006-02-13", "fuel": "gasoline", "current_price": 2.3883333333, "yoy_price": 1.99025, "absolute_change": 0.3980833333, "percentage_change": 20.0016748315}, {"date": "2006-02-20", "fuel": "gasoline", "current_price": 2.34125, "yoy_price": 1.9981666667, "absolute_change": 0.3430833333, "percentage_change": 17.1699057469}, {"date": "2006-02-27", "fuel": "gasoline", "current_price": 2.3454166667, "yoy_price": 2.0178333333, "absolute_change": 0.3275833333, "percentage_change": 16.2344098455}, {"date": "2006-03-06", "fuel": "gasoline", "current_price": 2.4161666667, "yoy_price": 2.0865, "absolute_change": 0.3296666667, "percentage_change": 15.7999840243}, {"date": "2006-03-13", "fuel": "gasoline", "current_price": 2.4521666667, "yoy_price": 2.1434166667, "absolute_change": 0.30875, "percentage_change": 14.4045721395}, {"date": "2006-03-20", "fuel": "gasoline", "current_price": 2.5919166667, "yoy_price": 2.1928333333, "absolute_change": 0.3990833333, "percentage_change": 18.1994375618}, {"date": "2006-03-27", "fuel": "gasoline", "current_price": 2.58975, "yoy_price": 2.239, "absolute_change": 0.35075, "percentage_change": 15.6654756588}, {"date": "2006-04-03", "fuel": "gasoline", "current_price": 2.679, "yoy_price": 2.3041666667, "absolute_change": 0.3748333333, "percentage_change": 16.2676311031}, {"date": "2006-04-10", "fuel": "gasoline", "current_price": 2.7751666667, "yoy_price": 2.3708333333, "absolute_change": 0.4043333333, "percentage_change": 17.0544815466}, {"date": "2006-04-17", "fuel": "gasoline", "current_price": 2.87575, "yoy_price": 2.3345833333, "absolute_change": 0.5411666667, "percentage_change": 23.1804390505}, {"date": "2006-04-24", "fuel": "gasoline", "current_price": 3.01425, "yoy_price": 2.3335, "absolute_change": 0.68075, "percentage_change": 29.1729162203}, {"date": "2006-05-01", "fuel": "gasoline", "current_price": 3.0286666667, "yoy_price": 2.3328333333, "absolute_change": 0.6958333333, "percentage_change": 29.8278202472}, {"date": "2006-05-08", "fuel": "gasoline", "current_price": 3.026, "yoy_price": 2.2903333333, "absolute_change": 0.7356666667, "percentage_change": 32.1205064765}, {"date": "2006-05-15", "fuel": "gasoline", "current_price": 3.0613333333, "yoy_price": 2.26375, "absolute_change": 0.7975833333, "percentage_change": 35.2328363703}, {"date": "2006-05-22", "fuel": "gasoline", "current_price": 3.0135833333, "yoy_price": 2.2278333333, "absolute_change": 0.78575, "percentage_change": 35.2696940226}, {"date": "2006-05-29", "fuel": "gasoline", "current_price": 2.98525, "yoy_price": 2.1991666667, "absolute_change": 0.7860833333, "percentage_change": 35.7446002274}, {"date": "2006-06-05", "fuel": "gasoline", "current_price": 3.0086666667, "yoy_price": 2.21325, "absolute_change": 0.7954166667, "percentage_change": 35.9388531195}, {"date": "2006-06-12", "fuel": "gasoline", "current_price": 3.0198333333, "yoy_price": 2.2250833333, "absolute_change": 0.79475, "percentage_change": 35.7177633796}, {"date": "2006-06-19", "fuel": "gasoline", "current_price": 2.9880833333, "yoy_price": 2.2561666667, "absolute_change": 0.7319166667, "percentage_change": 32.4407180321}, {"date": "2006-06-26", "fuel": "gasoline", "current_price": 2.9829166667, "yoy_price": 2.3065, "absolute_change": 0.6764166667, "percentage_change": 29.326540935}, {"date": "2006-07-03", "fuel": "gasoline", "current_price": 3.0421666667, "yoy_price": 2.3208333333, "absolute_change": 0.7213333333, "percentage_change": 31.0807899461}, {"date": "2006-07-10", "fuel": "gasoline", "current_price": 3.0805833333, "yoy_price": 2.4215, "absolute_change": 0.6590833333, "percentage_change": 27.2179778374}, {"date": "2006-07-17", "fuel": "gasoline", "current_price": 3.09625, "yoy_price": 2.4158333333, "absolute_change": 0.6804166667, "percentage_change": 28.1648844429}, {"date": "2006-07-24", "fuel": "gasoline", "current_price": 3.10925, "yoy_price": 2.394, "absolute_change": 0.71525, "percentage_change": 29.8767752715}, {"date": "2006-07-31", "fuel": "gasoline", "current_price": 3.1105833333, "yoy_price": 2.3951666667, "absolute_change": 0.7154166667, "percentage_change": 29.8691809895}, {"date": "2006-08-07", "fuel": "gasoline", "current_price": 3.1380833333, "yoy_price": 2.4658333333, "absolute_change": 0.67225, "percentage_change": 27.2625887124}, {"date": "2006-08-14", "fuel": "gasoline", "current_price": 3.1065833333, "yoy_price": 2.6425, "absolute_change": 0.4640833333, "percentage_change": 17.5622831914}, {"date": "2006-08-21", "fuel": "gasoline", "current_price": 3.0330833333, "yoy_price": 2.7038333333, "absolute_change": 0.32925, "percentage_change": 12.1771558898}, {"date": "2006-08-28", "fuel": "gasoline", "current_price": 2.9561666667, "yoy_price": 2.7031666667, "absolute_change": 0.253, "percentage_change": 9.3593933041}, {"date": "2006-09-04", "fuel": "gasoline", "current_price": 2.8425, "yoy_price": 3.17175, "absolute_change": -0.32925, "percentage_change": -10.3807046583}, {"date": "2006-09-11", "fuel": "gasoline", "current_price": 2.73825, "yoy_price": 3.0609166667, "absolute_change": -0.3226666667, "percentage_change": -10.5415044513}, {"date": "2006-09-18", "fuel": "gasoline", "current_price": 2.6185, "yoy_price": 2.90075, "absolute_change": -0.28225, "percentage_change": -9.7302421787}, {"date": "2006-09-25", "fuel": "gasoline", "current_price": 2.4983333333, "yoy_price": 2.9080833333, "absolute_change": -0.40975, "percentage_change": -14.0900363928}, {"date": "2006-10-02", "fuel": "gasoline", "current_price": 2.4245, "yoy_price": 3.0210833333, "absolute_change": -0.5965833333, "percentage_change": -19.7473312553}, {"date": "2006-10-09", "fuel": "gasoline", "current_price": 2.37075, "yoy_price": 2.9484166667, "absolute_change": -0.5776666667, "percentage_change": -19.5924366185}, {"date": "2006-10-16", "fuel": "gasoline", "current_price": 2.3316666667, "yoy_price": 2.832, "absolute_change": -0.5003333333, "percentage_change": -17.6671374765}, {"date": "2006-10-23", "fuel": "gasoline", "current_price": 2.3078333333, "yoy_price": 2.71075, "absolute_change": -0.4029166667, "percentage_change": -14.8636601187}, {"date": "2006-10-30", "fuel": "gasoline", "current_price": 2.3133333333, "yoy_price": 2.5878333333, "absolute_change": -0.2745, "percentage_change": -10.6073291685}, {"date": "2006-11-06", "fuel": "gasoline", "current_price": 2.2950833333, "yoy_price": 2.4826666667, "absolute_change": -0.1875833333, "percentage_change": -7.5557196563}, {"date": "2006-11-13", "fuel": "gasoline", "current_price": 2.3283333333, "yoy_price": 2.39925, "absolute_change": -0.0709166667, "percentage_change": -2.9557847939}, {"date": "2006-11-20", "fuel": "gasoline", "current_price": 2.3375833333, "yoy_price": 2.3025833333, "absolute_change": 0.035, "percentage_change": 1.5200318483}, {"date": "2006-11-27", "fuel": "gasoline", "current_price": 2.3456666667, "yoy_price": 2.2535833333, "absolute_change": 0.0920833333, "percentage_change": 4.0860851237}, {"date": "2006-12-04", "fuel": "gasoline", "current_price": 2.3929166667, "yoy_price": 2.24, "absolute_change": 0.1529166667, "percentage_change": 6.8266369048}, {"date": "2006-12-11", "fuel": "gasoline", "current_price": 2.39325, "yoy_price": 2.2729166667, "absolute_change": 0.1203333333, "percentage_change": 5.2942254812}, {"date": "2006-12-18", "fuel": "gasoline", "current_price": 2.4204166667, "yoy_price": 2.2985833333, "absolute_change": 0.1218333333, "percentage_change": 5.3003661676}, {"date": "2006-12-25", "fuel": "gasoline", "current_price": 2.4443333333, "yoy_price": 2.2854166667, "absolute_change": 0.1589166667, "percentage_change": 6.9535095716}, {"date": "2007-01-01", "fuel": "gasoline", "current_price": 2.4400833333, "yoy_price": 2.32275, "absolute_change": 0.1173333333, "percentage_change": 5.0514835145}, {"date": "2007-01-08", "fuel": "gasoline", "current_price": 2.4170833333, "yoy_price": 2.4150833333, "absolute_change": 0.002, "percentage_change": 0.0828128774}, {"date": "2007-01-15", "fuel": "gasoline", "current_price": 2.3470833333, "yoy_price": 2.4175, "absolute_change": -0.0704166667, "percentage_change": -2.9127886936}, {"date": "2007-01-22", "fuel": "gasoline", "current_price": 2.285, "yoy_price": 2.4330833333, "absolute_change": -0.1480833333, "percentage_change": -6.0862417372}, {"date": "2007-01-29", "fuel": "gasoline", "current_price": 2.2755, "yoy_price": 2.4538333333, "absolute_change": -0.1783333333, "percentage_change": -7.2675405828}, {"date": "2007-02-05", "fuel": "gasoline", "current_price": 2.296, "yoy_price": 2.4425, "absolute_change": -0.1465, "percentage_change": -5.9979529171}, {"date": "2007-02-12", "fuel": "gasoline", "current_price": 2.3460833333, "yoy_price": 2.3883333333, "absolute_change": -0.04225, "percentage_change": -1.7690160502}, {"date": "2007-02-19", "fuel": "gasoline", "current_price": 2.3995833333, "yoy_price": 2.34125, "absolute_change": 0.0583333333, "percentage_change": 2.4915465385}, {"date": "2007-02-26", "fuel": "gasoline", "current_price": 2.4864166667, "yoy_price": 2.3454166667, "absolute_change": 0.141, "percentage_change": 6.0117249956}, {"date": "2007-03-05", "fuel": "gasoline", "current_price": 2.6093333333, "yoy_price": 2.4161666667, "absolute_change": 0.1931666667, "percentage_change": 7.994757536}, {"date": "2007-03-12", "fuel": "gasoline", "current_price": 2.6698333333, "yoy_price": 2.4521666667, "absolute_change": 0.2176666667, "percentage_change": 8.8765037722}, {"date": "2007-03-19", "fuel": "gasoline", "current_price": 2.6906666667, "yoy_price": 2.5919166667, "absolute_change": 0.09875, "percentage_change": 3.8099218725}, {"date": "2007-03-26", "fuel": "gasoline", "current_price": 2.7228333333, "yoy_price": 2.58975, "absolute_change": 0.1330833333, "percentage_change": 5.1388486662}, {"date": "2007-04-02", "fuel": "gasoline", "current_price": 2.8213333333, "yoy_price": 2.679, "absolute_change": 0.1423333333, "percentage_change": 5.3129277093}, {"date": "2007-04-09", "fuel": "gasoline", "current_price": 2.9113333333, "yoy_price": 2.7751666667, "absolute_change": 0.1361666667, "percentage_change": 4.9066122155}, {"date": "2007-04-16", "fuel": "gasoline", "current_price": 2.9845833333, "yoy_price": 2.87575, "absolute_change": 0.1088333333, "percentage_change": 3.7845199803}, {"date": "2007-04-23", "fuel": "gasoline", "current_price": 2.9815833333, "yoy_price": 3.01425, "absolute_change": -0.0326666667, "percentage_change": -1.0837411186}, {"date": "2007-04-30", "fuel": "gasoline", "current_price": 3.0775833333, "yoy_price": 3.0286666667, "absolute_change": 0.0489166667, "percentage_change": 1.615122166}, {"date": "2007-05-07", "fuel": "gasoline", "current_price": 3.1566666667, "yoy_price": 3.026, "absolute_change": 0.1306666667, "percentage_change": 4.3181317471}, {"date": "2007-05-14", "fuel": "gasoline", "current_price": 3.1949166667, "yoy_price": 3.0613333333, "absolute_change": 0.1335833333, "percentage_change": 4.3635670732}, {"date": "2007-05-21", "fuel": "gasoline", "current_price": 3.2998333333, "yoy_price": 3.0135833333, "absolute_change": 0.28625, "percentage_change": 9.4986588502}, {"date": "2007-05-28", "fuel": "gasoline", "current_price": 3.2950833333, "yoy_price": 2.98525, "absolute_change": 0.3098333333, "percentage_change": 10.3788069118}, {"date": "2007-06-04", "fuel": "gasoline", "current_price": 3.2505, "yoy_price": 3.0086666667, "absolute_change": 0.2418333333, "percentage_change": 8.0378905384}, {"date": "2007-06-11", "fuel": "gasoline", "current_price": 3.17925, "yoy_price": 3.0198333333, "absolute_change": 0.1594166667, "percentage_change": 5.2789889067}, {"date": "2007-06-18", "fuel": "gasoline", "current_price": 3.1141666667, "yoy_price": 2.9880833333, "absolute_change": 0.1260833333, "percentage_change": 4.2195387233}, {"date": "2007-06-25", "fuel": "gasoline", "current_price": 3.0856666667, "yoy_price": 2.9829166667, "absolute_change": 0.10275, "percentage_change": 3.4446151697}, {"date": "2007-07-02", "fuel": "gasoline", "current_price": 3.0596666667, "yoy_price": 3.0421666667, "absolute_change": 0.0175, "percentage_change": 0.5752479045}, {"date": "2007-07-09", "fuel": "gasoline", "current_price": 3.0726666667, "yoy_price": 3.0805833333, "absolute_change": -0.0079166667, "percentage_change": -0.2569859605}, {"date": "2007-07-16", "fuel": "gasoline", "current_price": 3.1346666667, "yoy_price": 3.09625, "absolute_change": 0.0384166667, "percentage_change": 1.2407482169}, {"date": "2007-07-23", "fuel": "gasoline", "current_price": 3.0573333333, "yoy_price": 3.10925, "absolute_change": -0.0519166667, "percentage_change": -1.6697488676}, {"date": "2007-07-30", "fuel": "gasoline", "current_price": 2.9830833333, "yoy_price": 3.1105833333, "absolute_change": -0.1275, "percentage_change": -4.0989096365}, {"date": "2007-08-06", "fuel": "gasoline", "current_price": 2.9445, "yoy_price": 3.1380833333, "absolute_change": -0.1935833333, "percentage_change": -6.1688397907}, {"date": "2007-08-13", "fuel": "gasoline", "current_price": 2.8753333333, "yoy_price": 3.1065833333, "absolute_change": -0.23125, "percentage_change": -7.4438692025}, {"date": "2007-08-20", "fuel": "gasoline", "current_price": 2.8784166667, "yoy_price": 3.0330833333, "absolute_change": -0.1546666667, "percentage_change": -5.0993213726}, {"date": "2007-08-27", "fuel": "gasoline", "current_price": 2.8395833333, "yoy_price": 2.9561666667, "absolute_change": -0.1165833333, "percentage_change": -3.9437334386}, {"date": "2007-09-03", "fuel": "gasoline", "current_price": 2.8755833333, "yoy_price": 2.8425, "absolute_change": 0.0330833333, "percentage_change": 1.1638815597}, {"date": "2007-09-10", "fuel": "gasoline", "current_price": 2.8976666667, "yoy_price": 2.73825, "absolute_change": 0.1594166667, "percentage_change": 5.8218448522}, {"date": "2007-09-17", "fuel": "gasoline", "current_price": 2.8786666667, "yoy_price": 2.6185, "absolute_change": 0.2601666667, "percentage_change": 9.9357138311}, {"date": "2007-09-24", "fuel": "gasoline", "current_price": 2.9046666667, "yoy_price": 2.4983333333, "absolute_change": 0.4063333333, "percentage_change": 16.2641761174}, {"date": "2007-10-01", "fuel": "gasoline", "current_price": 2.8880833333, "yoy_price": 2.4245, "absolute_change": 0.4635833333, "percentage_change": 19.120780917}, {"date": "2007-10-08", "fuel": "gasoline", "current_price": 2.87325, "yoy_price": 2.37075, "absolute_change": 0.5025, "percentage_change": 21.1958241063}, {"date": "2007-10-15", "fuel": "gasoline", "current_price": 2.86825, "yoy_price": 2.3316666667, "absolute_change": 0.5365833333, "percentage_change": 23.0128663331}, {"date": "2007-10-22", "fuel": "gasoline", "current_price": 2.9268333333, "yoy_price": 2.3078333333, "absolute_change": 0.619, "percentage_change": 26.8216942298}, {"date": "2007-10-29", "fuel": "gasoline", "current_price": 2.97275, "yoy_price": 2.3133333333, "absolute_change": 0.6594166667, "percentage_change": 28.5050432277}, {"date": "2007-11-05", "fuel": "gasoline", "current_price": 3.1065, "yoy_price": 2.2950833333, "absolute_change": 0.8114166667, "percentage_change": 35.354562289}, {"date": "2007-11-12", "fuel": "gasoline", "current_price": 3.2076666667, "yoy_price": 2.3283333333, "absolute_change": 0.8793333333, "percentage_change": 37.766642806}, {"date": "2007-11-19", "fuel": "gasoline", "current_price": 3.2023333333, "yoy_price": 2.3375833333, "absolute_change": 0.86475, "percentage_change": 36.993333571}, {"date": "2007-11-26", "fuel": "gasoline", "current_price": 3.2025833333, "yoy_price": 2.3456666667, "absolute_change": 0.8569166667, "percentage_change": 36.5319027995}, {"date": "2007-12-03", "fuel": "gasoline", "current_price": 3.17275, "yoy_price": 2.3929166667, "absolute_change": 0.7798333333, "percentage_change": 32.5892390737}, {"date": "2007-12-10", "fuel": "gasoline", "current_price": 3.11825, "yoy_price": 2.39325, "absolute_change": 0.725, "percentage_change": 30.2935338974}, {"date": "2007-12-17", "fuel": "gasoline", "current_price": 3.1125, "yoy_price": 2.4204166667, "absolute_change": 0.6920833333, "percentage_change": 28.5935617146}, {"date": "2007-12-24", "fuel": "gasoline", "current_price": 3.0951666667, "yoy_price": 2.4443333333, "absolute_change": 0.6508333333, "percentage_change": 26.6262102823}, {"date": "2007-12-31", "fuel": "gasoline", "current_price": 3.1611666667, "yoy_price": 2.4400833333, "absolute_change": 0.7210833333, "percentage_change": 29.5515863529}, {"date": "2008-01-07", "fuel": "gasoline", "current_price": 3.214, "yoy_price": 2.4170833333, "absolute_change": 0.7969166667, "percentage_change": 32.9701775556}, {"date": "2008-01-14", "fuel": "gasoline", "current_price": 3.1775833333, "yoy_price": 2.3470833333, "absolute_change": 0.8305, "percentage_change": 35.3843422688}, {"date": "2008-01-21", "fuel": "gasoline", "current_price": 3.1298333333, "yoy_price": 2.285, "absolute_change": 0.8448333333, "percentage_change": 36.9730123997}, {"date": "2008-01-28", "fuel": "gasoline", "current_price": 3.0889166667, "yoy_price": 2.2755, "absolute_change": 0.8134166667, "percentage_change": 35.7467223321}, {"date": "2008-02-04", "fuel": "gasoline", "current_price": 3.08375, "yoy_price": 2.296, "absolute_change": 0.78775, "percentage_change": 34.3096689895}, {"date": "2008-02-11", "fuel": "gasoline", "current_price": 3.0645, "yoy_price": 2.3460833333, "absolute_change": 0.7184166667, "percentage_change": 30.6219585835}, {"date": "2008-02-18", "fuel": "gasoline", "current_price": 3.1416666667, "yoy_price": 2.3995833333, "absolute_change": 0.7420833333, "percentage_change": 30.9255079007}, {"date": "2008-02-25", "fuel": "gasoline", "current_price": 3.2320833333, "yoy_price": 2.4864166667, "absolute_change": 0.7456666667, "percentage_change": 29.9896102155}, {"date": "2008-03-03", "fuel": "gasoline", "current_price": 3.2688333333, "yoy_price": 2.6093333333, "absolute_change": 0.6595, "percentage_change": 25.2746550843}, {"date": "2008-03-10", "fuel": "gasoline", "current_price": 3.3283333333, "yoy_price": 2.6698333333, "absolute_change": 0.6585, "percentage_change": 24.6644609526}, {"date": "2008-03-17", "fuel": "gasoline", "current_price": 3.3881666667, "yoy_price": 2.6906666667, "absolute_change": 0.6975, "percentage_change": 25.9229435084}, {"date": "2008-03-24", "fuel": "gasoline", "current_price": 3.3705, "yoy_price": 2.7228333333, "absolute_change": 0.6476666667, "percentage_change": 23.7864969089}, {"date": "2008-03-31", "fuel": "gasoline", "current_price": 3.3976666667, "yoy_price": 2.8213333333, "absolute_change": 0.5763333333, "percentage_change": 20.4276937618}, {"date": "2008-04-07", "fuel": "gasoline", "current_price": 3.4386666667, "yoy_price": 2.9113333333, "absolute_change": 0.5273333333, "percentage_change": 18.1131211358}, {"date": "2008-04-14", "fuel": "gasoline", "current_price": 3.4974166667, "yoy_price": 2.9845833333, "absolute_change": 0.5128333333, "percentage_change": 17.1827446601}, {"date": "2008-04-21", "fuel": "gasoline", "current_price": 3.618, "yoy_price": 2.9815833333, "absolute_change": 0.6364166667, "percentage_change": 21.3449229995}, {"date": "2008-04-28", "fuel": "gasoline", "current_price": 3.7129166667, "yoy_price": 3.0775833333, "absolute_change": 0.6353333333, "percentage_change": 20.6439034957}, {"date": "2008-05-05", "fuel": "gasoline", "current_price": 3.72475, "yoy_price": 3.1566666667, "absolute_change": 0.5680833333, "percentage_change": 17.9963041183}, {"date": "2008-05-12", "fuel": "gasoline", "current_price": 3.8268333333, "yoy_price": 3.1949166667, "absolute_change": 0.6319166667, "percentage_change": 19.7788153056}, {"date": "2008-05-19", "fuel": "gasoline", "current_price": 3.8965, "yoy_price": 3.2998333333, "absolute_change": 0.5966666667, "percentage_change": 18.0817212991}, {"date": "2008-05-26", "fuel": "gasoline", "current_price": 4.0405833333, "yoy_price": 3.2950833333, "absolute_change": 0.7455, "percentage_change": 22.6246174856}, {"date": "2008-06-02", "fuel": "gasoline", "current_price": 4.0870833333, "yoy_price": 3.2505, "absolute_change": 0.8365833333, "percentage_change": 25.7370660924}, {"date": "2008-06-09", "fuel": "gasoline", "current_price": 4.1576666667, "yoy_price": 3.17925, "absolute_change": 0.9784166667, "percentage_change": 30.7750779796}, {"date": "2008-06-16", "fuel": "gasoline", "current_price": 4.2085, "yoy_price": 3.1141666667, "absolute_change": 1.0943333333, "percentage_change": 35.1404870217}, {"date": "2008-06-23", "fuel": "gasoline", "current_price": 4.2068333333, "yoy_price": 3.0856666667, "absolute_change": 1.1211666667, "percentage_change": 36.3346656584}, {"date": "2008-06-30", "fuel": "gasoline", "current_price": 4.2181666667, "yoy_price": 3.0596666667, "absolute_change": 1.1585, "percentage_change": 37.8636016995}, {"date": "2008-07-07", "fuel": "gasoline", "current_price": 4.2355833333, "yoy_price": 3.0726666667, "absolute_change": 1.1629166667, "percentage_change": 37.8471468865}, {"date": "2008-07-14", "fuel": "gasoline", "current_price": 4.2320833333, "yoy_price": 3.1346666667, "absolute_change": 1.0974166667, "percentage_change": 35.0090387069}, {"date": "2008-07-21", "fuel": "gasoline", "current_price": 4.1891666667, "yoy_price": 3.0573333333, "absolute_change": 1.1318333333, "percentage_change": 37.0202791103}, {"date": "2008-07-28", "fuel": "gasoline", "current_price": 4.0839166667, "yoy_price": 2.9830833333, "absolute_change": 1.1008333333, "percentage_change": 36.9025337319}, {"date": "2008-08-04", "fuel": "gasoline", "current_price": 4.0065833333, "yoy_price": 2.9445, "absolute_change": 1.0620833333, "percentage_change": 36.0700741495}, {"date": "2008-08-11", "fuel": "gasoline", "current_price": 3.9318333333, "yoy_price": 2.8753333333, "absolute_change": 1.0565, "percentage_change": 36.7435659634}, {"date": "2008-08-18", "fuel": "gasoline", "current_price": 3.8578333333, "yoy_price": 2.8784166667, "absolute_change": 0.9794166667, "percentage_change": 34.026229698}, {"date": "2008-08-25", "fuel": "gasoline", "current_price": 3.7986666667, "yoy_price": 2.8395833333, "absolute_change": 0.9590833333, "percentage_change": 33.7754952311}, {"date": "2008-09-01", "fuel": "gasoline", "current_price": 3.7900833333, "yoy_price": 2.8755833333, "absolute_change": 0.9145, "percentage_change": 31.8022430232}, {"date": "2008-09-08", "fuel": "gasoline", "current_price": 3.7563333333, "yoy_price": 2.8976666667, "absolute_change": 0.8586666667, "percentage_change": 29.6330380766}, {"date": "2008-09-15", "fuel": "gasoline", "current_price": 3.9248333333, "yoy_price": 2.8786666667, "absolute_change": 1.0461666667, "percentage_change": 36.3420565076}, {"date": "2008-09-22", "fuel": "gasoline", "current_price": 3.81875, "yoy_price": 2.9046666667, "absolute_change": 0.9140833333, "percentage_change": 31.469474409}, {"date": "2008-09-29", "fuel": "gasoline", "current_price": 3.73675, "yoy_price": 2.8880833333, "absolute_change": 0.8486666667, "percentage_change": 29.3851170038}, {"date": "2008-10-06", "fuel": "gasoline", "current_price": 3.598, "yoy_price": 2.87325, "absolute_change": 0.72475, "percentage_change": 25.2240494214}, {"date": "2008-10-13", "fuel": "gasoline", "current_price": 3.2870833333, "yoy_price": 2.86825, "absolute_change": 0.4188333333, "percentage_change": 14.6023998373}, {"date": "2008-10-20", "fuel": "gasoline", "current_price": 3.0535, "yoy_price": 2.9268333333, "absolute_change": 0.1266666667, "percentage_change": 4.327771767}, {"date": "2008-10-27", "fuel": "gasoline", "current_price": 2.801, "yoy_price": 2.97275, "absolute_change": -0.17175, "percentage_change": -5.7774787655}, {"date": "2008-11-03", "fuel": "gasoline", "current_price": 2.5434166667, "yoy_price": 3.1065, "absolute_change": -0.5630833333, "percentage_change": -18.1259724234}, {"date": "2008-11-10", "fuel": "gasoline", "current_price": 2.3621666667, "yoy_price": 3.2076666667, "absolute_change": -0.8455, "percentage_change": -26.3587238907}, {"date": "2008-11-17", "fuel": "gasoline", "current_price": 2.2063333333, "yoy_price": 3.2023333333, "absolute_change": -0.996, "percentage_change": -31.1023212241}, {"date": "2008-11-24", "fuel": "gasoline", "current_price": 2.0235, "yoy_price": 3.2025833333, "absolute_change": -1.1790833333, "percentage_change": -36.8166324061}, {"date": "2008-12-01", "fuel": "gasoline", "current_price": 1.9355833333, "yoy_price": 3.17275, "absolute_change": -1.2371666667, "percentage_change": -38.9935124629}, {"date": "2008-12-08", "fuel": "gasoline", "current_price": 1.8225833333, "yoy_price": 3.11825, "absolute_change": -1.2956666667, "percentage_change": -41.5510836741}, {"date": "2008-12-15", "fuel": "gasoline", "current_price": 1.7749166667, "yoy_price": 3.1125, "absolute_change": -1.3375833333, "percentage_change": -42.9745649264}, {"date": "2008-12-22", "fuel": "gasoline", "current_price": 1.7714166667, "yoy_price": 3.0951666667, "absolute_change": -1.32375, "percentage_change": -42.768294653}, {"date": "2008-12-29", "fuel": "gasoline", "current_price": 1.7331666667, "yoy_price": 3.1611666667, "absolute_change": -1.428, "percentage_change": -45.1731955502}, {"date": "2009-01-05", "fuel": "gasoline", "current_price": 1.7925, "yoy_price": 3.214, "absolute_change": -1.4215, "percentage_change": -44.2283758556}, {"date": "2009-01-12", "fuel": "gasoline", "current_price": 1.8889166667, "yoy_price": 3.1775833333, "absolute_change": -1.2886666667, "percentage_change": -40.5549290603}, {"date": "2009-01-19", "fuel": "gasoline", "current_price": 1.9520833333, "yoy_price": 3.1298333333, "absolute_change": -1.17775, "percentage_change": -37.6297992438}, {"date": "2009-01-26", "fuel": "gasoline", "current_price": 1.9475833333, "yoy_price": 3.0889166667, "absolute_change": -1.1413333333, "percentage_change": -36.9493080098}, {"date": "2009-02-02", "fuel": "gasoline", "current_price": 2.0001666667, "yoy_price": 3.08375, "absolute_change": -1.0835833333, "percentage_change": -35.138494798}, {"date": "2009-02-09", "fuel": "gasoline", "current_price": 2.0380833333, "yoy_price": 3.0645, "absolute_change": -1.0264166667, "percentage_change": -33.4937727742}, {"date": "2009-02-16", "fuel": "gasoline", "current_price": 2.0774166667, "yoy_price": 3.1416666667, "absolute_change": -1.06425, "percentage_change": -33.875331565}, {"date": "2009-02-23", "fuel": "gasoline", "current_price": 2.029, "yoy_price": 3.2320833333, "absolute_change": -1.2030833333, "percentage_change": -37.2231532809}, {"date": "2009-03-02", "fuel": "gasoline", "current_price": 2.04775, "yoy_price": 3.2688333333, "absolute_change": -1.2210833333, "percentage_change": -37.3553255494}, {"date": "2009-03-09", "fuel": "gasoline", "current_price": 2.0509166667, "yoy_price": 3.3283333333, "absolute_change": -1.2774166667, "percentage_change": -38.3800701052}, {"date": "2009-03-16", "fuel": "gasoline", "current_price": 2.0240833333, "yoy_price": 3.3881666667, "absolute_change": -1.3640833333, "percentage_change": -40.260219391}, {"date": "2009-03-23", "fuel": "gasoline", "current_price": 2.0690833333, "yoy_price": 3.3705, "absolute_change": -1.3014166667, "percentage_change": -38.6119764624}, {"date": "2009-03-30", "fuel": "gasoline", "current_price": 2.1516666667, "yoy_price": 3.3976666667, "absolute_change": -1.246, "percentage_change": -36.6722260375}, {"date": "2009-04-06", "fuel": "gasoline", "current_price": 2.14875, "yoy_price": 3.4386666667, "absolute_change": -1.2899166667, "percentage_change": -37.5121170997}, {"date": "2009-04-13", "fuel": "gasoline", "current_price": 2.1625833333, "yoy_price": 3.4974166667, "absolute_change": -1.3348333333, "percentage_change": -38.166265577}, {"date": "2009-04-20", "fuel": "gasoline", "current_price": 2.1716666667, "yoy_price": 3.618, "absolute_change": -1.4463333333, "percentage_change": -39.9760456974}, {"date": "2009-04-27", "fuel": "gasoline", "current_price": 2.1639166667, "yoy_price": 3.7129166667, "absolute_change": -1.549, "percentage_change": -41.7192234317}, {"date": "2009-05-04", "fuel": "gasoline", "current_price": 2.1895, "yoy_price": 3.72475, "absolute_change": -1.53525, "percentage_change": -41.2175313779}, {"date": "2009-05-11", "fuel": "gasoline", "current_price": 2.3448333333, "yoy_price": 3.8268333333, "absolute_change": -1.482, "percentage_change": -38.7265363007}, {"date": "2009-05-18", "fuel": "gasoline", "current_price": 2.418, "yoy_price": 3.8965, "absolute_change": -1.4785, "percentage_change": -37.9443089953}, {"date": "2009-05-25", "fuel": "gasoline", "current_price": 2.5395, "yoy_price": 4.0405833333, "absolute_change": -1.5010833333, "percentage_change": -37.1501639615}, {"date": "2009-06-01", "fuel": "gasoline", "current_price": 2.625, "yoy_price": 4.0870833333, "absolute_change": -1.4620833333, "percentage_change": -35.7732694464}, {"date": "2009-06-08", "fuel": "gasoline", "current_price": 2.727, "yoy_price": 4.1576666667, "absolute_change": -1.4306666667, "percentage_change": -34.4103263048}, {"date": "2009-06-15", "fuel": "gasoline", "current_price": 2.7804166667, "yoy_price": 4.2085, "absolute_change": -1.4280833333, "percentage_change": -33.9333095719}, {"date": "2009-06-22", "fuel": "gasoline", "current_price": 2.8056666667, "yoy_price": 4.2068333333, "absolute_change": -1.4011666667, "percentage_change": -33.3069212789}, {"date": "2009-06-29", "fuel": "gasoline", "current_price": 2.7625833333, "yoy_price": 4.2181666667, "absolute_change": -1.4555833333, "percentage_change": -34.5074874551}, {"date": "2009-07-06", "fuel": "gasoline", "current_price": 2.7340833333, "yoy_price": 4.2355833333, "absolute_change": -1.5015, "percentage_change": -35.4496625809}, {"date": "2009-07-13", "fuel": "gasoline", "current_price": 2.6543333333, "yoy_price": 4.2320833333, "absolute_change": -1.57775, "percentage_change": -37.280693118}, {"date": "2009-07-20", "fuel": "gasoline", "current_price": 2.5905833333, "yoy_price": 4.1891666667, "absolute_change": -1.5985833333, "percentage_change": -38.1599363437}, {"date": "2009-07-27", "fuel": "gasoline", "current_price": 2.6231666667, "yoy_price": 4.0839166667, "absolute_change": -1.46075, "percentage_change": -35.7683596221}, {"date": "2009-08-03", "fuel": "gasoline", "current_price": 2.6755833333, "yoy_price": 4.0065833333, "absolute_change": -1.331, "percentage_change": -33.220324882}, {"date": "2009-08-10", "fuel": "gasoline", "current_price": 2.76725, "yoy_price": 3.9318333333, "absolute_change": -1.1645833333, "percentage_change": -29.6193463609}, {"date": "2009-08-17", "fuel": "gasoline", "current_price": 2.7614166667, "yoy_price": 3.8578333333, "absolute_change": -1.0964166667, "percentage_change": -28.4205296583}, {"date": "2009-08-24", "fuel": "gasoline", "current_price": 2.75225, "yoy_price": 3.7986666667, "absolute_change": -1.0464166667, "percentage_change": -27.5469462969}, {"date": "2009-08-31", "fuel": "gasoline", "current_price": 2.7399166667, "yoy_price": 3.7900833333, "absolute_change": -1.0501666667, "percentage_change": -27.7082737847}, {"date": "2009-09-07", "fuel": "gasoline", "current_price": 2.7181666667, "yoy_price": 3.7563333333, "absolute_change": -1.0381666667, "percentage_change": -27.6377673263}, {"date": "2009-09-14", "fuel": "gasoline", "current_price": 2.7104166667, "yoy_price": 3.9248333333, "absolute_change": -1.2144166667, "percentage_change": -30.9418658966}, {"date": "2009-09-21", "fuel": "gasoline", "current_price": 2.6855833333, "yoy_price": 3.81875, "absolute_change": -1.1331666667, "percentage_change": -29.6737588652}, {"date": "2009-09-28", "fuel": "gasoline", "current_price": 2.6331666667, "yoy_price": 3.73675, "absolute_change": -1.1035833333, "percentage_change": -29.5332396691}, {"date": "2009-10-05", "fuel": "gasoline", "current_price": 2.6019166667, "yoy_price": 3.598, "absolute_change": -0.9960833333, "percentage_change": -27.6843616824}, {"date": "2009-10-12", "fuel": "gasoline", "current_price": 2.6148333333, "yoy_price": 3.2870833333, "absolute_change": -0.67225, "percentage_change": -20.4512612498}, {"date": "2009-10-19", "fuel": "gasoline", "current_price": 2.6908333333, "yoy_price": 3.0535, "absolute_change": -0.3626666667, "percentage_change": -11.8770809454}, {"date": "2009-10-26", "fuel": "gasoline", "current_price": 2.7878333333, "yoy_price": 2.801, "absolute_change": -0.0131666667, "percentage_change": -0.470070213}, {"date": "2009-11-02", "fuel": "gasoline", "current_price": 2.80825, "yoy_price": 2.5434166667, "absolute_change": 0.2648333333, "percentage_change": 10.4125028669}, {"date": "2009-11-09", "fuel": "gasoline", "current_price": 2.78425, "yoy_price": 2.3621666667, "absolute_change": 0.4220833333, "percentage_change": 17.8684823255}, {"date": "2009-11-16", "fuel": "gasoline", "current_price": 2.7516666667, "yoy_price": 2.2063333333, "absolute_change": 0.5453333333, "percentage_change": 24.7167245808}, {"date": "2009-11-23", "fuel": "gasoline", "current_price": 2.7580833333, "yoy_price": 2.0235, "absolute_change": 0.7345833333, "percentage_change": 36.3026109876}, {"date": "2009-11-30", "fuel": "gasoline", "current_price": 2.74875, "yoy_price": 1.9355833333, "absolute_change": 0.8131666667, "percentage_change": 42.0114521893}, {"date": "2009-12-07", "fuel": "gasoline", "current_price": 2.7535833333, "yoy_price": 1.8225833333, "absolute_change": 0.931, "percentage_change": 51.081340588}, {"date": "2009-12-14", "fuel": "gasoline", "current_price": 2.72225, "yoy_price": 1.7749166667, "absolute_change": 0.9473333333, "percentage_change": 53.3733978121}, {"date": "2009-12-21", "fuel": "gasoline", "current_price": 2.7128333333, "yoy_price": 1.7714166667, "absolute_change": 0.9414166667, "percentage_change": 53.1448464035}, {"date": "2009-12-28", "fuel": "gasoline", "current_price": 2.7283333333, "yoy_price": 1.7331666667, "absolute_change": 0.9951666667, "percentage_change": 57.4189825945}, {"date": "2010-01-04", "fuel": "gasoline", "current_price": 2.7819166667, "yoy_price": 1.7925, "absolute_change": 0.9894166667, "percentage_change": 55.1975825198}, {"date": "2010-01-11", "fuel": "gasoline", "current_price": 2.8648333333, "yoy_price": 1.8889166667, "absolute_change": 0.9759166667, "percentage_change": 51.665416685}, {"date": "2010-01-18", "fuel": "gasoline", "current_price": 2.8563333333, "yoy_price": 1.9520833333, "absolute_change": 0.90425, "percentage_change": 46.3223052295}, {"date": "2010-01-25", "fuel": "gasoline", "current_price": 2.8261666667, "yoy_price": 1.9475833333, "absolute_change": 0.8785833333, "percentage_change": 45.1114629241}, {"date": "2010-02-01", "fuel": "gasoline", "current_price": 2.784, "yoy_price": 2.0001666667, "absolute_change": 0.7838333333, "percentage_change": 39.1884009666}, {"date": "2010-02-08", "fuel": "gasoline", "current_price": 2.7740833333, "yoy_price": 2.0380833333, "absolute_change": 0.736, "percentage_change": 36.1123604694}, {"date": "2010-02-15", "fuel": "gasoline", "current_price": 2.7338333333, "yoy_price": 2.0774166667, "absolute_change": 0.6564166667, "percentage_change": 31.5977375747}, {"date": "2010-02-22", "fuel": "gasoline", "current_price": 2.7724166667, "yoy_price": 2.029, "absolute_change": 0.7434166667, "percentage_change": 36.6395597174}, {"date": "2010-03-01", "fuel": "gasoline", "current_price": 2.8181666667, "yoy_price": 2.04775, "absolute_change": 0.7704166667, "percentage_change": 37.6225939039}, {"date": "2010-03-08", "fuel": "gasoline", "current_price": 2.864, "yoy_price": 2.0509166667, "absolute_change": 0.8130833333, "percentage_change": 39.6448742432}, {"date": "2010-03-15", "fuel": "gasoline", "current_price": 2.8996666667, "yoy_price": 2.0240833333, "absolute_change": 0.8755833333, "percentage_change": 43.2582650583}, {"date": "2010-03-22", "fuel": "gasoline", "current_price": 2.92825, "yoy_price": 2.0690833333, "absolute_change": 0.8591666667, "percentage_change": 41.5240243264}, {"date": "2010-03-29", "fuel": "gasoline", "current_price": 2.91175, "yoy_price": 2.1516666667, "absolute_change": 0.7600833333, "percentage_change": 35.3253292022}, {"date": "2010-04-05", "fuel": "gasoline", "current_price": 2.93575, "yoy_price": 2.14875, "absolute_change": 0.787, "percentage_change": 36.625945317}, {"date": "2010-04-12", "fuel": "gasoline", "current_price": 2.9665833333, "yoy_price": 2.1625833333, "absolute_change": 0.804, "percentage_change": 37.1777580825}, {"date": "2010-04-19", "fuel": "gasoline", "current_price": 2.9691666667, "yoy_price": 2.1716666667, "absolute_change": 0.7975, "percentage_change": 36.7229470453}, {"date": "2010-04-26", "fuel": "gasoline", "current_price": 2.9620833333, "yoy_price": 2.1639166667, "absolute_change": 0.7981666667, "percentage_change": 36.8852774676}, {"date": "2010-05-03", "fuel": "gasoline", "current_price": 3.0093333333, "yoy_price": 2.1895, "absolute_change": 0.8198333333, "percentage_change": 37.443860851}, {"date": "2010-05-10", "fuel": "gasoline", "current_price": 3.0193333333, "yoy_price": 2.3448333333, "absolute_change": 0.6745, "percentage_change": 28.7653706731}, {"date": "2010-05-17", "fuel": "gasoline", "current_price": 2.983, "yoy_price": 2.418, "absolute_change": 0.565, "percentage_change": 23.3664185277}, {"date": "2010-05-24", "fuel": "gasoline", "current_price": 2.9106666667, "yoy_price": 2.5395, "absolute_change": 0.3711666667, "percentage_change": 14.6157380062}, {"date": "2010-05-31", "fuel": "gasoline", "current_price": 2.85425, "yoy_price": 2.625, "absolute_change": 0.22925, "percentage_change": 8.7333333333}, {"date": "2010-06-07", "fuel": "gasoline", "current_price": 2.8503333333, "yoy_price": 2.727, "absolute_change": 0.1233333333, "percentage_change": 4.5226744897}, {"date": "2010-06-14", "fuel": "gasoline", "current_price": 2.8255, "yoy_price": 2.7804166667, "absolute_change": 0.0450833333, "percentage_change": 1.6214596134}, {"date": "2010-06-21", "fuel": "gasoline", "current_price": 2.8619166667, "yoy_price": 2.8056666667, "absolute_change": 0.05625, "percentage_change": 2.0048710942}, {"date": "2010-06-28", "fuel": "gasoline", "current_price": 2.87475, "yoy_price": 2.7625833333, "absolute_change": 0.1121666667, "percentage_change": 4.0602093451}, {"date": "2010-07-05", "fuel": "gasoline", "current_price": 2.8473333333, "yoy_price": 2.7340833333, "absolute_change": 0.11325, "percentage_change": 4.1421561157}, {"date": "2010-07-12", "fuel": "gasoline", "current_price": 2.84, "yoy_price": 2.6543333333, "absolute_change": 0.1856666667, "percentage_change": 6.9948511867}, {"date": "2010-07-19", "fuel": "gasoline", "current_price": 2.8430833333, "yoy_price": 2.5905833333, "absolute_change": 0.2525, "percentage_change": 9.7468395149}, {"date": "2010-07-26", "fuel": "gasoline", "current_price": 2.8665, "yoy_price": 2.6231666667, "absolute_change": 0.2433333333, "percentage_change": 9.2763199695}, {"date": "2010-08-02", "fuel": "gasoline", "current_price": 2.8558333333, "yoy_price": 2.6755833333, "absolute_change": 0.18025, "percentage_change": 6.7368486623}, {"date": "2010-08-09", "fuel": "gasoline", "current_price": 2.8999166667, "yoy_price": 2.76725, "absolute_change": 0.1326666667, "percentage_change": 4.7941699039}, {"date": "2010-08-16", "fuel": "gasoline", "current_price": 2.86625, "yoy_price": 2.7614166667, "absolute_change": 0.1048333333, "percentage_change": 3.7963605637}, {"date": "2010-08-23", "fuel": "gasoline", "current_price": 2.8288333333, "yoy_price": 2.75225, "absolute_change": 0.0765833333, "percentage_change": 2.7825718352}, {"date": "2010-08-30", "fuel": "gasoline", "current_price": 2.8029166667, "yoy_price": 2.7399166667, "absolute_change": 0.063, "percentage_change": 2.2993400043}, {"date": "2010-09-06", "fuel": "gasoline", "current_price": 2.7980833333, "yoy_price": 2.7181666667, "absolute_change": 0.0799166667, "percentage_change": 2.9400944264}, {"date": "2010-09-13", "fuel": "gasoline", "current_price": 2.8306666667, "yoy_price": 2.7104166667, "absolute_change": 0.12025, "percentage_change": 4.4365872406}, {"date": "2010-09-20", "fuel": "gasoline", "current_price": 2.83275, "yoy_price": 2.6855833333, "absolute_change": 0.1471666667, "percentage_change": 5.4798771217}, {"date": "2010-09-27", "fuel": "gasoline", "current_price": 2.8078333333, "yoy_price": 2.6331666667, "absolute_change": 0.1746666667, "percentage_change": 6.6333312235}, {"date": "2010-10-04", "fuel": "gasoline", "current_price": 2.8433333333, "yoy_price": 2.6019166667, "absolute_change": 0.2414166667, "percentage_change": 9.2784165519}, {"date": "2010-10-11", "fuel": "gasoline", "current_price": 2.92875, "yoy_price": 2.6148333333, "absolute_change": 0.3139166667, "percentage_change": 12.0052265919}, {"date": "2010-10-18", "fuel": "gasoline", "current_price": 2.9503333333, "yoy_price": 2.6908333333, "absolute_change": 0.2595, "percentage_change": 9.6438525859}, {"date": "2010-10-25", "fuel": "gasoline", "current_price": 2.9365, "yoy_price": 2.7878333333, "absolute_change": 0.1486666667, "percentage_change": 5.3326956418}, {"date": "2010-11-01", "fuel": "gasoline", "current_price": 2.9285833333, "yoy_price": 2.80825, "absolute_change": 0.1203333333, "percentage_change": 4.28499362}, {"date": "2010-11-08", "fuel": "gasoline", "current_price": 2.9778333333, "yoy_price": 2.78425, "absolute_change": 0.1935833333, "percentage_change": 6.9527999761}, {"date": "2010-11-15", "fuel": "gasoline", "current_price": 3.0080833333, "yoy_price": 2.7516666667, "absolute_change": 0.2564166667, "percentage_change": 9.318594791}, {"date": "2010-11-22", "fuel": "gasoline", "current_price": 3, "yoy_price": 2.7580833333, "absolute_change": 0.2419166667, "percentage_change": 8.7711877209}, {"date": "2010-11-29", "fuel": "gasoline", "current_price": 2.9825833333, "yoy_price": 2.74875, "absolute_change": 0.2338333333, "percentage_change": 8.5068970744}, {"date": "2010-12-06", "fuel": "gasoline", "current_price": 3.0786666667, "yoy_price": 2.7535833333, "absolute_change": 0.3250833333, "percentage_change": 11.8058287686}, {"date": "2010-12-13", "fuel": "gasoline", "current_price": 3.1004166667, "yoy_price": 2.72225, "absolute_change": 0.3781666667, "percentage_change": 13.8916949827}, {"date": "2010-12-20", "fuel": "gasoline", "current_price": 3.10525, "yoy_price": 2.7128333333, "absolute_change": 0.3924166667, "percentage_change": 14.4651962892}, {"date": "2010-12-27", "fuel": "gasoline", "current_price": 3.1688333333, "yoy_price": 2.7283333333, "absolute_change": 0.4405, "percentage_change": 16.1453879047}, {"date": "2011-01-03", "fuel": "gasoline", "current_price": 3.1865, "yoy_price": 2.7819166667, "absolute_change": 0.4045833333, "percentage_change": 14.5433304376}, {"date": "2011-01-10", "fuel": "gasoline", "current_price": 3.2041666667, "yoy_price": 2.8648333333, "absolute_change": 0.3393333333, "percentage_change": 11.8447844552}, {"date": "2011-01-17", "fuel": "gasoline", "current_price": 3.2201666667, "yoy_price": 2.8563333333, "absolute_change": 0.3638333333, "percentage_change": 12.7377757031}, {"date": "2011-01-24", "fuel": "gasoline", "current_price": 3.2259166667, "yoy_price": 2.8261666667, "absolute_change": 0.39975, "percentage_change": 14.1446010497}, {"date": "2011-01-31", "fuel": "gasoline", "current_price": 3.2195, "yoy_price": 2.784, "absolute_change": 0.4355, "percentage_change": 15.6429597701}, {"date": "2011-02-07", "fuel": "gasoline", "current_price": 3.2478333333, "yoy_price": 2.7740833333, "absolute_change": 0.47375, "percentage_change": 17.0777133588}, {"date": "2011-02-14", "fuel": "gasoline", "current_price": 3.2588333333, "yoy_price": 2.7338333333, "absolute_change": 0.525, "percentage_change": 19.2038041822}, {"date": "2011-02-21", "fuel": "gasoline", "current_price": 3.3095, "yoy_price": 2.7724166667, "absolute_change": 0.5370833333, "percentage_change": 19.3723887102}, {"date": "2011-02-28", "fuel": "gasoline", "current_price": 3.4985833333, "yoy_price": 2.8181666667, "absolute_change": 0.6804166667, "percentage_change": 24.1439470105}, {"date": "2011-03-07", "fuel": "gasoline", "current_price": 3.6375833333, "yoy_price": 2.864, "absolute_change": 0.7735833333, "percentage_change": 27.0105912477}, {"date": "2011-03-14", "fuel": "gasoline", "current_price": 3.6886666667, "yoy_price": 2.8996666667, "absolute_change": 0.789, "percentage_change": 27.2100241407}, {"date": "2011-03-21", "fuel": "gasoline", "current_price": 3.6863333333, "yoy_price": 2.92825, "absolute_change": 0.7580833333, "percentage_change": 25.8886137909}, {"date": "2011-03-28", "fuel": "gasoline", "current_price": 3.7195, "yoy_price": 2.91175, "absolute_change": 0.80775, "percentage_change": 27.7410491972}, {"date": "2011-04-04", "fuel": "gasoline", "current_price": 3.8025, "yoy_price": 2.93575, "absolute_change": 0.86675, "percentage_change": 29.5239717278}, {"date": "2011-04-11", "fuel": "gasoline", "current_price": 3.909, "yoy_price": 2.9665833333, "absolute_change": 0.9424166667, "percentage_change": 31.767746285}, {"date": "2011-04-18", "fuel": "gasoline", "current_price": 3.9649166667, "yoy_price": 2.9691666667, "absolute_change": 0.99575, "percentage_change": 33.536345776}, {"date": "2011-04-25", "fuel": "gasoline", "current_price": 4.002, "yoy_price": 2.9620833333, "absolute_change": 1.0399166667, "percentage_change": 35.1076100717}, {"date": "2011-05-02", "fuel": "gasoline", "current_price": 4.0819166667, "yoy_price": 3.0093333333, "absolute_change": 1.0725833333, "percentage_change": 35.6418918919}, {"date": "2011-05-09", "fuel": "gasoline", "current_price": 4.08775, "yoy_price": 3.0193333333, "absolute_change": 1.0684166667, "percentage_change": 35.3858467653}, {"date": "2011-05-16", "fuel": "gasoline", "current_price": 4.0836666667, "yoy_price": 2.983, "absolute_change": 1.1006666667, "percentage_change": 36.8979774276}, {"date": "2011-05-23", "fuel": "gasoline", "current_price": 3.9784166667, "yoy_price": 2.9106666667, "absolute_change": 1.06775, "percentage_change": 36.6840357306}, {"date": "2011-05-30", "fuel": "gasoline", "current_price": 3.91875, "yoy_price": 2.85425, "absolute_change": 1.0645, "percentage_change": 37.2952614522}, {"date": "2011-06-06", "fuel": "gasoline", "current_price": 3.8975, "yoy_price": 2.8503333333, "absolute_change": 1.0471666667, "percentage_change": 36.7383931704}, {"date": "2011-06-13", "fuel": "gasoline", "current_price": 3.8353333333, "yoy_price": 2.8255, "absolute_change": 1.0098333333, "percentage_change": 35.7399870229}, {"date": "2011-06-20", "fuel": "gasoline", "current_price": 3.7805833333, "yoy_price": 2.8619166667, "absolute_change": 0.9186666667, "percentage_change": 32.0997000844}, {"date": "2011-06-27", "fuel": "gasoline", "current_price": 3.7065833333, "yoy_price": 2.87475, "absolute_change": 0.8318333333, "percentage_change": 28.9358494942}, {"date": "2011-07-04", "fuel": "gasoline", "current_price": 3.7025, "yoy_price": 2.8473333333, "absolute_change": 0.8551666667, "percentage_change": 30.0339498946}, {"date": "2011-07-11", "fuel": "gasoline", "current_price": 3.7580833333, "yoy_price": 2.84, "absolute_change": 0.9180833333, "percentage_change": 32.3268779343}, {"date": "2011-07-18", "fuel": "gasoline", "current_price": 3.7989166667, "yoy_price": 2.8430833333, "absolute_change": 0.9558333333, "percentage_change": 33.6196031304}, {"date": "2011-07-25", "fuel": "gasoline", "current_price": 3.8170833333, "yoy_price": 2.8665, "absolute_change": 0.9505833333, "percentage_change": 33.1618117332}, {"date": "2011-08-01", "fuel": "gasoline", "current_price": 3.8271666667, "yoy_price": 2.8558333333, "absolute_change": 0.9713333333, "percentage_change": 34.0122556172}, {"date": "2011-08-08", "fuel": "gasoline", "current_price": 3.79175, "yoy_price": 2.8999166667, "absolute_change": 0.8918333333, "percentage_change": 30.7537572919}, {"date": "2011-08-15", "fuel": "gasoline", "current_price": 3.7258333333, "yoy_price": 2.86625, "absolute_change": 0.8595833333, "percentage_change": 29.9898241023}, {"date": "2011-08-22", "fuel": "gasoline", "current_price": 3.70175, "yoy_price": 2.8288333333, "absolute_change": 0.8729166667, "percentage_change": 30.8578330289}, {"date": "2011-08-29", "fuel": "gasoline", "current_price": 3.7428333333, "yoy_price": 2.8029166667, "absolute_change": 0.9399166667, "percentage_change": 33.5335216293}, {"date": "2011-09-05", "fuel": "gasoline", "current_price": 3.7889166667, "yoy_price": 2.7980833333, "absolute_change": 0.9908333333, "percentage_change": 35.4111445335}, {"date": "2011-09-12", "fuel": "gasoline", "current_price": 3.7779166667, "yoy_price": 2.8306666667, "absolute_change": 0.94725, "percentage_change": 33.4638483278}, {"date": "2011-09-19", "fuel": "gasoline", "current_price": 3.7255, "yoy_price": 2.83275, "absolute_change": 0.89275, "percentage_change": 31.515311976}, {"date": "2011-09-26", "fuel": "gasoline", "current_price": 3.6406666667, "yoy_price": 2.8078333333, "absolute_change": 0.8328333333, "percentage_change": 29.6610672523}, {"date": "2011-10-03", "fuel": "gasoline", "current_price": 3.5676666667, "yoy_price": 2.8433333333, "absolute_change": 0.7243333333, "percentage_change": 25.4747948417}, {"date": "2011-10-10", "fuel": "gasoline", "current_price": 3.5489166667, "yoy_price": 2.92875, "absolute_change": 0.6201666667, "percentage_change": 21.1751315977}, {"date": "2011-10-17", "fuel": "gasoline", "current_price": 3.6025, "yoy_price": 2.9503333333, "absolute_change": 0.6521666667, "percentage_change": 22.10484691}, {"date": "2011-10-24", "fuel": "gasoline", "current_price": 3.5915, "yoy_price": 2.9365, "absolute_change": 0.655, "percentage_change": 22.3054656904}, {"date": "2011-10-31", "fuel": "gasoline", "current_price": 3.5828333333, "yoy_price": 2.9285833333, "absolute_change": 0.65425, "percentage_change": 22.3401530888}, {"date": "2011-11-07", "fuel": "gasoline", "current_price": 3.5561666667, "yoy_price": 2.9778333333, "absolute_change": 0.5783333333, "percentage_change": 19.4212794537}, {"date": "2011-11-14", "fuel": "gasoline", "current_price": 3.56775, "yoy_price": 3.0080833333, "absolute_change": 0.5596666667, "percentage_change": 18.6054242735}, {"date": "2011-11-21", "fuel": "gasoline", "current_price": 3.5034166667, "yoy_price": 3, "absolute_change": 0.5034166667, "percentage_change": 16.7805555556}, {"date": "2011-11-28", "fuel": "gasoline", "current_price": 3.447, "yoy_price": 2.9825833333, "absolute_change": 0.4644166667, "percentage_change": 15.5709535917}, {"date": "2011-12-05", "fuel": "gasoline", "current_price": 3.4248333333, "yoy_price": 3.0786666667, "absolute_change": 0.3461666667, "percentage_change": 11.2440450411}, {"date": "2011-12-12", "fuel": "gasoline", "current_price": 3.4170833333, "yoy_price": 3.1004166667, "absolute_change": 0.3166666667, "percentage_change": 10.2136809569}, {"date": "2011-12-19", "fuel": "gasoline", "current_price": 3.3644166667, "yoy_price": 3.10525, "absolute_change": 0.2591666667, "percentage_change": 8.3460805625}, {"date": "2011-12-26", "fuel": "gasoline", "current_price": 3.3875, "yoy_price": 3.1688333333, "absolute_change": 0.2186666667, "percentage_change": 6.9005417346}, {"date": "2012-01-02", "fuel": "gasoline", "current_price": 3.429, "yoy_price": 3.1865, "absolute_change": 0.2425, "percentage_change": 7.6102306606}, {"date": "2012-01-09", "fuel": "gasoline", "current_price": 3.513, "yoy_price": 3.2041666667, "absolute_change": 0.3088333333, "percentage_change": 9.6384915475}, {"date": "2012-01-16", "fuel": "gasoline", "current_price": 3.52275, "yoy_price": 3.2201666667, "absolute_change": 0.3025833333, "percentage_change": 9.3965115677}, {"date": "2012-01-23", "fuel": "gasoline", "current_price": 3.5246666667, "yoy_price": 3.2259166667, "absolute_change": 0.29875, "percentage_change": 9.2609335848}, {"date": "2012-01-30", "fuel": "gasoline", "current_price": 3.5743333333, "yoy_price": 3.2195, "absolute_change": 0.3548333333, "percentage_change": 11.0213801315}, {"date": "2012-02-06", "fuel": "gasoline", "current_price": 3.61375, "yoy_price": 3.2478333333, "absolute_change": 0.3659166667, "percentage_change": 11.2664853492}, {"date": "2012-02-13", "fuel": "gasoline", "current_price": 3.6596666667, "yoy_price": 3.2588333333, "absolute_change": 0.4008333333, "percentage_change": 12.2999028282}, {"date": "2012-02-20", "fuel": "gasoline", "current_price": 3.732, "yoy_price": 3.3095, "absolute_change": 0.4225, "percentage_change": 12.7662788941}, {"date": "2012-02-27", "fuel": "gasoline", "current_price": 3.8614166667, "yoy_price": 3.4985833333, "absolute_change": 0.3628333333, "percentage_change": 10.3708643975}, {"date": "2012-03-05", "fuel": "gasoline", "current_price": 3.9273333333, "yoy_price": 3.6375833333, "absolute_change": 0.28975, "percentage_change": 7.9654532542}, {"date": "2012-03-12", "fuel": "gasoline", "current_price": 3.964, "yoy_price": 3.6886666667, "absolute_change": 0.2753333333, "percentage_change": 7.4643050786}, {"date": "2012-03-19", "fuel": "gasoline", "current_price": 4.0018333333, "yoy_price": 3.6863333333, "absolute_change": 0.3155, "percentage_change": 8.5586400217}, {"date": "2012-03-26", "fuel": "gasoline", "current_price": 4.0504166667, "yoy_price": 3.7195, "absolute_change": 0.3309166667, "percentage_change": 8.8968051261}, {"date": "2012-04-02", "fuel": "gasoline", "current_price": 4.0706666667, "yoy_price": 3.8025, "absolute_change": 0.2681666667, "percentage_change": 7.0523778216}, {"date": "2012-04-09", "fuel": "gasoline", "current_price": 4.07175, "yoy_price": 3.909, "absolute_change": 0.16275, "percentage_change": 4.1634689179}, {"date": "2012-04-16", "fuel": "gasoline", "current_price": 4.0521666667, "yoy_price": 3.9649166667, "absolute_change": 0.08725, "percentage_change": 2.2005506631}, {"date": "2012-04-23", "fuel": "gasoline", "current_price": 4.0058333333, "yoy_price": 4.002, "absolute_change": 0.0038333333, "percentage_change": 0.0957854406}, {"date": "2012-04-30", "fuel": "gasoline", "current_price": 3.9668333333, "yoy_price": 4.0819166667, "absolute_change": -0.1150833333, "percentage_change": -2.8193454872}, {"date": "2012-05-07", "fuel": "gasoline", "current_price": 3.92975, "yoy_price": 4.08775, "absolute_change": -0.158, "percentage_change": -3.865207021}, {"date": "2012-05-14", "fuel": "gasoline", "current_price": 3.905, "yoy_price": 4.0836666667, "absolute_change": -0.1786666667, "percentage_change": -4.3751530487}, {"date": "2012-05-21", "fuel": "gasoline", "current_price": 3.8615, "yoy_price": 3.9784166667, "absolute_change": -0.1169166667, "percentage_change": -2.9387738003}, {"date": "2012-05-28", "fuel": "gasoline", "current_price": 3.8170833333, "yoy_price": 3.91875, "absolute_change": -0.1016666667, "percentage_change": -2.5943646996}, {"date": "2012-06-04", "fuel": "gasoline", "current_price": 3.7609166667, "yoy_price": 3.8975, "absolute_change": -0.1365833333, "percentage_change": -3.5043831516}, {"date": "2012-06-11", "fuel": "gasoline", "current_price": 3.7135833333, "yoy_price": 3.8353333333, "absolute_change": -0.12175, "percentage_change": -3.1744307318}, {"date": "2012-06-18", "fuel": "gasoline", "current_price": 3.6640833333, "yoy_price": 3.7805833333, "absolute_change": -0.1165, "percentage_change": -3.0815350365}, {"date": "2012-06-25", "fuel": "gasoline", "current_price": 3.5713333333, "yoy_price": 3.7065833333, "absolute_change": -0.13525, "percentage_change": -3.6489129702}, {"date": "2012-07-02", "fuel": "gasoline", "current_price": 3.4944166667, "yoy_price": 3.7025, "absolute_change": -0.2080833333, "percentage_change": -5.6200765249}, {"date": "2012-07-09", "fuel": "gasoline", "current_price": 3.5433333333, "yoy_price": 3.7580833333, "absolute_change": -0.21475, "percentage_change": -5.7143490698}, {"date": "2012-07-16", "fuel": "gasoline", "current_price": 3.5616666667, "yoy_price": 3.7989166667, "absolute_change": -0.23725, "percentage_change": -6.2452014829}, {"date": "2012-07-23", "fuel": "gasoline", "current_price": 3.6311666667, "yoy_price": 3.8170833333, "absolute_change": -0.1859166667, "percentage_change": -4.8706473092}, {"date": "2012-07-30", "fuel": "gasoline", "current_price": 3.6438333333, "yoy_price": 3.8271666667, "absolute_change": -0.1833333333, "percentage_change": -4.7903148543}, {"date": "2012-08-06", "fuel": "gasoline", "current_price": 3.76925, "yoy_price": 3.79175, "absolute_change": -0.0225, "percentage_change": -0.5933935518}, {"date": "2012-08-13", "fuel": "gasoline", "current_price": 3.8539166667, "yoy_price": 3.7258333333, "absolute_change": 0.1280833333, "percentage_change": 3.4377096846}, {"date": "2012-08-20", "fuel": "gasoline", "current_price": 3.8799166667, "yoy_price": 3.70175, "absolute_change": 0.1781666667, "percentage_change": 4.813038878}, {"date": "2012-08-27", "fuel": "gasoline", "current_price": 3.9118333333, "yoy_price": 3.7428333333, "absolute_change": 0.169, "percentage_change": 4.5152958988}, {"date": "2012-09-03", "fuel": "gasoline", "current_price": 3.974, "yoy_price": 3.7889166667, "absolute_change": 0.1850833333, "percentage_change": 4.8848615479}, {"date": "2012-09-10", "fuel": "gasoline", "current_price": 3.9806666667, "yoy_price": 3.7779166667, "absolute_change": 0.20275, "percentage_change": 5.366714459}, {"date": "2012-09-17", "fuel": "gasoline", "current_price": 4.012, "yoy_price": 3.7255, "absolute_change": 0.2865, "percentage_change": 7.6902429204}, {"date": "2012-09-24", "fuel": "gasoline", "current_price": 3.9665833333, "yoy_price": 3.6406666667, "absolute_change": 0.3259166667, "percentage_change": 8.9521149973}, {"date": "2012-10-01", "fuel": "gasoline", "current_price": 3.94525, "yoy_price": 3.5676666667, "absolute_change": 0.3775833333, "percentage_change": 10.5834812669}, {"date": "2012-10-08", "fuel": "gasoline", "current_price": 4.0136666667, "yoy_price": 3.5489166667, "absolute_change": 0.46475, "percentage_change": 13.095545589}, {"date": "2012-10-15", "fuel": "gasoline", "current_price": 3.98625, "yoy_price": 3.6025, "absolute_change": 0.38375, "percentage_change": 10.6523247745}, {"date": "2012-10-22", "fuel": "gasoline", "current_price": 3.8585, "yoy_price": 3.5915, "absolute_change": 0.267, "percentage_change": 7.4342196854}, {"date": "2012-10-29", "fuel": "gasoline", "current_price": 3.7351666667, "yoy_price": 3.5828333333, "absolute_change": 0.1523333333, "percentage_change": 4.251756059}, {"date": "2012-11-05", "fuel": "gasoline", "current_price": 3.6595833333, "yoy_price": 3.5561666667, "absolute_change": 0.1034166667, "percentage_change": 2.9080939214}, {"date": "2012-11-12", "fuel": "gasoline", "current_price": 3.6109166667, "yoy_price": 3.56775, "absolute_change": 0.0431666667, "percentage_change": 1.2099128769}, {"date": "2012-11-19", "fuel": "gasoline", "current_price": 3.5866666667, "yoy_price": 3.5034166667, "absolute_change": 0.08325, "percentage_change": 2.3762517542}, {"date": "2012-11-26", "fuel": "gasoline", "current_price": 3.5889166667, "yoy_price": 3.447, "absolute_change": 0.1419166667, "percentage_change": 4.1171066628}, {"date": "2012-12-03", "fuel": "gasoline", "current_price": 3.5489166667, "yoy_price": 3.4248333333, "absolute_change": 0.1240833333, "percentage_change": 3.6230473502}, {"date": "2012-12-10", "fuel": "gasoline", "current_price": 3.5030833333, "yoy_price": 3.4170833333, "absolute_change": 0.086, "percentage_change": 2.516766248}, {"date": "2012-12-17", "fuel": "gasoline", "current_price": 3.4101666667, "yoy_price": 3.3644166667, "absolute_change": 0.04575, "percentage_change": 1.3598196815}, {"date": "2012-12-24", "fuel": "gasoline", "current_price": 3.4134166667, "yoy_price": 3.3875, "absolute_change": 0.0259166667, "percentage_change": 0.7650676507}, {"date": "2012-12-31", "fuel": "gasoline", "current_price": 3.4539166667, "yoy_price": 3.429, "absolute_change": 0.0249166667, "percentage_change": 0.7266452805}, {"date": "2013-01-07", "fuel": "gasoline", "current_price": 3.4639166667, "yoy_price": 3.513, "absolute_change": -0.0490833333, "percentage_change": -1.3971913844}, {"date": "2013-01-14", "fuel": "gasoline", "current_price": 3.469, "yoy_price": 3.52275, "absolute_change": -0.05375, "percentage_change": -1.5257966078}, {"date": "2013-01-21", "fuel": "gasoline", "current_price": 3.4744166667, "yoy_price": 3.5246666667, "absolute_change": -0.05025, "percentage_change": -1.4256667297}, {"date": "2013-01-28", "fuel": "gasoline", "current_price": 3.5135, "yoy_price": 3.5743333333, "absolute_change": -0.0608333333, "percentage_change": -1.7019490814}, {"date": "2013-02-04", "fuel": "gasoline", "current_price": 3.6901666667, "yoy_price": 3.61375, "absolute_change": 0.0764166667, "percentage_change": 2.1146085553}, {"date": "2013-02-11", "fuel": "gasoline", "current_price": 3.7646666667, "yoy_price": 3.6596666667, "absolute_change": 0.105, "percentage_change": 2.8691137626}, {"date": "2013-02-18", "fuel": "gasoline", "current_price": 3.8923333333, "yoy_price": 3.732, "absolute_change": 0.1603333333, "percentage_change": 4.2961772061}, {"date": "2013-02-25", "fuel": "gasoline", "current_price": 3.9339166667, "yoy_price": 3.8614166667, "absolute_change": 0.0725, "percentage_change": 1.8775492587}, {"date": "2013-03-04", "fuel": "gasoline", "current_price": 3.91, "yoy_price": 3.9273333333, "absolute_change": -0.0173333333, "percentage_change": -0.4413512137}, {"date": "2013-03-11", "fuel": "gasoline", "current_price": 3.86525, "yoy_price": 3.964, "absolute_change": -0.09875, "percentage_change": -2.4911705348}, {"date": "2013-03-18", "fuel": "gasoline", "current_price": 3.8494166667, "yoy_price": 4.0018333333, "absolute_change": -0.1524166667, "percentage_change": -3.8086710258}, {"date": "2013-03-25", "fuel": "gasoline", "current_price": 3.8305833333, "yoy_price": 4.0504166667, "absolute_change": -0.2198333333, "percentage_change": -5.427425162}, {"date": "2013-04-01", "fuel": "gasoline", "current_price": 3.8023333333, "yoy_price": 4.0706666667, "absolute_change": -0.2683333333, "percentage_change": -6.5918768425}, {"date": "2013-04-08", "fuel": "gasoline", "current_price": 3.7638333333, "yoy_price": 4.07175, "absolute_change": -0.3079166667, "percentage_change": -7.5622684759}, {"date": "2013-04-15", "fuel": "gasoline", "current_price": 3.7015, "yoy_price": 4.0521666667, "absolute_change": -0.3506666667, "percentage_change": -8.6538066055}, {"date": "2013-04-22", "fuel": "gasoline", "current_price": 3.688, "yoy_price": 4.0058333333, "absolute_change": -0.3178333333, "percentage_change": -7.9342625338}, {"date": "2013-04-29", "fuel": "gasoline", "current_price": 3.6716666667, "yoy_price": 3.9668333333, "absolute_change": -0.2951666667, "percentage_change": -7.4408638293}, {"date": "2013-05-06", "fuel": "gasoline", "current_price": 3.6834166667, "yoy_price": 3.92975, "absolute_change": -0.2463333333, "percentage_change": -6.2684225036}, {"date": "2013-05-13", "fuel": "gasoline", "current_price": 3.74425, "yoy_price": 3.905, "absolute_change": -0.16075, "percentage_change": -4.1165172855}, {"date": "2013-05-20", "fuel": "gasoline", "current_price": 3.7975, "yoy_price": 3.8615, "absolute_change": -0.064, "percentage_change": -1.6573870258}, {"date": "2013-05-27", "fuel": "gasoline", "current_price": 3.7765833333, "yoy_price": 3.8170833333, "absolute_change": -0.0405, "percentage_change": -1.0610195394}, {"date": "2013-06-03", "fuel": "gasoline", "current_price": 3.7738333333, "yoy_price": 3.7609166667, "absolute_change": 0.0129166667, "percentage_change": 0.3434446389}, {"date": "2013-06-10", "fuel": "gasoline", "current_price": 3.78475, "yoy_price": 3.7135833333, "absolute_change": 0.0711666667, "percentage_change": 1.9163880349}, {"date": "2013-06-17", "fuel": "gasoline", "current_price": 3.7660833333, "yoy_price": 3.6640833333, "absolute_change": 0.102, "percentage_change": 2.783779481}, {"date": "2013-06-24", "fuel": "gasoline", "current_price": 3.7355, "yoy_price": 3.5713333333, "absolute_change": 0.1641666667, "percentage_change": 4.5967892477}, {"date": "2013-07-01", "fuel": "gasoline", "current_price": 3.6634166667, "yoy_price": 3.4944166667, "absolute_change": 0.169, "percentage_change": 4.836286457}, {"date": "2013-07-08", "fuel": "gasoline", "current_price": 3.65675, "yoy_price": 3.5433333333, "absolute_change": 0.1134166667, "percentage_change": 3.2008466604}, {"date": "2013-07-15", "fuel": "gasoline", "current_price": 3.7924166667, "yoy_price": 3.5616666667, "absolute_change": 0.23075, "percentage_change": 6.4787084698}, {"date": "2013-07-22", "fuel": "gasoline", "current_price": 3.8378333333, "yoy_price": 3.6311666667, "absolute_change": 0.2066666667, "percentage_change": 5.6914673888}, {"date": "2013-07-29", "fuel": "gasoline", "current_price": 3.80725, "yoy_price": 3.6438333333, "absolute_change": 0.1634166667, "percentage_change": 4.4847459178}, {"date": "2013-08-05", "fuel": "gasoline", "current_price": 3.78775, "yoy_price": 3.76925, "absolute_change": 0.0185, "percentage_change": 0.4908138224}, {"date": "2013-08-12", "fuel": "gasoline", "current_price": 3.7235833333, "yoy_price": 3.8539166667, "absolute_change": -0.1303333333, "percentage_change": -3.3818409843}, {"date": "2013-08-19", "fuel": "gasoline", "current_price": 3.7071666667, "yoy_price": 3.8799166667, "absolute_change": -0.17275, "percentage_change": -4.4524152151}, {"date": "2013-08-26", "fuel": "gasoline", "current_price": 3.70625, "yoy_price": 3.9118333333, "absolute_change": -0.2055833333, "percentage_change": -5.2554215841}, {"date": "2013-09-02", "fuel": "gasoline", "current_price": 3.754, "yoy_price": 3.974, "absolute_change": -0.22, "percentage_change": -5.5359838953}, {"date": "2013-09-09", "fuel": "gasoline", "current_price": 3.7398333333, "yoy_price": 3.9806666667, "absolute_change": -0.2408333333, "percentage_change": -6.0500753643}, {"date": "2013-09-16", "fuel": "gasoline", "current_price": 3.7113333333, "yoy_price": 4.012, "absolute_change": -0.3006666667, "percentage_change": -7.4941841143}, {"date": "2013-09-23", "fuel": "gasoline", "current_price": 3.6588333333, "yoy_price": 3.9665833333, "absolute_change": -0.30775, "percentage_change": -7.7585663564}, {"date": "2013-09-30", "fuel": "gasoline", "current_price": 3.59425, "yoy_price": 3.94525, "absolute_change": -0.351, "percentage_change": -8.8967746024}, {"date": "2013-10-07", "fuel": "gasoline", "current_price": 3.53525, "yoy_price": 4.0136666667, "absolute_change": -0.4784166667, "percentage_change": -11.9196910556}, {"date": "2013-10-14", "fuel": "gasoline", "current_price": 3.52225, "yoy_price": 3.98625, "absolute_change": -0.464, "percentage_change": -11.6400125431}, {"date": "2013-10-21", "fuel": "gasoline", "current_price": 3.5230833333, "yoy_price": 3.8585, "absolute_change": -0.3354166667, "percentage_change": -8.6929290311}, {"date": "2013-10-28", "fuel": "gasoline", "current_price": 3.4666666667, "yoy_price": 3.7351666667, "absolute_change": -0.2685, "percentage_change": -7.188434251}, {"date": "2013-11-04", "fuel": "gasoline", "current_price": 3.43525, "yoy_price": 3.6595833333, "absolute_change": -0.2243333333, "percentage_change": -6.1300239098}, {"date": "2013-11-11", "fuel": "gasoline", "current_price": 3.3709166667, "yoy_price": 3.6109166667, "absolute_change": -0.24, "percentage_change": -6.6465117352}, {"date": "2013-11-18", "fuel": "gasoline", "current_price": 3.3919166667, "yoy_price": 3.5866666667, "absolute_change": -0.19475, "percentage_change": -5.4298327138}, {"date": "2013-11-25", "fuel": "gasoline", "current_price": 3.4623333333, "yoy_price": 3.5889166667, "absolute_change": -0.1265833333, "percentage_change": -3.527062484}, {"date": "2013-12-02", "fuel": "gasoline", "current_price": 3.4495, "yoy_price": 3.5489166667, "absolute_change": -0.0994166667, "percentage_change": -2.8013243478}, {"date": "2013-12-09", "fuel": "gasoline", "current_price": 3.44625, "yoy_price": 3.5030833333, "absolute_change": -0.0568333333, "percentage_change": -1.622380284}, {"date": "2013-12-16", "fuel": "gasoline", "current_price": 3.4215, "yoy_price": 3.4101666667, "absolute_change": 0.0113333333, "percentage_change": 0.3323395728}, {"date": "2013-12-23", "fuel": "gasoline", "current_price": 3.45025, "yoy_price": 3.4134166667, "absolute_change": 0.0368333333, "percentage_change": 1.0790752179}, {"date": "2013-12-30", "fuel": "gasoline", "current_price": 3.5034166667, "yoy_price": 3.4539166667, "absolute_change": 0.0495, "percentage_change": 1.4331555963}, {"date": "2014-01-06", "fuel": "gasoline", "current_price": 3.5093333333, "yoy_price": 3.4639166667, "absolute_change": 0.0454166667, "percentage_change": 1.3111362379}, {"date": "2014-01-13", "fuel": "gasoline", "current_price": 3.4998333333, "yoy_price": 3.469, "absolute_change": 0.0308333333, "percentage_change": 0.8888248294}, {"date": "2014-01-20", "fuel": "gasoline", "current_price": 3.4701666667, "yoy_price": 3.4744166667, "absolute_change": -0.00425, "percentage_change": -0.1223226921}, {"date": "2014-01-27", "fuel": "gasoline", "current_price": 3.4669166667, "yoy_price": 3.5135, "absolute_change": -0.0465833333, "percentage_change": -1.3258384327}, {"date": "2014-02-03", "fuel": "gasoline", "current_price": 3.46375, "yoy_price": 3.6901666667, "absolute_change": -0.2264166667, "percentage_change": -6.1356758954}, {"date": "2014-02-10", "fuel": "gasoline", "current_price": 3.479, "yoy_price": 3.7646666667, "absolute_change": -0.2856666667, "percentage_change": -7.588099876}, {"date": "2014-02-17", "fuel": "gasoline", "current_price": 3.5475, "yoy_price": 3.8923333333, "absolute_change": -0.3448333333, "percentage_change": -8.8592960521}, {"date": "2014-02-24", "fuel": "gasoline", "current_price": 3.60675, "yoy_price": 3.9339166667, "absolute_change": -0.3271666667, "percentage_change": -8.3165632216}, {"date": "2014-03-03", "fuel": "gasoline", "current_price": 3.64175, "yoy_price": 3.91, "absolute_change": -0.26825, "percentage_change": -6.8606138107}, {"date": "2014-03-10", "fuel": "gasoline", "current_price": 3.6708333333, "yoy_price": 3.86525, "absolute_change": -0.1944166667, "percentage_change": -5.029860078}, {"date": "2014-03-17", "fuel": "gasoline", "current_price": 3.706, "yoy_price": 3.8494166667, "absolute_change": -0.1434166667, "percentage_change": -3.725672721}, {"date": "2014-03-24", "fuel": "gasoline", "current_price": 3.7111666667, "yoy_price": 3.8305833333, "absolute_change": -0.1194166667, "percentage_change": -3.1174538256}, {"date": "2014-03-31", "fuel": "gasoline", "current_price": 3.7381666667, "yoy_price": 3.8023333333, "absolute_change": -0.0641666667, "percentage_change": -1.68756027}, {"date": "2014-04-07", "fuel": "gasoline", "current_price": 3.7605, "yoy_price": 3.7638333333, "absolute_change": -0.0033333333, "percentage_change": -0.0885621928}, {"date": "2014-04-14", "fuel": "gasoline", "current_price": 3.816, "yoy_price": 3.7015, "absolute_change": 0.1145, "percentage_change": 3.0933405376}, {"date": "2014-04-21", "fuel": "gasoline", "current_price": 3.85025, "yoy_price": 3.688, "absolute_change": 0.16225, "percentage_change": 4.3994034707}, {"date": "2014-04-28", "fuel": "gasoline", "current_price": 3.8839166667, "yoy_price": 3.6716666667, "absolute_change": 0.21225, "percentage_change": 5.7807535179}, {"date": "2014-05-05", "fuel": "gasoline", "current_price": 3.85875, "yoy_price": 3.6834166667, "absolute_change": 0.1753333333, "percentage_change": 4.7600733015}, {"date": "2014-05-12", "fuel": "gasoline", "current_price": 3.8420833333, "yoy_price": 3.74425, "absolute_change": 0.0978333333, "percentage_change": 2.6128953284}, {"date": "2014-05-19", "fuel": "gasoline", "current_price": 3.8385833333, "yoy_price": 3.7975, "absolute_change": 0.0410833333, "percentage_change": 1.0818520957}, {"date": "2014-05-26", "fuel": "gasoline", "current_price": 3.84325, "yoy_price": 3.7765833333, "absolute_change": 0.0666666667, "percentage_change": 1.7652640173}, {"date": "2014-06-02", "fuel": "gasoline", "current_price": 3.8565833333, "yoy_price": 3.7738333333, "absolute_change": 0.08275, "percentage_change": 2.1927306452}, {"date": "2014-06-09", "fuel": "gasoline", "current_price": 3.8398333333, "yoy_price": 3.78475, "absolute_change": 0.0550833333, "percentage_change": 1.4554021622}, {"date": "2014-06-16", "fuel": "gasoline", "current_price": 3.85, "yoy_price": 3.7660833333, "absolute_change": 0.0839166667, "percentage_change": 2.2282211847}, {"date": "2014-06-23", "fuel": "gasoline", "current_price": 3.8686666667, "yoy_price": 3.7355, "absolute_change": 0.1331666667, "percentage_change": 3.5648953732}, {"date": "2014-06-30", "fuel": "gasoline", "current_price": 3.8699166667, "yoy_price": 3.6634166667, "absolute_change": 0.2065, "percentage_change": 5.6368144492}, {"date": "2014-07-07", "fuel": "gasoline", "current_price": 3.8475, "yoy_price": 3.65675, "absolute_change": 0.19075, "percentage_change": 5.2163806659}, {"date": "2014-07-14", "fuel": "gasoline", "current_price": 3.80875, "yoy_price": 3.7924166667, "absolute_change": 0.0163333333, "percentage_change": 0.4306840405}, {"date": "2014-07-21", "fuel": "gasoline", "current_price": 3.7668333333, "yoy_price": 3.8378333333, "absolute_change": -0.071, "percentage_change": -1.8500021714}, {"date": "2014-07-28", "fuel": "gasoline", "current_price": 3.7155833333, "yoy_price": 3.80725, "absolute_change": -0.0916666667, "percentage_change": -2.4076870882}, {"date": "2014-08-04", "fuel": "gasoline", "current_price": 3.6915, "yoy_price": 3.78775, "absolute_change": -0.09625, "percentage_change": -2.5410863969}, {"date": "2014-08-11", "fuel": "gasoline", "current_price": 3.6748333333, "yoy_price": 3.7235833333, "absolute_change": -0.04875, "percentage_change": -1.3092227469}, {"date": "2014-08-18", "fuel": "gasoline", "current_price": 3.64375, "yoy_price": 3.7071666667, "absolute_change": -0.0634166667, "percentage_change": -1.7106505417}, {"date": "2014-08-25", "fuel": "gasoline", "current_price": 3.6246666667, "yoy_price": 3.70625, "absolute_change": -0.0815833333, "percentage_change": -2.2012366498}, {"date": "2014-09-01", "fuel": "gasoline", "current_price": 3.6250833333, "yoy_price": 3.754, "absolute_change": -0.1289166667, "percentage_change": -3.4341147221}, {"date": "2014-09-08", "fuel": "gasoline", "current_price": 3.6225, "yoy_price": 3.7398333333, "absolute_change": -0.1173333333, "percentage_change": -3.1373947146}, {"date": "2014-09-15", "fuel": "gasoline", "current_price": 3.5761666667, "yoy_price": 3.7113333333, "absolute_change": -0.1351666667, "percentage_change": -3.6419974852}, {"date": "2014-09-22", "fuel": "gasoline", "current_price": 3.5251666667, "yoy_price": 3.6588333333, "absolute_change": -0.1336666667, "percentage_change": -3.6532592356}, {"date": "2014-09-29", "fuel": "gasoline", "current_price": 3.5249166667, "yoy_price": 3.59425, "absolute_change": -0.0693333333, "percentage_change": -1.9290069787}, {"date": "2014-10-06", "fuel": "gasoline", "current_price": 3.4766666667, "yoy_price": 3.53525, "absolute_change": -0.0585833333, "percentage_change": -1.6571199585}, {"date": "2014-10-13", "fuel": "gasoline", "current_price": 3.3915, "yoy_price": 3.52225, "absolute_change": -0.13075, "percentage_change": -3.712115835}, {"date": "2014-10-20", "fuel": "gasoline", "current_price": 3.3021666667, "yoy_price": 3.5230833333, "absolute_change": -0.2209166667, "percentage_change": -6.2705489983}, {"date": "2014-10-27", "fuel": "gasoline", "current_price": 3.2323333333, "yoy_price": 3.4666666667, "absolute_change": -0.2343333333, "percentage_change": -6.7596153846}, {"date": "2014-11-03", "fuel": "gasoline", "current_price": 3.17, "yoy_price": 3.43525, "absolute_change": -0.26525, "percentage_change": -7.7214176552}, {"date": "2014-11-10", "fuel": "gasoline", "current_price": 3.116, "yoy_price": 3.3709166667, "absolute_change": -0.2549166667, "percentage_change": -7.5622357915}, {"date": "2014-11-17", "fuel": "gasoline", "current_price": 3.0705833333, "yoy_price": 3.3919166667, "absolute_change": -0.3213333333, "percentage_change": -9.4735031816}, {"date": "2014-11-24", "fuel": "gasoline", "current_price": 3.0020833333, "yoy_price": 3.4623333333, "absolute_change": -0.46025, "percentage_change": -13.293058631}, {"date": "2014-12-01", "fuel": "gasoline", "current_price": 2.9605, "yoy_price": 3.4495, "absolute_change": -0.489, "percentage_change": -14.1759675315}, {"date": "2014-12-08", "fuel": "gasoline", "current_price": 2.8666666667, "yoy_price": 3.44625, "absolute_change": -0.5795833333, "percentage_change": -16.8177971225}, {"date": "2014-12-15", "fuel": "gasoline", "current_price": 2.74625, "yoy_price": 3.4215, "absolute_change": -0.67525, "percentage_change": -19.7354961274}, {"date": "2014-12-22", "fuel": "gasoline", "current_price": 2.6041666667, "yoy_price": 3.45025, "absolute_change": -0.8460833333, "percentage_change": -24.5223776055}, {"date": "2014-12-29", "fuel": "gasoline", "current_price": 2.5036666667, "yoy_price": 3.5034166667, "absolute_change": -0.99975, "percentage_change": -28.5364287243}, {"date": "2015-01-05", "fuel": "gasoline", "current_price": 2.42375, "yoy_price": 3.5093333333, "absolute_change": -1.0855833333, "percentage_change": -30.9341755319}, {"date": "2015-01-12", "fuel": "gasoline", "current_price": 2.3450833333, "yoy_price": 3.4998333333, "absolute_change": -1.15475, "percentage_change": -32.9944283061}, {"date": "2015-01-19", "fuel": "gasoline", "current_price": 2.2650833333, "yoy_price": 3.4701666667, "absolute_change": -1.2050833333, "percentage_change": -34.7269583593}, {"date": "2015-01-26", "fuel": "gasoline", "current_price": 2.2385833333, "yoy_price": 3.4669166667, "absolute_change": -1.2283333333, "percentage_change": -35.4301372497}, {"date": "2015-02-02", "fuel": "gasoline", "current_price": 2.2544166667, "yoy_price": 3.46375, "absolute_change": -1.2093333333, "percentage_change": -34.9139901359}, {"date": "2015-02-09", "fuel": "gasoline", "current_price": 2.3746666667, "yoy_price": 3.479, "absolute_change": -1.1043333333, "percentage_change": -31.7428379803}, {"date": "2015-02-16", "fuel": "gasoline", "current_price": 2.45975, "yoy_price": 3.5475, "absolute_change": -1.08775, "percentage_change": -30.6624383369}, {"date": "2015-02-23", "fuel": "gasoline", "current_price": 2.5195833333, "yoy_price": 3.60675, "absolute_change": -1.0871666667, "percentage_change": -30.1425567801}, {"date": "2015-03-02", "fuel": "gasoline", "current_price": 2.67225, "yoy_price": 3.64175, "absolute_change": -0.9695, "percentage_change": -26.6218164344}, {"date": "2015-03-09", "fuel": "gasoline", "current_price": 2.6890833333, "yoy_price": 3.6708333333, "absolute_change": -0.98175, "percentage_change": -26.7446083995}, {"date": "2015-03-16", "fuel": "gasoline", "current_price": 2.65525, "yoy_price": 3.706, "absolute_change": -1.05075, "percentage_change": -28.3526713438}, {"date": "2015-03-23", "fuel": "gasoline", "current_price": 2.6515833333, "yoy_price": 3.7111666667, "absolute_change": -1.0595833333, "percentage_change": -28.5512192931}, {"date": "2015-03-30", "fuel": "gasoline", "current_price": 2.64325, "yoy_price": 3.7381666667, "absolute_change": -1.0949166667, "percentage_change": -29.2902046458}, {"date": "2015-04-06", "fuel": "gasoline", "current_price": 2.6116666667, "yoy_price": 3.7605, "absolute_change": -1.1488333333, "percentage_change": -30.5500155121}, {"date": "2015-04-13", "fuel": "gasoline", "current_price": 2.6054166667, "yoy_price": 3.816, "absolute_change": -1.2105833333, "percentage_change": -31.7238819008}, {"date": "2015-04-20", "fuel": "gasoline", "current_price": 2.6794166667, "yoy_price": 3.85025, "absolute_change": -1.1708333333, "percentage_change": -30.4092807826}, {"date": "2015-04-27", "fuel": "gasoline", "current_price": 2.776, "yoy_price": 3.8839166667, "absolute_change": -1.1079166667, "percentage_change": -28.5257579334}, {"date": "2015-05-04", "fuel": "gasoline", "current_price": 2.8776666667, "yoy_price": 3.85875, "absolute_change": -0.9810833333, "percentage_change": -25.4249001188}, {"date": "2015-05-11", "fuel": "gasoline", "current_price": 2.9048333333, "yoy_price": 3.8420833333, "absolute_change": -0.93725, "percentage_change": -24.3943173192}, {"date": "2015-05-18", "fuel": "gasoline", "current_price": 2.95325, "yoy_price": 3.8385833333, "absolute_change": -0.8853333333, "percentage_change": -23.0640644335}, {"date": "2015-05-25", "fuel": "gasoline", "current_price": 2.9800833333, "yoy_price": 3.84325, "absolute_change": -0.8631666667, "percentage_change": -22.4592900974}, {"date": "2015-06-01", "fuel": "gasoline", "current_price": 2.9816666667, "yoy_price": 3.8565833333, "absolute_change": -0.8749166667, "percentage_change": -22.6863156075}, {"date": "2015-06-08", "fuel": "gasoline", "current_price": 2.9790833333, "yoy_price": 3.8398333333, "absolute_change": -0.86075, "percentage_change": -22.4163375146}, {"date": "2015-06-15", "fuel": "gasoline", "current_price": 3.0245833333, "yoy_price": 3.85, "absolute_change": -0.8254166667, "percentage_change": -21.4393939394}, {"date": "2015-06-22", "fuel": "gasoline", "current_price": 3.0031666667, "yoy_price": 3.8686666667, "absolute_change": -0.8655, "percentage_change": -22.3720489402}, {"date": "2015-06-29", "fuel": "gasoline", "current_price": 2.9933333333, "yoy_price": 3.8699166667, "absolute_change": -0.8765833333, "percentage_change": -22.6512198798}, {"date": "2015-07-06", "fuel": "gasoline", "current_price": 2.9863333333, "yoy_price": 3.8475, "absolute_change": -0.8611666667, "percentage_change": -22.3824994585}, {"date": "2015-07-13", "fuel": "gasoline", "current_price": 3.0495833333, "yoy_price": 3.80875, "absolute_change": -0.7591666667, "percentage_change": -19.9321737228}, {"date": "2015-07-20", "fuel": "gasoline", "current_price": 3.01825, "yoy_price": 3.7668333333, "absolute_change": -0.7485833333, "percentage_change": -19.8730144684}, {"date": "2015-07-27", "fuel": "gasoline", "current_price": 2.964, "yoy_price": 3.7155833333, "absolute_change": -0.7515833333, "percentage_change": -20.2278691098}, {"date": "2015-08-03", "fuel": "gasoline", "current_price": 2.9108333333, "yoy_price": 3.6915, "absolute_change": -0.7806666667, "percentage_change": -21.1476816109}, {"date": "2015-08-10", "fuel": "gasoline", "current_price": 2.8488333333, "yoy_price": 3.6748333333, "absolute_change": -0.826, "percentage_change": -22.4772098508}, {"date": "2015-08-17", "fuel": "gasoline", "current_price": 2.9221666667, "yoy_price": 3.64375, "absolute_change": -0.7215833333, "percentage_change": -19.8033161807}, {"date": "2015-08-24", "fuel": "gasoline", "current_price": 2.8459166667, "yoy_price": 3.6246666667, "absolute_change": -0.77875, "percentage_change": -21.4847342284}, {"date": "2015-08-31", "fuel": "gasoline", "current_price": 2.7256666667, "yoy_price": 3.6250833333, "absolute_change": -0.8994166667, "percentage_change": -24.8109238868}, {"date": "2015-09-07", "fuel": "gasoline", "current_price": 2.6556666667, "yoy_price": 3.6225, "absolute_change": -0.9668333333, "percentage_change": -26.6896710375}, {"date": "2015-09-14", "fuel": "gasoline", "current_price": 2.5951666667, "yoy_price": 3.5761666667, "absolute_change": -0.981, "percentage_change": -27.4316074008}, {"date": "2015-09-21", "fuel": "gasoline", "current_price": 2.5485833333, "yoy_price": 3.5251666667, "absolute_change": -0.9765833333, "percentage_change": -27.7031818827}, {"date": "2015-09-28", "fuel": "gasoline", "current_price": 2.5356666667, "yoy_price": 3.5249166667, "absolute_change": -0.98925, "percentage_change": -28.0644932504}, {"date": "2015-10-05", "fuel": "gasoline", "current_price": 2.52875, "yoy_price": 3.4766666667, "absolute_change": -0.9479166667, "percentage_change": -27.2651006711}, {"date": "2015-10-12", "fuel": "gasoline", "current_price": 2.5398333333, "yoy_price": 3.3915, "absolute_change": -0.8516666667, "percentage_change": -25.1117991056}, {"date": "2015-10-19", "fuel": "gasoline", "current_price": 2.4845833333, "yoy_price": 3.3021666667, "absolute_change": -0.8175833333, "percentage_change": -24.7589966184}, {"date": "2015-10-26", "fuel": "gasoline", "current_price": 2.4403333333, "yoy_price": 3.2323333333, "absolute_change": -0.792, "percentage_change": -24.5024234299}, {"date": "2015-11-02", "fuel": "gasoline", "current_price": 2.43425, "yoy_price": 3.17, "absolute_change": -0.73575, "percentage_change": -23.2097791798}, {"date": "2015-11-09", "fuel": "gasoline", "current_price": 2.45025, "yoy_price": 3.116, "absolute_change": -0.66575, "percentage_change": -21.3655327343}, {"date": "2015-11-16", "fuel": "gasoline", "current_price": 2.40075, "yoy_price": 3.0705833333, "absolute_change": -0.6698333333, "percentage_change": -21.8145303553}, {"date": "2015-11-23", "fuel": "gasoline", "current_price": 2.3225, "yoy_price": 3.0020833333, "absolute_change": -0.6795833333, "percentage_change": -22.6370575989}, {"date": "2015-11-30", "fuel": "gasoline", "current_price": 2.2930833333, "yoy_price": 2.9605, "absolute_change": -0.6674166667, "percentage_change": -22.5440522434}, {"date": "2015-12-07", "fuel": "gasoline", "current_price": 2.2871666667, "yoy_price": 2.8666666667, "absolute_change": -0.5795, "percentage_change": -20.2151162791}, {"date": "2015-12-14", "fuel": "gasoline", "current_price": 2.2714166667, "yoy_price": 2.74625, "absolute_change": -0.4748333333, "percentage_change": -17.2902442725}, {"date": "2015-12-21", "fuel": "gasoline", "current_price": 2.2659166667, "yoy_price": 2.6041666667, "absolute_change": -0.33825, "percentage_change": -12.9888}, {"date": "2015-12-28", "fuel": "gasoline", "current_price": 2.2755, "yoy_price": 2.5036666667, "absolute_change": -0.2281666667, "percentage_change": -9.1133004926}, {"date": "2016-01-04", "fuel": "gasoline", "current_price": 2.2711666667, "yoy_price": 2.42375, "absolute_change": -0.1525833333, "percentage_change": -6.2953412412}, {"date": "2016-01-11", "fuel": "gasoline", "current_price": 2.2410833333, "yoy_price": 2.3450833333, "absolute_change": -0.104, "percentage_change": -4.434810419}, {"date": "2016-01-18", "fuel": "gasoline", "current_price": 2.15825, "yoy_price": 2.2650833333, "absolute_change": -0.1068333333, "percentage_change": -4.716529929}, {"date": "2016-01-25", "fuel": "gasoline", "current_price": 2.1033333333, "yoy_price": 2.2385833333, "absolute_change": -0.13525, "percentage_change": -6.0417674869}, {"date": "2016-02-01", "fuel": "gasoline", "current_price": 2.0665833333, "yoy_price": 2.2544166667, "absolute_change": -0.1878333333, "percentage_change": -8.3317931468}, {"date": "2016-02-08", "fuel": "gasoline", "current_price": 2.0065, "yoy_price": 2.3746666667, "absolute_change": -0.3681666667, "percentage_change": -15.5039303762}, {"date": "2016-02-15", "fuel": "gasoline", "current_price": 1.9654166667, "yoy_price": 2.45975, "absolute_change": -0.4943333333, "percentage_change": -20.0968933157}, {"date": "2016-02-22", "fuel": "gasoline", "current_price": 1.9610833333, "yoy_price": 2.5195833333, "absolute_change": -0.5585, "percentage_change": -22.166363486}, {"date": "2016-02-29", "fuel": "gasoline", "current_price": 2.0085, "yoy_price": 2.67225, "absolute_change": -0.66375, "percentage_change": -24.8386191412}, {"date": "2016-03-07", "fuel": "gasoline", "current_price": 2.0591666667, "yoy_price": 2.6890833333, "absolute_change": -0.6299166667, "percentage_change": -23.4249589389}, {"date": "2016-03-14", "fuel": "gasoline", "current_price": 2.1816666667, "yoy_price": 2.65525, "absolute_change": -0.4735833333, "percentage_change": -17.8357342372}, {"date": "2016-03-21", "fuel": "gasoline", "current_price": 2.2295, "yoy_price": 2.6515833333, "absolute_change": -0.4220833333, "percentage_change": -15.9181621044}, {"date": "2016-03-28", "fuel": "gasoline", "current_price": 2.29525, "yoy_price": 2.64325, "absolute_change": -0.348, "percentage_change": -13.1656105174}, {"date": "2016-04-04", "fuel": "gasoline", "current_price": 2.3093333333, "yoy_price": 2.6116666667, "absolute_change": -0.3023333333, "percentage_change": -11.5762603701}, {"date": "2016-04-11", "fuel": "gasoline", "current_price": 2.2985833333, "yoy_price": 2.6054166667, "absolute_change": -0.3068333333, "percentage_change": -11.7767471614}, {"date": "2016-04-18", "fuel": "gasoline", "current_price": 2.3630833333, "yoy_price": 2.6794166667, "absolute_change": -0.3163333333, "percentage_change": -11.8060523124}, {"date": "2016-04-25", "fuel": "gasoline", "current_price": 2.3878333333, "yoy_price": 2.776, "absolute_change": -0.3881666667, "percentage_change": -13.9829490874}, {"date": "2016-05-02", "fuel": "gasoline", "current_price": 2.4613333333, "yoy_price": 2.8776666667, "absolute_change": -0.4163333333, "percentage_change": -14.4677400672}, {"date": "2016-05-09", "fuel": "gasoline", "current_price": 2.448, "yoy_price": 2.9048333333, "absolute_change": -0.4568333333, "percentage_change": -15.7266624591}, {"date": "2016-05-16", "fuel": "gasoline", "current_price": 2.4648333333, "yoy_price": 2.95325, "absolute_change": -0.4884166667, "percentage_change": -16.5382770394}, {"date": "2016-05-23", "fuel": "gasoline", "current_price": 2.5193333333, "yoy_price": 2.9800833333, "absolute_change": -0.46075, "percentage_change": -15.460977042}, {"date": "2016-05-30", "fuel": "gasoline", "current_price": 2.5528333333, "yoy_price": 2.9816666667, "absolute_change": -0.4288333333, "percentage_change": -14.3823365008}, {"date": "2016-06-06", "fuel": "gasoline", "current_price": 2.5924166667, "yoy_price": 2.9790833333, "absolute_change": -0.3866666667, "percentage_change": -12.9793840387}, {"date": "2016-06-13", "fuel": "gasoline", "current_price": 2.6095, "yoy_price": 3.0245833333, "absolute_change": -0.4150833333, "percentage_change": -13.7236533958}, {"date": "2016-06-20", "fuel": "gasoline", "current_price": 2.57025, "yoy_price": 3.0031666667, "absolute_change": -0.4329166667, "percentage_change": -14.415339364}, {"date": "2016-06-27", "fuel": "gasoline", "current_price": 2.554, "yoy_price": 2.9933333333, "absolute_change": -0.4393333333, "percentage_change": -14.6770601336}, {"date": "2016-07-04", "fuel": "gasoline", "current_price": 2.5216666667, "yoy_price": 2.9863333333, "absolute_change": -0.4646666667, "percentage_change": -15.559772296}, {"date": "2016-07-11", "fuel": "gasoline", "current_price": 2.48475, "yoy_price": 3.0495833333, "absolute_change": -0.5648333333, "percentage_change": -18.5216559639}, {"date": "2016-07-18", "fuel": "gasoline", "current_price": 2.46225, "yoy_price": 3.01825, "absolute_change": -0.556, "percentage_change": -18.4212706038}, {"date": "2016-07-25", "fuel": "gasoline", "current_price": 2.4148333333, "yoy_price": 2.964, "absolute_change": -0.5491666667, "percentage_change": -18.5278902384}, {"date": "2016-08-01", "fuel": "gasoline", "current_price": 2.3898333333, "yoy_price": 2.9108333333, "absolute_change": -0.521, "percentage_change": -17.8986544518}, {"date": "2016-08-08", "fuel": "gasoline", "current_price": 2.37575, "yoy_price": 2.8488333333, "absolute_change": -0.4730833333, "percentage_change": -16.6062130697}, {"date": "2016-08-15", "fuel": "gasoline", "current_price": 2.3731666667, "yoy_price": 2.9221666667, "absolute_change": -0.549, "percentage_change": -18.7874294188}, {"date": "2016-08-22", "fuel": "gasoline", "current_price": 2.41625, "yoy_price": 2.8459166667, "absolute_change": -0.4296666667, "percentage_change": -15.0976545343}, {"date": "2016-08-29", "fuel": "gasoline", "current_price": 2.4548333333, "yoy_price": 2.7256666667, "absolute_change": -0.2708333333, "percentage_change": -9.9364069952}, {"date": "2016-09-05", "fuel": "gasoline", "current_price": 2.4455833333, "yoy_price": 2.6556666667, "absolute_change": -0.2100833333, "percentage_change": -7.9107568721}, {"date": "2016-09-12", "fuel": "gasoline", "current_price": 2.43125, "yoy_price": 2.5951666667, "absolute_change": -0.1639166667, "percentage_change": -6.316228887}, {"date": "2016-09-19", "fuel": "gasoline", "current_price": 2.4525833333, "yoy_price": 2.5485833333, "absolute_change": -0.096, "percentage_change": -3.7667985482}, {"date": "2016-09-26", "fuel": "gasoline", "current_price": 2.455, "yoy_price": 2.5356666667, "absolute_change": -0.0806666667, "percentage_change": -3.1812803996}, {"date": "2016-10-03", "fuel": "gasoline", "current_price": 2.4759166667, "yoy_price": 2.52875, "absolute_change": -0.0528333333, "percentage_change": -2.0893063108}, {"date": "2016-10-10", "fuel": "gasoline", "current_price": 2.5001666667, "yoy_price": 2.5398333333, "absolute_change": -0.0396666667, "percentage_change": -1.5617822692}, {"date": "2016-10-17", "fuel": "gasoline", "current_price": 2.4879166667, "yoy_price": 2.4845833333, "absolute_change": 0.0033333333, "percentage_change": 0.1341606574}, {"date": "2016-10-24", "fuel": "gasoline", "current_price": 2.4775833333, "yoy_price": 2.4403333333, "absolute_change": 0.03725, "percentage_change": 1.5264308155}, {"date": "2016-10-31", "fuel": "gasoline", "current_price": 2.4675833333, "yoy_price": 2.43425, "absolute_change": 0.0333333333, "percentage_change": 1.3693471637}, {"date": "2016-11-07", "fuel": "gasoline", "current_price": 2.4754166667, "yoy_price": 2.45025, "absolute_change": 0.0251666667, "percentage_change": 1.0271060776}, {"date": "2016-11-14", "fuel": "gasoline", "current_price": 2.43125, "yoy_price": 2.40075, "absolute_change": 0.0305, "percentage_change": 1.270436322}, {"date": "2016-11-21", "fuel": "gasoline", "current_price": 2.401, "yoy_price": 2.3225, "absolute_change": 0.0785, "percentage_change": 3.3799784715}, {"date": "2016-11-28", "fuel": "gasoline", "current_price": 2.3985833333, "yoy_price": 2.2930833333, "absolute_change": 0.1055, "percentage_change": 4.6007922375}, {"date": "2016-12-05", "fuel": "gasoline", "current_price": 2.449, "yoy_price": 2.2871666667, "absolute_change": 0.1618333333, "percentage_change": 7.0757123078}, {"date": "2016-12-12", "fuel": "gasoline", "current_price": 2.4711666667, "yoy_price": 2.2714166667, "absolute_change": 0.19975, "percentage_change": 8.7940712478}, {"date": "2016-12-19", "fuel": "gasoline", "current_price": 2.49825, "yoy_price": 2.2659166667, "absolute_change": 0.2323333333, "percentage_change": 10.2533926667}, {"date": "2016-12-26", "fuel": "gasoline", "current_price": 2.5386666667, "yoy_price": 2.2755, "absolute_change": 0.2631666667, "percentage_change": 11.5652237603}, {"date": "2017-01-02", "fuel": "gasoline", "current_price": 2.6046666667, "yoy_price": 2.2711666667, "absolute_change": 0.3335, "percentage_change": 14.6840830704}, {"date": "2017-01-09", "fuel": "gasoline", "current_price": 2.61675, "yoy_price": 2.2410833333, "absolute_change": 0.3756666667, "percentage_change": 16.76272636}, {"date": "2017-01-16", "fuel": "gasoline", "current_price": 2.58775, "yoy_price": 2.15825, "absolute_change": 0.4295, "percentage_change": 19.9003822541}, {"date": "2017-01-23", "fuel": "gasoline", "current_price": 2.56, "yoy_price": 2.1033333333, "absolute_change": 0.4566666667, "percentage_change": 21.7115689382}, {"date": "2017-01-30", "fuel": "gasoline", "current_price": 2.5350833333, "yoy_price": 2.0665833333, "absolute_change": 0.4685, "percentage_change": 22.6702689625}, {"date": "2017-02-06", "fuel": "gasoline", "current_price": 2.5325, "yoy_price": 2.0065, "absolute_change": 0.526, "percentage_change": 26.2148018938}, {"date": "2017-02-13", "fuel": "gasoline", "current_price": 2.54775, "yoy_price": 1.9654166667, "absolute_change": 0.5823333333, "percentage_change": 29.629001484}, {"date": "2017-02-20", "fuel": "gasoline", "current_price": 2.5439166667, "yoy_price": 1.9610833333, "absolute_change": 0.5828333333, "percentage_change": 29.7199677049}, {"date": "2017-02-27", "fuel": "gasoline", "current_price": 2.5585, "yoy_price": 2.0085, "absolute_change": 0.55, "percentage_change": 27.3836196166}, {"date": "2017-03-06", "fuel": "gasoline", "current_price": 2.5819166667, "yoy_price": 2.0591666667, "absolute_change": 0.52275, "percentage_change": 25.3864832052}, {"date": "2017-03-13", "fuel": "gasoline", "current_price": 2.5659166667, "yoy_price": 2.1816666667, "absolute_change": 0.38425, "percentage_change": 17.6126814362}, {"date": "2017-03-20", "fuel": "gasoline", "current_price": 2.56525, "yoy_price": 2.2295, "absolute_change": 0.33575, "percentage_change": 15.0594303656}, {"date": "2017-03-27", "fuel": "gasoline", "current_price": 2.5618333333, "yoy_price": 2.29525, "absolute_change": 0.2665833333, "percentage_change": 11.6145663145}, {"date": "2017-04-03", "fuel": "gasoline", "current_price": 2.6004166667, "yoy_price": 2.3093333333, "absolute_change": 0.2910833333, "percentage_change": 12.604647806}, {"date": "2017-04-10", "fuel": "gasoline", "current_price": 2.6600833333, "yoy_price": 2.2985833333, "absolute_change": 0.3615, "percentage_change": 15.7270782728}, {"date": "2017-04-17", "fuel": "gasoline", "current_price": 2.6749166667, "yoy_price": 2.3630833333, "absolute_change": 0.3118333333, "percentage_change": 13.1960362521}, {"date": "2017-04-24", "fuel": "gasoline", "current_price": 2.6858333333, "yoy_price": 2.3878333333, "absolute_change": 0.298, "percentage_change": 12.4799329936}, {"date": "2017-05-01", "fuel": "gasoline", "current_price": 2.6525833333, "yoy_price": 2.4613333333, "absolute_change": 0.19125, "percentage_change": 7.7701787649}, {"date": "2017-05-08", "fuel": "gasoline", "current_price": 2.61625, "yoy_price": 2.448, "absolute_change": 0.16825, "percentage_change": 6.8729575163}, {"date": "2017-05-15", "fuel": "gasoline", "current_price": 2.6148333333, "yoy_price": 2.4648333333, "absolute_change": 0.15, "percentage_change": 6.0856041653}, {"date": "2017-05-22", "fuel": "gasoline", "current_price": 2.64425, "yoy_price": 2.5193333333, "absolute_change": 0.1249166667, "percentage_change": 4.9583223075}, {"date": "2017-05-29", "fuel": "gasoline", "current_price": 2.6515, "yoy_price": 2.5528333333, "absolute_change": 0.0986666667, "percentage_change": 3.8649866162}, {"date": "2017-06-05", "fuel": "gasoline", "current_price": 2.6581666667, "yoy_price": 2.5924166667, "absolute_change": 0.06575, "percentage_change": 2.5362435308}, {"date": "2017-06-12", "fuel": "gasoline", "current_price": 2.61375, "yoy_price": 2.6095, "absolute_change": 0.00425, "percentage_change": 0.1628664495}, {"date": "2017-06-19", "fuel": "gasoline", "current_price": 2.5715, "yoy_price": 2.57025, "absolute_change": 0.00125, "percentage_change": 0.0486334014}, {"date": "2017-06-26", "fuel": "gasoline", "current_price": 2.54175, "yoy_price": 2.554, "absolute_change": -0.01225, "percentage_change": -0.4796397807}, {"date": "2017-07-03", "fuel": "gasoline", "current_price": 2.5163333333, "yoy_price": 2.5216666667, "absolute_change": -0.0053333333, "percentage_change": -0.2115003305}, {"date": "2017-07-10", "fuel": "gasoline", "current_price": 2.5458333333, "yoy_price": 2.48475, "absolute_change": 0.0610833333, "percentage_change": 2.4583291411}, {"date": "2017-07-17", "fuel": "gasoline", "current_price": 2.5284166667, "yoy_price": 2.46225, "absolute_change": 0.0661666667, "percentage_change": 2.6872440518}, {"date": "2017-07-24", "fuel": "gasoline", "current_price": 2.5604166667, "yoy_price": 2.4148333333, "absolute_change": 0.1455833333, "percentage_change": 6.0287114363}, {"date": "2017-07-31", "fuel": "gasoline", "current_price": 2.6000833333, "yoy_price": 2.3898333333, "absolute_change": 0.21025, "percentage_change": 8.7976846363}, {"date": "2017-08-07", "fuel": "gasoline", "current_price": 2.62575, "yoy_price": 2.37575, "absolute_change": 0.25, "percentage_change": 10.5229927391}, {"date": "2017-08-14", "fuel": "gasoline", "current_price": 2.6303333333, "yoy_price": 2.3731666667, "absolute_change": 0.2571666667, "percentage_change": 10.8364351429}, {"date": "2017-08-21", "fuel": "gasoline", "current_price": 2.6093333333, "yoy_price": 2.41625, "absolute_change": 0.1930833333, "percentage_change": 7.9910329367}, {"date": "2017-08-28", "fuel": "gasoline", "current_price": 2.6433333333, "yoy_price": 2.4548333333, "absolute_change": 0.1885, "percentage_change": 7.678729038}, {"date": "2017-09-04", "fuel": "gasoline", "current_price": 2.92375, "yoy_price": 2.4455833333, "absolute_change": 0.4781666667, "percentage_change": 19.5522540634}, {"date": "2017-09-11", "fuel": "gasoline", "current_price": 2.9299166667, "yoy_price": 2.43125, "absolute_change": 0.4986666667, "percentage_change": 20.5107112254}, {"date": "2017-09-18", "fuel": "gasoline", "current_price": 2.8819166667, "yoy_price": 2.4525833333, "absolute_change": 0.4293333333, "percentage_change": 17.5053515001}, {"date": "2017-09-25", "fuel": "gasoline", "current_price": 2.8330833333, "yoy_price": 2.455, "absolute_change": 0.3780833333, "percentage_change": 15.4005431093}, {"date": "2017-10-02", "fuel": "gasoline", "current_price": 2.81325, "yoy_price": 2.4759166667, "absolute_change": 0.3373333333, "percentage_change": 13.6245834876}, {"date": "2017-10-09", "fuel": "gasoline", "current_price": 2.7553333333, "yoy_price": 2.5001666667, "absolute_change": 0.2551666667, "percentage_change": 10.2059862676}, {"date": "2017-10-16", "fuel": "gasoline", "current_price": 2.7374166667, "yoy_price": 2.4879166667, "absolute_change": 0.2495, "percentage_change": 10.0284709429}, {"date": "2017-10-23", "fuel": "gasoline", "current_price": 2.7245, "yoy_price": 2.4775833333, "absolute_change": 0.2469166667, "percentage_change": 9.9660287242}, {"date": "2017-10-30", "fuel": "gasoline", "current_price": 2.7345833333, "yoy_price": 2.4675833333, "absolute_change": 0.267, "percentage_change": 10.8203032657}, {"date": "2017-11-06", "fuel": "gasoline", "current_price": 2.8086666667, "yoy_price": 2.4754166667, "absolute_change": 0.33325, "percentage_change": 13.4623800707}, {"date": "2017-11-13", "fuel": "gasoline", "current_price": 2.8403333333, "yoy_price": 2.43125, "absolute_change": 0.4090833333, "percentage_change": 16.8260497001}, {"date": "2017-11-20", "fuel": "gasoline", "current_price": 2.8186666667, "yoy_price": 2.401, "absolute_change": 0.4176666667, "percentage_change": 17.3955296404}, {"date": "2017-11-27", "fuel": "gasoline", "current_price": 2.7854166667, "yoy_price": 2.3985833333, "absolute_change": 0.3868333333, "percentage_change": 16.1275753049}, {"date": "2017-12-04", "fuel": "gasoline", "current_price": 2.75475, "yoy_price": 2.449, "absolute_change": 0.30575, "percentage_change": 12.4846876276}, {"date": "2017-12-11", "fuel": "gasoline", "current_price": 2.7375833333, "yoy_price": 2.4711666667, "absolute_change": 0.2664166667, "percentage_change": 10.7810076212}, {"date": "2017-12-18", "fuel": "gasoline", "current_price": 2.707, "yoy_price": 2.49825, "absolute_change": 0.20875, "percentage_change": 8.3558490944}, {"date": "2017-12-25", "fuel": "gasoline", "current_price": 2.72575, "yoy_price": 2.5386666667, "absolute_change": 0.1870833333, "percentage_change": 7.3693539916}, {"date": "2018-01-01", "fuel": "gasoline", "current_price": 2.7724166667, "yoy_price": 2.6046666667, "absolute_change": 0.16775, "percentage_change": 6.4403634502}, {"date": "2018-01-08", "fuel": "gasoline", "current_price": 2.77875, "yoy_price": 2.61675, "absolute_change": 0.162, "percentage_change": 6.1908856406}, {"date": "2018-01-15", "fuel": "gasoline", "current_price": 2.8083333333, "yoy_price": 2.58775, "absolute_change": 0.2205833333, "percentage_change": 8.5241361543}, {"date": "2018-01-22", "fuel": "gasoline", "current_price": 2.8210833333, "yoy_price": 2.56, "absolute_change": 0.2610833333, "percentage_change": 10.1985677083}, {"date": "2018-01-29", "fuel": "gasoline", "current_price": 2.8610833333, "yoy_price": 2.5350833333, "absolute_change": 0.326, "percentage_change": 12.8595378193}, {"date": "2018-02-05", "fuel": "gasoline", "current_price": 2.8919166667, "yoy_price": 2.5325, "absolute_change": 0.3594166667, "percentage_change": 14.1921684765}, {"date": "2018-02-12", "fuel": "gasoline", "current_price": 2.8649166667, "yoy_price": 2.54775, "absolute_change": 0.3171666667, "percentage_change": 12.4488928139}, {"date": "2018-02-19", "fuel": "gasoline", "current_price": 2.8209166667, "yoy_price": 2.5439166667, "absolute_change": 0.277, "percentage_change": 10.8887214597}, {"date": "2018-02-26", "fuel": "gasoline", "current_price": 2.81125, "yoy_price": 2.5585, "absolute_change": 0.25275, "percentage_change": 9.878835255}, {"date": "2018-03-05", "fuel": "gasoline", "current_price": 2.8225833333, "yoy_price": 2.5819166667, "absolute_change": 0.2406666667, "percentage_change": 9.3212406804}, {"date": "2018-03-12", "fuel": "gasoline", "current_price": 2.8216666667, "yoy_price": 2.5659166667, "absolute_change": 0.25575, "percentage_change": 9.9671982073}, {"date": "2018-03-19", "fuel": "gasoline", "current_price": 2.8598333333, "yoy_price": 2.56525, "absolute_change": 0.2945833333, "percentage_change": 11.483611084}, {"date": "2018-03-26", "fuel": "gasoline", "current_price": 2.9085833333, "yoy_price": 2.5618333333, "absolute_change": 0.34675, "percentage_change": 13.5352286774}, {"date": "2018-04-02", "fuel": "gasoline", "current_price": 2.96025, "yoy_price": 2.6004166667, "absolute_change": 0.3598333333, "percentage_change": 13.8375260375}, {"date": "2018-04-09", "fuel": "gasoline", "current_price": 2.9554166667, "yoy_price": 2.6600833333, "absolute_change": 0.2953333333, "percentage_change": 11.1024090724}, {"date": "2018-04-16", "fuel": "gasoline", "current_price": 3.00425, "yoy_price": 2.6749166667, "absolute_change": 0.3293333333, "percentage_change": 12.3119100283}, {"date": "2018-04-23", "fuel": "gasoline", "current_price": 3.0555833333, "yoy_price": 2.6858333333, "absolute_change": 0.36975, "percentage_change": 13.766677009}, {"date": "2018-04-30", "fuel": "gasoline", "current_price": 3.1013333333, "yoy_price": 2.6525833333, "absolute_change": 0.44875, "percentage_change": 16.9174703905}, {"date": "2018-05-07", "fuel": "gasoline", "current_price": 3.10325, "yoy_price": 2.61625, "absolute_change": 0.487, "percentage_change": 18.6144290492}, {"date": "2018-05-14", "fuel": "gasoline", "current_price": 3.1435833333, "yoy_price": 2.6148333333, "absolute_change": 0.52875, "percentage_change": 20.221174071}, {"date": "2018-05-21", "fuel": "gasoline", "current_price": 3.1908333333, "yoy_price": 2.64425, "absolute_change": 0.5465833333, "percentage_change": 20.6706375469}, {"date": "2018-05-28", "fuel": "gasoline", "current_price": 3.2299166667, "yoy_price": 2.6515, "absolute_change": 0.5784166667, "percentage_change": 21.814696084}, {"date": "2018-06-04", "fuel": "gasoline", "current_price": 3.2145833333, "yoy_price": 2.6581666667, "absolute_change": 0.5564166667, "percentage_change": 20.9323468556}, {"date": "2018-06-11", "fuel": "gasoline", "current_price": 3.1860833333, "yoy_price": 2.61375, "absolute_change": 0.5723333333, "percentage_change": 21.8970189702}, {"date": "2018-06-18", "fuel": "gasoline", "current_price": 3.1563333333, "yoy_price": 2.5715, "absolute_change": 0.5848333333, "percentage_change": 22.7428867717}, {"date": "2018-06-25", "fuel": "gasoline", "current_price": 3.1141666667, "yoy_price": 2.54175, "absolute_change": 0.5724166667, "percentage_change": 22.520573096}, {"date": "2018-07-02", "fuel": "gasoline", "current_price": 3.1225, "yoy_price": 2.5163333333, "absolute_change": 0.6061666667, "percentage_change": 24.0892833488}, {"date": "2018-07-09", "fuel": "gasoline", "current_price": 3.1355, "yoy_price": 2.5458333333, "absolute_change": 0.5896666667, "percentage_change": 23.1620294599}, {"date": "2018-07-16", "fuel": "gasoline", "current_price": 3.1366666667, "yoy_price": 2.5284166667, "absolute_change": 0.60825, "percentage_change": 24.0565571339}, {"date": "2018-07-23", "fuel": "gasoline", "current_price": 3.1070833333, "yoy_price": 2.5604166667, "absolute_change": 0.5466666667, "percentage_change": 21.3506916192}, {"date": "2018-07-30", "fuel": "gasoline", "current_price": 3.1183333333, "yoy_price": 2.6000833333, "absolute_change": 0.51825, "percentage_change": 19.9320534598}, {"date": "2018-08-06", "fuel": "gasoline", "current_price": 3.1210833333, "yoy_price": 2.62575, "absolute_change": 0.4953333333, "percentage_change": 18.8644514266}, {"date": "2018-08-13", "fuel": "gasoline", "current_price": 3.11275, "yoy_price": 2.6303333333, "absolute_change": 0.4824166667, "percentage_change": 18.3405145102}, {"date": "2018-08-20", "fuel": "gasoline", "current_price": 3.0929166667, "yoy_price": 2.6093333333, "absolute_change": 0.4835833333, "percentage_change": 18.5328308636}, {"date": "2018-08-27", "fuel": "gasoline", "current_price": 3.09825, "yoy_price": 2.6433333333, "absolute_change": 0.4549166667, "percentage_change": 17.209962169}, {"date": "2018-09-03", "fuel": "gasoline", "current_price": 3.0974166667, "yoy_price": 2.92375, "absolute_change": 0.1736666667, "percentage_change": 5.9398603392}, {"date": "2018-09-10", "fuel": "gasoline", "current_price": 3.1075833333, "yoy_price": 2.9299166667, "absolute_change": 0.1776666667, "percentage_change": 6.0638812253}, {"date": "2018-09-17", "fuel": "gasoline", "current_price": 3.1165, "yoy_price": 2.8819166667, "absolute_change": 0.2345833333, "percentage_change": 8.1398374924}, {"date": "2018-09-24", "fuel": "gasoline", "current_price": 3.11675, "yoy_price": 2.8330833333, "absolute_change": 0.2836666667, "percentage_change": 10.0126481748}, {"date": "2018-10-01", "fuel": "gasoline", "current_price": 3.14475, "yoy_price": 2.81325, "absolute_change": 0.3315, "percentage_change": 11.7835243935}, {"date": "2018-10-08", "fuel": "gasoline", "current_price": 3.1826666667, "yoy_price": 2.7553333333, "absolute_change": 0.4273333333, "percentage_change": 15.5093152674}, {"date": "2018-10-15", "fuel": "gasoline", "current_price": 3.1639166667, "yoy_price": 2.7374166667, "absolute_change": 0.4265, "percentage_change": 15.5803829645}, {"date": "2018-10-22", "fuel": "gasoline", "current_price": 3.13325, "yoy_price": 2.7245, "absolute_change": 0.40875, "percentage_change": 15.0027527987}, {"date": "2018-10-29", "fuel": "gasoline", "current_price": 3.10525, "yoy_price": 2.7345833333, "absolute_change": 0.3706666667, "percentage_change": 13.5547767789}, {"date": "2018-11-05", "fuel": "gasoline", "current_price": 3.0535, "yoy_price": 2.8086666667, "absolute_change": 0.2448333333, "percentage_change": 8.7170662236}, {"date": "2018-11-12", "fuel": "gasoline", "current_price": 2.9895833333, "yoy_price": 2.8403333333, "absolute_change": 0.14925, "percentage_change": 5.2546649454}, {"date": "2018-11-19", "fuel": "gasoline", "current_price": 2.9201666667, "yoy_price": 2.8186666667, "absolute_change": 0.1015, "percentage_change": 3.6009933775}, {"date": "2018-11-26", "fuel": "gasoline", "current_price": 2.8581666667, "yoy_price": 2.7854166667, "absolute_change": 0.07275, "percentage_change": 2.6118175019}, {"date": "2018-12-03", "fuel": "gasoline", "current_price": 2.7746666667, "yoy_price": 2.75475, "absolute_change": 0.0199166667, "percentage_change": 0.7229936171}, {"date": "2018-12-10", "fuel": "gasoline", "current_price": 2.7373333333, "yoy_price": 2.7375833333, "absolute_change": -0.00025, "percentage_change": -0.0091321421}, {"date": "2018-12-17", "fuel": "gasoline", "current_price": 2.6884166667, "yoy_price": 2.707, "absolute_change": -0.0185833333, "percentage_change": -0.6864918114}, {"date": "2018-12-24", "fuel": "gasoline", "current_price": 2.6433333333, "yoy_price": 2.72575, "absolute_change": -0.0824166667, "percentage_change": -3.0236326393}, {"date": "2018-12-31", "fuel": "gasoline", "current_price": 2.5909166667, "yoy_price": 2.7724166667, "absolute_change": -0.1815, "percentage_change": -6.5466350056}, {"date": "2019-01-07", "fuel": "gasoline", "current_price": 2.5606666667, "yoy_price": 2.77875, "absolute_change": -0.2180833333, "percentage_change": -7.8482531114}, {"date": "2019-01-14", "fuel": "gasoline", "current_price": 2.564, "yoy_price": 2.8083333333, "absolute_change": -0.2443333333, "percentage_change": -8.7002967359}, {"date": "2019-01-21", "fuel": "gasoline", "current_price": 2.56425, "yoy_price": 2.8210833333, "absolute_change": -0.2568333333, "percentage_change": -9.1040675863}, {"date": "2019-01-28", "fuel": "gasoline", "current_price": 2.5623333333, "yoy_price": 2.8610833333, "absolute_change": -0.29875, "percentage_change": -10.44184895}, {"date": "2019-02-04", "fuel": "gasoline", "current_price": 2.5584166667, "yoy_price": 2.8919166667, "absolute_change": -0.3335, "percentage_change": -11.532144195}, {"date": "2019-02-11", "fuel": "gasoline", "current_price": 2.57625, "yoy_price": 2.8649166667, "absolute_change": -0.2886666667, "percentage_change": -10.0759184386}, {"date": "2019-02-18", "fuel": "gasoline", "current_price": 2.6099166667, "yoy_price": 2.8209166667, "absolute_change": -0.211, "percentage_change": -7.4798381141}, {"date": "2019-02-25", "fuel": "gasoline", "current_price": 2.6711666667, "yoy_price": 2.81125, "absolute_change": -0.1400833333, "percentage_change": -4.9829553876}, {"date": "2019-03-04", "fuel": "gasoline", "current_price": 2.6981666667, "yoy_price": 2.8225833333, "absolute_change": -0.1244166667, "percentage_change": -4.4079005639}, {"date": "2019-03-11", "fuel": "gasoline", "current_price": 2.74175, "yoy_price": 2.8216666667, "absolute_change": -0.0799166667, "percentage_change": -2.832250443}, {"date": "2019-03-18", "fuel": "gasoline", "current_price": 2.8166666667, "yoy_price": 2.8598333333, "absolute_change": -0.0431666667, "percentage_change": -1.5094119704}, {"date": "2019-03-25", "fuel": "gasoline", "current_price": 2.8960833333, "yoy_price": 2.9085833333, "absolute_change": -0.0125, "percentage_change": -0.4297624846}, {"date": "2019-04-01", "fuel": "gasoline", "current_price": 2.9681666667, "yoy_price": 2.96025, "absolute_change": 0.0079166667, "percentage_change": 0.2674323678}, {"date": "2019-04-08", "fuel": "gasoline", "current_price": 3.0340833333, "yoy_price": 2.9554166667, "absolute_change": 0.0786666667, "percentage_change": 2.6617792189}, {"date": "2019-04-15", "fuel": "gasoline", "current_price": 3.1266666667, "yoy_price": 3.00425, "absolute_change": 0.1224166667, "percentage_change": 4.0747829464}, {"date": "2019-04-22", "fuel": "gasoline", "current_price": 3.14875, "yoy_price": 3.0555833333, "absolute_change": 0.0931666667, "percentage_change": 3.0490631903}, {"date": "2019-04-29", "fuel": "gasoline", "current_price": 3.19725, "yoy_price": 3.1013333333, "absolute_change": 0.0959166667, "percentage_change": 3.092755804}, {"date": "2019-05-06", "fuel": "gasoline", "current_price": 3.21075, "yoy_price": 3.10325, "absolute_change": 0.1075, "percentage_change": 3.464110207}, {"date": "2019-05-13", "fuel": "gasoline", "current_price": 3.1830833333, "yoy_price": 3.1435833333, "absolute_change": 0.0395, "percentage_change": 1.2565278477}, {"date": "2019-05-20", "fuel": "gasoline", "current_price": 3.1685, "yoy_price": 3.1908333333, "absolute_change": -0.0223333333, "percentage_change": -0.6999216506}, {"date": "2019-05-27", "fuel": "gasoline", "current_price": 3.1375833333, "yoy_price": 3.2299166667, "absolute_change": -0.0923333333, "percentage_change": -2.8586908847}, {"date": "2019-06-03", "fuel": "gasoline", "current_price": 3.1171666667, "yoy_price": 3.2145833333, "absolute_change": -0.0974166667, "percentage_change": -3.0304601426}, {"date": "2019-06-10", "fuel": "gasoline", "current_price": 3.0486666667, "yoy_price": 3.1860833333, "absolute_change": -0.1374166667, "percentage_change": -4.3130280124}, {"date": "2019-06-17", "fuel": "gasoline", "current_price": 2.99025, "yoy_price": 3.1563333333, "absolute_change": -0.1660833333, "percentage_change": -5.2619072764}, {"date": "2019-06-24", "fuel": "gasoline", "current_price": 2.9665, "yoy_price": 3.1141666667, "absolute_change": -0.1476666667, "percentage_change": -4.7417714744}, {"date": "2019-07-01", "fuel": "gasoline", "current_price": 3.01575, "yoy_price": 3.1225, "absolute_change": -0.10675, "percentage_change": -3.418734988}, {"date": "2019-07-08", "fuel": "gasoline", "current_price": 3.0401666667, "yoy_price": 3.1355, "absolute_change": -0.0953333333, "percentage_change": -3.0404507521}, {"date": "2019-07-15", "fuel": "gasoline", "current_price": 3.0685833333, "yoy_price": 3.1366666667, "absolute_change": -0.0680833333, "percentage_change": -2.1705632306}, {"date": "2019-07-22", "fuel": "gasoline", "current_price": 3.0430833333, "yoy_price": 3.1070833333, "absolute_change": -0.064, "percentage_change": -2.0598095749}, {"date": "2019-07-29", "fuel": "gasoline", "current_price": 3.0111666667, "yoy_price": 3.1183333333, "absolute_change": -0.1071666667, "percentage_change": -3.4366648851}, {"date": "2019-08-05", "fuel": "gasoline", "current_price": 2.987, "yoy_price": 3.1210833333, "absolute_change": -0.1340833333, "percentage_change": -4.2960510507}, {"date": "2019-08-12", "fuel": "gasoline", "current_price": 2.9296666667, "yoy_price": 3.11275, "absolute_change": -0.1830833333, "percentage_change": -5.8817230209}, {"date": "2019-08-19", "fuel": "gasoline", "current_price": 2.9025833333, "yoy_price": 3.0929166667, "absolute_change": -0.1903333333, "percentage_change": -6.1538461538}, {"date": "2019-08-26", "fuel": "gasoline", "current_price": 2.883, "yoy_price": 3.09825, "absolute_change": -0.21525, "percentage_change": -6.9474703462}, {"date": "2019-09-02", "fuel": "gasoline", "current_price": 2.8750833333, "yoy_price": 3.0974166667, "absolute_change": -0.2223333333, "percentage_change": -7.178024698}, {"date": "2019-09-09", "fuel": "gasoline", "current_price": 2.8625833333, "yoy_price": 3.1075833333, "absolute_change": -0.245, "percentage_change": -7.8839398246}, {"date": "2019-09-16", "fuel": "gasoline", "current_price": 2.86325, "yoy_price": 3.1165, "absolute_change": -0.25325, "percentage_change": -8.1261030002}, {"date": "2019-09-23", "fuel": "gasoline", "current_price": 2.9605, "yoy_price": 3.11675, "absolute_change": -0.15625, "percentage_change": -5.0132349402}, {"date": "2019-09-30", "fuel": "gasoline", "current_price": 2.98525, "yoy_price": 3.14475, "absolute_change": -0.1595, "percentage_change": -5.0719453057}, {"date": "2019-10-07", "fuel": "gasoline", "current_price": 2.9979166667, "yoy_price": 3.1826666667, "absolute_change": -0.18475, "percentage_change": -5.8048806033}, {"date": "2019-10-14", "fuel": "gasoline", "current_price": 2.985, "yoy_price": 3.1639166667, "absolute_change": -0.1789166667, "percentage_change": -5.6549108436}, {"date": "2019-10-21", "fuel": "gasoline", "current_price": 2.9860833333, "yoy_price": 3.13325, "absolute_change": -0.1471666667, "percentage_change": -4.6969334291}, {"date": "2019-10-28", "fuel": "gasoline", "current_price": 2.94375, "yoy_price": 3.10525, "absolute_change": -0.1615, "percentage_change": -5.2008694952}, {"date": "2019-11-04", "fuel": "gasoline", "current_price": 2.9556666667, "yoy_price": 3.0535, "absolute_change": -0.0978333333, "percentage_change": -3.2039735822}, {"date": "2019-11-11", "fuel": "gasoline", "current_price": 2.9631666667, "yoy_price": 2.9895833333, "absolute_change": -0.0264166667, "percentage_change": -0.8836236934}, {"date": "2019-11-18", "fuel": "gasoline", "current_price": 2.9349166667, "yoy_price": 2.9201666667, "absolute_change": 0.01475, "percentage_change": 0.5051081559}, {"date": "2019-11-25", "fuel": "gasoline", "current_price": 2.9135833333, "yoy_price": 2.8581666667, "absolute_change": 0.0554166667, "percentage_change": 1.9388885649}, {"date": "2019-12-02", "fuel": "gasoline", "current_price": 2.8996666667, "yoy_price": 2.7746666667, "absolute_change": 0.125, "percentage_change": 4.5050456511}, {"date": "2019-12-09", "fuel": "gasoline", "current_price": 2.88125, "yoy_price": 2.7373333333, "absolute_change": 0.1439166667, "percentage_change": 5.2575499269}, {"date": "2019-12-16", "fuel": "gasoline", "current_price": 2.8563333333, "yoy_price": 2.6884166667, "absolute_change": 0.1679166667, "percentage_change": 6.2459316202}, {"date": "2019-12-23", "fuel": "gasoline", "current_price": 2.8466666667, "yoy_price": 2.6433333333, "absolute_change": 0.2033333333, "percentage_change": 7.6923076923}, {"date": "2019-12-30", "fuel": "gasoline", "current_price": 2.8751666667, "yoy_price": 2.5909166667, "absolute_change": 0.28425, "percentage_change": 10.9710205526}, {"date": "2020-01-06", "fuel": "gasoline", "current_price": 2.8808333333, "yoy_price": 2.5606666667, "absolute_change": 0.3201666667, "percentage_change": 12.5032543608}, {"date": "2020-01-13", "fuel": "gasoline", "current_price": 2.87475, "yoy_price": 2.564, "absolute_change": 0.31075, "percentage_change": 12.1197347894}, {"date": "2020-01-20", "fuel": "gasoline", "current_price": 2.8461666667, "yoy_price": 2.56425, "absolute_change": 0.2819166667, "percentage_change": 10.9941178382}, {"date": "2020-01-27", "fuel": "gasoline", "current_price": 2.8190833333, "yoy_price": 2.5623333333, "absolute_change": 0.25675, "percentage_change": 10.0201639131}, {"date": "2020-02-03", "fuel": "gasoline", "current_price": 2.7765, "yoy_price": 2.5584166667, "absolute_change": 0.2180833333, "percentage_change": 8.5241523077}, {"date": "2020-02-10", "fuel": "gasoline", "current_price": 2.7435833333, "yoy_price": 2.57625, "absolute_change": 0.1673333333, "percentage_change": 6.4952288533}, {"date": "2020-02-17", "fuel": "gasoline", "current_price": 2.74575, "yoy_price": 2.6099166667, "absolute_change": 0.1358333333, "percentage_change": 5.2045084454}, {"date": "2020-02-24", "fuel": "gasoline", "current_price": 2.7789166667, "yoy_price": 2.6711666667, "absolute_change": 0.10775, "percentage_change": 4.0338179322}, {"date": "2020-03-02", "fuel": "gasoline", "current_price": 2.7453333333, "yoy_price": 2.6981666667, "absolute_change": 0.0471666667, "percentage_change": 1.7481005621}, {"date": "2020-03-09", "fuel": "gasoline", "current_price": 2.7021666667, "yoy_price": 2.74175, "absolute_change": -0.0395833333, "percentage_change": -1.4437251147}, {"date": "2020-03-16", "fuel": "gasoline", "current_price": 2.58475, "yoy_price": 2.8166666667, "absolute_change": -0.2319166667, "percentage_change": -8.2337278107}, {"date": "2020-03-23", "fuel": "gasoline", "current_price": 2.4628333333, "yoy_price": 2.8960833333, "absolute_change": -0.43325, "percentage_change": -14.9598595805}, {"date": "2020-03-30", "fuel": "gasoline", "current_price": 2.355, "yoy_price": 2.9681666667, "absolute_change": -0.6131666667, "percentage_change": -20.658094222}, {"date": "2020-04-06", "fuel": "gasoline", "current_price": 2.2745833333, "yoy_price": 3.0340833333, "absolute_change": -0.7595, "percentage_change": -25.0322722404}, {"date": "2020-04-13", "fuel": "gasoline", "current_price": 2.20125, "yoy_price": 3.1266666667, "absolute_change": -0.9254166667, "percentage_change": -29.5975479744}, {"date": "2020-04-20", "fuel": "gasoline", "current_price": 2.1604166667, "yoy_price": 3.14875, "absolute_change": -0.9883333333, "percentage_change": -31.3881169776}, {"date": "2020-04-27", "fuel": "gasoline", "current_price": 2.11725, "yoy_price": 3.19725, "absolute_change": -1.08, "percentage_change": -33.7790288529}, {"date": "2020-05-04", "fuel": "gasoline", "current_price": 2.1213333333, "yoy_price": 3.21075, "absolute_change": -1.0894166667, "percentage_change": -33.9302862779}, {"date": "2020-05-11", "fuel": "gasoline", "current_price": 2.1696666667, "yoy_price": 3.1830833333, "absolute_change": -1.0134166667, "percentage_change": -31.8375788675}, {"date": "2020-05-18", "fuel": "gasoline", "current_price": 2.1990833333, "yoy_price": 3.1685, "absolute_change": -0.9694166667, "percentage_change": -30.5954447425}, {"date": "2020-05-25", "fuel": "gasoline", "current_price": 2.2720833333, "yoy_price": 3.1375833333, "absolute_change": -0.8655, "percentage_change": -27.5849247032}, {"date": "2020-06-01", "fuel": "gasoline", "current_price": 2.2890833333, "yoy_price": 3.1171666667, "absolute_change": -0.8280833333, "percentage_change": -26.5652569107}, {"date": "2020-06-08", "fuel": "gasoline", "current_price": 2.344, "yoy_price": 3.0486666667, "absolute_change": -0.7046666667, "percentage_change": -23.1139295867}, {"date": "2020-06-15", "fuel": "gasoline", "current_price": 2.4030833333, "yoy_price": 2.99025, "absolute_change": -0.5871666667, "percentage_change": -19.6360393501}, {"date": "2020-06-22", "fuel": "gasoline", "current_price": 2.43225, "yoy_price": 2.9665, "absolute_change": -0.53425, "percentage_change": -18.0094387325}, {"date": "2020-06-29", "fuel": "gasoline", "current_price": 2.4748333333, "yoy_price": 3.01575, "absolute_change": -0.5409166667, "percentage_change": -17.9363895106}, {"date": "2020-07-06", "fuel": "gasoline", "current_price": 2.48025, "yoy_price": 3.0401666667, "absolute_change": -0.5599166667, "percentage_change": -18.417301683}, {"date": "2020-07-13", "fuel": "gasoline", "current_price": 2.49975, "yoy_price": 3.0685833333, "absolute_change": -0.5688333333, "percentage_change": -18.537327214}, {"date": "2020-07-20", "fuel": "gasoline", "current_price": 2.4939166667, "yoy_price": 3.0430833333, "absolute_change": -0.5491666667, "percentage_change": -18.0463893529}, {"date": "2020-07-27", "fuel": "gasoline", "current_price": 2.4895, "yoy_price": 3.0111666667, "absolute_change": -0.5216666667, "percentage_change": -17.3244036088}, {"date": "2020-08-03", "fuel": "gasoline", "current_price": 2.49, "yoy_price": 2.987, "absolute_change": -0.497, "percentage_change": -16.6387679946}, {"date": "2020-08-10", "fuel": "gasoline", "current_price": 2.4801666667, "yoy_price": 2.9296666667, "absolute_change": -0.4495, "percentage_change": -15.3430424394}, {"date": "2020-08-17", "fuel": "gasoline", "current_price": 2.4823333333, "yoy_price": 2.9025833333, "absolute_change": -0.42025, "percentage_change": -14.4784818122}, {"date": "2020-08-24", "fuel": "gasoline", "current_price": 2.498, "yoy_price": 2.883, "absolute_change": -0.385, "percentage_change": -13.3541449879}, {"date": "2020-08-31", "fuel": "gasoline", "current_price": 2.5341666667, "yoy_price": 2.8750833333, "absolute_change": -0.3409166667, "percentage_change": -11.8576273152}, {"date": "2020-09-07", "fuel": "gasoline", "current_price": 2.5275, "yoy_price": 2.8625833333, "absolute_change": -0.3350833333, "percentage_change": -11.7056272015}, {"date": "2020-09-14", "fuel": "gasoline", "current_price": 2.5030833333, "yoy_price": 2.86325, "absolute_change": -0.3601666667, "percentage_change": -12.5789458366}, {"date": "2020-09-21", "fuel": "gasoline", "current_price": 2.4869166667, "yoy_price": 2.9605, "absolute_change": -0.4735833333, "percentage_change": -15.9967347858}, {"date": "2020-09-28", "fuel": "gasoline", "current_price": 2.4848333333, "yoy_price": 2.98525, "absolute_change": -0.5004166667, "percentage_change": -16.7629735086}, {"date": "2020-10-05", "fuel": "gasoline", "current_price": 2.4865, "yoy_price": 2.9979166667, "absolute_change": -0.5114166667, "percentage_change": -17.0590687978}, {"date": "2020-10-12", "fuel": "gasoline", "current_price": 2.4828333333, "yoy_price": 2.985, "absolute_change": -0.5021666667, "percentage_change": -16.8230039084}, {"date": "2020-10-19", "fuel": "gasoline", "current_price": 2.4681666667, "yoy_price": 2.9860833333, "absolute_change": -0.5179166667, "percentage_change": -17.3443473893}, {"date": "2020-10-26", "fuel": "gasoline", "current_price": 2.4629166667, "yoy_price": 2.94375, "absolute_change": -0.4808333333, "percentage_change": -16.3340410474}, {"date": "2020-11-02", "fuel": "gasoline", "current_price": 2.436, "yoy_price": 2.9556666667, "absolute_change": -0.5196666667, "percentage_change": -17.5820457878}, {"date": "2020-11-09", "fuel": "gasoline", "current_price": 2.42075, "yoy_price": 2.9631666667, "absolute_change": -0.5424166667, "percentage_change": -18.3053040103}, {"date": "2020-11-16", "fuel": "gasoline", "current_price": 2.4341666667, "yoy_price": 2.9349166667, "absolute_change": -0.50075, "percentage_change": -17.0618132258}, {"date": "2020-11-23", "fuel": "gasoline", "current_price": 2.4274166667, "yoy_price": 2.9135833333, "absolute_change": -0.4861666667, "percentage_change": -16.6862111375}, {"date": "2020-11-30", "fuel": "gasoline", "current_price": 2.443, "yoy_price": 2.8996666667, "absolute_change": -0.4566666667, "percentage_change": -15.7489366594}, {"date": "2020-12-07", "fuel": "gasoline", "current_price": 2.4734166667, "yoy_price": 2.88125, "absolute_change": -0.4078333333, "percentage_change": -14.154736081}, {"date": "2020-12-14", "fuel": "gasoline", "current_price": 2.4745, "yoy_price": 2.8563333333, "absolute_change": -0.3818333333, "percentage_change": -13.3679542537}, {"date": "2020-12-21", "fuel": "gasoline", "current_price": 2.5308333333, "yoy_price": 2.8466666667, "absolute_change": -0.3158333333, "percentage_change": -11.0948477752}, {"date": "2020-12-28", "fuel": "gasoline", "current_price": 2.5481666667, "yoy_price": 2.8751666667, "absolute_change": -0.327, "percentage_change": -11.3732537244}, {"date": "2021-01-04", "fuel": "gasoline", "current_price": 2.5546666667, "yoy_price": 2.8808333333, "absolute_change": -0.3261666667, "percentage_change": -11.3219554527}, {"date": "2021-01-11", "fuel": "gasoline", "current_price": 2.6196666667, "yoy_price": 2.87475, "absolute_change": -0.2550833333, "percentage_change": -8.8732353538}, {"date": "2021-01-18", "fuel": "gasoline", "current_price": 2.6805, "yoy_price": 2.8461666667, "absolute_change": -0.1656666667, "percentage_change": -5.8206945014}, {"date": "2021-01-25", "fuel": "gasoline", "current_price": 2.6963333333, "yoy_price": 2.8190833333, "absolute_change": -0.12275, "percentage_change": -4.3542522688}, {"date": "2021-02-01", "fuel": "gasoline", "current_price": 2.7136666667, "yoy_price": 2.7765, "absolute_change": -0.0628333333, "percentage_change": -2.2630409989}, {"date": "2021-02-08", "fuel": "gasoline", "current_price": 2.76625, "yoy_price": 2.7435833333, "absolute_change": 0.0226666667, "percentage_change": 0.8261701546}, {"date": "2021-02-15", "fuel": "gasoline", "current_price": 2.8070833333, "yoy_price": 2.74575, "absolute_change": 0.0613333333, "percentage_change": 2.2337551974}, {"date": "2021-02-22", "fuel": "gasoline", "current_price": 2.9301666667, "yoy_price": 2.7789166667, "absolute_change": 0.15125, "percentage_change": 5.4427684649}, {"date": "2021-03-01", "fuel": "gasoline", "current_price": 3.0103333333, "yoy_price": 2.7453333333, "absolute_change": 0.265, "percentage_change": 9.6527440505}, {"date": "2021-03-08", "fuel": "gasoline", "current_price": 3.0729166667, "yoy_price": 2.7021666667, "absolute_change": 0.37075, "percentage_change": 13.7204712268}, {"date": "2021-03-15", "fuel": "gasoline", "current_price": 3.1585, "yoy_price": 2.58475, "absolute_change": 0.57375, "percentage_change": 22.1975045943}, {"date": "2021-03-22", "fuel": "gasoline", "current_price": 3.1751666667, "yoy_price": 2.4628333333, "absolute_change": 0.7123333333, "percentage_change": 28.9233267916}, {"date": "2021-03-29", "fuel": "gasoline", "current_price": 3.1625833333, "yoy_price": 2.355, "absolute_change": 0.8075833333, "percentage_change": 34.2922859165}, {"date": "2021-04-05", "fuel": "gasoline", "current_price": 3.16725, "yoy_price": 2.2745833333, "absolute_change": 0.8926666667, "percentage_change": 39.2452830189}, {"date": "2021-04-12", "fuel": "gasoline", "current_price": 3.1645833333, "yoy_price": 2.20125, "absolute_change": 0.9633333333, "percentage_change": 43.7630134393}, {"date": "2021-04-19", "fuel": "gasoline", "current_price": 3.172, "yoy_price": 2.1604166667, "absolute_change": 1.0115833333, "percentage_change": 46.8235294118}, {"date": "2021-04-26", "fuel": "gasoline", "current_price": 3.1914166667, "yoy_price": 2.11725, "absolute_change": 1.0741666667, "percentage_change": 50.7340496714}, {"date": "2021-05-03", "fuel": "gasoline", "current_price": 3.2116666667, "yoy_price": 2.1213333333, "absolute_change": 1.0903333333, "percentage_change": 51.3984915148}, {"date": "2021-05-10", "fuel": "gasoline", "current_price": 3.2814166667, "yoy_price": 2.1696666667, "absolute_change": 1.11175, "percentage_change": 51.2405899524}, {"date": "2021-05-17", "fuel": "gasoline", "current_price": 3.34575, "yoy_price": 2.1990833333, "absolute_change": 1.1466666667, "percentage_change": 52.1429383455}, {"date": "2021-05-24", "fuel": "gasoline", "current_price": 3.34525, "yoy_price": 2.2720833333, "absolute_change": 1.0731666667, "percentage_change": 47.2327159362}, {"date": "2021-05-31", "fuel": "gasoline", "current_price": 3.35275, "yoy_price": 2.2890833333, "absolute_change": 1.0636666667, "percentage_change": 46.4669263533}, {"date": "2021-06-07", "fuel": "gasoline", "current_price": 3.3636666667, "yoy_price": 2.344, "absolute_change": 1.0196666667, "percentage_change": 43.5011376564}, {"date": "2021-06-14", "fuel": "gasoline", "current_price": 3.39425, "yoy_price": 2.4030833333, "absolute_change": 0.9911666667, "percentage_change": 41.245621944}, {"date": "2021-06-21", "fuel": "gasoline", "current_price": 3.3904166667, "yoy_price": 2.43225, "absolute_change": 0.9581666667, "percentage_change": 39.3942508651}, {"date": "2021-06-28", "fuel": "gasoline", "current_price": 3.4235, "yoy_price": 2.4748333333, "absolute_change": 0.9486666667, "percentage_change": 38.3325476463}, {"date": "2021-07-05", "fuel": "gasoline", "current_price": 3.4525833333, "yoy_price": 2.48025, "absolute_change": 0.9723333333, "percentage_change": 39.2030373282}, {"date": "2021-07-12", "fuel": "gasoline", "current_price": 3.4655, "yoy_price": 2.49975, "absolute_change": 0.96575, "percentage_change": 38.6338633863}, {"date": "2021-07-19", "fuel": "gasoline", "current_price": 3.4844166667, "yoy_price": 2.4939166667, "absolute_change": 0.9905, "percentage_change": 39.7166438333}, {"date": "2021-07-26", "fuel": "gasoline", "current_price": 3.4724166667, "yoy_price": 2.4895, "absolute_change": 0.9829166667, "percentage_change": 39.4824931378}, {"date": "2021-08-02", "fuel": "gasoline", "current_price": 3.4996666667, "yoy_price": 2.49, "absolute_change": 1.0096666667, "percentage_change": 40.5488621151}, {"date": "2021-08-09", "fuel": "gasoline", "current_price": 3.5111666667, "yoy_price": 2.4801666667, "absolute_change": 1.031, "percentage_change": 41.5697869767}, {"date": "2021-08-16", "fuel": "gasoline", "current_price": 3.51675, "yoy_price": 2.4823333333, "absolute_change": 1.0344166667, "percentage_change": 41.671142742}, {"date": "2021-08-23", "fuel": "gasoline", "current_price": 3.4896666667, "yoy_price": 2.498, "absolute_change": 0.9916666667, "percentage_change": 39.698425407}, {"date": "2021-08-30", "fuel": "gasoline", "current_price": 3.4851666667, "yoy_price": 2.5341666667, "absolute_change": 0.951, "percentage_change": 37.5271292338}, {"date": "2021-09-06", "fuel": "gasoline", "current_price": 3.5165833333, "yoy_price": 2.5275, "absolute_change": 0.9890833333, "percentage_change": 39.1328717441}, {"date": "2021-09-13", "fuel": "gasoline", "current_price": 3.5061666667, "yoy_price": 2.5030833333, "absolute_change": 1.0030833333, "percentage_change": 40.0739088458}, {"date": "2021-09-20", "fuel": "gasoline", "current_price": 3.5210833333, "yoy_price": 2.4869166667, "absolute_change": 1.0341666667, "percentage_change": 41.5842911235}, {"date": "2021-09-27", "fuel": "gasoline", "current_price": 3.5143333333, "yoy_price": 2.4848333333, "absolute_change": 1.0295, "percentage_change": 41.4313501912}, {"date": "2021-10-04", "fuel": "gasoline", "current_price": 3.5270833333, "yoy_price": 2.4865, "absolute_change": 1.0405833333, "percentage_change": 41.8493196595}, {"date": "2021-10-11", "fuel": "gasoline", "current_price": 3.5971666667, "yoy_price": 2.4828333333, "absolute_change": 1.1143333333, "percentage_change": 44.8815197691}, {"date": "2021-10-18", "fuel": "gasoline", "current_price": 3.65275, "yoy_price": 2.4681666667, "absolute_change": 1.1845833333, "percentage_change": 47.9944628267}, {"date": "2021-10-25", "fuel": "gasoline", "current_price": 3.7156666667, "yoy_price": 2.4629166667, "absolute_change": 1.25275, "percentage_change": 50.864489934}, {"date": "2021-11-01", "fuel": "gasoline", "current_price": 3.7273333333, "yoy_price": 2.436, "absolute_change": 1.2913333333, "percentage_change": 53.0103995621}, {"date": "2021-11-08", "fuel": "gasoline", "current_price": 3.7481666667, "yoy_price": 2.42075, "absolute_change": 1.3274166667, "percentage_change": 54.8349340769}, {"date": "2021-11-15", "fuel": "gasoline", "current_price": 3.7454166667, "yoy_price": 2.4341666667, "absolute_change": 1.31125, "percentage_change": 53.8685381719}, {"date": "2021-11-22", "fuel": "gasoline", "current_price": 3.74575, "yoy_price": 2.4274166667, "absolute_change": 1.3183333333, "percentage_change": 54.3101376635}, {"date": "2021-11-29", "fuel": "gasoline", "current_price": 3.7333333333, "yoy_price": 2.443, "absolute_change": 1.2903333333, "percentage_change": 52.817574021}, {"date": "2021-12-06", "fuel": "gasoline", "current_price": 3.69975, "yoy_price": 2.4734166667, "absolute_change": 1.2263333333, "percentage_change": 49.5805397392}, {"date": "2021-12-13", "fuel": "gasoline", "current_price": 3.6755, "yoy_price": 2.4745, "absolute_change": 1.201, "percentage_change": 48.5350575874}, {"date": "2021-12-20", "fuel": "gasoline", "current_price": 3.6595, "yoy_price": 2.5308333333, "absolute_change": 1.1286666667, "percentage_change": 44.5966414225}, {"date": "2021-12-27", "fuel": "gasoline", "current_price": 3.6401666667, "yoy_price": 2.5481666667, "absolute_change": 1.092, "percentage_change": 42.8543397214}, {"date": "2022-01-03", "fuel": "gasoline", "current_price": 3.64475, "yoy_price": 2.5546666667, "absolute_change": 1.0900833333, "percentage_change": 42.670276618}, {"date": "2022-01-10", "fuel": "gasoline", "current_price": 3.6535833333, "yoy_price": 2.6196666667, "absolute_change": 1.0339166667, "percentage_change": 39.4674895025}, {"date": "2022-01-17", "fuel": "gasoline", "current_price": 3.6615, "yoy_price": 2.6805, "absolute_change": 0.981, "percentage_change": 36.5976496922}, {"date": "2022-01-24", "fuel": "gasoline", "current_price": 3.6755, "yoy_price": 2.6963333333, "absolute_change": 0.9791666667, "percentage_change": 36.3147484238}, {"date": "2022-01-31", "fuel": "gasoline", "current_price": 3.7140833333, "yoy_price": 2.7136666667, "absolute_change": 1.0004166667, "percentage_change": 36.8658641445}, {"date": "2022-02-07", "fuel": "gasoline", "current_price": 3.7806666667, "yoy_price": 2.76625, "absolute_change": 1.0144166667, "percentage_change": 36.6711854195}, {"date": "2022-02-14", "fuel": "gasoline", "current_price": 3.82275, "yoy_price": 2.8070833333, "absolute_change": 1.0156666667, "percentage_change": 36.1822769779}, {"date": "2022-02-21", "fuel": "gasoline", "current_price": 3.8669166667, "yoy_price": 2.9301666667, "absolute_change": 0.93675, "percentage_change": 31.9691712644}, {"date": "2022-02-28", "fuel": "gasoline", "current_price": 3.9433333333, "yoy_price": 3.0103333333, "absolute_change": 0.933, "percentage_change": 30.9932454878}, {"date": "2022-03-07", "fuel": "gasoline", "current_price": 4.4456666667, "yoy_price": 3.0729166667, "absolute_change": 1.37275, "percentage_change": 44.6725423729}, {"date": "2022-03-14", "fuel": "gasoline", "current_price": 4.6726666667, "yoy_price": 3.1585, "absolute_change": 1.5141666667, "percentage_change": 47.9394227218}, {"date": "2022-03-21", "fuel": "gasoline", "current_price": 4.6170833333, "yoy_price": 3.1751666667, "absolute_change": 1.4419166667, "percentage_change": 45.4123143142}, {"date": "2022-03-28", "fuel": "gasoline", "current_price": 4.61125, "yoy_price": 3.1625833333, "absolute_change": 1.4486666667, "percentage_change": 45.8064346131}, {"date": "2022-04-04", "fuel": "gasoline", "current_price": 4.5525833333, "yoy_price": 3.16725, "absolute_change": 1.3853333333, "percentage_change": 43.7393111795}, {"date": "2022-04-11", "fuel": "gasoline", "current_price": 4.4771666667, "yoy_price": 3.1645833333, "absolute_change": 1.3125833333, "percentage_change": 41.4772876893}, {"date": "2022-04-18", "fuel": "gasoline", "current_price": 4.4511666667, "yoy_price": 3.172, "absolute_change": 1.2791666667, "percentage_change": 40.3268179908}, {"date": "2022-04-25", "fuel": "gasoline", "current_price": 4.4879166667, "yoy_price": 3.1914166667, "absolute_change": 1.2965, "percentage_change": 40.6245920046}, {"date": "2022-05-02", "fuel": "gasoline", "current_price": 4.5610833333, "yoy_price": 3.2116666667, "absolute_change": 1.3494166667, "percentage_change": 42.0160871821}, {"date": "2022-05-09", "fuel": "gasoline", "current_price": 4.701, "yoy_price": 3.2814166667, "absolute_change": 1.4195833333, "percentage_change": 43.2612946644}, {"date": "2022-05-16", "fuel": "gasoline", "current_price": 4.8656666667, "yoy_price": 3.34575, "absolute_change": 1.5199166667, "percentage_change": 45.4282796583}, {"date": "2022-05-23", "fuel": "gasoline", "current_price": 4.9719166667, "yoy_price": 3.34525, "absolute_change": 1.6266666667, "percentage_change": 48.6261614727}, {"date": "2022-05-30", "fuel": "gasoline", "current_price": 5.012, "yoy_price": 3.35275, "absolute_change": 1.65925, "percentage_change": 49.4892252628}, {"date": "2022-06-06", "fuel": "gasoline", "current_price": 5.2535, "yoy_price": 3.3636666667, "absolute_change": 1.8898333333, "percentage_change": 56.1837280745}, {"date": "2022-06-13", "fuel": "gasoline", "current_price": 5.38075, "yoy_price": 3.39425, "absolute_change": 1.9865, "percentage_change": 58.5254474479}, {"date": "2022-06-20", "fuel": "gasoline", "current_price": 5.3458333333, "yoy_price": 3.3904166667, "absolute_change": 1.9554166667, "percentage_change": 57.6748187293}, {"date": "2022-06-27", "fuel": "gasoline", "current_price": 5.2643333333, "yoy_price": 3.4235, "absolute_change": 1.8408333333, "percentage_change": 53.770507765}, {"date": "2022-07-04", "fuel": "gasoline", "current_price": 5.1664166667, "yoy_price": 3.4525833333, "absolute_change": 1.7138333333, "percentage_change": 49.6391590838}, {"date": "2022-07-11", "fuel": "gasoline", "current_price": 5.0398333333, "yoy_price": 3.4655, "absolute_change": 1.5743333333, "percentage_change": 45.4287500601}, {"date": "2022-07-18", "fuel": "gasoline", "current_price": 4.883, "yoy_price": 3.4844166667, "absolute_change": 1.3985833333, "percentage_change": 40.1382345204}, {"date": "2022-07-25", "fuel": "gasoline", "current_price": 4.7291666667, "yoy_price": 3.4724166667, "absolute_change": 1.25675, "percentage_change": 36.1923732271}, {"date": "2022-08-01", "fuel": "gasoline", "current_price": 4.5989166667, "yoy_price": 3.4996666667, "absolute_change": 1.09925, "percentage_change": 31.4101342985}, {"date": "2022-08-08", "fuel": "gasoline", "current_price": 4.4489166667, "yoy_price": 3.5111666667, "absolute_change": 0.93775, "percentage_change": 26.7076470309}, {"date": "2022-08-15", "fuel": "gasoline", "current_price": 4.349, "yoy_price": 3.51675, "absolute_change": 0.83225, "percentage_change": 23.6653159878}, {"date": "2022-08-22", "fuel": "gasoline", "current_price": 4.2890833333, "yoy_price": 3.4896666667, "absolute_change": 0.7994166667, "percentage_change": 22.9081096571}, {"date": "2022-08-29", "fuel": "gasoline", "current_price": 4.2285, "yoy_price": 3.4851666667, "absolute_change": 0.7433333333, "percentage_change": 21.328487399}, {"date": "2022-09-05", "fuel": "gasoline", "current_price": 4.1523333333, "yoy_price": 3.5165833333, "absolute_change": 0.63575, "percentage_change": 18.0786274556}, {"date": "2022-09-12", "fuel": "gasoline", "current_price": 4.1074166667, "yoy_price": 3.5061666667, "absolute_change": 0.60125, "percentage_change": 17.1483576556}, {"date": "2022-09-19", "fuel": "gasoline", "current_price": 4.0789166667, "yoy_price": 3.5210833333, "absolute_change": 0.5578333333, "percentage_change": 15.8426620595}, {"date": "2022-09-26", "fuel": "gasoline", "current_price": 4.14825, "yoy_price": 3.5143333333, "absolute_change": 0.6339166667, "percentage_change": 18.038034715}, {"date": "2022-10-03", "fuel": "gasoline", "current_price": 4.2526666667, "yoy_price": 3.5270833333, "absolute_change": 0.7255833333, "percentage_change": 20.5717660957}, {"date": "2022-10-10", "fuel": "gasoline", "current_price": 4.3633333333, "yoy_price": 3.5971666667, "absolute_change": 0.7661666667, "percentage_change": 21.2991706436}, {"date": "2022-10-17", "fuel": "gasoline", "current_price": 4.3120833333, "yoy_price": 3.65275, "absolute_change": 0.6593333333, "percentage_change": 18.0503273789}, {"date": "2022-10-24", "fuel": "gasoline", "current_price": 4.1995833333, "yoy_price": 3.7156666667, "absolute_change": 0.4839166667, "percentage_change": 13.0236835023}, {"date": "2022-10-31", "fuel": "gasoline", "current_price": 4.1658333333, "yoy_price": 3.7273333333, "absolute_change": 0.4385, "percentage_change": 11.7644428546}, {"date": "2022-11-07", "fuel": "gasoline", "current_price": 4.2105, "yoy_price": 3.7481666667, "absolute_change": 0.4623333333, "percentage_change": 12.3349192939}, {"date": "2022-11-14", "fuel": "gasoline", "current_price": 4.17825, "yoy_price": 3.7454166667, "absolute_change": 0.4328333333, "percentage_change": 11.5563466459}, {"date": "2022-11-21", "fuel": "gasoline", "current_price": 4.0665, "yoy_price": 3.74575, "absolute_change": 0.32075, "percentage_change": 8.5630381099}, {"date": "2022-11-28", "fuel": "gasoline", "current_price": 3.9478333333, "yoy_price": 3.7333333333, "absolute_change": 0.2145, "percentage_change": 5.7455357143}, {"date": "2022-12-05", "fuel": "gasoline", "current_price": 3.7958333333, "yoy_price": 3.69975, "absolute_change": 0.0960833333, "percentage_change": 2.5970223213}, {"date": "2022-12-12", "fuel": "gasoline", "current_price": 3.6435833333, "yoy_price": 3.6755, "absolute_change": -0.0319166667, "percentage_change": -0.8683625811}, {"date": "2022-12-19", "fuel": "gasoline", "current_price": 3.523, "yoy_price": 3.6595, "absolute_change": -0.1365, "percentage_change": -3.730017762}, {"date": "2022-12-26", "fuel": "gasoline", "current_price": 3.4898333333, "yoy_price": 3.6401666667, "absolute_change": -0.1503333333, "percentage_change": -4.1298475345}, {"date": "2023-01-02", "fuel": "gasoline", "current_price": 3.6025, "yoy_price": 3.64475, "absolute_change": -0.04225, "percentage_change": -1.1592015913}, {"date": "2023-01-09", "fuel": "gasoline", "current_price": 3.6311666667, "yoy_price": 3.6535833333, "absolute_change": -0.0224166667, "percentage_change": -0.6135529047}, {"date": "2023-01-16", "fuel": "gasoline", "current_price": 3.67775, "yoy_price": 3.6615, "absolute_change": 0.01625, "percentage_change": 0.4438071828}, {"date": "2023-01-23", "fuel": "gasoline", "current_price": 3.774, "yoy_price": 3.6755, "absolute_change": 0.0985, "percentage_change": 2.6799074956}, {"date": "2023-01-30", "fuel": "gasoline", "current_price": 3.8493333333, "yoy_price": 3.7140833333, "absolute_change": 0.13525, "percentage_change": 3.6415445713}, {"date": "2023-02-06", "fuel": "gasoline", "current_price": 3.8183333333, "yoy_price": 3.7806666667, "absolute_change": 0.0376666667, "percentage_change": 0.9962969494}, {"date": "2023-02-13", "fuel": "gasoline", "current_price": 3.77675, "yoy_price": 3.82275, "absolute_change": -0.046, "percentage_change": -1.2033222157}, {"date": "2023-02-20", "fuel": "gasoline", "current_price": 3.776, "yoy_price": 3.8669166667, "absolute_change": -0.0909166667, "percentage_change": -2.35114109}, {"date": "2023-02-27", "fuel": "gasoline", "current_price": 3.7435833333, "yoy_price": 3.9433333333, "absolute_change": -0.19975, "percentage_change": -5.0655114117}, {"date": "2023-03-06", "fuel": "gasoline", "current_price": 3.7944166667, "yoy_price": 4.4456666667, "absolute_change": -0.65125, "percentage_change": -14.6490964985}, {"date": "2023-03-13", "fuel": "gasoline", "current_price": 3.8526666667, "yoy_price": 4.6726666667, "absolute_change": -0.82, "percentage_change": -17.548865744}, {"date": "2023-03-20", "fuel": "gasoline", "current_price": 3.81625, "yoy_price": 4.6170833333, "absolute_change": -0.8008333333, "percentage_change": -17.3450049635}, {"date": "2023-03-27", "fuel": "gasoline", "current_price": 3.81875, "yoy_price": 4.61125, "absolute_change": -0.7925, "percentage_change": -17.1862293304}, {"date": "2023-04-03", "fuel": "gasoline", "current_price": 3.883, "yoy_price": 4.5525833333, "absolute_change": -0.6695833333, "percentage_change": -14.7077666526}, {"date": "2023-04-10", "fuel": "gasoline", "current_price": 3.9720833333, "yoy_price": 4.4771666667, "absolute_change": -0.5050833333, "percentage_change": -11.2813163087}, {"date": "2023-04-17", "fuel": "gasoline", "current_price": 4.0398333333, "yoy_price": 4.4511666667, "absolute_change": -0.4113333333, "percentage_change": -9.2410229528}, {"date": "2023-04-24", "fuel": "gasoline", "current_price": 4.0428333333, "yoy_price": 4.4879166667, "absolute_change": -0.4450833333, "percentage_change": -9.9173707177}, {"date": "2023-05-01", "fuel": "gasoline", "current_price": 3.9936666667, "yoy_price": 4.5610833333, "absolute_change": -0.5674166667, "percentage_change": -12.4403924506}, {"date": "2023-05-08", "fuel": "gasoline", "current_price": 3.9304166667, "yoy_price": 4.701, "absolute_change": -0.7705833333, "percentage_change": -16.3919024321}, {"date": "2023-05-15", "fuel": "gasoline", "current_price": 3.9295, "yoy_price": 4.8656666667, "absolute_change": -0.9361666667, "percentage_change": -19.2402548469}, {"date": "2023-05-22", "fuel": "gasoline", "current_price": 3.9285833333, "yoy_price": 4.9719166667, "absolute_change": -1.0433333333, "percentage_change": -20.9845297756}, {"date": "2023-05-29", "fuel": "gasoline", "current_price": 3.9719166667, "yoy_price": 5.012, "absolute_change": -1.0400833333, "percentage_change": -20.7518621974}, {"date": "2023-06-05", "fuel": "gasoline", "current_price": 3.9455833333, "yoy_price": 5.2535, "absolute_change": -1.3079166667, "percentage_change": -24.896101012}, {"date": "2023-06-12", "fuel": "gasoline", "current_price": 3.995, "yoy_price": 5.38075, "absolute_change": -1.38575, "percentage_change": -25.7538447242}, {"date": "2023-06-19", "fuel": "gasoline", "current_price": 3.98025, "yoy_price": 5.3458333333, "absolute_change": -1.3655833333, "percentage_change": -25.5448168355}, {"date": "2023-06-26", "fuel": "gasoline", "current_price": 3.9753333333, "yoy_price": 5.2643333333, "absolute_change": -1.289, "percentage_change": -24.4855315646}, {"date": "2023-07-03", "fuel": "gasoline", "current_price": 3.9385833333, "yoy_price": 5.1664166667, "absolute_change": -1.2278333333, "percentage_change": -23.7656660806}, {"date": "2023-07-10", "fuel": "gasoline", "current_price": 3.9613333333, "yoy_price": 5.0398333333, "absolute_change": -1.0785, "percentage_change": -21.3995171798}, {"date": "2023-07-17", "fuel": "gasoline", "current_price": 3.9698333333, "yoy_price": 4.883, "absolute_change": -0.9131666667, "percentage_change": -18.7009352174}, {"date": "2023-07-24", "fuel": "gasoline", "current_price": 4.0019166667, "yoy_price": 4.7291666667, "absolute_change": -0.72725, "percentage_change": -15.3779735683}, {"date": "2023-07-31", "fuel": "gasoline", "current_price": 4.1503333333, "yoy_price": 4.5989166667, "absolute_change": -0.4485833333, "percentage_change": -9.7541087575}, {"date": "2023-08-07", "fuel": "gasoline", "current_price": 4.2188333333, "yoy_price": 4.4489166667, "absolute_change": -0.2300833333, "percentage_change": -5.1716710061}, {"date": "2023-08-14", "fuel": "gasoline", "current_price": 4.2440833333, "yoy_price": 4.349, "absolute_change": -0.1049166667, "percentage_change": -2.4124319767}, {"date": "2023-08-21", "fuel": "gasoline", "current_price": 4.2770833333, "yoy_price": 4.2890833333, "absolute_change": -0.012, "percentage_change": -0.2797800618}, {"date": "2023-08-28", "fuel": "gasoline", "current_price": 4.23275, "yoy_price": 4.2285, "absolute_change": 0.00425, "percentage_change": 0.1005084545}, {"date": "2023-09-04", "fuel": "gasoline", "current_price": 4.22625, "yoy_price": 4.1523333333, "absolute_change": 0.0739166667, "percentage_change": 1.7801236253}, {"date": "2023-09-11", "fuel": "gasoline", "current_price": 4.2460833333, "yoy_price": 4.1074166667, "absolute_change": 0.1386666667, "percentage_change": 3.3760068169}, {"date": "2023-09-18", "fuel": "gasoline", "current_price": 4.323, "yoy_price": 4.0789166667, "absolute_change": 0.2440833333, "percentage_change": 5.9840235357}, {"date": "2023-09-25", "fuel": "gasoline", "current_price": 4.2991666667, "yoy_price": 4.14825, "absolute_change": 0.1509166667, "percentage_change": 3.638080315}, {"date": "2023-10-02", "fuel": "gasoline", "current_price": 4.28625, "yoy_price": 4.2526666667, "absolute_change": 0.0335833333, "percentage_change": 0.78970058}, {"date": "2023-10-09", "fuel": "gasoline", "current_price": 4.1599166667, "yoy_price": 4.3633333333, "absolute_change": -0.2034166667, "percentage_change": -4.6619556914}, {"date": "2023-10-16", "fuel": "gasoline", "current_price": 4.0485, "yoy_price": 4.3120833333, "absolute_change": -0.2635833333, "percentage_change": -6.1126678906}, {"date": "2023-10-23", "fuel": "gasoline", "current_price": 3.99475, "yoy_price": 4.1995833333, "absolute_change": -0.2048333333, "percentage_change": -4.8774680028}, {"date": "2023-10-30", "fuel": "gasoline", "current_price": 3.9290833333, "yoy_price": 4.1658333333, "absolute_change": -0.23675, "percentage_change": -5.6831366273}, {"date": "2023-11-06", "fuel": "gasoline", "current_price": 3.8448333333, "yoy_price": 4.2105, "absolute_change": -0.3656666667, "percentage_change": -8.6846376123}, {"date": "2023-11-13", "fuel": "gasoline", "current_price": 3.789, "yoy_price": 4.17825, "absolute_change": -0.38925, "percentage_change": -9.3161012386}, {"date": "2023-11-20", "fuel": "gasoline", "current_price": 3.7325833333, "yoy_price": 4.0665, "absolute_change": -0.3339166667, "percentage_change": -8.2114021066}, {"date": "2023-11-27", "fuel": "gasoline", "current_price": 3.6828333333, "yoy_price": 3.9478333333, "absolute_change": -0.265, "percentage_change": -6.712542745}, {"date": "2023-12-04", "fuel": "gasoline", "current_price": 3.6656666667, "yoy_price": 3.7958333333, "absolute_change": -0.1301666667, "percentage_change": -3.4291986828}, {"date": "2023-12-11", "fuel": "gasoline", "current_price": 3.5654166667, "yoy_price": 3.6435833333, "absolute_change": -0.0781666667, "percentage_change": -2.1453239714}, {"date": "2023-12-18", "fuel": "gasoline", "current_price": 3.4815, "yoy_price": 3.523, "absolute_change": -0.0415, "percentage_change": -1.1779733182}, {"date": "2023-12-25", "fuel": "gasoline", "current_price": 3.5409166667, "yoy_price": 3.4898333333, "absolute_change": 0.0510833333, "percentage_change": 1.4637757295}, {"date": "2024-01-01", "fuel": "gasoline", "current_price": 3.5228333333, "yoy_price": 3.6025, "absolute_change": -0.0796666667, "percentage_change": -2.2114272496}, {"date": "2024-01-08", "fuel": "gasoline", "current_price": 3.5079166667, "yoy_price": 3.6311666667, "absolute_change": -0.12325, "percentage_change": -3.3942259145}, {"date": "2024-01-15", "fuel": "gasoline", "current_price": 3.4788333333, "yoy_price": 3.67775, "absolute_change": -0.1989166667, "percentage_change": -5.4086511227}, {"date": "2024-01-22", "fuel": "gasoline", "current_price": 3.4768333333, "yoy_price": 3.774, "absolute_change": -0.2971666667, "percentage_change": -7.8740505211}, {"date": "2024-01-29", "fuel": "gasoline", "current_price": 3.5109166667, "yoy_price": 3.8493333333, "absolute_change": -0.3384166667, "percentage_change": -8.7915656391}, {"date": "2024-02-05", "fuel": "gasoline", "current_price": 3.54975, "yoy_price": 3.8183333333, "absolute_change": -0.2685833333, "percentage_change": -7.034046268}, {"date": "2024-02-12", "fuel": "gasoline", "current_price": 3.5989166667, "yoy_price": 3.77675, "absolute_change": -0.1778333333, "percentage_change": -4.7086339666}, {"date": "2024-02-19", "fuel": "gasoline", "current_price": 3.6731666667, "yoy_price": 3.776, "absolute_change": -0.1028333333, "percentage_change": -2.7233403955}, {"date": "2024-02-26", "fuel": "gasoline", "current_price": 3.6526666667, "yoy_price": 3.7435833333, "absolute_change": -0.0909166667, "percentage_change": -2.428600049}, {"date": "2024-03-04", "fuel": "gasoline", "current_price": 3.7561666667, "yoy_price": 3.7944166667, "absolute_change": -0.03825, "percentage_change": -1.0080600883}, {"date": "2024-03-11", "fuel": "gasoline", "current_price": 3.781, "yoy_price": 3.8526666667, "absolute_change": -0.0716666667, "percentage_change": -1.8601834227}, {"date": "2024-03-18", "fuel": "gasoline", "current_price": 3.8548333333, "yoy_price": 3.81625, "absolute_change": 0.0385833333, "percentage_change": 1.0110274047}, {"date": "2024-03-25", "fuel": "gasoline", "current_price": 3.9271666667, "yoy_price": 3.81875, "absolute_change": 0.1084166667, "percentage_change": 2.8390616476}, {"date": "2024-04-01", "fuel": "gasoline", "current_price": 3.9306666667, "yoy_price": 3.883, "absolute_change": 0.0476666667, "percentage_change": 1.2275731822}, {"date": "2024-04-08", "fuel": "gasoline", "current_price": 4.0188333333, "yoy_price": 3.9720833333, "absolute_change": 0.04675, "percentage_change": 1.1769642295}, {"date": "2024-04-15", "fuel": "gasoline", "current_price": 4.06375, "yoy_price": 4.0398333333, "absolute_change": 0.0239166667, "percentage_change": 0.592021123}, {"date": "2024-04-22", "fuel": "gasoline", "current_price": 4.10625, "yoy_price": 4.0428333333, "absolute_change": 0.0634166667, "percentage_change": 1.5686193676}, {"date": "2024-04-29", "fuel": "gasoline", "current_price": 4.09125, "yoy_price": 3.9936666667, "absolute_change": 0.0975833333, "percentage_change": 2.4434521325}, {"date": "2024-05-06", "fuel": "gasoline", "current_price": 4.0814166667, "yoy_price": 3.9304166667, "absolute_change": 0.151, "percentage_change": 3.8418318669}, {"date": "2024-05-13", "fuel": "gasoline", "current_price": 4.0420833333, "yoy_price": 3.9295, "absolute_change": 0.1125833333, "percentage_change": 2.8650803749}, {"date": "2024-05-20", "fuel": "gasoline", "current_price": 4.0134166667, "yoy_price": 3.9285833333, "absolute_change": 0.0848333333, "percentage_change": 2.1593873958}, {"date": "2024-05-27", "fuel": "gasoline", "current_price": 4.00925, "yoy_price": 3.9719166667, "absolute_change": 0.0373333333, "percentage_change": 0.9399324424}, {"date": "2024-06-03", "fuel": "gasoline", "current_price": 3.9465, "yoy_price": 3.9455833333, "absolute_change": 0.0009166667, "percentage_change": 0.0232327286}, {"date": "2024-06-10", "fuel": "gasoline", "current_price": 3.8579166667, "yoy_price": 3.995, "absolute_change": -0.1370833333, "percentage_change": -3.431372549}, {"date": "2024-06-17", "fuel": "gasoline", "current_price": 3.8586666667, "yoy_price": 3.98025, "absolute_change": -0.1215833333, "percentage_change": -3.0546657455}, {"date": "2024-06-24", "fuel": "gasoline", "current_price": 3.8534166667, "yoy_price": 3.9753333333, "absolute_change": -0.1219166667, "percentage_change": -3.0668287775}, {"date": "2024-07-01", "fuel": "gasoline", "current_price": 3.8831666667, "yoy_price": 3.9385833333, "absolute_change": -0.0554166667, "percentage_change": -1.4070202907}, {"date": "2024-07-08", "fuel": "gasoline", "current_price": 3.90025, "yoy_price": 3.9613333333, "absolute_change": -0.0610833333, "percentage_change": -1.5419892292}, {"date": "2024-07-15", "fuel": "gasoline", "current_price": 3.9055, "yoy_price": 3.9698333333, "absolute_change": -0.0643333333, "percentage_change": -1.6205550191}, {"date": "2024-07-22", "fuel": "gasoline", "current_price": 3.87175, "yoy_price": 4.0019166667, "absolute_change": -0.1301666667, "percentage_change": -3.2526081253}, {"date": "2024-07-29", "fuel": "gasoline", "current_price": 3.879, "yoy_price": 4.1503333333, "absolute_change": -0.2713333333, "percentage_change": -6.5376274998}, {"date": "2024-08-05", "fuel": "gasoline", "current_price": 3.84375, "yoy_price": 4.2188333333, "absolute_change": -0.3750833333, "percentage_change": -8.890688579}, {"date": "2024-08-12", "fuel": "gasoline", "current_price": 3.8125, "yoy_price": 4.2440833333, "absolute_change": -0.4315833333, "percentage_change": -10.1690588859}, {"date": "2024-08-19", "fuel": "gasoline", "current_price": 3.7886666667, "yoy_price": 4.2770833333, "absolute_change": -0.4884166667, "percentage_change": -11.419386264}, {"date": "2024-08-26", "fuel": "gasoline", "current_price": 3.7275, "yoy_price": 4.23275, "absolute_change": -0.50525, "percentage_change": -11.9366841888}, {"date": "2024-09-02", "fuel": "gasoline", "current_price": 3.7145, "yoy_price": 4.22625, "absolute_change": -0.51175, "percentage_change": -12.1088435374}, {"date": "2024-09-09", "fuel": "gasoline", "current_price": 3.6693333333, "yoy_price": 4.2460833333, "absolute_change": -0.57675, "percentage_change": -13.5831059996}, {"date": "2024-09-16", "fuel": "gasoline", "current_price": 3.62675, "yoy_price": 4.323, "absolute_change": -0.69625, "percentage_change": -16.1057136248}, {"date": "2024-09-23", "fuel": "gasoline", "current_price": 3.6224166667, "yoy_price": 4.2991666667, "absolute_change": -0.67675, "percentage_change": -15.7414227563}, {"date": "2024-09-30", "fuel": "gasoline", "current_price": 3.6073333333, "yoy_price": 4.28625, "absolute_change": -0.6789166667, "percentage_change": -15.8394089628}, {"date": "2024-10-07", "fuel": "gasoline", "current_price": 3.5685833333, "yoy_price": 4.1599166667, "absolute_change": -0.5913333333, "percentage_change": -14.2150283459}, {"date": "2024-10-14", "fuel": "gasoline", "current_price": 3.5970833333, "yoy_price": 4.0485, "absolute_change": -0.4514166667, "percentage_change": -11.1502202462}, {"date": "2024-10-21", "fuel": "gasoline", "current_price": 3.5735, "yoy_price": 3.99475, "absolute_change": -0.42125, "percentage_change": -10.5450904312}, {"date": "2024-10-28", "fuel": "gasoline", "current_price": 3.5249166667, "yoy_price": 3.9290833333, "absolute_change": -0.4041666667, "percentage_change": -10.2865384208}, {"date": "2024-11-04", "fuel": "gasoline", "current_price": 3.493, "yoy_price": 3.8448333333, "absolute_change": -0.3518333333, "percentage_change": -9.1508084442}, {"date": "2024-11-11", "fuel": "gasoline", "current_price": 3.4789166667, "yoy_price": 3.789, "absolute_change": -0.3100833333, "percentage_change": -8.1837776018}, {"date": "2024-11-18", "fuel": "gasoline", "current_price": 3.4660833333, "yoy_price": 3.7325833333, "absolute_change": -0.2665, "percentage_change": -7.1398271974}, {"date": "2024-11-25", "fuel": "gasoline", "current_price": 3.4660833333, "yoy_price": 3.6828333333, "absolute_change": -0.21675, "percentage_change": -5.8854143096}, {"date": "2024-12-02", "fuel": "gasoline", "current_price": 3.45425, "yoy_price": 3.6656666667, "absolute_change": -0.2114166667, "percentage_change": -5.7674820406}, {"date": "2024-12-09", "fuel": "gasoline", "current_price": 3.431, "yoy_price": 3.5654166667, "absolute_change": -0.1344166667, "percentage_change": -3.770012855}, {"date": "2024-12-16", "fuel": "gasoline", "current_price": 3.431, "yoy_price": 3.4815, "absolute_change": -0.0505, "percentage_change": -1.4505241993}, {"date": "2024-12-23", "fuel": "gasoline", "current_price": 3.4395, "yoy_price": 3.5409166667, "absolute_change": -0.1014166667, "percentage_change": -2.8641359347}, {"date": "2024-12-30", "fuel": "gasoline", "current_price": 3.4266666667, "yoy_price": 3.5228333333, "absolute_change": -0.0961666667, "percentage_change": -2.7298102853}, {"date": "2025-01-06", "fuel": "gasoline", "current_price": 3.4620833333, "yoy_price": 3.5079166667, "absolute_change": -0.0458333333, "percentage_change": -1.3065684761}, {"date": "2025-01-13", "fuel": "gasoline", "current_price": 3.4610833333, "yoy_price": 3.4788333333, "absolute_change": -0.01775, "percentage_change": -0.5102285249}, {"date": "2025-01-20", "fuel": "gasoline", "current_price": 3.5243333333, "yoy_price": 3.4768333333, "absolute_change": 0.0475, "percentage_change": 1.3661857054}, {"date": "2025-01-27", "fuel": "gasoline", "current_price": 3.522, "yoy_price": 3.5109166667, "absolute_change": 0.0110833333, "percentage_change": 0.3156820394}, {"date": "2025-02-03", "fuel": "gasoline", "current_price": 3.5101666667, "yoy_price": 3.54975, "absolute_change": -0.0395833333, "percentage_change": -1.1151020025}, {"date": "2025-02-10", "fuel": "gasoline", "current_price": 3.5611666667, "yoy_price": 3.5989166667, "absolute_change": -0.03775, "percentage_change": -1.0489267604}, {"date": "2025-02-17", "fuel": "gasoline", "current_price": 3.5964166667, "yoy_price": 3.6731666667, "absolute_change": -0.07675, "percentage_change": -2.089477744}, {"date": "2025-02-24", "fuel": "gasoline", "current_price": 3.57775, "yoy_price": 3.6526666667, "absolute_change": -0.0749166667, "percentage_change": -2.0510129586}, {"date": "2025-03-03", "fuel": "gasoline", "current_price": 3.5271666667, "yoy_price": 3.7561666667, "absolute_change": -0.229, "percentage_change": -6.0966410791}, {"date": "2025-03-10", "fuel": "gasoline", "current_price": 3.51375, "yoy_price": 3.781, "absolute_change": -0.26725, "percentage_change": -7.0682359164}, {"date": "2025-03-17", "fuel": "gasoline", "current_price": 3.4978333333, "yoy_price": 3.8548333333, "absolute_change": -0.357, "percentage_change": -9.2611007826}, {"date": "2025-03-24", "fuel": "gasoline", "current_price": 3.5485833333, "yoy_price": 3.9271666667, "absolute_change": -0.3785833333, "percentage_change": -9.6401137376}, {"date": "2025-03-31", "fuel": "gasoline", "current_price": 3.6035, "yoy_price": 3.9306666667, "absolute_change": -0.3271666667, "percentage_change": -8.3234396201}, {"date": "2025-04-07", "fuel": "gasoline", "current_price": 3.6863333333, "yoy_price": 4.0188333333, "absolute_change": -0.3325, "percentage_change": -8.2735453905}, {"date": "2025-04-14", "fuel": "gasoline", "current_price": 3.613, "yoy_price": 4.06375, "absolute_change": -0.45075, "percentage_change": -11.091971701}, {"date": "2025-04-21", "fuel": "gasoline", "current_price": 3.58525, "yoy_price": 4.10625, "absolute_change": -0.521, "percentage_change": -12.6879756469}, {"date": "2025-04-28", "fuel": "gasoline", "current_price": 3.57875, "yoy_price": 4.09125, "absolute_change": -0.5125, "percentage_change": -12.5267338833}, {"date": "2025-05-05", "fuel": "gasoline", "current_price": 3.5851666667, "yoy_price": 4.0814166667, "absolute_change": -0.49625, "percentage_change": -12.1587684015}, {"date": "2025-05-12", "fuel": "gasoline", "current_price": 3.5728333333, "yoy_price": 4.0420833333, "absolute_change": -0.46925, "percentage_change": -11.6091124626}, {"date": "2025-05-19", "fuel": "gasoline", "current_price": 3.6244166667, "yoy_price": 4.0134166667, "absolute_change": -0.389, "percentage_change": -9.6924897739}, {"date": "2025-05-26", "fuel": "gasoline", "current_price": 3.6089166667, "yoy_price": 4.00925, "absolute_change": -0.4003333333, "percentage_change": -9.9852424601}, {"date": "2025-06-02", "fuel": "gasoline", "current_price": 3.5746666667, "yoy_price": 3.9465, "absolute_change": -0.3718333333, "percentage_change": -9.4218505849}, {"date": "2025-06-09", "fuel": "gasoline", "current_price": 3.5501666667, "yoy_price": 3.8579166667, "absolute_change": -0.30775, "percentage_change": -7.9771033589}, {"date": "2025-06-16", "fuel": "gasoline", "current_price": 3.5765, "yoy_price": 3.8586666667, "absolute_change": -0.2821666667, "percentage_change": -7.3125431928}, {"date": "2025-06-23", "fuel": "gasoline", "current_price": 3.6445833333, "yoy_price": 3.8534166667, "absolute_change": -0.2088333333, "percentage_change": -5.4194329707}], "metadata": {"date": {"type": "date", "semanticType": "Date"}, "fuel": {"type": "string", "semanticType": "String"}, "current_price": {"type": "number", "semanticType": "Number"}, "yoy_price": {"type": "number", "semanticType": "Number"}, "absolute_change": {"type": "number", "semanticType": "Number"}, "percentage_change": {"type": "number", "semanticType": "Percentage"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for proper sorting and manipulation\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Sort by fuel and date\n df_agg = df_agg.sort_values(['fuel', 'date'])\n \n # Calculate year-over-year changes (52 weeks ago for weekly data)\n df_agg['yoy_price'] = df_agg.groupby('fuel')['price'].shift(52)\n df_agg['absolute_change'] = df_agg['price'] - df_agg['yoy_price']\n df_agg['percentage_change'] = ((df_agg['price'] - df_agg['yoy_price']) / df_agg['yoy_price']) * 100\n \n # Rename columns for clarity\n transformed_df = df_agg.rename(columns={'price': 'current_price'})\n \n # Convert date back to string format for visualization\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n # Keep only rows where we have year-over-year data (remove first 52 weeks)\n transformed_df = transformed_df.dropna(subset=['yoy_price'])\n \n # Select and order output columns\n transformed_df = transformed_df[['date', 'fuel', 'current_price', 'yoy_price', 'absolute_change', 'percentage_change']]\n \n return transformed_df\n", "source": ["weekly_gas_prices"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date fuel avg_price\n0 1990-08-20 gasoline 1.191\n1 1990-08-27 gasoline 1.245\n2 1990-09-03 gasoline 1.242\n3 1990-09-10 gasoline 1.252\n4 1990-09-17 gasoline 1.266\n5 1990-09-24 gasoline 1.272\n6 1990-10-01 gasoline 1.321\n7 1990-10-08 gasoline 1.333\n8 1990-10-15 gasoline 1.339\n9 1990-10-22 gasoline 1.345\n......\n\nUpdate the code above based on the following instruction:\n\nCalculate year-over-year price changes to identify the most dramatic price spikes for both diesel and gasoline, showing which periods had the largest absolute and percentage increases with their peak prices."}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to identify the most dramatic price spikes by calculating year-over-year price changes for both diesel and gasoline, showing periods with the largest absolute and percentage increases along with their peak prices.\",\n \"display_instruction\": \"Identify periods with largest **year-over-year price changes** (absolute and percentage) and **peak prices**\",\n \"recommendation\": \"To analyze year-over-year price changes, we need to calculate the price difference and percentage change compared to the same period one year prior. We'll compute both absolute change and percentage change, then identify the periods with the most dramatic spikes. The output should include the date, fuel type, current price, previous year's price, absolute change, and percentage change to provide a comprehensive view of price volatility.\",\n \"output_fields\": [\"date\", \"fuel\", \"current_price\", \"yoy_price\", \"absolute_change\", \"percentage_change\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"absolute_change\",\n \"color\": \"fuel\",\n \"size\": \"percentage_change\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for proper sorting and manipulation\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Sort by fuel and date\n df_agg = df_agg.sort_values(['fuel', 'date'])\n \n # Calculate year-over-year changes (52 weeks ago for weekly data)\n df_agg['yoy_price'] = df_agg.groupby('fuel')['price'].shift(52)\n df_agg['absolute_change'] = df_agg['price'] - df_agg['yoy_price']\n df_agg['percentage_change'] = ((df_agg['price'] - df_agg['yoy_price']) / df_agg['yoy_price']) * 100\n \n # Rename columns for clarity\n transformed_df = df_agg.rename(columns={'price': 'current_price'})\n \n # Convert date back to string format for visualization\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n # Keep only rows where we have year-over-year data (remove first 52 weeks)\n transformed_df = transformed_df.dropna(subset=['yoy_price'])\n \n # Select and order output columns\n transformed_df = transformed_df[['date', 'fuel', 'current_price', 'yoy_price', 'absolute_change', 'percentage_change']]\n \n return transformed_df\n```"}], "trigger": {"tableId": "table-904593", "resultTableId": "table-922023", "chart": {"id": "chart-1760744928220", "chartType": "Auto", "encodingMap": {}, "tableRef": "weekly_gas_prices", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "Calculate year-over-year price changes to identify the most dramatic price spikes for both diesel and gasoline, showing which periods had the largest absolute and percentage increases with their peak prices.", "displayContent": "Identify periods with largest **year-over-year price changes** (absolute and percentage) and **peak prices**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "The code analyzes **year-over-year price trends** for different fuel types by performing the following steps:\n\n- Aggregates the data by **date** and **fuel** type, calculating the **average price** across all grades and formulations for each fuel type on each date\n- Converts **date** field to datetime format and sorts the data chronologically by **fuel** and **date**\n- Calculates **year-over-year comparisons** by comparing each week's price to the price from **52 weeks ago** (one year prior)\n- Computes both **absolute change** (dollar difference) and **percentage change** between current prices and prices from one year ago\n- Removes the first **52 weeks** of data where year-over-year comparisons are not available\n- Returns a dataset containing **current prices**, **year-ago prices**, and their **changes** for each fuel type over time", "concepts": [{"explanation": "The average fuel price from exactly 52 weeks (one year) prior to the current date, used as a baseline for year-over-year comparison. This represents the historical price point from the same week in the previous year.", "field": "yoy_price"}, {"explanation": "The dollar amount difference between the current week's price and the price from one year ago, calculated as: \\( \\text{absolute\\_change} = \\text{current\\_price} - \\text{yoy\\_price} \\). A positive value indicates price increase, while a negative value indicates price decrease.", "field": "absolute_change"}, {"explanation": "The year-over-year price change expressed as a percentage, calculated as: \\( \\text{percentage\\_change} = \\frac{\\text{current\\_price} - \\text{yoy\\_price}}{\\text{yoy\\_price}} \\times 100 \\). This metric normalizes price changes to allow comparison across different price levels and time periods.", "field": "percentage_change"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for proper sorting and manipulation\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Sort by fuel and date\n df_agg = df_agg.sort_values(['fuel', 'date'])\n \n # Calculate year-over-year changes (52 weeks ago for weekly data)\n df_agg['yoy_price'] = df_agg.groupby('fuel')['price'].shift(52)\n df_agg['absolute_change'] = df_agg['price'] - df_agg['yoy_price']\n df_agg['percentage_change'] = ((df_agg['price'] - df_agg['yoy_price']) / df_agg['yoy_price']) * 100\n \n # Rename columns for clarity\n transformed_df = df_agg.rename(columns={'price': 'current_price'})\n \n # Convert date back to string format for visualization\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n # Keep only rows where we have year-over-year data (remove first 52 weeks)\n transformed_df = transformed_df.dropna(subset=['yoy_price'])\n \n # Select and order output columns\n transformed_df = transformed_df[['date', 'fuel', 'current_price', 'yoy_price', 'absolute_change', 'percentage_change']]\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThe code analyzes **year-over-year price trends** for different fuel types by performing the following steps:\n\n- Aggregates the data by **date** and **fuel** type, calculating the **average price** across all grades and formulations for each fuel type on each date\n- Converts **date** field to datetime format and sorts the data chronologically by **fuel** and **date**\n- Calculates **year-over-year comparisons** by comparing each week's price to the price from **52 weeks ago** (one year prior)\n- Computes both **absolute change** (dollar difference) and **percentage change** between current prices and prices from one year ago\n- Removes the first **52 weeks** of data where year-over-year comparisons are not available\n- Returns a dataset containing **current prices**, **year-ago prices**, and their **changes** for each fuel type over time\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"yoy_price\",\n \"explanation\": \"The average fuel price from exactly 52 weeks (one year) prior to the current date, used as a baseline for year-over-year comparison. This represents the historical price point from the same week in the previous year.\"\n },\n {\n \"field\": \"absolute_change\",\n \"explanation\": \"The dollar amount difference between the current week's price and the price from one year ago, calculated as: \\\\( \\\\text{absolute\\\\_change} = \\\\text{current\\\\_price} - \\\\text{yoy\\\\_price} \\\\). A positive value indicates price increase, while a negative value indicates price decrease.\"\n },\n {\n \"field\": \"percentage_change\",\n \"explanation\": \"The year-over-year price change expressed as a percentage, calculated as: \\\\( \\\\text{percentage\\\\_change} = \\\\frac{\\\\text{current\\\\_price} - \\\\text{yoy\\\\_price}}{\\\\text{yoy\\\\_price}} \\\\times 100 \\\\). This metric normalizes price changes to allow comparison across different price levels and time periods.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-937785", "displayId": "fuel-price-stats", "names": ["period", "fuel", "avg_price", "std_dev", "coefficient_of_variation"], "rows": [{"period": "Post-2000 (2000-2025)", "fuel": "diesel", "avg_price": 2.933, "std_dev": 0.982, "coefficient_of_variation": 33.48}, {"period": "Post-2000 (2000-2025)", "fuel": "gasoline", "avg_price": 2.847, "std_dev": 0.838, "coefficient_of_variation": 29.43}, {"period": "Pre-2000 (1990-1999)", "fuel": "diesel", "avg_price": 1.138, "std_dev": 0.087, "coefficient_of_variation": 7.65}, {"period": "Pre-2000 (1990-1999)", "fuel": "gasoline", "avg_price": 1.171, "std_dev": 0.106, "coefficient_of_variation": 9.09}], "metadata": {"period": {"type": "string", "semanticType": "TimeRange", "levels": ["Pre-2000 (1990-1999)", "Post-2000 (2000-2025)"]}, "fuel": {"type": "string", "semanticType": "String"}, "avg_price": {"type": "number", "semanticType": "Number"}, "std_dev": {"type": "number", "semanticType": "Number"}, "coefficient_of_variation": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for period classification\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Extract year for period classification\n df_agg['year'] = df_agg['date'].dt.year\n \n # Classify into pre-2000 and post-2000 periods\n df_agg['period'] = df_agg['year'].apply(lambda x: 'Pre-2000 (1990-1999)' if x < 2000 else 'Post-2000 (2000-2025)')\n \n # Calculate volatility metrics by period and fuel\n volatility_stats = df_agg.groupby(['period', 'fuel']).agg({\n 'price': ['mean', 'std']\n }).reset_index()\n \n # Flatten column names\n volatility_stats.columns = ['period', 'fuel', 'avg_price', 'std_dev']\n \n # Calculate coefficient of variation (CV = std_dev / mean * 100)\n volatility_stats['coefficient_of_variation'] = (volatility_stats['std_dev'] / volatility_stats['avg_price']) * 100\n \n # Round values for readability\n volatility_stats['avg_price'] = volatility_stats['avg_price'].round(3)\n volatility_stats['std_dev'] = volatility_stats['std_dev'].round(3)\n volatility_stats['coefficient_of_variation'] = volatility_stats['coefficient_of_variation'].round(2)\n \n transformed_df = volatility_stats[['period', 'fuel', 'avg_price', 'std_dev', 'coefficient_of_variation']]\n \n return transformed_df\n", "source": ["weekly_gas_prices"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date fuel avg_price\n0 1990-08-20 gasoline 1.191\n1 1990-08-27 gasoline 1.245\n2 1990-09-03 gasoline 1.242\n3 1990-09-10 gasoline 1.252\n4 1990-09-17 gasoline 1.266\n5 1990-09-24 gasoline 1.272\n6 1990-10-01 gasoline 1.321\n7 1990-10-08 gasoline 1.333\n8 1990-10-15 gasoline 1.339\n9 1990-10-22 gasoline 1.345\n......\n\nUpdate the code above based on the following instruction:\n\nCalculate year-over-year price changes to identify the most dramatic price spikes for both diesel and gasoline, showing which periods had the largest absolute and percentage increases with their peak prices."}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to identify the most dramatic price spikes by calculating year-over-year price changes for both diesel and gasoline, showing periods with the largest absolute and percentage increases along with their peak prices.\",\n \"display_instruction\": \"Identify periods with largest **year-over-year price changes** (absolute and percentage) and **peak prices**\",\n \"recommendation\": \"To analyze year-over-year price changes, we need to calculate the price difference and percentage change compared to the same period one year prior. We'll compute both absolute change and percentage change, then identify the periods with the most dramatic spikes. The output should include the date, fuel type, current price, previous year's price, absolute change, and percentage change to provide a comprehensive view of price volatility.\",\n \"output_fields\": [\"date\", \"fuel\", \"current_price\", \"yoy_price\", \"absolute_change\", \"percentage_change\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"absolute_change\",\n \"color\": \"fuel\",\n \"size\": \"percentage_change\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for proper sorting and manipulation\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Sort by fuel and date\n df_agg = df_agg.sort_values(['fuel', 'date'])\n \n # Calculate year-over-year changes (52 weeks ago for weekly data)\n df_agg['yoy_price'] = df_agg.groupby('fuel')['price'].shift(52)\n df_agg['absolute_change'] = df_agg['price'] - df_agg['yoy_price']\n df_agg['percentage_change'] = ((df_agg['price'] - df_agg['yoy_price']) / df_agg['yoy_price']) * 100\n \n # Rename columns for clarity\n transformed_df = df_agg.rename(columns={'price': 'current_price'})\n \n # Convert date back to string format for visualization\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n # Keep only rows where we have year-over-year data (remove first 52 weeks)\n transformed_df = transformed_df.dropna(subset=['yoy_price'])\n \n # Select and order output columns\n transformed_df = transformed_df[['date', 'fuel', 'current_price', 'yoy_price', 'absolute_change', 'percentage_change']]\n \n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date fuel current_price yoy_price absolute_change percentage_change\n0 1995-03-20 diesel 1.085 1.106 -0.021 -1.898734\n1 1995-03-27 diesel 1.088 1.107 -0.019 -1.716350\n2 1995-04-03 diesel 1.094 1.109 -0.015 -1.352570\n3 1995-04-10 diesel 1.101 1.108 -0.007 -0.631769\n4 1995-04-17 diesel 1.106 1.105 0.001 0.090498\n5 1995-04-24 diesel 1.115 1.106 0.009 0.813743\n6 1995-05-01 diesel 1.119 1.104 0.015 1.358696\n7 1995-05-08 diesel 1.126 1.101 0.025 2.270663\n8 1995-05-15 diesel 1.126 1.099 0.027 2.456779\n9 1995-05-22 diesel 1.124 1.099 0.025 2.274795\n......\n\nUpdate the code above based on the following instruction:\n\nCompare price volatility (standard deviation and coefficient of variation) between pre-2000 (1990-1999) and post-2000 (2000-2025) periods for both fuel types to show how price stability has changed over time."}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to compare price volatility between pre-2000 (1990-1999) and post-2000 (2000-2025) periods for both fuel types by calculating standard deviation and coefficient of variation to understand how price stability has changed over time.\",\n \"display_instruction\": \"Compare **price volatility** (standard deviation and coefficient of variation) between **pre-2000** and **post-2000** periods\",\n \"recommendation\": \"To analyze price volatility across different time periods, we need to segment the data into pre-2000 (1990-1999) and post-2000 (2000-2025) periods, then calculate volatility metrics including standard deviation and coefficient of variation for each fuel type in each period. A grouped bar chart comparing these metrics across periods and fuel types will clearly show how price stability has evolved.\",\n \"output_fields\": [\"period\", \"fuel\", \"avg_price\", \"std_dev\", \"coefficient_of_variation\"],\n \"chart_type\": \"group_bar\",\n \"chart_encodings\": {\n \"x\": \"period\",\n \"y\": \"coefficient_of_variation\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for period classification\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Extract year for period classification\n df_agg['year'] = df_agg['date'].dt.year\n \n # Classify into pre-2000 and post-2000 periods\n df_agg['period'] = df_agg['year'].apply(lambda x: 'Pre-2000 (1990-1999)' if x < 2000 else 'Post-2000 (2000-2025)')\n \n # Calculate volatility metrics by period and fuel\n volatility_stats = df_agg.groupby(['period', 'fuel']).agg({\n 'price': ['mean', 'std']\n }).reset_index()\n \n # Flatten column names\n volatility_stats.columns = ['period', 'fuel', 'avg_price', 'std_dev']\n \n # Calculate coefficient of variation (CV = std_dev / mean * 100)\n volatility_stats['coefficient_of_variation'] = (volatility_stats['std_dev'] / volatility_stats['avg_price']) * 100\n \n # Round values for readability\n volatility_stats['avg_price'] = volatility_stats['avg_price'].round(3)\n volatility_stats['std_dev'] = volatility_stats['std_dev'].round(3)\n volatility_stats['coefficient_of_variation'] = volatility_stats['coefficient_of_variation'].round(2)\n \n transformed_df = volatility_stats[['period', 'fuel', 'avg_price', 'std_dev', 'coefficient_of_variation']]\n \n return transformed_df\n```"}], "trigger": {"tableId": "table-922023", "resultTableId": "table-937785", "chart": {"id": "chart-1760744940045", "chartType": "Auto", "encodingMap": {}, "tableRef": "weekly_gas_prices", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "Compare price volatility (standard deviation and coefficient of variation) between pre-2000 (1990-1999) and post-2000 (2000-2025) periods for both fuel types to show how price stability has changed over time.", "displayContent": "Compare **price volatility** (standard deviation and coefficient of variation) between **pre-2000** and **post-2000** periods"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "This code performs a statistical analysis of **gas price volatility** across two time periods:\n\n1. **Aggregate prices** by computing the mean **price** for each **date** and **fuel** type, averaging across all **grades** and **formulations**\n2. **Convert dates** to datetime format and extract the **year** from each date\n3. **Classify data** into two time periods: **Pre-2000 (1990-1999)** and **Post-2000 (2000-2025)** based on the year\n4. **Calculate volatility metrics** for each **period** and **fuel** type combination:\n - Compute the **mean price** (average price level)\n - Compute the **standard deviation** (absolute price variability)\n - Calculate the **coefficient of variation** to measure relative volatility\n5. **Round numerical values** for improved readability (**avg_price** and **std_dev** to 3 decimals, **coefficient_of_variation** to 2 decimals)\n6. **Return summary statistics** showing volatility characteristics for **diesel** and **gasoline** in each time period", "concepts": [{"explanation": "A normalized measure of price volatility that indicates the relative variability of prices independent of their absolute level. Calculated as \\( \\frac{\\text{std\\_dev}}{\\text{avg\\_price}} \\times 100 \\), this metric allows for fair comparison of price volatility between different time periods or fuel types that may have substantially different average price levels. A higher coefficient indicates more relative price instability.", "field": "coefficient_of_variation"}, {"explanation": "This analysis employs a **comparative volatility assessment** framework to examine fuel price stability across two distinct time periods. The approach uses **temporal aggregation** (grouping by date and fuel) followed by **period-based stratification** (pre-2000 vs. post-2000) to compute **descriptive volatility statistics** (mean, standard deviation, and coefficient of variation). This methodology allows for direct comparison of both absolute and relative price fluctuations across time periods and fuel types. **Alternative approaches** could include: (1) time series decomposition to separate trend, seasonal, and irregular components; (2) GARCH models to capture time-varying volatility; (3) moving window analysis to track volatility changes over shorter intervals; or (4) regime-switching models to identify distinct volatility states.", "field": "Statistical Analysis"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n df_agg = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Convert date to datetime for period classification\n df_agg['date'] = pd.to_datetime(df_agg['date'])\n \n # Extract year for period classification\n df_agg['year'] = df_agg['date'].dt.year\n \n # Classify into pre-2000 and post-2000 periods\n df_agg['period'] = df_agg['year'].apply(lambda x: 'Pre-2000 (1990-1999)' if x < 2000 else 'Post-2000 (2000-2025)')\n \n # Calculate volatility metrics by period and fuel\n volatility_stats = df_agg.groupby(['period', 'fuel']).agg({\n 'price': ['mean', 'std']\n }).reset_index()\n \n # Flatten column names\n volatility_stats.columns = ['period', 'fuel', 'avg_price', 'std_dev']\n \n # Calculate coefficient of variation (CV = std_dev / mean * 100)\n volatility_stats['coefficient_of_variation'] = (volatility_stats['std_dev'] / volatility_stats['avg_price']) * 100\n \n # Round values for readability\n volatility_stats['avg_price'] = volatility_stats['avg_price'].round(3)\n volatility_stats['std_dev'] = volatility_stats['std_dev'].round(3)\n volatility_stats['coefficient_of_variation'] = volatility_stats['coefficient_of_variation'].round(2)\n \n transformed_df = volatility_stats[['period', 'fuel', 'avg_price', 'std_dev', 'coefficient_of_variation']]\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThis code performs a statistical analysis of **gas price volatility** across two time periods:\n\n1. **Aggregate prices** by computing the mean **price** for each **date** and **fuel** type, averaging across all **grades** and **formulations**\n2. **Convert dates** to datetime format and extract the **year** from each date\n3. **Classify data** into two time periods: **Pre-2000 (1990-1999)** and **Post-2000 (2000-2025)** based on the year\n4. **Calculate volatility metrics** for each **period** and **fuel** type combination:\n - Compute the **mean price** (average price level)\n - Compute the **standard deviation** (absolute price variability)\n - Calculate the **coefficient of variation** to measure relative volatility\n5. **Round numerical values** for improved readability (**avg_price** and **std_dev** to 3 decimals, **coefficient_of_variation** to 2 decimals)\n6. **Return summary statistics** showing volatility characteristics for **diesel** and **gasoline** in each time period\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"coefficient_of_variation\",\n \"explanation\": \"A normalized measure of price volatility that indicates the relative variability of prices independent of their absolute level. Calculated as \\\\( \\\\frac{\\\\text{std\\\\_dev}}{\\\\text{avg\\\\_price}} \\\\times 100 \\\\), this metric allows for fair comparison of price volatility between different time periods or fuel types that may have substantially different average price levels. A higher coefficient indicates more relative price instability.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis employs a **comparative volatility assessment** framework to examine fuel price stability across two distinct time periods. The approach uses **temporal aggregation** (grouping by date and fuel) followed by **period-based stratification** (pre-2000 vs. post-2000) to compute **descriptive volatility statistics** (mean, standard deviation, and coefficient of variation). This methodology allows for direct comparison of both absolute and relative price fluctuations across time periods and fuel types. **Alternative approaches** could include: (1) time series decomposition to separate trend, seasonal, and irregular components; (2) GARCH models to capture time-varying volatility; (3) moving window analysis to track volatility changes over shorter intervals; or (4) regime-switching models to identify distinct volatility states.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-34", "displayId": "fuel-price-forecast", "names": ["avg_price", "date", "fuel", "is_predicted"], "rows": [{"avg_price": 1.106, "date": "1994-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0292206988, "date": "1994-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.107, "date": "1994-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0311478914, "date": "1994-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1994-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0330750841, "date": "1994-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.108, "date": "1994-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0350022767, "date": "1994-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.105, "date": "1994-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0369294694, "date": "1994-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1994-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.038856662, "date": "1994-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1994-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0407838547, "date": "1994-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.101, "date": "1994-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0427110473, "date": "1994-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1994-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.04463824, "date": "1994-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1994-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0465654326, "date": "1994-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1994-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0484926253, "date": "1994-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.101, "date": "1994-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0504198179, "date": "1994-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1994-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0523470106, "date": "1994-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.103, "date": "1994-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0542742032, "date": "1994-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.108, "date": "1994-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0562013959, "date": "1994-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1994-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0581285885, "date": "1994-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.11, "date": "1994-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0600557812, "date": "1994-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.111, "date": "1994-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0619829738, "date": "1994-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.111, "date": "1994-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0639101665, "date": "1994-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.116, "date": "1994-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0658373591, "date": "1994-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.127, "date": "1994-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0677645518, "date": "1994-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.127, "date": "1994-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0696917444, "date": "1994-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1994-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0716189371, "date": "1994-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1994-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0735461297, "date": "1994-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1994-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0754733223, "date": "1994-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.128, "date": "1994-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.077400515, "date": "1994-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1994-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0793277076, "date": "1994-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1994-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0812549003, "date": "1994-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1994-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0831820929, "date": "1994-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1994-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0851092856, "date": "1994-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.119, "date": "1994-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0870364782, "date": "1994-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1994-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0889636709, "date": "1994-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.133, "date": "1994-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0908908635, "date": "1994-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.133, "date": "1994-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0928180562, "date": "1994-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.135, "date": "1994-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0947452488, "date": "1994-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1994-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0966724415, "date": "1994-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1994-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0985996341, "date": "1994-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1994-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1005268268, "date": "1994-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1994-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1024540194, "date": "1994-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1994-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1043812121, "date": "1994-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1994-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1063084047, "date": "1994-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1995-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1082355974, "date": "1995-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.102, "date": "1995-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.11016279, "date": "1995-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.1, "date": "1995-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1120899827, "date": "1995-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.095, "date": "1995-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1140171753, "date": "1995-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.09, "date": "1995-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.115944368, "date": "1995-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.086, "date": "1995-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1178715606, "date": "1995-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1995-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1197987532, "date": "1995-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1995-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1217259459, "date": "1995-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1995-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1236531385, "date": "1995-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1995-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1255803312, "date": "1995-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1995-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1275075238, "date": "1995-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.085, "date": "1995-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1294347165, "date": "1995-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1995-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1313619091, "date": "1995-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.094, "date": "1995-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1332891018, "date": "1995-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.101, "date": "1995-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1352162944, "date": "1995-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1995-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1371434871, "date": "1995-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.115, "date": "1995-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1390706797, "date": "1995-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.119, "date": "1995-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1409978724, "date": "1995-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1995-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.142925065, "date": "1995-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1995-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1448522577, "date": "1995-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1995-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1467794503, "date": "1995-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1995-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.148706643, "date": "1995-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1995-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1506338356, "date": "1995-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1995-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1525610283, "date": "1995-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1995-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1544882209, "date": "1995-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.112, "date": "1995-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1564154136, "date": "1995-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1995-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1583426062, "date": "1995-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.103, "date": "1995-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1602697989, "date": "1995-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1995-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1621969915, "date": "1995-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1995-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1641241841, "date": "1995-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.093, "date": "1995-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1660513768, "date": "1995-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1995-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1679785694, "date": "1995-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1995-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1699057621, "date": "1995-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1995-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1718329547, "date": "1995-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1995-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1737601474, "date": "1995-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.115, "date": "1995-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.17568734, "date": "1995-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.119, "date": "1995-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1776145327, "date": "1995-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1995-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1795417253, "date": "1995-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1995-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.181468918, "date": "1995-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1995-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1833961106, "date": "1995-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1995-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1853233033, "date": "1995-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1995-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1872504959, "date": "1995-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1995-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1891776886, "date": "1995-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.11, "date": "1995-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1911048812, "date": "1995-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1995-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1930320739, "date": "1995-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1995-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1949592665, "date": "1995-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.119, "date": "1995-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1968864592, "date": "1995-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1995-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1988136518, "date": "1995-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1995-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2007408445, "date": "1995-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1995-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2026680371, "date": "1995-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1995-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2045952298, "date": "1995-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.141, "date": "1995-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2065224224, "date": "1995-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.148, "date": "1996-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.208449615, "date": "1996-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.146, "date": "1996-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2103768077, "date": "1996-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.152, "date": "1996-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2123040003, "date": "1996-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.144, "date": "1996-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.214231193, "date": "1996-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.136, "date": "1996-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2161583856, "date": "1996-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1996-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2180855783, "date": "1996-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.134, "date": "1996-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2200127709, "date": "1996-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.151, "date": "1996-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2219399636, "date": "1996-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.164, "date": "1996-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2238671562, "date": "1996-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.175, "date": "1996-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2257943489, "date": "1996-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.173, "date": "1996-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2277215415, "date": "1996-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.172, "date": "1996-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2296487342, "date": "1996-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.21, "date": "1996-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2315759268, "date": "1996-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.222, "date": "1996-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2335031195, "date": "1996-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.249, "date": "1996-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2354303121, "date": "1996-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.305, "date": "1996-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2373575048, "date": "1996-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.304, "date": "1996-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2392846974, "date": "1996-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.285, "date": "1996-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2412118901, "date": "1996-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.292, "date": "1996-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2431390827, "date": "1996-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.285, "date": "1996-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2450662754, "date": "1996-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.274, "date": "1996-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.246993468, "date": "1996-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.254, "date": "1996-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2489206607, "date": "1996-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.24, "date": "1996-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2508478533, "date": "1996-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.215, "date": "1996-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2527750459, "date": "1996-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.193, "date": "1996-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2547022386, "date": "1996-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.179, "date": "1996-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2566294312, "date": "1996-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.172, "date": "1996-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2585566239, "date": "1996-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.173, "date": "1996-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2604838165, "date": "1996-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.178, "date": "1996-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2624110092, "date": "1996-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.184, "date": "1996-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2643382018, "date": "1996-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.178, "date": "1996-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2662653945, "date": "1996-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.184, "date": "1996-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2681925871, "date": "1996-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.191, "date": "1996-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2701197798, "date": "1996-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.206, "date": "1996-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2720469724, "date": "1996-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.222, "date": "1996-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2739741651, "date": "1996-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.231, "date": "1996-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2759013577, "date": "1996-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.25, "date": "1996-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2778285504, "date": "1996-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.276, "date": "1996-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.279755743, "date": "1996-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.277, "date": "1996-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2816829357, "date": "1996-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.289, "date": "1996-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2836101283, "date": "1996-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.308, "date": "1996-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.285537321, "date": "1996-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.326, "date": "1996-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2874645136, "date": "1996-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.329, "date": "1996-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2893917063, "date": "1996-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.329, "date": "1996-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2913188989, "date": "1996-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.323, "date": "1996-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2932460916, "date": "1996-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.316, "date": "1996-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2951732842, "date": "1996-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.324, "date": "1996-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2971004768, "date": "1996-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.327, "date": "1996-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2990276695, "date": "1996-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.323, "date": "1996-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3009548621, "date": "1996-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.32, "date": "1996-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3028820548, "date": "1996-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.307, "date": "1996-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3048092474, "date": "1996-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.3, "date": "1996-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3067364401, "date": "1996-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.295, "date": "1996-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3086636327, "date": "1996-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.291, "date": "1997-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3105908254, "date": "1997-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.296, "date": "1997-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.312518018, "date": "1997-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.293, "date": "1997-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3144452107, "date": "1997-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.283, "date": "1997-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3163724033, "date": "1997-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.288, "date": "1997-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.318299596, "date": "1997-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.285, "date": "1997-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3202267886, "date": "1997-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.278, "date": "1997-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3221539813, "date": "1997-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.269, "date": "1997-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3240811739, "date": "1997-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.252, "date": "1997-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3260083666, "date": "1997-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.23, "date": "1997-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3279355592, "date": "1997-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.22, "date": "1997-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3298627519, "date": "1997-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.22, "date": "1997-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3317899445, "date": "1997-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.225, "date": "1997-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3337171372, "date": "1997-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.217, "date": "1997-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3356443298, "date": "1997-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.216, "date": "1997-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3375715225, "date": "1997-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.211, "date": "1997-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3394987151, "date": "1997-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.205, "date": "1997-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3414259077, "date": "1997-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.205, "date": "1997-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3433531004, "date": "1997-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.191, "date": "1997-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.345280293, "date": "1997-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.191, "date": "1997-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3472074857, "date": "1997-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.196, "date": "1997-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3491346783, "date": "1997-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.19, "date": "1997-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.351061871, "date": "1997-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.187, "date": "1997-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3529890636, "date": "1997-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.172, "date": "1997-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3549162563, "date": "1997-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.162, "date": "1997-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3568434489, "date": "1997-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.153, "date": "1997-06-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3587706416, "date": "1997-06-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.159, "date": "1997-07-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3606978342, "date": "1997-07-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.152, "date": "1997-07-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3626250269, "date": "1997-07-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.147, "date": "1997-07-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3645522195, "date": "1997-07-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.145, "date": "1997-07-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3664794122, "date": "1997-07-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.155, "date": "1997-08-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3684066048, "date": "1997-08-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.168, "date": "1997-08-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3703337975, "date": "1997-08-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.167, "date": "1997-08-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3722609901, "date": "1997-08-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.169, "date": "1997-08-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3741881828, "date": "1997-08-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.165, "date": "1997-09-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3761153754, "date": "1997-09-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.163, "date": "1997-09-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3780425681, "date": "1997-09-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.156, "date": "1997-09-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3799697607, "date": "1997-09-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.154, "date": "1997-09-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3818969534, "date": "1997-09-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.16, "date": "1997-09-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.383824146, "date": "1997-09-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.175, "date": "1997-10-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3857513386, "date": "1997-10-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.185, "date": "1997-10-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3876785313, "date": "1997-10-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.185, "date": "1997-10-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3896057239, "date": "1997-10-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.185, "date": "1997-10-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3915329166, "date": "1997-10-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.188, "date": "1997-11-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3934601092, "date": "1997-11-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.19, "date": "1997-11-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3953873019, "date": "1997-11-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.195, "date": "1997-11-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3973144945, "date": "1997-11-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.193, "date": "1997-11-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3992416872, "date": "1997-11-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.189, "date": "1997-12-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4011688798, "date": "1997-12-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.174, "date": "1997-12-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4030960725, "date": "1997-12-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.162, "date": "1997-12-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4050232651, "date": "1997-12-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.155, "date": "1997-12-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4069504578, "date": "1997-12-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.15, "date": "1997-12-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4088776504, "date": "1997-12-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.147, "date": "1998-01-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4108048431, "date": "1998-01-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1998-01-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4127320357, "date": "1998-01-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1998-01-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4146592284, "date": "1998-01-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.096, "date": "1998-01-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.416586421, "date": "1998-01-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1998-02-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4185136137, "date": "1998-02-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.085, "date": "1998-02-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4204408063, "date": "1998-02-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.082, "date": "1998-02-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.422367999, "date": "1998-02-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.079, "date": "1998-02-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4242951916, "date": "1998-02-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.074, "date": "1998-03-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4262223843, "date": "1998-03-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.066, "date": "1998-03-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4281495769, "date": "1998-03-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.057, "date": "1998-03-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4300767695, "date": "1998-03-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.049, "date": "1998-03-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4320039622, "date": "1998-03-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.068, "date": "1998-03-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4339311548, "date": "1998-03-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.067, "date": "1998-04-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4358583475, "date": "1998-04-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1998-04-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4377855401, "date": "1998-04-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1998-04-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4397127328, "date": "1998-04-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.07, "date": "1998-04-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4416399254, "date": "1998-04-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.072, "date": "1998-05-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4435671181, "date": "1998-05-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1998-05-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4454943107, "date": "1998-05-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.069, "date": "1998-05-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4474215034, "date": "1998-05-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.06, "date": "1998-05-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.449348696, "date": "1998-05-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.053, "date": "1998-06-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4512758887, "date": "1998-06-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.045, "date": "1998-06-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4532030813, "date": "1998-06-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.04, "date": "1998-06-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.455130274, "date": "1998-06-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.033, "date": "1998-06-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4570574666, "date": "1998-06-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.034, "date": "1998-06-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4589846593, "date": "1998-06-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.036, "date": "1998-07-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4609118519, "date": "1998-07-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.031, "date": "1998-07-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4628390446, "date": "1998-07-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.027, "date": "1998-07-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4647662372, "date": "1998-07-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.02, "date": "1998-07-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4666934299, "date": "1998-07-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.016, "date": "1998-08-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4686206225, "date": "1998-08-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.01, "date": "1998-08-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4705478152, "date": "1998-08-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.007, "date": "1998-08-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4724750078, "date": "1998-08-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.004, "date": "1998-08-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4744022004, "date": "1998-08-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1, "date": "1998-08-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4763293931, "date": "1998-08-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.009, "date": "1998-09-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4782565857, "date": "1998-09-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.019, "date": "1998-09-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4801837784, "date": "1998-09-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.03, "date": "1998-09-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.482110971, "date": "1998-09-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.039, "date": "1998-09-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4840381637, "date": "1998-09-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.041, "date": "1998-10-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4859653563, "date": "1998-10-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.041, "date": "1998-10-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.487892549, "date": "1998-10-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.036, "date": "1998-10-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4898197416, "date": "1998-10-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.036, "date": "1998-10-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4917469343, "date": "1998-10-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.035, "date": "1998-11-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4936741269, "date": "1998-11-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.034, "date": "1998-11-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4956013196, "date": "1998-11-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.026, "date": "1998-11-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4975285122, "date": "1998-11-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.012, "date": "1998-11-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4994557049, "date": "1998-11-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.004, "date": "1998-11-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5013828975, "date": "1998-11-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.986, "date": "1998-12-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5033100902, "date": "1998-12-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.972, "date": "1998-12-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5052372828, "date": "1998-12-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.968, "date": "1998-12-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5071644755, "date": "1998-12-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.966, "date": "1998-12-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5090916681, "date": "1998-12-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.965, "date": "1999-01-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5110188608, "date": "1999-01-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.967, "date": "1999-01-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5129460534, "date": "1999-01-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.97, "date": "1999-01-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5148732461, "date": "1999-01-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.964, "date": "1999-01-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5168004387, "date": "1999-01-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.962, "date": "1999-02-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5187276314, "date": "1999-02-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.962, "date": "1999-02-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.520654824, "date": "1999-02-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.959, "date": "1999-02-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5225820166, "date": "1999-02-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.953, "date": "1999-02-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5245092093, "date": "1999-02-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.956, "date": "1999-03-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5264364019, "date": "1999-03-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.964, "date": "1999-03-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5283635946, "date": "1999-03-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1, "date": "1999-03-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5302907872, "date": "1999-03-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.018, "date": "1999-03-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5322179799, "date": "1999-03-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.046, "date": "1999-03-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5341451725, "date": "1999-03-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1999-04-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5360723652, "date": "1999-04-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.084, "date": "1999-04-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5379995578, "date": "1999-04-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.08, "date": "1999-04-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5399267505, "date": "1999-04-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.078, "date": "1999-04-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5418539431, "date": "1999-04-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.078, "date": "1999-05-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5437811358, "date": "1999-05-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.083, "date": "1999-05-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5457083284, "date": "1999-05-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1999-05-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5476355211, "date": "1999-05-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.066, "date": "1999-05-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5495627137, "date": "1999-05-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1999-05-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5514899064, "date": "1999-05-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.059, "date": "1999-06-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.553417099, "date": "1999-06-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.068, "date": "1999-06-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5553442917, "date": "1999-06-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.082, "date": "1999-06-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5572714843, "date": "1999-06-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.087, "date": "1999-06-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.559198677, "date": "1999-06-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.102, "date": "1999-07-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5611258696, "date": "1999-07-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1999-07-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5630530623, "date": "1999-07-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.133, "date": "1999-07-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5649802549, "date": "1999-07-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.137, "date": "1999-07-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5669074475, "date": "1999-07-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.146, "date": "1999-08-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5688346402, "date": "1999-08-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.156, "date": "1999-08-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5707618328, "date": "1999-08-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.178, "date": "1999-08-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5726890255, "date": "1999-08-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.186, "date": "1999-08-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5746162181, "date": "1999-08-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.194, "date": "1999-08-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5765434108, "date": "1999-08-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.198, "date": "1999-09-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5784706034, "date": "1999-09-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.209, "date": "1999-09-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5803977961, "date": "1999-09-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.226, "date": "1999-09-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5823249887, "date": "1999-09-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.226, "date": "1999-09-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5842521814, "date": "1999-09-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.234, "date": "1999-10-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.586179374, "date": "1999-10-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.228, "date": "1999-10-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5881065667, "date": "1999-10-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.224, "date": "1999-10-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5900337593, "date": "1999-10-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.226, "date": "1999-10-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.591960952, "date": "1999-10-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.229, "date": "1999-11-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5938881446, "date": "1999-11-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.234, "date": "1999-11-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5958153373, "date": "1999-11-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.261, "date": "1999-11-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5977425299, "date": "1999-11-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.289, "date": "1999-11-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5996697226, "date": "1999-11-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.304, "date": "1999-11-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6015969152, "date": "1999-11-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.294, "date": "1999-12-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6035241079, "date": "1999-12-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.288, "date": "1999-12-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6054513005, "date": "1999-12-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.287, "date": "1999-12-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6073784932, "date": "1999-12-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.298, "date": "1999-12-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6093056858, "date": "1999-12-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.309, "date": "2000-01-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6112328784, "date": "2000-01-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.307, "date": "2000-01-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6131600711, "date": "2000-01-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.307, "date": "2000-01-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6150872637, "date": "2000-01-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.418, "date": "2000-01-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6170144564, "date": "2000-01-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.439, "date": "2000-01-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.618941649, "date": "2000-01-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.47, "date": "2000-02-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6208688417, "date": "2000-02-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.456, "date": "2000-02-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6227960343, "date": "2000-02-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.456, "date": "2000-02-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.624723227, "date": "2000-02-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.461, "date": "2000-02-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6266504196, "date": "2000-02-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.49, "date": "2000-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6285776123, "date": "2000-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.496, "date": "2000-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6305048049, "date": "2000-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.479, "date": "2000-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6324319976, "date": "2000-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.451, "date": "2000-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6343591902, "date": "2000-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.442, "date": "2000-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6362863829, "date": "2000-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.419, "date": "2000-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6382135755, "date": "2000-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.398, "date": "2000-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6401407682, "date": "2000-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.428, "date": "2000-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6420679608, "date": "2000-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.418, "date": "2000-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6439951535, "date": "2000-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.402, "date": "2000-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6459223461, "date": "2000-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.415, "date": "2000-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6478495388, "date": "2000-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.432, "date": "2000-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6497767314, "date": "2000-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.431, "date": "2000-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6517039241, "date": "2000-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.419, "date": "2000-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6536311167, "date": "2000-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.411, "date": "2000-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6555583093, "date": "2000-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.423, "date": "2000-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.657485502, "date": "2000-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.432, "date": "2000-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6594126946, "date": "2000-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.453, "date": "2000-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6613398873, "date": "2000-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.449, "date": "2000-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6632670799, "date": "2000-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.435, "date": "2000-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6651942726, "date": "2000-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.424, "date": "2000-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6671214652, "date": "2000-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.408, "date": "2000-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6690486579, "date": "2000-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.41, "date": "2000-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6709758505, "date": "2000-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.447, "date": "2000-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6729030432, "date": "2000-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.471, "date": "2000-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6748302358, "date": "2000-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.536, "date": "2000-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6767574285, "date": "2000-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.609, "date": "2000-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6786846211, "date": "2000-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.629, "date": "2000-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6806118138, "date": "2000-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.653, "date": "2000-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6825390064, "date": "2000-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.657, "date": "2000-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6844661991, "date": "2000-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.625, "date": "2000-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6863933917, "date": "2000-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.614, "date": "2000-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6883205844, "date": "2000-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.67, "date": "2000-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.690247777, "date": "2000-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.648, "date": "2000-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6921749697, "date": "2000-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.629, "date": "2000-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6941021623, "date": "2000-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.61, "date": "2000-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.696029355, "date": "2000-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.603, "date": "2000-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6979565476, "date": "2000-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.627, "date": "2000-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6998837402, "date": "2000-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.645, "date": "2000-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7018109329, "date": "2000-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.622, "date": "2000-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7037381255, "date": "2000-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.577, "date": "2000-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7056653182, "date": "2000-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.545, "date": "2000-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7075925108, "date": "2000-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.515, "date": "2000-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7095197035, "date": "2000-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.522, "date": "2001-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7114468961, "date": "2001-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.52, "date": "2001-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7133740888, "date": "2001-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.509, "date": "2001-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7153012814, "date": "2001-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.528, "date": "2001-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7172284741, "date": "2001-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.539, "date": "2001-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7191556667, "date": "2001-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.52, "date": "2001-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7210828594, "date": "2001-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.518, "date": "2001-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.723010052, "date": "2001-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.48, "date": "2001-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7249372447, "date": "2001-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.451, "date": "2001-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7268644373, "date": "2001-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.42, "date": "2001-03-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.72879163, "date": "2001-03-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.406, "date": "2001-03-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7307188226, "date": "2001-03-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.392, "date": "2001-03-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7326460153, "date": "2001-03-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.379, "date": "2001-03-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7345732079, "date": "2001-03-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.391, "date": "2001-04-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7365004006, "date": "2001-04-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.397, "date": "2001-04-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7384275932, "date": "2001-04-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.437, "date": "2001-04-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7403547859, "date": "2001-04-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.443, "date": "2001-04-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7422819785, "date": "2001-04-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.442, "date": "2001-04-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7442091711, "date": "2001-04-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.47, "date": "2001-05-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7461363638, "date": "2001-05-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.491, "date": "2001-05-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7480635564, "date": "2001-05-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.494, "date": "2001-05-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7499907491, "date": "2001-05-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.529, "date": "2001-05-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7519179417, "date": "2001-05-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.514, "date": "2001-06-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7538451344, "date": "2001-06-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.486, "date": "2001-06-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.755772327, "date": "2001-06-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.48, "date": "2001-06-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7576995197, "date": "2001-06-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.447, "date": "2001-06-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7596267123, "date": "2001-06-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.407, "date": "2001-07-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.761553905, "date": "2001-07-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.392, "date": "2001-07-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7634810976, "date": "2001-07-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.38, "date": "2001-07-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7654082903, "date": "2001-07-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.348, "date": "2001-07-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7673354829, "date": "2001-07-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.347, "date": "2001-07-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7692626756, "date": "2001-07-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.345, "date": "2001-08-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7711898682, "date": "2001-08-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.367, "date": "2001-08-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7731170609, "date": "2001-08-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.394, "date": "2001-08-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7750442535, "date": "2001-08-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.452, "date": "2001-08-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7769714462, "date": "2001-08-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.488, "date": "2001-09-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7788986388, "date": "2001-09-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.492, "date": "2001-09-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7808258315, "date": "2001-09-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.527, "date": "2001-09-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7827530241, "date": "2001-09-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.473, "date": "2001-09-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7846802168, "date": "2001-09-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.39, "date": "2001-10-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7866074094, "date": "2001-10-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.371, "date": "2001-10-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.788534602, "date": "2001-10-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.353, "date": "2001-10-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7904617947, "date": "2001-10-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.318, "date": "2001-10-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7923889873, "date": "2001-10-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.31, "date": "2001-10-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.79431618, "date": "2001-10-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.291, "date": "2001-11-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7962433726, "date": "2001-11-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.269, "date": "2001-11-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7981705653, "date": "2001-11-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.252, "date": "2001-11-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8000977579, "date": "2001-11-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.223, "date": "2001-11-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8020249506, "date": "2001-11-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.194, "date": "2001-12-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8039521432, "date": "2001-12-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.173, "date": "2001-12-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8058793359, "date": "2001-12-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.143, "date": "2001-12-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8078065285, "date": "2001-12-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.154, "date": "2001-12-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8097337212, "date": "2001-12-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.169, "date": "2001-12-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8116609138, "date": "2001-12-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.168, "date": "2002-01-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8135881065, "date": "2002-01-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.159, "date": "2002-01-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8155152991, "date": "2002-01-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.14, "date": "2002-01-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8174424918, "date": "2002-01-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.144, "date": "2002-01-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8193696844, "date": "2002-01-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.144, "date": "2002-02-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8212968771, "date": "2002-02-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.153, "date": "2002-02-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8232240697, "date": "2002-02-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.156, "date": "2002-02-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8251512624, "date": "2002-02-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.154, "date": "2002-02-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.827078455, "date": "2002-02-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.173, "date": "2002-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8290056477, "date": "2002-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.216, "date": "2002-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8309328403, "date": "2002-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.251, "date": "2002-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8328600329, "date": "2002-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.281, "date": "2002-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8347872256, "date": "2002-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.295, "date": "2002-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8367144182, "date": "2002-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.323, "date": "2002-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8386416109, "date": "2002-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.32, "date": "2002-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8405688035, "date": "2002-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.304, "date": "2002-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8424959962, "date": "2002-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.302, "date": "2002-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8444231888, "date": "2002-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.305, "date": "2002-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8463503815, "date": "2002-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.299, "date": "2002-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8482775741, "date": "2002-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.309, "date": "2002-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8502047668, "date": "2002-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.308, "date": "2002-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8521319594, "date": "2002-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.3, "date": "2002-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8540591521, "date": "2002-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.286, "date": "2002-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8559863447, "date": "2002-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.275, "date": "2002-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8579135374, "date": "2002-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.281, "date": "2002-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.85984073, "date": "2002-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.289, "date": "2002-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8617679227, "date": "2002-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.294, "date": "2002-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8636951153, "date": "2002-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.3, "date": "2002-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.865622308, "date": "2002-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.311, "date": "2002-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8675495006, "date": "2002-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.303, "date": "2002-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8694766933, "date": "2002-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.304, "date": "2002-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8714038859, "date": "2002-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.303, "date": "2002-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8733310786, "date": "2002-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.333, "date": "2002-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8752582712, "date": "2002-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.37, "date": "2002-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8771854638, "date": "2002-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.388, "date": "2002-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8791126565, "date": "2002-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.396, "date": "2002-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8810398491, "date": "2002-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.414, "date": "2002-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8829670418, "date": "2002-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.417, "date": "2002-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8848942344, "date": "2002-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.438, "date": "2002-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8868214271, "date": "2002-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.46, "date": "2002-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8887486197, "date": "2002-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.461, "date": "2002-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8906758124, "date": "2002-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.469, "date": "2002-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.892603005, "date": "2002-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.456, "date": "2002-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8945301977, "date": "2002-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.442, "date": "2002-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8964573903, "date": "2002-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.427, "date": "2002-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.898384583, "date": "2002-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.405, "date": "2002-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9003117756, "date": "2002-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.405, "date": "2002-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9022389683, "date": "2002-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.407, "date": "2002-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9041661609, "date": "2002-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.405, "date": "2002-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9060933536, "date": "2002-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.401, "date": "2002-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9080205462, "date": "2002-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.44, "date": "2002-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9099477389, "date": "2002-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.491, "date": "2002-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9118749315, "date": "2002-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.501, "date": "2003-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9138021242, "date": "2003-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.478, "date": "2003-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9157293168, "date": "2003-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.48, "date": "2003-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9176565095, "date": "2003-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.492, "date": "2003-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9195837021, "date": "2003-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.542, "date": "2003-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9215108947, "date": "2003-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.662, "date": "2003-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9234380874, "date": "2003-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.704, "date": "2003-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.92536528, "date": "2003-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.709, "date": "2003-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9272924727, "date": "2003-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.753, "date": "2003-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9292196653, "date": "2003-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.771, "date": "2003-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.931146858, "date": "2003-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.752, "date": "2003-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9330740506, "date": "2003-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.662, "date": "2003-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9350012433, "date": "2003-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.602, "date": "2003-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9369284359, "date": "2003-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.554, "date": "2003-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9388556286, "date": "2003-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.539, "date": "2003-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9407828212, "date": "2003-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.529, "date": "2003-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9427100139, "date": "2003-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.508, "date": "2003-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9446372065, "date": "2003-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.484, "date": "2003-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9465643992, "date": "2003-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.444, "date": "2003-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9484915918, "date": "2003-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.443, "date": "2003-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9504187845, "date": "2003-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.434, "date": "2003-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9523459771, "date": "2003-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.423, "date": "2003-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9542731698, "date": "2003-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.422, "date": "2003-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9562003624, "date": "2003-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.432, "date": "2003-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9581275551, "date": "2003-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.423, "date": "2003-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9600547477, "date": "2003-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.42, "date": "2003-06-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9619819404, "date": "2003-06-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.428, "date": "2003-07-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.963909133, "date": "2003-07-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.435, "date": "2003-07-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9658363256, "date": "2003-07-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.439, "date": "2003-07-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9677635183, "date": "2003-07-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.438, "date": "2003-07-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9696907109, "date": "2003-07-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.453, "date": "2003-08-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9716179036, "date": "2003-08-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.492, "date": "2003-08-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9735450962, "date": "2003-08-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.498, "date": "2003-08-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9754722889, "date": "2003-08-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.503, "date": "2003-08-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9773994815, "date": "2003-08-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.501, "date": "2003-09-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9793266742, "date": "2003-09-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.488, "date": "2003-09-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9812538668, "date": "2003-09-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.471, "date": "2003-09-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9831810595, "date": "2003-09-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.444, "date": "2003-09-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9851082521, "date": "2003-09-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.429, "date": "2003-09-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9870354448, "date": "2003-09-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.445, "date": "2003-10-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9889626374, "date": "2003-10-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.483, "date": "2003-10-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9908898301, "date": "2003-10-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.502, "date": "2003-10-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9928170227, "date": "2003-10-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.495, "date": "2003-10-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9947442154, "date": "2003-10-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.481, "date": "2003-11-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.996671408, "date": "2003-11-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.476, "date": "2003-11-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9985986007, "date": "2003-11-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.481, "date": "2003-11-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0005257933, "date": "2003-11-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.491, "date": "2003-11-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.002452986, "date": "2003-11-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.476, "date": "2003-12-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0043801786, "date": "2003-12-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.481, "date": "2003-12-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0063073713, "date": "2003-12-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.486, "date": "2003-12-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0082345639, "date": "2003-12-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.504, "date": "2003-12-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0101617565, "date": "2003-12-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.502, "date": "2003-12-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0120889492, "date": "2003-12-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.503, "date": "2004-01-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0140161418, "date": "2004-01-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.551, "date": "2004-01-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0159433345, "date": "2004-01-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.559, "date": "2004-01-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0178705271, "date": "2004-01-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.591, "date": "2004-01-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0197977198, "date": "2004-01-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.581, "date": "2004-02-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0217249124, "date": "2004-02-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.568, "date": "2004-02-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0236521051, "date": "2004-02-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.584, "date": "2004-02-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0255792977, "date": "2004-02-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.595, "date": "2004-02-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0275064904, "date": "2004-02-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.619, "date": "2004-03-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.029433683, "date": "2004-03-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.628, "date": "2004-03-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0313608757, "date": "2004-03-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.617, "date": "2004-03-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0332880683, "date": "2004-03-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.641, "date": "2004-03-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.035215261, "date": "2004-03-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.642, "date": "2004-03-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0371424536, "date": "2004-03-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.648, "date": "2004-04-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0390696463, "date": "2004-04-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.679, "date": "2004-04-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0409968389, "date": "2004-04-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.724, "date": "2004-04-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0429240316, "date": "2004-04-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.718, "date": "2004-04-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0448512242, "date": "2004-04-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.717, "date": "2004-05-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0467784169, "date": "2004-05-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.745, "date": "2004-05-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0487056095, "date": "2004-05-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.763, "date": "2004-05-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0506328022, "date": "2004-05-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.761, "date": "2004-05-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0525599948, "date": "2004-05-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.746, "date": "2004-05-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0544871874, "date": "2004-05-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.734, "date": "2004-06-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0564143801, "date": "2004-06-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.711, "date": "2004-06-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0583415727, "date": "2004-06-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.7, "date": "2004-06-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0602687654, "date": "2004-06-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.7, "date": "2004-06-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.062195958, "date": "2004-06-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.716, "date": "2004-07-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0641231507, "date": "2004-07-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.74, "date": "2004-07-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0660503433, "date": "2004-07-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.744, "date": "2004-07-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.067977536, "date": "2004-07-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.754, "date": "2004-07-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0699047286, "date": "2004-07-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.78, "date": "2004-08-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0718319213, "date": "2004-08-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.814, "date": "2004-08-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0737591139, "date": "2004-08-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.825, "date": "2004-08-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0756863066, "date": "2004-08-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.874, "date": "2004-08-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0776134992, "date": "2004-08-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.871, "date": "2004-08-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0795406919, "date": "2004-08-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.869, "date": "2004-09-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0814678845, "date": "2004-09-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.874, "date": "2004-09-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0833950772, "date": "2004-09-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.912, "date": "2004-09-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0853222698, "date": "2004-09-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.012, "date": "2004-09-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0872494625, "date": "2004-09-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.053, "date": "2004-10-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0891766551, "date": "2004-10-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.092, "date": "2004-10-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0911038478, "date": "2004-10-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.18, "date": "2004-10-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0930310404, "date": "2004-10-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.212, "date": "2004-10-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0949582331, "date": "2004-10-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.206, "date": "2004-11-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0968854257, "date": "2004-11-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.163, "date": "2004-11-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0988126183, "date": "2004-11-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.132, "date": "2004-11-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.100739811, "date": "2004-11-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.116, "date": "2004-11-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1026670036, "date": "2004-11-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.116, "date": "2004-11-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1045941963, "date": "2004-11-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.069, "date": "2004-12-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1065213889, "date": "2004-12-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.997, "date": "2004-12-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1084485816, "date": "2004-12-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.984, "date": "2004-12-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1103757742, "date": "2004-12-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.987, "date": "2004-12-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1123029669, "date": "2004-12-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.957, "date": "2005-01-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1142301595, "date": "2005-01-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.934, "date": "2005-01-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1161573522, "date": "2005-01-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.952, "date": "2005-01-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1180845448, "date": "2005-01-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.959, "date": "2005-01-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1200117375, "date": "2005-01-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.992, "date": "2005-01-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1219389301, "date": "2005-01-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.983, "date": "2005-02-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1238661228, "date": "2005-02-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.986, "date": "2005-02-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1257933154, "date": "2005-02-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.02, "date": "2005-02-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1277205081, "date": "2005-02-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.118, "date": "2005-02-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1296477007, "date": "2005-02-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.168, "date": "2005-03-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1315748934, "date": "2005-03-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.194, "date": "2005-03-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.133502086, "date": "2005-03-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.244, "date": "2005-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1354292787, "date": "2005-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.249, "date": "2005-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1373564713, "date": "2005-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.303, "date": "2005-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.139283664, "date": "2005-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.316, "date": "2005-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1412108566, "date": "2005-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.259, "date": "2005-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1431380492, "date": "2005-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.289, "date": "2005-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1450652419, "date": "2005-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.262, "date": "2005-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1469924345, "date": "2005-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.227, "date": "2005-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1489196272, "date": "2005-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.189, "date": "2005-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1508468198, "date": "2005-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.156, "date": "2005-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1527740125, "date": "2005-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.16, "date": "2005-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1547012051, "date": "2005-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.234, "date": "2005-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1566283978, "date": "2005-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.276, "date": "2005-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1585555904, "date": "2005-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.313, "date": "2005-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1604827831, "date": "2005-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.336, "date": "2005-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1624099757, "date": "2005-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.348, "date": "2005-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1643371684, "date": "2005-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.408, "date": "2005-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.166264361, "date": "2005-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.392, "date": "2005-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1681915537, "date": "2005-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.342, "date": "2005-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1701187463, "date": "2005-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.348, "date": "2005-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.172045939, "date": "2005-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.407, "date": "2005-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1739731316, "date": "2005-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.567, "date": "2005-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1759003243, "date": "2005-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.588, "date": "2005-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1778275169, "date": "2005-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.59, "date": "2005-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1797547096, "date": "2005-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.898, "date": "2005-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1816819022, "date": "2005-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.847, "date": "2005-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1836090949, "date": "2005-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.732, "date": "2005-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1855362875, "date": "2005-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.798, "date": "2005-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1874634801, "date": "2005-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.144, "date": "2005-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1893906728, "date": "2005-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.15, "date": "2005-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1913178654, "date": "2005-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.148, "date": "2005-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1932450581, "date": "2005-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.157, "date": "2005-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1951722507, "date": "2005-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.876, "date": "2005-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1970994434, "date": "2005-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.698, "date": "2005-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.199026636, "date": "2005-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.602, "date": "2005-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2009538287, "date": "2005-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.513, "date": "2005-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2028810213, "date": "2005-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.479, "date": "2005-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.204808214, "date": "2005-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.425, "date": "2005-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2067354066, "date": "2005-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.436, "date": "2005-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2086625993, "date": "2005-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.462, "date": "2005-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2105897919, "date": "2005-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.448, "date": "2005-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2125169846, "date": "2005-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.442, "date": "2006-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2144441772, "date": "2006-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.485, "date": "2006-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2163713699, "date": "2006-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.449, "date": "2006-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2182985625, "date": "2006-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.472, "date": "2006-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2202257552, "date": "2006-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.489, "date": "2006-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2221529478, "date": "2006-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.499, "date": "2006-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2240801405, "date": "2006-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.476, "date": "2006-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2260073331, "date": "2006-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.455, "date": "2006-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2279345258, "date": "2006-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.471, "date": "2006-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2298617184, "date": "2006-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.545, "date": "2006-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.231788911, "date": "2006-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.543, "date": "2006-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2337161037, "date": "2006-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.581, "date": "2006-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2356432963, "date": "2006-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.565, "date": "2006-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.237570489, "date": "2006-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.617, "date": "2006-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2394976816, "date": "2006-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.654, "date": "2006-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2414248743, "date": "2006-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.765, "date": "2006-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2433520669, "date": "2006-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.876, "date": "2006-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2452792596, "date": "2006-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.896, "date": "2006-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2472064522, "date": "2006-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.897, "date": "2006-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2491336449, "date": "2006-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.92, "date": "2006-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2510608375, "date": "2006-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.888, "date": "2006-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2529880302, "date": "2006-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.882, "date": "2006-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2549152228, "date": "2006-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.89, "date": "2006-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2568424155, "date": "2006-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.918, "date": "2006-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2587696081, "date": "2006-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.915, "date": "2006-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2606968008, "date": "2006-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.867, "date": "2006-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2626239934, "date": "2006-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.898, "date": "2006-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2645511861, "date": "2006-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.918, "date": "2006-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2664783787, "date": "2006-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.926, "date": "2006-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2684055714, "date": "2006-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.946, "date": "2006-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.270332764, "date": "2006-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.98, "date": "2006-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2722599567, "date": "2006-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.055, "date": "2006-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2741871493, "date": "2006-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.065, "date": "2006-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2761143419, "date": "2006-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.033, "date": "2006-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2780415346, "date": "2006-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.027, "date": "2006-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2799687272, "date": "2006-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.967, "date": "2006-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2818959199, "date": "2006-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.857, "date": "2006-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2838231125, "date": "2006-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.713, "date": "2006-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2857503052, "date": "2006-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.595, "date": "2006-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2876774978, "date": "2006-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.546, "date": "2006-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2896046905, "date": "2006-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.506, "date": "2006-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2915318831, "date": "2006-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.503, "date": "2006-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2934590758, "date": "2006-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.524, "date": "2006-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2953862684, "date": "2006-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.517, "date": "2006-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2973134611, "date": "2006-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.506, "date": "2006-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2992406537, "date": "2006-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.552, "date": "2006-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3011678464, "date": "2006-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.553, "date": "2006-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.303095039, "date": "2006-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.567, "date": "2006-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3050222317, "date": "2006-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.618, "date": "2006-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3069494243, "date": "2006-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.621, "date": "2006-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.308876617, "date": "2006-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.606, "date": "2006-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3108038096, "date": "2006-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.596, "date": "2006-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3127310023, "date": "2006-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.58, "date": "2007-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3146581949, "date": "2007-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.537, "date": "2007-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3165853876, "date": "2007-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.463, "date": "2007-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3185125802, "date": "2007-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.43, "date": "2007-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3204397728, "date": "2007-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.413, "date": "2007-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3223669655, "date": "2007-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.4256666667, "date": "2007-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3242941581, "date": "2007-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.466, "date": "2007-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3262213508, "date": "2007-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.481, "date": "2007-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3281485434, "date": "2007-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.5423333333, "date": "2007-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3300757361, "date": "2007-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6166666667, "date": "2007-03-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3320029287, "date": "2007-03-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.679, "date": "2007-03-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3339301214, "date": "2007-03-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.673, "date": "2007-03-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.335857314, "date": "2007-03-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6666666667, "date": "2007-03-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3377845067, "date": "2007-03-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7813333333, "date": "2007-04-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3397116993, "date": "2007-04-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8306666667, "date": "2007-04-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.341638892, "date": "2007-04-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8696666667, "date": "2007-04-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3435660846, "date": "2007-04-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8416666667, "date": "2007-04-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3454932773, "date": "2007-04-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.796, "date": "2007-04-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3474204699, "date": "2007-04-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7746666667, "date": "2007-05-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3493476626, "date": "2007-05-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.755, "date": "2007-05-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3512748552, "date": "2007-05-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7883333333, "date": "2007-05-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3532020479, "date": "2007-05-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8016666667, "date": "2007-05-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3551292405, "date": "2007-05-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7833333333, "date": "2007-06-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3570564332, "date": "2007-06-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.774, "date": "2007-06-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3589836258, "date": "2007-06-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7916666667, "date": "2007-06-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3609108185, "date": "2007-06-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8226666667, "date": "2007-06-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3628380111, "date": "2007-06-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8166666667, "date": "2007-07-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3647652037, "date": "2007-07-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.839, "date": "2007-07-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3666923964, "date": "2007-07-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.875, "date": "2007-07-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.368619589, "date": "2007-07-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8736666667, "date": "2007-07-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3705467817, "date": "2007-07-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.872, "date": "2007-07-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3724739743, "date": "2007-07-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8846666667, "date": "2007-08-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.374401167, "date": "2007-08-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8326666667, "date": "2007-08-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3763283596, "date": "2007-08-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8573333333, "date": "2007-08-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3782555523, "date": "2007-08-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8523333333, "date": "2007-08-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3801827449, "date": "2007-08-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8843333333, "date": "2007-09-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3821099376, "date": "2007-09-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9156666667, "date": "2007-09-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3840371302, "date": "2007-09-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9563333333, "date": "2007-09-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3859643229, "date": "2007-09-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.026, "date": "2007-09-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3878915155, "date": "2007-09-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.04, "date": "2007-10-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3898187082, "date": "2007-10-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.022, "date": "2007-10-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3917459008, "date": "2007-10-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.0226666667, "date": "2007-10-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3936730935, "date": "2007-10-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.0756666667, "date": "2007-10-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3956002861, "date": "2007-10-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.141, "date": "2007-10-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3975274788, "date": "2007-10-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2913333333, "date": "2007-11-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3994546714, "date": "2007-11-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.4103333333, "date": "2007-11-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4013818641, "date": "2007-11-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3896666667, "date": "2007-11-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4033090567, "date": "2007-11-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.4273333333, "date": "2007-11-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4052362494, "date": "2007-11-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.393, "date": "2007-12-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.407163442, "date": "2007-12-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2963333333, "date": "2007-12-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4090906346, "date": "2007-12-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2816666667, "date": "2007-12-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4110178273, "date": "2007-12-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2846666667, "date": "2007-12-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4129450199, "date": "2007-12-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3243333333, "date": "2007-12-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4148722126, "date": "2007-12-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3546666667, "date": "2008-01-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4167994052, "date": "2008-01-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2986666667, "date": "2008-01-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4187265979, "date": "2008-01-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2416666667, "date": "2008-01-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4206537905, "date": "2008-01-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.234, "date": "2008-01-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4225809832, "date": "2008-01-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2593333333, "date": "2008-02-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4245081758, "date": "2008-02-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.258, "date": "2008-02-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4264353685, "date": "2008-02-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3786666667, "date": "2008-02-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4283625611, "date": "2008-02-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.5403333333, "date": "2008-02-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4302897538, "date": "2008-02-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.6403333333, "date": "2008-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4322169464, "date": "2008-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.806, "date": "2008-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4341441391, "date": "2008-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.96, "date": "2008-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4360713317, "date": "2008-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.973, "date": "2008-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4379985244, "date": "2008-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.9416666667, "date": "2008-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.439925717, "date": "2008-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.932, "date": "2008-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4418529097, "date": "2008-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.0383333333, "date": "2008-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4437801023, "date": "2008-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.1216666667, "date": "2008-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.445707295, "date": "2008-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.154, "date": "2008-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4476344876, "date": "2008-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.12, "date": "2008-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4495616803, "date": "2008-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.3113333333, "date": "2008-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4514888729, "date": "2008-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.4823333333, "date": "2008-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4534160655, "date": "2008-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.7043333333, "date": "2008-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4553432582, "date": "2008-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.6863333333, "date": "2008-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4572704508, "date": "2008-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.668, "date": "2008-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4591976435, "date": "2008-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.6666666667, "date": "2008-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4611248361, "date": "2008-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.6196666667, "date": "2008-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4630520288, "date": "2008-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.6186666667, "date": "2008-06-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4649792214, "date": "2008-06-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.712, "date": "2008-07-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4669064141, "date": "2008-07-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.7473333333, "date": "2008-07-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4688336067, "date": "2008-07-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.692, "date": "2008-07-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4707607994, "date": "2008-07-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.5763333333, "date": "2008-07-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.472687992, "date": "2008-07-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.4706666667, "date": "2008-08-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4746151847, "date": "2008-08-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.3203333333, "date": "2008-08-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4765423773, "date": "2008-08-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.176, "date": "2008-08-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.47846957, "date": "2008-08-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.114, "date": "2008-08-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4803967626, "date": "2008-08-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.0903333333, "date": "2008-09-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4823239553, "date": "2008-09-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.0233333333, "date": "2008-09-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4842511479, "date": "2008-09-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.997, "date": "2008-09-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4861783406, "date": "2008-09-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.9366666667, "date": "2008-09-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4881055332, "date": "2008-09-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.9383333333, "date": "2008-09-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4900327259, "date": "2008-09-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.8476666667, "date": "2008-10-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4919599185, "date": "2008-10-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.6296666667, "date": "2008-10-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4938871112, "date": "2008-10-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.4456666667, "date": "2008-10-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4958143038, "date": "2008-10-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.259, "date": "2008-10-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4977414964, "date": "2008-10-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.0606666667, "date": "2008-11-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4996686891, "date": "2008-11-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9103333333, "date": "2008-11-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5015958817, "date": "2008-11-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7766666667, "date": "2008-11-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5035230744, "date": "2008-11-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.637, "date": "2008-11-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.505450267, "date": "2008-11-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.5943333333, "date": "2008-12-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5073774597, "date": "2008-12-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.519, "date": "2008-12-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5093046523, "date": "2008-12-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.426, "date": "2008-12-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.511231845, "date": "2008-12-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.3695, "date": "2008-12-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5131590376, "date": "2008-12-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.331, "date": "2008-12-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5150862303, "date": "2008-12-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.295, "date": "2009-01-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5170134229, "date": "2009-01-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.319, "date": "2009-01-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5189406156, "date": "2009-01-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.3015, "date": "2009-01-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5208678082, "date": "2009-01-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.273, "date": "2009-01-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5227950009, "date": "2009-01-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.251, "date": "2009-02-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5247221935, "date": "2009-02-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2245, "date": "2009-02-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5266493862, "date": "2009-02-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.1915, "date": "2009-02-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5285765788, "date": "2009-02-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.134, "date": "2009-02-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5305037715, "date": "2009-02-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.091, "date": "2009-03-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5324309641, "date": "2009-03-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.048, "date": "2009-03-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5343581568, "date": "2009-03-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.02, "date": "2009-03-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5362853494, "date": "2009-03-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.0915, "date": "2009-03-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5382125421, "date": "2009-03-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.223, "date": "2009-03-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5401397347, "date": "2009-03-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2305, "date": "2009-04-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5420669273, "date": "2009-04-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2315, "date": "2009-04-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.54399412, "date": "2009-04-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2235, "date": "2009-04-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5459213126, "date": "2009-04-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.204, "date": "2009-04-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5478485053, "date": "2009-04-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.1885, "date": "2009-05-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5497756979, "date": "2009-05-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2195, "date": "2009-05-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5517028906, "date": "2009-05-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.234, "date": "2009-05-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5536300832, "date": "2009-05-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.276, "date": "2009-05-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5555572759, "date": "2009-05-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.353, "date": "2009-06-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5574844685, "date": "2009-06-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.4995, "date": "2009-06-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5594116612, "date": "2009-06-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.5735, "date": "2009-06-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5613388538, "date": "2009-06-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6175, "date": "2009-06-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5632660465, "date": "2009-06-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.61, "date": "2009-06-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5651932391, "date": "2009-06-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.596, "date": "2009-07-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5671204318, "date": "2009-07-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.544, "date": "2009-07-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5690476244, "date": "2009-07-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.4985, "date": "2009-07-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5709748171, "date": "2009-07-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.53, "date": "2009-07-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5729020097, "date": "2009-07-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.552, "date": "2009-08-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5748292024, "date": "2009-08-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6265, "date": "2009-08-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.576756395, "date": "2009-08-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.654, "date": "2009-08-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5786835877, "date": "2009-08-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.67, "date": "2009-08-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5806107803, "date": "2009-08-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6765, "date": "2009-08-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.582537973, "date": "2009-08-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6485, "date": "2009-09-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5844651656, "date": "2009-09-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.636, "date": "2009-09-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5863923582, "date": "2009-09-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.624, "date": "2009-09-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5883195509, "date": "2009-09-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6035, "date": "2009-09-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5902467435, "date": "2009-09-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.585, "date": "2009-10-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5921739362, "date": "2009-10-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.602, "date": "2009-10-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5941011288, "date": "2009-10-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7065, "date": "2009-10-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5960283215, "date": "2009-10-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.803, "date": "2009-10-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5979555141, "date": "2009-10-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8095, "date": "2009-11-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5998827068, "date": "2009-11-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.803, "date": "2009-11-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6018098994, "date": "2009-11-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7925, "date": "2009-11-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6037370921, "date": "2009-11-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7895, "date": "2009-11-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6056642847, "date": "2009-11-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7775, "date": "2009-11-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6075914774, "date": "2009-11-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7745, "date": "2009-12-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.60951867, "date": "2009-12-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7505, "date": "2009-12-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6114458627, "date": "2009-12-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7285, "date": "2009-12-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6133730553, "date": "2009-12-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.734, "date": "2009-12-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.615300248, "date": "2009-12-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.799, "date": "2010-01-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6172274406, "date": "2010-01-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8805, "date": "2010-01-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6191546333, "date": "2010-01-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.872, "date": "2010-01-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6210818259, "date": "2010-01-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8355, "date": "2010-01-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6230090186, "date": "2010-01-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.784, "date": "2010-02-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6249362112, "date": "2010-02-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.772, "date": "2010-02-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6268634039, "date": "2010-02-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7585, "date": "2010-02-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6287905965, "date": "2010-02-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.833, "date": "2010-02-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6307177891, "date": "2010-02-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.863, "date": "2010-03-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6326449818, "date": "2010-03-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.905, "date": "2010-03-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6345721744, "date": "2010-03-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.925, "date": "2010-03-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6364993671, "date": "2010-03-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9475, "date": "2010-03-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6384265597, "date": "2010-03-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9405, "date": "2010-03-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6403537524, "date": "2010-03-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.016, "date": "2010-04-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.642280945, "date": "2010-04-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.071, "date": "2010-04-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6442081377, "date": "2010-04-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.076, "date": "2010-04-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6461353303, "date": "2010-04-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.08, "date": "2010-04-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.648062523, "date": "2010-04-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.124, "date": "2010-05-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6499897156, "date": "2010-05-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.129, "date": "2010-05-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6519169083, "date": "2010-05-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.096, "date": "2010-05-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6538441009, "date": "2010-05-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.023, "date": "2010-05-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6557712936, "date": "2010-05-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9815, "date": "2010-05-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6576984862, "date": "2010-05-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9475, "date": "2010-06-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6596256789, "date": "2010-06-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.929, "date": "2010-06-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6615528715, "date": "2010-06-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9615, "date": "2010-06-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6634800642, "date": "2010-06-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9565, "date": "2010-06-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6654072568, "date": "2010-06-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9245, "date": "2010-07-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6673344495, "date": "2010-07-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9035, "date": "2010-07-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6692616421, "date": "2010-07-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.899, "date": "2010-07-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6711888348, "date": "2010-07-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.919, "date": "2010-07-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6731160274, "date": "2010-07-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.928, "date": "2010-08-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.67504322, "date": "2010-08-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.991, "date": "2010-08-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6769704127, "date": "2010-08-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.979, "date": "2010-08-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6788976053, "date": "2010-08-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.957, "date": "2010-08-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.680824798, "date": "2010-08-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.938, "date": "2010-08-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6827519906, "date": "2010-08-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.931, "date": "2010-09-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6846791833, "date": "2010-09-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.943, "date": "2010-09-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6866063759, "date": "2010-09-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.96, "date": "2010-09-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6885335686, "date": "2010-09-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.951, "date": "2010-09-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6904607612, "date": "2010-09-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3, "date": "2010-10-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6923879539, "date": "2010-10-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.066, "date": "2010-10-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6943151465, "date": "2010-10-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.073, "date": "2010-10-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6962423392, "date": "2010-10-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.067, "date": "2010-10-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6981695318, "date": "2010-10-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.067, "date": "2010-11-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7000967245, "date": "2010-11-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.116, "date": "2010-11-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7020239171, "date": "2010-11-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.184, "date": "2010-11-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7039511098, "date": "2010-11-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.171, "date": "2010-11-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7058783024, "date": "2010-11-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.162, "date": "2010-11-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7078054951, "date": "2010-11-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.197, "date": "2010-12-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7097326877, "date": "2010-12-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.231, "date": "2010-12-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7116598804, "date": "2010-12-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.248, "date": "2010-12-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.713587073, "date": "2010-12-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.294, "date": "2010-12-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7155142657, "date": "2010-12-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.331, "date": "2011-01-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7174414583, "date": "2011-01-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.333, "date": "2011-01-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7193686509, "date": "2011-01-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.407, "date": "2011-01-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7212958436, "date": "2011-01-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.43, "date": "2011-01-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7232230362, "date": "2011-01-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.438, "date": "2011-01-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7251502289, "date": "2011-01-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.513, "date": "2011-02-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7270774215, "date": "2011-02-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.534, "date": "2011-02-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7290046142, "date": "2011-02-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.573, "date": "2011-02-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7309318068, "date": "2011-02-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.716, "date": "2011-02-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7328589995, "date": "2011-02-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.871, "date": "2011-03-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7347861921, "date": "2011-03-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.908, "date": "2011-03-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7367133848, "date": "2011-03-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.907, "date": "2011-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7386405774, "date": "2011-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.932, "date": "2011-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7405677701, "date": "2011-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.976, "date": "2011-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7424949627, "date": "2011-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.078, "date": "2011-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7444221554, "date": "2011-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.105, "date": "2011-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.746349348, "date": "2011-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.098, "date": "2011-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7482765407, "date": "2011-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.124, "date": "2011-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7502037333, "date": "2011-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.104, "date": "2011-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.752130926, "date": "2011-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.061, "date": "2011-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7540581186, "date": "2011-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.997, "date": "2011-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7559853113, "date": "2011-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.948, "date": "2011-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7579125039, "date": "2011-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.94, "date": "2011-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7598396966, "date": "2011-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.954, "date": "2011-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7617668892, "date": "2011-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.95, "date": "2011-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7636940818, "date": "2011-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.888, "date": "2011-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7656212745, "date": "2011-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.85, "date": "2011-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7675484671, "date": "2011-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.899, "date": "2011-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7694756598, "date": "2011-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.923, "date": "2011-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7714028524, "date": "2011-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.949, "date": "2011-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7733300451, "date": "2011-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.937, "date": "2011-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7752572377, "date": "2011-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.897, "date": "2011-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7771844304, "date": "2011-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.835, "date": "2011-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.779111623, "date": "2011-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.81, "date": "2011-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7810388157, "date": "2011-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.82, "date": "2011-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7829660083, "date": "2011-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.868, "date": "2011-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.784893201, "date": "2011-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.862, "date": "2011-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7868203936, "date": "2011-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.833, "date": "2011-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7887475863, "date": "2011-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.786, "date": "2011-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7906747789, "date": "2011-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.749, "date": "2011-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7926019716, "date": "2011-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.721, "date": "2011-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7945291642, "date": "2011-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.801, "date": "2011-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7964563569, "date": "2011-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.825, "date": "2011-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7983835495, "date": "2011-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.892, "date": "2011-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8003107422, "date": "2011-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.887, "date": "2011-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8022379348, "date": "2011-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.987, "date": "2011-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8041651275, "date": "2011-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.01, "date": "2011-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8060923201, "date": "2011-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.964, "date": "2011-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8080195127, "date": "2011-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.931, "date": "2011-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8099467054, "date": "2011-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2011-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.811873898, "date": "2011-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.828, "date": "2011-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8138010907, "date": "2011-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.791, "date": "2011-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8157282833, "date": "2011-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.783, "date": "2012-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.817655476, "date": "2012-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.828, "date": "2012-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8195826686, "date": "2012-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.854, "date": "2012-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8215098613, "date": "2012-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.848, "date": "2012-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8234370539, "date": "2012-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.85, "date": "2012-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8253642466, "date": "2012-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.856, "date": "2012-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8272914392, "date": "2012-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.943, "date": "2012-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8292186319, "date": "2012-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.96, "date": "2012-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8311458245, "date": "2012-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.051, "date": "2012-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8330730172, "date": "2012-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.094, "date": "2012-03-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8350002098, "date": "2012-03-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.123, "date": "2012-03-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8369274025, "date": "2012-03-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.142, "date": "2012-03-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8388545951, "date": "2012-03-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.147, "date": "2012-03-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8407817878, "date": "2012-03-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.142, "date": "2012-04-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8427089804, "date": "2012-04-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.148, "date": "2012-04-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8446361731, "date": "2012-04-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.127, "date": "2012-04-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8465633657, "date": "2012-04-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.085, "date": "2012-04-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8484905584, "date": "2012-04-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.073, "date": "2012-04-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.850417751, "date": "2012-04-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.057, "date": "2012-05-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8523449436, "date": "2012-05-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.004, "date": "2012-05-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8542721363, "date": "2012-05-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.956, "date": "2012-05-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8561993289, "date": "2012-05-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.897, "date": "2012-05-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8581265216, "date": "2012-05-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.846, "date": "2012-06-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8600537142, "date": "2012-06-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.781, "date": "2012-06-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8619809069, "date": "2012-06-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.729, "date": "2012-06-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8639080995, "date": "2012-06-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.678, "date": "2012-06-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8658352922, "date": "2012-06-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.648, "date": "2012-07-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8677624848, "date": "2012-07-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.683, "date": "2012-07-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8696896775, "date": "2012-07-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.695, "date": "2012-07-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8716168701, "date": "2012-07-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.783, "date": "2012-07-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8735440628, "date": "2012-07-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.796, "date": "2012-07-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8754712554, "date": "2012-07-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.85, "date": "2012-08-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8773984481, "date": "2012-08-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.965, "date": "2012-08-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8793256407, "date": "2012-08-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.026, "date": "2012-08-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8812528334, "date": "2012-08-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.089, "date": "2012-08-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.883180026, "date": "2012-08-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.127, "date": "2012-09-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8851072187, "date": "2012-09-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.132, "date": "2012-09-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8870344113, "date": "2012-09-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.135, "date": "2012-09-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.888961604, "date": "2012-09-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.086, "date": "2012-09-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8908887966, "date": "2012-09-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.079, "date": "2012-10-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8928159893, "date": "2012-10-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.094, "date": "2012-10-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8947431819, "date": "2012-10-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.15, "date": "2012-10-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8966703745, "date": "2012-10-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.116, "date": "2012-10-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8985975672, "date": "2012-10-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.03, "date": "2012-10-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9005247598, "date": "2012-10-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.01, "date": "2012-11-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9024519525, "date": "2012-11-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.98, "date": "2012-11-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9043791451, "date": "2012-11-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.976, "date": "2012-11-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9063063378, "date": "2012-11-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.034, "date": "2012-11-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9082335304, "date": "2012-11-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.027, "date": "2012-12-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9101607231, "date": "2012-12-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.991, "date": "2012-12-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9120879157, "date": "2012-12-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.945, "date": "2012-12-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9140151084, "date": "2012-12-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.923, "date": "2012-12-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.915942301, "date": "2012-12-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.918, "date": "2012-12-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9178694937, "date": "2012-12-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.911, "date": "2013-01-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9197966863, "date": "2013-01-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2013-01-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.921723879, "date": "2013-01-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.902, "date": "2013-01-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9236510716, "date": "2013-01-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.927, "date": "2013-01-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9255782643, "date": "2013-01-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.022, "date": "2013-02-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9275054569, "date": "2013-02-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.104, "date": "2013-02-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9294326496, "date": "2013-02-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.157, "date": "2013-02-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9313598422, "date": "2013-02-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.159, "date": "2013-02-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9332870349, "date": "2013-02-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.13, "date": "2013-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9352142275, "date": "2013-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.088, "date": "2013-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9371414202, "date": "2013-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.047, "date": "2013-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9390686128, "date": "2013-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.006, "date": "2013-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9409958054, "date": "2013-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.993, "date": "2013-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9429229981, "date": "2013-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.977, "date": "2013-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9448501907, "date": "2013-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.942, "date": "2013-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9467773834, "date": "2013-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.887, "date": "2013-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.948704576, "date": "2013-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.851, "date": "2013-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9506317687, "date": "2013-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.845, "date": "2013-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9525589613, "date": "2013-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.866, "date": "2013-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.954486154, "date": "2013-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.89, "date": "2013-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9564133466, "date": "2013-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.88, "date": "2013-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9583405393, "date": "2013-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.869, "date": "2013-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9602677319, "date": "2013-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.849, "date": "2013-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9621949246, "date": "2013-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.841, "date": "2013-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9641221172, "date": "2013-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.838, "date": "2013-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9660493099, "date": "2013-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.817, "date": "2013-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9679765025, "date": "2013-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.828, "date": "2013-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9699036952, "date": "2013-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.867, "date": "2013-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9718308878, "date": "2013-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.903, "date": "2013-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9737580805, "date": "2013-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.915, "date": "2013-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9756852731, "date": "2013-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.909, "date": "2013-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9776124658, "date": "2013-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.896, "date": "2013-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9795396584, "date": "2013-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.9, "date": "2013-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9814668511, "date": "2013-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.913, "date": "2013-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9833940437, "date": "2013-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.981, "date": "2013-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9853212363, "date": "2013-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.981, "date": "2013-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.987248429, "date": "2013-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.974, "date": "2013-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9891756216, "date": "2013-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.949, "date": "2013-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9911028143, "date": "2013-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.919, "date": "2013-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9930300069, "date": "2013-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.897, "date": "2013-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9949571996, "date": "2013-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.886, "date": "2013-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9968843922, "date": "2013-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.886, "date": "2013-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9988115849, "date": "2013-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.87, "date": "2013-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0007387775, "date": "2013-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.857, "date": "2013-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0026659702, "date": "2013-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.832, "date": "2013-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0045931628, "date": "2013-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.822, "date": "2013-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0065203555, "date": "2013-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.844, "date": "2013-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0084475481, "date": "2013-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.883, "date": "2013-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0103747408, "date": "2013-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.879, "date": "2013-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0123019334, "date": "2013-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.871, "date": "2013-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0142291261, "date": "2013-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.873, "date": "2013-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0161563187, "date": "2013-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.903, "date": "2013-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0180835114, "date": "2013-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.91, "date": "2014-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.020010704, "date": "2014-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.886, "date": "2014-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0219378967, "date": "2014-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.873, "date": "2014-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0238650893, "date": "2014-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.904, "date": "2014-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.025792282, "date": "2014-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.951, "date": "2014-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0277194746, "date": "2014-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.977, "date": "2014-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0296466672, "date": "2014-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.989, "date": "2014-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0315738599, "date": "2014-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.017, "date": "2014-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0335010525, "date": "2014-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.016, "date": "2014-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0354282452, "date": "2014-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.021, "date": "2014-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0373554378, "date": "2014-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.003, "date": "2014-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0392826305, "date": "2014-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.988, "date": "2014-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0412098231, "date": "2014-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.975, "date": "2014-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0431370158, "date": "2014-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.959, "date": "2014-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0450642084, "date": "2014-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.952, "date": "2014-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0469914011, "date": "2014-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.971, "date": "2014-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0489185937, "date": "2014-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.975, "date": "2014-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0508457864, "date": "2014-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.964, "date": "2014-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.052772979, "date": "2014-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.948, "date": "2014-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0547001717, "date": "2014-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.934, "date": "2014-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0566273643, "date": "2014-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.925, "date": "2014-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.058554557, "date": "2014-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.918, "date": "2014-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0604817496, "date": "2014-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.892, "date": "2014-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0624089423, "date": "2014-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.882, "date": "2014-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0643361349, "date": "2014-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.919, "date": "2014-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0662633276, "date": "2014-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.92, "date": "2014-06-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0681905202, "date": "2014-06-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.913, "date": "2014-07-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0701177129, "date": "2014-07-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2014-07-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0720449055, "date": "2014-07-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.869, "date": "2014-07-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0739720981, "date": "2014-07-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.858, "date": "2014-07-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0758992908, "date": "2014-07-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.853, "date": "2014-08-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0778264834, "date": "2014-08-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.843, "date": "2014-08-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0797536761, "date": "2014-08-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.835, "date": "2014-08-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0816808687, "date": "2014-08-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.821, "date": "2014-08-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0836080614, "date": "2014-08-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.814, "date": "2014-09-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.085535254, "date": "2014-09-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.814, "date": "2014-09-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0874624467, "date": "2014-09-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.801, "date": "2014-09-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0893896393, "date": "2014-09-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.778, "date": "2014-09-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.091316832, "date": "2014-09-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.755, "date": "2014-09-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0932440246, "date": "2014-09-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.733, "date": "2014-10-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0951712173, "date": "2014-10-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.698, "date": "2014-10-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0970984099, "date": "2014-10-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.656, "date": "2014-10-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0990256026, "date": "2014-10-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.635, "date": "2014-10-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1009527952, "date": "2014-10-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.623, "date": "2014-11-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1028799879, "date": "2014-11-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.677, "date": "2014-11-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1048071805, "date": "2014-11-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.661, "date": "2014-11-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1067343732, "date": "2014-11-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.628, "date": "2014-11-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1086615658, "date": "2014-11-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.605, "date": "2014-12-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1105887585, "date": "2014-12-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.535, "date": "2014-12-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1125159511, "date": "2014-12-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.419, "date": "2014-12-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1144431438, "date": "2014-12-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.281, "date": "2014-12-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1163703364, "date": "2014-12-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.213, "date": "2014-12-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.118297529, "date": "2014-12-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.137, "date": "2015-01-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1202247217, "date": "2015-01-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.053, "date": "2015-01-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1221519143, "date": "2015-01-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.933, "date": "2015-01-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.124079107, "date": "2015-01-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.866, "date": "2015-01-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1260062996, "date": "2015-01-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.831, "date": "2015-02-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1279334923, "date": "2015-02-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.835, "date": "2015-02-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1298606849, "date": "2015-02-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.865, "date": "2015-02-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1317878776, "date": "2015-02-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9, "date": "2015-02-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1337150702, "date": "2015-02-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.936, "date": "2015-03-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1356422629, "date": "2015-03-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.944, "date": "2015-03-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1375694555, "date": "2015-03-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.917, "date": "2015-03-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1394966482, "date": "2015-03-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.864, "date": "2015-03-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1414238408, "date": "2015-03-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.824, "date": "2015-03-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1433510335, "date": "2015-03-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.784, "date": "2015-04-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1452782261, "date": "2015-04-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.754, "date": "2015-04-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1472054188, "date": "2015-04-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.78, "date": "2015-04-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1491326114, "date": "2015-04-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.811, "date": "2015-04-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1510598041, "date": "2015-04-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.854, "date": "2015-05-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1529869967, "date": "2015-05-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.878, "date": "2015-05-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1549141894, "date": "2015-05-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.904, "date": "2015-05-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.156841382, "date": "2015-05-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.914, "date": "2015-05-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1587685747, "date": "2015-05-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.909, "date": "2015-06-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1606957673, "date": "2015-06-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.884, "date": "2015-06-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1626229599, "date": "2015-06-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.87, "date": "2015-06-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1645501526, "date": "2015-06-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.859, "date": "2015-06-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1664773452, "date": "2015-06-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.843, "date": "2015-06-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1684045379, "date": "2015-06-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.832, "date": "2015-07-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1703317305, "date": "2015-07-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.814, "date": "2015-07-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1722589232, "date": "2015-07-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.782, "date": "2015-07-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1741861158, "date": "2015-07-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.723, "date": "2015-07-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1761133085, "date": "2015-07-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.668, "date": "2015-08-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1780405011, "date": "2015-08-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.617, "date": "2015-08-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1799676938, "date": "2015-08-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.615, "date": "2015-08-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1818948864, "date": "2015-08-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.561, "date": "2015-08-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1838220791, "date": "2015-08-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.514, "date": "2015-08-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1857492717, "date": "2015-08-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.534, "date": "2015-09-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1876764644, "date": "2015-09-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.517, "date": "2015-09-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.189603657, "date": "2015-09-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.493, "date": "2015-09-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1915308497, "date": "2015-09-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.476, "date": "2015-09-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1934580423, "date": "2015-09-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.492, "date": "2015-10-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.195385235, "date": "2015-10-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.556, "date": "2015-10-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1973124276, "date": "2015-10-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.531, "date": "2015-10-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1992396203, "date": "2015-10-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.498, "date": "2015-10-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2011668129, "date": "2015-10-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.485, "date": "2015-11-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2030940056, "date": "2015-11-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.502, "date": "2015-11-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2050211982, "date": "2015-11-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.482, "date": "2015-11-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2069483908, "date": "2015-11-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.445, "date": "2015-11-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2088755835, "date": "2015-11-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.421, "date": "2015-11-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2108027761, "date": "2015-11-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.379, "date": "2015-12-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2127299688, "date": "2015-12-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.338, "date": "2015-12-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2146571614, "date": "2015-12-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.284, "date": "2015-12-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2165843541, "date": "2015-12-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.237, "date": "2015-12-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2185115467, "date": "2015-12-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.211, "date": "2016-01-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2204387394, "date": "2016-01-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.177, "date": "2016-01-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.222365932, "date": "2016-01-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.112, "date": "2016-01-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2242931247, "date": "2016-01-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.071, "date": "2016-01-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2262203173, "date": "2016-01-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.031, "date": "2016-02-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.22814751, "date": "2016-02-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.008, "date": "2016-02-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2300747026, "date": "2016-02-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.98, "date": "2016-02-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2320018953, "date": "2016-02-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.983, "date": "2016-02-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2339290879, "date": "2016-02-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.989, "date": "2016-02-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2358562806, "date": "2016-02-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.021, "date": "2016-03-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2377834732, "date": "2016-03-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.099, "date": "2016-03-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2397106659, "date": "2016-03-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.119, "date": "2016-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2416378585, "date": "2016-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.121, "date": "2016-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2435650512, "date": "2016-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.115, "date": "2016-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2454922438, "date": "2016-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.128, "date": "2016-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2474194365, "date": "2016-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.165, "date": "2016-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2493466291, "date": "2016-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.198, "date": "2016-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2512738217, "date": "2016-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.266, "date": "2016-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2532010144, "date": "2016-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.271, "date": "2016-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.255128207, "date": "2016-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.297, "date": "2016-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2570553997, "date": "2016-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.357, "date": "2016-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2589825923, "date": "2016-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.382, "date": "2016-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.260909785, "date": "2016-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.407, "date": "2016-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2628369776, "date": "2016-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.431, "date": "2016-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2647641703, "date": "2016-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.426, "date": "2016-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2666913629, "date": "2016-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.426, "date": "2016-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2686185556, "date": "2016-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.423, "date": "2016-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2705457482, "date": "2016-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.414, "date": "2016-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2724729409, "date": "2016-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.402, "date": "2016-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2744001335, "date": "2016-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.379, "date": "2016-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2763273262, "date": "2016-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.348, "date": "2016-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2782545188, "date": "2016-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.316, "date": "2016-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2801817115, "date": "2016-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.31, "date": "2016-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2821089041, "date": "2016-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.37, "date": "2016-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2840360968, "date": "2016-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.409, "date": "2016-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2859632894, "date": "2016-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.407, "date": "2016-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2878904821, "date": "2016-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.399, "date": "2016-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2898176747, "date": "2016-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.389, "date": "2016-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2917448674, "date": "2016-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.382, "date": "2016-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.29367206, "date": "2016-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.389, "date": "2016-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2955992526, "date": "2016-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.445, "date": "2016-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2975264453, "date": "2016-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.481, "date": "2016-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2994536379, "date": "2016-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.478, "date": "2016-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3013808306, "date": "2016-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.479, "date": "2016-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3033080232, "date": "2016-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.47, "date": "2016-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3052352159, "date": "2016-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.443, "date": "2016-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3071624085, "date": "2016-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.421, "date": "2016-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3090896012, "date": "2016-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.42, "date": "2016-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3110167938, "date": "2016-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.48, "date": "2016-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3129439865, "date": "2016-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.493, "date": "2016-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3148711791, "date": "2016-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.527, "date": "2016-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3167983718, "date": "2016-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.54, "date": "2016-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3187255644, "date": "2016-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.586, "date": "2017-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3206527571, "date": "2017-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.597, "date": "2017-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3225799497, "date": "2017-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.585, "date": "2017-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3245071424, "date": "2017-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.569, "date": "2017-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.326434335, "date": "2017-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.562, "date": "2017-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3283615277, "date": "2017-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.558, "date": "2017-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3302887203, "date": "2017-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.565, "date": "2017-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.332215913, "date": "2017-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.572, "date": "2017-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3341431056, "date": "2017-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.577, "date": "2017-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3360702983, "date": "2017-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.579, "date": "2017-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3379974909, "date": "2017-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.564, "date": "2017-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3399246835, "date": "2017-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.539, "date": "2017-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3418518762, "date": "2017-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.532, "date": "2017-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3437790688, "date": "2017-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.556, "date": "2017-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3457062615, "date": "2017-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.582, "date": "2017-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3476334541, "date": "2017-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.597, "date": "2017-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3495606468, "date": "2017-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.595, "date": "2017-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3514878394, "date": "2017-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.583, "date": "2017-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3534150321, "date": "2017-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.565, "date": "2017-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3553422247, "date": "2017-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.544, "date": "2017-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3572694174, "date": "2017-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.539, "date": "2017-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.35919661, "date": "2017-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.571, "date": "2017-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3611238027, "date": "2017-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.564, "date": "2017-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3630509953, "date": "2017-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.524, "date": "2017-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.364978188, "date": "2017-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.489, "date": "2017-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3669053806, "date": "2017-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.465, "date": "2017-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3688325733, "date": "2017-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.472, "date": "2017-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3707597659, "date": "2017-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.481, "date": "2017-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3726869586, "date": "2017-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.491, "date": "2017-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3746141512, "date": "2017-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.507, "date": "2017-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3765413439, "date": "2017-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.531, "date": "2017-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3784685365, "date": "2017-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.581, "date": "2017-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3803957292, "date": "2017-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.598, "date": "2017-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3823229218, "date": "2017-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.596, "date": "2017-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3842501144, "date": "2017-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.605, "date": "2017-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3861773071, "date": "2017-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.758, "date": "2017-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3881044997, "date": "2017-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.802, "date": "2017-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3900316924, "date": "2017-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.791, "date": "2017-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.391958885, "date": "2017-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.788, "date": "2017-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3938860777, "date": "2017-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.792, "date": "2017-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3958132703, "date": "2017-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.776, "date": "2017-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.397740463, "date": "2017-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.787, "date": "2017-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3996676556, "date": "2017-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.797, "date": "2017-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4015948483, "date": "2017-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.819, "date": "2017-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4035220409, "date": "2017-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.882, "date": "2017-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4054492336, "date": "2017-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.915, "date": "2017-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4073764262, "date": "2017-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.912, "date": "2017-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4093036189, "date": "2017-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.926, "date": "2017-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4112308115, "date": "2017-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.922, "date": "2017-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4131580042, "date": "2017-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.91, "date": "2017-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4150851968, "date": "2017-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.901, "date": "2017-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4170123895, "date": "2017-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.903, "date": "2017-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4189395821, "date": "2017-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.973, "date": "2018-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4208667748, "date": "2018-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.996, "date": "2018-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4227939674, "date": "2018-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.028, "date": "2018-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4247211601, "date": "2018-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.025, "date": "2018-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4266483527, "date": "2018-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.07, "date": "2018-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4285755453, "date": "2018-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.086, "date": "2018-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.430502738, "date": "2018-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.063, "date": "2018-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4324299306, "date": "2018-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.027, "date": "2018-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4343571233, "date": "2018-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.007, "date": "2018-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4362843159, "date": "2018-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.992, "date": "2018-03-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4382115086, "date": "2018-03-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.976, "date": "2018-03-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4401387012, "date": "2018-03-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.972, "date": "2018-03-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4420658939, "date": "2018-03-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.01, "date": "2018-03-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4439930865, "date": "2018-03-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.042, "date": "2018-04-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4459202792, "date": "2018-04-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.043, "date": "2018-04-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4478474718, "date": "2018-04-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.104, "date": "2018-04-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4497746645, "date": "2018-04-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.133, "date": "2018-04-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4517018571, "date": "2018-04-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.157, "date": "2018-04-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4536290498, "date": "2018-04-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.171, "date": "2018-05-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4555562424, "date": "2018-05-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.239, "date": "2018-05-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4574834351, "date": "2018-05-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.277, "date": "2018-05-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4594106277, "date": "2018-05-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.288, "date": "2018-05-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4613378204, "date": "2018-05-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.285, "date": "2018-06-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.463265013, "date": "2018-06-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.266, "date": "2018-06-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4651922057, "date": "2018-06-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.244, "date": "2018-06-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4671193983, "date": "2018-06-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.216, "date": "2018-06-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.469046591, "date": "2018-06-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.236, "date": "2018-07-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4709737836, "date": "2018-07-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.243, "date": "2018-07-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4729009762, "date": "2018-07-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.239, "date": "2018-07-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4748281689, "date": "2018-07-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.22, "date": "2018-07-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4767553615, "date": "2018-07-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.226, "date": "2018-07-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4786825542, "date": "2018-07-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.223, "date": "2018-08-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4806097468, "date": "2018-08-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.217, "date": "2018-08-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4825369395, "date": "2018-08-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.207, "date": "2018-08-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4844641321, "date": "2018-08-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.226, "date": "2018-08-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4863913248, "date": "2018-08-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.252, "date": "2018-09-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4883185174, "date": "2018-09-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.258, "date": "2018-09-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4902457101, "date": "2018-09-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.268, "date": "2018-09-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4921729027, "date": "2018-09-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.271, "date": "2018-09-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4941000954, "date": "2018-09-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.313, "date": "2018-10-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.496027288, "date": "2018-10-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.385, "date": "2018-10-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4979544807, "date": "2018-10-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.394, "date": "2018-10-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4998816733, "date": "2018-10-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.38, "date": "2018-10-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.501808866, "date": "2018-10-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.355, "date": "2018-10-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5037360586, "date": "2018-10-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.338, "date": "2018-11-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5056632513, "date": "2018-11-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.317, "date": "2018-11-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5075904439, "date": "2018-11-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.282, "date": "2018-11-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5095176366, "date": "2018-11-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.261, "date": "2018-11-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5114448292, "date": "2018-11-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.207, "date": "2018-12-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5133720219, "date": "2018-12-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.161, "date": "2018-12-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5152992145, "date": "2018-12-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.121, "date": "2018-12-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5172264071, "date": "2018-12-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.077, "date": "2018-12-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5191535998, "date": "2018-12-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.048, "date": "2018-12-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5210807924, "date": "2018-12-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.013, "date": "2019-01-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5230079851, "date": "2019-01-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.976, "date": "2019-01-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5249351777, "date": "2019-01-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.965, "date": "2019-01-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5268623704, "date": "2019-01-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.965, "date": "2019-01-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.528789563, "date": "2019-01-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.966, "date": "2019-02-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5307167557, "date": "2019-02-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.966, "date": "2019-02-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5326439483, "date": "2019-02-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.006, "date": "2019-02-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.534571141, "date": "2019-02-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.048, "date": "2019-02-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5364983336, "date": "2019-02-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.076, "date": "2019-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5384255263, "date": "2019-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.079, "date": "2019-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5403527189, "date": "2019-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.07, "date": "2019-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5422799116, "date": "2019-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.08, "date": "2019-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5442071042, "date": "2019-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.078, "date": "2019-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5461342969, "date": "2019-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.093, "date": "2019-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5480614895, "date": "2019-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.118, "date": "2019-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5499886822, "date": "2019-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.147, "date": "2019-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5519158748, "date": "2019-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.169, "date": "2019-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5538430675, "date": "2019-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.171, "date": "2019-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5557702601, "date": "2019-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.16, "date": "2019-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5576974528, "date": "2019-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.163, "date": "2019-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5596246454, "date": "2019-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.151, "date": "2019-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.561551838, "date": "2019-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.136, "date": "2019-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5634790307, "date": "2019-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.105, "date": "2019-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5654062233, "date": "2019-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.07, "date": "2019-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.567333416, "date": "2019-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.043, "date": "2019-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5692606086, "date": "2019-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.042, "date": "2019-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5711878013, "date": "2019-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.055, "date": "2019-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5731149939, "date": "2019-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.051, "date": "2019-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5750421866, "date": "2019-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.044, "date": "2019-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5769693792, "date": "2019-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.034, "date": "2019-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5788965719, "date": "2019-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.032, "date": "2019-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5808237645, "date": "2019-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.011, "date": "2019-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5827509572, "date": "2019-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.994, "date": "2019-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5846781498, "date": "2019-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.983, "date": "2019-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5866053425, "date": "2019-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.976, "date": "2019-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5885325351, "date": "2019-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.971, "date": "2019-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5904597278, "date": "2019-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.987, "date": "2019-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5923869204, "date": "2019-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.081, "date": "2019-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5943141131, "date": "2019-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.066, "date": "2019-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5962413057, "date": "2019-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.047, "date": "2019-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5981684984, "date": "2019-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.051, "date": "2019-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.600095691, "date": "2019-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.05, "date": "2019-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6020228837, "date": "2019-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.064, "date": "2019-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6039500763, "date": "2019-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.062, "date": "2019-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6058772689, "date": "2019-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.073, "date": "2019-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6078044616, "date": "2019-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.074, "date": "2019-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6097316542, "date": "2019-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.066, "date": "2019-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6116588469, "date": "2019-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.07, "date": "2019-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6135860395, "date": "2019-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.049, "date": "2019-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6155132322, "date": "2019-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.046, "date": "2019-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6174404248, "date": "2019-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.041, "date": "2019-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6193676175, "date": "2019-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.069, "date": "2019-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6212948101, "date": "2019-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.079, "date": "2020-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6232220028, "date": "2020-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.064, "date": "2020-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6251491954, "date": "2020-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.037, "date": "2020-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6270763881, "date": "2020-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.01, "date": "2020-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6290035807, "date": "2020-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.956, "date": "2020-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6309307734, "date": "2020-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.91, "date": "2020-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.632857966, "date": "2020-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.89, "date": "2020-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6347851587, "date": "2020-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.882, "date": "2020-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6367123513, "date": "2020-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.851, "date": "2020-03-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.638639544, "date": "2020-03-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.814, "date": "2020-03-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6405667366, "date": "2020-03-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.733, "date": "2020-03-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6424939293, "date": "2020-03-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.659, "date": "2020-03-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6444211219, "date": "2020-03-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.586, "date": "2020-03-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6463483146, "date": "2020-03-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.548, "date": "2020-04-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6482755072, "date": "2020-04-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.507, "date": "2020-04-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6502026998, "date": "2020-04-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.48, "date": "2020-04-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6521298925, "date": "2020-04-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.437, "date": "2020-04-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6540570851, "date": "2020-04-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.399, "date": "2020-05-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6559842778, "date": "2020-05-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.394, "date": "2020-05-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6579114704, "date": "2020-05-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.386, "date": "2020-05-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6598386631, "date": "2020-05-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.39, "date": "2020-05-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6617658557, "date": "2020-05-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.386, "date": "2020-06-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6636930484, "date": "2020-06-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.396, "date": "2020-06-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.665620241, "date": "2020-06-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.403, "date": "2020-06-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6675474337, "date": "2020-06-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.425, "date": "2020-06-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6694746263, "date": "2020-06-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.43, "date": "2020-06-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.671401819, "date": "2020-06-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.437, "date": "2020-07-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6733290116, "date": "2020-07-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.438, "date": "2020-07-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6752562043, "date": "2020-07-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.433, "date": "2020-07-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6771833969, "date": "2020-07-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.427, "date": "2020-07-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6791105896, "date": "2020-07-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.424, "date": "2020-08-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6810377822, "date": "2020-08-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.428, "date": "2020-08-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6829649749, "date": "2020-08-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.427, "date": "2020-08-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6848921675, "date": "2020-08-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.426, "date": "2020-08-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6868193602, "date": "2020-08-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.441, "date": "2020-08-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6887465528, "date": "2020-08-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.435, "date": "2020-09-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6906737455, "date": "2020-09-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.422, "date": "2020-09-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6926009381, "date": "2020-09-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.404, "date": "2020-09-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6945281307, "date": "2020-09-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.394, "date": "2020-09-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6964553234, "date": "2020-09-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.387, "date": "2020-10-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.698382516, "date": "2020-10-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.395, "date": "2020-10-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7003097087, "date": "2020-10-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.388, "date": "2020-10-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7022369013, "date": "2020-10-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.385, "date": "2020-10-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.704164094, "date": "2020-10-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.372, "date": "2020-11-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7060912866, "date": "2020-11-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.383, "date": "2020-11-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7080184793, "date": "2020-11-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.441, "date": "2020-11-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7099456719, "date": "2020-11-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.462, "date": "2020-11-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7118728646, "date": "2020-11-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.502, "date": "2020-11-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7138000572, "date": "2020-11-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.526, "date": "2020-12-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7157272499, "date": "2020-12-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.559, "date": "2020-12-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7176544425, "date": "2020-12-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.619, "date": "2020-12-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7195816352, "date": "2020-12-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.635, "date": "2020-12-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7215088278, "date": "2020-12-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.64, "date": "2021-01-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7234360205, "date": "2021-01-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.67, "date": "2021-01-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7253632131, "date": "2021-01-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.696, "date": "2021-01-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7272904058, "date": "2021-01-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.716, "date": "2021-01-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7292175984, "date": "2021-01-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.738, "date": "2021-02-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7311447911, "date": "2021-02-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.801, "date": "2021-02-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7330719837, "date": "2021-02-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.876, "date": "2021-02-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7349991764, "date": "2021-02-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.973, "date": "2021-02-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.736926369, "date": "2021-02-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.072, "date": "2021-03-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7388535616, "date": "2021-03-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.143, "date": "2021-03-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7407807543, "date": "2021-03-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.191, "date": "2021-03-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7427079469, "date": "2021-03-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.194, "date": "2021-03-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7446351396, "date": "2021-03-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.161, "date": "2021-03-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7465623322, "date": "2021-03-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.144, "date": "2021-04-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7484895249, "date": "2021-04-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.129, "date": "2021-04-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7504167175, "date": "2021-04-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.124, "date": "2021-04-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7523439102, "date": "2021-04-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.124, "date": "2021-04-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7542711028, "date": "2021-04-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.142, "date": "2021-05-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7561982955, "date": "2021-05-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.186, "date": "2021-05-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7581254881, "date": "2021-05-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.249, "date": "2021-05-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7600526808, "date": "2021-05-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.253, "date": "2021-05-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7619798734, "date": "2021-05-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.255, "date": "2021-05-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7639070661, "date": "2021-05-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.274, "date": "2021-06-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7658342587, "date": "2021-06-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.286, "date": "2021-06-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7677614514, "date": "2021-06-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.287, "date": "2021-06-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.769688644, "date": "2021-06-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3, "date": "2021-06-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7716158367, "date": "2021-06-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.331, "date": "2021-07-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7735430293, "date": "2021-07-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.338, "date": "2021-07-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.775470222, "date": "2021-07-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.344, "date": "2021-07-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7773974146, "date": "2021-07-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.342, "date": "2021-07-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7793246073, "date": "2021-07-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.367, "date": "2021-08-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7812517999, "date": "2021-08-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.364, "date": "2021-08-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7831789925, "date": "2021-08-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.356, "date": "2021-08-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7851061852, "date": "2021-08-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.324, "date": "2021-08-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7870333778, "date": "2021-08-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.339, "date": "2021-08-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7889605705, "date": "2021-08-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.373, "date": "2021-09-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7908877631, "date": "2021-09-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.372, "date": "2021-09-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7928149558, "date": "2021-09-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.385, "date": "2021-09-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7947421484, "date": "2021-09-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.406, "date": "2021-09-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7966693411, "date": "2021-09-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.477, "date": "2021-10-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7985965337, "date": "2021-10-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.586, "date": "2021-10-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8005237264, "date": "2021-10-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.671, "date": "2021-10-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.802450919, "date": "2021-10-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.713, "date": "2021-10-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8043781117, "date": "2021-10-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.727, "date": "2021-11-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8063053043, "date": "2021-11-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.73, "date": "2021-11-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.808232497, "date": "2021-11-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.734, "date": "2021-11-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8101596896, "date": "2021-11-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.724, "date": "2021-11-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8120868823, "date": "2021-11-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.72, "date": "2021-11-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8140140749, "date": "2021-11-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.674, "date": "2021-12-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8159412676, "date": "2021-12-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.649, "date": "2021-12-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8178684602, "date": "2021-12-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.626, "date": "2021-12-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8197956529, "date": "2021-12-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.615, "date": "2021-12-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8217228455, "date": "2021-12-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.613, "date": "2022-01-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8236500382, "date": "2022-01-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.657, "date": "2022-01-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8255772308, "date": "2022-01-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.725, "date": "2022-01-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8275044234, "date": "2022-01-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.78, "date": "2022-01-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8294316161, "date": "2022-01-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.846, "date": "2022-01-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8313588087, "date": "2022-01-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.951, "date": "2022-02-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8332860014, "date": "2022-02-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.019, "date": "2022-02-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.835213194, "date": "2022-02-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.055, "date": "2022-02-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8371403867, "date": "2022-02-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.104, "date": "2022-02-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8390675793, "date": "2022-02-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.849, "date": "2022-03-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.840994772, "date": "2022-03-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.25, "date": "2022-03-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8429219646, "date": "2022-03-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.134, "date": "2022-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8448491573, "date": "2022-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.185, "date": "2022-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8467763499, "date": "2022-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.144, "date": "2022-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8487035426, "date": "2022-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.073, "date": "2022-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8506307352, "date": "2022-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.101, "date": "2022-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8525579279, "date": "2022-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.16, "date": "2022-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8544851205, "date": "2022-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.509, "date": "2022-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8564123132, "date": "2022-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.623, "date": "2022-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8583395058, "date": "2022-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.613, "date": "2022-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8602666985, "date": "2022-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.571, "date": "2022-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8621938911, "date": "2022-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.539, "date": "2022-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8641210838, "date": "2022-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.703, "date": "2022-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8660482764, "date": "2022-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.718, "date": "2022-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8679754691, "date": "2022-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.81, "date": "2022-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8699026617, "date": "2022-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.783, "date": "2022-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8718298543, "date": "2022-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.675, "date": "2022-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.873757047, "date": "2022-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.568, "date": "2022-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8756842396, "date": "2022-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.432, "date": "2022-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8776114323, "date": "2022-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.268, "date": "2022-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8795386249, "date": "2022-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.138, "date": "2022-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8814658176, "date": "2022-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.993, "date": "2022-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8833930102, "date": "2022-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.911, "date": "2022-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8853202029, "date": "2022-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.909, "date": "2022-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8872473955, "date": "2022-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.115, "date": "2022-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8891745882, "date": "2022-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.084, "date": "2022-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8911017808, "date": "2022-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.033, "date": "2022-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8930289735, "date": "2022-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.964, "date": "2022-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8949561661, "date": "2022-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.889, "date": "2022-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8968833588, "date": "2022-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.836, "date": "2022-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.8988105514, "date": "2022-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.224, "date": "2022-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9007377441, "date": "2022-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.339, "date": "2022-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9026649367, "date": "2022-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.341, "date": "2022-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9045921294, "date": "2022-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.317, "date": "2022-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.906519322, "date": "2022-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.333, "date": "2022-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9084465147, "date": "2022-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.313, "date": "2022-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9103737073, "date": "2022-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.233, "date": "2022-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9123009, "date": "2022-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.141, "date": "2022-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9142280926, "date": "2022-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.967, "date": "2022-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9161552852, "date": "2022-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.754, "date": "2022-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9180824779, "date": "2022-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.596, "date": "2022-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9200096705, "date": "2022-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.537, "date": "2022-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9219368632, "date": "2022-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.583, "date": "2023-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9238640558, "date": "2023-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.549, "date": "2023-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9257912485, "date": "2023-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.524, "date": "2023-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9277184411, "date": "2023-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.604, "date": "2023-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9296456338, "date": "2023-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.622, "date": "2023-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9315728264, "date": "2023-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.539, "date": "2023-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9335000191, "date": "2023-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.444, "date": "2023-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9354272117, "date": "2023-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.376, "date": "2023-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9373544044, "date": "2023-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.294, "date": "2023-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.939281597, "date": "2023-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.282, "date": "2023-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9412087897, "date": "2023-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.247, "date": "2023-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9431359823, "date": "2023-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.185, "date": "2023-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.945063175, "date": "2023-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.128, "date": "2023-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9469903676, "date": "2023-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.105, "date": "2023-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9489175603, "date": "2023-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.098, "date": "2023-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9508447529, "date": "2023-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.116, "date": "2023-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9527719456, "date": "2023-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.077, "date": "2023-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9546991382, "date": "2023-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.018, "date": "2023-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9566263309, "date": "2023-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.922, "date": "2023-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9585535235, "date": "2023-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.897, "date": "2023-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9604807161, "date": "2023-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.883, "date": "2023-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9624079088, "date": "2023-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.855, "date": "2023-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9643351014, "date": "2023-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.797, "date": "2023-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9662622941, "date": "2023-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.794, "date": "2023-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9681894867, "date": "2023-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.815, "date": "2023-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9701166794, "date": "2023-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.801, "date": "2023-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.972043872, "date": "2023-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.767, "date": "2023-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9739710647, "date": "2023-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.806, "date": "2023-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9758982573, "date": "2023-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.806, "date": "2023-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.97782545, "date": "2023-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.905, "date": "2023-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9797526426, "date": "2023-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.127, "date": "2023-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9816798353, "date": "2023-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.239, "date": "2023-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9836070279, "date": "2023-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.378, "date": "2023-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9855342206, "date": "2023-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.389, "date": "2023-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9874614132, "date": "2023-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.475, "date": "2023-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9893886059, "date": "2023-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.492, "date": "2023-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9913157985, "date": "2023-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.54, "date": "2023-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9932429912, "date": "2023-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.633, "date": "2023-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9951701838, "date": "2023-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.586, "date": "2023-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9970973765, "date": "2023-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.593, "date": "2023-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.9990245691, "date": "2023-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.498, "date": "2023-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0009517618, "date": "2023-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.444, "date": "2023-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0028789544, "date": "2023-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.545, "date": "2023-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.004806147, "date": "2023-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.454, "date": "2023-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0067333397, "date": "2023-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.366, "date": "2023-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0086605323, "date": "2023-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.294, "date": "2023-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.010587725, "date": "2023-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.209, "date": "2023-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0125149176, "date": "2023-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.146, "date": "2023-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0144421103, "date": "2023-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.092, "date": "2023-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0163693029, "date": "2023-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.987, "date": "2023-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0182964956, "date": "2023-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2023-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0202236882, "date": "2023-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.914, "date": "2023-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0221508809, "date": "2023-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.876, "date": "2024-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0240780735, "date": "2024-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.828, "date": "2024-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0260052662, "date": "2024-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.863, "date": "2024-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0279324588, "date": "2024-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.838, "date": "2024-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0298596515, "date": "2024-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.867, "date": "2024-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0317868441, "date": "2024-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.899, "date": "2024-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0337140368, "date": "2024-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.109, "date": "2024-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0356412294, "date": "2024-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.109, "date": "2024-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0375684221, "date": "2024-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.058, "date": "2024-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0394956147, "date": "2024-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.022, "date": "2024-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0414228074, "date": "2024-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.004, "date": "2024-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.04335, "date": "2024-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.028, "date": "2024-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0452771927, "date": "2024-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.034, "date": "2024-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0472043853, "date": "2024-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.996, "date": "2024-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0491315779, "date": "2024-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.061, "date": "2024-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0510587706, "date": "2024-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.015, "date": "2024-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0529859632, "date": "2024-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.992, "date": "2024-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0549131559, "date": "2024-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.947, "date": "2024-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0568403485, "date": "2024-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2024-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0587675412, "date": "2024-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.848, "date": "2024-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0606947338, "date": "2024-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.789, "date": "2024-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0626219265, "date": "2024-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.758, "date": "2024-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0645491191, "date": "2024-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.726, "date": "2024-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0664763118, "date": "2024-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.658, "date": "2024-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0684035044, "date": "2024-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.735, "date": "2024-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0703306971, "date": "2024-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.769, "date": "2024-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0722578897, "date": "2024-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.813, "date": "2024-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0741850824, "date": "2024-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.865, "date": "2024-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.076112275, "date": "2024-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.826, "date": "2024-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0780394677, "date": "2024-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.779, "date": "2024-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0799666603, "date": "2024-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.768, "date": "2024-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.081893853, "date": "2024-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.755, "date": "2024-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0838210456, "date": "2024-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.704, "date": "2024-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0857482383, "date": "2024-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.688, "date": "2024-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0876754309, "date": "2024-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.651, "date": "2024-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0896026236, "date": "2024-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.625, "date": "2024-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0915298162, "date": "2024-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.555, "date": "2024-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0934570088, "date": "2024-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.526, "date": "2024-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0953842015, "date": "2024-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.539, "date": "2024-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0973113941, "date": "2024-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.544, "date": "2024-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.0992385868, "date": "2024-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.584, "date": "2024-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1011657794, "date": "2024-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.631, "date": "2024-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1030929721, "date": "2024-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.553, "date": "2024-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1050201647, "date": "2024-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.573, "date": "2024-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1069473574, "date": "2024-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.536, "date": "2024-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.10887455, "date": "2024-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.521, "date": "2024-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1108017427, "date": "2024-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.491, "date": "2024-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1127289353, "date": "2024-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.539, "date": "2024-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.114656128, "date": "2024-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.54, "date": "2024-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1165833206, "date": "2024-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.458, "date": "2024-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1185105133, "date": "2024-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.494, "date": "2024-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1204377059, "date": "2024-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.476, "date": "2024-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1223648986, "date": "2024-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.503, "date": "2024-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1242920912, "date": "2024-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.561, "date": "2025-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1262192839, "date": "2025-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.602, "date": "2025-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1281464765, "date": "2025-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.715, "date": "2025-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1300736692, "date": "2025-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.659, "date": "2025-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1320008618, "date": "2025-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.66, "date": "2025-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1339280545, "date": "2025-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.665, "date": "2025-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1358552471, "date": "2025-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.677, "date": "2025-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1377824397, "date": "2025-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.697, "date": "2025-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1397096324, "date": "2025-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.635, "date": "2025-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.141636825, "date": "2025-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.582, "date": "2025-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1435640177, "date": "2025-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.549, "date": "2025-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1454912103, "date": "2025-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.567, "date": "2025-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.147418403, "date": "2025-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.592, "date": "2025-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1493455956, "date": "2025-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.639, "date": "2025-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1512727883, "date": "2025-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.579, "date": "2025-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1531999809, "date": "2025-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.534, "date": "2025-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1551271736, "date": "2025-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.514, "date": "2025-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1570543662, "date": "2025-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.497, "date": "2025-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1589815589, "date": "2025-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.476, "date": "2025-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1609087515, "date": "2025-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.536, "date": "2025-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1628359442, "date": "2025-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.487, "date": "2025-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1647631368, "date": "2025-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.451, "date": "2025-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1666903295, "date": "2025-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.471, "date": "2025-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1686175221, "date": "2025-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.571, "date": "2025-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1705447148, "date": "2025-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.775, "date": "2025-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 4.1724719074, "date": "2025-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.1760509795, "date": "2025-07-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1779781721, "date": "2025-07-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1799053648, "date": "2025-07-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1818325574, "date": "2025-07-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1837597501, "date": "2025-08-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1856869427, "date": "2025-08-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1876141354, "date": "2025-08-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.189541328, "date": "2025-08-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1914685206, "date": "2025-08-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1933957133, "date": "2025-09-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1953229059, "date": "2025-09-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1972500986, "date": "2025-09-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.1991772912, "date": "2025-09-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2011044839, "date": "2025-10-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2030316765, "date": "2025-10-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2049588692, "date": "2025-10-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2068860618, "date": "2025-10-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2088132545, "date": "2025-11-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2107404471, "date": "2025-11-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2126676398, "date": "2025-11-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2145948324, "date": "2025-11-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2165220251, "date": "2025-11-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2184492177, "date": "2025-12-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2203764104, "date": "2025-12-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.222303603, "date": "2025-12-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2242307957, "date": "2025-12-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2261579883, "date": "2026-01-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.228085181, "date": "2026-01-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2300123736, "date": "2026-01-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2319395663, "date": "2026-01-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2338667589, "date": "2026-02-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2357939515, "date": "2026-02-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2377211442, "date": "2026-02-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2396483368, "date": "2026-02-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2415755295, "date": "2026-03-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2435027221, "date": "2026-03-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2454299148, "date": "2026-03-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2473571074, "date": "2026-03-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2492843001, "date": "2026-03-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2512114927, "date": "2026-04-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2531386854, "date": "2026-04-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.255065878, "date": "2026-04-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2569930707, "date": "2026-04-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2589202633, "date": "2026-05-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.260847456, "date": "2026-05-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2627746486, "date": "2026-05-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2647018413, "date": "2026-05-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2666290339, "date": "2026-05-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2685562266, "date": "2026-06-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2704834192, "date": "2026-06-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2724106119, "date": "2026-06-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2743378045, "date": "2026-06-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2762649972, "date": "2026-07-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2781921898, "date": "2026-07-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2801193824, "date": "2026-07-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2820465751, "date": "2026-07-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2839737677, "date": "2026-08-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2859009604, "date": "2026-08-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.287828153, "date": "2026-08-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2897553457, "date": "2026-08-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2916825383, "date": "2026-08-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.293609731, "date": "2026-09-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2955369236, "date": "2026-09-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2974641163, "date": "2026-09-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.2993913089, "date": "2026-09-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3013185016, "date": "2026-10-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3032456942, "date": "2026-10-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3051728869, "date": "2026-10-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3071000795, "date": "2026-10-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3090272722, "date": "2026-11-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3109544648, "date": "2026-11-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3128816575, "date": "2026-11-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3148088501, "date": "2026-11-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3167360428, "date": "2026-11-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3186632354, "date": "2026-12-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3205904281, "date": "2026-12-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3225176207, "date": "2026-12-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3244448133, "date": "2026-12-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.326372006, "date": "2027-01-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3282991986, "date": "2027-01-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3302263913, "date": "2027-01-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3321535839, "date": "2027-01-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3340807766, "date": "2027-01-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3360079692, "date": "2027-02-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3379351619, "date": "2027-02-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3398623545, "date": "2027-02-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3417895472, "date": "2027-02-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3437167398, "date": "2027-03-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3456439325, "date": "2027-03-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3475711251, "date": "2027-03-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3494983178, "date": "2027-03-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3514255104, "date": "2027-04-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3533527031, "date": "2027-04-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3552798957, "date": "2027-04-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3572070884, "date": "2027-04-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.359134281, "date": "2027-05-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3610614737, "date": "2027-05-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3629886663, "date": "2027-05-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.364915859, "date": "2027-05-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3668430516, "date": "2027-05-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3687702442, "date": "2027-06-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3706974369, "date": "2027-06-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3726246295, "date": "2027-06-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3745518222, "date": "2027-06-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3764790148, "date": "2027-07-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3784062075, "date": "2027-07-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3803334001, "date": "2027-07-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3822605928, "date": "2027-07-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3841877854, "date": "2027-08-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3861149781, "date": "2027-08-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3880421707, "date": "2027-08-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3899693634, "date": "2027-08-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.391896556, "date": "2027-08-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3938237487, "date": "2027-09-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3957509413, "date": "2027-09-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.397678134, "date": "2027-09-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.3996053266, "date": "2027-09-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4015325193, "date": "2027-10-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4034597119, "date": "2027-10-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4053869046, "date": "2027-10-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4073140972, "date": "2027-10-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4092412899, "date": "2027-10-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4111684825, "date": "2027-11-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4130956751, "date": "2027-11-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4150228678, "date": "2027-11-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4169500604, "date": "2027-11-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4188772531, "date": "2027-12-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4208044457, "date": "2027-12-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4227316384, "date": "2027-12-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.424658831, "date": "2027-12-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4265860237, "date": "2028-01-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4285132163, "date": "2028-01-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.430440409, "date": "2028-01-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4323676016, "date": "2028-01-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4342947943, "date": "2028-01-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4362219869, "date": "2028-02-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4381491796, "date": "2028-02-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4400763722, "date": "2028-02-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4420035649, "date": "2028-02-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4439307575, "date": "2028-03-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4458579502, "date": "2028-03-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4477851428, "date": "2028-03-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4497123355, "date": "2028-03-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4516395281, "date": "2028-04-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4535667208, "date": "2028-04-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4554939134, "date": "2028-04-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.457421106, "date": "2028-04-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4593482987, "date": "2028-04-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4612754913, "date": "2028-05-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.463202684, "date": "2028-05-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4651298766, "date": "2028-05-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4670570693, "date": "2028-05-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4689842619, "date": "2028-06-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4709114546, "date": "2028-06-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4728386472, "date": "2028-06-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4747658399, "date": "2028-06-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4766930325, "date": "2028-07-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4786202252, "date": "2028-07-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4805474178, "date": "2028-07-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4824746105, "date": "2028-07-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4844018031, "date": "2028-07-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4863289958, "date": "2028-08-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4882561884, "date": "2028-08-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4901833811, "date": "2028-08-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4921105737, "date": "2028-08-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4940377664, "date": "2028-09-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.495964959, "date": "2028-09-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4978921517, "date": "2028-09-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.4998193443, "date": "2028-09-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5017465369, "date": "2028-10-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5036737296, "date": "2028-10-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5056009222, "date": "2028-10-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5075281149, "date": "2028-10-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5094553075, "date": "2028-10-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5113825002, "date": "2028-11-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5133096928, "date": "2028-11-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5152368855, "date": "2028-11-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5171640781, "date": "2028-11-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5190912708, "date": "2028-12-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5210184634, "date": "2028-12-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5229456561, "date": "2028-12-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5248728487, "date": "2028-12-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5268000414, "date": "2028-12-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.528727234, "date": "2029-01-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5306544267, "date": "2029-01-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5325816193, "date": "2029-01-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.534508812, "date": "2029-01-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5364360046, "date": "2029-02-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5383631973, "date": "2029-02-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5402903899, "date": "2029-02-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5422175826, "date": "2029-02-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5441447752, "date": "2029-03-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5460719679, "date": "2029-03-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5479991605, "date": "2029-03-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5499263531, "date": "2029-03-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5518535458, "date": "2029-04-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5537807384, "date": "2029-04-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5557079311, "date": "2029-04-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5576351237, "date": "2029-04-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5595623164, "date": "2029-04-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.561489509, "date": "2029-05-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5634167017, "date": "2029-05-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5653438943, "date": "2029-05-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.567271087, "date": "2029-05-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5691982796, "date": "2029-06-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5711254723, "date": "2029-06-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5730526649, "date": "2029-06-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5749798576, "date": "2029-06-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5769070502, "date": "2029-07-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5788342429, "date": "2029-07-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5807614355, "date": "2029-07-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5826886282, "date": "2029-07-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5846158208, "date": "2029-07-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5865430135, "date": "2029-08-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5884702061, "date": "2029-08-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5903973988, "date": "2029-08-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5923245914, "date": "2029-08-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.594251784, "date": "2029-09-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5961789767, "date": "2029-09-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.5981061693, "date": "2029-09-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.600033362, "date": "2029-09-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6019605546, "date": "2029-09-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6038877473, "date": "2029-10-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6058149399, "date": "2029-10-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6077421326, "date": "2029-10-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6096693252, "date": "2029-10-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6115965179, "date": "2029-11-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6135237105, "date": "2029-11-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6154509032, "date": "2029-11-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6173780958, "date": "2029-11-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6193052885, "date": "2029-12-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6212324811, "date": "2029-12-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6231596738, "date": "2029-12-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6250868664, "date": "2029-12-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6270140591, "date": "2029-12-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6289412517, "date": "2030-01-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6308684444, "date": "2030-01-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.632795637, "date": "2030-01-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6347228297, "date": "2030-01-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6366500223, "date": "2030-02-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6385772149, "date": "2030-02-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6405044076, "date": "2030-02-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6424316002, "date": "2030-02-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6443587929, "date": "2030-03-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6462859855, "date": "2030-03-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6482131782, "date": "2030-03-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6501403708, "date": "2030-03-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6520675635, "date": "2030-03-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6539947561, "date": "2030-04-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6559219488, "date": "2030-04-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6578491414, "date": "2030-04-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6597763341, "date": "2030-04-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6617035267, "date": "2030-05-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6636307194, "date": "2030-05-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.665557912, "date": "2030-05-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6674851047, "date": "2030-05-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6694122973, "date": "2030-06-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.67133949, "date": "2030-06-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6732666826, "date": "2030-06-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 4.6751938753, "date": "2030-06-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 1.191, "date": "1990-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8674998196, "date": "1990-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.245, "date": "1990-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8691806732, "date": "1990-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.242, "date": "1990-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8708615267, "date": "1990-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.252, "date": "1990-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8725423803, "date": "1990-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.266, "date": "1990-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8742232339, "date": "1990-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.272, "date": "1990-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8759040875, "date": "1990-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.321, "date": "1990-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8775849411, "date": "1990-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.333, "date": "1990-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8792657946, "date": "1990-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.339, "date": "1990-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8809466482, "date": "1990-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.345, "date": "1990-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8826275018, "date": "1990-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.339, "date": "1990-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8843083554, "date": "1990-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.334, "date": "1990-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.885989209, "date": "1990-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.328, "date": "1990-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8876700625, "date": "1990-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.323, "date": "1990-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8893509161, "date": "1990-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.311, "date": "1990-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8910317697, "date": "1990-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.341, "date": "1990-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8927126233, "date": "1990-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.192, "date": "1991-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9044785984, "date": "1991-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.168, "date": "1991-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9061594519, "date": "1991-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.139, "date": "1991-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9078403055, "date": "1991-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1991-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9095211591, "date": "1991-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.078, "date": "1991-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9112020127, "date": "1991-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.054, "date": "1991-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9128828663, "date": "1991-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.025, "date": "1991-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9145637198, "date": "1991-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.045, "date": "1991-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9162445734, "date": "1991-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.043, "date": "1991-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.917925427, "date": "1991-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.047, "date": "1991-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9196062806, "date": "1991-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.052, "date": "1991-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9212871342, "date": "1991-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.066, "date": "1991-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9229679878, "date": "1991-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.069, "date": "1991-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9246488413, "date": "1991-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.09, "date": "1991-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9263296949, "date": "1991-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1991-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9280105485, "date": "1991-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.113, "date": "1991-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9296914021, "date": "1991-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1991-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9313722557, "date": "1991-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.129, "date": "1991-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9330531092, "date": "1991-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.14, "date": "1991-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9347339628, "date": "1991-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.138, "date": "1991-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9364148164, "date": "1991-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.135, "date": "1991-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.93809567, "date": "1991-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1991-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9397765236, "date": "1991-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1991-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9414573771, "date": "1991-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1991-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9431382307, "date": "1991-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1991-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9448190843, "date": "1991-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.094, "date": "1991-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9464999379, "date": "1991-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9481807915, "date": "1991-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9498616451, "date": "1991-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1991-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9515424986, "date": "1991-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.112, "date": "1991-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9532233522, "date": "1991-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1991-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9549042058, "date": "1991-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1991-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9565850594, "date": "1991-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.127, "date": "1991-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.958265913, "date": "1991-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1991-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9599467665, "date": "1991-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.11, "date": "1991-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9616276201, "date": "1991-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.097, "date": "1991-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9633084737, "date": "1991-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.092, "date": "1991-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9649893273, "date": "1991-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1991-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9666701809, "date": "1991-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.084, "date": "1991-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9683510344, "date": "1991-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1991-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.970031888, "date": "1991-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9717127416, "date": "1991-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9733935952, "date": "1991-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.102, "date": "1991-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9750744488, "date": "1991-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1991-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9767553024, "date": "1991-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1991-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9784361559, "date": "1991-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1991-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9801170095, "date": "1991-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9817978631, "date": "1991-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1991-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9834787167, "date": "1991-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.063, "date": "1991-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9851595703, "date": "1991-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.053, "date": "1991-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9868404238, "date": "1991-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.042, "date": "1992-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9885212774, "date": "1992-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.026, "date": "1992-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.990202131, "date": "1992-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.014, "date": "1992-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9918829846, "date": "1992-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.006, "date": "1992-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9935638382, "date": "1992-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.995, "date": "1992-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9952446917, "date": "1992-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.004, "date": "1992-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9969255453, "date": "1992-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.011, "date": "1992-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9986063989, "date": "1992-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.014, "date": "1992-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0002872525, "date": "1992-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.012, "date": "1992-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0019681061, "date": "1992-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.013, "date": "1992-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0036489597, "date": "1992-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.01, "date": "1992-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0053298132, "date": "1992-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.015, "date": "1992-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0070106668, "date": "1992-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.013, "date": "1992-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0086915204, "date": "1992-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.026, "date": "1992-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.010372374, "date": "1992-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.051, "date": "1992-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0120532276, "date": "1992-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.058, "date": "1992-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0137340811, "date": "1992-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.072, "date": "1992-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0154149347, "date": "1992-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1992-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0170957883, "date": "1992-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.102, "date": "1992-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0187766419, "date": "1992-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1992-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0204574955, "date": "1992-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1992-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.022138349, "date": "1992-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.128, "date": "1992-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0238192026, "date": "1992-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.143, "date": "1992-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0255000562, "date": "1992-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.151, "date": "1992-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0271809098, "date": "1992-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.153, "date": "1992-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0288617634, "date": "1992-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.149, "date": "1992-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.030542617, "date": "1992-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.147, "date": "1992-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0322234705, "date": "1992-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.139, "date": "1992-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0339043241, "date": "1992-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.132, "date": "1992-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0355851777, "date": "1992-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.128, "date": "1992-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0372660313, "date": "1992-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1992-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0389468849, "date": "1992-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1992-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0406277384, "date": "1992-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.116, "date": "1992-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.042308592, "date": "1992-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1992-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0439894456, "date": "1992-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1992-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0456702992, "date": "1992-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1992-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0473511528, "date": "1992-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1992-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0490320063, "date": "1992-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1992-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0507128599, "date": "1992-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1992-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0523937135, "date": "1992-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.115, "date": "1992-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0540745671, "date": "1992-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.115, "date": "1992-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0557554207, "date": "1992-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.113, "date": "1992-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0574362743, "date": "1992-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.113, "date": "1992-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0591171278, "date": "1992-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1992-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0607979814, "date": "1992-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1992-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.062478835, "date": "1992-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.112, "date": "1992-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0641596886, "date": "1992-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1992-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0658405422, "date": "1992-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1992-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0675213957, "date": "1992-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1992-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0692022493, "date": "1992-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.078, "date": "1992-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0708831029, "date": "1992-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.074, "date": "1992-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0725639565, "date": "1992-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.069, "date": "1992-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0742448101, "date": "1992-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1993-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0759256636, "date": "1993-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.066, "date": "1993-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0776065172, "date": "1993-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.061, "date": "1993-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0792873708, "date": "1993-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.055, "date": "1993-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0809682244, "date": "1993-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.055, "date": "1993-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.082649078, "date": "1993-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.062, "date": "1993-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0843299316, "date": "1993-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.053, "date": "1993-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0860107851, "date": "1993-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.047, "date": "1993-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0876916387, "date": "1993-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.042, "date": "1993-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0893724923, "date": "1993-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.048, "date": "1993-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0910533459, "date": "1993-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.058, "date": "1993-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0927341995, "date": "1993-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.056, "date": "1993-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.094415053, "date": "1993-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.057, "date": "1993-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0960959066, "date": "1993-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.068, "date": "1993-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0977767602, "date": "1993-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.079, "date": "1993-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0994576138, "date": "1993-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.079, "date": "1993-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1011384674, "date": "1993-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.086, "date": "1993-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1028193209, "date": "1993-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.086, "date": "1993-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1045001745, "date": "1993-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.097, "date": "1993-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1061810281, "date": "1993-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1993-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1078618817, "date": "1993-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1993-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1095427353, "date": "1993-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.107, "date": "1993-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1112235889, "date": "1993-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1993-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1129044424, "date": "1993-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.101, "date": "1993-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.114585296, "date": "1993-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.095, "date": "1993-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1162661496, "date": "1993-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1993-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1179470032, "date": "1993-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.086, "date": "1993-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1196278568, "date": "1993-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.081, "date": "1993-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1213087103, "date": "1993-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1993-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1229895639, "date": "1993-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.069, "date": "1993-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1246704175, "date": "1993-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.062, "date": "1993-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1263512711, "date": "1993-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.06, "date": "1993-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1280321247, "date": "1993-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.059, "date": "1993-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1297129782, "date": "1993-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1993-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1313938318, "date": "1993-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.062, "date": "1993-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1330746854, "date": "1993-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.055, "date": "1993-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.134755539, "date": "1993-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.051, "date": "1993-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1364363926, "date": "1993-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.045, "date": "1993-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1381172462, "date": "1993-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.047, "date": "1993-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1397980997, "date": "1993-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.092, "date": "1993-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1414789533, "date": "1993-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.09, "date": "1993-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1431598069, "date": "1993-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.093, "date": "1993-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1448406605, "date": "1993-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.092, "date": "1993-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1465215141, "date": "1993-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.084, "date": "1993-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1482023676, "date": "1993-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1993-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1498832212, "date": "1993-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.064, "date": "1993-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1515640748, "date": "1993-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.058, "date": "1993-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1532449284, "date": "1993-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.051, "date": "1993-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.154925782, "date": "1993-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.036, "date": "1993-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1566066355, "date": "1993-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.018, "date": "1993-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1582874891, "date": "1993-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.003, "date": "1993-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1599683427, "date": "1993-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.999, "date": "1993-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1616491963, "date": "1993-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.992, "date": "1994-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1633300499, "date": "1994-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.995, "date": "1994-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1650109035, "date": "1994-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.001, "date": "1994-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.166691757, "date": "1994-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.999, "date": "1994-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1683726106, "date": "1994-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.005, "date": "1994-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1700534642, "date": "1994-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.007, "date": "1994-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1717343178, "date": "1994-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.016, "date": "1994-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1734151714, "date": "1994-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.009, "date": "1994-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1750960249, "date": "1994-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.004, "date": "1994-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1767768785, "date": "1994-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.007, "date": "1994-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1784577321, "date": "1994-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.005, "date": "1994-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1801385857, "date": "1994-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.007, "date": "1994-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1818194393, "date": "1994-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.012, "date": "1994-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1835002928, "date": "1994-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.011, "date": "1994-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1851811464, "date": "1994-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.028, "date": "1994-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.186862, "date": "1994-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.033, "date": "1994-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1885428536, "date": "1994-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.037, "date": "1994-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1902237072, "date": "1994-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.04, "date": "1994-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1919045608, "date": "1994-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.045, "date": "1994-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1935854143, "date": "1994-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.046, "date": "1994-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1952662679, "date": "1994-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.05, "date": "1994-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1969471215, "date": "1994-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.056, "date": "1994-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1986279751, "date": "1994-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1994-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2003088287, "date": "1994-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.073, "date": "1994-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2019896822, "date": "1994-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.079, "date": "1994-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2036705358, "date": "1994-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.095, "date": "1994-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2053513894, "date": "1994-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.097, "date": "1994-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.207032243, "date": "1994-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.103, "date": "1994-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2087130966, "date": "1994-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1994-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2103939501, "date": "1994-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1994-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2120748037, "date": "1994-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1994-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2137556573, "date": "1994-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.157, "date": "1994-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2154365109, "date": "1994-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.161, "date": "1994-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2171173645, "date": "1994-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.165, "date": "1994-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2187982181, "date": "1994-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.161, "date": "1994-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2204790716, "date": "1994-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.156, "date": "1994-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2221599252, "date": "1994-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.15, "date": "1994-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2238407788, "date": "1994-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.14, "date": "1994-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2255216324, "date": "1994-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.129, "date": "1994-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.227202486, "date": "1994-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1994-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2288833395, "date": "1994-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1994-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2305641931, "date": "1994-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1994-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2322450467, "date": "1994-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.107, "date": "1994-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2339259003, "date": "1994-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1994-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2356067539, "date": "1994-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1994-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2372876074, "date": "1994-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1994-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.238968461, "date": "1994-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.113, "date": "1994-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2406493146, "date": "1994-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2025833333, "date": "1994-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2423301682, "date": "1994-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2031666667, "date": "1994-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2440110218, "date": "1994-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.19275, "date": "1994-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2456918754, "date": "1994-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1849166667, "date": "1994-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2473727289, "date": "1994-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1778333333, "date": "1994-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2490535825, "date": "1994-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1921666667, "date": "1995-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2507344361, "date": "1995-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1970833333, "date": "1995-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2524152897, "date": "1995-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.19125, "date": "1995-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2540961433, "date": "1995-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1944166667, "date": "1995-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2557769968, "date": "1995-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.192, "date": "1995-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2574578504, "date": "1995-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.187, "date": "1995-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.259138704, "date": "1995-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1839166667, "date": "1995-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2608195576, "date": "1995-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1785, "date": "1995-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2625004112, "date": "1995-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.182, "date": "1995-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2641812647, "date": "1995-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.18225, "date": "1995-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2658621183, "date": "1995-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.17525, "date": "1995-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2675429719, "date": "1995-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.174, "date": "1995-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2692238255, "date": "1995-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1771666667, "date": "1995-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2709046791, "date": "1995-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1860833333, "date": "1995-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2725855327, "date": "1995-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2000833333, "date": "1995-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2742663862, "date": "1995-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2124166667, "date": "1995-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2759472398, "date": "1995-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2325833333, "date": "1995-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2776280934, "date": "1995-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.24275, "date": "1995-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.279308947, "date": "1995-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2643333333, "date": "1995-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2809898006, "date": "1995-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.274, "date": "1995-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2826706541, "date": "1995-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2905833333, "date": "1995-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2843515077, "date": "1995-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.29425, "date": "1995-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2860323613, "date": "1995-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2939166667, "date": "1995-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2877132149, "date": "1995-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2913333333, "date": "1995-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2893940685, "date": "1995-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.28575, "date": "1995-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.291074922, "date": "1995-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2798333333, "date": "1995-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2927557756, "date": "1995-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2730833333, "date": "1995-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2944366292, "date": "1995-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2644166667, "date": "1995-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2961174828, "date": "1995-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2545833333, "date": "1995-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2977983364, "date": "1995-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2445833333, "date": "1995-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.29947919, "date": "1995-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2321666667, "date": "1995-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3011600435, "date": "1995-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2270833333, "date": "1995-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3028408971, "date": "1995-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2228333333, "date": "1995-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3045217507, "date": "1995-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2206666667, "date": "1995-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3062026043, "date": "1995-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.21325, "date": "1995-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3078834579, "date": "1995-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2110833333, "date": "1995-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3095643114, "date": "1995-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2075833333, "date": "1995-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.311245165, "date": "1995-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2063333333, "date": "1995-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3129260186, "date": "1995-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2041666667, "date": "1995-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3146068722, "date": "1995-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2005833333, "date": "1995-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3162877258, "date": "1995-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1949166667, "date": "1995-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3179685793, "date": "1995-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1870833333, "date": "1995-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3196494329, "date": "1995-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1790833333, "date": "1995-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3213302865, "date": "1995-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1693333333, "date": "1995-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3230111401, "date": "1995-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.16475, "date": "1995-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3246919937, "date": "1995-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1621666667, "date": "1995-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3263728473, "date": "1995-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.158, "date": "1995-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3280537008, "date": "1995-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1574166667, "date": "1995-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3297345544, "date": "1995-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1586666667, "date": "1995-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.331415408, "date": "1995-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1598333333, "date": "1995-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3330962616, "date": "1995-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1716666667, "date": "1995-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3347771152, "date": "1995-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1763333333, "date": "1995-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3364579687, "date": "1995-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.178, "date": "1996-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3381388223, "date": "1996-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1848333333, "date": "1996-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3398196759, "date": "1996-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1918333333, "date": "1996-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3415005295, "date": "1996-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.18725, "date": "1996-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3431813831, "date": "1996-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.18275, "date": "1996-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3448622366, "date": "1996-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1796666667, "date": "1996-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3465430902, "date": "1996-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1765833333, "date": "1996-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3482239438, "date": "1996-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1820833333, "date": "1996-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3499047974, "date": "1996-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.20075, "date": "1996-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.351585651, "date": "1996-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.216, "date": "1996-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3532665046, "date": "1996-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2185, "date": "1996-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3549473581, "date": "1996-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2275833333, "date": "1996-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3566282117, "date": "1996-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2536666667, "date": "1996-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3583090653, "date": "1996-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2685833333, "date": "1996-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3599899189, "date": "1996-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2933333333, "date": "1996-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3616707725, "date": "1996-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3344166667, "date": "1996-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.363351626, "date": "1996-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.35825, "date": "1996-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3650324796, "date": "1996-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3765833333, "date": "1996-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3667133332, "date": "1996-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3811666667, "date": "1996-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3683941868, "date": "1996-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.38375, "date": "1996-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3700750404, "date": "1996-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3891666667, "date": "1996-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3717558939, "date": "1996-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.37975, "date": "1996-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3734367475, "date": "1996-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3785833333, "date": "1996-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3751176011, "date": "1996-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.36975, "date": "1996-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3767984547, "date": "1996-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3625, "date": "1996-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3784793083, "date": "1996-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3511666667, "date": "1996-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3801601619, "date": "1996-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.34025, "date": "1996-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3818410154, "date": "1996-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3360833333, "date": "1996-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.383521869, "date": "1996-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.332, "date": "1996-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3852027226, "date": "1996-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3288333333, "date": "1996-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3868835762, "date": "1996-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3199166667, "date": "1996-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3885644298, "date": "1996-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.30975, "date": "1996-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3902452833, "date": "1996-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3026666667, "date": "1996-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3919261369, "date": "1996-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3000833333, "date": "1996-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3936069905, "date": "1996-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3024166667, "date": "1996-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3952878441, "date": "1996-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2905, "date": "1996-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3969686977, "date": "1996-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2938333333, "date": "1996-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3986495512, "date": "1996-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2966666667, "date": "1996-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4003304048, "date": "1996-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.29675, "date": "1996-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4020112584, "date": "1996-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2916666667, "date": "1996-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.403692112, "date": "1996-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2855, "date": "1996-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4053729656, "date": "1996-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2918333333, "date": "1996-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4070538192, "date": "1996-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2916666667, "date": "1996-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4087346727, "date": "1996-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2986666667, "date": "1996-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4104155263, "date": "1996-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3048333333, "date": "1996-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4120963799, "date": "1996-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3065833333, "date": "1996-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4137772335, "date": "1996-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.31575, "date": "1996-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4154580871, "date": "1996-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.32175, "date": "1996-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4171389406, "date": "1996-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3219166667, "date": "1996-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4188197942, "date": "1996-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.32275, "date": "1996-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4205006478, "date": "1996-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.32075, "date": "1996-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4221815014, "date": "1996-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3175, "date": "1996-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.423862355, "date": "1996-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3154166667, "date": "1996-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4255432085, "date": "1996-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.31525, "date": "1997-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4272240621, "date": "1997-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3293333333, "date": "1997-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4289049157, "date": "1997-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3296666667, "date": "1997-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4305857693, "date": "1997-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3268333333, "date": "1997-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4322666229, "date": "1997-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3263333333, "date": "1997-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4339474765, "date": "1997-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3243333333, "date": "1997-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.43562833, "date": "1997-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3195, "date": "1997-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4373091836, "date": "1997-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3165833333, "date": "1997-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4389900372, "date": "1997-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.30825, "date": "1997-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4406708908, "date": "1997-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3035833333, "date": "1997-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4423517444, "date": "1997-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2974166667, "date": "1997-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4440325979, "date": "1997-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2995833333, "date": "1997-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4457134515, "date": "1997-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2985833333, "date": "1997-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4473943051, "date": "1997-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3015833333, "date": "1997-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4490751587, "date": "1997-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2985833333, "date": "1997-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4507560123, "date": "1997-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2971666667, "date": "1997-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4524368659, "date": "1997-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2928333333, "date": "1997-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4541177194, "date": "1997-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2909166667, "date": "1997-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.455798573, "date": "1997-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2889166667, "date": "1997-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4574794266, "date": "1997-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2956666667, "date": "1997-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4591602802, "date": "1997-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3023333333, "date": "1997-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4608411338, "date": "1997-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3034166667, "date": "1997-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4625219873, "date": "1997-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.298, "date": "1997-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4642028409, "date": "1997-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2903333333, "date": "1997-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4658836945, "date": "1997-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2814166667, "date": "1997-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4675645481, "date": "1997-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2731666667, "date": "1997-06-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4692454017, "date": "1997-06-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.26925, "date": "1997-07-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4709262552, "date": "1997-07-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.26475, "date": "1997-07-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4726071088, "date": "1997-07-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.26675, "date": "1997-07-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4742879624, "date": "1997-07-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2615833333, "date": "1997-07-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.475968816, "date": "1997-07-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.282, "date": "1997-08-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4776496696, "date": "1997-08-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3171666667, "date": "1997-08-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4793305232, "date": "1997-08-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3226666667, "date": "1997-08-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4810113767, "date": "1997-08-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3403333333, "date": "1997-08-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4826922303, "date": "1997-08-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3423333333, "date": "1997-09-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4843730839, "date": "1997-09-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3435833333, "date": "1997-09-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4860539375, "date": "1997-09-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3390833333, "date": "1997-09-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4877347911, "date": "1997-09-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3289166667, "date": "1997-09-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4894156446, "date": "1997-09-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3160833333, "date": "1997-09-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4910964982, "date": "1997-09-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3143333333, "date": "1997-10-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4927773518, "date": "1997-10-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3075, "date": "1997-10-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4944582054, "date": "1997-10-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2989166667, "date": "1997-10-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.496139059, "date": "1997-10-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2889166667, "date": "1997-10-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4978199125, "date": "1997-10-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2814166667, "date": "1997-11-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4995007661, "date": "1997-11-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2804166667, "date": "1997-11-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5011816197, "date": "1997-11-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.27175, "date": "1997-11-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5028624733, "date": "1997-11-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2656666667, "date": "1997-11-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5045433269, "date": "1997-11-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2570833333, "date": "1997-12-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5062241805, "date": "1997-12-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2458333333, "date": "1997-12-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.507905034, "date": "1997-12-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2355833333, "date": "1997-12-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5095858876, "date": "1997-12-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2255, "date": "1997-12-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5112667412, "date": "1997-12-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2175833333, "date": "1997-12-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5129475948, "date": "1997-12-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2095, "date": "1998-01-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5146284484, "date": "1998-01-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1999166667, "date": "1998-01-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5163093019, "date": "1998-01-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1858333333, "date": "1998-01-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5179901555, "date": "1998-01-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1703333333, "date": "1998-01-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5196710091, "date": "1998-01-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1635833333, "date": "1998-02-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5213518627, "date": "1998-02-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1553333333, "date": "1998-02-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5230327163, "date": "1998-02-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1394166667, "date": "1998-02-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5247135698, "date": "1998-02-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1393333333, "date": "1998-02-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5263944234, "date": "1998-02-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1236666667, "date": "1998-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.528075277, "date": "1998-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1116666667, "date": "1998-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5297561306, "date": "1998-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1015, "date": "1998-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5314369842, "date": "1998-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.093, "date": "1998-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5331178378, "date": "1998-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1211666667, "date": "1998-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5347986913, "date": "1998-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1190833333, "date": "1998-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5364795449, "date": "1998-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1186666667, "date": "1998-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5381603985, "date": "1998-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1206666667, "date": "1998-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5398412521, "date": "1998-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1316666667, "date": "1998-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5415221057, "date": "1998-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1455, "date": "1998-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5432029592, "date": "1998-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1580833333, "date": "1998-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5448838128, "date": "1998-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1619166667, "date": "1998-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5465646664, "date": "1998-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1605833333, "date": "1998-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.54824552, "date": "1998-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1571666667, "date": "1998-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5499263736, "date": "1998-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1628333333, "date": "1998-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5516072271, "date": "1998-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1561666667, "date": "1998-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5532880807, "date": "1998-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.15, "date": "1998-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5549689343, "date": "1998-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1484166667, "date": "1998-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5566497879, "date": "1998-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1486666667, "date": "1998-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5583306415, "date": "1998-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1450833333, "date": "1998-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5600114951, "date": "1998-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1476666667, "date": "1998-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5616923486, "date": "1998-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1401666667, "date": "1998-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5633732022, "date": "1998-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1303333333, "date": "1998-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5650540558, "date": "1998-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1250833333, "date": "1998-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5667349094, "date": "1998-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1194166667, "date": "1998-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.568415763, "date": "1998-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.11275, "date": "1998-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5700966165, "date": "1998-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.107, "date": "1998-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5717774701, "date": "1998-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1015, "date": "1998-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5734583237, "date": "1998-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.09725, "date": "1998-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5751391773, "date": "1998-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1071666667, "date": "1998-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5768200309, "date": "1998-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1075833333, "date": "1998-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5785008844, "date": "1998-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1115, "date": "1998-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.580181738, "date": "1998-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1158333333, "date": "1998-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5818625916, "date": "1998-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1113333333, "date": "1998-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5835434452, "date": "1998-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1086666667, "date": "1998-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5852242988, "date": "1998-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1045, "date": "1998-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5869051524, "date": "1998-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1028333333, "date": "1998-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5885860059, "date": "1998-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0931666667, "date": "1998-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5902668595, "date": "1998-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0886666667, "date": "1998-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5919477131, "date": "1998-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0763333333, "date": "1998-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5936285667, "date": "1998-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0594166667, "date": "1998-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5953094203, "date": "1998-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.05125, "date": "1998-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5969902738, "date": "1998-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.049, "date": "1998-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5986711274, "date": "1998-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.043, "date": "1998-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.600351981, "date": "1998-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0405833333, "date": "1999-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6020328346, "date": "1999-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0429166667, "date": "1999-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6037136882, "date": "1999-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0458333333, "date": "1999-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6053945417, "date": "1999-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0391666667, "date": "1999-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6070753953, "date": "1999-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0320833333, "date": "1999-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6087562489, "date": "1999-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.02875, "date": "1999-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6104371025, "date": "1999-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0210833333, "date": "1999-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6121179561, "date": "1999-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.012, "date": "1999-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6137988097, "date": "1999-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0169166667, "date": "1999-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6154796632, "date": "1999-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0249166667, "date": "1999-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6171605168, "date": "1999-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0733333333, "date": "1999-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6188413704, "date": "1999-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1114166667, "date": "1999-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.620522224, "date": "1999-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1826666667, "date": "1999-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6222030776, "date": "1999-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.22625, "date": "1999-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6238839311, "date": "1999-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2495, "date": "1999-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6255647847, "date": "1999-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2458333333, "date": "1999-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6272456383, "date": "1999-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2426666667, "date": "1999-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6289264919, "date": "1999-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.244, "date": "1999-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6306073455, "date": "1999-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2485, "date": "1999-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.632288199, "date": "1999-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2455833333, "date": "1999-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6339690526, "date": "1999-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2296666667, "date": "1999-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6356499062, "date": "1999-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2144166667, "date": "1999-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6373307598, "date": "1999-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.21125, "date": "1999-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6390116134, "date": "1999-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2073333333, "date": "1999-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.640692467, "date": "1999-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2195, "date": "1999-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6423733205, "date": "1999-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2113333333, "date": "1999-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6440541741, "date": "1999-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.22, "date": "1999-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6457350277, "date": "1999-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2401666667, "date": "1999-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6474158813, "date": "1999-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2691666667, "date": "1999-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6490967349, "date": "1999-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.29075, "date": "1999-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6507775884, "date": "1999-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2959166667, "date": "1999-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.652458442, "date": "1999-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3089166667, "date": "1999-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6541392956, "date": "1999-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3348333333, "date": "1999-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6558201492, "date": "1999-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.33425, "date": "1999-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6575010028, "date": "1999-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3328333333, "date": "1999-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6591818563, "date": "1999-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3393333333, "date": "1999-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6608627099, "date": "1999-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3453333333, "date": "1999-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6625435635, "date": "1999-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3605833333, "date": "1999-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6642244171, "date": "1999-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3545, "date": "1999-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6659052707, "date": "1999-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3503333333, "date": "1999-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6675861243, "date": "1999-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3466666667, "date": "1999-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6692669778, "date": "1999-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3353333333, "date": "1999-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6709478314, "date": "1999-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3331666667, "date": "1999-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.672628685, "date": "1999-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3265833333, "date": "1999-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6743095386, "date": "1999-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3271666667, "date": "1999-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6759903922, "date": "1999-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.34325, "date": "1999-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6776712457, "date": "1999-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.35925, "date": "1999-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6793520993, "date": "1999-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3671666667, "date": "1999-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6810329529, "date": "1999-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3674166667, "date": "1999-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6827138065, "date": "1999-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3680833333, "date": "1999-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6843946601, "date": "1999-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3629166667, "date": "1999-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6860755136, "date": "1999-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3658333333, "date": "1999-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6877563672, "date": "1999-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3645, "date": "2000-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6894372208, "date": "2000-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3575833333, "date": "2000-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6911180744, "date": "2000-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3674166667, "date": "2000-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.692798928, "date": "2000-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3995, "date": "2000-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6944797816, "date": "2000-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4033333333, "date": "2000-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6961606351, "date": "2000-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4104166667, "date": "2000-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6978414887, "date": "2000-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4378333333, "date": "2000-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6995223423, "date": "2000-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4835, "date": "2000-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7012031959, "date": "2000-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5021666667, "date": "2000-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7028840495, "date": "2000-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5858333333, "date": "2000-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.704564903, "date": "2000-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6205833333, "date": "2000-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7062457566, "date": "2000-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.62925, "date": "2000-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7079266102, "date": "2000-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.613, "date": "2000-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7096074638, "date": "2000-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6068333333, "date": "2000-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7112883174, "date": "2000-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5824166667, "date": "2000-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7129691709, "date": "2000-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5545, "date": "2000-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7146500245, "date": "2000-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5449166667, "date": "2000-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7163308781, "date": "2000-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.52925, "date": "2000-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7180117317, "date": "2000-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5560833333, "date": "2000-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7196925853, "date": "2000-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5860833333, "date": "2000-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7213734389, "date": "2000-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6116666667, "date": "2000-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7230542924, "date": "2000-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6254166667, "date": "2000-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.724735146, "date": "2000-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6456666667, "date": "2000-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7264159996, "date": "2000-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6994166667, "date": "2000-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7280968532, "date": "2000-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7399166667, "date": "2000-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7297777068, "date": "2000-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7258333333, "date": "2000-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7314585603, "date": "2000-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7075, "date": "2000-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7331394139, "date": "2000-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6853333333, "date": "2000-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7348202675, "date": "2000-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6488333333, "date": "2000-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7365011211, "date": "2000-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6263333333, "date": "2000-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7381819747, "date": "2000-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5839166667, "date": "2000-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7398628282, "date": "2000-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.573, "date": "2000-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7415436818, "date": "2000-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5595, "date": "2000-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7432245354, "date": "2000-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5729166667, "date": "2000-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.744905389, "date": "2000-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5854166667, "date": "2000-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7465862426, "date": "2000-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6298333333, "date": "2000-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7482670962, "date": "2000-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6595833333, "date": "2000-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7499479497, "date": "2000-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6579166667, "date": "2000-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7516288033, "date": "2000-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6485, "date": "2000-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7533096569, "date": "2000-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6289166667, "date": "2000-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7549905105, "date": "2000-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.60925, "date": "2000-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7566713641, "date": "2000-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6384166667, "date": "2000-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7583522176, "date": "2000-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6444166667, "date": "2000-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7600330712, "date": "2000-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6425833333, "date": "2000-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7617139248, "date": "2000-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.62675, "date": "2000-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7633947784, "date": "2000-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6224166667, "date": "2000-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.765075632, "date": "2000-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6113333333, "date": "2000-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7667564855, "date": "2000-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6089166667, "date": "2000-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7684373391, "date": "2000-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.58775, "date": "2000-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7701181927, "date": "2000-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5559166667, "date": "2000-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7717990463, "date": "2000-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5295833333, "date": "2000-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7734798999, "date": "2000-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5176666667, "date": "2000-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7751607535, "date": "2000-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5119166667, "date": "2001-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.776841607, "date": "2001-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5254166667, "date": "2001-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7785224606, "date": "2001-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5641666667, "date": "2001-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7802033142, "date": "2001-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.562, "date": "2001-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7818841678, "date": "2001-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.551, "date": "2001-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7835650214, "date": "2001-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5389166667, "date": "2001-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7852458749, "date": "2001-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5669166667, "date": "2001-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7869267285, "date": "2001-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5478333333, "date": "2001-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7886075821, "date": "2001-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.532, "date": "2001-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7902884357, "date": "2001-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5219166667, "date": "2001-03-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7919692893, "date": "2001-03-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5171666667, "date": "2001-03-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7936501428, "date": "2001-03-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5091666667, "date": "2001-03-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7953309964, "date": "2001-03-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.50775, "date": "2001-03-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.79701185, "date": "2001-03-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.543, "date": "2001-04-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7986927036, "date": "2001-04-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5984166667, "date": "2001-04-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8003735572, "date": "2001-04-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6590833333, "date": "2001-04-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8020544108, "date": "2001-04-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7113333333, "date": "2001-04-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8037352643, "date": "2001-04-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7231666667, "date": "2001-04-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8054161179, "date": "2001-04-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7915, "date": "2001-05-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8070969715, "date": "2001-05-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8036666667, "date": "2001-05-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8087778251, "date": "2001-05-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7833333333, "date": "2001-05-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8104586787, "date": "2001-05-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7961666667, "date": "2001-05-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8121395322, "date": "2001-05-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7734166667, "date": "2001-06-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8138203858, "date": "2001-06-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7493333333, "date": "2001-06-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8155012394, "date": "2001-06-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.709, "date": "2001-06-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.817182093, "date": "2001-06-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6539166667, "date": "2001-06-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8188629466, "date": "2001-06-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.594, "date": "2001-07-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8205438001, "date": "2001-07-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5575, "date": "2001-07-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8222246537, "date": "2001-07-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.531, "date": "2001-07-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8239055073, "date": "2001-07-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.509, "date": "2001-07-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8255863609, "date": "2001-07-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4925, "date": "2001-07-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8272672145, "date": "2001-07-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4800833333, "date": "2001-08-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8289480681, "date": "2001-08-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.48925, "date": "2001-08-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8306289216, "date": "2001-08-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5150833333, "date": "2001-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8323097752, "date": "2001-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5595833333, "date": "2001-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8339906288, "date": "2001-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6145833333, "date": "2001-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8356714824, "date": "2001-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6018333333, "date": "2001-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.837352336, "date": "2001-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6029166667, "date": "2001-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8390331895, "date": "2001-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.56675, "date": "2001-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8407140431, "date": "2001-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5041666667, "date": "2001-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8423948967, "date": "2001-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.44575, "date": "2001-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8440757503, "date": "2001-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4055, "date": "2001-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8457566039, "date": "2001-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3616666667, "date": "2001-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8474374574, "date": "2001-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3309166667, "date": "2001-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.849118311, "date": "2001-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3013333333, "date": "2001-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8507991646, "date": "2001-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2753333333, "date": "2001-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8524800182, "date": "2001-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2565, "date": "2001-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8541608718, "date": "2001-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.217, "date": "2001-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8558417254, "date": "2001-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.19575, "date": "2001-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8575225789, "date": "2001-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1815833333, "date": "2001-12-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8592034325, "date": "2001-12-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1470833333, "date": "2001-12-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8608842861, "date": "2001-12-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1550833333, "date": "2001-12-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8625651397, "date": "2001-12-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.175, "date": "2001-12-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8642459933, "date": "2001-12-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1911666667, "date": "2002-01-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8659268468, "date": "2002-01-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1951666667, "date": "2002-01-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8676077004, "date": "2002-01-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.191, "date": "2002-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.869288554, "date": "2002-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.18775, "date": "2002-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8709694076, "date": "2002-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2014166667, "date": "2002-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8726502612, "date": "2002-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1946666667, "date": "2002-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8743311147, "date": "2002-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2049166667, "date": "2002-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8760119683, "date": "2002-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2063333333, "date": "2002-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8776928219, "date": "2002-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.23225, "date": "2002-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8793736755, "date": "2002-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3095, "date": "2002-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8810545291, "date": "2002-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.37525, "date": "2002-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8827353827, "date": "2002-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4305, "date": "2002-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8844162362, "date": "2002-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4621666667, "date": "2002-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8860970898, "date": "2002-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5031666667, "date": "2002-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8877779434, "date": "2002-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4981666667, "date": "2002-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.889458797, "date": "2002-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4981666667, "date": "2002-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8911396506, "date": "2002-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4885, "date": "2002-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8928205041, "date": "2002-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.49, "date": "2002-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8945013577, "date": "2002-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4839166667, "date": "2002-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8961822113, "date": "2002-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4909166667, "date": "2002-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8978630649, "date": "2002-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4819166667, "date": "2002-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8995439185, "date": "2002-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4848333333, "date": "2002-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.901224772, "date": "2002-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.47, "date": "2002-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9029056256, "date": "2002-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.473, "date": "2002-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9045864792, "date": "2002-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.47825, "date": "2002-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9062673328, "date": "2002-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4840833333, "date": "2002-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9079481864, "date": "2002-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4753333333, "date": "2002-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.90962904, "date": "2002-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4848333333, "date": "2002-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9113098935, "date": "2002-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4994166667, "date": "2002-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9129907471, "date": "2002-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4964166667, "date": "2002-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9146716007, "date": "2002-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.48975, "date": "2002-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9163524543, "date": "2002-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.487, "date": "2002-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9180333079, "date": "2002-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4855833333, "date": "2002-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9197141614, "date": "2002-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.49675, "date": "2002-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.921395015, "date": "2002-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.489, "date": "2002-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9230758686, "date": "2002-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4896666667, "date": "2002-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9247567222, "date": "2002-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4935, "date": "2002-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9264375758, "date": "2002-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4884166667, "date": "2002-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9281184293, "date": "2002-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5038333333, "date": "2002-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9297992829, "date": "2002-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.526, "date": "2002-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9314801365, "date": "2002-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5265, "date": "2002-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9331609901, "date": "2002-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5418333333, "date": "2002-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9348418437, "date": "2002-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.53, "date": "2002-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9365226973, "date": "2002-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5349166667, "date": "2002-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9382035508, "date": "2002-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5301666667, "date": "2002-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9398844044, "date": "2002-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5036666667, "date": "2002-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.941565258, "date": "2002-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4781666667, "date": "2002-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9432461116, "date": "2002-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4655833333, "date": "2002-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9449269652, "date": "2002-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.46025, "date": "2002-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9466078187, "date": "2002-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.462, "date": "2002-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9482886723, "date": "2002-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.49375, "date": "2002-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9499695259, "date": "2002-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5318333333, "date": "2002-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9516503795, "date": "2002-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5385, "date": "2003-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9533312331, "date": "2003-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.54725, "date": "2003-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9550120866, "date": "2003-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5548333333, "date": "2003-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9566929402, "date": "2003-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5669166667, "date": "2003-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9583737938, "date": "2003-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6178333333, "date": "2003-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9600546474, "date": "2003-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6974166667, "date": "2003-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.961735501, "date": "2003-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.75, "date": "2003-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9634163546, "date": "2003-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7515833333, "date": "2003-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9650972081, "date": "2003-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7805833333, "date": "2003-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9667780617, "date": "2003-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8073333333, "date": "2003-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9684589153, "date": "2003-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8255833333, "date": "2003-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9701397689, "date": "2003-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7935, "date": "2003-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9718206225, "date": "2003-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7578333333, "date": "2003-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.973501476, "date": "2003-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.739, "date": "2003-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9751823296, "date": "2003-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7065, "date": "2003-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9768631832, "date": "2003-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.683, "date": "2003-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9785440368, "date": "2003-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6653333333, "date": "2003-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9802248904, "date": "2003-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6220833333, "date": "2003-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9819057439, "date": "2003-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5969166667, "date": "2003-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9835865975, "date": "2003-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.597, "date": "2003-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9852674511, "date": "2003-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5835833333, "date": "2003-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9869483047, "date": "2003-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5686666667, "date": "2003-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9886291583, "date": "2003-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.57975, "date": "2003-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9903100119, "date": "2003-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6100833333, "date": "2003-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9919908654, "date": "2003-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.59225, "date": "2003-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.993671719, "date": "2003-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5835833333, "date": "2003-06-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9953525726, "date": "2003-06-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5844166667, "date": "2003-07-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9970334262, "date": "2003-07-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6138333333, "date": "2003-07-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9987142798, "date": "2003-07-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.616, "date": "2003-07-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0003951333, "date": "2003-07-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.60775, "date": "2003-07-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0020759869, "date": "2003-07-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6225833333, "date": "2003-08-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0037568405, "date": "2003-08-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6566666667, "date": "2003-08-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0054376941, "date": "2003-08-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7179166667, "date": "2003-08-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0071185477, "date": "2003-08-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8441666667, "date": "2003-08-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0087994012, "date": "2003-08-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8455, "date": "2003-09-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0104802548, "date": "2003-09-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.82, "date": "2003-09-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0121611084, "date": "2003-09-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.79925, "date": "2003-09-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.013841962, "date": "2003-09-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.749, "date": "2003-09-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0155228156, "date": "2003-09-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7005833333, "date": "2003-09-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0172036692, "date": "2003-09-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.68025, "date": "2003-10-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0188845227, "date": "2003-10-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6696666667, "date": "2003-10-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0205653763, "date": "2003-10-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6673333333, "date": "2003-10-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0222462299, "date": "2003-10-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6398333333, "date": "2003-10-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0239270835, "date": "2003-10-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6315833333, "date": "2003-11-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0256079371, "date": "2003-11-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6018333333, "date": "2003-11-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0272887906, "date": "2003-11-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5941666667, "date": "2003-11-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0289696442, "date": "2003-11-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.60675, "date": "2003-11-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0306504978, "date": "2003-11-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5871666667, "date": "2003-12-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0323313514, "date": "2003-12-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5726666667, "date": "2003-12-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.034012205, "date": "2003-12-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.56125, "date": "2003-12-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0356930585, "date": "2003-12-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5781666667, "date": "2003-12-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0373739121, "date": "2003-12-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5713333333, "date": "2003-12-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0390547657, "date": "2003-12-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5993333333, "date": "2004-01-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0407356193, "date": "2004-01-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6494166667, "date": "2004-01-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0424164729, "date": "2004-01-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6829166667, "date": "2004-01-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0440973265, "date": "2004-01-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.711, "date": "2004-01-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.04577818, "date": "2004-01-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7094166667, "date": "2004-02-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0474590336, "date": "2004-02-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7310833333, "date": "2004-02-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0491398872, "date": "2004-02-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.74075, "date": "2004-02-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0508207408, "date": "2004-02-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7856666667, "date": "2004-02-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0525015944, "date": "2004-02-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8166666667, "date": "2004-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0541824479, "date": "2004-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8374166667, "date": "2004-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0558633015, "date": "2004-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8249166667, "date": "2004-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0575441551, "date": "2004-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8415, "date": "2004-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0592250087, "date": "2004-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8549166667, "date": "2004-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0609058623, "date": "2004-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8768333333, "date": "2004-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0625867158, "date": "2004-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8833333333, "date": "2004-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0642675694, "date": "2004-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.90625, "date": "2004-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.065948423, "date": "2004-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9049166667, "date": "2004-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0676292766, "date": "2004-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.93375, "date": "2004-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0693101302, "date": "2004-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0290833333, "date": "2004-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0709909838, "date": "2004-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1054166667, "date": "2004-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0726718373, "date": "2004-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1555, "date": "2004-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0743526909, "date": "2004-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1475833333, "date": "2004-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0760335445, "date": "2004-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1325, "date": "2004-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0777143981, "date": "2004-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0908333333, "date": "2004-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0793952517, "date": "2004-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.04575, "date": "2004-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0810761052, "date": "2004-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0275, "date": "2004-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0827569588, "date": "2004-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0013333333, "date": "2004-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0844378124, "date": "2004-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0170833333, "date": "2004-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.086118666, "date": "2004-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.026, "date": "2004-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0877995196, "date": "2004-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.004, "date": "2004-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0894803731, "date": "2004-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9855, "date": "2004-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0911612267, "date": "2004-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.974, "date": "2004-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0928420803, "date": "2004-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9690833333, "date": "2004-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0945229339, "date": "2004-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9764166667, "date": "2004-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0962037875, "date": "2004-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9636666667, "date": "2004-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0978846411, "date": "2004-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9471666667, "date": "2004-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0995654946, "date": "2004-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9415, "date": "2004-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1012463482, "date": "2004-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9576666667, "date": "2004-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1029272018, "date": "2004-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.00625, "date": "2004-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1046080554, "date": "2004-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.03225, "date": "2004-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.106288909, "date": "2004-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.09025, "date": "2004-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1079697625, "date": "2004-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.135, "date": "2004-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1096506161, "date": "2004-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1330833333, "date": "2004-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1113314697, "date": "2004-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1336666667, "date": "2004-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1130123233, "date": "2004-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1045833333, "date": "2004-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1146931769, "date": "2004-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0746666667, "date": "2004-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1163740304, "date": "2004-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0511666667, "date": "2004-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.118054884, "date": "2004-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.04525, "date": "2004-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1197357376, "date": "2004-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0135833333, "date": "2004-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1214165912, "date": "2004-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.95375, "date": "2004-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1230974448, "date": "2004-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.918, "date": "2004-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1247782984, "date": "2004-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8945833333, "date": "2004-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1264591519, "date": "2004-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8795833333, "date": "2005-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1281400055, "date": "2005-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8873333333, "date": "2005-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1298208591, "date": "2005-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.91075, "date": "2005-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1315017127, "date": "2005-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9419166667, "date": "2005-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1331825663, "date": "2005-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.999, "date": "2005-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1348634198, "date": "2005-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9995, "date": "2005-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1365442734, "date": "2005-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.99025, "date": "2005-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.138225127, "date": "2005-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9981666667, "date": "2005-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1399059806, "date": "2005-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0178333333, "date": "2005-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1415868342, "date": "2005-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0865, "date": "2005-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1432676877, "date": "2005-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1434166667, "date": "2005-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1449485413, "date": "2005-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1928333333, "date": "2005-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1466293949, "date": "2005-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.239, "date": "2005-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1483102485, "date": "2005-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3041666667, "date": "2005-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1499911021, "date": "2005-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3708333333, "date": "2005-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1516719557, "date": "2005-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3345833333, "date": "2005-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1533528092, "date": "2005-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3335, "date": "2005-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1550336628, "date": "2005-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3328333333, "date": "2005-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1567145164, "date": "2005-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2903333333, "date": "2005-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.15839537, "date": "2005-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.26375, "date": "2005-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1600762236, "date": "2005-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2278333333, "date": "2005-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1617570771, "date": "2005-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1991666667, "date": "2005-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1634379307, "date": "2005-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.21325, "date": "2005-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1651187843, "date": "2005-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2250833333, "date": "2005-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1667996379, "date": "2005-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2561666667, "date": "2005-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1684804915, "date": "2005-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3065, "date": "2005-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1701613451, "date": "2005-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3208333333, "date": "2005-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1718421986, "date": "2005-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4215, "date": "2005-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1735230522, "date": "2005-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4158333333, "date": "2005-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1752039058, "date": "2005-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.394, "date": "2005-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1768847594, "date": "2005-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3951666667, "date": "2005-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.178565613, "date": "2005-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4658333333, "date": "2005-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1802464665, "date": "2005-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6425, "date": "2005-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1819273201, "date": "2005-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7038333333, "date": "2005-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1836081737, "date": "2005-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7031666667, "date": "2005-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1852890273, "date": "2005-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.17175, "date": "2005-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1869698809, "date": "2005-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0609166667, "date": "2005-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1886507344, "date": "2005-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.90075, "date": "2005-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.190331588, "date": "2005-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9080833333, "date": "2005-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1920124416, "date": "2005-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0210833333, "date": "2005-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1936932952, "date": "2005-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9484166667, "date": "2005-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1953741488, "date": "2005-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.832, "date": "2005-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1970550024, "date": "2005-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.71075, "date": "2005-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1987358559, "date": "2005-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5878333333, "date": "2005-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2004167095, "date": "2005-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4826666667, "date": "2005-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2020975631, "date": "2005-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.39925, "date": "2005-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2037784167, "date": "2005-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3025833333, "date": "2005-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2054592703, "date": "2005-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2535833333, "date": "2005-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2071401238, "date": "2005-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.24, "date": "2005-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2088209774, "date": "2005-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2729166667, "date": "2005-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.210501831, "date": "2005-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2985833333, "date": "2005-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2121826846, "date": "2005-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2854166667, "date": "2005-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2138635382, "date": "2005-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.32275, "date": "2006-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2155443917, "date": "2006-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4150833333, "date": "2006-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2172252453, "date": "2006-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4175, "date": "2006-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2189060989, "date": "2006-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4330833333, "date": "2006-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2205869525, "date": "2006-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4538333333, "date": "2006-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2222678061, "date": "2006-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4425, "date": "2006-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2239486597, "date": "2006-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3883333333, "date": "2006-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2256295132, "date": "2006-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.34125, "date": "2006-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2273103668, "date": "2006-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3454166667, "date": "2006-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2289912204, "date": "2006-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4161666667, "date": "2006-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.230672074, "date": "2006-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4521666667, "date": "2006-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2323529276, "date": "2006-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5919166667, "date": "2006-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2340337811, "date": "2006-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.58975, "date": "2006-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2357146347, "date": "2006-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.679, "date": "2006-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2373954883, "date": "2006-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7751666667, "date": "2006-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2390763419, "date": "2006-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.87575, "date": "2006-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2407571955, "date": "2006-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.01425, "date": "2006-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.242438049, "date": "2006-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0286666667, "date": "2006-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2441189026, "date": "2006-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.026, "date": "2006-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2457997562, "date": "2006-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0613333333, "date": "2006-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2474806098, "date": "2006-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0135833333, "date": "2006-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2491614634, "date": "2006-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.98525, "date": "2006-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.250842317, "date": "2006-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0086666667, "date": "2006-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2525231705, "date": "2006-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0198333333, "date": "2006-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2542040241, "date": "2006-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9880833333, "date": "2006-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2558848777, "date": "2006-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9829166667, "date": "2006-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2575657313, "date": "2006-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0421666667, "date": "2006-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2592465849, "date": "2006-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0805833333, "date": "2006-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2609274384, "date": "2006-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.09625, "date": "2006-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.262608292, "date": "2006-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.10925, "date": "2006-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2642891456, "date": "2006-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1105833333, "date": "2006-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2659699992, "date": "2006-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1380833333, "date": "2006-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2676508528, "date": "2006-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1065833333, "date": "2006-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2693317063, "date": "2006-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0330833333, "date": "2006-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2710125599, "date": "2006-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9561666667, "date": "2006-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2726934135, "date": "2006-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8425, "date": "2006-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2743742671, "date": "2006-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.73825, "date": "2006-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2760551207, "date": "2006-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6185, "date": "2006-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2777359743, "date": "2006-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4983333333, "date": "2006-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2794168278, "date": "2006-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4245, "date": "2006-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2810976814, "date": "2006-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.37075, "date": "2006-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.282778535, "date": "2006-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3316666667, "date": "2006-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2844593886, "date": "2006-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3078333333, "date": "2006-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2861402422, "date": "2006-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3133333333, "date": "2006-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2878210957, "date": "2006-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2950833333, "date": "2006-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2895019493, "date": "2006-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3283333333, "date": "2006-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2911828029, "date": "2006-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3375833333, "date": "2006-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2928636565, "date": "2006-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3456666667, "date": "2006-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2945445101, "date": "2006-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3929166667, "date": "2006-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2962253636, "date": "2006-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.39325, "date": "2006-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2979062172, "date": "2006-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4204166667, "date": "2006-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2995870708, "date": "2006-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4443333333, "date": "2006-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3012679244, "date": "2006-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4400833333, "date": "2007-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.302948778, "date": "2007-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4170833333, "date": "2007-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3046296316, "date": "2007-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3470833333, "date": "2007-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3063104851, "date": "2007-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.285, "date": "2007-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3079913387, "date": "2007-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2755, "date": "2007-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3096721923, "date": "2007-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.296, "date": "2007-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3113530459, "date": "2007-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3460833333, "date": "2007-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3130338995, "date": "2007-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3995833333, "date": "2007-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.314714753, "date": "2007-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4864166667, "date": "2007-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3163956066, "date": "2007-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6093333333, "date": "2007-03-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3180764602, "date": "2007-03-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6698333333, "date": "2007-03-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3197573138, "date": "2007-03-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6906666667, "date": "2007-03-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3214381674, "date": "2007-03-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7228333333, "date": "2007-03-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3231190209, "date": "2007-03-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8213333333, "date": "2007-04-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3247998745, "date": "2007-04-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9113333333, "date": "2007-04-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3264807281, "date": "2007-04-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9845833333, "date": "2007-04-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3281615817, "date": "2007-04-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9815833333, "date": "2007-04-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3298424353, "date": "2007-04-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0775833333, "date": "2007-04-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3315232889, "date": "2007-04-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1566666667, "date": "2007-05-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3332041424, "date": "2007-05-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1949166667, "date": "2007-05-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.334884996, "date": "2007-05-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2998333333, "date": "2007-05-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3365658496, "date": "2007-05-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2950833333, "date": "2007-05-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3382467032, "date": "2007-05-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2505, "date": "2007-06-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3399275568, "date": "2007-06-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.17925, "date": "2007-06-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3416084103, "date": "2007-06-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1141666667, "date": "2007-06-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3432892639, "date": "2007-06-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0856666667, "date": "2007-06-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3449701175, "date": "2007-06-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0596666667, "date": "2007-07-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3466509711, "date": "2007-07-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0726666667, "date": "2007-07-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3483318247, "date": "2007-07-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1346666667, "date": "2007-07-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3500126782, "date": "2007-07-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0573333333, "date": "2007-07-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3516935318, "date": "2007-07-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9830833333, "date": "2007-07-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3533743854, "date": "2007-07-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9445, "date": "2007-08-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.355055239, "date": "2007-08-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8753333333, "date": "2007-08-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3567360926, "date": "2007-08-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8784166667, "date": "2007-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3584169462, "date": "2007-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8395833333, "date": "2007-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3600977997, "date": "2007-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8755833333, "date": "2007-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3617786533, "date": "2007-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8976666667, "date": "2007-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3634595069, "date": "2007-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8786666667, "date": "2007-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3651403605, "date": "2007-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9046666667, "date": "2007-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3668212141, "date": "2007-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8880833333, "date": "2007-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3685020676, "date": "2007-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.87325, "date": "2007-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3701829212, "date": "2007-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.86825, "date": "2007-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3718637748, "date": "2007-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9268333333, "date": "2007-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3735446284, "date": "2007-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.97275, "date": "2007-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.375225482, "date": "2007-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1065, "date": "2007-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3769063355, "date": "2007-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2076666667, "date": "2007-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3785871891, "date": "2007-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2023333333, "date": "2007-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3802680427, "date": "2007-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2025833333, "date": "2007-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3819488963, "date": "2007-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.17275, "date": "2007-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3836297499, "date": "2007-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.11825, "date": "2007-12-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3853106035, "date": "2007-12-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1125, "date": "2007-12-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.386991457, "date": "2007-12-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0951666667, "date": "2007-12-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3886723106, "date": "2007-12-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1611666667, "date": "2007-12-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3903531642, "date": "2007-12-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.214, "date": "2008-01-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3920340178, "date": "2008-01-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1775833333, "date": "2008-01-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3937148714, "date": "2008-01-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1298333333, "date": "2008-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3953957249, "date": "2008-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0889166667, "date": "2008-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3970765785, "date": "2008-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.08375, "date": "2008-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3987574321, "date": "2008-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0645, "date": "2008-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4004382857, "date": "2008-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1416666667, "date": "2008-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4021191393, "date": "2008-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2320833333, "date": "2008-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4037999928, "date": "2008-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2688333333, "date": "2008-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4054808464, "date": "2008-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3283333333, "date": "2008-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4071617, "date": "2008-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3881666667, "date": "2008-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4088425536, "date": "2008-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3705, "date": "2008-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4105234072, "date": "2008-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3976666667, "date": "2008-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4122042608, "date": "2008-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4386666667, "date": "2008-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4138851143, "date": "2008-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4974166667, "date": "2008-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4155659679, "date": "2008-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.618, "date": "2008-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4172468215, "date": "2008-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7129166667, "date": "2008-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4189276751, "date": "2008-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.72475, "date": "2008-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4206085287, "date": "2008-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8268333333, "date": "2008-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4222893822, "date": "2008-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8965, "date": "2008-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4239702358, "date": "2008-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0405833333, "date": "2008-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4256510894, "date": "2008-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0870833333, "date": "2008-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.427331943, "date": "2008-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1576666667, "date": "2008-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4290127966, "date": "2008-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2085, "date": "2008-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4306936501, "date": "2008-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2068333333, "date": "2008-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4323745037, "date": "2008-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2181666667, "date": "2008-06-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4340553573, "date": "2008-06-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2355833333, "date": "2008-07-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4357362109, "date": "2008-07-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2320833333, "date": "2008-07-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4374170645, "date": "2008-07-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1891666667, "date": "2008-07-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4390979181, "date": "2008-07-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0839166667, "date": "2008-07-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4407787716, "date": "2008-07-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0065833333, "date": "2008-08-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4424596252, "date": "2008-08-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9318333333, "date": "2008-08-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4441404788, "date": "2008-08-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8578333333, "date": "2008-08-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4458213324, "date": "2008-08-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7986666667, "date": "2008-08-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.447502186, "date": "2008-08-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7900833333, "date": "2008-09-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4491830395, "date": "2008-09-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7563333333, "date": "2008-09-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4508638931, "date": "2008-09-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9248333333, "date": "2008-09-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4525447467, "date": "2008-09-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.81875, "date": "2008-09-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4542256003, "date": "2008-09-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.73675, "date": "2008-09-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4559064539, "date": "2008-09-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.598, "date": "2008-10-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4575873074, "date": "2008-10-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2870833333, "date": "2008-10-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.459268161, "date": "2008-10-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0535, "date": "2008-10-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4609490146, "date": "2008-10-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.801, "date": "2008-10-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4626298682, "date": "2008-10-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5434166667, "date": "2008-11-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4643107218, "date": "2008-11-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3621666667, "date": "2008-11-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4659915754, "date": "2008-11-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2063333333, "date": "2008-11-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4676724289, "date": "2008-11-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0235, "date": "2008-11-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4693532825, "date": "2008-11-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9355833333, "date": "2008-12-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4710341361, "date": "2008-12-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8225833333, "date": "2008-12-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4727149897, "date": "2008-12-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7749166667, "date": "2008-12-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4743958433, "date": "2008-12-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7714166667, "date": "2008-12-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4760766968, "date": "2008-12-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7331666667, "date": "2008-12-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4777575504, "date": "2008-12-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7925, "date": "2009-01-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.479438404, "date": "2009-01-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8889166667, "date": "2009-01-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4811192576, "date": "2009-01-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9520833333, "date": "2009-01-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4828001112, "date": "2009-01-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9475833333, "date": "2009-01-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4844809647, "date": "2009-01-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0001666667, "date": "2009-02-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4861618183, "date": "2009-02-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0380833333, "date": "2009-02-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4878426719, "date": "2009-02-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0774166667, "date": "2009-02-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4895235255, "date": "2009-02-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.029, "date": "2009-02-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4912043791, "date": "2009-02-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.04775, "date": "2009-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4928852327, "date": "2009-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0509166667, "date": "2009-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4945660862, "date": "2009-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0240833333, "date": "2009-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4962469398, "date": "2009-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0690833333, "date": "2009-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4979277934, "date": "2009-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1516666667, "date": "2009-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.499608647, "date": "2009-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.14875, "date": "2009-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5012895006, "date": "2009-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1625833333, "date": "2009-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5029703541, "date": "2009-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1716666667, "date": "2009-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5046512077, "date": "2009-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1639166667, "date": "2009-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5063320613, "date": "2009-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1895, "date": "2009-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5080129149, "date": "2009-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3448333333, "date": "2009-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5096937685, "date": "2009-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.418, "date": "2009-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.511374622, "date": "2009-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5395, "date": "2009-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5130554756, "date": "2009-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.625, "date": "2009-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5147363292, "date": "2009-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.727, "date": "2009-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5164171828, "date": "2009-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7804166667, "date": "2009-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5180980364, "date": "2009-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8056666667, "date": "2009-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.51977889, "date": "2009-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7625833333, "date": "2009-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5214597435, "date": "2009-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7340833333, "date": "2009-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5231405971, "date": "2009-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6543333333, "date": "2009-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5248214507, "date": "2009-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5905833333, "date": "2009-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5265023043, "date": "2009-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6231666667, "date": "2009-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5281831579, "date": "2009-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6755833333, "date": "2009-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5298640114, "date": "2009-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.76725, "date": "2009-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.531544865, "date": "2009-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7614166667, "date": "2009-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5332257186, "date": "2009-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.75225, "date": "2009-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5349065722, "date": "2009-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7399166667, "date": "2009-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5365874258, "date": "2009-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7181666667, "date": "2009-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5382682793, "date": "2009-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7104166667, "date": "2009-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5399491329, "date": "2009-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6855833333, "date": "2009-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5416299865, "date": "2009-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6331666667, "date": "2009-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5433108401, "date": "2009-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6019166667, "date": "2009-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5449916937, "date": "2009-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6148333333, "date": "2009-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5466725473, "date": "2009-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6908333333, "date": "2009-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5483534008, "date": "2009-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7878333333, "date": "2009-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5500342544, "date": "2009-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.80825, "date": "2009-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.551715108, "date": "2009-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.78425, "date": "2009-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5533959616, "date": "2009-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7516666667, "date": "2009-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5550768152, "date": "2009-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7580833333, "date": "2009-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5567576687, "date": "2009-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.74875, "date": "2009-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5584385223, "date": "2009-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7535833333, "date": "2009-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5601193759, "date": "2009-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.72225, "date": "2009-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5618002295, "date": "2009-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7128333333, "date": "2009-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5634810831, "date": "2009-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7283333333, "date": "2009-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5651619366, "date": "2009-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7819166667, "date": "2010-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5668427902, "date": "2010-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8648333333, "date": "2010-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5685236438, "date": "2010-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8563333333, "date": "2010-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5702044974, "date": "2010-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8261666667, "date": "2010-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.571885351, "date": "2010-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.784, "date": "2010-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5735662046, "date": "2010-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7740833333, "date": "2010-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5752470581, "date": "2010-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7338333333, "date": "2010-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5769279117, "date": "2010-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7724166667, "date": "2010-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5786087653, "date": "2010-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8181666667, "date": "2010-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5802896189, "date": "2010-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.864, "date": "2010-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5819704725, "date": "2010-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8996666667, "date": "2010-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.583651326, "date": "2010-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.92825, "date": "2010-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5853321796, "date": "2010-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.91175, "date": "2010-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5870130332, "date": "2010-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.93575, "date": "2010-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5886938868, "date": "2010-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9665833333, "date": "2010-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5903747404, "date": "2010-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9691666667, "date": "2010-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5920555939, "date": "2010-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9620833333, "date": "2010-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5937364475, "date": "2010-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0093333333, "date": "2010-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5954173011, "date": "2010-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0193333333, "date": "2010-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5970981547, "date": "2010-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.983, "date": "2010-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5987790083, "date": "2010-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9106666667, "date": "2010-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6004598619, "date": "2010-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.85425, "date": "2010-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6021407154, "date": "2010-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8503333333, "date": "2010-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.603821569, "date": "2010-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8255, "date": "2010-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6055024226, "date": "2010-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8619166667, "date": "2010-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6071832762, "date": "2010-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.87475, "date": "2010-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6088641298, "date": "2010-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8473333333, "date": "2010-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6105449833, "date": "2010-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.84, "date": "2010-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6122258369, "date": "2010-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8430833333, "date": "2010-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6139066905, "date": "2010-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8665, "date": "2010-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6155875441, "date": "2010-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8558333333, "date": "2010-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6172683977, "date": "2010-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8999166667, "date": "2010-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6189492512, "date": "2010-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.86625, "date": "2010-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6206301048, "date": "2010-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8288333333, "date": "2010-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6223109584, "date": "2010-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8029166667, "date": "2010-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.623991812, "date": "2010-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7980833333, "date": "2010-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6256726656, "date": "2010-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8306666667, "date": "2010-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6273535192, "date": "2010-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.83275, "date": "2010-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6290343727, "date": "2010-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8078333333, "date": "2010-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6307152263, "date": "2010-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8433333333, "date": "2010-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6323960799, "date": "2010-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.92875, "date": "2010-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6340769335, "date": "2010-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9503333333, "date": "2010-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6357577871, "date": "2010-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9365, "date": "2010-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6374386406, "date": "2010-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9285833333, "date": "2010-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6391194942, "date": "2010-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9778333333, "date": "2010-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6408003478, "date": "2010-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0080833333, "date": "2010-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6424812014, "date": "2010-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3, "date": "2010-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.644162055, "date": "2010-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9825833333, "date": "2010-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6458429085, "date": "2010-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0786666667, "date": "2010-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6475237621, "date": "2010-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1004166667, "date": "2010-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6492046157, "date": "2010-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.10525, "date": "2010-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6508854693, "date": "2010-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1688333333, "date": "2010-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6525663229, "date": "2010-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1865, "date": "2011-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6542471765, "date": "2011-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2041666667, "date": "2011-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.65592803, "date": "2011-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2201666667, "date": "2011-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6576088836, "date": "2011-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2259166667, "date": "2011-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6592897372, "date": "2011-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2195, "date": "2011-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6609705908, "date": "2011-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2478333333, "date": "2011-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6626514444, "date": "2011-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2588333333, "date": "2011-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6643322979, "date": "2011-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3095, "date": "2011-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6660131515, "date": "2011-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4985833333, "date": "2011-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6676940051, "date": "2011-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6375833333, "date": "2011-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6693748587, "date": "2011-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6886666667, "date": "2011-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6710557123, "date": "2011-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6863333333, "date": "2011-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6727365658, "date": "2011-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7195, "date": "2011-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6744174194, "date": "2011-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8025, "date": "2011-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.676098273, "date": "2011-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.909, "date": "2011-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6777791266, "date": "2011-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9649166667, "date": "2011-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6794599802, "date": "2011-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.002, "date": "2011-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6811408338, "date": "2011-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0819166667, "date": "2011-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6828216873, "date": "2011-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.08775, "date": "2011-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6845025409, "date": "2011-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0836666667, "date": "2011-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6861833945, "date": "2011-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9784166667, "date": "2011-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6878642481, "date": "2011-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.91875, "date": "2011-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6895451017, "date": "2011-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8975, "date": "2011-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6912259552, "date": "2011-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8353333333, "date": "2011-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6929068088, "date": "2011-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7805833333, "date": "2011-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6945876624, "date": "2011-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7065833333, "date": "2011-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.696268516, "date": "2011-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7025, "date": "2011-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6979493696, "date": "2011-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7580833333, "date": "2011-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6996302231, "date": "2011-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7989166667, "date": "2011-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7013110767, "date": "2011-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8170833333, "date": "2011-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7029919303, "date": "2011-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8271666667, "date": "2011-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7046727839, "date": "2011-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.79175, "date": "2011-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7063536375, "date": "2011-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7258333333, "date": "2011-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7080344911, "date": "2011-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.70175, "date": "2011-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7097153446, "date": "2011-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7428333333, "date": "2011-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7113961982, "date": "2011-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7889166667, "date": "2011-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7130770518, "date": "2011-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7779166667, "date": "2011-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7147579054, "date": "2011-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7255, "date": "2011-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.716438759, "date": "2011-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6406666667, "date": "2011-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7181196125, "date": "2011-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5676666667, "date": "2011-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7198004661, "date": "2011-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5489166667, "date": "2011-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7214813197, "date": "2011-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6025, "date": "2011-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7231621733, "date": "2011-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5915, "date": "2011-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7248430269, "date": "2011-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5828333333, "date": "2011-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7265238804, "date": "2011-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5561666667, "date": "2011-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.728204734, "date": "2011-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.56775, "date": "2011-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7298855876, "date": "2011-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5034166667, "date": "2011-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7315664412, "date": "2011-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.447, "date": "2011-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7332472948, "date": "2011-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4248333333, "date": "2011-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7349281484, "date": "2011-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4170833333, "date": "2011-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7366090019, "date": "2011-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3644166667, "date": "2011-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7382898555, "date": "2011-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3875, "date": "2011-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7399707091, "date": "2011-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.429, "date": "2012-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7416515627, "date": "2012-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.513, "date": "2012-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7433324163, "date": "2012-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.52275, "date": "2012-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7450132698, "date": "2012-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5246666667, "date": "2012-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7466941234, "date": "2012-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5743333333, "date": "2012-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.748374977, "date": "2012-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.61375, "date": "2012-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7500558306, "date": "2012-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6596666667, "date": "2012-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7517366842, "date": "2012-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.732, "date": "2012-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7534175377, "date": "2012-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8614166667, "date": "2012-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7550983913, "date": "2012-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9273333333, "date": "2012-03-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7567792449, "date": "2012-03-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.964, "date": "2012-03-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7584600985, "date": "2012-03-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0018333333, "date": "2012-03-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7601409521, "date": "2012-03-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0504166667, "date": "2012-03-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7618218057, "date": "2012-03-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0706666667, "date": "2012-04-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7635026592, "date": "2012-04-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.07175, "date": "2012-04-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7651835128, "date": "2012-04-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0521666667, "date": "2012-04-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7668643664, "date": "2012-04-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0058333333, "date": "2012-04-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.76854522, "date": "2012-04-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9668333333, "date": "2012-04-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7702260736, "date": "2012-04-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.92975, "date": "2012-05-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7719069271, "date": "2012-05-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.905, "date": "2012-05-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7735877807, "date": "2012-05-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8615, "date": "2012-05-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7752686343, "date": "2012-05-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8170833333, "date": "2012-05-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7769494879, "date": "2012-05-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7609166667, "date": "2012-06-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7786303415, "date": "2012-06-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7135833333, "date": "2012-06-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.780311195, "date": "2012-06-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6640833333, "date": "2012-06-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7819920486, "date": "2012-06-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5713333333, "date": "2012-06-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7836729022, "date": "2012-06-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4944166667, "date": "2012-07-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7853537558, "date": "2012-07-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5433333333, "date": "2012-07-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7870346094, "date": "2012-07-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5616666667, "date": "2012-07-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.788715463, "date": "2012-07-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6311666667, "date": "2012-07-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7903963165, "date": "2012-07-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6438333333, "date": "2012-07-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7920771701, "date": "2012-07-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.76925, "date": "2012-08-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7937580237, "date": "2012-08-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8539166667, "date": "2012-08-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7954388773, "date": "2012-08-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8799166667, "date": "2012-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7971197309, "date": "2012-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9118333333, "date": "2012-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7988005844, "date": "2012-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.974, "date": "2012-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.800481438, "date": "2012-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9806666667, "date": "2012-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8021622916, "date": "2012-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.012, "date": "2012-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8038431452, "date": "2012-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9665833333, "date": "2012-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8055239988, "date": "2012-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.94525, "date": "2012-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8072048523, "date": "2012-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0136666667, "date": "2012-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8088857059, "date": "2012-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.98625, "date": "2012-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8105665595, "date": "2012-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8585, "date": "2012-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8122474131, "date": "2012-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7351666667, "date": "2012-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8139282667, "date": "2012-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6595833333, "date": "2012-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8156091203, "date": "2012-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6109166667, "date": "2012-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8172899738, "date": "2012-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5866666667, "date": "2012-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8189708274, "date": "2012-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5889166667, "date": "2012-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.820651681, "date": "2012-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5489166667, "date": "2012-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8223325346, "date": "2012-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5030833333, "date": "2012-12-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8240133882, "date": "2012-12-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4101666667, "date": "2012-12-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8256942417, "date": "2012-12-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4134166667, "date": "2012-12-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8273750953, "date": "2012-12-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4539166667, "date": "2012-12-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8290559489, "date": "2012-12-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4639166667, "date": "2013-01-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8307368025, "date": "2013-01-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.469, "date": "2013-01-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8324176561, "date": "2013-01-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4744166667, "date": "2013-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8340985096, "date": "2013-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5135, "date": "2013-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8357793632, "date": "2013-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6901666667, "date": "2013-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8374602168, "date": "2013-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7646666667, "date": "2013-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8391410704, "date": "2013-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8923333333, "date": "2013-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.840821924, "date": "2013-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9339166667, "date": "2013-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8425027776, "date": "2013-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.91, "date": "2013-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8441836311, "date": "2013-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.86525, "date": "2013-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8458644847, "date": "2013-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8494166667, "date": "2013-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8475453383, "date": "2013-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8305833333, "date": "2013-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8492261919, "date": "2013-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8023333333, "date": "2013-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8509070455, "date": "2013-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7638333333, "date": "2013-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.852587899, "date": "2013-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7015, "date": "2013-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8542687526, "date": "2013-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.688, "date": "2013-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8559496062, "date": "2013-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6716666667, "date": "2013-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8576304598, "date": "2013-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6834166667, "date": "2013-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8593113134, "date": "2013-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.74425, "date": "2013-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8609921669, "date": "2013-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7975, "date": "2013-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8626730205, "date": "2013-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7765833333, "date": "2013-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8643538741, "date": "2013-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7738333333, "date": "2013-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8660347277, "date": "2013-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.78475, "date": "2013-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8677155813, "date": "2013-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7660833333, "date": "2013-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8693964349, "date": "2013-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7355, "date": "2013-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8710772884, "date": "2013-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6634166667, "date": "2013-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.872758142, "date": "2013-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.65675, "date": "2013-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8744389956, "date": "2013-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7924166667, "date": "2013-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8761198492, "date": "2013-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8378333333, "date": "2013-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8778007028, "date": "2013-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.80725, "date": "2013-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8794815563, "date": "2013-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.78775, "date": "2013-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8811624099, "date": "2013-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7235833333, "date": "2013-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8828432635, "date": "2013-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7071666667, "date": "2013-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8845241171, "date": "2013-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.70625, "date": "2013-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8862049707, "date": "2013-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.754, "date": "2013-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8878858242, "date": "2013-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7398333333, "date": "2013-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8895666778, "date": "2013-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7113333333, "date": "2013-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8912475314, "date": "2013-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6588333333, "date": "2013-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.892928385, "date": "2013-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.59425, "date": "2013-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8946092386, "date": "2013-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.53525, "date": "2013-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8962900922, "date": "2013-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.52225, "date": "2013-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8979709457, "date": "2013-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5230833333, "date": "2013-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8996517993, "date": "2013-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4666666667, "date": "2013-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9013326529, "date": "2013-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.43525, "date": "2013-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9030135065, "date": "2013-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3709166667, "date": "2013-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9046943601, "date": "2013-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3919166667, "date": "2013-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9063752136, "date": "2013-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4623333333, "date": "2013-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9080560672, "date": "2013-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4495, "date": "2013-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9097369208, "date": "2013-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.44625, "date": "2013-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9114177744, "date": "2013-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4215, "date": "2013-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.913098628, "date": "2013-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.45025, "date": "2013-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9147794816, "date": "2013-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5034166667, "date": "2013-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9164603351, "date": "2013-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5093333333, "date": "2014-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9181411887, "date": "2014-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4998333333, "date": "2014-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9198220423, "date": "2014-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4701666667, "date": "2014-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9215028959, "date": "2014-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4669166667, "date": "2014-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9231837495, "date": "2014-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.46375, "date": "2014-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.924864603, "date": "2014-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.479, "date": "2014-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9265454566, "date": "2014-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5475, "date": "2014-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9282263102, "date": "2014-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.60675, "date": "2014-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9299071638, "date": "2014-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.64175, "date": "2014-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9315880174, "date": "2014-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6708333333, "date": "2014-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9332688709, "date": "2014-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.706, "date": "2014-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9349497245, "date": "2014-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7111666667, "date": "2014-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9366305781, "date": "2014-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7381666667, "date": "2014-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9383114317, "date": "2014-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7605, "date": "2014-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9399922853, "date": "2014-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.816, "date": "2014-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9416731389, "date": "2014-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.85025, "date": "2014-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9433539924, "date": "2014-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8839166667, "date": "2014-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.945034846, "date": "2014-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.85875, "date": "2014-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9467156996, "date": "2014-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8420833333, "date": "2014-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9483965532, "date": "2014-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8385833333, "date": "2014-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9500774068, "date": "2014-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.84325, "date": "2014-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9517582603, "date": "2014-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8565833333, "date": "2014-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9534391139, "date": "2014-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8398333333, "date": "2014-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9551199675, "date": "2014-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.85, "date": "2014-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9568008211, "date": "2014-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8686666667, "date": "2014-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9584816747, "date": "2014-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8699166667, "date": "2014-06-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9601625282, "date": "2014-06-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8475, "date": "2014-07-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9618433818, "date": "2014-07-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.80875, "date": "2014-07-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9635242354, "date": "2014-07-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7668333333, "date": "2014-07-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.965205089, "date": "2014-07-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7155833333, "date": "2014-07-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9668859426, "date": "2014-07-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6915, "date": "2014-08-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9685667962, "date": "2014-08-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6748333333, "date": "2014-08-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9702476497, "date": "2014-08-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.64375, "date": "2014-08-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9719285033, "date": "2014-08-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6246666667, "date": "2014-08-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9736093569, "date": "2014-08-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6250833333, "date": "2014-09-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9752902105, "date": "2014-09-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6225, "date": "2014-09-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9769710641, "date": "2014-09-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5761666667, "date": "2014-09-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9786519176, "date": "2014-09-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5251666667, "date": "2014-09-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9803327712, "date": "2014-09-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5249166667, "date": "2014-09-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9820136248, "date": "2014-09-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4766666667, "date": "2014-10-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9836944784, "date": "2014-10-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3915, "date": "2014-10-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.985375332, "date": "2014-10-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3021666667, "date": "2014-10-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9870561855, "date": "2014-10-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2323333333, "date": "2014-10-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9887370391, "date": "2014-10-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.17, "date": "2014-11-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9904178927, "date": "2014-11-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.116, "date": "2014-11-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9920987463, "date": "2014-11-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0705833333, "date": "2014-11-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9937795999, "date": "2014-11-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0020833333, "date": "2014-11-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9954604535, "date": "2014-11-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9605, "date": "2014-12-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.997141307, "date": "2014-12-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8666666667, "date": "2014-12-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9988221606, "date": "2014-12-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.74625, "date": "2014-12-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0005030142, "date": "2014-12-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6041666667, "date": "2014-12-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0021838678, "date": "2014-12-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5036666667, "date": "2014-12-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0038647214, "date": "2014-12-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.42375, "date": "2015-01-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0055455749, "date": "2015-01-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3450833333, "date": "2015-01-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0072264285, "date": "2015-01-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2650833333, "date": "2015-01-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0089072821, "date": "2015-01-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2385833333, "date": "2015-01-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0105881357, "date": "2015-01-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2544166667, "date": "2015-02-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0122689893, "date": "2015-02-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3746666667, "date": "2015-02-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0139498428, "date": "2015-02-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.45975, "date": "2015-02-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0156306964, "date": "2015-02-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5195833333, "date": "2015-02-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.01731155, "date": "2015-02-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.67225, "date": "2015-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0189924036, "date": "2015-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6890833333, "date": "2015-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0206732572, "date": "2015-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.65525, "date": "2015-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0223541108, "date": "2015-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6515833333, "date": "2015-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0240349643, "date": "2015-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.64325, "date": "2015-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0257158179, "date": "2015-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6116666667, "date": "2015-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0273966715, "date": "2015-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6054166667, "date": "2015-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0290775251, "date": "2015-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6794166667, "date": "2015-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0307583787, "date": "2015-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.776, "date": "2015-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0324392322, "date": "2015-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8776666667, "date": "2015-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0341200858, "date": "2015-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9048333333, "date": "2015-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0358009394, "date": "2015-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.95325, "date": "2015-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.037481793, "date": "2015-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9800833333, "date": "2015-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0391626466, "date": "2015-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9816666667, "date": "2015-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0408435001, "date": "2015-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9790833333, "date": "2015-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0425243537, "date": "2015-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0245833333, "date": "2015-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0442052073, "date": "2015-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0031666667, "date": "2015-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0458860609, "date": "2015-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9933333333, "date": "2015-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0475669145, "date": "2015-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9863333333, "date": "2015-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0492477681, "date": "2015-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0495833333, "date": "2015-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0509286216, "date": "2015-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.01825, "date": "2015-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0526094752, "date": "2015-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.964, "date": "2015-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0542903288, "date": "2015-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9108333333, "date": "2015-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0559711824, "date": "2015-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8488333333, "date": "2015-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.057652036, "date": "2015-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9221666667, "date": "2015-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0593328895, "date": "2015-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8459166667, "date": "2015-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0610137431, "date": "2015-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7256666667, "date": "2015-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0626945967, "date": "2015-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6556666667, "date": "2015-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0643754503, "date": "2015-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5951666667, "date": "2015-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0660563039, "date": "2015-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5485833333, "date": "2015-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0677371574, "date": "2015-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5356666667, "date": "2015-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.069418011, "date": "2015-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.52875, "date": "2015-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0710988646, "date": "2015-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5398333333, "date": "2015-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0727797182, "date": "2015-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4845833333, "date": "2015-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0744605718, "date": "2015-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4403333333, "date": "2015-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0761414254, "date": "2015-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.43425, "date": "2015-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0778222789, "date": "2015-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.45025, "date": "2015-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0795031325, "date": "2015-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.40075, "date": "2015-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0811839861, "date": "2015-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3225, "date": "2015-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0828648397, "date": "2015-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2930833333, "date": "2015-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0845456933, "date": "2015-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2871666667, "date": "2015-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0862265468, "date": "2015-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2714166667, "date": "2015-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0879074004, "date": "2015-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2659166667, "date": "2015-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.089588254, "date": "2015-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2755, "date": "2015-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0912691076, "date": "2015-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2711666667, "date": "2016-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0929499612, "date": "2016-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2410833333, "date": "2016-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0946308147, "date": "2016-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.15825, "date": "2016-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0963116683, "date": "2016-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1033333333, "date": "2016-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0979925219, "date": "2016-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0665833333, "date": "2016-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0996733755, "date": "2016-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0065, "date": "2016-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1013542291, "date": "2016-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9654166667, "date": "2016-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1030350827, "date": "2016-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9610833333, "date": "2016-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1047159362, "date": "2016-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0085, "date": "2016-02-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1063967898, "date": "2016-02-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0591666667, "date": "2016-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1080776434, "date": "2016-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1816666667, "date": "2016-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.109758497, "date": "2016-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2295, "date": "2016-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1114393506, "date": "2016-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.29525, "date": "2016-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1131202041, "date": "2016-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3093333333, "date": "2016-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1148010577, "date": "2016-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2985833333, "date": "2016-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1164819113, "date": "2016-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3630833333, "date": "2016-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1181627649, "date": "2016-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3878333333, "date": "2016-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1198436185, "date": "2016-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4613333333, "date": "2016-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.121524472, "date": "2016-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.448, "date": "2016-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1232053256, "date": "2016-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4648333333, "date": "2016-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1248861792, "date": "2016-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5193333333, "date": "2016-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1265670328, "date": "2016-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5528333333, "date": "2016-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1282478864, "date": "2016-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5924166667, "date": "2016-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.12992874, "date": "2016-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6095, "date": "2016-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1316095935, "date": "2016-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.57025, "date": "2016-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1332904471, "date": "2016-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.554, "date": "2016-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1349713007, "date": "2016-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5216666667, "date": "2016-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1366521543, "date": "2016-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.48475, "date": "2016-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1383330079, "date": "2016-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.46225, "date": "2016-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1400138614, "date": "2016-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4148333333, "date": "2016-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.141694715, "date": "2016-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3898333333, "date": "2016-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1433755686, "date": "2016-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.37575, "date": "2016-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1450564222, "date": "2016-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3731666667, "date": "2016-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1467372758, "date": "2016-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.41625, "date": "2016-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1484181293, "date": "2016-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4548333333, "date": "2016-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1500989829, "date": "2016-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4455833333, "date": "2016-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1517798365, "date": "2016-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.43125, "date": "2016-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1534606901, "date": "2016-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4525833333, "date": "2016-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1551415437, "date": "2016-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.455, "date": "2016-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1568223973, "date": "2016-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4759166667, "date": "2016-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1585032508, "date": "2016-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5001666667, "date": "2016-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1601841044, "date": "2016-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4879166667, "date": "2016-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.161864958, "date": "2016-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4775833333, "date": "2016-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1635458116, "date": "2016-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4675833333, "date": "2016-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1652266652, "date": "2016-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4754166667, "date": "2016-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1669075187, "date": "2016-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.43125, "date": "2016-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1685883723, "date": "2016-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.401, "date": "2016-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1702692259, "date": "2016-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3985833333, "date": "2016-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1719500795, "date": "2016-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.449, "date": "2016-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1736309331, "date": "2016-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4711666667, "date": "2016-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1753117866, "date": "2016-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.49825, "date": "2016-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1769926402, "date": "2016-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5386666667, "date": "2016-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1786734938, "date": "2016-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6046666667, "date": "2017-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1803543474, "date": "2017-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.61675, "date": "2017-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.182035201, "date": "2017-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.58775, "date": "2017-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1837160546, "date": "2017-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.56, "date": "2017-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1853969081, "date": "2017-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5350833333, "date": "2017-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1870777617, "date": "2017-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5325, "date": "2017-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1887586153, "date": "2017-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.54775, "date": "2017-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1904394689, "date": "2017-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5439166667, "date": "2017-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1921203225, "date": "2017-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5585, "date": "2017-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.193801176, "date": "2017-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5819166667, "date": "2017-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1954820296, "date": "2017-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5659166667, "date": "2017-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1971628832, "date": "2017-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.56525, "date": "2017-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1988437368, "date": "2017-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5618333333, "date": "2017-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2005245904, "date": "2017-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6004166667, "date": "2017-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2022054439, "date": "2017-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6600833333, "date": "2017-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2038862975, "date": "2017-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6749166667, "date": "2017-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2055671511, "date": "2017-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6858333333, "date": "2017-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2072480047, "date": "2017-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6525833333, "date": "2017-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2089288583, "date": "2017-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.61625, "date": "2017-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2106097119, "date": "2017-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6148333333, "date": "2017-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2122905654, "date": "2017-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.64425, "date": "2017-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.213971419, "date": "2017-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6515, "date": "2017-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2156522726, "date": "2017-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6581666667, "date": "2017-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2173331262, "date": "2017-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.61375, "date": "2017-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2190139798, "date": "2017-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5715, "date": "2017-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2206948333, "date": "2017-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.54175, "date": "2017-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2223756869, "date": "2017-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5163333333, "date": "2017-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2240565405, "date": "2017-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5458333333, "date": "2017-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2257373941, "date": "2017-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5284166667, "date": "2017-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2274182477, "date": "2017-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5604166667, "date": "2017-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2290991012, "date": "2017-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6000833333, "date": "2017-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2307799548, "date": "2017-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.62575, "date": "2017-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2324608084, "date": "2017-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6303333333, "date": "2017-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.234141662, "date": "2017-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6093333333, "date": "2017-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2358225156, "date": "2017-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6433333333, "date": "2017-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2375033692, "date": "2017-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.92375, "date": "2017-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2391842227, "date": "2017-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9299166667, "date": "2017-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2408650763, "date": "2017-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8819166667, "date": "2017-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2425459299, "date": "2017-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8330833333, "date": "2017-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2442267835, "date": "2017-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.81325, "date": "2017-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2459076371, "date": "2017-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7553333333, "date": "2017-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2475884906, "date": "2017-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7374166667, "date": "2017-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2492693442, "date": "2017-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7245, "date": "2017-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2509501978, "date": "2017-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7345833333, "date": "2017-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2526310514, "date": "2017-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8086666667, "date": "2017-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.254311905, "date": "2017-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8403333333, "date": "2017-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2559927585, "date": "2017-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8186666667, "date": "2017-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2576736121, "date": "2017-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7854166667, "date": "2017-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2593544657, "date": "2017-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.75475, "date": "2017-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2610353193, "date": "2017-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7375833333, "date": "2017-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2627161729, "date": "2017-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.707, "date": "2017-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2643970265, "date": "2017-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.72575, "date": "2017-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.26607788, "date": "2017-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7724166667, "date": "2018-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2677587336, "date": "2018-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.77875, "date": "2018-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2694395872, "date": "2018-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8083333333, "date": "2018-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2711204408, "date": "2018-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8210833333, "date": "2018-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2728012944, "date": "2018-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8610833333, "date": "2018-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2744821479, "date": "2018-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8919166667, "date": "2018-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2761630015, "date": "2018-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8649166667, "date": "2018-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2778438551, "date": "2018-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8209166667, "date": "2018-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2795247087, "date": "2018-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.81125, "date": "2018-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2812055623, "date": "2018-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8225833333, "date": "2018-03-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2828864158, "date": "2018-03-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8216666667, "date": "2018-03-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2845672694, "date": "2018-03-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8598333333, "date": "2018-03-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.286248123, "date": "2018-03-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9085833333, "date": "2018-03-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2879289766, "date": "2018-03-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.96025, "date": "2018-04-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2896098302, "date": "2018-04-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9554166667, "date": "2018-04-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2912906838, "date": "2018-04-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.00425, "date": "2018-04-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2929715373, "date": "2018-04-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0555833333, "date": "2018-04-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2946523909, "date": "2018-04-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1013333333, "date": "2018-04-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2963332445, "date": "2018-04-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.10325, "date": "2018-05-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2980140981, "date": "2018-05-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1435833333, "date": "2018-05-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2996949517, "date": "2018-05-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1908333333, "date": "2018-05-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3013758052, "date": "2018-05-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2299166667, "date": "2018-05-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3030566588, "date": "2018-05-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2145833333, "date": "2018-06-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3047375124, "date": "2018-06-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1860833333, "date": "2018-06-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.306418366, "date": "2018-06-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1563333333, "date": "2018-06-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3080992196, "date": "2018-06-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1141666667, "date": "2018-06-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3097800731, "date": "2018-06-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1225, "date": "2018-07-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3114609267, "date": "2018-07-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1355, "date": "2018-07-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3131417803, "date": "2018-07-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1366666667, "date": "2018-07-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3148226339, "date": "2018-07-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1070833333, "date": "2018-07-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3165034875, "date": "2018-07-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1183333333, "date": "2018-07-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3181843411, "date": "2018-07-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1210833333, "date": "2018-08-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3198651946, "date": "2018-08-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.11275, "date": "2018-08-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3215460482, "date": "2018-08-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0929166667, "date": "2018-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3232269018, "date": "2018-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.09825, "date": "2018-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3249077554, "date": "2018-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0974166667, "date": "2018-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.326588609, "date": "2018-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1075833333, "date": "2018-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3282694625, "date": "2018-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1165, "date": "2018-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3299503161, "date": "2018-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.11675, "date": "2018-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3316311697, "date": "2018-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.14475, "date": "2018-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3333120233, "date": "2018-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1826666667, "date": "2018-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3349928769, "date": "2018-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1639166667, "date": "2018-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3366737304, "date": "2018-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.13325, "date": "2018-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.338354584, "date": "2018-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.10525, "date": "2018-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3400354376, "date": "2018-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0535, "date": "2018-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3417162912, "date": "2018-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9895833333, "date": "2018-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3433971448, "date": "2018-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9201666667, "date": "2018-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3450779984, "date": "2018-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8581666667, "date": "2018-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3467588519, "date": "2018-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7746666667, "date": "2018-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3484397055, "date": "2018-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7373333333, "date": "2018-12-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3501205591, "date": "2018-12-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6884166667, "date": "2018-12-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3518014127, "date": "2018-12-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6433333333, "date": "2018-12-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3534822663, "date": "2018-12-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5909166667, "date": "2018-12-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3551631198, "date": "2018-12-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5606666667, "date": "2019-01-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3568439734, "date": "2019-01-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.564, "date": "2019-01-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.358524827, "date": "2019-01-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.56425, "date": "2019-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3602056806, "date": "2019-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5623333333, "date": "2019-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3618865342, "date": "2019-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5584166667, "date": "2019-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3635673877, "date": "2019-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.57625, "date": "2019-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3652482413, "date": "2019-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6099166667, "date": "2019-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3669290949, "date": "2019-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6711666667, "date": "2019-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3686099485, "date": "2019-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6981666667, "date": "2019-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3702908021, "date": "2019-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.74175, "date": "2019-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3719716557, "date": "2019-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8166666667, "date": "2019-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3736525092, "date": "2019-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8960833333, "date": "2019-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3753333628, "date": "2019-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9681666667, "date": "2019-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3770142164, "date": "2019-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0340833333, "date": "2019-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.37869507, "date": "2019-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1266666667, "date": "2019-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3803759236, "date": "2019-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.14875, "date": "2019-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3820567771, "date": "2019-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.19725, "date": "2019-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3837376307, "date": "2019-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.21075, "date": "2019-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3854184843, "date": "2019-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1830833333, "date": "2019-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3870993379, "date": "2019-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1685, "date": "2019-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3887801915, "date": "2019-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1375833333, "date": "2019-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.390461045, "date": "2019-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1171666667, "date": "2019-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3921418986, "date": "2019-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0486666667, "date": "2019-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3938227522, "date": "2019-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.99025, "date": "2019-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3955036058, "date": "2019-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9665, "date": "2019-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3971844594, "date": "2019-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.01575, "date": "2019-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.398865313, "date": "2019-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0401666667, "date": "2019-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4005461665, "date": "2019-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0685833333, "date": "2019-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4022270201, "date": "2019-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0430833333, "date": "2019-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4039078737, "date": "2019-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0111666667, "date": "2019-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4055887273, "date": "2019-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.987, "date": "2019-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4072695809, "date": "2019-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9296666667, "date": "2019-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4089504344, "date": "2019-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9025833333, "date": "2019-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.410631288, "date": "2019-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.883, "date": "2019-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4123121416, "date": "2019-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8750833333, "date": "2019-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4139929952, "date": "2019-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8625833333, "date": "2019-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4156738488, "date": "2019-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.86325, "date": "2019-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4173547023, "date": "2019-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9605, "date": "2019-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4190355559, "date": "2019-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.98525, "date": "2019-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4207164095, "date": "2019-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9979166667, "date": "2019-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4223972631, "date": "2019-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.985, "date": "2019-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4240781167, "date": "2019-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9860833333, "date": "2019-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4257589703, "date": "2019-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.94375, "date": "2019-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4274398238, "date": "2019-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9556666667, "date": "2019-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4291206774, "date": "2019-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9631666667, "date": "2019-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.430801531, "date": "2019-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9349166667, "date": "2019-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4324823846, "date": "2019-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9135833333, "date": "2019-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4341632382, "date": "2019-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8996666667, "date": "2019-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4358440917, "date": "2019-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.88125, "date": "2019-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4375249453, "date": "2019-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8563333333, "date": "2019-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4392057989, "date": "2019-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8466666667, "date": "2019-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4408866525, "date": "2019-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8751666667, "date": "2019-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4425675061, "date": "2019-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8808333333, "date": "2020-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4442483596, "date": "2020-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.87475, "date": "2020-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4459292132, "date": "2020-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8461666667, "date": "2020-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4476100668, "date": "2020-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8190833333, "date": "2020-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4492909204, "date": "2020-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7765, "date": "2020-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.450971774, "date": "2020-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7435833333, "date": "2020-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4526526276, "date": "2020-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.74575, "date": "2020-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4543334811, "date": "2020-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7789166667, "date": "2020-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4560143347, "date": "2020-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7453333333, "date": "2020-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4576951883, "date": "2020-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7021666667, "date": "2020-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4593760419, "date": "2020-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.58475, "date": "2020-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4610568955, "date": "2020-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4628333333, "date": "2020-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.462737749, "date": "2020-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.355, "date": "2020-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4644186026, "date": "2020-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2745833333, "date": "2020-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4660994562, "date": "2020-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.20125, "date": "2020-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4677803098, "date": "2020-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1604166667, "date": "2020-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4694611634, "date": "2020-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.11725, "date": "2020-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4711420169, "date": "2020-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1213333333, "date": "2020-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4728228705, "date": "2020-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1696666667, "date": "2020-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4745037241, "date": "2020-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1990833333, "date": "2020-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4761845777, "date": "2020-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2720833333, "date": "2020-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4778654313, "date": "2020-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2890833333, "date": "2020-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4795462849, "date": "2020-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.344, "date": "2020-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4812271384, "date": "2020-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4030833333, "date": "2020-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.482907992, "date": "2020-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.43225, "date": "2020-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4845888456, "date": "2020-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4748333333, "date": "2020-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4862696992, "date": "2020-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.48025, "date": "2020-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4879505528, "date": "2020-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.49975, "date": "2020-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4896314063, "date": "2020-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4939166667, "date": "2020-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4913122599, "date": "2020-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4895, "date": "2020-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4929931135, "date": "2020-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.49, "date": "2020-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4946739671, "date": "2020-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4801666667, "date": "2020-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4963548207, "date": "2020-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4823333333, "date": "2020-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4980356742, "date": "2020-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.498, "date": "2020-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4997165278, "date": "2020-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5341666667, "date": "2020-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5013973814, "date": "2020-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5275, "date": "2020-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.503078235, "date": "2020-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5030833333, "date": "2020-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5047590886, "date": "2020-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4869166667, "date": "2020-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5064399422, "date": "2020-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4848333333, "date": "2020-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5081207957, "date": "2020-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4865, "date": "2020-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5098016493, "date": "2020-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4828333333, "date": "2020-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5114825029, "date": "2020-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4681666667, "date": "2020-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5131633565, "date": "2020-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4629166667, "date": "2020-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5148442101, "date": "2020-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.436, "date": "2020-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5165250636, "date": "2020-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.42075, "date": "2020-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5182059172, "date": "2020-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4341666667, "date": "2020-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5198867708, "date": "2020-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4274166667, "date": "2020-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5215676244, "date": "2020-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.443, "date": "2020-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.523248478, "date": "2020-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4734166667, "date": "2020-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5249293315, "date": "2020-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4745, "date": "2020-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5266101851, "date": "2020-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5308333333, "date": "2020-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5282910387, "date": "2020-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5481666667, "date": "2020-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5299718923, "date": "2020-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5546666667, "date": "2021-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5316527459, "date": "2021-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6196666667, "date": "2021-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5333335995, "date": "2021-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6805, "date": "2021-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.535014453, "date": "2021-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6963333333, "date": "2021-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5366953066, "date": "2021-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7136666667, "date": "2021-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5383761602, "date": "2021-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.76625, "date": "2021-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5400570138, "date": "2021-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8070833333, "date": "2021-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5417378674, "date": "2021-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9301666667, "date": "2021-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5434187209, "date": "2021-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0103333333, "date": "2021-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5450995745, "date": "2021-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0729166667, "date": "2021-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5467804281, "date": "2021-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1585, "date": "2021-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5484612817, "date": "2021-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1751666667, "date": "2021-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5501421353, "date": "2021-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1625833333, "date": "2021-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5518229888, "date": "2021-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.16725, "date": "2021-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5535038424, "date": "2021-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1645833333, "date": "2021-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.555184696, "date": "2021-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.172, "date": "2021-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5568655496, "date": "2021-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1914166667, "date": "2021-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5585464032, "date": "2021-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2116666667, "date": "2021-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5602272568, "date": "2021-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2814166667, "date": "2021-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5619081103, "date": "2021-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.34575, "date": "2021-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5635889639, "date": "2021-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.34525, "date": "2021-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5652698175, "date": "2021-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.35275, "date": "2021-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5669506711, "date": "2021-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3636666667, "date": "2021-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5686315247, "date": "2021-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.39425, "date": "2021-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5703123782, "date": "2021-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3904166667, "date": "2021-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5719932318, "date": "2021-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4235, "date": "2021-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5736740854, "date": "2021-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4525833333, "date": "2021-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.575354939, "date": "2021-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4655, "date": "2021-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5770357926, "date": "2021-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4844166667, "date": "2021-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5787166461, "date": "2021-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4724166667, "date": "2021-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5803974997, "date": "2021-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4996666667, "date": "2021-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5820783533, "date": "2021-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5111666667, "date": "2021-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5837592069, "date": "2021-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.51675, "date": "2021-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5854400605, "date": "2021-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4896666667, "date": "2021-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5871209141, "date": "2021-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4851666667, "date": "2021-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5888017676, "date": "2021-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5165833333, "date": "2021-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5904826212, "date": "2021-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5061666667, "date": "2021-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5921634748, "date": "2021-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5210833333, "date": "2021-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5938443284, "date": "2021-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5143333333, "date": "2021-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.595525182, "date": "2021-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5270833333, "date": "2021-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5972060355, "date": "2021-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5971666667, "date": "2021-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5988868891, "date": "2021-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.65275, "date": "2021-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6005677427, "date": "2021-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7156666667, "date": "2021-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6022485963, "date": "2021-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7273333333, "date": "2021-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6039294499, "date": "2021-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7481666667, "date": "2021-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6056103034, "date": "2021-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7454166667, "date": "2021-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.607291157, "date": "2021-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.74575, "date": "2021-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6089720106, "date": "2021-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7333333333, "date": "2021-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6106528642, "date": "2021-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.69975, "date": "2021-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6123337178, "date": "2021-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6755, "date": "2021-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6140145714, "date": "2021-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6595, "date": "2021-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6156954249, "date": "2021-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6401666667, "date": "2021-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6173762785, "date": "2021-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.64475, "date": "2022-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6190571321, "date": "2022-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6535833333, "date": "2022-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6207379857, "date": "2022-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6615, "date": "2022-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6224188393, "date": "2022-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6755, "date": "2022-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6240996928, "date": "2022-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7140833333, "date": "2022-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6257805464, "date": "2022-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7806666667, "date": "2022-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6274614, "date": "2022-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.82275, "date": "2022-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6291422536, "date": "2022-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8669166667, "date": "2022-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6308231072, "date": "2022-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9433333333, "date": "2022-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6325039608, "date": "2022-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4456666667, "date": "2022-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6341848143, "date": "2022-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.6726666667, "date": "2022-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6358656679, "date": "2022-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.6170833333, "date": "2022-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6375465215, "date": "2022-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.61125, "date": "2022-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6392273751, "date": "2022-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.5525833333, "date": "2022-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6409082287, "date": "2022-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4771666667, "date": "2022-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6425890822, "date": "2022-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4511666667, "date": "2022-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6442699358, "date": "2022-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4879166667, "date": "2022-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6459507894, "date": "2022-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.5610833333, "date": "2022-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.647631643, "date": "2022-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.701, "date": "2022-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6493124966, "date": "2022-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.8656666667, "date": "2022-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6509933501, "date": "2022-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.9719166667, "date": "2022-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6526742037, "date": "2022-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.012, "date": "2022-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6543550573, "date": "2022-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.2535, "date": "2022-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6560359109, "date": "2022-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.38075, "date": "2022-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6577167645, "date": "2022-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.3458333333, "date": "2022-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6593976181, "date": "2022-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.2643333333, "date": "2022-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6610784716, "date": "2022-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.1664166667, "date": "2022-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6627593252, "date": "2022-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.0398333333, "date": "2022-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6644401788, "date": "2022-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.883, "date": "2022-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6661210324, "date": "2022-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.7291666667, "date": "2022-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.667801886, "date": "2022-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.5989166667, "date": "2022-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6694827395, "date": "2022-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4489166667, "date": "2022-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6711635931, "date": "2022-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.349, "date": "2022-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6728444467, "date": "2022-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2890833333, "date": "2022-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6745253003, "date": "2022-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2285, "date": "2022-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6762061539, "date": "2022-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1523333333, "date": "2022-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6778870074, "date": "2022-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1074166667, "date": "2022-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.679567861, "date": "2022-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0789166667, "date": "2022-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6812487146, "date": "2022-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.14825, "date": "2022-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6829295682, "date": "2022-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2526666667, "date": "2022-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6846104218, "date": "2022-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.3633333333, "date": "2022-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6862912754, "date": "2022-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.3120833333, "date": "2022-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6879721289, "date": "2022-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1995833333, "date": "2022-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6896529825, "date": "2022-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1658333333, "date": "2022-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6913338361, "date": "2022-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2105, "date": "2022-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6930146897, "date": "2022-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.17825, "date": "2022-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6946955433, "date": "2022-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0665, "date": "2022-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6963763968, "date": "2022-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9478333333, "date": "2022-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6980572504, "date": "2022-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7958333333, "date": "2022-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.699738104, "date": "2022-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6435833333, "date": "2022-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7014189576, "date": "2022-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.523, "date": "2022-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7030998112, "date": "2022-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4898333333, "date": "2022-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7047806647, "date": "2022-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6025, "date": "2023-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7064615183, "date": "2023-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6311666667, "date": "2023-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7081423719, "date": "2023-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.67775, "date": "2023-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7098232255, "date": "2023-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.774, "date": "2023-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7115040791, "date": "2023-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8493333333, "date": "2023-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7131849327, "date": "2023-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8183333333, "date": "2023-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7148657862, "date": "2023-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.77675, "date": "2023-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7165466398, "date": "2023-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.776, "date": "2023-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7182274934, "date": "2023-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7435833333, "date": "2023-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.719908347, "date": "2023-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7944166667, "date": "2023-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7215892006, "date": "2023-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8526666667, "date": "2023-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7232700541, "date": "2023-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.81625, "date": "2023-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7249509077, "date": "2023-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.81875, "date": "2023-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7266317613, "date": "2023-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.883, "date": "2023-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7283126149, "date": "2023-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9720833333, "date": "2023-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7299934685, "date": "2023-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0398333333, "date": "2023-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.731674322, "date": "2023-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0428333333, "date": "2023-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7333551756, "date": "2023-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9936666667, "date": "2023-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7350360292, "date": "2023-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9304166667, "date": "2023-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7367168828, "date": "2023-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9295, "date": "2023-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7383977364, "date": "2023-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9285833333, "date": "2023-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.74007859, "date": "2023-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9719166667, "date": "2023-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7417594435, "date": "2023-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9455833333, "date": "2023-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7434402971, "date": "2023-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.995, "date": "2023-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7451211507, "date": "2023-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.98025, "date": "2023-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7468020043, "date": "2023-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9753333333, "date": "2023-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7484828579, "date": "2023-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9385833333, "date": "2023-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7501637114, "date": "2023-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9613333333, "date": "2023-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.751844565, "date": "2023-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9698333333, "date": "2023-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7535254186, "date": "2023-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0019166667, "date": "2023-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7552062722, "date": "2023-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1503333333, "date": "2023-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7568871258, "date": "2023-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2188333333, "date": "2023-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7585679793, "date": "2023-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2440833333, "date": "2023-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7602488329, "date": "2023-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2770833333, "date": "2023-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7619296865, "date": "2023-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.23275, "date": "2023-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7636105401, "date": "2023-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.22625, "date": "2023-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7652913937, "date": "2023-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2460833333, "date": "2023-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7669722473, "date": "2023-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.323, "date": "2023-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7686531008, "date": "2023-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2991666667, "date": "2023-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7703339544, "date": "2023-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.28625, "date": "2023-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.772014808, "date": "2023-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1599166667, "date": "2023-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7736956616, "date": "2023-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0485, "date": "2023-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7753765152, "date": "2023-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.99475, "date": "2023-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7770573687, "date": "2023-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9290833333, "date": "2023-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7787382223, "date": "2023-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8448333333, "date": "2023-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7804190759, "date": "2023-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.789, "date": "2023-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7820999295, "date": "2023-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7325833333, "date": "2023-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7837807831, "date": "2023-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6828333333, "date": "2023-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7854616366, "date": "2023-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6656666667, "date": "2023-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7871424902, "date": "2023-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5654166667, "date": "2023-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7888233438, "date": "2023-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4815, "date": "2023-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7905041974, "date": "2023-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5409166667, "date": "2023-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.792185051, "date": "2023-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5228333333, "date": "2024-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7938659046, "date": "2024-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5079166667, "date": "2024-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7955467581, "date": "2024-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4788333333, "date": "2024-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7972276117, "date": "2024-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4768333333, "date": "2024-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.7989084653, "date": "2024-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5109166667, "date": "2024-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8005893189, "date": "2024-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.54975, "date": "2024-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8022701725, "date": "2024-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5989166667, "date": "2024-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.803951026, "date": "2024-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6731666667, "date": "2024-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8056318796, "date": "2024-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6526666667, "date": "2024-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8073127332, "date": "2024-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7561666667, "date": "2024-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8089935868, "date": "2024-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.781, "date": "2024-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8106744404, "date": "2024-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8548333333, "date": "2024-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8123552939, "date": "2024-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9271666667, "date": "2024-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8140361475, "date": "2024-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9306666667, "date": "2024-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8157170011, "date": "2024-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0188333333, "date": "2024-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8173978547, "date": "2024-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.06375, "date": "2024-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8190787083, "date": "2024-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.10625, "date": "2024-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8207595619, "date": "2024-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.09125, "date": "2024-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8224404154, "date": "2024-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0814166667, "date": "2024-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.824121269, "date": "2024-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0420833333, "date": "2024-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8258021226, "date": "2024-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0134166667, "date": "2024-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8274829762, "date": "2024-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.00925, "date": "2024-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8291638298, "date": "2024-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9465, "date": "2024-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8308446833, "date": "2024-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8579166667, "date": "2024-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8325255369, "date": "2024-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8586666667, "date": "2024-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8342063905, "date": "2024-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8534166667, "date": "2024-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8358872441, "date": "2024-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8831666667, "date": "2024-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8375680977, "date": "2024-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.90025, "date": "2024-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8392489512, "date": "2024-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9055, "date": "2024-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8409298048, "date": "2024-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.87175, "date": "2024-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8426106584, "date": "2024-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.879, "date": "2024-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.844291512, "date": "2024-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.84375, "date": "2024-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8459723656, "date": "2024-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8125, "date": "2024-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8476532192, "date": "2024-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7886666667, "date": "2024-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8493340727, "date": "2024-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7275, "date": "2024-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8510149263, "date": "2024-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7145, "date": "2024-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8526957799, "date": "2024-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6693333333, "date": "2024-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8543766335, "date": "2024-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.62675, "date": "2024-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8560574871, "date": "2024-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6224166667, "date": "2024-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8577383406, "date": "2024-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6073333333, "date": "2024-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8594191942, "date": "2024-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5685833333, "date": "2024-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8611000478, "date": "2024-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5970833333, "date": "2024-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8627809014, "date": "2024-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5735, "date": "2024-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.864461755, "date": "2024-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5249166667, "date": "2024-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8661426085, "date": "2024-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.493, "date": "2024-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8678234621, "date": "2024-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4789166667, "date": "2024-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8695043157, "date": "2024-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4660833333, "date": "2024-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8711851693, "date": "2024-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4660833333, "date": "2024-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8728660229, "date": "2024-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.45425, "date": "2024-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8745468765, "date": "2024-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.431, "date": "2024-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.87622773, "date": "2024-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.431, "date": "2024-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8779085836, "date": "2024-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4395, "date": "2024-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8795894372, "date": "2024-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4266666667, "date": "2024-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8812702908, "date": "2024-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4620833333, "date": "2025-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8829511444, "date": "2025-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4610833333, "date": "2025-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8846319979, "date": "2025-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5243333333, "date": "2025-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8863128515, "date": "2025-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.522, "date": "2025-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8879937051, "date": "2025-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5101666667, "date": "2025-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8896745587, "date": "2025-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5611666667, "date": "2025-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8913554123, "date": "2025-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5964166667, "date": "2025-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8930362658, "date": "2025-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.57775, "date": "2025-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8947171194, "date": "2025-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5271666667, "date": "2025-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.896397973, "date": "2025-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.51375, "date": "2025-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8980788266, "date": "2025-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4978333333, "date": "2025-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.8997596802, "date": "2025-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5485833333, "date": "2025-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9014405338, "date": "2025-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6035, "date": "2025-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9031213873, "date": "2025-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6863333333, "date": "2025-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9048022409, "date": "2025-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.613, "date": "2025-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9064830945, "date": "2025-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.58525, "date": "2025-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9081639481, "date": "2025-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.57875, "date": "2025-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9098448017, "date": "2025-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5851666667, "date": "2025-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9115256552, "date": "2025-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5728333333, "date": "2025-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9132065088, "date": "2025-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6244166667, "date": "2025-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9148873624, "date": "2025-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6089166667, "date": "2025-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.916568216, "date": "2025-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5746666667, "date": "2025-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9182490696, "date": "2025-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5501666667, "date": "2025-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9199299231, "date": "2025-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5765, "date": "2025-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9216107767, "date": "2025-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6445833333, "date": "2025-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.9232916303, "date": "2025-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9264132155, "date": "2025-07-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9280940691, "date": "2025-07-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9297749227, "date": "2025-07-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9314557763, "date": "2025-07-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9331366299, "date": "2025-08-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9348174834, "date": "2025-08-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.936498337, "date": "2025-08-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9381791906, "date": "2025-08-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9398600442, "date": "2025-08-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9415408978, "date": "2025-09-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9432217513, "date": "2025-09-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9449026049, "date": "2025-09-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9465834585, "date": "2025-09-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9482643121, "date": "2025-10-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9499451657, "date": "2025-10-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9516260193, "date": "2025-10-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9533068728, "date": "2025-10-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9549877264, "date": "2025-11-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.95666858, "date": "2025-11-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9583494336, "date": "2025-11-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9600302872, "date": "2025-11-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9617111407, "date": "2025-11-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9633919943, "date": "2025-12-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9650728479, "date": "2025-12-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9667537015, "date": "2025-12-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9684345551, "date": "2025-12-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9701154086, "date": "2026-01-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9717962622, "date": "2026-01-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9734771158, "date": "2026-01-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9751579694, "date": "2026-01-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.976838823, "date": "2026-02-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9785196766, "date": "2026-02-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9802005301, "date": "2026-02-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9818813837, "date": "2026-02-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9835622373, "date": "2026-03-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9852430909, "date": "2026-03-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9869239445, "date": "2026-03-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.988604798, "date": "2026-03-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9902856516, "date": "2026-03-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9919665052, "date": "2026-04-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9936473588, "date": "2026-04-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9953282124, "date": "2026-04-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9970090659, "date": "2026-04-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.9986899195, "date": "2026-05-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0003707731, "date": "2026-05-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0020516267, "date": "2026-05-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0037324803, "date": "2026-05-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0054133339, "date": "2026-05-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0070941874, "date": "2026-06-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.008775041, "date": "2026-06-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0104558946, "date": "2026-06-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0121367482, "date": "2026-06-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0138176018, "date": "2026-07-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0154984553, "date": "2026-07-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0171793089, "date": "2026-07-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0188601625, "date": "2026-07-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0205410161, "date": "2026-08-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0222218697, "date": "2026-08-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0239027232, "date": "2026-08-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0255835768, "date": "2026-08-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0272644304, "date": "2026-08-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.028945284, "date": "2026-09-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0306261376, "date": "2026-09-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0323069912, "date": "2026-09-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0339878447, "date": "2026-09-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0356686983, "date": "2026-10-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0373495519, "date": "2026-10-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0390304055, "date": "2026-10-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0407112591, "date": "2026-10-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0423921126, "date": "2026-11-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0440729662, "date": "2026-11-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0457538198, "date": "2026-11-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0474346734, "date": "2026-11-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.049115527, "date": "2026-11-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0507963805, "date": "2026-12-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0524772341, "date": "2026-12-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0541580877, "date": "2026-12-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0558389413, "date": "2026-12-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0575197949, "date": "2027-01-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0592006485, "date": "2027-01-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.060881502, "date": "2027-01-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0625623556, "date": "2027-01-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0642432092, "date": "2027-01-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0659240628, "date": "2027-02-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0676049164, "date": "2027-02-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0692857699, "date": "2027-02-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0709666235, "date": "2027-02-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0726474771, "date": "2027-03-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0743283307, "date": "2027-03-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0760091843, "date": "2027-03-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0776900378, "date": "2027-03-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0793708914, "date": "2027-04-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.081051745, "date": "2027-04-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0827325986, "date": "2027-04-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0844134522, "date": "2027-04-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0860943058, "date": "2027-05-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0877751593, "date": "2027-05-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0894560129, "date": "2027-05-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0911368665, "date": "2027-05-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0928177201, "date": "2027-05-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0944985737, "date": "2027-06-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0961794272, "date": "2027-06-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0978602808, "date": "2027-06-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.0995411344, "date": "2027-06-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.101221988, "date": "2027-07-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1029028416, "date": "2027-07-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1045836951, "date": "2027-07-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1062645487, "date": "2027-07-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1079454023, "date": "2027-08-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1096262559, "date": "2027-08-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1113071095, "date": "2027-08-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1129879631, "date": "2027-08-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1146688166, "date": "2027-08-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1163496702, "date": "2027-09-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1180305238, "date": "2027-09-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1197113774, "date": "2027-09-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.121392231, "date": "2027-09-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1230730845, "date": "2027-10-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1247539381, "date": "2027-10-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1264347917, "date": "2027-10-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1281156453, "date": "2027-10-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1297964989, "date": "2027-10-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1314773524, "date": "2027-11-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.133158206, "date": "2027-11-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1348390596, "date": "2027-11-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1365199132, "date": "2027-11-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1382007668, "date": "2027-12-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1398816204, "date": "2027-12-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1415624739, "date": "2027-12-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1432433275, "date": "2027-12-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1449241811, "date": "2028-01-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1466050347, "date": "2028-01-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1482858883, "date": "2028-01-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1499667418, "date": "2028-01-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1516475954, "date": "2028-01-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.153328449, "date": "2028-02-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1550093026, "date": "2028-02-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1566901562, "date": "2028-02-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1583710097, "date": "2028-02-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1600518633, "date": "2028-03-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1617327169, "date": "2028-03-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1634135705, "date": "2028-03-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1650944241, "date": "2028-03-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1667752777, "date": "2028-04-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1684561312, "date": "2028-04-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1701369848, "date": "2028-04-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1718178384, "date": "2028-04-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.173498692, "date": "2028-04-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1751795456, "date": "2028-05-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1768603991, "date": "2028-05-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1785412527, "date": "2028-05-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1802221063, "date": "2028-05-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1819029599, "date": "2028-06-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1835838135, "date": "2028-06-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.185264667, "date": "2028-06-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1869455206, "date": "2028-06-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1886263742, "date": "2028-07-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1903072278, "date": "2028-07-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1919880814, "date": "2028-07-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.193668935, "date": "2028-07-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1953497885, "date": "2028-07-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1970306421, "date": "2028-08-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.1987114957, "date": "2028-08-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2003923493, "date": "2028-08-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2020732029, "date": "2028-08-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2037540564, "date": "2028-09-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.20543491, "date": "2028-09-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2071157636, "date": "2028-09-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2087966172, "date": "2028-09-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2104774708, "date": "2028-10-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2121583243, "date": "2028-10-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2138391779, "date": "2028-10-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2155200315, "date": "2028-10-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2172008851, "date": "2028-10-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2188817387, "date": "2028-11-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2205625923, "date": "2028-11-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2222434458, "date": "2028-11-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2239242994, "date": "2028-11-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.225605153, "date": "2028-12-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2272860066, "date": "2028-12-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2289668602, "date": "2028-12-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2306477137, "date": "2028-12-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2323285673, "date": "2028-12-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2340094209, "date": "2029-01-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2356902745, "date": "2029-01-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2373711281, "date": "2029-01-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2390519816, "date": "2029-01-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2407328352, "date": "2029-02-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2424136888, "date": "2029-02-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2440945424, "date": "2029-02-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.245775396, "date": "2029-02-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2474562496, "date": "2029-03-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2491371031, "date": "2029-03-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2508179567, "date": "2029-03-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2524988103, "date": "2029-03-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2541796639, "date": "2029-04-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2558605175, "date": "2029-04-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.257541371, "date": "2029-04-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2592222246, "date": "2029-04-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2609030782, "date": "2029-04-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2625839318, "date": "2029-05-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2642647854, "date": "2029-05-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2659456389, "date": "2029-05-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2676264925, "date": "2029-05-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2693073461, "date": "2029-06-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2709881997, "date": "2029-06-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2726690533, "date": "2029-06-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2743499069, "date": "2029-06-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2760307604, "date": "2029-07-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.277711614, "date": "2029-07-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2793924676, "date": "2029-07-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2810733212, "date": "2029-07-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2827541748, "date": "2029-07-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2844350283, "date": "2029-08-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2861158819, "date": "2029-08-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2877967355, "date": "2029-08-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2894775891, "date": "2029-08-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2911584427, "date": "2029-09-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2928392962, "date": "2029-09-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2945201498, "date": "2029-09-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2962010034, "date": "2029-09-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.297881857, "date": "2029-09-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.2995627106, "date": "2029-10-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3012435642, "date": "2029-10-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3029244177, "date": "2029-10-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3046052713, "date": "2029-10-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3062861249, "date": "2029-11-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3079669785, "date": "2029-11-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3096478321, "date": "2029-11-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3113286856, "date": "2029-11-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3130095392, "date": "2029-12-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3146903928, "date": "2029-12-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3163712464, "date": "2029-12-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3180521, "date": "2029-12-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3197329535, "date": "2029-12-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3214138071, "date": "2030-01-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3230946607, "date": "2030-01-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3247755143, "date": "2030-01-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3264563679, "date": "2030-01-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3281372215, "date": "2030-02-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.329818075, "date": "2030-02-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3314989286, "date": "2030-02-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3331797822, "date": "2030-02-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3348606358, "date": "2030-03-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3365414894, "date": "2030-03-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3382223429, "date": "2030-03-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3399031965, "date": "2030-03-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3415840501, "date": "2030-03-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3432649037, "date": "2030-04-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3449457573, "date": "2030-04-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3466266108, "date": "2030-04-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3483074644, "date": "2030-04-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.349988318, "date": "2030-05-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3516691716, "date": "2030-05-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3533500252, "date": "2030-05-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3550308788, "date": "2030-05-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3567117323, "date": "2030-06-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3583925859, "date": "2030-06-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3600734395, "date": "2030-06-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 4.3617542931, "date": "2030-06-23", "fuel": "gasoline", "is_predicted": "forecasting"}], "metadata": {"avg_price": {"type": "number", "semanticType": "Number"}, "date": {"type": "date", "semanticType": "Date"}, "fuel": {"type": "string", "semanticType": "String"}, "is_predicted": {"type": "string", "semanticType": "String", "levels": ["original", "regression", "forecasting"]}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.linear_model import LinearRegression\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train linear regression model\n model = LinearRegression()\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n", "source": ["weekly_gas_prices"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n date fuel avg_price\n0 1990-08-20 gasoline 1.191\n1 1990-08-27 gasoline 1.245\n2 1990-09-03 gasoline 1.242\n3 1990-09-10 gasoline 1.252\n4 1990-09-17 gasoline 1.266\n5 1990-09-24 gasoline 1.272\n6 1990-10-01 gasoline 1.321\n7 1990-10-08 gasoline 1.333\n8 1990-10-15 gasoline 1.339\n9 1990-10-22 gasoline 1.345\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"forecast the price trend for the next 5 years with some propert model!\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"column\": \"fuel\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Build upon the previous price trends visualization by adding forecasted prices for the next 5 years (2025-2030) using a time series forecasting model. The output should include both historical actual prices and forecasted prices, with an indicator to distinguish between them.\",\n \"display_instruction\": \"Forecast **price** trends for the next 5 years for each **fuel** type\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\", \"is_predicted\"],\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"facet\": \"is_predicted\"\n },\n \"reason\": \"The user wants to extend the price trend analysis with forecasting for the next 5 years. Following the guidelines for forecasting, the output should include a 'is_predicted' column to distinguish between actual historical data, regression on historical data, and forecasted future values. The chart should be a line chart showing both historical and predicted values for each fuel type.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.linear_model import LinearRegression\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train linear regression model\n model = LinearRegression()\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-904593", "resultTableId": "table-34", "chart": {"id": "chart-1760745146503", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--date"}, "y": {"fieldID": "concept-avg_price-1760744859365"}, "color": {"fieldID": "original--weekly_gas_prices--fuel"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "original--weekly_gas_prices--fuel"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-904593", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "forecast the price trend for the next 5 years with some propert model!", "displayContent": "Forecast **price** trends for the next 5 years for each **fuel** type"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "This code performs **time series analysis and forecasting** on historical gas prices:\n\n1. **Aggregate historical prices** by calculating the mean `price` across all `grade` and `formulation` values for each `date` and `fuel` type combination, creating an `avg_price` metric.\n\n2. **Prepare temporal features** by converting `date` to datetime format and calculating `days_since_start` (the number of days elapsed since the earliest date) for each `fuel` type separately.\n\n3. **Train linear regression models** for each `fuel` type (diesel, gasoline) using `days_since_start` as the predictor variable and `avg_price` as the target variable.\n\n4. **Generate three data series** for each fuel type:\n - **Original**: Historical `avg_price` values with label `is_predicted = 'original'`\n - **Regression**: Fitted values from the linear model for historical dates with label `is_predicted = 'regression'`\n - **Forecasting**: Predicted prices for the next **5 years** (260 weekly periods) beyond the latest historical date with label `is_predicted = 'forecasting'`\n\n5. **Combine and format** all series into a single dataset sorted by `fuel` and `date`, with dates converted back to string format.", "concepts": [{"explanation": "This analysis uses **linear regression modeling** to capture long-term price trends and forecast future gas prices. The model treats time as a continuous predictor variable (days_since_start) to predict average price. Each fuel type is modeled independently to account for different pricing dynamics. The approach assumes a linear relationship between time and price, which captures overall trend but may not account for cyclical patterns, seasonality, or market shocks. **Alternative modeling approaches** could include: (1) ARIMA/SARIMA models to capture autocorrelation and seasonality, (2) exponential smoothing methods (Holt-Winters) for trend and seasonal components, (3) polynomial regression for non-linear trends, or (4) more advanced machine learning methods like LSTM neural networks for complex temporal patterns.", "field": "Statistical Analysis"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.linear_model import LinearRegression\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train linear regression model\n model = LinearRegression()\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThis code performs **time series analysis and forecasting** on historical gas prices:\n\n1. **Aggregate historical prices** by calculating the mean `price` across all `grade` and `formulation` values for each `date` and `fuel` type combination, creating an `avg_price` metric.\n\n2. **Prepare temporal features** by converting `date` to datetime format and calculating `days_since_start` (the number of days elapsed since the earliest date) for each `fuel` type separately.\n\n3. **Train linear regression models** for each `fuel` type (diesel, gasoline) using `days_since_start` as the predictor variable and `avg_price` as the target variable.\n\n4. **Generate three data series** for each fuel type:\n - **Original**: Historical `avg_price` values with label `is_predicted = 'original'`\n - **Regression**: Fitted values from the linear model for historical dates with label `is_predicted = 'regression'`\n - **Forecasting**: Predicted prices for the next **5 years** (260 weekly periods) beyond the latest historical date with label `is_predicted = 'forecasting'`\n\n5. **Combine and format** all series into a single dataset sorted by `fuel` and `date`, with dates converted back to string format.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis uses **linear regression modeling** to capture long-term price trends and forecast future gas prices. The model treats time as a continuous predictor variable (days_since_start) to predict average price. Each fuel type is modeled independently to account for different pricing dynamics. The approach assumes a linear relationship between time and price, which captures overall trend but may not account for cyclical patterns, seasonality, or market shocks. **Alternative modeling approaches** could include: (1) ARIMA/SARIMA models to capture autocorrelation and seasonality, (2) exponential smoothing methods (Holt-Winters) for trend and seasonal components, (3) polynomial regression for non-linear trends, or (4) more advanced machine learning methods like LSTM neural networks for complex temporal patterns.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-22", "displayId": "fuel-price-forecast1", "names": ["avg_price", "date", "fuel", "is_predicted"], "rows": [{"avg_price": 1.106, "date": "1994-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.5951388141, "date": "1994-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.107, "date": "1994-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.5986628745, "date": "1994-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1994-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6021849755, "date": "1994-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.108, "date": "1994-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6057051172, "date": "1994-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.105, "date": "1994-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6092232996, "date": "1994-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1994-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6127395226, "date": "1994-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1994-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6162537863, "date": "1994-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.101, "date": "1994-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6197660906, "date": "1994-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1994-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6232764356, "date": "1994-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1994-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6267848212, "date": "1994-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1994-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6302912475, "date": "1994-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.101, "date": "1994-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6337957144, "date": "1994-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1994-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.637298222, "date": "1994-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.103, "date": "1994-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6407987703, "date": "1994-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.108, "date": "1994-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6442973591, "date": "1994-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1994-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6477939887, "date": "1994-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.11, "date": "1994-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6512886589, "date": "1994-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.111, "date": "1994-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6547813697, "date": "1994-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.111, "date": "1994-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6582721212, "date": "1994-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.116, "date": "1994-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6617609134, "date": "1994-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.127, "date": "1994-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6652477462, "date": "1994-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.127, "date": "1994-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6687326197, "date": "1994-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1994-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6722155338, "date": "1994-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1994-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6756964886, "date": "1994-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1994-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.679175484, "date": "1994-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.128, "date": "1994-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6826525201, "date": "1994-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1994-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6861275968, "date": "1994-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1994-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6896007142, "date": "1994-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1994-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6930718722, "date": "1994-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1994-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.6965410709, "date": "1994-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.119, "date": "1994-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7000083102, "date": "1994-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1994-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7034735902, "date": "1994-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.133, "date": "1994-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7069369109, "date": "1994-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.133, "date": "1994-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7103982722, "date": "1994-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.135, "date": "1994-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7138576741, "date": "1994-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1994-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7173151167, "date": "1994-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1994-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7207706, "date": "1994-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1994-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7242241239, "date": "1994-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1994-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7276756885, "date": "1994-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1994-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7311252937, "date": "1994-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1994-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7345729396, "date": "1994-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1995-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7380186261, "date": "1995-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.102, "date": "1995-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7414623533, "date": "1995-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.1, "date": "1995-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7449041211, "date": "1995-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.095, "date": "1995-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7483439296, "date": "1995-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.09, "date": "1995-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7517817787, "date": "1995-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.086, "date": "1995-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7552176685, "date": "1995-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1995-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.758651599, "date": "1995-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1995-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7620835701, "date": "1995-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1995-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7655135818, "date": "1995-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1995-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7689416342, "date": "1995-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1995-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7723677273, "date": "1995-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.085, "date": "1995-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.775791861, "date": "1995-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1995-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7792140353, "date": "1995-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.094, "date": "1995-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7826342504, "date": "1995-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.101, "date": "1995-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.786052506, "date": "1995-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1995-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7894688023, "date": "1995-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.115, "date": "1995-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7928831393, "date": "1995-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.119, "date": "1995-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.796295517, "date": "1995-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1995-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.7997059352, "date": "1995-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1995-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8031143942, "date": "1995-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1995-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8065208938, "date": "1995-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1995-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.809925434, "date": "1995-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1995-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8133280149, "date": "1995-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1995-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8167286364, "date": "1995-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1995-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8201272986, "date": "1995-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.112, "date": "1995-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8235240015, "date": "1995-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1995-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.826918745, "date": "1995-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.103, "date": "1995-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8303115291, "date": "1995-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1995-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.833702354, "date": "1995-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1995-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8370912194, "date": "1995-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.093, "date": "1995-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8404781255, "date": "1995-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1995-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8438630723, "date": "1995-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1995-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8472460597, "date": "1995-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1995-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8506270878, "date": "1995-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1995-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8540061565, "date": "1995-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.115, "date": "1995-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8573832659, "date": "1995-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.119, "date": "1995-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.860758416, "date": "1995-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1995-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8641316066, "date": "1995-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1995-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.867502838, "date": "1995-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1995-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.87087211, "date": "1995-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1995-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8742394226, "date": "1995-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.117, "date": "1995-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8776047759, "date": "1995-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1995-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8809681699, "date": "1995-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.11, "date": "1995-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8843296045, "date": "1995-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1995-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8876890797, "date": "1995-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1995-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8910465957, "date": "1995-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.119, "date": "1995-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8944021522, "date": "1995-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1995-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.8977557494, "date": "1995-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1995-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9011073873, "date": "1995-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1995-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9044570658, "date": "1995-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1995-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.907804785, "date": "1995-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.141, "date": "1995-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9111505449, "date": "1995-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.148, "date": "1996-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9144943453, "date": "1996-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.146, "date": "1996-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9178361865, "date": "1996-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.152, "date": "1996-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9211760683, "date": "1996-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.144, "date": "1996-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9245139907, "date": "1996-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.136, "date": "1996-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9278499538, "date": "1996-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1996-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9311839576, "date": "1996-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.134, "date": "1996-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.934516002, "date": "1996-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.151, "date": "1996-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.937846087, "date": "1996-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.164, "date": "1996-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9411742127, "date": "1996-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.175, "date": "1996-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9445003791, "date": "1996-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.173, "date": "1996-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9478245861, "date": "1996-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.172, "date": "1996-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9511468338, "date": "1996-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.21, "date": "1996-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9544671221, "date": "1996-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.222, "date": "1996-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9577854511, "date": "1996-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.249, "date": "1996-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9611018207, "date": "1996-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.305, "date": "1996-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.964416231, "date": "1996-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.304, "date": "1996-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9677286819, "date": "1996-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.285, "date": "1996-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9710391735, "date": "1996-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.292, "date": "1996-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9743477057, "date": "1996-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.285, "date": "1996-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9776542786, "date": "1996-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.274, "date": "1996-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9809588922, "date": "1996-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.254, "date": "1996-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9842615464, "date": "1996-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.24, "date": "1996-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9875622412, "date": "1996-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.215, "date": "1996-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9908609767, "date": "1996-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.193, "date": "1996-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9941577529, "date": "1996-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.179, "date": "1996-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 0.9974525697, "date": "1996-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.172, "date": "1996-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0007454272, "date": "1996-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.173, "date": "1996-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0040363253, "date": "1996-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.178, "date": "1996-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.007325264, "date": "1996-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.184, "date": "1996-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0106122435, "date": "1996-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.178, "date": "1996-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0138972635, "date": "1996-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.184, "date": "1996-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0171803243, "date": "1996-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.191, "date": "1996-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0204614257, "date": "1996-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.206, "date": "1996-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0237405677, "date": "1996-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.222, "date": "1996-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0270177504, "date": "1996-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.231, "date": "1996-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0302929737, "date": "1996-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.25, "date": "1996-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0335662377, "date": "1996-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.276, "date": "1996-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0368375424, "date": "1996-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.277, "date": "1996-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0401068877, "date": "1996-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.289, "date": "1996-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0433742736, "date": "1996-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.308, "date": "1996-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0466397002, "date": "1996-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.326, "date": "1996-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0499031675, "date": "1996-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.329, "date": "1996-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0531646754, "date": "1996-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.329, "date": "1996-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.056424224, "date": "1996-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.323, "date": "1996-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0596818132, "date": "1996-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.316, "date": "1996-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0629374431, "date": "1996-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.324, "date": "1996-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0661911136, "date": "1996-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.327, "date": "1996-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0694428248, "date": "1996-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.323, "date": "1996-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0726925766, "date": "1996-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.32, "date": "1996-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0759403691, "date": "1996-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.307, "date": "1996-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0791862022, "date": "1996-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.3, "date": "1996-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.082430076, "date": "1996-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.295, "date": "1996-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0856719904, "date": "1996-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.291, "date": "1997-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0889119455, "date": "1997-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.296, "date": "1997-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0921499413, "date": "1997-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.293, "date": "1997-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0953859777, "date": "1997-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.283, "date": "1997-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.0986200548, "date": "1997-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.288, "date": "1997-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1018521725, "date": "1997-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.285, "date": "1997-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1050823308, "date": "1997-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.278, "date": "1997-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1083105298, "date": "1997-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.269, "date": "1997-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1115367695, "date": "1997-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.252, "date": "1997-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1147610498, "date": "1997-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.23, "date": "1997-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1179833708, "date": "1997-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.22, "date": "1997-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1212037324, "date": "1997-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.22, "date": "1997-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1244221347, "date": "1997-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.225, "date": "1997-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1276385776, "date": "1997-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.217, "date": "1997-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1308530612, "date": "1997-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.216, "date": "1997-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1340655855, "date": "1997-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.211, "date": "1997-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1372761504, "date": "1997-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.205, "date": "1997-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1404847559, "date": "1997-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.205, "date": "1997-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1436914021, "date": "1997-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.191, "date": "1997-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.146896089, "date": "1997-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.191, "date": "1997-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1500988165, "date": "1997-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.196, "date": "1997-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1532995846, "date": "1997-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.19, "date": "1997-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1564983934, "date": "1997-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.187, "date": "1997-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1596952429, "date": "1997-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.172, "date": "1997-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.162890133, "date": "1997-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.162, "date": "1997-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1660830638, "date": "1997-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.153, "date": "1997-06-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1692740352, "date": "1997-06-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.159, "date": "1997-07-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1724630473, "date": "1997-07-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.152, "date": "1997-07-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1756501, "date": "1997-07-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.147, "date": "1997-07-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1788351934, "date": "1997-07-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.145, "date": "1997-07-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1820183274, "date": "1997-07-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.155, "date": "1997-08-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1851995021, "date": "1997-08-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.168, "date": "1997-08-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1883787175, "date": "1997-08-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.167, "date": "1997-08-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1915559735, "date": "1997-08-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.169, "date": "1997-08-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1947312701, "date": "1997-08-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.165, "date": "1997-09-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.1979046074, "date": "1997-09-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.163, "date": "1997-09-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2010759854, "date": "1997-09-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.156, "date": "1997-09-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.204245404, "date": "1997-09-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.154, "date": "1997-09-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2074128632, "date": "1997-09-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.16, "date": "1997-09-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2105783631, "date": "1997-09-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.175, "date": "1997-10-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2137419037, "date": "1997-10-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.185, "date": "1997-10-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2169034849, "date": "1997-10-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.185, "date": "1997-10-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2200631068, "date": "1997-10-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.185, "date": "1997-10-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2232207693, "date": "1997-10-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.188, "date": "1997-11-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2263764725, "date": "1997-11-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.19, "date": "1997-11-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2295302163, "date": "1997-11-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.195, "date": "1997-11-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2326820008, "date": "1997-11-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.193, "date": "1997-11-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.235831826, "date": "1997-11-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.189, "date": "1997-12-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2389796917, "date": "1997-12-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.174, "date": "1997-12-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2421255982, "date": "1997-12-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.162, "date": "1997-12-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2452695453, "date": "1997-12-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.155, "date": "1997-12-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.248411533, "date": "1997-12-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.15, "date": "1997-12-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2515515614, "date": "1997-12-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.147, "date": "1998-01-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2546896305, "date": "1998-01-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1998-01-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2578257402, "date": "1998-01-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1998-01-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2609598906, "date": "1998-01-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.096, "date": "1998-01-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2640920816, "date": "1998-01-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1998-02-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2672223132, "date": "1998-02-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.085, "date": "1998-02-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2703505856, "date": "1998-02-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.082, "date": "1998-02-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2734768985, "date": "1998-02-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.079, "date": "1998-02-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2766012522, "date": "1998-02-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.074, "date": "1998-03-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2797236464, "date": "1998-03-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.066, "date": "1998-03-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2828440814, "date": "1998-03-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.057, "date": "1998-03-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.285962557, "date": "1998-03-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.049, "date": "1998-03-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2890790732, "date": "1998-03-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.068, "date": "1998-03-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2921936301, "date": "1998-03-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.067, "date": "1998-04-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2953062276, "date": "1998-04-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1998-04-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.2984168658, "date": "1998-04-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1998-04-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3015255447, "date": "1998-04-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.07, "date": "1998-04-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3046322642, "date": "1998-04-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.072, "date": "1998-05-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3077370244, "date": "1998-05-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1998-05-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3108398252, "date": "1998-05-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.069, "date": "1998-05-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3139406666, "date": "1998-05-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.06, "date": "1998-05-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3170395488, "date": "1998-05-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.053, "date": "1998-06-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3201364715, "date": "1998-06-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.045, "date": "1998-06-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3232314349, "date": "1998-06-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.04, "date": "1998-06-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.326324439, "date": "1998-06-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.033, "date": "1998-06-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3294154838, "date": "1998-06-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.034, "date": "1998-06-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3325045691, "date": "1998-06-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.036, "date": "1998-07-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3355916952, "date": "1998-07-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.031, "date": "1998-07-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3386768619, "date": "1998-07-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.027, "date": "1998-07-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3417600692, "date": "1998-07-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.02, "date": "1998-07-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3448413172, "date": "1998-07-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.016, "date": "1998-08-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3479206058, "date": "1998-08-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.01, "date": "1998-08-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3509979351, "date": "1998-08-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.007, "date": "1998-08-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3540733051, "date": "1998-08-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.004, "date": "1998-08-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3571467157, "date": "1998-08-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1, "date": "1998-08-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.360218167, "date": "1998-08-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.009, "date": "1998-09-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3632876589, "date": "1998-09-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.019, "date": "1998-09-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3663551914, "date": "1998-09-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.03, "date": "1998-09-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3694207647, "date": "1998-09-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.039, "date": "1998-09-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3724843785, "date": "1998-09-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.041, "date": "1998-10-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3755460331, "date": "1998-10-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.041, "date": "1998-10-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3786057282, "date": "1998-10-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.036, "date": "1998-10-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3816634641, "date": "1998-10-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.036, "date": "1998-10-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3847192406, "date": "1998-10-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.035, "date": "1998-11-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3877730577, "date": "1998-11-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.034, "date": "1998-11-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3908249155, "date": "1998-11-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.026, "date": "1998-11-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3938748139, "date": "1998-11-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.012, "date": "1998-11-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.396922753, "date": "1998-11-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.004, "date": "1998-11-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.3999687328, "date": "1998-11-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.986, "date": "1998-12-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4030127532, "date": "1998-12-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.972, "date": "1998-12-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4060548142, "date": "1998-12-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.968, "date": "1998-12-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4090949159, "date": "1998-12-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.966, "date": "1998-12-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4121330583, "date": "1998-12-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.965, "date": "1999-01-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4151692413, "date": "1999-01-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.967, "date": "1999-01-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.418203465, "date": "1999-01-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.97, "date": "1999-01-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4212357293, "date": "1999-01-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.964, "date": "1999-01-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4242660343, "date": "1999-01-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.962, "date": "1999-02-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4272943799, "date": "1999-02-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.962, "date": "1999-02-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4303207662, "date": "1999-02-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.959, "date": "1999-02-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4333451931, "date": "1999-02-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.953, "date": "1999-02-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4363676607, "date": "1999-02-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.956, "date": "1999-03-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4393881689, "date": "1999-03-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 0.964, "date": "1999-03-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4424067178, "date": "1999-03-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1, "date": "1999-03-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4454233074, "date": "1999-03-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.018, "date": "1999-03-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4484379376, "date": "1999-03-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.046, "date": "1999-03-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4514506084, "date": "1999-03-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1999-04-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4544613199, "date": "1999-04-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.084, "date": "1999-04-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4574700721, "date": "1999-04-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.08, "date": "1999-04-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4604768649, "date": "1999-04-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.078, "date": "1999-04-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4634816984, "date": "1999-04-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.078, "date": "1999-05-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4664845725, "date": "1999-05-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.083, "date": "1999-05-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4694854873, "date": "1999-05-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1999-05-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4724844427, "date": "1999-05-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.066, "date": "1999-05-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4754814388, "date": "1999-05-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1999-05-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4784764755, "date": "1999-05-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.059, "date": "1999-06-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4814695529, "date": "1999-06-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.068, "date": "1999-06-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4844606709, "date": "1999-06-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.082, "date": "1999-06-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4874498296, "date": "1999-06-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.087, "date": "1999-06-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4904370289, "date": "1999-06-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.102, "date": "1999-07-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4934222689, "date": "1999-07-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1999-07-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4964055496, "date": "1999-07-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.133, "date": "1999-07-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.4993868709, "date": "1999-07-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.137, "date": "1999-07-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5023662328, "date": "1999-07-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.146, "date": "1999-08-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5053436354, "date": "1999-08-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.156, "date": "1999-08-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5083190787, "date": "1999-08-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.178, "date": "1999-08-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5112925626, "date": "1999-08-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.186, "date": "1999-08-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5142640872, "date": "1999-08-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.194, "date": "1999-08-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5172336524, "date": "1999-08-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.198, "date": "1999-09-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5202012583, "date": "1999-09-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.209, "date": "1999-09-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5231669048, "date": "1999-09-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.226, "date": "1999-09-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.526130592, "date": "1999-09-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.226, "date": "1999-09-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5290923198, "date": "1999-09-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.234, "date": "1999-10-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5320520883, "date": "1999-10-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.228, "date": "1999-10-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5350098974, "date": "1999-10-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.224, "date": "1999-10-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5379657472, "date": "1999-10-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.226, "date": "1999-10-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5409196377, "date": "1999-10-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.229, "date": "1999-11-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5438715688, "date": "1999-11-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.234, "date": "1999-11-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5468215405, "date": "1999-11-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.261, "date": "1999-11-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5497695529, "date": "1999-11-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.289, "date": "1999-11-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.552715606, "date": "1999-11-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.304, "date": "1999-11-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5556596997, "date": "1999-11-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.294, "date": "1999-12-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.558601834, "date": "1999-12-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.288, "date": "1999-12-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5615420091, "date": "1999-12-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.287, "date": "1999-12-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5644802247, "date": "1999-12-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.298, "date": "1999-12-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.567416481, "date": "1999-12-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.309, "date": "2000-01-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.570350778, "date": "2000-01-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.307, "date": "2000-01-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5732831156, "date": "2000-01-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.307, "date": "2000-01-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5762134939, "date": "2000-01-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.418, "date": "2000-01-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5791419129, "date": "2000-01-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.439, "date": "2000-01-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5820683724, "date": "2000-01-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.47, "date": "2000-02-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5849928727, "date": "2000-02-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.456, "date": "2000-02-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5879154136, "date": "2000-02-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.456, "date": "2000-02-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5908359951, "date": "2000-02-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.461, "date": "2000-02-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5937546173, "date": "2000-02-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.49, "date": "2000-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5966712802, "date": "2000-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.496, "date": "2000-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.5995859837, "date": "2000-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.479, "date": "2000-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6024987278, "date": "2000-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.451, "date": "2000-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6054095126, "date": "2000-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.442, "date": "2000-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6083183381, "date": "2000-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.419, "date": "2000-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6112252042, "date": "2000-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.398, "date": "2000-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.614130111, "date": "2000-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.428, "date": "2000-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6170330584, "date": "2000-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.418, "date": "2000-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6199340465, "date": "2000-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.402, "date": "2000-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6228330752, "date": "2000-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.415, "date": "2000-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6257301446, "date": "2000-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.432, "date": "2000-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6286252546, "date": "2000-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.431, "date": "2000-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6315184053, "date": "2000-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.419, "date": "2000-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6344095967, "date": "2000-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.411, "date": "2000-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6372988287, "date": "2000-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.423, "date": "2000-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6401861013, "date": "2000-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.432, "date": "2000-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6430714146, "date": "2000-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.453, "date": "2000-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6459547686, "date": "2000-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.449, "date": "2000-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6488361632, "date": "2000-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.435, "date": "2000-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6517155984, "date": "2000-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.424, "date": "2000-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6545930744, "date": "2000-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.408, "date": "2000-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6574685909, "date": "2000-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.41, "date": "2000-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6603421481, "date": "2000-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.447, "date": "2000-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.663213746, "date": "2000-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.471, "date": "2000-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6660833845, "date": "2000-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.536, "date": "2000-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6689510637, "date": "2000-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.609, "date": "2000-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6718167835, "date": "2000-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.629, "date": "2000-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.674680544, "date": "2000-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.653, "date": "2000-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6775423452, "date": "2000-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.657, "date": "2000-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.680402187, "date": "2000-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.625, "date": "2000-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6832600694, "date": "2000-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.614, "date": "2000-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6861159925, "date": "2000-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.67, "date": "2000-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6889699563, "date": "2000-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.648, "date": "2000-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6918219607, "date": "2000-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.629, "date": "2000-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6946720057, "date": "2000-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.61, "date": "2000-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.6975200914, "date": "2000-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.603, "date": "2000-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7003662178, "date": "2000-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.627, "date": "2000-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7032103848, "date": "2000-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.645, "date": "2000-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7060525925, "date": "2000-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.622, "date": "2000-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7088928408, "date": "2000-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.577, "date": "2000-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7117311298, "date": "2000-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.545, "date": "2000-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7145674594, "date": "2000-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.515, "date": "2000-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7174018297, "date": "2000-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.522, "date": "2001-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7202342406, "date": "2001-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.52, "date": "2001-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7230646922, "date": "2001-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.509, "date": "2001-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7258931844, "date": "2001-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.528, "date": "2001-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7287197173, "date": "2001-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.539, "date": "2001-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7315442909, "date": "2001-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.52, "date": "2001-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7343669051, "date": "2001-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.518, "date": "2001-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7371875599, "date": "2001-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.48, "date": "2001-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7400062554, "date": "2001-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.451, "date": "2001-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7428229916, "date": "2001-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.42, "date": "2001-03-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7456377684, "date": "2001-03-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.406, "date": "2001-03-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7484505859, "date": "2001-03-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.392, "date": "2001-03-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.751261444, "date": "2001-03-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.379, "date": "2001-03-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7540703427, "date": "2001-03-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.391, "date": "2001-04-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7568772822, "date": "2001-04-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.397, "date": "2001-04-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7596822622, "date": "2001-04-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.437, "date": "2001-04-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.762485283, "date": "2001-04-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.443, "date": "2001-04-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7652863444, "date": "2001-04-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.442, "date": "2001-04-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7680854464, "date": "2001-04-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.47, "date": "2001-05-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7708825891, "date": "2001-05-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.491, "date": "2001-05-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7736777724, "date": "2001-05-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.494, "date": "2001-05-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7764709964, "date": "2001-05-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.529, "date": "2001-05-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7792622611, "date": "2001-05-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.514, "date": "2001-06-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7820515664, "date": "2001-06-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.486, "date": "2001-06-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7848389123, "date": "2001-06-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.48, "date": "2001-06-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7876242989, "date": "2001-06-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.447, "date": "2001-06-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7904077262, "date": "2001-06-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.407, "date": "2001-07-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7931891941, "date": "2001-07-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.392, "date": "2001-07-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7959687027, "date": "2001-07-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.38, "date": "2001-07-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.7987462519, "date": "2001-07-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.348, "date": "2001-07-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8015218418, "date": "2001-07-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.347, "date": "2001-07-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8042954723, "date": "2001-07-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.345, "date": "2001-08-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8070671435, "date": "2001-08-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.367, "date": "2001-08-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8098368553, "date": "2001-08-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.394, "date": "2001-08-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8126046078, "date": "2001-08-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.452, "date": "2001-08-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8153704009, "date": "2001-08-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.488, "date": "2001-09-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8181342347, "date": "2001-09-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.492, "date": "2001-09-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8208961091, "date": "2001-09-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.527, "date": "2001-09-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8236560242, "date": "2001-09-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.473, "date": "2001-09-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.82641398, "date": "2001-09-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.39, "date": "2001-10-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8291699764, "date": "2001-10-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.371, "date": "2001-10-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8319240134, "date": "2001-10-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.353, "date": "2001-10-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8346760912, "date": "2001-10-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.318, "date": "2001-10-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8374262095, "date": "2001-10-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.31, "date": "2001-10-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8401743685, "date": "2001-10-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.291, "date": "2001-11-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8429205682, "date": "2001-11-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.269, "date": "2001-11-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8456648085, "date": "2001-11-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.252, "date": "2001-11-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8484070895, "date": "2001-11-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.223, "date": "2001-11-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8511474111, "date": "2001-11-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.194, "date": "2001-12-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8538857734, "date": "2001-12-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.173, "date": "2001-12-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8566221763, "date": "2001-12-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.143, "date": "2001-12-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8593566199, "date": "2001-12-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.154, "date": "2001-12-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8620891042, "date": "2001-12-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.169, "date": "2001-12-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8648196291, "date": "2001-12-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.168, "date": "2002-01-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8675481946, "date": "2002-01-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.159, "date": "2002-01-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8702748008, "date": "2002-01-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.14, "date": "2002-01-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8729994477, "date": "2002-01-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.144, "date": "2002-01-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8757221352, "date": "2002-01-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.144, "date": "2002-02-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8784428633, "date": "2002-02-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.153, "date": "2002-02-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8811616321, "date": "2002-02-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.156, "date": "2002-02-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8838784416, "date": "2002-02-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.154, "date": "2002-02-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8865932917, "date": "2002-02-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.173, "date": "2002-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8893061825, "date": "2002-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.216, "date": "2002-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8920171139, "date": "2002-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.251, "date": "2002-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.894726086, "date": "2002-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.281, "date": "2002-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.8974330987, "date": "2002-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.295, "date": "2002-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9001381521, "date": "2002-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.323, "date": "2002-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9028412461, "date": "2002-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.32, "date": "2002-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9055423808, "date": "2002-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.304, "date": "2002-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9082415562, "date": "2002-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.302, "date": "2002-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9109387722, "date": "2002-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.305, "date": "2002-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9136340288, "date": "2002-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.299, "date": "2002-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9163273261, "date": "2002-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.309, "date": "2002-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9190186641, "date": "2002-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.308, "date": "2002-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9217080427, "date": "2002-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.3, "date": "2002-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9243954619, "date": "2002-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.286, "date": "2002-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9270809218, "date": "2002-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.275, "date": "2002-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9297644224, "date": "2002-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.281, "date": "2002-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9324459636, "date": "2002-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.289, "date": "2002-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9351255455, "date": "2002-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.294, "date": "2002-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.937803168, "date": "2002-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.3, "date": "2002-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9404788312, "date": "2002-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.311, "date": "2002-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.943152535, "date": "2002-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.303, "date": "2002-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9458242795, "date": "2002-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.304, "date": "2002-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9484940647, "date": "2002-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.303, "date": "2002-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9511618904, "date": "2002-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.333, "date": "2002-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9538277569, "date": "2002-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.37, "date": "2002-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.956491664, "date": "2002-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.388, "date": "2002-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9591536117, "date": "2002-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.396, "date": "2002-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9618136001, "date": "2002-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.414, "date": "2002-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9644716292, "date": "2002-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.417, "date": "2002-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9671276989, "date": "2002-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.438, "date": "2002-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9697818093, "date": "2002-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.46, "date": "2002-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9724339603, "date": "2002-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.461, "date": "2002-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9750841519, "date": "2002-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.469, "date": "2002-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9777323843, "date": "2002-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.456, "date": "2002-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9803786572, "date": "2002-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.442, "date": "2002-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9830229709, "date": "2002-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.427, "date": "2002-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9856653251, "date": "2002-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.405, "date": "2002-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9883057201, "date": "2002-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.405, "date": "2002-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9909441557, "date": "2002-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.407, "date": "2002-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9935806319, "date": "2002-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.405, "date": "2002-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9962151488, "date": "2002-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.401, "date": "2002-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 1.9988477063, "date": "2002-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.44, "date": "2002-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0014783045, "date": "2002-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.491, "date": "2002-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0041069434, "date": "2002-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.501, "date": "2003-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0067336229, "date": "2003-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.478, "date": "2003-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0093583431, "date": "2003-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.48, "date": "2003-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0119811039, "date": "2003-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.492, "date": "2003-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0146019053, "date": "2003-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.542, "date": "2003-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0172207475, "date": "2003-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.662, "date": "2003-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0198376302, "date": "2003-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.704, "date": "2003-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0224525536, "date": "2003-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.709, "date": "2003-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0250655177, "date": "2003-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.753, "date": "2003-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0276765225, "date": "2003-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.771, "date": "2003-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0302855678, "date": "2003-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.752, "date": "2003-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0328926539, "date": "2003-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.662, "date": "2003-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0354977806, "date": "2003-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.602, "date": "2003-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0381009479, "date": "2003-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.554, "date": "2003-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0407021559, "date": "2003-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.539, "date": "2003-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0433014045, "date": "2003-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.529, "date": "2003-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0458986938, "date": "2003-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.508, "date": "2003-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0484940238, "date": "2003-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.484, "date": "2003-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0510873944, "date": "2003-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.444, "date": "2003-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0536788057, "date": "2003-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.443, "date": "2003-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0562682576, "date": "2003-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.434, "date": "2003-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0588557501, "date": "2003-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.423, "date": "2003-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0614412834, "date": "2003-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.422, "date": "2003-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0640248572, "date": "2003-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.432, "date": "2003-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0666064718, "date": "2003-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.423, "date": "2003-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0691861269, "date": "2003-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.42, "date": "2003-06-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0717638228, "date": "2003-06-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.428, "date": "2003-07-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0743395593, "date": "2003-07-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.435, "date": "2003-07-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0769133364, "date": "2003-07-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.439, "date": "2003-07-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0794851542, "date": "2003-07-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.438, "date": "2003-07-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0820550126, "date": "2003-07-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.453, "date": "2003-08-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0846229117, "date": "2003-08-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.492, "date": "2003-08-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0871888515, "date": "2003-08-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.498, "date": "2003-08-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0897528319, "date": "2003-08-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.503, "date": "2003-08-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0923148529, "date": "2003-08-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.501, "date": "2003-09-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.0948749146, "date": "2003-09-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.488, "date": "2003-09-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.097433017, "date": "2003-09-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.471, "date": "2003-09-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.09998916, "date": "2003-09-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.444, "date": "2003-09-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1025433437, "date": "2003-09-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.429, "date": "2003-09-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.105095568, "date": "2003-09-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.445, "date": "2003-10-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.107645833, "date": "2003-10-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.483, "date": "2003-10-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1101941386, "date": "2003-10-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.502, "date": "2003-10-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1127404849, "date": "2003-10-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.495, "date": "2003-10-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1152848718, "date": "2003-10-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.481, "date": "2003-11-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1178272994, "date": "2003-11-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.476, "date": "2003-11-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1203677676, "date": "2003-11-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.481, "date": "2003-11-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1229062765, "date": "2003-11-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.491, "date": "2003-11-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1254428261, "date": "2003-11-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.476, "date": "2003-12-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1279774163, "date": "2003-12-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.481, "date": "2003-12-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1305100471, "date": "2003-12-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.486, "date": "2003-12-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1330407186, "date": "2003-12-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.504, "date": "2003-12-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1355694308, "date": "2003-12-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.502, "date": "2003-12-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1380961836, "date": "2003-12-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.503, "date": "2004-01-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1406209771, "date": "2004-01-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.551, "date": "2004-01-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1431438112, "date": "2004-01-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.559, "date": "2004-01-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.145664686, "date": "2004-01-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.591, "date": "2004-01-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1481836014, "date": "2004-01-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.581, "date": "2004-02-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1507005575, "date": "2004-02-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.568, "date": "2004-02-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1532155542, "date": "2004-02-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.584, "date": "2004-02-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1557285916, "date": "2004-02-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.595, "date": "2004-02-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1582396696, "date": "2004-02-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.619, "date": "2004-03-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1607487883, "date": "2004-03-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.628, "date": "2004-03-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1632559476, "date": "2004-03-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.617, "date": "2004-03-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1657611476, "date": "2004-03-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.641, "date": "2004-03-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1682643883, "date": "2004-03-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.642, "date": "2004-03-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1707656696, "date": "2004-03-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.648, "date": "2004-04-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1732649915, "date": "2004-04-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.679, "date": "2004-04-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1757623541, "date": "2004-04-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.724, "date": "2004-04-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1782577574, "date": "2004-04-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.718, "date": "2004-04-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1807512013, "date": "2004-04-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.717, "date": "2004-05-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1832426859, "date": "2004-05-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.745, "date": "2004-05-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1857322111, "date": "2004-05-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.763, "date": "2004-05-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.188219777, "date": "2004-05-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.761, "date": "2004-05-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1907053835, "date": "2004-05-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.746, "date": "2004-05-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1931890307, "date": "2004-05-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.734, "date": "2004-06-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.1956707185, "date": "2004-06-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.711, "date": "2004-06-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.198150447, "date": "2004-06-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.7, "date": "2004-06-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2006282161, "date": "2004-06-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.7, "date": "2004-06-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2031040259, "date": "2004-06-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.716, "date": "2004-07-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2055778764, "date": "2004-07-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.74, "date": "2004-07-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2080497675, "date": "2004-07-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.744, "date": "2004-07-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2105196992, "date": "2004-07-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.754, "date": "2004-07-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2129876716, "date": "2004-07-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.78, "date": "2004-08-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2154536847, "date": "2004-08-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.814, "date": "2004-08-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2179177384, "date": "2004-08-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.825, "date": "2004-08-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2203798327, "date": "2004-08-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.874, "date": "2004-08-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2228399678, "date": "2004-08-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.871, "date": "2004-08-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2252981434, "date": "2004-08-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.869, "date": "2004-09-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2277543597, "date": "2004-09-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.874, "date": "2004-09-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2302086167, "date": "2004-09-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.912, "date": "2004-09-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2326609143, "date": "2004-09-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.012, "date": "2004-09-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2351112526, "date": "2004-09-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.053, "date": "2004-10-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2375596316, "date": "2004-10-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.092, "date": "2004-10-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2400060512, "date": "2004-10-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.18, "date": "2004-10-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2424505114, "date": "2004-10-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.212, "date": "2004-10-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2448930123, "date": "2004-10-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.206, "date": "2004-11-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2473335538, "date": "2004-11-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.163, "date": "2004-11-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.249772136, "date": "2004-11-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.132, "date": "2004-11-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2522087589, "date": "2004-11-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.116, "date": "2004-11-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2546434224, "date": "2004-11-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.116, "date": "2004-11-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2570761265, "date": "2004-11-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.069, "date": "2004-12-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2595068714, "date": "2004-12-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.997, "date": "2004-12-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2619356568, "date": "2004-12-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.984, "date": "2004-12-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2643624829, "date": "2004-12-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.987, "date": "2004-12-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2667873497, "date": "2004-12-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.957, "date": "2005-01-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2692102571, "date": "2005-01-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.934, "date": "2005-01-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2716312052, "date": "2005-01-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.952, "date": "2005-01-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2740501939, "date": "2005-01-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.959, "date": "2005-01-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2764672233, "date": "2005-01-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.992, "date": "2005-01-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2788822934, "date": "2005-01-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.983, "date": "2005-02-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.281295404, "date": "2005-02-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.986, "date": "2005-02-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2837065554, "date": "2005-02-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.02, "date": "2005-02-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2861157474, "date": "2005-02-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.118, "date": "2005-02-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.28852298, "date": "2005-02-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.168, "date": "2005-03-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2909282533, "date": "2005-03-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.194, "date": "2005-03-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2933315673, "date": "2005-03-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.244, "date": "2005-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2957329219, "date": "2005-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.249, "date": "2005-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.2981323171, "date": "2005-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.303, "date": "2005-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3005297531, "date": "2005-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.316, "date": "2005-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3029252296, "date": "2005-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.259, "date": "2005-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3053187468, "date": "2005-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.289, "date": "2005-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3077103047, "date": "2005-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.262, "date": "2005-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3100999032, "date": "2005-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.227, "date": "2005-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3124875424, "date": "2005-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.189, "date": "2005-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3148732223, "date": "2005-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.156, "date": "2005-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3172569427, "date": "2005-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.16, "date": "2005-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3196387039, "date": "2005-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.234, "date": "2005-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3220185057, "date": "2005-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.276, "date": "2005-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3243963481, "date": "2005-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.313, "date": "2005-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3267722312, "date": "2005-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.336, "date": "2005-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.329146155, "date": "2005-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.348, "date": "2005-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3315181194, "date": "2005-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.408, "date": "2005-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3338881244, "date": "2005-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.392, "date": "2005-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3362561701, "date": "2005-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.342, "date": "2005-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3386222565, "date": "2005-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.348, "date": "2005-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3409863835, "date": "2005-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.407, "date": "2005-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3433485512, "date": "2005-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.567, "date": "2005-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3457087595, "date": "2005-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.588, "date": "2005-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3480670085, "date": "2005-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.59, "date": "2005-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3504232981, "date": "2005-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.898, "date": "2005-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3527776284, "date": "2005-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.847, "date": "2005-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3551299993, "date": "2005-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.732, "date": "2005-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3574804109, "date": "2005-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.798, "date": "2005-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3598288631, "date": "2005-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.144, "date": "2005-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.362175356, "date": "2005-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.15, "date": "2005-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3645198896, "date": "2005-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.148, "date": "2005-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3668624638, "date": "2005-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.157, "date": "2005-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3692030786, "date": "2005-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.876, "date": "2005-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3715417341, "date": "2005-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.698, "date": "2005-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3738784303, "date": "2005-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.602, "date": "2005-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3762131671, "date": "2005-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.513, "date": "2005-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3785459446, "date": "2005-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.479, "date": "2005-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3808767627, "date": "2005-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.425, "date": "2005-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3832056214, "date": "2005-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.436, "date": "2005-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3855325209, "date": "2005-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.462, "date": "2005-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3878574609, "date": "2005-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.448, "date": "2005-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3901804417, "date": "2005-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.442, "date": "2006-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3925014631, "date": "2006-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.485, "date": "2006-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3948205251, "date": "2006-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.449, "date": "2006-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3971376278, "date": "2006-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.472, "date": "2006-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.3994527711, "date": "2006-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.489, "date": "2006-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4017659551, "date": "2006-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.499, "date": "2006-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4040771798, "date": "2006-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.476, "date": "2006-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4063864451, "date": "2006-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.455, "date": "2006-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.408693751, "date": "2006-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.471, "date": "2006-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4109990976, "date": "2006-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.545, "date": "2006-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4133024849, "date": "2006-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.543, "date": "2006-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4156039128, "date": "2006-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.581, "date": "2006-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4179033814, "date": "2006-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.565, "date": "2006-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4202008906, "date": "2006-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.617, "date": "2006-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4224964405, "date": "2006-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.654, "date": "2006-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.424790031, "date": "2006-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.765, "date": "2006-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4270816622, "date": "2006-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.876, "date": "2006-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.429371334, "date": "2006-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.896, "date": "2006-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4316590465, "date": "2006-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.897, "date": "2006-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4339447996, "date": "2006-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.92, "date": "2006-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4362285934, "date": "2006-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.888, "date": "2006-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4385104279, "date": "2006-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.882, "date": "2006-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4407903029, "date": "2006-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.89, "date": "2006-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4430682187, "date": "2006-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.918, "date": "2006-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4453441751, "date": "2006-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.915, "date": "2006-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4476181722, "date": "2006-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.867, "date": "2006-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4498902099, "date": "2006-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.898, "date": "2006-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4521602882, "date": "2006-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.918, "date": "2006-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4544284072, "date": "2006-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.926, "date": "2006-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4566945669, "date": "2006-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.946, "date": "2006-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4589587672, "date": "2006-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.98, "date": "2006-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4612210082, "date": "2006-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.055, "date": "2006-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4634812898, "date": "2006-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.065, "date": "2006-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4657396121, "date": "2006-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.033, "date": "2006-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.467995975, "date": "2006-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.027, "date": "2006-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4702503786, "date": "2006-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.967, "date": "2006-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4725028229, "date": "2006-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.857, "date": "2006-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4747533078, "date": "2006-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.713, "date": "2006-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4770018333, "date": "2006-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.595, "date": "2006-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4792483995, "date": "2006-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.546, "date": "2006-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4814930064, "date": "2006-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.506, "date": "2006-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4837356539, "date": "2006-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.503, "date": "2006-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.485976342, "date": "2006-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.524, "date": "2006-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4882150708, "date": "2006-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.517, "date": "2006-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4904518403, "date": "2006-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.506, "date": "2006-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4926866504, "date": "2006-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.552, "date": "2006-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4949195012, "date": "2006-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.553, "date": "2006-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4971503926, "date": "2006-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.567, "date": "2006-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.4993793247, "date": "2006-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.618, "date": "2006-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5016062974, "date": "2006-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.621, "date": "2006-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5038313108, "date": "2006-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.606, "date": "2006-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5060543648, "date": "2006-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.596, "date": "2006-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5082754595, "date": "2006-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.58, "date": "2007-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5104945949, "date": "2007-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.537, "date": "2007-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5127117709, "date": "2007-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.463, "date": "2007-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5149269875, "date": "2007-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.43, "date": "2007-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5171402448, "date": "2007-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.413, "date": "2007-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5193515428, "date": "2007-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.4256666667, "date": "2007-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5215608814, "date": "2007-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.466, "date": "2007-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5237682606, "date": "2007-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.481, "date": "2007-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5259736805, "date": "2007-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.5423333333, "date": "2007-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5281771411, "date": "2007-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6166666667, "date": "2007-03-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5303786423, "date": "2007-03-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.679, "date": "2007-03-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5325781842, "date": "2007-03-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.673, "date": "2007-03-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5347757667, "date": "2007-03-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6666666667, "date": "2007-03-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5369713899, "date": "2007-03-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7813333333, "date": "2007-04-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5391650537, "date": "2007-04-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8306666667, "date": "2007-04-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5413567582, "date": "2007-04-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8696666667, "date": "2007-04-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5435465034, "date": "2007-04-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8416666667, "date": "2007-04-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5457342891, "date": "2007-04-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.796, "date": "2007-04-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5479201156, "date": "2007-04-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7746666667, "date": "2007-05-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5501039827, "date": "2007-05-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.755, "date": "2007-05-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5522858904, "date": "2007-05-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7883333333, "date": "2007-05-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5544658388, "date": "2007-05-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8016666667, "date": "2007-05-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5566438279, "date": "2007-05-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7833333333, "date": "2007-06-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5588198576, "date": "2007-06-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.774, "date": "2007-06-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.560993928, "date": "2007-06-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7916666667, "date": "2007-06-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.563166039, "date": "2007-06-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8226666667, "date": "2007-06-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5653361907, "date": "2007-06-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8166666667, "date": "2007-07-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.567504383, "date": "2007-07-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.839, "date": "2007-07-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5696706159, "date": "2007-07-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.875, "date": "2007-07-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5718348896, "date": "2007-07-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8736666667, "date": "2007-07-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5739972039, "date": "2007-07-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.872, "date": "2007-07-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5761575588, "date": "2007-07-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8846666667, "date": "2007-08-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5783159544, "date": "2007-08-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8326666667, "date": "2007-08-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5804723906, "date": "2007-08-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8573333333, "date": "2007-08-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5826268675, "date": "2007-08-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8523333333, "date": "2007-08-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5847793851, "date": "2007-08-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8843333333, "date": "2007-09-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5869299433, "date": "2007-09-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9156666667, "date": "2007-09-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5890785421, "date": "2007-09-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9563333333, "date": "2007-09-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5912251816, "date": "2007-09-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.026, "date": "2007-09-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5933698618, "date": "2007-09-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.04, "date": "2007-10-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5955125826, "date": "2007-10-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.022, "date": "2007-10-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.597653344, "date": "2007-10-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.0226666667, "date": "2007-10-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.5997921462, "date": "2007-10-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.0756666667, "date": "2007-10-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6019289889, "date": "2007-10-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.141, "date": "2007-10-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6040638724, "date": "2007-10-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2913333333, "date": "2007-11-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6061967964, "date": "2007-11-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.4103333333, "date": "2007-11-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6083277612, "date": "2007-11-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3896666667, "date": "2007-11-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6104567665, "date": "2007-11-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.4273333333, "date": "2007-11-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6125838126, "date": "2007-11-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.393, "date": "2007-12-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6147088993, "date": "2007-12-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2963333333, "date": "2007-12-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6168320266, "date": "2007-12-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2816666667, "date": "2007-12-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6189531946, "date": "2007-12-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2846666667, "date": "2007-12-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6210724032, "date": "2007-12-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3243333333, "date": "2007-12-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6231896526, "date": "2007-12-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3546666667, "date": "2008-01-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6253049425, "date": "2008-01-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2986666667, "date": "2008-01-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6274182731, "date": "2008-01-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2416666667, "date": "2008-01-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6295296444, "date": "2008-01-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.234, "date": "2008-01-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6316390563, "date": "2008-01-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.2593333333, "date": "2008-02-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6337465089, "date": "2008-02-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.258, "date": "2008-02-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6358520021, "date": "2008-02-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3786666667, "date": "2008-02-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6379555359, "date": "2008-02-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.5403333333, "date": "2008-02-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6400571105, "date": "2008-02-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.6403333333, "date": "2008-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6421567256, "date": "2008-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.806, "date": "2008-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6442543815, "date": "2008-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.96, "date": "2008-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.646350078, "date": "2008-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.973, "date": "2008-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6484438151, "date": "2008-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.9416666667, "date": "2008-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6505355929, "date": "2008-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.932, "date": "2008-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6526254113, "date": "2008-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.0383333333, "date": "2008-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6547132704, "date": "2008-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.1216666667, "date": "2008-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6567991702, "date": "2008-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.154, "date": "2008-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6588831106, "date": "2008-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.12, "date": "2008-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6609650916, "date": "2008-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.3113333333, "date": "2008-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6630451133, "date": "2008-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.4823333333, "date": "2008-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6651231757, "date": "2008-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.7043333333, "date": "2008-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6671992787, "date": "2008-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.6863333333, "date": "2008-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6692734224, "date": "2008-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.668, "date": "2008-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6713456067, "date": "2008-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.6666666667, "date": "2008-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6734158317, "date": "2008-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.6196666667, "date": "2008-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6754840973, "date": "2008-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.6186666667, "date": "2008-06-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6775504036, "date": "2008-06-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.712, "date": "2008-07-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6796147505, "date": "2008-07-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.7473333333, "date": "2008-07-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6816771381, "date": "2008-07-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.692, "date": "2008-07-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6837375664, "date": "2008-07-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.5763333333, "date": "2008-07-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6857960353, "date": "2008-07-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.4706666667, "date": "2008-08-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6878525448, "date": "2008-08-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.3203333333, "date": "2008-08-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.689907095, "date": "2008-08-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.176, "date": "2008-08-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6919596858, "date": "2008-08-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.114, "date": "2008-08-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6940103174, "date": "2008-08-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.0903333333, "date": "2008-09-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6960589895, "date": "2008-09-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.0233333333, "date": "2008-09-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.6981057023, "date": "2008-09-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.997, "date": "2008-09-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7001504558, "date": "2008-09-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.9366666667, "date": "2008-09-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7021932499, "date": "2008-09-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.9383333333, "date": "2008-09-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7042340847, "date": "2008-09-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.8476666667, "date": "2008-10-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7062729601, "date": "2008-10-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.6296666667, "date": "2008-10-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7083098762, "date": "2008-10-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.4456666667, "date": "2008-10-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7103448329, "date": "2008-10-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.259, "date": "2008-10-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7123778303, "date": "2008-10-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.0606666667, "date": "2008-11-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7144088683, "date": "2008-11-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9103333333, "date": "2008-11-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.716437947, "date": "2008-11-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7766666667, "date": "2008-11-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7184650663, "date": "2008-11-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.637, "date": "2008-11-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7204902263, "date": "2008-11-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.5943333333, "date": "2008-12-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.722513427, "date": "2008-12-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.519, "date": "2008-12-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7245346683, "date": "2008-12-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.426, "date": "2008-12-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7265539502, "date": "2008-12-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.3695, "date": "2008-12-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7285712729, "date": "2008-12-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.331, "date": "2008-12-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7305866361, "date": "2008-12-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.295, "date": "2009-01-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.73260004, "date": "2009-01-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.319, "date": "2009-01-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7346114846, "date": "2009-01-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.3015, "date": "2009-01-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7366209698, "date": "2009-01-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.273, "date": "2009-01-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7386284957, "date": "2009-01-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.251, "date": "2009-02-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7406340622, "date": "2009-02-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2245, "date": "2009-02-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7426376694, "date": "2009-02-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.1915, "date": "2009-02-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7446393172, "date": "2009-02-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.134, "date": "2009-02-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7466390057, "date": "2009-02-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.091, "date": "2009-03-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7486367348, "date": "2009-03-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.048, "date": "2009-03-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7506325046, "date": "2009-03-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.02, "date": "2009-03-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7526263151, "date": "2009-03-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.0915, "date": "2009-03-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7546181662, "date": "2009-03-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.223, "date": "2009-03-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7566080579, "date": "2009-03-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2305, "date": "2009-04-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7585959903, "date": "2009-04-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2315, "date": "2009-04-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7605819634, "date": "2009-04-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2235, "date": "2009-04-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7625659771, "date": "2009-04-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.204, "date": "2009-04-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7645480315, "date": "2009-04-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.1885, "date": "2009-05-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7665281265, "date": "2009-05-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.2195, "date": "2009-05-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7685062621, "date": "2009-05-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.234, "date": "2009-05-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7704824385, "date": "2009-05-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.276, "date": "2009-05-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7724566554, "date": "2009-05-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.353, "date": "2009-06-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7744289131, "date": "2009-06-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.4995, "date": "2009-06-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7763992113, "date": "2009-06-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.5735, "date": "2009-06-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7783675503, "date": "2009-06-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6175, "date": "2009-06-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7803339299, "date": "2009-06-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.61, "date": "2009-06-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7822983501, "date": "2009-06-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.596, "date": "2009-07-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.784260811, "date": "2009-07-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.544, "date": "2009-07-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7862213125, "date": "2009-07-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.4985, "date": "2009-07-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7881798547, "date": "2009-07-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.53, "date": "2009-07-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7901364376, "date": "2009-07-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.552, "date": "2009-08-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7920910611, "date": "2009-08-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6265, "date": "2009-08-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7940437253, "date": "2009-08-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.654, "date": "2009-08-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7959944301, "date": "2009-08-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.67, "date": "2009-08-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7979431755, "date": "2009-08-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6765, "date": "2009-08-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.7998899616, "date": "2009-08-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6485, "date": "2009-09-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8018347884, "date": "2009-09-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.636, "date": "2009-09-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8037776558, "date": "2009-09-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.624, "date": "2009-09-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8057185639, "date": "2009-09-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.6035, "date": "2009-09-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8076575126, "date": "2009-09-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.585, "date": "2009-10-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.809594502, "date": "2009-10-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.602, "date": "2009-10-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8115295321, "date": "2009-10-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7065, "date": "2009-10-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8134626028, "date": "2009-10-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.803, "date": "2009-10-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8153937141, "date": "2009-10-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8095, "date": "2009-11-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8173228661, "date": "2009-11-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.803, "date": "2009-11-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8192500587, "date": "2009-11-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7925, "date": "2009-11-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.821175292, "date": "2009-11-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7895, "date": "2009-11-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.823098566, "date": "2009-11-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7775, "date": "2009-11-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8250198806, "date": "2009-11-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7745, "date": "2009-12-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8269392359, "date": "2009-12-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7505, "date": "2009-12-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8288566318, "date": "2009-12-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7285, "date": "2009-12-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8307720683, "date": "2009-12-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.734, "date": "2009-12-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8326855456, "date": "2009-12-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.799, "date": "2010-01-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8345970634, "date": "2010-01-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8805, "date": "2010-01-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.836506622, "date": "2010-01-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.872, "date": "2010-01-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8384142211, "date": "2010-01-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.8355, "date": "2010-01-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.840319861, "date": "2010-01-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.784, "date": "2010-02-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8422235414, "date": "2010-02-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.772, "date": "2010-02-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8441252626, "date": "2010-02-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.7585, "date": "2010-02-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8460250244, "date": "2010-02-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.833, "date": "2010-02-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8479228268, "date": "2010-02-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.863, "date": "2010-03-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8498186699, "date": "2010-03-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.905, "date": "2010-03-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8517125537, "date": "2010-03-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.925, "date": "2010-03-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8536044781, "date": "2010-03-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9475, "date": "2010-03-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8554944431, "date": "2010-03-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9405, "date": "2010-03-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8573824488, "date": "2010-03-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.016, "date": "2010-04-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8592684952, "date": "2010-04-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.071, "date": "2010-04-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8611525822, "date": "2010-04-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.076, "date": "2010-04-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8630347099, "date": "2010-04-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.08, "date": "2010-04-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8649148782, "date": "2010-04-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.124, "date": "2010-05-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8667930872, "date": "2010-05-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.129, "date": "2010-05-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8686693368, "date": "2010-05-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.096, "date": "2010-05-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8705436271, "date": "2010-05-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.023, "date": "2010-05-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.872415958, "date": "2010-05-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9815, "date": "2010-05-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8742863296, "date": "2010-05-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9475, "date": "2010-06-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8761547418, "date": "2010-06-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.929, "date": "2010-06-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8780211947, "date": "2010-06-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9615, "date": "2010-06-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8798856883, "date": "2010-06-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9565, "date": "2010-06-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8817482225, "date": "2010-06-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9245, "date": "2010-07-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8836087973, "date": "2010-07-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9035, "date": "2010-07-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8854674128, "date": "2010-07-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.899, "date": "2010-07-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.887324069, "date": "2010-07-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.919, "date": "2010-07-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8891787658, "date": "2010-07-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.928, "date": "2010-08-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8910315033, "date": "2010-08-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.991, "date": "2010-08-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8928822814, "date": "2010-08-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.979, "date": "2010-08-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8947311002, "date": "2010-08-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.957, "date": "2010-08-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8965779596, "date": "2010-08-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.938, "date": "2010-08-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.8984228597, "date": "2010-08-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.931, "date": "2010-09-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9002658004, "date": "2010-09-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.943, "date": "2010-09-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9021067818, "date": "2010-09-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.96, "date": "2010-09-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9039458038, "date": "2010-09-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.951, "date": "2010-09-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9057828665, "date": "2010-09-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3, "date": "2010-10-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9076179698, "date": "2010-10-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.066, "date": "2010-10-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9094511138, "date": "2010-10-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.073, "date": "2010-10-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9112822985, "date": "2010-10-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.067, "date": "2010-10-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9131115238, "date": "2010-10-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.067, "date": "2010-11-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9149387897, "date": "2010-11-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.116, "date": "2010-11-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9167640963, "date": "2010-11-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.184, "date": "2010-11-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9185874436, "date": "2010-11-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.171, "date": "2010-11-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9204088315, "date": "2010-11-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.162, "date": "2010-11-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9222282601, "date": "2010-11-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.197, "date": "2010-12-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9240457293, "date": "2010-12-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.231, "date": "2010-12-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9258612392, "date": "2010-12-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.248, "date": "2010-12-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9276747897, "date": "2010-12-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.294, "date": "2010-12-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9294863809, "date": "2010-12-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.331, "date": "2011-01-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9312960127, "date": "2011-01-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.333, "date": "2011-01-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9331036852, "date": "2011-01-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.407, "date": "2011-01-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9349093983, "date": "2011-01-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.43, "date": "2011-01-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9367131521, "date": "2011-01-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.438, "date": "2011-01-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9385149466, "date": "2011-01-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.513, "date": "2011-02-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9403147817, "date": "2011-02-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.534, "date": "2011-02-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9421126574, "date": "2011-02-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.573, "date": "2011-02-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9439085738, "date": "2011-02-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.716, "date": "2011-02-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9457025309, "date": "2011-02-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.871, "date": "2011-03-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9474945286, "date": "2011-03-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.908, "date": "2011-03-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9492845669, "date": "2011-03-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.907, "date": "2011-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.951072646, "date": "2011-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.932, "date": "2011-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9528587656, "date": "2011-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.976, "date": "2011-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9546429259, "date": "2011-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.078, "date": "2011-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9564251269, "date": "2011-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.105, "date": "2011-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9582053685, "date": "2011-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.098, "date": "2011-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9599836508, "date": "2011-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.124, "date": "2011-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9617599738, "date": "2011-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.104, "date": "2011-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9635343373, "date": "2011-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.061, "date": "2011-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9653067416, "date": "2011-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.997, "date": "2011-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9670771865, "date": "2011-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.948, "date": "2011-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.968845672, "date": "2011-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.94, "date": "2011-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9706121982, "date": "2011-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.954, "date": "2011-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9723767651, "date": "2011-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.95, "date": "2011-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9741393726, "date": "2011-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.888, "date": "2011-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9759000207, "date": "2011-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.85, "date": "2011-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9776587095, "date": "2011-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.899, "date": "2011-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.979415439, "date": "2011-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.923, "date": "2011-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9811702091, "date": "2011-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.949, "date": "2011-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9829230199, "date": "2011-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.937, "date": "2011-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9846738713, "date": "2011-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.897, "date": "2011-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9864227634, "date": "2011-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.835, "date": "2011-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9881696961, "date": "2011-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.81, "date": "2011-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9899146695, "date": "2011-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.82, "date": "2011-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9916576835, "date": "2011-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.868, "date": "2011-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9933987382, "date": "2011-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.862, "date": "2011-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9951378336, "date": "2011-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.833, "date": "2011-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9968749696, "date": "2011-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.786, "date": "2011-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 2.9986101462, "date": "2011-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.749, "date": "2011-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0003433635, "date": "2011-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.721, "date": "2011-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0020746215, "date": "2011-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.801, "date": "2011-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0038039201, "date": "2011-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.825, "date": "2011-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0055312593, "date": "2011-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.892, "date": "2011-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0072566393, "date": "2011-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.887, "date": "2011-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0089800598, "date": "2011-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.987, "date": "2011-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.010701521, "date": "2011-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.01, "date": "2011-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0124210229, "date": "2011-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.964, "date": "2011-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0141385654, "date": "2011-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.931, "date": "2011-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0158541486, "date": "2011-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2011-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0175677724, "date": "2011-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.828, "date": "2011-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0192794369, "date": "2011-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.791, "date": "2011-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0209891421, "date": "2011-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.783, "date": "2012-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0226968879, "date": "2012-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.828, "date": "2012-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0244026743, "date": "2012-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.854, "date": "2012-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0261065014, "date": "2012-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.848, "date": "2012-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0278083692, "date": "2012-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.85, "date": "2012-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0295082776, "date": "2012-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.856, "date": "2012-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0312062266, "date": "2012-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.943, "date": "2012-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0329022163, "date": "2012-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.96, "date": "2012-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0345962467, "date": "2012-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.051, "date": "2012-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0362883177, "date": "2012-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.094, "date": "2012-03-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0379784294, "date": "2012-03-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.123, "date": "2012-03-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0396665817, "date": "2012-03-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.142, "date": "2012-03-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0413527747, "date": "2012-03-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.147, "date": "2012-03-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0430370083, "date": "2012-03-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.142, "date": "2012-04-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0447192826, "date": "2012-04-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.148, "date": "2012-04-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0463995975, "date": "2012-04-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.127, "date": "2012-04-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0480779531, "date": "2012-04-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.085, "date": "2012-04-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0497543493, "date": "2012-04-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.073, "date": "2012-04-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0514287862, "date": "2012-04-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.057, "date": "2012-05-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0531012638, "date": "2012-05-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.004, "date": "2012-05-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.054771782, "date": "2012-05-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.956, "date": "2012-05-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0564403408, "date": "2012-05-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.897, "date": "2012-05-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0581069403, "date": "2012-05-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.846, "date": "2012-06-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0597715805, "date": "2012-06-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.781, "date": "2012-06-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0614342613, "date": "2012-06-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.729, "date": "2012-06-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0630949828, "date": "2012-06-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.678, "date": "2012-06-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0647537449, "date": "2012-06-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.648, "date": "2012-07-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0664105476, "date": "2012-07-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.683, "date": "2012-07-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0680653911, "date": "2012-07-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.695, "date": "2012-07-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0697182751, "date": "2012-07-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.783, "date": "2012-07-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0713691999, "date": "2012-07-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.796, "date": "2012-07-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0730181653, "date": "2012-07-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.85, "date": "2012-08-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0746651713, "date": "2012-08-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.965, "date": "2012-08-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.076310218, "date": "2012-08-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.026, "date": "2012-08-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0779533053, "date": "2012-08-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.089, "date": "2012-08-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0795944333, "date": "2012-08-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.127, "date": "2012-09-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.081233602, "date": "2012-09-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.132, "date": "2012-09-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0828708113, "date": "2012-09-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.135, "date": "2012-09-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0845060612, "date": "2012-09-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.086, "date": "2012-09-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0861393518, "date": "2012-09-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.079, "date": "2012-10-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0877706831, "date": "2012-10-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.094, "date": "2012-10-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.089400055, "date": "2012-10-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.15, "date": "2012-10-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0910274676, "date": "2012-10-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.116, "date": "2012-10-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0926529208, "date": "2012-10-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.03, "date": "2012-10-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0942764147, "date": "2012-10-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.01, "date": "2012-11-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0958979492, "date": "2012-11-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.98, "date": "2012-11-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0975175244, "date": "2012-11-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.976, "date": "2012-11-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.0991351402, "date": "2012-11-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.034, "date": "2012-11-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1007507967, "date": "2012-11-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.027, "date": "2012-12-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1023644938, "date": "2012-12-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.991, "date": "2012-12-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1039762316, "date": "2012-12-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.945, "date": "2012-12-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1055860101, "date": "2012-12-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.923, "date": "2012-12-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1071938291, "date": "2012-12-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.918, "date": "2012-12-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1087996889, "date": "2012-12-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.911, "date": "2013-01-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1104035893, "date": "2013-01-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2013-01-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1120055304, "date": "2013-01-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.902, "date": "2013-01-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1136055121, "date": "2013-01-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.927, "date": "2013-01-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1152035344, "date": "2013-01-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.022, "date": "2013-02-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1167995974, "date": "2013-02-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.104, "date": "2013-02-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1183937011, "date": "2013-02-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.157, "date": "2013-02-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1199858454, "date": "2013-02-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.159, "date": "2013-02-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1215760304, "date": "2013-02-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.13, "date": "2013-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.123164256, "date": "2013-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.088, "date": "2013-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1247505223, "date": "2013-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.047, "date": "2013-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1263348292, "date": "2013-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.006, "date": "2013-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1279171768, "date": "2013-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.993, "date": "2013-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1294975651, "date": "2013-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.977, "date": "2013-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.131075994, "date": "2013-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.942, "date": "2013-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1326524635, "date": "2013-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.887, "date": "2013-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1342269737, "date": "2013-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.851, "date": "2013-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1357995246, "date": "2013-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.845, "date": "2013-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1373701161, "date": "2013-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.866, "date": "2013-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1389387482, "date": "2013-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.89, "date": "2013-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.140505421, "date": "2013-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.88, "date": "2013-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1420701345, "date": "2013-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.869, "date": "2013-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1436328886, "date": "2013-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.849, "date": "2013-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1451936834, "date": "2013-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.841, "date": "2013-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1467525188, "date": "2013-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.838, "date": "2013-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1483093949, "date": "2013-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.817, "date": "2013-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1498643116, "date": "2013-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.828, "date": "2013-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.151417269, "date": "2013-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.867, "date": "2013-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.152968267, "date": "2013-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.903, "date": "2013-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1545173057, "date": "2013-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.915, "date": "2013-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1560643851, "date": "2013-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.909, "date": "2013-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1576095051, "date": "2013-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.896, "date": "2013-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1591526657, "date": "2013-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.9, "date": "2013-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.160693867, "date": "2013-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.913, "date": "2013-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.162233109, "date": "2013-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.981, "date": "2013-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1637703916, "date": "2013-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.981, "date": "2013-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1653057148, "date": "2013-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.974, "date": "2013-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1668390787, "date": "2013-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.949, "date": "2013-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1683704833, "date": "2013-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.919, "date": "2013-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1698999285, "date": "2013-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.897, "date": "2013-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1714274144, "date": "2013-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.886, "date": "2013-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1729529409, "date": "2013-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.886, "date": "2013-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1744765081, "date": "2013-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.87, "date": "2013-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1759981159, "date": "2013-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.857, "date": "2013-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1775177644, "date": "2013-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.832, "date": "2013-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1790354536, "date": "2013-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.822, "date": "2013-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1805511834, "date": "2013-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.844, "date": "2013-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1820649538, "date": "2013-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.883, "date": "2013-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1835767649, "date": "2013-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.879, "date": "2013-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1850866166, "date": "2013-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.871, "date": "2013-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.186594509, "date": "2013-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.873, "date": "2013-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1881004421, "date": "2013-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.903, "date": "2013-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1896044158, "date": "2013-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.91, "date": "2014-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1911064302, "date": "2014-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.886, "date": "2014-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1926064852, "date": "2014-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.873, "date": "2014-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1941045809, "date": "2014-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.904, "date": "2014-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1956007172, "date": "2014-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.951, "date": "2014-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1970948941, "date": "2014-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.977, "date": "2014-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.1985871118, "date": "2014-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.989, "date": "2014-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2000773701, "date": "2014-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.017, "date": "2014-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.201565669, "date": "2014-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.016, "date": "2014-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2030520086, "date": "2014-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.021, "date": "2014-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2045363888, "date": "2014-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.003, "date": "2014-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2060188097, "date": "2014-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.988, "date": "2014-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2074992713, "date": "2014-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.975, "date": "2014-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2089777735, "date": "2014-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.959, "date": "2014-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2104543163, "date": "2014-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.952, "date": "2014-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2119288998, "date": "2014-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.971, "date": "2014-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.213401524, "date": "2014-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.975, "date": "2014-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2148721888, "date": "2014-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.964, "date": "2014-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2163408942, "date": "2014-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.948, "date": "2014-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2178076404, "date": "2014-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.934, "date": "2014-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2192724271, "date": "2014-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.925, "date": "2014-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2207352546, "date": "2014-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.918, "date": "2014-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2221961226, "date": "2014-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.892, "date": "2014-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2236550314, "date": "2014-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.882, "date": "2014-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2251119807, "date": "2014-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.919, "date": "2014-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2265669708, "date": "2014-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.92, "date": "2014-06-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2280200015, "date": "2014-06-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.913, "date": "2014-07-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2294710728, "date": "2014-07-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2014-07-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2309201848, "date": "2014-07-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.869, "date": "2014-07-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2323673375, "date": "2014-07-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.858, "date": "2014-07-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2338125308, "date": "2014-07-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.853, "date": "2014-08-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2352557647, "date": "2014-08-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.843, "date": "2014-08-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2366970393, "date": "2014-08-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.835, "date": "2014-08-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2381363546, "date": "2014-08-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.821, "date": "2014-08-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2395737105, "date": "2014-08-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.814, "date": "2014-09-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2410091071, "date": "2014-09-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.814, "date": "2014-09-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2424425443, "date": "2014-09-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.801, "date": "2014-09-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2438740221, "date": "2014-09-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.778, "date": "2014-09-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2453035407, "date": "2014-09-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.755, "date": "2014-09-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2467310999, "date": "2014-09-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.733, "date": "2014-10-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2481566997, "date": "2014-10-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.698, "date": "2014-10-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2495803402, "date": "2014-10-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.656, "date": "2014-10-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2510020213, "date": "2014-10-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.635, "date": "2014-10-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2524217431, "date": "2014-10-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.623, "date": "2014-11-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2538395055, "date": "2014-11-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.677, "date": "2014-11-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2552553086, "date": "2014-11-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.661, "date": "2014-11-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2566691524, "date": "2014-11-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.628, "date": "2014-11-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2580810368, "date": "2014-11-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.605, "date": "2014-12-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2594909618, "date": "2014-12-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.535, "date": "2014-12-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2608989276, "date": "2014-12-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.419, "date": "2014-12-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2623049339, "date": "2014-12-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.281, "date": "2014-12-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2637089809, "date": "2014-12-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.213, "date": "2014-12-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2651110686, "date": "2014-12-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.137, "date": "2015-01-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2665111969, "date": "2015-01-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.053, "date": "2015-01-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2679093659, "date": "2015-01-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.933, "date": "2015-01-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2693055755, "date": "2015-01-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.866, "date": "2015-01-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2706998258, "date": "2015-01-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.831, "date": "2015-02-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2720921167, "date": "2015-02-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.835, "date": "2015-02-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2734824483, "date": "2015-02-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.865, "date": "2015-02-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2748708206, "date": "2015-02-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.9, "date": "2015-02-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2762572335, "date": "2015-02-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.936, "date": "2015-03-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.277641687, "date": "2015-03-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.944, "date": "2015-03-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2790241812, "date": "2015-03-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.917, "date": "2015-03-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2804047161, "date": "2015-03-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.864, "date": "2015-03-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2817832916, "date": "2015-03-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.824, "date": "2015-03-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2831599077, "date": "2015-03-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.784, "date": "2015-04-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2845345645, "date": "2015-04-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.754, "date": "2015-04-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.285907262, "date": "2015-04-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.78, "date": "2015-04-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2872780001, "date": "2015-04-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.811, "date": "2015-04-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2886467789, "date": "2015-04-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.854, "date": "2015-05-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2900135983, "date": "2015-05-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.878, "date": "2015-05-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2913784584, "date": "2015-05-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.904, "date": "2015-05-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2927413591, "date": "2015-05-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.914, "date": "2015-05-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2941023005, "date": "2015-05-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.909, "date": "2015-06-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2954612825, "date": "2015-06-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.884, "date": "2015-06-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2968183052, "date": "2015-06-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.87, "date": "2015-06-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2981733686, "date": "2015-06-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.859, "date": "2015-06-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.2995264725, "date": "2015-06-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.843, "date": "2015-06-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3008776172, "date": "2015-06-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.832, "date": "2015-07-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3022268025, "date": "2015-07-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.814, "date": "2015-07-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3035740285, "date": "2015-07-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.782, "date": "2015-07-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3049192951, "date": "2015-07-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.723, "date": "2015-07-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3062626023, "date": "2015-07-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.668, "date": "2015-08-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3076039502, "date": "2015-08-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.617, "date": "2015-08-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3089433388, "date": "2015-08-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.615, "date": "2015-08-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.310280768, "date": "2015-08-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.561, "date": "2015-08-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3116162379, "date": "2015-08-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.514, "date": "2015-08-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3129497484, "date": "2015-08-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.534, "date": "2015-09-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3142812996, "date": "2015-09-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.517, "date": "2015-09-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3156108914, "date": "2015-09-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.493, "date": "2015-09-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3169385239, "date": "2015-09-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.476, "date": "2015-09-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.318264197, "date": "2015-09-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.492, "date": "2015-10-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3195879108, "date": "2015-10-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.556, "date": "2015-10-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3209096653, "date": "2015-10-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.531, "date": "2015-10-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3222294604, "date": "2015-10-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.498, "date": "2015-10-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3235472961, "date": "2015-10-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.485, "date": "2015-11-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3248631725, "date": "2015-11-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.502, "date": "2015-11-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3261770896, "date": "2015-11-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.482, "date": "2015-11-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3274890473, "date": "2015-11-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.445, "date": "2015-11-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3287990457, "date": "2015-11-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.421, "date": "2015-11-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3301070847, "date": "2015-11-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.379, "date": "2015-12-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3314131643, "date": "2015-12-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.338, "date": "2015-12-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3327172847, "date": "2015-12-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.284, "date": "2015-12-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3340194456, "date": "2015-12-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.237, "date": "2015-12-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3353196473, "date": "2015-12-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.211, "date": "2016-01-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3366178895, "date": "2016-01-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.177, "date": "2016-01-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3379141725, "date": "2016-01-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.112, "date": "2016-01-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3392084961, "date": "2016-01-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.071, "date": "2016-01-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3405008603, "date": "2016-01-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.031, "date": "2016-02-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3417912652, "date": "2016-02-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.008, "date": "2016-02-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3430797107, "date": "2016-02-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.98, "date": "2016-02-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3443661969, "date": "2016-02-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.983, "date": "2016-02-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3456507238, "date": "2016-02-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 1.989, "date": "2016-02-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3469332913, "date": "2016-02-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.021, "date": "2016-03-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3482138995, "date": "2016-03-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.099, "date": "2016-03-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3494925483, "date": "2016-03-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.119, "date": "2016-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3507692377, "date": "2016-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.121, "date": "2016-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3520439679, "date": "2016-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.115, "date": "2016-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3533167386, "date": "2016-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.128, "date": "2016-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.35458755, "date": "2016-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.165, "date": "2016-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3558564021, "date": "2016-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.198, "date": "2016-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3571232949, "date": "2016-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.266, "date": "2016-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3583882282, "date": "2016-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.271, "date": "2016-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3596512023, "date": "2016-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.297, "date": "2016-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.360912217, "date": "2016-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.357, "date": "2016-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3621712723, "date": "2016-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.382, "date": "2016-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3634283683, "date": "2016-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.407, "date": "2016-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3646835049, "date": "2016-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.431, "date": "2016-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3659366822, "date": "2016-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.426, "date": "2016-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3671879002, "date": "2016-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.426, "date": "2016-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3684371588, "date": "2016-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.423, "date": "2016-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3696844581, "date": "2016-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.414, "date": "2016-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.370929798, "date": "2016-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.402, "date": "2016-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3721731785, "date": "2016-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.379, "date": "2016-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3734145998, "date": "2016-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.348, "date": "2016-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3746540616, "date": "2016-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.316, "date": "2016-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3758915642, "date": "2016-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.31, "date": "2016-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3771271073, "date": "2016-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.37, "date": "2016-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3783606912, "date": "2016-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.409, "date": "2016-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3795923157, "date": "2016-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.407, "date": "2016-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3808219808, "date": "2016-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.399, "date": "2016-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3820496866, "date": "2016-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.389, "date": "2016-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.383275433, "date": "2016-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.382, "date": "2016-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3844992201, "date": "2016-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.389, "date": "2016-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3857210479, "date": "2016-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.445, "date": "2016-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3869409163, "date": "2016-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.481, "date": "2016-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3881588253, "date": "2016-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.478, "date": "2016-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.389374775, "date": "2016-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.479, "date": "2016-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3905887654, "date": "2016-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.47, "date": "2016-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3918007964, "date": "2016-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.443, "date": "2016-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3930108681, "date": "2016-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.421, "date": "2016-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3942189804, "date": "2016-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.42, "date": "2016-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3954251334, "date": "2016-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.48, "date": "2016-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.396629327, "date": "2016-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.493, "date": "2016-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3978315613, "date": "2016-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.527, "date": "2016-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.3990318362, "date": "2016-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.54, "date": "2016-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4002301518, "date": "2016-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.586, "date": "2017-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4014265081, "date": "2017-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.597, "date": "2017-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4026209049, "date": "2017-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.585, "date": "2017-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4038133425, "date": "2017-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.569, "date": "2017-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4050038207, "date": "2017-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.562, "date": "2017-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4061923395, "date": "2017-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.558, "date": "2017-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.407378899, "date": "2017-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.565, "date": "2017-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4085634992, "date": "2017-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.572, "date": "2017-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.40974614, "date": "2017-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.577, "date": "2017-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4109268215, "date": "2017-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.579, "date": "2017-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4121055436, "date": "2017-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.564, "date": "2017-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4132823064, "date": "2017-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.539, "date": "2017-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4144571098, "date": "2017-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.532, "date": "2017-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4156299539, "date": "2017-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.556, "date": "2017-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4168008386, "date": "2017-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.582, "date": "2017-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.417969764, "date": "2017-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.597, "date": "2017-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.41913673, "date": "2017-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.595, "date": "2017-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4203017367, "date": "2017-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.583, "date": "2017-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.421464784, "date": "2017-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.565, "date": "2017-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.422625872, "date": "2017-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.544, "date": "2017-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4237850007, "date": "2017-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.539, "date": "2017-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.42494217, "date": "2017-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.571, "date": "2017-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4260973799, "date": "2017-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.564, "date": "2017-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4272506305, "date": "2017-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.524, "date": "2017-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4284019218, "date": "2017-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.489, "date": "2017-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4295512537, "date": "2017-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.465, "date": "2017-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4306986263, "date": "2017-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.472, "date": "2017-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4318440395, "date": "2017-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.481, "date": "2017-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4329874934, "date": "2017-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.491, "date": "2017-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4341289879, "date": "2017-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.507, "date": "2017-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4352685231, "date": "2017-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.531, "date": "2017-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4364060989, "date": "2017-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.581, "date": "2017-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4375417154, "date": "2017-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.598, "date": "2017-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4386753725, "date": "2017-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.596, "date": "2017-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4398070703, "date": "2017-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.605, "date": "2017-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4409368088, "date": "2017-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.758, "date": "2017-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4420645879, "date": "2017-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.802, "date": "2017-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4431904076, "date": "2017-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.791, "date": "2017-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.444314268, "date": "2017-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.788, "date": "2017-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4454361691, "date": "2017-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.792, "date": "2017-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4465561108, "date": "2017-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.776, "date": "2017-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4476740931, "date": "2017-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.787, "date": "2017-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4487901162, "date": "2017-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.797, "date": "2017-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4499041798, "date": "2017-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.819, "date": "2017-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4510162842, "date": "2017-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.882, "date": "2017-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4521264291, "date": "2017-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.915, "date": "2017-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4532346148, "date": "2017-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.912, "date": "2017-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.454340841, "date": "2017-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.926, "date": "2017-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.455445108, "date": "2017-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.922, "date": "2017-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4565474156, "date": "2017-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.91, "date": "2017-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4576477638, "date": "2017-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.901, "date": "2017-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4587461527, "date": "2017-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.903, "date": "2017-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4598425822, "date": "2017-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.973, "date": "2018-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4609370524, "date": "2018-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.996, "date": "2018-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4620295633, "date": "2018-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.028, "date": "2018-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4631201148, "date": "2018-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.025, "date": "2018-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4642087069, "date": "2018-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.07, "date": "2018-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4652953398, "date": "2018-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.086, "date": "2018-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4663800132, "date": "2018-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.063, "date": "2018-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4674627273, "date": "2018-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.027, "date": "2018-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4685434821, "date": "2018-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.007, "date": "2018-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4696222775, "date": "2018-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.992, "date": "2018-03-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4706991136, "date": "2018-03-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.976, "date": "2018-03-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4717739903, "date": "2018-03-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.972, "date": "2018-03-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4728469077, "date": "2018-03-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.01, "date": "2018-03-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4739178658, "date": "2018-03-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.042, "date": "2018-04-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4749868644, "date": "2018-04-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.043, "date": "2018-04-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4760539038, "date": "2018-04-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.104, "date": "2018-04-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4771189838, "date": "2018-04-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.133, "date": "2018-04-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4781821044, "date": "2018-04-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.157, "date": "2018-04-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4792432657, "date": "2018-04-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.171, "date": "2018-05-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4803024677, "date": "2018-05-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.239, "date": "2018-05-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4813597103, "date": "2018-05-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.277, "date": "2018-05-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4824149936, "date": "2018-05-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.288, "date": "2018-05-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4834683175, "date": "2018-05-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.285, "date": "2018-06-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.484519682, "date": "2018-06-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.266, "date": "2018-06-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4855690873, "date": "2018-06-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.244, "date": "2018-06-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4866165331, "date": "2018-06-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.216, "date": "2018-06-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4876620197, "date": "2018-06-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.236, "date": "2018-07-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4887055468, "date": "2018-07-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.243, "date": "2018-07-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4897471147, "date": "2018-07-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.239, "date": "2018-07-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4907867231, "date": "2018-07-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.22, "date": "2018-07-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4918243723, "date": "2018-07-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.226, "date": "2018-07-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4928600621, "date": "2018-07-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.223, "date": "2018-08-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4938937925, "date": "2018-08-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.217, "date": "2018-08-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4949255636, "date": "2018-08-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.207, "date": "2018-08-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4959553754, "date": "2018-08-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.226, "date": "2018-08-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4969832278, "date": "2018-08-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.252, "date": "2018-09-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4980091208, "date": "2018-09-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.258, "date": "2018-09-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.4990330545, "date": "2018-09-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.268, "date": "2018-09-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5000550289, "date": "2018-09-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.271, "date": "2018-09-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5010750439, "date": "2018-09-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.313, "date": "2018-10-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5020930996, "date": "2018-10-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.385, "date": "2018-10-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5031091959, "date": "2018-10-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.394, "date": "2018-10-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5041233329, "date": "2018-10-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.38, "date": "2018-10-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5051355105, "date": "2018-10-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.355, "date": "2018-10-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5061457288, "date": "2018-10-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.338, "date": "2018-11-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5071539877, "date": "2018-11-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.317, "date": "2018-11-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5081602873, "date": "2018-11-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.282, "date": "2018-11-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5091646275, "date": "2018-11-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.261, "date": "2018-11-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5101670084, "date": "2018-11-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.207, "date": "2018-12-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.51116743, "date": "2018-12-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.161, "date": "2018-12-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5121658922, "date": "2018-12-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.121, "date": "2018-12-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.513162395, "date": "2018-12-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.077, "date": "2018-12-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5141569385, "date": "2018-12-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.048, "date": "2018-12-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5151495227, "date": "2018-12-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.013, "date": "2019-01-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5161401475, "date": "2019-01-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.976, "date": "2019-01-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.517128813, "date": "2019-01-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.965, "date": "2019-01-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5181155191, "date": "2019-01-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.965, "date": "2019-01-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5191002659, "date": "2019-01-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.966, "date": "2019-02-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5200830533, "date": "2019-02-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.966, "date": "2019-02-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5210638814, "date": "2019-02-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.006, "date": "2019-02-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5220427501, "date": "2019-02-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.048, "date": "2019-02-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5230196595, "date": "2019-02-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.076, "date": "2019-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5239946095, "date": "2019-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.079, "date": "2019-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5249676002, "date": "2019-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.07, "date": "2019-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5259386315, "date": "2019-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.08, "date": "2019-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5269077035, "date": "2019-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.078, "date": "2019-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5278748162, "date": "2019-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.093, "date": "2019-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5288399695, "date": "2019-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.118, "date": "2019-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5298031634, "date": "2019-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.147, "date": "2019-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.530764398, "date": "2019-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.169, "date": "2019-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5317236733, "date": "2019-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.171, "date": "2019-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5326809892, "date": "2019-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.16, "date": "2019-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5336363458, "date": "2019-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.163, "date": "2019-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.534589743, "date": "2019-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.151, "date": "2019-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5355411809, "date": "2019-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.136, "date": "2019-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5364906594, "date": "2019-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.105, "date": "2019-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5374381786, "date": "2019-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.07, "date": "2019-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5383837384, "date": "2019-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.043, "date": "2019-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5393273389, "date": "2019-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.042, "date": "2019-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.54026898, "date": "2019-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.055, "date": "2019-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5412086618, "date": "2019-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.051, "date": "2019-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5421463843, "date": "2019-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.044, "date": "2019-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5430821474, "date": "2019-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.034, "date": "2019-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5440159511, "date": "2019-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.032, "date": "2019-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5449477955, "date": "2019-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.011, "date": "2019-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5458776806, "date": "2019-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.994, "date": "2019-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5468056063, "date": "2019-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.983, "date": "2019-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5477315726, "date": "2019-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.976, "date": "2019-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5486555797, "date": "2019-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.971, "date": "2019-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5495776273, "date": "2019-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.987, "date": "2019-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5504977156, "date": "2019-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.081, "date": "2019-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5514158446, "date": "2019-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.066, "date": "2019-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5523320142, "date": "2019-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.047, "date": "2019-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5532462245, "date": "2019-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.051, "date": "2019-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5541584755, "date": "2019-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.05, "date": "2019-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.555068767, "date": "2019-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.064, "date": "2019-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5559770993, "date": "2019-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.062, "date": "2019-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5568834722, "date": "2019-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.073, "date": "2019-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5577878857, "date": "2019-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.074, "date": "2019-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5586903399, "date": "2019-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.066, "date": "2019-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5595908348, "date": "2019-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.07, "date": "2019-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5604893703, "date": "2019-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.049, "date": "2019-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5613859464, "date": "2019-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.046, "date": "2019-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5622805633, "date": "2019-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.041, "date": "2019-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5631732207, "date": "2019-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.069, "date": "2019-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5640639188, "date": "2019-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.079, "date": "2020-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5649526576, "date": "2020-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.064, "date": "2020-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.565839437, "date": "2020-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.037, "date": "2020-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5667242571, "date": "2020-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.01, "date": "2020-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5676071178, "date": "2020-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.956, "date": "2020-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5684880192, "date": "2020-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.91, "date": "2020-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5693669613, "date": "2020-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.89, "date": "2020-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5702439439, "date": "2020-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.882, "date": "2020-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5711189673, "date": "2020-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.851, "date": "2020-03-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5719920313, "date": "2020-03-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.814, "date": "2020-03-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5728631359, "date": "2020-03-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.733, "date": "2020-03-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5737322812, "date": "2020-03-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.659, "date": "2020-03-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5745994672, "date": "2020-03-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.586, "date": "2020-03-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5754646938, "date": "2020-03-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.548, "date": "2020-04-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.576327961, "date": "2020-04-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.507, "date": "2020-04-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.577189269, "date": "2020-04-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.48, "date": "2020-04-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5780486175, "date": "2020-04-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.437, "date": "2020-04-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5789060067, "date": "2020-04-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.399, "date": "2020-05-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5797614366, "date": "2020-05-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.394, "date": "2020-05-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5806149071, "date": "2020-05-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.386, "date": "2020-05-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5814664183, "date": "2020-05-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.39, "date": "2020-05-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5823159702, "date": "2020-05-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.386, "date": "2020-06-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5831635626, "date": "2020-06-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.396, "date": "2020-06-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5840091958, "date": "2020-06-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.403, "date": "2020-06-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5848528696, "date": "2020-06-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.425, "date": "2020-06-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.585694584, "date": "2020-06-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.43, "date": "2020-06-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5865343391, "date": "2020-06-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.437, "date": "2020-07-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5873721349, "date": "2020-07-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.438, "date": "2020-07-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5882079713, "date": "2020-07-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.433, "date": "2020-07-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5890418483, "date": "2020-07-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.427, "date": "2020-07-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.589873766, "date": "2020-07-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.424, "date": "2020-08-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5907037244, "date": "2020-08-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.428, "date": "2020-08-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5915317234, "date": "2020-08-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.427, "date": "2020-08-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5923577631, "date": "2020-08-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.426, "date": "2020-08-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5931818434, "date": "2020-08-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.441, "date": "2020-08-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5940039644, "date": "2020-08-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.435, "date": "2020-09-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.594824126, "date": "2020-09-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.422, "date": "2020-09-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5956423283, "date": "2020-09-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.404, "date": "2020-09-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5964585712, "date": "2020-09-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.394, "date": "2020-09-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5972728548, "date": "2020-09-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.387, "date": "2020-10-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.598085179, "date": "2020-10-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.395, "date": "2020-10-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5988955439, "date": "2020-10-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.388, "date": "2020-10-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.5997039495, "date": "2020-10-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.385, "date": "2020-10-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6005103957, "date": "2020-10-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.372, "date": "2020-11-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6013148825, "date": "2020-11-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.383, "date": "2020-11-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.60211741, "date": "2020-11-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.441, "date": "2020-11-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6029179782, "date": "2020-11-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.462, "date": "2020-11-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.603716587, "date": "2020-11-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.502, "date": "2020-11-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6045132365, "date": "2020-11-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.526, "date": "2020-12-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6053079266, "date": "2020-12-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.559, "date": "2020-12-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6061006573, "date": "2020-12-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.619, "date": "2020-12-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6068914288, "date": "2020-12-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.635, "date": "2020-12-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6076802408, "date": "2020-12-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.64, "date": "2021-01-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6084670936, "date": "2021-01-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.67, "date": "2021-01-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.609251987, "date": "2021-01-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.696, "date": "2021-01-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.610034921, "date": "2021-01-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.716, "date": "2021-01-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6108158957, "date": "2021-01-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.738, "date": "2021-02-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.611594911, "date": "2021-02-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.801, "date": "2021-02-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.612371967, "date": "2021-02-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.876, "date": "2021-02-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6131470637, "date": "2021-02-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 2.973, "date": "2021-02-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.613920201, "date": "2021-02-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.072, "date": "2021-03-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6146913789, "date": "2021-03-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.143, "date": "2021-03-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6154605975, "date": "2021-03-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.191, "date": "2021-03-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6162278568, "date": "2021-03-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.194, "date": "2021-03-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6169931567, "date": "2021-03-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.161, "date": "2021-03-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6177564973, "date": "2021-03-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.144, "date": "2021-04-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6185178785, "date": "2021-04-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.129, "date": "2021-04-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6192773004, "date": "2021-04-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.124, "date": "2021-04-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6200347629, "date": "2021-04-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.124, "date": "2021-04-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6207902661, "date": "2021-04-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.142, "date": "2021-05-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6215438099, "date": "2021-05-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.186, "date": "2021-05-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6222953944, "date": "2021-05-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.249, "date": "2021-05-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6230450195, "date": "2021-05-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.253, "date": "2021-05-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6237926853, "date": "2021-05-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.255, "date": "2021-05-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6245383918, "date": "2021-05-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.274, "date": "2021-06-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6252821389, "date": "2021-06-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.286, "date": "2021-06-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6260239266, "date": "2021-06-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.287, "date": "2021-06-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.626763755, "date": "2021-06-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.3, "date": "2021-06-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6275016241, "date": "2021-06-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.331, "date": "2021-07-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6282375338, "date": "2021-07-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.338, "date": "2021-07-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6289714841, "date": "2021-07-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.344, "date": "2021-07-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6297034751, "date": "2021-07-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.342, "date": "2021-07-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6304335068, "date": "2021-07-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.367, "date": "2021-08-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6311615791, "date": "2021-08-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.364, "date": "2021-08-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6318876921, "date": "2021-08-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.356, "date": "2021-08-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6326118457, "date": "2021-08-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.324, "date": "2021-08-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.63333404, "date": "2021-08-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.339, "date": "2021-08-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.634054275, "date": "2021-08-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.373, "date": "2021-09-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6347725505, "date": "2021-09-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.372, "date": "2021-09-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6354888668, "date": "2021-09-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.385, "date": "2021-09-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6362032237, "date": "2021-09-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.406, "date": "2021-09-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6369156212, "date": "2021-09-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.477, "date": "2021-10-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6376260594, "date": "2021-10-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.586, "date": "2021-10-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6383345383, "date": "2021-10-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.671, "date": "2021-10-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6390410578, "date": "2021-10-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.713, "date": "2021-10-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6397456179, "date": "2021-10-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.727, "date": "2021-11-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6404482187, "date": "2021-11-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.73, "date": "2021-11-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6411488602, "date": "2021-11-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.734, "date": "2021-11-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6418475423, "date": "2021-11-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.724, "date": "2021-11-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6425442651, "date": "2021-11-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.72, "date": "2021-11-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6432390285, "date": "2021-11-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.674, "date": "2021-12-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6439318326, "date": "2021-12-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.649, "date": "2021-12-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6446226773, "date": "2021-12-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.626, "date": "2021-12-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6453115627, "date": "2021-12-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.615, "date": "2021-12-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6459984887, "date": "2021-12-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.613, "date": "2022-01-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6466834554, "date": "2022-01-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.657, "date": "2022-01-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6473664628, "date": "2022-01-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.725, "date": "2022-01-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6480475108, "date": "2022-01-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.78, "date": "2022-01-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6487265994, "date": "2022-01-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.846, "date": "2022-01-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6494037287, "date": "2022-01-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.951, "date": "2022-02-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6500788987, "date": "2022-02-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.019, "date": "2022-02-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6507521093, "date": "2022-02-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.055, "date": "2022-02-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6514233605, "date": "2022-02-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.104, "date": "2022-02-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6520926525, "date": "2022-02-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.849, "date": "2022-03-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.652759985, "date": "2022-03-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.25, "date": "2022-03-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6534253582, "date": "2022-03-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.134, "date": "2022-03-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6540887721, "date": "2022-03-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.185, "date": "2022-03-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6547502266, "date": "2022-03-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.144, "date": "2022-04-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6554097218, "date": "2022-04-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.073, "date": "2022-04-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6560672576, "date": "2022-04-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.101, "date": "2022-04-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6567228341, "date": "2022-04-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.16, "date": "2022-04-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6573764513, "date": "2022-04-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.509, "date": "2022-05-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6580281091, "date": "2022-05-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.623, "date": "2022-05-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6586778075, "date": "2022-05-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.613, "date": "2022-05-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6593255466, "date": "2022-05-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.571, "date": "2022-05-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6599713263, "date": "2022-05-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.539, "date": "2022-05-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6606151468, "date": "2022-05-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.703, "date": "2022-06-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6612570078, "date": "2022-06-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.718, "date": "2022-06-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6618969095, "date": "2022-06-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.81, "date": "2022-06-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6625348519, "date": "2022-06-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.783, "date": "2022-06-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6631708349, "date": "2022-06-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.675, "date": "2022-07-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6638048586, "date": "2022-07-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.568, "date": "2022-07-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6644369229, "date": "2022-07-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.432, "date": "2022-07-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6650670279, "date": "2022-07-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.268, "date": "2022-07-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6656951735, "date": "2022-07-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.138, "date": "2022-08-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6663213598, "date": "2022-08-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.993, "date": "2022-08-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6669455867, "date": "2022-08-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.911, "date": "2022-08-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6675678543, "date": "2022-08-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.909, "date": "2022-08-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6681881625, "date": "2022-08-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.115, "date": "2022-08-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6688065114, "date": "2022-08-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.084, "date": "2022-09-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.669422901, "date": "2022-09-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.033, "date": "2022-09-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6700373312, "date": "2022-09-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.964, "date": "2022-09-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.670649802, "date": "2022-09-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.889, "date": "2022-09-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6712603135, "date": "2022-09-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.836, "date": "2022-10-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6718688657, "date": "2022-10-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.224, "date": "2022-10-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6724754585, "date": "2022-10-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.339, "date": "2022-10-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.673080092, "date": "2022-10-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.341, "date": "2022-10-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6736827661, "date": "2022-10-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.317, "date": "2022-10-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6742834808, "date": "2022-10-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.333, "date": "2022-11-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6748822363, "date": "2022-11-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.313, "date": "2022-11-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6754790323, "date": "2022-11-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.233, "date": "2022-11-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6760738691, "date": "2022-11-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 5.141, "date": "2022-11-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6766667465, "date": "2022-11-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.967, "date": "2022-12-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6772576645, "date": "2022-12-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.754, "date": "2022-12-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6778466232, "date": "2022-12-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.596, "date": "2022-12-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6784336225, "date": "2022-12-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.537, "date": "2022-12-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6790186625, "date": "2022-12-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.583, "date": "2023-01-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6796017432, "date": "2023-01-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.549, "date": "2023-01-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6801828645, "date": "2023-01-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.524, "date": "2023-01-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6807620264, "date": "2023-01-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.604, "date": "2023-01-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.681339229, "date": "2023-01-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.622, "date": "2023-01-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6819144723, "date": "2023-01-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.539, "date": "2023-02-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6824877562, "date": "2023-02-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.444, "date": "2023-02-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6830590808, "date": "2023-02-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.376, "date": "2023-02-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.683628446, "date": "2023-02-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.294, "date": "2023-02-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6841958519, "date": "2023-02-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.282, "date": "2023-03-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6847612984, "date": "2023-03-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.247, "date": "2023-03-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6853247856, "date": "2023-03-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.185, "date": "2023-03-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6858863134, "date": "2023-03-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.128, "date": "2023-03-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6864458819, "date": "2023-03-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.105, "date": "2023-04-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.687003491, "date": "2023-04-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.098, "date": "2023-04-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6875591408, "date": "2023-04-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.116, "date": "2023-04-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6881128312, "date": "2023-04-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.077, "date": "2023-04-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6886645623, "date": "2023-04-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.018, "date": "2023-05-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6892143341, "date": "2023-05-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.922, "date": "2023-05-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6897621465, "date": "2023-05-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.897, "date": "2023-05-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6903079996, "date": "2023-05-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.883, "date": "2023-05-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6908518933, "date": "2023-05-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.855, "date": "2023-05-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6913938276, "date": "2023-05-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.797, "date": "2023-06-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6919338026, "date": "2023-06-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.794, "date": "2023-06-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6924718183, "date": "2023-06-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.815, "date": "2023-06-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6930078746, "date": "2023-06-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.801, "date": "2023-06-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6935419716, "date": "2023-06-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.767, "date": "2023-07-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6940741092, "date": "2023-07-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.806, "date": "2023-07-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6946042875, "date": "2023-07-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.806, "date": "2023-07-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6951325064, "date": "2023-07-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.905, "date": "2023-07-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.695658766, "date": "2023-07-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.127, "date": "2023-07-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6961830663, "date": "2023-07-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.239, "date": "2023-08-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6967054072, "date": "2023-08-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.378, "date": "2023-08-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6972257887, "date": "2023-08-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.389, "date": "2023-08-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6977442109, "date": "2023-08-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.475, "date": "2023-08-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6982606738, "date": "2023-08-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.492, "date": "2023-09-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6987751773, "date": "2023-09-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.54, "date": "2023-09-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6992877214, "date": "2023-09-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.633, "date": "2023-09-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.6997983062, "date": "2023-09-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.586, "date": "2023-09-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7003069317, "date": "2023-09-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.593, "date": "2023-10-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7008135978, "date": "2023-10-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.498, "date": "2023-10-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7013183046, "date": "2023-10-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.444, "date": "2023-10-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.701821052, "date": "2023-10-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.545, "date": "2023-10-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7023218401, "date": "2023-10-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.454, "date": "2023-10-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7028206688, "date": "2023-10-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.366, "date": "2023-11-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7033175382, "date": "2023-11-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.294, "date": "2023-11-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7038124482, "date": "2023-11-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.209, "date": "2023-11-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7043053989, "date": "2023-11-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.146, "date": "2023-11-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7047963903, "date": "2023-11-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.092, "date": "2023-12-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7052854223, "date": "2023-12-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.987, "date": "2023-12-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7057724949, "date": "2023-12-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2023-12-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7062576082, "date": "2023-12-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.914, "date": "2023-12-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7067407622, "date": "2023-12-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.876, "date": "2024-01-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7072219568, "date": "2024-01-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.828, "date": "2024-01-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.707701192, "date": "2024-01-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.863, "date": "2024-01-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7081784679, "date": "2024-01-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.838, "date": "2024-01-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7086537845, "date": "2024-01-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.867, "date": "2024-01-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7091271417, "date": "2024-01-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.899, "date": "2024-02-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7095985396, "date": "2024-02-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.109, "date": "2024-02-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7100679781, "date": "2024-02-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.109, "date": "2024-02-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7105354573, "date": "2024-02-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.058, "date": "2024-02-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7110009771, "date": "2024-02-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.022, "date": "2024-03-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7114645376, "date": "2024-03-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.004, "date": "2024-03-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7119261388, "date": "2024-03-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.028, "date": "2024-03-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7123857806, "date": "2024-03-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.034, "date": "2024-03-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.712843463, "date": "2024-03-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.996, "date": "2024-04-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7132991861, "date": "2024-04-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.061, "date": "2024-04-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7137529498, "date": "2024-04-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 4.015, "date": "2024-04-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7142047542, "date": "2024-04-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.992, "date": "2024-04-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7146545993, "date": "2024-04-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.947, "date": "2024-04-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.715102485, "date": "2024-04-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.894, "date": "2024-05-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7155484114, "date": "2024-05-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.848, "date": "2024-05-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7159923784, "date": "2024-05-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.789, "date": "2024-05-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7164343861, "date": "2024-05-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.758, "date": "2024-05-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7168744344, "date": "2024-05-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.726, "date": "2024-06-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7173125234, "date": "2024-06-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.658, "date": "2024-06-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.717748653, "date": "2024-06-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.735, "date": "2024-06-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7181828233, "date": "2024-06-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.769, "date": "2024-06-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7186150342, "date": "2024-06-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.813, "date": "2024-07-01", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7190452858, "date": "2024-07-01", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.865, "date": "2024-07-08", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.719473578, "date": "2024-07-08", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.826, "date": "2024-07-15", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7198999109, "date": "2024-07-15", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.779, "date": "2024-07-22", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7203242845, "date": "2024-07-22", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.768, "date": "2024-07-29", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7207466987, "date": "2024-07-29", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.755, "date": "2024-08-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7211671535, "date": "2024-08-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.704, "date": "2024-08-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.721585649, "date": "2024-08-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.688, "date": "2024-08-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7220021852, "date": "2024-08-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.651, "date": "2024-08-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.722416762, "date": "2024-08-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.625, "date": "2024-09-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7228293794, "date": "2024-09-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.555, "date": "2024-09-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7232400376, "date": "2024-09-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.526, "date": "2024-09-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7236487363, "date": "2024-09-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.539, "date": "2024-09-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7240554758, "date": "2024-09-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.544, "date": "2024-09-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7244602558, "date": "2024-09-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.584, "date": "2024-10-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7248630766, "date": "2024-10-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.631, "date": "2024-10-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7252639379, "date": "2024-10-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.553, "date": "2024-10-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.72566284, "date": "2024-10-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.573, "date": "2024-10-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7260597827, "date": "2024-10-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.536, "date": "2024-11-04", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.726454766, "date": "2024-11-04", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.521, "date": "2024-11-11", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.72684779, "date": "2024-11-11", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.491, "date": "2024-11-18", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7272388547, "date": "2024-11-18", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.539, "date": "2024-11-25", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.72762796, "date": "2024-11-25", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.54, "date": "2024-12-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7280151059, "date": "2024-12-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.458, "date": "2024-12-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7284002925, "date": "2024-12-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.494, "date": "2024-12-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7287835198, "date": "2024-12-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.476, "date": "2024-12-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7291647877, "date": "2024-12-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.503, "date": "2024-12-30", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7295440963, "date": "2024-12-30", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.561, "date": "2025-01-06", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7299214455, "date": "2025-01-06", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.602, "date": "2025-01-13", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7302968354, "date": "2025-01-13", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.715, "date": "2025-01-20", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7306702659, "date": "2025-01-20", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.659, "date": "2025-01-27", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7310417371, "date": "2025-01-27", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.66, "date": "2025-02-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7314112489, "date": "2025-02-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.665, "date": "2025-02-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7317788014, "date": "2025-02-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.677, "date": "2025-02-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7321443945, "date": "2025-02-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.697, "date": "2025-02-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7325080283, "date": "2025-02-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.635, "date": "2025-03-03", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7328697027, "date": "2025-03-03", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.582, "date": "2025-03-10", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7332294178, "date": "2025-03-10", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.549, "date": "2025-03-17", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7335871736, "date": "2025-03-17", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.567, "date": "2025-03-24", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.73394297, "date": "2025-03-24", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.592, "date": "2025-03-31", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.734296807, "date": "2025-03-31", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.639, "date": "2025-04-07", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7346486848, "date": "2025-04-07", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.579, "date": "2025-04-14", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7349986031, "date": "2025-04-14", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.534, "date": "2025-04-21", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7353465621, "date": "2025-04-21", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.514, "date": "2025-04-28", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7356925618, "date": "2025-04-28", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.497, "date": "2025-05-05", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7360366021, "date": "2025-05-05", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.476, "date": "2025-05-12", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7363786831, "date": "2025-05-12", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.536, "date": "2025-05-19", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7367188047, "date": "2025-05-19", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.487, "date": "2025-05-26", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.737056967, "date": "2025-05-26", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.451, "date": "2025-06-02", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7373931699, "date": "2025-06-02", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.471, "date": "2025-06-09", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7377274135, "date": "2025-06-09", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.571, "date": "2025-06-16", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7380596978, "date": "2025-06-16", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.775, "date": "2025-06-23", "fuel": "diesel", "is_predicted": "original"}, {"avg_price": 3.7383900227, "date": "2025-06-23", "fuel": "diesel", "is_predicted": "regression"}, {"avg_price": 3.7389982849, "date": "2025-07-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7393230117, "date": "2025-07-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7396457791, "date": "2025-07-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7399665871, "date": "2025-07-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7402854359, "date": "2025-08-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7406023252, "date": "2025-08-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7409172553, "date": "2025-08-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7412302259, "date": "2025-08-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7415412373, "date": "2025-08-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7418502892, "date": "2025-09-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7421573819, "date": "2025-09-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7424625152, "date": "2025-09-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7427656891, "date": "2025-09-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7430669037, "date": "2025-10-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.743366159, "date": "2025-10-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7436634549, "date": "2025-10-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7439587914, "date": "2025-10-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7442521686, "date": "2025-11-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7445435865, "date": "2025-11-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.744833045, "date": "2025-11-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7451205442, "date": "2025-11-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.745406084, "date": "2025-11-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7456896645, "date": "2025-12-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7459712856, "date": "2025-12-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7462509474, "date": "2025-12-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7465286498, "date": "2025-12-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7468043929, "date": "2026-01-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7470781766, "date": "2026-01-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.747350001, "date": "2026-01-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7476198661, "date": "2026-01-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7478877718, "date": "2026-02-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7481537181, "date": "2026-02-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7484177051, "date": "2026-02-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7486797328, "date": "2026-02-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7489398011, "date": "2026-03-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.74919791, "date": "2026-03-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7494540597, "date": "2026-03-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7497082499, "date": "2026-03-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7499604808, "date": "2026-03-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7502107524, "date": "2026-04-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7504590646, "date": "2026-04-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7507054175, "date": "2026-04-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7509498111, "date": "2026-04-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7511922452, "date": "2026-05-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7514327201, "date": "2026-05-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7516712356, "date": "2026-05-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7519077917, "date": "2026-05-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7521423885, "date": "2026-05-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.752375026, "date": "2026-06-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7526057041, "date": "2026-06-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7528344228, "date": "2026-06-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7530611823, "date": "2026-06-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7532859823, "date": "2026-07-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.753508823, "date": "2026-07-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7537297044, "date": "2026-07-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7539486264, "date": "2026-07-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7541655891, "date": "2026-08-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7543805924, "date": "2026-08-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7545936364, "date": "2026-08-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7548047211, "date": "2026-08-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7550138463, "date": "2026-08-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7552210123, "date": "2026-09-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7554262189, "date": "2026-09-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7556294661, "date": "2026-09-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.755830754, "date": "2026-09-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7560300826, "date": "2026-10-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7562274518, "date": "2026-10-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7564228617, "date": "2026-10-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7566163122, "date": "2026-10-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7568078033, "date": "2026-11-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7569973352, "date": "2026-11-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7571849076, "date": "2026-11-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7573705208, "date": "2026-11-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7575541745, "date": "2026-11-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.757735869, "date": "2026-12-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7579156041, "date": "2026-12-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7580933798, "date": "2026-12-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7582691962, "date": "2026-12-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7584430532, "date": "2027-01-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7586149509, "date": "2027-01-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7587848893, "date": "2027-01-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7589528683, "date": "2027-01-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7591188879, "date": "2027-01-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7592829482, "date": "2027-02-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7594450492, "date": "2027-02-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7596051908, "date": "2027-02-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7597633731, "date": "2027-02-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.759919596, "date": "2027-03-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7600738596, "date": "2027-03-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7602261638, "date": "2027-03-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7603765087, "date": "2027-03-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7605248942, "date": "2027-04-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7606713204, "date": "2027-04-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7608157873, "date": "2027-04-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7609582948, "date": "2027-04-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7610988429, "date": "2027-05-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7612374317, "date": "2027-05-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7613740612, "date": "2027-05-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7615087313, "date": "2027-05-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.761641442, "date": "2027-05-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7617721934, "date": "2027-06-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7619009855, "date": "2027-06-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7620278182, "date": "2027-06-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7621526916, "date": "2027-06-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7622756056, "date": "2027-07-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7623965603, "date": "2027-07-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7625155556, "date": "2027-07-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7626325916, "date": "2027-07-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7627476682, "date": "2027-08-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7628607855, "date": "2027-08-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7629719435, "date": "2027-08-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7630811421, "date": "2027-08-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7631883813, "date": "2027-08-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7632936612, "date": "2027-09-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7633969818, "date": "2027-09-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.763498343, "date": "2027-09-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7635977448, "date": "2027-09-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7636951874, "date": "2027-10-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7637906705, "date": "2027-10-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7638841943, "date": "2027-10-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7639757588, "date": "2027-10-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7640653639, "date": "2027-10-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7641530097, "date": "2027-11-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7642386961, "date": "2027-11-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7643224232, "date": "2027-11-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.764404191, "date": "2027-11-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7644839994, "date": "2027-12-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7645618484, "date": "2027-12-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7646377381, "date": "2027-12-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7647116685, "date": "2027-12-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7647836395, "date": "2028-01-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7648536511, "date": "2028-01-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7649217034, "date": "2028-01-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7649877964, "date": "2028-01-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.76505193, "date": "2028-01-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7651141043, "date": "2028-02-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7651743192, "date": "2028-02-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7652325748, "date": "2028-02-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.765288871, "date": "2028-02-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7653432079, "date": "2028-03-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7653955854, "date": "2028-03-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7654460036, "date": "2028-03-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7654944624, "date": "2028-03-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7655409619, "date": "2028-04-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7655855021, "date": "2028-04-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7656280829, "date": "2028-04-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7656687043, "date": "2028-04-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7657073664, "date": "2028-04-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7657440692, "date": "2028-05-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7657788126, "date": "2028-05-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7658115967, "date": "2028-05-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7658424214, "date": "2028-05-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7658712868, "date": "2028-06-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7658981928, "date": "2028-06-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659231395, "date": "2028-06-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659461268, "date": "2028-06-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659671548, "date": "2028-07-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659862234, "date": "2028-07-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660033327, "date": "2028-07-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660184826, "date": "2028-07-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660316732, "date": "2028-07-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660429045, "date": "2028-08-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660521764, "date": "2028-08-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660594889, "date": "2028-08-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660648422, "date": "2028-08-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.766068236, "date": "2028-09-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660696705, "date": "2028-09-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660691457, "date": "2028-09-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660666615, "date": "2028-09-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.766062218, "date": "2028-10-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660558151, "date": "2028-10-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660474529, "date": "2028-10-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660371313, "date": "2028-10-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660248504, "date": "2028-10-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7660106101, "date": "2028-11-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659944105, "date": "2028-11-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659762516, "date": "2028-11-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659561333, "date": "2028-11-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659340556, "date": "2028-12-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7659100186, "date": "2028-12-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7658840223, "date": "2028-12-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7658560666, "date": "2028-12-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7658261516, "date": "2028-12-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7657942772, "date": "2029-01-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7657604435, "date": "2029-01-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7657246504, "date": "2029-01-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7656868979, "date": "2029-01-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7656471862, "date": "2029-02-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7656055151, "date": "2029-02-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7655618846, "date": "2029-02-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7655162948, "date": "2029-02-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7654687456, "date": "2029-03-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7654192371, "date": "2029-03-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7653677693, "date": "2029-03-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7653143421, "date": "2029-03-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7652589555, "date": "2029-04-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7652016096, "date": "2029-04-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7651423044, "date": "2029-04-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7650810398, "date": "2029-04-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7650178159, "date": "2029-04-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7649526326, "date": "2029-05-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7648854899, "date": "2029-05-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.764816388, "date": "2029-05-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7647453266, "date": "2029-05-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.764672306, "date": "2029-06-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.764597326, "date": "2029-06-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7645203866, "date": "2029-06-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7644414879, "date": "2029-06-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7643606298, "date": "2029-07-01", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7642778124, "date": "2029-07-08", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7641930357, "date": "2029-07-15", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7641062996, "date": "2029-07-22", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7640176041, "date": "2029-07-29", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7639269493, "date": "2029-08-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7638343352, "date": "2029-08-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7637397617, "date": "2029-08-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7636432289, "date": "2029-08-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7635447367, "date": "2029-09-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7634442852, "date": "2029-09-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7633418743, "date": "2029-09-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7632375041, "date": "2029-09-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7631311745, "date": "2029-09-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7630228856, "date": "2029-10-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7629126373, "date": "2029-10-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7628004297, "date": "2029-10-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7626862628, "date": "2029-10-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7625701365, "date": "2029-11-04", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7624520508, "date": "2029-11-11", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7623320058, "date": "2029-11-18", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7622100015, "date": "2029-11-25", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7620860378, "date": "2029-12-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7619601147, "date": "2029-12-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7618322324, "date": "2029-12-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7617023906, "date": "2029-12-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7615705895, "date": "2029-12-30", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7614368291, "date": "2030-01-06", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7613011094, "date": "2030-01-13", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7611634302, "date": "2030-01-20", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7610237918, "date": "2030-01-27", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.760882194, "date": "2030-02-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7607386368, "date": "2030-02-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7605931203, "date": "2030-02-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7604456444, "date": "2030-02-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7602962092, "date": "2030-03-03", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7601448147, "date": "2030-03-10", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7599914608, "date": "2030-03-17", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7598361476, "date": "2030-03-24", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.759678875, "date": "2030-03-31", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.759519643, "date": "2030-04-07", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7593584517, "date": "2030-04-14", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7591953011, "date": "2030-04-21", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7590301911, "date": "2030-04-28", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7588631218, "date": "2030-05-05", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7586940931, "date": "2030-05-12", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7585231051, "date": "2030-05-19", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7583501578, "date": "2030-05-26", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7581752511, "date": "2030-06-02", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.757998385, "date": "2030-06-09", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7578195596, "date": "2030-06-16", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 3.7576387748, "date": "2030-06-23", "fuel": "diesel", "is_predicted": "forecasting"}, {"avg_price": 1.191, "date": "1990-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6232239578, "date": "1990-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.245, "date": "1990-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6257036097, "date": "1990-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.242, "date": "1990-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.628182385, "date": "1990-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.252, "date": "1990-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6306602838, "date": "1990-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.266, "date": "1990-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.633137306, "date": "1990-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.272, "date": "1990-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6356134516, "date": "1990-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.321, "date": "1990-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6380887207, "date": "1990-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.333, "date": "1990-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6405631132, "date": "1990-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.339, "date": "1990-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6430366292, "date": "1990-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.345, "date": "1990-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6455092686, "date": "1990-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.339, "date": "1990-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6479810315, "date": "1990-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.334, "date": "1990-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6504519178, "date": "1990-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.328, "date": "1990-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6529219276, "date": "1990-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.323, "date": "1990-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6553910607, "date": "1990-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.311, "date": "1990-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6578593174, "date": "1990-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.341, "date": "1990-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6603266975, "date": "1990-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.192, "date": "1991-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6775738144, "date": "1991-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.168, "date": "1991-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.680034182, "date": "1991-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.139, "date": "1991-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6824936731, "date": "1991-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1991-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6849522876, "date": "1991-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.078, "date": "1991-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6874100256, "date": "1991-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.054, "date": "1991-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6898668869, "date": "1991-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.025, "date": "1991-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6923228718, "date": "1991-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.045, "date": "1991-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6947779801, "date": "1991-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.043, "date": "1991-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.6972322118, "date": "1991-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.047, "date": "1991-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.699685567, "date": "1991-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.052, "date": "1991-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7021380456, "date": "1991-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.066, "date": "1991-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7045896476, "date": "1991-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.069, "date": "1991-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7070403731, "date": "1991-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.09, "date": "1991-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7094902221, "date": "1991-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1991-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7119391944, "date": "1991-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.113, "date": "1991-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7143872903, "date": "1991-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1991-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7168345095, "date": "1991-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.129, "date": "1991-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7192808522, "date": "1991-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.14, "date": "1991-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7217263184, "date": "1991-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.138, "date": "1991-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.724170908, "date": "1991-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.135, "date": "1991-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.726614621, "date": "1991-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1991-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7290574575, "date": "1991-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1991-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7314994175, "date": "1991-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1991-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7339405008, "date": "1991-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1991-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7363807076, "date": "1991-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.094, "date": "1991-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7388200379, "date": "1991-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7412584916, "date": "1991-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7436960687, "date": "1991-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1991-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7461327693, "date": "1991-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.112, "date": "1991-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7485685934, "date": "1991-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1991-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7510035408, "date": "1991-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1991-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7534376117, "date": "1991-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.127, "date": "1991-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7558708061, "date": "1991-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1991-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7583031239, "date": "1991-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.11, "date": "1991-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7607345652, "date": "1991-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.097, "date": "1991-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7631651298, "date": "1991-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.092, "date": "1991-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.765594818, "date": "1991-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1991-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7680236295, "date": "1991-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.084, "date": "1991-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7704515646, "date": "1991-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.088, "date": "1991-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.772878623, "date": "1991-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7753048049, "date": "1991-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7777301103, "date": "1991-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.102, "date": "1991-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7801545391, "date": "1991-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1991-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7825780913, "date": "1991-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1991-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.785000767, "date": "1991-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.099, "date": "1991-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7874225661, "date": "1991-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.091, "date": "1991-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7898434887, "date": "1991-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1991-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7922635347, "date": "1991-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.063, "date": "1991-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7946827041, "date": "1991-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.053, "date": "1991-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.797100997, "date": "1991-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.042, "date": "1992-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.7995184133, "date": "1992-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.026, "date": "1992-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8019349531, "date": "1992-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.014, "date": "1992-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8043506163, "date": "1992-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.006, "date": "1992-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.806765403, "date": "1992-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.995, "date": "1992-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8091793131, "date": "1992-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.004, "date": "1992-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8115923467, "date": "1992-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.011, "date": "1992-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8140045037, "date": "1992-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.014, "date": "1992-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8164157841, "date": "1992-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.012, "date": "1992-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.818826188, "date": "1992-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.013, "date": "1992-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8212357153, "date": "1992-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.01, "date": "1992-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8236443661, "date": "1992-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.015, "date": "1992-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8260521403, "date": "1992-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.013, "date": "1992-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8284590379, "date": "1992-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.026, "date": "1992-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.830865059, "date": "1992-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.051, "date": "1992-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8332702036, "date": "1992-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.058, "date": "1992-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8356744716, "date": "1992-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.072, "date": "1992-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.838077863, "date": "1992-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1992-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8404803779, "date": "1992-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.102, "date": "1992-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8428820162, "date": "1992-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1992-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8452827779, "date": "1992-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1992-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8476826631, "date": "1992-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.128, "date": "1992-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8500816718, "date": "1992-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.143, "date": "1992-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8524798038, "date": "1992-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.151, "date": "1992-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8548770594, "date": "1992-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.153, "date": "1992-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8572734383, "date": "1992-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.149, "date": "1992-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8596689408, "date": "1992-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.147, "date": "1992-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8620635666, "date": "1992-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.139, "date": "1992-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8644573159, "date": "1992-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.132, "date": "1992-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8668501887, "date": "1992-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.128, "date": "1992-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8692421848, "date": "1992-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.126, "date": "1992-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8716333045, "date": "1992-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1992-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8740235475, "date": "1992-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.116, "date": "1992-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8764129141, "date": "1992-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1992-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.878801404, "date": "1992-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1992-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8811890174, "date": "1992-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1992-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8835757543, "date": "1992-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.124, "date": "1992-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8859616146, "date": "1992-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1992-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8883465983, "date": "1992-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.118, "date": "1992-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8907307055, "date": "1992-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.115, "date": "1992-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8931139361, "date": "1992-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.115, "date": "1992-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8954962901, "date": "1992-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.113, "date": "1992-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.8978777676, "date": "1992-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.113, "date": "1992-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9002583686, "date": "1992-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1992-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.902638093, "date": "1992-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1992-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9050169408, "date": "1992-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.112, "date": "1992-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9073949121, "date": "1992-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1992-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9097720068, "date": "1992-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.098, "date": "1992-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.912148225, "date": "1992-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1992-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9145235666, "date": "1992-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.078, "date": "1992-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9168980316, "date": "1992-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.074, "date": "1992-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9192716201, "date": "1992-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.069, "date": "1992-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9216443321, "date": "1992-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1993-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9240161674, "date": "1993-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.066, "date": "1993-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9263871263, "date": "1993-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.061, "date": "1993-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9287572085, "date": "1993-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.055, "date": "1993-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9311264142, "date": "1993-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.055, "date": "1993-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9334947434, "date": "1993-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.062, "date": "1993-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.935862196, "date": "1993-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.053, "date": "1993-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.938228772, "date": "1993-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.047, "date": "1993-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9405944715, "date": "1993-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.042, "date": "1993-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9429592944, "date": "1993-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.048, "date": "1993-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9453232408, "date": "1993-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.058, "date": "1993-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9476863106, "date": "1993-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.056, "date": "1993-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9500485038, "date": "1993-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.057, "date": "1993-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9524098205, "date": "1993-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.068, "date": "1993-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9547702607, "date": "1993-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.079, "date": "1993-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9571298243, "date": "1993-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.079, "date": "1993-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9594885113, "date": "1993-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.086, "date": "1993-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9618463218, "date": "1993-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.086, "date": "1993-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9642032557, "date": "1993-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.097, "date": "1993-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.966559313, "date": "1993-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1993-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9689144938, "date": "1993-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1993-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9712687981, "date": "1993-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.107, "date": "1993-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9736222257, "date": "1993-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.104, "date": "1993-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9759747769, "date": "1993-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.101, "date": "1993-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9783264514, "date": "1993-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.095, "date": "1993-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9806772495, "date": "1993-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.089, "date": "1993-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9830271709, "date": "1993-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.086, "date": "1993-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9853762158, "date": "1993-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.081, "date": "1993-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9877243842, "date": "1993-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1993-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9900716759, "date": "1993-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.069, "date": "1993-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9924180912, "date": "1993-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.062, "date": "1993-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9947636298, "date": "1993-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.06, "date": "1993-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.997108292, "date": "1993-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.059, "date": "1993-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 0.9994520775, "date": "1993-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1993-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0017949865, "date": "1993-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.062, "date": "1993-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.004137019, "date": "1993-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.055, "date": "1993-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0064781748, "date": "1993-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.051, "date": "1993-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0088184542, "date": "1993-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.045, "date": "1993-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.011157857, "date": "1993-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.047, "date": "1993-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0134963832, "date": "1993-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.092, "date": "1993-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0158340328, "date": "1993-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.09, "date": "1993-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0181708059, "date": "1993-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.093, "date": "1993-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0205067025, "date": "1993-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.092, "date": "1993-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0228417225, "date": "1993-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.084, "date": "1993-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0251758659, "date": "1993-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.075, "date": "1993-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0275091328, "date": "1993-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.064, "date": "1993-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0298415231, "date": "1993-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.058, "date": "1993-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0321730369, "date": "1993-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.051, "date": "1993-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0345036741, "date": "1993-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.036, "date": "1993-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0368334347, "date": "1993-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.018, "date": "1993-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0391623188, "date": "1993-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.003, "date": "1993-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0414903263, "date": "1993-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.999, "date": "1993-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0438174573, "date": "1993-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.992, "date": "1994-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0461437117, "date": "1994-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.995, "date": "1994-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0484690896, "date": "1994-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.001, "date": "1994-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0507935909, "date": "1994-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 0.999, "date": "1994-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0531172157, "date": "1994-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.005, "date": "1994-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0554399639, "date": "1994-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.007, "date": "1994-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0577618355, "date": "1994-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.016, "date": "1994-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0600828306, "date": "1994-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.009, "date": "1994-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0624029491, "date": "1994-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.004, "date": "1994-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0647221911, "date": "1994-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.007, "date": "1994-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0670405565, "date": "1994-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.005, "date": "1994-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0693580453, "date": "1994-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.007, "date": "1994-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0716746576, "date": "1994-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.012, "date": "1994-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0739903934, "date": "1994-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.011, "date": "1994-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0763052525, "date": "1994-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.028, "date": "1994-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0786192352, "date": "1994-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.033, "date": "1994-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0809323412, "date": "1994-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.037, "date": "1994-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0832445707, "date": "1994-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.04, "date": "1994-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0855559237, "date": "1994-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.045, "date": "1994-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0878664001, "date": "1994-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.046, "date": "1994-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0901759999, "date": "1994-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.05, "date": "1994-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0924847232, "date": "1994-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.056, "date": "1994-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0947925699, "date": "1994-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.065, "date": "1994-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0970995401, "date": "1994-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.073, "date": "1994-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.0994056337, "date": "1994-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.079, "date": "1994-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1017108508, "date": "1994-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.095, "date": "1994-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1040151913, "date": "1994-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.097, "date": "1994-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1063186552, "date": "1994-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.103, "date": "1994-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1086212426, "date": "1994-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.109, "date": "1994-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1109229534, "date": "1994-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1994-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1132237877, "date": "1994-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.13, "date": "1994-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1155237454, "date": "1994-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.157, "date": "1994-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1178228266, "date": "1994-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.161, "date": "1994-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1201210312, "date": "1994-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.165, "date": "1994-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1224183592, "date": "1994-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.161, "date": "1994-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1247148107, "date": "1994-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.156, "date": "1994-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1270103857, "date": "1994-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.15, "date": "1994-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.129305084, "date": "1994-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.14, "date": "1994-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1315989058, "date": "1994-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.129, "date": "1994-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1338918511, "date": "1994-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.12, "date": "1994-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1361839198, "date": "1994-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.114, "date": "1994-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.138475112, "date": "1994-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.106, "date": "1994-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1407654275, "date": "1994-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.107, "date": "1994-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1430548666, "date": "1994-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.121, "date": "1994-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1453434291, "date": "1994-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.123, "date": "1994-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.147631115, "date": "1994-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.122, "date": "1994-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1499179243, "date": "1994-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.113, "date": "1994-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1522038571, "date": "1994-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2025833333, "date": "1994-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1544889134, "date": "1994-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2031666667, "date": "1994-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1567730931, "date": "1994-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.19275, "date": "1994-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1590563962, "date": "1994-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1849166667, "date": "1994-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1613388228, "date": "1994-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1778333333, "date": "1994-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1636203728, "date": "1994-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1921666667, "date": "1995-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1659010463, "date": "1995-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1970833333, "date": "1995-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1681808432, "date": "1995-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.19125, "date": "1995-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1704597635, "date": "1995-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1944166667, "date": "1995-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1727378073, "date": "1995-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.192, "date": "1995-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1750149746, "date": "1995-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.187, "date": "1995-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1772912652, "date": "1995-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1839166667, "date": "1995-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1795666794, "date": "1995-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1785, "date": "1995-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1818412169, "date": "1995-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.182, "date": "1995-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1841148779, "date": "1995-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.18225, "date": "1995-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1863876624, "date": "1995-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.17525, "date": "1995-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1886595703, "date": "1995-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.174, "date": "1995-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1909306016, "date": "1995-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1771666667, "date": "1995-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1932007564, "date": "1995-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1860833333, "date": "1995-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1954700346, "date": "1995-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2000833333, "date": "1995-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.1977384363, "date": "1995-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2124166667, "date": "1995-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2000059614, "date": "1995-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2325833333, "date": "1995-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.20227261, "date": "1995-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.24275, "date": "1995-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.204538382, "date": "1995-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2643333333, "date": "1995-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2068032774, "date": "1995-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.274, "date": "1995-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2090672963, "date": "1995-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2905833333, "date": "1995-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2113304386, "date": "1995-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.29425, "date": "1995-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2135927044, "date": "1995-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2939166667, "date": "1995-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2158540936, "date": "1995-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2913333333, "date": "1995-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2181146062, "date": "1995-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.28575, "date": "1995-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2203742423, "date": "1995-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2798333333, "date": "1995-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2226330019, "date": "1995-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2730833333, "date": "1995-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2248908849, "date": "1995-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2644166667, "date": "1995-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2271478913, "date": "1995-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2545833333, "date": "1995-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2294040212, "date": "1995-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2445833333, "date": "1995-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2316592745, "date": "1995-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2321666667, "date": "1995-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2339136512, "date": "1995-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2270833333, "date": "1995-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2361671514, "date": "1995-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2228333333, "date": "1995-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2384197751, "date": "1995-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2206666667, "date": "1995-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2406715222, "date": "1995-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.21325, "date": "1995-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2429223927, "date": "1995-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2110833333, "date": "1995-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2451723867, "date": "1995-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2075833333, "date": "1995-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2474215041, "date": "1995-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2063333333, "date": "1995-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.249669745, "date": "1995-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2041666667, "date": "1995-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2519171093, "date": "1995-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2005833333, "date": "1995-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.254163597, "date": "1995-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1949166667, "date": "1995-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2564092082, "date": "1995-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1870833333, "date": "1995-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2586539428, "date": "1995-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1790833333, "date": "1995-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2608978009, "date": "1995-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1693333333, "date": "1995-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2631407824, "date": "1995-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.16475, "date": "1995-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2653828874, "date": "1995-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1621666667, "date": "1995-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2676241158, "date": "1995-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.158, "date": "1995-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2698644676, "date": "1995-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1574166667, "date": "1995-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2721039429, "date": "1995-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1586666667, "date": "1995-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2743425417, "date": "1995-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1598333333, "date": "1995-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2765802638, "date": "1995-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1716666667, "date": "1995-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2788171095, "date": "1995-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1763333333, "date": "1995-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2810530785, "date": "1995-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.178, "date": "1996-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.283288171, "date": "1996-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1848333333, "date": "1996-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.285522387, "date": "1996-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1918333333, "date": "1996-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2877557264, "date": "1996-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.18725, "date": "1996-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2899881892, "date": "1996-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.18275, "date": "1996-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2922197755, "date": "1996-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1796666667, "date": "1996-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2944504852, "date": "1996-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1765833333, "date": "1996-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.2966803184, "date": "1996-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1820833333, "date": "1996-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.298909275, "date": "1996-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.20075, "date": "1996-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.301137355, "date": "1996-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.216, "date": "1996-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3033645585, "date": "1996-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2185, "date": "1996-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3055908855, "date": "1996-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2275833333, "date": "1996-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3078163359, "date": "1996-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2536666667, "date": "1996-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3100409097, "date": "1996-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2685833333, "date": "1996-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3122646069, "date": "1996-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2933333333, "date": "1996-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3144874277, "date": "1996-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3344166667, "date": "1996-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3167093718, "date": "1996-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.35825, "date": "1996-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3189304394, "date": "1996-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3765833333, "date": "1996-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3211506304, "date": "1996-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3811666667, "date": "1996-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3233699449, "date": "1996-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.38375, "date": "1996-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3255883829, "date": "1996-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3891666667, "date": "1996-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3278059442, "date": "1996-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.37975, "date": "1996-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.330022629, "date": "1996-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3785833333, "date": "1996-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3322384373, "date": "1996-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.36975, "date": "1996-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.334453369, "date": "1996-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3625, "date": "1996-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3366674241, "date": "1996-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3511666667, "date": "1996-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3388806027, "date": "1996-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.34025, "date": "1996-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3410929047, "date": "1996-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3360833333, "date": "1996-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3433043302, "date": "1996-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.332, "date": "1996-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3455148791, "date": "1996-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3288333333, "date": "1996-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3477245515, "date": "1996-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3199166667, "date": "1996-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3499333473, "date": "1996-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.30975, "date": "1996-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3521412665, "date": "1996-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3026666667, "date": "1996-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3543483092, "date": "1996-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3000833333, "date": "1996-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3565544753, "date": "1996-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3024166667, "date": "1996-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3587597649, "date": "1996-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2905, "date": "1996-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3609641779, "date": "1996-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2938333333, "date": "1996-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3631677144, "date": "1996-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2966666667, "date": "1996-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3653703743, "date": "1996-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.29675, "date": "1996-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3675721576, "date": "1996-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2916666667, "date": "1996-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3697730644, "date": "1996-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2855, "date": "1996-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3719730947, "date": "1996-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2918333333, "date": "1996-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3741722483, "date": "1996-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2916666667, "date": "1996-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3763705255, "date": "1996-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2986666667, "date": "1996-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.378567926, "date": "1996-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3048333333, "date": "1996-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.38076445, "date": "1996-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3065833333, "date": "1996-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3829600975, "date": "1996-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.31575, "date": "1996-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3851548684, "date": "1996-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.32175, "date": "1996-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3873487627, "date": "1996-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3219166667, "date": "1996-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3895417805, "date": "1996-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.32275, "date": "1996-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3917339217, "date": "1996-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.32075, "date": "1996-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3939251864, "date": "1996-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3175, "date": "1996-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.3961155745, "date": "1996-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3154166667, "date": "1996-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.398305086, "date": "1996-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.31525, "date": "1997-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.400493721, "date": "1997-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3293333333, "date": "1997-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4026814794, "date": "1997-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3296666667, "date": "1997-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4048683613, "date": "1997-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3268333333, "date": "1997-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4070543666, "date": "1997-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3263333333, "date": "1997-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4092394954, "date": "1997-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3243333333, "date": "1997-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4114237476, "date": "1997-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3195, "date": "1997-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4136071233, "date": "1997-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3165833333, "date": "1997-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4157896224, "date": "1997-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.30825, "date": "1997-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4179712449, "date": "1997-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3035833333, "date": "1997-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4201519909, "date": "1997-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2974166667, "date": "1997-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4223318603, "date": "1997-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2995833333, "date": "1997-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4245108532, "date": "1997-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2985833333, "date": "1997-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4266889695, "date": "1997-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3015833333, "date": "1997-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4288662092, "date": "1997-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2985833333, "date": "1997-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4310425724, "date": "1997-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2971666667, "date": "1997-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4332180591, "date": "1997-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2928333333, "date": "1997-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4353926692, "date": "1997-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2909166667, "date": "1997-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4375664027, "date": "1997-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2889166667, "date": "1997-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4397392597, "date": "1997-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2956666667, "date": "1997-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4419112401, "date": "1997-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3023333333, "date": "1997-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4440823439, "date": "1997-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3034166667, "date": "1997-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4462525712, "date": "1997-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.298, "date": "1997-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.448421922, "date": "1997-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2903333333, "date": "1997-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4505903961, "date": "1997-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2814166667, "date": "1997-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4527579938, "date": "1997-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2731666667, "date": "1997-06-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4549247148, "date": "1997-06-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.26925, "date": "1997-07-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4570905594, "date": "1997-07-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.26475, "date": "1997-07-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4592555273, "date": "1997-07-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.26675, "date": "1997-07-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4614196187, "date": "1997-07-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2615833333, "date": "1997-07-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4635828336, "date": "1997-07-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.282, "date": "1997-08-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4657451718, "date": "1997-08-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3171666667, "date": "1997-08-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4679066336, "date": "1997-08-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3226666667, "date": "1997-08-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4700672187, "date": "1997-08-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3403333333, "date": "1997-08-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4722269274, "date": "1997-08-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3423333333, "date": "1997-09-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4743857594, "date": "1997-09-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3435833333, "date": "1997-09-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4765437149, "date": "1997-09-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3390833333, "date": "1997-09-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4787007939, "date": "1997-09-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3289166667, "date": "1997-09-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4808569963, "date": "1997-09-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3160833333, "date": "1997-09-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4830123221, "date": "1997-09-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3143333333, "date": "1997-10-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4851667714, "date": "1997-10-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3075, "date": "1997-10-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4873203441, "date": "1997-10-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2989166667, "date": "1997-10-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4894730402, "date": "1997-10-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2889166667, "date": "1997-10-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4916248598, "date": "1997-10-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2814166667, "date": "1997-11-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4937758029, "date": "1997-11-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2804166667, "date": "1997-11-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4959258694, "date": "1997-11-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.27175, "date": "1997-11-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.4980750593, "date": "1997-11-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2656666667, "date": "1997-11-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5002233727, "date": "1997-11-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2570833333, "date": "1997-12-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5023708095, "date": "1997-12-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2458333333, "date": "1997-12-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5045173698, "date": "1997-12-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2355833333, "date": "1997-12-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5066630535, "date": "1997-12-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2255, "date": "1997-12-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5088078606, "date": "1997-12-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2175833333, "date": "1997-12-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5109517912, "date": "1997-12-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2095, "date": "1998-01-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5130948453, "date": "1998-01-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1999166667, "date": "1998-01-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5152370227, "date": "1998-01-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1858333333, "date": "1998-01-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5173783237, "date": "1998-01-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1703333333, "date": "1998-01-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.519518748, "date": "1998-01-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1635833333, "date": "1998-02-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5216582958, "date": "1998-02-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1553333333, "date": "1998-02-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5237969671, "date": "1998-02-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1394166667, "date": "1998-02-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5259347618, "date": "1998-02-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1393333333, "date": "1998-02-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5280716799, "date": "1998-02-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1236666667, "date": "1998-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5302077215, "date": "1998-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1116666667, "date": "1998-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5323428865, "date": "1998-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1015, "date": "1998-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.534477175, "date": "1998-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.093, "date": "1998-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5366105869, "date": "1998-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1211666667, "date": "1998-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5387431222, "date": "1998-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1190833333, "date": "1998-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.540874781, "date": "1998-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1186666667, "date": "1998-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5430055633, "date": "1998-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1206666667, "date": "1998-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.545135469, "date": "1998-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1316666667, "date": "1998-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5472644981, "date": "1998-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1455, "date": "1998-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5493926507, "date": "1998-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1580833333, "date": "1998-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5515199267, "date": "1998-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1619166667, "date": "1998-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5536463261, "date": "1998-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1605833333, "date": "1998-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.555771849, "date": "1998-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1571666667, "date": "1998-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5578964954, "date": "1998-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1628333333, "date": "1998-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5600202652, "date": "1998-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1561666667, "date": "1998-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5621431584, "date": "1998-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.15, "date": "1998-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.564265175, "date": "1998-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1484166667, "date": "1998-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5663863152, "date": "1998-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1486666667, "date": "1998-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5685065787, "date": "1998-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1450833333, "date": "1998-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5706259657, "date": "1998-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1476666667, "date": "1998-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5727444762, "date": "1998-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1401666667, "date": "1998-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.57486211, "date": "1998-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1303333333, "date": "1998-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5769788674, "date": "1998-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1250833333, "date": "1998-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5790947481, "date": "1998-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1194166667, "date": "1998-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5812097524, "date": "1998-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.11275, "date": "1998-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.58332388, "date": "1998-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.107, "date": "1998-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5854371311, "date": "1998-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1015, "date": "1998-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5875495057, "date": "1998-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.09725, "date": "1998-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5896610037, "date": "1998-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1071666667, "date": "1998-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5917716251, "date": "1998-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1075833333, "date": "1998-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.59388137, "date": "1998-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1115, "date": "1998-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.5959902383, "date": "1998-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1158333333, "date": "1998-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.59809823, "date": "1998-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1113333333, "date": "1998-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6002053452, "date": "1998-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1086666667, "date": "1998-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6023115839, "date": "1998-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1045, "date": "1998-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.604416946, "date": "1998-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1028333333, "date": "1998-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6065214315, "date": "1998-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0931666667, "date": "1998-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6086250405, "date": "1998-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0886666667, "date": "1998-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6107277729, "date": "1998-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0763333333, "date": "1998-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6128296288, "date": "1998-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0594166667, "date": "1998-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6149306081, "date": "1998-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.05125, "date": "1998-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6170307108, "date": "1998-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.049, "date": "1998-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.619129937, "date": "1998-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.043, "date": "1998-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6212282867, "date": "1998-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0405833333, "date": "1999-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6233257597, "date": "1999-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0429166667, "date": "1999-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6254223563, "date": "1999-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0458333333, "date": "1999-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6275180762, "date": "1999-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0391666667, "date": "1999-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6296129196, "date": "1999-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0320833333, "date": "1999-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6317068865, "date": "1999-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.02875, "date": "1999-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6337999768, "date": "1999-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0210833333, "date": "1999-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6358921905, "date": "1999-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.012, "date": "1999-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6379835277, "date": "1999-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0169166667, "date": "1999-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6400739883, "date": "1999-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0249166667, "date": "1999-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6421635724, "date": "1999-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.0733333333, "date": "1999-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6442522799, "date": "1999-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1114166667, "date": "1999-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6463401108, "date": "1999-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1826666667, "date": "1999-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6484270652, "date": "1999-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.22625, "date": "1999-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6505131431, "date": "1999-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2495, "date": "1999-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6525983444, "date": "1999-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2458333333, "date": "1999-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6546826691, "date": "1999-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2426666667, "date": "1999-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6567661173, "date": "1999-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.244, "date": "1999-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6588486889, "date": "1999-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2485, "date": "1999-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6609303839, "date": "1999-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2455833333, "date": "1999-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6630112024, "date": "1999-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2296666667, "date": "1999-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6650911444, "date": "1999-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2144166667, "date": "1999-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6671702097, "date": "1999-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.21125, "date": "1999-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6692483986, "date": "1999-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2073333333, "date": "1999-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6713257108, "date": "1999-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2195, "date": "1999-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6734021466, "date": "1999-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2113333333, "date": "1999-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6754777057, "date": "1999-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.22, "date": "1999-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6775523883, "date": "1999-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2401666667, "date": "1999-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6796261944, "date": "1999-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2691666667, "date": "1999-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6816991238, "date": "1999-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.29075, "date": "1999-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6837711768, "date": "1999-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2959166667, "date": "1999-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6858423531, "date": "1999-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3089166667, "date": "1999-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.687912653, "date": "1999-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3348333333, "date": "1999-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6899820762, "date": "1999-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.33425, "date": "1999-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6920506229, "date": "1999-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3328333333, "date": "1999-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6941182931, "date": "1999-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3393333333, "date": "1999-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6961850866, "date": "1999-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3453333333, "date": "1999-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.6982510037, "date": "1999-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3605833333, "date": "1999-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7003160442, "date": "1999-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3545, "date": "1999-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7023802081, "date": "1999-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3503333333, "date": "1999-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7044434954, "date": "1999-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3466666667, "date": "1999-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7065059062, "date": "1999-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3353333333, "date": "1999-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7085674405, "date": "1999-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3331666667, "date": "1999-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7106280982, "date": "1999-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3265833333, "date": "1999-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7126878793, "date": "1999-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3271666667, "date": "1999-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7147467839, "date": "1999-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.34325, "date": "1999-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7168048119, "date": "1999-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.35925, "date": "1999-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7188619634, "date": "1999-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3671666667, "date": "1999-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7209182383, "date": "1999-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3674166667, "date": "1999-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7229736366, "date": "1999-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3680833333, "date": "1999-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7250281584, "date": "1999-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3629166667, "date": "1999-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7270818036, "date": "1999-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3658333333, "date": "1999-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7291345723, "date": "1999-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3645, "date": "2000-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7311864644, "date": "2000-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3575833333, "date": "2000-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.73323748, "date": "2000-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3674166667, "date": "2000-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.735287619, "date": "2000-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3995, "date": "2000-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7373368815, "date": "2000-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4033333333, "date": "2000-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7393852674, "date": "2000-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4104166667, "date": "2000-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7414327767, "date": "2000-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4378333333, "date": "2000-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7434794095, "date": "2000-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4835, "date": "2000-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7455251657, "date": "2000-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5021666667, "date": "2000-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7475700454, "date": "2000-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5858333333, "date": "2000-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7496140485, "date": "2000-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6205833333, "date": "2000-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.751657175, "date": "2000-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.62925, "date": "2000-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.753699425, "date": "2000-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.613, "date": "2000-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7557407985, "date": "2000-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6068333333, "date": "2000-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7577812953, "date": "2000-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5824166667, "date": "2000-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7598209157, "date": "2000-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5545, "date": "2000-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7618596594, "date": "2000-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5449166667, "date": "2000-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7638975266, "date": "2000-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.52925, "date": "2000-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7659345173, "date": "2000-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5560833333, "date": "2000-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7679706314, "date": "2000-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5860833333, "date": "2000-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7700058689, "date": "2000-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6116666667, "date": "2000-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7720402299, "date": "2000-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6254166667, "date": "2000-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7740737143, "date": "2000-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6456666667, "date": "2000-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7761063222, "date": "2000-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6994166667, "date": "2000-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7781380535, "date": "2000-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7399166667, "date": "2000-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7801689083, "date": "2000-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7258333333, "date": "2000-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7821988865, "date": "2000-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7075, "date": "2000-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7842279881, "date": "2000-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6853333333, "date": "2000-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7862562132, "date": "2000-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6488333333, "date": "2000-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7882835617, "date": "2000-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6263333333, "date": "2000-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7903100337, "date": "2000-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5839166667, "date": "2000-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7923356291, "date": "2000-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.573, "date": "2000-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.794360348, "date": "2000-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5595, "date": "2000-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.7963841903, "date": "2000-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5729166667, "date": "2000-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.798407156, "date": "2000-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5854166667, "date": "2000-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8004292452, "date": "2000-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6298333333, "date": "2000-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8024504578, "date": "2000-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6595833333, "date": "2000-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8044707939, "date": "2000-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6579166667, "date": "2000-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8064902534, "date": "2000-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6485, "date": "2000-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8085088364, "date": "2000-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6289166667, "date": "2000-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8105265428, "date": "2000-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.60925, "date": "2000-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8125433726, "date": "2000-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6384166667, "date": "2000-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8145593259, "date": "2000-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6444166667, "date": "2000-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8165744027, "date": "2000-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6425833333, "date": "2000-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8185886028, "date": "2000-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.62675, "date": "2000-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8206019265, "date": "2000-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6224166667, "date": "2000-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8226143735, "date": "2000-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6113333333, "date": "2000-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.824625944, "date": "2000-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6089166667, "date": "2000-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.826636638, "date": "2000-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.58775, "date": "2000-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8286464554, "date": "2000-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5559166667, "date": "2000-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8306553962, "date": "2000-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5295833333, "date": "2000-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8326634605, "date": "2000-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5176666667, "date": "2000-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8346706482, "date": "2000-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5119166667, "date": "2001-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8366769594, "date": "2001-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5254166667, "date": "2001-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.838682394, "date": "2001-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5641666667, "date": "2001-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.840686952, "date": "2001-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.562, "date": "2001-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8426906335, "date": "2001-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.551, "date": "2001-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8446934384, "date": "2001-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5389166667, "date": "2001-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8466953668, "date": "2001-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5669166667, "date": "2001-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8486964187, "date": "2001-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5478333333, "date": "2001-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8506965939, "date": "2001-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.532, "date": "2001-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8526958926, "date": "2001-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5219166667, "date": "2001-03-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8546943148, "date": "2001-03-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5171666667, "date": "2001-03-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8566918604, "date": "2001-03-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5091666667, "date": "2001-03-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8586885294, "date": "2001-03-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.50775, "date": "2001-03-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8606843219, "date": "2001-03-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.543, "date": "2001-04-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8626792378, "date": "2001-04-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5984166667, "date": "2001-04-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8646732772, "date": "2001-04-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6590833333, "date": "2001-04-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.86666644, "date": "2001-04-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7113333333, "date": "2001-04-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8686587262, "date": "2001-04-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7231666667, "date": "2001-04-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8706501359, "date": "2001-04-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7915, "date": "2001-05-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8726406691, "date": "2001-05-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8036666667, "date": "2001-05-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8746303257, "date": "2001-05-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7833333333, "date": "2001-05-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8766191057, "date": "2001-05-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7961666667, "date": "2001-05-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8786070092, "date": "2001-05-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7734166667, "date": "2001-06-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8805940361, "date": "2001-06-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7493333333, "date": "2001-06-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8825801864, "date": "2001-06-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.709, "date": "2001-06-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8845654602, "date": "2001-06-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6539166667, "date": "2001-06-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8865498575, "date": "2001-06-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.594, "date": "2001-07-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8885333782, "date": "2001-07-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5575, "date": "2001-07-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8905160223, "date": "2001-07-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.531, "date": "2001-07-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8924977899, "date": "2001-07-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.509, "date": "2001-07-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8944786809, "date": "2001-07-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4925, "date": "2001-07-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8964586953, "date": "2001-07-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4800833333, "date": "2001-08-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.8984378332, "date": "2001-08-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.48925, "date": "2001-08-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9004160946, "date": "2001-08-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5150833333, "date": "2001-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9023934794, "date": "2001-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5595833333, "date": "2001-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9043699876, "date": "2001-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6145833333, "date": "2001-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9063456193, "date": "2001-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6018333333, "date": "2001-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9083203744, "date": "2001-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6029166667, "date": "2001-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9102942529, "date": "2001-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.56675, "date": "2001-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9122672549, "date": "2001-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5041666667, "date": "2001-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9142393804, "date": "2001-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.44575, "date": "2001-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9162106293, "date": "2001-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4055, "date": "2001-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9181810016, "date": "2001-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3616666667, "date": "2001-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9201504974, "date": "2001-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3309166667, "date": "2001-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9221191166, "date": "2001-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3013333333, "date": "2001-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9240868593, "date": "2001-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2753333333, "date": "2001-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9260537254, "date": "2001-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2565, "date": "2001-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9280197149, "date": "2001-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.217, "date": "2001-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9299848279, "date": "2001-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.19575, "date": "2001-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9319490643, "date": "2001-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1815833333, "date": "2001-12-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9339124242, "date": "2001-12-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1470833333, "date": "2001-12-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9358749075, "date": "2001-12-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1550833333, "date": "2001-12-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9378365143, "date": "2001-12-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.175, "date": "2001-12-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9397972445, "date": "2001-12-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1911666667, "date": "2002-01-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9417570982, "date": "2002-01-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1951666667, "date": "2002-01-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9437160753, "date": "2002-01-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.191, "date": "2002-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9456741758, "date": "2002-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.18775, "date": "2002-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9476313998, "date": "2002-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2014166667, "date": "2002-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9495877472, "date": "2002-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.1946666667, "date": "2002-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9515432181, "date": "2002-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2049166667, "date": "2002-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9534978124, "date": "2002-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.2063333333, "date": "2002-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9554515301, "date": "2002-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.23225, "date": "2002-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9574043713, "date": "2002-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.3095, "date": "2002-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.959356336, "date": "2002-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.37525, "date": "2002-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.961307424, "date": "2002-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4305, "date": "2002-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9632576356, "date": "2002-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4621666667, "date": "2002-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9652069705, "date": "2002-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5031666667, "date": "2002-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9671554289, "date": "2002-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4981666667, "date": "2002-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9691030108, "date": "2002-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4981666667, "date": "2002-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9710497161, "date": "2002-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4885, "date": "2002-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9729955448, "date": "2002-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.49, "date": "2002-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.974940497, "date": "2002-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4839166667, "date": "2002-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9768845726, "date": "2002-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4909166667, "date": "2002-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9788277717, "date": "2002-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4819166667, "date": "2002-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9807700942, "date": "2002-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4848333333, "date": "2002-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9827115402, "date": "2002-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.47, "date": "2002-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9846521096, "date": "2002-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.473, "date": "2002-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9865918024, "date": "2002-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.47825, "date": "2002-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9885306187, "date": "2002-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4840833333, "date": "2002-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9904685584, "date": "2002-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4753333333, "date": "2002-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9924056216, "date": "2002-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4848333333, "date": "2002-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9943418082, "date": "2002-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4994166667, "date": "2002-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9962771183, "date": "2002-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4964166667, "date": "2002-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 1.9982115518, "date": "2002-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.48975, "date": "2002-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0001451087, "date": "2002-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.487, "date": "2002-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0020777891, "date": "2002-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4855833333, "date": "2002-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0040095929, "date": "2002-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.49675, "date": "2002-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0059405202, "date": "2002-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.489, "date": "2002-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0078705709, "date": "2002-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4896666667, "date": "2002-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0097997451, "date": "2002-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4935, "date": "2002-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0117280427, "date": "2002-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4884166667, "date": "2002-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0136554637, "date": "2002-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5038333333, "date": "2002-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0155820082, "date": "2002-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.526, "date": "2002-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0175076761, "date": "2002-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5265, "date": "2002-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0194324675, "date": "2002-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5418333333, "date": "2002-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0213563823, "date": "2002-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.53, "date": "2002-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0232794206, "date": "2002-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5349166667, "date": "2002-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0252015823, "date": "2002-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5301666667, "date": "2002-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0271228675, "date": "2002-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5036666667, "date": "2002-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.029043276, "date": "2002-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4781666667, "date": "2002-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0309628081, "date": "2002-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.4655833333, "date": "2002-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0328814636, "date": "2002-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.46025, "date": "2002-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0347992425, "date": "2002-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.462, "date": "2002-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0367161448, "date": "2002-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.49375, "date": "2002-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0386321706, "date": "2002-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5318333333, "date": "2002-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0405473199, "date": "2002-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5385, "date": "2003-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0424615926, "date": "2003-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.54725, "date": "2003-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0443749887, "date": "2003-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5548333333, "date": "2003-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0462875083, "date": "2003-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5669166667, "date": "2003-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0481991513, "date": "2003-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6178333333, "date": "2003-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0501099178, "date": "2003-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6974166667, "date": "2003-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0520198077, "date": "2003-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.75, "date": "2003-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.053928821, "date": "2003-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7515833333, "date": "2003-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0558369578, "date": "2003-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7805833333, "date": "2003-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0577442181, "date": "2003-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8073333333, "date": "2003-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0596506018, "date": "2003-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8255833333, "date": "2003-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0615561089, "date": "2003-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7935, "date": "2003-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0634607394, "date": "2003-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7578333333, "date": "2003-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0653644935, "date": "2003-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.739, "date": "2003-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0672673709, "date": "2003-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7065, "date": "2003-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0691693718, "date": "2003-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.683, "date": "2003-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0710704961, "date": "2003-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6653333333, "date": "2003-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0729707439, "date": "2003-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6220833333, "date": "2003-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0748701152, "date": "2003-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5969166667, "date": "2003-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0767686098, "date": "2003-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.597, "date": "2003-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0786662279, "date": "2003-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5835833333, "date": "2003-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0805629695, "date": "2003-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5686666667, "date": "2003-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0824588345, "date": "2003-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.57975, "date": "2003-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0843538229, "date": "2003-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6100833333, "date": "2003-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0862479348, "date": "2003-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.59225, "date": "2003-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0881411701, "date": "2003-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5835833333, "date": "2003-06-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0900335289, "date": "2003-06-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5844166667, "date": "2003-07-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0919250111, "date": "2003-07-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6138333333, "date": "2003-07-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0938156168, "date": "2003-07-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.616, "date": "2003-07-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0957053459, "date": "2003-07-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.60775, "date": "2003-07-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0975941984, "date": "2003-07-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6225833333, "date": "2003-08-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.0994821744, "date": "2003-08-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6566666667, "date": "2003-08-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1013692738, "date": "2003-08-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7179166667, "date": "2003-08-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1032554967, "date": "2003-08-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8441666667, "date": "2003-08-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.105140843, "date": "2003-08-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8455, "date": "2003-09-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1070253128, "date": "2003-09-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.82, "date": "2003-09-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.108908906, "date": "2003-09-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.79925, "date": "2003-09-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1107916226, "date": "2003-09-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.749, "date": "2003-09-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1126734627, "date": "2003-09-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7005833333, "date": "2003-09-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1145544263, "date": "2003-09-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.68025, "date": "2003-10-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1164345132, "date": "2003-10-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6696666667, "date": "2003-10-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1183137237, "date": "2003-10-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6673333333, "date": "2003-10-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1201920575, "date": "2003-10-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6398333333, "date": "2003-10-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1220695148, "date": "2003-10-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6315833333, "date": "2003-11-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1239460956, "date": "2003-11-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6018333333, "date": "2003-11-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1258217998, "date": "2003-11-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5941666667, "date": "2003-11-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1276966274, "date": "2003-11-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.60675, "date": "2003-11-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1295705785, "date": "2003-11-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5871666667, "date": "2003-12-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.131443653, "date": "2003-12-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5726666667, "date": "2003-12-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1333158509, "date": "2003-12-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.56125, "date": "2003-12-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1351871724, "date": "2003-12-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5781666667, "date": "2003-12-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1370576172, "date": "2003-12-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5713333333, "date": "2003-12-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1389271855, "date": "2003-12-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.5993333333, "date": "2004-01-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1407958772, "date": "2004-01-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6494166667, "date": "2004-01-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1426636924, "date": "2004-01-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.6829166667, "date": "2004-01-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.144530631, "date": "2004-01-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.711, "date": "2004-01-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1463966931, "date": "2004-01-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7094166667, "date": "2004-02-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1482618786, "date": "2004-02-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7310833333, "date": "2004-02-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1501261876, "date": "2004-02-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.74075, "date": "2004-02-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1519896199, "date": "2004-02-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7856666667, "date": "2004-02-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1538521758, "date": "2004-02-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8166666667, "date": "2004-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1557138551, "date": "2004-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8374166667, "date": "2004-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1575746578, "date": "2004-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8249166667, "date": "2004-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.159434584, "date": "2004-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8415, "date": "2004-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1612936336, "date": "2004-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8549166667, "date": "2004-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1631518066, "date": "2004-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8768333333, "date": "2004-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1650091031, "date": "2004-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8833333333, "date": "2004-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1668655231, "date": "2004-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.90625, "date": "2004-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1687210664, "date": "2004-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9049166667, "date": "2004-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1705757333, "date": "2004-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.93375, "date": "2004-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1724295235, "date": "2004-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0290833333, "date": "2004-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1742824372, "date": "2004-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1054166667, "date": "2004-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1761344744, "date": "2004-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1555, "date": "2004-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.177985635, "date": "2004-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1475833333, "date": "2004-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.179835919, "date": "2004-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1325, "date": "2004-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1816853265, "date": "2004-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0908333333, "date": "2004-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1835338574, "date": "2004-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.04575, "date": "2004-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1853815118, "date": "2004-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0275, "date": "2004-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1872282896, "date": "2004-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0013333333, "date": "2004-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1890741909, "date": "2004-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0170833333, "date": "2004-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1909192156, "date": "2004-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.026, "date": "2004-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1927633637, "date": "2004-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.004, "date": "2004-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1946066353, "date": "2004-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9855, "date": "2004-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1964490303, "date": "2004-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.974, "date": "2004-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.1982905488, "date": "2004-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9690833333, "date": "2004-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2001311907, "date": "2004-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9764166667, "date": "2004-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2019709561, "date": "2004-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9636666667, "date": "2004-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2038098449, "date": "2004-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9471666667, "date": "2004-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2056478571, "date": "2004-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9415, "date": "2004-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2074849928, "date": "2004-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9576666667, "date": "2004-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.209321252, "date": "2004-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.00625, "date": "2004-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2111566345, "date": "2004-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.03225, "date": "2004-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2129911405, "date": "2004-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.09025, "date": "2004-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.21482477, "date": "2004-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.135, "date": "2004-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2166575229, "date": "2004-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1330833333, "date": "2004-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2184893993, "date": "2004-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1336666667, "date": "2004-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.220320399, "date": "2004-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1045833333, "date": "2004-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2221505223, "date": "2004-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0746666667, "date": "2004-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.223979769, "date": "2004-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0511666667, "date": "2004-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2258081391, "date": "2004-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.04525, "date": "2004-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2276356326, "date": "2004-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0135833333, "date": "2004-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2294622496, "date": "2004-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.95375, "date": "2004-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2312879901, "date": "2004-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.918, "date": "2004-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.233112854, "date": "2004-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8945833333, "date": "2004-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2349368413, "date": "2004-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8795833333, "date": "2005-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2367599521, "date": "2005-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8873333333, "date": "2005-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2385821863, "date": "2005-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.91075, "date": "2005-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.240403544, "date": "2005-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9419166667, "date": "2005-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2422240251, "date": "2005-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.999, "date": "2005-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2440436296, "date": "2005-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9995, "date": "2005-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2458623576, "date": "2005-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.99025, "date": "2005-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2476802091, "date": "2005-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9981666667, "date": "2005-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.249497184, "date": "2005-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0178333333, "date": "2005-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2513132823, "date": "2005-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0865, "date": "2005-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.253128504, "date": "2005-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1434166667, "date": "2005-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2549428493, "date": "2005-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1928333333, "date": "2005-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2567563179, "date": "2005-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.239, "date": "2005-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.25856891, "date": "2005-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3041666667, "date": "2005-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2603806255, "date": "2005-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3708333333, "date": "2005-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2621914645, "date": "2005-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3345833333, "date": "2005-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2640014269, "date": "2005-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3335, "date": "2005-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2658105128, "date": "2005-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3328333333, "date": "2005-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2676187221, "date": "2005-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2903333333, "date": "2005-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2694260549, "date": "2005-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.26375, "date": "2005-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2712325111, "date": "2005-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2278333333, "date": "2005-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2730380907, "date": "2005-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1991666667, "date": "2005-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2748427938, "date": "2005-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.21325, "date": "2005-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2766466203, "date": "2005-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2250833333, "date": "2005-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2784495703, "date": "2005-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2561666667, "date": "2005-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2802516437, "date": "2005-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3065, "date": "2005-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2820528406, "date": "2005-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3208333333, "date": "2005-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2838531609, "date": "2005-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4215, "date": "2005-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2856526046, "date": "2005-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4158333333, "date": "2005-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2874511718, "date": "2005-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.394, "date": "2005-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2892488624, "date": "2005-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3951666667, "date": "2005-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2910456765, "date": "2005-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4658333333, "date": "2005-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.292841614, "date": "2005-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6425, "date": "2005-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.294636675, "date": "2005-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7038333333, "date": "2005-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2964308594, "date": "2005-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7031666667, "date": "2005-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.2982241672, "date": "2005-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.17175, "date": "2005-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3000165985, "date": "2005-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0609166667, "date": "2005-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3018081532, "date": "2005-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.90075, "date": "2005-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3035988314, "date": "2005-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9080833333, "date": "2005-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.305388633, "date": "2005-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0210833333, "date": "2005-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3071775581, "date": "2005-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9484166667, "date": "2005-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3089656066, "date": "2005-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.832, "date": "2005-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3107527785, "date": "2005-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.71075, "date": "2005-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3125390739, "date": "2005-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5878333333, "date": "2005-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3143244928, "date": "2005-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4826666667, "date": "2005-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.316109035, "date": "2005-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.39925, "date": "2005-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3178927008, "date": "2005-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3025833333, "date": "2005-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3196754899, "date": "2005-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2535833333, "date": "2005-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3214574025, "date": "2005-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.24, "date": "2005-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3232384386, "date": "2005-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2729166667, "date": "2005-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3250185981, "date": "2005-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2985833333, "date": "2005-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.326797881, "date": "2005-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2854166667, "date": "2005-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3285762874, "date": "2005-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.32275, "date": "2006-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3303538172, "date": "2006-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4150833333, "date": "2006-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3321304705, "date": "2006-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4175, "date": "2006-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3339062472, "date": "2006-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4330833333, "date": "2006-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3356811473, "date": "2006-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4538333333, "date": "2006-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3374551709, "date": "2006-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4425, "date": "2006-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3392283179, "date": "2006-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3883333333, "date": "2006-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3410005884, "date": "2006-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.34125, "date": "2006-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3427719823, "date": "2006-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3454166667, "date": "2006-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3445424997, "date": "2006-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4161666667, "date": "2006-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3463121405, "date": "2006-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4521666667, "date": "2006-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3480809048, "date": "2006-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5919166667, "date": "2006-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3498487925, "date": "2006-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.58975, "date": "2006-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3516158036, "date": "2006-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.679, "date": "2006-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3533819382, "date": "2006-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7751666667, "date": "2006-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3551471962, "date": "2006-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.87575, "date": "2006-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3569115777, "date": "2006-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.01425, "date": "2006-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3586750826, "date": "2006-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0286666667, "date": "2006-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3604377109, "date": "2006-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.026, "date": "2006-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3621994627, "date": "2006-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0613333333, "date": "2006-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.363960338, "date": "2006-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0135833333, "date": "2006-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3657203367, "date": "2006-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.98525, "date": "2006-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3674794588, "date": "2006-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0086666667, "date": "2006-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3692377044, "date": "2006-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0198333333, "date": "2006-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3709950734, "date": "2006-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9880833333, "date": "2006-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3727515658, "date": "2006-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9829166667, "date": "2006-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3745071817, "date": "2006-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0421666667, "date": "2006-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3762619211, "date": "2006-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0805833333, "date": "2006-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3780157839, "date": "2006-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.09625, "date": "2006-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3797687701, "date": "2006-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.10925, "date": "2006-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3815208798, "date": "2006-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1105833333, "date": "2006-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3832721129, "date": "2006-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1380833333, "date": "2006-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3850224694, "date": "2006-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1065833333, "date": "2006-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3867719494, "date": "2006-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0330833333, "date": "2006-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3885205529, "date": "2006-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9561666667, "date": "2006-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3902682798, "date": "2006-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8425, "date": "2006-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3920151301, "date": "2006-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.73825, "date": "2006-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3937611039, "date": "2006-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6185, "date": "2006-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3955062011, "date": "2006-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4983333333, "date": "2006-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3972504217, "date": "2006-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4245, "date": "2006-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.3989937658, "date": "2006-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.37075, "date": "2006-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4007362334, "date": "2006-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3316666667, "date": "2006-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4024778244, "date": "2006-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3078333333, "date": "2006-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4042185388, "date": "2006-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3133333333, "date": "2006-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4059583767, "date": "2006-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2950833333, "date": "2006-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.407697338, "date": "2006-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3283333333, "date": "2006-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4094354228, "date": "2006-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3375833333, "date": "2006-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.411172631, "date": "2006-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3456666667, "date": "2006-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4129089626, "date": "2006-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3929166667, "date": "2006-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4146444177, "date": "2006-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.39325, "date": "2006-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4163789963, "date": "2006-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4204166667, "date": "2006-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4181126982, "date": "2006-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4443333333, "date": "2006-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4198455236, "date": "2006-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4400833333, "date": "2007-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4215774725, "date": "2007-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4170833333, "date": "2007-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4233085448, "date": "2007-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3470833333, "date": "2007-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4250387406, "date": "2007-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.285, "date": "2007-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4267680598, "date": "2007-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2755, "date": "2007-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4284965024, "date": "2007-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.296, "date": "2007-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4302240685, "date": "2007-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3460833333, "date": "2007-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.431950758, "date": "2007-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3995833333, "date": "2007-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.433676571, "date": "2007-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4864166667, "date": "2007-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4354015074, "date": "2007-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6093333333, "date": "2007-03-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4371255672, "date": "2007-03-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6698333333, "date": "2007-03-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4388487505, "date": "2007-03-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6906666667, "date": "2007-03-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4405710573, "date": "2007-03-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7228333333, "date": "2007-03-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4422924874, "date": "2007-03-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8213333333, "date": "2007-04-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4440130411, "date": "2007-04-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9113333333, "date": "2007-04-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4457327181, "date": "2007-04-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9845833333, "date": "2007-04-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4474515186, "date": "2007-04-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9815833333, "date": "2007-04-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4491694426, "date": "2007-04-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0775833333, "date": "2007-04-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.45088649, "date": "2007-04-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1566666667, "date": "2007-05-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4526026608, "date": "2007-05-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1949166667, "date": "2007-05-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4543179551, "date": "2007-05-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2998333333, "date": "2007-05-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4560323728, "date": "2007-05-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2950833333, "date": "2007-05-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.457745914, "date": "2007-05-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2505, "date": "2007-06-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4594585786, "date": "2007-06-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.17925, "date": "2007-06-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4611703667, "date": "2007-06-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1141666667, "date": "2007-06-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4628812782, "date": "2007-06-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0856666667, "date": "2007-06-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4645913131, "date": "2007-06-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0596666667, "date": "2007-07-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4663004715, "date": "2007-07-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0726666667, "date": "2007-07-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4680087533, "date": "2007-07-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1346666667, "date": "2007-07-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4697161586, "date": "2007-07-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0573333333, "date": "2007-07-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4714226873, "date": "2007-07-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9830833333, "date": "2007-07-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4731283395, "date": "2007-07-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9445, "date": "2007-08-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4748331151, "date": "2007-08-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8753333333, "date": "2007-08-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4765370141, "date": "2007-08-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8784166667, "date": "2007-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4782400366, "date": "2007-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8395833333, "date": "2007-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4799421825, "date": "2007-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8755833333, "date": "2007-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4816434519, "date": "2007-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8976666667, "date": "2007-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4833438447, "date": "2007-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8786666667, "date": "2007-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.485043361, "date": "2007-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9046666667, "date": "2007-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4867420007, "date": "2007-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8880833333, "date": "2007-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4884397638, "date": "2007-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.87325, "date": "2007-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4901366504, "date": "2007-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.86825, "date": "2007-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4918326605, "date": "2007-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9268333333, "date": "2007-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4935277939, "date": "2007-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.97275, "date": "2007-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4952220509, "date": "2007-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1065, "date": "2007-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.4969154312, "date": "2007-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2076666667, "date": "2007-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.498607935, "date": "2007-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2023333333, "date": "2007-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5002995623, "date": "2007-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2025833333, "date": "2007-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.501990313, "date": "2007-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.17275, "date": "2007-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5036801871, "date": "2007-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.11825, "date": "2007-12-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5053691847, "date": "2007-12-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1125, "date": "2007-12-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5070573057, "date": "2007-12-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0951666667, "date": "2007-12-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5087445502, "date": "2007-12-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1611666667, "date": "2007-12-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5104309181, "date": "2007-12-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.214, "date": "2008-01-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5121164094, "date": "2008-01-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1775833333, "date": "2008-01-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5138010242, "date": "2008-01-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1298333333, "date": "2008-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5154847624, "date": "2008-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0889166667, "date": "2008-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5171676241, "date": "2008-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.08375, "date": "2008-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5188496092, "date": "2008-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0645, "date": "2008-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5205307178, "date": "2008-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1416666667, "date": "2008-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5222109498, "date": "2008-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2320833333, "date": "2008-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5238903053, "date": "2008-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2688333333, "date": "2008-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5255687842, "date": "2008-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3283333333, "date": "2008-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5272463865, "date": "2008-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3881666667, "date": "2008-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5289231123, "date": "2008-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3705, "date": "2008-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5305989615, "date": "2008-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3976666667, "date": "2008-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5322739342, "date": "2008-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4386666667, "date": "2008-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5339480303, "date": "2008-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4974166667, "date": "2008-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5356212498, "date": "2008-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.618, "date": "2008-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5372935928, "date": "2008-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7129166667, "date": "2008-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5389650593, "date": "2008-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.72475, "date": "2008-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5406356491, "date": "2008-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8268333333, "date": "2008-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5423053625, "date": "2008-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8965, "date": "2008-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5439741992, "date": "2008-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0405833333, "date": "2008-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5456421595, "date": "2008-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0870833333, "date": "2008-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5473092431, "date": "2008-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1576666667, "date": "2008-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5489754502, "date": "2008-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2085, "date": "2008-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5506407808, "date": "2008-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2068333333, "date": "2008-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5523052347, "date": "2008-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2181666667, "date": "2008-06-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5539688122, "date": "2008-06-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2355833333, "date": "2008-07-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.555631513, "date": "2008-07-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2320833333, "date": "2008-07-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5572933373, "date": "2008-07-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1891666667, "date": "2008-07-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5589542851, "date": "2008-07-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0839166667, "date": "2008-07-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5606143563, "date": "2008-07-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0065833333, "date": "2008-08-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5622735509, "date": "2008-08-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9318333333, "date": "2008-08-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.563931869, "date": "2008-08-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8578333333, "date": "2008-08-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5655893106, "date": "2008-08-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7986666667, "date": "2008-08-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5672458755, "date": "2008-08-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7900833333, "date": "2008-09-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.568901564, "date": "2008-09-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7563333333, "date": "2008-09-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5705563758, "date": "2008-09-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9248333333, "date": "2008-09-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5722103111, "date": "2008-09-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.81875, "date": "2008-09-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5738633699, "date": "2008-09-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.73675, "date": "2008-09-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5755155521, "date": "2008-09-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.598, "date": "2008-10-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5771668577, "date": "2008-10-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2870833333, "date": "2008-10-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5788172868, "date": "2008-10-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0535, "date": "2008-10-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5804668393, "date": "2008-10-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.801, "date": "2008-10-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5821155152, "date": "2008-10-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5434166667, "date": "2008-11-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5837633146, "date": "2008-11-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3621666667, "date": "2008-11-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5854102375, "date": "2008-11-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2063333333, "date": "2008-11-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5870562838, "date": "2008-11-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0235, "date": "2008-11-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5887014535, "date": "2008-11-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9355833333, "date": "2008-12-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5903457467, "date": "2008-12-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8225833333, "date": "2008-12-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5919891633, "date": "2008-12-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7749166667, "date": "2008-12-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5936317034, "date": "2008-12-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7714166667, "date": "2008-12-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5952733669, "date": "2008-12-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7331666667, "date": "2008-12-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5969141538, "date": "2008-12-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.7925, "date": "2009-01-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.5985540642, "date": "2009-01-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.8889166667, "date": "2009-01-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6001930981, "date": "2009-01-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9520833333, "date": "2009-01-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6018312553, "date": "2009-01-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9475833333, "date": "2009-01-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6034685361, "date": "2009-01-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0001666667, "date": "2009-02-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6051049402, "date": "2009-02-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0380833333, "date": "2009-02-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6067404678, "date": "2009-02-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0774166667, "date": "2009-02-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6083751189, "date": "2009-02-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.029, "date": "2009-02-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6100088934, "date": "2009-02-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.04775, "date": "2009-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6116417913, "date": "2009-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0509166667, "date": "2009-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6132738127, "date": "2009-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0240833333, "date": "2009-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6149049575, "date": "2009-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0690833333, "date": "2009-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6165352258, "date": "2009-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1516666667, "date": "2009-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6181646175, "date": "2009-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.14875, "date": "2009-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6197931326, "date": "2009-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1625833333, "date": "2009-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6214207712, "date": "2009-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1716666667, "date": "2009-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6230475333, "date": "2009-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1639166667, "date": "2009-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6246734188, "date": "2009-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1895, "date": "2009-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6262984277, "date": "2009-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3448333333, "date": "2009-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6279225601, "date": "2009-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.418, "date": "2009-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6295458159, "date": "2009-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5395, "date": "2009-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6311681951, "date": "2009-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.625, "date": "2009-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6327896978, "date": "2009-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.727, "date": "2009-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.634410324, "date": "2009-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7804166667, "date": "2009-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6360300735, "date": "2009-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8056666667, "date": "2009-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6376489466, "date": "2009-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7625833333, "date": "2009-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.639266943, "date": "2009-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7340833333, "date": "2009-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.640884063, "date": "2009-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6543333333, "date": "2009-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6425003063, "date": "2009-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5905833333, "date": "2009-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6441156731, "date": "2009-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6231666667, "date": "2009-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6457301634, "date": "2009-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6755833333, "date": "2009-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.647343777, "date": "2009-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.76725, "date": "2009-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6489565142, "date": "2009-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7614166667, "date": "2009-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6505683747, "date": "2009-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.75225, "date": "2009-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6521793588, "date": "2009-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7399166667, "date": "2009-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6537894662, "date": "2009-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7181666667, "date": "2009-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6553986971, "date": "2009-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7104166667, "date": "2009-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6570070515, "date": "2009-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6855833333, "date": "2009-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6586145293, "date": "2009-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6331666667, "date": "2009-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6602211305, "date": "2009-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6019166667, "date": "2009-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6618268552, "date": "2009-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6148333333, "date": "2009-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6634317033, "date": "2009-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6908333333, "date": "2009-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6650356748, "date": "2009-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7878333333, "date": "2009-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6666387698, "date": "2009-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.80825, "date": "2009-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6682409883, "date": "2009-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.78425, "date": "2009-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6698423302, "date": "2009-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7516666667, "date": "2009-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6714427955, "date": "2009-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7580833333, "date": "2009-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6730423843, "date": "2009-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.74875, "date": "2009-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6746410965, "date": "2009-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7535833333, "date": "2009-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6762389322, "date": "2009-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.72225, "date": "2009-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6778358913, "date": "2009-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7128333333, "date": "2009-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6794319738, "date": "2009-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7283333333, "date": "2009-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6810271798, "date": "2009-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7819166667, "date": "2010-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6826215093, "date": "2010-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8648333333, "date": "2010-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6842149621, "date": "2010-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8563333333, "date": "2010-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6858075385, "date": "2010-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8261666667, "date": "2010-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6873992382, "date": "2010-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.784, "date": "2010-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6889900614, "date": "2010-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7740833333, "date": "2010-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6905800081, "date": "2010-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7338333333, "date": "2010-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6921690782, "date": "2010-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7724166667, "date": "2010-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6937572717, "date": "2010-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8181666667, "date": "2010-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6953445887, "date": "2010-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.864, "date": "2010-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.6969310291, "date": "2010-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8996666667, "date": "2010-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.698516593, "date": "2010-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.92825, "date": "2010-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7001012803, "date": "2010-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.91175, "date": "2010-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.701685091, "date": "2010-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.93575, "date": "2010-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7032680252, "date": "2010-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9665833333, "date": "2010-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7048500829, "date": "2010-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9691666667, "date": "2010-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.706431264, "date": "2010-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9620833333, "date": "2010-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7080115685, "date": "2010-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0093333333, "date": "2010-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7095909965, "date": "2010-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0193333333, "date": "2010-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7111695479, "date": "2010-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.983, "date": "2010-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7127472227, "date": "2010-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9106666667, "date": "2010-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.714324021, "date": "2010-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.85425, "date": "2010-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7158999428, "date": "2010-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8503333333, "date": "2010-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7174749879, "date": "2010-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8255, "date": "2010-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7190491566, "date": "2010-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8619166667, "date": "2010-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7206224486, "date": "2010-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.87475, "date": "2010-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7221948642, "date": "2010-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8473333333, "date": "2010-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7237664031, "date": "2010-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.84, "date": "2010-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7253370655, "date": "2010-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8430833333, "date": "2010-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7269068514, "date": "2010-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8665, "date": "2010-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7284757606, "date": "2010-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8558333333, "date": "2010-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7300437934, "date": "2010-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8999166667, "date": "2010-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7316109495, "date": "2010-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.86625, "date": "2010-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7331772292, "date": "2010-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8288333333, "date": "2010-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7347426322, "date": "2010-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8029166667, "date": "2010-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7363071587, "date": "2010-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7980833333, "date": "2010-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7378708087, "date": "2010-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8306666667, "date": "2010-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.739433582, "date": "2010-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.83275, "date": "2010-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7409954789, "date": "2010-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8078333333, "date": "2010-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7425564992, "date": "2010-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8433333333, "date": "2010-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7441166429, "date": "2010-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.92875, "date": "2010-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.74567591, "date": "2010-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9503333333, "date": "2010-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7472343006, "date": "2010-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9365, "date": "2010-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7487918147, "date": "2010-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9285833333, "date": "2010-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7503484522, "date": "2010-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9778333333, "date": "2010-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7519042131, "date": "2010-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0080833333, "date": "2010-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7534590975, "date": "2010-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3, "date": "2010-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7550131053, "date": "2010-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9825833333, "date": "2010-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7565662366, "date": "2010-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0786666667, "date": "2010-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7581184913, "date": "2010-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1004166667, "date": "2010-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7596698694, "date": "2010-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.10525, "date": "2010-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.761220371, "date": "2010-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1688333333, "date": "2010-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.762769996, "date": "2010-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1865, "date": "2011-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7643187445, "date": "2011-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2041666667, "date": "2011-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7658666164, "date": "2011-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2201666667, "date": "2011-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7674136118, "date": "2011-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2259166667, "date": "2011-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7689597306, "date": "2011-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2195, "date": "2011-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7705049729, "date": "2011-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2478333333, "date": "2011-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7720493386, "date": "2011-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2588333333, "date": "2011-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7735928277, "date": "2011-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3095, "date": "2011-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7751354403, "date": "2011-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4985833333, "date": "2011-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7766771763, "date": "2011-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6375833333, "date": "2011-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7782180358, "date": "2011-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6886666667, "date": "2011-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7797580187, "date": "2011-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6863333333, "date": "2011-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.781297125, "date": "2011-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7195, "date": "2011-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7828353548, "date": "2011-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8025, "date": "2011-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7843727081, "date": "2011-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.909, "date": "2011-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7859091847, "date": "2011-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9649166667, "date": "2011-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7874447849, "date": "2011-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.002, "date": "2011-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7889795084, "date": "2011-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0819166667, "date": "2011-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7905133554, "date": "2011-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.08775, "date": "2011-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7920463259, "date": "2011-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0836666667, "date": "2011-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7935784198, "date": "2011-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9784166667, "date": "2011-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7951096371, "date": "2011-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.91875, "date": "2011-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7966399779, "date": "2011-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8975, "date": "2011-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7981694421, "date": "2011-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8353333333, "date": "2011-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.7996980298, "date": "2011-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7805833333, "date": "2011-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8012257409, "date": "2011-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7065833333, "date": "2011-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8027525755, "date": "2011-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7025, "date": "2011-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8042785335, "date": "2011-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7580833333, "date": "2011-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8058036149, "date": "2011-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7989166667, "date": "2011-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8073278198, "date": "2011-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8170833333, "date": "2011-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8088511481, "date": "2011-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8271666667, "date": "2011-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8103735999, "date": "2011-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.79175, "date": "2011-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8118951751, "date": "2011-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7258333333, "date": "2011-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8134158738, "date": "2011-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.70175, "date": "2011-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8149356959, "date": "2011-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7428333333, "date": "2011-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8164546414, "date": "2011-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7889166667, "date": "2011-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8179727104, "date": "2011-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7779166667, "date": "2011-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8194899029, "date": "2011-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7255, "date": "2011-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8210062187, "date": "2011-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6406666667, "date": "2011-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.822521658, "date": "2011-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5676666667, "date": "2011-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8240362208, "date": "2011-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5489166667, "date": "2011-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.825549907, "date": "2011-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6025, "date": "2011-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8270627167, "date": "2011-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5915, "date": "2011-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8285746497, "date": "2011-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5828333333, "date": "2011-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8300857063, "date": "2011-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5561666667, "date": "2011-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8315958862, "date": "2011-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.56775, "date": "2011-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8331051897, "date": "2011-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5034166667, "date": "2011-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8346136165, "date": "2011-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.447, "date": "2011-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8361211668, "date": "2011-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4248333333, "date": "2011-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8376278406, "date": "2011-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4170833333, "date": "2011-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8391336378, "date": "2011-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3644166667, "date": "2011-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8406385584, "date": "2011-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3875, "date": "2011-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8421426025, "date": "2011-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.429, "date": "2012-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.84364577, "date": "2012-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.513, "date": "2012-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.845148061, "date": "2012-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.52275, "date": "2012-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8466494754, "date": "2012-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5246666667, "date": "2012-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8481500132, "date": "2012-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5743333333, "date": "2012-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8496496745, "date": "2012-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.61375, "date": "2012-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8511484593, "date": "2012-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6596666667, "date": "2012-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8526463674, "date": "2012-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.732, "date": "2012-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8541433991, "date": "2012-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8614166667, "date": "2012-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8556395541, "date": "2012-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9273333333, "date": "2012-03-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8571348326, "date": "2012-03-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.964, "date": "2012-03-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8586292346, "date": "2012-03-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0018333333, "date": "2012-03-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.86012276, "date": "2012-03-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0504166667, "date": "2012-03-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8616154088, "date": "2012-03-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0706666667, "date": "2012-04-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8631071811, "date": "2012-04-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.07175, "date": "2012-04-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8645980768, "date": "2012-04-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0521666667, "date": "2012-04-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.866088096, "date": "2012-04-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0058333333, "date": "2012-04-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8675772386, "date": "2012-04-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9668333333, "date": "2012-04-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8690655047, "date": "2012-04-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.92975, "date": "2012-05-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8705528942, "date": "2012-05-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.905, "date": "2012-05-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8720394071, "date": "2012-05-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8615, "date": "2012-05-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8735250435, "date": "2012-05-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8170833333, "date": "2012-05-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8750098033, "date": "2012-05-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7609166667, "date": "2012-06-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8764936866, "date": "2012-06-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7135833333, "date": "2012-06-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8779766933, "date": "2012-06-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6640833333, "date": "2012-06-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8794588234, "date": "2012-06-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5713333333, "date": "2012-06-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.880940077, "date": "2012-06-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4944166667, "date": "2012-07-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8824204541, "date": "2012-07-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5433333333, "date": "2012-07-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8838999546, "date": "2012-07-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5616666667, "date": "2012-07-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8853785785, "date": "2012-07-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6311666667, "date": "2012-07-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8868563259, "date": "2012-07-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6438333333, "date": "2012-07-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8883331967, "date": "2012-07-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.76925, "date": "2012-08-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8898091909, "date": "2012-08-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8539166667, "date": "2012-08-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8912843086, "date": "2012-08-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8799166667, "date": "2012-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8927585498, "date": "2012-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9118333333, "date": "2012-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8942319144, "date": "2012-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.974, "date": "2012-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8957044024, "date": "2012-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9806666667, "date": "2012-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8971760139, "date": "2012-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.012, "date": "2012-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.8986467488, "date": "2012-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9665833333, "date": "2012-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9001166072, "date": "2012-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.94525, "date": "2012-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.901585589, "date": "2012-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0136666667, "date": "2012-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9030536942, "date": "2012-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.98625, "date": "2012-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9045209229, "date": "2012-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8585, "date": "2012-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.905987275, "date": "2012-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7351666667, "date": "2012-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9074527506, "date": "2012-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6595833333, "date": "2012-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9089173496, "date": "2012-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6109166667, "date": "2012-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9103810721, "date": "2012-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5866666667, "date": "2012-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.911843918, "date": "2012-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5889166667, "date": "2012-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9133058873, "date": "2012-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5489166667, "date": "2012-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9147669801, "date": "2012-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5030833333, "date": "2012-12-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9162271964, "date": "2012-12-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4101666667, "date": "2012-12-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.917686536, "date": "2012-12-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4134166667, "date": "2012-12-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9191449992, "date": "2012-12-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4539166667, "date": "2012-12-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9206025857, "date": "2012-12-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4639166667, "date": "2013-01-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9220592957, "date": "2013-01-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.469, "date": "2013-01-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9235151292, "date": "2013-01-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4744166667, "date": "2013-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9249700861, "date": "2013-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5135, "date": "2013-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9264241664, "date": "2013-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6901666667, "date": "2013-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9278773702, "date": "2013-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7646666667, "date": "2013-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9293296974, "date": "2013-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8923333333, "date": "2013-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9307811481, "date": "2013-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9339166667, "date": "2013-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9322317222, "date": "2013-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.91, "date": "2013-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9336814197, "date": "2013-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.86525, "date": "2013-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9351302407, "date": "2013-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8494166667, "date": "2013-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9365781852, "date": "2013-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8305833333, "date": "2013-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.938025253, "date": "2013-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8023333333, "date": "2013-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9394714444, "date": "2013-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7638333333, "date": "2013-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9409167591, "date": "2013-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7015, "date": "2013-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9423611973, "date": "2013-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.688, "date": "2013-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.943804759, "date": "2013-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6716666667, "date": "2013-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9452474441, "date": "2013-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6834166667, "date": "2013-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9466892526, "date": "2013-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.74425, "date": "2013-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9481301846, "date": "2013-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7975, "date": "2013-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.94957024, "date": "2013-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7765833333, "date": "2013-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9510094189, "date": "2013-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7738333333, "date": "2013-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9524477212, "date": "2013-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.78475, "date": "2013-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.953885147, "date": "2013-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7660833333, "date": "2013-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9553216962, "date": "2013-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7355, "date": "2013-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9567573688, "date": "2013-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6634166667, "date": "2013-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9581921649, "date": "2013-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.65675, "date": "2013-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9596260844, "date": "2013-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7924166667, "date": "2013-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9610591274, "date": "2013-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8378333333, "date": "2013-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9624912938, "date": "2013-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.80725, "date": "2013-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9639225837, "date": "2013-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.78775, "date": "2013-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.965352997, "date": "2013-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7235833333, "date": "2013-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9667825337, "date": "2013-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7071666667, "date": "2013-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9682111939, "date": "2013-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.70625, "date": "2013-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9696389775, "date": "2013-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.754, "date": "2013-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9710658846, "date": "2013-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7398333333, "date": "2013-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9724919151, "date": "2013-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7113333333, "date": "2013-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9739170691, "date": "2013-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6588333333, "date": "2013-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9753413465, "date": "2013-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.59425, "date": "2013-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9767647473, "date": "2013-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.53525, "date": "2013-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9781872716, "date": "2013-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.52225, "date": "2013-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9796089194, "date": "2013-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5230833333, "date": "2013-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9810296905, "date": "2013-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4666666667, "date": "2013-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9824495852, "date": "2013-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.43525, "date": "2013-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9838686032, "date": "2013-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3709166667, "date": "2013-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9852867447, "date": "2013-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3919166667, "date": "2013-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9867040097, "date": "2013-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4623333333, "date": "2013-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9881203981, "date": "2013-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4495, "date": "2013-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9895359099, "date": "2013-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.44625, "date": "2013-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9909505452, "date": "2013-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4215, "date": "2013-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9923643039, "date": "2013-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.45025, "date": "2013-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9937771861, "date": "2013-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5034166667, "date": "2013-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9951891917, "date": "2013-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5093333333, "date": "2014-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9966003207, "date": "2014-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4998333333, "date": "2014-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9980105732, "date": "2014-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4701666667, "date": "2014-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 2.9994199491, "date": "2014-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4669166667, "date": "2014-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0008284485, "date": "2014-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.46375, "date": "2014-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0022360713, "date": "2014-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.479, "date": "2014-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0036428176, "date": "2014-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5475, "date": "2014-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0050486873, "date": "2014-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.60675, "date": "2014-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0064536805, "date": "2014-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.64175, "date": "2014-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0078577971, "date": "2014-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6708333333, "date": "2014-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0092610371, "date": "2014-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.706, "date": "2014-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0106634006, "date": "2014-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7111666667, "date": "2014-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0120648875, "date": "2014-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7381666667, "date": "2014-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0134654979, "date": "2014-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7605, "date": "2014-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0148652317, "date": "2014-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.816, "date": "2014-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0162640889, "date": "2014-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.85025, "date": "2014-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0176620696, "date": "2014-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8839166667, "date": "2014-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0190591738, "date": "2014-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.85875, "date": "2014-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0204554013, "date": "2014-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8420833333, "date": "2014-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0218507524, "date": "2014-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8385833333, "date": "2014-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0232452268, "date": "2014-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.84325, "date": "2014-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0246388248, "date": "2014-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8565833333, "date": "2014-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0260315461, "date": "2014-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8398333333, "date": "2014-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0274233909, "date": "2014-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.85, "date": "2014-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0288143591, "date": "2014-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8686666667, "date": "2014-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0302044508, "date": "2014-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8699166667, "date": "2014-06-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.031593666, "date": "2014-06-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8475, "date": "2014-07-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0329820045, "date": "2014-07-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.80875, "date": "2014-07-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0343694665, "date": "2014-07-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7668333333, "date": "2014-07-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.035756052, "date": "2014-07-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7155833333, "date": "2014-07-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0371417609, "date": "2014-07-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6915, "date": "2014-08-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0385265932, "date": "2014-08-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6748333333, "date": "2014-08-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.039910549, "date": "2014-08-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.64375, "date": "2014-08-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0412936283, "date": "2014-08-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6246666667, "date": "2014-08-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0426758309, "date": "2014-08-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6250833333, "date": "2014-09-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0440571571, "date": "2014-09-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6225, "date": "2014-09-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0454376066, "date": "2014-09-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5761666667, "date": "2014-09-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0468171796, "date": "2014-09-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5251666667, "date": "2014-09-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0481958761, "date": "2014-09-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5249166667, "date": "2014-09-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0495736959, "date": "2014-09-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4766666667, "date": "2014-10-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0509506393, "date": "2014-10-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3915, "date": "2014-10-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0523267061, "date": "2014-10-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3021666667, "date": "2014-10-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0537018963, "date": "2014-10-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2323333333, "date": "2014-10-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0550762099, "date": "2014-10-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.17, "date": "2014-11-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.056449647, "date": "2014-11-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.116, "date": "2014-11-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0578222076, "date": "2014-11-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0705833333, "date": "2014-11-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0591938916, "date": "2014-11-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0020833333, "date": "2014-11-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.060564699, "date": "2014-11-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9605, "date": "2014-12-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0619346299, "date": "2014-12-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8666666667, "date": "2014-12-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0633036842, "date": "2014-12-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.74625, "date": "2014-12-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.064671862, "date": "2014-12-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6041666667, "date": "2014-12-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0660391632, "date": "2014-12-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5036666667, "date": "2014-12-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0674055878, "date": "2014-12-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.42375, "date": "2015-01-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0687711359, "date": "2015-01-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3450833333, "date": "2015-01-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0701358074, "date": "2015-01-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2650833333, "date": "2015-01-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0714996024, "date": "2015-01-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2385833333, "date": "2015-01-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0728625208, "date": "2015-01-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2544166667, "date": "2015-02-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0742245627, "date": "2015-02-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3746666667, "date": "2015-02-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.075585728, "date": "2015-02-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.45975, "date": "2015-02-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0769460168, "date": "2015-02-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5195833333, "date": "2015-02-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.078305429, "date": "2015-02-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.67225, "date": "2015-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0796639646, "date": "2015-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6890833333, "date": "2015-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0810216237, "date": "2015-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.65525, "date": "2015-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0823784062, "date": "2015-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6515833333, "date": "2015-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0837343122, "date": "2015-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.64325, "date": "2015-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0850893416, "date": "2015-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6116666667, "date": "2015-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0864434944, "date": "2015-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6054166667, "date": "2015-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0877967707, "date": "2015-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6794166667, "date": "2015-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0891491705, "date": "2015-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.776, "date": "2015-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0905006937, "date": "2015-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8776666667, "date": "2015-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0918513403, "date": "2015-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9048333333, "date": "2015-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0932011103, "date": "2015-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.95325, "date": "2015-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0945500039, "date": "2015-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9800833333, "date": "2015-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0958980208, "date": "2015-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9816666667, "date": "2015-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0972451612, "date": "2015-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9790833333, "date": "2015-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0985914251, "date": "2015-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0245833333, "date": "2015-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.0999368123, "date": "2015-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0031666667, "date": "2015-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1012813231, "date": "2015-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9933333333, "date": "2015-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1026249572, "date": "2015-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9863333333, "date": "2015-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1039677149, "date": "2015-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0495833333, "date": "2015-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1053095959, "date": "2015-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.01825, "date": "2015-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1066506004, "date": "2015-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.964, "date": "2015-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1079907284, "date": "2015-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9108333333, "date": "2015-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1093299797, "date": "2015-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8488333333, "date": "2015-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1106683546, "date": "2015-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9221666667, "date": "2015-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1120058528, "date": "2015-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8459166667, "date": "2015-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1133424746, "date": "2015-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7256666667, "date": "2015-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1146782197, "date": "2015-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6556666667, "date": "2015-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1160130883, "date": "2015-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5951666667, "date": "2015-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1173470804, "date": "2015-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5485833333, "date": "2015-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1186801958, "date": "2015-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5356666667, "date": "2015-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1200124348, "date": "2015-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.52875, "date": "2015-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1213437972, "date": "2015-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5398333333, "date": "2015-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.122674283, "date": "2015-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4845833333, "date": "2015-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1240038922, "date": "2015-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4403333333, "date": "2015-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1253326249, "date": "2015-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.43425, "date": "2015-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1266604811, "date": "2015-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.45025, "date": "2015-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1279874607, "date": "2015-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.40075, "date": "2015-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1293135637, "date": "2015-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3225, "date": "2015-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1306387902, "date": "2015-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2930833333, "date": "2015-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1319631401, "date": "2015-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2871666667, "date": "2015-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1332866135, "date": "2015-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2714166667, "date": "2015-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1346092103, "date": "2015-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2659166667, "date": "2015-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1359309305, "date": "2015-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2755, "date": "2015-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1372517742, "date": "2015-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2711666667, "date": "2016-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1385717413, "date": "2016-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2410833333, "date": "2016-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1398908319, "date": "2016-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.15825, "date": "2016-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1412090459, "date": "2016-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1033333333, "date": "2016-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1425263834, "date": "2016-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0665833333, "date": "2016-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1438428443, "date": "2016-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0065, "date": "2016-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1451584287, "date": "2016-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9654166667, "date": "2016-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1464731365, "date": "2016-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 1.9610833333, "date": "2016-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1477869677, "date": "2016-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0085, "date": "2016-02-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1490999224, "date": "2016-02-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.0591666667, "date": "2016-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1504120005, "date": "2016-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1816666667, "date": "2016-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1517232021, "date": "2016-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2295, "date": "2016-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1530335271, "date": "2016-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.29525, "date": "2016-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1543429755, "date": "2016-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3093333333, "date": "2016-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1556515474, "date": "2016-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2985833333, "date": "2016-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1569592428, "date": "2016-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3630833333, "date": "2016-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1582660615, "date": "2016-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3878333333, "date": "2016-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1595720038, "date": "2016-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4613333333, "date": "2016-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1608770694, "date": "2016-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.448, "date": "2016-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1621812586, "date": "2016-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4648333333, "date": "2016-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1634845711, "date": "2016-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5193333333, "date": "2016-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1647870071, "date": "2016-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5528333333, "date": "2016-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1660885665, "date": "2016-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5924166667, "date": "2016-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1673892494, "date": "2016-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6095, "date": "2016-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1686890558, "date": "2016-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.57025, "date": "2016-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1699879855, "date": "2016-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.554, "date": "2016-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1712860387, "date": "2016-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5216666667, "date": "2016-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1725832154, "date": "2016-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.48475, "date": "2016-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1738795155, "date": "2016-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.46225, "date": "2016-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.175174939, "date": "2016-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4148333333, "date": "2016-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.176469486, "date": "2016-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3898333333, "date": "2016-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1777631565, "date": "2016-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.37575, "date": "2016-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1790559503, "date": "2016-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3731666667, "date": "2016-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1803478676, "date": "2016-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.41625, "date": "2016-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1816389084, "date": "2016-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4548333333, "date": "2016-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1829290726, "date": "2016-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4455833333, "date": "2016-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1842183602, "date": "2016-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.43125, "date": "2016-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1855067713, "date": "2016-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4525833333, "date": "2016-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1867943059, "date": "2016-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.455, "date": "2016-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1880809638, "date": "2016-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4759166667, "date": "2016-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1893667453, "date": "2016-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5001666667, "date": "2016-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1906516501, "date": "2016-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4879166667, "date": "2016-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1919356784, "date": "2016-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4775833333, "date": "2016-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1932188302, "date": "2016-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4675833333, "date": "2016-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1945011054, "date": "2016-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4754166667, "date": "2016-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.195782504, "date": "2016-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.43125, "date": "2016-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1970630261, "date": "2016-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.401, "date": "2016-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1983426716, "date": "2016-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.3985833333, "date": "2016-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.1996214405, "date": "2016-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.449, "date": "2016-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2008993329, "date": "2016-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4711666667, "date": "2016-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2021763488, "date": "2016-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.49825, "date": "2016-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2034524881, "date": "2016-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5386666667, "date": "2016-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2047277508, "date": "2016-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6046666667, "date": "2017-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.206002137, "date": "2017-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.61675, "date": "2017-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2072756466, "date": "2017-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.58775, "date": "2017-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2085482797, "date": "2017-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.56, "date": "2017-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2098200362, "date": "2017-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5350833333, "date": "2017-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2110909161, "date": "2017-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5325, "date": "2017-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2123609195, "date": "2017-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.54775, "date": "2017-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2136300464, "date": "2017-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5439166667, "date": "2017-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2148982967, "date": "2017-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5585, "date": "2017-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2161656704, "date": "2017-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5819166667, "date": "2017-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2174321675, "date": "2017-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5659166667, "date": "2017-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2186977882, "date": "2017-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.56525, "date": "2017-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2199625322, "date": "2017-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5618333333, "date": "2017-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2212263997, "date": "2017-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6004166667, "date": "2017-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2224893906, "date": "2017-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6600833333, "date": "2017-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.223751505, "date": "2017-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6749166667, "date": "2017-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2250127428, "date": "2017-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6858333333, "date": "2017-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2262731041, "date": "2017-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6525833333, "date": "2017-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2275325888, "date": "2017-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.61625, "date": "2017-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.228791197, "date": "2017-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6148333333, "date": "2017-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2300489286, "date": "2017-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.64425, "date": "2017-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2313057836, "date": "2017-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6515, "date": "2017-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2325617621, "date": "2017-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6581666667, "date": "2017-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.233816864, "date": "2017-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.61375, "date": "2017-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2350710894, "date": "2017-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5715, "date": "2017-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2363244382, "date": "2017-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.54175, "date": "2017-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2375769105, "date": "2017-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5163333333, "date": "2017-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2388285062, "date": "2017-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5458333333, "date": "2017-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2400792253, "date": "2017-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5284166667, "date": "2017-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2413290679, "date": "2017-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5604166667, "date": "2017-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2425780339, "date": "2017-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6000833333, "date": "2017-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2438261234, "date": "2017-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.62575, "date": "2017-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2450733363, "date": "2017-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6303333333, "date": "2017-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2463196727, "date": "2017-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6093333333, "date": "2017-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2475651325, "date": "2017-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6433333333, "date": "2017-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2488097157, "date": "2017-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.92375, "date": "2017-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2500534224, "date": "2017-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9299166667, "date": "2017-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2512962525, "date": "2017-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8819166667, "date": "2017-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2525382061, "date": "2017-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8330833333, "date": "2017-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2537792831, "date": "2017-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.81325, "date": "2017-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2550194836, "date": "2017-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7553333333, "date": "2017-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2562588075, "date": "2017-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7374166667, "date": "2017-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2574972548, "date": "2017-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7245, "date": "2017-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2587348256, "date": "2017-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7345833333, "date": "2017-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2599715198, "date": "2017-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8086666667, "date": "2017-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2612073375, "date": "2017-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8403333333, "date": "2017-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2624422786, "date": "2017-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8186666667, "date": "2017-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2636763432, "date": "2017-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7854166667, "date": "2017-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2649095312, "date": "2017-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.75475, "date": "2017-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2661418427, "date": "2017-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7375833333, "date": "2017-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2673732775, "date": "2017-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.707, "date": "2017-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2686038359, "date": "2017-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.72575, "date": "2017-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2698335177, "date": "2017-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7724166667, "date": "2018-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2710623229, "date": "2018-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.77875, "date": "2018-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2722902515, "date": "2018-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8083333333, "date": "2018-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2735173037, "date": "2018-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8210833333, "date": "2018-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2747434792, "date": "2018-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8610833333, "date": "2018-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2759687782, "date": "2018-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8919166667, "date": "2018-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2771932006, "date": "2018-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8649166667, "date": "2018-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2784167465, "date": "2018-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8209166667, "date": "2018-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2796394158, "date": "2018-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.81125, "date": "2018-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2808612086, "date": "2018-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8225833333, "date": "2018-03-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2820821248, "date": "2018-03-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8216666667, "date": "2018-03-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2833021645, "date": "2018-03-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8598333333, "date": "2018-03-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2845213276, "date": "2018-03-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9085833333, "date": "2018-03-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2857396141, "date": "2018-03-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.96025, "date": "2018-04-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2869570241, "date": "2018-04-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9554166667, "date": "2018-04-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2881735575, "date": "2018-04-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.00425, "date": "2018-04-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2893892144, "date": "2018-04-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0555833333, "date": "2018-04-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2906039947, "date": "2018-04-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1013333333, "date": "2018-04-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2918178984, "date": "2018-04-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.10325, "date": "2018-05-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2930309256, "date": "2018-05-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1435833333, "date": "2018-05-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2942430763, "date": "2018-05-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1908333333, "date": "2018-05-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2954543504, "date": "2018-05-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2299166667, "date": "2018-05-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2966647479, "date": "2018-05-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2145833333, "date": "2018-06-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2978742688, "date": "2018-06-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1860833333, "date": "2018-06-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.2990829133, "date": "2018-06-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1563333333, "date": "2018-06-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3002906811, "date": "2018-06-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1141666667, "date": "2018-06-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3014975724, "date": "2018-06-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1225, "date": "2018-07-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3027035872, "date": "2018-07-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1355, "date": "2018-07-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3039087253, "date": "2018-07-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1366666667, "date": "2018-07-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.305112987, "date": "2018-07-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1070833333, "date": "2018-07-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.306316372, "date": "2018-07-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1183333333, "date": "2018-07-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3075188806, "date": "2018-07-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1210833333, "date": "2018-08-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3087205125, "date": "2018-08-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.11275, "date": "2018-08-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3099212679, "date": "2018-08-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0929166667, "date": "2018-08-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3111211468, "date": "2018-08-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.09825, "date": "2018-08-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.312320149, "date": "2018-08-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0974166667, "date": "2018-09-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3135182748, "date": "2018-09-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1075833333, "date": "2018-09-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3147155239, "date": "2018-09-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1165, "date": "2018-09-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3159118966, "date": "2018-09-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.11675, "date": "2018-09-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3171073926, "date": "2018-09-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.14475, "date": "2018-10-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3183020121, "date": "2018-10-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1826666667, "date": "2018-10-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3194957551, "date": "2018-10-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1639166667, "date": "2018-10-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3206886215, "date": "2018-10-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.13325, "date": "2018-10-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3218806113, "date": "2018-10-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.10525, "date": "2018-10-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3230717246, "date": "2018-10-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0535, "date": "2018-11-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3242619613, "date": "2018-11-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9895833333, "date": "2018-11-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3254513214, "date": "2018-11-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9201666667, "date": "2018-11-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3266398051, "date": "2018-11-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8581666667, "date": "2018-11-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3278274121, "date": "2018-11-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7746666667, "date": "2018-12-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3290141426, "date": "2018-12-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7373333333, "date": "2018-12-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3301999965, "date": "2018-12-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6884166667, "date": "2018-12-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3313849739, "date": "2018-12-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6433333333, "date": "2018-12-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3325690747, "date": "2018-12-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5909166667, "date": "2018-12-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.333752299, "date": "2018-12-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5606666667, "date": "2019-01-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3349346467, "date": "2019-01-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.564, "date": "2019-01-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3361161178, "date": "2019-01-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.56425, "date": "2019-01-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3372967124, "date": "2019-01-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5623333333, "date": "2019-01-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3384764305, "date": "2019-01-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5584166667, "date": "2019-02-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.339655272, "date": "2019-02-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.57625, "date": "2019-02-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3408332369, "date": "2019-02-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6099166667, "date": "2019-02-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3420103252, "date": "2019-02-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6711666667, "date": "2019-02-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.343186537, "date": "2019-02-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6981666667, "date": "2019-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3443618723, "date": "2019-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.74175, "date": "2019-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.345536331, "date": "2019-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8166666667, "date": "2019-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3467099131, "date": "2019-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8960833333, "date": "2019-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3478826187, "date": "2019-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9681666667, "date": "2019-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3490544477, "date": "2019-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0340833333, "date": "2019-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3502254002, "date": "2019-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1266666667, "date": "2019-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3513954761, "date": "2019-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.14875, "date": "2019-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3525646755, "date": "2019-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.19725, "date": "2019-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3537329983, "date": "2019-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.21075, "date": "2019-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3549004445, "date": "2019-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1830833333, "date": "2019-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3560670142, "date": "2019-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1685, "date": "2019-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3572327073, "date": "2019-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1375833333, "date": "2019-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3583975239, "date": "2019-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1171666667, "date": "2019-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3595614639, "date": "2019-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0486666667, "date": "2019-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3607245273, "date": "2019-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.99025, "date": "2019-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3618867142, "date": "2019-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9665, "date": "2019-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3630480246, "date": "2019-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.01575, "date": "2019-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3642084584, "date": "2019-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0401666667, "date": "2019-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3653680156, "date": "2019-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0685833333, "date": "2019-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3665266963, "date": "2019-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0430833333, "date": "2019-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3676845004, "date": "2019-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0111666667, "date": "2019-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3688414279, "date": "2019-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.987, "date": "2019-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3699974789, "date": "2019-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9296666667, "date": "2019-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3711526534, "date": "2019-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9025833333, "date": "2019-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3723069513, "date": "2019-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.883, "date": "2019-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3734603726, "date": "2019-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8750833333, "date": "2019-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3746129174, "date": "2019-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8625833333, "date": "2019-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3757645856, "date": "2019-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.86325, "date": "2019-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3769153773, "date": "2019-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9605, "date": "2019-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3780652924, "date": "2019-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.98525, "date": "2019-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3792143309, "date": "2019-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9979166667, "date": "2019-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3803624929, "date": "2019-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.985, "date": "2019-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3815097783, "date": "2019-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9860833333, "date": "2019-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3826561872, "date": "2019-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.94375, "date": "2019-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3838017195, "date": "2019-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9556666667, "date": "2019-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3849463753, "date": "2019-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9631666667, "date": "2019-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3860901545, "date": "2019-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9349166667, "date": "2019-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3872330571, "date": "2019-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9135833333, "date": "2019-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3883750832, "date": "2019-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8996666667, "date": "2019-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3895162328, "date": "2019-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.88125, "date": "2019-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3906565057, "date": "2019-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8563333333, "date": "2019-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3917959021, "date": "2019-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8466666667, "date": "2019-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.392934422, "date": "2019-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8751666667, "date": "2019-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3940720653, "date": "2019-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8808333333, "date": "2020-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3952088321, "date": "2020-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.87475, "date": "2020-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3963447223, "date": "2020-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8461666667, "date": "2020-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3974797359, "date": "2020-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8190833333, "date": "2020-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.398613873, "date": "2020-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7765, "date": "2020-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.3997471335, "date": "2020-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7435833333, "date": "2020-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4008795175, "date": "2020-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.74575, "date": "2020-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4020110249, "date": "2020-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7789166667, "date": "2020-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4031416557, "date": "2020-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7453333333, "date": "2020-03-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.40427141, "date": "2020-03-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7021666667, "date": "2020-03-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4054002878, "date": "2020-03-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.58475, "date": "2020-03-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4065282889, "date": "2020-03-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4628333333, "date": "2020-03-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4076554136, "date": "2020-03-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.355, "date": "2020-03-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4087816616, "date": "2020-03-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2745833333, "date": "2020-04-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4099070331, "date": "2020-04-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.20125, "date": "2020-04-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4110315281, "date": "2020-04-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1604166667, "date": "2020-04-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4121551465, "date": "2020-04-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.11725, "date": "2020-04-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4132778883, "date": "2020-04-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1213333333, "date": "2020-05-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4143997536, "date": "2020-05-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1696666667, "date": "2020-05-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4155207423, "date": "2020-05-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.1990833333, "date": "2020-05-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4166408545, "date": "2020-05-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2720833333, "date": "2020-05-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4177600901, "date": "2020-05-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.2890833333, "date": "2020-06-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4188784492, "date": "2020-06-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.344, "date": "2020-06-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4199959317, "date": "2020-06-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4030833333, "date": "2020-06-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4211125376, "date": "2020-06-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.43225, "date": "2020-06-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.422228267, "date": "2020-06-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4748333333, "date": "2020-06-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4233431198, "date": "2020-06-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.48025, "date": "2020-07-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4244570961, "date": "2020-07-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.49975, "date": "2020-07-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4255701958, "date": "2020-07-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4939166667, "date": "2020-07-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.426682419, "date": "2020-07-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4895, "date": "2020-07-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4277937656, "date": "2020-07-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.49, "date": "2020-08-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4289042356, "date": "2020-08-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4801666667, "date": "2020-08-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4300138291, "date": "2020-08-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4823333333, "date": "2020-08-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.431122546, "date": "2020-08-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.498, "date": "2020-08-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4322303864, "date": "2020-08-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5341666667, "date": "2020-08-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4333373502, "date": "2020-08-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5275, "date": "2020-09-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4344434375, "date": "2020-09-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5030833333, "date": "2020-09-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4355486482, "date": "2020-09-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4869166667, "date": "2020-09-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4366529823, "date": "2020-09-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4848333333, "date": "2020-09-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4377564399, "date": "2020-09-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4865, "date": "2020-10-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4388590209, "date": "2020-10-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4828333333, "date": "2020-10-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4399607254, "date": "2020-10-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4681666667, "date": "2020-10-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4410615533, "date": "2020-10-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4629166667, "date": "2020-10-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4421615047, "date": "2020-10-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.436, "date": "2020-11-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4432605795, "date": "2020-11-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.42075, "date": "2020-11-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4443587777, "date": "2020-11-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4341666667, "date": "2020-11-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4454560994, "date": "2020-11-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4274166667, "date": "2020-11-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4465525446, "date": "2020-11-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.443, "date": "2020-11-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4476481131, "date": "2020-11-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4734166667, "date": "2020-12-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4487428052, "date": "2020-12-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.4745, "date": "2020-12-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4498366206, "date": "2020-12-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5308333333, "date": "2020-12-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4509295595, "date": "2020-12-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5481666667, "date": "2020-12-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4520216219, "date": "2020-12-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.5546666667, "date": "2021-01-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4531128077, "date": "2021-01-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6196666667, "date": "2021-01-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4542031169, "date": "2021-01-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6805, "date": "2021-01-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4552925496, "date": "2021-01-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.6963333333, "date": "2021-01-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4563811057, "date": "2021-01-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.7136666667, "date": "2021-02-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4574687853, "date": "2021-02-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.76625, "date": "2021-02-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4585555883, "date": "2021-02-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.8070833333, "date": "2021-02-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4596415147, "date": "2021-02-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 2.9301666667, "date": "2021-02-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4607265646, "date": "2021-02-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0103333333, "date": "2021-03-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.461810738, "date": "2021-03-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.0729166667, "date": "2021-03-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4628940347, "date": "2021-03-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1585, "date": "2021-03-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.463976455, "date": "2021-03-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1751666667, "date": "2021-03-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4650579986, "date": "2021-03-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1625833333, "date": "2021-03-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4661386657, "date": "2021-03-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.16725, "date": "2021-04-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4672184563, "date": "2021-04-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1645833333, "date": "2021-04-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4682973703, "date": "2021-04-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.172, "date": "2021-04-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4693754077, "date": "2021-04-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.1914166667, "date": "2021-04-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4704525686, "date": "2021-04-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2116666667, "date": "2021-05-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4715288529, "date": "2021-05-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.2814166667, "date": "2021-05-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4726042607, "date": "2021-05-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.34575, "date": "2021-05-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4736787919, "date": "2021-05-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.34525, "date": "2021-05-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4747524466, "date": "2021-05-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.35275, "date": "2021-05-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4758252247, "date": "2021-05-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3636666667, "date": "2021-06-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4768971262, "date": "2021-06-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.39425, "date": "2021-06-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4779681512, "date": "2021-06-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.3904166667, "date": "2021-06-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4790382996, "date": "2021-06-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4235, "date": "2021-06-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4801075715, "date": "2021-06-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4525833333, "date": "2021-07-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4811759668, "date": "2021-07-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4655, "date": "2021-07-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4822434856, "date": "2021-07-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4844166667, "date": "2021-07-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4833101278, "date": "2021-07-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4724166667, "date": "2021-07-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4843758934, "date": "2021-07-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4996666667, "date": "2021-08-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4854407825, "date": "2021-08-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5111666667, "date": "2021-08-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.486504795, "date": "2021-08-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.51675, "date": "2021-08-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.487567931, "date": "2021-08-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4896666667, "date": "2021-08-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4886301904, "date": "2021-08-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4851666667, "date": "2021-08-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4896915733, "date": "2021-08-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5165833333, "date": "2021-09-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4907520796, "date": "2021-09-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5061666667, "date": "2021-09-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4918117093, "date": "2021-09-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5210833333, "date": "2021-09-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4928704625, "date": "2021-09-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5143333333, "date": "2021-09-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4939283391, "date": "2021-09-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5270833333, "date": "2021-10-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4949853392, "date": "2021-10-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5971666667, "date": "2021-10-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4960414627, "date": "2021-10-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.65275, "date": "2021-10-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4970967097, "date": "2021-10-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7156666667, "date": "2021-10-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4981510801, "date": "2021-10-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7273333333, "date": "2021-11-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.4992045739, "date": "2021-11-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7481666667, "date": "2021-11-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5002571912, "date": "2021-11-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7454166667, "date": "2021-11-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.501308932, "date": "2021-11-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.74575, "date": "2021-11-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5023597961, "date": "2021-11-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7333333333, "date": "2021-11-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5034097837, "date": "2021-11-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.69975, "date": "2021-12-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5044588948, "date": "2021-12-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6755, "date": "2021-12-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5055071293, "date": "2021-12-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6595, "date": "2021-12-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5065544873, "date": "2021-12-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6401666667, "date": "2021-12-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5076009687, "date": "2021-12-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.64475, "date": "2022-01-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5086465735, "date": "2022-01-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6535833333, "date": "2022-01-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5096913018, "date": "2022-01-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6615, "date": "2022-01-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5107351535, "date": "2022-01-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6755, "date": "2022-01-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5117781287, "date": "2022-01-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7140833333, "date": "2022-01-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5128202273, "date": "2022-01-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7806666667, "date": "2022-02-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5138614493, "date": "2022-02-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.82275, "date": "2022-02-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5149017948, "date": "2022-02-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8669166667, "date": "2022-02-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5159412637, "date": "2022-02-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9433333333, "date": "2022-02-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5169798561, "date": "2022-02-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4456666667, "date": "2022-03-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5180175719, "date": "2022-03-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.6726666667, "date": "2022-03-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5190544112, "date": "2022-03-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.6170833333, "date": "2022-03-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5200903739, "date": "2022-03-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.61125, "date": "2022-03-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5211254601, "date": "2022-03-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.5525833333, "date": "2022-04-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5221596697, "date": "2022-04-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4771666667, "date": "2022-04-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5231930027, "date": "2022-04-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4511666667, "date": "2022-04-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5242254592, "date": "2022-04-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4879166667, "date": "2022-04-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5252570391, "date": "2022-04-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.5610833333, "date": "2022-05-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5262877425, "date": "2022-05-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.701, "date": "2022-05-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5273175693, "date": "2022-05-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.8656666667, "date": "2022-05-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5283465195, "date": "2022-05-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.9719166667, "date": "2022-05-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5293745932, "date": "2022-05-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.012, "date": "2022-05-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5304017904, "date": "2022-05-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.2535, "date": "2022-06-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.531428111, "date": "2022-06-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.38075, "date": "2022-06-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.532453555, "date": "2022-06-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.3458333333, "date": "2022-06-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5334781225, "date": "2022-06-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.2643333333, "date": "2022-06-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5345018134, "date": "2022-06-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.1664166667, "date": "2022-07-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5355246277, "date": "2022-07-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 5.0398333333, "date": "2022-07-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5365465655, "date": "2022-07-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.883, "date": "2022-07-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5375676268, "date": "2022-07-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.7291666667, "date": "2022-07-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5385878115, "date": "2022-07-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.5989166667, "date": "2022-08-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5396071196, "date": "2022-08-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.4489166667, "date": "2022-08-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5406255512, "date": "2022-08-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.349, "date": "2022-08-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5416431062, "date": "2022-08-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2890833333, "date": "2022-08-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5426597846, "date": "2022-08-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2285, "date": "2022-08-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5436755865, "date": "2022-08-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1523333333, "date": "2022-09-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5446905119, "date": "2022-09-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1074166667, "date": "2022-09-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5457045607, "date": "2022-09-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0789166667, "date": "2022-09-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5467177329, "date": "2022-09-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.14825, "date": "2022-09-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5477300286, "date": "2022-09-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2526666667, "date": "2022-10-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5487414477, "date": "2022-10-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.3633333333, "date": "2022-10-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5497519903, "date": "2022-10-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.3120833333, "date": "2022-10-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5507616563, "date": "2022-10-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1995833333, "date": "2022-10-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5517704457, "date": "2022-10-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1658333333, "date": "2022-10-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5527783586, "date": "2022-10-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2105, "date": "2022-11-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5537853949, "date": "2022-11-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.17825, "date": "2022-11-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5547915547, "date": "2022-11-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0665, "date": "2022-11-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5557968379, "date": "2022-11-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9478333333, "date": "2022-11-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5568012446, "date": "2022-11-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7958333333, "date": "2022-12-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5578047747, "date": "2022-12-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6435833333, "date": "2022-12-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5588074282, "date": "2022-12-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.523, "date": "2022-12-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5598092052, "date": "2022-12-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4898333333, "date": "2022-12-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5608101057, "date": "2022-12-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6025, "date": "2023-01-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5618101295, "date": "2023-01-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6311666667, "date": "2023-01-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5628092769, "date": "2023-01-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.67775, "date": "2023-01-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5638075476, "date": "2023-01-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.774, "date": "2023-01-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5648049418, "date": "2023-01-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8493333333, "date": "2023-01-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5658014595, "date": "2023-01-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8183333333, "date": "2023-02-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5667971006, "date": "2023-02-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.77675, "date": "2023-02-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5677918651, "date": "2023-02-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.776, "date": "2023-02-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5687857531, "date": "2023-02-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7435833333, "date": "2023-02-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5697787645, "date": "2023-02-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7944166667, "date": "2023-03-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5707708994, "date": "2023-03-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8526666667, "date": "2023-03-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5717621577, "date": "2023-03-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.81625, "date": "2023-03-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5727525394, "date": "2023-03-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.81875, "date": "2023-03-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5737420446, "date": "2023-03-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.883, "date": "2023-04-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5747306733, "date": "2023-04-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9720833333, "date": "2023-04-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5757184254, "date": "2023-04-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0398333333, "date": "2023-04-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5767053009, "date": "2023-04-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0428333333, "date": "2023-04-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5776912998, "date": "2023-04-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9936666667, "date": "2023-05-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5786764223, "date": "2023-05-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9304166667, "date": "2023-05-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5796606681, "date": "2023-05-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9295, "date": "2023-05-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5806440374, "date": "2023-05-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9285833333, "date": "2023-05-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5816265302, "date": "2023-05-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9719166667, "date": "2023-05-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5826081463, "date": "2023-05-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9455833333, "date": "2023-06-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.583588886, "date": "2023-06-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.995, "date": "2023-06-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.584568749, "date": "2023-06-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.98025, "date": "2023-06-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5855477355, "date": "2023-06-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9753333333, "date": "2023-06-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5865258455, "date": "2023-06-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9385833333, "date": "2023-07-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5875030789, "date": "2023-07-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9613333333, "date": "2023-07-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5884794357, "date": "2023-07-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9698333333, "date": "2023-07-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.589454916, "date": "2023-07-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0019166667, "date": "2023-07-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5904295198, "date": "2023-07-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1503333333, "date": "2023-07-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5914032469, "date": "2023-07-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2188333333, "date": "2023-08-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5923760975, "date": "2023-08-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2440833333, "date": "2023-08-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5933480716, "date": "2023-08-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2770833333, "date": "2023-08-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5943191691, "date": "2023-08-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.23275, "date": "2023-08-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.59528939, "date": "2023-08-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.22625, "date": "2023-09-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5962587344, "date": "2023-09-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2460833333, "date": "2023-09-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5972272023, "date": "2023-09-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.323, "date": "2023-09-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5981947935, "date": "2023-09-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.2991666667, "date": "2023-09-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.5991615083, "date": "2023-09-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.28625, "date": "2023-10-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6001273464, "date": "2023-10-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.1599166667, "date": "2023-10-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.601092308, "date": "2023-10-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0485, "date": "2023-10-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6020563931, "date": "2023-10-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.99475, "date": "2023-10-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6030196015, "date": "2023-10-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9290833333, "date": "2023-10-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6039819335, "date": "2023-10-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8448333333, "date": "2023-11-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6049433889, "date": "2023-11-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.789, "date": "2023-11-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6059039677, "date": "2023-11-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7325833333, "date": "2023-11-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6068636699, "date": "2023-11-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6828333333, "date": "2023-11-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6078224956, "date": "2023-11-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6656666667, "date": "2023-12-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6087804448, "date": "2023-12-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5654166667, "date": "2023-12-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6097375174, "date": "2023-12-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4815, "date": "2023-12-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6106937134, "date": "2023-12-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5409166667, "date": "2023-12-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6116490329, "date": "2023-12-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5228333333, "date": "2024-01-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6126034758, "date": "2024-01-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5079166667, "date": "2024-01-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6135570422, "date": "2024-01-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4788333333, "date": "2024-01-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.614509732, "date": "2024-01-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4768333333, "date": "2024-01-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6154615452, "date": "2024-01-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5109166667, "date": "2024-01-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6164124819, "date": "2024-01-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.54975, "date": "2024-02-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6173625421, "date": "2024-02-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5989166667, "date": "2024-02-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6183117256, "date": "2024-02-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6731666667, "date": "2024-02-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6192600327, "date": "2024-02-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6526666667, "date": "2024-02-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6202074631, "date": "2024-02-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7561666667, "date": "2024-03-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.621154017, "date": "2024-03-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.781, "date": "2024-03-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6220996944, "date": "2024-03-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8548333333, "date": "2024-03-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6230444952, "date": "2024-03-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9271666667, "date": "2024-03-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6239884194, "date": "2024-03-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9306666667, "date": "2024-04-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6249314671, "date": "2024-04-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0188333333, "date": "2024-04-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6258736382, "date": "2024-04-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.06375, "date": "2024-04-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6268149328, "date": "2024-04-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.10625, "date": "2024-04-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6277553508, "date": "2024-04-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.09125, "date": "2024-04-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6286948923, "date": "2024-04-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0814166667, "date": "2024-05-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6296335572, "date": "2024-05-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0420833333, "date": "2024-05-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6305713455, "date": "2024-05-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.0134166667, "date": "2024-05-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6315082573, "date": "2024-05-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 4.00925, "date": "2024-05-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6324442925, "date": "2024-05-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9465, "date": "2024-06-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6333794512, "date": "2024-06-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8579166667, "date": "2024-06-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6343137333, "date": "2024-06-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8586666667, "date": "2024-06-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6352471388, "date": "2024-06-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8534166667, "date": "2024-06-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6361796678, "date": "2024-06-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8831666667, "date": "2024-07-01", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6371113203, "date": "2024-07-01", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.90025, "date": "2024-07-08", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6380420962, "date": "2024-07-08", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.9055, "date": "2024-07-15", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6389719955, "date": "2024-07-15", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.87175, "date": "2024-07-22", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6399010183, "date": "2024-07-22", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.879, "date": "2024-07-29", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6408291645, "date": "2024-07-29", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.84375, "date": "2024-08-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6417564341, "date": "2024-08-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.8125, "date": "2024-08-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6426828272, "date": "2024-08-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7886666667, "date": "2024-08-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6436083438, "date": "2024-08-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7275, "date": "2024-08-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6445329838, "date": "2024-08-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.7145, "date": "2024-09-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6454567472, "date": "2024-09-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6693333333, "date": "2024-09-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6463796341, "date": "2024-09-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.62675, "date": "2024-09-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6473016444, "date": "2024-09-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6224166667, "date": "2024-09-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6482227782, "date": "2024-09-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6073333333, "date": "2024-09-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6491430354, "date": "2024-09-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5685833333, "date": "2024-10-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.650062416, "date": "2024-10-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5970833333, "date": "2024-10-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6509809201, "date": "2024-10-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5735, "date": "2024-10-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6518985476, "date": "2024-10-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5249166667, "date": "2024-10-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6528152986, "date": "2024-10-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.493, "date": "2024-11-04", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.653731173, "date": "2024-11-04", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4789166667, "date": "2024-11-11", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6546461709, "date": "2024-11-11", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4660833333, "date": "2024-11-18", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6555602922, "date": "2024-11-18", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4660833333, "date": "2024-11-25", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6564735369, "date": "2024-11-25", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.45425, "date": "2024-12-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6573859051, "date": "2024-12-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.431, "date": "2024-12-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6582973968, "date": "2024-12-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.431, "date": "2024-12-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6592080118, "date": "2024-12-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4395, "date": "2024-12-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6601177503, "date": "2024-12-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4266666667, "date": "2024-12-30", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6610266123, "date": "2024-12-30", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4620833333, "date": "2025-01-06", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6619345977, "date": "2025-01-06", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4610833333, "date": "2025-01-13", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6628417066, "date": "2025-01-13", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5243333333, "date": "2025-01-20", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6637479389, "date": "2025-01-20", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.522, "date": "2025-01-27", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6646532946, "date": "2025-01-27", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5101666667, "date": "2025-02-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6655577738, "date": "2025-02-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5611666667, "date": "2025-02-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6664613764, "date": "2025-02-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5964166667, "date": "2025-02-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6673641025, "date": "2025-02-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.57775, "date": "2025-02-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.668265952, "date": "2025-02-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5271666667, "date": "2025-03-03", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6691669249, "date": "2025-03-03", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.51375, "date": "2025-03-10", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6700670213, "date": "2025-03-10", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.4978333333, "date": "2025-03-17", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6709662412, "date": "2025-03-17", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5485833333, "date": "2025-03-24", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6718645844, "date": "2025-03-24", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6035, "date": "2025-03-31", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6727620512, "date": "2025-03-31", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6863333333, "date": "2025-04-07", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6736586413, "date": "2025-04-07", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.613, "date": "2025-04-14", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6745543549, "date": "2025-04-14", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.58525, "date": "2025-04-21", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.675449192, "date": "2025-04-21", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.57875, "date": "2025-04-28", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6763431525, "date": "2025-04-28", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5851666667, "date": "2025-05-05", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6772362364, "date": "2025-05-05", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5728333333, "date": "2025-05-12", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6781284438, "date": "2025-05-12", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6244166667, "date": "2025-05-19", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6790197746, "date": "2025-05-19", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6089166667, "date": "2025-05-26", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6799102289, "date": "2025-05-26", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5746666667, "date": "2025-06-02", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6807998066, "date": "2025-06-02", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5501666667, "date": "2025-06-09", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6816885078, "date": "2025-06-09", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.5765, "date": "2025-06-16", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6825763324, "date": "2025-06-16", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6445833333, "date": "2025-06-23", "fuel": "gasoline", "is_predicted": "original"}, {"avg_price": 3.6834632804, "date": "2025-06-23", "fuel": "gasoline", "is_predicted": "regression"}, {"avg_price": 3.6851081441, "date": "2025-07-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6859925877, "date": "2025-07-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6868761547, "date": "2025-07-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6877588452, "date": "2025-07-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6886406591, "date": "2025-08-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6895215965, "date": "2025-08-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6904016573, "date": "2025-08-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6912808415, "date": "2025-08-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6921591492, "date": "2025-08-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6930365804, "date": "2025-09-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6939131349, "date": "2025-09-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.694788813, "date": "2025-09-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6956636144, "date": "2025-09-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6965375394, "date": "2025-10-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6974105877, "date": "2025-10-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6982827595, "date": "2025-10-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.6991540547, "date": "2025-10-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7000244734, "date": "2025-11-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7008940156, "date": "2025-11-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7017626811, "date": "2025-11-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7026304701, "date": "2025-11-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7034973826, "date": "2025-11-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7043634185, "date": "2025-12-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7052285778, "date": "2025-12-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7060928606, "date": "2025-12-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7069562668, "date": "2025-12-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7078187965, "date": "2026-01-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7086804496, "date": "2026-01-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7095412262, "date": "2026-01-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7104011262, "date": "2026-01-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7112601496, "date": "2026-02-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7121182965, "date": "2026-02-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7129755669, "date": "2026-02-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7138319606, "date": "2026-02-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7146874778, "date": "2026-03-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7155421185, "date": "2026-03-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7163958826, "date": "2026-03-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7172487702, "date": "2026-03-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7181007811, "date": "2026-03-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7189519156, "date": "2026-04-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7198021734, "date": "2026-04-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7206515548, "date": "2026-04-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7215000595, "date": "2026-04-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7223476877, "date": "2026-05-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7231944394, "date": "2026-05-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7240403145, "date": "2026-05-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.724885313, "date": "2026-05-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.725729435, "date": "2026-05-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7265726804, "date": "2026-06-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7274150493, "date": "2026-06-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7282565416, "date": "2026-06-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7290971573, "date": "2026-06-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7299368965, "date": "2026-07-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7307757592, "date": "2026-07-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7316137452, "date": "2026-07-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7324508548, "date": "2026-07-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7332870877, "date": "2026-08-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7341224441, "date": "2026-08-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.734956924, "date": "2026-08-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7357905273, "date": "2026-08-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.736623254, "date": "2026-08-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7374551042, "date": "2026-09-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7382860778, "date": "2026-09-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7391161749, "date": "2026-09-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7399453954, "date": "2026-09-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7407737394, "date": "2026-10-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7416012067, "date": "2026-10-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7424277976, "date": "2026-10-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7432535119, "date": "2026-10-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7440783496, "date": "2026-11-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7449023108, "date": "2026-11-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7457253954, "date": "2026-11-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7465476034, "date": "2026-11-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7473689349, "date": "2026-11-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7481893899, "date": "2026-12-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7490089683, "date": "2026-12-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7498276701, "date": "2026-12-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7506454954, "date": "2026-12-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7514624441, "date": "2027-01-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7522785162, "date": "2027-01-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7530937118, "date": "2027-01-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7539080309, "date": "2027-01-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7547214734, "date": "2027-01-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7555340393, "date": "2027-02-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7563457287, "date": "2027-02-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7571565415, "date": "2027-02-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7579664777, "date": "2027-02-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7587755374, "date": "2027-03-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7595837206, "date": "2027-03-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7603910272, "date": "2027-03-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7611974572, "date": "2027-03-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7620030107, "date": "2027-04-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7628076876, "date": "2027-04-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.763611488, "date": "2027-04-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7644144118, "date": "2027-04-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.765216459, "date": "2027-05-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7660176297, "date": "2027-05-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7668179238, "date": "2027-05-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7676173414, "date": "2027-05-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7684158824, "date": "2027-05-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7692135469, "date": "2027-06-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7700103348, "date": "2027-06-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7708062462, "date": "2027-06-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.771601281, "date": "2027-06-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7723954392, "date": "2027-07-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7731887209, "date": "2027-07-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.773981126, "date": "2027-07-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7747726546, "date": "2027-07-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7755633066, "date": "2027-08-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.776353082, "date": "2027-08-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7771419809, "date": "2027-08-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7779300032, "date": "2027-08-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.778717149, "date": "2027-08-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7795034183, "date": "2027-09-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7802888109, "date": "2027-09-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.781073327, "date": "2027-09-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7818569666, "date": "2027-09-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7826397296, "date": "2027-10-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.783421616, "date": "2027-10-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7842026259, "date": "2027-10-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7849827592, "date": "2027-10-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.785762016, "date": "2027-10-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7865403962, "date": "2027-11-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7873178999, "date": "2027-11-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.788094527, "date": "2027-11-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7888702775, "date": "2027-11-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7896451515, "date": "2027-12-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7904191489, "date": "2027-12-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7911922698, "date": "2027-12-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7919645141, "date": "2027-12-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7927358819, "date": "2028-01-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7935063731, "date": "2028-01-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7942759877, "date": "2028-01-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7950447258, "date": "2028-01-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7958125873, "date": "2028-01-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7965795723, "date": "2028-02-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7973456807, "date": "2028-02-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7981109126, "date": "2028-02-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7988752679, "date": "2028-02-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.7996387466, "date": "2028-03-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8004013488, "date": "2028-03-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8011630744, "date": "2028-03-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8019239235, "date": "2028-03-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.802683896, "date": "2028-04-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.803442992, "date": "2028-04-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8042012114, "date": "2028-04-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8049585542, "date": "2028-04-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8057150205, "date": "2028-04-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8064706103, "date": "2028-05-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8072253234, "date": "2028-05-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8079791601, "date": "2028-05-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8087321201, "date": "2028-05-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8094842036, "date": "2028-06-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8102354106, "date": "2028-06-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.810985741, "date": "2028-06-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8117351948, "date": "2028-06-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8124837721, "date": "2028-07-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8132314728, "date": "2028-07-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.813978297, "date": "2028-07-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8147242446, "date": "2028-07-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8154693156, "date": "2028-07-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8162135101, "date": "2028-08-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8169568281, "date": "2028-08-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8176992694, "date": "2028-08-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8184408343, "date": "2028-08-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8191815225, "date": "2028-09-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8199213342, "date": "2028-09-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8206602694, "date": "2028-09-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.821398328, "date": "2028-09-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.82213551, "date": "2028-10-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8228718155, "date": "2028-10-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8236072444, "date": "2028-10-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8243417968, "date": "2028-10-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8250754726, "date": "2028-10-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8258082719, "date": "2028-11-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8265401946, "date": "2028-11-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8272712407, "date": "2028-11-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8280014103, "date": "2028-11-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8287307033, "date": "2028-12-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8294591198, "date": "2028-12-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8301866597, "date": "2028-12-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8309133231, "date": "2028-12-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8316391099, "date": "2028-12-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8323640201, "date": "2029-01-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8330880538, "date": "2029-01-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8338112109, "date": "2029-01-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8345334915, "date": "2029-01-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8352548955, "date": "2029-02-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.835975423, "date": "2029-02-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8366950739, "date": "2029-02-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8374138482, "date": "2029-02-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.838131746, "date": "2029-03-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8388487672, "date": "2029-03-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8395649119, "date": "2029-03-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.84028018, "date": "2029-03-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8409945716, "date": "2029-04-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8417080866, "date": "2029-04-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.842420725, "date": "2029-04-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8431324869, "date": "2029-04-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8438433723, "date": "2029-04-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.844553381, "date": "2029-05-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8452625133, "date": "2029-05-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8459707689, "date": "2029-05-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.846678148, "date": "2029-05-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8473846506, "date": "2029-06-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8480902766, "date": "2029-06-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.848795026, "date": "2029-06-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8494988989, "date": "2029-06-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8502018952, "date": "2029-07-01", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.850904015, "date": "2029-07-08", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8516052582, "date": "2029-07-15", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8523056248, "date": "2029-07-22", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8530051149, "date": "2029-07-29", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8537037285, "date": "2029-08-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8544014654, "date": "2029-08-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8550983259, "date": "2029-08-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8557943097, "date": "2029-08-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.856489417, "date": "2029-09-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8571836478, "date": "2029-09-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.857877002, "date": "2029-09-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8585694796, "date": "2029-09-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8592610807, "date": "2029-09-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8599518052, "date": "2029-10-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8606416532, "date": "2029-10-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8613306246, "date": "2029-10-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8620187195, "date": "2029-10-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8627059378, "date": "2029-11-04", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8633922795, "date": "2029-11-11", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8640777447, "date": "2029-11-18", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8647623333, "date": "2029-11-25", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8654460454, "date": "2029-12-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8661288809, "date": "2029-12-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8668108399, "date": "2029-12-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8674919223, "date": "2029-12-23", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8681721281, "date": "2029-12-30", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8688514574, "date": "2030-01-06", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8695299101, "date": "2030-01-13", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8702074863, "date": "2030-01-20", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8708841859, "date": "2030-01-27", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.871560009, "date": "2030-02-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8722349555, "date": "2030-02-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8729090254, "date": "2030-02-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8735822188, "date": "2030-02-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8742545356, "date": "2030-03-03", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8749259759, "date": "2030-03-10", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8755965396, "date": "2030-03-17", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8762662268, "date": "2030-03-24", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8769350374, "date": "2030-03-31", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8776029714, "date": "2030-04-07", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8782700289, "date": "2030-04-14", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8789362098, "date": "2030-04-21", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8796015142, "date": "2030-04-28", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.880265942, "date": "2030-05-05", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8809294933, "date": "2030-05-12", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.881592168, "date": "2030-05-19", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8822539662, "date": "2030-05-26", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8829148877, "date": "2030-06-02", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8835749328, "date": "2030-06-09", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8842341013, "date": "2030-06-16", "fuel": "gasoline", "is_predicted": "forecasting"}, {"avg_price": 3.8848923932, "date": "2030-06-23", "fuel": "gasoline", "is_predicted": "forecasting"}], "metadata": {"avg_price": {"type": "number", "semanticType": "Number"}, "date": {"type": "date", "semanticType": "Date"}, "fuel": {"type": "string", "semanticType": "String"}, "is_predicted": {"type": "string", "semanticType": "String", "levels": ["original", "regression", "forecasting"]}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.preprocessing import PolynomialFeatures\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.pipeline import make_pipeline\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train polynomial regression model (degree 2 for non-linear trends)\n model = make_pipeline(PolynomialFeatures(degree=2), LinearRegression())\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n", "source": ["weekly_gas_prices"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[GOAL]\n\nWhat are the major **price trends** across all fuel types from 1990 to 2025?", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to visualize the major price trends across all fuel types from 1990 to 2025 to understand how fuel prices have evolved over time.\",\n \"display_instruction\": \"Show **price** trends over time for different **fuel** types\",\n \"recommendation\": \"To visualize price trends over time across fuel types, we should aggregate the data by date and fuel type. Since there are multiple grades and formulations for each fuel type, we'll calculate the average price for each fuel type on each date. A line chart with date on the x-axis, average price on the y-axis, and different colored lines for each fuel type will clearly show the trends and allow easy comparison.\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n transformed_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n \n # Rename the price column to avg_price for clarity\n transformed_df = transformed_df.rename(columns={'price': 'avg_price'})\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values('date')\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n date fuel avg_price\n0 1990-08-20 gasoline 1.191\n1 1990-08-27 gasoline 1.245\n2 1990-09-03 gasoline 1.242\n3 1990-09-10 gasoline 1.252\n4 1990-09-17 gasoline 1.266\n5 1990-09-24 gasoline 1.272\n6 1990-10-01 gasoline 1.321\n7 1990-10-08 gasoline 1.333\n8 1990-10-15 gasoline 1.339\n9 1990-10-22 gasoline 1.345\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"forecast the price trend for the next 5 years with some propert model!\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"column\": \"fuel\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Build upon the previous price trends visualization by adding forecasted prices for the next 5 years (2025-2030) using a time series forecasting model. The output should include both historical actual prices and forecasted prices, with an indicator to distinguish between them.\",\n \"display_instruction\": \"Forecast **price** trends for the next 5 years for each **fuel** type\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\", \"is_predicted\"],\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"fuel\",\n \"facet\": \"is_predicted\"\n },\n \"reason\": \"The user wants to extend the price trend analysis with forecasting for the next 5 years. Following the guidelines for forecasting, the output should include a 'is_predicted' column to distinguish between actual historical data, regression on historical data, and forecasted future values. The chart should be a line chart showing both historical and predicted values for each fuel type.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.linear_model import LinearRegression\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train linear regression model\n model = LinearRegression()\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n avg_price date fuel is_predicted\n0 1.106000 1994-03-21 diesel original\n1 1.029221 1994-03-21 diesel regression\n2 1.107000 1994-03-28 diesel original\n3 1.031148 1994-03-28 diesel regression\n4 1.109000 1994-04-04 diesel original\n5 1.033075 1994-04-04 diesel regression\n6 1.108000 1994-04-11 diesel original\n7 1.035002 1994-04-11 diesel regression\n8 1.105000 1994-04-18 diesel original\n9 1.036929 1994-04-18 diesel regression\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"use some more complex model\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"is_predicted\",\n \"column\": \"fuel\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Improve the forecasting model by using a more sophisticated time series model (polynomial regression with degree 2) instead of simple linear regression to better capture non-linear trends in fuel price data. The output should still include historical actual prices, regression fitted values, and forecasted prices for the next 5 years.\",\n \"display_instruction\": \"Forecast **price** trends using a more complex model for each **fuel** type\",\n \"output_fields\": [\"date\", \"fuel\", \"avg_price\", \"is_predicted\"],\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"avg_price\",\n \"color\": \"is_predicted\",\n \"facet\": \"fuel\"\n },\n \"reason\": \"The user wants to use a more complex forecasting model to potentially capture non-linear trends better. We'll use polynomial regression (degree 2) which can model curved trends while still being interpretable. The chart encodings are updated to color by prediction type and facet by fuel type as specified by the user.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.preprocessing import PolynomialFeatures\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.pipeline import make_pipeline\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train polynomial regression model (degree 2 for non-linear trends)\n model = make_pipeline(PolynomialFeatures(degree=2), LinearRegression())\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-34", "resultTableId": "table-22", "chart": {"id": "chart-1760745227478", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--date"}, "y": {"fieldID": "concept-avg_price-1760744859365"}, "color": {"fieldID": "concept-is_predicted-1760745153175", "sortBy": "[\"original\",\"regression\",\"forecasting\"]"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "original--weekly_gas_prices--fuel"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-34", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "use some more complex model", "displayContent": "Forecast **price** trends using a more complex model for each **fuel** type"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "This code performs **price trend analysis and forecasting** for different fuel types:\n\n1. **Aggregates** historical gas prices by calculating the **mean price** across all **grades** and **formulations** for each **date** and **fuel** type\n2. **Prepares** time series data by converting **dates** to datetime format and creating a **days_since_start** numeric variable (days elapsed since the first recorded date)\n3. **Trains** a **polynomial regression model** (degree 2) separately for each **fuel type** to capture non-linear price trends over time\n4. **Generates** three types of price records for each fuel:\n - **Original**: actual historical average prices with label `'original'`\n - **Regression**: model-fitted prices for historical dates with label `'regression'`\n - **Forecasting**: predicted prices for the **next 5 years** (260 weekly periods) with label `'forecasting'`\n5. **Combines** all records and sorts by **fuel** type and **date**", "concepts": [{"explanation": "A numeric time variable representing the number of days elapsed since the first recorded date in the dataset. This transforms calendar dates into a continuous numeric scale suitable for regression modeling: \\( \\text{days\\_since\\_start} = (\\text{current\\_date} - \\text{min\\_date}) \\)", "field": "days_since_start"}, {"explanation": "A categorical label indicating the source and nature of the price data: 'original' for actual historical observations, 'regression' for model-fitted values on historical dates (representing the polynomial trend), and 'forecasting' for future price predictions beyond the observed data range.", "field": "is_predicted"}, {"explanation": "This analysis models fuel price trends using **polynomial regression (degree 2)** to capture non-linear patterns in price evolution over time. The model treats time (days since start) as the independent variable and average price as the dependent variable, fitted separately for each fuel type. The quadratic polynomial allows the model to capture acceleration or deceleration in price trends (e.g., prices rising faster over time or stabilizing). Alternative approaches could include: **ARIMA models** for capturing autocorrelation and seasonality, **exponential smoothing** for weighted recent observations, **Prophet** for handling multiple seasonality patterns and holidays, or **LSTM neural networks** for complex non-linear temporal dependencies.", "field": "Statistical Analysis"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (weekly_gas_prices)\n\n## fields\n\t*date -- type: object, values: 1990-08-20, 1990-08-27, 1990-09-03, ..., 2025-06-02, 2025-06-09, 2025-06-16, 2025-06-23\n\t*fuel -- type: object, values: diesel, gasoline\n\t*grade -- type: object, values: all, low_sulfur, midgrade, premium, regular, ultra_low_sulfur\n\t*formulation -- type: object, values: NA, all, conventional, reformulated\n\t*price -- type: float64, values: 0.885, 0.891, 0.899, ..., 5.955, 5.964, 6.033, 6.064\n\n## sample\n date fuel grade formulation price\n0 1990-08-20 gasoline regular all 1.191\n1 1990-08-20 gasoline regular conventional 1.191\n2 1990-08-27 gasoline regular all 1.245\n3 1990-08-27 gasoline regular conventional 1.245\n4 1990-09-03 gasoline regular all 1.242\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn.preprocessing import PolynomialFeatures\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.pipeline import make_pipeline\n\ndef transform_data(df_gas_prices):\n # Group by date and fuel to get average price across all grades and formulations\n historical_df = df_gas_prices.groupby(['date', 'fuel'], as_index=False).agg({\n 'price': 'mean'\n })\n historical_df = historical_df.rename(columns={'price': 'avg_price'})\n historical_df = historical_df.sort_values('date')\n \n # Convert date to datetime for easier manipulation\n historical_df['date'] = pd.to_datetime(historical_df['date'])\n \n # Prepare the result dataframe\n all_data = []\n \n # Process each fuel type separately\n for fuel_type in historical_df['fuel'].unique():\n fuel_data = historical_df[historical_df['fuel'] == fuel_type].copy()\n \n # Create numeric representation of dates for regression (days since first date)\n min_date = fuel_data['date'].min()\n fuel_data['days_since_start'] = (fuel_data['date'] - min_date).dt.days\n \n # Prepare training data\n X = fuel_data[['days_since_start']].values\n y = fuel_data['avg_price'].values\n \n # Train polynomial regression model (degree 2 for non-linear trends)\n model = make_pipeline(PolynomialFeatures(degree=2), LinearRegression())\n model.fit(X, y)\n \n # Add original data with 'original' label\n fuel_data_original = fuel_data[['date', 'avg_price']].copy()\n fuel_data_original['fuel'] = fuel_type\n fuel_data_original['is_predicted'] = 'original'\n all_data.append(fuel_data_original[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate regression values for historical dates\n regression_prices = model.predict(X)\n fuel_data_regression = fuel_data[['date']].copy()\n fuel_data_regression['fuel'] = fuel_type\n fuel_data_regression['avg_price'] = regression_prices\n fuel_data_regression['is_predicted'] = 'regression'\n all_data.append(fuel_data_regression[['date', 'fuel', 'avg_price', 'is_predicted']])\n \n # Generate forecast for next 5 years\n max_date = fuel_data['date'].max()\n future_dates = pd.date_range(start=max_date + pd.Timedelta(days=7), periods=260, freq='W')\n future_days = (future_dates - min_date).days.values.reshape(-1, 1)\n \n future_prices = model.predict(future_days)\n \n forecast_df = pd.DataFrame({\n 'date': future_dates,\n 'fuel': fuel_type,\n 'avg_price': future_prices,\n 'is_predicted': 'forecasting'\n })\n all_data.append(forecast_df)\n \n # Combine all data\n transformed_df = pd.concat(all_data, ignore_index=True)\n transformed_df = transformed_df.sort_values(['fuel', 'date'])\n \n # Convert date back to string format for output\n transformed_df['date'] = transformed_df['date'].dt.strftime('%Y-%m-%d')\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThis code performs **price trend analysis and forecasting** for different fuel types:\n\n1. **Aggregates** historical gas prices by calculating the **mean price** across all **grades** and **formulations** for each **date** and **fuel** type\n2. **Prepares** time series data by converting **dates** to datetime format and creating a **days_since_start** numeric variable (days elapsed since the first recorded date)\n3. **Trains** a **polynomial regression model** (degree 2) separately for each **fuel type** to capture non-linear price trends over time\n4. **Generates** three types of price records for each fuel:\n - **Original**: actual historical average prices with label `'original'`\n - **Regression**: model-fitted prices for historical dates with label `'regression'`\n - **Forecasting**: predicted prices for the **next 5 years** (260 weekly periods) with label `'forecasting'`\n5. **Combines** all records and sorts by **fuel** type and **date**\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"days_since_start\",\n \"explanation\": \"A numeric time variable representing the number of days elapsed since the first recorded date in the dataset. This transforms calendar dates into a continuous numeric scale suitable for regression modeling: \\\\( \\\\text{days\\\\_since\\\\_start} = (\\\\text{current\\\\_date} - \\\\text{min\\\\_date}) \\\\)\"\n },\n {\n \"field\": \"is_predicted\",\n \"explanation\": \"A categorical label indicating the source and nature of the price data: 'original' for actual historical observations, 'regression' for model-fitted values on historical dates (representing the polynomial trend), and 'forecasting' for future price predictions beyond the observed data range.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis models fuel price trends using **polynomial regression (degree 2)** to capture non-linear patterns in price evolution over time. The model treats time (days since start) as the independent variable and average price as the dependent variable, fitted separately for each fuel type. The quadratic polynomial allows the model to capture acceleration or deceleration in price trends (e.g., prices rising faster over time or stabilizing). Alternative approaches could include: **ARIMA models** for capturing autocorrelation and seasonality, **exponential smoothing** for weighted recent observations, **Prophet** for handling multiple seasonality patterns and holidays, or **LSTM neural networks** for complex non-linear temporal dependencies.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}], "charts": [{"id": "chart-1760745227133", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--date"}, "y": {"fieldID": "concept-avg_price-1760744859365"}, "color": {"fieldID": "concept-is_predicted-1760745153175", "sortBy": "[\"original\",\"regression\",\"forecasting\"]"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "original--weekly_gas_prices--fuel"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-22", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760745149814", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--date"}, "y": {"fieldID": "concept-avg_price-1760744859365"}, "color": {"fieldID": "concept-is_predicted-1760745153175", "sortBy": "[\"original\",\"regression\",\"forecasting\"]"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "original--weekly_gas_prices--fuel"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-34", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760744944490", "chartType": "Grouped Bar Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--fuel"}, "y": {"fieldID": "concept-coefficient_of_variation-1760744946001-0.1428610684738313"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}, "group": {"fieldID": "concept-period-1760744946001-0.2526720867029991", "sortBy": "[\"Pre-2000 (1990-1999)\",\"Post-2000 (2000-2025)\"]"}}, "tableRef": "table-937785", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760744923768", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--date"}, "y": {"fieldID": "concept-absolute_change-1760744928850-0.13994508966754027"}, "color": {"fieldID": "original--weekly_gas_prices--fuel"}, "opacity": {}, "column": {"fieldID": "original--weekly_gas_prices--fuel"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-922023", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760744910486", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--date"}, "y": {"fieldID": "concept-price_premium-1760744912591"}, "color": {"fieldID": "original--weekly_gas_prices--grade", "sortBy": "[\"all\",\"midgrade\",\"premium\"]"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "original--weekly_gas_prices--fuel"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-906894", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760744903250", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--date"}, "y": {"fieldID": "concept-avg_price-1760744859365"}, "color": {"fieldID": "original--weekly_gas_prices--fuel"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "original--weekly_gas_prices--fuel"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-904593", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760745061868", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--weekly_gas_prices--date"}, "y": {"fieldID": "concept-percentage_change-1760744928850-0.05895473410098917"}, "color": {"fieldID": "original--weekly_gas_prices--fuel"}, "opacity": {}, "column": {"fieldID": "original--weekly_gas_prices--fuel"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-922023", "saved": false, "source": "user", "unread": false}], "conceptShelfItems": [{"id": "concept-is_predicted-1760745153175", "name": "is_predicted", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-period-1760744946001-0.2526720867029991", "name": "period", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-std_dev-1760744946001-0.8917004422728384", "name": "std_dev", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-coefficient_of_variation-1760744946001-0.1428610684738313", "name": "coefficient_of_variation", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-current_price-1760744928850-0.34299289766164665", "name": "current_price", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-yoy_price-1760744928850-0.04566871507692338", "name": "yoy_price", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-absolute_change-1760744928850-0.13994508966754027", "name": "absolute_change", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-percentage_change-1760744928850-0.05895473410098917", "name": "percentage_change", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-price_premium-1760744912591", "name": "price_premium", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-avg_price-1760744859365", "name": "avg_price", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-avg_price-1760744857739-0.586061332977602", "name": "avg_price", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "original--weekly_gas_prices--date", "name": "date", "type": "date", "source": "original", "description": "", "tableRef": "weekly_gas_prices"}, {"id": "original--weekly_gas_prices--fuel", "name": "fuel", "type": "string", "source": "original", "description": "", "tableRef": "weekly_gas_prices"}, {"id": "original--weekly_gas_prices--grade", "name": "grade", "type": "string", "source": "original", "description": "", "tableRef": "weekly_gas_prices"}, {"id": "original--weekly_gas_prices--formulation", "name": "formulation", "type": "string", "source": "original", "description": "", "tableRef": "weekly_gas_prices"}, {"id": "original--weekly_gas_prices--price", "name": "price", "type": "number", "source": "original", "description": "", "tableRef": "weekly_gas_prices"}], "messages": [{"timestamp": 1760830949676, "type": "success", "component": "data formulator", "value": "Successfully loaded Gas Prices"}], "displayedMessageIdx": 0, "viewMode": "report", "chartSynthesisInProgress": [], "config": {"formulateTimeoutSeconds": 60, "maxRepairAttempts": 1, "defaultChartWidth": 300, "defaultChartHeight": 300}, "dataCleanBlocks": [], "cleanInProgress": false, "generatedReports": [{"id": "report-1760831021256-7310", "content": "# Fuel Price Volatility and Premium Trends: A Three-Decade Analysis\n\nThe U.S. fuel market has undergone dramatic shifts in pricing dynamics over the past 35 years, with post-2000 prices showing significantly higher volatility and expanding premium differentials across gasoline grades.\n\n[IMAGE(chart-1760744944490)]\n\n**Price volatility has intensified dramatically in the modern era.** The coefficient of variation—a measure of price instability relative to average costs—reveals that both diesel and gasoline experienced roughly **four-fold increases** in volatility post-2000. Diesel prices showed particularly heightened instability with a coefficient of variation of 33.48% (2000-2025) compared to just 7.65% in the 1990s. This shift reflects increased sensitivity to global crude oil market fluctuations, geopolitical tensions, and refining capacity constraints. Average prices also more than doubled across both fuel types, with diesel climbing from $1.14 to $2.93 per gallon.\n\n[IMAGE(chart-1760744910486)]\n\n**Premium gasoline pricing has steadily diverged from regular grades over time.** The price premium commanded by higher-octane gasoline grades has expanded substantially, with premium gasoline reaching spreads of **$0.90-$0.95 above regular** by 2025—nearly five times the $0.18-$0.20 premium observed in the mid-1990s. Midgrade gasoline follows a similar trajectory, reaching $0.55-$0.60 premiums. This widening gap suggests evolving refining economics, increased consumer segmentation, and potentially higher margins on premium products.\n\n**In summary**, the fuel market has transitioned from relative price stability in the 1990s to an era characterized by substantial volatility and expanding price differentiation. Consumers and businesses face both higher absolute costs and greater uncertainty in budgeting for fuel expenses. Key questions for further investigation include: What specific market mechanisms drive the premium expansion? How do regional variations affect these national trends? What role do alternative fuels play in moderating future volatility?", "style": "executive summary", "selectedChartIds": ["chart-1760744944490", "chart-1760744910486"], "createdAt": 1760831035718, "status": "completed", "title": "Fuel Price Volatility and Premium Trends: A Three-Decade Analysis", "anchorChartId": "chart-1760744944490"}, {"id": "report-1760830985775-9885", "content": "# Fuel Prices Set to Continue Rising Through 2030\n\nHistorical data reveals a clear upward trend in both diesel and gasoline prices since the 1990s. Our polynomial regression model shows prices have increased nearly sixfold over three decades, with notable volatility around 2008 and 2022 reflecting global economic shocks.\n\n[IMAGE(chart-1760745227133)]\n\nThe forecast suggests this upward trajectory will persist, with both fuel types projected to reach approximately $3.80-$3.90 per gallon by 2030. While short-term fluctuations are inevitable, the long-term trend remains consistently upward.\n\n**In summary**, fuel prices have demonstrated sustained growth over 35 years and are expected to continue rising. Consumers and businesses should anticipate higher energy costs in coming years and consider efficiency improvements or alternative energy sources.", "style": "short note", "selectedChartIds": ["chart-1760745227133"], "createdAt": 1760830993075, "status": "completed", "title": "Fuel Prices Set to Continue Rising Through 2030", "anchorChartId": "chart-1760745227133"}], "currentReport": {"id": "report-1760750575650-2619", "content": "# Hollywood's Billion-Dollar Hitmakers\n\n*Avatar* stands alone—earning over $2.5B in profit, dwarfing all competition. Action and Adventure films dominate the most profitable titles, with franchises like *Jurassic Park*, *The Dark Knight*, and *Lord of the Rings* proving blockbuster formulas work.\n\n\"Chart\"\n\nSteven Spielberg leads all directors with $7.2B in total profit across his career, showcasing remarkable consistency with hits spanning decades—from *Jurassic Park* to *E.T.* His nearest competitors trail by billions, underlining his unmatched commercial impact.\n\n\"Chart\"\n\n**In summary**, mega-budget Action and Adventure films generate extraordinary returns when they succeed, and a handful of elite directors—led by Spielberg—have mastered the formula for sustained box office dominance.", "style": "short note", "selectedChartIds": ["chart-1760743347871", "chart-1760743768741"], "chartImages": {}, "createdAt": 1760750584189, "title": "Report - 10/17/2025"}, "activeChallenges": [], "_persist": {"version": -1, "rehydrated": true}, "draftNodes": [], "focusedId": {"type": "report", "reportId": "report-1760831021256-7310"}} \ No newline at end of file diff --git a/public/df_global_energy.json b/public/df_global_energy.json index e2ca671c..3c678f94 100644 --- a/public/df_global_energy.json +++ b/public/df_global_energy.json @@ -1 +1 @@ -{"tables":[{"id":"global-energy-20-small.csv","displayId":"energy-co2","names":["Year","Entity","Value_co2_emissions_kt_by_country","Electricity from fossil fuels (TWh)","Electricity from nuclear (TWh)","Electricity from renewables (TWh)"],"metadata":{"Year":{"type":"number","semanticType":"Year"},"Entity":{"type":"string","semanticType":"Location"},"Value_co2_emissions_kt_by_country":{"type":"number","semanticType":"Number"},"Electricity from fossil fuels (TWh)":{"type":"number","semanticType":"Number"},"Electricity from nuclear (TWh)":{"type":"number","semanticType":"Number"},"Electricity from renewables (TWh)":{"type":"number","semanticType":"Number"}},"rows":[{"Year":2000,"Entity":"Australia","Value_co2_emissions_kt_by_country":339450,"Electricity from fossil fuels (TWh)":181.05,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":17.11},{"Year":2001,"Entity":"Australia","Value_co2_emissions_kt_by_country":345640,"Electricity from fossil fuels (TWh)":194.33,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":17.4},{"Year":2002,"Entity":"Australia","Value_co2_emissions_kt_by_country":353369.9951,"Electricity from fossil fuels (TWh)":197.29,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":17.35},{"Year":2003,"Entity":"Australia","Value_co2_emissions_kt_by_country":352579.9866,"Electricity from fossil fuels (TWh)":195.13,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":18.5},{"Year":2004,"Entity":"Australia","Value_co2_emissions_kt_by_country":365809.9976,"Electricity from fossil fuels (TWh)":203.66,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":19.41},{"Year":2005,"Entity":"Australia","Value_co2_emissions_kt_by_country":370089.9963,"Electricity from fossil fuels (TWh)":195.95,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":19.75},{"Year":2006,"Entity":"Australia","Value_co2_emissions_kt_by_country":375489.9902,"Electricity from fossil fuels (TWh)":198.72,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":21.19},{"Year":2007,"Entity":"Australia","Value_co2_emissions_kt_by_country":385750,"Electricity from fossil fuels (TWh)":208.59,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":20.93},{"Year":2008,"Entity":"Australia","Value_co2_emissions_kt_by_country":388940.0024,"Electricity from fossil fuels (TWh)":211.06,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":18.49},{"Year":2009,"Entity":"Australia","Value_co2_emissions_kt_by_country":395290.0085,"Electricity from fossil fuels (TWh)":216.42,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":18.32},{"Year":2010,"Entity":"Australia","Value_co2_emissions_kt_by_country":387540.0085,"Electricity from fossil fuels (TWh)":212.5,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":21.13},{"Year":2011,"Entity":"Australia","Value_co2_emissions_kt_by_country":386380.0049,"Electricity from fossil fuels (TWh)":213.56,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":27.33},{"Year":2012,"Entity":"Australia","Value_co2_emissions_kt_by_country":386970.0012,"Electricity from fossil fuels (TWh)":206.75,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":26.63},{"Year":2013,"Entity":"Australia","Value_co2_emissions_kt_by_country":380279.9988,"Electricity from fossil fuels (TWh)":195.78,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":34.2},{"Year":2014,"Entity":"Australia","Value_co2_emissions_kt_by_country":371630.0049,"Electricity from fossil fuels (TWh)":205.46,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":36.15},{"Year":2015,"Entity":"Australia","Value_co2_emissions_kt_by_country":377799.9878,"Electricity from fossil fuels (TWh)":197.72,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":33.12},{"Year":2016,"Entity":"Australia","Value_co2_emissions_kt_by_country":384989.9902,"Electricity from fossil fuels (TWh)":207.66,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":38.41},{"Year":2017,"Entity":"Australia","Value_co2_emissions_kt_by_country":389160.0037,"Electricity from fossil fuels (TWh)":209.14,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":40.77},{"Year":2018,"Entity":"Australia","Value_co2_emissions_kt_by_country":387070.0073,"Electricity from fossil fuels (TWh)":207.45,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":42.93},{"Year":2019,"Entity":"Australia","Value_co2_emissions_kt_by_country":386529.9988,"Electricity from fossil fuels (TWh)":196.45,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":53.41},{"Year":2020,"Entity":"Australia","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":186.92,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":63.99},{"Year":2000,"Entity":"Brazil","Value_co2_emissions_kt_by_country":313670,"Electricity from fossil fuels (TWh)":28.87,"Electricity from nuclear (TWh)":4.94,"Electricity from renewables (TWh)":308.77},{"Year":2001,"Entity":"Brazil","Value_co2_emissions_kt_by_country":319380,"Electricity from fossil fuels (TWh)":35.19,"Electricity from nuclear (TWh)":14.27,"Electricity from renewables (TWh)":273.71},{"Year":2002,"Entity":"Brazil","Value_co2_emissions_kt_by_country":317760.0098,"Electricity from fossil fuels (TWh)":33.5,"Electricity from nuclear (TWh)":13.84,"Electricity from renewables (TWh)":292.95},{"Year":2003,"Entity":"Brazil","Value_co2_emissions_kt_by_country":310809.9976,"Electricity from fossil fuels (TWh)":31.62,"Electricity from nuclear (TWh)":13.4,"Electricity from renewables (TWh)":313.88},{"Year":2004,"Entity":"Brazil","Value_co2_emissions_kt_by_country":328519.989,"Electricity from fossil fuels (TWh)":40.14,"Electricity from nuclear (TWh)":11.6,"Electricity from renewables (TWh)":329.43},{"Year":2005,"Entity":"Brazil","Value_co2_emissions_kt_by_country":331690.0024,"Electricity from fossil fuels (TWh)":39.56,"Electricity from nuclear (TWh)":9.2,"Electricity from renewables (TWh)":346.96},{"Year":2006,"Entity":"Brazil","Value_co2_emissions_kt_by_country":335619.9951,"Electricity from fossil fuels (TWh)":39.4,"Electricity from nuclear (TWh)":12.98,"Electricity from renewables (TWh)":359.55},{"Year":2007,"Entity":"Brazil","Value_co2_emissions_kt_by_country":352559.9976,"Electricity from fossil fuels (TWh)":37.64,"Electricity from nuclear (TWh)":11.65,"Electricity from renewables (TWh)":387.88},{"Year":2008,"Entity":"Brazil","Value_co2_emissions_kt_by_country":373630.0049,"Electricity from fossil fuels (TWh)":55.87,"Electricity from nuclear (TWh)":13.21,"Electricity from renewables (TWh)":385.61},{"Year":2009,"Entity":"Brazil","Value_co2_emissions_kt_by_country":350000,"Electricity from fossil fuels (TWh)":36.32,"Electricity from nuclear (TWh)":12.22,"Electricity from renewables (TWh)":410.13},{"Year":2010,"Entity":"Brazil","Value_co2_emissions_kt_by_country":397929.9927,"Electricity from fossil fuels (TWh)":61.02,"Electricity from nuclear (TWh)":13.77,"Electricity from renewables (TWh)":435.99},{"Year":2011,"Entity":"Brazil","Value_co2_emissions_kt_by_country":418309.9976,"Electricity from fossil fuels (TWh)":50.27,"Electricity from nuclear (TWh)":14.8,"Electricity from renewables (TWh)":462.32},{"Year":2012,"Entity":"Brazil","Value_co2_emissions_kt_by_country":454230.011,"Electricity from fossil fuels (TWh)":77.21,"Electricity from nuclear (TWh)":15.17,"Electricity from renewables (TWh)":454.78},{"Year":2013,"Entity":"Brazil","Value_co2_emissions_kt_by_country":486839.9963,"Electricity from fossil fuels (TWh)":112,"Electricity from nuclear (TWh)":14.65,"Electricity from renewables (TWh)":436.84},{"Year":2014,"Entity":"Brazil","Value_co2_emissions_kt_by_country":511619.9951,"Electricity from fossil fuels (TWh)":136.58,"Electricity from nuclear (TWh)":14.46,"Electricity from renewables (TWh)":430.82},{"Year":2015,"Entity":"Brazil","Value_co2_emissions_kt_by_country":485339.9963,"Electricity from fossil fuels (TWh)":128.85,"Electricity from nuclear (TWh)":13.91,"Electricity from renewables (TWh)":428.81},{"Year":2016,"Entity":"Brazil","Value_co2_emissions_kt_by_country":447079.9866,"Electricity from fossil fuels (TWh)":93.06,"Electricity from nuclear (TWh)":14.97,"Electricity from renewables (TWh)":463.37},{"Year":2017,"Entity":"Brazil","Value_co2_emissions_kt_by_country":456489.9902,"Electricity from fossil fuels (TWh)":101.9,"Electricity from nuclear (TWh)":14.86,"Electricity from renewables (TWh)":464.4},{"Year":2018,"Entity":"Brazil","Value_co2_emissions_kt_by_country":433989.9902,"Electricity from fossil fuels (TWh)":86.69,"Electricity from nuclear (TWh)":14.79,"Electricity from renewables (TWh)":492.66},{"Year":2019,"Entity":"Brazil","Value_co2_emissions_kt_by_country":434299.9878,"Electricity from fossil fuels (TWh)":90.91,"Electricity from nuclear (TWh)":15.16,"Electricity from renewables (TWh)":512.59},{"Year":2020,"Entity":"Brazil","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":81.15,"Electricity from nuclear (TWh)":13.21,"Electricity from renewables (TWh)":520.01},{"Year":2000,"Entity":"Canada","Value_co2_emissions_kt_by_country":514220,"Electricity from fossil fuels (TWh)":155.56,"Electricity from nuclear (TWh)":69.16,"Electricity from renewables (TWh)":363.7},{"Year":2001,"Entity":"Canada","Value_co2_emissions_kt_by_country":506620,"Electricity from fossil fuels (TWh)":159.93,"Electricity from nuclear (TWh)":72.86,"Electricity from renewables (TWh)":339.58},{"Year":2002,"Entity":"Canada","Value_co2_emissions_kt_by_country":524349.9756,"Electricity from fossil fuels (TWh)":155.12,"Electricity from nuclear (TWh)":71.75,"Electricity from renewables (TWh)":357.06},{"Year":2003,"Entity":"Canada","Value_co2_emissions_kt_by_country":544539.978,"Electricity from fossil fuels (TWh)":157.35,"Electricity from nuclear (TWh)":71.15,"Electricity from renewables (TWh)":343.88},{"Year":2004,"Entity":"Canada","Value_co2_emissions_kt_by_country":536419.9829,"Electricity from fossil fuels (TWh)":148.86,"Electricity from nuclear (TWh)":85.87,"Electricity from renewables (TWh)":347.68},{"Year":2005,"Entity":"Canada","Value_co2_emissions_kt_by_country":549030.0293,"Electricity from fossil fuels (TWh)":150.78,"Electricity from nuclear (TWh)":86.83,"Electricity from renewables (TWh)":368.86},{"Year":2006,"Entity":"Canada","Value_co2_emissions_kt_by_country":540530.0293,"Electricity from fossil fuels (TWh)":139.71,"Electricity from nuclear (TWh)":92.44,"Electricity from renewables (TWh)":360.48},{"Year":2007,"Entity":"Canada","Value_co2_emissions_kt_by_country":571630.0049,"Electricity from fossil fuels (TWh)":149.36,"Electricity from nuclear (TWh)":88.19,"Electricity from renewables (TWh)":375.42},{"Year":2008,"Entity":"Canada","Value_co2_emissions_kt_by_country":550469.9707,"Electricity from fossil fuels (TWh)":141.33,"Electricity from nuclear (TWh)":88.3,"Electricity from renewables (TWh)":385.21},{"Year":2009,"Entity":"Canada","Value_co2_emissions_kt_by_country":521320.0073,"Electricity from fossil fuels (TWh)":129.76,"Electricity from nuclear (TWh)":85.13,"Electricity from renewables (TWh)":380.24},{"Year":2010,"Entity":"Canada","Value_co2_emissions_kt_by_country":537010.0098,"Electricity from fossil fuels (TWh)":130.08,"Electricity from nuclear (TWh)":85.53,"Electricity from renewables (TWh)":366.21},{"Year":2011,"Entity":"Canada","Value_co2_emissions_kt_by_country":549289.978,"Electricity from fossil fuels (TWh)":131.3,"Electricity from nuclear (TWh)":88.29,"Electricity from renewables (TWh)":391.95},{"Year":2012,"Entity":"Canada","Value_co2_emissions_kt_by_country":546210.022,"Electricity from fossil fuels (TWh)":124.2,"Electricity from nuclear (TWh)":89.49,"Electricity from renewables (TWh)":398.58},{"Year":2013,"Entity":"Canada","Value_co2_emissions_kt_by_country":555659.9731,"Electricity from fossil fuels (TWh)":122.87,"Electricity from nuclear (TWh)":97.58,"Electricity from renewables (TWh)":417.28},{"Year":2014,"Entity":"Canada","Value_co2_emissions_kt_by_country":561679.9927,"Electricity from fossil fuels (TWh)":122.75,"Electricity from nuclear (TWh)":101.21,"Electricity from renewables (TWh)":412.13},{"Year":2015,"Entity":"Canada","Value_co2_emissions_kt_by_country":558700.0122,"Electricity from fossil fuels (TWh)":125.7,"Electricity from nuclear (TWh)":96.05,"Electricity from renewables (TWh)":417.2},{"Year":2016,"Entity":"Canada","Value_co2_emissions_kt_by_country":556830.0171,"Electricity from fossil fuels (TWh)":122.35,"Electricity from nuclear (TWh)":95.69,"Electricity from renewables (TWh)":426.84},{"Year":2017,"Entity":"Canada","Value_co2_emissions_kt_by_country":568080.0171,"Electricity from fossil fuels (TWh)":113.7,"Electricity from nuclear (TWh)":95.57,"Electricity from renewables (TWh)":435.43},{"Year":2018,"Entity":"Canada","Value_co2_emissions_kt_by_country":580090.0269,"Electricity from fossil fuels (TWh)":112.47,"Electricity from nuclear (TWh)":95.03,"Electricity from renewables (TWh)":428.39},{"Year":2019,"Entity":"Canada","Value_co2_emissions_kt_by_country":580210.022,"Electricity from fossil fuels (TWh)":110.65,"Electricity from nuclear (TWh)":95.47,"Electricity from renewables (TWh)":421.8},{"Year":2020,"Entity":"Canada","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":102.19,"Electricity from nuclear (TWh)":92.65,"Electricity from renewables (TWh)":429.24},{"Year":2000,"Entity":"China","Value_co2_emissions_kt_by_country":3346530,"Electricity from fossil fuels (TWh)":1113.3,"Electricity from nuclear (TWh)":16.74,"Electricity from renewables (TWh)":225.56},{"Year":2001,"Entity":"China","Value_co2_emissions_kt_by_country":3529080,"Electricity from fossil fuels (TWh)":1182.59,"Electricity from nuclear (TWh)":17.47,"Electricity from renewables (TWh)":280.73},{"Year":2002,"Entity":"China","Value_co2_emissions_kt_by_country":3810060.059,"Electricity from fossil fuels (TWh)":1337.46,"Electricity from nuclear (TWh)":25.13,"Electricity from renewables (TWh)":291.41},{"Year":2003,"Entity":"China","Value_co2_emissions_kt_by_country":4415910.156,"Electricity from fossil fuels (TWh)":1579.96,"Electricity from nuclear (TWh)":43.34,"Electricity from renewables (TWh)":287.28},{"Year":2004,"Entity":"China","Value_co2_emissions_kt_by_country":5124819.824,"Electricity from fossil fuels (TWh)":1795.41,"Electricity from nuclear (TWh)":50.47,"Electricity from renewables (TWh)":357.43},{"Year":2005,"Entity":"China","Value_co2_emissions_kt_by_country":5824629.883,"Electricity from fossil fuels (TWh)":2042.8,"Electricity from nuclear (TWh)":53.09,"Electricity from renewables (TWh)":404.37},{"Year":2006,"Entity":"China","Value_co2_emissions_kt_by_country":6437470.215,"Electricity from fossil fuels (TWh)":2364.16,"Electricity from nuclear (TWh)":54.84,"Electricity from renewables (TWh)":446.72},{"Year":2007,"Entity":"China","Value_co2_emissions_kt_by_country":6993180.176,"Electricity from fossil fuels (TWh)":2718.7,"Electricity from nuclear (TWh)":62.13,"Electricity from renewables (TWh)":500.71},{"Year":2008,"Entity":"China","Value_co2_emissions_kt_by_country":7199600.098,"Electricity from fossil fuels (TWh)":2762.29,"Electricity from nuclear (TWh)":68.39,"Electricity from renewables (TWh)":665.08},{"Year":2009,"Entity":"China","Value_co2_emissions_kt_by_country":7719069.824,"Electricity from fossil fuels (TWh)":2980.2,"Electricity from nuclear (TWh)":70.05,"Electricity from renewables (TWh)":664.39},{"Year":2010,"Entity":"China","Value_co2_emissions_kt_by_country":8474919.922,"Electricity from fossil fuels (TWh)":3326.19,"Electricity from nuclear (TWh)":74.74,"Electricity from renewables (TWh)":786.38},{"Year":2011,"Entity":"China","Value_co2_emissions_kt_by_country":9282549.805,"Electricity from fossil fuels (TWh)":3811.77,"Electricity from nuclear (TWh)":87.2,"Electricity from renewables (TWh)":792.38},{"Year":2012,"Entity":"China","Value_co2_emissions_kt_by_country":9541870.117,"Electricity from fossil fuels (TWh)":3869.38,"Electricity from nuclear (TWh)":98.32,"Electricity from renewables (TWh)":999.56},{"Year":2013,"Entity":"China","Value_co2_emissions_kt_by_country":9984570.313,"Electricity from fossil fuels (TWh)":4203.77,"Electricity from nuclear (TWh)":111.5,"Electricity from renewables (TWh)":1093.37},{"Year":2014,"Entity":"China","Value_co2_emissions_kt_by_country":10006669.92,"Electricity from fossil fuels (TWh)":4345.86,"Electricity from nuclear (TWh)":133.22,"Electricity from renewables (TWh)":1289.23},{"Year":2015,"Entity":"China","Value_co2_emissions_kt_by_country":9861099.609,"Electricity from fossil fuels (TWh)":4222.76,"Electricity from nuclear (TWh)":171.38,"Electricity from renewables (TWh)":1393.66},{"Year":2016,"Entity":"China","Value_co2_emissions_kt_by_country":9874660.156,"Electricity from fossil fuels (TWh)":4355,"Electricity from nuclear (TWh)":213.18,"Electricity from renewables (TWh)":1522.79},{"Year":2017,"Entity":"China","Value_co2_emissions_kt_by_country":10096009.77,"Electricity from fossil fuels (TWh)":4643.1,"Electricity from nuclear (TWh)":248.1,"Electricity from renewables (TWh)":1667.06},{"Year":2018,"Entity":"China","Value_co2_emissions_kt_by_country":10502929.69,"Electricity from fossil fuels (TWh)":4990.28,"Electricity from nuclear (TWh)":295,"Electricity from renewables (TWh)":1835.32},{"Year":2019,"Entity":"China","Value_co2_emissions_kt_by_country":10707219.73,"Electricity from fossil fuels (TWh)":5098.22,"Electricity from nuclear (TWh)":348.7,"Electricity from renewables (TWh)":2014.57},{"Year":2020,"Entity":"China","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":5184.13,"Electricity from nuclear (TWh)":366.2,"Electricity from renewables (TWh)":2184.94},{"Year":2000,"Entity":"France","Value_co2_emissions_kt_by_country":373120,"Electricity from fossil fuels (TWh)":50.61,"Electricity from nuclear (TWh)":415.16,"Electricity from renewables (TWh)":67.83},{"Year":2001,"Entity":"France","Value_co2_emissions_kt_by_country":376730,"Electricity from fossil fuels (TWh)":46.48,"Electricity from nuclear (TWh)":421.08,"Electricity from renewables (TWh)":76.09},{"Year":2002,"Entity":"France","Value_co2_emissions_kt_by_country":371019.989,"Electricity from fossil fuels (TWh)":52.67,"Electricity from nuclear (TWh)":436.76,"Electricity from renewables (TWh)":62.69},{"Year":2003,"Entity":"France","Value_co2_emissions_kt_by_country":376709.9915,"Electricity from fossil fuels (TWh)":57.38,"Electricity from nuclear (TWh)":441.07,"Electricity from renewables (TWh)":61.47},{"Year":2004,"Entity":"France","Value_co2_emissions_kt_by_country":377790.0085,"Electricity from fossil fuels (TWh)":56.53,"Electricity from nuclear (TWh)":448.24,"Electricity from renewables (TWh)":62.42},{"Year":2005,"Entity":"France","Value_co2_emissions_kt_by_country":380660.0037,"Electricity from fossil fuels (TWh)":63.35,"Electricity from nuclear (TWh)":451.53,"Electricity from renewables (TWh)":54.98},{"Year":2006,"Entity":"France","Value_co2_emissions_kt_by_country":371549.9878,"Electricity from fossil fuels (TWh)":56.9,"Electricity from nuclear (TWh)":450.19,"Electricity from renewables (TWh)":60.91},{"Year":2007,"Entity":"France","Value_co2_emissions_kt_by_country":362829.9866,"Electricity from fossil fuels (TWh)":58.18,"Electricity from nuclear (TWh)":439.73,"Electricity from renewables (TWh)":64.3},{"Year":2008,"Entity":"France","Value_co2_emissions_kt_by_country":357989.9902,"Electricity from fossil fuels (TWh)":55.57,"Electricity from nuclear (TWh)":439.45,"Electricity from renewables (TWh)":72.33},{"Year":2009,"Entity":"France","Value_co2_emissions_kt_by_country":343730.011,"Electricity from fossil fuels (TWh)":51.32,"Electricity from nuclear (TWh)":409.74,"Electricity from renewables (TWh)":68.15},{"Year":2010,"Entity":"France","Value_co2_emissions_kt_by_country":347779.9988,"Electricity from fossil fuels (TWh)":57.63,"Electricity from nuclear (TWh)":428.52,"Electricity from renewables (TWh)":76.68},{"Year":2011,"Entity":"France","Value_co2_emissions_kt_by_country":335140.0146,"Electricity from fossil fuels (TWh)":58.99,"Electricity from nuclear (TWh)":442.39,"Electricity from renewables (TWh)":66.02},{"Year":2012,"Entity":"France","Value_co2_emissions_kt_by_country":338420.0134,"Electricity from fossil fuels (TWh)":56.42,"Electricity from nuclear (TWh)":425.41,"Electricity from renewables (TWh)":85.25},{"Year":2013,"Entity":"France","Value_co2_emissions_kt_by_country":338559.9976,"Electricity from fossil fuels (TWh)":53.35,"Electricity from nuclear (TWh)":423.68,"Electricity from renewables (TWh)":99.42},{"Year":2014,"Entity":"France","Value_co2_emissions_kt_by_country":306100.0061,"Electricity from fossil fuels (TWh)":35.68,"Electricity from nuclear (TWh)":436.48,"Electricity from renewables (TWh)":94.03},{"Year":2015,"Entity":"France","Value_co2_emissions_kt_by_country":311299.9878,"Electricity from fossil fuels (TWh)":44.65,"Electricity from nuclear (TWh)":437.43,"Electricity from renewables (TWh)":91.84},{"Year":2016,"Entity":"France","Value_co2_emissions_kt_by_country":313920.0134,"Electricity from fossil fuels (TWh)":56.45,"Electricity from nuclear (TWh)":403.2,"Electricity from renewables (TWh)":99},{"Year":2017,"Entity":"France","Value_co2_emissions_kt_by_country":317829.9866,"Electricity from fossil fuels (TWh)":65.09,"Electricity from nuclear (TWh)":398.36,"Electricity from renewables (TWh)":92.63},{"Year":2018,"Entity":"France","Value_co2_emissions_kt_by_country":307049.9878,"Electricity from fossil fuels (TWh)":49.27,"Electricity from nuclear (TWh)":412.94,"Electricity from renewables (TWh)":113.62},{"Year":2019,"Entity":"France","Value_co2_emissions_kt_by_country":300519.989,"Electricity from fossil fuels (TWh)":53.5,"Electricity from nuclear (TWh)":399.01,"Electricity from renewables (TWh)":113.21},{"Year":2020,"Entity":"France","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":48.14,"Electricity from nuclear (TWh)":353.83,"Electricity from renewables (TWh)":125.28},{"Year":2000,"Entity":"Germany","Value_co2_emissions_kt_by_country":830280,"Electricity from fossil fuels (TWh)":367.22,"Electricity from nuclear (TWh)":169.61,"Electricity from renewables (TWh)":35.47},{"Year":2001,"Entity":"Germany","Value_co2_emissions_kt_by_country":847680,"Electricity from fossil fuels (TWh)":372.69,"Electricity from nuclear (TWh)":171.3,"Electricity from renewables (TWh)":37.9},{"Year":2002,"Entity":"Germany","Value_co2_emissions_kt_by_country":833380.0049,"Electricity from fossil fuels (TWh)":372.64,"Electricity from nuclear (TWh)":164.84,"Electricity from renewables (TWh)":44.48},{"Year":2003,"Entity":"Germany","Value_co2_emissions_kt_by_country":836789.978,"Electricity from fossil fuels (TWh)":390.81,"Electricity from nuclear (TWh)":165.06,"Electricity from renewables (TWh)":46.67},{"Year":2004,"Entity":"Germany","Value_co2_emissions_kt_by_country":821070.0073,"Electricity from fossil fuels (TWh)":385.24,"Electricity from nuclear (TWh)":167.07,"Electricity from renewables (TWh)":57.97},{"Year":2005,"Entity":"Germany","Value_co2_emissions_kt_by_country":802380.0049,"Electricity from fossil fuels (TWh)":386.96,"Electricity from nuclear (TWh)":163.05,"Electricity from renewables (TWh)":63.4},{"Year":2006,"Entity":"Germany","Value_co2_emissions_kt_by_country":814409.9731,"Electricity from fossil fuels (TWh)":390.03,"Electricity from nuclear (TWh)":167.27,"Electricity from renewables (TWh)":72.51},{"Year":2007,"Entity":"Germany","Value_co2_emissions_kt_by_country":783799.9878,"Electricity from fossil fuels (TWh)":402.4,"Electricity from nuclear (TWh)":140.53,"Electricity from renewables (TWh)":89.38},{"Year":2008,"Entity":"Germany","Value_co2_emissions_kt_by_country":789690.0024,"Electricity from fossil fuels (TWh)":390.43,"Electricity from nuclear (TWh)":148.49,"Electricity from renewables (TWh)":94.28},{"Year":2009,"Entity":"Germany","Value_co2_emissions_kt_by_country":734809.9976,"Electricity from fossil fuels (TWh)":358.07,"Electricity from nuclear (TWh)":134.93,"Electricity from renewables (TWh)":95.94},{"Year":2010,"Entity":"Germany","Value_co2_emissions_kt_by_country":773070.0073,"Electricity from fossil fuels (TWh)":378.9,"Electricity from nuclear (TWh)":140.56,"Electricity from renewables (TWh)":105.18},{"Year":2011,"Entity":"Germany","Value_co2_emissions_kt_by_country":746479.9805,"Electricity from fossil fuels (TWh)":373.16,"Electricity from nuclear (TWh)":107.97,"Electricity from renewables (TWh)":124.04},{"Year":2012,"Entity":"Germany","Value_co2_emissions_kt_by_country":760130.0049,"Electricity from fossil fuels (TWh)":377.89,"Electricity from nuclear (TWh)":99.46,"Electricity from renewables (TWh)":143.04},{"Year":2013,"Entity":"Germany","Value_co2_emissions_kt_by_country":776150.0244,"Electricity from fossil fuels (TWh)":381.52,"Electricity from nuclear (TWh)":97.29,"Electricity from renewables (TWh)":152.34},{"Year":2014,"Entity":"Germany","Value_co2_emissions_kt_by_country":736010.0098,"Electricity from fossil fuels (TWh)":360.28,"Electricity from nuclear (TWh)":97.13,"Electricity from renewables (TWh)":162.54},{"Year":2015,"Entity":"Germany","Value_co2_emissions_kt_by_country":742309.9976,"Electricity from fossil fuels (TWh)":359.99,"Electricity from nuclear (TWh)":91.79,"Electricity from renewables (TWh)":188.79},{"Year":2016,"Entity":"Germany","Value_co2_emissions_kt_by_country":747150.0244,"Electricity from fossil fuels (TWh)":368.67,"Electricity from nuclear (TWh)":84.63,"Electricity from renewables (TWh)":189.67},{"Year":2017,"Entity":"Germany","Value_co2_emissions_kt_by_country":732200.0122,"Electricity from fossil fuels (TWh)":353.37,"Electricity from nuclear (TWh)":76.32,"Electricity from renewables (TWh)":216.32},{"Year":2018,"Entity":"Germany","Value_co2_emissions_kt_by_country":707700.0122,"Electricity from fossil fuels (TWh)":334.65,"Electricity from nuclear (TWh)":76,"Electricity from renewables (TWh)":222.07},{"Year":2019,"Entity":"Germany","Value_co2_emissions_kt_by_country":657400.0244,"Electricity from fossil fuels (TWh)":284.09,"Electricity from nuclear (TWh)":75.07,"Electricity from renewables (TWh)":240.33},{"Year":2020,"Entity":"Germany","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":251.4,"Electricity from nuclear (TWh)":64.38,"Electricity from renewables (TWh)":251.48},{"Year":2000,"Entity":"India","Value_co2_emissions_kt_by_country":937860,"Electricity from fossil fuels (TWh)":475.35,"Electricity from nuclear (TWh)":15.77,"Electricity from renewables (TWh)":80.27},{"Year":2001,"Entity":"India","Value_co2_emissions_kt_by_country":953540,"Electricity from fossil fuels (TWh)":491.01,"Electricity from nuclear (TWh)":18.89,"Electricity from renewables (TWh)":76.19},{"Year":2002,"Entity":"India","Value_co2_emissions_kt_by_country":985450.0122,"Electricity from fossil fuels (TWh)":517.51,"Electricity from nuclear (TWh)":19.35,"Electricity from renewables (TWh)":72.78},{"Year":2003,"Entity":"India","Value_co2_emissions_kt_by_country":1011770.02,"Electricity from fossil fuels (TWh)":545.36,"Electricity from nuclear (TWh)":18.14,"Electricity from renewables (TWh)":74.63},{"Year":2004,"Entity":"India","Value_co2_emissions_kt_by_country":1085670.044,"Electricity from fossil fuels (TWh)":567.86,"Electricity from nuclear (TWh)":21.26,"Electricity from renewables (TWh)":109.2},{"Year":2005,"Entity":"India","Value_co2_emissions_kt_by_country":1136469.971,"Electricity from fossil fuels (TWh)":579.32,"Electricity from nuclear (TWh)":17.73,"Electricity from renewables (TWh)":107.47},{"Year":2006,"Entity":"India","Value_co2_emissions_kt_by_country":1215209.961,"Electricity from fossil fuels (TWh)":599.24,"Electricity from nuclear (TWh)":17.63,"Electricity from renewables (TWh)":127.56},{"Year":2007,"Entity":"India","Value_co2_emissions_kt_by_country":1336739.99,"Electricity from fossil fuels (TWh)":636.68,"Electricity from nuclear (TWh)":17.83,"Electricity from renewables (TWh)":141.75},{"Year":2008,"Entity":"India","Value_co2_emissions_kt_by_country":1424380.005,"Electricity from fossil fuels (TWh)":674.27,"Electricity from nuclear (TWh)":15.23,"Electricity from renewables (TWh)":138.91},{"Year":2009,"Entity":"India","Value_co2_emissions_kt_by_country":1564880.005,"Electricity from fossil fuels (TWh)":728.56,"Electricity from nuclear (TWh)":16.82,"Electricity from renewables (TWh)":134.33},{"Year":2010,"Entity":"India","Value_co2_emissions_kt_by_country":1659979.98,"Electricity from fossil fuels (TWh)":771.78,"Electricity from nuclear (TWh)":23.08,"Electricity from renewables (TWh)":142.61},{"Year":2011,"Entity":"India","Value_co2_emissions_kt_by_country":1756739.99,"Electricity from fossil fuels (TWh)":828.16,"Electricity from nuclear (TWh)":32.22,"Electricity from renewables (TWh)":173.62},{"Year":2012,"Entity":"India","Value_co2_emissions_kt_by_country":1909439.941,"Electricity from fossil fuels (TWh)":893.45,"Electricity from nuclear (TWh)":33.14,"Electricity from renewables (TWh)":165.25},{"Year":2013,"Entity":"India","Value_co2_emissions_kt_by_country":1972430.054,"Electricity from fossil fuels (TWh)":924.93,"Electricity from nuclear (TWh)":33.31,"Electricity from renewables (TWh)":187.9},{"Year":2014,"Entity":"India","Value_co2_emissions_kt_by_country":2147110.107,"Electricity from fossil fuels (TWh)":1025.29,"Electricity from nuclear (TWh)":34.69,"Electricity from renewables (TWh)":202.04},{"Year":2015,"Entity":"India","Value_co2_emissions_kt_by_country":2158020.02,"Electricity from fossil fuels (TWh)":1080.44,"Electricity from nuclear (TWh)":38.31,"Electricity from renewables (TWh)":203.21},{"Year":2016,"Entity":"India","Value_co2_emissions_kt_by_country":2195250,"Electricity from fossil fuels (TWh)":1155.52,"Electricity from nuclear (TWh)":37.9,"Electricity from renewables (TWh)":208.21},{"Year":2017,"Entity":"India","Value_co2_emissions_kt_by_country":2320409.912,"Electricity from fossil fuels (TWh)":1198.85,"Electricity from nuclear (TWh)":37.41,"Electricity from renewables (TWh)":234.9},{"Year":2018,"Entity":"India","Value_co2_emissions_kt_by_country":2451929.932,"Electricity from fossil fuels (TWh)":1276.32,"Electricity from nuclear (TWh)":39.05,"Electricity from renewables (TWh)":263.61},{"Year":2019,"Entity":"India","Value_co2_emissions_kt_by_country":2456300.049,"Electricity from fossil fuels (TWh)":1273.59,"Electricity from nuclear (TWh)":45.16,"Electricity from renewables (TWh)":303.16},{"Year":2020,"Entity":"India","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":1202.34,"Electricity from nuclear (TWh)":44.61,"Electricity from renewables (TWh)":315.76},{"Year":2000,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":280650,"Electricity from fossil fuels (TWh)":78.43,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":19.6},{"Year":2001,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":302060,"Electricity from fossil fuels (TWh)":83.96,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":22.19},{"Year":2002,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":305640.0146,"Electricity from fossil fuels (TWh)":92.03,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":21},{"Year":2003,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":333890.0146,"Electricity from fossil fuels (TWh)":97.57,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":19.82},{"Year":2004,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":341239.9902,"Electricity from fossil fuels (TWh)":103.8,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":20.97},{"Year":2005,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":342149.9939,"Electricity from fossil fuels (TWh)":110.22,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":22.66},{"Year":2006,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":364470.0012,"Electricity from fossil fuels (TWh)":116.8,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":21.18},{"Year":2007,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":379959.9915,"Electricity from fossil fuels (TWh)":124.1,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":24.29},{"Year":2008,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":376140.0146,"Electricity from fossil fuels (TWh)":129.55,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":26.34},{"Year":2009,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":391079.9866,"Electricity from fossil fuels (TWh)":136.05,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":26.79},{"Year":2010,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":415519.989,"Electricity from fossil fuels (TWh)":142.88,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":34.63},{"Year":2011,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":475309.9976,"Electricity from fossil fuels (TWh)":161.41,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":30.46},{"Year":2012,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":481510.0098,"Electricity from fossil fuels (TWh)":177.83,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":31.11},{"Year":2013,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":447940.0024,"Electricity from fossil fuels (TWh)":189.66,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":35.5},{"Year":2014,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":483910.0037,"Electricity from fossil fuels (TWh)":203.11,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":34.41},{"Year":2015,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":488549.9878,"Electricity from fossil fuels (TWh)":209.71,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":33.56},{"Year":2016,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":482510.0098,"Electricity from fossil fuels (TWh)":217.97,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":39.58},{"Year":2017,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":517320.0073,"Electricity from fossil fuels (TWh)":222.64,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":43.17},{"Year":2018,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":576989.9902,"Electricity from fossil fuels (TWh)":235.41,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":48.38},{"Year":2019,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":619840.0269,"Electricity from fossil fuels (TWh)":247.39,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":48.04},{"Year":2020,"Entity":"Indonesia","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":238.91,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":52.91},{"Year":2000,"Entity":"Italy","Value_co2_emissions_kt_by_country":436300,"Electricity from fossil fuels (TWh)":218.28,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":50.87},{"Year":2001,"Entity":"Italy","Value_co2_emissions_kt_by_country":436570,"Electricity from fossil fuels (TWh)":216.73,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":54.35},{"Year":2002,"Entity":"Italy","Value_co2_emissions_kt_by_country":443470.0012,"Electricity from fossil fuels (TWh)":228.45,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":48.31},{"Year":2003,"Entity":"Italy","Value_co2_emissions_kt_by_country":462200.0122,"Electricity from fossil fuels (TWh)":238.52,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":46.86},{"Year":2004,"Entity":"Italy","Value_co2_emissions_kt_by_country":472399.9939,"Electricity from fossil fuels (TWh)":240.95,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":53.88},{"Year":2005,"Entity":"Italy","Value_co2_emissions_kt_by_country":473829.9866,"Electricity from fossil fuels (TWh)":247.29,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":48.43},{"Year":2006,"Entity":"Italy","Value_co2_emissions_kt_by_country":466649.9939,"Electricity from fossil fuels (TWh)":256.03,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":50.64},{"Year":2007,"Entity":"Italy","Value_co2_emissions_kt_by_country":459369.9951,"Electricity from fossil fuels (TWh)":259.49,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":47.72},{"Year":2008,"Entity":"Italy","Value_co2_emissions_kt_by_country":444980.011,"Electricity from fossil fuels (TWh)":254.34,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":58.16},{"Year":2009,"Entity":"Italy","Value_co2_emissions_kt_by_country":397059.9976,"Electricity from fossil fuels (TWh)":218.32,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":69.26},{"Year":2010,"Entity":"Italy","Value_co2_emissions_kt_by_country":405269.989,"Electricity from fossil fuels (TWh)":220.93,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":76.98},{"Year":2011,"Entity":"Italy","Value_co2_emissions_kt_by_country":396690.0024,"Electricity from fossil fuels (TWh)":216.78,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":82.96},{"Year":2012,"Entity":"Italy","Value_co2_emissions_kt_by_country":376750,"Electricity from fossil fuels (TWh)":204.26,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":92.22},{"Year":2013,"Entity":"Italy","Value_co2_emissions_kt_by_country":346459.9915,"Electricity from fossil fuels (TWh)":175.07,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":112},{"Year":2014,"Entity":"Italy","Value_co2_emissions_kt_by_country":327500,"Electricity from fossil fuels (TWh)":156.76,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":120.68},{"Year":2015,"Entity":"Italy","Value_co2_emissions_kt_by_country":337859.9854,"Electricity from fossil fuels (TWh)":172.06,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":108.89},{"Year":2016,"Entity":"Italy","Value_co2_emissions_kt_by_country":333339.9963,"Electricity from fossil fuels (TWh)":179.19,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":108.01},{"Year":2017,"Entity":"Italy","Value_co2_emissions_kt_by_country":329190.0024,"Electricity from fossil fuels (TWh)":189.44,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":103.89},{"Year":2018,"Entity":"Italy","Value_co2_emissions_kt_by_country":324880.0049,"Electricity from fossil fuels (TWh)":172.98,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":114.41},{"Year":2019,"Entity":"Italy","Value_co2_emissions_kt_by_country":317239.9902,"Electricity from fossil fuels (TWh)":175.52,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":115.83},{"Year":2020,"Entity":"Italy","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":161.17,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":116.9},{"Year":2000,"Entity":"Japan","Value_co2_emissions_kt_by_country":1182610,"Electricity from fossil fuels (TWh)":578.29,"Electricity from nuclear (TWh)":305.95,"Electricity from renewables (TWh)":104.16},{"Year":2001,"Entity":"Japan","Value_co2_emissions_kt_by_country":1170380,"Electricity from fossil fuels (TWh)":564.95,"Electricity from nuclear (TWh)":303.86,"Electricity from renewables (TWh)":101.36},{"Year":2002,"Entity":"Japan","Value_co2_emissions_kt_by_country":1206599.976,"Electricity from fossil fuels (TWh)":605.12,"Electricity from nuclear (TWh)":280.34,"Electricity from renewables (TWh)":101.1},{"Year":2003,"Entity":"Japan","Value_co2_emissions_kt_by_country":1214949.951,"Electricity from fossil fuels (TWh)":633.76,"Electricity from nuclear (TWh)":228.01,"Electricity from renewables (TWh)":114.18},{"Year":2004,"Entity":"Japan","Value_co2_emissions_kt_by_country":1209849.976,"Electricity from fossil fuels (TWh)":621.6,"Electricity from nuclear (TWh)":268.32,"Electricity from renewables (TWh)":114.73},{"Year":2005,"Entity":"Japan","Value_co2_emissions_kt_by_country":1212819.946,"Electricity from fossil fuels (TWh)":634.09,"Electricity from nuclear (TWh)":280.5,"Electricity from renewables (TWh)":100.57},{"Year":2006,"Entity":"Japan","Value_co2_emissions_kt_by_country":1189520.02,"Electricity from fossil fuels (TWh)":628.77,"Electricity from nuclear (TWh)":291.54,"Electricity from renewables (TWh)":112.07},{"Year":2007,"Entity":"Japan","Value_co2_emissions_kt_by_country":1225069.946,"Electricity from fossil fuels (TWh)":705.37,"Electricity from nuclear (TWh)":267.34,"Electricity from renewables (TWh)":100.8},{"Year":2008,"Entity":"Japan","Value_co2_emissions_kt_by_country":1158219.971,"Electricity from fossil fuels (TWh)":663.88,"Electricity from nuclear (TWh)":241.25,"Electricity from renewables (TWh)":100.79},{"Year":2009,"Entity":"Japan","Value_co2_emissions_kt_by_country":1100979.98,"Electricity from fossil fuels (TWh)":611.86,"Electricity from nuclear (TWh)":263.05,"Electricity from renewables (TWh)":102.28},{"Year":2010,"Entity":"Japan","Value_co2_emissions_kt_by_country":1156479.98,"Electricity from fossil fuels (TWh)":689.89,"Electricity from nuclear (TWh)":278.36,"Electricity from renewables (TWh)":113.92},{"Year":2011,"Entity":"Japan","Value_co2_emissions_kt_by_country":1213520.02,"Electricity from fossil fuels (TWh)":777.1,"Electricity from nuclear (TWh)":153.38,"Electricity from renewables (TWh)":116.5},{"Year":2012,"Entity":"Japan","Value_co2_emissions_kt_by_country":1253609.985,"Electricity from fossil fuels (TWh)":920.39,"Electricity from nuclear (TWh)":15.12,"Electricity from renewables (TWh)":111.09},{"Year":2013,"Entity":"Japan","Value_co2_emissions_kt_by_country":1262780.029,"Electricity from fossil fuels (TWh)":897.88,"Electricity from nuclear (TWh)":10.43,"Electricity from renewables (TWh)":121.48},{"Year":2014,"Entity":"Japan","Value_co2_emissions_kt_by_country":1217119.995,"Electricity from fossil fuels (TWh)":892.18,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":136.53},{"Year":2015,"Entity":"Japan","Value_co2_emissions_kt_by_country":1179439.941,"Electricity from fossil fuels (TWh)":844.23,"Electricity from nuclear (TWh)":3.24,"Electricity from renewables (TWh)":157.34},{"Year":2016,"Entity":"Japan","Value_co2_emissions_kt_by_country":1167790.039,"Electricity from fossil fuels (TWh)":832.4,"Electricity from nuclear (TWh)":14.87,"Electricity from renewables (TWh)":157.7},{"Year":2017,"Entity":"Japan","Value_co2_emissions_kt_by_country":1155229.98,"Electricity from fossil fuels (TWh)":806.12,"Electricity from nuclear (TWh)":27.75,"Electricity from renewables (TWh)":175.12},{"Year":2018,"Entity":"Japan","Value_co2_emissions_kt_by_country":1116150.024,"Electricity from fossil fuels (TWh)":780.61,"Electricity from nuclear (TWh)":47.82,"Electricity from renewables (TWh)":183.63},{"Year":2019,"Entity":"Japan","Value_co2_emissions_kt_by_country":1081569.946,"Electricity from fossil fuels (TWh)":735.66,"Electricity from nuclear (TWh)":63.88,"Electricity from renewables (TWh)":192.72},{"Year":2020,"Entity":"Japan","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":716.67,"Electricity from nuclear (TWh)":41.86,"Electricity from renewables (TWh)":205.6},{"Year":2000,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":120150,"Electricity from fossil fuels (TWh)":44.11,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":7.53},{"Year":2001,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":117440,"Electricity from fossil fuels (TWh)":47.3,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":8.08},{"Year":2002,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":131059.9976,"Electricity from fossil fuels (TWh)":49.44,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":8.89},{"Year":2003,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":146139.9994,"Electricity from fossil fuels (TWh)":55.24,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":8.62},{"Year":2004,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":158029.9988,"Electricity from fossil fuels (TWh)":58.89,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":8.06},{"Year":2005,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":169210.0067,"Electricity from fossil fuels (TWh)":60.06,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":7.86},{"Year":2006,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":185300.0031,"Electricity from fossil fuels (TWh)":63.89,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":7.77},{"Year":2007,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":198389.9994,"Electricity from fossil fuels (TWh)":68.45,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":8.17},{"Year":2008,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":242029.9988,"Electricity from fossil fuels (TWh)":72.89,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":7.46},{"Year":2009,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":213610.0006,"Electricity from fossil fuels (TWh)":71.85,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":6.88},{"Year":2010,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":229699.9969,"Electricity from fossil fuels (TWh)":74.63,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":8.02},{"Year":2011,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":245449.9969,"Electricity from fossil fuels (TWh)":78.7,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":7.88},{"Year":2012,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":244600.0061,"Electricity from fossil fuels (TWh)":82.98,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":7.64},{"Year":2013,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":260010.0098,"Electricity from fossil fuels (TWh)":84.88,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":7.73},{"Year":2014,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":209229.9957,"Electricity from fossil fuels (TWh)":86.37,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":8.27},{"Year":2015,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":190729.9957,"Electricity from fossil fuels (TWh)":82.2,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":9.45},{"Year":2016,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":202149.9939,"Electricity from fossil fuels (TWh)":82.65,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":11.98},{"Year":2017,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":214580.0018,"Electricity from fossil fuels (TWh)":91.48,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":11.64},{"Year":2018,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":216600.0061,"Electricity from fossil fuels (TWh)":96.36,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":10.91},{"Year":2019,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":212110.0006,"Electricity from fossil fuels (TWh)":95.39,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":11.09},{"Year":2020,"Entity":"Kazakhstan","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":96.7,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":11.94},{"Year":2000,"Entity":"Mexico","Value_co2_emissions_kt_by_country":379180,"Electricity from fossil fuels (TWh)":141.8,"Electricity from nuclear (TWh)":7.81,"Electricity from renewables (TWh)":44.51},{"Year":2001,"Entity":"Mexico","Value_co2_emissions_kt_by_country":378830,"Electricity from fossil fuels (TWh)":153.32,"Electricity from nuclear (TWh)":8.29,"Electricity from renewables (TWh)":39.56},{"Year":2002,"Entity":"Mexico","Value_co2_emissions_kt_by_country":386000,"Electricity from fossil fuels (TWh)":159.81,"Electricity from nuclear (TWh)":9.26,"Electricity from renewables (TWh)":35.67},{"Year":2003,"Entity":"Mexico","Value_co2_emissions_kt_by_country":404690.0024,"Electricity from fossil fuels (TWh)":160.45,"Electricity from nuclear (TWh)":9.98,"Electricity from renewables (TWh)":32.11},{"Year":2004,"Entity":"Mexico","Value_co2_emissions_kt_by_country":414100.0061,"Electricity from fossil fuels (TWh)":173.66,"Electricity from nuclear (TWh)":8.73,"Electricity from renewables (TWh)":38.19},{"Year":2005,"Entity":"Mexico","Value_co2_emissions_kt_by_country":432190.0024,"Electricity from fossil fuels (TWh)":178.76,"Electricity from nuclear (TWh)":10.32,"Electricity from renewables (TWh)":42.29},{"Year":2006,"Entity":"Mexico","Value_co2_emissions_kt_by_country":448299.9878,"Electricity from fossil fuels (TWh)":182.76,"Electricity from nuclear (TWh)":10.4,"Electricity from renewables (TWh)":43.63},{"Year":2007,"Entity":"Mexico","Value_co2_emissions_kt_by_country":457119.9951,"Electricity from fossil fuels (TWh)":191.83,"Electricity from nuclear (TWh)":9.95,"Electricity from renewables (TWh)":42.14},{"Year":2008,"Entity":"Mexico","Value_co2_emissions_kt_by_country":459549.9878,"Electricity from fossil fuels (TWh)":184.51,"Electricity from nuclear (TWh)":9.36,"Electricity from renewables (TWh)":53.22},{"Year":2009,"Entity":"Mexico","Value_co2_emissions_kt_by_country":448369.9951,"Electricity from fossil fuels (TWh)":194.75,"Electricity from nuclear (TWh)":10.11,"Electricity from renewables (TWh)":40.59},{"Year":2010,"Entity":"Mexico","Value_co2_emissions_kt_by_country":462869.9951,"Electricity from fossil fuels (TWh)":207.38,"Electricity from nuclear (TWh)":5.66,"Electricity from renewables (TWh)":51.37},{"Year":2011,"Entity":"Mexico","Value_co2_emissions_kt_by_country":478399.9939,"Electricity from fossil fuels (TWh)":219.88,"Electricity from nuclear (TWh)":9.66,"Electricity from renewables (TWh)":50.7},{"Year":2012,"Entity":"Mexico","Value_co2_emissions_kt_by_country":486450.0122,"Electricity from fossil fuels (TWh)":229.14,"Electricity from nuclear (TWh)":8.41,"Electricity from renewables (TWh)":47.2},{"Year":2013,"Entity":"Mexico","Value_co2_emissions_kt_by_country":475739.9902,"Electricity from fossil fuels (TWh)":231.23,"Electricity from nuclear (TWh)":11.38,"Electricity from renewables (TWh)":44.67},{"Year":2014,"Entity":"Mexico","Value_co2_emissions_kt_by_country":462239.9902,"Electricity from fossil fuels (TWh)":223.43,"Electricity from nuclear (TWh)":9.3,"Electricity from renewables (TWh)":57.46},{"Year":2015,"Entity":"Mexico","Value_co2_emissions_kt_by_country":471630.0049,"Electricity from fossil fuels (TWh)":234.28,"Electricity from nuclear (TWh)":11.18,"Electricity from renewables (TWh)":52.42},{"Year":2016,"Entity":"Mexico","Value_co2_emissions_kt_by_country":473309.9976,"Electricity from fossil fuels (TWh)":239.78,"Electricity from nuclear (TWh)":10.27,"Electricity from renewables (TWh)":52.97},{"Year":2017,"Entity":"Mexico","Value_co2_emissions_kt_by_country":471579.9866,"Electricity from fossil fuels (TWh)":242.69,"Electricity from nuclear (TWh)":10.57,"Electricity from renewables (TWh)":55.88},{"Year":2018,"Entity":"Mexico","Value_co2_emissions_kt_by_country":452570.0073,"Electricity from fossil fuels (TWh)":259.92,"Electricity from nuclear (TWh)":13.32,"Electricity from renewables (TWh)":58.78},{"Year":2019,"Entity":"Mexico","Value_co2_emissions_kt_by_country":449269.989,"Electricity from fossil fuels (TWh)":248.2,"Electricity from nuclear (TWh)":10.88,"Electricity from renewables (TWh)":59},{"Year":2020,"Entity":"Mexico","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":245.46,"Electricity from nuclear (TWh)":10.87,"Electricity from renewables (TWh)":69.19},{"Year":2000,"Entity":"Poland","Value_co2_emissions_kt_by_country":295770,"Electricity from fossil fuels (TWh)":140.85,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":2.33},{"Year":2001,"Entity":"Poland","Value_co2_emissions_kt_by_country":293630,"Electricity from fossil fuels (TWh)":140.94,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":2.78},{"Year":2002,"Entity":"Poland","Value_co2_emissions_kt_by_country":287320.0073,"Electricity from fossil fuels (TWh)":139.72,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":2.77},{"Year":2003,"Entity":"Poland","Value_co2_emissions_kt_by_country":297730.011,"Electricity from fossil fuels (TWh)":147.76,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":2.25},{"Year":2004,"Entity":"Poland","Value_co2_emissions_kt_by_country":301850.0061,"Electricity from fossil fuels (TWh)":149.06,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":3.2},{"Year":2005,"Entity":"Poland","Value_co2_emissions_kt_by_country":301350.0061,"Electricity from fossil fuels (TWh)":151.2,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":3.85},{"Year":2006,"Entity":"Poland","Value_co2_emissions_kt_by_country":314089.9963,"Electricity from fossil fuels (TWh)":156.16,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":4.29},{"Year":2007,"Entity":"Poland","Value_co2_emissions_kt_by_country":313380.0049,"Electricity from fossil fuels (TWh)":153.08,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":5.43},{"Year":2008,"Entity":"Poland","Value_co2_emissions_kt_by_country":308329.9866,"Electricity from fossil fuels (TWh)":148.03,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":6.61},{"Year":2009,"Entity":"Poland","Value_co2_emissions_kt_by_country":297260.0098,"Electricity from fossil fuels (TWh)":142.4,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":8.69},{"Year":2010,"Entity":"Poland","Value_co2_emissions_kt_by_country":313739.9902,"Electricity from fossil fuels (TWh)":146.12,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":10.88},{"Year":2011,"Entity":"Poland","Value_co2_emissions_kt_by_country":310589.9963,"Electricity from fossil fuels (TWh)":149.88,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":13.13},{"Year":2012,"Entity":"Poland","Value_co2_emissions_kt_by_country":303350.0061,"Electricity from fossil fuels (TWh)":144.75,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":16.88},{"Year":2013,"Entity":"Poland","Value_co2_emissions_kt_by_country":298299.9878,"Electricity from fossil fuels (TWh)":146.85,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":17.06},{"Year":2014,"Entity":"Poland","Value_co2_emissions_kt_by_country":285730.011,"Electricity from fossil fuels (TWh)":138.53,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":19.85},{"Year":2015,"Entity":"Poland","Value_co2_emissions_kt_by_country":289079.9866,"Electricity from fossil fuels (TWh)":141.55,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":22.69},{"Year":2016,"Entity":"Poland","Value_co2_emissions_kt_by_country":299799.9878,"Electricity from fossil fuels (TWh)":143.28,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":22.81},{"Year":2017,"Entity":"Poland","Value_co2_emissions_kt_by_country":312859.9854,"Electricity from fossil fuels (TWh)":145.8,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":24.13},{"Year":2018,"Entity":"Poland","Value_co2_emissions_kt_by_country":311910.0037,"Electricity from fossil fuels (TWh)":147.87,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":21.62},{"Year":2019,"Entity":"Poland","Value_co2_emissions_kt_by_country":295130.0049,"Electricity from fossil fuels (TWh)":137.58,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":25.46},{"Year":2020,"Entity":"Poland","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":128.91,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":28.23},{"Year":2000,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":249660,"Electricity from fossil fuels (TWh)":138.68,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2001,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":254090,"Electricity from fossil fuels (TWh)":146.09,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2002,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":272250,"Electricity from fossil fuels (TWh)":154.91,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2003,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":284829.9866,"Electricity from fossil fuels (TWh)":166.58,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2004,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":299890.0146,"Electricity from fossil fuels (TWh)":173.41,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2005,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":315290.0085,"Electricity from fossil fuels (TWh)":191.05,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2006,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":335440.0024,"Electricity from fossil fuels (TWh)":196.31,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2007,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":354619.9951,"Electricity from fossil fuels (TWh)":204.43,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2008,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":389720.0012,"Electricity from fossil fuels (TWh)":204.2,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2009,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":406529.9988,"Electricity from fossil fuels (TWh)":217.31,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2010,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":446130.0049,"Electricity from fossil fuels (TWh)":240.06,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0},{"Year":2011,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":463769.989,"Electricity from fossil fuels (TWh)":250.07,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.01},{"Year":2012,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":492470.0012,"Electricity from fossil fuels (TWh)":271.68,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.03},{"Year":2013,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":503209.9915,"Electricity from fossil fuels (TWh)":284.02,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.04},{"Year":2014,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":540520.0195,"Electricity from fossil fuels (TWh)":311.81,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.05},{"Year":2015,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":565190.0024,"Electricity from fossil fuels (TWh)":338.34,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.05},{"Year":2016,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":561229.9805,"Electricity from fossil fuels (TWh)":337.38,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.05},{"Year":2017,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":545070.0073,"Electricity from fossil fuels (TWh)":354.3,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.07},{"Year":2018,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":521260.0098,"Electricity from fossil fuels (TWh)":334.7,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.16},{"Year":2019,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":523780.0293,"Electricity from fossil fuels (TWh)":335.24,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.21},{"Year":2020,"Entity":"Saudi Arabia","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":337.82,"Electricity from nuclear (TWh)":null,"Electricity from renewables (TWh)":0.21},{"Year":2000,"Entity":"South Africa","Value_co2_emissions_kt_by_country":284660,"Electricity from fossil fuels (TWh)":181.67,"Electricity from nuclear (TWh)":13.01,"Electricity from renewables (TWh)":1.79},{"Year":2001,"Entity":"South Africa","Value_co2_emissions_kt_by_country":320540,"Electricity from fossil fuels (TWh)":183.36,"Electricity from nuclear (TWh)":10.72,"Electricity from renewables (TWh)":2.46},{"Year":2002,"Entity":"South Africa","Value_co2_emissions_kt_by_country":331320.0073,"Electricity from fossil fuels (TWh)":188.79,"Electricity from nuclear (TWh)":11.99,"Electricity from renewables (TWh)":2.81},{"Year":2003,"Entity":"South Africa","Value_co2_emissions_kt_by_country":353089.9963,"Electricity from fossil fuels (TWh)":204.39,"Electricity from nuclear (TWh)":12.66,"Electricity from renewables (TWh)":1.19},{"Year":2004,"Entity":"South Africa","Value_co2_emissions_kt_by_country":379989.9902,"Electricity from fossil fuels (TWh)":212.63,"Electricity from nuclear (TWh)":14.28,"Electricity from renewables (TWh)":1.33},{"Year":2005,"Entity":"South Africa","Value_co2_emissions_kt_by_country":377649.9939,"Electricity from fossil fuels (TWh)":215.23,"Electricity from nuclear (TWh)":12.24,"Electricity from renewables (TWh)":1.75},{"Year":2006,"Entity":"South Africa","Value_co2_emissions_kt_by_country":379790.0085,"Electricity from fossil fuels (TWh)":223.25,"Electricity from nuclear (TWh)":10.07,"Electricity from renewables (TWh)":3.28},{"Year":2007,"Entity":"South Africa","Value_co2_emissions_kt_by_country":397059.9976,"Electricity from fossil fuels (TWh)":232.91,"Electricity from nuclear (TWh)":12.6,"Electricity from renewables (TWh)":1.3},{"Year":2008,"Entity":"South Africa","Value_co2_emissions_kt_by_country":426739.9902,"Electricity from fossil fuels (TWh)":226.32,"Electricity from nuclear (TWh)":12.75,"Electricity from renewables (TWh)":1.66},{"Year":2009,"Entity":"South Africa","Value_co2_emissions_kt_by_country":404200.0122,"Electricity from fossil fuels (TWh)":218.17,"Electricity from nuclear (TWh)":11.57,"Electricity from renewables (TWh)":1.86},{"Year":2010,"Entity":"South Africa","Value_co2_emissions_kt_by_country":425309.9976,"Electricity from fossil fuels (TWh)":227.57,"Electricity from nuclear (TWh)":12.9,"Electricity from renewables (TWh)":2.51},{"Year":2011,"Entity":"South Africa","Value_co2_emissions_kt_by_country":409260.0098,"Electricity from fossil fuels (TWh)":229.06,"Electricity from nuclear (TWh)":12.94,"Electricity from renewables (TWh)":2.49},{"Year":2012,"Entity":"South Africa","Value_co2_emissions_kt_by_country":426779.9988,"Electricity from fossil fuels (TWh)":226.84,"Electricity from nuclear (TWh)":12.4,"Electricity from renewables (TWh)":1.66},{"Year":2013,"Entity":"South Africa","Value_co2_emissions_kt_by_country":436920.0134,"Electricity from fossil fuels (TWh)":223.28,"Electricity from nuclear (TWh)":13.61,"Electricity from renewables (TWh)":1.62},{"Year":2014,"Entity":"South Africa","Value_co2_emissions_kt_by_country":447929.9927,"Electricity from fossil fuels (TWh)":218.42,"Electricity from nuclear (TWh)":14.76,"Electricity from renewables (TWh)":3.38},{"Year":2015,"Entity":"South Africa","Value_co2_emissions_kt_by_country":424809.9976,"Electricity from fossil fuels (TWh)":214.88,"Electricity from nuclear (TWh)":10.97,"Electricity from renewables (TWh)":6.09},{"Year":2016,"Entity":"South Africa","Value_co2_emissions_kt_by_country":425140.0146,"Electricity from fossil fuels (TWh)":213.09,"Electricity from nuclear (TWh)":15.21,"Electricity from renewables (TWh)":7.69},{"Year":2017,"Entity":"South Africa","Value_co2_emissions_kt_by_country":435649.9939,"Electricity from fossil fuels (TWh)":212.77,"Electricity from nuclear (TWh)":15.09,"Electricity from renewables (TWh)":10.04},{"Year":2018,"Entity":"South Africa","Value_co2_emissions_kt_by_country":434350.0061,"Electricity from fossil fuels (TWh)":214.25,"Electricity from nuclear (TWh)":10.56,"Electricity from renewables (TWh)":12.22},{"Year":2019,"Entity":"South Africa","Value_co2_emissions_kt_by_country":439640.0146,"Electricity from fossil fuels (TWh)":208.39,"Electricity from nuclear (TWh)":13.6,"Electricity from renewables (TWh)":12.57},{"Year":2020,"Entity":"South Africa","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":197.5,"Electricity from nuclear (TWh)":11.62,"Electricity from renewables (TWh)":12.83},{"Year":2000,"Entity":"Spain","Value_co2_emissions_kt_by_country":293310,"Electricity from fossil fuels (TWh)":124.22,"Electricity from nuclear (TWh)":62.21,"Electricity from renewables (TWh)":34.49},{"Year":2001,"Entity":"Spain","Value_co2_emissions_kt_by_country":294790,"Electricity from fossil fuels (TWh)":120.06,"Electricity from nuclear (TWh)":63.71,"Electricity from renewables (TWh)":49.3},{"Year":2002,"Entity":"Spain","Value_co2_emissions_kt_by_country":312750,"Electricity from fossil fuels (TWh)":143.72,"Electricity from nuclear (TWh)":63.02,"Electricity from renewables (TWh)":33.17},{"Year":2003,"Entity":"Spain","Value_co2_emissions_kt_by_country":318660.0037,"Electricity from fossil fuels (TWh)":139.67,"Electricity from nuclear (TWh)":61.88,"Electricity from renewables (TWh)":55.75},{"Year":2004,"Entity":"Spain","Value_co2_emissions_kt_by_country":335559.9976,"Electricity from fossil fuels (TWh)":159.91,"Electricity from nuclear (TWh)":63.61,"Electricity from renewables (TWh)":50.13},{"Year":2005,"Entity":"Spain","Value_co2_emissions_kt_by_country":350500,"Electricity from fossil fuels (TWh)":184.65,"Electricity from nuclear (TWh)":57.54,"Electricity from renewables (TWh)":42.27},{"Year":2006,"Entity":"Spain","Value_co2_emissions_kt_by_country":341779.9988,"Electricity from fossil fuels (TWh)":182.98,"Electricity from nuclear (TWh)":60.13,"Electricity from renewables (TWh)":52.15},{"Year":2007,"Entity":"Spain","Value_co2_emissions_kt_by_country":354679.9927,"Electricity from fossil fuels (TWh)":188.13,"Electricity from nuclear (TWh)":55.1,"Electricity from renewables (TWh)":58.3},{"Year":2008,"Entity":"Spain","Value_co2_emissions_kt_by_country":324269.989,"Electricity from fossil fuels (TWh)":189.55,"Electricity from nuclear (TWh)":58.97,"Electricity from renewables (TWh)":62.15},{"Year":2009,"Entity":"Spain","Value_co2_emissions_kt_by_country":287489.9902,"Electricity from fossil fuels (TWh)":164.69,"Electricity from nuclear (TWh)":52.76,"Electricity from renewables (TWh)":74.08},{"Year":2010,"Entity":"Spain","Value_co2_emissions_kt_by_country":273250,"Electricity from fossil fuels (TWh)":138.39,"Electricity from nuclear (TWh)":61.99,"Electricity from renewables (TWh)":97.77},{"Year":2011,"Entity":"Spain","Value_co2_emissions_kt_by_country":274399.9939,"Electricity from fossil fuels (TWh)":146.12,"Electricity from nuclear (TWh)":57.72,"Electricity from renewables (TWh)":87.53},{"Year":2012,"Entity":"Spain","Value_co2_emissions_kt_by_country":269269.989,"Electricity from fossil fuels (TWh)":145.33,"Electricity from nuclear (TWh)":61.47,"Electricity from renewables (TWh)":86.97},{"Year":2013,"Entity":"Spain","Value_co2_emissions_kt_by_country":242809.9976,"Electricity from fossil fuels (TWh)":113.32,"Electricity from nuclear (TWh)":56.73,"Electricity from renewables (TWh)":111.42},{"Year":2014,"Entity":"Spain","Value_co2_emissions_kt_by_country":240960.0067,"Electricity from fossil fuels (TWh)":107.37,"Electricity from nuclear (TWh)":57.31,"Electricity from renewables (TWh)":110.26},{"Year":2015,"Entity":"Spain","Value_co2_emissions_kt_by_country":256279.9988,"Electricity from fossil fuels (TWh)":123.19,"Electricity from nuclear (TWh)":57.2,"Electricity from renewables (TWh)":97.09},{"Year":2016,"Entity":"Spain","Value_co2_emissions_kt_by_country":247029.9988,"Electricity from fossil fuels (TWh)":107.93,"Electricity from nuclear (TWh)":58.63,"Electricity from renewables (TWh)":104.63},{"Year":2017,"Entity":"Spain","Value_co2_emissions_kt_by_country":263450.0122,"Electricity from fossil fuels (TWh)":126.93,"Electricity from nuclear (TWh)":58.04,"Electricity from renewables (TWh)":87.93},{"Year":2018,"Entity":"Spain","Value_co2_emissions_kt_by_country":257040.0085,"Electricity from fossil fuels (TWh)":112.23,"Electricity from nuclear (TWh)":55.77,"Electricity from renewables (TWh)":103.88},{"Year":2019,"Entity":"Spain","Value_co2_emissions_kt_by_country":239979.9957,"Electricity from fossil fuels (TWh)":111.55,"Electricity from nuclear (TWh)":58.35,"Electricity from renewables (TWh)":100.99},{"Year":2020,"Entity":"Spain","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":87.64,"Electricity from nuclear (TWh)":58.3,"Electricity from renewables (TWh)":113.79},{"Year":2000,"Entity":"Thailand","Value_co2_emissions_kt_by_country":164490,"Electricity from fossil fuels (TWh)":83.15,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":6.38},{"Year":2001,"Entity":"Thailand","Value_co2_emissions_kt_by_country":173160,"Electricity from fossil fuels (TWh)":88.97,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":6.76},{"Year":2002,"Entity":"Thailand","Value_co2_emissions_kt_by_country":184240.0055,"Electricity from fossil fuels (TWh)":93.51,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":8.07},{"Year":2003,"Entity":"Thailand","Value_co2_emissions_kt_by_country":191929.9927,"Electricity from fossil fuels (TWh)":100.61,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":8.36},{"Year":2004,"Entity":"Thailand","Value_co2_emissions_kt_by_country":210190.0024,"Electricity from fossil fuels (TWh)":109.46,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":7.63},{"Year":2005,"Entity":"Thailand","Value_co2_emissions_kt_by_country":217770.0043,"Electricity from fossil fuels (TWh)":115.58,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":7.42},{"Year":2006,"Entity":"Thailand","Value_co2_emissions_kt_by_country":219880.0049,"Electricity from fossil fuels (TWh)":119.41,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":9.82},{"Year":2007,"Entity":"Thailand","Value_co2_emissions_kt_by_country":224589.9963,"Electricity from fossil fuels (TWh)":122.12,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":10.2},{"Year":2008,"Entity":"Thailand","Value_co2_emissions_kt_by_country":227580.0018,"Electricity from fossil fuels (TWh)":127.43,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":8.95},{"Year":2009,"Entity":"Thailand","Value_co2_emissions_kt_by_country":220259.9945,"Electricity from fossil fuels (TWh)":128.09,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":9.09},{"Year":2010,"Entity":"Thailand","Value_co2_emissions_kt_by_country":234380.0049,"Electricity from fossil fuels (TWh)":141.72,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":8.58},{"Year":2011,"Entity":"Thailand","Value_co2_emissions_kt_by_country":233600.0061,"Electricity from fossil fuels (TWh)":135.31,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":11.83},{"Year":2012,"Entity":"Thailand","Value_co2_emissions_kt_by_country":250679.9927,"Electricity from fossil fuels (TWh)":143.73,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":13.42},{"Year":2013,"Entity":"Thailand","Value_co2_emissions_kt_by_country":260700.0122,"Electricity from fossil fuels (TWh)":148.29,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":12.33},{"Year":2014,"Entity":"Thailand","Value_co2_emissions_kt_by_country":256799.9878,"Electricity from fossil fuels (TWh)":149.26,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":13.68},{"Year":2015,"Entity":"Thailand","Value_co2_emissions_kt_by_country":264000,"Electricity from fossil fuels (TWh)":153.4,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":13.33},{"Year":2016,"Entity":"Thailand","Value_co2_emissions_kt_by_country":261600.0061,"Electricity from fossil fuels (TWh)":161.79,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":15.97},{"Year":2017,"Entity":"Thailand","Value_co2_emissions_kt_by_country":258820.0073,"Electricity from fossil fuels (TWh)":161.88,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":19.92},{"Year":2018,"Entity":"Thailand","Value_co2_emissions_kt_by_country":257049.9878,"Electricity from fossil fuels (TWh)":156.26,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":25.84},{"Year":2019,"Entity":"Thailand","Value_co2_emissions_kt_by_country":267089.9963,"Electricity from fossil fuels (TWh)":162.59,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":28.02},{"Year":2020,"Entity":"Thailand","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":154.52,"Electricity from nuclear (TWh)":0,"Electricity from renewables (TWh)":24.73},{"Year":2000,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":297380,"Electricity from fossil fuels (TWh)":82.65,"Electricity from nuclear (TWh)":77.34,"Electricity from renewables (TWh)":11.28},{"Year":2001,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":300550,"Electricity from fossil fuels (TWh)":84.59,"Electricity from nuclear (TWh)":76.17,"Electricity from renewables (TWh)":12.05},{"Year":2002,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":303940.0024,"Electricity from fossil fuels (TWh)":85.93,"Electricity from nuclear (TWh)":77.99,"Electricity from renewables (TWh)":9.65},{"Year":2003,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":330230.011,"Electricity from fossil fuels (TWh)":89.52,"Electricity from nuclear (TWh)":81.41,"Electricity from renewables (TWh)":9.27},{"Year":2004,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":307140.0146,"Electricity from fossil fuels (TWh)":83.22,"Electricity from nuclear (TWh)":87.02,"Electricity from renewables (TWh)":11.78},{"Year":2005,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":295410.0037,"Electricity from fossil fuels (TWh)":84.75,"Electricity from nuclear (TWh)":88.76,"Electricity from renewables (TWh)":12.4},{"Year":2006,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":303989.9902,"Electricity from fossil fuels (TWh)":90.09,"Electricity from nuclear (TWh)":90.22,"Electricity from renewables (TWh)":12.92},{"Year":2007,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":312140.0146,"Electricity from fossil fuels (TWh)":93.13,"Electricity from nuclear (TWh)":92.54,"Electricity from renewables (TWh)":10.47},{"Year":2008,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":301200.0122,"Electricity from fossil fuels (TWh)":90.92,"Electricity from nuclear (TWh)":89.84,"Electricity from renewables (TWh)":11.82},{"Year":2009,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":251619.9951,"Electricity from fossil fuels (TWh)":78.58,"Electricity from nuclear (TWh)":82.92,"Electricity from renewables (TWh)":12.12},{"Year":2010,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":268920.0134,"Electricity from fossil fuels (TWh)":86.28,"Electricity from nuclear (TWh)":89.15,"Electricity from renewables (TWh)":13.39},{"Year":2011,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":283339.9963,"Electricity from fossil fuels (TWh)":93.5,"Electricity from nuclear (TWh)":90.25,"Electricity from renewables (TWh)":11.2},{"Year":2012,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":277109.9854,"Electricity from fossil fuels (TWh)":96.99,"Electricity from nuclear (TWh)":90.14,"Electricity from renewables (TWh)":11.23},{"Year":2013,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":270269.989,"Electricity from fossil fuels (TWh)":95.39,"Electricity from nuclear (TWh)":83.21,"Electricity from renewables (TWh)":15.11},{"Year":2014,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":237729.9957,"Electricity from fossil fuels (TWh)":83.42,"Electricity from nuclear (TWh)":88.39,"Electricity from renewables (TWh)":10.17},{"Year":2015,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":191070.0073,"Electricity from fossil fuels (TWh)":66.91,"Electricity from nuclear (TWh)":87.63,"Electricity from renewables (TWh)":7.1},{"Year":2016,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":201660.0037,"Electricity from fossil fuels (TWh)":72.66,"Electricity from nuclear (TWh)":80.95,"Electricity from renewables (TWh)":9.25},{"Year":2017,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":174940.0024,"Electricity from fossil fuels (TWh)":57.96,"Electricity from nuclear (TWh)":85.58,"Electricity from renewables (TWh)":10.88},{"Year":2018,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":185619.9951,"Electricity from fossil fuels (TWh)":60.81,"Electricity from nuclear (TWh)":84.4,"Electricity from renewables (TWh)":13.02},{"Year":2019,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":174729.9957,"Electricity from fossil fuels (TWh)":57.79,"Electricity from nuclear (TWh)":83,"Electricity from renewables (TWh)":11.87},{"Year":2020,"Entity":"Ukraine","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":54.5,"Electricity from nuclear (TWh)":76.2,"Electricity from renewables (TWh)":17.56},{"Year":2000,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":530890,"Electricity from fossil fuels (TWh)":279.34,"Electricity from nuclear (TWh)":85.06,"Electricity from renewables (TWh)":9.98},{"Year":2001,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":545260,"Electricity from fossil fuels (TWh)":282.72,"Electricity from nuclear (TWh)":90.09,"Electricity from renewables (TWh)":9.56},{"Year":2002,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":530789.978,"Electricity from fossil fuels (TWh)":285.62,"Electricity from nuclear (TWh)":87.85,"Electricity from renewables (TWh)":11.13},{"Year":2003,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":543039.978,"Electricity from fossil fuels (TWh)":296.15,"Electricity from nuclear (TWh)":88.69,"Electricity from renewables (TWh)":10.62},{"Year":2004,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":543080.0171,"Electricity from fossil fuels (TWh)":297.15,"Electricity from nuclear (TWh)":80,"Electricity from renewables (TWh)":14.14},{"Year":2005,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":540919.9829,"Electricity from fossil fuels (TWh)":296.87,"Electricity from nuclear (TWh)":81.62,"Electricity from renewables (TWh)":16.93},{"Year":2006,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":542059.9976,"Electricity from fossil fuels (TWh)":299.88,"Electricity from nuclear (TWh)":75.45,"Electricity from renewables (TWh)":18.11},{"Year":2007,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":530500,"Electricity from fossil fuels (TWh)":310.26,"Electricity from nuclear (TWh)":63.03,"Electricity from renewables (TWh)":19.69},{"Year":2008,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":515340.0269,"Electricity from fossil fuels (TWh)":310.5,"Electricity from nuclear (TWh)":52.49,"Electricity from renewables (TWh)":21.85},{"Year":2009,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":466489.9902,"Electricity from fossil fuels (TWh)":278.73,"Electricity from nuclear (TWh)":69.1,"Electricity from renewables (TWh)":25.25},{"Year":2010,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":482440.0024,"Electricity from fossil fuels (TWh)":290.59,"Electricity from nuclear (TWh)":62.14,"Electricity from renewables (TWh)":26.18},{"Year":2011,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":445589.9963,"Electricity from fossil fuels (TWh)":260.88,"Electricity from nuclear (TWh)":68.98,"Electricity from renewables (TWh)":35.2},{"Year":2012,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":467779.9988,"Electricity from fossil fuels (TWh)":249.25,"Electricity from nuclear (TWh)":70.4,"Electricity from renewables (TWh)":41.24},{"Year":2013,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":453760.0098,"Electricity from fossil fuels (TWh)":231.56,"Electricity from nuclear (TWh)":70.61,"Electricity from renewables (TWh)":53.21},{"Year":2014,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":415600.0061,"Electricity from fossil fuels (TWh)":206.94,"Electricity from nuclear (TWh)":63.75,"Electricity from renewables (TWh)":64.52},{"Year":2015,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":401079.9866,"Electricity from fossil fuels (TWh)":182.43,"Electricity from nuclear (TWh)":70.34,"Electricity from renewables (TWh)":82.57},{"Year":2016,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":380809.9976,"Electricity from fossil fuels (TWh)":181.56,"Electricity from nuclear (TWh)":71.73,"Electricity from renewables (TWh)":82.99},{"Year":2017,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":367000,"Electricity from fossil fuels (TWh)":165.91,"Electricity from nuclear (TWh)":70.34,"Electricity from renewables (TWh)":98.85},{"Year":2018,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":360730.011,"Electricity from fossil fuels (TWh)":155.41,"Electricity from nuclear (TWh)":65.06,"Electricity from renewables (TWh)":110.03},{"Year":2019,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":348920.0134,"Electricity from fossil fuels (TWh)":144.99,"Electricity from nuclear (TWh)":56.18,"Electricity from renewables (TWh)":120.48},{"Year":2020,"Entity":"United Kingdom","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":124.78,"Electricity from nuclear (TWh)":50.85,"Electricity from renewables (TWh)":131.74},{"Year":2000,"Entity":"United States","Value_co2_emissions_kt_by_country":5775810,"Electricity from fossil fuels (TWh)":2697.28,"Electricity from nuclear (TWh)":753.89,"Electricity from renewables (TWh)":350.93},{"Year":2001,"Entity":"United States","Value_co2_emissions_kt_by_country":5748260,"Electricity from fossil fuels (TWh)":2678.68,"Electricity from nuclear (TWh)":768.83,"Electricity from renewables (TWh)":280.06},{"Year":2002,"Entity":"United States","Value_co2_emissions_kt_by_country":5593029.785,"Electricity from fossil fuels (TWh)":2727.83,"Electricity from nuclear (TWh)":780.06,"Electricity from renewables (TWh)":336.34},{"Year":2003,"Entity":"United States","Value_co2_emissions_kt_by_country":5658990.234,"Electricity from fossil fuels (TWh)":2756.03,"Electricity from nuclear (TWh)":763.73,"Electricity from renewables (TWh)":349.18},{"Year":2004,"Entity":"United States","Value_co2_emissions_kt_by_country":5738290.039,"Electricity from fossil fuels (TWh)":2818.28,"Electricity from nuclear (TWh)":788.53,"Electricity from renewables (TWh)":345.14},{"Year":2005,"Entity":"United States","Value_co2_emissions_kt_by_country":5753490.234,"Electricity from fossil fuels (TWh)":2899.96,"Electricity from nuclear (TWh)":781.99,"Electricity from renewables (TWh)":353.04},{"Year":2006,"Entity":"United States","Value_co2_emissions_kt_by_country":5653080.078,"Electricity from fossil fuels (TWh)":2878.56,"Electricity from nuclear (TWh)":787.22,"Electricity from renewables (TWh)":381.16},{"Year":2007,"Entity":"United States","Value_co2_emissions_kt_by_country":5736319.824,"Electricity from fossil fuels (TWh)":2988.24,"Electricity from nuclear (TWh)":806.42,"Electricity from renewables (TWh)":347.91},{"Year":2008,"Entity":"United States","Value_co2_emissions_kt_by_country":5558379.883,"Electricity from fossil fuels (TWh)":2924.21,"Electricity from nuclear (TWh)":806.21,"Electricity from renewables (TWh)":377.11},{"Year":2009,"Entity":"United States","Value_co2_emissions_kt_by_country":5156430.176,"Electricity from fossil fuels (TWh)":2725.41,"Electricity from nuclear (TWh)":798.85,"Electricity from renewables (TWh)":415.56},{"Year":2010,"Entity":"United States","Value_co2_emissions_kt_by_country":5392109.863,"Electricity from fossil fuels (TWh)":2882.49,"Electricity from nuclear (TWh)":806.97,"Electricity from renewables (TWh)":424.48},{"Year":2011,"Entity":"United States","Value_co2_emissions_kt_by_country":5173600.098,"Electricity from fossil fuels (TWh)":2788.93,"Electricity from nuclear (TWh)":790.2,"Electricity from renewables (TWh)":509.74},{"Year":2012,"Entity":"United States","Value_co2_emissions_kt_by_country":4956060.059,"Electricity from fossil fuels (TWh)":2779.02,"Electricity from nuclear (TWh)":769.33,"Electricity from renewables (TWh)":492.32},{"Year":2013,"Entity":"United States","Value_co2_emissions_kt_by_country":5092100.098,"Electricity from fossil fuels (TWh)":2746.21,"Electricity from nuclear (TWh)":789.02,"Electricity from renewables (TWh)":520.38},{"Year":2014,"Entity":"United States","Value_co2_emissions_kt_by_country":5107209.961,"Electricity from fossil fuels (TWh)":2752.01,"Electricity from nuclear (TWh)":797.17,"Electricity from renewables (TWh)":546.83},{"Year":2015,"Entity":"United States","Value_co2_emissions_kt_by_country":4990709.961,"Electricity from fossil fuels (TWh)":2730.32,"Electricity from nuclear (TWh)":797.18,"Electricity from renewables (TWh)":556.49},{"Year":2016,"Entity":"United States","Value_co2_emissions_kt_by_country":4894500,"Electricity from fossil fuels (TWh)":2656.96,"Electricity from nuclear (TWh)":805.69,"Electricity from renewables (TWh)":624.91},{"Year":2017,"Entity":"United States","Value_co2_emissions_kt_by_country":4819370.117,"Electricity from fossil fuels (TWh)":2540.17,"Electricity from nuclear (TWh)":804.95,"Electricity from renewables (TWh)":707.19},{"Year":2018,"Entity":"United States","Value_co2_emissions_kt_by_country":4975310.059,"Electricity from fossil fuels (TWh)":2661.3,"Electricity from nuclear (TWh)":807.08,"Electricity from renewables (TWh)":733.17},{"Year":2019,"Entity":"United States","Value_co2_emissions_kt_by_country":4817720.215,"Electricity from fossil fuels (TWh)":2588.21,"Electricity from nuclear (TWh)":809.41,"Electricity from renewables (TWh)":760.76},{"Year":2020,"Entity":"United States","Value_co2_emissions_kt_by_country":null,"Electricity from fossil fuels (TWh)":2431.9,"Electricity from nuclear (TWh)":789.88,"Electricity from renewables (TWh)":821.4}],"anchored":true,"createdBy":"user","attachedMetadata":""},{"id":"table-82","displayId":"energy-source","names":["Entity","Year","energy","source"],"rows":[{"Entity":"Australia","Year":2000,"energy":181.05,"source":"fossil fuels"},{"Entity":"Australia","Year":2001,"energy":194.33,"source":"fossil fuels"},{"Entity":"Australia","Year":2002,"energy":197.29,"source":"fossil fuels"},{"Entity":"Australia","Year":2003,"energy":195.13,"source":"fossil fuels"},{"Entity":"Australia","Year":2004,"energy":203.66,"source":"fossil fuels"},{"Entity":"Australia","Year":2005,"energy":195.95,"source":"fossil fuels"},{"Entity":"Australia","Year":2006,"energy":198.72,"source":"fossil fuels"},{"Entity":"Australia","Year":2007,"energy":208.59,"source":"fossil fuels"},{"Entity":"Australia","Year":2008,"energy":211.06,"source":"fossil fuels"},{"Entity":"Australia","Year":2009,"energy":216.42,"source":"fossil fuels"},{"Entity":"Australia","Year":2010,"energy":212.5,"source":"fossil fuels"},{"Entity":"Australia","Year":2011,"energy":213.56,"source":"fossil fuels"},{"Entity":"Australia","Year":2012,"energy":206.75,"source":"fossil fuels"},{"Entity":"Australia","Year":2013,"energy":195.78,"source":"fossil fuels"},{"Entity":"Australia","Year":2014,"energy":205.46,"source":"fossil fuels"},{"Entity":"Australia","Year":2015,"energy":197.72,"source":"fossil fuels"},{"Entity":"Australia","Year":2016,"energy":207.66,"source":"fossil fuels"},{"Entity":"Australia","Year":2017,"energy":209.14,"source":"fossil fuels"},{"Entity":"Australia","Year":2018,"energy":207.45,"source":"fossil fuels"},{"Entity":"Australia","Year":2019,"energy":196.45,"source":"fossil fuels"},{"Entity":"Australia","Year":2020,"energy":186.92,"source":"fossil fuels"},{"Entity":"Brazil","Year":2000,"energy":28.87,"source":"fossil fuels"},{"Entity":"Brazil","Year":2001,"energy":35.19,"source":"fossil fuels"},{"Entity":"Brazil","Year":2002,"energy":33.5,"source":"fossil fuels"},{"Entity":"Brazil","Year":2003,"energy":31.62,"source":"fossil fuels"},{"Entity":"Brazil","Year":2004,"energy":40.14,"source":"fossil fuels"},{"Entity":"Brazil","Year":2005,"energy":39.56,"source":"fossil fuels"},{"Entity":"Brazil","Year":2006,"energy":39.4,"source":"fossil fuels"},{"Entity":"Brazil","Year":2007,"energy":37.64,"source":"fossil fuels"},{"Entity":"Brazil","Year":2008,"energy":55.87,"source":"fossil fuels"},{"Entity":"Brazil","Year":2009,"energy":36.32,"source":"fossil fuels"},{"Entity":"Brazil","Year":2010,"energy":61.02,"source":"fossil fuels"},{"Entity":"Brazil","Year":2011,"energy":50.27,"source":"fossil fuels"},{"Entity":"Brazil","Year":2012,"energy":77.21,"source":"fossil fuels"},{"Entity":"Brazil","Year":2013,"energy":112,"source":"fossil fuels"},{"Entity":"Brazil","Year":2014,"energy":136.58,"source":"fossil fuels"},{"Entity":"Brazil","Year":2015,"energy":128.85,"source":"fossil fuels"},{"Entity":"Brazil","Year":2016,"energy":93.06,"source":"fossil fuels"},{"Entity":"Brazil","Year":2017,"energy":101.9,"source":"fossil fuels"},{"Entity":"Brazil","Year":2018,"energy":86.69,"source":"fossil fuels"},{"Entity":"Brazil","Year":2019,"energy":90.91,"source":"fossil fuels"},{"Entity":"Brazil","Year":2020,"energy":81.15,"source":"fossil fuels"},{"Entity":"Canada","Year":2000,"energy":155.56,"source":"fossil fuels"},{"Entity":"Canada","Year":2001,"energy":159.93,"source":"fossil fuels"},{"Entity":"Canada","Year":2002,"energy":155.12,"source":"fossil fuels"},{"Entity":"Canada","Year":2003,"energy":157.35,"source":"fossil fuels"},{"Entity":"Canada","Year":2004,"energy":148.86,"source":"fossil fuels"},{"Entity":"Canada","Year":2005,"energy":150.78,"source":"fossil fuels"},{"Entity":"Canada","Year":2006,"energy":139.71,"source":"fossil fuels"},{"Entity":"Canada","Year":2007,"energy":149.36,"source":"fossil fuels"},{"Entity":"Canada","Year":2008,"energy":141.33,"source":"fossil fuels"},{"Entity":"Canada","Year":2009,"energy":129.76,"source":"fossil fuels"},{"Entity":"Canada","Year":2010,"energy":130.08,"source":"fossil fuels"},{"Entity":"Canada","Year":2011,"energy":131.3,"source":"fossil fuels"},{"Entity":"Canada","Year":2012,"energy":124.2,"source":"fossil fuels"},{"Entity":"Canada","Year":2013,"energy":122.87,"source":"fossil fuels"},{"Entity":"Canada","Year":2014,"energy":122.75,"source":"fossil fuels"},{"Entity":"Canada","Year":2015,"energy":125.7,"source":"fossil fuels"},{"Entity":"Canada","Year":2016,"energy":122.35,"source":"fossil fuels"},{"Entity":"Canada","Year":2017,"energy":113.7,"source":"fossil fuels"},{"Entity":"Canada","Year":2018,"energy":112.47,"source":"fossil fuels"},{"Entity":"Canada","Year":2019,"energy":110.65,"source":"fossil fuels"},{"Entity":"Canada","Year":2020,"energy":102.19,"source":"fossil fuels"},{"Entity":"China","Year":2000,"energy":1113.3,"source":"fossil fuels"},{"Entity":"China","Year":2001,"energy":1182.59,"source":"fossil fuels"},{"Entity":"China","Year":2002,"energy":1337.46,"source":"fossil fuels"},{"Entity":"China","Year":2003,"energy":1579.96,"source":"fossil fuels"},{"Entity":"China","Year":2004,"energy":1795.41,"source":"fossil fuels"},{"Entity":"China","Year":2005,"energy":2042.8,"source":"fossil fuels"},{"Entity":"China","Year":2006,"energy":2364.16,"source":"fossil fuels"},{"Entity":"China","Year":2007,"energy":2718.7,"source":"fossil fuels"},{"Entity":"China","Year":2008,"energy":2762.29,"source":"fossil fuels"},{"Entity":"China","Year":2009,"energy":2980.2,"source":"fossil fuels"},{"Entity":"China","Year":2010,"energy":3326.19,"source":"fossil fuels"},{"Entity":"China","Year":2011,"energy":3811.77,"source":"fossil fuels"},{"Entity":"China","Year":2012,"energy":3869.38,"source":"fossil fuels"},{"Entity":"China","Year":2013,"energy":4203.77,"source":"fossil fuels"},{"Entity":"China","Year":2014,"energy":4345.86,"source":"fossil fuels"},{"Entity":"China","Year":2015,"energy":4222.76,"source":"fossil fuels"},{"Entity":"China","Year":2016,"energy":4355,"source":"fossil fuels"},{"Entity":"China","Year":2017,"energy":4643.1,"source":"fossil fuels"},{"Entity":"China","Year":2018,"energy":4990.28,"source":"fossil fuels"},{"Entity":"China","Year":2019,"energy":5098.22,"source":"fossil fuels"},{"Entity":"China","Year":2020,"energy":5184.13,"source":"fossil fuels"},{"Entity":"France","Year":2000,"energy":50.61,"source":"fossil fuels"},{"Entity":"France","Year":2001,"energy":46.48,"source":"fossil fuels"},{"Entity":"France","Year":2002,"energy":52.67,"source":"fossil fuels"},{"Entity":"France","Year":2003,"energy":57.38,"source":"fossil fuels"},{"Entity":"France","Year":2004,"energy":56.53,"source":"fossil fuels"},{"Entity":"France","Year":2005,"energy":63.35,"source":"fossil fuels"},{"Entity":"France","Year":2006,"energy":56.9,"source":"fossil fuels"},{"Entity":"France","Year":2007,"energy":58.18,"source":"fossil fuels"},{"Entity":"France","Year":2008,"energy":55.57,"source":"fossil fuels"},{"Entity":"France","Year":2009,"energy":51.32,"source":"fossil fuels"},{"Entity":"France","Year":2010,"energy":57.63,"source":"fossil fuels"},{"Entity":"France","Year":2011,"energy":58.99,"source":"fossil fuels"},{"Entity":"France","Year":2012,"energy":56.42,"source":"fossil fuels"},{"Entity":"France","Year":2013,"energy":53.35,"source":"fossil fuels"},{"Entity":"France","Year":2014,"energy":35.68,"source":"fossil fuels"},{"Entity":"France","Year":2015,"energy":44.65,"source":"fossil fuels"},{"Entity":"France","Year":2016,"energy":56.45,"source":"fossil fuels"},{"Entity":"France","Year":2017,"energy":65.09,"source":"fossil fuels"},{"Entity":"France","Year":2018,"energy":49.27,"source":"fossil fuels"},{"Entity":"France","Year":2019,"energy":53.5,"source":"fossil fuels"},{"Entity":"France","Year":2020,"energy":48.14,"source":"fossil fuels"},{"Entity":"Germany","Year":2000,"energy":367.22,"source":"fossil fuels"},{"Entity":"Germany","Year":2001,"energy":372.69,"source":"fossil fuels"},{"Entity":"Germany","Year":2002,"energy":372.64,"source":"fossil fuels"},{"Entity":"Germany","Year":2003,"energy":390.81,"source":"fossil fuels"},{"Entity":"Germany","Year":2004,"energy":385.24,"source":"fossil fuels"},{"Entity":"Germany","Year":2005,"energy":386.96,"source":"fossil fuels"},{"Entity":"Germany","Year":2006,"energy":390.03,"source":"fossil fuels"},{"Entity":"Germany","Year":2007,"energy":402.4,"source":"fossil fuels"},{"Entity":"Germany","Year":2008,"energy":390.43,"source":"fossil fuels"},{"Entity":"Germany","Year":2009,"energy":358.07,"source":"fossil fuels"},{"Entity":"Germany","Year":2010,"energy":378.9,"source":"fossil fuels"},{"Entity":"Germany","Year":2011,"energy":373.16,"source":"fossil fuels"},{"Entity":"Germany","Year":2012,"energy":377.89,"source":"fossil fuels"},{"Entity":"Germany","Year":2013,"energy":381.52,"source":"fossil fuels"},{"Entity":"Germany","Year":2014,"energy":360.28,"source":"fossil fuels"},{"Entity":"Germany","Year":2015,"energy":359.99,"source":"fossil fuels"},{"Entity":"Germany","Year":2016,"energy":368.67,"source":"fossil fuels"},{"Entity":"Germany","Year":2017,"energy":353.37,"source":"fossil fuels"},{"Entity":"Germany","Year":2018,"energy":334.65,"source":"fossil fuels"},{"Entity":"Germany","Year":2019,"energy":284.09,"source":"fossil fuels"},{"Entity":"Germany","Year":2020,"energy":251.4,"source":"fossil fuels"},{"Entity":"India","Year":2000,"energy":475.35,"source":"fossil fuels"},{"Entity":"India","Year":2001,"energy":491.01,"source":"fossil fuels"},{"Entity":"India","Year":2002,"energy":517.51,"source":"fossil fuels"},{"Entity":"India","Year":2003,"energy":545.36,"source":"fossil fuels"},{"Entity":"India","Year":2004,"energy":567.86,"source":"fossil fuels"},{"Entity":"India","Year":2005,"energy":579.32,"source":"fossil fuels"},{"Entity":"India","Year":2006,"energy":599.24,"source":"fossil fuels"},{"Entity":"India","Year":2007,"energy":636.68,"source":"fossil fuels"},{"Entity":"India","Year":2008,"energy":674.27,"source":"fossil fuels"},{"Entity":"India","Year":2009,"energy":728.56,"source":"fossil fuels"},{"Entity":"India","Year":2010,"energy":771.78,"source":"fossil fuels"},{"Entity":"India","Year":2011,"energy":828.16,"source":"fossil fuels"},{"Entity":"India","Year":2012,"energy":893.45,"source":"fossil fuels"},{"Entity":"India","Year":2013,"energy":924.93,"source":"fossil fuels"},{"Entity":"India","Year":2014,"energy":1025.29,"source":"fossil fuels"},{"Entity":"India","Year":2015,"energy":1080.44,"source":"fossil fuels"},{"Entity":"India","Year":2016,"energy":1155.52,"source":"fossil fuels"},{"Entity":"India","Year":2017,"energy":1198.85,"source":"fossil fuels"},{"Entity":"India","Year":2018,"energy":1276.32,"source":"fossil fuels"},{"Entity":"India","Year":2019,"energy":1273.59,"source":"fossil fuels"},{"Entity":"India","Year":2020,"energy":1202.34,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2000,"energy":78.43,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2001,"energy":83.96,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2002,"energy":92.03,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2003,"energy":97.57,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2004,"energy":103.8,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2005,"energy":110.22,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2006,"energy":116.8,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2007,"energy":124.1,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2008,"energy":129.55,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2009,"energy":136.05,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2010,"energy":142.88,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2011,"energy":161.41,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2012,"energy":177.83,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2013,"energy":189.66,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2014,"energy":203.11,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2015,"energy":209.71,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2016,"energy":217.97,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2017,"energy":222.64,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2018,"energy":235.41,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2019,"energy":247.39,"source":"fossil fuels"},{"Entity":"Indonesia","Year":2020,"energy":238.91,"source":"fossil fuels"},{"Entity":"Italy","Year":2000,"energy":218.28,"source":"fossil fuels"},{"Entity":"Italy","Year":2001,"energy":216.73,"source":"fossil fuels"},{"Entity":"Italy","Year":2002,"energy":228.45,"source":"fossil fuels"},{"Entity":"Italy","Year":2003,"energy":238.52,"source":"fossil fuels"},{"Entity":"Italy","Year":2004,"energy":240.95,"source":"fossil fuels"},{"Entity":"Italy","Year":2005,"energy":247.29,"source":"fossil fuels"},{"Entity":"Italy","Year":2006,"energy":256.03,"source":"fossil fuels"},{"Entity":"Italy","Year":2007,"energy":259.49,"source":"fossil fuels"},{"Entity":"Italy","Year":2008,"energy":254.34,"source":"fossil fuels"},{"Entity":"Italy","Year":2009,"energy":218.32,"source":"fossil fuels"},{"Entity":"Italy","Year":2010,"energy":220.93,"source":"fossil fuels"},{"Entity":"Italy","Year":2011,"energy":216.78,"source":"fossil fuels"},{"Entity":"Italy","Year":2012,"energy":204.26,"source":"fossil fuels"},{"Entity":"Italy","Year":2013,"energy":175.07,"source":"fossil fuels"},{"Entity":"Italy","Year":2014,"energy":156.76,"source":"fossil fuels"},{"Entity":"Italy","Year":2015,"energy":172.06,"source":"fossil fuels"},{"Entity":"Italy","Year":2016,"energy":179.19,"source":"fossil fuels"},{"Entity":"Italy","Year":2017,"energy":189.44,"source":"fossil fuels"},{"Entity":"Italy","Year":2018,"energy":172.98,"source":"fossil fuels"},{"Entity":"Italy","Year":2019,"energy":175.52,"source":"fossil fuels"},{"Entity":"Italy","Year":2020,"energy":161.17,"source":"fossil fuels"},{"Entity":"Japan","Year":2000,"energy":578.29,"source":"fossil fuels"},{"Entity":"Japan","Year":2001,"energy":564.95,"source":"fossil fuels"},{"Entity":"Japan","Year":2002,"energy":605.12,"source":"fossil fuels"},{"Entity":"Japan","Year":2003,"energy":633.76,"source":"fossil fuels"},{"Entity":"Japan","Year":2004,"energy":621.6,"source":"fossil fuels"},{"Entity":"Japan","Year":2005,"energy":634.09,"source":"fossil fuels"},{"Entity":"Japan","Year":2006,"energy":628.77,"source":"fossil fuels"},{"Entity":"Japan","Year":2007,"energy":705.37,"source":"fossil fuels"},{"Entity":"Japan","Year":2008,"energy":663.88,"source":"fossil fuels"},{"Entity":"Japan","Year":2009,"energy":611.86,"source":"fossil fuels"},{"Entity":"Japan","Year":2010,"energy":689.89,"source":"fossil fuels"},{"Entity":"Japan","Year":2011,"energy":777.1,"source":"fossil fuels"},{"Entity":"Japan","Year":2012,"energy":920.39,"source":"fossil fuels"},{"Entity":"Japan","Year":2013,"energy":897.88,"source":"fossil fuels"},{"Entity":"Japan","Year":2014,"energy":892.18,"source":"fossil fuels"},{"Entity":"Japan","Year":2015,"energy":844.23,"source":"fossil fuels"},{"Entity":"Japan","Year":2016,"energy":832.4,"source":"fossil fuels"},{"Entity":"Japan","Year":2017,"energy":806.12,"source":"fossil fuels"},{"Entity":"Japan","Year":2018,"energy":780.61,"source":"fossil fuels"},{"Entity":"Japan","Year":2019,"energy":735.66,"source":"fossil fuels"},{"Entity":"Japan","Year":2020,"energy":716.67,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2000,"energy":44.11,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2001,"energy":47.3,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2002,"energy":49.44,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2003,"energy":55.24,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2004,"energy":58.89,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2005,"energy":60.06,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2006,"energy":63.89,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2007,"energy":68.45,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2008,"energy":72.89,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2009,"energy":71.85,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2010,"energy":74.63,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2011,"energy":78.7,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2012,"energy":82.98,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2013,"energy":84.88,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2014,"energy":86.37,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2015,"energy":82.2,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2016,"energy":82.65,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2017,"energy":91.48,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2018,"energy":96.36,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2019,"energy":95.39,"source":"fossil fuels"},{"Entity":"Kazakhstan","Year":2020,"energy":96.7,"source":"fossil fuels"},{"Entity":"Mexico","Year":2000,"energy":141.8,"source":"fossil fuels"},{"Entity":"Mexico","Year":2001,"energy":153.32,"source":"fossil fuels"},{"Entity":"Mexico","Year":2002,"energy":159.81,"source":"fossil fuels"},{"Entity":"Mexico","Year":2003,"energy":160.45,"source":"fossil fuels"},{"Entity":"Mexico","Year":2004,"energy":173.66,"source":"fossil fuels"},{"Entity":"Mexico","Year":2005,"energy":178.76,"source":"fossil fuels"},{"Entity":"Mexico","Year":2006,"energy":182.76,"source":"fossil fuels"},{"Entity":"Mexico","Year":2007,"energy":191.83,"source":"fossil fuels"},{"Entity":"Mexico","Year":2008,"energy":184.51,"source":"fossil fuels"},{"Entity":"Mexico","Year":2009,"energy":194.75,"source":"fossil fuels"},{"Entity":"Mexico","Year":2010,"energy":207.38,"source":"fossil fuels"},{"Entity":"Mexico","Year":2011,"energy":219.88,"source":"fossil fuels"},{"Entity":"Mexico","Year":2012,"energy":229.14,"source":"fossil fuels"},{"Entity":"Mexico","Year":2013,"energy":231.23,"source":"fossil fuels"},{"Entity":"Mexico","Year":2014,"energy":223.43,"source":"fossil fuels"},{"Entity":"Mexico","Year":2015,"energy":234.28,"source":"fossil fuels"},{"Entity":"Mexico","Year":2016,"energy":239.78,"source":"fossil fuels"},{"Entity":"Mexico","Year":2017,"energy":242.69,"source":"fossil fuels"},{"Entity":"Mexico","Year":2018,"energy":259.92,"source":"fossil fuels"},{"Entity":"Mexico","Year":2019,"energy":248.2,"source":"fossil fuels"},{"Entity":"Mexico","Year":2020,"energy":245.46,"source":"fossil fuels"},{"Entity":"Poland","Year":2000,"energy":140.85,"source":"fossil fuels"},{"Entity":"Poland","Year":2001,"energy":140.94,"source":"fossil fuels"},{"Entity":"Poland","Year":2002,"energy":139.72,"source":"fossil fuels"},{"Entity":"Poland","Year":2003,"energy":147.76,"source":"fossil fuels"},{"Entity":"Poland","Year":2004,"energy":149.06,"source":"fossil fuels"},{"Entity":"Poland","Year":2005,"energy":151.2,"source":"fossil fuels"},{"Entity":"Poland","Year":2006,"energy":156.16,"source":"fossil fuels"},{"Entity":"Poland","Year":2007,"energy":153.08,"source":"fossil fuels"},{"Entity":"Poland","Year":2008,"energy":148.03,"source":"fossil fuels"},{"Entity":"Poland","Year":2009,"energy":142.4,"source":"fossil fuels"},{"Entity":"Poland","Year":2010,"energy":146.12,"source":"fossil fuels"},{"Entity":"Poland","Year":2011,"energy":149.88,"source":"fossil fuels"},{"Entity":"Poland","Year":2012,"energy":144.75,"source":"fossil fuels"},{"Entity":"Poland","Year":2013,"energy":146.85,"source":"fossil fuels"},{"Entity":"Poland","Year":2014,"energy":138.53,"source":"fossil fuels"},{"Entity":"Poland","Year":2015,"energy":141.55,"source":"fossil fuels"},{"Entity":"Poland","Year":2016,"energy":143.28,"source":"fossil fuels"},{"Entity":"Poland","Year":2017,"energy":145.8,"source":"fossil fuels"},{"Entity":"Poland","Year":2018,"energy":147.87,"source":"fossil fuels"},{"Entity":"Poland","Year":2019,"energy":137.58,"source":"fossil fuels"},{"Entity":"Poland","Year":2020,"energy":128.91,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2000,"energy":138.68,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2001,"energy":146.09,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2002,"energy":154.91,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2003,"energy":166.58,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2004,"energy":173.41,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2005,"energy":191.05,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2006,"energy":196.31,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2007,"energy":204.43,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2008,"energy":204.2,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2009,"energy":217.31,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2010,"energy":240.06,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2011,"energy":250.07,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2012,"energy":271.68,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2013,"energy":284.02,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2014,"energy":311.81,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2015,"energy":338.34,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2016,"energy":337.38,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2017,"energy":354.3,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2018,"energy":334.7,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2019,"energy":335.24,"source":"fossil fuels"},{"Entity":"Saudi Arabia","Year":2020,"energy":337.82,"source":"fossil fuels"},{"Entity":"South Africa","Year":2000,"energy":181.67,"source":"fossil fuels"},{"Entity":"South Africa","Year":2001,"energy":183.36,"source":"fossil fuels"},{"Entity":"South Africa","Year":2002,"energy":188.79,"source":"fossil fuels"},{"Entity":"South Africa","Year":2003,"energy":204.39,"source":"fossil fuels"},{"Entity":"South Africa","Year":2004,"energy":212.63,"source":"fossil fuels"},{"Entity":"South Africa","Year":2005,"energy":215.23,"source":"fossil fuels"},{"Entity":"South Africa","Year":2006,"energy":223.25,"source":"fossil fuels"},{"Entity":"South Africa","Year":2007,"energy":232.91,"source":"fossil fuels"},{"Entity":"South Africa","Year":2008,"energy":226.32,"source":"fossil fuels"},{"Entity":"South Africa","Year":2009,"energy":218.17,"source":"fossil fuels"},{"Entity":"South Africa","Year":2010,"energy":227.57,"source":"fossil fuels"},{"Entity":"South Africa","Year":2011,"energy":229.06,"source":"fossil fuels"},{"Entity":"South Africa","Year":2012,"energy":226.84,"source":"fossil fuels"},{"Entity":"South Africa","Year":2013,"energy":223.28,"source":"fossil fuels"},{"Entity":"South Africa","Year":2014,"energy":218.42,"source":"fossil fuels"},{"Entity":"South Africa","Year":2015,"energy":214.88,"source":"fossil fuels"},{"Entity":"South Africa","Year":2016,"energy":213.09,"source":"fossil fuels"},{"Entity":"South Africa","Year":2017,"energy":212.77,"source":"fossil fuels"},{"Entity":"South Africa","Year":2018,"energy":214.25,"source":"fossil fuels"},{"Entity":"South Africa","Year":2019,"energy":208.39,"source":"fossil fuels"},{"Entity":"South Africa","Year":2020,"energy":197.5,"source":"fossil fuels"},{"Entity":"Spain","Year":2000,"energy":124.22,"source":"fossil fuels"},{"Entity":"Spain","Year":2001,"energy":120.06,"source":"fossil fuels"},{"Entity":"Spain","Year":2002,"energy":143.72,"source":"fossil fuels"},{"Entity":"Spain","Year":2003,"energy":139.67,"source":"fossil fuels"},{"Entity":"Spain","Year":2004,"energy":159.91,"source":"fossil fuels"},{"Entity":"Spain","Year":2005,"energy":184.65,"source":"fossil fuels"},{"Entity":"Spain","Year":2006,"energy":182.98,"source":"fossil fuels"},{"Entity":"Spain","Year":2007,"energy":188.13,"source":"fossil fuels"},{"Entity":"Spain","Year":2008,"energy":189.55,"source":"fossil fuels"},{"Entity":"Spain","Year":2009,"energy":164.69,"source":"fossil fuels"},{"Entity":"Spain","Year":2010,"energy":138.39,"source":"fossil fuels"},{"Entity":"Spain","Year":2011,"energy":146.12,"source":"fossil fuels"},{"Entity":"Spain","Year":2012,"energy":145.33,"source":"fossil fuels"},{"Entity":"Spain","Year":2013,"energy":113.32,"source":"fossil fuels"},{"Entity":"Spain","Year":2014,"energy":107.37,"source":"fossil fuels"},{"Entity":"Spain","Year":2015,"energy":123.19,"source":"fossil fuels"},{"Entity":"Spain","Year":2016,"energy":107.93,"source":"fossil fuels"},{"Entity":"Spain","Year":2017,"energy":126.93,"source":"fossil fuels"},{"Entity":"Spain","Year":2018,"energy":112.23,"source":"fossil fuels"},{"Entity":"Spain","Year":2019,"energy":111.55,"source":"fossil fuels"},{"Entity":"Spain","Year":2020,"energy":87.64,"source":"fossil fuels"},{"Entity":"Thailand","Year":2000,"energy":83.15,"source":"fossil fuels"},{"Entity":"Thailand","Year":2001,"energy":88.97,"source":"fossil fuels"},{"Entity":"Thailand","Year":2002,"energy":93.51,"source":"fossil fuels"},{"Entity":"Thailand","Year":2003,"energy":100.61,"source":"fossil fuels"},{"Entity":"Thailand","Year":2004,"energy":109.46,"source":"fossil fuels"},{"Entity":"Thailand","Year":2005,"energy":115.58,"source":"fossil fuels"},{"Entity":"Thailand","Year":2006,"energy":119.41,"source":"fossil fuels"},{"Entity":"Thailand","Year":2007,"energy":122.12,"source":"fossil fuels"},{"Entity":"Thailand","Year":2008,"energy":127.43,"source":"fossil fuels"},{"Entity":"Thailand","Year":2009,"energy":128.09,"source":"fossil fuels"},{"Entity":"Thailand","Year":2010,"energy":141.72,"source":"fossil fuels"},{"Entity":"Thailand","Year":2011,"energy":135.31,"source":"fossil fuels"},{"Entity":"Thailand","Year":2012,"energy":143.73,"source":"fossil fuels"},{"Entity":"Thailand","Year":2013,"energy":148.29,"source":"fossil fuels"},{"Entity":"Thailand","Year":2014,"energy":149.26,"source":"fossil fuels"},{"Entity":"Thailand","Year":2015,"energy":153.4,"source":"fossil fuels"},{"Entity":"Thailand","Year":2016,"energy":161.79,"source":"fossil fuels"},{"Entity":"Thailand","Year":2017,"energy":161.88,"source":"fossil fuels"},{"Entity":"Thailand","Year":2018,"energy":156.26,"source":"fossil fuels"},{"Entity":"Thailand","Year":2019,"energy":162.59,"source":"fossil fuels"},{"Entity":"Thailand","Year":2020,"energy":154.52,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2000,"energy":82.65,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2001,"energy":84.59,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2002,"energy":85.93,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2003,"energy":89.52,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2004,"energy":83.22,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2005,"energy":84.75,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2006,"energy":90.09,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2007,"energy":93.13,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2008,"energy":90.92,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2009,"energy":78.58,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2010,"energy":86.28,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2011,"energy":93.5,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2012,"energy":96.99,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2013,"energy":95.39,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2014,"energy":83.42,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2015,"energy":66.91,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2016,"energy":72.66,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2017,"energy":57.96,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2018,"energy":60.81,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2019,"energy":57.79,"source":"fossil fuels"},{"Entity":"Ukraine","Year":2020,"energy":54.5,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2000,"energy":279.34,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2001,"energy":282.72,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2002,"energy":285.62,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2003,"energy":296.15,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2004,"energy":297.15,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2005,"energy":296.87,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2006,"energy":299.88,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2007,"energy":310.26,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2008,"energy":310.5,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2009,"energy":278.73,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2010,"energy":290.59,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2011,"energy":260.88,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2012,"energy":249.25,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2013,"energy":231.56,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2014,"energy":206.94,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2015,"energy":182.43,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2016,"energy":181.56,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2017,"energy":165.91,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2018,"energy":155.41,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2019,"energy":144.99,"source":"fossil fuels"},{"Entity":"United Kingdom","Year":2020,"energy":124.78,"source":"fossil fuels"},{"Entity":"United States","Year":2000,"energy":2697.28,"source":"fossil fuels"},{"Entity":"United States","Year":2001,"energy":2678.68,"source":"fossil fuels"},{"Entity":"United States","Year":2002,"energy":2727.83,"source":"fossil fuels"},{"Entity":"United States","Year":2003,"energy":2756.03,"source":"fossil fuels"},{"Entity":"United States","Year":2004,"energy":2818.28,"source":"fossil fuels"},{"Entity":"United States","Year":2005,"energy":2899.96,"source":"fossil fuels"},{"Entity":"United States","Year":2006,"energy":2878.56,"source":"fossil fuels"},{"Entity":"United States","Year":2007,"energy":2988.24,"source":"fossil fuels"},{"Entity":"United States","Year":2008,"energy":2924.21,"source":"fossil fuels"},{"Entity":"United States","Year":2009,"energy":2725.41,"source":"fossil fuels"},{"Entity":"United States","Year":2010,"energy":2882.49,"source":"fossil fuels"},{"Entity":"United States","Year":2011,"energy":2788.93,"source":"fossil fuels"},{"Entity":"United States","Year":2012,"energy":2779.02,"source":"fossil fuels"},{"Entity":"United States","Year":2013,"energy":2746.21,"source":"fossil fuels"},{"Entity":"United States","Year":2014,"energy":2752.01,"source":"fossil fuels"},{"Entity":"United States","Year":2015,"energy":2730.32,"source":"fossil fuels"},{"Entity":"United States","Year":2016,"energy":2656.96,"source":"fossil fuels"},{"Entity":"United States","Year":2017,"energy":2540.17,"source":"fossil fuels"},{"Entity":"United States","Year":2018,"energy":2661.3,"source":"fossil fuels"},{"Entity":"United States","Year":2019,"energy":2588.21,"source":"fossil fuels"},{"Entity":"United States","Year":2020,"energy":2431.9,"source":"fossil fuels"},{"Entity":"Australia","Year":2000,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2001,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2002,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2003,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2004,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2005,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2006,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2007,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2008,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2009,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2010,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2011,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2012,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2013,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2014,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2015,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2016,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2017,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2018,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2019,"energy":0,"source":"nuclear"},{"Entity":"Australia","Year":2020,"energy":0,"source":"nuclear"},{"Entity":"Brazil","Year":2000,"energy":4.94,"source":"nuclear"},{"Entity":"Brazil","Year":2001,"energy":14.27,"source":"nuclear"},{"Entity":"Brazil","Year":2002,"energy":13.84,"source":"nuclear"},{"Entity":"Brazil","Year":2003,"energy":13.4,"source":"nuclear"},{"Entity":"Brazil","Year":2004,"energy":11.6,"source":"nuclear"},{"Entity":"Brazil","Year":2005,"energy":9.2,"source":"nuclear"},{"Entity":"Brazil","Year":2006,"energy":12.98,"source":"nuclear"},{"Entity":"Brazil","Year":2007,"energy":11.65,"source":"nuclear"},{"Entity":"Brazil","Year":2008,"energy":13.21,"source":"nuclear"},{"Entity":"Brazil","Year":2009,"energy":12.22,"source":"nuclear"},{"Entity":"Brazil","Year":2010,"energy":13.77,"source":"nuclear"},{"Entity":"Brazil","Year":2011,"energy":14.8,"source":"nuclear"},{"Entity":"Brazil","Year":2012,"energy":15.17,"source":"nuclear"},{"Entity":"Brazil","Year":2013,"energy":14.65,"source":"nuclear"},{"Entity":"Brazil","Year":2014,"energy":14.46,"source":"nuclear"},{"Entity":"Brazil","Year":2015,"energy":13.91,"source":"nuclear"},{"Entity":"Brazil","Year":2016,"energy":14.97,"source":"nuclear"},{"Entity":"Brazil","Year":2017,"energy":14.86,"source":"nuclear"},{"Entity":"Brazil","Year":2018,"energy":14.79,"source":"nuclear"},{"Entity":"Brazil","Year":2019,"energy":15.16,"source":"nuclear"},{"Entity":"Brazil","Year":2020,"energy":13.21,"source":"nuclear"},{"Entity":"Canada","Year":2000,"energy":69.16,"source":"nuclear"},{"Entity":"Canada","Year":2001,"energy":72.86,"source":"nuclear"},{"Entity":"Canada","Year":2002,"energy":71.75,"source":"nuclear"},{"Entity":"Canada","Year":2003,"energy":71.15,"source":"nuclear"},{"Entity":"Canada","Year":2004,"energy":85.87,"source":"nuclear"},{"Entity":"Canada","Year":2005,"energy":86.83,"source":"nuclear"},{"Entity":"Canada","Year":2006,"energy":92.44,"source":"nuclear"},{"Entity":"Canada","Year":2007,"energy":88.19,"source":"nuclear"},{"Entity":"Canada","Year":2008,"energy":88.3,"source":"nuclear"},{"Entity":"Canada","Year":2009,"energy":85.13,"source":"nuclear"},{"Entity":"Canada","Year":2010,"energy":85.53,"source":"nuclear"},{"Entity":"Canada","Year":2011,"energy":88.29,"source":"nuclear"},{"Entity":"Canada","Year":2012,"energy":89.49,"source":"nuclear"},{"Entity":"Canada","Year":2013,"energy":97.58,"source":"nuclear"},{"Entity":"Canada","Year":2014,"energy":101.21,"source":"nuclear"},{"Entity":"Canada","Year":2015,"energy":96.05,"source":"nuclear"},{"Entity":"Canada","Year":2016,"energy":95.69,"source":"nuclear"},{"Entity":"Canada","Year":2017,"energy":95.57,"source":"nuclear"},{"Entity":"Canada","Year":2018,"energy":95.03,"source":"nuclear"},{"Entity":"Canada","Year":2019,"energy":95.47,"source":"nuclear"},{"Entity":"Canada","Year":2020,"energy":92.65,"source":"nuclear"},{"Entity":"China","Year":2000,"energy":16.74,"source":"nuclear"},{"Entity":"China","Year":2001,"energy":17.47,"source":"nuclear"},{"Entity":"China","Year":2002,"energy":25.13,"source":"nuclear"},{"Entity":"China","Year":2003,"energy":43.34,"source":"nuclear"},{"Entity":"China","Year":2004,"energy":50.47,"source":"nuclear"},{"Entity":"China","Year":2005,"energy":53.09,"source":"nuclear"},{"Entity":"China","Year":2006,"energy":54.84,"source":"nuclear"},{"Entity":"China","Year":2007,"energy":62.13,"source":"nuclear"},{"Entity":"China","Year":2008,"energy":68.39,"source":"nuclear"},{"Entity":"China","Year":2009,"energy":70.05,"source":"nuclear"},{"Entity":"China","Year":2010,"energy":74.74,"source":"nuclear"},{"Entity":"China","Year":2011,"energy":87.2,"source":"nuclear"},{"Entity":"China","Year":2012,"energy":98.32,"source":"nuclear"},{"Entity":"China","Year":2013,"energy":111.5,"source":"nuclear"},{"Entity":"China","Year":2014,"energy":133.22,"source":"nuclear"},{"Entity":"China","Year":2015,"energy":171.38,"source":"nuclear"},{"Entity":"China","Year":2016,"energy":213.18,"source":"nuclear"},{"Entity":"China","Year":2017,"energy":248.1,"source":"nuclear"},{"Entity":"China","Year":2018,"energy":295,"source":"nuclear"},{"Entity":"China","Year":2019,"energy":348.7,"source":"nuclear"},{"Entity":"China","Year":2020,"energy":366.2,"source":"nuclear"},{"Entity":"France","Year":2000,"energy":415.16,"source":"nuclear"},{"Entity":"France","Year":2001,"energy":421.08,"source":"nuclear"},{"Entity":"France","Year":2002,"energy":436.76,"source":"nuclear"},{"Entity":"France","Year":2003,"energy":441.07,"source":"nuclear"},{"Entity":"France","Year":2004,"energy":448.24,"source":"nuclear"},{"Entity":"France","Year":2005,"energy":451.53,"source":"nuclear"},{"Entity":"France","Year":2006,"energy":450.19,"source":"nuclear"},{"Entity":"France","Year":2007,"energy":439.73,"source":"nuclear"},{"Entity":"France","Year":2008,"energy":439.45,"source":"nuclear"},{"Entity":"France","Year":2009,"energy":409.74,"source":"nuclear"},{"Entity":"France","Year":2010,"energy":428.52,"source":"nuclear"},{"Entity":"France","Year":2011,"energy":442.39,"source":"nuclear"},{"Entity":"France","Year":2012,"energy":425.41,"source":"nuclear"},{"Entity":"France","Year":2013,"energy":423.68,"source":"nuclear"},{"Entity":"France","Year":2014,"energy":436.48,"source":"nuclear"},{"Entity":"France","Year":2015,"energy":437.43,"source":"nuclear"},{"Entity":"France","Year":2016,"energy":403.2,"source":"nuclear"},{"Entity":"France","Year":2017,"energy":398.36,"source":"nuclear"},{"Entity":"France","Year":2018,"energy":412.94,"source":"nuclear"},{"Entity":"France","Year":2019,"energy":399.01,"source":"nuclear"},{"Entity":"France","Year":2020,"energy":353.83,"source":"nuclear"},{"Entity":"Germany","Year":2000,"energy":169.61,"source":"nuclear"},{"Entity":"Germany","Year":2001,"energy":171.3,"source":"nuclear"},{"Entity":"Germany","Year":2002,"energy":164.84,"source":"nuclear"},{"Entity":"Germany","Year":2003,"energy":165.06,"source":"nuclear"},{"Entity":"Germany","Year":2004,"energy":167.07,"source":"nuclear"},{"Entity":"Germany","Year":2005,"energy":163.05,"source":"nuclear"},{"Entity":"Germany","Year":2006,"energy":167.27,"source":"nuclear"},{"Entity":"Germany","Year":2007,"energy":140.53,"source":"nuclear"},{"Entity":"Germany","Year":2008,"energy":148.49,"source":"nuclear"},{"Entity":"Germany","Year":2009,"energy":134.93,"source":"nuclear"},{"Entity":"Germany","Year":2010,"energy":140.56,"source":"nuclear"},{"Entity":"Germany","Year":2011,"energy":107.97,"source":"nuclear"},{"Entity":"Germany","Year":2012,"energy":99.46,"source":"nuclear"},{"Entity":"Germany","Year":2013,"energy":97.29,"source":"nuclear"},{"Entity":"Germany","Year":2014,"energy":97.13,"source":"nuclear"},{"Entity":"Germany","Year":2015,"energy":91.79,"source":"nuclear"},{"Entity":"Germany","Year":2016,"energy":84.63,"source":"nuclear"},{"Entity":"Germany","Year":2017,"energy":76.32,"source":"nuclear"},{"Entity":"Germany","Year":2018,"energy":76,"source":"nuclear"},{"Entity":"Germany","Year":2019,"energy":75.07,"source":"nuclear"},{"Entity":"Germany","Year":2020,"energy":64.38,"source":"nuclear"},{"Entity":"India","Year":2000,"energy":15.77,"source":"nuclear"},{"Entity":"India","Year":2001,"energy":18.89,"source":"nuclear"},{"Entity":"India","Year":2002,"energy":19.35,"source":"nuclear"},{"Entity":"India","Year":2003,"energy":18.14,"source":"nuclear"},{"Entity":"India","Year":2004,"energy":21.26,"source":"nuclear"},{"Entity":"India","Year":2005,"energy":17.73,"source":"nuclear"},{"Entity":"India","Year":2006,"energy":17.63,"source":"nuclear"},{"Entity":"India","Year":2007,"energy":17.83,"source":"nuclear"},{"Entity":"India","Year":2008,"energy":15.23,"source":"nuclear"},{"Entity":"India","Year":2009,"energy":16.82,"source":"nuclear"},{"Entity":"India","Year":2010,"energy":23.08,"source":"nuclear"},{"Entity":"India","Year":2011,"energy":32.22,"source":"nuclear"},{"Entity":"India","Year":2012,"energy":33.14,"source":"nuclear"},{"Entity":"India","Year":2013,"energy":33.31,"source":"nuclear"},{"Entity":"India","Year":2014,"energy":34.69,"source":"nuclear"},{"Entity":"India","Year":2015,"energy":38.31,"source":"nuclear"},{"Entity":"India","Year":2016,"energy":37.9,"source":"nuclear"},{"Entity":"India","Year":2017,"energy":37.41,"source":"nuclear"},{"Entity":"India","Year":2018,"energy":39.05,"source":"nuclear"},{"Entity":"India","Year":2019,"energy":45.16,"source":"nuclear"},{"Entity":"India","Year":2020,"energy":44.61,"source":"nuclear"},{"Entity":"Indonesia","Year":2000,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2001,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2002,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2003,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2004,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2005,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2006,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2007,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2008,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2009,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2010,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2011,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2012,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2013,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2014,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2015,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2016,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2017,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2018,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2019,"energy":null,"source":"nuclear"},{"Entity":"Indonesia","Year":2020,"energy":null,"source":"nuclear"},{"Entity":"Italy","Year":2000,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2001,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2002,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2003,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2004,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2005,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2006,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2007,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2008,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2009,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2010,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2011,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2012,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2013,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2014,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2015,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2016,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2017,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2018,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2019,"energy":0,"source":"nuclear"},{"Entity":"Italy","Year":2020,"energy":0,"source":"nuclear"},{"Entity":"Japan","Year":2000,"energy":305.95,"source":"nuclear"},{"Entity":"Japan","Year":2001,"energy":303.86,"source":"nuclear"},{"Entity":"Japan","Year":2002,"energy":280.34,"source":"nuclear"},{"Entity":"Japan","Year":2003,"energy":228.01,"source":"nuclear"},{"Entity":"Japan","Year":2004,"energy":268.32,"source":"nuclear"},{"Entity":"Japan","Year":2005,"energy":280.5,"source":"nuclear"},{"Entity":"Japan","Year":2006,"energy":291.54,"source":"nuclear"},{"Entity":"Japan","Year":2007,"energy":267.34,"source":"nuclear"},{"Entity":"Japan","Year":2008,"energy":241.25,"source":"nuclear"},{"Entity":"Japan","Year":2009,"energy":263.05,"source":"nuclear"},{"Entity":"Japan","Year":2010,"energy":278.36,"source":"nuclear"},{"Entity":"Japan","Year":2011,"energy":153.38,"source":"nuclear"},{"Entity":"Japan","Year":2012,"energy":15.12,"source":"nuclear"},{"Entity":"Japan","Year":2013,"energy":10.43,"source":"nuclear"},{"Entity":"Japan","Year":2014,"energy":0,"source":"nuclear"},{"Entity":"Japan","Year":2015,"energy":3.24,"source":"nuclear"},{"Entity":"Japan","Year":2016,"energy":14.87,"source":"nuclear"},{"Entity":"Japan","Year":2017,"energy":27.75,"source":"nuclear"},{"Entity":"Japan","Year":2018,"energy":47.82,"source":"nuclear"},{"Entity":"Japan","Year":2019,"energy":63.88,"source":"nuclear"},{"Entity":"Japan","Year":2020,"energy":41.86,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2000,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2001,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2002,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2003,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2004,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2005,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2006,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2007,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2008,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2009,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2010,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2011,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2012,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2013,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2014,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2015,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2016,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2017,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2018,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2019,"energy":null,"source":"nuclear"},{"Entity":"Kazakhstan","Year":2020,"energy":null,"source":"nuclear"},{"Entity":"Mexico","Year":2000,"energy":7.81,"source":"nuclear"},{"Entity":"Mexico","Year":2001,"energy":8.29,"source":"nuclear"},{"Entity":"Mexico","Year":2002,"energy":9.26,"source":"nuclear"},{"Entity":"Mexico","Year":2003,"energy":9.98,"source":"nuclear"},{"Entity":"Mexico","Year":2004,"energy":8.73,"source":"nuclear"},{"Entity":"Mexico","Year":2005,"energy":10.32,"source":"nuclear"},{"Entity":"Mexico","Year":2006,"energy":10.4,"source":"nuclear"},{"Entity":"Mexico","Year":2007,"energy":9.95,"source":"nuclear"},{"Entity":"Mexico","Year":2008,"energy":9.36,"source":"nuclear"},{"Entity":"Mexico","Year":2009,"energy":10.11,"source":"nuclear"},{"Entity":"Mexico","Year":2010,"energy":5.66,"source":"nuclear"},{"Entity":"Mexico","Year":2011,"energy":9.66,"source":"nuclear"},{"Entity":"Mexico","Year":2012,"energy":8.41,"source":"nuclear"},{"Entity":"Mexico","Year":2013,"energy":11.38,"source":"nuclear"},{"Entity":"Mexico","Year":2014,"energy":9.3,"source":"nuclear"},{"Entity":"Mexico","Year":2015,"energy":11.18,"source":"nuclear"},{"Entity":"Mexico","Year":2016,"energy":10.27,"source":"nuclear"},{"Entity":"Mexico","Year":2017,"energy":10.57,"source":"nuclear"},{"Entity":"Mexico","Year":2018,"energy":13.32,"source":"nuclear"},{"Entity":"Mexico","Year":2019,"energy":10.88,"source":"nuclear"},{"Entity":"Mexico","Year":2020,"energy":10.87,"source":"nuclear"},{"Entity":"Poland","Year":2000,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2001,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2002,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2003,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2004,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2005,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2006,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2007,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2008,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2009,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2010,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2011,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2012,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2013,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2014,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2015,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2016,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2017,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2018,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2019,"energy":0,"source":"nuclear"},{"Entity":"Poland","Year":2020,"energy":0,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2000,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2001,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2002,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2003,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2004,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2005,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2006,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2007,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2008,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2009,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2010,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2011,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2012,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2013,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2014,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2015,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2016,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2017,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2018,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2019,"energy":null,"source":"nuclear"},{"Entity":"Saudi Arabia","Year":2020,"energy":null,"source":"nuclear"},{"Entity":"South Africa","Year":2000,"energy":13.01,"source":"nuclear"},{"Entity":"South Africa","Year":2001,"energy":10.72,"source":"nuclear"},{"Entity":"South Africa","Year":2002,"energy":11.99,"source":"nuclear"},{"Entity":"South Africa","Year":2003,"energy":12.66,"source":"nuclear"},{"Entity":"South Africa","Year":2004,"energy":14.28,"source":"nuclear"},{"Entity":"South Africa","Year":2005,"energy":12.24,"source":"nuclear"},{"Entity":"South Africa","Year":2006,"energy":10.07,"source":"nuclear"},{"Entity":"South Africa","Year":2007,"energy":12.6,"source":"nuclear"},{"Entity":"South Africa","Year":2008,"energy":12.75,"source":"nuclear"},{"Entity":"South Africa","Year":2009,"energy":11.57,"source":"nuclear"},{"Entity":"South Africa","Year":2010,"energy":12.9,"source":"nuclear"},{"Entity":"South Africa","Year":2011,"energy":12.94,"source":"nuclear"},{"Entity":"South Africa","Year":2012,"energy":12.4,"source":"nuclear"},{"Entity":"South Africa","Year":2013,"energy":13.61,"source":"nuclear"},{"Entity":"South Africa","Year":2014,"energy":14.76,"source":"nuclear"},{"Entity":"South Africa","Year":2015,"energy":10.97,"source":"nuclear"},{"Entity":"South Africa","Year":2016,"energy":15.21,"source":"nuclear"},{"Entity":"South Africa","Year":2017,"energy":15.09,"source":"nuclear"},{"Entity":"South Africa","Year":2018,"energy":10.56,"source":"nuclear"},{"Entity":"South Africa","Year":2019,"energy":13.6,"source":"nuclear"},{"Entity":"South Africa","Year":2020,"energy":11.62,"source":"nuclear"},{"Entity":"Spain","Year":2000,"energy":62.21,"source":"nuclear"},{"Entity":"Spain","Year":2001,"energy":63.71,"source":"nuclear"},{"Entity":"Spain","Year":2002,"energy":63.02,"source":"nuclear"},{"Entity":"Spain","Year":2003,"energy":61.88,"source":"nuclear"},{"Entity":"Spain","Year":2004,"energy":63.61,"source":"nuclear"},{"Entity":"Spain","Year":2005,"energy":57.54,"source":"nuclear"},{"Entity":"Spain","Year":2006,"energy":60.13,"source":"nuclear"},{"Entity":"Spain","Year":2007,"energy":55.1,"source":"nuclear"},{"Entity":"Spain","Year":2008,"energy":58.97,"source":"nuclear"},{"Entity":"Spain","Year":2009,"energy":52.76,"source":"nuclear"},{"Entity":"Spain","Year":2010,"energy":61.99,"source":"nuclear"},{"Entity":"Spain","Year":2011,"energy":57.72,"source":"nuclear"},{"Entity":"Spain","Year":2012,"energy":61.47,"source":"nuclear"},{"Entity":"Spain","Year":2013,"energy":56.73,"source":"nuclear"},{"Entity":"Spain","Year":2014,"energy":57.31,"source":"nuclear"},{"Entity":"Spain","Year":2015,"energy":57.2,"source":"nuclear"},{"Entity":"Spain","Year":2016,"energy":58.63,"source":"nuclear"},{"Entity":"Spain","Year":2017,"energy":58.04,"source":"nuclear"},{"Entity":"Spain","Year":2018,"energy":55.77,"source":"nuclear"},{"Entity":"Spain","Year":2019,"energy":58.35,"source":"nuclear"},{"Entity":"Spain","Year":2020,"energy":58.3,"source":"nuclear"},{"Entity":"Thailand","Year":2000,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2001,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2002,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2003,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2004,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2005,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2006,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2007,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2008,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2009,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2010,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2011,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2012,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2013,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2014,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2015,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2016,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2017,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2018,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2019,"energy":0,"source":"nuclear"},{"Entity":"Thailand","Year":2020,"energy":0,"source":"nuclear"},{"Entity":"Ukraine","Year":2000,"energy":77.34,"source":"nuclear"},{"Entity":"Ukraine","Year":2001,"energy":76.17,"source":"nuclear"},{"Entity":"Ukraine","Year":2002,"energy":77.99,"source":"nuclear"},{"Entity":"Ukraine","Year":2003,"energy":81.41,"source":"nuclear"},{"Entity":"Ukraine","Year":2004,"energy":87.02,"source":"nuclear"},{"Entity":"Ukraine","Year":2005,"energy":88.76,"source":"nuclear"},{"Entity":"Ukraine","Year":2006,"energy":90.22,"source":"nuclear"},{"Entity":"Ukraine","Year":2007,"energy":92.54,"source":"nuclear"},{"Entity":"Ukraine","Year":2008,"energy":89.84,"source":"nuclear"},{"Entity":"Ukraine","Year":2009,"energy":82.92,"source":"nuclear"},{"Entity":"Ukraine","Year":2010,"energy":89.15,"source":"nuclear"},{"Entity":"Ukraine","Year":2011,"energy":90.25,"source":"nuclear"},{"Entity":"Ukraine","Year":2012,"energy":90.14,"source":"nuclear"},{"Entity":"Ukraine","Year":2013,"energy":83.21,"source":"nuclear"},{"Entity":"Ukraine","Year":2014,"energy":88.39,"source":"nuclear"},{"Entity":"Ukraine","Year":2015,"energy":87.63,"source":"nuclear"},{"Entity":"Ukraine","Year":2016,"energy":80.95,"source":"nuclear"},{"Entity":"Ukraine","Year":2017,"energy":85.58,"source":"nuclear"},{"Entity":"Ukraine","Year":2018,"energy":84.4,"source":"nuclear"},{"Entity":"Ukraine","Year":2019,"energy":83,"source":"nuclear"},{"Entity":"Ukraine","Year":2020,"energy":76.2,"source":"nuclear"},{"Entity":"United Kingdom","Year":2000,"energy":85.06,"source":"nuclear"},{"Entity":"United Kingdom","Year":2001,"energy":90.09,"source":"nuclear"},{"Entity":"United Kingdom","Year":2002,"energy":87.85,"source":"nuclear"},{"Entity":"United Kingdom","Year":2003,"energy":88.69,"source":"nuclear"},{"Entity":"United Kingdom","Year":2004,"energy":80,"source":"nuclear"},{"Entity":"United Kingdom","Year":2005,"energy":81.62,"source":"nuclear"},{"Entity":"United Kingdom","Year":2006,"energy":75.45,"source":"nuclear"},{"Entity":"United Kingdom","Year":2007,"energy":63.03,"source":"nuclear"},{"Entity":"United Kingdom","Year":2008,"energy":52.49,"source":"nuclear"},{"Entity":"United Kingdom","Year":2009,"energy":69.1,"source":"nuclear"},{"Entity":"United Kingdom","Year":2010,"energy":62.14,"source":"nuclear"},{"Entity":"United Kingdom","Year":2011,"energy":68.98,"source":"nuclear"},{"Entity":"United Kingdom","Year":2012,"energy":70.4,"source":"nuclear"},{"Entity":"United Kingdom","Year":2013,"energy":70.61,"source":"nuclear"},{"Entity":"United Kingdom","Year":2014,"energy":63.75,"source":"nuclear"},{"Entity":"United Kingdom","Year":2015,"energy":70.34,"source":"nuclear"},{"Entity":"United Kingdom","Year":2016,"energy":71.73,"source":"nuclear"},{"Entity":"United Kingdom","Year":2017,"energy":70.34,"source":"nuclear"},{"Entity":"United Kingdom","Year":2018,"energy":65.06,"source":"nuclear"},{"Entity":"United Kingdom","Year":2019,"energy":56.18,"source":"nuclear"},{"Entity":"United Kingdom","Year":2020,"energy":50.85,"source":"nuclear"},{"Entity":"United States","Year":2000,"energy":753.89,"source":"nuclear"},{"Entity":"United States","Year":2001,"energy":768.83,"source":"nuclear"},{"Entity":"United States","Year":2002,"energy":780.06,"source":"nuclear"},{"Entity":"United States","Year":2003,"energy":763.73,"source":"nuclear"},{"Entity":"United States","Year":2004,"energy":788.53,"source":"nuclear"},{"Entity":"United States","Year":2005,"energy":781.99,"source":"nuclear"},{"Entity":"United States","Year":2006,"energy":787.22,"source":"nuclear"},{"Entity":"United States","Year":2007,"energy":806.42,"source":"nuclear"},{"Entity":"United States","Year":2008,"energy":806.21,"source":"nuclear"},{"Entity":"United States","Year":2009,"energy":798.85,"source":"nuclear"},{"Entity":"United States","Year":2010,"energy":806.97,"source":"nuclear"},{"Entity":"United States","Year":2011,"energy":790.2,"source":"nuclear"},{"Entity":"United States","Year":2012,"energy":769.33,"source":"nuclear"},{"Entity":"United States","Year":2013,"energy":789.02,"source":"nuclear"},{"Entity":"United States","Year":2014,"energy":797.17,"source":"nuclear"},{"Entity":"United States","Year":2015,"energy":797.18,"source":"nuclear"},{"Entity":"United States","Year":2016,"energy":805.69,"source":"nuclear"},{"Entity":"United States","Year":2017,"energy":804.95,"source":"nuclear"},{"Entity":"United States","Year":2018,"energy":807.08,"source":"nuclear"},{"Entity":"United States","Year":2019,"energy":809.41,"source":"nuclear"},{"Entity":"United States","Year":2020,"energy":789.88,"source":"nuclear"},{"Entity":"Australia","Year":2000,"energy":17.11,"source":"renewables"},{"Entity":"Australia","Year":2001,"energy":17.4,"source":"renewables"},{"Entity":"Australia","Year":2002,"energy":17.35,"source":"renewables"},{"Entity":"Australia","Year":2003,"energy":18.5,"source":"renewables"},{"Entity":"Australia","Year":2004,"energy":19.41,"source":"renewables"},{"Entity":"Australia","Year":2005,"energy":19.75,"source":"renewables"},{"Entity":"Australia","Year":2006,"energy":21.19,"source":"renewables"},{"Entity":"Australia","Year":2007,"energy":20.93,"source":"renewables"},{"Entity":"Australia","Year":2008,"energy":18.49,"source":"renewables"},{"Entity":"Australia","Year":2009,"energy":18.32,"source":"renewables"},{"Entity":"Australia","Year":2010,"energy":21.13,"source":"renewables"},{"Entity":"Australia","Year":2011,"energy":27.33,"source":"renewables"},{"Entity":"Australia","Year":2012,"energy":26.63,"source":"renewables"},{"Entity":"Australia","Year":2013,"energy":34.2,"source":"renewables"},{"Entity":"Australia","Year":2014,"energy":36.15,"source":"renewables"},{"Entity":"Australia","Year":2015,"energy":33.12,"source":"renewables"},{"Entity":"Australia","Year":2016,"energy":38.41,"source":"renewables"},{"Entity":"Australia","Year":2017,"energy":40.77,"source":"renewables"},{"Entity":"Australia","Year":2018,"energy":42.93,"source":"renewables"},{"Entity":"Australia","Year":2019,"energy":53.41,"source":"renewables"},{"Entity":"Australia","Year":2020,"energy":63.99,"source":"renewables"},{"Entity":"Brazil","Year":2000,"energy":308.77,"source":"renewables"},{"Entity":"Brazil","Year":2001,"energy":273.71,"source":"renewables"},{"Entity":"Brazil","Year":2002,"energy":292.95,"source":"renewables"},{"Entity":"Brazil","Year":2003,"energy":313.88,"source":"renewables"},{"Entity":"Brazil","Year":2004,"energy":329.43,"source":"renewables"},{"Entity":"Brazil","Year":2005,"energy":346.96,"source":"renewables"},{"Entity":"Brazil","Year":2006,"energy":359.55,"source":"renewables"},{"Entity":"Brazil","Year":2007,"energy":387.88,"source":"renewables"},{"Entity":"Brazil","Year":2008,"energy":385.61,"source":"renewables"},{"Entity":"Brazil","Year":2009,"energy":410.13,"source":"renewables"},{"Entity":"Brazil","Year":2010,"energy":435.99,"source":"renewables"},{"Entity":"Brazil","Year":2011,"energy":462.32,"source":"renewables"},{"Entity":"Brazil","Year":2012,"energy":454.78,"source":"renewables"},{"Entity":"Brazil","Year":2013,"energy":436.84,"source":"renewables"},{"Entity":"Brazil","Year":2014,"energy":430.82,"source":"renewables"},{"Entity":"Brazil","Year":2015,"energy":428.81,"source":"renewables"},{"Entity":"Brazil","Year":2016,"energy":463.37,"source":"renewables"},{"Entity":"Brazil","Year":2017,"energy":464.4,"source":"renewables"},{"Entity":"Brazil","Year":2018,"energy":492.66,"source":"renewables"},{"Entity":"Brazil","Year":2019,"energy":512.59,"source":"renewables"},{"Entity":"Brazil","Year":2020,"energy":520.01,"source":"renewables"},{"Entity":"Canada","Year":2000,"energy":363.7,"source":"renewables"},{"Entity":"Canada","Year":2001,"energy":339.58,"source":"renewables"},{"Entity":"Canada","Year":2002,"energy":357.06,"source":"renewables"},{"Entity":"Canada","Year":2003,"energy":343.88,"source":"renewables"},{"Entity":"Canada","Year":2004,"energy":347.68,"source":"renewables"},{"Entity":"Canada","Year":2005,"energy":368.86,"source":"renewables"},{"Entity":"Canada","Year":2006,"energy":360.48,"source":"renewables"},{"Entity":"Canada","Year":2007,"energy":375.42,"source":"renewables"},{"Entity":"Canada","Year":2008,"energy":385.21,"source":"renewables"},{"Entity":"Canada","Year":2009,"energy":380.24,"source":"renewables"},{"Entity":"Canada","Year":2010,"energy":366.21,"source":"renewables"},{"Entity":"Canada","Year":2011,"energy":391.95,"source":"renewables"},{"Entity":"Canada","Year":2012,"energy":398.58,"source":"renewables"},{"Entity":"Canada","Year":2013,"energy":417.28,"source":"renewables"},{"Entity":"Canada","Year":2014,"energy":412.13,"source":"renewables"},{"Entity":"Canada","Year":2015,"energy":417.2,"source":"renewables"},{"Entity":"Canada","Year":2016,"energy":426.84,"source":"renewables"},{"Entity":"Canada","Year":2017,"energy":435.43,"source":"renewables"},{"Entity":"Canada","Year":2018,"energy":428.39,"source":"renewables"},{"Entity":"Canada","Year":2019,"energy":421.8,"source":"renewables"},{"Entity":"Canada","Year":2020,"energy":429.24,"source":"renewables"},{"Entity":"China","Year":2000,"energy":225.56,"source":"renewables"},{"Entity":"China","Year":2001,"energy":280.73,"source":"renewables"},{"Entity":"China","Year":2002,"energy":291.41,"source":"renewables"},{"Entity":"China","Year":2003,"energy":287.28,"source":"renewables"},{"Entity":"China","Year":2004,"energy":357.43,"source":"renewables"},{"Entity":"China","Year":2005,"energy":404.37,"source":"renewables"},{"Entity":"China","Year":2006,"energy":446.72,"source":"renewables"},{"Entity":"China","Year":2007,"energy":500.71,"source":"renewables"},{"Entity":"China","Year":2008,"energy":665.08,"source":"renewables"},{"Entity":"China","Year":2009,"energy":664.39,"source":"renewables"},{"Entity":"China","Year":2010,"energy":786.38,"source":"renewables"},{"Entity":"China","Year":2011,"energy":792.38,"source":"renewables"},{"Entity":"China","Year":2012,"energy":999.56,"source":"renewables"},{"Entity":"China","Year":2013,"energy":1093.37,"source":"renewables"},{"Entity":"China","Year":2014,"energy":1289.23,"source":"renewables"},{"Entity":"China","Year":2015,"energy":1393.66,"source":"renewables"},{"Entity":"China","Year":2016,"energy":1522.79,"source":"renewables"},{"Entity":"China","Year":2017,"energy":1667.06,"source":"renewables"},{"Entity":"China","Year":2018,"energy":1835.32,"source":"renewables"},{"Entity":"China","Year":2019,"energy":2014.57,"source":"renewables"},{"Entity":"China","Year":2020,"energy":2184.94,"source":"renewables"},{"Entity":"France","Year":2000,"energy":67.83,"source":"renewables"},{"Entity":"France","Year":2001,"energy":76.09,"source":"renewables"},{"Entity":"France","Year":2002,"energy":62.69,"source":"renewables"},{"Entity":"France","Year":2003,"energy":61.47,"source":"renewables"},{"Entity":"France","Year":2004,"energy":62.42,"source":"renewables"},{"Entity":"France","Year":2005,"energy":54.98,"source":"renewables"},{"Entity":"France","Year":2006,"energy":60.91,"source":"renewables"},{"Entity":"France","Year":2007,"energy":64.3,"source":"renewables"},{"Entity":"France","Year":2008,"energy":72.33,"source":"renewables"},{"Entity":"France","Year":2009,"energy":68.15,"source":"renewables"},{"Entity":"France","Year":2010,"energy":76.68,"source":"renewables"},{"Entity":"France","Year":2011,"energy":66.02,"source":"renewables"},{"Entity":"France","Year":2012,"energy":85.25,"source":"renewables"},{"Entity":"France","Year":2013,"energy":99.42,"source":"renewables"},{"Entity":"France","Year":2014,"energy":94.03,"source":"renewables"},{"Entity":"France","Year":2015,"energy":91.84,"source":"renewables"},{"Entity":"France","Year":2016,"energy":99,"source":"renewables"},{"Entity":"France","Year":2017,"energy":92.63,"source":"renewables"},{"Entity":"France","Year":2018,"energy":113.62,"source":"renewables"},{"Entity":"France","Year":2019,"energy":113.21,"source":"renewables"},{"Entity":"France","Year":2020,"energy":125.28,"source":"renewables"},{"Entity":"Germany","Year":2000,"energy":35.47,"source":"renewables"},{"Entity":"Germany","Year":2001,"energy":37.9,"source":"renewables"},{"Entity":"Germany","Year":2002,"energy":44.48,"source":"renewables"},{"Entity":"Germany","Year":2003,"energy":46.67,"source":"renewables"},{"Entity":"Germany","Year":2004,"energy":57.97,"source":"renewables"},{"Entity":"Germany","Year":2005,"energy":63.4,"source":"renewables"},{"Entity":"Germany","Year":2006,"energy":72.51,"source":"renewables"},{"Entity":"Germany","Year":2007,"energy":89.38,"source":"renewables"},{"Entity":"Germany","Year":2008,"energy":94.28,"source":"renewables"},{"Entity":"Germany","Year":2009,"energy":95.94,"source":"renewables"},{"Entity":"Germany","Year":2010,"energy":105.18,"source":"renewables"},{"Entity":"Germany","Year":2011,"energy":124.04,"source":"renewables"},{"Entity":"Germany","Year":2012,"energy":143.04,"source":"renewables"},{"Entity":"Germany","Year":2013,"energy":152.34,"source":"renewables"},{"Entity":"Germany","Year":2014,"energy":162.54,"source":"renewables"},{"Entity":"Germany","Year":2015,"energy":188.79,"source":"renewables"},{"Entity":"Germany","Year":2016,"energy":189.67,"source":"renewables"},{"Entity":"Germany","Year":2017,"energy":216.32,"source":"renewables"},{"Entity":"Germany","Year":2018,"energy":222.07,"source":"renewables"},{"Entity":"Germany","Year":2019,"energy":240.33,"source":"renewables"},{"Entity":"Germany","Year":2020,"energy":251.48,"source":"renewables"},{"Entity":"India","Year":2000,"energy":80.27,"source":"renewables"},{"Entity":"India","Year":2001,"energy":76.19,"source":"renewables"},{"Entity":"India","Year":2002,"energy":72.78,"source":"renewables"},{"Entity":"India","Year":2003,"energy":74.63,"source":"renewables"},{"Entity":"India","Year":2004,"energy":109.2,"source":"renewables"},{"Entity":"India","Year":2005,"energy":107.47,"source":"renewables"},{"Entity":"India","Year":2006,"energy":127.56,"source":"renewables"},{"Entity":"India","Year":2007,"energy":141.75,"source":"renewables"},{"Entity":"India","Year":2008,"energy":138.91,"source":"renewables"},{"Entity":"India","Year":2009,"energy":134.33,"source":"renewables"},{"Entity":"India","Year":2010,"energy":142.61,"source":"renewables"},{"Entity":"India","Year":2011,"energy":173.62,"source":"renewables"},{"Entity":"India","Year":2012,"energy":165.25,"source":"renewables"},{"Entity":"India","Year":2013,"energy":187.9,"source":"renewables"},{"Entity":"India","Year":2014,"energy":202.04,"source":"renewables"},{"Entity":"India","Year":2015,"energy":203.21,"source":"renewables"},{"Entity":"India","Year":2016,"energy":208.21,"source":"renewables"},{"Entity":"India","Year":2017,"energy":234.9,"source":"renewables"},{"Entity":"India","Year":2018,"energy":263.61,"source":"renewables"},{"Entity":"India","Year":2019,"energy":303.16,"source":"renewables"},{"Entity":"India","Year":2020,"energy":315.76,"source":"renewables"},{"Entity":"Indonesia","Year":2000,"energy":19.6,"source":"renewables"},{"Entity":"Indonesia","Year":2001,"energy":22.19,"source":"renewables"},{"Entity":"Indonesia","Year":2002,"energy":21,"source":"renewables"},{"Entity":"Indonesia","Year":2003,"energy":19.82,"source":"renewables"},{"Entity":"Indonesia","Year":2004,"energy":20.97,"source":"renewables"},{"Entity":"Indonesia","Year":2005,"energy":22.66,"source":"renewables"},{"Entity":"Indonesia","Year":2006,"energy":21.18,"source":"renewables"},{"Entity":"Indonesia","Year":2007,"energy":24.29,"source":"renewables"},{"Entity":"Indonesia","Year":2008,"energy":26.34,"source":"renewables"},{"Entity":"Indonesia","Year":2009,"energy":26.79,"source":"renewables"},{"Entity":"Indonesia","Year":2010,"energy":34.63,"source":"renewables"},{"Entity":"Indonesia","Year":2011,"energy":30.46,"source":"renewables"},{"Entity":"Indonesia","Year":2012,"energy":31.11,"source":"renewables"},{"Entity":"Indonesia","Year":2013,"energy":35.5,"source":"renewables"},{"Entity":"Indonesia","Year":2014,"energy":34.41,"source":"renewables"},{"Entity":"Indonesia","Year":2015,"energy":33.56,"source":"renewables"},{"Entity":"Indonesia","Year":2016,"energy":39.58,"source":"renewables"},{"Entity":"Indonesia","Year":2017,"energy":43.17,"source":"renewables"},{"Entity":"Indonesia","Year":2018,"energy":48.38,"source":"renewables"},{"Entity":"Indonesia","Year":2019,"energy":48.04,"source":"renewables"},{"Entity":"Indonesia","Year":2020,"energy":52.91,"source":"renewables"},{"Entity":"Italy","Year":2000,"energy":50.87,"source":"renewables"},{"Entity":"Italy","Year":2001,"energy":54.35,"source":"renewables"},{"Entity":"Italy","Year":2002,"energy":48.31,"source":"renewables"},{"Entity":"Italy","Year":2003,"energy":46.86,"source":"renewables"},{"Entity":"Italy","Year":2004,"energy":53.88,"source":"renewables"},{"Entity":"Italy","Year":2005,"energy":48.43,"source":"renewables"},{"Entity":"Italy","Year":2006,"energy":50.64,"source":"renewables"},{"Entity":"Italy","Year":2007,"energy":47.72,"source":"renewables"},{"Entity":"Italy","Year":2008,"energy":58.16,"source":"renewables"},{"Entity":"Italy","Year":2009,"energy":69.26,"source":"renewables"},{"Entity":"Italy","Year":2010,"energy":76.98,"source":"renewables"},{"Entity":"Italy","Year":2011,"energy":82.96,"source":"renewables"},{"Entity":"Italy","Year":2012,"energy":92.22,"source":"renewables"},{"Entity":"Italy","Year":2013,"energy":112,"source":"renewables"},{"Entity":"Italy","Year":2014,"energy":120.68,"source":"renewables"},{"Entity":"Italy","Year":2015,"energy":108.89,"source":"renewables"},{"Entity":"Italy","Year":2016,"energy":108.01,"source":"renewables"},{"Entity":"Italy","Year":2017,"energy":103.89,"source":"renewables"},{"Entity":"Italy","Year":2018,"energy":114.41,"source":"renewables"},{"Entity":"Italy","Year":2019,"energy":115.83,"source":"renewables"},{"Entity":"Italy","Year":2020,"energy":116.9,"source":"renewables"},{"Entity":"Japan","Year":2000,"energy":104.16,"source":"renewables"},{"Entity":"Japan","Year":2001,"energy":101.36,"source":"renewables"},{"Entity":"Japan","Year":2002,"energy":101.1,"source":"renewables"},{"Entity":"Japan","Year":2003,"energy":114.18,"source":"renewables"},{"Entity":"Japan","Year":2004,"energy":114.73,"source":"renewables"},{"Entity":"Japan","Year":2005,"energy":100.57,"source":"renewables"},{"Entity":"Japan","Year":2006,"energy":112.07,"source":"renewables"},{"Entity":"Japan","Year":2007,"energy":100.8,"source":"renewables"},{"Entity":"Japan","Year":2008,"energy":100.79,"source":"renewables"},{"Entity":"Japan","Year":2009,"energy":102.28,"source":"renewables"},{"Entity":"Japan","Year":2010,"energy":113.92,"source":"renewables"},{"Entity":"Japan","Year":2011,"energy":116.5,"source":"renewables"},{"Entity":"Japan","Year":2012,"energy":111.09,"source":"renewables"},{"Entity":"Japan","Year":2013,"energy":121.48,"source":"renewables"},{"Entity":"Japan","Year":2014,"energy":136.53,"source":"renewables"},{"Entity":"Japan","Year":2015,"energy":157.34,"source":"renewables"},{"Entity":"Japan","Year":2016,"energy":157.7,"source":"renewables"},{"Entity":"Japan","Year":2017,"energy":175.12,"source":"renewables"},{"Entity":"Japan","Year":2018,"energy":183.63,"source":"renewables"},{"Entity":"Japan","Year":2019,"energy":192.72,"source":"renewables"},{"Entity":"Japan","Year":2020,"energy":205.6,"source":"renewables"},{"Entity":"Kazakhstan","Year":2000,"energy":7.53,"source":"renewables"},{"Entity":"Kazakhstan","Year":2001,"energy":8.08,"source":"renewables"},{"Entity":"Kazakhstan","Year":2002,"energy":8.89,"source":"renewables"},{"Entity":"Kazakhstan","Year":2003,"energy":8.62,"source":"renewables"},{"Entity":"Kazakhstan","Year":2004,"energy":8.06,"source":"renewables"},{"Entity":"Kazakhstan","Year":2005,"energy":7.86,"source":"renewables"},{"Entity":"Kazakhstan","Year":2006,"energy":7.77,"source":"renewables"},{"Entity":"Kazakhstan","Year":2007,"energy":8.17,"source":"renewables"},{"Entity":"Kazakhstan","Year":2008,"energy":7.46,"source":"renewables"},{"Entity":"Kazakhstan","Year":2009,"energy":6.88,"source":"renewables"},{"Entity":"Kazakhstan","Year":2010,"energy":8.02,"source":"renewables"},{"Entity":"Kazakhstan","Year":2011,"energy":7.88,"source":"renewables"},{"Entity":"Kazakhstan","Year":2012,"energy":7.64,"source":"renewables"},{"Entity":"Kazakhstan","Year":2013,"energy":7.73,"source":"renewables"},{"Entity":"Kazakhstan","Year":2014,"energy":8.27,"source":"renewables"},{"Entity":"Kazakhstan","Year":2015,"energy":9.45,"source":"renewables"},{"Entity":"Kazakhstan","Year":2016,"energy":11.98,"source":"renewables"},{"Entity":"Kazakhstan","Year":2017,"energy":11.64,"source":"renewables"},{"Entity":"Kazakhstan","Year":2018,"energy":10.91,"source":"renewables"},{"Entity":"Kazakhstan","Year":2019,"energy":11.09,"source":"renewables"},{"Entity":"Kazakhstan","Year":2020,"energy":11.94,"source":"renewables"},{"Entity":"Mexico","Year":2000,"energy":44.51,"source":"renewables"},{"Entity":"Mexico","Year":2001,"energy":39.56,"source":"renewables"},{"Entity":"Mexico","Year":2002,"energy":35.67,"source":"renewables"},{"Entity":"Mexico","Year":2003,"energy":32.11,"source":"renewables"},{"Entity":"Mexico","Year":2004,"energy":38.19,"source":"renewables"},{"Entity":"Mexico","Year":2005,"energy":42.29,"source":"renewables"},{"Entity":"Mexico","Year":2006,"energy":43.63,"source":"renewables"},{"Entity":"Mexico","Year":2007,"energy":42.14,"source":"renewables"},{"Entity":"Mexico","Year":2008,"energy":53.22,"source":"renewables"},{"Entity":"Mexico","Year":2009,"energy":40.59,"source":"renewables"},{"Entity":"Mexico","Year":2010,"energy":51.37,"source":"renewables"},{"Entity":"Mexico","Year":2011,"energy":50.7,"source":"renewables"},{"Entity":"Mexico","Year":2012,"energy":47.2,"source":"renewables"},{"Entity":"Mexico","Year":2013,"energy":44.67,"source":"renewables"},{"Entity":"Mexico","Year":2014,"energy":57.46,"source":"renewables"},{"Entity":"Mexico","Year":2015,"energy":52.42,"source":"renewables"},{"Entity":"Mexico","Year":2016,"energy":52.97,"source":"renewables"},{"Entity":"Mexico","Year":2017,"energy":55.88,"source":"renewables"},{"Entity":"Mexico","Year":2018,"energy":58.78,"source":"renewables"},{"Entity":"Mexico","Year":2019,"energy":59,"source":"renewables"},{"Entity":"Mexico","Year":2020,"energy":69.19,"source":"renewables"},{"Entity":"Poland","Year":2000,"energy":2.33,"source":"renewables"},{"Entity":"Poland","Year":2001,"energy":2.78,"source":"renewables"},{"Entity":"Poland","Year":2002,"energy":2.77,"source":"renewables"},{"Entity":"Poland","Year":2003,"energy":2.25,"source":"renewables"},{"Entity":"Poland","Year":2004,"energy":3.2,"source":"renewables"},{"Entity":"Poland","Year":2005,"energy":3.85,"source":"renewables"},{"Entity":"Poland","Year":2006,"energy":4.29,"source":"renewables"},{"Entity":"Poland","Year":2007,"energy":5.43,"source":"renewables"},{"Entity":"Poland","Year":2008,"energy":6.61,"source":"renewables"},{"Entity":"Poland","Year":2009,"energy":8.69,"source":"renewables"},{"Entity":"Poland","Year":2010,"energy":10.88,"source":"renewables"},{"Entity":"Poland","Year":2011,"energy":13.13,"source":"renewables"},{"Entity":"Poland","Year":2012,"energy":16.88,"source":"renewables"},{"Entity":"Poland","Year":2013,"energy":17.06,"source":"renewables"},{"Entity":"Poland","Year":2014,"energy":19.85,"source":"renewables"},{"Entity":"Poland","Year":2015,"energy":22.69,"source":"renewables"},{"Entity":"Poland","Year":2016,"energy":22.81,"source":"renewables"},{"Entity":"Poland","Year":2017,"energy":24.13,"source":"renewables"},{"Entity":"Poland","Year":2018,"energy":21.62,"source":"renewables"},{"Entity":"Poland","Year":2019,"energy":25.46,"source":"renewables"},{"Entity":"Poland","Year":2020,"energy":28.23,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2000,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2001,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2002,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2003,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2004,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2005,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2006,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2007,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2008,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2009,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2010,"energy":0,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2011,"energy":0.01,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2012,"energy":0.03,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2013,"energy":0.04,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2014,"energy":0.05,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2015,"energy":0.05,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2016,"energy":0.05,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2017,"energy":0.07,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2018,"energy":0.16,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2019,"energy":0.21,"source":"renewables"},{"Entity":"Saudi Arabia","Year":2020,"energy":0.21,"source":"renewables"},{"Entity":"South Africa","Year":2000,"energy":1.79,"source":"renewables"},{"Entity":"South Africa","Year":2001,"energy":2.46,"source":"renewables"},{"Entity":"South Africa","Year":2002,"energy":2.81,"source":"renewables"},{"Entity":"South Africa","Year":2003,"energy":1.19,"source":"renewables"},{"Entity":"South Africa","Year":2004,"energy":1.33,"source":"renewables"},{"Entity":"South Africa","Year":2005,"energy":1.75,"source":"renewables"},{"Entity":"South Africa","Year":2006,"energy":3.28,"source":"renewables"},{"Entity":"South Africa","Year":2007,"energy":1.3,"source":"renewables"},{"Entity":"South Africa","Year":2008,"energy":1.66,"source":"renewables"},{"Entity":"South Africa","Year":2009,"energy":1.86,"source":"renewables"},{"Entity":"South Africa","Year":2010,"energy":2.51,"source":"renewables"},{"Entity":"South Africa","Year":2011,"energy":2.49,"source":"renewables"},{"Entity":"South Africa","Year":2012,"energy":1.66,"source":"renewables"},{"Entity":"South Africa","Year":2013,"energy":1.62,"source":"renewables"},{"Entity":"South Africa","Year":2014,"energy":3.38,"source":"renewables"},{"Entity":"South Africa","Year":2015,"energy":6.09,"source":"renewables"},{"Entity":"South Africa","Year":2016,"energy":7.69,"source":"renewables"},{"Entity":"South Africa","Year":2017,"energy":10.04,"source":"renewables"},{"Entity":"South Africa","Year":2018,"energy":12.22,"source":"renewables"},{"Entity":"South Africa","Year":2019,"energy":12.57,"source":"renewables"},{"Entity":"South Africa","Year":2020,"energy":12.83,"source":"renewables"},{"Entity":"Spain","Year":2000,"energy":34.49,"source":"renewables"},{"Entity":"Spain","Year":2001,"energy":49.3,"source":"renewables"},{"Entity":"Spain","Year":2002,"energy":33.17,"source":"renewables"},{"Entity":"Spain","Year":2003,"energy":55.75,"source":"renewables"},{"Entity":"Spain","Year":2004,"energy":50.13,"source":"renewables"},{"Entity":"Spain","Year":2005,"energy":42.27,"source":"renewables"},{"Entity":"Spain","Year":2006,"energy":52.15,"source":"renewables"},{"Entity":"Spain","Year":2007,"energy":58.3,"source":"renewables"},{"Entity":"Spain","Year":2008,"energy":62.15,"source":"renewables"},{"Entity":"Spain","Year":2009,"energy":74.08,"source":"renewables"},{"Entity":"Spain","Year":2010,"energy":97.77,"source":"renewables"},{"Entity":"Spain","Year":2011,"energy":87.53,"source":"renewables"},{"Entity":"Spain","Year":2012,"energy":86.97,"source":"renewables"},{"Entity":"Spain","Year":2013,"energy":111.42,"source":"renewables"},{"Entity":"Spain","Year":2014,"energy":110.26,"source":"renewables"},{"Entity":"Spain","Year":2015,"energy":97.09,"source":"renewables"},{"Entity":"Spain","Year":2016,"energy":104.63,"source":"renewables"},{"Entity":"Spain","Year":2017,"energy":87.93,"source":"renewables"},{"Entity":"Spain","Year":2018,"energy":103.88,"source":"renewables"},{"Entity":"Spain","Year":2019,"energy":100.99,"source":"renewables"},{"Entity":"Spain","Year":2020,"energy":113.79,"source":"renewables"},{"Entity":"Thailand","Year":2000,"energy":6.38,"source":"renewables"},{"Entity":"Thailand","Year":2001,"energy":6.76,"source":"renewables"},{"Entity":"Thailand","Year":2002,"energy":8.07,"source":"renewables"},{"Entity":"Thailand","Year":2003,"energy":8.36,"source":"renewables"},{"Entity":"Thailand","Year":2004,"energy":7.63,"source":"renewables"},{"Entity":"Thailand","Year":2005,"energy":7.42,"source":"renewables"},{"Entity":"Thailand","Year":2006,"energy":9.82,"source":"renewables"},{"Entity":"Thailand","Year":2007,"energy":10.2,"source":"renewables"},{"Entity":"Thailand","Year":2008,"energy":8.95,"source":"renewables"},{"Entity":"Thailand","Year":2009,"energy":9.09,"source":"renewables"},{"Entity":"Thailand","Year":2010,"energy":8.58,"source":"renewables"},{"Entity":"Thailand","Year":2011,"energy":11.83,"source":"renewables"},{"Entity":"Thailand","Year":2012,"energy":13.42,"source":"renewables"},{"Entity":"Thailand","Year":2013,"energy":12.33,"source":"renewables"},{"Entity":"Thailand","Year":2014,"energy":13.68,"source":"renewables"},{"Entity":"Thailand","Year":2015,"energy":13.33,"source":"renewables"},{"Entity":"Thailand","Year":2016,"energy":15.97,"source":"renewables"},{"Entity":"Thailand","Year":2017,"energy":19.92,"source":"renewables"},{"Entity":"Thailand","Year":2018,"energy":25.84,"source":"renewables"},{"Entity":"Thailand","Year":2019,"energy":28.02,"source":"renewables"},{"Entity":"Thailand","Year":2020,"energy":24.73,"source":"renewables"},{"Entity":"Ukraine","Year":2000,"energy":11.28,"source":"renewables"},{"Entity":"Ukraine","Year":2001,"energy":12.05,"source":"renewables"},{"Entity":"Ukraine","Year":2002,"energy":9.65,"source":"renewables"},{"Entity":"Ukraine","Year":2003,"energy":9.27,"source":"renewables"},{"Entity":"Ukraine","Year":2004,"energy":11.78,"source":"renewables"},{"Entity":"Ukraine","Year":2005,"energy":12.4,"source":"renewables"},{"Entity":"Ukraine","Year":2006,"energy":12.92,"source":"renewables"},{"Entity":"Ukraine","Year":2007,"energy":10.47,"source":"renewables"},{"Entity":"Ukraine","Year":2008,"energy":11.82,"source":"renewables"},{"Entity":"Ukraine","Year":2009,"energy":12.12,"source":"renewables"},{"Entity":"Ukraine","Year":2010,"energy":13.39,"source":"renewables"},{"Entity":"Ukraine","Year":2011,"energy":11.2,"source":"renewables"},{"Entity":"Ukraine","Year":2012,"energy":11.23,"source":"renewables"},{"Entity":"Ukraine","Year":2013,"energy":15.11,"source":"renewables"},{"Entity":"Ukraine","Year":2014,"energy":10.17,"source":"renewables"},{"Entity":"Ukraine","Year":2015,"energy":7.1,"source":"renewables"},{"Entity":"Ukraine","Year":2016,"energy":9.25,"source":"renewables"},{"Entity":"Ukraine","Year":2017,"energy":10.88,"source":"renewables"},{"Entity":"Ukraine","Year":2018,"energy":13.02,"source":"renewables"},{"Entity":"Ukraine","Year":2019,"energy":11.87,"source":"renewables"},{"Entity":"Ukraine","Year":2020,"energy":17.56,"source":"renewables"},{"Entity":"United Kingdom","Year":2000,"energy":9.98,"source":"renewables"},{"Entity":"United Kingdom","Year":2001,"energy":9.56,"source":"renewables"},{"Entity":"United Kingdom","Year":2002,"energy":11.13,"source":"renewables"},{"Entity":"United Kingdom","Year":2003,"energy":10.62,"source":"renewables"},{"Entity":"United Kingdom","Year":2004,"energy":14.14,"source":"renewables"},{"Entity":"United Kingdom","Year":2005,"energy":16.93,"source":"renewables"},{"Entity":"United Kingdom","Year":2006,"energy":18.11,"source":"renewables"},{"Entity":"United Kingdom","Year":2007,"energy":19.69,"source":"renewables"},{"Entity":"United Kingdom","Year":2008,"energy":21.85,"source":"renewables"},{"Entity":"United Kingdom","Year":2009,"energy":25.25,"source":"renewables"},{"Entity":"United Kingdom","Year":2010,"energy":26.18,"source":"renewables"},{"Entity":"United Kingdom","Year":2011,"energy":35.2,"source":"renewables"},{"Entity":"United Kingdom","Year":2012,"energy":41.24,"source":"renewables"},{"Entity":"United Kingdom","Year":2013,"energy":53.21,"source":"renewables"},{"Entity":"United Kingdom","Year":2014,"energy":64.52,"source":"renewables"},{"Entity":"United Kingdom","Year":2015,"energy":82.57,"source":"renewables"},{"Entity":"United Kingdom","Year":2016,"energy":82.99,"source":"renewables"},{"Entity":"United Kingdom","Year":2017,"energy":98.85,"source":"renewables"},{"Entity":"United Kingdom","Year":2018,"energy":110.03,"source":"renewables"},{"Entity":"United Kingdom","Year":2019,"energy":120.48,"source":"renewables"},{"Entity":"United Kingdom","Year":2020,"energy":131.74,"source":"renewables"},{"Entity":"United States","Year":2000,"energy":350.93,"source":"renewables"},{"Entity":"United States","Year":2001,"energy":280.06,"source":"renewables"},{"Entity":"United States","Year":2002,"energy":336.34,"source":"renewables"},{"Entity":"United States","Year":2003,"energy":349.18,"source":"renewables"},{"Entity":"United States","Year":2004,"energy":345.14,"source":"renewables"},{"Entity":"United States","Year":2005,"energy":353.04,"source":"renewables"},{"Entity":"United States","Year":2006,"energy":381.16,"source":"renewables"},{"Entity":"United States","Year":2007,"energy":347.91,"source":"renewables"},{"Entity":"United States","Year":2008,"energy":377.11,"source":"renewables"},{"Entity":"United States","Year":2009,"energy":415.56,"source":"renewables"},{"Entity":"United States","Year":2010,"energy":424.48,"source":"renewables"},{"Entity":"United States","Year":2011,"energy":509.74,"source":"renewables"},{"Entity":"United States","Year":2012,"energy":492.32,"source":"renewables"},{"Entity":"United States","Year":2013,"energy":520.38,"source":"renewables"},{"Entity":"United States","Year":2014,"energy":546.83,"source":"renewables"},{"Entity":"United States","Year":2015,"energy":556.49,"source":"renewables"},{"Entity":"United States","Year":2016,"energy":624.91,"source":"renewables"},{"Entity":"United States","Year":2017,"energy":707.19,"source":"renewables"},{"Entity":"United States","Year":2018,"energy":733.17,"source":"renewables"},{"Entity":"United States","Year":2019,"energy":760.76,"source":"renewables"},{"Entity":"United States","Year":2020,"energy":821.4,"source":"renewables"}],"metadata":{"Entity":{"type":"string","semanticType":"Location"},"Year":{"type":"number","semanticType":"Year"},"energy":{"type":"number","semanticType":"Number"},"source":{"type":"string","semanticType":"String","levels":["fossil fuels","nuclear","renewables"]}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n","source":["global-energy-20-small.csv"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 158029.9988, 190729.9957, 209229.9957, ..., 6993180.176, 9861099.609, 9874660.156, 10096009.77\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 90.14, 91.79, 92.54, 804.95\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Transform the data into a long format where different energy sources (fossil fuels, nuclear, renewables) are unpivoted into separate rows. Each row should contain the year, entity (country), energy source type, and the corresponding energy value in TWh. This will enable visualization of energy generation trends over time by source and country.\",\n \"display_instruction\": \"Show **energy generation** trends by **source** and **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"source\", \"energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n },\n \"reason\": \"The user wants to visualize energy data across different sources with a line chart faceted by source. The original data has energy sources in separate columns (fossil fuels, nuclear, renewables), so we need to unpivot these columns into a long format with 'source' and 'energy' fields. The chart_encodings provided by the user are appropriate for this visualization goal, using faceting (column) to separate different energy sources.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"global-energy-20-small.csv","sourceTableIds":["global-energy-20-small.csv"],"instruction":"","displayInstruction":"Show **energy generation** trends by **source** and **Entity** over **Year**","chart":{"id":"chart-1760738394155","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"channel":"y","bin":false,"fieldID":"concept-1760738385163"},"color":{"fieldID":"original--global-energy-20-small.csv--Entity"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false,"fieldID":"concept-1760738389404"},"row":{"channel":"row","bin":false}},"tableRef":"global-energy-20-small.csv","saved":false,"source":"trigger","unread":false},"resultTableId":"table-82"},"explanation":{"agent":"CodeExplanationAgent","code":"The code performs a data transformation to restructure the energy data from a wide format to a long format:\n\n1. **Unpivot energy columns**: Uses `pd.melt()` to transform the three energy source columns (**Electricity from fossil fuels**, **Electricity from nuclear**, and **Electricity from renewables**) from separate columns into rows, while keeping **Year** and **Entity** as identifier columns.\n\n2. **Create source classification**: Generates a new **source** column that captures which energy type each row represents, and stores the corresponding energy values in an **energy** column.\n\n3. **Clean source labels**: Removes the prefix \"Electricity from \" and suffix \" (TWh)\" from the source names, resulting in cleaner labels: **fossil fuels**, **nuclear**, and **renewables**.\n\n4. **Return restructured data**: The final dataset has each country-year-energy source combination as a separate row, making it easier to analyze and visualize energy mix across countries and time periods.","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 190729.9957, 227580.0018, 233600.0061, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 90.14, 91.79, 92.54, nan\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThe code performs a data transformation to restructure the energy data from a wide format to a long format:\n\n1. **Unpivot energy columns**: Uses `pd.melt()` to transform the three energy source columns (**Electricity from fossil fuels**, **Electricity from nuclear**, and **Electricity from renewables**) from separate columns into rows, while keeping **Year** and **Entity** as identifier columns.\n\n2. **Create source classification**: Generates a new **source** column that captures which energy type each row represents, and stores the corresponding energy values in an **energy** column.\n\n3. **Clean source labels**: Removes the prefix \"Electricity from \" and suffix \" (TWh)\" from the source names, resulting in cleaner labels: **fossil fuels**, **nuclear**, and **renewables**.\n\n4. **Return restructured data**: The final dataset has each country-year-energy source combination as a separate row, making it easier to analyze and visualize energy mix across countries and time periods.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-45","displayId":"renewable-energy","names":["Entity","Year","renewable_percentage"],"rows":[{"Entity":"Australia","Year":2000,"renewable_percentage":8.6344368187},{"Entity":"Australia","Year":2001,"renewable_percentage":8.2180135078},{"Entity":"Australia","Year":2002,"renewable_percentage":8.0833022736},{"Entity":"Australia","Year":2003,"renewable_percentage":8.6598324205},{"Entity":"Australia","Year":2004,"renewable_percentage":8.7013045232},{"Entity":"Australia","Year":2005,"renewable_percentage":9.1562355123},{"Entity":"Australia","Year":2006,"renewable_percentage":9.6357600837},{"Entity":"Australia","Year":2007,"renewable_percentage":9.1190310213},{"Entity":"Australia","Year":2008,"renewable_percentage":8.0548900022},{"Entity":"Australia","Year":2009,"renewable_percentage":7.8043793133},{"Entity":"Australia","Year":2010,"renewable_percentage":9.0442152121},{"Entity":"Australia","Year":2011,"renewable_percentage":11.3454273735},{"Entity":"Australia","Year":2012,"renewable_percentage":11.4105750279},{"Entity":"Australia","Year":2013,"renewable_percentage":14.8708583355},{"Entity":"Australia","Year":2014,"renewable_percentage":14.9621290509},{"Entity":"Australia","Year":2015,"renewable_percentage":14.3476000693},{"Entity":"Australia","Year":2016,"renewable_percentage":15.6093794449},{"Entity":"Australia","Year":2017,"renewable_percentage":16.3138729943},{"Entity":"Australia","Year":2018,"renewable_percentage":17.145938174},{"Entity":"Australia","Year":2019,"renewable_percentage":21.3759705435},{"Entity":"Australia","Year":2020,"renewable_percentage":25.5031684668},{"Entity":"Brazil","Year":2000,"renewable_percentage":90.1307723743},{"Entity":"Brazil","Year":2001,"renewable_percentage":84.6953615744},{"Entity":"Brazil","Year":2002,"renewable_percentage":86.0883364189},{"Entity":"Brazil","Year":2003,"renewable_percentage":87.4561159097},{"Entity":"Brazil","Year":2004,"renewable_percentage":86.4260041451},{"Entity":"Brazil","Year":2005,"renewable_percentage":87.6781562721},{"Entity":"Brazil","Year":2006,"renewable_percentage":87.2842473236},{"Entity":"Brazil","Year":2007,"renewable_percentage":88.7252098726},{"Entity":"Brazil","Year":2008,"renewable_percentage":84.8072313004},{"Entity":"Brazil","Year":2009,"renewable_percentage":89.4172280725},{"Entity":"Brazil","Year":2010,"renewable_percentage":85.3576882415},{"Entity":"Brazil","Year":2011,"renewable_percentage":87.6618820986},{"Entity":"Brazil","Year":2012,"renewable_percentage":83.1164558813},{"Entity":"Brazil","Year":2013,"renewable_percentage":77.5240022006},{"Entity":"Brazil","Year":2014,"renewable_percentage":74.0418657409},{"Entity":"Brazil","Year":2015,"renewable_percentage":75.0231817625},{"Entity":"Brazil","Year":2016,"renewable_percentage":81.0938046902},{"Entity":"Brazil","Year":2017,"renewable_percentage":79.9091472228},{"Entity":"Brazil","Year":2018,"renewable_percentage":82.9198505403},{"Entity":"Brazil","Year":2019,"renewable_percentage":82.8548799017},{"Entity":"Brazil","Year":2020,"renewable_percentage":84.6411771408},{"Entity":"Canada","Year":2000,"renewable_percentage":61.8095917882},{"Entity":"Canada","Year":2001,"renewable_percentage":59.3287558747},{"Entity":"Canada","Year":2002,"renewable_percentage":61.1477403113},{"Entity":"Canada","Year":2003,"renewable_percentage":60.0789685174},{"Entity":"Canada","Year":2004,"renewable_percentage":59.6967771845},{"Entity":"Canada","Year":2005,"renewable_percentage":60.8208155391},{"Entity":"Canada","Year":2006,"renewable_percentage":60.8271602855},{"Entity":"Canada","Year":2007,"renewable_percentage":61.2460642446},{"Entity":"Canada","Year":2008,"renewable_percentage":62.6520720838},{"Entity":"Canada","Year":2009,"renewable_percentage":63.8919227732},{"Entity":"Canada","Year":2010,"renewable_percentage":62.9421470558},{"Entity":"Canada","Year":2011,"renewable_percentage":64.0922915917},{"Entity":"Canada","Year":2012,"renewable_percentage":65.098730952},{"Entity":"Canada","Year":2013,"renewable_percentage":65.4320794066},{"Entity":"Canada","Year":2014,"renewable_percentage":64.791145907},{"Entity":"Canada","Year":2015,"renewable_percentage":65.2946239925},{"Entity":"Canada","Year":2016,"renewable_percentage":66.1890584295},{"Entity":"Canada","Year":2017,"renewable_percentage":67.5399410579},{"Entity":"Canada","Year":2018,"renewable_percentage":67.3685700357},{"Entity":"Canada","Year":2019,"renewable_percentage":67.1741623137},{"Entity":"Canada","Year":2020,"renewable_percentage":68.7796436354},{"Entity":"China","Year":2000,"renewable_percentage":16.639126586},{"Entity":"China","Year":2001,"renewable_percentage":18.9581237042},{"Entity":"China","Year":2002,"renewable_percentage":17.6185006046},{"Entity":"China","Year":2003,"renewable_percentage":15.0362717081},{"Entity":"China","Year":2004,"renewable_percentage":16.2224108273},{"Entity":"China","Year":2005,"renewable_percentage":16.1731179957},{"Entity":"China","Year":2006,"renewable_percentage":15.5884036124},{"Entity":"China","Year":2007,"renewable_percentage":15.2583847828},{"Entity":"China","Year":2008,"renewable_percentage":19.0253335469},{"Entity":"China","Year":2009,"renewable_percentage":17.8857170547},{"Entity":"China","Year":2010,"renewable_percentage":18.7800759915},{"Entity":"China","Year":2011,"renewable_percentage":16.8902341543},{"Entity":"China","Year":2012,"renewable_percentage":20.122965176},{"Entity":"China","Year":2013,"renewable_percentage":20.2152481955},{"Entity":"China","Year":2014,"renewable_percentage":22.3502204285},{"Entity":"China","Year":2015,"renewable_percentage":24.079270189},{"Entity":"China","Year":2016,"renewable_percentage":25.0007798429},{"Entity":"China","Year":2017,"renewable_percentage":25.419242299},{"Entity":"China","Year":2018,"renewable_percentage":25.7747942589},{"Entity":"China","Year":2019,"renewable_percentage":26.9995671106},{"Entity":"China","Year":2020,"renewable_percentage":28.2464606924},{"Entity":"France","Year":2000,"renewable_percentage":12.7117691154},{"Entity":"France","Year":2001,"renewable_percentage":13.9961372206},{"Entity":"France","Year":2002,"renewable_percentage":11.3544157067},{"Entity":"France","Year":2003,"renewable_percentage":10.9783540506},{"Entity":"France","Year":2004,"renewable_percentage":11.0051305559},{"Entity":"France","Year":2005,"renewable_percentage":9.6479837153},{"Entity":"France","Year":2006,"renewable_percentage":10.7235915493},{"Entity":"France","Year":2007,"renewable_percentage":11.4370075239},{"Entity":"France","Year":2008,"renewable_percentage":12.7487441615},{"Entity":"France","Year":2009,"renewable_percentage":12.8776856068},{"Entity":"France","Year":2010,"renewable_percentage":13.6240072491},{"Entity":"France","Year":2011,"renewable_percentage":11.63553049},{"Entity":"France","Year":2012,"renewable_percentage":15.0331522889},{"Entity":"France","Year":2013,"renewable_percentage":17.2469424928},{"Entity":"France","Year":2014,"renewable_percentage":16.6074992494},{"Entity":"France","Year":2015,"renewable_percentage":16.002230276},{"Entity":"France","Year":2016,"renewable_percentage":17.7212924013},{"Entity":"France","Year":2017,"renewable_percentage":16.6576751547},{"Entity":"France","Year":2018,"renewable_percentage":19.7315179827},{"Entity":"France","Year":2019,"renewable_percentage":20.0116665488},{"Entity":"France","Year":2020,"renewable_percentage":23.7610241821},{"Entity":"Germany","Year":2000,"renewable_percentage":6.1977983575},{"Entity":"Germany","Year":2001,"renewable_percentage":6.5132585197},{"Entity":"Germany","Year":2002,"renewable_percentage":7.6431369854},{"Entity":"Germany","Year":2003,"renewable_percentage":7.7455438643},{"Entity":"Germany","Year":2004,"renewable_percentage":9.4989185292},{"Entity":"Germany","Year":2005,"renewable_percentage":10.3356645637},{"Entity":"Germany","Year":2006,"renewable_percentage":11.5129959829},{"Entity":"Germany","Year":2007,"renewable_percentage":14.135471525},{"Entity":"Germany","Year":2008,"renewable_percentage":14.8894504106},{"Entity":"Germany","Year":2009,"renewable_percentage":16.2902842395},{"Entity":"Germany","Year":2010,"renewable_percentage":16.8384989754},{"Entity":"Germany","Year":2011,"renewable_percentage":20.4967199299},{"Entity":"Germany","Year":2012,"renewable_percentage":23.056464482},{"Entity":"Germany","Year":2013,"renewable_percentage":24.1368929731},{"Entity":"Germany","Year":2014,"renewable_percentage":26.2182434067},{"Entity":"Germany","Year":2015,"renewable_percentage":29.4721888318},{"Entity":"Germany","Year":2016,"renewable_percentage":29.4990435013},{"Entity":"Germany","Year":2017,"renewable_percentage":33.4855497593},{"Entity":"Germany","Year":2018,"renewable_percentage":35.0976735365},{"Entity":"Germany","Year":2019,"renewable_percentage":40.0890757144},{"Entity":"Germany","Year":2020,"renewable_percentage":44.3324048937},{"Entity":"India","Year":2000,"renewable_percentage":14.0481982534},{"Entity":"India","Year":2001,"renewable_percentage":12.9997099422},{"Entity":"India","Year":2002,"renewable_percentage":11.938193032},{"Entity":"India","Year":2003,"renewable_percentage":11.695109147},{"Entity":"India","Year":2004,"renewable_percentage":15.6375300722},{"Entity":"India","Year":2005,"renewable_percentage":15.2543575768},{"Entity":"India","Year":2006,"renewable_percentage":17.1352578483},{"Entity":"India","Year":2007,"renewable_percentage":17.8019742295},{"Entity":"India","Year":2008,"renewable_percentage":16.768266921},{"Entity":"India","Year":2009,"renewable_percentage":15.269804822},{"Entity":"India","Year":2010,"renewable_percentage":15.2122201244},{"Entity":"India","Year":2011,"renewable_percentage":16.7911025145},{"Entity":"India","Year":2012,"renewable_percentage":15.1350014654},{"Entity":"India","Year":2013,"renewable_percentage":16.3941577818},{"Entity":"India","Year":2014,"renewable_percentage":16.0092550039},{"Entity":"India","Year":2015,"renewable_percentage":15.3718720687},{"Entity":"India","Year":2016,"renewable_percentage":14.8548475703},{"Entity":"India","Year":2017,"renewable_percentage":15.9669920335},{"Entity":"India","Year":2018,"renewable_percentage":16.6949549709},{"Entity":"India","Year":2019,"renewable_percentage":18.6915426873},{"Entity":"India","Year":2020,"renewable_percentage":20.2059243238},{"Entity":"Indonesia","Year":2000,"renewable_percentage":null},{"Entity":"Indonesia","Year":2001,"renewable_percentage":null},{"Entity":"Indonesia","Year":2002,"renewable_percentage":null},{"Entity":"Indonesia","Year":2003,"renewable_percentage":null},{"Entity":"Indonesia","Year":2004,"renewable_percentage":null},{"Entity":"Indonesia","Year":2005,"renewable_percentage":null},{"Entity":"Indonesia","Year":2006,"renewable_percentage":null},{"Entity":"Indonesia","Year":2007,"renewable_percentage":null},{"Entity":"Indonesia","Year":2008,"renewable_percentage":null},{"Entity":"Indonesia","Year":2009,"renewable_percentage":null},{"Entity":"Indonesia","Year":2010,"renewable_percentage":null},{"Entity":"Indonesia","Year":2011,"renewable_percentage":null},{"Entity":"Indonesia","Year":2012,"renewable_percentage":null},{"Entity":"Indonesia","Year":2013,"renewable_percentage":null},{"Entity":"Indonesia","Year":2014,"renewable_percentage":null},{"Entity":"Indonesia","Year":2015,"renewable_percentage":null},{"Entity":"Indonesia","Year":2016,"renewable_percentage":null},{"Entity":"Indonesia","Year":2017,"renewable_percentage":null},{"Entity":"Indonesia","Year":2018,"renewable_percentage":null},{"Entity":"Indonesia","Year":2019,"renewable_percentage":null},{"Entity":"Indonesia","Year":2020,"renewable_percentage":null},{"Entity":"Italy","Year":2000,"renewable_percentage":18.900241501},{"Entity":"Italy","Year":2001,"renewable_percentage":20.049431902},{"Entity":"Italy","Year":2002,"renewable_percentage":17.4555571614},{"Entity":"Italy","Year":2003,"renewable_percentage":16.4202116476},{"Entity":"Italy","Year":2004,"renewable_percentage":18.2749380999},{"Entity":"Italy","Year":2005,"renewable_percentage":16.3769782226},{"Entity":"Italy","Year":2006,"renewable_percentage":16.5128639906},{"Entity":"Italy","Year":2007,"renewable_percentage":15.5333485238},{"Entity":"Italy","Year":2008,"renewable_percentage":18.6112},{"Entity":"Italy","Year":2009,"renewable_percentage":24.0837332221},{"Entity":"Italy","Year":2010,"renewable_percentage":25.8400187976},{"Entity":"Italy","Year":2011,"renewable_percentage":27.6773203443},{"Entity":"Italy","Year":2012,"renewable_percentage":31.1049649217},{"Entity":"Italy","Year":2013,"renewable_percentage":39.0148744209},{"Entity":"Italy","Year":2014,"renewable_percentage":43.4976931949},{"Entity":"Italy","Year":2015,"renewable_percentage":38.7577860829},{"Entity":"Italy","Year":2016,"renewable_percentage":37.6079387187},{"Entity":"Italy","Year":2017,"renewable_percentage":35.4174479255},{"Entity":"Italy","Year":2018,"renewable_percentage":39.8100142663},{"Entity":"Italy","Year":2019,"renewable_percentage":39.7563068474},{"Entity":"Italy","Year":2020,"renewable_percentage":42.0397741576},{"Entity":"Japan","Year":2000,"renewable_percentage":10.5382436261},{"Entity":"Japan","Year":2001,"renewable_percentage":10.447653504},{"Entity":"Japan","Year":2002,"renewable_percentage":10.2477294843},{"Entity":"Japan","Year":2003,"renewable_percentage":11.6993698448},{"Entity":"Japan","Year":2004,"renewable_percentage":11.4198974767},{"Entity":"Japan","Year":2005,"renewable_percentage":9.9068127192},{"Entity":"Japan","Year":2006,"renewable_percentage":10.8554989442},{"Entity":"Japan","Year":2007,"renewable_percentage":9.3897588285},{"Entity":"Japan","Year":2008,"renewable_percentage":10.0196834738},{"Entity":"Japan","Year":2009,"renewable_percentage":10.4667464874},{"Entity":"Japan","Year":2010,"renewable_percentage":10.5269966826},{"Entity":"Japan","Year":2011,"renewable_percentage":11.1272421632},{"Entity":"Japan","Year":2012,"renewable_percentage":10.6143703421},{"Entity":"Japan","Year":2013,"renewable_percentage":11.7965798852},{"Entity":"Japan","Year":2014,"renewable_percentage":13.2719619718},{"Entity":"Japan","Year":2015,"renewable_percentage":15.6586817408},{"Entity":"Japan","Year":2016,"renewable_percentage":15.6920107068},{"Entity":"Japan","Year":2017,"renewable_percentage":17.3559698312},{"Entity":"Japan","Year":2018,"renewable_percentage":18.144181175},{"Entity":"Japan","Year":2019,"renewable_percentage":19.4223288251},{"Entity":"Japan","Year":2020,"renewable_percentage":21.324925062},{"Entity":"Kazakhstan","Year":2000,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2001,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2002,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2003,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2004,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2005,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2006,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2007,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2008,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2009,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2010,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2011,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2012,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2013,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2014,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2015,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2016,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2017,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2018,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2019,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2020,"renewable_percentage":null},{"Entity":"Mexico","Year":2000,"renewable_percentage":22.9291160107},{"Entity":"Mexico","Year":2001,"renewable_percentage":19.6649599841},{"Entity":"Mexico","Year":2002,"renewable_percentage":17.4220963173},{"Entity":"Mexico","Year":2003,"renewable_percentage":15.8536585366},{"Entity":"Mexico","Year":2004,"renewable_percentage":17.3134463687},{"Entity":"Mexico","Year":2005,"renewable_percentage":18.2780827246},{"Entity":"Mexico","Year":2006,"renewable_percentage":18.4256091896},{"Entity":"Mexico","Year":2007,"renewable_percentage":17.2761561168},{"Entity":"Mexico","Year":2008,"renewable_percentage":21.5387105913},{"Entity":"Mexico","Year":2009,"renewable_percentage":16.5369729069},{"Entity":"Mexico","Year":2010,"renewable_percentage":19.4281608109},{"Entity":"Mexico","Year":2011,"renewable_percentage":18.0916357408},{"Entity":"Mexico","Year":2012,"renewable_percentage":16.5759438104},{"Entity":"Mexico","Year":2013,"renewable_percentage":15.5492898914},{"Entity":"Mexico","Year":2014,"renewable_percentage":19.8008201523},{"Entity":"Mexico","Year":2015,"renewable_percentage":17.5976903451},{"Entity":"Mexico","Year":2016,"renewable_percentage":17.4806943436},{"Entity":"Mexico","Year":2017,"renewable_percentage":18.0759526428},{"Entity":"Mexico","Year":2018,"renewable_percentage":17.703752786},{"Entity":"Mexico","Year":2019,"renewable_percentage":18.5487927565},{"Entity":"Mexico","Year":2020,"renewable_percentage":21.2552224134},{"Entity":"Poland","Year":2000,"renewable_percentage":1.6273222517},{"Entity":"Poland","Year":2001,"renewable_percentage":1.934316727},{"Entity":"Poland","Year":2002,"renewable_percentage":1.9439960699},{"Entity":"Poland","Year":2003,"renewable_percentage":1.4999000067},{"Entity":"Poland","Year":2004,"renewable_percentage":2.1016681991},{"Entity":"Poland","Year":2005,"renewable_percentage":2.4830699774},{"Entity":"Poland","Year":2006,"renewable_percentage":2.673730134},{"Entity":"Poland","Year":2007,"renewable_percentage":3.4256513785},{"Entity":"Poland","Year":2008,"renewable_percentage":4.2744438696},{"Entity":"Poland","Year":2009,"renewable_percentage":5.7515388179},{"Entity":"Poland","Year":2010,"renewable_percentage":6.9299363057},{"Entity":"Poland","Year":2011,"renewable_percentage":8.0547205693},{"Entity":"Poland","Year":2012,"renewable_percentage":10.4436057663},{"Entity":"Poland","Year":2013,"renewable_percentage":10.4081508145},{"Entity":"Poland","Year":2014,"renewable_percentage":12.5331481248},{"Entity":"Poland","Year":2015,"renewable_percentage":13.8151485631},{"Entity":"Poland","Year":2016,"renewable_percentage":13.7335179722},{"Entity":"Poland","Year":2017,"renewable_percentage":14.1999646913},{"Entity":"Poland","Year":2018,"renewable_percentage":12.7559148032},{"Entity":"Poland","Year":2019,"renewable_percentage":15.6157998037},{"Entity":"Poland","Year":2020,"renewable_percentage":17.9648720886},{"Entity":"Saudi Arabia","Year":2000,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2001,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2002,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2003,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2004,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2005,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2006,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2007,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2008,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2009,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2010,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2011,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2012,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2013,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2014,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2015,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2016,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2017,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2018,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2019,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2020,"renewable_percentage":null},{"Entity":"South Africa","Year":2000,"renewable_percentage":0.9110805721},{"Entity":"South Africa","Year":2001,"renewable_percentage":1.2516536074},{"Entity":"South Africa","Year":2002,"renewable_percentage":1.3802249619},{"Entity":"South Africa","Year":2003,"renewable_percentage":0.545271261},{"Entity":"South Africa","Year":2004,"renewable_percentage":0.5827199439},{"Entity":"South Africa","Year":2005,"renewable_percentage":0.763458686},{"Entity":"South Africa","Year":2006,"renewable_percentage":1.3863060017},{"Entity":"South Africa","Year":2007,"renewable_percentage":0.5267209594},{"Entity":"South Africa","Year":2008,"renewable_percentage":0.6895692269},{"Entity":"South Africa","Year":2009,"renewable_percentage":0.8031088083},{"Entity":"South Africa","Year":2010,"renewable_percentage":1.0330068318},{"Entity":"South Africa","Year":2011,"renewable_percentage":1.0184465622},{"Entity":"South Africa","Year":2012,"renewable_percentage":0.6890826069},{"Entity":"South Africa","Year":2013,"renewable_percentage":0.6792168043},{"Entity":"South Africa","Year":2014,"renewable_percentage":1.4288129861},{"Entity":"South Africa","Year":2015,"renewable_percentage":2.6256790549},{"Entity":"South Africa","Year":2016,"renewable_percentage":3.2586126531},{"Entity":"South Africa","Year":2017,"renewable_percentage":4.2202606137},{"Entity":"South Africa","Year":2018,"renewable_percentage":5.1554655529},{"Entity":"South Africa","Year":2019,"renewable_percentage":5.3589699864},{"Entity":"South Africa","Year":2020,"renewable_percentage":5.780581212},{"Entity":"Spain","Year":2000,"renewable_percentage":15.6119862394},{"Entity":"Spain","Year":2001,"renewable_percentage":21.1524434719},{"Entity":"Spain","Year":2002,"renewable_percentage":13.8260180901},{"Entity":"Spain","Year":2003,"renewable_percentage":21.667314419},{"Entity":"Spain","Year":2004,"renewable_percentage":18.3190206468},{"Entity":"Spain","Year":2005,"renewable_percentage":14.8597342333},{"Entity":"Spain","Year":2006,"renewable_percentage":17.6623992413},{"Entity":"Spain","Year":2007,"renewable_percentage":19.3347262296},{"Entity":"Spain","Year":2008,"renewable_percentage":20.0051501593},{"Entity":"Spain","Year":2009,"renewable_percentage":25.4107639008},{"Entity":"Spain","Year":2010,"renewable_percentage":32.7922186819},{"Entity":"Spain","Year":2011,"renewable_percentage":30.0408415417},{"Entity":"Spain","Year":2012,"renewable_percentage":29.6047928652},{"Entity":"Spain","Year":2013,"renewable_percentage":39.5850357054},{"Entity":"Spain","Year":2014,"renewable_percentage":40.1032952644},{"Entity":"Spain","Year":2015,"renewable_percentage":34.9899091826},{"Entity":"Spain","Year":2016,"renewable_percentage":38.5818061138},{"Entity":"Spain","Year":2017,"renewable_percentage":32.220593624},{"Entity":"Spain","Year":2018,"renewable_percentage":38.2080329557},{"Entity":"Spain","Year":2019,"renewable_percentage":37.280815091},{"Entity":"Spain","Year":2020,"renewable_percentage":43.8108805298},{"Entity":"Thailand","Year":2000,"renewable_percentage":7.1261029822},{"Entity":"Thailand","Year":2001,"renewable_percentage":7.061527212},{"Entity":"Thailand","Year":2002,"renewable_percentage":7.9444772593},{"Entity":"Thailand","Year":2003,"renewable_percentage":7.6718362852},{"Entity":"Thailand","Year":2004,"renewable_percentage":6.5163549406},{"Entity":"Thailand","Year":2005,"renewable_percentage":6.0325203252},{"Entity":"Thailand","Year":2006,"renewable_percentage":7.5988547551},{"Entity":"Thailand","Year":2007,"renewable_percentage":7.7085852479},{"Entity":"Thailand","Year":2008,"renewable_percentage":6.5625458278},{"Entity":"Thailand","Year":2009,"renewable_percentage":6.6263303689},{"Entity":"Thailand","Year":2010,"renewable_percentage":5.7085828343},{"Entity":"Thailand","Year":2011,"renewable_percentage":8.039961941},{"Entity":"Thailand","Year":2012,"renewable_percentage":8.5396118358},{"Entity":"Thailand","Year":2013,"renewable_percentage":7.6765035487},{"Entity":"Thailand","Year":2014,"renewable_percentage":8.395728489},{"Entity":"Thailand","Year":2015,"renewable_percentage":7.9949619145},{"Entity":"Thailand","Year":2016,"renewable_percentage":8.9840234023},{"Entity":"Thailand","Year":2017,"renewable_percentage":10.9570957096},{"Entity":"Thailand","Year":2018,"renewable_percentage":14.1900054915},{"Entity":"Thailand","Year":2019,"renewable_percentage":14.7001731284},{"Entity":"Thailand","Year":2020,"renewable_percentage":13.7963737796},{"Entity":"Ukraine","Year":2000,"renewable_percentage":6.5860921352},{"Entity":"Ukraine","Year":2001,"renewable_percentage":6.9729761009},{"Entity":"Ukraine","Year":2002,"renewable_percentage":5.5597165409},{"Entity":"Ukraine","Year":2003,"renewable_percentage":5.1442841287},{"Entity":"Ukraine","Year":2004,"renewable_percentage":6.4718162839},{"Entity":"Ukraine","Year":2005,"renewable_percentage":6.6698940347},{"Entity":"Ukraine","Year":2006,"renewable_percentage":6.68633235},{"Entity":"Ukraine","Year":2007,"renewable_percentage":5.3380238605},{"Entity":"Ukraine","Year":2008,"renewable_percentage":6.1377090041},{"Entity":"Ukraine","Year":2009,"renewable_percentage":6.980762585},{"Entity":"Ukraine","Year":2010,"renewable_percentage":7.0914098083},{"Entity":"Ukraine","Year":2011,"renewable_percentage":5.7450628366},{"Entity":"Ukraine","Year":2012,"renewable_percentage":5.6614236741},{"Entity":"Ukraine","Year":2013,"renewable_percentage":7.8003200661},{"Entity":"Ukraine","Year":2014,"renewable_percentage":5.5885262117},{"Entity":"Ukraine","Year":2015,"renewable_percentage":4.3924771096},{"Entity":"Ukraine","Year":2016,"renewable_percentage":5.6797249171},{"Entity":"Ukraine","Year":2017,"renewable_percentage":7.0457194664},{"Entity":"Ukraine","Year":2018,"renewable_percentage":8.228528092},{"Entity":"Ukraine","Year":2019,"renewable_percentage":7.7754487096},{"Entity":"Ukraine","Year":2020,"renewable_percentage":11.8440577364},{"Entity":"United Kingdom","Year":2000,"renewable_percentage":2.6657406913},{"Entity":"United Kingdom","Year":2001,"renewable_percentage":2.5001961451},{"Entity":"United Kingdom","Year":2002,"renewable_percentage":2.8939157566},{"Entity":"United Kingdom","Year":2003,"renewable_percentage":2.6854802003},{"Entity":"United Kingdom","Year":2004,"renewable_percentage":3.6136880575},{"Entity":"United Kingdom","Year":2005,"renewable_percentage":4.2815234434},{"Entity":"United Kingdom","Year":2006,"renewable_percentage":4.6029890199},{"Entity":"United Kingdom","Year":2007,"renewable_percentage":5.0104331009},{"Entity":"United Kingdom","Year":2008,"renewable_percentage":5.6776842324},{"Entity":"United Kingdom","Year":2009,"renewable_percentage":6.7679854187},{"Entity":"United Kingdom","Year":2010,"renewable_percentage":6.9092924441},{"Entity":"United Kingdom","Year":2011,"renewable_percentage":9.6422505889},{"Entity":"United Kingdom","Year":2012,"renewable_percentage":11.4273047189},{"Entity":"United Kingdom","Year":2013,"renewable_percentage":14.9727052732},{"Entity":"United Kingdom","Year":2014,"renewable_percentage":19.2476358104},{"Entity":"United Kingdom","Year":2015,"renewable_percentage":24.6227709191},{"Entity":"United Kingdom","Year":2016,"renewable_percentage":24.6788390627},{"Entity":"United Kingdom","Year":2017,"renewable_percentage":29.4986571173},{"Entity":"United Kingdom","Year":2018,"renewable_percentage":33.2919818457},{"Entity":"United Kingdom","Year":2019,"renewable_percentage":37.4568630499},{"Entity":"United Kingdom","Year":2020,"renewable_percentage":42.8603962651},{"Entity":"United States","Year":2000,"renewable_percentage":9.2298992662},{"Entity":"United States","Year":2001,"renewable_percentage":7.5132056541},{"Entity":"United States","Year":2002,"renewable_percentage":8.749216358},{"Entity":"United States","Year":2003,"renewable_percentage":9.0252110397},{"Entity":"United States","Year":2004,"renewable_percentage":8.7334100887},{"Entity":"United States","Year":2005,"renewable_percentage":8.7494640631},{"Entity":"United States","Year":2006,"renewable_percentage":9.4184742052},{"Entity":"United States","Year":2007,"renewable_percentage":8.3984096829},{"Entity":"United States","Year":2008,"renewable_percentage":9.180943292},{"Entity":"United States","Year":2009,"renewable_percentage":10.547689996},{"Entity":"United States","Year":2010,"renewable_percentage":10.3180892283},{"Entity":"United States","Year":2011,"renewable_percentage":12.4665249812},{"Entity":"United States","Year":2012,"renewable_percentage":12.1841179804},{"Entity":"United States","Year":2013,"renewable_percentage":12.8311154179},{"Entity":"United States","Year":2014,"renewable_percentage":13.3503092033},{"Entity":"United States","Year":2015,"renewable_percentage":13.6261352256},{"Entity":"United States","Year":2016,"renewable_percentage":15.2880936304},{"Entity":"United States","Year":2017,"renewable_percentage":17.4515276472},{"Entity":"United States","Year":2018,"renewable_percentage":17.4499886946},{"Entity":"United States","Year":2019,"renewable_percentage":18.2946243489},{"Entity":"United States","Year":2020,"renewable_percentage":20.3156921037}],"metadata":{"Entity":{"type":"string","semanticType":"Location"},"Year":{"type":"number","semanticType":"Year"},"renewable_percentage":{"type":"number","semanticType":"Percentage"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage']].copy()\n \n return transformed_df\n","source":["global-energy-20-small.csv"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 158029.9988, 190729.9957, 209229.9957, ..., 6993180.176, 9861099.609, 9874660.156, 10096009.77\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 90.14, 91.79, 92.54, 804.95\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Transform the data into a long format where different energy sources (fossil fuels, nuclear, renewables) are unpivoted into separate rows. Each row should contain the year, entity (country), energy source type, and the corresponding energy value in TWh. This will enable visualization of energy generation trends over time by source and country.\",\n \"display_instruction\": \"Show **energy generation** trends by **source** and **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"source\", \"energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n },\n \"reason\": \"The user wants to visualize energy data across different sources with a line chart faceted by source. The original data has energy sources in separate columns (fossil fuels, nuclear, renewables), so we need to unpivot these columns into a long format with 'source' and 'energy' fields. The chart_encodings provided by the user are appropriate for this visualization goal, using faceting (column) to separate different energy sources.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Entity Year energy source\n0 Australia 2000 181.05 fossil fuels\n1 Australia 2001 194.33 fossil fuels\n2 Australia 2002 197.29 fossil fuels\n3 Australia 2003 195.13 fossil fuels\n4 Australia 2004 203.66 fossil fuels\n5 Australia 2005 195.95 fossil fuels\n6 Australia 2006 198.72 fossil fuels\n7 Australia 2007 208.59 fossil fuels\n8 Australia 2008 211.06 fossil fuels\n9 Australia 2009 216.42 fossil fuels\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show renewable percentage for each country\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage for each country and year. The renewable percentage is computed as the ratio of renewable energy to total energy (sum of fossil fuels, nuclear, and renewables) multiplied by 100. The output should contain year, entity (country), and the renewable percentage value.\",\n \"display_instruction\": \"Show **renewable percentage** for each **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"renewable_percentage\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"renewable_percentage\",\n \"color\": \"Entity\"\n },\n \"reason\": \"The user wants to see renewable percentage trends, which requires calculating the proportion of renewable energy relative to total energy generation. This is a single metric per country per year, so we don't need the 'column' faceting by source anymore. The chart_encodings are updated to reflect that we're now showing a percentage metric rather than absolute energy values by source.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage']].copy()\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-82","sourceTableIds":["global-energy-20-small.csv"],"instruction":"show renewable percentage for each country","displayInstruction":"Show **renewable percentage** for each **Entity** over **Year**","chart":{"id":"chart-1760738416626","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"fieldID":"concept-1760738385163"},"color":{"fieldID":"original--global-energy-20-small.csv--Entity"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"concept-1760738389404","sortBy":"[\"fossil fuels\",\"nuclear\",\"renewables\"]"},"row":{"channel":"row","bin":false}},"tableRef":"table-82","saved":false,"source":"trigger","unread":false},"resultTableId":"table-45"},"explanation":{"agent":"CodeExplanationAgent","code":"The code transforms global energy data to analyze renewable energy adoption:\n\n- Calculates **total_energy** by summing electricity generation from three sources: **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n- Computes **renewable_percentage** by dividing **Electricity from renewables (TWh)** by **total_energy** and multiplying by **100**\n- Handles edge cases by replacing infinite values (from division by zero) with **NaN**\n- Filters the dataset to retain only **Year**, **Entity** (country), and **renewable_percentage** columns","concepts":[{"explanation":"The proportion of a country's total electricity generation that comes from renewable sources, expressed as a percentage. Calculated as: \\( \\frac{\\text{Electricity from renewables}}{\\text{Total electricity generation}} \\times 100 \\). This metric indicates the degree of renewable energy adoption in each country's energy mix.","field":"renewable_percentage"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5738290.039, 9861099.609, 10502929.69, 10707219.73\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., nan, nan, nan, nan\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage']].copy()\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThe code transforms global energy data to analyze renewable energy adoption:\n\n- Calculates **total_energy** by summing electricity generation from three sources: **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n- Computes **renewable_percentage** by dividing **Electricity from renewables (TWh)** by **total_energy** and multiplying by **100**\n- Handles edge cases by replacing infinite values (from division by zero) with **NaN**\n- Filters the dataset to retain only **Year**, **Entity** (country), and **renewable_percentage** columns\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"renewable_percentage\",\n \"explanation\": \"The proportion of a country's total electricity generation that comes from renewable sources, expressed as a percentage. Calculated as: \\\\( \\\\frac{\\\\text{Electricity from renewables}}{\\\\text{Total electricity generation}} \\\\times 100 \\\\). This metric indicates the degree of renewable energy adoption in each country's energy mix.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-78","displayId":"renewable-energy-rank","names":["Entity","Year","rank","renewable_percentage"],"rows":[{"Entity":"Australia","Year":2000,"rank":11,"renewable_percentage":8.6344368187},{"Entity":"Australia","Year":2001,"rank":10,"renewable_percentage":8.2180135078},{"Entity":"Australia","Year":2002,"rank":11,"renewable_percentage":8.0833022736},{"Entity":"Australia","Year":2003,"rank":11,"renewable_percentage":8.6598324205},{"Entity":"Australia","Year":2004,"rank":12,"renewable_percentage":8.7013045232},{"Entity":"Australia","Year":2005,"rank":11,"renewable_percentage":9.1562355123},{"Entity":"Australia","Year":2006,"rank":11,"renewable_percentage":9.6357600837},{"Entity":"Australia","Year":2007,"rank":11,"renewable_percentage":9.1190310213},{"Entity":"Australia","Year":2008,"rank":12,"renewable_percentage":8.0548900022},{"Entity":"Australia","Year":2009,"rank":12,"renewable_percentage":7.8043793133},{"Entity":"Australia","Year":2010,"rank":12,"renewable_percentage":9.0442152121},{"Entity":"Australia","Year":2011,"rank":11,"renewable_percentage":11.3454273735},{"Entity":"Australia","Year":2012,"rank":12,"renewable_percentage":11.4105750279},{"Entity":"Australia","Year":2013,"rank":11,"renewable_percentage":14.8708583355},{"Entity":"Australia","Year":2014,"rank":11,"renewable_percentage":14.9621290509},{"Entity":"Australia","Year":2015,"rank":12,"renewable_percentage":14.3476000693},{"Entity":"Australia","Year":2016,"rank":11,"renewable_percentage":15.6093794449},{"Entity":"Australia","Year":2017,"rank":12,"renewable_percentage":16.3138729943},{"Entity":"Australia","Year":2018,"rank":12,"renewable_percentage":17.145938174},{"Entity":"Australia","Year":2019,"rank":8,"renewable_percentage":21.3759705435},{"Entity":"Australia","Year":2020,"rank":8,"renewable_percentage":25.5031684668},{"Entity":"Brazil","Year":2000,"rank":1,"renewable_percentage":90.1307723743},{"Entity":"Brazil","Year":2001,"rank":1,"renewable_percentage":84.6953615744},{"Entity":"Brazil","Year":2002,"rank":1,"renewable_percentage":86.0883364189},{"Entity":"Brazil","Year":2003,"rank":1,"renewable_percentage":87.4561159097},{"Entity":"Brazil","Year":2004,"rank":1,"renewable_percentage":86.4260041451},{"Entity":"Brazil","Year":2005,"rank":1,"renewable_percentage":87.6781562721},{"Entity":"Brazil","Year":2006,"rank":1,"renewable_percentage":87.2842473236},{"Entity":"Brazil","Year":2007,"rank":1,"renewable_percentage":88.7252098726},{"Entity":"Brazil","Year":2008,"rank":1,"renewable_percentage":84.8072313004},{"Entity":"Brazil","Year":2009,"rank":1,"renewable_percentage":89.4172280725},{"Entity":"Brazil","Year":2010,"rank":1,"renewable_percentage":85.3576882415},{"Entity":"Brazil","Year":2011,"rank":1,"renewable_percentage":87.6618820986},{"Entity":"Brazil","Year":2012,"rank":1,"renewable_percentage":83.1164558813},{"Entity":"Brazil","Year":2013,"rank":1,"renewable_percentage":77.5240022006},{"Entity":"Brazil","Year":2014,"rank":1,"renewable_percentage":74.0418657409},{"Entity":"Brazil","Year":2015,"rank":1,"renewable_percentage":75.0231817625},{"Entity":"Brazil","Year":2016,"rank":1,"renewable_percentage":81.0938046902},{"Entity":"Brazil","Year":2017,"rank":1,"renewable_percentage":79.9091472228},{"Entity":"Brazil","Year":2018,"rank":1,"renewable_percentage":82.9198505403},{"Entity":"Brazil","Year":2019,"rank":1,"renewable_percentage":82.8548799017},{"Entity":"Brazil","Year":2020,"rank":1,"renewable_percentage":84.6411771408},{"Entity":"Canada","Year":2000,"rank":2,"renewable_percentage":61.8095917882},{"Entity":"Canada","Year":2001,"rank":2,"renewable_percentage":59.3287558747},{"Entity":"Canada","Year":2002,"rank":2,"renewable_percentage":61.1477403113},{"Entity":"Canada","Year":2003,"rank":2,"renewable_percentage":60.0789685174},{"Entity":"Canada","Year":2004,"rank":2,"renewable_percentage":59.6967771845},{"Entity":"Canada","Year":2005,"rank":2,"renewable_percentage":60.8208155391},{"Entity":"Canada","Year":2006,"rank":2,"renewable_percentage":60.8271602855},{"Entity":"Canada","Year":2007,"rank":2,"renewable_percentage":61.2460642446},{"Entity":"Canada","Year":2008,"rank":2,"renewable_percentage":62.6520720838},{"Entity":"Canada","Year":2009,"rank":2,"renewable_percentage":63.8919227732},{"Entity":"Canada","Year":2010,"rank":2,"renewable_percentage":62.9421470558},{"Entity":"Canada","Year":2011,"rank":2,"renewable_percentage":64.0922915917},{"Entity":"Canada","Year":2012,"rank":2,"renewable_percentage":65.098730952},{"Entity":"Canada","Year":2013,"rank":2,"renewable_percentage":65.4320794066},{"Entity":"Canada","Year":2014,"rank":2,"renewable_percentage":64.791145907},{"Entity":"Canada","Year":2015,"rank":2,"renewable_percentage":65.2946239925},{"Entity":"Canada","Year":2016,"rank":2,"renewable_percentage":66.1890584295},{"Entity":"Canada","Year":2017,"rank":2,"renewable_percentage":67.5399410579},{"Entity":"Canada","Year":2018,"rank":2,"renewable_percentage":67.3685700357},{"Entity":"Canada","Year":2019,"rank":2,"renewable_percentage":67.1741623137},{"Entity":"Canada","Year":2020,"rank":2,"renewable_percentage":68.7796436354},{"Entity":"China","Year":2000,"rank":5,"renewable_percentage":16.639126586},{"Entity":"China","Year":2001,"rank":6,"renewable_percentage":18.9581237042},{"Entity":"China","Year":2002,"rank":3,"renewable_percentage":17.6185006046},{"Entity":"China","Year":2003,"rank":6,"renewable_percentage":15.0362717081},{"Entity":"China","Year":2004,"rank":6,"renewable_percentage":16.2224108273},{"Entity":"China","Year":2005,"rank":5,"renewable_percentage":16.1731179957},{"Entity":"China","Year":2006,"rank":7,"renewable_percentage":15.5884036124},{"Entity":"China","Year":2007,"rank":7,"renewable_percentage":15.2583847828},{"Entity":"China","Year":2008,"rank":5,"renewable_percentage":19.0253335469},{"Entity":"China","Year":2009,"rank":5,"renewable_percentage":17.8857170547},{"Entity":"China","Year":2010,"rank":6,"renewable_percentage":18.7800759915},{"Entity":"China","Year":2011,"rank":7,"renewable_percentage":16.8902341543},{"Entity":"China","Year":2012,"rank":6,"renewable_percentage":20.122965176},{"Entity":"China","Year":2013,"rank":6,"renewable_percentage":20.2152481955},{"Entity":"China","Year":2014,"rank":6,"renewable_percentage":22.3502204285},{"Entity":"China","Year":2015,"rank":7,"renewable_percentage":24.079270189},{"Entity":"China","Year":2016,"rank":6,"renewable_percentage":25.0007798429},{"Entity":"China","Year":2017,"rank":7,"renewable_percentage":25.419242299},{"Entity":"China","Year":2018,"rank":7,"renewable_percentage":25.7747942589},{"Entity":"China","Year":2019,"rank":7,"renewable_percentage":26.9995671106},{"Entity":"China","Year":2020,"rank":7,"renewable_percentage":28.2464606924},{"Entity":"France","Year":2000,"rank":8,"renewable_percentage":12.7117691154},{"Entity":"France","Year":2001,"rank":7,"renewable_percentage":13.9961372206},{"Entity":"France","Year":2002,"rank":8,"renewable_percentage":11.3544157067},{"Entity":"France","Year":2003,"rank":9,"renewable_percentage":10.9783540506},{"Entity":"France","Year":2004,"rank":9,"renewable_percentage":11.0051305559},{"Entity":"France","Year":2005,"rank":10,"renewable_percentage":9.6479837153},{"Entity":"France","Year":2006,"rank":10,"renewable_percentage":10.7235915493},{"Entity":"France","Year":2007,"rank":9,"renewable_percentage":11.4370075239},{"Entity":"France","Year":2008,"rank":9,"renewable_percentage":12.7487441615},{"Entity":"France","Year":2009,"rank":9,"renewable_percentage":12.8776856068},{"Entity":"France","Year":2010,"rank":9,"renewable_percentage":13.6240072491},{"Entity":"France","Year":2011,"rank":10,"renewable_percentage":11.63553049},{"Entity":"France","Year":2012,"rank":9,"renewable_percentage":15.0331522889},{"Entity":"France","Year":2013,"rank":7,"renewable_percentage":17.2469424928},{"Entity":"France","Year":2014,"rank":9,"renewable_percentage":16.6074992494},{"Entity":"France","Year":2015,"rank":9,"renewable_percentage":16.002230276},{"Entity":"France","Year":2016,"rank":8,"renewable_percentage":17.7212924013},{"Entity":"France","Year":2017,"rank":11,"renewable_percentage":16.6576751547},{"Entity":"France","Year":2018,"rank":8,"renewable_percentage":19.7315179827},{"Entity":"France","Year":2019,"rank":9,"renewable_percentage":20.0116665488},{"Entity":"France","Year":2020,"rank":9,"renewable_percentage":23.7610241821},{"Entity":"Germany","Year":2000,"rank":14,"renewable_percentage":6.1977983575},{"Entity":"Germany","Year":2001,"rank":14,"renewable_percentage":6.5132585197},{"Entity":"Germany","Year":2002,"rank":13,"renewable_percentage":7.6431369854},{"Entity":"Germany","Year":2003,"rank":12,"renewable_percentage":7.7455438643},{"Entity":"Germany","Year":2004,"rank":10,"renewable_percentage":9.4989185292},{"Entity":"Germany","Year":2005,"rank":8,"renewable_percentage":10.3356645637},{"Entity":"Germany","Year":2006,"rank":8,"renewable_percentage":11.5129959829},{"Entity":"Germany","Year":2007,"rank":8,"renewable_percentage":14.135471525},{"Entity":"Germany","Year":2008,"rank":8,"renewable_percentage":14.8894504106},{"Entity":"Germany","Year":2009,"rank":7,"renewable_percentage":16.2902842395},{"Entity":"Germany","Year":2010,"rank":7,"renewable_percentage":16.8384989754},{"Entity":"Germany","Year":2011,"rank":5,"renewable_percentage":20.4967199299},{"Entity":"Germany","Year":2012,"rank":5,"renewable_percentage":23.056464482},{"Entity":"Germany","Year":2013,"rank":5,"renewable_percentage":24.1368929731},{"Entity":"Germany","Year":2014,"rank":5,"renewable_percentage":26.2182434067},{"Entity":"Germany","Year":2015,"rank":5,"renewable_percentage":29.4721888318},{"Entity":"Germany","Year":2016,"rank":5,"renewable_percentage":29.4990435013},{"Entity":"Germany","Year":2017,"rank":4,"renewable_percentage":33.4855497593},{"Entity":"Germany","Year":2018,"rank":5,"renewable_percentage":35.0976735365},{"Entity":"Germany","Year":2019,"rank":3,"renewable_percentage":40.0890757144},{"Entity":"Germany","Year":2020,"rank":3,"renewable_percentage":44.3324048937},{"Entity":"India","Year":2000,"rank":7,"renewable_percentage":14.0481982534},{"Entity":"India","Year":2001,"rank":8,"renewable_percentage":12.9997099422},{"Entity":"India","Year":2002,"rank":7,"renewable_percentage":11.938193032},{"Entity":"India","Year":2003,"rank":8,"renewable_percentage":11.695109147},{"Entity":"India","Year":2004,"rank":7,"renewable_percentage":15.6375300722},{"Entity":"India","Year":2005,"rank":6,"renewable_percentage":15.2543575768},{"Entity":"India","Year":2006,"rank":5,"renewable_percentage":17.1352578483},{"Entity":"India","Year":2007,"rank":4,"renewable_percentage":17.8019742295},{"Entity":"India","Year":2008,"rank":7,"renewable_percentage":16.768266921},{"Entity":"India","Year":2009,"rank":8,"renewable_percentage":15.269804822},{"Entity":"India","Year":2010,"rank":8,"renewable_percentage":15.2122201244},{"Entity":"India","Year":2011,"rank":8,"renewable_percentage":16.7911025145},{"Entity":"India","Year":2012,"rank":8,"renewable_percentage":15.1350014654},{"Entity":"India","Year":2013,"rank":8,"renewable_percentage":16.3941577818},{"Entity":"India","Year":2014,"rank":10,"renewable_percentage":16.0092550039},{"Entity":"India","Year":2015,"rank":11,"renewable_percentage":15.3718720687},{"Entity":"India","Year":2016,"rank":13,"renewable_percentage":14.8548475703},{"Entity":"India","Year":2017,"rank":13,"renewable_percentage":15.9669920335},{"Entity":"India","Year":2018,"rank":13,"renewable_percentage":16.6949549709},{"Entity":"India","Year":2019,"rank":11,"renewable_percentage":18.6915426873},{"Entity":"India","Year":2020,"rank":13,"renewable_percentage":20.2059243238},{"Entity":"Indonesia","Year":2000,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2001,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2002,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2003,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2004,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2005,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2006,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2007,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2008,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2009,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2010,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2011,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2012,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2013,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2014,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2015,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2016,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2017,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2018,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2019,"rank":null,"renewable_percentage":null},{"Entity":"Indonesia","Year":2020,"rank":null,"renewable_percentage":null},{"Entity":"Italy","Year":2000,"rank":4,"renewable_percentage":18.900241501},{"Entity":"Italy","Year":2001,"rank":4,"renewable_percentage":20.049431902},{"Entity":"Italy","Year":2002,"rank":4,"renewable_percentage":17.4555571614},{"Entity":"Italy","Year":2003,"rank":4,"renewable_percentage":16.4202116476},{"Entity":"Italy","Year":2004,"rank":4,"renewable_percentage":18.2749380999},{"Entity":"Italy","Year":2005,"rank":4,"renewable_percentage":16.3769782226},{"Entity":"Italy","Year":2006,"rank":6,"renewable_percentage":16.5128639906},{"Entity":"Italy","Year":2007,"rank":6,"renewable_percentage":15.5333485238},{"Entity":"Italy","Year":2008,"rank":6,"renewable_percentage":18.6112},{"Entity":"Italy","Year":2009,"rank":4,"renewable_percentage":24.0837332221},{"Entity":"Italy","Year":2010,"rank":4,"renewable_percentage":25.8400187976},{"Entity":"Italy","Year":2011,"rank":4,"renewable_percentage":27.6773203443},{"Entity":"Italy","Year":2012,"rank":3,"renewable_percentage":31.1049649217},{"Entity":"Italy","Year":2013,"rank":4,"renewable_percentage":39.0148744209},{"Entity":"Italy","Year":2014,"rank":3,"renewable_percentage":43.4976931949},{"Entity":"Italy","Year":2015,"rank":3,"renewable_percentage":38.7577860829},{"Entity":"Italy","Year":2016,"rank":4,"renewable_percentage":37.6079387187},{"Entity":"Italy","Year":2017,"rank":3,"renewable_percentage":35.4174479255},{"Entity":"Italy","Year":2018,"rank":3,"renewable_percentage":39.8100142663},{"Entity":"Italy","Year":2019,"rank":4,"renewable_percentage":39.7563068474},{"Entity":"Italy","Year":2020,"rank":6,"renewable_percentage":42.0397741576},{"Entity":"Japan","Year":2000,"rank":9,"renewable_percentage":10.5382436261},{"Entity":"Japan","Year":2001,"rank":9,"renewable_percentage":10.447653504},{"Entity":"Japan","Year":2002,"rank":9,"renewable_percentage":10.2477294843},{"Entity":"Japan","Year":2003,"rank":7,"renewable_percentage":11.6993698448},{"Entity":"Japan","Year":2004,"rank":8,"renewable_percentage":11.4198974767},{"Entity":"Japan","Year":2005,"rank":9,"renewable_percentage":9.9068127192},{"Entity":"Japan","Year":2006,"rank":9,"renewable_percentage":10.8554989442},{"Entity":"Japan","Year":2007,"rank":10,"renewable_percentage":9.3897588285},{"Entity":"Japan","Year":2008,"rank":10,"renewable_percentage":10.0196834738},{"Entity":"Japan","Year":2009,"rank":11,"renewable_percentage":10.4667464874},{"Entity":"Japan","Year":2010,"rank":10,"renewable_percentage":10.5269966826},{"Entity":"Japan","Year":2011,"rank":12,"renewable_percentage":11.1272421632},{"Entity":"Japan","Year":2012,"rank":13,"renewable_percentage":10.6143703421},{"Entity":"Japan","Year":2013,"rank":13,"renewable_percentage":11.7965798852},{"Entity":"Japan","Year":2014,"rank":13,"renewable_percentage":13.2719619718},{"Entity":"Japan","Year":2015,"rank":10,"renewable_percentage":15.6586817408},{"Entity":"Japan","Year":2016,"rank":10,"renewable_percentage":15.6920107068},{"Entity":"Japan","Year":2017,"rank":10,"renewable_percentage":17.3559698312},{"Entity":"Japan","Year":2018,"rank":9,"renewable_percentage":18.144181175},{"Entity":"Japan","Year":2019,"rank":10,"renewable_percentage":19.4223288251},{"Entity":"Japan","Year":2020,"rank":10,"renewable_percentage":21.324925062},{"Entity":"Kazakhstan","Year":2000,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2001,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2002,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2003,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2004,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2005,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2006,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2007,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2008,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2009,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2010,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2011,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2012,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2013,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2014,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2015,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2016,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2017,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2018,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2019,"rank":null,"renewable_percentage":null},{"Entity":"Kazakhstan","Year":2020,"rank":null,"renewable_percentage":null},{"Entity":"Mexico","Year":2000,"rank":3,"renewable_percentage":22.9291160107},{"Entity":"Mexico","Year":2001,"rank":5,"renewable_percentage":19.6649599841},{"Entity":"Mexico","Year":2002,"rank":5,"renewable_percentage":17.4220963173},{"Entity":"Mexico","Year":2003,"rank":5,"renewable_percentage":15.8536585366},{"Entity":"Mexico","Year":2004,"rank":5,"renewable_percentage":17.3134463687},{"Entity":"Mexico","Year":2005,"rank":3,"renewable_percentage":18.2780827246},{"Entity":"Mexico","Year":2006,"rank":3,"renewable_percentage":18.4256091896},{"Entity":"Mexico","Year":2007,"rank":5,"renewable_percentage":17.2761561168},{"Entity":"Mexico","Year":2008,"rank":3,"renewable_percentage":21.5387105913},{"Entity":"Mexico","Year":2009,"rank":6,"renewable_percentage":16.5369729069},{"Entity":"Mexico","Year":2010,"rank":5,"renewable_percentage":19.4281608109},{"Entity":"Mexico","Year":2011,"rank":6,"renewable_percentage":18.0916357408},{"Entity":"Mexico","Year":2012,"rank":7,"renewable_percentage":16.5759438104},{"Entity":"Mexico","Year":2013,"rank":9,"renewable_percentage":15.5492898914},{"Entity":"Mexico","Year":2014,"rank":7,"renewable_percentage":19.8008201523},{"Entity":"Mexico","Year":2015,"rank":8,"renewable_percentage":17.5976903451},{"Entity":"Mexico","Year":2016,"rank":9,"renewable_percentage":17.4806943436},{"Entity":"Mexico","Year":2017,"rank":8,"renewable_percentage":18.0759526428},{"Entity":"Mexico","Year":2018,"rank":10,"renewable_percentage":17.703752786},{"Entity":"Mexico","Year":2019,"rank":12,"renewable_percentage":18.5487927565},{"Entity":"Mexico","Year":2020,"rank":11,"renewable_percentage":21.2552224134},{"Entity":"Poland","Year":2000,"rank":16,"renewable_percentage":1.6273222517},{"Entity":"Poland","Year":2001,"rank":16,"renewable_percentage":1.934316727},{"Entity":"Poland","Year":2002,"rank":16,"renewable_percentage":1.9439960699},{"Entity":"Poland","Year":2003,"rank":16,"renewable_percentage":1.4999000067},{"Entity":"Poland","Year":2004,"rank":16,"renewable_percentage":2.1016681991},{"Entity":"Poland","Year":2005,"rank":16,"renewable_percentage":2.4830699774},{"Entity":"Poland","Year":2006,"rank":16,"renewable_percentage":2.673730134},{"Entity":"Poland","Year":2007,"rank":16,"renewable_percentage":3.4256513785},{"Entity":"Poland","Year":2008,"rank":16,"renewable_percentage":4.2744438696},{"Entity":"Poland","Year":2009,"rank":16,"renewable_percentage":5.7515388179},{"Entity":"Poland","Year":2010,"rank":14,"renewable_percentage":6.9299363057},{"Entity":"Poland","Year":2011,"rank":14,"renewable_percentage":8.0547205693},{"Entity":"Poland","Year":2012,"rank":14,"renewable_percentage":10.4436057663},{"Entity":"Poland","Year":2013,"rank":14,"renewable_percentage":10.4081508145},{"Entity":"Poland","Year":2014,"rank":14,"renewable_percentage":12.5331481248},{"Entity":"Poland","Year":2015,"rank":13,"renewable_percentage":13.8151485631},{"Entity":"Poland","Year":2016,"rank":14,"renewable_percentage":13.7335179722},{"Entity":"Poland","Year":2017,"rank":14,"renewable_percentage":14.1999646913},{"Entity":"Poland","Year":2018,"rank":15,"renewable_percentage":12.7559148032},{"Entity":"Poland","Year":2019,"rank":14,"renewable_percentage":15.6157998037},{"Entity":"Poland","Year":2020,"rank":14,"renewable_percentage":17.9648720886},{"Entity":"Saudi Arabia","Year":2000,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2001,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2002,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2003,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2004,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2005,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2006,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2007,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2008,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2009,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2010,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2011,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2012,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2013,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2014,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2015,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2016,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2017,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2018,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2019,"rank":null,"renewable_percentage":null},{"Entity":"Saudi Arabia","Year":2020,"rank":null,"renewable_percentage":null},{"Entity":"South Africa","Year":2000,"rank":17,"renewable_percentage":0.9110805721},{"Entity":"South Africa","Year":2001,"rank":17,"renewable_percentage":1.2516536074},{"Entity":"South Africa","Year":2002,"rank":17,"renewable_percentage":1.3802249619},{"Entity":"South Africa","Year":2003,"rank":17,"renewable_percentage":0.545271261},{"Entity":"South Africa","Year":2004,"rank":17,"renewable_percentage":0.5827199439},{"Entity":"South Africa","Year":2005,"rank":17,"renewable_percentage":0.763458686},{"Entity":"South Africa","Year":2006,"rank":17,"renewable_percentage":1.3863060017},{"Entity":"South Africa","Year":2007,"rank":17,"renewable_percentage":0.5267209594},{"Entity":"South Africa","Year":2008,"rank":17,"renewable_percentage":0.6895692269},{"Entity":"South Africa","Year":2009,"rank":17,"renewable_percentage":0.8031088083},{"Entity":"South Africa","Year":2010,"rank":17,"renewable_percentage":1.0330068318},{"Entity":"South Africa","Year":2011,"rank":17,"renewable_percentage":1.0184465622},{"Entity":"South Africa","Year":2012,"rank":17,"renewable_percentage":0.6890826069},{"Entity":"South Africa","Year":2013,"rank":17,"renewable_percentage":0.6792168043},{"Entity":"South Africa","Year":2014,"rank":17,"renewable_percentage":1.4288129861},{"Entity":"South Africa","Year":2015,"rank":17,"renewable_percentage":2.6256790549},{"Entity":"South Africa","Year":2016,"rank":17,"renewable_percentage":3.2586126531},{"Entity":"South Africa","Year":2017,"rank":17,"renewable_percentage":4.2202606137},{"Entity":"South Africa","Year":2018,"rank":17,"renewable_percentage":5.1554655529},{"Entity":"South Africa","Year":2019,"rank":17,"renewable_percentage":5.3589699864},{"Entity":"South Africa","Year":2020,"rank":17,"renewable_percentage":5.780581212},{"Entity":"Spain","Year":2000,"rank":6,"renewable_percentage":15.6119862394},{"Entity":"Spain","Year":2001,"rank":3,"renewable_percentage":21.1524434719},{"Entity":"Spain","Year":2002,"rank":6,"renewable_percentage":13.8260180901},{"Entity":"Spain","Year":2003,"rank":3,"renewable_percentage":21.667314419},{"Entity":"Spain","Year":2004,"rank":3,"renewable_percentage":18.3190206468},{"Entity":"Spain","Year":2005,"rank":7,"renewable_percentage":14.8597342333},{"Entity":"Spain","Year":2006,"rank":4,"renewable_percentage":17.6623992413},{"Entity":"Spain","Year":2007,"rank":3,"renewable_percentage":19.3347262296},{"Entity":"Spain","Year":2008,"rank":4,"renewable_percentage":20.0051501593},{"Entity":"Spain","Year":2009,"rank":3,"renewable_percentage":25.4107639008},{"Entity":"Spain","Year":2010,"rank":3,"renewable_percentage":32.7922186819},{"Entity":"Spain","Year":2011,"rank":3,"renewable_percentage":30.0408415417},{"Entity":"Spain","Year":2012,"rank":4,"renewable_percentage":29.6047928652},{"Entity":"Spain","Year":2013,"rank":3,"renewable_percentage":39.5850357054},{"Entity":"Spain","Year":2014,"rank":4,"renewable_percentage":40.1032952644},{"Entity":"Spain","Year":2015,"rank":4,"renewable_percentage":34.9899091826},{"Entity":"Spain","Year":2016,"rank":3,"renewable_percentage":38.5818061138},{"Entity":"Spain","Year":2017,"rank":5,"renewable_percentage":32.220593624},{"Entity":"Spain","Year":2018,"rank":4,"renewable_percentage":38.2080329557},{"Entity":"Spain","Year":2019,"rank":6,"renewable_percentage":37.280815091},{"Entity":"Spain","Year":2020,"rank":4,"renewable_percentage":43.8108805298},{"Entity":"Thailand","Year":2000,"rank":12,"renewable_percentage":7.1261029822},{"Entity":"Thailand","Year":2001,"rank":12,"renewable_percentage":7.061527212},{"Entity":"Thailand","Year":2002,"rank":12,"renewable_percentage":7.9444772593},{"Entity":"Thailand","Year":2003,"rank":13,"renewable_percentage":7.6718362852},{"Entity":"Thailand","Year":2004,"rank":13,"renewable_percentage":6.5163549406},{"Entity":"Thailand","Year":2005,"rank":14,"renewable_percentage":6.0325203252},{"Entity":"Thailand","Year":2006,"rank":13,"renewable_percentage":7.5988547551},{"Entity":"Thailand","Year":2007,"rank":13,"renewable_percentage":7.7085852479},{"Entity":"Thailand","Year":2008,"rank":13,"renewable_percentage":6.5625458278},{"Entity":"Thailand","Year":2009,"rank":15,"renewable_percentage":6.6263303689},{"Entity":"Thailand","Year":2010,"rank":16,"renewable_percentage":5.7085828343},{"Entity":"Thailand","Year":2011,"rank":15,"renewable_percentage":8.039961941},{"Entity":"Thailand","Year":2012,"rank":15,"renewable_percentage":8.5396118358},{"Entity":"Thailand","Year":2013,"rank":16,"renewable_percentage":7.6765035487},{"Entity":"Thailand","Year":2014,"rank":15,"renewable_percentage":8.395728489},{"Entity":"Thailand","Year":2015,"rank":15,"renewable_percentage":7.9949619145},{"Entity":"Thailand","Year":2016,"rank":15,"renewable_percentage":8.9840234023},{"Entity":"Thailand","Year":2017,"rank":15,"renewable_percentage":10.9570957096},{"Entity":"Thailand","Year":2018,"rank":14,"renewable_percentage":14.1900054915},{"Entity":"Thailand","Year":2019,"rank":15,"renewable_percentage":14.7001731284},{"Entity":"Thailand","Year":2020,"rank":15,"renewable_percentage":13.7963737796},{"Entity":"Ukraine","Year":2000,"rank":13,"renewable_percentage":6.5860921352},{"Entity":"Ukraine","Year":2001,"rank":13,"renewable_percentage":6.9729761009},{"Entity":"Ukraine","Year":2002,"rank":14,"renewable_percentage":5.5597165409},{"Entity":"Ukraine","Year":2003,"rank":14,"renewable_percentage":5.1442841287},{"Entity":"Ukraine","Year":2004,"rank":14,"renewable_percentage":6.4718162839},{"Entity":"Ukraine","Year":2005,"rank":13,"renewable_percentage":6.6698940347},{"Entity":"Ukraine","Year":2006,"rank":14,"renewable_percentage":6.68633235},{"Entity":"Ukraine","Year":2007,"rank":14,"renewable_percentage":5.3380238605},{"Entity":"Ukraine","Year":2008,"rank":14,"renewable_percentage":6.1377090041},{"Entity":"Ukraine","Year":2009,"rank":13,"renewable_percentage":6.980762585},{"Entity":"Ukraine","Year":2010,"rank":13,"renewable_percentage":7.0914098083},{"Entity":"Ukraine","Year":2011,"rank":16,"renewable_percentage":5.7450628366},{"Entity":"Ukraine","Year":2012,"rank":16,"renewable_percentage":5.6614236741},{"Entity":"Ukraine","Year":2013,"rank":15,"renewable_percentage":7.8003200661},{"Entity":"Ukraine","Year":2014,"rank":16,"renewable_percentage":5.5885262117},{"Entity":"Ukraine","Year":2015,"rank":16,"renewable_percentage":4.3924771096},{"Entity":"Ukraine","Year":2016,"rank":16,"renewable_percentage":5.6797249171},{"Entity":"Ukraine","Year":2017,"rank":16,"renewable_percentage":7.0457194664},{"Entity":"Ukraine","Year":2018,"rank":16,"renewable_percentage":8.228528092},{"Entity":"Ukraine","Year":2019,"rank":16,"renewable_percentage":7.7754487096},{"Entity":"Ukraine","Year":2020,"rank":16,"renewable_percentage":11.8440577364},{"Entity":"United Kingdom","Year":2000,"rank":15,"renewable_percentage":2.6657406913},{"Entity":"United Kingdom","Year":2001,"rank":15,"renewable_percentage":2.5001961451},{"Entity":"United Kingdom","Year":2002,"rank":15,"renewable_percentage":2.8939157566},{"Entity":"United Kingdom","Year":2003,"rank":15,"renewable_percentage":2.6854802003},{"Entity":"United Kingdom","Year":2004,"rank":15,"renewable_percentage":3.6136880575},{"Entity":"United Kingdom","Year":2005,"rank":15,"renewable_percentage":4.2815234434},{"Entity":"United Kingdom","Year":2006,"rank":15,"renewable_percentage":4.6029890199},{"Entity":"United Kingdom","Year":2007,"rank":15,"renewable_percentage":5.0104331009},{"Entity":"United Kingdom","Year":2008,"rank":15,"renewable_percentage":5.6776842324},{"Entity":"United Kingdom","Year":2009,"rank":14,"renewable_percentage":6.7679854187},{"Entity":"United Kingdom","Year":2010,"rank":15,"renewable_percentage":6.9092924441},{"Entity":"United Kingdom","Year":2011,"rank":13,"renewable_percentage":9.6422505889},{"Entity":"United Kingdom","Year":2012,"rank":11,"renewable_percentage":11.4273047189},{"Entity":"United Kingdom","Year":2013,"rank":10,"renewable_percentage":14.9727052732},{"Entity":"United Kingdom","Year":2014,"rank":8,"renewable_percentage":19.2476358104},{"Entity":"United Kingdom","Year":2015,"rank":6,"renewable_percentage":24.6227709191},{"Entity":"United Kingdom","Year":2016,"rank":7,"renewable_percentage":24.6788390627},{"Entity":"United Kingdom","Year":2017,"rank":6,"renewable_percentage":29.4986571173},{"Entity":"United Kingdom","Year":2018,"rank":6,"renewable_percentage":33.2919818457},{"Entity":"United Kingdom","Year":2019,"rank":5,"renewable_percentage":37.4568630499},{"Entity":"United Kingdom","Year":2020,"rank":5,"renewable_percentage":42.8603962651},{"Entity":"United States","Year":2000,"rank":10,"renewable_percentage":9.2298992662},{"Entity":"United States","Year":2001,"rank":11,"renewable_percentage":7.5132056541},{"Entity":"United States","Year":2002,"rank":10,"renewable_percentage":8.749216358},{"Entity":"United States","Year":2003,"rank":10,"renewable_percentage":9.0252110397},{"Entity":"United States","Year":2004,"rank":11,"renewable_percentage":8.7334100887},{"Entity":"United States","Year":2005,"rank":12,"renewable_percentage":8.7494640631},{"Entity":"United States","Year":2006,"rank":12,"renewable_percentage":9.4184742052},{"Entity":"United States","Year":2007,"rank":12,"renewable_percentage":8.3984096829},{"Entity":"United States","Year":2008,"rank":11,"renewable_percentage":9.180943292},{"Entity":"United States","Year":2009,"rank":10,"renewable_percentage":10.547689996},{"Entity":"United States","Year":2010,"rank":11,"renewable_percentage":10.3180892283},{"Entity":"United States","Year":2011,"rank":9,"renewable_percentage":12.4665249812},{"Entity":"United States","Year":2012,"rank":10,"renewable_percentage":12.1841179804},{"Entity":"United States","Year":2013,"rank":12,"renewable_percentage":12.8311154179},{"Entity":"United States","Year":2014,"rank":12,"renewable_percentage":13.3503092033},{"Entity":"United States","Year":2015,"rank":14,"renewable_percentage":13.6261352256},{"Entity":"United States","Year":2016,"rank":12,"renewable_percentage":15.2880936304},{"Entity":"United States","Year":2017,"rank":9,"renewable_percentage":17.4515276472},{"Entity":"United States","Year":2018,"rank":11,"renewable_percentage":17.4499886946},{"Entity":"United States","Year":2019,"rank":13,"renewable_percentage":18.2946243489},{"Entity":"United States","Year":2020,"rank":12,"renewable_percentage":20.3156921037}],"metadata":{"Entity":{"type":"string","semanticType":"Location"},"Year":{"type":"number","semanticType":"Year"},"rank":{"type":"number","semanticType":"Number"},"renewable_percentage":{"type":"number","semanticType":"Percentage"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Rank countries by renewable percentage within each year (highest percentage = rank 1)\n df_energy['rank'] = df_energy.groupby('Year')['renewable_percentage'].rank(\n method='dense', \n ascending=False\n )\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage', 'rank']].copy()\n \n return transformed_df\n","source":["global-energy-20-small.csv"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 158029.9988, 190729.9957, 209229.9957, ..., 6993180.176, 9861099.609, 9874660.156, 10096009.77\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 90.14, 91.79, 92.54, 804.95\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Transform the data into a long format where different energy sources (fossil fuels, nuclear, renewables) are unpivoted into separate rows. Each row should contain the year, entity (country), energy source type, and the corresponding energy value in TWh. This will enable visualization of energy generation trends over time by source and country.\",\n \"display_instruction\": \"Show **energy generation** trends by **source** and **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"source\", \"energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n },\n \"reason\": \"The user wants to visualize energy data across different sources with a line chart faceted by source. The original data has energy sources in separate columns (fossil fuels, nuclear, renewables), so we need to unpivot these columns into a long format with 'source' and 'energy' fields. The chart_encodings provided by the user are appropriate for this visualization goal, using faceting (column) to separate different energy sources.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Entity Year energy source\n0 Australia 2000 181.05 fossil fuels\n1 Australia 2001 194.33 fossil fuels\n2 Australia 2002 197.29 fossil fuels\n3 Australia 2003 195.13 fossil fuels\n4 Australia 2004 203.66 fossil fuels\n5 Australia 2005 195.95 fossil fuels\n6 Australia 2006 198.72 fossil fuels\n7 Australia 2007 208.59 fossil fuels\n8 Australia 2008 211.06 fossil fuels\n9 Australia 2009 216.42 fossil fuels\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show renewable percentage for each country\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage for each country and year. The renewable percentage is computed as the ratio of renewable energy to total energy (sum of fossil fuels, nuclear, and renewables) multiplied by 100. The output should contain year, entity (country), and the renewable percentage value.\",\n \"display_instruction\": \"Show **renewable percentage** for each **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"renewable_percentage\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"renewable_percentage\",\n \"color\": \"Entity\"\n },\n \"reason\": \"The user wants to see renewable percentage trends, which requires calculating the proportion of renewable energy relative to total energy generation. This is a single metric per country per year, so we don't need the 'column' faceting by source anymore. The chart_encodings are updated to reflect that we're now showing a percentage metric rather than absolute energy values by source.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage']].copy()\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Entity Year renewable_percentage\n0 Australia 2000 8.634437\n1 Australia 2001 8.218014\n2 Australia 2002 8.083302\n3 Australia 2003 8.659832\n4 Australia 2004 8.701305\n5 Australia 2005 9.156236\n6 Australia 2006 9.635760\n7 Australia 2007 9.119031\n8 Australia 2008 8.054890\n9 Australia 2009 7.804379\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"rank countries by their renewable percentage\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"renewable_percentage\",\n \"color\": \"Entity\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage for each country and year, then rank countries based on their renewable percentage. The ranking should be computed for each year, showing which countries have the highest to lowest renewable percentage. The output should contain year, entity (country), renewable percentage, and the rank of each country within that year.\",\n \"display_instruction\": \"Show **countries ranked** by **renewable percentage** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"renewable_percentage\", \"rank\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"renewable_percentage\",\n \"color\": \"Entity\"\n },\n \"reason\": \"The user wants to rank countries by their renewable percentage, which requires adding a rank field that orders countries within each year based on their renewable percentage (highest percentage = rank 1). This allows comparison of countries' relative positions in renewable energy adoption over time. The chart_encodings remain the same as the previous step since we're still visualizing renewable percentage trends, but now with ranking information available.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Rank countries by renewable percentage within each year (highest percentage = rank 1)\n df_energy['rank'] = df_energy.groupby('Year')['renewable_percentage'].rank(\n method='dense', \n ascending=False\n )\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage', 'rank']].copy()\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-45","sourceTableIds":["global-energy-20-small.csv"],"instruction":"rank countries by their renewable percentage","displayInstruction":"Show **countries ranked** by **renewable percentage** over **Year**","chart":{"id":"chart-1760738441793","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"fieldID":"concept-renewable_percentage-1760738424337"},"color":{"fieldID":"original--global-energy-20-small.csv--Entity"},"opacity":{"channel":"opacity","bin":false},"column":{},"row":{"channel":"row","bin":false}},"tableRef":"table-45","saved":false,"source":"trigger","unread":false},"resultTableId":"table-78"},"explanation":{"agent":"CodeExplanationAgent","code":"- Calculate **total_energy** for each country-year by summing electricity generated from **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n- Compute **renewable_percentage** by dividing **Electricity from renewables (TWh)** by **total_energy** and multiplying by **100**\n- Replace any infinite values in **renewable_percentage** with NaN to handle cases where total energy is zero\n- Assign a **rank** to each country within each **Year** based on **renewable_percentage**, where rank **1** represents the highest renewable percentage (using dense ranking method)\n- Return a dataset containing **Year**, **Entity** (country name), **renewable_percentage**, and **rank**","concepts":[{"explanation":"The proportion of a country's total electricity generation that comes from renewable sources, expressed as a percentage. Calculated as: \\[ \\text{renewable\\_percentage} = \\frac{\\text{Electricity from renewables (TWh)}}{\\text{total\\_energy}} \\times 100 \\]","field":"renewable_percentage"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 190729.9957, 227580.0018, 233600.0061, ..., 9282549.805, 9861099.609, 9874660.156, 10096009.77\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 88.76, 90.14, 91.79, 92.54\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Rank countries by renewable percentage within each year (highest percentage = rank 1)\n df_energy['rank'] = df_energy.groupby('Year')['renewable_percentage'].rank(\n method='dense', \n ascending=False\n )\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage', 'rank']].copy()\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Calculate **total_energy** for each country-year by summing electricity generated from **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n- Compute **renewable_percentage** by dividing **Electricity from renewables (TWh)** by **total_energy** and multiplying by **100**\n- Replace any infinite values in **renewable_percentage** with NaN to handle cases where total energy is zero\n- Assign a **rank** to each country within each **Year** based on **renewable_percentage**, where rank **1** represents the highest renewable percentage (using dense ranking method)\n- Return a dataset containing **Year**, **Entity** (country name), **renewable_percentage**, and **rank**\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"renewable_percentage\",\n \"explanation\": \"The proportion of a country's total electricity generation that comes from renewable sources, expressed as a percentage. Calculated as: \\\\[ \\\\text{renewable\\\\_percentage} = \\\\frac{\\\\text{Electricity from renewables (TWh)}}{\\\\text{total\\\\_energy}} \\\\times 100 \\\\]\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-97","displayId":"renewable-elec","names":["Electricity from renewables (TWh)","Entity","Year"],"rows":[{"Electricity from renewables (TWh)":17.11,"Entity":"Australia","Year":"2000"},{"Electricity from renewables (TWh)":63.99,"Entity":"Australia","Year":"2020"},{"Electricity from renewables (TWh)":308.77,"Entity":"Brazil","Year":"2000"},{"Electricity from renewables (TWh)":520.01,"Entity":"Brazil","Year":"2020"},{"Electricity from renewables (TWh)":363.7,"Entity":"Canada","Year":"2000"},{"Electricity from renewables (TWh)":429.24,"Entity":"Canada","Year":"2020"},{"Electricity from renewables (TWh)":225.56,"Entity":"China","Year":"2000"},{"Electricity from renewables (TWh)":2184.94,"Entity":"China","Year":"2020"},{"Electricity from renewables (TWh)":67.83,"Entity":"France","Year":"2000"},{"Electricity from renewables (TWh)":125.28,"Entity":"France","Year":"2020"},{"Electricity from renewables (TWh)":35.47,"Entity":"Germany","Year":"2000"},{"Electricity from renewables (TWh)":251.48,"Entity":"Germany","Year":"2020"},{"Electricity from renewables (TWh)":80.27,"Entity":"India","Year":"2000"},{"Electricity from renewables (TWh)":315.76,"Entity":"India","Year":"2020"},{"Electricity from renewables (TWh)":19.6,"Entity":"Indonesia","Year":"2000"},{"Electricity from renewables (TWh)":52.91,"Entity":"Indonesia","Year":"2020"},{"Electricity from renewables (TWh)":50.87,"Entity":"Italy","Year":"2000"},{"Electricity from renewables (TWh)":116.9,"Entity":"Italy","Year":"2020"},{"Electricity from renewables (TWh)":104.16,"Entity":"Japan","Year":"2000"},{"Electricity from renewables (TWh)":205.6,"Entity":"Japan","Year":"2020"},{"Electricity from renewables (TWh)":7.53,"Entity":"Kazakhstan","Year":"2000"},{"Electricity from renewables (TWh)":11.94,"Entity":"Kazakhstan","Year":"2020"},{"Electricity from renewables (TWh)":44.51,"Entity":"Mexico","Year":"2000"},{"Electricity from renewables (TWh)":69.19,"Entity":"Mexico","Year":"2020"},{"Electricity from renewables (TWh)":2.33,"Entity":"Poland","Year":"2000"},{"Electricity from renewables (TWh)":28.23,"Entity":"Poland","Year":"2020"},{"Electricity from renewables (TWh)":0,"Entity":"Saudi Arabia","Year":"2000"},{"Electricity from renewables (TWh)":0.21,"Entity":"Saudi Arabia","Year":"2020"},{"Electricity from renewables (TWh)":1.79,"Entity":"South Africa","Year":"2000"},{"Electricity from renewables (TWh)":12.83,"Entity":"South Africa","Year":"2020"},{"Electricity from renewables (TWh)":34.49,"Entity":"Spain","Year":"2000"},{"Electricity from renewables (TWh)":113.79,"Entity":"Spain","Year":"2020"},{"Electricity from renewables (TWh)":6.38,"Entity":"Thailand","Year":"2000"},{"Electricity from renewables (TWh)":24.73,"Entity":"Thailand","Year":"2020"},{"Electricity from renewables (TWh)":11.28,"Entity":"Ukraine","Year":"2000"},{"Electricity from renewables (TWh)":17.56,"Entity":"Ukraine","Year":"2020"},{"Electricity from renewables (TWh)":9.98,"Entity":"United Kingdom","Year":"2000"},{"Electricity from renewables (TWh)":131.74,"Entity":"United Kingdom","Year":"2020"},{"Electricity from renewables (TWh)":350.93,"Entity":"United States","Year":"2000"},{"Electricity from renewables (TWh)":821.4,"Entity":"United States","Year":"2020"}],"metadata":{"Electricity from renewables (TWh)":{"type":"number","semanticType":"Number"},"Entity":{"type":"string","semanticType":"Location"},"Year":{"type":"number","semanticType":"Year"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n","source":["global-energy-20-small.csv"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 61.99, 62.21, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"compare each countries renewable between 2000 and 2020\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Energy\",\n \"color\": \"Year\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Compare renewable energy (Electricity from renewables) for each country between the years 2000 and 2020. Filter the data to include only years 2000 and 2020, and prepare the output with country names, year, and renewable energy values for visualization as a grouped bar chart.\",\n \"display_instruction\": \"Compare **renewable energy** by **country** between **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Electricity from renewables (TWh)\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to compare renewable energy across countries between 2000 and 2020. The output field 'Renewable Energy' mentioned in the original chart_encodings maps to 'Electricity from renewables (TWh)' in the dataset. To create a grouped bar chart comparing these two years, we need to filter the data to only include years 2000 and 2020, and output the Entity (country), Year, and the renewable energy values. The chart_encodings are updated to use the actual column name from the dataset.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"global-energy-20-small.csv","sourceTableIds":["global-energy-20-small.csv"],"instruction":"compare each countries renewable between 2000 and 2020","displayInstruction":"Compare **renewable energy** by **country** between **2000** and **2020**","chart":{"id":"chart-1760738769634","chartType":"Grouped Bar Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Entity"},"y":{"fieldID":"concept-1760738743125"},"color":{"channel":"color","bin":false,"fieldID":"original--global-energy-20-small.csv--Year"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"global-energy-20-small.csv","saved":false,"source":"trigger","unread":false},"resultTableId":"table-97"},"explanation":{"agent":"CodeExplanationAgent","code":"The code performs a straightforward comparison analysis of renewable energy generation across countries:\n\n- **Filters** the dataset to include only data from years **2000** and **2020**, creating a 20-year comparison window\n- **Selects** three key columns: `Entity` (country name), `Year`, and `Electricity from renewables (TWh)` (renewable energy generation)\n- **Converts** the `Year` field to string format to treat it as a categorical variable for visualization purposes\n- **Sorts** the results by `Entity` and `Year` to organize countries alphabetically with their respective year data grouped together\n- **Returns** a cleaned dataset showing how renewable electricity generation has changed for each country between 2000 and 2020","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 10006669.92, 10502929.69, 10707219.73, nan\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 56.18, 61.99, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThe code performs a straightforward comparison analysis of renewable energy generation across countries:\n\n- **Filters** the dataset to include only data from years **2000** and **2020**, creating a 20-year comparison window\n- **Selects** three key columns: `Entity` (country name), `Year`, and `Electricity from renewables (TWh)` (renewable energy generation)\n- **Converts** the `Year` field to string format to treat it as a categorical variable for visualization purposes\n- **Sorts** the results by `Entity` and `Year` to organize countries alphabetically with their respective year data grouped together\n- **Returns** a cleaned dataset showing how renewable electricity generation has changed for each country between 2000 and 2020\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-27","displayId":"renewable-energy1","names":["Entity","Renewable Percentage","Year"],"rows":[{"Entity":"Australia","Renewable Percentage":8.6344368187,"Year":"2000"},{"Entity":"Australia","Renewable Percentage":25.5031684668,"Year":"2020"},{"Entity":"Brazil","Renewable Percentage":90.1307723743,"Year":"2000"},{"Entity":"Brazil","Renewable Percentage":84.6411771408,"Year":"2020"},{"Entity":"Canada","Renewable Percentage":61.8095917882,"Year":"2000"},{"Entity":"Canada","Renewable Percentage":68.7796436354,"Year":"2020"},{"Entity":"China","Renewable Percentage":16.639126586,"Year":"2000"},{"Entity":"China","Renewable Percentage":28.2464606924,"Year":"2020"},{"Entity":"France","Renewable Percentage":12.7117691154,"Year":"2000"},{"Entity":"France","Renewable Percentage":23.7610241821,"Year":"2020"},{"Entity":"Germany","Renewable Percentage":6.1977983575,"Year":"2000"},{"Entity":"Germany","Renewable Percentage":44.3324048937,"Year":"2020"},{"Entity":"Global Average","Renewable Percentage":16.4213212559,"Year":"2000"},{"Entity":"Global Average","Renewable Percentage":29.2955247263,"Year":"2020"},{"Entity":"India","Renewable Percentage":14.0481982534,"Year":"2000"},{"Entity":"India","Renewable Percentage":20.2059243238,"Year":"2020"},{"Entity":"Indonesia","Renewable Percentage":null,"Year":"2000"},{"Entity":"Indonesia","Renewable Percentage":null,"Year":"2020"},{"Entity":"Italy","Renewable Percentage":18.900241501,"Year":"2000"},{"Entity":"Italy","Renewable Percentage":42.0397741576,"Year":"2020"},{"Entity":"Japan","Renewable Percentage":10.5382436261,"Year":"2000"},{"Entity":"Japan","Renewable Percentage":21.324925062,"Year":"2020"},{"Entity":"Kazakhstan","Renewable Percentage":null,"Year":"2000"},{"Entity":"Kazakhstan","Renewable Percentage":null,"Year":"2020"},{"Entity":"Mexico","Renewable Percentage":22.9291160107,"Year":"2000"},{"Entity":"Mexico","Renewable Percentage":21.2552224134,"Year":"2020"},{"Entity":"Poland","Renewable Percentage":1.6273222517,"Year":"2000"},{"Entity":"Poland","Renewable Percentage":17.9648720886,"Year":"2020"},{"Entity":"Saudi Arabia","Renewable Percentage":null,"Year":"2000"},{"Entity":"Saudi Arabia","Renewable Percentage":null,"Year":"2020"},{"Entity":"South Africa","Renewable Percentage":0.9110805721,"Year":"2000"},{"Entity":"South Africa","Renewable Percentage":5.780581212,"Year":"2020"},{"Entity":"Spain","Renewable Percentage":15.6119862394,"Year":"2000"},{"Entity":"Spain","Renewable Percentage":43.8108805298,"Year":"2020"},{"Entity":"Thailand","Renewable Percentage":7.1261029822,"Year":"2000"},{"Entity":"Thailand","Renewable Percentage":13.7963737796,"Year":"2020"},{"Entity":"Ukraine","Renewable Percentage":6.5860921352,"Year":"2000"},{"Entity":"Ukraine","Renewable Percentage":11.8440577364,"Year":"2020"},{"Entity":"United Kingdom","Renewable Percentage":2.6657406913,"Year":"2000"},{"Entity":"United Kingdom","Renewable Percentage":42.8603962651,"Year":"2020"},{"Entity":"United States","Renewable Percentage":9.2298992662,"Year":"2000"},{"Entity":"United States","Renewable Percentage":20.3156921037,"Year":"2020"}],"metadata":{"Entity":{"type":"string","semanticType":"Name"},"Renewable Percentage":{"type":"number","semanticType":"Percentage"},"Year":{"type":"number","semanticType":"Year"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n","source":["global-energy-20-small.csv"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 61.99, 62.21, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"compare each countries renewable between 2000 and 2020\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Energy\",\n \"color\": \"Year\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Compare renewable energy (Electricity from renewables) for each country between the years 2000 and 2020. Filter the data to include only years 2000 and 2020, and prepare the output with country names, year, and renewable energy values for visualization as a grouped bar chart.\",\n \"display_instruction\": \"Compare **renewable energy** by **country** between **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Electricity from renewables (TWh)\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to compare renewable energy across countries between 2000 and 2020. The output field 'Renewable Energy' mentioned in the original chart_encodings maps to 'Electricity from renewables (TWh)' in the dataset. To create a grouped bar chart comparing these two years, we need to filter the data to only include years 2000 and 2020, and output the Entity (country), Year, and the renewable energy values. The chart_encodings are updated to use the actual column name from the dataset.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Electricity from renewables (TWh) Entity Year\n0 17.11 Australia 2000\n1 63.99 Australia 2020\n2 308.77 Brazil 2000\n3 520.01 Brazil 2020\n4 363.70 Canada 2000\n5 429.24 Canada 2020\n6 225.56 China 2000\n7 2184.94 China 2020\n8 67.83 France 2000\n9 125.28 France 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show their renewable percentage instead, and add an entity to show global average\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage (proportion of renewables to total electricity generation from all sources) for each country between 2000 and 2020. Add a 'Global Average' entity that represents the worldwide average renewable percentage for each year. The output should include Entity (with 'Global Average' added), Year, and the renewable percentage.\",\n \"display_instruction\": \"Show **renewable energy percentage** by **country** with **global average** for **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Renewable Percentage\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Percentage\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to see renewable percentage instead of absolute values, and wants to add a global average entity for comparison. Renewable percentage is calculated as the ratio of renewable energy to total electricity generation (fossil fuels + nuclear + renewables). A 'Global Average' entity needs to be computed by aggregating all countries' data for each year. The y-axis encoding is updated to reflect the new metric 'Renewable Percentage'.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-97","sourceTableIds":["global-energy-20-small.csv"],"instruction":"show their renewable percentage instead, and add an entity to show global average","displayInstruction":"Show **renewable energy percentage** by **country** with **global average** for **2000** and **2020**","chart":{"id":"chart-1760738813383","chartType":"Grouped Bar Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Entity"},"y":{"fieldID":"original--global-energy-20-small.csv--Electricity from renewables (TWh)"},"color":{"fieldID":"original--global-energy-20-small.csv--Year"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-97","saved":false,"source":"trigger","unread":false},"resultTableId":"table-27"},"explanation":{"agent":"CodeExplanationAgent","code":"The code performs the following transformation steps:\n\n1. **Filter data** to include only records from **2000** and **2020**\n2. Calculate **Total Electricity** generation by summing three sources: **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n3. Compute **Renewable Percentage** for each country and year by dividing **Electricity from renewables** by **Total Electricity** and multiplying by 100\n4. Extract relevant columns: **Entity** (country name), **Year**, and **Renewable Percentage**\n5. Calculate **Global Average** renewable percentage for each year by:\n - Summing all countries' **renewable electricity** generation\n - Dividing by the sum of all countries' **total electricity** generation\n - Multiplying by 100 to get percentage\n6. Combine individual country data with the **Global Average** statistics\n7. Convert **Year** values to string format\n8. Sort results by **Entity** name and **Year**","concepts":[{"explanation":"The sum of electricity generated from all three sources (fossil fuels, nuclear, and renewables) measured in terawatt-hours (TWh). This represents the total electricity production capacity for each country.","field":"Total Electricity"},{"explanation":"The proportion of electricity generated from renewable sources relative to total electricity production, expressed as a percentage: \\( \\text{Renewable Percentage} = \\frac{\\text{Electricity from renewables}}{\\text{Total Electricity}} \\times 100 \\). This metric indicates the extent of renewable energy adoption in a country's electricity mix.","field":"Renewable Percentage"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 10096009.77, 10502929.69, 10707219.73, nan\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., nan, nan, nan, nan\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThe code performs the following transformation steps:\n\n1. **Filter data** to include only records from **2000** and **2020**\n2. Calculate **Total Electricity** generation by summing three sources: **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n3. Compute **Renewable Percentage** for each country and year by dividing **Electricity from renewables** by **Total Electricity** and multiplying by 100\n4. Extract relevant columns: **Entity** (country name), **Year**, and **Renewable Percentage**\n5. Calculate **Global Average** renewable percentage for each year by:\n - Summing all countries' **renewable electricity** generation\n - Dividing by the sum of all countries' **total electricity** generation\n - Multiplying by 100 to get percentage\n6. Combine individual country data with the **Global Average** statistics\n7. Convert **Year** values to string format\n8. Sort results by **Entity** name and **Year**\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Total Electricity\",\n \"explanation\": \"The sum of electricity generated from all three sources (fossil fuels, nuclear, and renewables) measured in terawatt-hours (TWh). This represents the total electricity production capacity for each country.\"\n },\n {\n \"field\": \"Renewable Percentage\",\n \"explanation\": \"The proportion of electricity generated from renewable sources relative to total electricity production, expressed as a percentage: \\\\( \\\\text{Renewable Percentage} = \\\\frac{\\\\text{Electricity from renewables}}{\\\\text{Total Electricity}} \\\\times 100 \\\\). This metric indicates the extent of renewable energy adoption in a country's electricity mix.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-81","displayId":"energy-source1","names":["Energy","Energy Source","Year"],"rows":[{"Energy":7160.71,"Energy Source":"Fossil Fuels","Year":2000},{"Energy":1996.65,"Energy Source":"Nuclear","Year":2000},{"Energy":1742.56,"Energy Source":"Renewables","Year":2000},{"Energy":7273.89,"Energy Source":"Fossil Fuels","Year":2001},{"Energy":2037.54,"Energy Source":"Nuclear","Year":2001},{"Energy":1690.11,"Energy Source":"Renewables","Year":2001},{"Energy":7621.07,"Energy Source":"Fossil Fuels","Year":2002},{"Energy":2042.18,"Energy Source":"Nuclear","Year":2002},{"Energy":1757.63,"Energy Source":"Renewables","Year":2002},{"Energy":8043.86,"Energy Source":"Fossil Fuels","Year":2003},{"Energy":1998.52,"Energy Source":"Nuclear","Year":2003},{"Energy":1804.52,"Energy Source":"Renewables","Year":2003},{"Energy":8399.72,"Energy Source":"Fossil Fuels","Year":2004},{"Energy":2095,"Energy Source":"Nuclear","Year":2004},{"Energy":1952.72,"Energy Source":"Renewables","Year":2004},{"Energy":8828.43,"Energy Source":"Fossil Fuels","Year":2005},{"Energy":2094.4,"Energy Source":"Nuclear","Year":2005},{"Energy":2025.26,"Energy Source":"Renewables","Year":2005},{"Energy":9183.05,"Energy Source":"Fossil Fuels","Year":2006},{"Energy":2120.38,"Energy Source":"Nuclear","Year":2006},{"Energy":2165.94,"Energy Source":"Renewables","Year":2006},{"Energy":9853.09,"Energy Source":"Fossil Fuels","Year":2007},{"Energy":2067.04,"Energy Source":"Nuclear","Year":2007},{"Energy":2256.79,"Energy Source":"Renewables","Year":2007},{"Energy":9817.15,"Energy Source":"Fossil Fuels","Year":2008},{"Energy":2043.94,"Energy Source":"Nuclear","Year":2008},{"Energy":2496.03,"Energy Source":"Renewables","Year":2008},{"Energy":9686.86,"Energy Source":"Fossil Fuels","Year":2009},{"Energy":2017.25,"Energy Source":"Nuclear","Year":2009},{"Energy":2563.95,"Energy Source":"Renewables","Year":2009},{"Energy":10427.03,"Energy Source":"Fossil Fuels","Year":2010},{"Energy":2083.37,"Energy Source":"Nuclear","Year":2010},{"Energy":2802.89,"Energy Source":"Renewables","Year":2010},{"Energy":10974.83,"Energy Source":"Fossil Fuels","Year":2011},{"Energy":1956,"Energy Source":"Nuclear","Year":2011},{"Energy":2997.29,"Energy Source":"Renewables","Year":2011},{"Energy":11277.49,"Energy Source":"Fossil Fuels","Year":2012},{"Energy":1788.26,"Energy Source":"Nuclear","Year":2012},{"Energy":3226.1,"Energy Source":"Renewables","Year":2012},{"Energy":11561.86,"Energy Source":"Fossil Fuels","Year":2013},{"Energy":1813,"Energy Source":"Nuclear","Year":2013},{"Energy":3473.9,"Energy Source":"Renewables","Year":2013},{"Energy":11761.51,"Energy Source":"Fossil Fuels","Year":2014},{"Energy":1847.87,"Energy Source":"Nuclear","Year":2014},{"Energy":3753.03,"Energy Source":"Renewables","Year":2014},{"Energy":11653.61,"Energy Source":"Fossil Fuels","Year":2015},{"Energy":1886.61,"Energy Source":"Nuclear","Year":2015},{"Energy":3903.7,"Energy Source":"Renewables","Year":2015},{"Energy":11785.35,"Energy Source":"Fossil Fuels","Year":2016},{"Energy":1906.92,"Energy Source":"Nuclear","Year":2016},{"Energy":4186.83,"Energy Source":"Renewables","Year":2016},{"Energy":12003.24,"Energy Source":"Fossil Fuels","Year":2017},{"Energy":1942.94,"Energy Source":"Nuclear","Year":2017},{"Energy":4500.22,"Energy Source":"Renewables","Year":2017},{"Energy":12445.24,"Energy Source":"Fossil Fuels","Year":2018},{"Energy":2016.82,"Energy Source":"Nuclear","Year":2018},{"Energy":4834.65,"Energy Source":"Renewables","Year":2018},{"Energy":12355.91,"Energy Source":"Fossil Fuels","Year":2019},{"Energy":2073.87,"Energy Source":"Nuclear","Year":2019},{"Energy":5146.11,"Energy Source":"Renewables","Year":2019},{"Energy":12032.75,"Energy Source":"Fossil Fuels","Year":2020},{"Energy":1974.46,"Energy Source":"Nuclear","Year":2020},{"Energy":5497.73,"Energy Source":"Renewables","Year":2020}],"metadata":{"Energy":{"type":"number","semanticType":"Number"},"Energy Source":{"type":"string","semanticType":"String","levels":["Fossil Fuels","Nuclear","Renewables"]},"Year":{"type":"number","semanticType":"Year"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Group by Year and sum electricity generation from all countries\n global_energy = df_energy.groupby('Year').agg({\n 'Electricity from fossil fuels (TWh)': 'sum',\n 'Electricity from nuclear (TWh)': 'sum',\n 'Electricity from renewables (TWh)': 'sum'\n }).reset_index()\n \n # Rename columns for clarity\n global_energy.columns = ['Year', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n global_energy,\n id_vars=['Year'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Year and Energy Source\n transformed_df = transformed_df.sort_values(['Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n","source":["global-energy-20-small.csv"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 61.99, 62.21, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"compare each countries renewable between 2000 and 2020\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Energy\",\n \"color\": \"Year\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Compare renewable energy (Electricity from renewables) for each country between the years 2000 and 2020. Filter the data to include only years 2000 and 2020, and prepare the output with country names, year, and renewable energy values for visualization as a grouped bar chart.\",\n \"display_instruction\": \"Compare **renewable energy** by **country** between **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Electricity from renewables (TWh)\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to compare renewable energy across countries between 2000 and 2020. The output field 'Renewable Energy' mentioned in the original chart_encodings maps to 'Electricity from renewables (TWh)' in the dataset. To create a grouped bar chart comparing these two years, we need to filter the data to only include years 2000 and 2020, and output the Entity (country), Year, and the renewable energy values. The chart_encodings are updated to use the actual column name from the dataset.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Electricity from renewables (TWh) Entity Year\n0 17.11 Australia 2000\n1 63.99 Australia 2020\n2 308.77 Brazil 2000\n3 520.01 Brazil 2020\n4 363.70 Canada 2000\n5 429.24 Canada 2020\n6 225.56 China 2000\n7 2184.94 China 2020\n8 67.83 France 2000\n9 125.28 France 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show their renewable percentage instead, and add an entity to show global average\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage (proportion of renewables to total electricity generation from all sources) for each country between 2000 and 2020. Add a 'Global Average' entity that represents the worldwide average renewable percentage for each year. The output should include Entity (with 'Global Average' added), Year, and the renewable percentage.\",\n \"display_instruction\": \"Show **renewable energy percentage** by **country** with **global average** for **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Renewable Percentage\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Percentage\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to see renewable percentage instead of absolute values, and wants to add a global average entity for comparison. Renewable percentage is calculated as the ratio of renewable energy to total electricity generation (fossil fuels + nuclear + renewables). A 'Global Average' entity needs to be computed by aggregating all countries' data for each year. The y-axis encoding is updated to reflect the new metric 'Renewable Percentage'.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Entity Renewable Percentage Year\n0 Australia 8.634437 2000\n1 Australia 25.503168 2020\n2 Brazil 90.130772 2000\n3 Brazil 84.641177 2020\n4 Canada 61.809592 2000\n5 Canada 68.779644 2020\n6 China 16.639127 2000\n7 China 28.246461 2020\n8 France 12.711769 2000\n9 France 23.761024 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show global energy composition over time\",\n \"chart_type\": \"Custom Area\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Show the global energy composition over time by aggregating electricity generation from all countries for each year, broken down by energy source (fossil fuels, nuclear, and renewables). The output should be in long format with Year, Energy Source, and Energy values to support a stacked area chart visualization.\",\n \"display_instruction\": \"Show global **energy composition** by **energy source** over time\",\n \"output_fields\": [\"Year\", \"Energy Source\", \"Energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n },\n \"reason\": \"The user wants to visualize global energy composition over time, which requires aggregating electricity generation data across all countries for each year and breaking it down by energy source type. The data needs to be transformed into long format where each row represents a year-energy source combination, with the total energy value for that source globally. This follows up from the previous renewable percentage analysis by showing the overall energy mix trends rather than focusing on specific countries or percentages.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Group by Year and sum electricity generation from all countries\n global_energy = df_energy.groupby('Year').agg({\n 'Electricity from fossil fuels (TWh)': 'sum',\n 'Electricity from nuclear (TWh)': 'sum',\n 'Electricity from renewables (TWh)': 'sum'\n }).reset_index()\n \n # Rename columns for clarity\n global_energy.columns = ['Year', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n global_energy,\n id_vars=['Year'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Year and Energy Source\n transformed_df = transformed_df.sort_values(['Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-27","sourceTableIds":["global-energy-20-small.csv"],"instruction":"show global energy composition over time","displayInstruction":"Show global **energy composition** by **energy source** over time","chart":{"id":"chart-1760738942326","chartType":"Custom Area","encodingMap":{"x":{"channel":"x","bin":false,"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"channel":"y","bin":false,"fieldID":"concept-1760738917347"},"x2":{"channel":"x2","bin":false},"y2":{"channel":"y2","bin":false},"color":{"channel":"color","bin":false,"fieldID":"concept-1760738921927"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-27","saved":false,"source":"trigger","unread":false},"resultTableId":"table-81"},"explanation":{"agent":"CodeExplanationAgent","code":"- Group the energy data by **Year** and aggregate electricity generation values across all countries by summing **Electricity from fossil fuels (TWh)**, **Electricity from nuclear (TWh)**, and **Electricity from renewables (TWh)**\n- Rename the aggregated columns to simplified labels: **Fossil Fuels**, **Nuclear**, and **Renewables**\n- Transform the data from wide format to long format by unpivoting the three energy source columns into two columns: **Energy Source** (containing the type of energy) and **Energy** (containing the generation value in TWh)\n- Sort the resulting dataset by **Year** and **Energy Source** for consistent ordering","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 158029.9988, 190729.9957, 209229.9957, ..., nan, 4956060.059, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., nan, nan, nan, nan\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Group by Year and sum electricity generation from all countries\n global_energy = df_energy.groupby('Year').agg({\n 'Electricity from fossil fuels (TWh)': 'sum',\n 'Electricity from nuclear (TWh)': 'sum',\n 'Electricity from renewables (TWh)': 'sum'\n }).reset_index()\n \n # Rename columns for clarity\n global_energy.columns = ['Year', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n global_energy,\n id_vars=['Year'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Year and Energy Source\n transformed_df = transformed_df.sort_values(['Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Group the energy data by **Year** and aggregate electricity generation values across all countries by summing **Electricity from fossil fuels (TWh)**, **Electricity from nuclear (TWh)**, and **Electricity from renewables (TWh)**\n- Rename the aggregated columns to simplified labels: **Fossil Fuels**, **Nuclear**, and **Renewables**\n- Transform the data from wide format to long format by unpivoting the three energy source columns into two columns: **Energy Source** (containing the type of energy) and **Energy** (containing the generation value in TWh)\n- Sort the resulting dataset by **Year** and **Energy Source** for consistent ordering\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-10","displayId":"energy-source2","names":["Energy","Energy Source","Entity","Year"],"rows":[{"Energy":1113.3,"Energy Source":"Fossil Fuels","Entity":"China","Year":2000},{"Energy":16.74,"Energy Source":"Nuclear","Entity":"China","Year":2000},{"Energy":225.56,"Energy Source":"Renewables","Entity":"China","Year":2000},{"Energy":1182.59,"Energy Source":"Fossil Fuels","Entity":"China","Year":2001},{"Energy":17.47,"Energy Source":"Nuclear","Entity":"China","Year":2001},{"Energy":280.73,"Energy Source":"Renewables","Entity":"China","Year":2001},{"Energy":1337.46,"Energy Source":"Fossil Fuels","Entity":"China","Year":2002},{"Energy":25.13,"Energy Source":"Nuclear","Entity":"China","Year":2002},{"Energy":291.41,"Energy Source":"Renewables","Entity":"China","Year":2002},{"Energy":1579.96,"Energy Source":"Fossil Fuels","Entity":"China","Year":2003},{"Energy":43.34,"Energy Source":"Nuclear","Entity":"China","Year":2003},{"Energy":287.28,"Energy Source":"Renewables","Entity":"China","Year":2003},{"Energy":1795.41,"Energy Source":"Fossil Fuels","Entity":"China","Year":2004},{"Energy":50.47,"Energy Source":"Nuclear","Entity":"China","Year":2004},{"Energy":357.43,"Energy Source":"Renewables","Entity":"China","Year":2004},{"Energy":2042.8,"Energy Source":"Fossil Fuels","Entity":"China","Year":2005},{"Energy":53.09,"Energy Source":"Nuclear","Entity":"China","Year":2005},{"Energy":404.37,"Energy Source":"Renewables","Entity":"China","Year":2005},{"Energy":2364.16,"Energy Source":"Fossil Fuels","Entity":"China","Year":2006},{"Energy":54.84,"Energy Source":"Nuclear","Entity":"China","Year":2006},{"Energy":446.72,"Energy Source":"Renewables","Entity":"China","Year":2006},{"Energy":2718.7,"Energy Source":"Fossil Fuels","Entity":"China","Year":2007},{"Energy":62.13,"Energy Source":"Nuclear","Entity":"China","Year":2007},{"Energy":500.71,"Energy Source":"Renewables","Entity":"China","Year":2007},{"Energy":2762.29,"Energy Source":"Fossil Fuels","Entity":"China","Year":2008},{"Energy":68.39,"Energy Source":"Nuclear","Entity":"China","Year":2008},{"Energy":665.08,"Energy Source":"Renewables","Entity":"China","Year":2008},{"Energy":2980.2,"Energy Source":"Fossil Fuels","Entity":"China","Year":2009},{"Energy":70.05,"Energy Source":"Nuclear","Entity":"China","Year":2009},{"Energy":664.39,"Energy Source":"Renewables","Entity":"China","Year":2009},{"Energy":3326.19,"Energy Source":"Fossil Fuels","Entity":"China","Year":2010},{"Energy":74.74,"Energy Source":"Nuclear","Entity":"China","Year":2010},{"Energy":786.38,"Energy Source":"Renewables","Entity":"China","Year":2010},{"Energy":3811.77,"Energy Source":"Fossil Fuels","Entity":"China","Year":2011},{"Energy":87.2,"Energy Source":"Nuclear","Entity":"China","Year":2011},{"Energy":792.38,"Energy Source":"Renewables","Entity":"China","Year":2011},{"Energy":3869.38,"Energy Source":"Fossil Fuels","Entity":"China","Year":2012},{"Energy":98.32,"Energy Source":"Nuclear","Entity":"China","Year":2012},{"Energy":999.56,"Energy Source":"Renewables","Entity":"China","Year":2012},{"Energy":4203.77,"Energy Source":"Fossil Fuels","Entity":"China","Year":2013},{"Energy":111.5,"Energy Source":"Nuclear","Entity":"China","Year":2013},{"Energy":1093.37,"Energy Source":"Renewables","Entity":"China","Year":2013},{"Energy":4345.86,"Energy Source":"Fossil Fuels","Entity":"China","Year":2014},{"Energy":133.22,"Energy Source":"Nuclear","Entity":"China","Year":2014},{"Energy":1289.23,"Energy Source":"Renewables","Entity":"China","Year":2014},{"Energy":4222.76,"Energy Source":"Fossil Fuels","Entity":"China","Year":2015},{"Energy":171.38,"Energy Source":"Nuclear","Entity":"China","Year":2015},{"Energy":1393.66,"Energy Source":"Renewables","Entity":"China","Year":2015},{"Energy":4355,"Energy Source":"Fossil Fuels","Entity":"China","Year":2016},{"Energy":213.18,"Energy Source":"Nuclear","Entity":"China","Year":2016},{"Energy":1522.79,"Energy Source":"Renewables","Entity":"China","Year":2016},{"Energy":4643.1,"Energy Source":"Fossil Fuels","Entity":"China","Year":2017},{"Energy":248.1,"Energy Source":"Nuclear","Entity":"China","Year":2017},{"Energy":1667.06,"Energy Source":"Renewables","Entity":"China","Year":2017},{"Energy":4990.28,"Energy Source":"Fossil Fuels","Entity":"China","Year":2018},{"Energy":295,"Energy Source":"Nuclear","Entity":"China","Year":2018},{"Energy":1835.32,"Energy Source":"Renewables","Entity":"China","Year":2018},{"Energy":5098.22,"Energy Source":"Fossil Fuels","Entity":"China","Year":2019},{"Energy":348.7,"Energy Source":"Nuclear","Entity":"China","Year":2019},{"Energy":2014.57,"Energy Source":"Renewables","Entity":"China","Year":2019},{"Energy":5184.13,"Energy Source":"Fossil Fuels","Entity":"China","Year":2020},{"Energy":366.2,"Energy Source":"Nuclear","Entity":"China","Year":2020},{"Energy":2184.94,"Energy Source":"Renewables","Entity":"China","Year":2020},{"Energy":475.35,"Energy Source":"Fossil Fuels","Entity":"India","Year":2000},{"Energy":15.77,"Energy Source":"Nuclear","Entity":"India","Year":2000},{"Energy":80.27,"Energy Source":"Renewables","Entity":"India","Year":2000},{"Energy":491.01,"Energy Source":"Fossil Fuels","Entity":"India","Year":2001},{"Energy":18.89,"Energy Source":"Nuclear","Entity":"India","Year":2001},{"Energy":76.19,"Energy Source":"Renewables","Entity":"India","Year":2001},{"Energy":517.51,"Energy Source":"Fossil Fuels","Entity":"India","Year":2002},{"Energy":19.35,"Energy Source":"Nuclear","Entity":"India","Year":2002},{"Energy":72.78,"Energy Source":"Renewables","Entity":"India","Year":2002},{"Energy":545.36,"Energy Source":"Fossil Fuels","Entity":"India","Year":2003},{"Energy":18.14,"Energy Source":"Nuclear","Entity":"India","Year":2003},{"Energy":74.63,"Energy Source":"Renewables","Entity":"India","Year":2003},{"Energy":567.86,"Energy Source":"Fossil Fuels","Entity":"India","Year":2004},{"Energy":21.26,"Energy Source":"Nuclear","Entity":"India","Year":2004},{"Energy":109.2,"Energy Source":"Renewables","Entity":"India","Year":2004},{"Energy":579.32,"Energy Source":"Fossil Fuels","Entity":"India","Year":2005},{"Energy":17.73,"Energy Source":"Nuclear","Entity":"India","Year":2005},{"Energy":107.47,"Energy Source":"Renewables","Entity":"India","Year":2005},{"Energy":599.24,"Energy Source":"Fossil Fuels","Entity":"India","Year":2006},{"Energy":17.63,"Energy Source":"Nuclear","Entity":"India","Year":2006},{"Energy":127.56,"Energy Source":"Renewables","Entity":"India","Year":2006},{"Energy":636.68,"Energy Source":"Fossil Fuels","Entity":"India","Year":2007},{"Energy":17.83,"Energy Source":"Nuclear","Entity":"India","Year":2007},{"Energy":141.75,"Energy Source":"Renewables","Entity":"India","Year":2007},{"Energy":674.27,"Energy Source":"Fossil Fuels","Entity":"India","Year":2008},{"Energy":15.23,"Energy Source":"Nuclear","Entity":"India","Year":2008},{"Energy":138.91,"Energy Source":"Renewables","Entity":"India","Year":2008},{"Energy":728.56,"Energy Source":"Fossil Fuels","Entity":"India","Year":2009},{"Energy":16.82,"Energy Source":"Nuclear","Entity":"India","Year":2009},{"Energy":134.33,"Energy Source":"Renewables","Entity":"India","Year":2009},{"Energy":771.78,"Energy Source":"Fossil Fuels","Entity":"India","Year":2010},{"Energy":23.08,"Energy Source":"Nuclear","Entity":"India","Year":2010},{"Energy":142.61,"Energy Source":"Renewables","Entity":"India","Year":2010},{"Energy":828.16,"Energy Source":"Fossil Fuels","Entity":"India","Year":2011},{"Energy":32.22,"Energy Source":"Nuclear","Entity":"India","Year":2011},{"Energy":173.62,"Energy Source":"Renewables","Entity":"India","Year":2011},{"Energy":893.45,"Energy Source":"Fossil Fuels","Entity":"India","Year":2012},{"Energy":33.14,"Energy Source":"Nuclear","Entity":"India","Year":2012},{"Energy":165.25,"Energy Source":"Renewables","Entity":"India","Year":2012},{"Energy":924.93,"Energy Source":"Fossil Fuels","Entity":"India","Year":2013},{"Energy":33.31,"Energy Source":"Nuclear","Entity":"India","Year":2013},{"Energy":187.9,"Energy Source":"Renewables","Entity":"India","Year":2013},{"Energy":1025.29,"Energy Source":"Fossil Fuels","Entity":"India","Year":2014},{"Energy":34.69,"Energy Source":"Nuclear","Entity":"India","Year":2014},{"Energy":202.04,"Energy Source":"Renewables","Entity":"India","Year":2014},{"Energy":1080.44,"Energy Source":"Fossil Fuels","Entity":"India","Year":2015},{"Energy":38.31,"Energy Source":"Nuclear","Entity":"India","Year":2015},{"Energy":203.21,"Energy Source":"Renewables","Entity":"India","Year":2015},{"Energy":1155.52,"Energy Source":"Fossil Fuels","Entity":"India","Year":2016},{"Energy":37.9,"Energy Source":"Nuclear","Entity":"India","Year":2016},{"Energy":208.21,"Energy Source":"Renewables","Entity":"India","Year":2016},{"Energy":1198.85,"Energy Source":"Fossil Fuels","Entity":"India","Year":2017},{"Energy":37.41,"Energy Source":"Nuclear","Entity":"India","Year":2017},{"Energy":234.9,"Energy Source":"Renewables","Entity":"India","Year":2017},{"Energy":1276.32,"Energy Source":"Fossil Fuels","Entity":"India","Year":2018},{"Energy":39.05,"Energy Source":"Nuclear","Entity":"India","Year":2018},{"Energy":263.61,"Energy Source":"Renewables","Entity":"India","Year":2018},{"Energy":1273.59,"Energy Source":"Fossil Fuels","Entity":"India","Year":2019},{"Energy":45.16,"Energy Source":"Nuclear","Entity":"India","Year":2019},{"Energy":303.16,"Energy Source":"Renewables","Entity":"India","Year":2019},{"Energy":1202.34,"Energy Source":"Fossil Fuels","Entity":"India","Year":2020},{"Energy":44.61,"Energy Source":"Nuclear","Entity":"India","Year":2020},{"Energy":315.76,"Energy Source":"Renewables","Entity":"India","Year":2020},{"Energy":2697.28,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2000},{"Energy":753.89,"Energy Source":"Nuclear","Entity":"United States","Year":2000},{"Energy":350.93,"Energy Source":"Renewables","Entity":"United States","Year":2000},{"Energy":2678.68,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2001},{"Energy":768.83,"Energy Source":"Nuclear","Entity":"United States","Year":2001},{"Energy":280.06,"Energy Source":"Renewables","Entity":"United States","Year":2001},{"Energy":2727.83,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2002},{"Energy":780.06,"Energy Source":"Nuclear","Entity":"United States","Year":2002},{"Energy":336.34,"Energy Source":"Renewables","Entity":"United States","Year":2002},{"Energy":2756.03,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2003},{"Energy":763.73,"Energy Source":"Nuclear","Entity":"United States","Year":2003},{"Energy":349.18,"Energy Source":"Renewables","Entity":"United States","Year":2003},{"Energy":2818.28,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2004},{"Energy":788.53,"Energy Source":"Nuclear","Entity":"United States","Year":2004},{"Energy":345.14,"Energy Source":"Renewables","Entity":"United States","Year":2004},{"Energy":2899.96,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2005},{"Energy":781.99,"Energy Source":"Nuclear","Entity":"United States","Year":2005},{"Energy":353.04,"Energy Source":"Renewables","Entity":"United States","Year":2005},{"Energy":2878.56,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2006},{"Energy":787.22,"Energy Source":"Nuclear","Entity":"United States","Year":2006},{"Energy":381.16,"Energy Source":"Renewables","Entity":"United States","Year":2006},{"Energy":2988.24,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2007},{"Energy":806.42,"Energy Source":"Nuclear","Entity":"United States","Year":2007},{"Energy":347.91,"Energy Source":"Renewables","Entity":"United States","Year":2007},{"Energy":2924.21,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2008},{"Energy":806.21,"Energy Source":"Nuclear","Entity":"United States","Year":2008},{"Energy":377.11,"Energy Source":"Renewables","Entity":"United States","Year":2008},{"Energy":2725.41,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2009},{"Energy":798.85,"Energy Source":"Nuclear","Entity":"United States","Year":2009},{"Energy":415.56,"Energy Source":"Renewables","Entity":"United States","Year":2009},{"Energy":2882.49,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2010},{"Energy":806.97,"Energy Source":"Nuclear","Entity":"United States","Year":2010},{"Energy":424.48,"Energy Source":"Renewables","Entity":"United States","Year":2010},{"Energy":2788.93,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2011},{"Energy":790.2,"Energy Source":"Nuclear","Entity":"United States","Year":2011},{"Energy":509.74,"Energy Source":"Renewables","Entity":"United States","Year":2011},{"Energy":2779.02,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2012},{"Energy":769.33,"Energy Source":"Nuclear","Entity":"United States","Year":2012},{"Energy":492.32,"Energy Source":"Renewables","Entity":"United States","Year":2012},{"Energy":2746.21,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2013},{"Energy":789.02,"Energy Source":"Nuclear","Entity":"United States","Year":2013},{"Energy":520.38,"Energy Source":"Renewables","Entity":"United States","Year":2013},{"Energy":2752.01,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2014},{"Energy":797.17,"Energy Source":"Nuclear","Entity":"United States","Year":2014},{"Energy":546.83,"Energy Source":"Renewables","Entity":"United States","Year":2014},{"Energy":2730.32,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2015},{"Energy":797.18,"Energy Source":"Nuclear","Entity":"United States","Year":2015},{"Energy":556.49,"Energy Source":"Renewables","Entity":"United States","Year":2015},{"Energy":2656.96,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2016},{"Energy":805.69,"Energy Source":"Nuclear","Entity":"United States","Year":2016},{"Energy":624.91,"Energy Source":"Renewables","Entity":"United States","Year":2016},{"Energy":2540.17,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2017},{"Energy":804.95,"Energy Source":"Nuclear","Entity":"United States","Year":2017},{"Energy":707.19,"Energy Source":"Renewables","Entity":"United States","Year":2017},{"Energy":2661.3,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2018},{"Energy":807.08,"Energy Source":"Nuclear","Entity":"United States","Year":2018},{"Energy":733.17,"Energy Source":"Renewables","Entity":"United States","Year":2018},{"Energy":2588.21,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2019},{"Energy":809.41,"Energy Source":"Nuclear","Entity":"United States","Year":2019},{"Energy":760.76,"Energy Source":"Renewables","Entity":"United States","Year":2019},{"Energy":2431.9,"Energy Source":"Fossil Fuels","Entity":"United States","Year":2020},{"Energy":789.88,"Energy Source":"Nuclear","Entity":"United States","Year":2020},{"Energy":821.4,"Energy Source":"Renewables","Entity":"United States","Year":2020}],"metadata":{"Energy":{"type":"number","semanticType":"Number"},"Energy Source":{"type":"string","semanticType":"String","levels":["Fossil Fuels","Nuclear","Renewables"]},"Entity":{"type":"string","semanticType":"Location"},"Year":{"type":"number","semanticType":"Year"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total CO2 emissions by country across all years\n total_co2_by_country = df_energy.groupby('Entity')['Value_co2_emissions_kt_by_country'].sum().reset_index()\n \n # Get top 3 CO2 emitting countries\n top3_countries = total_co2_by_country.nlargest(3, 'Value_co2_emissions_kt_by_country')['Entity'].tolist()\n \n # Filter data for top 3 countries\n df_top3 = df_energy[df_energy['Entity'].isin(top3_countries)].copy()\n \n # Select relevant columns and rename for clarity\n df_top3 = df_top3[['Year', 'Entity', 'Electricity from fossil fuels (TWh)', \n 'Electricity from nuclear (TWh)', 'Electricity from renewables (TWh)']].copy()\n \n df_top3.columns = ['Year', 'Entity', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n df_top3,\n id_vars=['Year', 'Entity'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Entity, Year, and Energy Source\n transformed_df = transformed_df.sort_values(['Entity', 'Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n","source":["global-energy-20-small.csv"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 61.99, 62.21, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"compare each countries renewable between 2000 and 2020\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Energy\",\n \"color\": \"Year\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Compare renewable energy (Electricity from renewables) for each country between the years 2000 and 2020. Filter the data to include only years 2000 and 2020, and prepare the output with country names, year, and renewable energy values for visualization as a grouped bar chart.\",\n \"display_instruction\": \"Compare **renewable energy** by **country** between **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Electricity from renewables (TWh)\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to compare renewable energy across countries between 2000 and 2020. The output field 'Renewable Energy' mentioned in the original chart_encodings maps to 'Electricity from renewables (TWh)' in the dataset. To create a grouped bar chart comparing these two years, we need to filter the data to only include years 2000 and 2020, and output the Entity (country), Year, and the renewable energy values. The chart_encodings are updated to use the actual column name from the dataset.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Electricity from renewables (TWh) Entity Year\n0 17.11 Australia 2000\n1 63.99 Australia 2020\n2 308.77 Brazil 2000\n3 520.01 Brazil 2020\n4 363.70 Canada 2000\n5 429.24 Canada 2020\n6 225.56 China 2000\n7 2184.94 China 2020\n8 67.83 France 2000\n9 125.28 France 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show their renewable percentage instead, and add an entity to show global average\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage (proportion of renewables to total electricity generation from all sources) for each country between 2000 and 2020. Add a 'Global Average' entity that represents the worldwide average renewable percentage for each year. The output should include Entity (with 'Global Average' added), Year, and the renewable percentage.\",\n \"display_instruction\": \"Show **renewable energy percentage** by **country** with **global average** for **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Renewable Percentage\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Percentage\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to see renewable percentage instead of absolute values, and wants to add a global average entity for comparison. Renewable percentage is calculated as the ratio of renewable energy to total electricity generation (fossil fuels + nuclear + renewables). A 'Global Average' entity needs to be computed by aggregating all countries' data for each year. The y-axis encoding is updated to reflect the new metric 'Renewable Percentage'.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Entity Renewable Percentage Year\n0 Australia 8.634437 2000\n1 Australia 25.503168 2020\n2 Brazil 90.130772 2000\n3 Brazil 84.641177 2020\n4 Canada 61.809592 2000\n5 Canada 68.779644 2020\n6 China 16.639127 2000\n7 China 28.246461 2020\n8 France 12.711769 2000\n9 France 23.761024 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show global energy composition over time\",\n \"chart_type\": \"Custom Area\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Show the global energy composition over time by aggregating electricity generation from all countries for each year, broken down by energy source (fossil fuels, nuclear, and renewables). The output should be in long format with Year, Energy Source, and Energy values to support a stacked area chart visualization.\",\n \"display_instruction\": \"Show global **energy composition** by **energy source** over time\",\n \"output_fields\": [\"Year\", \"Energy Source\", \"Energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n },\n \"reason\": \"The user wants to visualize global energy composition over time, which requires aggregating electricity generation data across all countries for each year and breaking it down by energy source type. The data needs to be transformed into long format where each row represents a year-energy source combination, with the total energy value for that source globally. This follows up from the previous renewable percentage analysis by showing the overall energy mix trends rather than focusing on specific countries or percentages.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Group by Year and sum electricity generation from all countries\n global_energy = df_energy.groupby('Year').agg({\n 'Electricity from fossil fuels (TWh)': 'sum',\n 'Electricity from nuclear (TWh)': 'sum',\n 'Electricity from renewables (TWh)': 'sum'\n }).reset_index()\n \n # Rename columns for clarity\n global_energy.columns = ['Year', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n global_energy,\n id_vars=['Year'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Year and Energy Source\n transformed_df = transformed_df.sort_values(['Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Energy Energy Source Year\n0 7160.71 Fossil Fuels 2000\n1 1996.65 Nuclear 2000\n2 1742.56 Renewables 2000\n3 7273.89 Fossil Fuels 2001\n4 2037.54 Nuclear 2001\n5 1690.11 Renewables 2001\n6 7621.07 Fossil Fuels 2002\n7 2042.18 Nuclear 2002\n8 1757.63 Renewables 2002\n9 8043.86 Fossil Fuels 2003\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show the composition of top 3 CO2 emitting countries\",\n \"chart_type\": \"Custom Area\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Identify the top 3 CO2 emitting countries based on total CO2 emissions across all years, then show the energy composition (fossil fuels, nuclear, and renewables) for each of these countries over time. The output should be in long format with Year, Entity (country), Energy Source, and Energy values to support faceted area charts.\",\n \"display_instruction\": \"Show **energy composition** of **top 3 CO2 emitting countries** over time\",\n \"output_fields\": [\"Year\", \"Entity\", \"Energy Source\", \"Energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\",\n \"facet\": \"Entity\"\n },\n \"reason\": \"The user wants to see the energy composition specifically for the top 3 CO2 emitting countries over time, following up from the global energy composition view. We need to identify which countries have the highest total CO2 emissions, filter the data for those countries, and transform it into long format by energy source. A facet encoding is added to show separate area charts for each of the top 3 countries, allowing comparison of their individual energy compositions over time.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total CO2 emissions by country across all years\n total_co2_by_country = df_energy.groupby('Entity')['Value_co2_emissions_kt_by_country'].sum().reset_index()\n \n # Get top 3 CO2 emitting countries\n top3_countries = total_co2_by_country.nlargest(3, 'Value_co2_emissions_kt_by_country')['Entity'].tolist()\n \n # Filter data for top 3 countries\n df_top3 = df_energy[df_energy['Entity'].isin(top3_countries)].copy()\n \n # Select relevant columns and rename for clarity\n df_top3 = df_top3[['Year', 'Entity', 'Electricity from fossil fuels (TWh)', \n 'Electricity from nuclear (TWh)', 'Electricity from renewables (TWh)']].copy()\n \n df_top3.columns = ['Year', 'Entity', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n df_top3,\n id_vars=['Year', 'Entity'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Entity, Year, and Energy Source\n transformed_df = transformed_df.sort_values(['Entity', 'Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-81","sourceTableIds":["global-energy-20-small.csv"],"instruction":"show the composition of top 3 CO2 emitting countries","displayInstruction":"Show **energy composition** of **top 3 CO2 emitting countries** over time","chart":{"id":"chart-1760739075465","chartType":"Custom Area","encodingMap":{"x":{"channel":"x","bin":false,"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"channel":"y","bin":false,"fieldID":"concept-1760738917347"},"x2":{},"y2":{"channel":"y2","bin":false},"color":{"fieldID":"concept-1760738921927","sortBy":"[\"Fossil Fuels\",\"Nuclear\",\"Renewables\"]"},"column":{},"row":{"channel":"row","bin":false}},"tableRef":"table-81","saved":false,"source":"trigger","unread":false},"resultTableId":"table-10"},"explanation":{"agent":"CodeExplanationAgent","code":"The code performs the following high-level transformations:\n\n1. **Identifies top polluters**: Calculates the total `Value_co2_emissions_kt_by_country` across all years for each `Entity` (country), then selects the **top 3** countries with the highest cumulative CO2 emissions.\n\n2. **Filters the dataset**: Retains only records for the **top 3 CO2-emitting countries** from the original energy data.\n\n3. **Simplifies column structure**: Extracts the relevant energy production columns (`Electricity from fossil fuels (TWh)`, `Electricity from nuclear (TWh)`, `Electricity from renewables (TWh)`) and renames them to **Fossil Fuels**, **Nuclear**, and **Renewables** for clarity.\n\n4. **Reshapes data to long format**: Transforms the data from wide format (separate columns for each energy source) to long format, where each row represents a specific `Year`, `Entity`, and `Energy Source` combination with its corresponding `Energy` production value.\n\n5. **Sorts the output**: Orders the final dataset by `Entity`, `Year`, and `Energy Source` for systematic presentation.","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5593029.785, 5736319.824, 5738290.039, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 62.21, 63.02, 63.71, 439.73\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total CO2 emissions by country across all years\n total_co2_by_country = df_energy.groupby('Entity')['Value_co2_emissions_kt_by_country'].sum().reset_index()\n \n # Get top 3 CO2 emitting countries\n top3_countries = total_co2_by_country.nlargest(3, 'Value_co2_emissions_kt_by_country')['Entity'].tolist()\n \n # Filter data for top 3 countries\n df_top3 = df_energy[df_energy['Entity'].isin(top3_countries)].copy()\n \n # Select relevant columns and rename for clarity\n df_top3 = df_top3[['Year', 'Entity', 'Electricity from fossil fuels (TWh)', \n 'Electricity from nuclear (TWh)', 'Electricity from renewables (TWh)']].copy()\n \n df_top3.columns = ['Year', 'Entity', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n df_top3,\n id_vars=['Year', 'Entity'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Entity, Year, and Energy Source\n transformed_df = transformed_df.sort_values(['Entity', 'Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThe code performs the following high-level transformations:\n\n1. **Identifies top polluters**: Calculates the total `Value_co2_emissions_kt_by_country` across all years for each `Entity` (country), then selects the **top 3** countries with the highest cumulative CO2 emissions.\n\n2. **Filters the dataset**: Retains only records for the **top 3 CO2-emitting countries** from the original energy data.\n\n3. **Simplifies column structure**: Extracts the relevant energy production columns (`Electricity from fossil fuels (TWh)`, `Electricity from nuclear (TWh)`, `Electricity from renewables (TWh)`) and renames them to **Fossil Fuels**, **Nuclear**, and **Renewables** for clarity.\n\n4. **Reshapes data to long format**: Transforms the data from wide format (separate columns for each energy source) to long format, where each row represents a specific `Year`, `Entity`, and `Energy Source` combination with its corresponding `Energy` production value.\n\n5. **Sorts the output**: Orders the final dataset by `Entity`, `Year`, and `Energy Source` for systematic presentation.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""}],"charts":[{"id":"chart-1760739084455","chartType":"Custom Area","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"fieldID":"concept-1760738917347"},"x2":{},"y2":{"channel":"y2","bin":false},"color":{"fieldID":"concept-1760738921927"},"column":{"fieldID":"original--global-energy-20-small.csv--Entity"},"row":{"channel":"row","bin":false}},"tableRef":"table-10","saved":false,"source":"user","unread":false},{"id":"chart-1760739021201","chartType":"Custom Area","encodingMap":{"x":{"channel":"x","bin":false,"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"channel":"y","bin":false,"fieldID":"concept-1760738917347"},"x2":{},"y2":{"channel":"y2","bin":false},"color":{"fieldID":"concept-1760738921927","sortBy":"[\"Fossil Fuels\",\"Nuclear\",\"Renewables\"]"},"column":{},"row":{"channel":"row","bin":false}},"tableRef":"table-81","saved":false,"source":"user","unread":false},{"id":"chart-1760738819387","chartType":"Grouped Bar Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Entity"},"y":{"fieldID":"concept-Renewable Percentage-1760738820889"},"color":{"fieldID":"original--global-energy-20-small.csv--Year"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-27","saved":false,"source":"user","unread":false},{"id":"chart-1760738770100","chartType":"Grouped Bar Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Entity"},"y":{"fieldID":"original--global-energy-20-small.csv--Electricity from renewables (TWh)"},"color":{"fieldID":"original--global-energy-20-small.csv--Year"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-97","saved":false,"source":"user","unread":false},{"id":"chart-1760738436615","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Year","sortOrder":"ascending"},"y":{"fieldID":"concept-rank-1760738444550","sortOrder":"descending"},"color":{"fieldID":"original--global-energy-20-small.csv--Entity"},"opacity":{"channel":"opacity","bin":false},"column":{},"row":{"channel":"row","bin":false}},"tableRef":"table-78","saved":false,"source":"user","unread":false},{"id":"chart-1760738423852","chartType":"Dotted Line Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"fieldID":"concept-renewable_percentage-1760738424337"},"color":{"fieldID":"original--global-energy-20-small.csv--Entity"},"column":{},"row":{"channel":"row","bin":false}},"tableRef":"table-45","saved":false,"source":"user","unread":false},{"id":"chart-1760738400970","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"fieldID":"concept-1760738385163"},"color":{"fieldID":"original--global-energy-20-small.csv--Entity"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"concept-1760738389404","sortBy":"[\"fossil fuels\",\"nuclear\",\"renewables\"]"},"row":{"channel":"row","bin":false}},"tableRef":"table-82","saved":false,"source":"user","unread":false},{"id":"chart-1760738355655","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--global-energy-20-small.csv--Year"},"y":{"fieldID":"original--global-energy-20-small.csv--Value_co2_emissions_kt_by_country"},"color":{"fieldID":"original--global-energy-20-small.csv--Entity"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"global-energy-20-small.csv","saved":false,"source":"user","unread":false}],"conceptShelfItems":[{"id":"concept-1760738921927","name":"Energy Source","type":"auto","description":"","source":"custom","tableRef":"custom"},{"id":"concept-1760738917347","name":"Energy","type":"auto","description":"","source":"custom","tableRef":"custom"},{"id":"concept-Renewable Percentage-1760738820889","name":"Renewable Percentage","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-1760738743125","name":"Renewable Energy","type":"auto","description":"","source":"custom","tableRef":"custom"},{"id":"concept-rank-1760738444550","name":"rank","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-renewable_percentage-1760738424337","name":"renewable_percentage","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-1760738389404","name":"source","type":"auto","description":"","source":"custom","tableRef":"custom"},{"id":"concept-1760738385163","name":"energy","type":"auto","description":"","source":"custom","tableRef":"custom"},{"id":"original--global-energy-20-small.csv--Year","name":"Year","type":"integer","source":"original","description":"","tableRef":"global-energy-20-small.csv"},{"id":"original--global-energy-20-small.csv--Entity","name":"Entity","type":"string","source":"original","description":"","tableRef":"global-energy-20-small.csv"},{"id":"original--global-energy-20-small.csv--Value_co2_emissions_kt_by_country","name":"Value_co2_emissions_kt_by_country","type":"number","source":"original","description":"","tableRef":"global-energy-20-small.csv"},{"id":"original--global-energy-20-small.csv--Electricity from fossil fuels (TWh)","name":"Electricity from fossil fuels (TWh)","type":"number","source":"original","description":"","tableRef":"global-energy-20-small.csv"},{"id":"original--global-energy-20-small.csv--Electricity from nuclear (TWh)","name":"Electricity from nuclear (TWh)","type":"number","source":"original","description":"","tableRef":"global-energy-20-small.csv"},{"id":"original--global-energy-20-small.csv--Electricity from renewables (TWh)","name":"Electricity from renewables (TWh)","type":"number","source":"original","description":"","tableRef":"global-energy-20-small.csv"}],"messages":[{"timestamp":1760831081885,"type":"success","component":"data formulator","value":"Successfully loaded Global Energy"}],"displayedMessageIdx":0,"focusedTableId":"global-energy-20-small.csv","focusedChartId":"chart-1760738355655","viewMode":"report","chartSynthesisInProgress":[],"config":{"formulateTimeoutSeconds":60,"maxRepairAttempts":1,"defaultChartWidth":300,"defaultChartHeight":300},"agentActions":[],"dataCleanBlocks":[],"cleanInProgress":false,"generatedReports":[{"id":"report-1760831156182-8277","content":"# Global Renewable Energy Shift: 2000 to 2020\n\nBetween 2000 and 2020, the world witnessed a notable transformation in renewable energy adoption. Global renewable electricity nearly doubled from 16% to 29% of total generation, signaling meaningful progress in the energy transition.\n\n[IMAGE(chart-1760738819387)]\n\nThe data reveals striking regional variations. Brazil maintained renewable leadership above 84%, while countries like Australia, Germany, and Italy dramatically expanded their renewable capacity—Australia tripling from 9% to 26%. However, some nations like Mexico experienced declining renewable shares, highlighting uneven progress across different energy systems.\n\n**In summary**, while the 20-year period shows encouraging momentum toward cleaner energy, the pace and direction vary significantly by country, suggesting that achieving global renewable energy goals will require sustained, coordinated efforts tailored to each nation's unique energy landscape and policy environment.","style":"short note","selectedChartIds":["chart-1760738819387"],"createdAt":1760831163718},{"id":"report-1760831130105-4063","content":"# The Global Renewable Energy Revolution: Two Decades of Transformation\n\nThe world's energy landscape has undergone a remarkable transformation between 2000 and 2020, with renewable electricity generation emerging as a critical component of the global energy mix. This shift reflects both technological advancement and growing commitment to sustainable energy solutions.\n\n[IMAGE(chart-1760738770100)]\n\nLooking at renewable energy adoption across major economies, the growth has been nothing short of extraordinary. China leads the pack with a staggering increase from 225.56 TWh in 2000 to 2,184.94 TWh in 2020—nearly a tenfold expansion. The United States more than doubled its renewable output from 335.45 TWh to 821.40 TWh, while Brazil grew from 308.77 TWh to 520.01 TWh. Notably, countries like Australia, India, and Germany also demonstrated significant gains, with Australia jumping from just 17.11 TWh to 63.99 TWh during this period.\n\n[IMAGE(chart-1760739084455)]\n\nWhen examining the energy portfolios of the three largest CO2 emitters—China, India, and the United States—a complex picture emerges. While China's total energy consumption has grown exponentially, with fossil fuels still dominating, the renewable sector (shown in red) has expanded substantially. The United States shows a more stable total energy consumption, with renewables gradually claiming a larger share. India's energy growth, though significant, remains heavily reliant on fossil fuels, though renewable adoption is accelerating.\n\n**In summary**, the past two decades reveal a global energy transition in progress. While renewable energy has achieved impressive growth worldwide, fossil fuels continue to dominate electricity generation in major economies. Key questions remain: Can this momentum accelerate sufficiently to meet climate goals? What policies will drive faster renewable adoption in emerging economies?","style":"blog post","selectedChartIds":["chart-1760739084455","chart-1760738770100"],"createdAt":1760831142289},{"id":"report-1760831094231-2424","content":"# Global Renewable Energy: A Tale of Leaders and Laggards\n\nThe global energy landscape has undergone significant transformation over the past two decades, with renewable energy emerging as a critical player in the electricity mix. Analyzing data from 21 major economies between 2000 and 2020 reveals striking disparities in how nations have embraced clean energy alternatives.\n\n[IMAGE(chart-1760738423852)]\n\nThe first visualization reveals a fascinating divergence in renewable energy adoption. **Brazil** stands out as a consistent leader, maintaining renewable electricity percentages between 75-90% throughout the entire period, thanks largely to its robust hydroelectric infrastructure. **Canada** follows a similar trajectory, steadily increasing from about 60% to nearly 70% by 2020. Meanwhile, **Germany, Spain, Italy, and the United Kingdom** show remarkable growth trajectories, climbing from under 20% in the early 2000s to over 40% by 2020—demonstrating that nations can dramatically reshape their energy portfolios within two decades.\n\nOn the opposite end of the spectrum, **South Africa** remains nearly flat at the bottom, showing minimal renewable adoption despite global trends. **Saudi Arabia** and **Poland** also lag significantly, though both show modest upticks in recent years.\n\n[IMAGE(chart-1760738436615)]\n\nThe ranking chart illustrates the competitive dynamics of renewable energy leadership. **Brazil and Canada** maintain their dominance at ranks 1-2 throughout most years, while European nations like **Germany, Spain, and the UK** engage in a dynamic competition for the 3rd-5th positions, particularly after 2010. The volatility in middle rankings reflects the rapid changes in energy policy and investment across different nations, with countries like **China** climbing from lower ranks to break into the top 7 by 2020.\n\n**In summary**, the data reveals a bifurcated global energy transition: a group of progressive nations have successfully scaled renewable electricity to 40-90% of their mix, while others remain heavily dependent on fossil fuels. These patterns suggest that political will, natural resource endowment, and infrastructure investment are key determinants of renewable energy success. Important follow-up questions include: What policy mechanisms enabled top performers to achieve such high renewable percentages? Can lagging nations replicate these successes, or do geographic and economic constraints create insurmountable barriers?","style":"blog post","selectedChartIds":["chart-1760738423852","chart-1760738436615"],"createdAt":1760831110064}],"currentReport":{"id":"report-1760750575650-2619","content":"# Hollywood's Billion-Dollar Hitmakers\n\n*Avatar* stands alone—earning over $2.5B in profit, dwarfing all competition. Action and Adventure films dominate the most profitable titles, with franchises like *Jurassic Park*, *The Dark Knight*, and *Lord of the Rings* proving blockbuster formulas work.\n\n\"Chart\"\n\nSteven Spielberg leads all directors with $7.2B in total profit across his career, showcasing remarkable consistency with hits spanning decades—from *Jurassic Park* to *E.T.* His nearest competitors trail by billions, underlining his unmatched commercial impact.\n\n\"Chart\"\n\n**In summary**, mega-budget Action and Adventure films generate extraordinary returns when they succeed, and a handful of elite directors—led by Spielberg—have mastered the formula for sustained box office dominance.","style":"short note","selectedChartIds":["chart-1760743347871","chart-1760743768741"],"chartImages":{},"createdAt":1760750584189,"title":"Report - 10/17/2025"},"activeChallenges":[],"agentWorkInProgress":[],"_persist":{"version":-1,"rehydrated":true}} \ No newline at end of file +{"tables": [{"kind": "table", "id": "global-energy-20-small.csv", "displayId": "energy-co2", "names": ["Year", "Entity", "Value_co2_emissions_kt_by_country", "Electricity from fossil fuels (TWh)", "Electricity from nuclear (TWh)", "Electricity from renewables (TWh)"], "metadata": {"Year": {"type": "number", "semanticType": "Year"}, "Entity": {"type": "string", "semanticType": "Location"}, "Value_co2_emissions_kt_by_country": {"type": "number", "semanticType": "Number"}, "Electricity from fossil fuels (TWh)": {"type": "number", "semanticType": "Number"}, "Electricity from nuclear (TWh)": {"type": "number", "semanticType": "Number"}, "Electricity from renewables (TWh)": {"type": "number", "semanticType": "Number"}}, "rows": [{"Year": 2000, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 339450, "Electricity from fossil fuels (TWh)": 181.05, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 17.11}, {"Year": 2001, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 345640, "Electricity from fossil fuels (TWh)": 194.33, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 17.4}, {"Year": 2002, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 353369.9951, "Electricity from fossil fuels (TWh)": 197.29, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 17.35}, {"Year": 2003, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 352579.9866, "Electricity from fossil fuels (TWh)": 195.13, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 18.5}, {"Year": 2004, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 365809.9976, "Electricity from fossil fuels (TWh)": 203.66, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 19.41}, {"Year": 2005, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 370089.9963, "Electricity from fossil fuels (TWh)": 195.95, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 19.75}, {"Year": 2006, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 375489.9902, "Electricity from fossil fuels (TWh)": 198.72, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 21.19}, {"Year": 2007, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 385750, "Electricity from fossil fuels (TWh)": 208.59, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 20.93}, {"Year": 2008, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 388940.0024, "Electricity from fossil fuels (TWh)": 211.06, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 18.49}, {"Year": 2009, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 395290.0085, "Electricity from fossil fuels (TWh)": 216.42, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 18.32}, {"Year": 2010, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 387540.0085, "Electricity from fossil fuels (TWh)": 212.5, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 21.13}, {"Year": 2011, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 386380.0049, "Electricity from fossil fuels (TWh)": 213.56, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 27.33}, {"Year": 2012, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 386970.0012, "Electricity from fossil fuels (TWh)": 206.75, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 26.63}, {"Year": 2013, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 380279.9988, "Electricity from fossil fuels (TWh)": 195.78, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 34.2}, {"Year": 2014, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 371630.0049, "Electricity from fossil fuels (TWh)": 205.46, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 36.15}, {"Year": 2015, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 377799.9878, "Electricity from fossil fuels (TWh)": 197.72, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 33.12}, {"Year": 2016, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 384989.9902, "Electricity from fossil fuels (TWh)": 207.66, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 38.41}, {"Year": 2017, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 389160.0037, "Electricity from fossil fuels (TWh)": 209.14, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 40.77}, {"Year": 2018, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 387070.0073, "Electricity from fossil fuels (TWh)": 207.45, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 42.93}, {"Year": 2019, "Entity": "Australia", "Value_co2_emissions_kt_by_country": 386529.9988, "Electricity from fossil fuels (TWh)": 196.45, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 53.41}, {"Year": 2020, "Entity": "Australia", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 186.92, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 63.99}, {"Year": 2000, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 313670, "Electricity from fossil fuels (TWh)": 28.87, "Electricity from nuclear (TWh)": 4.94, "Electricity from renewables (TWh)": 308.77}, {"Year": 2001, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 319380, "Electricity from fossil fuels (TWh)": 35.19, "Electricity from nuclear (TWh)": 14.27, "Electricity from renewables (TWh)": 273.71}, {"Year": 2002, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 317760.0098, "Electricity from fossil fuels (TWh)": 33.5, "Electricity from nuclear (TWh)": 13.84, "Electricity from renewables (TWh)": 292.95}, {"Year": 2003, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 310809.9976, "Electricity from fossil fuels (TWh)": 31.62, "Electricity from nuclear (TWh)": 13.4, "Electricity from renewables (TWh)": 313.88}, {"Year": 2004, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 328519.989, "Electricity from fossil fuels (TWh)": 40.14, "Electricity from nuclear (TWh)": 11.6, "Electricity from renewables (TWh)": 329.43}, {"Year": 2005, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 331690.0024, "Electricity from fossil fuels (TWh)": 39.56, "Electricity from nuclear (TWh)": 9.2, "Electricity from renewables (TWh)": 346.96}, {"Year": 2006, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 335619.9951, "Electricity from fossil fuels (TWh)": 39.4, "Electricity from nuclear (TWh)": 12.98, "Electricity from renewables (TWh)": 359.55}, {"Year": 2007, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 352559.9976, "Electricity from fossil fuels (TWh)": 37.64, "Electricity from nuclear (TWh)": 11.65, "Electricity from renewables (TWh)": 387.88}, {"Year": 2008, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 373630.0049, "Electricity from fossil fuels (TWh)": 55.87, "Electricity from nuclear (TWh)": 13.21, "Electricity from renewables (TWh)": 385.61}, {"Year": 2009, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 350000, "Electricity from fossil fuels (TWh)": 36.32, "Electricity from nuclear (TWh)": 12.22, "Electricity from renewables (TWh)": 410.13}, {"Year": 2010, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 397929.9927, "Electricity from fossil fuels (TWh)": 61.02, "Electricity from nuclear (TWh)": 13.77, "Electricity from renewables (TWh)": 435.99}, {"Year": 2011, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 418309.9976, "Electricity from fossil fuels (TWh)": 50.27, "Electricity from nuclear (TWh)": 14.8, "Electricity from renewables (TWh)": 462.32}, {"Year": 2012, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 454230.011, "Electricity from fossil fuels (TWh)": 77.21, "Electricity from nuclear (TWh)": 15.17, "Electricity from renewables (TWh)": 454.78}, {"Year": 2013, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 486839.9963, "Electricity from fossil fuels (TWh)": 112, "Electricity from nuclear (TWh)": 14.65, "Electricity from renewables (TWh)": 436.84}, {"Year": 2014, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 511619.9951, "Electricity from fossil fuels (TWh)": 136.58, "Electricity from nuclear (TWh)": 14.46, "Electricity from renewables (TWh)": 430.82}, {"Year": 2015, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 485339.9963, "Electricity from fossil fuels (TWh)": 128.85, "Electricity from nuclear (TWh)": 13.91, "Electricity from renewables (TWh)": 428.81}, {"Year": 2016, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 447079.9866, "Electricity from fossil fuels (TWh)": 93.06, "Electricity from nuclear (TWh)": 14.97, "Electricity from renewables (TWh)": 463.37}, {"Year": 2017, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 456489.9902, "Electricity from fossil fuels (TWh)": 101.9, "Electricity from nuclear (TWh)": 14.86, "Electricity from renewables (TWh)": 464.4}, {"Year": 2018, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 433989.9902, "Electricity from fossil fuels (TWh)": 86.69, "Electricity from nuclear (TWh)": 14.79, "Electricity from renewables (TWh)": 492.66}, {"Year": 2019, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": 434299.9878, "Electricity from fossil fuels (TWh)": 90.91, "Electricity from nuclear (TWh)": 15.16, "Electricity from renewables (TWh)": 512.59}, {"Year": 2020, "Entity": "Brazil", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 81.15, "Electricity from nuclear (TWh)": 13.21, "Electricity from renewables (TWh)": 520.01}, {"Year": 2000, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 514220, "Electricity from fossil fuels (TWh)": 155.56, "Electricity from nuclear (TWh)": 69.16, "Electricity from renewables (TWh)": 363.7}, {"Year": 2001, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 506620, "Electricity from fossil fuels (TWh)": 159.93, "Electricity from nuclear (TWh)": 72.86, "Electricity from renewables (TWh)": 339.58}, {"Year": 2002, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 524349.9756, "Electricity from fossil fuels (TWh)": 155.12, "Electricity from nuclear (TWh)": 71.75, "Electricity from renewables (TWh)": 357.06}, {"Year": 2003, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 544539.978, "Electricity from fossil fuels (TWh)": 157.35, "Electricity from nuclear (TWh)": 71.15, "Electricity from renewables (TWh)": 343.88}, {"Year": 2004, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 536419.9829, "Electricity from fossil fuels (TWh)": 148.86, "Electricity from nuclear (TWh)": 85.87, "Electricity from renewables (TWh)": 347.68}, {"Year": 2005, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 549030.0293, "Electricity from fossil fuels (TWh)": 150.78, "Electricity from nuclear (TWh)": 86.83, "Electricity from renewables (TWh)": 368.86}, {"Year": 2006, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 540530.0293, "Electricity from fossil fuels (TWh)": 139.71, "Electricity from nuclear (TWh)": 92.44, "Electricity from renewables (TWh)": 360.48}, {"Year": 2007, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 571630.0049, "Electricity from fossil fuels (TWh)": 149.36, "Electricity from nuclear (TWh)": 88.19, "Electricity from renewables (TWh)": 375.42}, {"Year": 2008, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 550469.9707, "Electricity from fossil fuels (TWh)": 141.33, "Electricity from nuclear (TWh)": 88.3, "Electricity from renewables (TWh)": 385.21}, {"Year": 2009, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 521320.0073, "Electricity from fossil fuels (TWh)": 129.76, "Electricity from nuclear (TWh)": 85.13, "Electricity from renewables (TWh)": 380.24}, {"Year": 2010, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 537010.0098, "Electricity from fossil fuels (TWh)": 130.08, "Electricity from nuclear (TWh)": 85.53, "Electricity from renewables (TWh)": 366.21}, {"Year": 2011, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 549289.978, "Electricity from fossil fuels (TWh)": 131.3, "Electricity from nuclear (TWh)": 88.29, "Electricity from renewables (TWh)": 391.95}, {"Year": 2012, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 546210.022, "Electricity from fossil fuels (TWh)": 124.2, "Electricity from nuclear (TWh)": 89.49, "Electricity from renewables (TWh)": 398.58}, {"Year": 2013, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 555659.9731, "Electricity from fossil fuels (TWh)": 122.87, "Electricity from nuclear (TWh)": 97.58, "Electricity from renewables (TWh)": 417.28}, {"Year": 2014, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 561679.9927, "Electricity from fossil fuels (TWh)": 122.75, "Electricity from nuclear (TWh)": 101.21, "Electricity from renewables (TWh)": 412.13}, {"Year": 2015, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 558700.0122, "Electricity from fossil fuels (TWh)": 125.7, "Electricity from nuclear (TWh)": 96.05, "Electricity from renewables (TWh)": 417.2}, {"Year": 2016, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 556830.0171, "Electricity from fossil fuels (TWh)": 122.35, "Electricity from nuclear (TWh)": 95.69, "Electricity from renewables (TWh)": 426.84}, {"Year": 2017, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 568080.0171, "Electricity from fossil fuels (TWh)": 113.7, "Electricity from nuclear (TWh)": 95.57, "Electricity from renewables (TWh)": 435.43}, {"Year": 2018, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 580090.0269, "Electricity from fossil fuels (TWh)": 112.47, "Electricity from nuclear (TWh)": 95.03, "Electricity from renewables (TWh)": 428.39}, {"Year": 2019, "Entity": "Canada", "Value_co2_emissions_kt_by_country": 580210.022, "Electricity from fossil fuels (TWh)": 110.65, "Electricity from nuclear (TWh)": 95.47, "Electricity from renewables (TWh)": 421.8}, {"Year": 2020, "Entity": "Canada", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 102.19, "Electricity from nuclear (TWh)": 92.65, "Electricity from renewables (TWh)": 429.24}, {"Year": 2000, "Entity": "China", "Value_co2_emissions_kt_by_country": 3346530, "Electricity from fossil fuels (TWh)": 1113.3, "Electricity from nuclear (TWh)": 16.74, "Electricity from renewables (TWh)": 225.56}, {"Year": 2001, "Entity": "China", "Value_co2_emissions_kt_by_country": 3529080, "Electricity from fossil fuels (TWh)": 1182.59, "Electricity from nuclear (TWh)": 17.47, "Electricity from renewables (TWh)": 280.73}, {"Year": 2002, "Entity": "China", "Value_co2_emissions_kt_by_country": 3810060.059, "Electricity from fossil fuels (TWh)": 1337.46, "Electricity from nuclear (TWh)": 25.13, "Electricity from renewables (TWh)": 291.41}, {"Year": 2003, "Entity": "China", "Value_co2_emissions_kt_by_country": 4415910.156, "Electricity from fossil fuels (TWh)": 1579.96, "Electricity from nuclear (TWh)": 43.34, "Electricity from renewables (TWh)": 287.28}, {"Year": 2004, "Entity": "China", "Value_co2_emissions_kt_by_country": 5124819.824, "Electricity from fossil fuels (TWh)": 1795.41, "Electricity from nuclear (TWh)": 50.47, "Electricity from renewables (TWh)": 357.43}, {"Year": 2005, "Entity": "China", "Value_co2_emissions_kt_by_country": 5824629.883, "Electricity from fossil fuels (TWh)": 2042.8, "Electricity from nuclear (TWh)": 53.09, "Electricity from renewables (TWh)": 404.37}, {"Year": 2006, "Entity": "China", "Value_co2_emissions_kt_by_country": 6437470.215, "Electricity from fossil fuels (TWh)": 2364.16, "Electricity from nuclear (TWh)": 54.84, "Electricity from renewables (TWh)": 446.72}, {"Year": 2007, "Entity": "China", "Value_co2_emissions_kt_by_country": 6993180.176, "Electricity from fossil fuels (TWh)": 2718.7, "Electricity from nuclear (TWh)": 62.13, "Electricity from renewables (TWh)": 500.71}, {"Year": 2008, "Entity": "China", "Value_co2_emissions_kt_by_country": 7199600.098, "Electricity from fossil fuels (TWh)": 2762.29, "Electricity from nuclear (TWh)": 68.39, "Electricity from renewables (TWh)": 665.08}, {"Year": 2009, "Entity": "China", "Value_co2_emissions_kt_by_country": 7719069.824, "Electricity from fossil fuels (TWh)": 2980.2, "Electricity from nuclear (TWh)": 70.05, "Electricity from renewables (TWh)": 664.39}, {"Year": 2010, "Entity": "China", "Value_co2_emissions_kt_by_country": 8474919.922, "Electricity from fossil fuels (TWh)": 3326.19, "Electricity from nuclear (TWh)": 74.74, "Electricity from renewables (TWh)": 786.38}, {"Year": 2011, "Entity": "China", "Value_co2_emissions_kt_by_country": 9282549.805, "Electricity from fossil fuels (TWh)": 3811.77, "Electricity from nuclear (TWh)": 87.2, "Electricity from renewables (TWh)": 792.38}, {"Year": 2012, "Entity": "China", "Value_co2_emissions_kt_by_country": 9541870.117, "Electricity from fossil fuels (TWh)": 3869.38, "Electricity from nuclear (TWh)": 98.32, "Electricity from renewables (TWh)": 999.56}, {"Year": 2013, "Entity": "China", "Value_co2_emissions_kt_by_country": 9984570.313, "Electricity from fossil fuels (TWh)": 4203.77, "Electricity from nuclear (TWh)": 111.5, "Electricity from renewables (TWh)": 1093.37}, {"Year": 2014, "Entity": "China", "Value_co2_emissions_kt_by_country": 10006669.92, "Electricity from fossil fuels (TWh)": 4345.86, "Electricity from nuclear (TWh)": 133.22, "Electricity from renewables (TWh)": 1289.23}, {"Year": 2015, "Entity": "China", "Value_co2_emissions_kt_by_country": 9861099.609, "Electricity from fossil fuels (TWh)": 4222.76, "Electricity from nuclear (TWh)": 171.38, "Electricity from renewables (TWh)": 1393.66}, {"Year": 2016, "Entity": "China", "Value_co2_emissions_kt_by_country": 9874660.156, "Electricity from fossil fuels (TWh)": 4355, "Electricity from nuclear (TWh)": 213.18, "Electricity from renewables (TWh)": 1522.79}, {"Year": 2017, "Entity": "China", "Value_co2_emissions_kt_by_country": 10096009.77, "Electricity from fossil fuels (TWh)": 4643.1, "Electricity from nuclear (TWh)": 248.1, "Electricity from renewables (TWh)": 1667.06}, {"Year": 2018, "Entity": "China", "Value_co2_emissions_kt_by_country": 10502929.69, "Electricity from fossil fuels (TWh)": 4990.28, "Electricity from nuclear (TWh)": 295, "Electricity from renewables (TWh)": 1835.32}, {"Year": 2019, "Entity": "China", "Value_co2_emissions_kt_by_country": 10707219.73, "Electricity from fossil fuels (TWh)": 5098.22, "Electricity from nuclear (TWh)": 348.7, "Electricity from renewables (TWh)": 2014.57}, {"Year": 2020, "Entity": "China", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 5184.13, "Electricity from nuclear (TWh)": 366.2, "Electricity from renewables (TWh)": 2184.94}, {"Year": 2000, "Entity": "France", "Value_co2_emissions_kt_by_country": 373120, "Electricity from fossil fuels (TWh)": 50.61, "Electricity from nuclear (TWh)": 415.16, "Electricity from renewables (TWh)": 67.83}, {"Year": 2001, "Entity": "France", "Value_co2_emissions_kt_by_country": 376730, "Electricity from fossil fuels (TWh)": 46.48, "Electricity from nuclear (TWh)": 421.08, "Electricity from renewables (TWh)": 76.09}, {"Year": 2002, "Entity": "France", "Value_co2_emissions_kt_by_country": 371019.989, "Electricity from fossil fuels (TWh)": 52.67, "Electricity from nuclear (TWh)": 436.76, "Electricity from renewables (TWh)": 62.69}, {"Year": 2003, "Entity": "France", "Value_co2_emissions_kt_by_country": 376709.9915, "Electricity from fossil fuels (TWh)": 57.38, "Electricity from nuclear (TWh)": 441.07, "Electricity from renewables (TWh)": 61.47}, {"Year": 2004, "Entity": "France", "Value_co2_emissions_kt_by_country": 377790.0085, "Electricity from fossil fuels (TWh)": 56.53, "Electricity from nuclear (TWh)": 448.24, "Electricity from renewables (TWh)": 62.42}, {"Year": 2005, "Entity": "France", "Value_co2_emissions_kt_by_country": 380660.0037, "Electricity from fossil fuels (TWh)": 63.35, "Electricity from nuclear (TWh)": 451.53, "Electricity from renewables (TWh)": 54.98}, {"Year": 2006, "Entity": "France", "Value_co2_emissions_kt_by_country": 371549.9878, "Electricity from fossil fuels (TWh)": 56.9, "Electricity from nuclear (TWh)": 450.19, "Electricity from renewables (TWh)": 60.91}, {"Year": 2007, "Entity": "France", "Value_co2_emissions_kt_by_country": 362829.9866, "Electricity from fossil fuels (TWh)": 58.18, "Electricity from nuclear (TWh)": 439.73, "Electricity from renewables (TWh)": 64.3}, {"Year": 2008, "Entity": "France", "Value_co2_emissions_kt_by_country": 357989.9902, "Electricity from fossil fuels (TWh)": 55.57, "Electricity from nuclear (TWh)": 439.45, "Electricity from renewables (TWh)": 72.33}, {"Year": 2009, "Entity": "France", "Value_co2_emissions_kt_by_country": 343730.011, "Electricity from fossil fuels (TWh)": 51.32, "Electricity from nuclear (TWh)": 409.74, "Electricity from renewables (TWh)": 68.15}, {"Year": 2010, "Entity": "France", "Value_co2_emissions_kt_by_country": 347779.9988, "Electricity from fossil fuels (TWh)": 57.63, "Electricity from nuclear (TWh)": 428.52, "Electricity from renewables (TWh)": 76.68}, {"Year": 2011, "Entity": "France", "Value_co2_emissions_kt_by_country": 335140.0146, "Electricity from fossil fuels (TWh)": 58.99, "Electricity from nuclear (TWh)": 442.39, "Electricity from renewables (TWh)": 66.02}, {"Year": 2012, "Entity": "France", "Value_co2_emissions_kt_by_country": 338420.0134, "Electricity from fossil fuels (TWh)": 56.42, "Electricity from nuclear (TWh)": 425.41, "Electricity from renewables (TWh)": 85.25}, {"Year": 2013, "Entity": "France", "Value_co2_emissions_kt_by_country": 338559.9976, "Electricity from fossil fuels (TWh)": 53.35, "Electricity from nuclear (TWh)": 423.68, "Electricity from renewables (TWh)": 99.42}, {"Year": 2014, "Entity": "France", "Value_co2_emissions_kt_by_country": 306100.0061, "Electricity from fossil fuels (TWh)": 35.68, "Electricity from nuclear (TWh)": 436.48, "Electricity from renewables (TWh)": 94.03}, {"Year": 2015, "Entity": "France", "Value_co2_emissions_kt_by_country": 311299.9878, "Electricity from fossil fuels (TWh)": 44.65, "Electricity from nuclear (TWh)": 437.43, "Electricity from renewables (TWh)": 91.84}, {"Year": 2016, "Entity": "France", "Value_co2_emissions_kt_by_country": 313920.0134, "Electricity from fossil fuels (TWh)": 56.45, "Electricity from nuclear (TWh)": 403.2, "Electricity from renewables (TWh)": 99}, {"Year": 2017, "Entity": "France", "Value_co2_emissions_kt_by_country": 317829.9866, "Electricity from fossil fuels (TWh)": 65.09, "Electricity from nuclear (TWh)": 398.36, "Electricity from renewables (TWh)": 92.63}, {"Year": 2018, "Entity": "France", "Value_co2_emissions_kt_by_country": 307049.9878, "Electricity from fossil fuels (TWh)": 49.27, "Electricity from nuclear (TWh)": 412.94, "Electricity from renewables (TWh)": 113.62}, {"Year": 2019, "Entity": "France", "Value_co2_emissions_kt_by_country": 300519.989, "Electricity from fossil fuels (TWh)": 53.5, "Electricity from nuclear (TWh)": 399.01, "Electricity from renewables (TWh)": 113.21}, {"Year": 2020, "Entity": "France", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 48.14, "Electricity from nuclear (TWh)": 353.83, "Electricity from renewables (TWh)": 125.28}, {"Year": 2000, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 830280, "Electricity from fossil fuels (TWh)": 367.22, "Electricity from nuclear (TWh)": 169.61, "Electricity from renewables (TWh)": 35.47}, {"Year": 2001, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 847680, "Electricity from fossil fuels (TWh)": 372.69, "Electricity from nuclear (TWh)": 171.3, "Electricity from renewables (TWh)": 37.9}, {"Year": 2002, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 833380.0049, "Electricity from fossil fuels (TWh)": 372.64, "Electricity from nuclear (TWh)": 164.84, "Electricity from renewables (TWh)": 44.48}, {"Year": 2003, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 836789.978, "Electricity from fossil fuels (TWh)": 390.81, "Electricity from nuclear (TWh)": 165.06, "Electricity from renewables (TWh)": 46.67}, {"Year": 2004, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 821070.0073, "Electricity from fossil fuels (TWh)": 385.24, "Electricity from nuclear (TWh)": 167.07, "Electricity from renewables (TWh)": 57.97}, {"Year": 2005, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 802380.0049, "Electricity from fossil fuels (TWh)": 386.96, "Electricity from nuclear (TWh)": 163.05, "Electricity from renewables (TWh)": 63.4}, {"Year": 2006, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 814409.9731, "Electricity from fossil fuels (TWh)": 390.03, "Electricity from nuclear (TWh)": 167.27, "Electricity from renewables (TWh)": 72.51}, {"Year": 2007, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 783799.9878, "Electricity from fossil fuels (TWh)": 402.4, "Electricity from nuclear (TWh)": 140.53, "Electricity from renewables (TWh)": 89.38}, {"Year": 2008, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 789690.0024, "Electricity from fossil fuels (TWh)": 390.43, "Electricity from nuclear (TWh)": 148.49, "Electricity from renewables (TWh)": 94.28}, {"Year": 2009, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 734809.9976, "Electricity from fossil fuels (TWh)": 358.07, "Electricity from nuclear (TWh)": 134.93, "Electricity from renewables (TWh)": 95.94}, {"Year": 2010, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 773070.0073, "Electricity from fossil fuels (TWh)": 378.9, "Electricity from nuclear (TWh)": 140.56, "Electricity from renewables (TWh)": 105.18}, {"Year": 2011, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 746479.9805, "Electricity from fossil fuels (TWh)": 373.16, "Electricity from nuclear (TWh)": 107.97, "Electricity from renewables (TWh)": 124.04}, {"Year": 2012, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 760130.0049, "Electricity from fossil fuels (TWh)": 377.89, "Electricity from nuclear (TWh)": 99.46, "Electricity from renewables (TWh)": 143.04}, {"Year": 2013, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 776150.0244, "Electricity from fossil fuels (TWh)": 381.52, "Electricity from nuclear (TWh)": 97.29, "Electricity from renewables (TWh)": 152.34}, {"Year": 2014, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 736010.0098, "Electricity from fossil fuels (TWh)": 360.28, "Electricity from nuclear (TWh)": 97.13, "Electricity from renewables (TWh)": 162.54}, {"Year": 2015, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 742309.9976, "Electricity from fossil fuels (TWh)": 359.99, "Electricity from nuclear (TWh)": 91.79, "Electricity from renewables (TWh)": 188.79}, {"Year": 2016, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 747150.0244, "Electricity from fossil fuels (TWh)": 368.67, "Electricity from nuclear (TWh)": 84.63, "Electricity from renewables (TWh)": 189.67}, {"Year": 2017, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 732200.0122, "Electricity from fossil fuels (TWh)": 353.37, "Electricity from nuclear (TWh)": 76.32, "Electricity from renewables (TWh)": 216.32}, {"Year": 2018, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 707700.0122, "Electricity from fossil fuels (TWh)": 334.65, "Electricity from nuclear (TWh)": 76, "Electricity from renewables (TWh)": 222.07}, {"Year": 2019, "Entity": "Germany", "Value_co2_emissions_kt_by_country": 657400.0244, "Electricity from fossil fuels (TWh)": 284.09, "Electricity from nuclear (TWh)": 75.07, "Electricity from renewables (TWh)": 240.33}, {"Year": 2020, "Entity": "Germany", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 251.4, "Electricity from nuclear (TWh)": 64.38, "Electricity from renewables (TWh)": 251.48}, {"Year": 2000, "Entity": "India", "Value_co2_emissions_kt_by_country": 937860, "Electricity from fossil fuels (TWh)": 475.35, "Electricity from nuclear (TWh)": 15.77, "Electricity from renewables (TWh)": 80.27}, {"Year": 2001, "Entity": "India", "Value_co2_emissions_kt_by_country": 953540, "Electricity from fossil fuels (TWh)": 491.01, "Electricity from nuclear (TWh)": 18.89, "Electricity from renewables (TWh)": 76.19}, {"Year": 2002, "Entity": "India", "Value_co2_emissions_kt_by_country": 985450.0122, "Electricity from fossil fuels (TWh)": 517.51, "Electricity from nuclear (TWh)": 19.35, "Electricity from renewables (TWh)": 72.78}, {"Year": 2003, "Entity": "India", "Value_co2_emissions_kt_by_country": 1011770.02, "Electricity from fossil fuels (TWh)": 545.36, "Electricity from nuclear (TWh)": 18.14, "Electricity from renewables (TWh)": 74.63}, {"Year": 2004, "Entity": "India", "Value_co2_emissions_kt_by_country": 1085670.044, "Electricity from fossil fuels (TWh)": 567.86, "Electricity from nuclear (TWh)": 21.26, "Electricity from renewables (TWh)": 109.2}, {"Year": 2005, "Entity": "India", "Value_co2_emissions_kt_by_country": 1136469.971, "Electricity from fossil fuels (TWh)": 579.32, "Electricity from nuclear (TWh)": 17.73, "Electricity from renewables (TWh)": 107.47}, {"Year": 2006, "Entity": "India", "Value_co2_emissions_kt_by_country": 1215209.961, "Electricity from fossil fuels (TWh)": 599.24, "Electricity from nuclear (TWh)": 17.63, "Electricity from renewables (TWh)": 127.56}, {"Year": 2007, "Entity": "India", "Value_co2_emissions_kt_by_country": 1336739.99, "Electricity from fossil fuels (TWh)": 636.68, "Electricity from nuclear (TWh)": 17.83, "Electricity from renewables (TWh)": 141.75}, {"Year": 2008, "Entity": "India", "Value_co2_emissions_kt_by_country": 1424380.005, "Electricity from fossil fuels (TWh)": 674.27, "Electricity from nuclear (TWh)": 15.23, "Electricity from renewables (TWh)": 138.91}, {"Year": 2009, "Entity": "India", "Value_co2_emissions_kt_by_country": 1564880.005, "Electricity from fossil fuels (TWh)": 728.56, "Electricity from nuclear (TWh)": 16.82, "Electricity from renewables (TWh)": 134.33}, {"Year": 2010, "Entity": "India", "Value_co2_emissions_kt_by_country": 1659979.98, "Electricity from fossil fuels (TWh)": 771.78, "Electricity from nuclear (TWh)": 23.08, "Electricity from renewables (TWh)": 142.61}, {"Year": 2011, "Entity": "India", "Value_co2_emissions_kt_by_country": 1756739.99, "Electricity from fossil fuels (TWh)": 828.16, "Electricity from nuclear (TWh)": 32.22, "Electricity from renewables (TWh)": 173.62}, {"Year": 2012, "Entity": "India", "Value_co2_emissions_kt_by_country": 1909439.941, "Electricity from fossil fuels (TWh)": 893.45, "Electricity from nuclear (TWh)": 33.14, "Electricity from renewables (TWh)": 165.25}, {"Year": 2013, "Entity": "India", "Value_co2_emissions_kt_by_country": 1972430.054, "Electricity from fossil fuels (TWh)": 924.93, "Electricity from nuclear (TWh)": 33.31, "Electricity from renewables (TWh)": 187.9}, {"Year": 2014, "Entity": "India", "Value_co2_emissions_kt_by_country": 2147110.107, "Electricity from fossil fuels (TWh)": 1025.29, "Electricity from nuclear (TWh)": 34.69, "Electricity from renewables (TWh)": 202.04}, {"Year": 2015, "Entity": "India", "Value_co2_emissions_kt_by_country": 2158020.02, "Electricity from fossil fuels (TWh)": 1080.44, "Electricity from nuclear (TWh)": 38.31, "Electricity from renewables (TWh)": 203.21}, {"Year": 2016, "Entity": "India", "Value_co2_emissions_kt_by_country": 2195250, "Electricity from fossil fuels (TWh)": 1155.52, "Electricity from nuclear (TWh)": 37.9, "Electricity from renewables (TWh)": 208.21}, {"Year": 2017, "Entity": "India", "Value_co2_emissions_kt_by_country": 2320409.912, "Electricity from fossil fuels (TWh)": 1198.85, "Electricity from nuclear (TWh)": 37.41, "Electricity from renewables (TWh)": 234.9}, {"Year": 2018, "Entity": "India", "Value_co2_emissions_kt_by_country": 2451929.932, "Electricity from fossil fuels (TWh)": 1276.32, "Electricity from nuclear (TWh)": 39.05, "Electricity from renewables (TWh)": 263.61}, {"Year": 2019, "Entity": "India", "Value_co2_emissions_kt_by_country": 2456300.049, "Electricity from fossil fuels (TWh)": 1273.59, "Electricity from nuclear (TWh)": 45.16, "Electricity from renewables (TWh)": 303.16}, {"Year": 2020, "Entity": "India", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 1202.34, "Electricity from nuclear (TWh)": 44.61, "Electricity from renewables (TWh)": 315.76}, {"Year": 2000, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 280650, "Electricity from fossil fuels (TWh)": 78.43, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 19.6}, {"Year": 2001, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 302060, "Electricity from fossil fuels (TWh)": 83.96, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 22.19}, {"Year": 2002, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 305640.0146, "Electricity from fossil fuels (TWh)": 92.03, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 21}, {"Year": 2003, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 333890.0146, "Electricity from fossil fuels (TWh)": 97.57, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 19.82}, {"Year": 2004, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 341239.9902, "Electricity from fossil fuels (TWh)": 103.8, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 20.97}, {"Year": 2005, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 342149.9939, "Electricity from fossil fuels (TWh)": 110.22, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 22.66}, {"Year": 2006, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 364470.0012, "Electricity from fossil fuels (TWh)": 116.8, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 21.18}, {"Year": 2007, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 379959.9915, "Electricity from fossil fuels (TWh)": 124.1, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 24.29}, {"Year": 2008, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 376140.0146, "Electricity from fossil fuels (TWh)": 129.55, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 26.34}, {"Year": 2009, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 391079.9866, "Electricity from fossil fuels (TWh)": 136.05, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 26.79}, {"Year": 2010, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 415519.989, "Electricity from fossil fuels (TWh)": 142.88, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 34.63}, {"Year": 2011, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 475309.9976, "Electricity from fossil fuels (TWh)": 161.41, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 30.46}, {"Year": 2012, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 481510.0098, "Electricity from fossil fuels (TWh)": 177.83, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 31.11}, {"Year": 2013, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 447940.0024, "Electricity from fossil fuels (TWh)": 189.66, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 35.5}, {"Year": 2014, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 483910.0037, "Electricity from fossil fuels (TWh)": 203.11, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 34.41}, {"Year": 2015, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 488549.9878, "Electricity from fossil fuels (TWh)": 209.71, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 33.56}, {"Year": 2016, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 482510.0098, "Electricity from fossil fuels (TWh)": 217.97, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 39.58}, {"Year": 2017, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 517320.0073, "Electricity from fossil fuels (TWh)": 222.64, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 43.17}, {"Year": 2018, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 576989.9902, "Electricity from fossil fuels (TWh)": 235.41, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 48.38}, {"Year": 2019, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": 619840.0269, "Electricity from fossil fuels (TWh)": 247.39, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 48.04}, {"Year": 2020, "Entity": "Indonesia", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 238.91, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 52.91}, {"Year": 2000, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 436300, "Electricity from fossil fuels (TWh)": 218.28, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 50.87}, {"Year": 2001, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 436570, "Electricity from fossil fuels (TWh)": 216.73, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 54.35}, {"Year": 2002, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 443470.0012, "Electricity from fossil fuels (TWh)": 228.45, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 48.31}, {"Year": 2003, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 462200.0122, "Electricity from fossil fuels (TWh)": 238.52, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 46.86}, {"Year": 2004, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 472399.9939, "Electricity from fossil fuels (TWh)": 240.95, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 53.88}, {"Year": 2005, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 473829.9866, "Electricity from fossil fuels (TWh)": 247.29, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 48.43}, {"Year": 2006, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 466649.9939, "Electricity from fossil fuels (TWh)": 256.03, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 50.64}, {"Year": 2007, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 459369.9951, "Electricity from fossil fuels (TWh)": 259.49, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 47.72}, {"Year": 2008, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 444980.011, "Electricity from fossil fuels (TWh)": 254.34, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 58.16}, {"Year": 2009, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 397059.9976, "Electricity from fossil fuels (TWh)": 218.32, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 69.26}, {"Year": 2010, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 405269.989, "Electricity from fossil fuels (TWh)": 220.93, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 76.98}, {"Year": 2011, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 396690.0024, "Electricity from fossil fuels (TWh)": 216.78, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 82.96}, {"Year": 2012, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 376750, "Electricity from fossil fuels (TWh)": 204.26, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 92.22}, {"Year": 2013, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 346459.9915, "Electricity from fossil fuels (TWh)": 175.07, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 112}, {"Year": 2014, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 327500, "Electricity from fossil fuels (TWh)": 156.76, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 120.68}, {"Year": 2015, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 337859.9854, "Electricity from fossil fuels (TWh)": 172.06, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 108.89}, {"Year": 2016, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 333339.9963, "Electricity from fossil fuels (TWh)": 179.19, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 108.01}, {"Year": 2017, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 329190.0024, "Electricity from fossil fuels (TWh)": 189.44, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 103.89}, {"Year": 2018, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 324880.0049, "Electricity from fossil fuels (TWh)": 172.98, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 114.41}, {"Year": 2019, "Entity": "Italy", "Value_co2_emissions_kt_by_country": 317239.9902, "Electricity from fossil fuels (TWh)": 175.52, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 115.83}, {"Year": 2020, "Entity": "Italy", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 161.17, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 116.9}, {"Year": 2000, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1182610, "Electricity from fossil fuels (TWh)": 578.29, "Electricity from nuclear (TWh)": 305.95, "Electricity from renewables (TWh)": 104.16}, {"Year": 2001, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1170380, "Electricity from fossil fuels (TWh)": 564.95, "Electricity from nuclear (TWh)": 303.86, "Electricity from renewables (TWh)": 101.36}, {"Year": 2002, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1206599.976, "Electricity from fossil fuels (TWh)": 605.12, "Electricity from nuclear (TWh)": 280.34, "Electricity from renewables (TWh)": 101.1}, {"Year": 2003, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1214949.951, "Electricity from fossil fuels (TWh)": 633.76, "Electricity from nuclear (TWh)": 228.01, "Electricity from renewables (TWh)": 114.18}, {"Year": 2004, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1209849.976, "Electricity from fossil fuels (TWh)": 621.6, "Electricity from nuclear (TWh)": 268.32, "Electricity from renewables (TWh)": 114.73}, {"Year": 2005, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1212819.946, "Electricity from fossil fuels (TWh)": 634.09, "Electricity from nuclear (TWh)": 280.5, "Electricity from renewables (TWh)": 100.57}, {"Year": 2006, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1189520.02, "Electricity from fossil fuels (TWh)": 628.77, "Electricity from nuclear (TWh)": 291.54, "Electricity from renewables (TWh)": 112.07}, {"Year": 2007, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1225069.946, "Electricity from fossil fuels (TWh)": 705.37, "Electricity from nuclear (TWh)": 267.34, "Electricity from renewables (TWh)": 100.8}, {"Year": 2008, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1158219.971, "Electricity from fossil fuels (TWh)": 663.88, "Electricity from nuclear (TWh)": 241.25, "Electricity from renewables (TWh)": 100.79}, {"Year": 2009, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1100979.98, "Electricity from fossil fuels (TWh)": 611.86, "Electricity from nuclear (TWh)": 263.05, "Electricity from renewables (TWh)": 102.28}, {"Year": 2010, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1156479.98, "Electricity from fossil fuels (TWh)": 689.89, "Electricity from nuclear (TWh)": 278.36, "Electricity from renewables (TWh)": 113.92}, {"Year": 2011, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1213520.02, "Electricity from fossil fuels (TWh)": 777.1, "Electricity from nuclear (TWh)": 153.38, "Electricity from renewables (TWh)": 116.5}, {"Year": 2012, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1253609.985, "Electricity from fossil fuels (TWh)": 920.39, "Electricity from nuclear (TWh)": 15.12, "Electricity from renewables (TWh)": 111.09}, {"Year": 2013, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1262780.029, "Electricity from fossil fuels (TWh)": 897.88, "Electricity from nuclear (TWh)": 10.43, "Electricity from renewables (TWh)": 121.48}, {"Year": 2014, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1217119.995, "Electricity from fossil fuels (TWh)": 892.18, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 136.53}, {"Year": 2015, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1179439.941, "Electricity from fossil fuels (TWh)": 844.23, "Electricity from nuclear (TWh)": 3.24, "Electricity from renewables (TWh)": 157.34}, {"Year": 2016, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1167790.039, "Electricity from fossil fuels (TWh)": 832.4, "Electricity from nuclear (TWh)": 14.87, "Electricity from renewables (TWh)": 157.7}, {"Year": 2017, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1155229.98, "Electricity from fossil fuels (TWh)": 806.12, "Electricity from nuclear (TWh)": 27.75, "Electricity from renewables (TWh)": 175.12}, {"Year": 2018, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1116150.024, "Electricity from fossil fuels (TWh)": 780.61, "Electricity from nuclear (TWh)": 47.82, "Electricity from renewables (TWh)": 183.63}, {"Year": 2019, "Entity": "Japan", "Value_co2_emissions_kt_by_country": 1081569.946, "Electricity from fossil fuels (TWh)": 735.66, "Electricity from nuclear (TWh)": 63.88, "Electricity from renewables (TWh)": 192.72}, {"Year": 2020, "Entity": "Japan", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 716.67, "Electricity from nuclear (TWh)": 41.86, "Electricity from renewables (TWh)": 205.6}, {"Year": 2000, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 120150, "Electricity from fossil fuels (TWh)": 44.11, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 7.53}, {"Year": 2001, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 117440, "Electricity from fossil fuels (TWh)": 47.3, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 8.08}, {"Year": 2002, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 131059.9976, "Electricity from fossil fuels (TWh)": 49.44, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 8.89}, {"Year": 2003, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 146139.9994, "Electricity from fossil fuels (TWh)": 55.24, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 8.62}, {"Year": 2004, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 158029.9988, "Electricity from fossil fuels (TWh)": 58.89, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 8.06}, {"Year": 2005, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 169210.0067, "Electricity from fossil fuels (TWh)": 60.06, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 7.86}, {"Year": 2006, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 185300.0031, "Electricity from fossil fuels (TWh)": 63.89, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 7.77}, {"Year": 2007, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 198389.9994, "Electricity from fossil fuels (TWh)": 68.45, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 8.17}, {"Year": 2008, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 242029.9988, "Electricity from fossil fuels (TWh)": 72.89, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 7.46}, {"Year": 2009, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 213610.0006, "Electricity from fossil fuels (TWh)": 71.85, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 6.88}, {"Year": 2010, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 229699.9969, "Electricity from fossil fuels (TWh)": 74.63, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 8.02}, {"Year": 2011, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 245449.9969, "Electricity from fossil fuels (TWh)": 78.7, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 7.88}, {"Year": 2012, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 244600.0061, "Electricity from fossil fuels (TWh)": 82.98, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 7.64}, {"Year": 2013, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 260010.0098, "Electricity from fossil fuels (TWh)": 84.88, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 7.73}, {"Year": 2014, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 209229.9957, "Electricity from fossil fuels (TWh)": 86.37, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 8.27}, {"Year": 2015, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 190729.9957, "Electricity from fossil fuels (TWh)": 82.2, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 9.45}, {"Year": 2016, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 202149.9939, "Electricity from fossil fuels (TWh)": 82.65, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 11.98}, {"Year": 2017, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 214580.0018, "Electricity from fossil fuels (TWh)": 91.48, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 11.64}, {"Year": 2018, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 216600.0061, "Electricity from fossil fuels (TWh)": 96.36, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 10.91}, {"Year": 2019, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": 212110.0006, "Electricity from fossil fuels (TWh)": 95.39, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 11.09}, {"Year": 2020, "Entity": "Kazakhstan", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 96.7, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 11.94}, {"Year": 2000, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 379180, "Electricity from fossil fuels (TWh)": 141.8, "Electricity from nuclear (TWh)": 7.81, "Electricity from renewables (TWh)": 44.51}, {"Year": 2001, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 378830, "Electricity from fossil fuels (TWh)": 153.32, "Electricity from nuclear (TWh)": 8.29, "Electricity from renewables (TWh)": 39.56}, {"Year": 2002, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 386000, "Electricity from fossil fuels (TWh)": 159.81, "Electricity from nuclear (TWh)": 9.26, "Electricity from renewables (TWh)": 35.67}, {"Year": 2003, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 404690.0024, "Electricity from fossil fuels (TWh)": 160.45, "Electricity from nuclear (TWh)": 9.98, "Electricity from renewables (TWh)": 32.11}, {"Year": 2004, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 414100.0061, "Electricity from fossil fuels (TWh)": 173.66, "Electricity from nuclear (TWh)": 8.73, "Electricity from renewables (TWh)": 38.19}, {"Year": 2005, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 432190.0024, "Electricity from fossil fuels (TWh)": 178.76, "Electricity from nuclear (TWh)": 10.32, "Electricity from renewables (TWh)": 42.29}, {"Year": 2006, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 448299.9878, "Electricity from fossil fuels (TWh)": 182.76, "Electricity from nuclear (TWh)": 10.4, "Electricity from renewables (TWh)": 43.63}, {"Year": 2007, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 457119.9951, "Electricity from fossil fuels (TWh)": 191.83, "Electricity from nuclear (TWh)": 9.95, "Electricity from renewables (TWh)": 42.14}, {"Year": 2008, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 459549.9878, "Electricity from fossil fuels (TWh)": 184.51, "Electricity from nuclear (TWh)": 9.36, "Electricity from renewables (TWh)": 53.22}, {"Year": 2009, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 448369.9951, "Electricity from fossil fuels (TWh)": 194.75, "Electricity from nuclear (TWh)": 10.11, "Electricity from renewables (TWh)": 40.59}, {"Year": 2010, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 462869.9951, "Electricity from fossil fuels (TWh)": 207.38, "Electricity from nuclear (TWh)": 5.66, "Electricity from renewables (TWh)": 51.37}, {"Year": 2011, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 478399.9939, "Electricity from fossil fuels (TWh)": 219.88, "Electricity from nuclear (TWh)": 9.66, "Electricity from renewables (TWh)": 50.7}, {"Year": 2012, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 486450.0122, "Electricity from fossil fuels (TWh)": 229.14, "Electricity from nuclear (TWh)": 8.41, "Electricity from renewables (TWh)": 47.2}, {"Year": 2013, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 475739.9902, "Electricity from fossil fuels (TWh)": 231.23, "Electricity from nuclear (TWh)": 11.38, "Electricity from renewables (TWh)": 44.67}, {"Year": 2014, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 462239.9902, "Electricity from fossil fuels (TWh)": 223.43, "Electricity from nuclear (TWh)": 9.3, "Electricity from renewables (TWh)": 57.46}, {"Year": 2015, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 471630.0049, "Electricity from fossil fuels (TWh)": 234.28, "Electricity from nuclear (TWh)": 11.18, "Electricity from renewables (TWh)": 52.42}, {"Year": 2016, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 473309.9976, "Electricity from fossil fuels (TWh)": 239.78, "Electricity from nuclear (TWh)": 10.27, "Electricity from renewables (TWh)": 52.97}, {"Year": 2017, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 471579.9866, "Electricity from fossil fuels (TWh)": 242.69, "Electricity from nuclear (TWh)": 10.57, "Electricity from renewables (TWh)": 55.88}, {"Year": 2018, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 452570.0073, "Electricity from fossil fuels (TWh)": 259.92, "Electricity from nuclear (TWh)": 13.32, "Electricity from renewables (TWh)": 58.78}, {"Year": 2019, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": 449269.989, "Electricity from fossil fuels (TWh)": 248.2, "Electricity from nuclear (TWh)": 10.88, "Electricity from renewables (TWh)": 59}, {"Year": 2020, "Entity": "Mexico", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 245.46, "Electricity from nuclear (TWh)": 10.87, "Electricity from renewables (TWh)": 69.19}, {"Year": 2000, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 295770, "Electricity from fossil fuels (TWh)": 140.85, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 2.33}, {"Year": 2001, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 293630, "Electricity from fossil fuels (TWh)": 140.94, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 2.78}, {"Year": 2002, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 287320.0073, "Electricity from fossil fuels (TWh)": 139.72, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 2.77}, {"Year": 2003, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 297730.011, "Electricity from fossil fuels (TWh)": 147.76, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 2.25}, {"Year": 2004, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 301850.0061, "Electricity from fossil fuels (TWh)": 149.06, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 3.2}, {"Year": 2005, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 301350.0061, "Electricity from fossil fuels (TWh)": 151.2, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 3.85}, {"Year": 2006, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 314089.9963, "Electricity from fossil fuels (TWh)": 156.16, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 4.29}, {"Year": 2007, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 313380.0049, "Electricity from fossil fuels (TWh)": 153.08, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 5.43}, {"Year": 2008, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 308329.9866, "Electricity from fossil fuels (TWh)": 148.03, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 6.61}, {"Year": 2009, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 297260.0098, "Electricity from fossil fuels (TWh)": 142.4, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 8.69}, {"Year": 2010, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 313739.9902, "Electricity from fossil fuels (TWh)": 146.12, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 10.88}, {"Year": 2011, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 310589.9963, "Electricity from fossil fuels (TWh)": 149.88, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 13.13}, {"Year": 2012, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 303350.0061, "Electricity from fossil fuels (TWh)": 144.75, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 16.88}, {"Year": 2013, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 298299.9878, "Electricity from fossil fuels (TWh)": 146.85, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 17.06}, {"Year": 2014, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 285730.011, "Electricity from fossil fuels (TWh)": 138.53, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 19.85}, {"Year": 2015, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 289079.9866, "Electricity from fossil fuels (TWh)": 141.55, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 22.69}, {"Year": 2016, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 299799.9878, "Electricity from fossil fuels (TWh)": 143.28, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 22.81}, {"Year": 2017, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 312859.9854, "Electricity from fossil fuels (TWh)": 145.8, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 24.13}, {"Year": 2018, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 311910.0037, "Electricity from fossil fuels (TWh)": 147.87, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 21.62}, {"Year": 2019, "Entity": "Poland", "Value_co2_emissions_kt_by_country": 295130.0049, "Electricity from fossil fuels (TWh)": 137.58, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 25.46}, {"Year": 2020, "Entity": "Poland", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 128.91, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 28.23}, {"Year": 2000, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 249660, "Electricity from fossil fuels (TWh)": 138.68, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2001, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 254090, "Electricity from fossil fuels (TWh)": 146.09, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2002, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 272250, "Electricity from fossil fuels (TWh)": 154.91, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2003, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 284829.9866, "Electricity from fossil fuels (TWh)": 166.58, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2004, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 299890.0146, "Electricity from fossil fuels (TWh)": 173.41, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2005, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 315290.0085, "Electricity from fossil fuels (TWh)": 191.05, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2006, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 335440.0024, "Electricity from fossil fuels (TWh)": 196.31, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2007, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 354619.9951, "Electricity from fossil fuels (TWh)": 204.43, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2008, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 389720.0012, "Electricity from fossil fuels (TWh)": 204.2, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2009, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 406529.9988, "Electricity from fossil fuels (TWh)": 217.31, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2010, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 446130.0049, "Electricity from fossil fuels (TWh)": 240.06, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0}, {"Year": 2011, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 463769.989, "Electricity from fossil fuels (TWh)": 250.07, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.01}, {"Year": 2012, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 492470.0012, "Electricity from fossil fuels (TWh)": 271.68, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.03}, {"Year": 2013, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 503209.9915, "Electricity from fossil fuels (TWh)": 284.02, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.04}, {"Year": 2014, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 540520.0195, "Electricity from fossil fuels (TWh)": 311.81, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.05}, {"Year": 2015, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 565190.0024, "Electricity from fossil fuels (TWh)": 338.34, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.05}, {"Year": 2016, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 561229.9805, "Electricity from fossil fuels (TWh)": 337.38, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.05}, {"Year": 2017, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 545070.0073, "Electricity from fossil fuels (TWh)": 354.3, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.07}, {"Year": 2018, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 521260.0098, "Electricity from fossil fuels (TWh)": 334.7, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.16}, {"Year": 2019, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": 523780.0293, "Electricity from fossil fuels (TWh)": 335.24, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.21}, {"Year": 2020, "Entity": "Saudi Arabia", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 337.82, "Electricity from nuclear (TWh)": null, "Electricity from renewables (TWh)": 0.21}, {"Year": 2000, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 284660, "Electricity from fossil fuels (TWh)": 181.67, "Electricity from nuclear (TWh)": 13.01, "Electricity from renewables (TWh)": 1.79}, {"Year": 2001, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 320540, "Electricity from fossil fuels (TWh)": 183.36, "Electricity from nuclear (TWh)": 10.72, "Electricity from renewables (TWh)": 2.46}, {"Year": 2002, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 331320.0073, "Electricity from fossil fuels (TWh)": 188.79, "Electricity from nuclear (TWh)": 11.99, "Electricity from renewables (TWh)": 2.81}, {"Year": 2003, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 353089.9963, "Electricity from fossil fuels (TWh)": 204.39, "Electricity from nuclear (TWh)": 12.66, "Electricity from renewables (TWh)": 1.19}, {"Year": 2004, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 379989.9902, "Electricity from fossil fuels (TWh)": 212.63, "Electricity from nuclear (TWh)": 14.28, "Electricity from renewables (TWh)": 1.33}, {"Year": 2005, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 377649.9939, "Electricity from fossil fuels (TWh)": 215.23, "Electricity from nuclear (TWh)": 12.24, "Electricity from renewables (TWh)": 1.75}, {"Year": 2006, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 379790.0085, "Electricity from fossil fuels (TWh)": 223.25, "Electricity from nuclear (TWh)": 10.07, "Electricity from renewables (TWh)": 3.28}, {"Year": 2007, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 397059.9976, "Electricity from fossil fuels (TWh)": 232.91, "Electricity from nuclear (TWh)": 12.6, "Electricity from renewables (TWh)": 1.3}, {"Year": 2008, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 426739.9902, "Electricity from fossil fuels (TWh)": 226.32, "Electricity from nuclear (TWh)": 12.75, "Electricity from renewables (TWh)": 1.66}, {"Year": 2009, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 404200.0122, "Electricity from fossil fuels (TWh)": 218.17, "Electricity from nuclear (TWh)": 11.57, "Electricity from renewables (TWh)": 1.86}, {"Year": 2010, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 425309.9976, "Electricity from fossil fuels (TWh)": 227.57, "Electricity from nuclear (TWh)": 12.9, "Electricity from renewables (TWh)": 2.51}, {"Year": 2011, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 409260.0098, "Electricity from fossil fuels (TWh)": 229.06, "Electricity from nuclear (TWh)": 12.94, "Electricity from renewables (TWh)": 2.49}, {"Year": 2012, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 426779.9988, "Electricity from fossil fuels (TWh)": 226.84, "Electricity from nuclear (TWh)": 12.4, "Electricity from renewables (TWh)": 1.66}, {"Year": 2013, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 436920.0134, "Electricity from fossil fuels (TWh)": 223.28, "Electricity from nuclear (TWh)": 13.61, "Electricity from renewables (TWh)": 1.62}, {"Year": 2014, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 447929.9927, "Electricity from fossil fuels (TWh)": 218.42, "Electricity from nuclear (TWh)": 14.76, "Electricity from renewables (TWh)": 3.38}, {"Year": 2015, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 424809.9976, "Electricity from fossil fuels (TWh)": 214.88, "Electricity from nuclear (TWh)": 10.97, "Electricity from renewables (TWh)": 6.09}, {"Year": 2016, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 425140.0146, "Electricity from fossil fuels (TWh)": 213.09, "Electricity from nuclear (TWh)": 15.21, "Electricity from renewables (TWh)": 7.69}, {"Year": 2017, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 435649.9939, "Electricity from fossil fuels (TWh)": 212.77, "Electricity from nuclear (TWh)": 15.09, "Electricity from renewables (TWh)": 10.04}, {"Year": 2018, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 434350.0061, "Electricity from fossil fuels (TWh)": 214.25, "Electricity from nuclear (TWh)": 10.56, "Electricity from renewables (TWh)": 12.22}, {"Year": 2019, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": 439640.0146, "Electricity from fossil fuels (TWh)": 208.39, "Electricity from nuclear (TWh)": 13.6, "Electricity from renewables (TWh)": 12.57}, {"Year": 2020, "Entity": "South Africa", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 197.5, "Electricity from nuclear (TWh)": 11.62, "Electricity from renewables (TWh)": 12.83}, {"Year": 2000, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 293310, "Electricity from fossil fuels (TWh)": 124.22, "Electricity from nuclear (TWh)": 62.21, "Electricity from renewables (TWh)": 34.49}, {"Year": 2001, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 294790, "Electricity from fossil fuels (TWh)": 120.06, "Electricity from nuclear (TWh)": 63.71, "Electricity from renewables (TWh)": 49.3}, {"Year": 2002, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 312750, "Electricity from fossil fuels (TWh)": 143.72, "Electricity from nuclear (TWh)": 63.02, "Electricity from renewables (TWh)": 33.17}, {"Year": 2003, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 318660.0037, "Electricity from fossil fuels (TWh)": 139.67, "Electricity from nuclear (TWh)": 61.88, "Electricity from renewables (TWh)": 55.75}, {"Year": 2004, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 335559.9976, "Electricity from fossil fuels (TWh)": 159.91, "Electricity from nuclear (TWh)": 63.61, "Electricity from renewables (TWh)": 50.13}, {"Year": 2005, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 350500, "Electricity from fossil fuels (TWh)": 184.65, "Electricity from nuclear (TWh)": 57.54, "Electricity from renewables (TWh)": 42.27}, {"Year": 2006, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 341779.9988, "Electricity from fossil fuels (TWh)": 182.98, "Electricity from nuclear (TWh)": 60.13, "Electricity from renewables (TWh)": 52.15}, {"Year": 2007, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 354679.9927, "Electricity from fossil fuels (TWh)": 188.13, "Electricity from nuclear (TWh)": 55.1, "Electricity from renewables (TWh)": 58.3}, {"Year": 2008, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 324269.989, "Electricity from fossil fuels (TWh)": 189.55, "Electricity from nuclear (TWh)": 58.97, "Electricity from renewables (TWh)": 62.15}, {"Year": 2009, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 287489.9902, "Electricity from fossil fuels (TWh)": 164.69, "Electricity from nuclear (TWh)": 52.76, "Electricity from renewables (TWh)": 74.08}, {"Year": 2010, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 273250, "Electricity from fossil fuels (TWh)": 138.39, "Electricity from nuclear (TWh)": 61.99, "Electricity from renewables (TWh)": 97.77}, {"Year": 2011, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 274399.9939, "Electricity from fossil fuels (TWh)": 146.12, "Electricity from nuclear (TWh)": 57.72, "Electricity from renewables (TWh)": 87.53}, {"Year": 2012, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 269269.989, "Electricity from fossil fuels (TWh)": 145.33, "Electricity from nuclear (TWh)": 61.47, "Electricity from renewables (TWh)": 86.97}, {"Year": 2013, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 242809.9976, "Electricity from fossil fuels (TWh)": 113.32, "Electricity from nuclear (TWh)": 56.73, "Electricity from renewables (TWh)": 111.42}, {"Year": 2014, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 240960.0067, "Electricity from fossil fuels (TWh)": 107.37, "Electricity from nuclear (TWh)": 57.31, "Electricity from renewables (TWh)": 110.26}, {"Year": 2015, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 256279.9988, "Electricity from fossil fuels (TWh)": 123.19, "Electricity from nuclear (TWh)": 57.2, "Electricity from renewables (TWh)": 97.09}, {"Year": 2016, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 247029.9988, "Electricity from fossil fuels (TWh)": 107.93, "Electricity from nuclear (TWh)": 58.63, "Electricity from renewables (TWh)": 104.63}, {"Year": 2017, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 263450.0122, "Electricity from fossil fuels (TWh)": 126.93, "Electricity from nuclear (TWh)": 58.04, "Electricity from renewables (TWh)": 87.93}, {"Year": 2018, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 257040.0085, "Electricity from fossil fuels (TWh)": 112.23, "Electricity from nuclear (TWh)": 55.77, "Electricity from renewables (TWh)": 103.88}, {"Year": 2019, "Entity": "Spain", "Value_co2_emissions_kt_by_country": 239979.9957, "Electricity from fossil fuels (TWh)": 111.55, "Electricity from nuclear (TWh)": 58.35, "Electricity from renewables (TWh)": 100.99}, {"Year": 2020, "Entity": "Spain", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 87.64, "Electricity from nuclear (TWh)": 58.3, "Electricity from renewables (TWh)": 113.79}, {"Year": 2000, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 164490, "Electricity from fossil fuels (TWh)": 83.15, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 6.38}, {"Year": 2001, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 173160, "Electricity from fossil fuels (TWh)": 88.97, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 6.76}, {"Year": 2002, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 184240.0055, "Electricity from fossil fuels (TWh)": 93.51, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 8.07}, {"Year": 2003, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 191929.9927, "Electricity from fossil fuels (TWh)": 100.61, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 8.36}, {"Year": 2004, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 210190.0024, "Electricity from fossil fuels (TWh)": 109.46, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 7.63}, {"Year": 2005, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 217770.0043, "Electricity from fossil fuels (TWh)": 115.58, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 7.42}, {"Year": 2006, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 219880.0049, "Electricity from fossil fuels (TWh)": 119.41, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 9.82}, {"Year": 2007, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 224589.9963, "Electricity from fossil fuels (TWh)": 122.12, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 10.2}, {"Year": 2008, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 227580.0018, "Electricity from fossil fuels (TWh)": 127.43, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 8.95}, {"Year": 2009, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 220259.9945, "Electricity from fossil fuels (TWh)": 128.09, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 9.09}, {"Year": 2010, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 234380.0049, "Electricity from fossil fuels (TWh)": 141.72, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 8.58}, {"Year": 2011, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 233600.0061, "Electricity from fossil fuels (TWh)": 135.31, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 11.83}, {"Year": 2012, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 250679.9927, "Electricity from fossil fuels (TWh)": 143.73, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 13.42}, {"Year": 2013, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 260700.0122, "Electricity from fossil fuels (TWh)": 148.29, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 12.33}, {"Year": 2014, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 256799.9878, "Electricity from fossil fuels (TWh)": 149.26, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 13.68}, {"Year": 2015, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 264000, "Electricity from fossil fuels (TWh)": 153.4, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 13.33}, {"Year": 2016, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 261600.0061, "Electricity from fossil fuels (TWh)": 161.79, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 15.97}, {"Year": 2017, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 258820.0073, "Electricity from fossil fuels (TWh)": 161.88, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 19.92}, {"Year": 2018, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 257049.9878, "Electricity from fossil fuels (TWh)": 156.26, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 25.84}, {"Year": 2019, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": 267089.9963, "Electricity from fossil fuels (TWh)": 162.59, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 28.02}, {"Year": 2020, "Entity": "Thailand", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 154.52, "Electricity from nuclear (TWh)": 0, "Electricity from renewables (TWh)": 24.73}, {"Year": 2000, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 297380, "Electricity from fossil fuels (TWh)": 82.65, "Electricity from nuclear (TWh)": 77.34, "Electricity from renewables (TWh)": 11.28}, {"Year": 2001, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 300550, "Electricity from fossil fuels (TWh)": 84.59, "Electricity from nuclear (TWh)": 76.17, "Electricity from renewables (TWh)": 12.05}, {"Year": 2002, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 303940.0024, "Electricity from fossil fuels (TWh)": 85.93, "Electricity from nuclear (TWh)": 77.99, "Electricity from renewables (TWh)": 9.65}, {"Year": 2003, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 330230.011, "Electricity from fossil fuels (TWh)": 89.52, "Electricity from nuclear (TWh)": 81.41, "Electricity from renewables (TWh)": 9.27}, {"Year": 2004, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 307140.0146, "Electricity from fossil fuels (TWh)": 83.22, "Electricity from nuclear (TWh)": 87.02, "Electricity from renewables (TWh)": 11.78}, {"Year": 2005, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 295410.0037, "Electricity from fossil fuels (TWh)": 84.75, "Electricity from nuclear (TWh)": 88.76, "Electricity from renewables (TWh)": 12.4}, {"Year": 2006, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 303989.9902, "Electricity from fossil fuels (TWh)": 90.09, "Electricity from nuclear (TWh)": 90.22, "Electricity from renewables (TWh)": 12.92}, {"Year": 2007, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 312140.0146, "Electricity from fossil fuels (TWh)": 93.13, "Electricity from nuclear (TWh)": 92.54, "Electricity from renewables (TWh)": 10.47}, {"Year": 2008, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 301200.0122, "Electricity from fossil fuels (TWh)": 90.92, "Electricity from nuclear (TWh)": 89.84, "Electricity from renewables (TWh)": 11.82}, {"Year": 2009, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 251619.9951, "Electricity from fossil fuels (TWh)": 78.58, "Electricity from nuclear (TWh)": 82.92, "Electricity from renewables (TWh)": 12.12}, {"Year": 2010, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 268920.0134, "Electricity from fossil fuels (TWh)": 86.28, "Electricity from nuclear (TWh)": 89.15, "Electricity from renewables (TWh)": 13.39}, {"Year": 2011, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 283339.9963, "Electricity from fossil fuels (TWh)": 93.5, "Electricity from nuclear (TWh)": 90.25, "Electricity from renewables (TWh)": 11.2}, {"Year": 2012, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 277109.9854, "Electricity from fossil fuels (TWh)": 96.99, "Electricity from nuclear (TWh)": 90.14, "Electricity from renewables (TWh)": 11.23}, {"Year": 2013, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 270269.989, "Electricity from fossil fuels (TWh)": 95.39, "Electricity from nuclear (TWh)": 83.21, "Electricity from renewables (TWh)": 15.11}, {"Year": 2014, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 237729.9957, "Electricity from fossil fuels (TWh)": 83.42, "Electricity from nuclear (TWh)": 88.39, "Electricity from renewables (TWh)": 10.17}, {"Year": 2015, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 191070.0073, "Electricity from fossil fuels (TWh)": 66.91, "Electricity from nuclear (TWh)": 87.63, "Electricity from renewables (TWh)": 7.1}, {"Year": 2016, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 201660.0037, "Electricity from fossil fuels (TWh)": 72.66, "Electricity from nuclear (TWh)": 80.95, "Electricity from renewables (TWh)": 9.25}, {"Year": 2017, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 174940.0024, "Electricity from fossil fuels (TWh)": 57.96, "Electricity from nuclear (TWh)": 85.58, "Electricity from renewables (TWh)": 10.88}, {"Year": 2018, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 185619.9951, "Electricity from fossil fuels (TWh)": 60.81, "Electricity from nuclear (TWh)": 84.4, "Electricity from renewables (TWh)": 13.02}, {"Year": 2019, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": 174729.9957, "Electricity from fossil fuels (TWh)": 57.79, "Electricity from nuclear (TWh)": 83, "Electricity from renewables (TWh)": 11.87}, {"Year": 2020, "Entity": "Ukraine", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 54.5, "Electricity from nuclear (TWh)": 76.2, "Electricity from renewables (TWh)": 17.56}, {"Year": 2000, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 530890, "Electricity from fossil fuels (TWh)": 279.34, "Electricity from nuclear (TWh)": 85.06, "Electricity from renewables (TWh)": 9.98}, {"Year": 2001, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 545260, "Electricity from fossil fuels (TWh)": 282.72, "Electricity from nuclear (TWh)": 90.09, "Electricity from renewables (TWh)": 9.56}, {"Year": 2002, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 530789.978, "Electricity from fossil fuels (TWh)": 285.62, "Electricity from nuclear (TWh)": 87.85, "Electricity from renewables (TWh)": 11.13}, {"Year": 2003, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 543039.978, "Electricity from fossil fuels (TWh)": 296.15, "Electricity from nuclear (TWh)": 88.69, "Electricity from renewables (TWh)": 10.62}, {"Year": 2004, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 543080.0171, "Electricity from fossil fuels (TWh)": 297.15, "Electricity from nuclear (TWh)": 80, "Electricity from renewables (TWh)": 14.14}, {"Year": 2005, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 540919.9829, "Electricity from fossil fuels (TWh)": 296.87, "Electricity from nuclear (TWh)": 81.62, "Electricity from renewables (TWh)": 16.93}, {"Year": 2006, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 542059.9976, "Electricity from fossil fuels (TWh)": 299.88, "Electricity from nuclear (TWh)": 75.45, "Electricity from renewables (TWh)": 18.11}, {"Year": 2007, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 530500, "Electricity from fossil fuels (TWh)": 310.26, "Electricity from nuclear (TWh)": 63.03, "Electricity from renewables (TWh)": 19.69}, {"Year": 2008, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 515340.0269, "Electricity from fossil fuels (TWh)": 310.5, "Electricity from nuclear (TWh)": 52.49, "Electricity from renewables (TWh)": 21.85}, {"Year": 2009, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 466489.9902, "Electricity from fossil fuels (TWh)": 278.73, "Electricity from nuclear (TWh)": 69.1, "Electricity from renewables (TWh)": 25.25}, {"Year": 2010, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 482440.0024, "Electricity from fossil fuels (TWh)": 290.59, "Electricity from nuclear (TWh)": 62.14, "Electricity from renewables (TWh)": 26.18}, {"Year": 2011, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 445589.9963, "Electricity from fossil fuels (TWh)": 260.88, "Electricity from nuclear (TWh)": 68.98, "Electricity from renewables (TWh)": 35.2}, {"Year": 2012, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 467779.9988, "Electricity from fossil fuels (TWh)": 249.25, "Electricity from nuclear (TWh)": 70.4, "Electricity from renewables (TWh)": 41.24}, {"Year": 2013, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 453760.0098, "Electricity from fossil fuels (TWh)": 231.56, "Electricity from nuclear (TWh)": 70.61, "Electricity from renewables (TWh)": 53.21}, {"Year": 2014, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 415600.0061, "Electricity from fossil fuels (TWh)": 206.94, "Electricity from nuclear (TWh)": 63.75, "Electricity from renewables (TWh)": 64.52}, {"Year": 2015, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 401079.9866, "Electricity from fossil fuels (TWh)": 182.43, "Electricity from nuclear (TWh)": 70.34, "Electricity from renewables (TWh)": 82.57}, {"Year": 2016, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 380809.9976, "Electricity from fossil fuels (TWh)": 181.56, "Electricity from nuclear (TWh)": 71.73, "Electricity from renewables (TWh)": 82.99}, {"Year": 2017, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 367000, "Electricity from fossil fuels (TWh)": 165.91, "Electricity from nuclear (TWh)": 70.34, "Electricity from renewables (TWh)": 98.85}, {"Year": 2018, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 360730.011, "Electricity from fossil fuels (TWh)": 155.41, "Electricity from nuclear (TWh)": 65.06, "Electricity from renewables (TWh)": 110.03}, {"Year": 2019, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": 348920.0134, "Electricity from fossil fuels (TWh)": 144.99, "Electricity from nuclear (TWh)": 56.18, "Electricity from renewables (TWh)": 120.48}, {"Year": 2020, "Entity": "United Kingdom", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 124.78, "Electricity from nuclear (TWh)": 50.85, "Electricity from renewables (TWh)": 131.74}, {"Year": 2000, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5775810, "Electricity from fossil fuels (TWh)": 2697.28, "Electricity from nuclear (TWh)": 753.89, "Electricity from renewables (TWh)": 350.93}, {"Year": 2001, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5748260, "Electricity from fossil fuels (TWh)": 2678.68, "Electricity from nuclear (TWh)": 768.83, "Electricity from renewables (TWh)": 280.06}, {"Year": 2002, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5593029.785, "Electricity from fossil fuels (TWh)": 2727.83, "Electricity from nuclear (TWh)": 780.06, "Electricity from renewables (TWh)": 336.34}, {"Year": 2003, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5658990.234, "Electricity from fossil fuels (TWh)": 2756.03, "Electricity from nuclear (TWh)": 763.73, "Electricity from renewables (TWh)": 349.18}, {"Year": 2004, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5738290.039, "Electricity from fossil fuels (TWh)": 2818.28, "Electricity from nuclear (TWh)": 788.53, "Electricity from renewables (TWh)": 345.14}, {"Year": 2005, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5753490.234, "Electricity from fossil fuels (TWh)": 2899.96, "Electricity from nuclear (TWh)": 781.99, "Electricity from renewables (TWh)": 353.04}, {"Year": 2006, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5653080.078, "Electricity from fossil fuels (TWh)": 2878.56, "Electricity from nuclear (TWh)": 787.22, "Electricity from renewables (TWh)": 381.16}, {"Year": 2007, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5736319.824, "Electricity from fossil fuels (TWh)": 2988.24, "Electricity from nuclear (TWh)": 806.42, "Electricity from renewables (TWh)": 347.91}, {"Year": 2008, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5558379.883, "Electricity from fossil fuels (TWh)": 2924.21, "Electricity from nuclear (TWh)": 806.21, "Electricity from renewables (TWh)": 377.11}, {"Year": 2009, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5156430.176, "Electricity from fossil fuels (TWh)": 2725.41, "Electricity from nuclear (TWh)": 798.85, "Electricity from renewables (TWh)": 415.56}, {"Year": 2010, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5392109.863, "Electricity from fossil fuels (TWh)": 2882.49, "Electricity from nuclear (TWh)": 806.97, "Electricity from renewables (TWh)": 424.48}, {"Year": 2011, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5173600.098, "Electricity from fossil fuels (TWh)": 2788.93, "Electricity from nuclear (TWh)": 790.2, "Electricity from renewables (TWh)": 509.74}, {"Year": 2012, "Entity": "United States", "Value_co2_emissions_kt_by_country": 4956060.059, "Electricity from fossil fuels (TWh)": 2779.02, "Electricity from nuclear (TWh)": 769.33, "Electricity from renewables (TWh)": 492.32}, {"Year": 2013, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5092100.098, "Electricity from fossil fuels (TWh)": 2746.21, "Electricity from nuclear (TWh)": 789.02, "Electricity from renewables (TWh)": 520.38}, {"Year": 2014, "Entity": "United States", "Value_co2_emissions_kt_by_country": 5107209.961, "Electricity from fossil fuels (TWh)": 2752.01, "Electricity from nuclear (TWh)": 797.17, "Electricity from renewables (TWh)": 546.83}, {"Year": 2015, "Entity": "United States", "Value_co2_emissions_kt_by_country": 4990709.961, "Electricity from fossil fuels (TWh)": 2730.32, "Electricity from nuclear (TWh)": 797.18, "Electricity from renewables (TWh)": 556.49}, {"Year": 2016, "Entity": "United States", "Value_co2_emissions_kt_by_country": 4894500, "Electricity from fossil fuels (TWh)": 2656.96, "Electricity from nuclear (TWh)": 805.69, "Electricity from renewables (TWh)": 624.91}, {"Year": 2017, "Entity": "United States", "Value_co2_emissions_kt_by_country": 4819370.117, "Electricity from fossil fuels (TWh)": 2540.17, "Electricity from nuclear (TWh)": 804.95, "Electricity from renewables (TWh)": 707.19}, {"Year": 2018, "Entity": "United States", "Value_co2_emissions_kt_by_country": 4975310.059, "Electricity from fossil fuels (TWh)": 2661.3, "Electricity from nuclear (TWh)": 807.08, "Electricity from renewables (TWh)": 733.17}, {"Year": 2019, "Entity": "United States", "Value_co2_emissions_kt_by_country": 4817720.215, "Electricity from fossil fuels (TWh)": 2588.21, "Electricity from nuclear (TWh)": 809.41, "Electricity from renewables (TWh)": 760.76}, {"Year": 2020, "Entity": "United States", "Value_co2_emissions_kt_by_country": null, "Electricity from fossil fuels (TWh)": 2431.9, "Electricity from nuclear (TWh)": 789.88, "Electricity from renewables (TWh)": 821.4}], "anchored": true, "attachedMetadata": ""}, {"kind": "table", "id": "table-82", "displayId": "energy-source", "names": ["Entity", "Year", "energy", "source"], "rows": [{"Entity": "Australia", "Year": 2000, "energy": 181.05, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2001, "energy": 194.33, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2002, "energy": 197.29, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2003, "energy": 195.13, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2004, "energy": 203.66, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2005, "energy": 195.95, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2006, "energy": 198.72, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2007, "energy": 208.59, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2008, "energy": 211.06, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2009, "energy": 216.42, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2010, "energy": 212.5, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2011, "energy": 213.56, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2012, "energy": 206.75, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2013, "energy": 195.78, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2014, "energy": 205.46, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2015, "energy": 197.72, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2016, "energy": 207.66, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2017, "energy": 209.14, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2018, "energy": 207.45, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2019, "energy": 196.45, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2020, "energy": 186.92, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2000, "energy": 28.87, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2001, "energy": 35.19, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2002, "energy": 33.5, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2003, "energy": 31.62, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2004, "energy": 40.14, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2005, "energy": 39.56, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2006, "energy": 39.4, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2007, "energy": 37.64, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2008, "energy": 55.87, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2009, "energy": 36.32, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2010, "energy": 61.02, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2011, "energy": 50.27, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2012, "energy": 77.21, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2013, "energy": 112, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2014, "energy": 136.58, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2015, "energy": 128.85, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2016, "energy": 93.06, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2017, "energy": 101.9, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2018, "energy": 86.69, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2019, "energy": 90.91, "source": "fossil fuels"}, {"Entity": "Brazil", "Year": 2020, "energy": 81.15, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2000, "energy": 155.56, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2001, "energy": 159.93, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2002, "energy": 155.12, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2003, "energy": 157.35, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2004, "energy": 148.86, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2005, "energy": 150.78, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2006, "energy": 139.71, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2007, "energy": 149.36, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2008, "energy": 141.33, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2009, "energy": 129.76, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2010, "energy": 130.08, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2011, "energy": 131.3, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2012, "energy": 124.2, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2013, "energy": 122.87, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2014, "energy": 122.75, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2015, "energy": 125.7, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2016, "energy": 122.35, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2017, "energy": 113.7, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2018, "energy": 112.47, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2019, "energy": 110.65, "source": "fossil fuels"}, {"Entity": "Canada", "Year": 2020, "energy": 102.19, "source": "fossil fuels"}, {"Entity": "China", "Year": 2000, "energy": 1113.3, "source": "fossil fuels"}, {"Entity": "China", "Year": 2001, "energy": 1182.59, "source": "fossil fuels"}, {"Entity": "China", "Year": 2002, "energy": 1337.46, "source": "fossil fuels"}, {"Entity": "China", "Year": 2003, "energy": 1579.96, "source": "fossil fuels"}, {"Entity": "China", "Year": 2004, "energy": 1795.41, "source": "fossil fuels"}, {"Entity": "China", "Year": 2005, "energy": 2042.8, "source": "fossil fuels"}, {"Entity": "China", "Year": 2006, "energy": 2364.16, "source": "fossil fuels"}, {"Entity": "China", "Year": 2007, "energy": 2718.7, "source": "fossil fuels"}, {"Entity": "China", "Year": 2008, "energy": 2762.29, "source": "fossil fuels"}, {"Entity": "China", "Year": 2009, "energy": 2980.2, "source": "fossil fuels"}, {"Entity": "China", "Year": 2010, "energy": 3326.19, "source": "fossil fuels"}, {"Entity": "China", "Year": 2011, "energy": 3811.77, "source": "fossil fuels"}, {"Entity": "China", "Year": 2012, "energy": 3869.38, "source": "fossil fuels"}, {"Entity": "China", "Year": 2013, "energy": 4203.77, "source": "fossil fuels"}, {"Entity": "China", "Year": 2014, "energy": 4345.86, "source": "fossil fuels"}, {"Entity": "China", "Year": 2015, "energy": 4222.76, "source": "fossil fuels"}, {"Entity": "China", "Year": 2016, "energy": 4355, "source": "fossil fuels"}, {"Entity": "China", "Year": 2017, "energy": 4643.1, "source": "fossil fuels"}, {"Entity": "China", "Year": 2018, "energy": 4990.28, "source": "fossil fuels"}, {"Entity": "China", "Year": 2019, "energy": 5098.22, "source": "fossil fuels"}, {"Entity": "China", "Year": 2020, "energy": 5184.13, "source": "fossil fuels"}, {"Entity": "France", "Year": 2000, "energy": 50.61, "source": "fossil fuels"}, {"Entity": "France", "Year": 2001, "energy": 46.48, "source": "fossil fuels"}, {"Entity": "France", "Year": 2002, "energy": 52.67, "source": "fossil fuels"}, {"Entity": "France", "Year": 2003, "energy": 57.38, "source": "fossil fuels"}, {"Entity": "France", "Year": 2004, "energy": 56.53, "source": "fossil fuels"}, {"Entity": "France", "Year": 2005, "energy": 63.35, "source": "fossil fuels"}, {"Entity": "France", "Year": 2006, "energy": 56.9, "source": "fossil fuels"}, {"Entity": "France", "Year": 2007, "energy": 58.18, "source": "fossil fuels"}, {"Entity": "France", "Year": 2008, "energy": 55.57, "source": "fossil fuels"}, {"Entity": "France", "Year": 2009, "energy": 51.32, "source": "fossil fuels"}, {"Entity": "France", "Year": 2010, "energy": 57.63, "source": "fossil fuels"}, {"Entity": "France", "Year": 2011, "energy": 58.99, "source": "fossil fuels"}, {"Entity": "France", "Year": 2012, "energy": 56.42, "source": "fossil fuels"}, {"Entity": "France", "Year": 2013, "energy": 53.35, "source": "fossil fuels"}, {"Entity": "France", "Year": 2014, "energy": 35.68, "source": "fossil fuels"}, {"Entity": "France", "Year": 2015, "energy": 44.65, "source": "fossil fuels"}, {"Entity": "France", "Year": 2016, "energy": 56.45, "source": "fossil fuels"}, {"Entity": "France", "Year": 2017, "energy": 65.09, "source": "fossil fuels"}, {"Entity": "France", "Year": 2018, "energy": 49.27, "source": "fossil fuels"}, {"Entity": "France", "Year": 2019, "energy": 53.5, "source": "fossil fuels"}, {"Entity": "France", "Year": 2020, "energy": 48.14, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2000, "energy": 367.22, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2001, "energy": 372.69, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2002, "energy": 372.64, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2003, "energy": 390.81, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2004, "energy": 385.24, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2005, "energy": 386.96, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2006, "energy": 390.03, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2007, "energy": 402.4, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2008, "energy": 390.43, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2009, "energy": 358.07, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2010, "energy": 378.9, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2011, "energy": 373.16, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2012, "energy": 377.89, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2013, "energy": 381.52, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2014, "energy": 360.28, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2015, "energy": 359.99, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2016, "energy": 368.67, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2017, "energy": 353.37, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2018, "energy": 334.65, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2019, "energy": 284.09, "source": "fossil fuels"}, {"Entity": "Germany", "Year": 2020, "energy": 251.4, "source": "fossil fuels"}, {"Entity": "India", "Year": 2000, "energy": 475.35, "source": "fossil fuels"}, {"Entity": "India", "Year": 2001, "energy": 491.01, "source": "fossil fuels"}, {"Entity": "India", "Year": 2002, "energy": 517.51, "source": "fossil fuels"}, {"Entity": "India", "Year": 2003, "energy": 545.36, "source": "fossil fuels"}, {"Entity": "India", "Year": 2004, "energy": 567.86, "source": "fossil fuels"}, {"Entity": "India", "Year": 2005, "energy": 579.32, "source": "fossil fuels"}, {"Entity": "India", "Year": 2006, "energy": 599.24, "source": "fossil fuels"}, {"Entity": "India", "Year": 2007, "energy": 636.68, "source": "fossil fuels"}, {"Entity": "India", "Year": 2008, "energy": 674.27, "source": "fossil fuels"}, {"Entity": "India", "Year": 2009, "energy": 728.56, "source": "fossil fuels"}, {"Entity": "India", "Year": 2010, "energy": 771.78, "source": "fossil fuels"}, {"Entity": "India", "Year": 2011, "energy": 828.16, "source": "fossil fuels"}, {"Entity": "India", "Year": 2012, "energy": 893.45, "source": "fossil fuels"}, {"Entity": "India", "Year": 2013, "energy": 924.93, "source": "fossil fuels"}, {"Entity": "India", "Year": 2014, "energy": 1025.29, "source": "fossil fuels"}, {"Entity": "India", "Year": 2015, "energy": 1080.44, "source": "fossil fuels"}, {"Entity": "India", "Year": 2016, "energy": 1155.52, "source": "fossil fuels"}, {"Entity": "India", "Year": 2017, "energy": 1198.85, "source": "fossil fuels"}, {"Entity": "India", "Year": 2018, "energy": 1276.32, "source": "fossil fuels"}, {"Entity": "India", "Year": 2019, "energy": 1273.59, "source": "fossil fuels"}, {"Entity": "India", "Year": 2020, "energy": 1202.34, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2000, "energy": 78.43, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2001, "energy": 83.96, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2002, "energy": 92.03, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2003, "energy": 97.57, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2004, "energy": 103.8, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2005, "energy": 110.22, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2006, "energy": 116.8, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2007, "energy": 124.1, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2008, "energy": 129.55, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2009, "energy": 136.05, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2010, "energy": 142.88, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2011, "energy": 161.41, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2012, "energy": 177.83, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2013, "energy": 189.66, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2014, "energy": 203.11, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2015, "energy": 209.71, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2016, "energy": 217.97, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2017, "energy": 222.64, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2018, "energy": 235.41, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2019, "energy": 247.39, "source": "fossil fuels"}, {"Entity": "Indonesia", "Year": 2020, "energy": 238.91, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2000, "energy": 218.28, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2001, "energy": 216.73, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2002, "energy": 228.45, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2003, "energy": 238.52, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2004, "energy": 240.95, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2005, "energy": 247.29, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2006, "energy": 256.03, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2007, "energy": 259.49, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2008, "energy": 254.34, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2009, "energy": 218.32, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2010, "energy": 220.93, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2011, "energy": 216.78, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2012, "energy": 204.26, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2013, "energy": 175.07, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2014, "energy": 156.76, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2015, "energy": 172.06, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2016, "energy": 179.19, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2017, "energy": 189.44, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2018, "energy": 172.98, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2019, "energy": 175.52, "source": "fossil fuels"}, {"Entity": "Italy", "Year": 2020, "energy": 161.17, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2000, "energy": 578.29, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2001, "energy": 564.95, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2002, "energy": 605.12, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2003, "energy": 633.76, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2004, "energy": 621.6, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2005, "energy": 634.09, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2006, "energy": 628.77, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2007, "energy": 705.37, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2008, "energy": 663.88, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2009, "energy": 611.86, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2010, "energy": 689.89, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2011, "energy": 777.1, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2012, "energy": 920.39, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2013, "energy": 897.88, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2014, "energy": 892.18, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2015, "energy": 844.23, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2016, "energy": 832.4, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2017, "energy": 806.12, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2018, "energy": 780.61, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2019, "energy": 735.66, "source": "fossil fuels"}, {"Entity": "Japan", "Year": 2020, "energy": 716.67, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2000, "energy": 44.11, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2001, "energy": 47.3, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2002, "energy": 49.44, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2003, "energy": 55.24, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2004, "energy": 58.89, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2005, "energy": 60.06, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2006, "energy": 63.89, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2007, "energy": 68.45, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2008, "energy": 72.89, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2009, "energy": 71.85, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2010, "energy": 74.63, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2011, "energy": 78.7, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2012, "energy": 82.98, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2013, "energy": 84.88, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2014, "energy": 86.37, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2015, "energy": 82.2, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2016, "energy": 82.65, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2017, "energy": 91.48, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2018, "energy": 96.36, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2019, "energy": 95.39, "source": "fossil fuels"}, {"Entity": "Kazakhstan", "Year": 2020, "energy": 96.7, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2000, "energy": 141.8, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2001, "energy": 153.32, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2002, "energy": 159.81, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2003, "energy": 160.45, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2004, "energy": 173.66, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2005, "energy": 178.76, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2006, "energy": 182.76, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2007, "energy": 191.83, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2008, "energy": 184.51, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2009, "energy": 194.75, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2010, "energy": 207.38, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2011, "energy": 219.88, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2012, "energy": 229.14, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2013, "energy": 231.23, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2014, "energy": 223.43, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2015, "energy": 234.28, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2016, "energy": 239.78, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2017, "energy": 242.69, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2018, "energy": 259.92, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2019, "energy": 248.2, "source": "fossil fuels"}, {"Entity": "Mexico", "Year": 2020, "energy": 245.46, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2000, "energy": 140.85, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2001, "energy": 140.94, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2002, "energy": 139.72, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2003, "energy": 147.76, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2004, "energy": 149.06, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2005, "energy": 151.2, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2006, "energy": 156.16, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2007, "energy": 153.08, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2008, "energy": 148.03, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2009, "energy": 142.4, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2010, "energy": 146.12, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2011, "energy": 149.88, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2012, "energy": 144.75, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2013, "energy": 146.85, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2014, "energy": 138.53, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2015, "energy": 141.55, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2016, "energy": 143.28, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2017, "energy": 145.8, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2018, "energy": 147.87, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2019, "energy": 137.58, "source": "fossil fuels"}, {"Entity": "Poland", "Year": 2020, "energy": 128.91, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2000, "energy": 138.68, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2001, "energy": 146.09, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2002, "energy": 154.91, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2003, "energy": 166.58, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2004, "energy": 173.41, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2005, "energy": 191.05, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2006, "energy": 196.31, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2007, "energy": 204.43, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2008, "energy": 204.2, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2009, "energy": 217.31, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2010, "energy": 240.06, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2011, "energy": 250.07, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2012, "energy": 271.68, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2013, "energy": 284.02, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2014, "energy": 311.81, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2015, "energy": 338.34, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2016, "energy": 337.38, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2017, "energy": 354.3, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2018, "energy": 334.7, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2019, "energy": 335.24, "source": "fossil fuels"}, {"Entity": "Saudi Arabia", "Year": 2020, "energy": 337.82, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2000, "energy": 181.67, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2001, "energy": 183.36, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2002, "energy": 188.79, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2003, "energy": 204.39, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2004, "energy": 212.63, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2005, "energy": 215.23, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2006, "energy": 223.25, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2007, "energy": 232.91, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2008, "energy": 226.32, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2009, "energy": 218.17, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2010, "energy": 227.57, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2011, "energy": 229.06, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2012, "energy": 226.84, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2013, "energy": 223.28, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2014, "energy": 218.42, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2015, "energy": 214.88, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2016, "energy": 213.09, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2017, "energy": 212.77, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2018, "energy": 214.25, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2019, "energy": 208.39, "source": "fossil fuels"}, {"Entity": "South Africa", "Year": 2020, "energy": 197.5, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2000, "energy": 124.22, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2001, "energy": 120.06, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2002, "energy": 143.72, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2003, "energy": 139.67, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2004, "energy": 159.91, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2005, "energy": 184.65, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2006, "energy": 182.98, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2007, "energy": 188.13, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2008, "energy": 189.55, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2009, "energy": 164.69, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2010, "energy": 138.39, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2011, "energy": 146.12, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2012, "energy": 145.33, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2013, "energy": 113.32, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2014, "energy": 107.37, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2015, "energy": 123.19, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2016, "energy": 107.93, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2017, "energy": 126.93, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2018, "energy": 112.23, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2019, "energy": 111.55, "source": "fossil fuels"}, {"Entity": "Spain", "Year": 2020, "energy": 87.64, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2000, "energy": 83.15, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2001, "energy": 88.97, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2002, "energy": 93.51, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2003, "energy": 100.61, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2004, "energy": 109.46, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2005, "energy": 115.58, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2006, "energy": 119.41, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2007, "energy": 122.12, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2008, "energy": 127.43, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2009, "energy": 128.09, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2010, "energy": 141.72, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2011, "energy": 135.31, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2012, "energy": 143.73, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2013, "energy": 148.29, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2014, "energy": 149.26, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2015, "energy": 153.4, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2016, "energy": 161.79, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2017, "energy": 161.88, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2018, "energy": 156.26, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2019, "energy": 162.59, "source": "fossil fuels"}, {"Entity": "Thailand", "Year": 2020, "energy": 154.52, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2000, "energy": 82.65, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2001, "energy": 84.59, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2002, "energy": 85.93, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2003, "energy": 89.52, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2004, "energy": 83.22, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2005, "energy": 84.75, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2006, "energy": 90.09, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2007, "energy": 93.13, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2008, "energy": 90.92, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2009, "energy": 78.58, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2010, "energy": 86.28, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2011, "energy": 93.5, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2012, "energy": 96.99, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2013, "energy": 95.39, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2014, "energy": 83.42, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2015, "energy": 66.91, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2016, "energy": 72.66, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2017, "energy": 57.96, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2018, "energy": 60.81, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2019, "energy": 57.79, "source": "fossil fuels"}, {"Entity": "Ukraine", "Year": 2020, "energy": 54.5, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2000, "energy": 279.34, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2001, "energy": 282.72, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2002, "energy": 285.62, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2003, "energy": 296.15, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2004, "energy": 297.15, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2005, "energy": 296.87, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2006, "energy": 299.88, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2007, "energy": 310.26, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2008, "energy": 310.5, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2009, "energy": 278.73, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2010, "energy": 290.59, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2011, "energy": 260.88, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2012, "energy": 249.25, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2013, "energy": 231.56, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2014, "energy": 206.94, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2015, "energy": 182.43, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2016, "energy": 181.56, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2017, "energy": 165.91, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2018, "energy": 155.41, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2019, "energy": 144.99, "source": "fossil fuels"}, {"Entity": "United Kingdom", "Year": 2020, "energy": 124.78, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2000, "energy": 2697.28, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2001, "energy": 2678.68, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2002, "energy": 2727.83, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2003, "energy": 2756.03, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2004, "energy": 2818.28, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2005, "energy": 2899.96, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2006, "energy": 2878.56, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2007, "energy": 2988.24, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2008, "energy": 2924.21, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2009, "energy": 2725.41, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2010, "energy": 2882.49, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2011, "energy": 2788.93, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2012, "energy": 2779.02, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2013, "energy": 2746.21, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2014, "energy": 2752.01, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2015, "energy": 2730.32, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2016, "energy": 2656.96, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2017, "energy": 2540.17, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2018, "energy": 2661.3, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2019, "energy": 2588.21, "source": "fossil fuels"}, {"Entity": "United States", "Year": 2020, "energy": 2431.9, "source": "fossil fuels"}, {"Entity": "Australia", "Year": 2000, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2001, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2002, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2003, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2004, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2005, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2006, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2007, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2008, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2009, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2010, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2011, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2012, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2013, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2014, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2015, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2016, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2017, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2018, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2019, "energy": 0, "source": "nuclear"}, {"Entity": "Australia", "Year": 2020, "energy": 0, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2000, "energy": 4.94, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2001, "energy": 14.27, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2002, "energy": 13.84, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2003, "energy": 13.4, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2004, "energy": 11.6, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2005, "energy": 9.2, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2006, "energy": 12.98, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2007, "energy": 11.65, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2008, "energy": 13.21, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2009, "energy": 12.22, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2010, "energy": 13.77, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2011, "energy": 14.8, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2012, "energy": 15.17, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2013, "energy": 14.65, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2014, "energy": 14.46, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2015, "energy": 13.91, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2016, "energy": 14.97, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2017, "energy": 14.86, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2018, "energy": 14.79, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2019, "energy": 15.16, "source": "nuclear"}, {"Entity": "Brazil", "Year": 2020, "energy": 13.21, "source": "nuclear"}, {"Entity": "Canada", "Year": 2000, "energy": 69.16, "source": "nuclear"}, {"Entity": "Canada", "Year": 2001, "energy": 72.86, "source": "nuclear"}, {"Entity": "Canada", "Year": 2002, "energy": 71.75, "source": "nuclear"}, {"Entity": "Canada", "Year": 2003, "energy": 71.15, "source": "nuclear"}, {"Entity": "Canada", "Year": 2004, "energy": 85.87, "source": "nuclear"}, {"Entity": "Canada", "Year": 2005, "energy": 86.83, "source": "nuclear"}, {"Entity": "Canada", "Year": 2006, "energy": 92.44, "source": "nuclear"}, {"Entity": "Canada", "Year": 2007, "energy": 88.19, "source": "nuclear"}, {"Entity": "Canada", "Year": 2008, "energy": 88.3, "source": "nuclear"}, {"Entity": "Canada", "Year": 2009, "energy": 85.13, "source": "nuclear"}, {"Entity": "Canada", "Year": 2010, "energy": 85.53, "source": "nuclear"}, {"Entity": "Canada", "Year": 2011, "energy": 88.29, "source": "nuclear"}, {"Entity": "Canada", "Year": 2012, "energy": 89.49, "source": "nuclear"}, {"Entity": "Canada", "Year": 2013, "energy": 97.58, "source": "nuclear"}, {"Entity": "Canada", "Year": 2014, "energy": 101.21, "source": "nuclear"}, {"Entity": "Canada", "Year": 2015, "energy": 96.05, "source": "nuclear"}, {"Entity": "Canada", "Year": 2016, "energy": 95.69, "source": "nuclear"}, {"Entity": "Canada", "Year": 2017, "energy": 95.57, "source": "nuclear"}, {"Entity": "Canada", "Year": 2018, "energy": 95.03, "source": "nuclear"}, {"Entity": "Canada", "Year": 2019, "energy": 95.47, "source": "nuclear"}, {"Entity": "Canada", "Year": 2020, "energy": 92.65, "source": "nuclear"}, {"Entity": "China", "Year": 2000, "energy": 16.74, "source": "nuclear"}, {"Entity": "China", "Year": 2001, "energy": 17.47, "source": "nuclear"}, {"Entity": "China", "Year": 2002, "energy": 25.13, "source": "nuclear"}, {"Entity": "China", "Year": 2003, "energy": 43.34, "source": "nuclear"}, {"Entity": "China", "Year": 2004, "energy": 50.47, "source": "nuclear"}, {"Entity": "China", "Year": 2005, "energy": 53.09, "source": "nuclear"}, {"Entity": "China", "Year": 2006, "energy": 54.84, "source": "nuclear"}, {"Entity": "China", "Year": 2007, "energy": 62.13, "source": "nuclear"}, {"Entity": "China", "Year": 2008, "energy": 68.39, "source": "nuclear"}, {"Entity": "China", "Year": 2009, "energy": 70.05, "source": "nuclear"}, {"Entity": "China", "Year": 2010, "energy": 74.74, "source": "nuclear"}, {"Entity": "China", "Year": 2011, "energy": 87.2, "source": "nuclear"}, {"Entity": "China", "Year": 2012, "energy": 98.32, "source": "nuclear"}, {"Entity": "China", "Year": 2013, "energy": 111.5, "source": "nuclear"}, {"Entity": "China", "Year": 2014, "energy": 133.22, "source": "nuclear"}, {"Entity": "China", "Year": 2015, "energy": 171.38, "source": "nuclear"}, {"Entity": "China", "Year": 2016, "energy": 213.18, "source": "nuclear"}, {"Entity": "China", "Year": 2017, "energy": 248.1, "source": "nuclear"}, {"Entity": "China", "Year": 2018, "energy": 295, "source": "nuclear"}, {"Entity": "China", "Year": 2019, "energy": 348.7, "source": "nuclear"}, {"Entity": "China", "Year": 2020, "energy": 366.2, "source": "nuclear"}, {"Entity": "France", "Year": 2000, "energy": 415.16, "source": "nuclear"}, {"Entity": "France", "Year": 2001, "energy": 421.08, "source": "nuclear"}, {"Entity": "France", "Year": 2002, "energy": 436.76, "source": "nuclear"}, {"Entity": "France", "Year": 2003, "energy": 441.07, "source": "nuclear"}, {"Entity": "France", "Year": 2004, "energy": 448.24, "source": "nuclear"}, {"Entity": "France", "Year": 2005, "energy": 451.53, "source": "nuclear"}, {"Entity": "France", "Year": 2006, "energy": 450.19, "source": "nuclear"}, {"Entity": "France", "Year": 2007, "energy": 439.73, "source": "nuclear"}, {"Entity": "France", "Year": 2008, "energy": 439.45, "source": "nuclear"}, {"Entity": "France", "Year": 2009, "energy": 409.74, "source": "nuclear"}, {"Entity": "France", "Year": 2010, "energy": 428.52, "source": "nuclear"}, {"Entity": "France", "Year": 2011, "energy": 442.39, "source": "nuclear"}, {"Entity": "France", "Year": 2012, "energy": 425.41, "source": "nuclear"}, {"Entity": "France", "Year": 2013, "energy": 423.68, "source": "nuclear"}, {"Entity": "France", "Year": 2014, "energy": 436.48, "source": "nuclear"}, {"Entity": "France", "Year": 2015, "energy": 437.43, "source": "nuclear"}, {"Entity": "France", "Year": 2016, "energy": 403.2, "source": "nuclear"}, {"Entity": "France", "Year": 2017, "energy": 398.36, "source": "nuclear"}, {"Entity": "France", "Year": 2018, "energy": 412.94, "source": "nuclear"}, {"Entity": "France", "Year": 2019, "energy": 399.01, "source": "nuclear"}, {"Entity": "France", "Year": 2020, "energy": 353.83, "source": "nuclear"}, {"Entity": "Germany", "Year": 2000, "energy": 169.61, "source": "nuclear"}, {"Entity": "Germany", "Year": 2001, "energy": 171.3, "source": "nuclear"}, {"Entity": "Germany", "Year": 2002, "energy": 164.84, "source": "nuclear"}, {"Entity": "Germany", "Year": 2003, "energy": 165.06, "source": "nuclear"}, {"Entity": "Germany", "Year": 2004, "energy": 167.07, "source": "nuclear"}, {"Entity": "Germany", "Year": 2005, "energy": 163.05, "source": "nuclear"}, {"Entity": "Germany", "Year": 2006, "energy": 167.27, "source": "nuclear"}, {"Entity": "Germany", "Year": 2007, "energy": 140.53, "source": "nuclear"}, {"Entity": "Germany", "Year": 2008, "energy": 148.49, "source": "nuclear"}, {"Entity": "Germany", "Year": 2009, "energy": 134.93, "source": "nuclear"}, {"Entity": "Germany", "Year": 2010, "energy": 140.56, "source": "nuclear"}, {"Entity": "Germany", "Year": 2011, "energy": 107.97, "source": "nuclear"}, {"Entity": "Germany", "Year": 2012, "energy": 99.46, "source": "nuclear"}, {"Entity": "Germany", "Year": 2013, "energy": 97.29, "source": "nuclear"}, {"Entity": "Germany", "Year": 2014, "energy": 97.13, "source": "nuclear"}, {"Entity": "Germany", "Year": 2015, "energy": 91.79, "source": "nuclear"}, {"Entity": "Germany", "Year": 2016, "energy": 84.63, "source": "nuclear"}, {"Entity": "Germany", "Year": 2017, "energy": 76.32, "source": "nuclear"}, {"Entity": "Germany", "Year": 2018, "energy": 76, "source": "nuclear"}, {"Entity": "Germany", "Year": 2019, "energy": 75.07, "source": "nuclear"}, {"Entity": "Germany", "Year": 2020, "energy": 64.38, "source": "nuclear"}, {"Entity": "India", "Year": 2000, "energy": 15.77, "source": "nuclear"}, {"Entity": "India", "Year": 2001, "energy": 18.89, "source": "nuclear"}, {"Entity": "India", "Year": 2002, "energy": 19.35, "source": "nuclear"}, {"Entity": "India", "Year": 2003, "energy": 18.14, "source": "nuclear"}, {"Entity": "India", "Year": 2004, "energy": 21.26, "source": "nuclear"}, {"Entity": "India", "Year": 2005, "energy": 17.73, "source": "nuclear"}, {"Entity": "India", "Year": 2006, "energy": 17.63, "source": "nuclear"}, {"Entity": "India", "Year": 2007, "energy": 17.83, "source": "nuclear"}, {"Entity": "India", "Year": 2008, "energy": 15.23, "source": "nuclear"}, {"Entity": "India", "Year": 2009, "energy": 16.82, "source": "nuclear"}, {"Entity": "India", "Year": 2010, "energy": 23.08, "source": "nuclear"}, {"Entity": "India", "Year": 2011, "energy": 32.22, "source": "nuclear"}, {"Entity": "India", "Year": 2012, "energy": 33.14, "source": "nuclear"}, {"Entity": "India", "Year": 2013, "energy": 33.31, "source": "nuclear"}, {"Entity": "India", "Year": 2014, "energy": 34.69, "source": "nuclear"}, {"Entity": "India", "Year": 2015, "energy": 38.31, "source": "nuclear"}, {"Entity": "India", "Year": 2016, "energy": 37.9, "source": "nuclear"}, {"Entity": "India", "Year": 2017, "energy": 37.41, "source": "nuclear"}, {"Entity": "India", "Year": 2018, "energy": 39.05, "source": "nuclear"}, {"Entity": "India", "Year": 2019, "energy": 45.16, "source": "nuclear"}, {"Entity": "India", "Year": 2020, "energy": 44.61, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2000, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2001, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2002, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2003, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2004, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2005, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2006, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2007, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2008, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2009, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2010, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2011, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2012, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2013, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2014, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2015, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2016, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2017, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2018, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2019, "energy": null, "source": "nuclear"}, {"Entity": "Indonesia", "Year": 2020, "energy": null, "source": "nuclear"}, {"Entity": "Italy", "Year": 2000, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2001, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2002, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2003, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2004, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2005, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2006, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2007, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2008, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2009, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2010, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2011, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2012, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2013, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2014, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2015, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2016, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2017, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2018, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2019, "energy": 0, "source": "nuclear"}, {"Entity": "Italy", "Year": 2020, "energy": 0, "source": "nuclear"}, {"Entity": "Japan", "Year": 2000, "energy": 305.95, "source": "nuclear"}, {"Entity": "Japan", "Year": 2001, "energy": 303.86, "source": "nuclear"}, {"Entity": "Japan", "Year": 2002, "energy": 280.34, "source": "nuclear"}, {"Entity": "Japan", "Year": 2003, "energy": 228.01, "source": "nuclear"}, {"Entity": "Japan", "Year": 2004, "energy": 268.32, "source": "nuclear"}, {"Entity": "Japan", "Year": 2005, "energy": 280.5, "source": "nuclear"}, {"Entity": "Japan", "Year": 2006, "energy": 291.54, "source": "nuclear"}, {"Entity": "Japan", "Year": 2007, "energy": 267.34, "source": "nuclear"}, {"Entity": "Japan", "Year": 2008, "energy": 241.25, "source": "nuclear"}, {"Entity": "Japan", "Year": 2009, "energy": 263.05, "source": "nuclear"}, {"Entity": "Japan", "Year": 2010, "energy": 278.36, "source": "nuclear"}, {"Entity": "Japan", "Year": 2011, "energy": 153.38, "source": "nuclear"}, {"Entity": "Japan", "Year": 2012, "energy": 15.12, "source": "nuclear"}, {"Entity": "Japan", "Year": 2013, "energy": 10.43, "source": "nuclear"}, {"Entity": "Japan", "Year": 2014, "energy": 0, "source": "nuclear"}, {"Entity": "Japan", "Year": 2015, "energy": 3.24, "source": "nuclear"}, {"Entity": "Japan", "Year": 2016, "energy": 14.87, "source": "nuclear"}, {"Entity": "Japan", "Year": 2017, "energy": 27.75, "source": "nuclear"}, {"Entity": "Japan", "Year": 2018, "energy": 47.82, "source": "nuclear"}, {"Entity": "Japan", "Year": 2019, "energy": 63.88, "source": "nuclear"}, {"Entity": "Japan", "Year": 2020, "energy": 41.86, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2000, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2001, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2002, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2003, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2004, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2005, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2006, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2007, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2008, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2009, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2010, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2011, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2012, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2013, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2014, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2015, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2016, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2017, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2018, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2019, "energy": null, "source": "nuclear"}, {"Entity": "Kazakhstan", "Year": 2020, "energy": null, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2000, "energy": 7.81, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2001, "energy": 8.29, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2002, "energy": 9.26, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2003, "energy": 9.98, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2004, "energy": 8.73, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2005, "energy": 10.32, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2006, "energy": 10.4, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2007, "energy": 9.95, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2008, "energy": 9.36, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2009, "energy": 10.11, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2010, "energy": 5.66, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2011, "energy": 9.66, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2012, "energy": 8.41, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2013, "energy": 11.38, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2014, "energy": 9.3, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2015, "energy": 11.18, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2016, "energy": 10.27, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2017, "energy": 10.57, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2018, "energy": 13.32, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2019, "energy": 10.88, "source": "nuclear"}, {"Entity": "Mexico", "Year": 2020, "energy": 10.87, "source": "nuclear"}, {"Entity": "Poland", "Year": 2000, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2001, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2002, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2003, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2004, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2005, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2006, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2007, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2008, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2009, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2010, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2011, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2012, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2013, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2014, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2015, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2016, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2017, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2018, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2019, "energy": 0, "source": "nuclear"}, {"Entity": "Poland", "Year": 2020, "energy": 0, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2000, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2001, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2002, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2003, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2004, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2005, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2006, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2007, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2008, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2009, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2010, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2011, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2012, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2013, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2014, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2015, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2016, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2017, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2018, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2019, "energy": null, "source": "nuclear"}, {"Entity": "Saudi Arabia", "Year": 2020, "energy": null, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2000, "energy": 13.01, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2001, "energy": 10.72, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2002, "energy": 11.99, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2003, "energy": 12.66, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2004, "energy": 14.28, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2005, "energy": 12.24, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2006, "energy": 10.07, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2007, "energy": 12.6, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2008, "energy": 12.75, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2009, "energy": 11.57, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2010, "energy": 12.9, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2011, "energy": 12.94, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2012, "energy": 12.4, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2013, "energy": 13.61, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2014, "energy": 14.76, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2015, "energy": 10.97, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2016, "energy": 15.21, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2017, "energy": 15.09, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2018, "energy": 10.56, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2019, "energy": 13.6, "source": "nuclear"}, {"Entity": "South Africa", "Year": 2020, "energy": 11.62, "source": "nuclear"}, {"Entity": "Spain", "Year": 2000, "energy": 62.21, "source": "nuclear"}, {"Entity": "Spain", "Year": 2001, "energy": 63.71, "source": "nuclear"}, {"Entity": "Spain", "Year": 2002, "energy": 63.02, "source": "nuclear"}, {"Entity": "Spain", "Year": 2003, "energy": 61.88, "source": "nuclear"}, {"Entity": "Spain", "Year": 2004, "energy": 63.61, "source": "nuclear"}, {"Entity": "Spain", "Year": 2005, "energy": 57.54, "source": "nuclear"}, {"Entity": "Spain", "Year": 2006, "energy": 60.13, "source": "nuclear"}, {"Entity": "Spain", "Year": 2007, "energy": 55.1, "source": "nuclear"}, {"Entity": "Spain", "Year": 2008, "energy": 58.97, "source": "nuclear"}, {"Entity": "Spain", "Year": 2009, "energy": 52.76, "source": "nuclear"}, {"Entity": "Spain", "Year": 2010, "energy": 61.99, "source": "nuclear"}, {"Entity": "Spain", "Year": 2011, "energy": 57.72, "source": "nuclear"}, {"Entity": "Spain", "Year": 2012, "energy": 61.47, "source": "nuclear"}, {"Entity": "Spain", "Year": 2013, "energy": 56.73, "source": "nuclear"}, {"Entity": "Spain", "Year": 2014, "energy": 57.31, "source": "nuclear"}, {"Entity": "Spain", "Year": 2015, "energy": 57.2, "source": "nuclear"}, {"Entity": "Spain", "Year": 2016, "energy": 58.63, "source": "nuclear"}, {"Entity": "Spain", "Year": 2017, "energy": 58.04, "source": "nuclear"}, {"Entity": "Spain", "Year": 2018, "energy": 55.77, "source": "nuclear"}, {"Entity": "Spain", "Year": 2019, "energy": 58.35, "source": "nuclear"}, {"Entity": "Spain", "Year": 2020, "energy": 58.3, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2000, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2001, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2002, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2003, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2004, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2005, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2006, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2007, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2008, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2009, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2010, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2011, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2012, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2013, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2014, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2015, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2016, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2017, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2018, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2019, "energy": 0, "source": "nuclear"}, {"Entity": "Thailand", "Year": 2020, "energy": 0, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2000, "energy": 77.34, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2001, "energy": 76.17, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2002, "energy": 77.99, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2003, "energy": 81.41, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2004, "energy": 87.02, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2005, "energy": 88.76, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2006, "energy": 90.22, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2007, "energy": 92.54, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2008, "energy": 89.84, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2009, "energy": 82.92, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2010, "energy": 89.15, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2011, "energy": 90.25, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2012, "energy": 90.14, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2013, "energy": 83.21, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2014, "energy": 88.39, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2015, "energy": 87.63, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2016, "energy": 80.95, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2017, "energy": 85.58, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2018, "energy": 84.4, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2019, "energy": 83, "source": "nuclear"}, {"Entity": "Ukraine", "Year": 2020, "energy": 76.2, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2000, "energy": 85.06, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2001, "energy": 90.09, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2002, "energy": 87.85, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2003, "energy": 88.69, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2004, "energy": 80, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2005, "energy": 81.62, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2006, "energy": 75.45, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2007, "energy": 63.03, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2008, "energy": 52.49, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2009, "energy": 69.1, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2010, "energy": 62.14, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2011, "energy": 68.98, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2012, "energy": 70.4, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2013, "energy": 70.61, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2014, "energy": 63.75, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2015, "energy": 70.34, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2016, "energy": 71.73, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2017, "energy": 70.34, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2018, "energy": 65.06, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2019, "energy": 56.18, "source": "nuclear"}, {"Entity": "United Kingdom", "Year": 2020, "energy": 50.85, "source": "nuclear"}, {"Entity": "United States", "Year": 2000, "energy": 753.89, "source": "nuclear"}, {"Entity": "United States", "Year": 2001, "energy": 768.83, "source": "nuclear"}, {"Entity": "United States", "Year": 2002, "energy": 780.06, "source": "nuclear"}, {"Entity": "United States", "Year": 2003, "energy": 763.73, "source": "nuclear"}, {"Entity": "United States", "Year": 2004, "energy": 788.53, "source": "nuclear"}, {"Entity": "United States", "Year": 2005, "energy": 781.99, "source": "nuclear"}, {"Entity": "United States", "Year": 2006, "energy": 787.22, "source": "nuclear"}, {"Entity": "United States", "Year": 2007, "energy": 806.42, "source": "nuclear"}, {"Entity": "United States", "Year": 2008, "energy": 806.21, "source": "nuclear"}, {"Entity": "United States", "Year": 2009, "energy": 798.85, "source": "nuclear"}, {"Entity": "United States", "Year": 2010, "energy": 806.97, "source": "nuclear"}, {"Entity": "United States", "Year": 2011, "energy": 790.2, "source": "nuclear"}, {"Entity": "United States", "Year": 2012, "energy": 769.33, "source": "nuclear"}, {"Entity": "United States", "Year": 2013, "energy": 789.02, "source": "nuclear"}, {"Entity": "United States", "Year": 2014, "energy": 797.17, "source": "nuclear"}, {"Entity": "United States", "Year": 2015, "energy": 797.18, "source": "nuclear"}, {"Entity": "United States", "Year": 2016, "energy": 805.69, "source": "nuclear"}, {"Entity": "United States", "Year": 2017, "energy": 804.95, "source": "nuclear"}, {"Entity": "United States", "Year": 2018, "energy": 807.08, "source": "nuclear"}, {"Entity": "United States", "Year": 2019, "energy": 809.41, "source": "nuclear"}, {"Entity": "United States", "Year": 2020, "energy": 789.88, "source": "nuclear"}, {"Entity": "Australia", "Year": 2000, "energy": 17.11, "source": "renewables"}, {"Entity": "Australia", "Year": 2001, "energy": 17.4, "source": "renewables"}, {"Entity": "Australia", "Year": 2002, "energy": 17.35, "source": "renewables"}, {"Entity": "Australia", "Year": 2003, "energy": 18.5, "source": "renewables"}, {"Entity": "Australia", "Year": 2004, "energy": 19.41, "source": "renewables"}, {"Entity": "Australia", "Year": 2005, "energy": 19.75, "source": "renewables"}, {"Entity": "Australia", "Year": 2006, "energy": 21.19, "source": "renewables"}, {"Entity": "Australia", "Year": 2007, "energy": 20.93, "source": "renewables"}, {"Entity": "Australia", "Year": 2008, "energy": 18.49, "source": "renewables"}, {"Entity": "Australia", "Year": 2009, "energy": 18.32, "source": "renewables"}, {"Entity": "Australia", "Year": 2010, "energy": 21.13, "source": "renewables"}, {"Entity": "Australia", "Year": 2011, "energy": 27.33, "source": "renewables"}, {"Entity": "Australia", "Year": 2012, "energy": 26.63, "source": "renewables"}, {"Entity": "Australia", "Year": 2013, "energy": 34.2, "source": "renewables"}, {"Entity": "Australia", "Year": 2014, "energy": 36.15, "source": "renewables"}, {"Entity": "Australia", "Year": 2015, "energy": 33.12, "source": "renewables"}, {"Entity": "Australia", "Year": 2016, "energy": 38.41, "source": "renewables"}, {"Entity": "Australia", "Year": 2017, "energy": 40.77, "source": "renewables"}, {"Entity": "Australia", "Year": 2018, "energy": 42.93, "source": "renewables"}, {"Entity": "Australia", "Year": 2019, "energy": 53.41, "source": "renewables"}, {"Entity": "Australia", "Year": 2020, "energy": 63.99, "source": "renewables"}, {"Entity": "Brazil", "Year": 2000, "energy": 308.77, "source": "renewables"}, {"Entity": "Brazil", "Year": 2001, "energy": 273.71, "source": "renewables"}, {"Entity": "Brazil", "Year": 2002, "energy": 292.95, "source": "renewables"}, {"Entity": "Brazil", "Year": 2003, "energy": 313.88, "source": "renewables"}, {"Entity": "Brazil", "Year": 2004, "energy": 329.43, "source": "renewables"}, {"Entity": "Brazil", "Year": 2005, "energy": 346.96, "source": "renewables"}, {"Entity": "Brazil", "Year": 2006, "energy": 359.55, "source": "renewables"}, {"Entity": "Brazil", "Year": 2007, "energy": 387.88, "source": "renewables"}, {"Entity": "Brazil", "Year": 2008, "energy": 385.61, "source": "renewables"}, {"Entity": "Brazil", "Year": 2009, "energy": 410.13, "source": "renewables"}, {"Entity": "Brazil", "Year": 2010, "energy": 435.99, "source": "renewables"}, {"Entity": "Brazil", "Year": 2011, "energy": 462.32, "source": "renewables"}, {"Entity": "Brazil", "Year": 2012, "energy": 454.78, "source": "renewables"}, {"Entity": "Brazil", "Year": 2013, "energy": 436.84, "source": "renewables"}, {"Entity": "Brazil", "Year": 2014, "energy": 430.82, "source": "renewables"}, {"Entity": "Brazil", "Year": 2015, "energy": 428.81, "source": "renewables"}, {"Entity": "Brazil", "Year": 2016, "energy": 463.37, "source": "renewables"}, {"Entity": "Brazil", "Year": 2017, "energy": 464.4, "source": "renewables"}, {"Entity": "Brazil", "Year": 2018, "energy": 492.66, "source": "renewables"}, {"Entity": "Brazil", "Year": 2019, "energy": 512.59, "source": "renewables"}, {"Entity": "Brazil", "Year": 2020, "energy": 520.01, "source": "renewables"}, {"Entity": "Canada", "Year": 2000, "energy": 363.7, "source": "renewables"}, {"Entity": "Canada", "Year": 2001, "energy": 339.58, "source": "renewables"}, {"Entity": "Canada", "Year": 2002, "energy": 357.06, "source": "renewables"}, {"Entity": "Canada", "Year": 2003, "energy": 343.88, "source": "renewables"}, {"Entity": "Canada", "Year": 2004, "energy": 347.68, "source": "renewables"}, {"Entity": "Canada", "Year": 2005, "energy": 368.86, "source": "renewables"}, {"Entity": "Canada", "Year": 2006, "energy": 360.48, "source": "renewables"}, {"Entity": "Canada", "Year": 2007, "energy": 375.42, "source": "renewables"}, {"Entity": "Canada", "Year": 2008, "energy": 385.21, "source": "renewables"}, {"Entity": "Canada", "Year": 2009, "energy": 380.24, "source": "renewables"}, {"Entity": "Canada", "Year": 2010, "energy": 366.21, "source": "renewables"}, {"Entity": "Canada", "Year": 2011, "energy": 391.95, "source": "renewables"}, {"Entity": "Canada", "Year": 2012, "energy": 398.58, "source": "renewables"}, {"Entity": "Canada", "Year": 2013, "energy": 417.28, "source": "renewables"}, {"Entity": "Canada", "Year": 2014, "energy": 412.13, "source": "renewables"}, {"Entity": "Canada", "Year": 2015, "energy": 417.2, "source": "renewables"}, {"Entity": "Canada", "Year": 2016, "energy": 426.84, "source": "renewables"}, {"Entity": "Canada", "Year": 2017, "energy": 435.43, "source": "renewables"}, {"Entity": "Canada", "Year": 2018, "energy": 428.39, "source": "renewables"}, {"Entity": "Canada", "Year": 2019, "energy": 421.8, "source": "renewables"}, {"Entity": "Canada", "Year": 2020, "energy": 429.24, "source": "renewables"}, {"Entity": "China", "Year": 2000, "energy": 225.56, "source": "renewables"}, {"Entity": "China", "Year": 2001, "energy": 280.73, "source": "renewables"}, {"Entity": "China", "Year": 2002, "energy": 291.41, "source": "renewables"}, {"Entity": "China", "Year": 2003, "energy": 287.28, "source": "renewables"}, {"Entity": "China", "Year": 2004, "energy": 357.43, "source": "renewables"}, {"Entity": "China", "Year": 2005, "energy": 404.37, "source": "renewables"}, {"Entity": "China", "Year": 2006, "energy": 446.72, "source": "renewables"}, {"Entity": "China", "Year": 2007, "energy": 500.71, "source": "renewables"}, {"Entity": "China", "Year": 2008, "energy": 665.08, "source": "renewables"}, {"Entity": "China", "Year": 2009, "energy": 664.39, "source": "renewables"}, {"Entity": "China", "Year": 2010, "energy": 786.38, "source": "renewables"}, {"Entity": "China", "Year": 2011, "energy": 792.38, "source": "renewables"}, {"Entity": "China", "Year": 2012, "energy": 999.56, "source": "renewables"}, {"Entity": "China", "Year": 2013, "energy": 1093.37, "source": "renewables"}, {"Entity": "China", "Year": 2014, "energy": 1289.23, "source": "renewables"}, {"Entity": "China", "Year": 2015, "energy": 1393.66, "source": "renewables"}, {"Entity": "China", "Year": 2016, "energy": 1522.79, "source": "renewables"}, {"Entity": "China", "Year": 2017, "energy": 1667.06, "source": "renewables"}, {"Entity": "China", "Year": 2018, "energy": 1835.32, "source": "renewables"}, {"Entity": "China", "Year": 2019, "energy": 2014.57, "source": "renewables"}, {"Entity": "China", "Year": 2020, "energy": 2184.94, "source": "renewables"}, {"Entity": "France", "Year": 2000, "energy": 67.83, "source": "renewables"}, {"Entity": "France", "Year": 2001, "energy": 76.09, "source": "renewables"}, {"Entity": "France", "Year": 2002, "energy": 62.69, "source": "renewables"}, {"Entity": "France", "Year": 2003, "energy": 61.47, "source": "renewables"}, {"Entity": "France", "Year": 2004, "energy": 62.42, "source": "renewables"}, {"Entity": "France", "Year": 2005, "energy": 54.98, "source": "renewables"}, {"Entity": "France", "Year": 2006, "energy": 60.91, "source": "renewables"}, {"Entity": "France", "Year": 2007, "energy": 64.3, "source": "renewables"}, {"Entity": "France", "Year": 2008, "energy": 72.33, "source": "renewables"}, {"Entity": "France", "Year": 2009, "energy": 68.15, "source": "renewables"}, {"Entity": "France", "Year": 2010, "energy": 76.68, "source": "renewables"}, {"Entity": "France", "Year": 2011, "energy": 66.02, "source": "renewables"}, {"Entity": "France", "Year": 2012, "energy": 85.25, "source": "renewables"}, {"Entity": "France", "Year": 2013, "energy": 99.42, "source": "renewables"}, {"Entity": "France", "Year": 2014, "energy": 94.03, "source": "renewables"}, {"Entity": "France", "Year": 2015, "energy": 91.84, "source": "renewables"}, {"Entity": "France", "Year": 2016, "energy": 99, "source": "renewables"}, {"Entity": "France", "Year": 2017, "energy": 92.63, "source": "renewables"}, {"Entity": "France", "Year": 2018, "energy": 113.62, "source": "renewables"}, {"Entity": "France", "Year": 2019, "energy": 113.21, "source": "renewables"}, {"Entity": "France", "Year": 2020, "energy": 125.28, "source": "renewables"}, {"Entity": "Germany", "Year": 2000, "energy": 35.47, "source": "renewables"}, {"Entity": "Germany", "Year": 2001, "energy": 37.9, "source": "renewables"}, {"Entity": "Germany", "Year": 2002, "energy": 44.48, "source": "renewables"}, {"Entity": "Germany", "Year": 2003, "energy": 46.67, "source": "renewables"}, {"Entity": "Germany", "Year": 2004, "energy": 57.97, "source": "renewables"}, {"Entity": "Germany", "Year": 2005, "energy": 63.4, "source": "renewables"}, {"Entity": "Germany", "Year": 2006, "energy": 72.51, "source": "renewables"}, {"Entity": "Germany", "Year": 2007, "energy": 89.38, "source": "renewables"}, {"Entity": "Germany", "Year": 2008, "energy": 94.28, "source": "renewables"}, {"Entity": "Germany", "Year": 2009, "energy": 95.94, "source": "renewables"}, {"Entity": "Germany", "Year": 2010, "energy": 105.18, "source": "renewables"}, {"Entity": "Germany", "Year": 2011, "energy": 124.04, "source": "renewables"}, {"Entity": "Germany", "Year": 2012, "energy": 143.04, "source": "renewables"}, {"Entity": "Germany", "Year": 2013, "energy": 152.34, "source": "renewables"}, {"Entity": "Germany", "Year": 2014, "energy": 162.54, "source": "renewables"}, {"Entity": "Germany", "Year": 2015, "energy": 188.79, "source": "renewables"}, {"Entity": "Germany", "Year": 2016, "energy": 189.67, "source": "renewables"}, {"Entity": "Germany", "Year": 2017, "energy": 216.32, "source": "renewables"}, {"Entity": "Germany", "Year": 2018, "energy": 222.07, "source": "renewables"}, {"Entity": "Germany", "Year": 2019, "energy": 240.33, "source": "renewables"}, {"Entity": "Germany", "Year": 2020, "energy": 251.48, "source": "renewables"}, {"Entity": "India", "Year": 2000, "energy": 80.27, "source": "renewables"}, {"Entity": "India", "Year": 2001, "energy": 76.19, "source": "renewables"}, {"Entity": "India", "Year": 2002, "energy": 72.78, "source": "renewables"}, {"Entity": "India", "Year": 2003, "energy": 74.63, "source": "renewables"}, {"Entity": "India", "Year": 2004, "energy": 109.2, "source": "renewables"}, {"Entity": "India", "Year": 2005, "energy": 107.47, "source": "renewables"}, {"Entity": "India", "Year": 2006, "energy": 127.56, "source": "renewables"}, {"Entity": "India", "Year": 2007, "energy": 141.75, "source": "renewables"}, {"Entity": "India", "Year": 2008, "energy": 138.91, "source": "renewables"}, {"Entity": "India", "Year": 2009, "energy": 134.33, "source": "renewables"}, {"Entity": "India", "Year": 2010, "energy": 142.61, "source": "renewables"}, {"Entity": "India", "Year": 2011, "energy": 173.62, "source": "renewables"}, {"Entity": "India", "Year": 2012, "energy": 165.25, "source": "renewables"}, {"Entity": "India", "Year": 2013, "energy": 187.9, "source": "renewables"}, {"Entity": "India", "Year": 2014, "energy": 202.04, "source": "renewables"}, {"Entity": "India", "Year": 2015, "energy": 203.21, "source": "renewables"}, {"Entity": "India", "Year": 2016, "energy": 208.21, "source": "renewables"}, {"Entity": "India", "Year": 2017, "energy": 234.9, "source": "renewables"}, {"Entity": "India", "Year": 2018, "energy": 263.61, "source": "renewables"}, {"Entity": "India", "Year": 2019, "energy": 303.16, "source": "renewables"}, {"Entity": "India", "Year": 2020, "energy": 315.76, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2000, "energy": 19.6, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2001, "energy": 22.19, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2002, "energy": 21, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2003, "energy": 19.82, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2004, "energy": 20.97, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2005, "energy": 22.66, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2006, "energy": 21.18, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2007, "energy": 24.29, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2008, "energy": 26.34, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2009, "energy": 26.79, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2010, "energy": 34.63, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2011, "energy": 30.46, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2012, "energy": 31.11, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2013, "energy": 35.5, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2014, "energy": 34.41, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2015, "energy": 33.56, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2016, "energy": 39.58, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2017, "energy": 43.17, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2018, "energy": 48.38, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2019, "energy": 48.04, "source": "renewables"}, {"Entity": "Indonesia", "Year": 2020, "energy": 52.91, "source": "renewables"}, {"Entity": "Italy", "Year": 2000, "energy": 50.87, "source": "renewables"}, {"Entity": "Italy", "Year": 2001, "energy": 54.35, "source": "renewables"}, {"Entity": "Italy", "Year": 2002, "energy": 48.31, "source": "renewables"}, {"Entity": "Italy", "Year": 2003, "energy": 46.86, "source": "renewables"}, {"Entity": "Italy", "Year": 2004, "energy": 53.88, "source": "renewables"}, {"Entity": "Italy", "Year": 2005, "energy": 48.43, "source": "renewables"}, {"Entity": "Italy", "Year": 2006, "energy": 50.64, "source": "renewables"}, {"Entity": "Italy", "Year": 2007, "energy": 47.72, "source": "renewables"}, {"Entity": "Italy", "Year": 2008, "energy": 58.16, "source": "renewables"}, {"Entity": "Italy", "Year": 2009, "energy": 69.26, "source": "renewables"}, {"Entity": "Italy", "Year": 2010, "energy": 76.98, "source": "renewables"}, {"Entity": "Italy", "Year": 2011, "energy": 82.96, "source": "renewables"}, {"Entity": "Italy", "Year": 2012, "energy": 92.22, "source": "renewables"}, {"Entity": "Italy", "Year": 2013, "energy": 112, "source": "renewables"}, {"Entity": "Italy", "Year": 2014, "energy": 120.68, "source": "renewables"}, {"Entity": "Italy", "Year": 2015, "energy": 108.89, "source": "renewables"}, {"Entity": "Italy", "Year": 2016, "energy": 108.01, "source": "renewables"}, {"Entity": "Italy", "Year": 2017, "energy": 103.89, "source": "renewables"}, {"Entity": "Italy", "Year": 2018, "energy": 114.41, "source": "renewables"}, {"Entity": "Italy", "Year": 2019, "energy": 115.83, "source": "renewables"}, {"Entity": "Italy", "Year": 2020, "energy": 116.9, "source": "renewables"}, {"Entity": "Japan", "Year": 2000, "energy": 104.16, "source": "renewables"}, {"Entity": "Japan", "Year": 2001, "energy": 101.36, "source": "renewables"}, {"Entity": "Japan", "Year": 2002, "energy": 101.1, "source": "renewables"}, {"Entity": "Japan", "Year": 2003, "energy": 114.18, "source": "renewables"}, {"Entity": "Japan", "Year": 2004, "energy": 114.73, "source": "renewables"}, {"Entity": "Japan", "Year": 2005, "energy": 100.57, "source": "renewables"}, {"Entity": "Japan", "Year": 2006, "energy": 112.07, "source": "renewables"}, {"Entity": "Japan", "Year": 2007, "energy": 100.8, "source": "renewables"}, {"Entity": "Japan", "Year": 2008, "energy": 100.79, "source": "renewables"}, {"Entity": "Japan", "Year": 2009, "energy": 102.28, "source": "renewables"}, {"Entity": "Japan", "Year": 2010, "energy": 113.92, "source": "renewables"}, {"Entity": "Japan", "Year": 2011, "energy": 116.5, "source": "renewables"}, {"Entity": "Japan", "Year": 2012, "energy": 111.09, "source": "renewables"}, {"Entity": "Japan", "Year": 2013, "energy": 121.48, "source": "renewables"}, {"Entity": "Japan", "Year": 2014, "energy": 136.53, "source": "renewables"}, {"Entity": "Japan", "Year": 2015, "energy": 157.34, "source": "renewables"}, {"Entity": "Japan", "Year": 2016, "energy": 157.7, "source": "renewables"}, {"Entity": "Japan", "Year": 2017, "energy": 175.12, "source": "renewables"}, {"Entity": "Japan", "Year": 2018, "energy": 183.63, "source": "renewables"}, {"Entity": "Japan", "Year": 2019, "energy": 192.72, "source": "renewables"}, {"Entity": "Japan", "Year": 2020, "energy": 205.6, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2000, "energy": 7.53, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2001, "energy": 8.08, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2002, "energy": 8.89, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2003, "energy": 8.62, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2004, "energy": 8.06, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2005, "energy": 7.86, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2006, "energy": 7.77, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2007, "energy": 8.17, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2008, "energy": 7.46, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2009, "energy": 6.88, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2010, "energy": 8.02, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2011, "energy": 7.88, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2012, "energy": 7.64, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2013, "energy": 7.73, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2014, "energy": 8.27, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2015, "energy": 9.45, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2016, "energy": 11.98, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2017, "energy": 11.64, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2018, "energy": 10.91, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2019, "energy": 11.09, "source": "renewables"}, {"Entity": "Kazakhstan", "Year": 2020, "energy": 11.94, "source": "renewables"}, {"Entity": "Mexico", "Year": 2000, "energy": 44.51, "source": "renewables"}, {"Entity": "Mexico", "Year": 2001, "energy": 39.56, "source": "renewables"}, {"Entity": "Mexico", "Year": 2002, "energy": 35.67, "source": "renewables"}, {"Entity": "Mexico", "Year": 2003, "energy": 32.11, "source": "renewables"}, {"Entity": "Mexico", "Year": 2004, "energy": 38.19, "source": "renewables"}, {"Entity": "Mexico", "Year": 2005, "energy": 42.29, "source": "renewables"}, {"Entity": "Mexico", "Year": 2006, "energy": 43.63, "source": "renewables"}, {"Entity": "Mexico", "Year": 2007, "energy": 42.14, "source": "renewables"}, {"Entity": "Mexico", "Year": 2008, "energy": 53.22, "source": "renewables"}, {"Entity": "Mexico", "Year": 2009, "energy": 40.59, "source": "renewables"}, {"Entity": "Mexico", "Year": 2010, "energy": 51.37, "source": "renewables"}, {"Entity": "Mexico", "Year": 2011, "energy": 50.7, "source": "renewables"}, {"Entity": "Mexico", "Year": 2012, "energy": 47.2, "source": "renewables"}, {"Entity": "Mexico", "Year": 2013, "energy": 44.67, "source": "renewables"}, {"Entity": "Mexico", "Year": 2014, "energy": 57.46, "source": "renewables"}, {"Entity": "Mexico", "Year": 2015, "energy": 52.42, "source": "renewables"}, {"Entity": "Mexico", "Year": 2016, "energy": 52.97, "source": "renewables"}, {"Entity": "Mexico", "Year": 2017, "energy": 55.88, "source": "renewables"}, {"Entity": "Mexico", "Year": 2018, "energy": 58.78, "source": "renewables"}, {"Entity": "Mexico", "Year": 2019, "energy": 59, "source": "renewables"}, {"Entity": "Mexico", "Year": 2020, "energy": 69.19, "source": "renewables"}, {"Entity": "Poland", "Year": 2000, "energy": 2.33, "source": "renewables"}, {"Entity": "Poland", "Year": 2001, "energy": 2.78, "source": "renewables"}, {"Entity": "Poland", "Year": 2002, "energy": 2.77, "source": "renewables"}, {"Entity": "Poland", "Year": 2003, "energy": 2.25, "source": "renewables"}, {"Entity": "Poland", "Year": 2004, "energy": 3.2, "source": "renewables"}, {"Entity": "Poland", "Year": 2005, "energy": 3.85, "source": "renewables"}, {"Entity": "Poland", "Year": 2006, "energy": 4.29, "source": "renewables"}, {"Entity": "Poland", "Year": 2007, "energy": 5.43, "source": "renewables"}, {"Entity": "Poland", "Year": 2008, "energy": 6.61, "source": "renewables"}, {"Entity": "Poland", "Year": 2009, "energy": 8.69, "source": "renewables"}, {"Entity": "Poland", "Year": 2010, "energy": 10.88, "source": "renewables"}, {"Entity": "Poland", "Year": 2011, "energy": 13.13, "source": "renewables"}, {"Entity": "Poland", "Year": 2012, "energy": 16.88, "source": "renewables"}, {"Entity": "Poland", "Year": 2013, "energy": 17.06, "source": "renewables"}, {"Entity": "Poland", "Year": 2014, "energy": 19.85, "source": "renewables"}, {"Entity": "Poland", "Year": 2015, "energy": 22.69, "source": "renewables"}, {"Entity": "Poland", "Year": 2016, "energy": 22.81, "source": "renewables"}, {"Entity": "Poland", "Year": 2017, "energy": 24.13, "source": "renewables"}, {"Entity": "Poland", "Year": 2018, "energy": 21.62, "source": "renewables"}, {"Entity": "Poland", "Year": 2019, "energy": 25.46, "source": "renewables"}, {"Entity": "Poland", "Year": 2020, "energy": 28.23, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2000, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2001, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2002, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2003, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2004, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2005, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2006, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2007, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2008, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2009, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2010, "energy": 0, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2011, "energy": 0.01, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2012, "energy": 0.03, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2013, "energy": 0.04, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2014, "energy": 0.05, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2015, "energy": 0.05, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2016, "energy": 0.05, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2017, "energy": 0.07, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2018, "energy": 0.16, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2019, "energy": 0.21, "source": "renewables"}, {"Entity": "Saudi Arabia", "Year": 2020, "energy": 0.21, "source": "renewables"}, {"Entity": "South Africa", "Year": 2000, "energy": 1.79, "source": "renewables"}, {"Entity": "South Africa", "Year": 2001, "energy": 2.46, "source": "renewables"}, {"Entity": "South Africa", "Year": 2002, "energy": 2.81, "source": "renewables"}, {"Entity": "South Africa", "Year": 2003, "energy": 1.19, "source": "renewables"}, {"Entity": "South Africa", "Year": 2004, "energy": 1.33, "source": "renewables"}, {"Entity": "South Africa", "Year": 2005, "energy": 1.75, "source": "renewables"}, {"Entity": "South Africa", "Year": 2006, "energy": 3.28, "source": "renewables"}, {"Entity": "South Africa", "Year": 2007, "energy": 1.3, "source": "renewables"}, {"Entity": "South Africa", "Year": 2008, "energy": 1.66, "source": "renewables"}, {"Entity": "South Africa", "Year": 2009, "energy": 1.86, "source": "renewables"}, {"Entity": "South Africa", "Year": 2010, "energy": 2.51, "source": "renewables"}, {"Entity": "South Africa", "Year": 2011, "energy": 2.49, "source": "renewables"}, {"Entity": "South Africa", "Year": 2012, "energy": 1.66, "source": "renewables"}, {"Entity": "South Africa", "Year": 2013, "energy": 1.62, "source": "renewables"}, {"Entity": "South Africa", "Year": 2014, "energy": 3.38, "source": "renewables"}, {"Entity": "South Africa", "Year": 2015, "energy": 6.09, "source": "renewables"}, {"Entity": "South Africa", "Year": 2016, "energy": 7.69, "source": "renewables"}, {"Entity": "South Africa", "Year": 2017, "energy": 10.04, "source": "renewables"}, {"Entity": "South Africa", "Year": 2018, "energy": 12.22, "source": "renewables"}, {"Entity": "South Africa", "Year": 2019, "energy": 12.57, "source": "renewables"}, {"Entity": "South Africa", "Year": 2020, "energy": 12.83, "source": "renewables"}, {"Entity": "Spain", "Year": 2000, "energy": 34.49, "source": "renewables"}, {"Entity": "Spain", "Year": 2001, "energy": 49.3, "source": "renewables"}, {"Entity": "Spain", "Year": 2002, "energy": 33.17, "source": "renewables"}, {"Entity": "Spain", "Year": 2003, "energy": 55.75, "source": "renewables"}, {"Entity": "Spain", "Year": 2004, "energy": 50.13, "source": "renewables"}, {"Entity": "Spain", "Year": 2005, "energy": 42.27, "source": "renewables"}, {"Entity": "Spain", "Year": 2006, "energy": 52.15, "source": "renewables"}, {"Entity": "Spain", "Year": 2007, "energy": 58.3, "source": "renewables"}, {"Entity": "Spain", "Year": 2008, "energy": 62.15, "source": "renewables"}, {"Entity": "Spain", "Year": 2009, "energy": 74.08, "source": "renewables"}, {"Entity": "Spain", "Year": 2010, "energy": 97.77, "source": "renewables"}, {"Entity": "Spain", "Year": 2011, "energy": 87.53, "source": "renewables"}, {"Entity": "Spain", "Year": 2012, "energy": 86.97, "source": "renewables"}, {"Entity": "Spain", "Year": 2013, "energy": 111.42, "source": "renewables"}, {"Entity": "Spain", "Year": 2014, "energy": 110.26, "source": "renewables"}, {"Entity": "Spain", "Year": 2015, "energy": 97.09, "source": "renewables"}, {"Entity": "Spain", "Year": 2016, "energy": 104.63, "source": "renewables"}, {"Entity": "Spain", "Year": 2017, "energy": 87.93, "source": "renewables"}, {"Entity": "Spain", "Year": 2018, "energy": 103.88, "source": "renewables"}, {"Entity": "Spain", "Year": 2019, "energy": 100.99, "source": "renewables"}, {"Entity": "Spain", "Year": 2020, "energy": 113.79, "source": "renewables"}, {"Entity": "Thailand", "Year": 2000, "energy": 6.38, "source": "renewables"}, {"Entity": "Thailand", "Year": 2001, "energy": 6.76, "source": "renewables"}, {"Entity": "Thailand", "Year": 2002, "energy": 8.07, "source": "renewables"}, {"Entity": "Thailand", "Year": 2003, "energy": 8.36, "source": "renewables"}, {"Entity": "Thailand", "Year": 2004, "energy": 7.63, "source": "renewables"}, {"Entity": "Thailand", "Year": 2005, "energy": 7.42, "source": "renewables"}, {"Entity": "Thailand", "Year": 2006, "energy": 9.82, "source": "renewables"}, {"Entity": "Thailand", "Year": 2007, "energy": 10.2, "source": "renewables"}, {"Entity": "Thailand", "Year": 2008, "energy": 8.95, "source": "renewables"}, {"Entity": "Thailand", "Year": 2009, "energy": 9.09, "source": "renewables"}, {"Entity": "Thailand", "Year": 2010, "energy": 8.58, "source": "renewables"}, {"Entity": "Thailand", "Year": 2011, "energy": 11.83, "source": "renewables"}, {"Entity": "Thailand", "Year": 2012, "energy": 13.42, "source": "renewables"}, {"Entity": "Thailand", "Year": 2013, "energy": 12.33, "source": "renewables"}, {"Entity": "Thailand", "Year": 2014, "energy": 13.68, "source": "renewables"}, {"Entity": "Thailand", "Year": 2015, "energy": 13.33, "source": "renewables"}, {"Entity": "Thailand", "Year": 2016, "energy": 15.97, "source": "renewables"}, {"Entity": "Thailand", "Year": 2017, "energy": 19.92, "source": "renewables"}, {"Entity": "Thailand", "Year": 2018, "energy": 25.84, "source": "renewables"}, {"Entity": "Thailand", "Year": 2019, "energy": 28.02, "source": "renewables"}, {"Entity": "Thailand", "Year": 2020, "energy": 24.73, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2000, "energy": 11.28, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2001, "energy": 12.05, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2002, "energy": 9.65, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2003, "energy": 9.27, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2004, "energy": 11.78, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2005, "energy": 12.4, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2006, "energy": 12.92, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2007, "energy": 10.47, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2008, "energy": 11.82, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2009, "energy": 12.12, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2010, "energy": 13.39, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2011, "energy": 11.2, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2012, "energy": 11.23, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2013, "energy": 15.11, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2014, "energy": 10.17, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2015, "energy": 7.1, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2016, "energy": 9.25, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2017, "energy": 10.88, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2018, "energy": 13.02, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2019, "energy": 11.87, "source": "renewables"}, {"Entity": "Ukraine", "Year": 2020, "energy": 17.56, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2000, "energy": 9.98, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2001, "energy": 9.56, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2002, "energy": 11.13, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2003, "energy": 10.62, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2004, "energy": 14.14, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2005, "energy": 16.93, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2006, "energy": 18.11, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2007, "energy": 19.69, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2008, "energy": 21.85, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2009, "energy": 25.25, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2010, "energy": 26.18, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2011, "energy": 35.2, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2012, "energy": 41.24, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2013, "energy": 53.21, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2014, "energy": 64.52, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2015, "energy": 82.57, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2016, "energy": 82.99, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2017, "energy": 98.85, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2018, "energy": 110.03, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2019, "energy": 120.48, "source": "renewables"}, {"Entity": "United Kingdom", "Year": 2020, "energy": 131.74, "source": "renewables"}, {"Entity": "United States", "Year": 2000, "energy": 350.93, "source": "renewables"}, {"Entity": "United States", "Year": 2001, "energy": 280.06, "source": "renewables"}, {"Entity": "United States", "Year": 2002, "energy": 336.34, "source": "renewables"}, {"Entity": "United States", "Year": 2003, "energy": 349.18, "source": "renewables"}, {"Entity": "United States", "Year": 2004, "energy": 345.14, "source": "renewables"}, {"Entity": "United States", "Year": 2005, "energy": 353.04, "source": "renewables"}, {"Entity": "United States", "Year": 2006, "energy": 381.16, "source": "renewables"}, {"Entity": "United States", "Year": 2007, "energy": 347.91, "source": "renewables"}, {"Entity": "United States", "Year": 2008, "energy": 377.11, "source": "renewables"}, {"Entity": "United States", "Year": 2009, "energy": 415.56, "source": "renewables"}, {"Entity": "United States", "Year": 2010, "energy": 424.48, "source": "renewables"}, {"Entity": "United States", "Year": 2011, "energy": 509.74, "source": "renewables"}, {"Entity": "United States", "Year": 2012, "energy": 492.32, "source": "renewables"}, {"Entity": "United States", "Year": 2013, "energy": 520.38, "source": "renewables"}, {"Entity": "United States", "Year": 2014, "energy": 546.83, "source": "renewables"}, {"Entity": "United States", "Year": 2015, "energy": 556.49, "source": "renewables"}, {"Entity": "United States", "Year": 2016, "energy": 624.91, "source": "renewables"}, {"Entity": "United States", "Year": 2017, "energy": 707.19, "source": "renewables"}, {"Entity": "United States", "Year": 2018, "energy": 733.17, "source": "renewables"}, {"Entity": "United States", "Year": 2019, "energy": 760.76, "source": "renewables"}, {"Entity": "United States", "Year": 2020, "energy": 821.4, "source": "renewables"}], "metadata": {"Entity": {"type": "string", "semanticType": "Location"}, "Year": {"type": "number", "semanticType": "Year"}, "energy": {"type": "number", "semanticType": "Number"}, "source": {"type": "string", "semanticType": "String", "levels": ["fossil fuels", "nuclear", "renewables"]}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n", "source": ["global-energy-20-small.csv"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 158029.9988, 190729.9957, 209229.9957, ..., 6993180.176, 9861099.609, 9874660.156, 10096009.77\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 90.14, 91.79, 92.54, 804.95\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Transform the data into a long format where different energy sources (fossil fuels, nuclear, renewables) are unpivoted into separate rows. Each row should contain the year, entity (country), energy source type, and the corresponding energy value in TWh. This will enable visualization of energy generation trends over time by source and country.\",\n \"display_instruction\": \"Show **energy generation** trends by **source** and **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"source\", \"energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n },\n \"reason\": \"The user wants to visualize energy data across different sources with a line chart faceted by source. The original data has energy sources in separate columns (fossil fuels, nuclear, renewables), so we need to unpivot these columns into a long format with 'source' and 'energy' fields. The chart_encodings provided by the user are appropriate for this visualization goal, using faceting (column) to separate different energy sources.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "global-energy-20-small.csv", "resultTableId": "table-82", "chart": {"id": "chart-1760738394155", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"channel": "y", "bin": false, "fieldID": "concept-1760738385163"}, "color": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false, "fieldID": "concept-1760738389404"}, "row": {"channel": "row", "bin": false}}, "tableRef": "global-energy-20-small.csv", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "", "displayContent": "Show **energy generation** trends by **source** and **Entity** over **Year**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "The code performs a data transformation to restructure the energy data from a wide format to a long format:\n\n1. **Unpivot energy columns**: Uses `pd.melt()` to transform the three energy source columns (**Electricity from fossil fuels**, **Electricity from nuclear**, and **Electricity from renewables**) from separate columns into rows, while keeping **Year** and **Entity** as identifier columns.\n\n2. **Create source classification**: Generates a new **source** column that captures which energy type each row represents, and stores the corresponding energy values in an **energy** column.\n\n3. **Clean source labels**: Removes the prefix \"Electricity from \" and suffix \" (TWh)\" from the source names, resulting in cleaner labels: **fossil fuels**, **nuclear**, and **renewables**.\n\n4. **Return restructured data**: The final dataset has each country-year-energy source combination as a separate row, making it easier to analyze and visualize energy mix across countries and time periods.", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 190729.9957, 227580.0018, 233600.0061, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 90.14, 91.79, 92.54, nan\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThe code performs a data transformation to restructure the energy data from a wide format to a long format:\n\n1. **Unpivot energy columns**: Uses `pd.melt()` to transform the three energy source columns (**Electricity from fossil fuels**, **Electricity from nuclear**, and **Electricity from renewables**) from separate columns into rows, while keeping **Year** and **Entity** as identifier columns.\n\n2. **Create source classification**: Generates a new **source** column that captures which energy type each row represents, and stores the corresponding energy values in an **energy** column.\n\n3. **Clean source labels**: Removes the prefix \"Electricity from \" and suffix \" (TWh)\" from the source names, resulting in cleaner labels: **fossil fuels**, **nuclear**, and **renewables**.\n\n4. **Return restructured data**: The final dataset has each country-year-energy source combination as a separate row, making it easier to analyze and visualize energy mix across countries and time periods.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-45", "displayId": "renewable-energy", "names": ["Entity", "Year", "renewable_percentage"], "rows": [{"Entity": "Australia", "Year": 2000, "renewable_percentage": 8.6344368187}, {"Entity": "Australia", "Year": 2001, "renewable_percentage": 8.2180135078}, {"Entity": "Australia", "Year": 2002, "renewable_percentage": 8.0833022736}, {"Entity": "Australia", "Year": 2003, "renewable_percentage": 8.6598324205}, {"Entity": "Australia", "Year": 2004, "renewable_percentage": 8.7013045232}, {"Entity": "Australia", "Year": 2005, "renewable_percentage": 9.1562355123}, {"Entity": "Australia", "Year": 2006, "renewable_percentage": 9.6357600837}, {"Entity": "Australia", "Year": 2007, "renewable_percentage": 9.1190310213}, {"Entity": "Australia", "Year": 2008, "renewable_percentage": 8.0548900022}, {"Entity": "Australia", "Year": 2009, "renewable_percentage": 7.8043793133}, {"Entity": "Australia", "Year": 2010, "renewable_percentage": 9.0442152121}, {"Entity": "Australia", "Year": 2011, "renewable_percentage": 11.3454273735}, {"Entity": "Australia", "Year": 2012, "renewable_percentage": 11.4105750279}, {"Entity": "Australia", "Year": 2013, "renewable_percentage": 14.8708583355}, {"Entity": "Australia", "Year": 2014, "renewable_percentage": 14.9621290509}, {"Entity": "Australia", "Year": 2015, "renewable_percentage": 14.3476000693}, {"Entity": "Australia", "Year": 2016, "renewable_percentage": 15.6093794449}, {"Entity": "Australia", "Year": 2017, "renewable_percentage": 16.3138729943}, {"Entity": "Australia", "Year": 2018, "renewable_percentage": 17.145938174}, {"Entity": "Australia", "Year": 2019, "renewable_percentage": 21.3759705435}, {"Entity": "Australia", "Year": 2020, "renewable_percentage": 25.5031684668}, {"Entity": "Brazil", "Year": 2000, "renewable_percentage": 90.1307723743}, {"Entity": "Brazil", "Year": 2001, "renewable_percentage": 84.6953615744}, {"Entity": "Brazil", "Year": 2002, "renewable_percentage": 86.0883364189}, {"Entity": "Brazil", "Year": 2003, "renewable_percentage": 87.4561159097}, {"Entity": "Brazil", "Year": 2004, "renewable_percentage": 86.4260041451}, {"Entity": "Brazil", "Year": 2005, "renewable_percentage": 87.6781562721}, {"Entity": "Brazil", "Year": 2006, "renewable_percentage": 87.2842473236}, {"Entity": "Brazil", "Year": 2007, "renewable_percentage": 88.7252098726}, {"Entity": "Brazil", "Year": 2008, "renewable_percentage": 84.8072313004}, {"Entity": "Brazil", "Year": 2009, "renewable_percentage": 89.4172280725}, {"Entity": "Brazil", "Year": 2010, "renewable_percentage": 85.3576882415}, {"Entity": "Brazil", "Year": 2011, "renewable_percentage": 87.6618820986}, {"Entity": "Brazil", "Year": 2012, "renewable_percentage": 83.1164558813}, {"Entity": "Brazil", "Year": 2013, "renewable_percentage": 77.5240022006}, {"Entity": "Brazil", "Year": 2014, "renewable_percentage": 74.0418657409}, {"Entity": "Brazil", "Year": 2015, "renewable_percentage": 75.0231817625}, {"Entity": "Brazil", "Year": 2016, "renewable_percentage": 81.0938046902}, {"Entity": "Brazil", "Year": 2017, "renewable_percentage": 79.9091472228}, {"Entity": "Brazil", "Year": 2018, "renewable_percentage": 82.9198505403}, {"Entity": "Brazil", "Year": 2019, "renewable_percentage": 82.8548799017}, {"Entity": "Brazil", "Year": 2020, "renewable_percentage": 84.6411771408}, {"Entity": "Canada", "Year": 2000, "renewable_percentage": 61.8095917882}, {"Entity": "Canada", "Year": 2001, "renewable_percentage": 59.3287558747}, {"Entity": "Canada", "Year": 2002, "renewable_percentage": 61.1477403113}, {"Entity": "Canada", "Year": 2003, "renewable_percentage": 60.0789685174}, {"Entity": "Canada", "Year": 2004, "renewable_percentage": 59.6967771845}, {"Entity": "Canada", "Year": 2005, "renewable_percentage": 60.8208155391}, {"Entity": "Canada", "Year": 2006, "renewable_percentage": 60.8271602855}, {"Entity": "Canada", "Year": 2007, "renewable_percentage": 61.2460642446}, {"Entity": "Canada", "Year": 2008, "renewable_percentage": 62.6520720838}, {"Entity": "Canada", "Year": 2009, "renewable_percentage": 63.8919227732}, {"Entity": "Canada", "Year": 2010, "renewable_percentage": 62.9421470558}, {"Entity": "Canada", "Year": 2011, "renewable_percentage": 64.0922915917}, {"Entity": "Canada", "Year": 2012, "renewable_percentage": 65.098730952}, {"Entity": "Canada", "Year": 2013, "renewable_percentage": 65.4320794066}, {"Entity": "Canada", "Year": 2014, "renewable_percentage": 64.791145907}, {"Entity": "Canada", "Year": 2015, "renewable_percentage": 65.2946239925}, {"Entity": "Canada", "Year": 2016, "renewable_percentage": 66.1890584295}, {"Entity": "Canada", "Year": 2017, "renewable_percentage": 67.5399410579}, {"Entity": "Canada", "Year": 2018, "renewable_percentage": 67.3685700357}, {"Entity": "Canada", "Year": 2019, "renewable_percentage": 67.1741623137}, {"Entity": "Canada", "Year": 2020, "renewable_percentage": 68.7796436354}, {"Entity": "China", "Year": 2000, "renewable_percentage": 16.639126586}, {"Entity": "China", "Year": 2001, "renewable_percentage": 18.9581237042}, {"Entity": "China", "Year": 2002, "renewable_percentage": 17.6185006046}, {"Entity": "China", "Year": 2003, "renewable_percentage": 15.0362717081}, {"Entity": "China", "Year": 2004, "renewable_percentage": 16.2224108273}, {"Entity": "China", "Year": 2005, "renewable_percentage": 16.1731179957}, {"Entity": "China", "Year": 2006, "renewable_percentage": 15.5884036124}, {"Entity": "China", "Year": 2007, "renewable_percentage": 15.2583847828}, {"Entity": "China", "Year": 2008, "renewable_percentage": 19.0253335469}, {"Entity": "China", "Year": 2009, "renewable_percentage": 17.8857170547}, {"Entity": "China", "Year": 2010, "renewable_percentage": 18.7800759915}, {"Entity": "China", "Year": 2011, "renewable_percentage": 16.8902341543}, {"Entity": "China", "Year": 2012, "renewable_percentage": 20.122965176}, {"Entity": "China", "Year": 2013, "renewable_percentage": 20.2152481955}, {"Entity": "China", "Year": 2014, "renewable_percentage": 22.3502204285}, {"Entity": "China", "Year": 2015, "renewable_percentage": 24.079270189}, {"Entity": "China", "Year": 2016, "renewable_percentage": 25.0007798429}, {"Entity": "China", "Year": 2017, "renewable_percentage": 25.419242299}, {"Entity": "China", "Year": 2018, "renewable_percentage": 25.7747942589}, {"Entity": "China", "Year": 2019, "renewable_percentage": 26.9995671106}, {"Entity": "China", "Year": 2020, "renewable_percentage": 28.2464606924}, {"Entity": "France", "Year": 2000, "renewable_percentage": 12.7117691154}, {"Entity": "France", "Year": 2001, "renewable_percentage": 13.9961372206}, {"Entity": "France", "Year": 2002, "renewable_percentage": 11.3544157067}, {"Entity": "France", "Year": 2003, "renewable_percentage": 10.9783540506}, {"Entity": "France", "Year": 2004, "renewable_percentage": 11.0051305559}, {"Entity": "France", "Year": 2005, "renewable_percentage": 9.6479837153}, {"Entity": "France", "Year": 2006, "renewable_percentage": 10.7235915493}, {"Entity": "France", "Year": 2007, "renewable_percentage": 11.4370075239}, {"Entity": "France", "Year": 2008, "renewable_percentage": 12.7487441615}, {"Entity": "France", "Year": 2009, "renewable_percentage": 12.8776856068}, {"Entity": "France", "Year": 2010, "renewable_percentage": 13.6240072491}, {"Entity": "France", "Year": 2011, "renewable_percentage": 11.63553049}, {"Entity": "France", "Year": 2012, "renewable_percentage": 15.0331522889}, {"Entity": "France", "Year": 2013, "renewable_percentage": 17.2469424928}, {"Entity": "France", "Year": 2014, "renewable_percentage": 16.6074992494}, {"Entity": "France", "Year": 2015, "renewable_percentage": 16.002230276}, {"Entity": "France", "Year": 2016, "renewable_percentage": 17.7212924013}, {"Entity": "France", "Year": 2017, "renewable_percentage": 16.6576751547}, {"Entity": "France", "Year": 2018, "renewable_percentage": 19.7315179827}, {"Entity": "France", "Year": 2019, "renewable_percentage": 20.0116665488}, {"Entity": "France", "Year": 2020, "renewable_percentage": 23.7610241821}, {"Entity": "Germany", "Year": 2000, "renewable_percentage": 6.1977983575}, {"Entity": "Germany", "Year": 2001, "renewable_percentage": 6.5132585197}, {"Entity": "Germany", "Year": 2002, "renewable_percentage": 7.6431369854}, {"Entity": "Germany", "Year": 2003, "renewable_percentage": 7.7455438643}, {"Entity": "Germany", "Year": 2004, "renewable_percentage": 9.4989185292}, {"Entity": "Germany", "Year": 2005, "renewable_percentage": 10.3356645637}, {"Entity": "Germany", "Year": 2006, "renewable_percentage": 11.5129959829}, {"Entity": "Germany", "Year": 2007, "renewable_percentage": 14.135471525}, {"Entity": "Germany", "Year": 2008, "renewable_percentage": 14.8894504106}, {"Entity": "Germany", "Year": 2009, "renewable_percentage": 16.2902842395}, {"Entity": "Germany", "Year": 2010, "renewable_percentage": 16.8384989754}, {"Entity": "Germany", "Year": 2011, "renewable_percentage": 20.4967199299}, {"Entity": "Germany", "Year": 2012, "renewable_percentage": 23.056464482}, {"Entity": "Germany", "Year": 2013, "renewable_percentage": 24.1368929731}, {"Entity": "Germany", "Year": 2014, "renewable_percentage": 26.2182434067}, {"Entity": "Germany", "Year": 2015, "renewable_percentage": 29.4721888318}, {"Entity": "Germany", "Year": 2016, "renewable_percentage": 29.4990435013}, {"Entity": "Germany", "Year": 2017, "renewable_percentage": 33.4855497593}, {"Entity": "Germany", "Year": 2018, "renewable_percentage": 35.0976735365}, {"Entity": "Germany", "Year": 2019, "renewable_percentage": 40.0890757144}, {"Entity": "Germany", "Year": 2020, "renewable_percentage": 44.3324048937}, {"Entity": "India", "Year": 2000, "renewable_percentage": 14.0481982534}, {"Entity": "India", "Year": 2001, "renewable_percentage": 12.9997099422}, {"Entity": "India", "Year": 2002, "renewable_percentage": 11.938193032}, {"Entity": "India", "Year": 2003, "renewable_percentage": 11.695109147}, {"Entity": "India", "Year": 2004, "renewable_percentage": 15.6375300722}, {"Entity": "India", "Year": 2005, "renewable_percentage": 15.2543575768}, {"Entity": "India", "Year": 2006, "renewable_percentage": 17.1352578483}, {"Entity": "India", "Year": 2007, "renewable_percentage": 17.8019742295}, {"Entity": "India", "Year": 2008, "renewable_percentage": 16.768266921}, {"Entity": "India", "Year": 2009, "renewable_percentage": 15.269804822}, {"Entity": "India", "Year": 2010, "renewable_percentage": 15.2122201244}, {"Entity": "India", "Year": 2011, "renewable_percentage": 16.7911025145}, {"Entity": "India", "Year": 2012, "renewable_percentage": 15.1350014654}, {"Entity": "India", "Year": 2013, "renewable_percentage": 16.3941577818}, {"Entity": "India", "Year": 2014, "renewable_percentage": 16.0092550039}, {"Entity": "India", "Year": 2015, "renewable_percentage": 15.3718720687}, {"Entity": "India", "Year": 2016, "renewable_percentage": 14.8548475703}, {"Entity": "India", "Year": 2017, "renewable_percentage": 15.9669920335}, {"Entity": "India", "Year": 2018, "renewable_percentage": 16.6949549709}, {"Entity": "India", "Year": 2019, "renewable_percentage": 18.6915426873}, {"Entity": "India", "Year": 2020, "renewable_percentage": 20.2059243238}, {"Entity": "Indonesia", "Year": 2000, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2001, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2002, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2003, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2004, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2005, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2006, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2007, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2008, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2009, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2010, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2011, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2012, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2013, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2014, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2015, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2016, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2017, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2018, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2019, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2020, "renewable_percentage": null}, {"Entity": "Italy", "Year": 2000, "renewable_percentage": 18.900241501}, {"Entity": "Italy", "Year": 2001, "renewable_percentage": 20.049431902}, {"Entity": "Italy", "Year": 2002, "renewable_percentage": 17.4555571614}, {"Entity": "Italy", "Year": 2003, "renewable_percentage": 16.4202116476}, {"Entity": "Italy", "Year": 2004, "renewable_percentage": 18.2749380999}, {"Entity": "Italy", "Year": 2005, "renewable_percentage": 16.3769782226}, {"Entity": "Italy", "Year": 2006, "renewable_percentage": 16.5128639906}, {"Entity": "Italy", "Year": 2007, "renewable_percentage": 15.5333485238}, {"Entity": "Italy", "Year": 2008, "renewable_percentage": 18.6112}, {"Entity": "Italy", "Year": 2009, "renewable_percentage": 24.0837332221}, {"Entity": "Italy", "Year": 2010, "renewable_percentage": 25.8400187976}, {"Entity": "Italy", "Year": 2011, "renewable_percentage": 27.6773203443}, {"Entity": "Italy", "Year": 2012, "renewable_percentage": 31.1049649217}, {"Entity": "Italy", "Year": 2013, "renewable_percentage": 39.0148744209}, {"Entity": "Italy", "Year": 2014, "renewable_percentage": 43.4976931949}, {"Entity": "Italy", "Year": 2015, "renewable_percentage": 38.7577860829}, {"Entity": "Italy", "Year": 2016, "renewable_percentage": 37.6079387187}, {"Entity": "Italy", "Year": 2017, "renewable_percentage": 35.4174479255}, {"Entity": "Italy", "Year": 2018, "renewable_percentage": 39.8100142663}, {"Entity": "Italy", "Year": 2019, "renewable_percentage": 39.7563068474}, {"Entity": "Italy", "Year": 2020, "renewable_percentage": 42.0397741576}, {"Entity": "Japan", "Year": 2000, "renewable_percentage": 10.5382436261}, {"Entity": "Japan", "Year": 2001, "renewable_percentage": 10.447653504}, {"Entity": "Japan", "Year": 2002, "renewable_percentage": 10.2477294843}, {"Entity": "Japan", "Year": 2003, "renewable_percentage": 11.6993698448}, {"Entity": "Japan", "Year": 2004, "renewable_percentage": 11.4198974767}, {"Entity": "Japan", "Year": 2005, "renewable_percentage": 9.9068127192}, {"Entity": "Japan", "Year": 2006, "renewable_percentage": 10.8554989442}, {"Entity": "Japan", "Year": 2007, "renewable_percentage": 9.3897588285}, {"Entity": "Japan", "Year": 2008, "renewable_percentage": 10.0196834738}, {"Entity": "Japan", "Year": 2009, "renewable_percentage": 10.4667464874}, {"Entity": "Japan", "Year": 2010, "renewable_percentage": 10.5269966826}, {"Entity": "Japan", "Year": 2011, "renewable_percentage": 11.1272421632}, {"Entity": "Japan", "Year": 2012, "renewable_percentage": 10.6143703421}, {"Entity": "Japan", "Year": 2013, "renewable_percentage": 11.7965798852}, {"Entity": "Japan", "Year": 2014, "renewable_percentage": 13.2719619718}, {"Entity": "Japan", "Year": 2015, "renewable_percentage": 15.6586817408}, {"Entity": "Japan", "Year": 2016, "renewable_percentage": 15.6920107068}, {"Entity": "Japan", "Year": 2017, "renewable_percentage": 17.3559698312}, {"Entity": "Japan", "Year": 2018, "renewable_percentage": 18.144181175}, {"Entity": "Japan", "Year": 2019, "renewable_percentage": 19.4223288251}, {"Entity": "Japan", "Year": 2020, "renewable_percentage": 21.324925062}, {"Entity": "Kazakhstan", "Year": 2000, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2001, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2002, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2003, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2004, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2005, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2006, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2007, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2008, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2009, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2010, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2011, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2012, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2013, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2014, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2015, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2016, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2017, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2018, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2019, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2020, "renewable_percentage": null}, {"Entity": "Mexico", "Year": 2000, "renewable_percentage": 22.9291160107}, {"Entity": "Mexico", "Year": 2001, "renewable_percentage": 19.6649599841}, {"Entity": "Mexico", "Year": 2002, "renewable_percentage": 17.4220963173}, {"Entity": "Mexico", "Year": 2003, "renewable_percentage": 15.8536585366}, {"Entity": "Mexico", "Year": 2004, "renewable_percentage": 17.3134463687}, {"Entity": "Mexico", "Year": 2005, "renewable_percentage": 18.2780827246}, {"Entity": "Mexico", "Year": 2006, "renewable_percentage": 18.4256091896}, {"Entity": "Mexico", "Year": 2007, "renewable_percentage": 17.2761561168}, {"Entity": "Mexico", "Year": 2008, "renewable_percentage": 21.5387105913}, {"Entity": "Mexico", "Year": 2009, "renewable_percentage": 16.5369729069}, {"Entity": "Mexico", "Year": 2010, "renewable_percentage": 19.4281608109}, {"Entity": "Mexico", "Year": 2011, "renewable_percentage": 18.0916357408}, {"Entity": "Mexico", "Year": 2012, "renewable_percentage": 16.5759438104}, {"Entity": "Mexico", "Year": 2013, "renewable_percentage": 15.5492898914}, {"Entity": "Mexico", "Year": 2014, "renewable_percentage": 19.8008201523}, {"Entity": "Mexico", "Year": 2015, "renewable_percentage": 17.5976903451}, {"Entity": "Mexico", "Year": 2016, "renewable_percentage": 17.4806943436}, {"Entity": "Mexico", "Year": 2017, "renewable_percentage": 18.0759526428}, {"Entity": "Mexico", "Year": 2018, "renewable_percentage": 17.703752786}, {"Entity": "Mexico", "Year": 2019, "renewable_percentage": 18.5487927565}, {"Entity": "Mexico", "Year": 2020, "renewable_percentage": 21.2552224134}, {"Entity": "Poland", "Year": 2000, "renewable_percentage": 1.6273222517}, {"Entity": "Poland", "Year": 2001, "renewable_percentage": 1.934316727}, {"Entity": "Poland", "Year": 2002, "renewable_percentage": 1.9439960699}, {"Entity": "Poland", "Year": 2003, "renewable_percentage": 1.4999000067}, {"Entity": "Poland", "Year": 2004, "renewable_percentage": 2.1016681991}, {"Entity": "Poland", "Year": 2005, "renewable_percentage": 2.4830699774}, {"Entity": "Poland", "Year": 2006, "renewable_percentage": 2.673730134}, {"Entity": "Poland", "Year": 2007, "renewable_percentage": 3.4256513785}, {"Entity": "Poland", "Year": 2008, "renewable_percentage": 4.2744438696}, {"Entity": "Poland", "Year": 2009, "renewable_percentage": 5.7515388179}, {"Entity": "Poland", "Year": 2010, "renewable_percentage": 6.9299363057}, {"Entity": "Poland", "Year": 2011, "renewable_percentage": 8.0547205693}, {"Entity": "Poland", "Year": 2012, "renewable_percentage": 10.4436057663}, {"Entity": "Poland", "Year": 2013, "renewable_percentage": 10.4081508145}, {"Entity": "Poland", "Year": 2014, "renewable_percentage": 12.5331481248}, {"Entity": "Poland", "Year": 2015, "renewable_percentage": 13.8151485631}, {"Entity": "Poland", "Year": 2016, "renewable_percentage": 13.7335179722}, {"Entity": "Poland", "Year": 2017, "renewable_percentage": 14.1999646913}, {"Entity": "Poland", "Year": 2018, "renewable_percentage": 12.7559148032}, {"Entity": "Poland", "Year": 2019, "renewable_percentage": 15.6157998037}, {"Entity": "Poland", "Year": 2020, "renewable_percentage": 17.9648720886}, {"Entity": "Saudi Arabia", "Year": 2000, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2001, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2002, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2003, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2004, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2005, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2006, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2007, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2008, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2009, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2010, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2011, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2012, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2013, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2014, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2015, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2016, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2017, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2018, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2019, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2020, "renewable_percentage": null}, {"Entity": "South Africa", "Year": 2000, "renewable_percentage": 0.9110805721}, {"Entity": "South Africa", "Year": 2001, "renewable_percentage": 1.2516536074}, {"Entity": "South Africa", "Year": 2002, "renewable_percentage": 1.3802249619}, {"Entity": "South Africa", "Year": 2003, "renewable_percentage": 0.545271261}, {"Entity": "South Africa", "Year": 2004, "renewable_percentage": 0.5827199439}, {"Entity": "South Africa", "Year": 2005, "renewable_percentage": 0.763458686}, {"Entity": "South Africa", "Year": 2006, "renewable_percentage": 1.3863060017}, {"Entity": "South Africa", "Year": 2007, "renewable_percentage": 0.5267209594}, {"Entity": "South Africa", "Year": 2008, "renewable_percentage": 0.6895692269}, {"Entity": "South Africa", "Year": 2009, "renewable_percentage": 0.8031088083}, {"Entity": "South Africa", "Year": 2010, "renewable_percentage": 1.0330068318}, {"Entity": "South Africa", "Year": 2011, "renewable_percentage": 1.0184465622}, {"Entity": "South Africa", "Year": 2012, "renewable_percentage": 0.6890826069}, {"Entity": "South Africa", "Year": 2013, "renewable_percentage": 0.6792168043}, {"Entity": "South Africa", "Year": 2014, "renewable_percentage": 1.4288129861}, {"Entity": "South Africa", "Year": 2015, "renewable_percentage": 2.6256790549}, {"Entity": "South Africa", "Year": 2016, "renewable_percentage": 3.2586126531}, {"Entity": "South Africa", "Year": 2017, "renewable_percentage": 4.2202606137}, {"Entity": "South Africa", "Year": 2018, "renewable_percentage": 5.1554655529}, {"Entity": "South Africa", "Year": 2019, "renewable_percentage": 5.3589699864}, {"Entity": "South Africa", "Year": 2020, "renewable_percentage": 5.780581212}, {"Entity": "Spain", "Year": 2000, "renewable_percentage": 15.6119862394}, {"Entity": "Spain", "Year": 2001, "renewable_percentage": 21.1524434719}, {"Entity": "Spain", "Year": 2002, "renewable_percentage": 13.8260180901}, {"Entity": "Spain", "Year": 2003, "renewable_percentage": 21.667314419}, {"Entity": "Spain", "Year": 2004, "renewable_percentage": 18.3190206468}, {"Entity": "Spain", "Year": 2005, "renewable_percentage": 14.8597342333}, {"Entity": "Spain", "Year": 2006, "renewable_percentage": 17.6623992413}, {"Entity": "Spain", "Year": 2007, "renewable_percentage": 19.3347262296}, {"Entity": "Spain", "Year": 2008, "renewable_percentage": 20.0051501593}, {"Entity": "Spain", "Year": 2009, "renewable_percentage": 25.4107639008}, {"Entity": "Spain", "Year": 2010, "renewable_percentage": 32.7922186819}, {"Entity": "Spain", "Year": 2011, "renewable_percentage": 30.0408415417}, {"Entity": "Spain", "Year": 2012, "renewable_percentage": 29.6047928652}, {"Entity": "Spain", "Year": 2013, "renewable_percentage": 39.5850357054}, {"Entity": "Spain", "Year": 2014, "renewable_percentage": 40.1032952644}, {"Entity": "Spain", "Year": 2015, "renewable_percentage": 34.9899091826}, {"Entity": "Spain", "Year": 2016, "renewable_percentage": 38.5818061138}, {"Entity": "Spain", "Year": 2017, "renewable_percentage": 32.220593624}, {"Entity": "Spain", "Year": 2018, "renewable_percentage": 38.2080329557}, {"Entity": "Spain", "Year": 2019, "renewable_percentage": 37.280815091}, {"Entity": "Spain", "Year": 2020, "renewable_percentage": 43.8108805298}, {"Entity": "Thailand", "Year": 2000, "renewable_percentage": 7.1261029822}, {"Entity": "Thailand", "Year": 2001, "renewable_percentage": 7.061527212}, {"Entity": "Thailand", "Year": 2002, "renewable_percentage": 7.9444772593}, {"Entity": "Thailand", "Year": 2003, "renewable_percentage": 7.6718362852}, {"Entity": "Thailand", "Year": 2004, "renewable_percentage": 6.5163549406}, {"Entity": "Thailand", "Year": 2005, "renewable_percentage": 6.0325203252}, {"Entity": "Thailand", "Year": 2006, "renewable_percentage": 7.5988547551}, {"Entity": "Thailand", "Year": 2007, "renewable_percentage": 7.7085852479}, {"Entity": "Thailand", "Year": 2008, "renewable_percentage": 6.5625458278}, {"Entity": "Thailand", "Year": 2009, "renewable_percentage": 6.6263303689}, {"Entity": "Thailand", "Year": 2010, "renewable_percentage": 5.7085828343}, {"Entity": "Thailand", "Year": 2011, "renewable_percentage": 8.039961941}, {"Entity": "Thailand", "Year": 2012, "renewable_percentage": 8.5396118358}, {"Entity": "Thailand", "Year": 2013, "renewable_percentage": 7.6765035487}, {"Entity": "Thailand", "Year": 2014, "renewable_percentage": 8.395728489}, {"Entity": "Thailand", "Year": 2015, "renewable_percentage": 7.9949619145}, {"Entity": "Thailand", "Year": 2016, "renewable_percentage": 8.9840234023}, {"Entity": "Thailand", "Year": 2017, "renewable_percentage": 10.9570957096}, {"Entity": "Thailand", "Year": 2018, "renewable_percentage": 14.1900054915}, {"Entity": "Thailand", "Year": 2019, "renewable_percentage": 14.7001731284}, {"Entity": "Thailand", "Year": 2020, "renewable_percentage": 13.7963737796}, {"Entity": "Ukraine", "Year": 2000, "renewable_percentage": 6.5860921352}, {"Entity": "Ukraine", "Year": 2001, "renewable_percentage": 6.9729761009}, {"Entity": "Ukraine", "Year": 2002, "renewable_percentage": 5.5597165409}, {"Entity": "Ukraine", "Year": 2003, "renewable_percentage": 5.1442841287}, {"Entity": "Ukraine", "Year": 2004, "renewable_percentage": 6.4718162839}, {"Entity": "Ukraine", "Year": 2005, "renewable_percentage": 6.6698940347}, {"Entity": "Ukraine", "Year": 2006, "renewable_percentage": 6.68633235}, {"Entity": "Ukraine", "Year": 2007, "renewable_percentage": 5.3380238605}, {"Entity": "Ukraine", "Year": 2008, "renewable_percentage": 6.1377090041}, {"Entity": "Ukraine", "Year": 2009, "renewable_percentage": 6.980762585}, {"Entity": "Ukraine", "Year": 2010, "renewable_percentage": 7.0914098083}, {"Entity": "Ukraine", "Year": 2011, "renewable_percentage": 5.7450628366}, {"Entity": "Ukraine", "Year": 2012, "renewable_percentage": 5.6614236741}, {"Entity": "Ukraine", "Year": 2013, "renewable_percentage": 7.8003200661}, {"Entity": "Ukraine", "Year": 2014, "renewable_percentage": 5.5885262117}, {"Entity": "Ukraine", "Year": 2015, "renewable_percentage": 4.3924771096}, {"Entity": "Ukraine", "Year": 2016, "renewable_percentage": 5.6797249171}, {"Entity": "Ukraine", "Year": 2017, "renewable_percentage": 7.0457194664}, {"Entity": "Ukraine", "Year": 2018, "renewable_percentage": 8.228528092}, {"Entity": "Ukraine", "Year": 2019, "renewable_percentage": 7.7754487096}, {"Entity": "Ukraine", "Year": 2020, "renewable_percentage": 11.8440577364}, {"Entity": "United Kingdom", "Year": 2000, "renewable_percentage": 2.6657406913}, {"Entity": "United Kingdom", "Year": 2001, "renewable_percentage": 2.5001961451}, {"Entity": "United Kingdom", "Year": 2002, "renewable_percentage": 2.8939157566}, {"Entity": "United Kingdom", "Year": 2003, "renewable_percentage": 2.6854802003}, {"Entity": "United Kingdom", "Year": 2004, "renewable_percentage": 3.6136880575}, {"Entity": "United Kingdom", "Year": 2005, "renewable_percentage": 4.2815234434}, {"Entity": "United Kingdom", "Year": 2006, "renewable_percentage": 4.6029890199}, {"Entity": "United Kingdom", "Year": 2007, "renewable_percentage": 5.0104331009}, {"Entity": "United Kingdom", "Year": 2008, "renewable_percentage": 5.6776842324}, {"Entity": "United Kingdom", "Year": 2009, "renewable_percentage": 6.7679854187}, {"Entity": "United Kingdom", "Year": 2010, "renewable_percentage": 6.9092924441}, {"Entity": "United Kingdom", "Year": 2011, "renewable_percentage": 9.6422505889}, {"Entity": "United Kingdom", "Year": 2012, "renewable_percentage": 11.4273047189}, {"Entity": "United Kingdom", "Year": 2013, "renewable_percentage": 14.9727052732}, {"Entity": "United Kingdom", "Year": 2014, "renewable_percentage": 19.2476358104}, {"Entity": "United Kingdom", "Year": 2015, "renewable_percentage": 24.6227709191}, {"Entity": "United Kingdom", "Year": 2016, "renewable_percentage": 24.6788390627}, {"Entity": "United Kingdom", "Year": 2017, "renewable_percentage": 29.4986571173}, {"Entity": "United Kingdom", "Year": 2018, "renewable_percentage": 33.2919818457}, {"Entity": "United Kingdom", "Year": 2019, "renewable_percentage": 37.4568630499}, {"Entity": "United Kingdom", "Year": 2020, "renewable_percentage": 42.8603962651}, {"Entity": "United States", "Year": 2000, "renewable_percentage": 9.2298992662}, {"Entity": "United States", "Year": 2001, "renewable_percentage": 7.5132056541}, {"Entity": "United States", "Year": 2002, "renewable_percentage": 8.749216358}, {"Entity": "United States", "Year": 2003, "renewable_percentage": 9.0252110397}, {"Entity": "United States", "Year": 2004, "renewable_percentage": 8.7334100887}, {"Entity": "United States", "Year": 2005, "renewable_percentage": 8.7494640631}, {"Entity": "United States", "Year": 2006, "renewable_percentage": 9.4184742052}, {"Entity": "United States", "Year": 2007, "renewable_percentage": 8.3984096829}, {"Entity": "United States", "Year": 2008, "renewable_percentage": 9.180943292}, {"Entity": "United States", "Year": 2009, "renewable_percentage": 10.547689996}, {"Entity": "United States", "Year": 2010, "renewable_percentage": 10.3180892283}, {"Entity": "United States", "Year": 2011, "renewable_percentage": 12.4665249812}, {"Entity": "United States", "Year": 2012, "renewable_percentage": 12.1841179804}, {"Entity": "United States", "Year": 2013, "renewable_percentage": 12.8311154179}, {"Entity": "United States", "Year": 2014, "renewable_percentage": 13.3503092033}, {"Entity": "United States", "Year": 2015, "renewable_percentage": 13.6261352256}, {"Entity": "United States", "Year": 2016, "renewable_percentage": 15.2880936304}, {"Entity": "United States", "Year": 2017, "renewable_percentage": 17.4515276472}, {"Entity": "United States", "Year": 2018, "renewable_percentage": 17.4499886946}, {"Entity": "United States", "Year": 2019, "renewable_percentage": 18.2946243489}, {"Entity": "United States", "Year": 2020, "renewable_percentage": 20.3156921037}], "metadata": {"Entity": {"type": "string", "semanticType": "Location"}, "Year": {"type": "number", "semanticType": "Year"}, "renewable_percentage": {"type": "number", "semanticType": "Percentage"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage']].copy()\n \n return transformed_df\n", "source": ["global-energy-20-small.csv"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 158029.9988, 190729.9957, 209229.9957, ..., 6993180.176, 9861099.609, 9874660.156, 10096009.77\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 90.14, 91.79, 92.54, 804.95\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Transform the data into a long format where different energy sources (fossil fuels, nuclear, renewables) are unpivoted into separate rows. Each row should contain the year, entity (country), energy source type, and the corresponding energy value in TWh. This will enable visualization of energy generation trends over time by source and country.\",\n \"display_instruction\": \"Show **energy generation** trends by **source** and **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"source\", \"energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n },\n \"reason\": \"The user wants to visualize energy data across different sources with a line chart faceted by source. The original data has energy sources in separate columns (fossil fuels, nuclear, renewables), so we need to unpivot these columns into a long format with 'source' and 'energy' fields. The chart_encodings provided by the user are appropriate for this visualization goal, using faceting (column) to separate different energy sources.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Entity Year energy source\n0 Australia 2000 181.05 fossil fuels\n1 Australia 2001 194.33 fossil fuels\n2 Australia 2002 197.29 fossil fuels\n3 Australia 2003 195.13 fossil fuels\n4 Australia 2004 203.66 fossil fuels\n5 Australia 2005 195.95 fossil fuels\n6 Australia 2006 198.72 fossil fuels\n7 Australia 2007 208.59 fossil fuels\n8 Australia 2008 211.06 fossil fuels\n9 Australia 2009 216.42 fossil fuels\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show renewable percentage for each country\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage for each country and year. The renewable percentage is computed as the ratio of renewable energy to total energy (sum of fossil fuels, nuclear, and renewables) multiplied by 100. The output should contain year, entity (country), and the renewable percentage value.\",\n \"display_instruction\": \"Show **renewable percentage** for each **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"renewable_percentage\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"renewable_percentage\",\n \"color\": \"Entity\"\n },\n \"reason\": \"The user wants to see renewable percentage trends, which requires calculating the proportion of renewable energy relative to total energy generation. This is a single metric per country per year, so we don't need the 'column' faceting by source anymore. The chart_encodings are updated to reflect that we're now showing a percentage metric rather than absolute energy values by source.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage']].copy()\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-82", "resultTableId": "table-45", "chart": {"id": "chart-1760738416626", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"fieldID": "concept-1760738385163"}, "color": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "concept-1760738389404", "sortBy": "[\"fossil fuels\",\"nuclear\",\"renewables\"]"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-82", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show renewable percentage for each country", "displayContent": "Show **renewable percentage** for each **Entity** over **Year**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "The code transforms global energy data to analyze renewable energy adoption:\n\n- Calculates **total_energy** by summing electricity generation from three sources: **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n- Computes **renewable_percentage** by dividing **Electricity from renewables (TWh)** by **total_energy** and multiplying by **100**\n- Handles edge cases by replacing infinite values (from division by zero) with **NaN**\n- Filters the dataset to retain only **Year**, **Entity** (country), and **renewable_percentage** columns", "concepts": [{"explanation": "The proportion of a country's total electricity generation that comes from renewable sources, expressed as a percentage. Calculated as: \\( \\frac{\\text{Electricity from renewables}}{\\text{Total electricity generation}} \\times 100 \\). This metric indicates the degree of renewable energy adoption in each country's energy mix.", "field": "renewable_percentage"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5738290.039, 9861099.609, 10502929.69, 10707219.73\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., nan, nan, nan, nan\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage']].copy()\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThe code transforms global energy data to analyze renewable energy adoption:\n\n- Calculates **total_energy** by summing electricity generation from three sources: **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n- Computes **renewable_percentage** by dividing **Electricity from renewables (TWh)** by **total_energy** and multiplying by **100**\n- Handles edge cases by replacing infinite values (from division by zero) with **NaN**\n- Filters the dataset to retain only **Year**, **Entity** (country), and **renewable_percentage** columns\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"renewable_percentage\",\n \"explanation\": \"The proportion of a country's total electricity generation that comes from renewable sources, expressed as a percentage. Calculated as: \\\\( \\\\frac{\\\\text{Electricity from renewables}}{\\\\text{Total electricity generation}} \\\\times 100 \\\\). This metric indicates the degree of renewable energy adoption in each country's energy mix.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-78", "displayId": "renewable-energy-rank", "names": ["Entity", "Year", "rank", "renewable_percentage"], "rows": [{"Entity": "Australia", "Year": 2000, "rank": 11, "renewable_percentage": 8.6344368187}, {"Entity": "Australia", "Year": 2001, "rank": 10, "renewable_percentage": 8.2180135078}, {"Entity": "Australia", "Year": 2002, "rank": 11, "renewable_percentage": 8.0833022736}, {"Entity": "Australia", "Year": 2003, "rank": 11, "renewable_percentage": 8.6598324205}, {"Entity": "Australia", "Year": 2004, "rank": 12, "renewable_percentage": 8.7013045232}, {"Entity": "Australia", "Year": 2005, "rank": 11, "renewable_percentage": 9.1562355123}, {"Entity": "Australia", "Year": 2006, "rank": 11, "renewable_percentage": 9.6357600837}, {"Entity": "Australia", "Year": 2007, "rank": 11, "renewable_percentage": 9.1190310213}, {"Entity": "Australia", "Year": 2008, "rank": 12, "renewable_percentage": 8.0548900022}, {"Entity": "Australia", "Year": 2009, "rank": 12, "renewable_percentage": 7.8043793133}, {"Entity": "Australia", "Year": 2010, "rank": 12, "renewable_percentage": 9.0442152121}, {"Entity": "Australia", "Year": 2011, "rank": 11, "renewable_percentage": 11.3454273735}, {"Entity": "Australia", "Year": 2012, "rank": 12, "renewable_percentage": 11.4105750279}, {"Entity": "Australia", "Year": 2013, "rank": 11, "renewable_percentage": 14.8708583355}, {"Entity": "Australia", "Year": 2014, "rank": 11, "renewable_percentage": 14.9621290509}, {"Entity": "Australia", "Year": 2015, "rank": 12, "renewable_percentage": 14.3476000693}, {"Entity": "Australia", "Year": 2016, "rank": 11, "renewable_percentage": 15.6093794449}, {"Entity": "Australia", "Year": 2017, "rank": 12, "renewable_percentage": 16.3138729943}, {"Entity": "Australia", "Year": 2018, "rank": 12, "renewable_percentage": 17.145938174}, {"Entity": "Australia", "Year": 2019, "rank": 8, "renewable_percentage": 21.3759705435}, {"Entity": "Australia", "Year": 2020, "rank": 8, "renewable_percentage": 25.5031684668}, {"Entity": "Brazil", "Year": 2000, "rank": 1, "renewable_percentage": 90.1307723743}, {"Entity": "Brazil", "Year": 2001, "rank": 1, "renewable_percentage": 84.6953615744}, {"Entity": "Brazil", "Year": 2002, "rank": 1, "renewable_percentage": 86.0883364189}, {"Entity": "Brazil", "Year": 2003, "rank": 1, "renewable_percentage": 87.4561159097}, {"Entity": "Brazil", "Year": 2004, "rank": 1, "renewable_percentage": 86.4260041451}, {"Entity": "Brazil", "Year": 2005, "rank": 1, "renewable_percentage": 87.6781562721}, {"Entity": "Brazil", "Year": 2006, "rank": 1, "renewable_percentage": 87.2842473236}, {"Entity": "Brazil", "Year": 2007, "rank": 1, "renewable_percentage": 88.7252098726}, {"Entity": "Brazil", "Year": 2008, "rank": 1, "renewable_percentage": 84.8072313004}, {"Entity": "Brazil", "Year": 2009, "rank": 1, "renewable_percentage": 89.4172280725}, {"Entity": "Brazil", "Year": 2010, "rank": 1, "renewable_percentage": 85.3576882415}, {"Entity": "Brazil", "Year": 2011, "rank": 1, "renewable_percentage": 87.6618820986}, {"Entity": "Brazil", "Year": 2012, "rank": 1, "renewable_percentage": 83.1164558813}, {"Entity": "Brazil", "Year": 2013, "rank": 1, "renewable_percentage": 77.5240022006}, {"Entity": "Brazil", "Year": 2014, "rank": 1, "renewable_percentage": 74.0418657409}, {"Entity": "Brazil", "Year": 2015, "rank": 1, "renewable_percentage": 75.0231817625}, {"Entity": "Brazil", "Year": 2016, "rank": 1, "renewable_percentage": 81.0938046902}, {"Entity": "Brazil", "Year": 2017, "rank": 1, "renewable_percentage": 79.9091472228}, {"Entity": "Brazil", "Year": 2018, "rank": 1, "renewable_percentage": 82.9198505403}, {"Entity": "Brazil", "Year": 2019, "rank": 1, "renewable_percentage": 82.8548799017}, {"Entity": "Brazil", "Year": 2020, "rank": 1, "renewable_percentage": 84.6411771408}, {"Entity": "Canada", "Year": 2000, "rank": 2, "renewable_percentage": 61.8095917882}, {"Entity": "Canada", "Year": 2001, "rank": 2, "renewable_percentage": 59.3287558747}, {"Entity": "Canada", "Year": 2002, "rank": 2, "renewable_percentage": 61.1477403113}, {"Entity": "Canada", "Year": 2003, "rank": 2, "renewable_percentage": 60.0789685174}, {"Entity": "Canada", "Year": 2004, "rank": 2, "renewable_percentage": 59.6967771845}, {"Entity": "Canada", "Year": 2005, "rank": 2, "renewable_percentage": 60.8208155391}, {"Entity": "Canada", "Year": 2006, "rank": 2, "renewable_percentage": 60.8271602855}, {"Entity": "Canada", "Year": 2007, "rank": 2, "renewable_percentage": 61.2460642446}, {"Entity": "Canada", "Year": 2008, "rank": 2, "renewable_percentage": 62.6520720838}, {"Entity": "Canada", "Year": 2009, "rank": 2, "renewable_percentage": 63.8919227732}, {"Entity": "Canada", "Year": 2010, "rank": 2, "renewable_percentage": 62.9421470558}, {"Entity": "Canada", "Year": 2011, "rank": 2, "renewable_percentage": 64.0922915917}, {"Entity": "Canada", "Year": 2012, "rank": 2, "renewable_percentage": 65.098730952}, {"Entity": "Canada", "Year": 2013, "rank": 2, "renewable_percentage": 65.4320794066}, {"Entity": "Canada", "Year": 2014, "rank": 2, "renewable_percentage": 64.791145907}, {"Entity": "Canada", "Year": 2015, "rank": 2, "renewable_percentage": 65.2946239925}, {"Entity": "Canada", "Year": 2016, "rank": 2, "renewable_percentage": 66.1890584295}, {"Entity": "Canada", "Year": 2017, "rank": 2, "renewable_percentage": 67.5399410579}, {"Entity": "Canada", "Year": 2018, "rank": 2, "renewable_percentage": 67.3685700357}, {"Entity": "Canada", "Year": 2019, "rank": 2, "renewable_percentage": 67.1741623137}, {"Entity": "Canada", "Year": 2020, "rank": 2, "renewable_percentage": 68.7796436354}, {"Entity": "China", "Year": 2000, "rank": 5, "renewable_percentage": 16.639126586}, {"Entity": "China", "Year": 2001, "rank": 6, "renewable_percentage": 18.9581237042}, {"Entity": "China", "Year": 2002, "rank": 3, "renewable_percentage": 17.6185006046}, {"Entity": "China", "Year": 2003, "rank": 6, "renewable_percentage": 15.0362717081}, {"Entity": "China", "Year": 2004, "rank": 6, "renewable_percentage": 16.2224108273}, {"Entity": "China", "Year": 2005, "rank": 5, "renewable_percentage": 16.1731179957}, {"Entity": "China", "Year": 2006, "rank": 7, "renewable_percentage": 15.5884036124}, {"Entity": "China", "Year": 2007, "rank": 7, "renewable_percentage": 15.2583847828}, {"Entity": "China", "Year": 2008, "rank": 5, "renewable_percentage": 19.0253335469}, {"Entity": "China", "Year": 2009, "rank": 5, "renewable_percentage": 17.8857170547}, {"Entity": "China", "Year": 2010, "rank": 6, "renewable_percentage": 18.7800759915}, {"Entity": "China", "Year": 2011, "rank": 7, "renewable_percentage": 16.8902341543}, {"Entity": "China", "Year": 2012, "rank": 6, "renewable_percentage": 20.122965176}, {"Entity": "China", "Year": 2013, "rank": 6, "renewable_percentage": 20.2152481955}, {"Entity": "China", "Year": 2014, "rank": 6, "renewable_percentage": 22.3502204285}, {"Entity": "China", "Year": 2015, "rank": 7, "renewable_percentage": 24.079270189}, {"Entity": "China", "Year": 2016, "rank": 6, "renewable_percentage": 25.0007798429}, {"Entity": "China", "Year": 2017, "rank": 7, "renewable_percentage": 25.419242299}, {"Entity": "China", "Year": 2018, "rank": 7, "renewable_percentage": 25.7747942589}, {"Entity": "China", "Year": 2019, "rank": 7, "renewable_percentage": 26.9995671106}, {"Entity": "China", "Year": 2020, "rank": 7, "renewable_percentage": 28.2464606924}, {"Entity": "France", "Year": 2000, "rank": 8, "renewable_percentage": 12.7117691154}, {"Entity": "France", "Year": 2001, "rank": 7, "renewable_percentage": 13.9961372206}, {"Entity": "France", "Year": 2002, "rank": 8, "renewable_percentage": 11.3544157067}, {"Entity": "France", "Year": 2003, "rank": 9, "renewable_percentage": 10.9783540506}, {"Entity": "France", "Year": 2004, "rank": 9, "renewable_percentage": 11.0051305559}, {"Entity": "France", "Year": 2005, "rank": 10, "renewable_percentage": 9.6479837153}, {"Entity": "France", "Year": 2006, "rank": 10, "renewable_percentage": 10.7235915493}, {"Entity": "France", "Year": 2007, "rank": 9, "renewable_percentage": 11.4370075239}, {"Entity": "France", "Year": 2008, "rank": 9, "renewable_percentage": 12.7487441615}, {"Entity": "France", "Year": 2009, "rank": 9, "renewable_percentage": 12.8776856068}, {"Entity": "France", "Year": 2010, "rank": 9, "renewable_percentage": 13.6240072491}, {"Entity": "France", "Year": 2011, "rank": 10, "renewable_percentage": 11.63553049}, {"Entity": "France", "Year": 2012, "rank": 9, "renewable_percentage": 15.0331522889}, {"Entity": "France", "Year": 2013, "rank": 7, "renewable_percentage": 17.2469424928}, {"Entity": "France", "Year": 2014, "rank": 9, "renewable_percentage": 16.6074992494}, {"Entity": "France", "Year": 2015, "rank": 9, "renewable_percentage": 16.002230276}, {"Entity": "France", "Year": 2016, "rank": 8, "renewable_percentage": 17.7212924013}, {"Entity": "France", "Year": 2017, "rank": 11, "renewable_percentage": 16.6576751547}, {"Entity": "France", "Year": 2018, "rank": 8, "renewable_percentage": 19.7315179827}, {"Entity": "France", "Year": 2019, "rank": 9, "renewable_percentage": 20.0116665488}, {"Entity": "France", "Year": 2020, "rank": 9, "renewable_percentage": 23.7610241821}, {"Entity": "Germany", "Year": 2000, "rank": 14, "renewable_percentage": 6.1977983575}, {"Entity": "Germany", "Year": 2001, "rank": 14, "renewable_percentage": 6.5132585197}, {"Entity": "Germany", "Year": 2002, "rank": 13, "renewable_percentage": 7.6431369854}, {"Entity": "Germany", "Year": 2003, "rank": 12, "renewable_percentage": 7.7455438643}, {"Entity": "Germany", "Year": 2004, "rank": 10, "renewable_percentage": 9.4989185292}, {"Entity": "Germany", "Year": 2005, "rank": 8, "renewable_percentage": 10.3356645637}, {"Entity": "Germany", "Year": 2006, "rank": 8, "renewable_percentage": 11.5129959829}, {"Entity": "Germany", "Year": 2007, "rank": 8, "renewable_percentage": 14.135471525}, {"Entity": "Germany", "Year": 2008, "rank": 8, "renewable_percentage": 14.8894504106}, {"Entity": "Germany", "Year": 2009, "rank": 7, "renewable_percentage": 16.2902842395}, {"Entity": "Germany", "Year": 2010, "rank": 7, "renewable_percentage": 16.8384989754}, {"Entity": "Germany", "Year": 2011, "rank": 5, "renewable_percentage": 20.4967199299}, {"Entity": "Germany", "Year": 2012, "rank": 5, "renewable_percentage": 23.056464482}, {"Entity": "Germany", "Year": 2013, "rank": 5, "renewable_percentage": 24.1368929731}, {"Entity": "Germany", "Year": 2014, "rank": 5, "renewable_percentage": 26.2182434067}, {"Entity": "Germany", "Year": 2015, "rank": 5, "renewable_percentage": 29.4721888318}, {"Entity": "Germany", "Year": 2016, "rank": 5, "renewable_percentage": 29.4990435013}, {"Entity": "Germany", "Year": 2017, "rank": 4, "renewable_percentage": 33.4855497593}, {"Entity": "Germany", "Year": 2018, "rank": 5, "renewable_percentage": 35.0976735365}, {"Entity": "Germany", "Year": 2019, "rank": 3, "renewable_percentage": 40.0890757144}, {"Entity": "Germany", "Year": 2020, "rank": 3, "renewable_percentage": 44.3324048937}, {"Entity": "India", "Year": 2000, "rank": 7, "renewable_percentage": 14.0481982534}, {"Entity": "India", "Year": 2001, "rank": 8, "renewable_percentage": 12.9997099422}, {"Entity": "India", "Year": 2002, "rank": 7, "renewable_percentage": 11.938193032}, {"Entity": "India", "Year": 2003, "rank": 8, "renewable_percentage": 11.695109147}, {"Entity": "India", "Year": 2004, "rank": 7, "renewable_percentage": 15.6375300722}, {"Entity": "India", "Year": 2005, "rank": 6, "renewable_percentage": 15.2543575768}, {"Entity": "India", "Year": 2006, "rank": 5, "renewable_percentage": 17.1352578483}, {"Entity": "India", "Year": 2007, "rank": 4, "renewable_percentage": 17.8019742295}, {"Entity": "India", "Year": 2008, "rank": 7, "renewable_percentage": 16.768266921}, {"Entity": "India", "Year": 2009, "rank": 8, "renewable_percentage": 15.269804822}, {"Entity": "India", "Year": 2010, "rank": 8, "renewable_percentage": 15.2122201244}, {"Entity": "India", "Year": 2011, "rank": 8, "renewable_percentage": 16.7911025145}, {"Entity": "India", "Year": 2012, "rank": 8, "renewable_percentage": 15.1350014654}, {"Entity": "India", "Year": 2013, "rank": 8, "renewable_percentage": 16.3941577818}, {"Entity": "India", "Year": 2014, "rank": 10, "renewable_percentage": 16.0092550039}, {"Entity": "India", "Year": 2015, "rank": 11, "renewable_percentage": 15.3718720687}, {"Entity": "India", "Year": 2016, "rank": 13, "renewable_percentage": 14.8548475703}, {"Entity": "India", "Year": 2017, "rank": 13, "renewable_percentage": 15.9669920335}, {"Entity": "India", "Year": 2018, "rank": 13, "renewable_percentage": 16.6949549709}, {"Entity": "India", "Year": 2019, "rank": 11, "renewable_percentage": 18.6915426873}, {"Entity": "India", "Year": 2020, "rank": 13, "renewable_percentage": 20.2059243238}, {"Entity": "Indonesia", "Year": 2000, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2001, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2002, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2003, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2004, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2005, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2006, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2007, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2008, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2009, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2010, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2011, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2012, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2013, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2014, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2015, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2016, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2017, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2018, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2019, "rank": null, "renewable_percentage": null}, {"Entity": "Indonesia", "Year": 2020, "rank": null, "renewable_percentage": null}, {"Entity": "Italy", "Year": 2000, "rank": 4, "renewable_percentage": 18.900241501}, {"Entity": "Italy", "Year": 2001, "rank": 4, "renewable_percentage": 20.049431902}, {"Entity": "Italy", "Year": 2002, "rank": 4, "renewable_percentage": 17.4555571614}, {"Entity": "Italy", "Year": 2003, "rank": 4, "renewable_percentage": 16.4202116476}, {"Entity": "Italy", "Year": 2004, "rank": 4, "renewable_percentage": 18.2749380999}, {"Entity": "Italy", "Year": 2005, "rank": 4, "renewable_percentage": 16.3769782226}, {"Entity": "Italy", "Year": 2006, "rank": 6, "renewable_percentage": 16.5128639906}, {"Entity": "Italy", "Year": 2007, "rank": 6, "renewable_percentage": 15.5333485238}, {"Entity": "Italy", "Year": 2008, "rank": 6, "renewable_percentage": 18.6112}, {"Entity": "Italy", "Year": 2009, "rank": 4, "renewable_percentage": 24.0837332221}, {"Entity": "Italy", "Year": 2010, "rank": 4, "renewable_percentage": 25.8400187976}, {"Entity": "Italy", "Year": 2011, "rank": 4, "renewable_percentage": 27.6773203443}, {"Entity": "Italy", "Year": 2012, "rank": 3, "renewable_percentage": 31.1049649217}, {"Entity": "Italy", "Year": 2013, "rank": 4, "renewable_percentage": 39.0148744209}, {"Entity": "Italy", "Year": 2014, "rank": 3, "renewable_percentage": 43.4976931949}, {"Entity": "Italy", "Year": 2015, "rank": 3, "renewable_percentage": 38.7577860829}, {"Entity": "Italy", "Year": 2016, "rank": 4, "renewable_percentage": 37.6079387187}, {"Entity": "Italy", "Year": 2017, "rank": 3, "renewable_percentage": 35.4174479255}, {"Entity": "Italy", "Year": 2018, "rank": 3, "renewable_percentage": 39.8100142663}, {"Entity": "Italy", "Year": 2019, "rank": 4, "renewable_percentage": 39.7563068474}, {"Entity": "Italy", "Year": 2020, "rank": 6, "renewable_percentage": 42.0397741576}, {"Entity": "Japan", "Year": 2000, "rank": 9, "renewable_percentage": 10.5382436261}, {"Entity": "Japan", "Year": 2001, "rank": 9, "renewable_percentage": 10.447653504}, {"Entity": "Japan", "Year": 2002, "rank": 9, "renewable_percentage": 10.2477294843}, {"Entity": "Japan", "Year": 2003, "rank": 7, "renewable_percentage": 11.6993698448}, {"Entity": "Japan", "Year": 2004, "rank": 8, "renewable_percentage": 11.4198974767}, {"Entity": "Japan", "Year": 2005, "rank": 9, "renewable_percentage": 9.9068127192}, {"Entity": "Japan", "Year": 2006, "rank": 9, "renewable_percentage": 10.8554989442}, {"Entity": "Japan", "Year": 2007, "rank": 10, "renewable_percentage": 9.3897588285}, {"Entity": "Japan", "Year": 2008, "rank": 10, "renewable_percentage": 10.0196834738}, {"Entity": "Japan", "Year": 2009, "rank": 11, "renewable_percentage": 10.4667464874}, {"Entity": "Japan", "Year": 2010, "rank": 10, "renewable_percentage": 10.5269966826}, {"Entity": "Japan", "Year": 2011, "rank": 12, "renewable_percentage": 11.1272421632}, {"Entity": "Japan", "Year": 2012, "rank": 13, "renewable_percentage": 10.6143703421}, {"Entity": "Japan", "Year": 2013, "rank": 13, "renewable_percentage": 11.7965798852}, {"Entity": "Japan", "Year": 2014, "rank": 13, "renewable_percentage": 13.2719619718}, {"Entity": "Japan", "Year": 2015, "rank": 10, "renewable_percentage": 15.6586817408}, {"Entity": "Japan", "Year": 2016, "rank": 10, "renewable_percentage": 15.6920107068}, {"Entity": "Japan", "Year": 2017, "rank": 10, "renewable_percentage": 17.3559698312}, {"Entity": "Japan", "Year": 2018, "rank": 9, "renewable_percentage": 18.144181175}, {"Entity": "Japan", "Year": 2019, "rank": 10, "renewable_percentage": 19.4223288251}, {"Entity": "Japan", "Year": 2020, "rank": 10, "renewable_percentage": 21.324925062}, {"Entity": "Kazakhstan", "Year": 2000, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2001, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2002, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2003, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2004, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2005, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2006, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2007, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2008, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2009, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2010, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2011, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2012, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2013, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2014, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2015, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2016, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2017, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2018, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2019, "rank": null, "renewable_percentage": null}, {"Entity": "Kazakhstan", "Year": 2020, "rank": null, "renewable_percentage": null}, {"Entity": "Mexico", "Year": 2000, "rank": 3, "renewable_percentage": 22.9291160107}, {"Entity": "Mexico", "Year": 2001, "rank": 5, "renewable_percentage": 19.6649599841}, {"Entity": "Mexico", "Year": 2002, "rank": 5, "renewable_percentage": 17.4220963173}, {"Entity": "Mexico", "Year": 2003, "rank": 5, "renewable_percentage": 15.8536585366}, {"Entity": "Mexico", "Year": 2004, "rank": 5, "renewable_percentage": 17.3134463687}, {"Entity": "Mexico", "Year": 2005, "rank": 3, "renewable_percentage": 18.2780827246}, {"Entity": "Mexico", "Year": 2006, "rank": 3, "renewable_percentage": 18.4256091896}, {"Entity": "Mexico", "Year": 2007, "rank": 5, "renewable_percentage": 17.2761561168}, {"Entity": "Mexico", "Year": 2008, "rank": 3, "renewable_percentage": 21.5387105913}, {"Entity": "Mexico", "Year": 2009, "rank": 6, "renewable_percentage": 16.5369729069}, {"Entity": "Mexico", "Year": 2010, "rank": 5, "renewable_percentage": 19.4281608109}, {"Entity": "Mexico", "Year": 2011, "rank": 6, "renewable_percentage": 18.0916357408}, {"Entity": "Mexico", "Year": 2012, "rank": 7, "renewable_percentage": 16.5759438104}, {"Entity": "Mexico", "Year": 2013, "rank": 9, "renewable_percentage": 15.5492898914}, {"Entity": "Mexico", "Year": 2014, "rank": 7, "renewable_percentage": 19.8008201523}, {"Entity": "Mexico", "Year": 2015, "rank": 8, "renewable_percentage": 17.5976903451}, {"Entity": "Mexico", "Year": 2016, "rank": 9, "renewable_percentage": 17.4806943436}, {"Entity": "Mexico", "Year": 2017, "rank": 8, "renewable_percentage": 18.0759526428}, {"Entity": "Mexico", "Year": 2018, "rank": 10, "renewable_percentage": 17.703752786}, {"Entity": "Mexico", "Year": 2019, "rank": 12, "renewable_percentage": 18.5487927565}, {"Entity": "Mexico", "Year": 2020, "rank": 11, "renewable_percentage": 21.2552224134}, {"Entity": "Poland", "Year": 2000, "rank": 16, "renewable_percentage": 1.6273222517}, {"Entity": "Poland", "Year": 2001, "rank": 16, "renewable_percentage": 1.934316727}, {"Entity": "Poland", "Year": 2002, "rank": 16, "renewable_percentage": 1.9439960699}, {"Entity": "Poland", "Year": 2003, "rank": 16, "renewable_percentage": 1.4999000067}, {"Entity": "Poland", "Year": 2004, "rank": 16, "renewable_percentage": 2.1016681991}, {"Entity": "Poland", "Year": 2005, "rank": 16, "renewable_percentage": 2.4830699774}, {"Entity": "Poland", "Year": 2006, "rank": 16, "renewable_percentage": 2.673730134}, {"Entity": "Poland", "Year": 2007, "rank": 16, "renewable_percentage": 3.4256513785}, {"Entity": "Poland", "Year": 2008, "rank": 16, "renewable_percentage": 4.2744438696}, {"Entity": "Poland", "Year": 2009, "rank": 16, "renewable_percentage": 5.7515388179}, {"Entity": "Poland", "Year": 2010, "rank": 14, "renewable_percentage": 6.9299363057}, {"Entity": "Poland", "Year": 2011, "rank": 14, "renewable_percentage": 8.0547205693}, {"Entity": "Poland", "Year": 2012, "rank": 14, "renewable_percentage": 10.4436057663}, {"Entity": "Poland", "Year": 2013, "rank": 14, "renewable_percentage": 10.4081508145}, {"Entity": "Poland", "Year": 2014, "rank": 14, "renewable_percentage": 12.5331481248}, {"Entity": "Poland", "Year": 2015, "rank": 13, "renewable_percentage": 13.8151485631}, {"Entity": "Poland", "Year": 2016, "rank": 14, "renewable_percentage": 13.7335179722}, {"Entity": "Poland", "Year": 2017, "rank": 14, "renewable_percentage": 14.1999646913}, {"Entity": "Poland", "Year": 2018, "rank": 15, "renewable_percentage": 12.7559148032}, {"Entity": "Poland", "Year": 2019, "rank": 14, "renewable_percentage": 15.6157998037}, {"Entity": "Poland", "Year": 2020, "rank": 14, "renewable_percentage": 17.9648720886}, {"Entity": "Saudi Arabia", "Year": 2000, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2001, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2002, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2003, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2004, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2005, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2006, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2007, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2008, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2009, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2010, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2011, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2012, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2013, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2014, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2015, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2016, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2017, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2018, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2019, "rank": null, "renewable_percentage": null}, {"Entity": "Saudi Arabia", "Year": 2020, "rank": null, "renewable_percentage": null}, {"Entity": "South Africa", "Year": 2000, "rank": 17, "renewable_percentage": 0.9110805721}, {"Entity": "South Africa", "Year": 2001, "rank": 17, "renewable_percentage": 1.2516536074}, {"Entity": "South Africa", "Year": 2002, "rank": 17, "renewable_percentage": 1.3802249619}, {"Entity": "South Africa", "Year": 2003, "rank": 17, "renewable_percentage": 0.545271261}, {"Entity": "South Africa", "Year": 2004, "rank": 17, "renewable_percentage": 0.5827199439}, {"Entity": "South Africa", "Year": 2005, "rank": 17, "renewable_percentage": 0.763458686}, {"Entity": "South Africa", "Year": 2006, "rank": 17, "renewable_percentage": 1.3863060017}, {"Entity": "South Africa", "Year": 2007, "rank": 17, "renewable_percentage": 0.5267209594}, {"Entity": "South Africa", "Year": 2008, "rank": 17, "renewable_percentage": 0.6895692269}, {"Entity": "South Africa", "Year": 2009, "rank": 17, "renewable_percentage": 0.8031088083}, {"Entity": "South Africa", "Year": 2010, "rank": 17, "renewable_percentage": 1.0330068318}, {"Entity": "South Africa", "Year": 2011, "rank": 17, "renewable_percentage": 1.0184465622}, {"Entity": "South Africa", "Year": 2012, "rank": 17, "renewable_percentage": 0.6890826069}, {"Entity": "South Africa", "Year": 2013, "rank": 17, "renewable_percentage": 0.6792168043}, {"Entity": "South Africa", "Year": 2014, "rank": 17, "renewable_percentage": 1.4288129861}, {"Entity": "South Africa", "Year": 2015, "rank": 17, "renewable_percentage": 2.6256790549}, {"Entity": "South Africa", "Year": 2016, "rank": 17, "renewable_percentage": 3.2586126531}, {"Entity": "South Africa", "Year": 2017, "rank": 17, "renewable_percentage": 4.2202606137}, {"Entity": "South Africa", "Year": 2018, "rank": 17, "renewable_percentage": 5.1554655529}, {"Entity": "South Africa", "Year": 2019, "rank": 17, "renewable_percentage": 5.3589699864}, {"Entity": "South Africa", "Year": 2020, "rank": 17, "renewable_percentage": 5.780581212}, {"Entity": "Spain", "Year": 2000, "rank": 6, "renewable_percentage": 15.6119862394}, {"Entity": "Spain", "Year": 2001, "rank": 3, "renewable_percentage": 21.1524434719}, {"Entity": "Spain", "Year": 2002, "rank": 6, "renewable_percentage": 13.8260180901}, {"Entity": "Spain", "Year": 2003, "rank": 3, "renewable_percentage": 21.667314419}, {"Entity": "Spain", "Year": 2004, "rank": 3, "renewable_percentage": 18.3190206468}, {"Entity": "Spain", "Year": 2005, "rank": 7, "renewable_percentage": 14.8597342333}, {"Entity": "Spain", "Year": 2006, "rank": 4, "renewable_percentage": 17.6623992413}, {"Entity": "Spain", "Year": 2007, "rank": 3, "renewable_percentage": 19.3347262296}, {"Entity": "Spain", "Year": 2008, "rank": 4, "renewable_percentage": 20.0051501593}, {"Entity": "Spain", "Year": 2009, "rank": 3, "renewable_percentage": 25.4107639008}, {"Entity": "Spain", "Year": 2010, "rank": 3, "renewable_percentage": 32.7922186819}, {"Entity": "Spain", "Year": 2011, "rank": 3, "renewable_percentage": 30.0408415417}, {"Entity": "Spain", "Year": 2012, "rank": 4, "renewable_percentage": 29.6047928652}, {"Entity": "Spain", "Year": 2013, "rank": 3, "renewable_percentage": 39.5850357054}, {"Entity": "Spain", "Year": 2014, "rank": 4, "renewable_percentage": 40.1032952644}, {"Entity": "Spain", "Year": 2015, "rank": 4, "renewable_percentage": 34.9899091826}, {"Entity": "Spain", "Year": 2016, "rank": 3, "renewable_percentage": 38.5818061138}, {"Entity": "Spain", "Year": 2017, "rank": 5, "renewable_percentage": 32.220593624}, {"Entity": "Spain", "Year": 2018, "rank": 4, "renewable_percentage": 38.2080329557}, {"Entity": "Spain", "Year": 2019, "rank": 6, "renewable_percentage": 37.280815091}, {"Entity": "Spain", "Year": 2020, "rank": 4, "renewable_percentage": 43.8108805298}, {"Entity": "Thailand", "Year": 2000, "rank": 12, "renewable_percentage": 7.1261029822}, {"Entity": "Thailand", "Year": 2001, "rank": 12, "renewable_percentage": 7.061527212}, {"Entity": "Thailand", "Year": 2002, "rank": 12, "renewable_percentage": 7.9444772593}, {"Entity": "Thailand", "Year": 2003, "rank": 13, "renewable_percentage": 7.6718362852}, {"Entity": "Thailand", "Year": 2004, "rank": 13, "renewable_percentage": 6.5163549406}, {"Entity": "Thailand", "Year": 2005, "rank": 14, "renewable_percentage": 6.0325203252}, {"Entity": "Thailand", "Year": 2006, "rank": 13, "renewable_percentage": 7.5988547551}, {"Entity": "Thailand", "Year": 2007, "rank": 13, "renewable_percentage": 7.7085852479}, {"Entity": "Thailand", "Year": 2008, "rank": 13, "renewable_percentage": 6.5625458278}, {"Entity": "Thailand", "Year": 2009, "rank": 15, "renewable_percentage": 6.6263303689}, {"Entity": "Thailand", "Year": 2010, "rank": 16, "renewable_percentage": 5.7085828343}, {"Entity": "Thailand", "Year": 2011, "rank": 15, "renewable_percentage": 8.039961941}, {"Entity": "Thailand", "Year": 2012, "rank": 15, "renewable_percentage": 8.5396118358}, {"Entity": "Thailand", "Year": 2013, "rank": 16, "renewable_percentage": 7.6765035487}, {"Entity": "Thailand", "Year": 2014, "rank": 15, "renewable_percentage": 8.395728489}, {"Entity": "Thailand", "Year": 2015, "rank": 15, "renewable_percentage": 7.9949619145}, {"Entity": "Thailand", "Year": 2016, "rank": 15, "renewable_percentage": 8.9840234023}, {"Entity": "Thailand", "Year": 2017, "rank": 15, "renewable_percentage": 10.9570957096}, {"Entity": "Thailand", "Year": 2018, "rank": 14, "renewable_percentage": 14.1900054915}, {"Entity": "Thailand", "Year": 2019, "rank": 15, "renewable_percentage": 14.7001731284}, {"Entity": "Thailand", "Year": 2020, "rank": 15, "renewable_percentage": 13.7963737796}, {"Entity": "Ukraine", "Year": 2000, "rank": 13, "renewable_percentage": 6.5860921352}, {"Entity": "Ukraine", "Year": 2001, "rank": 13, "renewable_percentage": 6.9729761009}, {"Entity": "Ukraine", "Year": 2002, "rank": 14, "renewable_percentage": 5.5597165409}, {"Entity": "Ukraine", "Year": 2003, "rank": 14, "renewable_percentage": 5.1442841287}, {"Entity": "Ukraine", "Year": 2004, "rank": 14, "renewable_percentage": 6.4718162839}, {"Entity": "Ukraine", "Year": 2005, "rank": 13, "renewable_percentage": 6.6698940347}, {"Entity": "Ukraine", "Year": 2006, "rank": 14, "renewable_percentage": 6.68633235}, {"Entity": "Ukraine", "Year": 2007, "rank": 14, "renewable_percentage": 5.3380238605}, {"Entity": "Ukraine", "Year": 2008, "rank": 14, "renewable_percentage": 6.1377090041}, {"Entity": "Ukraine", "Year": 2009, "rank": 13, "renewable_percentage": 6.980762585}, {"Entity": "Ukraine", "Year": 2010, "rank": 13, "renewable_percentage": 7.0914098083}, {"Entity": "Ukraine", "Year": 2011, "rank": 16, "renewable_percentage": 5.7450628366}, {"Entity": "Ukraine", "Year": 2012, "rank": 16, "renewable_percentage": 5.6614236741}, {"Entity": "Ukraine", "Year": 2013, "rank": 15, "renewable_percentage": 7.8003200661}, {"Entity": "Ukraine", "Year": 2014, "rank": 16, "renewable_percentage": 5.5885262117}, {"Entity": "Ukraine", "Year": 2015, "rank": 16, "renewable_percentage": 4.3924771096}, {"Entity": "Ukraine", "Year": 2016, "rank": 16, "renewable_percentage": 5.6797249171}, {"Entity": "Ukraine", "Year": 2017, "rank": 16, "renewable_percentage": 7.0457194664}, {"Entity": "Ukraine", "Year": 2018, "rank": 16, "renewable_percentage": 8.228528092}, {"Entity": "Ukraine", "Year": 2019, "rank": 16, "renewable_percentage": 7.7754487096}, {"Entity": "Ukraine", "Year": 2020, "rank": 16, "renewable_percentage": 11.8440577364}, {"Entity": "United Kingdom", "Year": 2000, "rank": 15, "renewable_percentage": 2.6657406913}, {"Entity": "United Kingdom", "Year": 2001, "rank": 15, "renewable_percentage": 2.5001961451}, {"Entity": "United Kingdom", "Year": 2002, "rank": 15, "renewable_percentage": 2.8939157566}, {"Entity": "United Kingdom", "Year": 2003, "rank": 15, "renewable_percentage": 2.6854802003}, {"Entity": "United Kingdom", "Year": 2004, "rank": 15, "renewable_percentage": 3.6136880575}, {"Entity": "United Kingdom", "Year": 2005, "rank": 15, "renewable_percentage": 4.2815234434}, {"Entity": "United Kingdom", "Year": 2006, "rank": 15, "renewable_percentage": 4.6029890199}, {"Entity": "United Kingdom", "Year": 2007, "rank": 15, "renewable_percentage": 5.0104331009}, {"Entity": "United Kingdom", "Year": 2008, "rank": 15, "renewable_percentage": 5.6776842324}, {"Entity": "United Kingdom", "Year": 2009, "rank": 14, "renewable_percentage": 6.7679854187}, {"Entity": "United Kingdom", "Year": 2010, "rank": 15, "renewable_percentage": 6.9092924441}, {"Entity": "United Kingdom", "Year": 2011, "rank": 13, "renewable_percentage": 9.6422505889}, {"Entity": "United Kingdom", "Year": 2012, "rank": 11, "renewable_percentage": 11.4273047189}, {"Entity": "United Kingdom", "Year": 2013, "rank": 10, "renewable_percentage": 14.9727052732}, {"Entity": "United Kingdom", "Year": 2014, "rank": 8, "renewable_percentage": 19.2476358104}, {"Entity": "United Kingdom", "Year": 2015, "rank": 6, "renewable_percentage": 24.6227709191}, {"Entity": "United Kingdom", "Year": 2016, "rank": 7, "renewable_percentage": 24.6788390627}, {"Entity": "United Kingdom", "Year": 2017, "rank": 6, "renewable_percentage": 29.4986571173}, {"Entity": "United Kingdom", "Year": 2018, "rank": 6, "renewable_percentage": 33.2919818457}, {"Entity": "United Kingdom", "Year": 2019, "rank": 5, "renewable_percentage": 37.4568630499}, {"Entity": "United Kingdom", "Year": 2020, "rank": 5, "renewable_percentage": 42.8603962651}, {"Entity": "United States", "Year": 2000, "rank": 10, "renewable_percentage": 9.2298992662}, {"Entity": "United States", "Year": 2001, "rank": 11, "renewable_percentage": 7.5132056541}, {"Entity": "United States", "Year": 2002, "rank": 10, "renewable_percentage": 8.749216358}, {"Entity": "United States", "Year": 2003, "rank": 10, "renewable_percentage": 9.0252110397}, {"Entity": "United States", "Year": 2004, "rank": 11, "renewable_percentage": 8.7334100887}, {"Entity": "United States", "Year": 2005, "rank": 12, "renewable_percentage": 8.7494640631}, {"Entity": "United States", "Year": 2006, "rank": 12, "renewable_percentage": 9.4184742052}, {"Entity": "United States", "Year": 2007, "rank": 12, "renewable_percentage": 8.3984096829}, {"Entity": "United States", "Year": 2008, "rank": 11, "renewable_percentage": 9.180943292}, {"Entity": "United States", "Year": 2009, "rank": 10, "renewable_percentage": 10.547689996}, {"Entity": "United States", "Year": 2010, "rank": 11, "renewable_percentage": 10.3180892283}, {"Entity": "United States", "Year": 2011, "rank": 9, "renewable_percentage": 12.4665249812}, {"Entity": "United States", "Year": 2012, "rank": 10, "renewable_percentage": 12.1841179804}, {"Entity": "United States", "Year": 2013, "rank": 12, "renewable_percentage": 12.8311154179}, {"Entity": "United States", "Year": 2014, "rank": 12, "renewable_percentage": 13.3503092033}, {"Entity": "United States", "Year": 2015, "rank": 14, "renewable_percentage": 13.6261352256}, {"Entity": "United States", "Year": 2016, "rank": 12, "renewable_percentage": 15.2880936304}, {"Entity": "United States", "Year": 2017, "rank": 9, "renewable_percentage": 17.4515276472}, {"Entity": "United States", "Year": 2018, "rank": 11, "renewable_percentage": 17.4499886946}, {"Entity": "United States", "Year": 2019, "rank": 13, "renewable_percentage": 18.2946243489}, {"Entity": "United States", "Year": 2020, "rank": 12, "renewable_percentage": 20.3156921037}], "metadata": {"Entity": {"type": "string", "semanticType": "Location"}, "Year": {"type": "number", "semanticType": "Year"}, "rank": {"type": "number", "semanticType": "Number"}, "renewable_percentage": {"type": "number", "semanticType": "Percentage"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Rank countries by renewable percentage within each year (highest percentage = rank 1)\n df_energy['rank'] = df_energy.groupby('Year')['renewable_percentage'].rank(\n method='dense', \n ascending=False\n )\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage', 'rank']].copy()\n \n return transformed_df\n", "source": ["global-energy-20-small.csv"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 158029.9988, 190729.9957, 209229.9957, ..., 6993180.176, 9861099.609, 9874660.156, 10096009.77\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 90.14, 91.79, 92.54, 804.95\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Transform the data into a long format where different energy sources (fossil fuels, nuclear, renewables) are unpivoted into separate rows. Each row should contain the year, entity (country), energy source type, and the corresponding energy value in TWh. This will enable visualization of energy generation trends over time by source and country.\",\n \"display_instruction\": \"Show **energy generation** trends by **source** and **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"source\", \"energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n },\n \"reason\": \"The user wants to visualize energy data across different sources with a line chart faceted by source. The original data has energy sources in separate columns (fossil fuels, nuclear, renewables), so we need to unpivot these columns into a long format with 'source' and 'energy' fields. The chart_encodings provided by the user are appropriate for this visualization goal, using faceting (column) to separate different energy sources.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Unpivot the energy source columns into long format\n transformed_df = pd.melt(\n df_energy,\n id_vars=['Year', 'Entity'],\n value_vars=[\n 'Electricity from fossil fuels (TWh)',\n 'Electricity from nuclear (TWh)',\n 'Electricity from renewables (TWh)'\n ],\n var_name='source',\n value_name='energy'\n )\n \n # Clean up the source names to be more readable\n transformed_df['source'] = transformed_df['source'].str.replace('Electricity from ', '').str.replace(' (TWh)', '')\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Entity Year energy source\n0 Australia 2000 181.05 fossil fuels\n1 Australia 2001 194.33 fossil fuels\n2 Australia 2002 197.29 fossil fuels\n3 Australia 2003 195.13 fossil fuels\n4 Australia 2004 203.66 fossil fuels\n5 Australia 2005 195.95 fossil fuels\n6 Australia 2006 198.72 fossil fuels\n7 Australia 2007 208.59 fossil fuels\n8 Australia 2008 211.06 fossil fuels\n9 Australia 2009 216.42 fossil fuels\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show renewable percentage for each country\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"energy\",\n \"color\": \"Entity\",\n \"column\": \"source\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage for each country and year. The renewable percentage is computed as the ratio of renewable energy to total energy (sum of fossil fuels, nuclear, and renewables) multiplied by 100. The output should contain year, entity (country), and the renewable percentage value.\",\n \"display_instruction\": \"Show **renewable percentage** for each **Entity** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"renewable_percentage\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"renewable_percentage\",\n \"color\": \"Entity\"\n },\n \"reason\": \"The user wants to see renewable percentage trends, which requires calculating the proportion of renewable energy relative to total energy generation. This is a single metric per country per year, so we don't need the 'column' faceting by source anymore. The chart_encodings are updated to reflect that we're now showing a percentage metric rather than absolute energy values by source.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage']].copy()\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Entity Year renewable_percentage\n0 Australia 2000 8.634437\n1 Australia 2001 8.218014\n2 Australia 2002 8.083302\n3 Australia 2003 8.659832\n4 Australia 2004 8.701305\n5 Australia 2005 9.156236\n6 Australia 2006 9.635760\n7 Australia 2007 9.119031\n8 Australia 2008 8.054890\n9 Australia 2009 7.804379\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"rank countries by their renewable percentage\",\n \"chart_type\": \"Line Chart\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"renewable_percentage\",\n \"color\": \"Entity\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage for each country and year, then rank countries based on their renewable percentage. The ranking should be computed for each year, showing which countries have the highest to lowest renewable percentage. The output should contain year, entity (country), renewable percentage, and the rank of each country within that year.\",\n \"display_instruction\": \"Show **countries ranked** by **renewable percentage** over **Year**\",\n \"output_fields\": [\"Year\", \"Entity\", \"renewable_percentage\", \"rank\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"renewable_percentage\",\n \"color\": \"Entity\"\n },\n \"reason\": \"The user wants to rank countries by their renewable percentage, which requires adding a rank field that orders countries within each year based on their renewable percentage (highest percentage = rank 1). This allows comparison of countries' relative positions in renewable energy adoption over time. The chart_encodings remain the same as the previous step since we're still visualizing renewable percentage trends, but now with ranking information available.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Rank countries by renewable percentage within each year (highest percentage = rank 1)\n df_energy['rank'] = df_energy.groupby('Year')['renewable_percentage'].rank(\n method='dense', \n ascending=False\n )\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage', 'rank']].copy()\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-45", "resultTableId": "table-78", "chart": {"id": "chart-1760738441793", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"fieldID": "concept-renewable_percentage-1760738424337"}, "color": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "opacity": {"channel": "opacity", "bin": false}, "column": {}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-45", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "rank countries by their renewable percentage", "displayContent": "Show **countries ranked** by **renewable percentage** over **Year**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Calculate **total_energy** for each country-year by summing electricity generated from **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n- Compute **renewable_percentage** by dividing **Electricity from renewables (TWh)** by **total_energy** and multiplying by **100**\n- Replace any infinite values in **renewable_percentage** with NaN to handle cases where total energy is zero\n- Assign a **rank** to each country within each **Year** based on **renewable_percentage**, where rank **1** represents the highest renewable percentage (using dense ranking method)\n- Return a dataset containing **Year**, **Entity** (country name), **renewable_percentage**, and **rank**", "concepts": [{"explanation": "The proportion of a country's total electricity generation that comes from renewable sources, expressed as a percentage. Calculated as: \\[ \\text{renewable\\_percentage} = \\frac{\\text{Electricity from renewables (TWh)}}{\\text{total\\_energy}} \\times 100 \\]", "field": "renewable_percentage"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 190729.9957, 227580.0018, 233600.0061, ..., 9282549.805, 9861099.609, 9874660.156, 10096009.77\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 88.76, 90.14, 91.79, 92.54\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total energy for each row\n df_energy['total_energy'] = (\n df_energy['Electricity from fossil fuels (TWh)'] + \n df_energy['Electricity from nuclear (TWh)'] + \n df_energy['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_energy['renewable_percentage'] = (\n df_energy['Electricity from renewables (TWh)'] / df_energy['total_energy'] * 100\n )\n \n # Handle division by zero cases\n df_energy['renewable_percentage'] = df_energy['renewable_percentage'].replace([np.inf, -np.inf], np.nan)\n \n # Rank countries by renewable percentage within each year (highest percentage = rank 1)\n df_energy['rank'] = df_energy.groupby('Year')['renewable_percentage'].rank(\n method='dense', \n ascending=False\n )\n \n # Select only the required columns\n transformed_df = df_energy[['Year', 'Entity', 'renewable_percentage', 'rank']].copy()\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Calculate **total_energy** for each country-year by summing electricity generated from **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n- Compute **renewable_percentage** by dividing **Electricity from renewables (TWh)** by **total_energy** and multiplying by **100**\n- Replace any infinite values in **renewable_percentage** with NaN to handle cases where total energy is zero\n- Assign a **rank** to each country within each **Year** based on **renewable_percentage**, where rank **1** represents the highest renewable percentage (using dense ranking method)\n- Return a dataset containing **Year**, **Entity** (country name), **renewable_percentage**, and **rank**\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"renewable_percentage\",\n \"explanation\": \"The proportion of a country's total electricity generation that comes from renewable sources, expressed as a percentage. Calculated as: \\\\[ \\\\text{renewable\\\\_percentage} = \\\\frac{\\\\text{Electricity from renewables (TWh)}}{\\\\text{total\\\\_energy}} \\\\times 100 \\\\]\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-97", "displayId": "renewable-elec", "names": ["Electricity from renewables (TWh)", "Entity", "Year"], "rows": [{"Electricity from renewables (TWh)": 17.11, "Entity": "Australia", "Year": "2000"}, {"Electricity from renewables (TWh)": 63.99, "Entity": "Australia", "Year": "2020"}, {"Electricity from renewables (TWh)": 308.77, "Entity": "Brazil", "Year": "2000"}, {"Electricity from renewables (TWh)": 520.01, "Entity": "Brazil", "Year": "2020"}, {"Electricity from renewables (TWh)": 363.7, "Entity": "Canada", "Year": "2000"}, {"Electricity from renewables (TWh)": 429.24, "Entity": "Canada", "Year": "2020"}, {"Electricity from renewables (TWh)": 225.56, "Entity": "China", "Year": "2000"}, {"Electricity from renewables (TWh)": 2184.94, "Entity": "China", "Year": "2020"}, {"Electricity from renewables (TWh)": 67.83, "Entity": "France", "Year": "2000"}, {"Electricity from renewables (TWh)": 125.28, "Entity": "France", "Year": "2020"}, {"Electricity from renewables (TWh)": 35.47, "Entity": "Germany", "Year": "2000"}, {"Electricity from renewables (TWh)": 251.48, "Entity": "Germany", "Year": "2020"}, {"Electricity from renewables (TWh)": 80.27, "Entity": "India", "Year": "2000"}, {"Electricity from renewables (TWh)": 315.76, "Entity": "India", "Year": "2020"}, {"Electricity from renewables (TWh)": 19.6, "Entity": "Indonesia", "Year": "2000"}, {"Electricity from renewables (TWh)": 52.91, "Entity": "Indonesia", "Year": "2020"}, {"Electricity from renewables (TWh)": 50.87, "Entity": "Italy", "Year": "2000"}, {"Electricity from renewables (TWh)": 116.9, "Entity": "Italy", "Year": "2020"}, {"Electricity from renewables (TWh)": 104.16, "Entity": "Japan", "Year": "2000"}, {"Electricity from renewables (TWh)": 205.6, "Entity": "Japan", "Year": "2020"}, {"Electricity from renewables (TWh)": 7.53, "Entity": "Kazakhstan", "Year": "2000"}, {"Electricity from renewables (TWh)": 11.94, "Entity": "Kazakhstan", "Year": "2020"}, {"Electricity from renewables (TWh)": 44.51, "Entity": "Mexico", "Year": "2000"}, {"Electricity from renewables (TWh)": 69.19, "Entity": "Mexico", "Year": "2020"}, {"Electricity from renewables (TWh)": 2.33, "Entity": "Poland", "Year": "2000"}, {"Electricity from renewables (TWh)": 28.23, "Entity": "Poland", "Year": "2020"}, {"Electricity from renewables (TWh)": 0, "Entity": "Saudi Arabia", "Year": "2000"}, {"Electricity from renewables (TWh)": 0.21, "Entity": "Saudi Arabia", "Year": "2020"}, {"Electricity from renewables (TWh)": 1.79, "Entity": "South Africa", "Year": "2000"}, {"Electricity from renewables (TWh)": 12.83, "Entity": "South Africa", "Year": "2020"}, {"Electricity from renewables (TWh)": 34.49, "Entity": "Spain", "Year": "2000"}, {"Electricity from renewables (TWh)": 113.79, "Entity": "Spain", "Year": "2020"}, {"Electricity from renewables (TWh)": 6.38, "Entity": "Thailand", "Year": "2000"}, {"Electricity from renewables (TWh)": 24.73, "Entity": "Thailand", "Year": "2020"}, {"Electricity from renewables (TWh)": 11.28, "Entity": "Ukraine", "Year": "2000"}, {"Electricity from renewables (TWh)": 17.56, "Entity": "Ukraine", "Year": "2020"}, {"Electricity from renewables (TWh)": 9.98, "Entity": "United Kingdom", "Year": "2000"}, {"Electricity from renewables (TWh)": 131.74, "Entity": "United Kingdom", "Year": "2020"}, {"Electricity from renewables (TWh)": 350.93, "Entity": "United States", "Year": "2000"}, {"Electricity from renewables (TWh)": 821.4, "Entity": "United States", "Year": "2020"}], "metadata": {"Electricity from renewables (TWh)": {"type": "number", "semanticType": "Number"}, "Entity": {"type": "string", "semanticType": "Location"}, "Year": {"type": "number", "semanticType": "Year"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n", "source": ["global-energy-20-small.csv"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 61.99, 62.21, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"compare each countries renewable between 2000 and 2020\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Energy\",\n \"color\": \"Year\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Compare renewable energy (Electricity from renewables) for each country between the years 2000 and 2020. Filter the data to include only years 2000 and 2020, and prepare the output with country names, year, and renewable energy values for visualization as a grouped bar chart.\",\n \"display_instruction\": \"Compare **renewable energy** by **country** between **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Electricity from renewables (TWh)\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to compare renewable energy across countries between 2000 and 2020. The output field 'Renewable Energy' mentioned in the original chart_encodings maps to 'Electricity from renewables (TWh)' in the dataset. To create a grouped bar chart comparing these two years, we need to filter the data to only include years 2000 and 2020, and output the Entity (country), Year, and the renewable energy values. The chart_encodings are updated to use the actual column name from the dataset.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "global-energy-20-small.csv", "resultTableId": "table-97", "chart": {"id": "chart-1760738769634", "chartType": "Grouped Bar Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "y": {"fieldID": "concept-1760738743125"}, "color": {"channel": "color", "bin": false, "fieldID": "original--global-energy-20-small.csv--Year"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "global-energy-20-small.csv", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "compare each countries renewable between 2000 and 2020", "displayContent": "Compare **renewable energy** by **country** between **2000** and **2020**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "The code performs a straightforward comparison analysis of renewable energy generation across countries:\n\n- **Filters** the dataset to include only data from years **2000** and **2020**, creating a 20-year comparison window\n- **Selects** three key columns: `Entity` (country name), `Year`, and `Electricity from renewables (TWh)` (renewable energy generation)\n- **Converts** the `Year` field to string format to treat it as a categorical variable for visualization purposes\n- **Sorts** the results by `Entity` and `Year` to organize countries alphabetically with their respective year data grouped together\n- **Returns** a cleaned dataset showing how renewable electricity generation has changed for each country between 2000 and 2020", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 10006669.92, 10502929.69, 10707219.73, nan\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 56.18, 61.99, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThe code performs a straightforward comparison analysis of renewable energy generation across countries:\n\n- **Filters** the dataset to include only data from years **2000** and **2020**, creating a 20-year comparison window\n- **Selects** three key columns: `Entity` (country name), `Year`, and `Electricity from renewables (TWh)` (renewable energy generation)\n- **Converts** the `Year` field to string format to treat it as a categorical variable for visualization purposes\n- **Sorts** the results by `Entity` and `Year` to organize countries alphabetically with their respective year data grouped together\n- **Returns** a cleaned dataset showing how renewable electricity generation has changed for each country between 2000 and 2020\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-27", "displayId": "renewable-energy1", "names": ["Entity", "Renewable Percentage", "Year"], "rows": [{"Entity": "Australia", "Renewable Percentage": 8.6344368187, "Year": "2000"}, {"Entity": "Australia", "Renewable Percentage": 25.5031684668, "Year": "2020"}, {"Entity": "Brazil", "Renewable Percentage": 90.1307723743, "Year": "2000"}, {"Entity": "Brazil", "Renewable Percentage": 84.6411771408, "Year": "2020"}, {"Entity": "Canada", "Renewable Percentage": 61.8095917882, "Year": "2000"}, {"Entity": "Canada", "Renewable Percentage": 68.7796436354, "Year": "2020"}, {"Entity": "China", "Renewable Percentage": 16.639126586, "Year": "2000"}, {"Entity": "China", "Renewable Percentage": 28.2464606924, "Year": "2020"}, {"Entity": "France", "Renewable Percentage": 12.7117691154, "Year": "2000"}, {"Entity": "France", "Renewable Percentage": 23.7610241821, "Year": "2020"}, {"Entity": "Germany", "Renewable Percentage": 6.1977983575, "Year": "2000"}, {"Entity": "Germany", "Renewable Percentage": 44.3324048937, "Year": "2020"}, {"Entity": "Global Average", "Renewable Percentage": 16.4213212559, "Year": "2000"}, {"Entity": "Global Average", "Renewable Percentage": 29.2955247263, "Year": "2020"}, {"Entity": "India", "Renewable Percentage": 14.0481982534, "Year": "2000"}, {"Entity": "India", "Renewable Percentage": 20.2059243238, "Year": "2020"}, {"Entity": "Indonesia", "Renewable Percentage": null, "Year": "2000"}, {"Entity": "Indonesia", "Renewable Percentage": null, "Year": "2020"}, {"Entity": "Italy", "Renewable Percentage": 18.900241501, "Year": "2000"}, {"Entity": "Italy", "Renewable Percentage": 42.0397741576, "Year": "2020"}, {"Entity": "Japan", "Renewable Percentage": 10.5382436261, "Year": "2000"}, {"Entity": "Japan", "Renewable Percentage": 21.324925062, "Year": "2020"}, {"Entity": "Kazakhstan", "Renewable Percentage": null, "Year": "2000"}, {"Entity": "Kazakhstan", "Renewable Percentage": null, "Year": "2020"}, {"Entity": "Mexico", "Renewable Percentage": 22.9291160107, "Year": "2000"}, {"Entity": "Mexico", "Renewable Percentage": 21.2552224134, "Year": "2020"}, {"Entity": "Poland", "Renewable Percentage": 1.6273222517, "Year": "2000"}, {"Entity": "Poland", "Renewable Percentage": 17.9648720886, "Year": "2020"}, {"Entity": "Saudi Arabia", "Renewable Percentage": null, "Year": "2000"}, {"Entity": "Saudi Arabia", "Renewable Percentage": null, "Year": "2020"}, {"Entity": "South Africa", "Renewable Percentage": 0.9110805721, "Year": "2000"}, {"Entity": "South Africa", "Renewable Percentage": 5.780581212, "Year": "2020"}, {"Entity": "Spain", "Renewable Percentage": 15.6119862394, "Year": "2000"}, {"Entity": "Spain", "Renewable Percentage": 43.8108805298, "Year": "2020"}, {"Entity": "Thailand", "Renewable Percentage": 7.1261029822, "Year": "2000"}, {"Entity": "Thailand", "Renewable Percentage": 13.7963737796, "Year": "2020"}, {"Entity": "Ukraine", "Renewable Percentage": 6.5860921352, "Year": "2000"}, {"Entity": "Ukraine", "Renewable Percentage": 11.8440577364, "Year": "2020"}, {"Entity": "United Kingdom", "Renewable Percentage": 2.6657406913, "Year": "2000"}, {"Entity": "United Kingdom", "Renewable Percentage": 42.8603962651, "Year": "2020"}, {"Entity": "United States", "Renewable Percentage": 9.2298992662, "Year": "2000"}, {"Entity": "United States", "Renewable Percentage": 20.3156921037, "Year": "2020"}], "metadata": {"Entity": {"type": "string", "semanticType": "Name"}, "Renewable Percentage": {"type": "number", "semanticType": "Percentage"}, "Year": {"type": "number", "semanticType": "Year"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n", "source": ["global-energy-20-small.csv"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 61.99, 62.21, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"compare each countries renewable between 2000 and 2020\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Energy\",\n \"color\": \"Year\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Compare renewable energy (Electricity from renewables) for each country between the years 2000 and 2020. Filter the data to include only years 2000 and 2020, and prepare the output with country names, year, and renewable energy values for visualization as a grouped bar chart.\",\n \"display_instruction\": \"Compare **renewable energy** by **country** between **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Electricity from renewables (TWh)\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to compare renewable energy across countries between 2000 and 2020. The output field 'Renewable Energy' mentioned in the original chart_encodings maps to 'Electricity from renewables (TWh)' in the dataset. To create a grouped bar chart comparing these two years, we need to filter the data to only include years 2000 and 2020, and output the Entity (country), Year, and the renewable energy values. The chart_encodings are updated to use the actual column name from the dataset.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Electricity from renewables (TWh) Entity Year\n0 17.11 Australia 2000\n1 63.99 Australia 2020\n2 308.77 Brazil 2000\n3 520.01 Brazil 2020\n4 363.70 Canada 2000\n5 429.24 Canada 2020\n6 225.56 China 2000\n7 2184.94 China 2020\n8 67.83 France 2000\n9 125.28 France 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show their renewable percentage instead, and add an entity to show global average\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage (proportion of renewables to total electricity generation from all sources) for each country between 2000 and 2020. Add a 'Global Average' entity that represents the worldwide average renewable percentage for each year. The output should include Entity (with 'Global Average' added), Year, and the renewable percentage.\",\n \"display_instruction\": \"Show **renewable energy percentage** by **country** with **global average** for **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Renewable Percentage\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Percentage\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to see renewable percentage instead of absolute values, and wants to add a global average entity for comparison. Renewable percentage is calculated as the ratio of renewable energy to total electricity generation (fossil fuels + nuclear + renewables). A 'Global Average' entity needs to be computed by aggregating all countries' data for each year. The y-axis encoding is updated to reflect the new metric 'Renewable Percentage'.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-97", "resultTableId": "table-27", "chart": {"id": "chart-1760738813383", "chartType": "Grouped Bar Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "y": {"fieldID": "original--global-energy-20-small.csv--Electricity from renewables (TWh)"}, "color": {"fieldID": "original--global-energy-20-small.csv--Year"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-97", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show their renewable percentage instead, and add an entity to show global average", "displayContent": "Show **renewable energy percentage** by **country** with **global average** for **2000** and **2020**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "The code performs the following transformation steps:\n\n1. **Filter data** to include only records from **2000** and **2020**\n2. Calculate **Total Electricity** generation by summing three sources: **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n3. Compute **Renewable Percentage** for each country and year by dividing **Electricity from renewables** by **Total Electricity** and multiplying by 100\n4. Extract relevant columns: **Entity** (country name), **Year**, and **Renewable Percentage**\n5. Calculate **Global Average** renewable percentage for each year by:\n - Summing all countries' **renewable electricity** generation\n - Dividing by the sum of all countries' **total electricity** generation\n - Multiplying by 100 to get percentage\n6. Combine individual country data with the **Global Average** statistics\n7. Convert **Year** values to string format\n8. Sort results by **Entity** name and **Year**", "concepts": [{"explanation": "The sum of electricity generated from all three sources (fossil fuels, nuclear, and renewables) measured in terawatt-hours (TWh). This represents the total electricity production capacity for each country.", "field": "Total Electricity"}, {"explanation": "The proportion of electricity generated from renewable sources relative to total electricity production, expressed as a percentage: \\( \\text{Renewable Percentage} = \\frac{\\text{Electricity from renewables}}{\\text{Total Electricity}} \\times 100 \\). This metric indicates the extent of renewable energy adoption in a country's electricity mix.", "field": "Renewable Percentage"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 10096009.77, 10502929.69, 10707219.73, nan\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., nan, nan, nan, nan\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThe code performs the following transformation steps:\n\n1. **Filter data** to include only records from **2000** and **2020**\n2. Calculate **Total Electricity** generation by summing three sources: **fossil fuels**, **nuclear**, and **renewables** (all measured in TWh)\n3. Compute **Renewable Percentage** for each country and year by dividing **Electricity from renewables** by **Total Electricity** and multiplying by 100\n4. Extract relevant columns: **Entity** (country name), **Year**, and **Renewable Percentage**\n5. Calculate **Global Average** renewable percentage for each year by:\n - Summing all countries' **renewable electricity** generation\n - Dividing by the sum of all countries' **total electricity** generation\n - Multiplying by 100 to get percentage\n6. Combine individual country data with the **Global Average** statistics\n7. Convert **Year** values to string format\n8. Sort results by **Entity** name and **Year**\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Total Electricity\",\n \"explanation\": \"The sum of electricity generated from all three sources (fossil fuels, nuclear, and renewables) measured in terawatt-hours (TWh). This represents the total electricity production capacity for each country.\"\n },\n {\n \"field\": \"Renewable Percentage\",\n \"explanation\": \"The proportion of electricity generated from renewable sources relative to total electricity production, expressed as a percentage: \\\\( \\\\text{Renewable Percentage} = \\\\frac{\\\\text{Electricity from renewables}}{\\\\text{Total Electricity}} \\\\times 100 \\\\). This metric indicates the extent of renewable energy adoption in a country's electricity mix.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-81", "displayId": "energy-source1", "names": ["Energy", "Energy Source", "Year"], "rows": [{"Energy": 7160.71, "Energy Source": "Fossil Fuels", "Year": 2000}, {"Energy": 1996.65, "Energy Source": "Nuclear", "Year": 2000}, {"Energy": 1742.56, "Energy Source": "Renewables", "Year": 2000}, {"Energy": 7273.89, "Energy Source": "Fossil Fuels", "Year": 2001}, {"Energy": 2037.54, "Energy Source": "Nuclear", "Year": 2001}, {"Energy": 1690.11, "Energy Source": "Renewables", "Year": 2001}, {"Energy": 7621.07, "Energy Source": "Fossil Fuels", "Year": 2002}, {"Energy": 2042.18, "Energy Source": "Nuclear", "Year": 2002}, {"Energy": 1757.63, "Energy Source": "Renewables", "Year": 2002}, {"Energy": 8043.86, "Energy Source": "Fossil Fuels", "Year": 2003}, {"Energy": 1998.52, "Energy Source": "Nuclear", "Year": 2003}, {"Energy": 1804.52, "Energy Source": "Renewables", "Year": 2003}, {"Energy": 8399.72, "Energy Source": "Fossil Fuels", "Year": 2004}, {"Energy": 2095, "Energy Source": "Nuclear", "Year": 2004}, {"Energy": 1952.72, "Energy Source": "Renewables", "Year": 2004}, {"Energy": 8828.43, "Energy Source": "Fossil Fuels", "Year": 2005}, {"Energy": 2094.4, "Energy Source": "Nuclear", "Year": 2005}, {"Energy": 2025.26, "Energy Source": "Renewables", "Year": 2005}, {"Energy": 9183.05, "Energy Source": "Fossil Fuels", "Year": 2006}, {"Energy": 2120.38, "Energy Source": "Nuclear", "Year": 2006}, {"Energy": 2165.94, "Energy Source": "Renewables", "Year": 2006}, {"Energy": 9853.09, "Energy Source": "Fossil Fuels", "Year": 2007}, {"Energy": 2067.04, "Energy Source": "Nuclear", "Year": 2007}, {"Energy": 2256.79, "Energy Source": "Renewables", "Year": 2007}, {"Energy": 9817.15, "Energy Source": "Fossil Fuels", "Year": 2008}, {"Energy": 2043.94, "Energy Source": "Nuclear", "Year": 2008}, {"Energy": 2496.03, "Energy Source": "Renewables", "Year": 2008}, {"Energy": 9686.86, "Energy Source": "Fossil Fuels", "Year": 2009}, {"Energy": 2017.25, "Energy Source": "Nuclear", "Year": 2009}, {"Energy": 2563.95, "Energy Source": "Renewables", "Year": 2009}, {"Energy": 10427.03, "Energy Source": "Fossil Fuels", "Year": 2010}, {"Energy": 2083.37, "Energy Source": "Nuclear", "Year": 2010}, {"Energy": 2802.89, "Energy Source": "Renewables", "Year": 2010}, {"Energy": 10974.83, "Energy Source": "Fossil Fuels", "Year": 2011}, {"Energy": 1956, "Energy Source": "Nuclear", "Year": 2011}, {"Energy": 2997.29, "Energy Source": "Renewables", "Year": 2011}, {"Energy": 11277.49, "Energy Source": "Fossil Fuels", "Year": 2012}, {"Energy": 1788.26, "Energy Source": "Nuclear", "Year": 2012}, {"Energy": 3226.1, "Energy Source": "Renewables", "Year": 2012}, {"Energy": 11561.86, "Energy Source": "Fossil Fuels", "Year": 2013}, {"Energy": 1813, "Energy Source": "Nuclear", "Year": 2013}, {"Energy": 3473.9, "Energy Source": "Renewables", "Year": 2013}, {"Energy": 11761.51, "Energy Source": "Fossil Fuels", "Year": 2014}, {"Energy": 1847.87, "Energy Source": "Nuclear", "Year": 2014}, {"Energy": 3753.03, "Energy Source": "Renewables", "Year": 2014}, {"Energy": 11653.61, "Energy Source": "Fossil Fuels", "Year": 2015}, {"Energy": 1886.61, "Energy Source": "Nuclear", "Year": 2015}, {"Energy": 3903.7, "Energy Source": "Renewables", "Year": 2015}, {"Energy": 11785.35, "Energy Source": "Fossil Fuels", "Year": 2016}, {"Energy": 1906.92, "Energy Source": "Nuclear", "Year": 2016}, {"Energy": 4186.83, "Energy Source": "Renewables", "Year": 2016}, {"Energy": 12003.24, "Energy Source": "Fossil Fuels", "Year": 2017}, {"Energy": 1942.94, "Energy Source": "Nuclear", "Year": 2017}, {"Energy": 4500.22, "Energy Source": "Renewables", "Year": 2017}, {"Energy": 12445.24, "Energy Source": "Fossil Fuels", "Year": 2018}, {"Energy": 2016.82, "Energy Source": "Nuclear", "Year": 2018}, {"Energy": 4834.65, "Energy Source": "Renewables", "Year": 2018}, {"Energy": 12355.91, "Energy Source": "Fossil Fuels", "Year": 2019}, {"Energy": 2073.87, "Energy Source": "Nuclear", "Year": 2019}, {"Energy": 5146.11, "Energy Source": "Renewables", "Year": 2019}, {"Energy": 12032.75, "Energy Source": "Fossil Fuels", "Year": 2020}, {"Energy": 1974.46, "Energy Source": "Nuclear", "Year": 2020}, {"Energy": 5497.73, "Energy Source": "Renewables", "Year": 2020}], "metadata": {"Energy": {"type": "number", "semanticType": "Number"}, "Energy Source": {"type": "string", "semanticType": "String", "levels": ["Fossil Fuels", "Nuclear", "Renewables"]}, "Year": {"type": "number", "semanticType": "Year"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Group by Year and sum electricity generation from all countries\n global_energy = df_energy.groupby('Year').agg({\n 'Electricity from fossil fuels (TWh)': 'sum',\n 'Electricity from nuclear (TWh)': 'sum',\n 'Electricity from renewables (TWh)': 'sum'\n }).reset_index()\n \n # Rename columns for clarity\n global_energy.columns = ['Year', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n global_energy,\n id_vars=['Year'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Year and Energy Source\n transformed_df = transformed_df.sort_values(['Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n", "source": ["global-energy-20-small.csv"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 61.99, 62.21, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"compare each countries renewable between 2000 and 2020\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Energy\",\n \"color\": \"Year\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Compare renewable energy (Electricity from renewables) for each country between the years 2000 and 2020. Filter the data to include only years 2000 and 2020, and prepare the output with country names, year, and renewable energy values for visualization as a grouped bar chart.\",\n \"display_instruction\": \"Compare **renewable energy** by **country** between **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Electricity from renewables (TWh)\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to compare renewable energy across countries between 2000 and 2020. The output field 'Renewable Energy' mentioned in the original chart_encodings maps to 'Electricity from renewables (TWh)' in the dataset. To create a grouped bar chart comparing these two years, we need to filter the data to only include years 2000 and 2020, and output the Entity (country), Year, and the renewable energy values. The chart_encodings are updated to use the actual column name from the dataset.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Electricity from renewables (TWh) Entity Year\n0 17.11 Australia 2000\n1 63.99 Australia 2020\n2 308.77 Brazil 2000\n3 520.01 Brazil 2020\n4 363.70 Canada 2000\n5 429.24 Canada 2020\n6 225.56 China 2000\n7 2184.94 China 2020\n8 67.83 France 2000\n9 125.28 France 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show their renewable percentage instead, and add an entity to show global average\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage (proportion of renewables to total electricity generation from all sources) for each country between 2000 and 2020. Add a 'Global Average' entity that represents the worldwide average renewable percentage for each year. The output should include Entity (with 'Global Average' added), Year, and the renewable percentage.\",\n \"display_instruction\": \"Show **renewable energy percentage** by **country** with **global average** for **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Renewable Percentage\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Percentage\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to see renewable percentage instead of absolute values, and wants to add a global average entity for comparison. Renewable percentage is calculated as the ratio of renewable energy to total electricity generation (fossil fuels + nuclear + renewables). A 'Global Average' entity needs to be computed by aggregating all countries' data for each year. The y-axis encoding is updated to reflect the new metric 'Renewable Percentage'.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Entity Renewable Percentage Year\n0 Australia 8.634437 2000\n1 Australia 25.503168 2020\n2 Brazil 90.130772 2000\n3 Brazil 84.641177 2020\n4 Canada 61.809592 2000\n5 Canada 68.779644 2020\n6 China 16.639127 2000\n7 China 28.246461 2020\n8 France 12.711769 2000\n9 France 23.761024 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show global energy composition over time\",\n \"chart_type\": \"Custom Area\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Show the global energy composition over time by aggregating electricity generation from all countries for each year, broken down by energy source (fossil fuels, nuclear, and renewables). The output should be in long format with Year, Energy Source, and Energy values to support a stacked area chart visualization.\",\n \"display_instruction\": \"Show global **energy composition** by **energy source** over time\",\n \"output_fields\": [\"Year\", \"Energy Source\", \"Energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n },\n \"reason\": \"The user wants to visualize global energy composition over time, which requires aggregating electricity generation data across all countries for each year and breaking it down by energy source type. The data needs to be transformed into long format where each row represents a year-energy source combination, with the total energy value for that source globally. This follows up from the previous renewable percentage analysis by showing the overall energy mix trends rather than focusing on specific countries or percentages.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Group by Year and sum electricity generation from all countries\n global_energy = df_energy.groupby('Year').agg({\n 'Electricity from fossil fuels (TWh)': 'sum',\n 'Electricity from nuclear (TWh)': 'sum',\n 'Electricity from renewables (TWh)': 'sum'\n }).reset_index()\n \n # Rename columns for clarity\n global_energy.columns = ['Year', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n global_energy,\n id_vars=['Year'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Year and Energy Source\n transformed_df = transformed_df.sort_values(['Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-27", "resultTableId": "table-81", "chart": {"id": "chart-1760738942326", "chartType": "Custom Area", "encodingMap": {"x": {"channel": "x", "bin": false, "fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"channel": "y", "bin": false, "fieldID": "concept-1760738917347"}, "x2": {"channel": "x2", "bin": false}, "y2": {"channel": "y2", "bin": false}, "color": {"channel": "color", "bin": false, "fieldID": "concept-1760738921927"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-27", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show global energy composition over time", "displayContent": "Show global **energy composition** by **energy source** over time"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Group the energy data by **Year** and aggregate electricity generation values across all countries by summing **Electricity from fossil fuels (TWh)**, **Electricity from nuclear (TWh)**, and **Electricity from renewables (TWh)**\n- Rename the aggregated columns to simplified labels: **Fossil Fuels**, **Nuclear**, and **Renewables**\n- Transform the data from wide format to long format by unpivoting the three energy source columns into two columns: **Energy Source** (containing the type of energy) and **Energy** (containing the generation value in TWh)\n- Sort the resulting dataset by **Year** and **Energy Source** for consistent ordering", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 158029.9988, 190729.9957, 209229.9957, ..., nan, 4956060.059, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., nan, nan, nan, nan\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Group by Year and sum electricity generation from all countries\n global_energy = df_energy.groupby('Year').agg({\n 'Electricity from fossil fuels (TWh)': 'sum',\n 'Electricity from nuclear (TWh)': 'sum',\n 'Electricity from renewables (TWh)': 'sum'\n }).reset_index()\n \n # Rename columns for clarity\n global_energy.columns = ['Year', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n global_energy,\n id_vars=['Year'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Year and Energy Source\n transformed_df = transformed_df.sort_values(['Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Group the energy data by **Year** and aggregate electricity generation values across all countries by summing **Electricity from fossil fuels (TWh)**, **Electricity from nuclear (TWh)**, and **Electricity from renewables (TWh)**\n- Rename the aggregated columns to simplified labels: **Fossil Fuels**, **Nuclear**, and **Renewables**\n- Transform the data from wide format to long format by unpivoting the three energy source columns into two columns: **Energy Source** (containing the type of energy) and **Energy** (containing the generation value in TWh)\n- Sort the resulting dataset by **Year** and **Energy Source** for consistent ordering\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-10", "displayId": "energy-source2", "names": ["Energy", "Energy Source", "Entity", "Year"], "rows": [{"Energy": 1113.3, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2000}, {"Energy": 16.74, "Energy Source": "Nuclear", "Entity": "China", "Year": 2000}, {"Energy": 225.56, "Energy Source": "Renewables", "Entity": "China", "Year": 2000}, {"Energy": 1182.59, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2001}, {"Energy": 17.47, "Energy Source": "Nuclear", "Entity": "China", "Year": 2001}, {"Energy": 280.73, "Energy Source": "Renewables", "Entity": "China", "Year": 2001}, {"Energy": 1337.46, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2002}, {"Energy": 25.13, "Energy Source": "Nuclear", "Entity": "China", "Year": 2002}, {"Energy": 291.41, "Energy Source": "Renewables", "Entity": "China", "Year": 2002}, {"Energy": 1579.96, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2003}, {"Energy": 43.34, "Energy Source": "Nuclear", "Entity": "China", "Year": 2003}, {"Energy": 287.28, "Energy Source": "Renewables", "Entity": "China", "Year": 2003}, {"Energy": 1795.41, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2004}, {"Energy": 50.47, "Energy Source": "Nuclear", "Entity": "China", "Year": 2004}, {"Energy": 357.43, "Energy Source": "Renewables", "Entity": "China", "Year": 2004}, {"Energy": 2042.8, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2005}, {"Energy": 53.09, "Energy Source": "Nuclear", "Entity": "China", "Year": 2005}, {"Energy": 404.37, "Energy Source": "Renewables", "Entity": "China", "Year": 2005}, {"Energy": 2364.16, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2006}, {"Energy": 54.84, "Energy Source": "Nuclear", "Entity": "China", "Year": 2006}, {"Energy": 446.72, "Energy Source": "Renewables", "Entity": "China", "Year": 2006}, {"Energy": 2718.7, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2007}, {"Energy": 62.13, "Energy Source": "Nuclear", "Entity": "China", "Year": 2007}, {"Energy": 500.71, "Energy Source": "Renewables", "Entity": "China", "Year": 2007}, {"Energy": 2762.29, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2008}, {"Energy": 68.39, "Energy Source": "Nuclear", "Entity": "China", "Year": 2008}, {"Energy": 665.08, "Energy Source": "Renewables", "Entity": "China", "Year": 2008}, {"Energy": 2980.2, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2009}, {"Energy": 70.05, "Energy Source": "Nuclear", "Entity": "China", "Year": 2009}, {"Energy": 664.39, "Energy Source": "Renewables", "Entity": "China", "Year": 2009}, {"Energy": 3326.19, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2010}, {"Energy": 74.74, "Energy Source": "Nuclear", "Entity": "China", "Year": 2010}, {"Energy": 786.38, "Energy Source": "Renewables", "Entity": "China", "Year": 2010}, {"Energy": 3811.77, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2011}, {"Energy": 87.2, "Energy Source": "Nuclear", "Entity": "China", "Year": 2011}, {"Energy": 792.38, "Energy Source": "Renewables", "Entity": "China", "Year": 2011}, {"Energy": 3869.38, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2012}, {"Energy": 98.32, "Energy Source": "Nuclear", "Entity": "China", "Year": 2012}, {"Energy": 999.56, "Energy Source": "Renewables", "Entity": "China", "Year": 2012}, {"Energy": 4203.77, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2013}, {"Energy": 111.5, "Energy Source": "Nuclear", "Entity": "China", "Year": 2013}, {"Energy": 1093.37, "Energy Source": "Renewables", "Entity": "China", "Year": 2013}, {"Energy": 4345.86, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2014}, {"Energy": 133.22, "Energy Source": "Nuclear", "Entity": "China", "Year": 2014}, {"Energy": 1289.23, "Energy Source": "Renewables", "Entity": "China", "Year": 2014}, {"Energy": 4222.76, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2015}, {"Energy": 171.38, "Energy Source": "Nuclear", "Entity": "China", "Year": 2015}, {"Energy": 1393.66, "Energy Source": "Renewables", "Entity": "China", "Year": 2015}, {"Energy": 4355, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2016}, {"Energy": 213.18, "Energy Source": "Nuclear", "Entity": "China", "Year": 2016}, {"Energy": 1522.79, "Energy Source": "Renewables", "Entity": "China", "Year": 2016}, {"Energy": 4643.1, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2017}, {"Energy": 248.1, "Energy Source": "Nuclear", "Entity": "China", "Year": 2017}, {"Energy": 1667.06, "Energy Source": "Renewables", "Entity": "China", "Year": 2017}, {"Energy": 4990.28, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2018}, {"Energy": 295, "Energy Source": "Nuclear", "Entity": "China", "Year": 2018}, {"Energy": 1835.32, "Energy Source": "Renewables", "Entity": "China", "Year": 2018}, {"Energy": 5098.22, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2019}, {"Energy": 348.7, "Energy Source": "Nuclear", "Entity": "China", "Year": 2019}, {"Energy": 2014.57, "Energy Source": "Renewables", "Entity": "China", "Year": 2019}, {"Energy": 5184.13, "Energy Source": "Fossil Fuels", "Entity": "China", "Year": 2020}, {"Energy": 366.2, "Energy Source": "Nuclear", "Entity": "China", "Year": 2020}, {"Energy": 2184.94, "Energy Source": "Renewables", "Entity": "China", "Year": 2020}, {"Energy": 475.35, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2000}, {"Energy": 15.77, "Energy Source": "Nuclear", "Entity": "India", "Year": 2000}, {"Energy": 80.27, "Energy Source": "Renewables", "Entity": "India", "Year": 2000}, {"Energy": 491.01, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2001}, {"Energy": 18.89, "Energy Source": "Nuclear", "Entity": "India", "Year": 2001}, {"Energy": 76.19, "Energy Source": "Renewables", "Entity": "India", "Year": 2001}, {"Energy": 517.51, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2002}, {"Energy": 19.35, "Energy Source": "Nuclear", "Entity": "India", "Year": 2002}, {"Energy": 72.78, "Energy Source": "Renewables", "Entity": "India", "Year": 2002}, {"Energy": 545.36, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2003}, {"Energy": 18.14, "Energy Source": "Nuclear", "Entity": "India", "Year": 2003}, {"Energy": 74.63, "Energy Source": "Renewables", "Entity": "India", "Year": 2003}, {"Energy": 567.86, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2004}, {"Energy": 21.26, "Energy Source": "Nuclear", "Entity": "India", "Year": 2004}, {"Energy": 109.2, "Energy Source": "Renewables", "Entity": "India", "Year": 2004}, {"Energy": 579.32, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2005}, {"Energy": 17.73, "Energy Source": "Nuclear", "Entity": "India", "Year": 2005}, {"Energy": 107.47, "Energy Source": "Renewables", "Entity": "India", "Year": 2005}, {"Energy": 599.24, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2006}, {"Energy": 17.63, "Energy Source": "Nuclear", "Entity": "India", "Year": 2006}, {"Energy": 127.56, "Energy Source": "Renewables", "Entity": "India", "Year": 2006}, {"Energy": 636.68, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2007}, {"Energy": 17.83, "Energy Source": "Nuclear", "Entity": "India", "Year": 2007}, {"Energy": 141.75, "Energy Source": "Renewables", "Entity": "India", "Year": 2007}, {"Energy": 674.27, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2008}, {"Energy": 15.23, "Energy Source": "Nuclear", "Entity": "India", "Year": 2008}, {"Energy": 138.91, "Energy Source": "Renewables", "Entity": "India", "Year": 2008}, {"Energy": 728.56, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2009}, {"Energy": 16.82, "Energy Source": "Nuclear", "Entity": "India", "Year": 2009}, {"Energy": 134.33, "Energy Source": "Renewables", "Entity": "India", "Year": 2009}, {"Energy": 771.78, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2010}, {"Energy": 23.08, "Energy Source": "Nuclear", "Entity": "India", "Year": 2010}, {"Energy": 142.61, "Energy Source": "Renewables", "Entity": "India", "Year": 2010}, {"Energy": 828.16, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2011}, {"Energy": 32.22, "Energy Source": "Nuclear", "Entity": "India", "Year": 2011}, {"Energy": 173.62, "Energy Source": "Renewables", "Entity": "India", "Year": 2011}, {"Energy": 893.45, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2012}, {"Energy": 33.14, "Energy Source": "Nuclear", "Entity": "India", "Year": 2012}, {"Energy": 165.25, "Energy Source": "Renewables", "Entity": "India", "Year": 2012}, {"Energy": 924.93, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2013}, {"Energy": 33.31, "Energy Source": "Nuclear", "Entity": "India", "Year": 2013}, {"Energy": 187.9, "Energy Source": "Renewables", "Entity": "India", "Year": 2013}, {"Energy": 1025.29, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2014}, {"Energy": 34.69, "Energy Source": "Nuclear", "Entity": "India", "Year": 2014}, {"Energy": 202.04, "Energy Source": "Renewables", "Entity": "India", "Year": 2014}, {"Energy": 1080.44, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2015}, {"Energy": 38.31, "Energy Source": "Nuclear", "Entity": "India", "Year": 2015}, {"Energy": 203.21, "Energy Source": "Renewables", "Entity": "India", "Year": 2015}, {"Energy": 1155.52, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2016}, {"Energy": 37.9, "Energy Source": "Nuclear", "Entity": "India", "Year": 2016}, {"Energy": 208.21, "Energy Source": "Renewables", "Entity": "India", "Year": 2016}, {"Energy": 1198.85, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2017}, {"Energy": 37.41, "Energy Source": "Nuclear", "Entity": "India", "Year": 2017}, {"Energy": 234.9, "Energy Source": "Renewables", "Entity": "India", "Year": 2017}, {"Energy": 1276.32, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2018}, {"Energy": 39.05, "Energy Source": "Nuclear", "Entity": "India", "Year": 2018}, {"Energy": 263.61, "Energy Source": "Renewables", "Entity": "India", "Year": 2018}, {"Energy": 1273.59, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2019}, {"Energy": 45.16, "Energy Source": "Nuclear", "Entity": "India", "Year": 2019}, {"Energy": 303.16, "Energy Source": "Renewables", "Entity": "India", "Year": 2019}, {"Energy": 1202.34, "Energy Source": "Fossil Fuels", "Entity": "India", "Year": 2020}, {"Energy": 44.61, "Energy Source": "Nuclear", "Entity": "India", "Year": 2020}, {"Energy": 315.76, "Energy Source": "Renewables", "Entity": "India", "Year": 2020}, {"Energy": 2697.28, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2000}, {"Energy": 753.89, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2000}, {"Energy": 350.93, "Energy Source": "Renewables", "Entity": "United States", "Year": 2000}, {"Energy": 2678.68, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2001}, {"Energy": 768.83, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2001}, {"Energy": 280.06, "Energy Source": "Renewables", "Entity": "United States", "Year": 2001}, {"Energy": 2727.83, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2002}, {"Energy": 780.06, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2002}, {"Energy": 336.34, "Energy Source": "Renewables", "Entity": "United States", "Year": 2002}, {"Energy": 2756.03, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2003}, {"Energy": 763.73, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2003}, {"Energy": 349.18, "Energy Source": "Renewables", "Entity": "United States", "Year": 2003}, {"Energy": 2818.28, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2004}, {"Energy": 788.53, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2004}, {"Energy": 345.14, "Energy Source": "Renewables", "Entity": "United States", "Year": 2004}, {"Energy": 2899.96, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2005}, {"Energy": 781.99, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2005}, {"Energy": 353.04, "Energy Source": "Renewables", "Entity": "United States", "Year": 2005}, {"Energy": 2878.56, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2006}, {"Energy": 787.22, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2006}, {"Energy": 381.16, "Energy Source": "Renewables", "Entity": "United States", "Year": 2006}, {"Energy": 2988.24, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2007}, {"Energy": 806.42, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2007}, {"Energy": 347.91, "Energy Source": "Renewables", "Entity": "United States", "Year": 2007}, {"Energy": 2924.21, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2008}, {"Energy": 806.21, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2008}, {"Energy": 377.11, "Energy Source": "Renewables", "Entity": "United States", "Year": 2008}, {"Energy": 2725.41, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2009}, {"Energy": 798.85, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2009}, {"Energy": 415.56, "Energy Source": "Renewables", "Entity": "United States", "Year": 2009}, {"Energy": 2882.49, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2010}, {"Energy": 806.97, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2010}, {"Energy": 424.48, "Energy Source": "Renewables", "Entity": "United States", "Year": 2010}, {"Energy": 2788.93, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2011}, {"Energy": 790.2, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2011}, {"Energy": 509.74, "Energy Source": "Renewables", "Entity": "United States", "Year": 2011}, {"Energy": 2779.02, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2012}, {"Energy": 769.33, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2012}, {"Energy": 492.32, "Energy Source": "Renewables", "Entity": "United States", "Year": 2012}, {"Energy": 2746.21, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2013}, {"Energy": 789.02, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2013}, {"Energy": 520.38, "Energy Source": "Renewables", "Entity": "United States", "Year": 2013}, {"Energy": 2752.01, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2014}, {"Energy": 797.17, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2014}, {"Energy": 546.83, "Energy Source": "Renewables", "Entity": "United States", "Year": 2014}, {"Energy": 2730.32, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2015}, {"Energy": 797.18, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2015}, {"Energy": 556.49, "Energy Source": "Renewables", "Entity": "United States", "Year": 2015}, {"Energy": 2656.96, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2016}, {"Energy": 805.69, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2016}, {"Energy": 624.91, "Energy Source": "Renewables", "Entity": "United States", "Year": 2016}, {"Energy": 2540.17, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2017}, {"Energy": 804.95, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2017}, {"Energy": 707.19, "Energy Source": "Renewables", "Entity": "United States", "Year": 2017}, {"Energy": 2661.3, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2018}, {"Energy": 807.08, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2018}, {"Energy": 733.17, "Energy Source": "Renewables", "Entity": "United States", "Year": 2018}, {"Energy": 2588.21, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2019}, {"Energy": 809.41, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2019}, {"Energy": 760.76, "Energy Source": "Renewables", "Entity": "United States", "Year": 2019}, {"Energy": 2431.9, "Energy Source": "Fossil Fuels", "Entity": "United States", "Year": 2020}, {"Energy": 789.88, "Energy Source": "Nuclear", "Entity": "United States", "Year": 2020}, {"Energy": 821.4, "Energy Source": "Renewables", "Entity": "United States", "Year": 2020}], "metadata": {"Energy": {"type": "number", "semanticType": "Number"}, "Energy Source": {"type": "string", "semanticType": "String", "levels": ["Fossil Fuels", "Nuclear", "Renewables"]}, "Entity": {"type": "string", "semanticType": "Location"}, "Year": {"type": "number", "semanticType": "Year"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total CO2 emissions by country across all years\n total_co2_by_country = df_energy.groupby('Entity')['Value_co2_emissions_kt_by_country'].sum().reset_index()\n \n # Get top 3 CO2 emitting countries\n top3_countries = total_co2_by_country.nlargest(3, 'Value_co2_emissions_kt_by_country')['Entity'].tolist()\n \n # Filter data for top 3 countries\n df_top3 = df_energy[df_energy['Entity'].isin(top3_countries)].copy()\n \n # Select relevant columns and rename for clarity\n df_top3 = df_top3[['Year', 'Entity', 'Electricity from fossil fuels (TWh)', \n 'Electricity from nuclear (TWh)', 'Electricity from renewables (TWh)']].copy()\n \n df_top3.columns = ['Year', 'Entity', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n df_top3,\n id_vars=['Year', 'Entity'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Entity, Year, and Energy Source\n transformed_df = transformed_df.sort_values(['Entity', 'Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n", "source": ["global-energy-20-small.csv"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5736319.824, 5738290.039, nan, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 61.99, 62.21, 63.02, 63.71\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"compare each countries renewable between 2000 and 2020\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Energy\",\n \"color\": \"Year\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Compare renewable energy (Electricity from renewables) for each country between the years 2000 and 2020. Filter the data to include only years 2000 and 2020, and prepare the output with country names, year, and renewable energy values for visualization as a grouped bar chart.\",\n \"display_instruction\": \"Compare **renewable energy** by **country** between **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Electricity from renewables (TWh)\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to compare renewable energy across countries between 2000 and 2020. The output field 'Renewable Energy' mentioned in the original chart_encodings maps to 'Electricity from renewables (TWh)' in the dataset. To create a grouped bar chart comparing these two years, we need to filter the data to only include years 2000 and 2020, and output the Entity (country), Year, and the renewable energy values. The chart_encodings are updated to use the actual column name from the dataset.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n transformed_df = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Select only the required columns\n transformed_df = transformed_df[['Entity', 'Year', 'Electricity from renewables (TWh)']]\n \n # Convert Year to string for better visualization as a categorical variable\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year for better readability\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Electricity from renewables (TWh) Entity Year\n0 17.11 Australia 2000\n1 63.99 Australia 2020\n2 308.77 Brazil 2000\n3 520.01 Brazil 2020\n4 363.70 Canada 2000\n5 429.24 Canada 2020\n6 225.56 China 2000\n7 2184.94 China 2020\n8 67.83 France 2000\n9 125.28 France 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show their renewable percentage instead, and add an entity to show global average\",\n \"chart_type\": \"Grouped Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Electricity from renewables (TWh)\",\n \"color\": \"Year\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the renewable energy percentage (proportion of renewables to total electricity generation from all sources) for each country between 2000 and 2020. Add a 'Global Average' entity that represents the worldwide average renewable percentage for each year. The output should include Entity (with 'Global Average' added), Year, and the renewable percentage.\",\n \"display_instruction\": \"Show **renewable energy percentage** by **country** with **global average** for **2000** and **2020**\",\n \"output_fields\": [\"Entity\", \"Year\", \"Renewable Percentage\"],\n \"chart_encodings\": {\n \"x\": \"Entity\",\n \"y\": \"Renewable Percentage\",\n \"color\": \"Year\"\n },\n \"reason\": \"The user wants to see renewable percentage instead of absolute values, and wants to add a global average entity for comparison. Renewable percentage is calculated as the ratio of renewable energy to total electricity generation (fossil fuels + nuclear + renewables). A 'Global Average' entity needs to be computed by aggregating all countries' data for each year. The y-axis encoding is updated to reflect the new metric 'Renewable Percentage'.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Filter data for years 2000 and 2020\n df_filtered = df_energy[df_energy['Year'].isin([2000, 2020])].copy()\n \n # Calculate total electricity generation\n df_filtered['Total Electricity'] = (\n df_filtered['Electricity from fossil fuels (TWh)'] + \n df_filtered['Electricity from nuclear (TWh)'] + \n df_filtered['Electricity from renewables (TWh)']\n )\n \n # Calculate renewable percentage\n df_filtered['Renewable Percentage'] = (\n df_filtered['Electricity from renewables (TWh)'] / df_filtered['Total Electricity'] * 100\n )\n \n # Select required columns for individual countries\n country_data = df_filtered[['Entity', 'Year', 'Renewable Percentage']].copy()\n \n # Calculate global average for each year\n global_avg = df_filtered.groupby('Year').apply(\n lambda x: pd.Series({\n 'Entity': 'Global Average',\n 'Year': x['Year'].iloc[0],\n 'Renewable Percentage': (\n x['Electricity from renewables (TWh)'].sum() / x['Total Electricity'].sum() * 100\n )\n })\n ).reset_index(drop=True)\n \n # Combine country data with global average\n transformed_df = pd.concat([country_data, global_avg], ignore_index=True)\n \n # Convert Year to string for better visualization\n transformed_df['Year'] = transformed_df['Year'].astype(str)\n \n # Sort by Entity and Year\n transformed_df = transformed_df.sort_values(['Entity', 'Year']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Entity Renewable Percentage Year\n0 Australia 8.634437 2000\n1 Australia 25.503168 2020\n2 Brazil 90.130772 2000\n3 Brazil 84.641177 2020\n4 Canada 61.809592 2000\n5 Canada 68.779644 2020\n6 China 16.639127 2000\n7 China 28.246461 2020\n8 France 12.711769 2000\n9 France 23.761024 2020\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show global energy composition over time\",\n \"chart_type\": \"Custom Area\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Show the global energy composition over time by aggregating electricity generation from all countries for each year, broken down by energy source (fossil fuels, nuclear, and renewables). The output should be in long format with Year, Energy Source, and Energy values to support a stacked area chart visualization.\",\n \"display_instruction\": \"Show global **energy composition** by **energy source** over time\",\n \"output_fields\": [\"Year\", \"Energy Source\", \"Energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n },\n \"reason\": \"The user wants to visualize global energy composition over time, which requires aggregating electricity generation data across all countries for each year and breaking it down by energy source type. The data needs to be transformed into long format where each row represents a year-energy source combination, with the total energy value for that source globally. This follows up from the previous renewable percentage analysis by showing the overall energy mix trends rather than focusing on specific countries or percentages.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Group by Year and sum electricity generation from all countries\n global_energy = df_energy.groupby('Year').agg({\n 'Electricity from fossil fuels (TWh)': 'sum',\n 'Electricity from nuclear (TWh)': 'sum',\n 'Electricity from renewables (TWh)': 'sum'\n }).reset_index()\n \n # Rename columns for clarity\n global_energy.columns = ['Year', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n global_energy,\n id_vars=['Year'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Year and Energy Source\n transformed_df = transformed_df.sort_values(['Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Energy Energy Source Year\n0 7160.71 Fossil Fuels 2000\n1 1996.65 Nuclear 2000\n2 1742.56 Renewables 2000\n3 7273.89 Fossil Fuels 2001\n4 2037.54 Nuclear 2001\n5 1690.11 Renewables 2001\n6 7621.07 Fossil Fuels 2002\n7 2042.18 Nuclear 2002\n8 1757.63 Renewables 2002\n9 8043.86 Fossil Fuels 2003\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show the composition of top 3 CO2 emitting countries\",\n \"chart_type\": \"Custom Area\",\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Identify the top 3 CO2 emitting countries based on total CO2 emissions across all years, then show the energy composition (fossil fuels, nuclear, and renewables) for each of these countries over time. The output should be in long format with Year, Entity (country), Energy Source, and Energy values to support faceted area charts.\",\n \"display_instruction\": \"Show **energy composition** of **top 3 CO2 emitting countries** over time\",\n \"output_fields\": [\"Year\", \"Entity\", \"Energy Source\", \"Energy\"],\n \"chart_encodings\": {\n \"x\": \"Year\",\n \"y\": \"Energy\",\n \"color\": \"Energy Source\",\n \"facet\": \"Entity\"\n },\n \"reason\": \"The user wants to see the energy composition specifically for the top 3 CO2 emitting countries over time, following up from the global energy composition view. We need to identify which countries have the highest total CO2 emissions, filter the data for those countries, and transform it into long format by energy source. A facet encoding is added to show separate area charts for each of the top 3 countries, allowing comparison of their individual energy compositions over time.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total CO2 emissions by country across all years\n total_co2_by_country = df_energy.groupby('Entity')['Value_co2_emissions_kt_by_country'].sum().reset_index()\n \n # Get top 3 CO2 emitting countries\n top3_countries = total_co2_by_country.nlargest(3, 'Value_co2_emissions_kt_by_country')['Entity'].tolist()\n \n # Filter data for top 3 countries\n df_top3 = df_energy[df_energy['Entity'].isin(top3_countries)].copy()\n \n # Select relevant columns and rename for clarity\n df_top3 = df_top3[['Year', 'Entity', 'Electricity from fossil fuels (TWh)', \n 'Electricity from nuclear (TWh)', 'Electricity from renewables (TWh)']].copy()\n \n df_top3.columns = ['Year', 'Entity', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n df_top3,\n id_vars=['Year', 'Entity'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Entity, Year, and Energy Source\n transformed_df = transformed_df.sort_values(['Entity', 'Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-81", "resultTableId": "table-10", "chart": {"id": "chart-1760739075465", "chartType": "Custom Area", "encodingMap": {"x": {"channel": "x", "bin": false, "fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"channel": "y", "bin": false, "fieldID": "concept-1760738917347"}, "x2": {}, "y2": {"channel": "y2", "bin": false}, "color": {"fieldID": "concept-1760738921927", "sortBy": "[\"Fossil Fuels\",\"Nuclear\",\"Renewables\"]"}, "column": {}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-81", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show the composition of top 3 CO2 emitting countries", "displayContent": "Show **energy composition** of **top 3 CO2 emitting countries** over time"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "The code performs the following high-level transformations:\n\n1. **Identifies top polluters**: Calculates the total `Value_co2_emissions_kt_by_country` across all years for each `Entity` (country), then selects the **top 3** countries with the highest cumulative CO2 emissions.\n\n2. **Filters the dataset**: Retains only records for the **top 3 CO2-emitting countries** from the original energy data.\n\n3. **Simplifies column structure**: Extracts the relevant energy production columns (`Electricity from fossil fuels (TWh)`, `Electricity from nuclear (TWh)`, `Electricity from renewables (TWh)`) and renames them to **Fossil Fuels**, **Nuclear**, and **Renewables** for clarity.\n\n4. **Reshapes data to long format**: Transforms the data from wide format (separate columns for each energy source) to long format, where each row represents a specific `Year`, `Entity`, and `Energy Source` combination with its corresponding `Energy` production value.\n\n5. **Sorts the output**: Orders the final dataset by `Entity`, `Year`, and `Energy Source` for systematic presentation.", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (global_energy_20_small_csv)\n\n## fields\n\t*Year -- type: int64, values: 2000, 2001, 2002, ..., 2017, 2018, 2019, 2020\n\t*Entity -- type: object, values: Australia, Brazil, Canada, ..., Thailand, Ukraine, United Kingdom, United States\n\t*Value_co2_emissions_kt_by_country -- type: float64, values: 117440.0, 146139.9994, 158029.9988, ..., 5593029.785, 5736319.824, 5738290.039, 9861099.609\n\t*Electricity from fossil fuels (TWh) -- type: float64, values: 28.87, 31.62, 33.5, ..., 4643.1, 4990.28, 5098.22, 5184.13\n\t*Electricity from nuclear (TWh) -- type: float64, values: 0.0, 3.24, 4.94, ..., 62.21, 63.02, 63.71, 439.73\n\t*Electricity from renewables (TWh) -- type: float64, values: 0.0, 0.01, 0.03, ..., 1667.06, 1835.32, 2014.57, 2184.94\n\n## sample\n Year Entity Value_co2_emissions_kt_by_country Electricity from fossil fuels (TWh) Electricity from nuclear (TWh) Electricity from renewables (TWh)\n0 2000 Australia 339450.0000 181.05 0 17.11\n1 2001 Australia 345640.0000 194.33 0 17.40\n2 2002 Australia 353369.9951 197.29 0 17.35\n3 2003 Australia 352579.9866 195.13 0 18.50\n4 2004 Australia 365809.9976 203.66 0 19.41\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_energy):\n # Calculate total CO2 emissions by country across all years\n total_co2_by_country = df_energy.groupby('Entity')['Value_co2_emissions_kt_by_country'].sum().reset_index()\n \n # Get top 3 CO2 emitting countries\n top3_countries = total_co2_by_country.nlargest(3, 'Value_co2_emissions_kt_by_country')['Entity'].tolist()\n \n # Filter data for top 3 countries\n df_top3 = df_energy[df_energy['Entity'].isin(top3_countries)].copy()\n \n # Select relevant columns and rename for clarity\n df_top3 = df_top3[['Year', 'Entity', 'Electricity from fossil fuels (TWh)', \n 'Electricity from nuclear (TWh)', 'Electricity from renewables (TWh)']].copy()\n \n df_top3.columns = ['Year', 'Entity', 'Fossil Fuels', 'Nuclear', 'Renewables']\n \n # Transform to long format\n transformed_df = pd.melt(\n df_top3,\n id_vars=['Year', 'Entity'],\n value_vars=['Fossil Fuels', 'Nuclear', 'Renewables'],\n var_name='Energy Source',\n value_name='Energy'\n )\n \n # Sort by Entity, Year, and Energy Source\n transformed_df = transformed_df.sort_values(['Entity', 'Year', 'Energy Source']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThe code performs the following high-level transformations:\n\n1. **Identifies top polluters**: Calculates the total `Value_co2_emissions_kt_by_country` across all years for each `Entity` (country), then selects the **top 3** countries with the highest cumulative CO2 emissions.\n\n2. **Filters the dataset**: Retains only records for the **top 3 CO2-emitting countries** from the original energy data.\n\n3. **Simplifies column structure**: Extracts the relevant energy production columns (`Electricity from fossil fuels (TWh)`, `Electricity from nuclear (TWh)`, `Electricity from renewables (TWh)`) and renames them to **Fossil Fuels**, **Nuclear**, and **Renewables** for clarity.\n\n4. **Reshapes data to long format**: Transforms the data from wide format (separate columns for each energy source) to long format, where each row represents a specific `Year`, `Entity`, and `Energy Source` combination with its corresponding `Energy` production value.\n\n5. **Sorts the output**: Orders the final dataset by `Entity`, `Year`, and `Energy Source` for systematic presentation.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}], "charts": [{"id": "chart-1760739084455", "chartType": "Custom Area", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"fieldID": "concept-1760738917347"}, "x2": {}, "y2": {"channel": "y2", "bin": false}, "color": {"fieldID": "concept-1760738921927"}, "column": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-10", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760739021201", "chartType": "Custom Area", "encodingMap": {"x": {"channel": "x", "bin": false, "fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"channel": "y", "bin": false, "fieldID": "concept-1760738917347"}, "x2": {}, "y2": {"channel": "y2", "bin": false}, "color": {"fieldID": "concept-1760738921927", "sortBy": "[\"Fossil Fuels\",\"Nuclear\",\"Renewables\"]"}, "column": {}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-81", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760738819387", "chartType": "Grouped Bar Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "y": {"fieldID": "concept-Renewable Percentage-1760738820889"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}, "group": {"fieldID": "original--global-energy-20-small.csv--Year"}}, "tableRef": "table-27", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760738770100", "chartType": "Grouped Bar Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "y": {"fieldID": "original--global-energy-20-small.csv--Electricity from renewables (TWh)"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}, "group": {"fieldID": "original--global-energy-20-small.csv--Year"}}, "tableRef": "table-97", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760738436615", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Year", "sortOrder": "ascending"}, "y": {"fieldID": "concept-rank-1760738444550", "sortOrder": "descending"}, "color": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "opacity": {"channel": "opacity", "bin": false}, "column": {}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-78", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760738423852", "chartType": "Dotted Line Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"fieldID": "concept-renewable_percentage-1760738424337"}, "color": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "column": {}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-45", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760738400970", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"fieldID": "concept-1760738385163"}, "color": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "concept-1760738389404", "sortBy": "[\"fossil fuels\",\"nuclear\",\"renewables\"]"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-82", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760738355655", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--global-energy-20-small.csv--Year"}, "y": {"fieldID": "original--global-energy-20-small.csv--Value_co2_emissions_kt_by_country"}, "color": {"fieldID": "original--global-energy-20-small.csv--Entity"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "global-energy-20-small.csv", "saved": false, "source": "user", "unread": false}], "conceptShelfItems": [{"id": "concept-1760738921927", "name": "Energy Source", "type": "auto", "description": "", "source": "custom", "tableRef": "custom"}, {"id": "concept-1760738917347", "name": "Energy", "type": "auto", "description": "", "source": "custom", "tableRef": "custom"}, {"id": "concept-Renewable Percentage-1760738820889", "name": "Renewable Percentage", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-1760738743125", "name": "Renewable Energy", "type": "auto", "description": "", "source": "custom", "tableRef": "custom"}, {"id": "concept-rank-1760738444550", "name": "rank", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-renewable_percentage-1760738424337", "name": "renewable_percentage", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-1760738389404", "name": "source", "type": "auto", "description": "", "source": "custom", "tableRef": "custom"}, {"id": "concept-1760738385163", "name": "energy", "type": "auto", "description": "", "source": "custom", "tableRef": "custom"}, {"id": "original--global-energy-20-small.csv--Year", "name": "Year", "type": "integer", "source": "original", "description": "", "tableRef": "global-energy-20-small.csv"}, {"id": "original--global-energy-20-small.csv--Entity", "name": "Entity", "type": "string", "source": "original", "description": "", "tableRef": "global-energy-20-small.csv"}, {"id": "original--global-energy-20-small.csv--Value_co2_emissions_kt_by_country", "name": "Value_co2_emissions_kt_by_country", "type": "number", "source": "original", "description": "", "tableRef": "global-energy-20-small.csv"}, {"id": "original--global-energy-20-small.csv--Electricity from fossil fuels (TWh)", "name": "Electricity from fossil fuels (TWh)", "type": "number", "source": "original", "description": "", "tableRef": "global-energy-20-small.csv"}, {"id": "original--global-energy-20-small.csv--Electricity from nuclear (TWh)", "name": "Electricity from nuclear (TWh)", "type": "number", "source": "original", "description": "", "tableRef": "global-energy-20-small.csv"}, {"id": "original--global-energy-20-small.csv--Electricity from renewables (TWh)", "name": "Electricity from renewables (TWh)", "type": "number", "source": "original", "description": "", "tableRef": "global-energy-20-small.csv"}], "messages": [{"timestamp": 1760831081885, "type": "success", "component": "data formulator", "value": "Successfully loaded Global Energy"}], "displayedMessageIdx": 0, "viewMode": "report", "chartSynthesisInProgress": [], "config": {"formulateTimeoutSeconds": 60, "maxRepairAttempts": 1, "defaultChartWidth": 300, "defaultChartHeight": 300}, "dataCleanBlocks": [], "cleanInProgress": false, "generatedReports": [{"id": "report-1760831156182-8277", "content": "# Global Renewable Energy Shift: 2000 to 2020\n\nBetween 2000 and 2020, the world witnessed a notable transformation in renewable energy adoption. Global renewable electricity nearly doubled from 16% to 29% of total generation, signaling meaningful progress in the energy transition.\n\n[IMAGE(chart-1760738819387)]\n\nThe data reveals striking regional variations. Brazil maintained renewable leadership above 84%, while countries like Australia, Germany, and Italy dramatically expanded their renewable capacity—Australia tripling from 9% to 26%. However, some nations like Mexico experienced declining renewable shares, highlighting uneven progress across different energy systems.\n\n**In summary**, while the 20-year period shows encouraging momentum toward cleaner energy, the pace and direction vary significantly by country, suggesting that achieving global renewable energy goals will require sustained, coordinated efforts tailored to each nation's unique energy landscape and policy environment.", "style": "short note", "selectedChartIds": ["chart-1760738819387"], "createdAt": 1760831163718, "status": "completed", "title": "Global Renewable Energy Shift: 2000 to 2020", "anchorChartId": "chart-1760738819387"}, {"id": "report-1760831130105-4063", "content": "# The Global Renewable Energy Revolution: Two Decades of Transformation\n\nThe world's energy landscape has undergone a remarkable transformation between 2000 and 2020, with renewable electricity generation emerging as a critical component of the global energy mix. This shift reflects both technological advancement and growing commitment to sustainable energy solutions.\n\n[IMAGE(chart-1760738770100)]\n\nLooking at renewable energy adoption across major economies, the growth has been nothing short of extraordinary. China leads the pack with a staggering increase from 225.56 TWh in 2000 to 2,184.94 TWh in 2020—nearly a tenfold expansion. The United States more than doubled its renewable output from 335.45 TWh to 821.40 TWh, while Brazil grew from 308.77 TWh to 520.01 TWh. Notably, countries like Australia, India, and Germany also demonstrated significant gains, with Australia jumping from just 17.11 TWh to 63.99 TWh during this period.\n\n[IMAGE(chart-1760739084455)]\n\nWhen examining the energy portfolios of the three largest CO2 emitters—China, India, and the United States—a complex picture emerges. While China's total energy consumption has grown exponentially, with fossil fuels still dominating, the renewable sector (shown in red) has expanded substantially. The United States shows a more stable total energy consumption, with renewables gradually claiming a larger share. India's energy growth, though significant, remains heavily reliant on fossil fuels, though renewable adoption is accelerating.\n\n**In summary**, the past two decades reveal a global energy transition in progress. While renewable energy has achieved impressive growth worldwide, fossil fuels continue to dominate electricity generation in major economies. Key questions remain: Can this momentum accelerate sufficiently to meet climate goals? What policies will drive faster renewable adoption in emerging economies?", "style": "blog post", "selectedChartIds": ["chart-1760739084455", "chart-1760738770100"], "createdAt": 1760831142289, "status": "completed", "title": "The Global Renewable Energy Revolution: Two Decades of Transformation", "anchorChartId": "chart-1760739084455"}, {"id": "report-1760831094231-2424", "content": "# Global Renewable Energy: A Tale of Leaders and Laggards\n\nThe global energy landscape has undergone significant transformation over the past two decades, with renewable energy emerging as a critical player in the electricity mix. Analyzing data from 21 major economies between 2000 and 2020 reveals striking disparities in how nations have embraced clean energy alternatives.\n\n[IMAGE(chart-1760738423852)]\n\nThe first visualization reveals a fascinating divergence in renewable energy adoption. **Brazil** stands out as a consistent leader, maintaining renewable electricity percentages between 75-90% throughout the entire period, thanks largely to its robust hydroelectric infrastructure. **Canada** follows a similar trajectory, steadily increasing from about 60% to nearly 70% by 2020. Meanwhile, **Germany, Spain, Italy, and the United Kingdom** show remarkable growth trajectories, climbing from under 20% in the early 2000s to over 40% by 2020—demonstrating that nations can dramatically reshape their energy portfolios within two decades.\n\nOn the opposite end of the spectrum, **South Africa** remains nearly flat at the bottom, showing minimal renewable adoption despite global trends. **Saudi Arabia** and **Poland** also lag significantly, though both show modest upticks in recent years.\n\n[IMAGE(chart-1760738436615)]\n\nThe ranking chart illustrates the competitive dynamics of renewable energy leadership. **Brazil and Canada** maintain their dominance at ranks 1-2 throughout most years, while European nations like **Germany, Spain, and the UK** engage in a dynamic competition for the 3rd-5th positions, particularly after 2010. The volatility in middle rankings reflects the rapid changes in energy policy and investment across different nations, with countries like **China** climbing from lower ranks to break into the top 7 by 2020.\n\n**In summary**, the data reveals a bifurcated global energy transition: a group of progressive nations have successfully scaled renewable electricity to 40-90% of their mix, while others remain heavily dependent on fossil fuels. These patterns suggest that political will, natural resource endowment, and infrastructure investment are key determinants of renewable energy success. Important follow-up questions include: What policy mechanisms enabled top performers to achieve such high renewable percentages? Can lagging nations replicate these successes, or do geographic and economic constraints create insurmountable barriers?", "style": "blog post", "selectedChartIds": ["chart-1760738423852", "chart-1760738436615"], "createdAt": 1760831110064, "status": "completed", "title": "Global Renewable Energy: A Tale of Leaders and Laggards", "anchorChartId": "chart-1760738423852"}], "currentReport": {"id": "report-1760750575650-2619", "content": "# Hollywood's Billion-Dollar Hitmakers\n\n*Avatar* stands alone—earning over $2.5B in profit, dwarfing all competition. Action and Adventure films dominate the most profitable titles, with franchises like *Jurassic Park*, *The Dark Knight*, and *Lord of the Rings* proving blockbuster formulas work.\n\n\"Chart\"\n\nSteven Spielberg leads all directors with $7.2B in total profit across his career, showcasing remarkable consistency with hits spanning decades—from *Jurassic Park* to *E.T.* His nearest competitors trail by billions, underlining his unmatched commercial impact.\n\n\"Chart\"\n\n**In summary**, mega-budget Action and Adventure films generate extraordinary returns when they succeed, and a handful of elite directors—led by Spielberg—have mastered the formula for sustained box office dominance.", "style": "short note", "selectedChartIds": ["chart-1760743347871", "chart-1760743768741"], "chartImages": {}, "createdAt": 1760750584189, "title": "Report - 10/17/2025"}, "activeChallenges": [], "_persist": {"version": -1, "rehydrated": true}, "draftNodes": [], "focusedId": {"type": "report", "reportId": "report-1760831156182-8277"}} \ No newline at end of file diff --git a/public/df_movies.json b/public/df_movies.json index 0e826836..3014d6dc 100644 --- a/public/df_movies.json +++ b/public/df_movies.json @@ -1 +1 @@ -{"tables":[{"id":"movies","displayId":"movies","names":["Title","US Gross","Worldwide Gross","US DVD Sales","Production Budget","Release Date","MPAA Rating","Running Time min","Distributor","Source","Major Genre","Creative Type","Director","Rotten Tomatoes Rating","IMDB Rating","IMDB Votes"],"metadata":{"Title":{"type":"string","semanticType":"Name"},"US Gross":{"type":"number","semanticType":"Number"},"Worldwide Gross":{"type":"number","semanticType":"Number"},"US DVD Sales":{"type":"number","semanticType":"Number"},"Production Budget":{"type":"number","semanticType":"Number"},"Release Date":{"type":"date","semanticType":"Date"},"MPAA Rating":{"type":"string","semanticType":"String","levels":["G","PG","PG-13","R","NC-17","Not Rated","Open"]},"Running Time min":{"type":"number","semanticType":"Duration"},"Distributor":{"type":"string","semanticType":"Name"},"Source":{"type":"string","semanticType":"String"},"Major Genre":{"type":"string","semanticType":"String"},"Creative Type":{"type":"string","semanticType":"String"},"Director":{"type":"string","semanticType":"Name"},"Rotten Tomatoes Rating":{"type":"number","semanticType":"Number"},"IMDB Rating":{"type":"number","semanticType":"Number"},"IMDB Votes":{"type":"number","semanticType":"Number"}},"rows":[{"Title":"The Land Girls","US Gross":146083,"Worldwide Gross":146083,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Jun 12 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":1071},{"Title":"First Love, Last Rites","US Gross":10876,"Worldwide Gross":10876,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Aug 07 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Strand","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":207},{"Title":"I Married a Strange Person","US Gross":203134,"Worldwide Gross":203134,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Aug 28 1998","MPAA Rating":null,"Running Time min":null,"Distributor":"Lionsgate","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":865},{"Title":"Let's Talk About Sex","US Gross":373615,"Worldwide Gross":373615,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Sep 11 1998","MPAA Rating":null,"Running Time min":null,"Distributor":"Fine Line","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Slam","US Gross":1009819,"Worldwide Gross":1087521,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Oct 09 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Trimark","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":62,"IMDB Rating":3.4,"IMDB Votes":165},{"Title":"Mississippi Mermaid","US Gross":24551,"Worldwide Gross":2624551,"US DVD Sales":null,"Production Budget":1600000,"Release Date":"Jan 15 1999","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Following","US Gross":44705,"Worldwide Gross":44705,"US DVD Sales":null,"Production Budget":6000,"Release Date":"Apr 04 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Zeitgeist","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Christopher Nolan","Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":15133},{"Title":"Foolish","US Gross":6026908,"Worldwide Gross":6026908,"US DVD Sales":null,"Production Budget":1600000,"Release Date":"Apr 09 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.8,"IMDB Votes":353},{"Title":"Pirates","US Gross":1641825,"Worldwide Gross":6341825,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 01 1986","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Roman Polanski","Rotten Tomatoes Rating":25,"IMDB Rating":5.8,"IMDB Votes":3275},{"Title":"Duel in the Sun","US Gross":20400000,"Worldwide Gross":20400000,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Dec 31 2046","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":86,"IMDB Rating":7,"IMDB Votes":2906},{"Title":"Tom Jones","US Gross":37600000,"Worldwide Gross":37600000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Oct 07 1963","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":7,"IMDB Votes":4035},{"Title":"Oliver!","US Gross":37402877,"Worldwide Gross":37402877,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 11 1968","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":"Musical","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":84,"IMDB Rating":7.5,"IMDB Votes":9111},{"Title":"To Kill A Mockingbird","US Gross":13129846,"Worldwide Gross":13129846,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 25 1962","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":97,"IMDB Rating":8.4,"IMDB Votes":82786},{"Title":"Tora, Tora, Tora","US Gross":29548291,"Worldwide Gross":29548291,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Sep 23 1970","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Richard Fleischer","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Hollywood Shuffle","US Gross":5228617,"Worldwide Gross":5228617,"US DVD Sales":null,"Production Budget":100000,"Release Date":"Mar 01 1987","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":87,"IMDB Rating":6.8,"IMDB Votes":1532},{"Title":"Over the Hill to the Poorhouse","US Gross":3000000,"Worldwide Gross":3000000,"US DVD Sales":null,"Production Budget":100000,"Release Date":"Sep 17 2020","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Wilson","US Gross":2000000,"Worldwide Gross":2000000,"US DVD Sales":null,"Production Budget":5200000,"Release Date":"Aug 01 2044","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":451},{"Title":"Darling Lili","US Gross":5000000,"Worldwide Gross":5000000,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Jan 01 1970","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Blake Edwards","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":858},{"Title":"The Ten Commandments","US Gross":80000000,"Worldwide Gross":80000000,"US DVD Sales":null,"Production Budget":13500000,"Release Date":"Oct 05 1956","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":90,"IMDB Rating":2.5,"IMDB Votes":1677},{"Title":"12 Angry Men","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":340000,"Release Date":"Apr 13 1957","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":"Sidney Lumet","Rotten Tomatoes Rating":null,"IMDB Rating":8.9,"IMDB Votes":119101},{"Title":"Twelve Monkeys","US Gross":57141459,"Worldwide Gross":168841459,"US DVD Sales":null,"Production Budget":29000000,"Release Date":"Dec 27 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Short Film","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Terry Gilliam","Rotten Tomatoes Rating":null,"IMDB Rating":8.1,"IMDB Votes":169858},{"Title":1776,"US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Nov 09 1972","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":57,"IMDB Rating":7,"IMDB Votes":4099},{"Title":1941,"US Gross":34175000,"Worldwide Gross":94875000,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Dec 14 1979","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":33,"IMDB Rating":5.6,"IMDB Votes":13364},{"Title":"Chacun sa nuit","US Gross":18435,"Worldwide Gross":18435,"US DVD Sales":null,"Production Budget":1900000,"Release Date":"Jun 29 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Strand","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":365},{"Title":"2001: A Space Odyssey","US Gross":56700000,"Worldwide Gross":68700000,"US DVD Sales":null,"Production Budget":10500000,"Release Date":"Apr 02 1968","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":null,"Creative Type":"Science Fiction","Director":"Stanley Kubrick","Rotten Tomatoes Rating":96,"IMDB Rating":8.4,"IMDB Votes":160342},{"Title":"20,000 Leagues Under the Sea","US Gross":28200000,"Worldwide Gross":28200000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Dec 23 1954","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":null,"Director":"Richard Fleischer","Rotten Tomatoes Rating":92,"IMDB Rating":null,"IMDB Votes":null},{"Title":"20,000 Leagues Under the Sea","US Gross":8000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Dec 24 2016","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"24 7: Twenty Four Seven","US Gross":72544,"Worldwide Gross":72544,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Apr 15 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"October Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Shane Meadows","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":1417},{"Title":"Twin Falls Idaho","US Gross":985341,"Worldwide Gross":1027228,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jul 30 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Michael Polish","Rotten Tomatoes Rating":77,"IMDB Rating":7.1,"IMDB Votes":2810},{"Title":"Three Kingdoms: Resurrection of the Dragon","US Gross":0,"Worldwide Gross":22139590,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Apr 03 2008","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"3 Men and a Baby","US Gross":167780960,"Worldwide Gross":167780960,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Nov 25 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Leonard Nimoy","Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":16764},{"Title":"3 Ninjas Kick Back","US Gross":11744960,"Worldwide Gross":11744960,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"May 06 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":3.2,"IMDB Votes":3107},{"Title":"Forty Shades of Blue","US Gross":75828,"Worldwide Gross":172569,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Sep 28 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Vitagraph Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":873},{"Title":"42nd Street","US Gross":2300000,"Worldwide Gross":2300000,"US DVD Sales":null,"Production Budget":439000,"Release Date":"Mar 09 2033","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":95,"IMDB Rating":7.7,"IMDB Votes":4263},{"Title":"Four Rooms","US Gross":4301000,"Worldwide Gross":4301000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 25 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Robert Rodriguez","Rotten Tomatoes Rating":14,"IMDB Rating":6.4,"IMDB Votes":34328},{"Title":"The Four Seasons","US Gross":42488161,"Worldwide Gross":42488161,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"May 22 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Alan Alda","Rotten Tomatoes Rating":71,"IMDB Rating":7,"IMDB Votes":1814},{"Title":"Four Weddings and a Funeral","US Gross":52700832,"Worldwide Gross":242895809,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Mar 09 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Mike Newell","Rotten Tomatoes Rating":96,"IMDB Rating":7.1,"IMDB Votes":39003},{"Title":"51 Birch Street","US Gross":84689,"Worldwide Gross":84689,"US DVD Sales":null,"Production Budget":350000,"Release Date":"Oct 18 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Truly Indie","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":97,"IMDB Rating":7.4,"IMDB Votes":439},{"Title":"55 Days at Peking","US Gross":10000000,"Worldwide Gross":10000000,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Dec 31 1962","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":57,"IMDB Rating":6.8,"IMDB Votes":2104},{"Title":"Nine 1/2 Weeks","US Gross":6734844,"Worldwide Gross":6734844,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Feb 21 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Adrian Lyne","Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":12731},{"Title":"AstÈrix aux Jeux Olympiques","US Gross":999811,"Worldwide Gross":132999811,"US DVD Sales":null,"Production Budget":113500000,"Release Date":"Jul 04 2008","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Alliance","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":5620},{"Title":"The Abyss","US Gross":54243125,"Worldwide Gross":54243125,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Aug 09 1989","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"James Cameron","Rotten Tomatoes Rating":88,"IMDB Rating":7.6,"IMDB Votes":51018},{"Title":"Action Jackson","US Gross":20257000,"Worldwide Gross":20257000,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Feb 12 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Lorimar Motion Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":4.6,"IMDB Votes":3856},{"Title":"Ace Ventura: Pet Detective","US Gross":72217396,"Worldwide Gross":107217396,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Feb 04 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Tom Shadyac","Rotten Tomatoes Rating":49,"IMDB Rating":6.6,"IMDB Votes":63543},{"Title":"Ace Ventura: When Nature Calls","US Gross":108360063,"Worldwide Gross":212400000,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Nov 10 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steve Oedekerk","Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":51275},{"Title":"April Fool's Day","US Gross":12947763,"Worldwide Gross":12947763,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Mar 27 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":31,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Among Giants","US Gross":64359,"Worldwide Gross":64359,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Mar 26 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":546},{"Title":"Annie Get Your Gun","US Gross":8000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":3768785,"Release Date":"May 17 1950","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":7.1,"IMDB Votes":1326},{"Title":"Alice in Wonderland","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Jul 28 1951","MPAA Rating":null,"Running Time min":null,"Distributor":"RKO Radio Pictures","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":6.7,"IMDB Votes":63458},{"Title":"The Princess and the Cobbler","US Gross":669276,"Worldwide Gross":669276,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Aug 25 1995","MPAA Rating":"G","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":893},{"Title":"The Alamo","US Gross":7900000,"Worldwide Gross":7900000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Oct 24 1960","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"John Wayne","Rotten Tomatoes Rating":54,"IMDB Rating":5.9,"IMDB Votes":10063},{"Title":"Alexander's Ragtime Band","US Gross":4000000,"Worldwide Gross":4000000,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 31 1937","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Alive","US Gross":36299670,"Worldwide Gross":36299670,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Jan 15 1993","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Dramatization","Director":"Frank Marshall","Rotten Tomatoes Rating":71,"IMDB Rating":3.2,"IMDB Votes":124},{"Title":"Amen","US Gross":274299,"Worldwide Gross":274299,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Jan 24 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Kino International","Source":"Based on Play","Major Genre":"Drama","Creative Type":null,"Director":"Costa-Gavras","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":5416},{"Title":"American Graffiti","US Gross":115000000,"Worldwide Gross":140000000,"US DVD Sales":null,"Production Budget":777000,"Release Date":"Aug 11 1973","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"George Lucas","Rotten Tomatoes Rating":97,"IMDB Rating":7.6,"IMDB Votes":30952},{"Title":"American Ninja 2: The Confrontation","US Gross":4000000,"Worldwide Gross":4000000,"US DVD Sales":null,"Production Budget":350000,"Release Date":"Dec 31 1986","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Action","Creative Type":null,"Director":"Sam Firstenberg","Rotten Tomatoes Rating":null,"IMDB Rating":3.7,"IMDB Votes":2495},{"Title":"The American President","US Gross":60022813,"Worldwide Gross":107822813,"US DVD Sales":null,"Production Budget":62000000,"Release Date":"Nov 17 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Rob Reiner","Rotten Tomatoes Rating":90,"IMDB Rating":6.8,"IMDB Votes":22780},{"Title":"Annie Hall","US Gross":38251425,"Worldwide Gross":38251425,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Apr 20 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Woody Allen","Rotten Tomatoes Rating":98,"IMDB Rating":8.2,"IMDB Votes":65406},{"Title":"Anatomie","US Gross":9598,"Worldwide Gross":9598,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Sep 08 2000","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":6266},{"Title":"The Adventures of Huck Finn","US Gross":24103594,"Worldwide Gross":24103594,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"Apr 02 1993","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Stephen Sommers","Rotten Tomatoes Rating":62,"IMDB Rating":5.8,"IMDB Votes":3095},{"Title":"The Apartment","US Gross":18600000,"Worldwide Gross":24600000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Dec 31 1959","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":null,"Director":"Billy Wilder","Rotten Tomatoes Rating":91,"IMDB Rating":8.4,"IMDB Votes":36485},{"Title":"Apocalypse Now","US Gross":78800000,"Worldwide Gross":78800000,"US DVD Sales":3479242,"Production Budget":31500000,"Release Date":"Aug 15 1979","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":98,"IMDB Rating":8.6,"IMDB Votes":173141},{"Title":"Arachnophobia","US Gross":53208180,"Worldwide Gross":53208180,"US DVD Sales":null,"Production Budget":31000000,"Release Date":"Jul 18 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Frank Marshall","Rotten Tomatoes Rating":85,"IMDB Rating":6.2,"IMDB Votes":20528},{"Title":"Arn - Tempelriddaren","US Gross":0,"Worldwide Gross":14900000,"US DVD Sales":null,"Production Budget":16500000,"Release Date":"Dec 25 2007","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":6251},{"Title":"Arnolds Park","US Gross":23616,"Worldwide Gross":23616,"US DVD Sales":null,"Production Budget":600000,"Release Date":"Oct 19 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"The Movie Partners","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":77},{"Title":"Sweet Sweetback's Baad Asssss Song","US Gross":15200000,"Worldwide Gross":15200000,"US DVD Sales":null,"Production Budget":150000,"Release Date":"Jan 01 1971","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":1769},{"Title":"And Then Came Love","US Gross":8158,"Worldwide Gross":8158,"US DVD Sales":null,"Production Budget":989000,"Release Date":"Jun 01 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Fox Meadow","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":4.4,"IMDB Votes":200},{"Title":"Around the World in 80 Days","US Gross":42000000,"Worldwide Gross":42000000,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Oct 17 1956","MPAA Rating":"PG","Running Time min":null,"Distributor":"United Artists","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":73,"IMDB Rating":5.6,"IMDB Votes":21516},{"Title":"Barbarella","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Oct 10 1968","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":74,"IMDB Rating":5.7,"IMDB Votes":10794},{"Title":"Barry Lyndon","US Gross":20000000,"Worldwide Gross":20000000,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Dec 31 1974","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":"Stanley Kubrick","Rotten Tomatoes Rating":94,"IMDB Rating":8.1,"IMDB Votes":39909},{"Title":"Barbarians, The","US Gross":800000,"Worldwide Gross":800000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Mar 01 1987","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":236},{"Title":"Babe","US Gross":63658910,"Worldwide Gross":246100000,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 04 1995","MPAA Rating":"G","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Chris Noonan","Rotten Tomatoes Rating":98,"IMDB Rating":7.3,"IMDB Votes":35644},{"Title":"Boynton Beach Club","US Gross":3127472,"Worldwide Gross":3127472,"US DVD Sales":null,"Production Budget":2900000,"Release Date":"Mar 24 2006","MPAA Rating":"R","Running Time min":104,"Distributor":"Wingate Distribution","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Baby's Day Out","US Gross":16581575,"Worldwide Gross":16581575,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jul 01 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Patrick Read Johnson","Rotten Tomatoes Rating":21,"IMDB Rating":5,"IMDB Votes":8332},{"Title":"Bound by Honor","US Gross":4496583,"Worldwide Gross":4496583,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Apr 16 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":null,"Creative Type":null,"Director":"Taylor Hackford","Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":10142},{"Title":"Bon Cop, Bad Cop","US Gross":12671300,"Worldwide Gross":12671300,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Aug 04 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Alliance","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":6.9,"IMDB Votes":151},{"Title":"Back to the Future","US Gross":210609762,"Worldwide Gross":381109762,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Jul 03 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Robert Zemeckis","Rotten Tomatoes Rating":96,"IMDB Rating":8.4,"IMDB Votes":201598},{"Title":"Back to the Future Part II","US Gross":118450002,"Worldwide Gross":332000000,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Nov 22 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Robert Zemeckis","Rotten Tomatoes Rating":64,"IMDB Rating":7.5,"IMDB Votes":87341},{"Title":"Back to the Future Part III","US Gross":87666629,"Worldwide Gross":243700000,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"May 24 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Robert Zemeckis","Rotten Tomatoes Rating":71,"IMDB Rating":7.1,"IMDB Votes":77541},{"Title":"Butch Cassidy and the Sundance Kid","US Gross":102308900,"Worldwide Gross":102308900,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Oct 24 1969","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":null,"Major Genre":"Western","Creative Type":"Historical Fiction","Director":"George Roy Hill","Rotten Tomatoes Rating":90,"IMDB Rating":8.2,"IMDB Votes":57602},{"Title":"Bad Boys","US Gross":65647413,"Worldwide Gross":141247413,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Apr 07 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Michael Bay","Rotten Tomatoes Rating":39,"IMDB Rating":6.6,"IMDB Votes":53929},{"Title":"Body Double","US Gross":8801940,"Worldwide Gross":8801940,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 26 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":84,"IMDB Rating":6.4,"IMDB Votes":9738},{"Title":"The Beast from 20,000 Fathoms","US Gross":5000000,"Worldwide Gross":5000000,"US DVD Sales":null,"Production Budget":210000,"Release Date":"Jun 13 1953","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":90,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Beastmaster 2: Through the Portal of Time","US Gross":773490,"Worldwide Gross":773490,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Aug 30 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":null,"Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":3.3,"IMDB Votes":1327},{"Title":"The Beastmaster","US Gross":10751126,"Worldwide Gross":10751126,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Aug 20 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":5.7,"IMDB Votes":5734},{"Title":"Ben-Hur","US Gross":9000000,"Worldwide Gross":9000000,"US DVD Sales":null,"Production Budget":3900000,"Release Date":"Dec 30 2025","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8.2,"IMDB Votes":58510},{"Title":"Ben-Hur","US Gross":73000000,"Worldwide Gross":73000000,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Nov 18 1959","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":null,"Director":"William Wyler","Rotten Tomatoes Rating":91,"IMDB Rating":8.2,"IMDB Votes":58510},{"Title":"Benji","US Gross":31559560,"Worldwide Gross":31559560,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Nov 15 1974","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":5.8,"IMDB Votes":1801},{"Title":"Before Sunrise","US Gross":5274005,"Worldwide Gross":5274005,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Jan 27 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Richard Linklater","Rotten Tomatoes Rating":100,"IMDB Rating":8,"IMDB Votes":39705},{"Title":"Beauty and the Beast","US Gross":171340294,"Worldwide Gross":403476931,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Nov 13 1991","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":"Fantasy","Director":"Gary Trousdale","Rotten Tomatoes Rating":93,"IMDB Rating":3.4,"IMDB Votes":354},{"Title":"The Best Years of Our Lives","US Gross":23600000,"Worldwide Gross":23600000,"US DVD Sales":null,"Production Budget":2100000,"Release Date":"Nov 21 2046","MPAA Rating":null,"Running Time min":null,"Distributor":"RKO Radio Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":"William Wyler","Rotten Tomatoes Rating":97,"IMDB Rating":8.2,"IMDB Votes":17338},{"Title":"The Ballad of Gregorio Cortez","US Gross":909000,"Worldwide Gross":909000,"US DVD Sales":null,"Production Budget":1305000,"Release Date":"Aug 19 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Embassy","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"My Big Fat Independent Movie","US Gross":4655,"Worldwide Gross":4655,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Sep 30 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Big Fat Movies","Source":null,"Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":3.2,"IMDB Votes":1119},{"Title":"Battle for the Planet of the Apes","US Gross":8800000,"Worldwide Gross":8800000,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Dec 31 1972","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":null,"Major Genre":null,"Creative Type":"Science Fiction","Director":"Jack Lee Thompson","Rotten Tomatoes Rating":38,"IMDB Rating":5,"IMDB Votes":6094},{"Title":"Big Things","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":50000,"Release Date":"Dec 31 2009","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Bogus","US Gross":4357406,"Worldwide Gross":4357406,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Sep 06 1996","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Norman Jewison","Rotten Tomatoes Rating":40,"IMDB Rating":4.8,"IMDB Votes":2742},{"Title":"Beverly Hills Cop","US Gross":234760478,"Worldwide Gross":316300000,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 05 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Martin Brest","Rotten Tomatoes Rating":83,"IMDB Rating":7.3,"IMDB Votes":45065},{"Title":"Beverly Hills Cop II","US Gross":153665036,"Worldwide Gross":276665036,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"May 20 1987","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":46,"IMDB Rating":6.1,"IMDB Votes":29712},{"Title":"Beverly Hills Cop III","US Gross":42586861,"Worldwide Gross":119180938,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"May 25 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Landis","Rotten Tomatoes Rating":10,"IMDB Rating":5,"IMDB Votes":21199},{"Title":"The Black Hole","US Gross":35841901,"Worldwide Gross":35841901,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 21 1979","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":null,"Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":5.6,"IMDB Votes":7810},{"Title":"Bathory","US Gross":0,"Worldwide Gross":3436763,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jul 10 2008","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":1446},{"Title":"Big","US Gross":114968774,"Worldwide Gross":151668774,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jun 03 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Penny Marshall","Rotten Tomatoes Rating":96,"IMDB Rating":7.2,"IMDB Votes":49256},{"Title":"The Big Parade","US Gross":11000000,"Worldwide Gross":22000000,"US DVD Sales":null,"Production Budget":245000,"Release Date":"Jan 01 2025","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Play","Major Genre":"Drama","Creative Type":null,"Director":"King Vidor","Rotten Tomatoes Rating":100,"IMDB Rating":8.4,"IMDB Votes":2600},{"Title":"Boyz n the Hood","US Gross":56190094,"Worldwide Gross":56190094,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"Jul 12 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Singleton","Rotten Tomatoes Rating":98,"IMDB Rating":7.8,"IMDB Votes":30299},{"Title":"The Book of Mormon Movie, Volume 1: The Journey","US Gross":1660865,"Worldwide Gross":1660865,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Sep 12 2003","MPAA Rating":"PG","Running Time min":null,"Distributor":"Distributor Unknown","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Return to the Blue Lagoon","US Gross":2000000,"Worldwide Gross":2000000,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Dec 31 1990","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.3,"IMDB Votes":4632},{"Title":"Bright Lights, Big City","US Gross":16118077,"Worldwide Gross":16118077,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 01 1988","MPAA Rating":"R","Running Time min":null,"Distributor":"United Artists","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":61,"IMDB Rating":6.8,"IMDB Votes":11929},{"Title":"The Blue Bird","US Gross":887000,"Worldwide Gross":887000,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Dec 31 1975","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Play","Major Genre":null,"Creative Type":"Fantasy","Director":"George Cukor","Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":359},{"Title":"The Blue Butterfly","US Gross":1610194,"Worldwide Gross":1610194,"US DVD Sales":null,"Production Budget":10400000,"Release Date":"Feb 20 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"Alliance","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":6.2,"IMDB Votes":817},{"Title":"Blade Runner","US Gross":32656328,"Worldwide Gross":33139618,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Jun 25 1982","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":92,"IMDB Rating":8.3,"IMDB Votes":185546},{"Title":"Bloodsport","US Gross":11806119,"Worldwide Gross":11806119,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Feb 26 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Cannon","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":19816},{"Title":"The Blues Brothers","US Gross":57229890,"Worldwide Gross":57229890,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Jun 20 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":"John Landis","Rotten Tomatoes Rating":84,"IMDB Rating":7.9,"IMDB Votes":62941},{"Title":"Blow Out","US Gross":13747234,"Worldwide Gross":13747234,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jul 24 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Filmways Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":89,"IMDB Rating":7.1,"IMDB Votes":10239},{"Title":"De battre mon coeur s'est arrÍtÈ","US Gross":1023424,"Worldwide Gross":8589831,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Jul 01 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"WellSpring","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":7295},{"Title":"The Broadway Melody","US Gross":2800000,"Worldwide Gross":4358000,"US DVD Sales":null,"Production Budget":379000,"Release Date":"Dec 31 1928","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":6.7,"IMDB Votes":2017},{"Title":"Boom Town","US Gross":9172000,"Worldwide Gross":9172000,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 31 1939","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":1115},{"Title":"Bound","US Gross":3802260,"Worldwide Gross":6300000,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Oct 04 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Andy Wachowski","Rotten Tomatoes Rating":88,"IMDB Rating":7.4,"IMDB Votes":23564},{"Title":"Bang","US Gross":527,"Worldwide Gross":527,"US DVD Sales":null,"Production Budget":10000,"Release Date":"Apr 01 1996","MPAA Rating":null,"Running Time min":null,"Distributor":"JeTi Films","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Jeff \"\"King Jeff\"\" Hollins","Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":369},{"Title":"Bananas","US Gross":null,"Worldwide Gross":null,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Apr 28 1971","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Woody Allen","Rotten Tomatoes Rating":89,"IMDB Rating":7.1,"IMDB Votes":12415},{"Title":"Bill & Ted's Bogus Journey","US Gross":37537675,"Worldwide Gross":37537675,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jul 19 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Peter Hewitt","Rotten Tomatoes Rating":58,"IMDB Rating":5.8,"IMDB Votes":20188},{"Title":"The Birth of a Nation","US Gross":10000000,"Worldwide Gross":11000000,"US DVD Sales":null,"Production Budget":110000,"Release Date":"Feb 08 2015","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":7.1,"IMDB Votes":8901},{"Title":"The Ballad of Cable Hogue","US Gross":3500000,"Worldwide Gross":5000000,"US DVD Sales":null,"Production Budget":3716946,"Release Date":"May 13 1970","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Sam Peckinpah","Rotten Tomatoes Rating":92,"IMDB Rating":7.3,"IMDB Votes":3125},{"Title":"The Blood of Heroes","US Gross":882290,"Worldwide Gross":882290,"US DVD Sales":null,"Production Budget":7700000,"Release Date":"Feb 23 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":2523},{"Title":"The Blood of My Brother: A Story of Death in Iraq","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":120000,"Release Date":"Jun 30 2006","MPAA Rating":null,"Running Time min":null,"Distributor":"Lifesize Entertainment","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":7.6,"IMDB Votes":90},{"Title":"Boomerang","US Gross":70052444,"Worldwide Gross":131052444,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Jul 01 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":37,"IMDB Rating":5.9,"IMDB Votes":202},{"Title":"The Bridge on the River Kwai","US Gross":33300000,"Worldwide Gross":33300000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Dec 18 1957","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":"David Lean","Rotten Tomatoes Rating":95,"IMDB Rating":8.4,"IMDB Votes":58641},{"Title":"Born on the Fourth of July","US Gross":70001698,"Worldwide Gross":70001698,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Dec 20 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Oliver Stone","Rotten Tomatoes Rating":89,"IMDB Rating":7.2,"IMDB Votes":32108},{"Title":"Basquiat","US Gross":2962051,"Worldwide Gross":2962051,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 09 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Julian Schnabel","Rotten Tomatoes Rating":69,"IMDB Rating":6.7,"IMDB Votes":7935},{"Title":"Black Rain","US Gross":45892212,"Worldwide Gross":45892212,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 22 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":57,"IMDB Rating":4.1,"IMDB Votes":137},{"Title":"Bottle Rocket","US Gross":407488,"Worldwide Gross":407488,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Feb 21 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Short Film","Major Genre":"Adventure","Creative Type":null,"Director":"Wes Anderson","Rotten Tomatoes Rating":79,"IMDB Rating":7.2,"IMDB Votes":21980},{"Title":"Braindead","US Gross":242623,"Worldwide Gross":242623,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Feb 12 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Trimark","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":null,"Director":"Peter Jackson","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":32827},{"Title":"The Bridges of Madison County","US Gross":71516617,"Worldwide Gross":175516617,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Jun 02 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":90,"IMDB Rating":7.2,"IMDB Votes":21923},{"Title":"The Brothers McMullen","US Gross":10426506,"Worldwide Gross":10426506,"US DVD Sales":null,"Production Budget":25000,"Release Date":"Aug 09 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Edward Burns","Rotten Tomatoes Rating":91,"IMDB Rating":6.4,"IMDB Votes":4365},{"Title":"Dracula","US Gross":82522790,"Worldwide Gross":215862692,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Nov 13 1992","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":136},{"Title":"Broken Arrow","US Gross":70645997,"Worldwide Gross":148345997,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Feb 09 1996","MPAA Rating":"R","Running Time min":108,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Woo","Rotten Tomatoes Rating":55,"IMDB Rating":5.8,"IMDB Votes":33584},{"Title":"Brainstorm","US Gross":8921050,"Worldwide Gross":8921050,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Sep 30 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":6.3,"IMDB Votes":4410},{"Title":"Braveheart","US Gross":75545647,"Worldwide Gross":209000000,"US DVD Sales":null,"Production Budget":72000000,"Release Date":"May 24 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Mel Gibson","Rotten Tomatoes Rating":77,"IMDB Rating":8.4,"IMDB Votes":240642},{"Title":"Les BronzÈs 3: amis pour la vie","US Gross":0,"Worldwide Gross":83833602,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Feb 01 2006","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.4,"IMDB Votes":1254},{"Title":"Brazil","US Gross":9929135,"Worldwide Gross":9929135,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 18 1985","MPAA Rating":"R","Running Time min":136,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Fantasy","Director":"Terry Gilliam","Rotten Tomatoes Rating":98,"IMDB Rating":8,"IMDB Votes":76635},{"Title":"Blazing Saddles","US Gross":119500000,"Worldwide Gross":119500000,"US DVD Sales":null,"Production Budget":2600000,"Release Date":"Jan 01 1974","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Mel Brooks","Rotten Tomatoes Rating":89,"IMDB Rating":7.8,"IMDB Votes":45771},{"Title":"The Basket","US Gross":609042,"Worldwide Gross":609042,"US DVD Sales":null,"Production Budget":1300000,"Release Date":"May 05 2000","MPAA Rating":"PG","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":343},{"Title":"Bathing Beauty","US Gross":3500000,"Worldwide Gross":3500000,"US DVD Sales":null,"Production Budget":2361000,"Release Date":"Dec 31 1943","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":487},{"Title":"Bill & Ted's Excellent Adventure","US Gross":39916091,"Worldwide Gross":39916091,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 17 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Stephen Herek","Rotten Tomatoes Rating":81,"IMDB Rating":6.7,"IMDB Votes":30341},{"Title":"A Bridge Too Far","US Gross":50800000,"Worldwide Gross":50800000,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Jun 15 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":"Sir Richard Attenborough","Rotten Tomatoes Rating":67,"IMDB Rating":7.3,"IMDB Votes":16882},{"Title":"Beetle Juice","US Gross":73326666,"Worldwide Gross":73326666,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Mar 30 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Tim Burton","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":61197},{"Title":"Batman Returns","US Gross":162831698,"Worldwide Gross":266822354,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 18 1992","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Super Hero","Director":"Tim Burton","Rotten Tomatoes Rating":78,"IMDB Rating":6.9,"IMDB Votes":78673},{"Title":"Batman Forever","US Gross":184031112,"Worldwide Gross":336529144,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Jun 16 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Super Hero","Director":"Joel Schumacher","Rotten Tomatoes Rating":43,"IMDB Rating":5.4,"IMDB Votes":76218},{"Title":"Batman - The Movie","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":1377800,"Release Date":"Aug 21 2001","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Batman","US Gross":251188924,"Worldwide Gross":411348924,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Jun 23 1989","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Tim Burton","Rotten Tomatoes Rating":71,"IMDB Rating":7.6,"IMDB Votes":111464},{"Title":"Buffy the Vampire Slayer","US Gross":14231669,"Worldwide Gross":14231669,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jul 31 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":5.3,"IMDB Votes":16056},{"Title":"Bienvenue chez les Ch'tis","US Gross":1470856,"Worldwide Gross":243470856,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Jul 25 2008","MPAA Rating":"Not Rated","Running Time min":109,"Distributor":"Link Productions Ltd.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":7129},{"Title":"Beyond the Valley of the Dolls","US Gross":9000000,"Worldwide Gross":9000000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Jan 01 1970","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":68,"IMDB Rating":5.7,"IMDB Votes":4626},{"Title":"Broken Vessels","US Gross":15030,"Worldwide Gross":85343,"US DVD Sales":null,"Production Budget":600000,"Release Date":"Jul 02 1999","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":399},{"Title":"The Boys from Brazil","US Gross":19000000,"Worldwide Gross":19000000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 31 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":null,"Director":"Franklin J. Schaffner","Rotten Tomatoes Rating":65,"IMDB Rating":7,"IMDB Votes":8741},{"Title":"The Business of Fancy Dancing","US Gross":174682,"Worldwide Gross":174682,"US DVD Sales":null,"Production Budget":200000,"Release Date":"May 10 2002","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Outrider Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":355},{"Title":"Caddyshack","US Gross":39846344,"Worldwide Gross":39846344,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Jul 25 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Harold Ramis","Rotten Tomatoes Rating":75,"IMDB Rating":7.3,"IMDB Votes":35436},{"Title":"Cape Fear","US Gross":79091969,"Worldwide Gross":182291969,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 15 1991","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":76,"IMDB Rating":7.3,"IMDB Votes":47196},{"Title":"Clear and Present Danger","US Gross":122012656,"Worldwide Gross":207500000,"US DVD Sales":null,"Production Budget":62000000,"Release Date":"Aug 03 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Phillip Noyce","Rotten Tomatoes Rating":78,"IMDB Rating":6.8,"IMDB Votes":29612},{"Title":"Carrie","US Gross":25878153,"Worldwide Gross":25878153,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Nov 16 1976","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":90,"IMDB Rating":7.4,"IMDB Votes":38767},{"Title":"Casino Royale","US Gross":22744718,"Worldwide Gross":41744718,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Apr 28 1967","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"John Huston","Rotten Tomatoes Rating":30,"IMDB Rating":8,"IMDB Votes":172936},{"Title":"Camping Sauvage","US Gross":3479302,"Worldwide Gross":3479302,"US DVD Sales":null,"Production Budget":4600000,"Release Date":"Jul 16 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Alliance","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":378},{"Title":"The Cotton Club","US Gross":25928721,"Worldwide Gross":25928721,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Dec 14 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":74,"IMDB Rating":6.3,"IMDB Votes":6940},{"Title":"Crop Circles: Quest for Truth","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":600000,"Release Date":"Aug 23 2002","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":7.1,"IMDB Votes":153},{"Title":"Close Encounters of the Third Kind","US Gross":166000000,"Worldwide Gross":337700000,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Nov 16 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":95,"IMDB Rating":7.8,"IMDB Votes":59049},{"Title":"The Cable Guy","US Gross":60240295,"Worldwide Gross":102825796,"US DVD Sales":null,"Production Budget":47000000,"Release Date":"Jun 14 1996","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ben Stiller","Rotten Tomatoes Rating":52,"IMDB Rating":5.8,"IMDB Votes":51109},{"Title":"Chocolate: Deep Dark Secrets","US Gross":49000,"Worldwide Gross":1549000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 16 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Eros Entertainment","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":527},{"Title":"Child's Play","US Gross":33244684,"Worldwide Gross":44196684,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Nov 09 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":70,"IMDB Rating":6.3,"IMDB Votes":16165},{"Title":"Child's Play 2","US Gross":26904572,"Worldwide Gross":34166572,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Nov 09 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":5.1,"IMDB Votes":8666},{"Title":"Chain Reaction","US Gross":21226204,"Worldwide Gross":60209334,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Aug 02 1996","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Andrew Davis","Rotten Tomatoes Rating":13,"IMDB Rating":5.2,"IMDB Votes":15817},{"Title":"Charly","US Gross":814666,"Worldwide Gross":814666,"US DVD Sales":null,"Production Budget":950000,"Release Date":"Sep 27 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Excel Entertainment","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":60},{"Title":"Chariots of Fire","US Gross":57159946,"Worldwide Gross":57159946,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Sep 25 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Hugh Hudson","Rotten Tomatoes Rating":86,"IMDB Rating":7.3,"IMDB Votes":16138},{"Title":"A Christmas Story","US Gross":19294144,"Worldwide Gross":19294144,"US DVD Sales":null,"Production Budget":3250000,"Release Date":"Nov 18 1983","MPAA Rating":"PG","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":88,"IMDB Rating":8,"IMDB Votes":51757},{"Title":"Cat on a Hot Tin Roof","US Gross":17570324,"Worldwide Gross":17570324,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Sep 20 1958","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Richard Brooks","Rotten Tomatoes Rating":100,"IMDB Rating":8,"IMDB Votes":14540},{"Title":"C.H.U.D.","US Gross":4700000,"Worldwide Gross":4700000,"US DVD Sales":null,"Production Budget":1250000,"Release Date":"Aug 31 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"New World","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":2806},{"Title":"Charge of the Light Brigade, The","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Oct 20 2036","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Action","Creative Type":"Dramatization","Director":"Michael Curtiz","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Crooklyn","US Gross":13024170,"Worldwide Gross":13024170,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"May 13 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":75,"IMDB Rating":6.5,"IMDB Votes":3137},{"Title":"Festen","US Gross":1647780,"Worldwide Gross":1647780,"US DVD Sales":null,"Production Budget":1300000,"Release Date":"Oct 09 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"October Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Thomas Vinterberg","Rotten Tomatoes Rating":null,"IMDB Rating":8.1,"IMDB Votes":26607},{"Title":"Cleopatra","US Gross":48000000,"Worldwide Gross":62000000,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Jun 12 1963","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":6.8,"IMDB Votes":7870},{"Title":"Cliffhanger","US Gross":84049211,"Worldwide Gross":255000000,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"May 28 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":82,"IMDB Rating":6.2,"IMDB Votes":34447},{"Title":"The Californians","US Gross":4134,"Worldwide Gross":4134,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Oct 21 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Fabrication Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":226},{"Title":"The Client","US Gross":92115211,"Worldwide Gross":117615211,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jul 20 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":80,"IMDB Rating":6.5,"IMDB Votes":19299},{"Title":"The Calling","US Gross":32092,"Worldwide Gross":32092,"US DVD Sales":null,"Production Budget":160000,"Release Date":"Mar 01 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Testimony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Michael C. Brown","Rotten Tomatoes Rating":null,"IMDB Rating":3.4,"IMDB Votes":1113},{"Title":"Clueless","US Gross":56598476,"Worldwide Gross":56598476,"US DVD Sales":null,"Production Budget":13700000,"Release Date":"Jul 01 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Amy Heckerling","Rotten Tomatoes Rating":83,"IMDB Rating":6.7,"IMDB Votes":39055},{"Title":"The Color Purple","US Gross":93589701,"Worldwide Gross":93589701,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 18 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":88,"IMDB Rating":7.7,"IMDB Votes":26962},{"Title":"Clerks","US Gross":3073428,"Worldwide Gross":3073428,"US DVD Sales":null,"Production Budget":27000,"Release Date":"Oct 19 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":88,"IMDB Rating":7.9,"IMDB Votes":89991},{"Title":"Central do Brasil","US Gross":5969553,"Worldwide Gross":17006158,"US DVD Sales":null,"Production Budget":2900000,"Release Date":"Nov 20 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Walter Salles","Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":17343},{"Title":"Clash of the Titans","US Gross":30000000,"Worldwide Gross":30000000,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jun 12 1981","MPAA Rating":null,"Running Time min":108,"Distributor":"MGM","Source":"Traditional/Legend/Fairytale","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":65,"IMDB Rating":5.9,"IMDB Votes":45773},{"Title":"Clockwatchers","US Gross":444354,"Worldwide Gross":444354,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"May 15 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Artistic License","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":3171},{"Title":"Commando","US Gross":35073978,"Worldwide Gross":35073978,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 04 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":4.5,"IMDB Votes":49},{"Title":"The Color of Money","US Gross":52293000,"Worldwide Gross":52293000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 17 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":null,"Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":91,"IMDB Rating":6.9,"IMDB Votes":25824},{"Title":"Cinderella","US Gross":85000000,"Worldwide Gross":85000000,"US DVD Sales":null,"Production Budget":2900000,"Release Date":"Feb 15 1950","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Traditional/Legend/Fairytale","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":92,"IMDB Rating":5.1,"IMDB Votes":373},{"Title":"Congo","US Gross":81022333,"Worldwide Gross":152022333,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 09 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Frank Marshall","Rotten Tomatoes Rating":21,"IMDB Rating":4.6,"IMDB Votes":17954},{"Title":"Conan the Barbarian","US Gross":38264085,"Worldwide Gross":38264085,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"May 14 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Fantasy","Director":"John Milius","Rotten Tomatoes Rating":76,"IMDB Rating":6.8,"IMDB Votes":38886},{"Title":"Conan the Destroyer","US Gross":26400000,"Worldwide Gross":26400000,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jun 29 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Fantasy","Director":"Richard Fleischer","Rotten Tomatoes Rating":29,"IMDB Rating":5.4,"IMDB Votes":20368},{"Title":"Class of 1984","US Gross":6965361,"Worldwide Gross":6965361,"US DVD Sales":null,"Production Budget":3250000,"Release Date":"Aug 20 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"United Film Distribution Co.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":2945},{"Title":"The Clan of the Cave Bear","US Gross":1953732,"Worldwide Gross":1953732,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jan 17 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":4.9,"IMDB Votes":2763},{"Title":"The Case of the Grinning Cat","US Gross":7033,"Worldwide Gross":7033,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Jul 21 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"First Run/Icarus","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Bacheha-Ye aseman","US Gross":925402,"Worldwide Gross":925402,"US DVD Sales":null,"Production Budget":180000,"Release Date":"Jan 22 1999","MPAA Rating":"PG","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":6657},{"Title":"Coming Home","US Gross":32653000,"Worldwide Gross":32653000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Dec 31 1977","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Hal Ashby","Rotten Tomatoes Rating":81,"IMDB Rating":7.3,"IMDB Votes":4410},{"Title":"Nanjing! Nanjing!","US Gross":0,"Worldwide Gross":20000000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Nov 17 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"National Geographic Entertainment","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":1725},{"Title":"Cool Runnings","US Gross":68856263,"Worldwide Gross":155056263,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Oct 01 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jon Turteltaub","Rotten Tomatoes Rating":73,"IMDB Rating":6.5,"IMDB Votes":24533},{"Title":"Conquest of the Planet of the Apes","US Gross":9700000,"Worldwide Gross":9700000,"US DVD Sales":null,"Production Budget":1700000,"Release Date":"Dec 31 1971","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Jack Lee Thompson","Rotten Tomatoes Rating":44,"IMDB Rating":5.8,"IMDB Votes":6188},{"Title":"Cure","US Gross":94596,"Worldwide Gross":94596,"US DVD Sales":null,"Production Budget":10000,"Release Date":"Jul 06 2001","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":2724},{"Title":"Crocodile Dundee","US Gross":174803506,"Worldwide Gross":328000000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Sep 26 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":88,"IMDB Rating":6.5,"IMDB Votes":27277},{"Title":"Dayereh","US Gross":673780,"Worldwide Gross":673780,"US DVD Sales":null,"Production Budget":10000,"Release Date":"Mar 09 2001","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"WinStar Cinema","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":1851},{"Title":"Karakter","US Gross":713413,"Worldwide Gross":713413,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Mar 27 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":5531},{"Title":"Creepshow","US Gross":20036244,"Worldwide Gross":20036244,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Nov 10 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":"George A. Romero","Rotten Tomatoes Rating":67,"IMDB Rating":6.5,"IMDB Votes":12530},{"Title":"Creepshow 2","US Gross":14000000,"Worldwide Gross":14000000,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"May 01 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"New World","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5.4,"IMDB Votes":5910},{"Title":"The Crying Game","US Gross":62546695,"Worldwide Gross":62546695,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Nov 25 1992","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Neil Jordan","Rotten Tomatoes Rating":100,"IMDB Rating":7.3,"IMDB Votes":21195},{"Title":"Crimson Tide","US Gross":91387195,"Worldwide Gross":159387195,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"May 12 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":86,"IMDB Rating":7.2,"IMDB Votes":33354},{"Title":"Caravans","US Gross":1000000,"Worldwide Gross":1000000,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Dec 31 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":173},{"Title":"Crying With Laughter","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":820000,"Release Date":"Dec 31 2009","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Fengkuang de Shitou","US Gross":0,"Worldwide Gross":3000000,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jun 30 2006","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":1209},{"Title":"Casablanca","US Gross":10462500,"Worldwide Gross":10462500,"US DVD Sales":null,"Production Budget":950000,"Release Date":"Dec 31 1941","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Michael Curtiz","Rotten Tomatoes Rating":97,"IMDB Rating":8.8,"IMDB Votes":167939},{"Title":"Casino","US Gross":42438300,"Worldwide Gross":110400000,"US DVD Sales":null,"Production Budget":52000000,"Release Date":"Nov 22 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":81,"IMDB Rating":8.1,"IMDB Votes":108634},{"Title":"Casper","US Gross":100328194,"Worldwide Gross":282300000,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"May 26 1995","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Brad Silberling","Rotten Tomatoes Rating":41,"IMDB Rating":5.7,"IMDB Votes":26121},{"Title":"Can't Stop the Music","US Gross":2000000,"Worldwide Gross":2000000,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 31 1979","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.5,"IMDB Votes":2146},{"Title":"Catch-22","US Gross":24911670,"Worldwide Gross":24911670,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jun 24 1970","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Mike Nichols","Rotten Tomatoes Rating":87,"IMDB Rating":7.1,"IMDB Votes":9671},{"Title":"City Hall","US Gross":20278055,"Worldwide Gross":20278055,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Feb 16 1996","MPAA Rating":"R","Running Time min":111,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Harold Becker","Rotten Tomatoes Rating":55,"IMDB Rating":6.1,"IMDB Votes":9908},{"Title":"Cutthroat Island","US Gross":10017322,"Worldwide Gross":10017322,"US DVD Sales":null,"Production Budget":92000000,"Release Date":"Dec 22 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":45,"IMDB Rating":5.3,"IMDB Votes":10346},{"Title":"La femme de chambre du Titanic","US Gross":244465,"Worldwide Gross":244465,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 14 1998","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":822},{"Title":"Cat People","US Gross":4000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":134000,"Release Date":"Nov 16 2042","MPAA Rating":null,"Running Time min":null,"Distributor":"RKO Radio Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":91,"IMDB Rating":5.9,"IMDB Votes":6791},{"Title":"Courage Under Fire","US Gross":59003384,"Worldwide Gross":100833145,"US DVD Sales":null,"Production Budget":46000000,"Release Date":"Jul 12 1996","MPAA Rating":"R","Running Time min":115,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Edward Zwick","Rotten Tomatoes Rating":85,"IMDB Rating":6.6,"IMDB Votes":19682},{"Title":"C'era una volta il West","US Gross":5321508,"Worldwide Gross":5321508,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"May 28 1969","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Sergio Leone","Rotten Tomatoes Rating":null,"IMDB Rating":8.8,"IMDB Votes":74184},{"Title":"The Conversation","US Gross":4420000,"Worldwide Gross":4420000,"US DVD Sales":null,"Production Budget":1600000,"Release Date":"Apr 07 1974","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":98,"IMDB Rating":8.1,"IMDB Votes":33005},{"Title":"Cavite","US Gross":70071,"Worldwide Gross":71644,"US DVD Sales":null,"Production Budget":7000,"Release Date":"May 26 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Truly Indie","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":487},{"Title":"Copycat","US Gross":32051917,"Worldwide Gross":32051917,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 27 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Jon Amiel","Rotten Tomatoes Rating":75,"IMDB Rating":6.5,"IMDB Votes":17182},{"Title":"Dark Angel","US Gross":4372561,"Worldwide Gross":4372561,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Sep 28 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Triumph Releasing","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.3,"IMDB Votes":3396},{"Title":"Boot, Das","US Gross":11487676,"Worldwide Gross":84970337,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Feb 10 1982","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Wolfgang Petersen","Rotten Tomatoes Rating":null,"IMDB Rating":4.3,"IMDB Votes":2184},{"Title":"Desperado","US Gross":25532388,"Worldwide Gross":25532388,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Aug 25 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Robert Rodriguez","Rotten Tomatoes Rating":61,"IMDB Rating":7,"IMDB Votes":51515},{"Title":"Dumb & Dumber","US Gross":127175374,"Worldwide Gross":246400000,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Dec 16 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Bobby Farrelly","Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":88093},{"Title":"Diamonds Are Forever","US Gross":43800000,"Worldwide Gross":116000000,"US DVD Sales":null,"Production Budget":7200000,"Release Date":"Dec 17 1971","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":"Guy Hamilton","Rotten Tomatoes Rating":67,"IMDB Rating":6.7,"IMDB Votes":25354},{"Title":"The Dark Half","US Gross":9579068,"Worldwide Gross":9579068,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 23 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":"George A. Romero","Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":5488},{"Title":"The Dark Hours","US Gross":423,"Worldwide Gross":423,"US DVD Sales":null,"Production Budget":400000,"Release Date":"Oct 13 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Freestyle Releasing","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":2804},{"Title":"Dante's Peak","US Gross":67163857,"Worldwide Gross":178200000,"US DVD Sales":null,"Production Budget":115000000,"Release Date":"Feb 07 1997","MPAA Rating":"PG-13","Running Time min":108,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Roger Donaldson","Rotten Tomatoes Rating":28,"IMDB Rating":5.6,"IMDB Votes":23472},{"Title":"Daylight","US Gross":32908290,"Worldwide Gross":158908290,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Dec 06 1996","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Rob Cohen","Rotten Tomatoes Rating":22,"IMDB Rating":5.4,"IMDB Votes":20052},{"Title":"Dick Tracy","US Gross":103738726,"Worldwide Gross":162738726,"US DVD Sales":null,"Production Budget":47000000,"Release Date":"Jun 15 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Warren Beatty","Rotten Tomatoes Rating":65,"IMDB Rating":5.9,"IMDB Votes":25364},{"Title":"Decoys","US Gross":84733,"Worldwide Gross":84733,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Feb 27 2004","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.4,"IMDB Votes":2486},{"Title":"Dawn of the Dead","US Gross":5100000,"Worldwide Gross":55000000,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Apr 20 1979","MPAA Rating":null,"Running Time min":null,"Distributor":"United Film Distribution Co.","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":73875},{"Title":"The Addams Family","US Gross":113502246,"Worldwide Gross":191502246,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Nov 22 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Barry Sonnenfeld","Rotten Tomatoes Rating":59,"IMDB Rating":6.6,"IMDB Votes":28907},{"Title":"Death Becomes Her","US Gross":58422650,"Worldwide Gross":149022650,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jul 31 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Robert Zemeckis","Rotten Tomatoes Rating":53,"IMDB Rating":6,"IMDB Votes":27681},{"Title":"Def-Con 4","US Gross":210904,"Worldwide Gross":210904,"US DVD Sales":null,"Production Budget":1300000,"Release Date":"Mar 15 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"New World","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.8,"IMDB Votes":639},{"Title":"Dead Poets' Society","US Gross":95860116,"Worldwide Gross":239500000,"US DVD Sales":null,"Production Budget":16400000,"Release Date":"Jun 02 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Peter Weir","Rotten Tomatoes Rating":86,"IMDB Rating":7.8,"IMDB Votes":89662},{"Title":"The Day the Earth Stood Still","US Gross":3700000,"Worldwide Gross":3700000,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Mar 04 2003","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":5.5,"IMDB Votes":51517},{"Title":"Deep Throat","US Gross":45000000,"Worldwide Gross":45000000,"US DVD Sales":null,"Production Budget":25000,"Release Date":"Jun 30 1972","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":3075},{"Title":"The Dead Zone","US Gross":20766000,"Worldwide Gross":20766000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 21 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":"David Cronenberg","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":19485},{"Title":"Die Hard 2","US Gross":117323878,"Worldwide Gross":239814025,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Jul 03 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":79636},{"Title":"Die Hard: With a Vengeance","US Gross":100012499,"Worldwide Gross":364480746,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"May 19 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John McTiernan","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":87437},{"Title":"Dragonheart","US Gross":51364680,"Worldwide Gross":104364680,"US DVD Sales":null,"Production Budget":57000000,"Release Date":"May 31 1996","MPAA Rating":"PG-13","Running Time min":108,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Rob Cohen","Rotten Tomatoes Rating":50,"IMDB Rating":6.2,"IMDB Votes":26309},{"Title":"Die Hard","US Gross":81350242,"Worldwide Gross":139109346,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Jul 15 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John McTiernan","Rotten Tomatoes Rating":94,"IMDB Rating":7.3,"IMDB Votes":237},{"Title":"Diner","US Gross":12592907,"Worldwide Gross":12592907,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Apr 02 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":96,"IMDB Rating":7.1,"IMDB Votes":7803},{"Title":"Dil Jo Bhi Kahey...","US Gross":129319,"Worldwide Gross":129319,"US DVD Sales":null,"Production Budget":1600000,"Release Date":"Sep 23 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Eros Entertainment","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":159},{"Title":"Don Juan DeMarco","US Gross":22032635,"Worldwide Gross":22032635,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 07 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":73,"IMDB Rating":6.6,"IMDB Votes":20386},{"Title":"Tales from the Crypt: Demon Knight","US Gross":21089146,"Worldwide Gross":21089146,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jan 13 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":6430},{"Title":"Damnation Alley","US Gross":null,"Worldwide Gross":null,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Oct 21 1977","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":1655},{"Title":"Dead Man Walking","US Gross":39387284,"Worldwide Gross":83088295,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Dec 29 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Tim Robbins","Rotten Tomatoes Rating":94,"IMDB Rating":7.6,"IMDB Votes":32159},{"Title":"Dances with Wolves","US Gross":184208842,"Worldwide Gross":424200000,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Nov 09 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Kevin Costner","Rotten Tomatoes Rating":76,"IMDB Rating":8,"IMDB Votes":71399},{"Title":"Dangerous Liaisons","US Gross":34700000,"Worldwide Gross":34700000,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Dec 21 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Stephen Frears","Rotten Tomatoes Rating":93,"IMDB Rating":7.7,"IMDB Votes":25761},{"Title":"Donovan's Reef","US Gross":6600000,"Worldwide Gross":6600000,"US DVD Sales":null,"Production Budget":2686000,"Release Date":"Dec 31 1962","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Ford","Rotten Tomatoes Rating":60,"IMDB Rating":6.6,"IMDB Votes":2907},{"Title":"Due occhi diabolici","US Gross":349618,"Worldwide Gross":349618,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Oct 25 1991","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":2059},{"Title":"Double Impact","US Gross":29090445,"Worldwide Gross":29090445,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Aug 09 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Sheldon Lettich","Rotten Tomatoes Rating":8,"IMDB Rating":4.7,"IMDB Votes":10426},{"Title":"The Doors","US Gross":34167219,"Worldwide Gross":34167219,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Mar 01 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Oliver Stone","Rotten Tomatoes Rating":57,"IMDB Rating":7,"IMDB Votes":29750},{"Title":"Day of the Dead","US Gross":5804262,"Worldwide Gross":34004262,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Jul 03 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"United Film Distribution Co.","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":"George A. Romero","Rotten Tomatoes Rating":78,"IMDB Rating":4.5,"IMDB Votes":8395},{"Title":"Days of Thunder","US Gross":82670733,"Worldwide Gross":157670733,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jun 27 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":40,"IMDB Rating":5.4,"IMDB Votes":25395},{"Title":"Dracula: Pages from a Virgin's Diary","US Gross":39659,"Worldwide Gross":84788,"US DVD Sales":null,"Production Budget":1100000,"Release Date":"May 14 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":1013},{"Title":"Dolphin","US Gross":14000,"Worldwide Gross":14000,"US DVD Sales":null,"Production Budget":170000,"Release Date":"Jun 01 1979","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":134},{"Title":"Death Race 2000","US Gross":null,"Worldwide Gross":null,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Apr 01 1975","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":null,"Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":84,"IMDB Rating":6.1,"IMDB Votes":10015},{"Title":"Drei","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":7200000,"Release Date":"Dec 31 1969","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Tom Tykwer","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Dress","US Gross":16556,"Worldwide Gross":16556,"US DVD Sales":null,"Production Budget":2650000,"Release Date":"Jan 16 1998","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Attitude Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":1844},{"Title":"The Deer Hunter","US Gross":50000000,"Worldwide Gross":50000000,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 31 1978","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":"Michael Cimino","Rotten Tomatoes Rating":null,"IMDB Rating":8.2,"IMDB Votes":88095},{"Title":"Dragonslayer","US Gross":6000000,"Worldwide Gross":6000000,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jun 26 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":82,"IMDB Rating":6.8,"IMDB Votes":4945},{"Title":"Driving Miss Daisy","US Gross":106593296,"Worldwide Gross":106593296,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Dec 13 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Bruce Beresford","Rotten Tomatoes Rating":78,"IMDB Rating":7.5,"IMDB Votes":22566},{"Title":"Dressed to Kill","US Gross":31899000,"Worldwide Gross":31899000,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"Jan 01 1980","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Brian De Palma","Rotten Tomatoes Rating":84,"IMDB Rating":7.1,"IMDB Votes":9556},{"Title":"Do the Right Thing","US Gross":26004026,"Worldwide Gross":26004026,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Jun 30 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":98,"IMDB Rating":7.9,"IMDB Votes":26877},{"Title":"Dune","US Gross":27447471,"Worldwide Gross":27447471,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Dec 14 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"David Lynch","Rotten Tomatoes Rating":62,"IMDB Rating":6.5,"IMDB Votes":38489},{"Title":"Dolphins and Whales Tribes of the Ocean 3D","US Gross":7714996,"Worldwide Gross":17252287,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Feb 15 2008","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"3D Entertainment","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Down & Out with the Dolls","US Gross":58936,"Worldwide Gross":58936,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Mar 21 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Indican Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":75},{"Title":"Dream With The Fishes","US Gross":542909,"Worldwide Gross":542909,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Jun 20 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":58,"IMDB Rating":6.6,"IMDB Votes":1188},{"Title":"Doctor Zhivago","US Gross":111721000,"Worldwide Gross":111721000,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Dec 22 1965","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"David Lean","Rotten Tomatoes Rating":84,"IMDB Rating":8,"IMDB Votes":27671},{"Title":"The Evil Dead","US Gross":2400000,"Worldwide Gross":29400000,"US DVD Sales":null,"Production Budget":375000,"Release Date":"Apr 15 1983","MPAA Rating":"NC-17","Running Time min":null,"Distributor":"New Line","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":"Sam Raimi","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":45030},{"Title":"Evil Dead II","US Gross":5923044,"Worldwide Gross":5923044,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Mar 13 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Rosebud Releasing","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":"Sam Raimi","Rotten Tomatoes Rating":null,"IMDB Rating":7.9,"IMDB Votes":44214},{"Title":"Army of Darkness","US Gross":11502976,"Worldwide Gross":21502976,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Feb 19 1993","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":"Sam Raimi","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":55671},{"Title":"Ed and his Dead Mother","US Gross":673,"Worldwide Gross":673,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Dec 31 1992","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":5.6,"IMDB Votes":829},{"Title":"Edward Scissorhands","US Gross":53976987,"Worldwide Gross":53976987,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 07 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Tim Burton","Rotten Tomatoes Rating":91,"IMDB Rating":8,"IMDB Votes":102485},{"Title":"Ed Wood","US Gross":5828466,"Worldwide Gross":5828466,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Sep 30 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Dramatization","Director":"Tim Burton","Rotten Tomatoes Rating":91,"IMDB Rating":8.1,"IMDB Votes":74171},{"Title":"The Egyptian","US Gross":15000000,"Worldwide Gross":15000000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Dec 31 1953","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Michael Curtiz","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":1097},{"Title":"Everyone Says I Love You","US Gross":9725847,"Worldwide Gross":34600000,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 06 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":80,"IMDB Rating":6.8,"IMDB Votes":16481},{"Title":"The Elephant Man","US Gross":26010864,"Worldwide Gross":26010864,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Oct 03 1980","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"David Lynch","Rotten Tomatoes Rating":91,"IMDB Rating":8.4,"IMDB Votes":58194},{"Title":"Emma","US Gross":22231658,"Worldwide Gross":37831658,"US DVD Sales":null,"Production Budget":5900000,"Release Date":"Aug 02 1996","MPAA Rating":"PG","Running Time min":111,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":13798},{"Title":"Star Wars Ep. V: The Empire Strikes Back","US Gross":290271960,"Worldwide Gross":534171960,"US DVD Sales":10027926,"Production Budget":23000000,"Release Date":"May 21 1980","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Escape from New York","US Gross":25244700,"Worldwide Gross":25244700,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Jul 10 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Avco Embassy","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"John Carpenter","Rotten Tomatoes Rating":82,"IMDB Rating":7.1,"IMDB Votes":34497},{"Title":"Escape from L.A.","US Gross":25426861,"Worldwide Gross":25426861,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Aug 09 1996","MPAA Rating":"R","Running Time min":101,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"John Carpenter","Rotten Tomatoes Rating":56,"IMDB Rating":5.3,"IMDB Votes":23262},{"Title":"Escape from the Planet of the Apes","US Gross":12300000,"Worldwide Gross":12300000,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Dec 31 1970","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":78,"IMDB Rating":6.1,"IMDB Votes":7686},{"Title":"Eraser","US Gross":101295562,"Worldwide Gross":234400000,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Jun 21 1996","MPAA Rating":"R","Running Time min":115,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Chuck Russell","Rotten Tomatoes Rating":34,"IMDB Rating":5.9,"IMDB Votes":37287},{"Title":"Eraserhead","US Gross":7000000,"Worldwide Gross":7000000,"US DVD Sales":null,"Production Budget":100000,"Release Date":"Dec 31 1976","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"David Lynch","Rotten Tomatoes Rating":90,"IMDB Rating":7.4,"IMDB Votes":26595},{"Title":"Everything You Always Wanted to Know","US Gross":18016290,"Worldwide Gross":18016290,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Aug 11 1972","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":null,"Director":"Woody Allen","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"ET: The Extra-Terrestrial","US Gross":435110554,"Worldwide Gross":792910554,"US DVD Sales":null,"Production Budget":10500000,"Release Date":"Jun 11 1982","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":null,"IMDB Rating":7.9,"IMDB Votes":105028},{"Title":"Excessive Force","US Gross":1152117,"Worldwide Gross":1152117,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"May 14 1993","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":537},{"Title":"Exorcist II: The Heretic","US Gross":25011000,"Worldwide Gross":25011000,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Jun 17 1977","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Horror","Creative Type":null,"Director":"John Boorman","Rotten Tomatoes Rating":null,"IMDB Rating":3.5,"IMDB Votes":7849},{"Title":"Exotica","US Gross":5046118,"Worldwide Gross":5046118,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Sep 23 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Atom Egoyan","Rotten Tomatoes Rating":96,"IMDB Rating":7.1,"IMDB Votes":8402},{"Title":"Force 10 from Navarone","US Gross":7100000,"Worldwide Gross":7100000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Dec 22 1978","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":null,"Major Genre":"Action","Creative Type":null,"Director":"Guy Hamilton","Rotten Tomatoes Rating":64,"IMDB Rating":6,"IMDB Votes":5917},{"Title":"A Farewell To Arms","US Gross":11000000,"Worldwide Gross":11000000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Dec 31 1956","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Huston","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":1655},{"Title":"Fatal Attraction","US Gross":156645693,"Worldwide Gross":320100000,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Sep 18 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Adrian Lyne","Rotten Tomatoes Rating":81,"IMDB Rating":6.8,"IMDB Votes":22328},{"Title":"Family Plot","US Gross":13200000,"Worldwide Gross":13200000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Apr 09 1976","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":95,"IMDB Rating":6.8,"IMDB Votes":7290},{"Title":"Fabled","US Gross":31425,"Worldwide Gross":31425,"US DVD Sales":null,"Production Budget":400000,"Release Date":"Dec 10 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Indican Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":null,"Director":"Ari S. Kirschenbaum","Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":146},{"Title":"Fetching Cody","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Mar 17 2006","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":535},{"Title":"The French Connection","US Gross":41158757,"Worldwide Gross":41158757,"US DVD Sales":null,"Production Budget":2200000,"Release Date":"Oct 09 1971","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"William Friedkin","Rotten Tomatoes Rating":98,"IMDB Rating":7.9,"IMDB Votes":33674},{"Title":"From Dusk Till Dawn","US Gross":25728961,"Worldwide Gross":25728961,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jan 19 1996","MPAA Rating":"R","Running Time min":107,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Robert Rodriguez","Rotten Tomatoes Rating":63,"IMDB Rating":7.1,"IMDB Votes":80234},{"Title":"Friday the 13th","US Gross":39754601,"Worldwide Gross":59754601,"US DVD Sales":null,"Production Budget":550000,"Release Date":"May 09 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":5.6,"IMDB Votes":26798},{"Title":"Friday the 13th Part 3","US Gross":36690067,"Worldwide Gross":36690067,"US DVD Sales":null,"Production Budget":2250000,"Release Date":"Aug 13 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Steve Miner","Rotten Tomatoes Rating":14,"IMDB Rating":5.5,"IMDB Votes":13395},{"Title":"Friday the 13th Part IV: The Final Chapter","US Gross":32980880,"Worldwide Gross":32980880,"US DVD Sales":null,"Production Budget":2600000,"Release Date":"Apr 13 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Friday the 13th Part V: A New Beginning","US Gross":21930418,"Worldwide Gross":21930418,"US DVD Sales":null,"Production Budget":2200000,"Release Date":"Mar 22 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Friday the 13th Part VI: Jason Lives","US Gross":19472057,"Worldwide Gross":19472057,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 01 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Friday the 13th Part VII: The New Blood","US Gross":19170001,"Worldwide Gross":19170001,"US DVD Sales":null,"Production Budget":2800000,"Release Date":"May 13 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":8916},{"Title":"Friday the 13th Part VIII: Jason Takes Manhattan","US Gross":14343976,"Worldwide Gross":14343976,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jul 28 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.9,"IMDB Votes":10113},{"Title":"Jason Goes to Hell: The Final Friday","US Gross":15935068,"Worldwide Gross":15935068,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 13 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.1,"IMDB Votes":8733},{"Title":"Per qualche dollaro in pi˘","US Gross":4300000,"Worldwide Gross":4300000,"US DVD Sales":null,"Production Budget":600000,"Release Date":"May 10 1967","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Sergio Leone","Rotten Tomatoes Rating":null,"IMDB Rating":8.2,"IMDB Votes":44204},{"Title":"Per un pugno di dollari","US Gross":3500000,"Worldwide Gross":3500000,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Jan 18 1967","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Remake","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Sergio Leone","Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":39929},{"Title":"The Fall of the Roman Empire","US Gross":4750000,"Worldwide Gross":4750000,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Jan 01 1964","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":6.6,"IMDB Votes":3184},{"Title":"Friday the 13th Part 2","US Gross":21722776,"Worldwide Gross":21722776,"US DVD Sales":null,"Production Budget":1250000,"Release Date":"Apr 30 1981","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Horror","Creative Type":null,"Director":"Steve Miner","Rotten Tomatoes Rating":33,"IMDB Rating":5.5,"IMDB Votes":13395},{"Title":"Faithful","US Gross":2104439,"Worldwide Gross":2104439,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Apr 05 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Based on Play","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Paul Mazursky","Rotten Tomatoes Rating":7,"IMDB Rating":5.7,"IMDB Votes":989},{"Title":"Fair Game","US Gross":11497497,"Worldwide Gross":11497497,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Nov 03 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":6.6,"IMDB Votes":194},{"Title":"A Few Good Men","US Gross":141340178,"Worldwide Gross":236500000,"US DVD Sales":null,"Production Budget":33000000,"Release Date":"Dec 11 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Rob Reiner","Rotten Tomatoes Rating":83,"IMDB Rating":7.6,"IMDB Votes":63541},{"Title":"The Fugitive","US Gross":183875760,"Worldwide Gross":368900000,"US DVD Sales":null,"Production Budget":44000000,"Release Date":"Aug 06 1993","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Andrew Davis","Rotten Tomatoes Rating":94,"IMDB Rating":7.8,"IMDB Votes":96914},{"Title":"From Here to Eternity","US Gross":30500000,"Worldwide Gross":30500000,"US DVD Sales":null,"Production Budget":1650000,"Release Date":"Aug 05 1953","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Fred Zinnemann","Rotten Tomatoes Rating":86,"IMDB Rating":7.9,"IMDB Votes":15115},{"Title":"First Morning","US Gross":87264,"Worldwide Gross":87264,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Jul 15 2005","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"Illuminare","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Shooting Fish","US Gross":302204,"Worldwide Gross":302204,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"May 01 1998","MPAA Rating":"PG","Running Time min":null,"Distributor":"Fox Searchlight","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":4849},{"Title":"F.I.S.T","US Gross":20388920,"Worldwide Gross":20388920,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Apr 13 1978","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Norman Jewison","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":2737},{"Title":"Flashdance","US Gross":90463574,"Worldwide Gross":201463574,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Apr 15 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Adrian Lyne","Rotten Tomatoes Rating":29,"IMDB Rating":5.6,"IMDB Votes":12485},{"Title":"Fled","US Gross":17192205,"Worldwide Gross":19892205,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jul 19 1996","MPAA Rating":"R","Running Time min":98,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":4.9,"IMDB Votes":4215},{"Title":"Flash Gordon","US Gross":27107960,"Worldwide Gross":27107960,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 05 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":6.2,"IMDB Votes":14894},{"Title":"The Flintstones","US Gross":130531208,"Worldwide Gross":358500000,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"May 27 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Brian Levant","Rotten Tomatoes Rating":20,"IMDB Rating":4.6,"IMDB Votes":26521},{"Title":"Flight of the Intruder","US Gross":14471440,"Worldwide Gross":14471440,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Jan 18 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"John Milius","Rotten Tomatoes Rating":null,"IMDB Rating":5.3,"IMDB Votes":2592},{"Title":"Flatliners","US Gross":61308153,"Worldwide Gross":61308153,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Aug 10 1990","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":52,"IMDB Rating":6.4,"IMDB Votes":23295},{"Title":"The Flower of Evil","US Gross":181798,"Worldwide Gross":181798,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Oct 10 2003","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Funny Ha Ha","US Gross":77070,"Worldwide Gross":77070,"US DVD Sales":null,"Production Budget":30000,"Release Date":"Apr 29 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Goodbye Cruel Releasing","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":1138},{"Title":"The Funeral","US Gross":1212799,"Worldwide Gross":1412799,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Nov 01 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"October Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Abel Ferrara","Rotten Tomatoes Rating":83,"IMDB Rating":6.4,"IMDB Votes":4084},{"Title":"Fantasia","US Gross":83320000,"Worldwide Gross":83320000,"US DVD Sales":null,"Production Budget":2280000,"Release Date":"Nov 13 2040","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Compilation","Major Genre":"Musical","Creative Type":"Multiple Creative Types","Director":null,"Rotten Tomatoes Rating":98,"IMDB Rating":7.8,"IMDB Votes":29914},{"Title":"Fantasia 2000 (IMAX)","US Gross":60507228,"Worldwide Gross":60507228,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jan 01 2000","MPAA Rating":"G","Running Time min":75,"Distributor":"Walt Disney Pictures","Source":"Compilation","Major Genre":"Musical","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Fog","US Gross":21378361,"Worldwide Gross":21378361,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Feb 01 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Avco Embassy","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":"John Carpenter","Rotten Tomatoes Rating":69,"IMDB Rating":3.3,"IMDB Votes":15760},{"Title":"Forrest Gump","US Gross":329694499,"Worldwide Gross":679400525,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jul 06 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Robert Zemeckis","Rotten Tomatoes Rating":70,"IMDB Rating":8.6,"IMDB Votes":300455},{"Title":"Fortress","US Gross":6730578,"Worldwide Gross":46730578,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Sep 03 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":5.5,"IMDB Votes":7026},{"Title":"Fiddler on the Roof","US Gross":80500000,"Worldwide Gross":80500000,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Jan 01 1971","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Norman Jewison","Rotten Tomatoes Rating":88,"IMDB Rating":7.7,"IMDB Votes":14260},{"Title":"The Front Page","US Gross":15000000,"Worldwide Gross":15000000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 17 1974","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Billy Wilder","Rotten Tomatoes Rating":67,"IMDB Rating":7.2,"IMDB Votes":3875},{"Title":"First Blood","US Gross":47212904,"Worldwide Gross":125212904,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Oct 22 1982","MPAA Rating":"R","Running Time min":null,"Distributor":"Orion Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Ted Kotcheff","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":56369},{"Title":"Friday","US Gross":27467564,"Worldwide Gross":27936778,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Apr 26 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"F. Gary Gray","Rotten Tomatoes Rating":77,"IMDB Rating":7,"IMDB Votes":21623},{"Title":"Freeze Frame","US Gross":0,"Worldwide Gross":91062,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 10 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"First Look","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":6.3,"IMDB Votes":1723},{"Title":"Firefox","US Gross":45785720,"Worldwide Gross":45785720,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Jun 18 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":42,"IMDB Rating":5.6,"IMDB Votes":9348},{"Title":"Fargo","US Gross":24567751,"Worldwide Gross":51204567,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Mar 08 1996","MPAA Rating":"R","Running Time min":87,"Distributor":"Gramercy","Source":"Based on Real Life Events","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Joel Coen","Rotten Tomatoes Rating":94,"IMDB Rating":8.3,"IMDB Votes":165159},{"Title":"First Knight","US Gross":37361412,"Worldwide Gross":127361412,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jul 07 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Traditional/Legend/Fairytale","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Jerry Zucker","Rotten Tomatoes Rating":45,"IMDB Rating":5.6,"IMDB Votes":20928},{"Title":"From Russia With Love","US Gross":24800000,"Worldwide Gross":78900000,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Apr 08 1964","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":32541},{"Title":"The Firm","US Gross":158340892,"Worldwide Gross":270340892,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Jun 30 1993","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Sydney Pollack","Rotten Tomatoes Rating":76,"IMDB Rating":5.5,"IMDB Votes":957},{"Title":"Frenzy","US Gross":12600000,"Worldwide Gross":12600000,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Jun 21 1972","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":87,"IMDB Rating":7.5,"IMDB Votes":13093},{"Title":"Footloose","US Gross":80000000,"Worldwide Gross":80000000,"US DVD Sales":null,"Production Budget":8200000,"Release Date":"Feb 17 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":"Herbert Ross","Rotten Tomatoes Rating":56,"IMDB Rating":6,"IMDB Votes":15626},{"Title":"Fast Times at Ridgemont High","US Gross":27092880,"Worldwide Gross":27092880,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Aug 13 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Amy Heckerling","Rotten Tomatoes Rating":80,"IMDB Rating":7.2,"IMDB Votes":31362},{"Title":"Fighting Tommy Riley","US Gross":10514,"Worldwide Gross":10514,"US DVD Sales":null,"Production Budget":300000,"Release Date":"May 06 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Freestyle Releasing","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":499},{"Title":"The First Wives Club","US Gross":105489203,"Worldwide Gross":181489203,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 20 1996","MPAA Rating":"PG","Running Time min":90,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Hugh Wilson","Rotten Tomatoes Rating":41,"IMDB Rating":5.6,"IMDB Votes":14682},{"Title":"Flirting with Disaster","US Gross":14853474,"Worldwide Gross":14853474,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Mar 22 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"David O. Russell","Rotten Tomatoes Rating":86,"IMDB Rating":6.7,"IMDB Votes":8474},{"Title":"For Your Eyes Only","US Gross":54800000,"Worldwide Gross":195300000,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Jun 26 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Glen","Rotten Tomatoes Rating":71,"IMDB Rating":6.8,"IMDB Votes":23527},{"Title":"Fiza","US Gross":623791,"Worldwide Gross":1179462,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 08 2000","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Video Sound","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":749},{"Title":"Grip: A Criminal's Story","US Gross":1336,"Worldwide Gross":1336,"US DVD Sales":null,"Production Budget":12000,"Release Date":"Apr 28 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"JeTi Films","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Ghost and the Darkness","US Gross":38564422,"Worldwide Gross":38564422,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Oct 11 1996","MPAA Rating":"R","Running Time min":109,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Action","Creative Type":"Dramatization","Director":"Stephen Hopkins","Rotten Tomatoes Rating":51,"IMDB Rating":6.6,"IMDB Votes":19735},{"Title":"Gallipoli","US Gross":5732587,"Worldwide Gross":5732587,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 28 1981","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Peter Weir","Rotten Tomatoes Rating":86,"IMDB Rating":7.7,"IMDB Votes":14139},{"Title":"Gabriela","US Gross":2335352,"Worldwide Gross":2335352,"US DVD Sales":null,"Production Budget":50000,"Release Date":"Mar 16 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Power Point Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":1399},{"Title":"Il buono, il brutto, il cattivo","US Gross":6100000,"Worldwide Gross":6100000,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Dec 29 1967","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Sergio Leone","Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":104},{"Title":"Graduation Day","US Gross":23894000,"Worldwide Gross":23894000,"US DVD Sales":null,"Production Budget":250000,"Release Date":"May 01 1981","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3,"IMDB Votes":836},{"Title":"The Godfather: Part II","US Gross":57300000,"Worldwide Gross":57300000,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Dec 11 1974","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":null,"Creative Type":"Historical Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":null,"IMDB Rating":9,"IMDB Votes":245271},{"Title":"The Godfather: Part III","US Gross":66520529,"Worldwide Gross":66520529,"US DVD Sales":null,"Production Budget":54000000,"Release Date":"Dec 25 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":82977},{"Title":"Goodfellas","US Gross":46743809,"Worldwide Gross":46743809,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Sep 19 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Martin Scorsese","Rotten Tomatoes Rating":97,"IMDB Rating":8.8,"IMDB Votes":229156},{"Title":"The Godfather","US Gross":134966411,"Worldwide Gross":268500000,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Mar 15 1972","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":null,"Creative Type":"Historical Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":100,"IMDB Rating":9.2,"IMDB Votes":411088},{"Title":"God's Army","US Gross":2637726,"Worldwide Gross":2652515,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Mar 10 2000","MPAA Rating":"PG","Running Time min":null,"Distributor":"Excel Entertainment","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":6.8,"IMDB Votes":638},{"Title":"The Great Escape","US Gross":11744471,"Worldwide Gross":11744471,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Aug 08 1963","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Sturges","Rotten Tomatoes Rating":91,"IMDB Rating":8.4,"IMDB Votes":62074},{"Title":"Gory Gory Hallelujah","US Gross":12604,"Worldwide Gross":12604,"US DVD Sales":null,"Production Budget":425000,"Release Date":"Jan 21 2005","MPAA Rating":"Not Rated","Running Time min":100,"Distributor":"Indican Pictures","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":null,"Director":"Sue Corcoran","Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":134},{"Title":"Ghost","US Gross":217631306,"Worldwide Gross":517600000,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Jul 13 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Jerry Zucker","Rotten Tomatoes Rating":81,"IMDB Rating":6.9,"IMDB Votes":51125},{"Title":"Ghostbusters","US Gross":238632124,"Worldwide Gross":291632124,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 08 1984","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Ivan Reitman","Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":358},{"Title":"Girl 6","US Gross":4880941,"Worldwide Gross":4880941,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Mar 22 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":34,"IMDB Rating":4.9,"IMDB Votes":3348},{"Title":"Goldeneye","US Gross":106429941,"Worldwide Gross":356429941,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Nov 17 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Martin Campbell","Rotten Tomatoes Rating":80,"IMDB Rating":7.2,"IMDB Votes":69199},{"Title":"The Glimmer Man","US Gross":20404841,"Worldwide Gross":36404841,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Oct 04 1996","MPAA Rating":"R","Running Time min":92,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":4.9,"IMDB Votes":7230},{"Title":"Glory","US Gross":26593580,"Worldwide Gross":26593580,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Dec 14 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Dramatization","Director":"Edward Zwick","Rotten Tomatoes Rating":93,"IMDB Rating":8,"IMDB Votes":56427},{"Title":"The Gambler","US Gross":51773,"Worldwide Gross":101773,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 04 1999","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":199},{"Title":"Good Morning Vietnam","US Gross":123922370,"Worldwide Gross":123922370,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Dec 23 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":32609},{"Title":"Gandhi","US Gross":52767889,"Worldwide Gross":52767889,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Dec 08 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Sir Richard Attenborough","Rotten Tomatoes Rating":85,"IMDB Rating":8.2,"IMDB Votes":50881},{"Title":"A Guy Named Joe","US Gross":5363000,"Worldwide Gross":5363000,"US DVD Sales":null,"Production Budget":2627000,"Release Date":"Dec 24 2043","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":869},{"Title":"Gentleman's Agreement","US Gross":7800000,"Worldwide Gross":7800000,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 31 1946","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Elia Kazan","Rotten Tomatoes Rating":83,"IMDB Rating":7.4,"IMDB Votes":4637},{"Title":"Goodbye Bafana","US Gross":0,"Worldwide Gross":2717302,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 14 2007","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Vantage","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Bille August","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":3631},{"Title":"Get on the Bus","US Gross":5691854,"Worldwide Gross":5691854,"US DVD Sales":null,"Production Budget":2400000,"Release Date":"Oct 16 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":87,"IMDB Rating":6.7,"IMDB Votes":2701},{"Title":"The Golden Child","US Gross":79817937,"Worldwide Gross":79817937,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 12 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":"Michael Ritchie","Rotten Tomatoes Rating":26,"IMDB Rating":5.4,"IMDB Votes":14471},{"Title":"Good Dick","US Gross":28835,"Worldwide Gross":28835,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Oct 10 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Present Pictures/Morning Knight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":3004},{"Title":"Goldfinger","US Gross":51100000,"Worldwide Gross":124900000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Dec 22 1964","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":"Guy Hamilton","Rotten Tomatoes Rating":96,"IMDB Rating":7.9,"IMDB Votes":47095},{"Title":"Groundhog Day","US Gross":70906973,"Worldwide Gross":70906973,"US DVD Sales":null,"Production Budget":14600000,"Release Date":"Feb 12 1993","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Harold Ramis","Rotten Tomatoes Rating":96,"IMDB Rating":8.2,"IMDB Votes":134964},{"Title":"Gremlins","US Gross":148168459,"Worldwide Gross":148168459,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Jun 08 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Joe Dante","Rotten Tomatoes Rating":78,"IMDB Rating":7,"IMDB Votes":42163},{"Title":"Get Real","US Gross":1152411,"Worldwide Gross":1152411,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Apr 30 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":6026},{"Title":"Gremlins 2: The New Batch","US Gross":41476097,"Worldwide Gross":41476097,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 15 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Joe Dante","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":22712},{"Title":"The Greatest Story Ever Told","US Gross":15473333,"Worldwide Gross":15473333,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Feb 15 1965","MPAA Rating":"G","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":"David Lean","Rotten Tomatoes Rating":39,"IMDB Rating":6.3,"IMDB Votes":3300},{"Title":"The Gospel of John","US Gross":4068087,"Worldwide Gross":4068087,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Sep 26 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"ThinkFilm","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Greatest Show on Earth","US Gross":36000000,"Worldwide Gross":36000000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jan 10 1952","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":41,"IMDB Rating":6.8,"IMDB Votes":4264},{"Title":"The First Great Train Robbery","US Gross":391942,"Worldwide Gross":391942,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Feb 02 1979","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":"Michael Crichton","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":5141},{"Title":"Get Shorty","US Gross":72021008,"Worldwide Gross":115021008,"US DVD Sales":null,"Production Budget":30250000,"Release Date":"Oct 20 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Barry Sonnenfeld","Rotten Tomatoes Rating":86,"IMDB Rating":6.9,"IMDB Votes":33364},{"Title":"Gettysburg","US Gross":10731997,"Worldwide Gross":10731997,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Oct 08 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":87,"IMDB Rating":7.6,"IMDB Votes":11215},{"Title":"Guiana 1838","US Gross":227241,"Worldwide Gross":227241,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 24 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"RBC Radio","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Gone with the Wind","US Gross":198680470,"Worldwide Gross":390525192,"US DVD Sales":null,"Production Budget":3900000,"Release Date":"Dec 15 2039","MPAA Rating":"G","Running Time min":222,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"George Cukor","Rotten Tomatoes Rating":97,"IMDB Rating":8.2,"IMDB Votes":78947},{"Title":"Happiness","US Gross":2746453,"Worldwide Gross":5746453,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Oct 16 1998","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Good Machine Releasing","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Todd Solondz","Rotten Tomatoes Rating":84,"IMDB Rating":6.5,"IMDB Votes":64},{"Title":"Harley Davidson and the Marlboro Man","US Gross":7018525,"Worldwide Gross":7018525,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Aug 23 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Simon Wincer","Rotten Tomatoes Rating":27,"IMDB Rating":5.3,"IMDB Votes":6995},{"Title":"Heavy Metal","US Gross":19571091,"Worldwide Gross":19571091,"US DVD Sales":null,"Production Budget":9300000,"Release Date":"Aug 07 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":6,"IMDB Votes":45},{"Title":"Hell's Angels","US Gross":null,"Worldwide Gross":null,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 31 1929","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":90,"IMDB Rating":7.9,"IMDB Votes":2050},{"Title":"Heartbeeps","US Gross":6000000,"Worldwide Gross":6000000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 18 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.1,"IMDB Votes":620},{"Title":"The Helix... Loaded","US Gross":3700,"Worldwide Gross":3700,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Mar 18 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Romar","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":1.5,"IMDB Votes":486},{"Title":"Hang 'em High","US Gross":6800000,"Worldwide Gross":6800000,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Aug 03 1968","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":93,"IMDB Rating":6.9,"IMDB Votes":10292},{"Title":"Hellraiser","US Gross":14564000,"Worldwide Gross":14564000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 18 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"New World","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":7,"IMDB Votes":22442},{"Title":"Hero","US Gross":19487173,"Worldwide Gross":66787173,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Oct 02 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Stephen Frears","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":323},{"Title":"Highlander III: The Sorcerer","US Gross":13738574,"Worldwide Gross":13738574,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Jan 27 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.8,"IMDB Votes":7763},{"Title":"Highlander","US Gross":5900000,"Worldwide Gross":12900000,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Mar 07 1986","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":"Russell Mulcahy","Rotten Tomatoes Rating":66,"IMDB Rating":7.2,"IMDB Votes":40802},{"Title":"How Green Was My Valley","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":1250000,"Release Date":"Oct 28 2041","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":null,"Creative Type":null,"Director":"John Ford","Rotten Tomatoes Rating":88,"IMDB Rating":7.9,"IMDB Votes":7420},{"Title":"High Noon","US Gross":8000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":730000,"Release Date":"Dec 31 1951","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Fred Zinnemann","Rotten Tomatoes Rating":95,"IMDB Rating":8.3,"IMDB Votes":34163},{"Title":"History of the World: Part I","US Gross":31672000,"Worldwide Gross":31672000,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Jun 12 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Mel Brooks","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":16691},{"Title":"Hello, Dolly","US Gross":33208099,"Worldwide Gross":33208099,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Dec 16 1969","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.4,"IMDB Votes":254},{"Title":"Halloween II","US Gross":25533818,"Worldwide Gross":25533818,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Oct 30 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Rick Rosenthal","Rotten Tomatoes Rating":27,"IMDB Rating":4.9,"IMDB Votes":12197},{"Title":"Halloween 3: Season of the Witch","US Gross":14400000,"Worldwide Gross":14400000,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Oct 22 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.8,"IMDB Votes":12644},{"Title":"Halloween 4: The Return of Michael Myers","US Gross":17768757,"Worldwide Gross":17768757,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Oct 01 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":"Dwight H. Little","Rotten Tomatoes Rating":23,"IMDB Rating":5.6,"IMDB Votes":11079},{"Title":"Halloween 5: The Revenge of Michael Myers","US Gross":11642254,"Worldwide Gross":11642254,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Oct 13 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Galaxy International Releasing","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Halloween: The Curse of Michael Myers","US Gross":15126948,"Worldwide Gross":15126948,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Sep 29 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.4,"IMDB Votes":8576},{"Title":"Halloween","US Gross":47000000,"Worldwide Gross":70000000,"US DVD Sales":null,"Production Budget":325000,"Release Date":"Oct 17 1978","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Horror","Creative Type":null,"Director":"John Carpenter","Rotten Tomatoes Rating":93,"IMDB Rating":6,"IMDB Votes":39866},{"Title":"Home Alone 2: Lost in New York","US Gross":173585516,"Worldwide Gross":358994850,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Nov 20 1992","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Chris Columbus","Rotten Tomatoes Rating":21,"IMDB Rating":5.8,"IMDB Votes":51408},{"Title":"Home Alone","US Gross":285761243,"Worldwide Gross":476684675,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Nov 16 1990","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Chris Columbus","Rotten Tomatoes Rating":47,"IMDB Rating":7,"IMDB Votes":79080},{"Title":"Home Movies","US Gross":89134,"Worldwide Gross":89134,"US DVD Sales":null,"Production Budget":400000,"Release Date":"May 16 1980","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.3,"IMDB Votes":291},{"Title":"Hum to Mohabbt Karega","US Gross":121807,"Worldwide Gross":121807,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"May 26 2000","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.6,"IMDB Votes":74},{"Title":"The Hotel New Hampshire","US Gross":5142858,"Worldwide Gross":5142858,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Mar 09 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":5.8,"IMDB Votes":4387},{"Title":"Henry V","US Gross":10161099,"Worldwide Gross":10161099,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Nov 08 1989","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Goldwyn Entertainment","Source":"Based on Play","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Kenneth Branagh","Rotten Tomatoes Rating":100,"IMDB Rating":7.9,"IMDB Votes":14499},{"Title":"Housefull","US Gross":1183658,"Worldwide Gross":14883658,"US DVD Sales":null,"Production Budget":10100000,"Release Date":"Apr 30 2010","MPAA Rating":null,"Running Time min":null,"Distributor":"Eros Entertainment","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":687},{"Title":"Hook","US Gross":119654823,"Worldwide Gross":300854823,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Dec 11 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":24,"IMDB Rating":6.2,"IMDB Votes":60159},{"Title":"House Party 2","US Gross":19438638,"Worldwide Gross":19438638,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Oct 23 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":25,"IMDB Rating":4.3,"IMDB Votes":1596},{"Title":"Hocus Pocus","US Gross":39360491,"Worldwide Gross":39360491,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Jul 16 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":6,"IMDB Votes":15893},{"Title":"The Howling","US Gross":17985000,"Worldwide Gross":17985000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Apr 10 1981","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Joe Dante","Rotten Tomatoes Rating":60,"IMDB Rating":6.5,"IMDB Votes":8731},{"Title":"High Plains Drifter","US Gross":15700000,"Worldwide Gross":15700000,"US DVD Sales":null,"Production Budget":15700000,"Release Date":"Jan 01 1972","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":15718},{"Title":"Hoop Dreams","US Gross":7768371,"Worldwide Gross":11768371,"US DVD Sales":null,"Production Budget":700000,"Release Date":"Oct 14 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":98,"IMDB Rating":8,"IMDB Votes":9492},{"Title":"Happy Gilmore","US Gross":38623460,"Worldwide Gross":38623460,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 16 1996","MPAA Rating":"PG-13","Running Time min":92,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Dennis Dugan","Rotten Tomatoes Rating":58,"IMDB Rating":6.9,"IMDB Votes":54111},{"Title":"The Hudsucker Proxy","US Gross":2816518,"Worldwide Gross":14938149,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Mar 11 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Joel Coen","Rotten Tomatoes Rating":58,"IMDB Rating":7.4,"IMDB Votes":32344},{"Title":"A Hard Day's Night","US Gross":12299668,"Worldwide Gross":12299668,"US DVD Sales":null,"Production Budget":560000,"Release Date":"Aug 11 1964","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":7.6,"IMDB Votes":15291},{"Title":"Heroes","US Gross":655538,"Worldwide Gross":655538,"US DVD Sales":null,"Production Budget":400000,"Release Date":"Oct 24 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Eros Entertainment","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":505},{"Title":"The Hunt for Red October","US Gross":120709866,"Worldwide Gross":200500000,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Mar 02 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"John McTiernan","Rotten Tomatoes Rating":95,"IMDB Rating":7.6,"IMDB Votes":55202},{"Title":"Harper","US Gross":12000000,"Worldwide Gross":12000000,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Feb 23 1966","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":2395},{"Title":"Harriet the Spy","US Gross":26570048,"Worldwide Gross":26570048,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Jul 10 1996","MPAA Rating":"PG","Running Time min":101,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":45,"IMDB Rating":5.8,"IMDB Votes":2963},{"Title":"Le hussard sur le toit","US Gross":1320043,"Worldwide Gross":1320043,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Apr 19 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":3083},{"Title":"The Hustler","US Gross":7600000,"Worldwide Gross":7600000,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Sep 25 1961","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":97,"IMDB Rating":8.1,"IMDB Votes":25385},{"Title":"Hud","US Gross":10000000,"Worldwide Gross":10000000,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"May 29 1963","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Martin Ritt","Rotten Tomatoes Rating":79,"IMDB Rating":3.4,"IMDB Votes":93},{"Title":"Hudson Hawk","US Gross":17218916,"Worldwide Gross":17218916,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"May 24 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Michael Lehmann","Rotten Tomatoes Rating":20,"IMDB Rating":5.3,"IMDB Votes":21920},{"Title":"Heaven's Gate","US Gross":3484331,"Worldwide Gross":3484331,"US DVD Sales":null,"Production Budget":44000000,"Release Date":"Nov 19 1980","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Michael Cimino","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":4649},{"Title":"Hav Plenty","US Gross":2301777,"Worldwide Gross":2301777,"US DVD Sales":null,"Production Budget":650000,"Release Date":"Jun 19 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":580},{"Title":"House of Wax","US Gross":23800000,"Worldwide Gross":23800000,"US DVD Sales":null,"Production Budget":658000,"Release Date":"Apr 10 1953","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":5.4,"IMDB Votes":32159},{"Title":"Hawaii","US Gross":34562222,"Worldwide Gross":34562222,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 10 1966","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":"George Roy Hill","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":1153},{"Title":"Howard the Duck","US Gross":16295774,"Worldwide Gross":16295774,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 01 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":4.1,"IMDB Votes":16051},{"Title":"High Anxiety","US Gross":31063038,"Worldwide Gross":31063038,"US DVD Sales":null,"Production Budget":3400000,"Release Date":"Dec 23 1977","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Mel Brooks","Rotten Tomatoes Rating":73,"IMDB Rating":6.5,"IMDB Votes":7025},{"Title":"Hybrid","US Gross":162605,"Worldwide Gross":162605,"US DVD Sales":null,"Production Budget":200000,"Release Date":"May 10 2002","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Indican Pictures","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.2,"IMDB Votes":380},{"Title":"It's a Wonderful Life","US Gross":6600000,"Worldwide Gross":6600000,"US DVD Sales":19339789,"Production Budget":3180000,"Release Date":"Dec 31 1945","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Frank Capra","Rotten Tomatoes Rating":94,"IMDB Rating":8.7,"IMDB Votes":101499},{"Title":"The Ice Pirates","US Gross":13075390,"Worldwide Gross":13075390,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Mar 16 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM/UA Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":5.1,"IMDB Votes":3600},{"Title":"Independence Day","US Gross":306169255,"Worldwide Gross":817400878,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jul 02 1996","MPAA Rating":"PG-13","Running Time min":145,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Roland Emmerich","Rotten Tomatoes Rating":61,"IMDB Rating":6.5,"IMDB Votes":149493},{"Title":"The Island of Dr. Moreau","US Gross":27682712,"Worldwide Gross":27682712,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 23 1996","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"John Frankenheimer","Rotten Tomatoes Rating":23,"IMDB Rating":4.1,"IMDB Votes":13770},{"Title":"Iraq for Sale: The War Profiteers","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":775000,"Release Date":"Sep 08 2006","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":7.8,"IMDB Votes":854},{"Title":"In Her Line of Fire","US Gross":884,"Worldwide Gross":884,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Apr 21 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Regent Releasing","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.5,"IMDB Votes":337},{"Title":"The Indian in the Cupboard","US Gross":35627222,"Worldwide Gross":35627222,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jul 14 1995","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Frank Oz","Rotten Tomatoes Rating":68,"IMDB Rating":5.7,"IMDB Votes":4836},{"Title":"I Love You Ö Don't Touch Me!","US Gross":33598,"Worldwide Gross":33598,"US DVD Sales":null,"Production Budget":68000,"Release Date":"Feb 20 1998","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":298},{"Title":"Illuminata","US Gross":836641,"Worldwide Gross":836641,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 06 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":1100},{"Title":"In Cold Blood","US Gross":13000000,"Worldwide Gross":13000000,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Dec 31 1966","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Richard Brooks","Rotten Tomatoes Rating":88,"IMDB Rating":8.1,"IMDB Votes":10562},{"Title":"In the Company of Men","US Gross":2883661,"Worldwide Gross":2883661,"US DVD Sales":null,"Production Budget":25000,"Release Date":"Aug 01 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Neil LaBute","Rotten Tomatoes Rating":89,"IMDB Rating":7.2,"IMDB Votes":7601},{"Title":"The Inkwell","US Gross":8864699,"Worldwide Gross":8864699,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Apr 22 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":5.7,"IMDB Votes":542},{"Title":"Invaders from Mars","US Gross":4884663,"Worldwide Gross":4984663,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jun 06 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Cannon","Source":"Remake","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Tobe Hooper","Rotten Tomatoes Rating":27,"IMDB Rating":5,"IMDB Votes":1933},{"Title":"L'incomparable mademoiselle C.","US Gross":493905,"Worldwide Gross":493905,"US DVD Sales":null,"Production Budget":3400000,"Release Date":"Apr 23 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":66},{"Title":"Intolerance","US Gross":null,"Worldwide Gross":null,"US DVD Sales":null,"Production Budget":385907,"Release Date":"Sep 05 2016","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":96,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Island","US Gross":15716828,"Worldwide Gross":15716828,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Jun 13 1980","MPAA Rating":"PG-13","Running Time min":138,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Michael Ritchie","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":82601},{"Title":"Eye See You","US Gross":79161,"Worldwide Gross":1807990,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Sep 20 2002","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":397},{"Title":"In the Heat of the Night","US Gross":24379978,"Worldwide Gross":24379978,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Aug 02 1967","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Norman Jewison","Rotten Tomatoes Rating":96,"IMDB Rating":8.1,"IMDB Votes":22429},{"Title":"Jack","US Gross":58617334,"Worldwide Gross":58617334,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Aug 09 1996","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":17,"IMDB Rating":5.3,"IMDB Votes":17267},{"Title":"Jade","US Gross":9812870,"Worldwide Gross":9812870,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Oct 13 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"William Friedkin","Rotten Tomatoes Rating":16,"IMDB Rating":4.8,"IMDB Votes":5279},{"Title":"Jingle All the Way","US Gross":60592389,"Worldwide Gross":129832389,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Nov 22 1996","MPAA Rating":"PG","Running Time min":89,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Brian Levant","Rotten Tomatoes Rating":16,"IMDB Rating":4.9,"IMDB Votes":22928},{"Title":"Dr. No","US Gross":16067035,"Worldwide Gross":59567035,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"May 08 1963","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":36019},{"Title":"The Jungle Book","US Gross":44342956,"Worldwide Gross":44342956,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Dec 25 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Stephen Sommers","Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":5564},{"Title":"Judge Dredd","US Gross":34687912,"Worldwide Gross":113487912,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Jun 30 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":4.9,"IMDB Votes":30736},{"Title":"The Jerky Boys","US Gross":7555256,"Worldwide Gross":7555256,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Feb 03 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":3.9,"IMDB Votes":1481},{"Title":"Jefferson in Paris","US Gross":2461628,"Worldwide Gross":2461628,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Mar 31 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"James Ivory","Rotten Tomatoes Rating":36,"IMDB Rating":5.6,"IMDB Votes":1464},{"Title":"JFK","US Gross":70405498,"Worldwide Gross":205400000,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Dec 20 1991","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Oliver Stone","Rotten Tomatoes Rating":83,"IMDB Rating":8,"IMDB Votes":59684},{"Title":"Journey from the Fall","US Gross":635305,"Worldwide Gross":635305,"US DVD Sales":null,"Production Budget":1300000,"Release Date":"Mar 23 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Imaginasian","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":92,"IMDB Rating":7.2,"IMDB Votes":586},{"Title":"Jekyll and Hyde... Together Again","US Gross":3707583,"Worldwide Gross":3707583,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Aug 27 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":486},{"Title":"Jumanji","US Gross":100458310,"Worldwide Gross":262758310,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Dec 15 1995","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Joe Johnston","Rotten Tomatoes Rating":48,"IMDB Rating":6.4,"IMDB Votes":54973},{"Title":"The Juror","US Gross":22730924,"Worldwide Gross":22730924,"US DVD Sales":null,"Production Budget":44000000,"Release Date":"Feb 02 1996","MPAA Rating":"R","Running Time min":120,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":5.3,"IMDB Votes":6482},{"Title":"Jerusalema","US Gross":7294,"Worldwide Gross":7294,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jun 11 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Anchor Bay Entertainment","Source":"Original Screenplay","Major Genre":null,"Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.9,"IMDB Votes":6777},{"Title":"Jurassic Park","US Gross":357067947,"Worldwide Gross":923067947,"US DVD Sales":null,"Production Budget":63000000,"Release Date":"Jun 10 1993","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":87,"IMDB Rating":7.9,"IMDB Votes":151365},{"Title":"Johnny Suede","US Gross":55000,"Worldwide Gross":55000,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Dec 31 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":1587},{"Title":"Jaws","US Gross":260000000,"Worldwide Gross":470700000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jun 20 1975","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":100,"IMDB Rating":8.3,"IMDB Votes":138017},{"Title":"Jaws 2","US Gross":102922376,"Worldwide Gross":208900376,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jun 16 1978","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":56,"IMDB Rating":5.6,"IMDB Votes":18793},{"Title":"Jaws 4: The Revenge","US Gross":15728335,"Worldwide Gross":15728335,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Jul 17 1987","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.6,"IMDB Votes":15632},{"Title":"Kabhi Alvida Naa Kehna","US Gross":3275443,"Worldwide Gross":32575443,"US DVD Sales":null,"Production Budget":10750000,"Release Date":"Aug 11 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Yash Raj Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":5.6,"IMDB Votes":4128},{"Title":"Kickboxer","US Gross":14533681,"Worldwide Gross":14533681,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Sep 08 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Cannon","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Mark DiSalle","Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":11692},{"Title":"Kids","US Gross":7412216,"Worldwide Gross":20412216,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Jul 21 1995","MPAA Rating":"Not Rated","Running Time min":90,"Distributor":"Shining Excalibur","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":6.7,"IMDB Votes":26122},{"Title":"Kingpin","US Gross":25023424,"Worldwide Gross":32223424,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jul 26 1996","MPAA Rating":"R","Running Time min":113,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Bobby Farrelly","Rotten Tomatoes Rating":51,"IMDB Rating":6.7,"IMDB Votes":28404},{"Title":"Kindergarten Cop","US Gross":91457688,"Worldwide Gross":202000000,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Dec 21 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ivan Reitman","Rotten Tomatoes Rating":50,"IMDB Rating":5.8,"IMDB Votes":40433},{"Title":"King Kong (1933)","US Gross":10000000,"Worldwide Gross":10000000,"US DVD Sales":null,"Production Budget":670000,"Release Date":"Apr 07 2033","MPAA Rating":null,"Running Time min":100,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"King Kong","US Gross":52614445,"Worldwide Gross":90614445,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Dec 17 1976","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Guillermin","Rotten Tomatoes Rating":46,"IMDB Rating":7.6,"IMDB Votes":132720},{"Title":"Kiss of Death","US Gross":14942422,"Worldwide Gross":14942422,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Apr 21 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Barbet Schroeder","Rotten Tomatoes Rating":67,"IMDB Rating":7.6,"IMDB Votes":2374},{"Title":"The Kings of Appletown","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Dec 12 2008","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Koltchak","US Gross":0,"Worldwide Gross":38585047,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 10 2008","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Kingdom of the Spiders","US Gross":17000000,"Worldwide Gross":17000000,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Dec 31 1976","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":5.7,"IMDB Votes":1463},{"Title":"Keeping it Real: The Adventures of Greg Walloch","US Gross":1358,"Worldwide Gross":1358,"US DVD Sales":null,"Production Budget":100000,"Release Date":"Nov 09 2001","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Avatar","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Akira","US Gross":19585,"Worldwide Gross":19585,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Apr 27 2001","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.9,"IMDB Votes":39948},{"Title":"Krush Groove","US Gross":11052713,"Worldwide Gross":11052713,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Oct 25 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":588},{"Title":"Krrish","US Gross":1430721,"Worldwide Gross":32430721,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jun 23 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"AdLab Films","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":6.1,"IMDB Votes":2735},{"Title":"Kansas City","US Gross":1353824,"Worldwide Gross":1353824,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Aug 16 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Robert Altman","Rotten Tomatoes Rating":58,"IMDB Rating":6,"IMDB Votes":2397},{"Title":"The Last Emperor","US Gross":43984000,"Worldwide Gross":43984000,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Nov 20 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Bernardo Bertolucci","Rotten Tomatoes Rating":91,"IMDB Rating":7.9,"IMDB Votes":24262},{"Title":"Last Action Hero","US Gross":50016394,"Worldwide Gross":137298489,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Jun 18 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":"John McTiernan","Rotten Tomatoes Rating":38,"IMDB Rating":5.9,"IMDB Votes":43171},{"Title":"Live and Let Die","US Gross":35400000,"Worldwide Gross":161800000,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jun 27 1973","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":"Guy Hamilton","Rotten Tomatoes Rating":64,"IMDB Rating":6.8,"IMDB Votes":24044},{"Title":"Lage Raho Munnabhai","US Gross":2217561,"Worldwide Gross":31517561,"US DVD Sales":null,"Production Budget":2700000,"Release Date":"Sep 01 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Eros Entertainment","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":5236},{"Title":"The Last Waltz","US Gross":321952,"Worldwide Gross":321952,"US DVD Sales":null,"Production Budget":35000,"Release Date":"Apr 05 2002","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":6893},{"Title":"The Last Big Thing","US Gross":22434,"Worldwide Gross":22434,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 25 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Stratosphere Entertainment","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":139},{"Title":"The Land Before Time","US Gross":48092846,"Worldwide Gross":81972846,"US DVD Sales":null,"Production Budget":12300000,"Release Date":"Nov 18 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Don Bluth","Rotten Tomatoes Rating":71,"IMDB Rating":6.9,"IMDB Votes":14017},{"Title":"The Longest Day","US Gross":39100000,"Worldwide Gross":50100000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 04 1962","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Real Life Events","Major Genre":"Action","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":92,"IMDB Rating":7.8,"IMDB Votes":17712},{"Title":"The Living Daylights","US Gross":51185000,"Worldwide Gross":191200000,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 31 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Glen","Rotten Tomatoes Rating":73,"IMDB Rating":6.7,"IMDB Votes":23735},{"Title":"Aladdin","US Gross":217350219,"Worldwide Gross":504050219,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Nov 11 1992","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":69090},{"Title":"A Low Down Dirty Shame","US Gross":29317886,"Worldwide Gross":29317886,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Nov 23 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Keenen Ivory Wayans","Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":1847},{"Title":"Love and Death on Long Island","US Gross":2542264,"Worldwide Gross":2542264,"US DVD Sales":null,"Production Budget":4030000,"Release Date":"Mar 06 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":2506},{"Title":"Ladyhawke","US Gross":18400000,"Worldwide Gross":18400000,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Apr 12 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":"Richard Donner","Rotten Tomatoes Rating":63,"IMDB Rating":6.7,"IMDB Votes":15260},{"Title":"Nikita","US Gross":5017971,"Worldwide Gross":5017971,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Mar 08 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Goldwyn Entertainment","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Luc Besson","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":24872},{"Title":"Lion of the Desert","US Gross":1500000,"Worldwide Gross":1500000,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 31 1979","MPAA Rating":null,"Running Time min":null,"Distributor":"United Film Distribution Co.","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":2659},{"Title":"Legal Eagles","US Gross":49851591,"Worldwide Gross":49851591,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jun 18 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ivan Reitman","Rotten Tomatoes Rating":50,"IMDB Rating":5.6,"IMDB Votes":4471},{"Title":"Legend","US Gross":15502112,"Worldwide Gross":15502112,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 18 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Ridley Scott","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":20734},{"Title":"The Last House on the Left","US Gross":3100000,"Worldwide Gross":3100000,"US DVD Sales":null,"Production Budget":87000,"Release Date":"Aug 30 1972","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.7,"IMDB Votes":22141},{"Title":"Lifeforce","US Gross":11603545,"Worldwide Gross":11603545,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jun 21 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/TriStar","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Tobe Hooper","Rotten Tomatoes Rating":57,"IMDB Rating":5.8,"IMDB Votes":5727},{"Title":"Lady in White","US Gross":1705139,"Worldwide Gross":1705139,"US DVD Sales":null,"Production Budget":4700000,"Release Date":"Apr 22 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"New Century Vista Film Company","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":73,"IMDB Rating":6.6,"IMDB Votes":2221},{"Title":"The Long Kiss Goodnight","US Gross":33447612,"Worldwide Gross":33447612,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Oct 11 1996","MPAA Rating":"R","Running Time min":120,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":69,"IMDB Rating":6.6,"IMDB Votes":28257},{"Title":"Lake of Fire","US Gross":25317,"Worldwide Gross":25317,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Oct 03 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"ThinkFilm","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8.4,"IMDB Votes":1027},{"Title":"Elling","US Gross":313436,"Worldwide Gross":313436,"US DVD Sales":null,"Production Budget":2100000,"Release Date":"May 29 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":7114},{"Title":"Lolita (1962)","US Gross":9250000,"Worldwide Gross":9250000,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jan 01 1962","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":"Stanley Kubrick","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Elmer Gantry","US Gross":10400000,"Worldwide Gross":10400000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Dec 31 1959","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Richard Brooks","Rotten Tomatoes Rating":96,"IMDB Rating":7.8,"IMDB Votes":4185},{"Title":"El Mariachi","US Gross":2040920,"Worldwide Gross":2040920,"US DVD Sales":null,"Production Budget":7000,"Release Date":"Feb 26 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Action","Creative Type":null,"Director":"Robert Rodriguez","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":19668},{"Title":"Last Man Standing","US Gross":18115927,"Worldwide Gross":18115927,"US DVD Sales":null,"Production Budget":67000000,"Release Date":"Sep 20 1996","MPAA Rating":"R","Running Time min":100,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Walter Hill","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Aliens","US Gross":85160248,"Worldwide Gross":183316455,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Jul 18 1986","MPAA Rating":"R","Running Time min":137,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"James Cameron","Rotten Tomatoes Rating":100,"IMDB Rating":7.5,"IMDB Votes":84},{"Title":"Alien³","US Gross":54927174,"Worldwide Gross":158500000,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"May 22 1992","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"David Fincher","Rotten Tomatoes Rating":37,"IMDB Rating":6.3,"IMDB Votes":78860},{"Title":"The Lion King","US Gross":328539505,"Worldwide Gross":783839505,"US DVD Sales":null,"Production Budget":79300000,"Release Date":"Jun 15 1994","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Rob Minkoff","Rotten Tomatoes Rating":92,"IMDB Rating":8.2,"IMDB Votes":136503},{"Title":"Love and Death","US Gross":20123742,"Worldwide Gross":20123742,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Jun 10 1975","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Woody Allen","Rotten Tomatoes Rating":100,"IMDB Rating":7.6,"IMDB Votes":12111},{"Title":"Love and Other Catastrophes","US Gross":212285,"Worldwide Gross":743216,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Mar 28 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":1406},{"Title":"Love Letters","US Gross":5269990,"Worldwide Gross":5269990,"US DVD Sales":null,"Production Budget":550000,"Release Date":"Apr 27 1984","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New World","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":477},{"Title":"The Legend of the Lone Ranger","US Gross":13400000,"Worldwide Gross":13400000,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"May 22 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Remake","Major Genre":"Western","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":755},{"Title":"The Last of the Mohicans","US Gross":72455275,"Worldwide Gross":72455275,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Sep 25 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Michael Mann","Rotten Tomatoes Rating":97,"IMDB Rating":7.8,"IMDB Votes":45410},{"Title":"Love Me Tender","US Gross":9000000,"Worldwide Gross":9000000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Dec 31 1955","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":5.9,"IMDB Votes":1301},{"Title":"The Long Riders","US Gross":15198912,"Worldwide Gross":15198912,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"May 16 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Walter Hill","Rotten Tomatoes Rating":79,"IMDB Rating":7.1,"IMDB Votes":3791},{"Title":"Losin' It","US Gross":1246141,"Worldwide Gross":1246141,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Apr 08 1983","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":1668},{"Title":"The Loss of Sexual Innocence","US Gross":399793,"Worldwide Gross":399793,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"May 28 1999","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Mike Figgis","Rotten Tomatoes Rating":45,"IMDB Rating":4.9,"IMDB Votes":2263},{"Title":"Legends of the Fall","US Gross":66502573,"Worldwide Gross":66502573,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 23 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Edward Zwick","Rotten Tomatoes Rating":63,"IMDB Rating":7.1,"IMDB Votes":39815},{"Title":"A League of Their Own","US Gross":107533925,"Worldwide Gross":132440066,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 01 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Penny Marshall","Rotten Tomatoes Rating":81,"IMDB Rating":6.9,"IMDB Votes":33426},{"Title":"Loaded Weapon 1","US Gross":27979399,"Worldwide Gross":27979399,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Feb 05 1993","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":17637},{"Title":"The Lost Weekend","US Gross":11000000,"Worldwide Gross":11000000,"US DVD Sales":null,"Production Budget":1250000,"Release Date":"Dec 31 1944","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Billy Wilder","Rotten Tomatoes Rating":100,"IMDB Rating":8.2,"IMDB Votes":11864},{"Title":"Le petit Nicolas","US Gross":201857,"Worldwide Gross":52339566,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Feb 19 2010","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":1505},{"Title":"Logan's Run","US Gross":25000000,"Worldwide Gross":25000000,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Dec 31 1975","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":70,"IMDB Rating":6.7,"IMDB Votes":14947},{"Title":"Betty Fisher et autres histoires","US Gross":206400,"Worldwide Gross":206400,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Sep 13 2002","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"WellSpring","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":1054},{"Title":"Light Sleeper","US Gross":1050861,"Worldwide Gross":1050861,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Sep 21 1992","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":6.7,"IMDB Votes":1986},{"Title":"Little Shop of Horrors","US Gross":38747385,"Worldwide Gross":38747385,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 19 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Musical","Creative Type":"Fantasy","Director":"Frank Oz","Rotten Tomatoes Rating":91,"IMDB Rating":6.6,"IMDB Votes":21521},{"Title":"Lone Star","US Gross":12961389,"Worldwide Gross":12961389,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jun 21 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Sayles","Rotten Tomatoes Rating":92,"IMDB Rating":7.6,"IMDB Votes":14599},{"Title":"Latter Days","US Gross":833118,"Worldwide Gross":833118,"US DVD Sales":null,"Production Budget":850000,"Release Date":"Jan 30 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"TLA Releasing","Source":null,"Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":7157},{"Title":"Lethal Weapon","US Gross":65192350,"Worldwide Gross":120192350,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Mar 06 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Richard Donner","Rotten Tomatoes Rating":90,"IMDB Rating":7.6,"IMDB Votes":54994},{"Title":"Lethal Weapon 3","US Gross":144731527,"Worldwide Gross":319700000,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"May 15 1992","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Richard Donner","Rotten Tomatoes Rating":56,"IMDB Rating":6.5,"IMDB Votes":39735},{"Title":"The Last Time I Committed Suicide","US Gross":12836,"Worldwide Gross":12836,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jun 20 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Roxie Releasing","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":1181},{"Title":"Little Voice","US Gross":4595000,"Worldwide Gross":4595000,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Dec 04 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":6.9,"IMDB Votes":8453},{"Title":"The Last Temptation of Christ","US Gross":8373585,"Worldwide Gross":8373585,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Aug 12 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":83,"IMDB Rating":7.5,"IMDB Votes":20934},{"Title":"License to Kill","US Gross":34667015,"Worldwide Gross":156167015,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Jul 14 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Glen","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":24558},{"Title":"Cama adentro","US Gross":200433,"Worldwide Gross":200433,"US DVD Sales":null,"Production Budget":800000,"Release Date":"Jul 18 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Film Sales Company","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":466},{"Title":"Leaving Las Vegas","US Gross":31983777,"Worldwide Gross":49800000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Oct 27 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Mike Figgis","Rotten Tomatoes Rating":89,"IMDB Rating":7.6,"IMDB Votes":42131},{"Title":"The Lawnmower Man","US Gross":32100816,"Worldwide Gross":32100816,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Mar 06 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":5.1,"IMDB Votes":12607},{"Title":"Lone Wolf McQuade","US Gross":12232628,"Worldwide Gross":12232628,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Apr 15 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":2917},{"Title":"Little Women","US Gross":50003303,"Worldwide Gross":50003303,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 21 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":89,"IMDB Rating":7.1,"IMDB Votes":16514},{"Title":"Lawrence of Arabia","US Gross":37495385,"Worldwide Gross":69995385,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 16 1962","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Dramatization","Director":"David Lean","Rotten Tomatoes Rating":98,"IMDB Rating":8.6,"IMDB Votes":79421},{"Title":"Menace II Society","US Gross":27731527,"Worldwide Gross":27731527,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"May 26 1993","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Albert Hughes","Rotten Tomatoes Rating":85,"IMDB Rating":7.4,"IMDB Votes":14807},{"Title":"Much Ado About Nothing","US Gross":22549338,"Worldwide Gross":22549338,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"May 07 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Goldwyn Entertainment","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Kenneth Branagh","Rotten Tomatoes Rating":90,"IMDB Rating":7.4,"IMDB Votes":22470},{"Title":"Major Dundee","US Gross":14873,"Worldwide Gross":14873,"US DVD Sales":null,"Production Budget":3800000,"Release Date":"Apr 07 1965","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":97,"IMDB Rating":6.7,"IMDB Votes":2588},{"Title":"The Magic Flute","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Dec 31 1969","MPAA Rating":null,"Running Time min":null,"Distributor":"Here Films","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Kenneth Branagh","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":499},{"Title":"Mata Hari","US Gross":900000,"Worldwide Gross":900000,"US DVD Sales":null,"Production Budget":558000,"Release Date":"Dec 31 1930","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.2,"IMDB Votes":376},{"Title":"Malcolm X","US Gross":48169910,"Worldwide Gross":48169910,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 18 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Spike Lee","Rotten Tomatoes Rating":90,"IMDB Rating":7.7,"IMDB Votes":23062},{"Title":"Maniac","US Gross":10000000,"Worldwide Gross":10000000,"US DVD Sales":null,"Production Budget":350000,"Release Date":"Dec 31 1979","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":3281},{"Title":"Mary Poppins","US Gross":102300000,"Worldwide Gross":102300000,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Aug 26 1964","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Musical","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":7.7,"IMDB Votes":34302},{"Title":"Mary Reilly","US Gross":5707094,"Worldwide Gross":6370115,"US DVD Sales":null,"Production Budget":47000000,"Release Date":"Feb 23 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Stephen Frears","Rotten Tomatoes Rating":27,"IMDB Rating":5.5,"IMDB Votes":6864},{"Title":"Maximum Risk","US Gross":14102929,"Worldwide Gross":51702929,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Sep 13 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":4.9,"IMDB Votes":7064},{"Title":"M*A*S*H","US Gross":81600000,"Worldwide Gross":81600000,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Jan 01 1970","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Robert Altman","Rotten Tomatoes Rating":null,"IMDB Rating":8.6,"IMDB Votes":8043},{"Title":"The Mask","US Gross":119920129,"Worldwide Gross":343900000,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jul 29 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Chuck Russell","Rotten Tomatoes Rating":75,"IMDB Rating":6.6,"IMDB Votes":72981},{"Title":"Mars Attacks!","US Gross":37771017,"Worldwide Gross":101371017,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Dec 13 1996","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Tim Burton","Rotten Tomatoes Rating":50,"IMDB Rating":6.3,"IMDB Votes":76396},{"Title":"Mo' Better Blues","US Gross":16153000,"Worldwide Gross":16153000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 03 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":72,"IMDB Rating":6.3,"IMDB Votes":4210},{"Title":"Moby Dick","US Gross":10400000,"Worldwide Gross":10400000,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Dec 31 1955","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"John Huston","Rotten Tomatoes Rating":67,"IMDB Rating":7.4,"IMDB Votes":5969},{"Title":"My Beautiful Laundrette","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":400000,"Release Date":"Apr 01 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Classics","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Stephen Frears","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":5381},{"Title":"Michael Jordan to the MAX","US Gross":18642318,"Worldwide Gross":18642318,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"May 05 2000","MPAA Rating":"Not Rated","Running Time min":46,"Distributor":"Giant Screen Films","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":7.2,"IMDB Votes":746},{"Title":"Michael Collins","US Gross":11092559,"Worldwide Gross":27572844,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Oct 11 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Neil Jordan","Rotten Tomatoes Rating":77,"IMDB Rating":6.9,"IMDB Votes":11805},{"Title":"My Cousin Vinny","US Gross":52929168,"Worldwide Gross":52929168,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Mar 13 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":86,"IMDB Rating":7.3,"IMDB Votes":30524},{"Title":"Medicine Man","US Gross":44948240,"Worldwide Gross":44948240,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Feb 07 1992","MPAA Rating":null,"Running Time min":87,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John McTiernan","Rotten Tomatoes Rating":22,"IMDB Rating":5.7,"IMDB Votes":9307},{"Title":"Madadayo","US Gross":48856,"Worldwide Gross":48856,"US DVD Sales":null,"Production Budget":11900000,"Release Date":"Mar 20 1998","MPAA Rating":null,"Running Time min":null,"Distributor":"WinStar Cinema","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Akira Kurosawa","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":1748},{"Title":"Modern Problems","US Gross":24474312,"Worldwide Gross":24474312,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Dec 25 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.5,"IMDB Votes":2144},{"Title":"Amadeus","US Gross":51973029,"Worldwide Gross":51973029,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Sep 19 1984","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Milos Forman","Rotten Tomatoes Rating":96,"IMDB Rating":8.4,"IMDB Votes":96997},{"Title":"Modern Times","US Gross":163245,"Worldwide Gross":163245,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Feb 05 2036","MPAA Rating":null,"Running Time min":null,"Distributor":"Kino International","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":8.5,"IMDB Votes":35773},{"Title":"The Mighty Ducks","US Gross":50752337,"Worldwide Gross":50752337,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 02 1992","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Stephen Herek","Rotten Tomatoes Rating":8,"IMDB Rating":5.9,"IMDB Votes":15479},{"Title":"A Man for All Seasons","US Gross":28350000,"Worldwide Gross":28350000,"US DVD Sales":null,"Production Budget":3900000,"Release Date":"Dec 12 1966","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Fred Zinnemann","Rotten Tomatoes Rating":85,"IMDB Rating":8.1,"IMDB Votes":12460},{"Title":"Megaforce","US Gross":5675599,"Worldwide Gross":5675599,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jun 25 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Hal Needham","Rotten Tomatoes Rating":null,"IMDB Rating":2.5,"IMDB Votes":1446},{"Title":"The Mirror Has Two Faces","US Gross":41267469,"Worldwide Gross":41267469,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Nov 15 1996","MPAA Rating":"PG-13","Running Time min":127,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Barbra Streisand","Rotten Tomatoes Rating":54,"IMDB Rating":6,"IMDB Votes":6055},{"Title":"Midnight Cowboy","US Gross":44785053,"Worldwide Gross":44785053,"US DVD Sales":null,"Production Budget":3600000,"Release Date":"May 25 1969","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Schlesinger","Rotten Tomatoes Rating":90,"IMDB Rating":8,"IMDB Votes":34053},{"Title":"Midnight Run","US Gross":38413606,"Worldwide Gross":81613606,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jul 20 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Martin Brest","Rotten Tomatoes Rating":96,"IMDB Rating":7.5,"IMDB Votes":24104},{"Title":"Major League","US Gross":49793054,"Worldwide Gross":49793054,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Apr 07 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":84,"IMDB Rating":6.9,"IMDB Votes":20798},{"Title":"The Molly Maguires","US Gross":2200000,"Worldwide Gross":2200000,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Dec 31 1969","MPAA Rating":"PG","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Martin Ritt","Rotten Tomatoes Rating":89,"IMDB Rating":6.8,"IMDB Votes":1304},{"Title":"Malevolence","US Gross":126021,"Worldwide Gross":257516,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Sep 10 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Painted Zebra Releasing","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":31,"IMDB Rating":5,"IMDB Votes":248},{"Title":"Mad Max 2: The Road Warrior","US Gross":24600832,"Worldwide Gross":24600832,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"May 21 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":null,"Major Genre":"Action","Creative Type":"Science Fiction","Director":"George Miller","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"It's a Mad Mad Mad Mad World","US Gross":46300000,"Worldwide Gross":60000000,"US DVD Sales":null,"Production Budget":9400000,"Release Date":"Nov 07 1963","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":14460},{"Title":"Mad Max","US Gross":8750000,"Worldwide Gross":99750000,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Mar 21 1980","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Action","Creative Type":"Science Fiction","Director":"George Miller","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":36548},{"Title":"Mad Max Beyond Thunderdome","US Gross":36230219,"Worldwide Gross":36230219,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jul 10 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":null,"Major Genre":"Action","Creative Type":"Science Fiction","Director":"George Miller","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":24273},{"Title":"The Man From Snowy River","US Gross":20659423,"Worldwide Gross":20659423,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Nov 03 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"George Miller","Rotten Tomatoes Rating":80,"IMDB Rating":7,"IMDB Votes":3101},{"Title":"Men of War","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Dec 19 1995","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":1435},{"Title":"Monty Python and the Holy Grail","US Gross":3427696,"Worldwide Gross":5028948,"US DVD Sales":null,"Production Budget":400000,"Release Date":"May 10 1975","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8.4,"IMDB Votes":155049},{"Title":"Men with Brooms","US Gross":4239767,"Worldwide Gross":4239767,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Mar 08 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":5.8,"IMDB Votes":2559},{"Title":"Mutiny on The Bounty","US Gross":13680000,"Worldwide Gross":13680000,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Nov 08 1962","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":7.9,"IMDB Votes":7608},{"Title":"Mommie Dearest","US Gross":19032000,"Worldwide Gross":25032000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Sep 18 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Frank Perry","Rotten Tomatoes Rating":57,"IMDB Rating":6.3,"IMDB Votes":4905},{"Title":"March or Die","US Gross":1000000,"Worldwide Gross":1000000,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Aug 05 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":1233},{"Title":"Memoirs of an Invisible Man","US Gross":14358033,"Worldwide Gross":14358033,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Feb 28 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"John Carpenter","Rotten Tomatoes Rating":24,"IMDB Rating":5.8,"IMDB Votes":8522},{"Title":"The Mongol King","US Gross":900,"Worldwide Gross":900,"US DVD Sales":null,"Production Budget":7000,"Release Date":"Dec 31 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"My Own Private Idaho","US Gross":6401336,"Worldwide Gross":6401336,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Sep 29 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Fine Line","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Gus Van Sant","Rotten Tomatoes Rating":84,"IMDB Rating":7,"IMDB Votes":17604},{"Title":"Moonraker","US Gross":70300000,"Worldwide Gross":210300000,"US DVD Sales":null,"Production Budget":31000000,"Release Date":"Jun 29 1979","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":6.1,"IMDB Votes":26760},{"Title":"Money Train","US Gross":35324232,"Worldwide Gross":77224232,"US DVD Sales":null,"Production Budget":68000000,"Release Date":"Nov 22 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Joseph Ruben","Rotten Tomatoes Rating":17,"IMDB Rating":5.2,"IMDB Votes":13972},{"Title":"Metropolitan","US Gross":2938000,"Worldwide Gross":2938000,"US DVD Sales":null,"Production Budget":430000,"Release Date":"Aug 03 1990","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Whit Stillman","Rotten Tomatoes Rating":88,"IMDB Rating":7.2,"IMDB Votes":3355},{"Title":"The Life of Brian","US Gross":20008693,"Worldwide Gross":20008693,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Aug 17 1979","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Rainbow Releasing","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Mallrats","US Gross":2108367,"Worldwide Gross":2108367,"US DVD Sales":null,"Production Budget":6100000,"Release Date":"Oct 20 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":53,"IMDB Rating":7.1,"IMDB Votes":52807},{"Title":"American Desi","US Gross":902835,"Worldwide Gross":1366235,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Mar 16 2001","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Eros Entertainment","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":6.7,"IMDB Votes":1047},{"Title":"Mrs. Winterbourne","US Gross":10039566,"Worldwide Gross":10039566,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 19 1996","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Richard Benjamin","Rotten Tomatoes Rating":7,"IMDB Rating":5.8,"IMDB Votes":2987},{"Title":"Mrs. Doubtfire","US Gross":219195051,"Worldwide Gross":441286003,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Nov 24 1993","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Chris Columbus","Rotten Tomatoes Rating":64,"IMDB Rating":6.6,"IMDB Votes":56917},{"Title":"Mr. Smith Goes To Washington","US Gross":9000000,"Worldwide Gross":9000000,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Dec 31 1938","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":"Frank Capra","Rotten Tomatoes Rating":97,"IMDB Rating":8.2,"IMDB Votes":33315},{"Title":"Mortal Kombat","US Gross":70433227,"Worldwide Gross":122133227,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Aug 18 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Based on Game","Major Genre":"Action","Creative Type":"Fantasy","Director":"Paul Anderson","Rotten Tomatoes Rating":35,"IMDB Rating":5.4,"IMDB Votes":29605},{"Title":"Frankenstein","US Gross":22006296,"Worldwide Gross":112006296,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Nov 04 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":null,"Director":"Kenneth Branagh","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":19913},{"Title":"The Misfits","US Gross":8200000,"Worldwide Gross":8200000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 31 1960","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Huston","Rotten Tomatoes Rating":100,"IMDB Rating":7.4,"IMDB Votes":6351},{"Title":"My Stepmother Is an Alien","US Gross":13854000,"Worldwide Gross":13854000,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Dec 09 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Richard Benjamin","Rotten Tomatoes Rating":13,"IMDB Rating":4.8,"IMDB Votes":9073},{"Title":"The Man Who Shot Liberty Valance","US Gross":8000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":3200000,"Release Date":"Jan 01 1962","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Ford","Rotten Tomatoes Rating":97,"IMDB Rating":8.1,"IMDB Votes":22681},{"Title":"Mission: Impossible","US Gross":180981886,"Worldwide Gross":456481886,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"May 21 1996","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":86222},{"Title":"Meteor","US Gross":8400000,"Worldwide Gross":8400000,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Dec 31 1978","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Ronald Neame","Rotten Tomatoes Rating":9,"IMDB Rating":4.7,"IMDB Votes":2969},{"Title":"Multiplicity","US Gross":20133326,"Worldwide Gross":20133326,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jul 17 1996","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Harold Ramis","Rotten Tomatoes Rating":44,"IMDB Rating":5.7,"IMDB Votes":11935},{"Title":"Mutual Appreciation","US Gross":103509,"Worldwide Gross":103509,"US DVD Sales":null,"Production Budget":30000,"Release Date":"Sep 01 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Goodbye Cruel Releasing","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":1102},{"Title":"The Muppet Christmas Carol","US Gross":27281507,"Worldwide Gross":27281507,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 11 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":7.5,"IMDB Votes":10853},{"Title":"The Man with the Golden Gun","US Gross":21000000,"Worldwide Gross":97600000,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Dec 20 1974","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":"Guy Hamilton","Rotten Tomatoes Rating":52,"IMDB Rating":6.7,"IMDB Votes":22431},{"Title":"My Fair Lady","US Gross":72000000,"Worldwide Gross":72000000,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Oct 22 1964","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"George Cukor","Rotten Tomatoes Rating":94,"IMDB Rating":7.9,"IMDB Votes":28039},{"Title":"Mystic Pizza","US Gross":12793213,"Worldwide Gross":12793213,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Oct 21 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Samuel Goldwyn Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Donald Petrie","Rotten Tomatoes Rating":82,"IMDB Rating":5.9,"IMDB Votes":8413},{"Title":"Namastey London","US Gross":1207007,"Worldwide Gross":6831069,"US DVD Sales":null,"Production Budget":8400000,"Release Date":"Mar 23 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Eros Entertainment","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":1511},{"Title":"Naturally Native","US Gross":10508,"Worldwide Gross":10508,"US DVD Sales":null,"Production Budget":700000,"Release Date":"Oct 08 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":91},{"Title":"Inchon","US Gross":4408636,"Worldwide Gross":4408636,"US DVD Sales":null,"Production Budget":46000000,"Release Date":"Sep 17 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3,"IMDB Votes":326},{"Title":"Indiana Jones and the Temple of Doom","US Gross":179880271,"Worldwide Gross":333080271,"US DVD Sales":18998388,"Production Budget":28000000,"Release Date":"May 23 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":85,"IMDB Rating":7.5,"IMDB Votes":110761},{"Title":"Indiana Jones and the Last Crusade","US Gross":197171806,"Worldwide Gross":474171806,"US DVD Sales":18740425,"Production Budget":48000000,"Release Date":"May 24 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":89,"IMDB Rating":8.3,"IMDB Votes":171572},{"Title":"Neal n' Nikki","US Gross":100358,"Worldwide Gross":329621,"US DVD Sales":null,"Production Budget":1300000,"Release Date":"Dec 09 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Yash Raj Films","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.5,"IMDB Votes":494},{"Title":"A Nightmare on Elm Street 4: The Dream Master","US Gross":49369899,"Worldwide Gross":49369899,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Aug 19 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Renny Harlin","Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":13310},{"Title":"Next Stop, Wonderland","US Gross":3386698,"Worldwide Gross":3456820,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Aug 21 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Brad Anderson","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Nighthawks","US Gross":14600000,"Worldwide Gross":19600000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Apr 10 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":6.3,"IMDB Votes":5649},{"Title":"The English Patient","US Gross":78716374,"Worldwide Gross":231716374,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 15 1996","MPAA Rating":"R","Running Time min":160,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Anthony Minghella","Rotten Tomatoes Rating":83,"IMDB Rating":7.3,"IMDB Votes":54484},{"Title":"Niagara","US Gross":2500000,"Worldwide Gross":2500000,"US DVD Sales":null,"Production Budget":1250000,"Release Date":"Jan 21 1953","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":4698},{"Title":"The Naked Gun 2Ω: The Smell of Fear","US Gross":86930411,"Worldwide Gross":86930411,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Jun 28 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"David Zucker","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":26384},{"Title":"Naked Gun 33 1/3: The Final Insult","US Gross":51041856,"Worldwide Gross":51041856,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Mar 18 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Segal","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":24904},{"Title":"National Lampoon's Animal House","US Gross":141600000,"Worldwide Gross":141600000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Jul 28 1978","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Landis","Rotten Tomatoes Rating":90,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Night of the Living Dead","US Gross":12000000,"Worldwide Gross":30000000,"US DVD Sales":null,"Production Budget":114000,"Release Date":"Oct 01 1968","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Walter Reade Organization","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":96,"IMDB Rating":6.6,"IMDB Votes":10083},{"Title":"No Looking Back","US Gross":143273,"Worldwide Gross":143273,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Mar 27 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Edward Burns","Rotten Tomatoes Rating":38,"IMDB Rating":5.7,"IMDB Votes":1145},{"Title":"The Nun's Story","US Gross":12800000,"Worldwide Gross":12800000,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Dec 31 1958","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Fred Zinnemann","Rotten Tomatoes Rating":93,"IMDB Rating":7.5,"IMDB Votes":3313},{"Title":"A Nightmare on Elm Street","US Gross":25504513,"Worldwide Gross":25504513,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Nov 09 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Wes Craven","Rotten Tomatoes Rating":95,"IMDB Rating":5.3,"IMDB Votes":12554},{"Title":"A Nightmare On Elm Street Part 2: Freddy's Revenge","US Gross":21163999,"Worldwide Gross":21163999,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Nov 01 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":16222},{"Title":"A Nightmare On Elm Street 3: Dream Warriors","US Gross":44793222,"Worldwide Gross":44793222,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Feb 27 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Chuck Russell","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":17354},{"Title":"A Nightmare On Elm Street: The Dream Child","US Gross":22168359,"Worldwide Gross":22168359,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Aug 11 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Stephen Hopkins","Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":10849},{"Title":"Freddy's Dead: The Final Nightmare","US Gross":34872033,"Worldwide Gross":34872033,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Sep 13 1991","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.5,"IMDB Votes":12779},{"Title":"Wes Craven's New Nightmare","US Gross":18090181,"Worldwide Gross":18090181,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Oct 14 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Wes Craven","Rotten Tomatoes Rating":81,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Night of the Living Dead","US Gross":5835247,"Worldwide Gross":5835247,"US DVD Sales":null,"Production Budget":4200000,"Release Date":"Oct 19 1990","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/Columbia","Source":"Remake","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":6.6,"IMDB Votes":10083},{"Title":"Notorious","US Gross":24464742,"Worldwide Gross":24464742,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 31 1945","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":97,"IMDB Rating":6.3,"IMDB Votes":9811},{"Title":"Never Say Never Again","US Gross":55500000,"Worldwide Gross":160000000,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Oct 07 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":65,"IMDB Rating":6,"IMDB Votes":21247},{"Title":"The Nutcracker","US Gross":2119994,"Worldwide Gross":2119994,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Dec 31 1992","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Emile Ardolino","Rotten Tomatoes Rating":50,"IMDB Rating":5.2,"IMDB Votes":561},{"Title":"Nowhere to Run","US Gross":22189039,"Worldwide Gross":52189039,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jan 15 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5,"IMDB Votes":6746},{"Title":"Interview with the Vampire: The Vampire Chronicles","US Gross":105264608,"Worldwide Gross":223564608,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Nov 11 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Neil Jordan","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":78953},{"Title":"The Nutty Professor","US Gross":128814019,"Worldwide Gross":273814019,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jun 28 1996","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Universal","Source":"Remake","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Tom Shadyac","Rotten Tomatoes Rating":67,"IMDB Rating":5.6,"IMDB Votes":32234},{"Title":"Die Unendliche Geschichte","US Gross":21300000,"Worldwide Gross":21300000,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Jul 20 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Wolfgang Petersen","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":25704},{"Title":"Interview with the Assassin","US Gross":47329,"Worldwide Gross":47329,"US DVD Sales":null,"Production Budget":750000,"Release Date":"Nov 15 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":6.6,"IMDB Votes":1107},{"Title":"Nixon","US Gross":13668249,"Worldwide Gross":34668249,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Dec 20 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Oliver Stone","Rotten Tomatoes Rating":75,"IMDB Rating":7.1,"IMDB Votes":13761},{"Title":"New York, New York","US Gross":13800000,"Worldwide Gross":13800000,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Jun 22 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":null,"Director":"Martin Scorsese","Rotten Tomatoes Rating":63,"IMDB Rating":6.7,"IMDB Votes":1692},{"Title":"New York Stories","US Gross":10763469,"Worldwide Gross":10763469,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Mar 01 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":74,"IMDB Rating":6.1,"IMDB Votes":6906},{"Title":"Obitaemyy ostrov","US Gross":0,"Worldwide Gross":15000000,"US DVD Sales":null,"Production Budget":36500000,"Release Date":"Jan 01 2009","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":2229},{"Title":"Octopussy","US Gross":67900000,"Worldwide Gross":187500000,"US DVD Sales":null,"Production Budget":27500000,"Release Date":"Jun 10 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Glen","Rotten Tomatoes Rating":47,"IMDB Rating":6.6,"IMDB Votes":23167},{"Title":"On Deadly Ground","US Gross":38590458,"Worldwide Gross":38590458,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 18 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Steven Seagal","Rotten Tomatoes Rating":null,"IMDB Rating":3.8,"IMDB Votes":9579},{"Title":"One Flew Over the Cuckoo's Nest","US Gross":108981275,"Worldwide Gross":108981275,"US DVD Sales":null,"Production Budget":4400000,"Release Date":"Nov 19 1975","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":null,"Creative Type":null,"Director":"Milos Forman","Rotten Tomatoes Rating":96,"IMDB Rating":8.9,"IMDB Votes":214457},{"Title":"The Offspring","US Gross":1355728,"Worldwide Gross":1355728,"US DVD Sales":null,"Production Budget":1100000,"Release Date":"Sep 04 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Moviestore Entertainment","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Jeff Burr","Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":424},{"Title":"On Her Majesty's Secret Service","US Gross":22800000,"Worldwide Gross":82000000,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Dec 18 1969","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":6.9,"IMDB Votes":23159},{"Title":"The Omen","US Gross":48570885,"Worldwide Gross":48570885,"US DVD Sales":null,"Production Budget":2800000,"Release Date":"Jun 25 1976","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":null,"Director":"Richard Donner","Rotten Tomatoes Rating":84,"IMDB Rating":5.4,"IMDB Votes":24523},{"Title":"The Omega Code","US Gross":12610552,"Worldwide Gross":12678312,"US DVD Sales":null,"Production Budget":7200000,"Release Date":"Oct 15 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Providence Entertainment","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":3.3,"IMDB Votes":3814},{"Title":"Out of Africa","US Gross":79096868,"Worldwide Gross":258210860,"US DVD Sales":null,"Production Budget":31000000,"Release Date":"Dec 18 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Sydney Pollack","Rotten Tomatoes Rating":63,"IMDB Rating":7,"IMDB Votes":19638},{"Title":"Out of the Dark","US Gross":419428,"Worldwide Gross":419428,"US DVD Sales":null,"Production Budget":1600000,"Release Date":"Mar 11 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":230},{"Title":"Ordinary People","US Gross":52302978,"Worldwide Gross":52302978,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Sep 19 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Robert Redford","Rotten Tomatoes Rating":91,"IMDB Rating":7,"IMDB Votes":138},{"Title":"The Other Side of Heaven","US Gross":4720371,"Worldwide Gross":4720371,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Dec 14 2001","MPAA Rating":"PG","Running Time min":null,"Distributor":"Excel Entertainment","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":1670},{"Title":"On the Down Low","US Gross":1987,"Worldwide Gross":1987,"US DVD Sales":null,"Production Budget":10000,"Release Date":"May 28 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Cinema Con Sabor","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":113},{"Title":"Othello","US Gross":2844379,"Worldwide Gross":2844379,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Dec 14 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":68,"IMDB Rating":6.9,"IMDB Votes":4289},{"Title":"On the Outs","US Gross":49772,"Worldwide Gross":49772,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Jul 15 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Fader Films","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":445},{"Title":"On the Waterfront","US Gross":9600000,"Worldwide Gross":9600000,"US DVD Sales":null,"Production Budget":910000,"Release Date":"Jul 28 1954","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Elia Kazan","Rotten Tomatoes Rating":100,"IMDB Rating":8.4,"IMDB Votes":41162},{"Title":"Outbreak","US Gross":67823573,"Worldwide Gross":67823573,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Mar 10 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Wolfgang Petersen","Rotten Tomatoes Rating":59,"IMDB Rating":6.4,"IMDB Votes":33192},{"Title":"The Outsiders","US Gross":25697647,"Worldwide Gross":25697647,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Mar 25 1983","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":65,"IMDB Rating":7,"IMDB Votes":23607},{"Title":"The Oxford Murders","US Gross":3607,"Worldwide Gross":8667348,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 06 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":6.1,"IMDB Votes":8066},{"Title":"Police Academy","US Gross":81198894,"Worldwide Gross":81198894,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Mar 23 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Hugh Wilson","Rotten Tomatoes Rating":47,"IMDB Rating":6.3,"IMDB Votes":23192},{"Title":"Police Academy 7: Mission to Moscow","US Gross":126247,"Worldwide Gross":126247,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 26 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.5,"IMDB Votes":13121},{"Title":"Paa","US Gross":199228,"Worldwide Gross":9791282,"US DVD Sales":null,"Production Budget":4300000,"Release Date":"Dec 04 2009","MPAA Rating":null,"Running Time min":null,"Distributor":"Reliance Big Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":7.3,"IMDB Votes":1059},{"Title":"Pale Rider","US Gross":41410568,"Worldwide Gross":41410568,"US DVD Sales":null,"Production Budget":6900000,"Release Date":"Jun 28 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":92,"IMDB Rating":7.1,"IMDB Votes":15352},{"Title":"Patriot Games","US Gross":83287363,"Worldwide Gross":178100000,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jun 05 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Phillip Noyce","Rotten Tomatoes Rating":75,"IMDB Rating":6.9,"IMDB Votes":29544},{"Title":"The Pallbearer","US Gross":5656388,"Worldwide Gross":5656388,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"May 03 1996","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Matt Reeves","Rotten Tomatoes Rating":39,"IMDB Rating":4.7,"IMDB Votes":4166},{"Title":"Pocahontas","US Gross":141579773,"Worldwide Gross":347100000,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jun 10 1995","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":6,"IMDB Votes":26690},{"Title":"Pocketful of Miracles","US Gross":5000000,"Worldwide Gross":5000000,"US DVD Sales":null,"Production Budget":2900000,"Release Date":"Dec 31 1960","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Frank Capra","Rotten Tomatoes Rating":63,"IMDB Rating":7.2,"IMDB Votes":2365},{"Title":"PCU","US Gross":4333569,"Worldwide Gross":4333569,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Apr 29 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":6,"IMDB Votes":6967},{"Title":"Pete's Dragon","US Gross":36000000,"Worldwide Gross":36000000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Nov 03 1977","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":6,"IMDB Votes":4620},{"Title":"Pat Garrett and Billy the Kid","US Gross":8000000,"Worldwide Gross":11000000,"US DVD Sales":null,"Production Budget":4638783,"Release Date":"May 23 1973","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Sam Peckinpah","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":6374},{"Title":"Poltergeist","US Gross":74706019,"Worldwide Gross":121706019,"US DVD Sales":null,"Production Budget":10700000,"Release Date":"Jun 04 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Tobe Hooper","Rotten Tomatoes Rating":86,"IMDB Rating":7.4,"IMDB Votes":32817},{"Title":"Poltergeist III","US Gross":14114000,"Worldwide Gross":14114000,"US DVD Sales":null,"Production Budget":9500000,"Release Date":"Jun 10 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":3.8,"IMDB Votes":5387},{"Title":"Phantasm II","US Gross":7000000,"Worldwide Gross":7000000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Jul 08 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":6.3,"IMDB Votes":3781},{"Title":"Phenomenon","US Gross":104636382,"Worldwide Gross":142836382,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Jul 05 1996","MPAA Rating":"PG","Running Time min":124,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Jon Turteltaub","Rotten Tomatoes Rating":50,"IMDB Rating":6.3,"IMDB Votes":26823},{"Title":"Philadelphia","US Gross":77324422,"Worldwide Gross":201324422,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Dec 22 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/TriStar","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Jonathan Demme","Rotten Tomatoes Rating":74,"IMDB Rating":7.6,"IMDB Votes":53283},{"Title":"The Phantom","US Gross":17220599,"Worldwide Gross":17220599,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jun 07 1996","MPAA Rating":"PG","Running Time min":100,"Distributor":"Paramount Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Simon Wincer","Rotten Tomatoes Rating":43,"IMDB Rating":4.8,"IMDB Votes":9477},{"Title":"Pi","US Gross":3221152,"Worldwide Gross":4678513,"US DVD Sales":null,"Production Budget":68000,"Release Date":"Jul 10 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Live Entertainment","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Darren Aronofsky","Rotten Tomatoes Rating":86,"IMDB Rating":7.5,"IMDB Votes":53699},{"Title":"Pink Flamingos","US Gross":413802,"Worldwide Gross":413802,"US DVD Sales":null,"Production Budget":12000,"Release Date":"Apr 11 1997","MPAA Rating":"NC-17","Running Time min":null,"Distributor":"Fine Line","Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Waters","Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":7947},{"Title":"The Pirate","US Gross":2956000,"Worldwide Gross":2956000,"US DVD Sales":null,"Production Budget":3700000,"Release Date":"Dec 31 1947","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Vincente Minnelli","Rotten Tomatoes Rating":71,"IMDB Rating":7.1,"IMDB Votes":1635},{"Title":"The Planet of the Apes","US Gross":33395426,"Worldwide Gross":33395426,"US DVD Sales":null,"Production Budget":5800000,"Release Date":"Feb 08 1968","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Franklin J. Schaffner","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Player","US Gross":21706101,"Worldwide Gross":28876702,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Apr 10 1992","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Robert Altman","Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":24451},{"Title":"Apollo 13","US Gross":172070496,"Worldwide Gross":334100000,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Jun 30 1995","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ron Howard","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":87605},{"Title":"Platoon","US Gross":137963328,"Worldwide Gross":137963328,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Dec 19 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Oliver Stone","Rotten Tomatoes Rating":86,"IMDB Rating":8.2,"IMDB Votes":108641},{"Title":"Panic","US Gross":779137,"Worldwide Gross":889279,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Dec 01 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Roxie Releasing","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":92,"IMDB Rating":2.7,"IMDB Votes":473},{"Title":"The Adventures of Pinocchio","US Gross":15382170,"Worldwide Gross":36682170,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jul 26 1996","MPAA Rating":"G","Running Time min":94,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Steve Barron","Rotten Tomatoes Rating":27,"IMDB Rating":5.3,"IMDB Votes":1734},{"Title":"Pandora's Box","US Gross":881950,"Worldwide Gross":881950,"US DVD Sales":null,"Production Budget":800000,"Release Date":"Aug 09 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Kino International","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":386},{"Title":"Pink Narcissus","US Gross":8231,"Worldwide Gross":8231,"US DVD Sales":null,"Production Budget":27000,"Release Date":"Dec 24 1999","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":384},{"Title":"Penitentiary","US Gross":287000,"Worldwide Gross":287000,"US DVD Sales":null,"Production Budget":100000,"Release Date":"May 10 1980","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":233},{"Title":"The Pursuit of D.B. Cooper","US Gross":2104164,"Worldwide Gross":2104164,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Nov 13 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Roger Spottiswoode","Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":442},{"Title":"Poetic Justice","US Gross":27450453,"Worldwide Gross":27450453,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Jul 23 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Singleton","Rotten Tomatoes Rating":36,"IMDB Rating":5.1,"IMDB Votes":3689},{"Title":"Porky's","US Gross":109492484,"Worldwide Gross":109492484,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Mar 19 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":15861},{"Title":"Peace, Propaganda and the Promised Land","US Gross":4930,"Worldwide Gross":4930,"US DVD Sales":null,"Production Budget":70000,"Release Date":"Jan 28 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Arab Film Distribution","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3,"IMDB Votes":75},{"Title":"Popeye","US Gross":49823037,"Worldwide Gross":49823037,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 12 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Robert Altman","Rotten Tomatoes Rating":56,"IMDB Rating":4.9,"IMDB Votes":11433},{"Title":"Predator 2","US Gross":28317513,"Worldwide Gross":54768418,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 21 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Stephen Hopkins","Rotten Tomatoes Rating":23,"IMDB Rating":6,"IMDB Votes":35411},{"Title":"Predator","US Gross":59735548,"Worldwide Gross":98267558,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jun 12 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"John McTiernan","Rotten Tomatoes Rating":76,"IMDB Rating":7.8,"IMDB Votes":88522},{"Title":"The Princess Bride","US Gross":30857000,"Worldwide Gross":30857000,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Sep 25 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Rob Reiner","Rotten Tomatoes Rating":95,"IMDB Rating":8.1,"IMDB Votes":123571},{"Title":"Prison","US Gross":354704,"Worldwide Gross":354704,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Mar 04 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Empire Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":null,"Director":"Renny Harlin","Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":1154},{"Title":"LÈon","US Gross":19284974,"Worldwide Gross":45284974,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Nov 18 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Luc Besson","Rotten Tomatoes Rating":null,"IMDB Rating":8.6,"IMDB Votes":199762},{"Title":"Prophecy","US Gross":21000000,"Worldwide Gross":21000000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jun 15 1979","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Frankenheimer","Rotten Tomatoes Rating":25,"IMDB Rating":4.7,"IMDB Votes":1381},{"Title":"The Prince of Tides","US Gross":74787599,"Worldwide Gross":74787599,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 25 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Barbra Streisand","Rotten Tomatoes Rating":74,"IMDB Rating":6.4,"IMDB Votes":6829},{"Title":"Proud","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 23 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Castle Hill Productions","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":161},{"Title":"Pretty Woman","US Gross":178406268,"Worldwide Gross":463400000,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Mar 23 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Garry Marshall","Rotten Tomatoes Rating":62,"IMDB Rating":6.7,"IMDB Votes":60742},{"Title":"Partition","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 02 2007","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":6.6,"IMDB Votes":1275},{"Title":"The Postman Always Rings Twice","US Gross":12200000,"Worldwide Gross":44200000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Mar 20 1981","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Bob Rafelson","Rotten Tomatoes Rating":70,"IMDB Rating":6.4,"IMDB Votes":6886},{"Title":"Peggy Sue Got Married","US Gross":41382841,"Worldwide Gross":41382841,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Oct 10 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/TriStar","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":88,"IMDB Rating":6.3,"IMDB Votes":12457},{"Title":"Peter Pan","US Gross":87400000,"Worldwide Gross":87400000,"US DVD Sales":90536550,"Production Budget":4000000,"Release Date":"Feb 05 1953","MPAA Rating":"PG","Running Time min":null,"Distributor":"RKO Radio Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":7.1,"IMDB Votes":16894},{"Title":"Pet Sematary","US Gross":57469179,"Worldwide Gross":57469179,"US DVD Sales":null,"Production Budget":11500000,"Release Date":"Apr 21 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":6.3,"IMDB Votes":19257},{"Title":"Patton","US Gross":62500000,"Worldwide Gross":62500000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jan 01 1970","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Franklin J. Schaffner","Rotten Tomatoes Rating":97,"IMDB Rating":8.1,"IMDB Votes":39570},{"Title":"The Puffy Chair","US Gross":194523,"Worldwide Gross":194523,"US DVD Sales":null,"Production Budget":15000,"Release Date":"Jun 02 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"IDP/Goldwyn/Roadside","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":1701},{"Title":"Pulp Fiction","US Gross":107928762,"Worldwide Gross":212928762,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Oct 14 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Quentin Tarantino","Rotten Tomatoes Rating":94,"IMDB Rating":8.9,"IMDB Votes":417703},{"Title":"Paint Your Wagon","US Gross":31678778,"Worldwide Gross":31678778,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 15 1969","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Play","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":6.5,"IMDB Votes":5037},{"Title":"The Prisoner of Zenda","US Gross":7000000,"Worldwide Gross":7000000,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"May 25 1979","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":406},{"Title":"The Perez Family","US Gross":2794056,"Worldwide Gross":2794056,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"May 12 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Goldwyn Entertainment","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Mira Nair","Rotten Tomatoes Rating":67,"IMDB Rating":6,"IMDB Votes":1177},{"Title":"Q","US Gross":255000,"Worldwide Gross":255000,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Nov 19 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"United Film Distribution Co.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":1899},{"Title":"The Quick and the Dead","US Gross":18552460,"Worldwide Gross":18552460,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Feb 10 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Sam Raimi","Rotten Tomatoes Rating":56,"IMDB Rating":6.3,"IMDB Votes":27352},{"Title":"Quigley Down Under","US Gross":21413105,"Worldwide Gross":21413105,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 19 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Simon Wincer","Rotten Tomatoes Rating":60,"IMDB Rating":6.5,"IMDB Votes":6001},{"Title":"La Guerre du feu","US Gross":20959585,"Worldwide Gross":20959585,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Feb 12 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Jean-Jacques Annaud","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":6198},{"Title":"Quo Vadis?","US Gross":30000000,"Worldwide Gross":30000000,"US DVD Sales":null,"Production Budget":8250000,"Release Date":"Feb 23 1951","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":88,"IMDB Rating":5.8,"IMDB Votes":898},{"Title":"Rang De Basanti","US Gross":2197694,"Worldwide Gross":29197694,"US DVD Sales":null,"Production Budget":5300000,"Release Date":"Jan 27 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"UTV Communications","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8.1,"IMDB Votes":12116},{"Title":"Robin and Marian","US Gross":8000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Mar 11 1976","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":68,"IMDB Rating":6.5,"IMDB Votes":4800},{"Title":"Ransom","US Gross":136492681,"Worldwide Gross":308700000,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Nov 08 1996","MPAA Rating":"R","Running Time min":121,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Ron Howard","Rotten Tomatoes Rating":70,"IMDB Rating":6.6,"IMDB Votes":38524},{"Title":"Rosemary's Baby","US Gross":33395426,"Worldwide Gross":33395426,"US DVD Sales":null,"Production Budget":3200000,"Release Date":"Jun 12 1968","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Roman Polanski","Rotten Tomatoes Rating":98,"IMDB Rating":8.1,"IMDB Votes":50860},{"Title":"Rebecca","US Gross":6000000,"Worldwide Gross":6000000,"US DVD Sales":null,"Production Budget":1288000,"Release Date":"Dec 31 1939","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":100,"IMDB Rating":8.4,"IMDB Votes":35429},{"Title":"Robin Hood: Prince of Thieves","US Gross":165493908,"Worldwide Gross":390500000,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 14 1991","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Traditional/Legend/Fairytale","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Kevin Reynolds","Rotten Tomatoes Rating":56,"IMDB Rating":6.7,"IMDB Votes":54480},{"Title":"Rumble in the Bronx","US Gross":32281907,"Worldwide Gross":36238752,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Feb 23 1996","MPAA Rating":"R","Running Time min":100,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Rob Roy","US Gross":31390587,"Worldwide Gross":31390587,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Apr 07 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Michael Caton-Jones","Rotten Tomatoes Rating":71,"IMDB Rating":6.8,"IMDB Votes":15630},{"Title":"Raging Bull","US Gross":23380203,"Worldwide Gross":23380203,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Nov 14 1980","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Martin Scorsese","Rotten Tomatoes Rating":98,"IMDB Rating":8.4,"IMDB Votes":90015},{"Title":"Richard III","US Gross":2684904,"Worldwide Gross":4204857,"US DVD Sales":null,"Production Budget":9200000,"Release Date":"Dec 29 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":95,"IMDB Rating":7.5,"IMDB Votes":6625},{"Title":"Raising Cain","US Gross":21171695,"Worldwide Gross":21171695,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Aug 07 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":53,"IMDB Rating":5.7,"IMDB Votes":5135},{"Title":"RoboCop","US Gross":53424681,"Worldwide Gross":53424681,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Jul 17 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Paul Verhoeven","Rotten Tomatoes Rating":88,"IMDB Rating":7.6,"IMDB Votes":52898},{"Title":"RoboCop 3","US Gross":10696210,"Worldwide Gross":10696210,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Nov 05 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.4,"IMDB Votes":13310},{"Title":"Ri¢hie Ri¢h","US Gross":38087756,"Worldwide Gross":38087756,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Dec 21 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Donald Petrie","Rotten Tomatoes Rating":25,"IMDB Rating":4.7,"IMDB Votes":12687},{"Title":"Radio Days","US Gross":14792779,"Worldwide Gross":14792779,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Jan 30 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":95,"IMDB Rating":7.5,"IMDB Votes":10839},{"Title":"Radio Flyer","US Gross":4651977,"Worldwide Gross":4651977,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Feb 21 1992","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Richard Donner","Rotten Tomatoes Rating":43,"IMDB Rating":6.5,"IMDB Votes":6210},{"Title":"Reservoir Dogs","US Gross":2832029,"Worldwide Gross":2832029,"US DVD Sales":18806836,"Production Budget":1200000,"Release Date":"Oct 23 1992","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Quentin Tarantino","Rotten Tomatoes Rating":96,"IMDB Rating":8.4,"IMDB Votes":212985},{"Title":"Raiders of the Lost Ark","US Gross":245034358,"Worldwide Gross":386800358,"US DVD Sales":19608618,"Production Budget":20000000,"Release Date":"Jun 12 1981","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":null,"IMDB Rating":8.7,"IMDB Votes":242661},{"Title":"Red River","US Gross":9012000,"Worldwide Gross":9012000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Dec 31 1947","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Howard Hawks","Rotten Tomatoes Rating":100,"IMDB Rating":7.8,"IMDB Votes":10629},{"Title":"Reds","US Gross":50000000,"Worldwide Gross":50000000,"US DVD Sales":null,"Production Budget":33500000,"Release Date":"Dec 04 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Warren Beatty","Rotten Tomatoes Rating":94,"IMDB Rating":7.4,"IMDB Votes":8455},{"Title":"Le Violon rouge","US Gross":10019109,"Worldwide Gross":10019109,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jun 11 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":14545},{"Title":"Red Sonja","US Gross":6905861,"Worldwide Gross":6905861,"US DVD Sales":null,"Production Budget":17900000,"Release Date":"Jun 28 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Fantasy","Director":"Richard Fleischer","Rotten Tomatoes Rating":20,"IMDB Rating":4.4,"IMDB Votes":11896},{"Title":"Star Wars Ep. VI: Return of the Jedi","US Gross":309205079,"Worldwide Gross":572700000,"US DVD Sales":12356425,"Production Budget":32500000,"Release Date":"May 25 1983","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Richard Marquand","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Return","US Gross":501752,"Worldwide Gross":2658490,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Feb 06 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Kino International","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.3,"IMDB Votes":236},{"Title":"The Rise and Fall of Miss Thang","US Gross":401,"Worldwide Gross":401,"US DVD Sales":null,"Production Budget":10000,"Release Date":"Aug 14 2008","MPAA Rating":"Not Rated","Running Time min":87,"Distributor":"Lavender House Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Roger & Me","US Gross":6706368,"Worldwide Gross":6706368,"US DVD Sales":null,"Production Budget":140000,"Release Date":"Dec 20 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Michael Moore","Rotten Tomatoes Rating":100,"IMDB Rating":7.5,"IMDB Votes":14883},{"Title":"The Right Stuff","US Gross":21500000,"Worldwide Gross":21500000,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Oct 21 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Dramatization","Director":"Philip Kaufman","Rotten Tomatoes Rating":97,"IMDB Rating":7.9,"IMDB Votes":24275},{"Title":"The Rocky Horror Picture Show","US Gross":139876417,"Worldwide Gross":139876417,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Sep 26 1975","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":null,"Major Genre":"Musical","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":77,"IMDB Rating":7.1,"IMDB Votes":41265},{"Title":"Road House","US Gross":30050028,"Worldwide Gross":30050028,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"May 19 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":5.8,"IMDB Votes":14085},{"Title":"Romeo Is Bleeding","US Gross":3275585,"Worldwide Gross":3275585,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 04 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":24,"IMDB Rating":6.3,"IMDB Votes":6537},{"Title":"Rockaway","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jul 07 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Off-Hollywood Distribution","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.2,"IMDB Votes":232},{"Title":"Rocky","US Gross":117235147,"Worldwide Gross":225000000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Nov 21 1976","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":"John G. Avildsen","Rotten Tomatoes Rating":null,"IMDB Rating":4,"IMDB Votes":84},{"Title":"Return of the Living Dead Part II","US Gross":9205924,"Worldwide Gross":9205924,"US DVD Sales":null,"Production Budget":6200000,"Release Date":"Jan 15 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Lorimar Motion Pictures","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":4661},{"Title":"The R.M.","US Gross":1111615,"Worldwide Gross":1111615,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jan 31 2003","MPAA Rating":"PG","Running Time min":null,"Distributor":"Halestone","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":5.5,"IMDB Votes":449},{"Title":"Renaissance Man","US Gross":24172899,"Worldwide Gross":24172899,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jun 03 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Penny Marshall","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":7650},{"Title":"Rambo: First Blood Part II","US Gross":150415432,"Worldwide Gross":300400000,"US DVD Sales":null,"Production Budget":44000000,"Release Date":"May 22 1985","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/TriStar","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"George P. Cosmatos","Rotten Tomatoes Rating":30,"IMDB Rating":5.8,"IMDB Votes":38548},{"Title":"Rambo III","US Gross":53715611,"Worldwide Gross":188715611,"US DVD Sales":null,"Production Budget":58000000,"Release Date":"May 25 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/TriStar","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":4.9,"IMDB Votes":31551},{"Title":"Romeo+Juliet","US Gross":46338728,"Worldwide Gross":147542381,"US DVD Sales":null,"Production Budget":14500000,"Release Date":"Nov 01 1996","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"20th Century Fox","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Baz Luhrmann","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":78},{"Title":"Ramanujan","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 31 2007","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Stephen Fry","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Rain Man","US Gross":172825435,"Worldwide Gross":412800000,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Dec 16 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":87,"IMDB Rating":8,"IMDB Votes":106163},{"Title":"Rapa Nui","US Gross":305070,"Worldwide Gross":305070,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Sep 11 1994","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Kevin Reynolds","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":2081},{"Title":"Roar","US Gross":2000000,"Worldwide Gross":2000000,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Dec 31 1980","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":228},{"Title":"The Robe","US Gross":36000000,"Worldwide Gross":36000000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Sep 16 1953","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":6.7,"IMDB Votes":2913},{"Title":"The Rock","US Gross":134069511,"Worldwide Gross":336069511,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jun 07 1996","MPAA Rating":"R","Running Time min":136,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Michael Bay","Rotten Tomatoes Rating":66,"IMDB Rating":7.2,"IMDB Votes":108324},{"Title":"The Remains of the Day","US Gross":22954968,"Worldwide Gross":63954968,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Nov 05 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"James Ivory","Rotten Tomatoes Rating":97,"IMDB Rating":7.9,"IMDB Votes":21736},{"Title":"Airplane!","US Gross":83453539,"Worldwide Gross":83453539,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Jul 04 1980","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Jerry Zucker","Rotten Tomatoes Rating":98,"IMDB Rating":7.8,"IMDB Votes":57000},{"Title":"Repo Man","US Gross":2300000,"Worldwide Gross":2300000,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Mar 02 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":97,"IMDB Rating":6.7,"IMDB Votes":12438},{"Title":"Rocket Singh: Salesman of the Year","US Gross":164649,"Worldwide Gross":5348767,"US DVD Sales":null,"Production Budget":1070000,"Release Date":"Dec 11 2009","MPAA Rating":null,"Running Time min":null,"Distributor":"Yash Raj Films","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":1436},{"Title":"Raise the Titanic","US Gross":7000000,"Worldwide Gross":7000000,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 01 1980","MPAA Rating":"PG","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":3.9,"IMDB Votes":1757},{"Title":"Restoration","US Gross":4100000,"Worldwide Gross":4100000,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Dec 29 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":4024},{"Title":"The Return of the Living Dead","US Gross":14237880,"Worldwide Gross":14237880,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Aug 16 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":null,"Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":88,"IMDB Rating":7.1,"IMDB Votes":13621},{"Title":"Rejsen til Saturn","US Gross":0,"Worldwide Gross":2783634,"US DVD Sales":null,"Production Budget":2700000,"Release Date":"Sep 26 2008","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":849},{"Title":"Return to the Land of Wonders","US Gross":1338,"Worldwide Gross":1338,"US DVD Sales":null,"Production Budget":5000,"Release Date":"Jul 13 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Arab Film Distribution","Source":null,"Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8.5,"IMDB Votes":35},{"Title":"Return to Oz","US Gross":10618813,"Worldwide Gross":10618813,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Jun 21 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":6.7,"IMDB Votes":7491},{"Title":"The Running Man","US Gross":38122000,"Worldwide Gross":38122000,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Nov 13 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/TriStar","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Paul Michael Glaser","Rotten Tomatoes Rating":63,"IMDB Rating":6.4,"IMDB Votes":36308},{"Title":"Run Lola Run","US Gross":7267324,"Worldwide Gross":14533173,"US DVD Sales":null,"Production Budget":1750000,"Release Date":"Jun 18 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Tom Tykwer","Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":91},{"Title":"Revolution#9","US Gross":9118,"Worldwide Gross":9118,"US DVD Sales":null,"Production Budget":350000,"Release Date":"Nov 15 2002","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":252},{"Title":"The River Wild","US Gross":46815000,"Worldwide Gross":94215000,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Sep 30 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Curtis Hanson","Rotten Tomatoes Rating":56,"IMDB Rating":6.2,"IMDB Votes":14285},{"Title":"Se7en","US Gross":100125643,"Worldwide Gross":328125643,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 22 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"David Fincher","Rotten Tomatoes Rating":null,"IMDB Rating":8.7,"IMDB Votes":278918},{"Title":"Safe Men","US Gross":21210,"Worldwide Gross":21210,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Aug 07 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"October Films","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":58,"IMDB Rating":5.9,"IMDB Votes":1743},{"Title":"Secrets & Lies","US Gross":13417292,"Worldwide Gross":13417292,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Sep 28 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"October Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Mike Leigh","Rotten Tomatoes Rating":94,"IMDB Rating":7.9,"IMDB Votes":14364},{"Title":"Sgt. Bilko","US Gross":30356589,"Worldwide Gross":37956589,"US DVD Sales":null,"Production Budget":39000000,"Release Date":"Mar 29 1996","MPAA Rating":"PG","Running Time min":93,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5.2,"IMDB Votes":9693},{"Title":"Sabrina","US Gross":53458319,"Worldwide Gross":87100000,"US DVD Sales":null,"Production Budget":58000000,"Release Date":"Dec 15 1995","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Sydney Pollack","Rotten Tomatoes Rating":61,"IMDB Rating":6,"IMDB Votes":15749},{"Title":"Subway","US Gross":390659,"Worldwide Gross":1663296,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Nov 06 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Island/Alive","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Luc Besson","Rotten Tomatoes Rating":86,"IMDB Rating":6.2,"IMDB Votes":5904},{"Title":"School Daze","US Gross":14545844,"Worldwide Gross":14545844,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Feb 12 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":58,"IMDB Rating":5.3,"IMDB Votes":2667},{"Title":"Scarface","US Gross":44942821,"Worldwide Gross":44942821,"US DVD Sales":15386092,"Production Budget":25000000,"Release Date":"Dec 09 1983","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Universal","Source":"Remake","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":88,"IMDB Rating":8.2,"IMDB Votes":152262},{"Title":"Schindler's List","US Gross":96067179,"Worldwide Gross":321200000,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Dec 15 1993","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Steven Spielberg","Rotten Tomatoes Rating":97,"IMDB Rating":8.9,"IMDB Votes":276283},{"Title":"A Streetcar Named Desire","US Gross":8000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Sep 18 1951","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Play","Major Genre":null,"Creative Type":null,"Director":"Elia Kazan","Rotten Tomatoes Rating":null,"IMDB Rating":8.1,"IMDB Votes":33781},{"Title":"Shadow Conspiracy","US Gross":2154540,"Worldwide Gross":2154540,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jan 31 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"George P. Cosmatos","Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":2427},{"Title":"Short Cut to Nirvana: Kumbh Mela","US Gross":381225,"Worldwide Gross":439651,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Oct 22 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Mela Films","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":75,"IMDB Rating":6.9,"IMDB Votes":105},{"Title":"Spartacus","US Gross":30000000,"Worldwide Gross":60000000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Oct 07 1960","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Dramatization","Director":"Stanley Kubrick","Rotten Tomatoes Rating":96,"IMDB Rating":8,"IMDB Votes":50856},{"Title":"Sunday","US Gross":410919,"Worldwide Gross":450349,"US DVD Sales":null,"Production Budget":450000,"Release Date":"Aug 22 1997","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":79,"IMDB Rating":6.9,"IMDB Votes":436},{"Title":"She Done Him Wrong","US Gross":2000000,"Worldwide Gross":2000000,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Feb 09 2033","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":6.7,"IMDB Votes":1795},{"Title":"Secret, The","US Gross":0,"Worldwide Gross":0,"US DVD Sales":65505095,"Production Budget":3500000,"Release Date":"Nov 07 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Documentary","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Sea Rex 3D: Journey to a Prehistoric World","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Dec 31 1969","MPAA Rating":null,"Running Time min":null,"Distributor":"3D Entertainment","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"State Fair","US Gross":3500000,"Worldwide Gross":3500000,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Mar 09 1962","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":5.7,"IMDB Votes":436},{"Title":"Sticky Fingers of Time","US Gross":18195,"Worldwide Gross":20628,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Jan 08 1999","MPAA Rating":null,"Running Time min":null,"Distributor":"Strand","Source":null,"Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Stargate - The Ark of Truth","US Gross":0,"Worldwide Gross":0,"US DVD Sales":8962832,"Production Budget":7000000,"Release Date":"Mar 11 2008","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"She's Gotta Have It","US Gross":7137502,"Worldwide Gross":7137502,"US DVD Sales":null,"Production Budget":175000,"Release Date":"Aug 08 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Island","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":93,"IMDB Rating":6.2,"IMDB Votes":2594},{"Title":"Stargate","US Gross":71565669,"Worldwide Gross":196565669,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Oct 28 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Roland Emmerich","Rotten Tomatoes Rating":46,"IMDB Rating":6.7,"IMDB Votes":47174},{"Title":"The Shadow","US Gross":31835600,"Worldwide Gross":31835600,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 01 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Russell Mulcahy","Rotten Tomatoes Rating":34,"IMDB Rating":5.6,"IMDB Votes":9530},{"Title":"Show Boat","US Gross":11000000,"Worldwide Gross":11000000,"US DVD Sales":null,"Production Budget":2300000,"Release Date":"Sep 24 1951","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":89,"IMDB Rating":6.9,"IMDB Votes":1788},{"Title":"Shadowlands","US Gross":25842377,"Worldwide Gross":25842377,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Dec 29 1993","MPAA Rating":"R","Running Time min":null,"Distributor":"Savoy","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Sir Richard Attenborough","Rotten Tomatoes Rating":96,"IMDB Rating":7.4,"IMDB Votes":7689},{"Title":"Shanghai Surprise","US Gross":2315000,"Worldwide Gross":2315000,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Aug 29 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":2.6,"IMDB Votes":2591},{"Title":"Shalako","US Gross":2620000,"Worldwide Gross":2620000,"US DVD Sales":null,"Production Budget":1455000,"Release Date":"Dec 31 1967","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.3,"IMDB Votes":1090},{"Title":"Sheena","US Gross":5778353,"Worldwide Gross":5778353,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Aug 17 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"John Guillermin","Rotten Tomatoes Rating":38,"IMDB Rating":4.3,"IMDB Votes":1598},{"Title":"Shine","US Gross":35811509,"Worldwide Gross":35811509,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Nov 22 1996","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Fine Line","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Scott Hicks","Rotten Tomatoes Rating":90,"IMDB Rating":7.6,"IMDB Votes":22439},{"Title":"The Shining","US Gross":44017374,"Worldwide Gross":44017374,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"May 23 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Stanley Kubrick","Rotten Tomatoes Rating":87,"IMDB Rating":8.5,"IMDB Votes":177762},{"Title":"Haakon Haakonsen","US Gross":15024232,"Worldwide Gross":15024232,"US DVD Sales":null,"Production Budget":8500000,"Release Date":"Mar 01 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":1125},{"Title":"Ishtar","US Gross":14375181,"Worldwide Gross":14375181,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"May 15 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":3.7,"IMDB Votes":6094},{"Title":"Showgirls","US Gross":20254932,"Worldwide Gross":20254932,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Sep 22 1995","MPAA Rating":"NC-17","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Paul Verhoeven","Rotten Tomatoes Rating":12,"IMDB Rating":4.1,"IMDB Votes":27004},{"Title":"The Shawshank Redemption","US Gross":28241469,"Worldwide Gross":28241469,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Sep 23 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Frank Darabont","Rotten Tomatoes Rating":88,"IMDB Rating":9.2,"IMDB Votes":519541},{"Title":"Silver Bullet","US Gross":10803211,"Worldwide Gross":10803211,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Oct 11 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":5.9,"IMDB Votes":6387},{"Title":"Side Effects","US Gross":44701,"Worldwide Gross":44701,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Sep 09 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sky Island","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Set It Off","US Gross":36049108,"Worldwide Gross":36049108,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Nov 06 1996","MPAA Rating":"R","Running Time min":120,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"F. Gary Gray","Rotten Tomatoes Rating":61,"IMDB Rating":6.3,"IMDB Votes":4570},{"Title":"The Silence of the Lambs","US Gross":130726716,"Worldwide Gross":275726716,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Feb 14 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Jonathan Demme","Rotten Tomatoes Rating":96,"IMDB Rating":8.7,"IMDB Votes":244856},{"Title":"Silver Medalist","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":2600000,"Release Date":"Feb 29 2008","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Silent Trigger","US Gross":76382,"Worldwide Gross":76382,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jun 26 1996","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Russell Mulcahy","Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":1364},{"Title":"Thinner","US Gross":15171475,"Worldwide Gross":15171475,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Oct 25 1996","MPAA Rating":"R","Running Time min":93,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":18,"IMDB Rating":5.3,"IMDB Votes":7888},{"Title":"Sling Blade","US Gross":24475416,"Worldwide Gross":34175000,"US DVD Sales":null,"Production Budget":4833610,"Release Date":"Nov 20 1996","MPAA Rating":"R","Running Time min":133,"Distributor":"Miramax","Source":"Based on Short Film","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":96,"IMDB Rating":8,"IMDB Votes":41785},{"Title":"Slacker","US Gross":1227508,"Worldwide Gross":1227508,"US DVD Sales":null,"Production Budget":23000,"Release Date":"Aug 01 1991","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Richard Linklater","Rotten Tomatoes Rating":83,"IMDB Rating":6.9,"IMDB Votes":5907},{"Title":"Some Like it Hot","US Gross":25000000,"Worldwide Gross":25000000,"US DVD Sales":null,"Production Budget":2883848,"Release Date":"Mar 29 1959","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Billy Wilder","Rotten Tomatoes Rating":97,"IMDB Rating":8.3,"IMDB Votes":67157},{"Title":"The Scarlet Letter","US Gross":10359006,"Worldwide Gross":10359006,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Oct 13 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Roland Joffe","Rotten Tomatoes Rating":15,"IMDB Rating":4.6,"IMDB Votes":6155},{"Title":"Silmido","US Gross":298347,"Worldwide Gross":30298347,"US DVD Sales":null,"Production Budget":8500000,"Release Date":"Apr 23 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Cinema Service","Source":null,"Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":1724},{"Title":"Sleeper","US Gross":18344729,"Worldwide Gross":18344729,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 17 1973","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Woody Allen","Rotten Tomatoes Rating":100,"IMDB Rating":7.3,"IMDB Votes":15466},{"Title":"Sleepers","US Gross":53300852,"Worldwide Gross":165600852,"US DVD Sales":null,"Production Budget":44000000,"Release Date":"Oct 18 1996","MPAA Rating":"R","Running Time min":105,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Barry Levinson","Rotten Tomatoes Rating":73,"IMDB Rating":7.3,"IMDB Votes":51874},{"Title":"The Slaughter Rule","US Gross":13134,"Worldwide Gross":13134,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jan 10 2003","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":1136},{"Title":"Solomon and Sheba","US Gross":11000000,"Worldwide Gross":11000000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jan 01 1959","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"King Vidor","Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":915},{"Title":"Sur Le Seuil","US Gross":2013052,"Worldwide Gross":2013052,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Oct 03 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Alliance","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":585},{"Title":"The Usual Suspects","US Gross":23341568,"Worldwide Gross":23341568,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Aug 16 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Bryan Singer","Rotten Tomatoes Rating":87,"IMDB Rating":8.7,"IMDB Votes":266890},{"Title":"Silverado","US Gross":33200000,"Worldwide Gross":33200000,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Jul 10 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Lawrence Kasdan","Rotten Tomatoes Rating":76,"IMDB Rating":7,"IMDB Votes":14243},{"Title":"Salvador","US Gross":1500000,"Worldwide Gross":1500000,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Apr 23 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Hemdale","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":91,"IMDB Rating":7.5,"IMDB Votes":7797},{"Title":"Sex, Lies, and Videotape","US Gross":24741667,"Worldwide Gross":36741667,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Aug 04 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Steven Soderbergh","Rotten Tomatoes Rating":97,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Show Me","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":400000,"Release Date":"Nov 04 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Wolfe Releasing","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":288},{"Title":"Simon","US Gross":4055,"Worldwide Gross":4055,"US DVD Sales":null,"Production Budget":1300000,"Release Date":"Apr 07 2006","MPAA Rating":null,"Running Time min":null,"Distributor":"Strand","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":4873},{"Title":"Super Mario Bros.","US Gross":20844907,"Worldwide Gross":20844907,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"May 28 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Game","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.8,"IMDB Votes":17281},{"Title":"Somewhere in Time","US Gross":9709597,"Worldwide Gross":9709597,"US DVD Sales":null,"Production Budget":5100000,"Release Date":"Oct 03 1980","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":7,"IMDB Votes":8787},{"Title":"Smoke Signals","US Gross":6719300,"Worldwide Gross":7756617,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jun 26 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":86,"IMDB Rating":6.9,"IMDB Votes":5058},{"Title":"Serial Mom","US Gross":7881335,"Worldwide Gross":7881335,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Apr 13 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Savoy","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"John Waters","Rotten Tomatoes Rating":61,"IMDB Rating":6.4,"IMDB Votes":10999},{"Title":"Sommersturm","US Gross":95204,"Worldwide Gross":95204,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Mar 17 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Regent Releasing","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":5251},{"Title":"Silent Movie","US Gross":36145695,"Worldwide Gross":36145695,"US DVD Sales":null,"Production Budget":4400000,"Release Date":"Jun 25 1976","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Mel Brooks","Rotten Tomatoes Rating":89,"IMDB Rating":6.4,"IMDB Votes":6248},{"Title":"The Santa Clause","US Gross":144833357,"Worldwide Gross":189800000,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Nov 11 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"John Pasquin","Rotten Tomatoes Rating":79,"IMDB Rating":6.1,"IMDB Votes":17773},{"Title":"The Singles Ward","US Gross":1250798,"Worldwide Gross":1250798,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Feb 01 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Halestorm Entertainment","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":5.7,"IMDB Votes":736},{"Title":"Sense and Sensibility","US Gross":42993774,"Worldwide Gross":134993774,"US DVD Sales":null,"Production Budget":16500000,"Release Date":"Dec 11 1995","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Ang Lee","Rotten Tomatoes Rating":98,"IMDB Rating":7.7,"IMDB Votes":31279},{"Title":"Singin' in the Rain","US Gross":3600000,"Worldwide Gross":3600000,"US DVD Sales":null,"Production Budget":2540000,"Release Date":"Apr 10 1952","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Stanley Donen","Rotten Tomatoes Rating":100,"IMDB Rating":8.4,"IMDB Votes":55352},{"Title":"Solitude","US Gross":6260,"Worldwide Gross":6260,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Jan 07 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Indican Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.8,"IMDB Votes":82},{"Title":"The Sound of Music","US Gross":163214286,"Worldwide Gross":286214286,"US DVD Sales":null,"Production Budget":8200000,"Release Date":"Apr 01 1965","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Robert Wise","Rotten Tomatoes Rating":81,"IMDB Rating":6.3,"IMDB Votes":45},{"Title":"She's the One","US Gross":9482579,"Worldwide Gross":13795053,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Aug 23 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Edward Burns","Rotten Tomatoes Rating":60,"IMDB Rating":6,"IMDB Votes":8159},{"Title":"Straight out of Brooklyn","US Gross":2712293,"Worldwide Gross":2712293,"US DVD Sales":null,"Production Budget":450000,"Release Date":"Dec 31 1990","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":5.6,"IMDB Votes":263},{"Title":"Spaceballs","US Gross":38119483,"Worldwide Gross":38119483,"US DVD Sales":null,"Production Budget":22700000,"Release Date":"Jun 24 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Mel Brooks","Rotten Tomatoes Rating":65,"IMDB Rating":6.9,"IMDB Votes":52434},{"Title":"Speed","US Gross":121248145,"Worldwide Gross":283200000,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 10 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Jan De Bont","Rotten Tomatoes Rating":90,"IMDB Rating":2.6,"IMDB Votes":4175},{"Title":"Species","US Gross":60054449,"Worldwide Gross":113354449,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Jul 07 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Roger Donaldson","Rotten Tomatoes Rating":39,"IMDB Rating":5.6,"IMDB Votes":21917},{"Title":"Sphinx","US Gross":2000000,"Worldwide Gross":11400000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 11 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Franklin J. Schaffner","Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":478},{"Title":"Spaced Invaders","US Gross":15000000,"Worldwide Gross":15000000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Apr 27 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Patrick Read Johnson","Rotten Tomatoes Rating":9,"IMDB Rating":4.8,"IMDB Votes":1464},{"Title":"Spellbound","US Gross":7000000,"Worldwide Gross":7000000,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Dec 31 1944","MPAA Rating":"G","Running Time min":null,"Distributor":"ThinkFilm","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":87,"IMDB Rating":7.7,"IMDB Votes":14665},{"Title":"Splash","US Gross":62599495,"Worldwide Gross":62599495,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Mar 09 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Ron Howard","Rotten Tomatoes Rating":91,"IMDB Rating":6.2,"IMDB Votes":21732},{"Title":"Superman IV: The Quest for Peace","US Gross":11227824,"Worldwide Gross":11227824,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Jul 24 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Sidney J. Furie","Rotten Tomatoes Rating":null,"IMDB Rating":3.4,"IMDB Votes":15164},{"Title":"Superman II","US Gross":108185706,"Worldwide Gross":108185706,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 19 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Richard Donner","Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":29512},{"Title":"Superman III","US Gross":59950623,"Worldwide Gross":59950623,"US DVD Sales":null,"Production Budget":39000000,"Release Date":"Jun 17 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":4.7,"IMDB Votes":18070},{"Title":"Sparkler","US Gross":5494,"Worldwide Gross":5494,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Mar 19 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Strand","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":5.5,"IMDB Votes":320},{"Title":"Superman","US Gross":134218018,"Worldwide Gross":300200000,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Dec 15 1978","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Richard Donner","Rotten Tomatoes Rating":94,"IMDB Rating":4.9,"IMDB Votes":129},{"Title":"The Specialist","US Gross":57362581,"Worldwide Gross":57362581,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Oct 07 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":4,"IMDB Rating":4.9,"IMDB Votes":18749},{"Title":"The Sorcerer","US Gross":12000000,"Worldwide Gross":12000000,"US DVD Sales":null,"Production Budget":21600000,"Release Date":"Jun 24 1977","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"William Friedkin","Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":563},{"Title":"Sisters in Law","US Gross":33312,"Worldwide Gross":33312,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Apr 12 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Women Make Movies","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":203},{"Title":"Smilla's Sense of Snow","US Gross":2221994,"Worldwide Gross":2221994,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Feb 28 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Bille August","Rotten Tomatoes Rating":53,"IMDB Rating":6.1,"IMDB Votes":7280},{"Title":"Assassins","US Gross":30306268,"Worldwide Gross":83306268,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Oct 06 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Richard Donner","Rotten Tomatoes Rating":9,"IMDB Rating":5.9,"IMDB Votes":23370},{"Title":"Star Trek: The Motion Picture","US Gross":82258456,"Worldwide Gross":139000000,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 07 1979","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Robert Wise","Rotten Tomatoes Rating":48,"IMDB Rating":6.2,"IMDB Votes":25454},{"Title":"Star Trek III: The Search for Spock","US Gross":76471046,"Worldwide Gross":87000000,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jun 01 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Leonard Nimoy","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":22261},{"Title":"Star Trek IV: The Voyage Home","US Gross":109713132,"Worldwide Gross":133000000,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Nov 26 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Leonard Nimoy","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":26207},{"Title":"Stand by Me","US Gross":52287414,"Worldwide Gross":52287414,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Aug 08 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Rob Reiner","Rotten Tomatoes Rating":94,"IMDB Rating":8.2,"IMDB Votes":90143},{"Title":"Stone Cold","US Gross":9286314,"Worldwide Gross":9286314,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"May 17 1991","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":4.6,"IMDB Votes":52},{"Title":"The Stewardesses","US Gross":13500000,"Worldwide Gross":25000000,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Jul 25 1969","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.3,"IMDB Votes":86},{"Title":"Street Fighter","US Gross":33423000,"Worldwide Gross":99423000,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 23 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Game","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":3.3,"IMDB Votes":25407},{"Title":"Star Trek II: The Wrath of Khan","US Gross":79912963,"Worldwide Gross":96800000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jun 04 1982","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":36131},{"Title":"Steal (Canadian Release)","US Gross":220944,"Worldwide Gross":220944,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 25 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Sting","US Gross":159616327,"Worldwide Gross":159616327,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Dec 25 1973","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":null,"Creative Type":"Historical Fiction","Director":"George Roy Hill","Rotten Tomatoes Rating":91,"IMDB Rating":8.4,"IMDB Votes":65866},{"Title":"Stonewall","US Gross":304602,"Worldwide Gross":304602,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jul 26 1996","MPAA Rating":"R","Running Time min":99,"Distributor":"Strand","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":741},{"Title":"Star Trek V: The Final Frontier","US Gross":52210049,"Worldwide Gross":70200000,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 09 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":20600},{"Title":"Star Trek VI: The Undiscovered Country","US Gross":74888996,"Worldwide Gross":96900000,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Dec 06 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":23546},{"Title":"Star Trek: Generations","US Gross":75671262,"Worldwide Gross":120000000,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Nov 18 1994","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":26465},{"Title":"Stripes","US Gross":85300000,"Worldwide Gross":85300000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jun 26 1981","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ivan Reitman","Rotten Tomatoes Rating":88,"IMDB Rating":6.8,"IMDB Votes":19618},{"Title":"Striptease","US Gross":32773011,"Worldwide Gross":32773011,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 28 1996","MPAA Rating":"R","Running Time min":115,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Andrew Bergman","Rotten Tomatoes Rating":12,"IMDB Rating":3.9,"IMDB Votes":18012},{"Title":"Star Wars Ep. IV: A New Hope","US Gross":460998007,"Worldwide Gross":797900000,"US DVD Sales":11182540,"Production Budget":11000000,"Release Date":"May 25 1977","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"George Lucas","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Saints and Soldiers","US Gross":1310470,"Worldwide Gross":1310470,"US DVD Sales":null,"Production Budget":780000,"Release Date":"Aug 06 2004","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"Excel Entertainment","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ryan Little","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":7581},{"Title":"Steppin: The Movie","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Dec 31 2007","MPAA Rating":null,"Running Time min":null,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.3,"IMDB Votes":108},{"Title":"Strangers on a Train","US Gross":7000000,"Worldwide Gross":7000000,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Jul 03 1951","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":98,"IMDB Rating":8.3,"IMDB Votes":34284},{"Title":"Sugar Hill","US Gross":18272447,"Worldwide Gross":18272447,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 25 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":5.3,"IMDB Votes":1627},{"Title":"Stiff Upper Lips","US Gross":69582,"Worldwide Gross":69582,"US DVD Sales":null,"Production Budget":5700000,"Release Date":"Aug 27 1999","MPAA Rating":null,"Running Time min":null,"Distributor":"Cowboy Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":6.1,"IMDB Votes":543},{"Title":"Shichinin no samurai","US Gross":271736,"Worldwide Gross":271736,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Nov 19 1956","MPAA Rating":null,"Running Time min":null,"Distributor":"Cowboy Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Akira Kurosawa","Rotten Tomatoes Rating":null,"IMDB Rating":8.8,"IMDB Votes":96698},{"Title":"Sweet Charity","US Gross":8000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 31 1968","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Bob Fosse","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":1691},{"Title":"Sands of Iwo Jima","US Gross":7800000,"Worldwide Gross":7800000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Dec 31 1948","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":100,"IMDB Rating":7.1,"IMDB Votes":4160},{"Title":"The Spy Who Loved Me","US Gross":46800000,"Worldwide Gross":185400000,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Jul 13 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":78,"IMDB Rating":7.1,"IMDB Votes":24938},{"Title":"The Swindle","US Gross":245359,"Worldwide Gross":5045359,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 25 1998","MPAA Rating":null,"Running Time min":null,"Distributor":"New Yorker","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":1417},{"Title":"Swingers","US Gross":4505922,"Worldwide Gross":6542637,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Oct 18 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Doug Liman","Rotten Tomatoes Rating":86,"IMDB Rating":6.2,"IMDB Votes":431},{"Title":"Snow White and the Seven Dwarfs","US Gross":184925485,"Worldwide Gross":184925485,"US DVD Sales":null,"Production Budget":1488000,"Release Date":"Dec 21 2037","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Traditional/Legend/Fairytale","Major Genre":"Musical","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":97,"IMDB Rating":7.8,"IMDB Votes":38141},{"Title":"The Sweet Hereafter","US Gross":4306697,"Worldwide Gross":4306697,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Oct 10 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Atom Egoyan","Rotten Tomatoes Rating":100,"IMDB Rating":7.8,"IMDB Votes":16280},{"Title":"She Wore a Yellow Ribbon","US Gross":5400000,"Worldwide Gross":5400000,"US DVD Sales":null,"Production Budget":1600000,"Release Date":"Dec 31 1948","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Ford","Rotten Tomatoes Rating":100,"IMDB Rating":7.3,"IMDB Votes":5825},{"Title":"Sex with Strangers","US Gross":247740,"Worldwide Gross":247740,"US DVD Sales":null,"Production Budget":1100000,"Release Date":"Feb 22 2002","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":39,"IMDB Rating":5,"IMDB Votes":151},{"Title":"Spy Hard","US Gross":26936265,"Worldwide Gross":26936265,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"May 24 1996","MPAA Rating":"PG-13","Running Time min":81,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":7,"IMDB Rating":4.7,"IMDB Votes":12682},{"Title":"Shi Yue Wei Cheng","US Gross":0,"Worldwide Gross":44195779,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Dec 18 2009","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":1795},{"Title":"Tango","US Gross":1687311,"Worldwide Gross":1687311,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Feb 12 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":1490},{"Title":"The Age of Innocence","US Gross":32014993,"Worldwide Gross":32014993,"US DVD Sales":null,"Production Budget":34000000,"Release Date":"Sep 17 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":81,"IMDB Rating":7.1,"IMDB Votes":16000},{"Title":"Talk Radio","US Gross":3468572,"Worldwide Gross":3468572,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 01 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Oliver Stone","Rotten Tomatoes Rating":80,"IMDB Rating":7,"IMDB Votes":5659},{"Title":"The Texas Chainsaw Massacre","US Gross":26572439,"Worldwide Gross":26572439,"US DVD Sales":null,"Production Budget":140000,"Release Date":"Oct 18 1974","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":"Tobe Hooper","Rotten Tomatoes Rating":90,"IMDB Rating":6.1,"IMDB Votes":39172},{"Title":"The Texas Chainsaw Massacre 2","US Gross":8025872,"Worldwide Gross":8025872,"US DVD Sales":null,"Production Budget":4700000,"Release Date":"Aug 22 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Cannon","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Tobe Hooper","Rotten Tomatoes Rating":43,"IMDB Rating":5.1,"IMDB Votes":7702},{"Title":"Timecop","US Gross":44853581,"Worldwide Gross":102053581,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Sep 16 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Peter Hyams","Rotten Tomatoes Rating":47,"IMDB Rating":5.5,"IMDB Votes":16570},{"Title":"Tin Cup","US Gross":53854588,"Worldwide Gross":75854588,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Aug 16 1996","MPAA Rating":"R","Running Time min":105,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Ron Shelton","Rotten Tomatoes Rating":69,"IMDB Rating":6.1,"IMDB Votes":17274},{"Title":"Torn Curtain","US Gross":13000000,"Worldwide Gross":13000000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Jul 16 1966","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":81,"IMDB Rating":6.6,"IMDB Votes":8670},{"Title":"To Die For","US Gross":21284514,"Worldwide Gross":27688744,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Sep 27 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Gus Van Sant","Rotten Tomatoes Rating":87,"IMDB Rating":6.8,"IMDB Votes":18459},{"Title":"Terror Train","US Gross":8000000,"Worldwide Gross":8000000,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Dec 31 1979","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Roger Spottiswoode","Rotten Tomatoes Rating":33,"IMDB Rating":5.5,"IMDB Votes":2479},{"Title":"Teen Wolf Too","US Gross":7888000,"Worldwide Gross":7888000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Nov 20 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Atlantic","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":2.8,"IMDB Votes":5207},{"Title":"The Fan","US Gross":18582965,"Worldwide Gross":18582965,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Aug 16 1996","MPAA Rating":"R","Running Time min":117,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":40,"IMDB Rating":5.6,"IMDB Votes":20640},{"Title":"Timber Falls","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":2600000,"Release Date":"Dec 07 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Slowhand Cinema","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":5.3,"IMDB Votes":2213},{"Title":"Tae Guik Gi: The Brotherhood of War","US Gross":1110186,"Worldwide Gross":69826708,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Sep 03 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"IDP Distribution","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Incredibly True Adventure of Two Girls in Love","US Gross":2210408,"Worldwide Gross":2477155,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Jun 16 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":1795},{"Title":"There Goes My Baby","US Gross":125169,"Worldwide Gross":125169,"US DVD Sales":null,"Production Budget":10500000,"Release Date":"Sep 02 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":507},{"Title":"Tank Girl","US Gross":4064333,"Worldwide Gross":4064333,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 01 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":4.7,"IMDB Votes":10772},{"Title":"Top Gun","US Gross":176786701,"Worldwide Gross":353786701,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"May 16 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":45,"IMDB Rating":6.5,"IMDB Votes":80013},{"Title":"Thunderball","US Gross":63600000,"Worldwide Gross":141200000,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Dec 29 1965","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":91,"IMDB Rating":7,"IMDB Votes":27245},{"Title":"The Calling","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Dec 31 2009","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.4,"IMDB Votes":1113},{"Title":"The Craft","US Gross":24769466,"Worldwide Gross":55669466,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"May 03 1996","MPAA Rating":"R","Running Time min":100,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":"Andrew Fleming","Rotten Tomatoes Rating":45,"IMDB Rating":5.9,"IMDB Votes":21130},{"Title":"It Happened One Night","US Gross":2500000,"Worldwide Gross":2500000,"US DVD Sales":null,"Production Budget":325000,"Release Date":"Dec 31 1933","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Romantic Comedy","Creative Type":null,"Director":"Frank Capra","Rotten Tomatoes Rating":97,"IMDB Rating":8.3,"IMDB Votes":25074},{"Title":"The Net","US Gross":50621733,"Worldwide Gross":110521733,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Jul 28 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5.6,"IMDB Votes":24363},{"Title":"La otra conquista","US Gross":886410,"Worldwide Gross":886410,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Apr 19 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Hombre de Oro","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":584},{"Title":"The Journey","US Gross":19800,"Worldwide Gross":19800,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jul 11 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.4,"IMDB Votes":74},{"Title":"They Live","US Gross":13000000,"Worldwide Gross":13000000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Nov 04 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"John Carpenter","Rotten Tomatoes Rating":88,"IMDB Rating":7,"IMDB Votes":20995},{"Title":"Tales from the Hood","US Gross":11784569,"Worldwide Gross":11784569,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"May 24 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Savoy","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5.8,"IMDB Votes":1860},{"Title":"Time Bandits","US Gross":37400000,"Worldwide Gross":37400000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Nov 06 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Avco Embassy","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Terry Gilliam","Rotten Tomatoes Rating":94,"IMDB Rating":6.9,"IMDB Votes":22719},{"Title":"Tombstone","US Gross":56505000,"Worldwide Gross":56505000,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Dec 25 1993","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Western","Creative Type":"Dramatization","Director":"George P. Cosmatos","Rotten Tomatoes Rating":77,"IMDB Rating":7.7,"IMDB Votes":43688},{"Title":"Time Changer","US Gross":1500711,"Worldwide Gross":1500711,"US DVD Sales":null,"Production Budget":825000,"Release Date":"Oct 25 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Five & Two Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":5,"IMDB Votes":1029},{"Title":"Teenage Mutant Ninja Turtles II: The Secret of the Ooze","US Gross":78656813,"Worldwide Gross":78656813,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 22 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.3,"IMDB Votes":12742},{"Title":"Teenage Mutant Ninja Turtles III","US Gross":42273609,"Worldwide Gross":42273609,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Mar 19 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":4.3,"IMDB Votes":9064},{"Title":"Tango & Cash","US Gross":63408614,"Worldwide Gross":63408614,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Dec 22 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Andrei Konchalovsky","Rotten Tomatoes Rating":39,"IMDB Rating":5.8,"IMDB Votes":25248},{"Title":"Teenage Mutant Ninja Turtles","US Gross":135265915,"Worldwide Gross":202000000,"US DVD Sales":null,"Production Budget":13500000,"Release Date":"Mar 30 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"New Line","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Steve Barron","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":25867},{"Title":"Topaz","US Gross":6000000,"Worldwide Gross":6000000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 19 1969","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":71,"IMDB Rating":6.2,"IMDB Votes":6389},{"Title":"Taps","US Gross":35856053,"Worldwide Gross":35856053,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Dec 09 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Harold Becker","Rotten Tomatoes Rating":79,"IMDB Rating":6.5,"IMDB Votes":6515},{"Title":"Trainspotting","US Gross":16501785,"Worldwide Gross":24000785,"US DVD Sales":null,"Production Budget":3100000,"Release Date":"Jul 19 1996","MPAA Rating":"R","Running Time min":94,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Danny Boyle","Rotten Tomatoes Rating":89,"IMDB Rating":8.2,"IMDB Votes":150483},{"Title":"The Train","US Gross":6800000,"Worldwide Gross":6800000,"US DVD Sales":null,"Production Budget":5800000,"Release Date":"Mar 07 1965","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Frankenheimer","Rotten Tomatoes Rating":83,"IMDB Rating":7.8,"IMDB Votes":4692},{"Title":"Troop Beverly Hills","US Gross":7190505,"Worldwide Gross":7190505,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Mar 22 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":4.7,"IMDB Votes":3427},{"Title":"Trekkies","US Gross":617172,"Worldwide Gross":617172,"US DVD Sales":null,"Production Budget":375000,"Release Date":"May 21 1999","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":3004},{"Title":"True Lies","US Gross":146282411,"Worldwide Gross":365300000,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Jul 15 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"James Cameron","Rotten Tomatoes Rating":69,"IMDB Rating":7.2,"IMDB Votes":80581},{"Title":"Terminator 2: Judgment Day","US Gross":204859496,"Worldwide Gross":516816151,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Jul 02 1991","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"James Cameron","Rotten Tomatoes Rating":98,"IMDB Rating":8.5,"IMDB Votes":237477},{"Title":"Travellers and Magicians","US Gross":506793,"Worldwide Gross":1058893,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Jan 07 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Zeitgeist","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":1069},{"Title":"The Terminator","US Gross":38019031,"Worldwide Gross":78019031,"US DVD Sales":null,"Production Budget":6400000,"Release Date":"Oct 26 1984","MPAA Rating":null,"Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"James Cameron","Rotten Tomatoes Rating":100,"IMDB Rating":8.1,"IMDB Votes":179606},{"Title":"Tremors","US Gross":16667084,"Worldwide Gross":16667084,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jan 19 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":88,"IMDB Rating":7.2,"IMDB Votes":29840},{"Title":"True Romance","US Gross":12281000,"Worldwide Gross":12281000,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Sep 10 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":91,"IMDB Rating":7.9,"IMDB Votes":73829},{"Title":"Tron","US Gross":26918576,"Worldwide Gross":26918576,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Jul 09 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":68,"IMDB Rating":2.9,"IMDB Votes":923},{"Title":"Trapeze","US Gross":14400000,"Worldwide Gross":14400000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 31 1955","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":6.7,"IMDB Votes":1570},{"Title":"The Terrorist","US Gross":195043,"Worldwide Gross":195043,"US DVD Sales":null,"Production Budget":25000,"Release Date":"Jan 14 2000","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Phaedra Cinema","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":50},{"Title":"Trois","US Gross":1161843,"Worldwide Gross":1161843,"US DVD Sales":null,"Production Budget":200000,"Release Date":"Feb 11 2000","MPAA Rating":"NC-17","Running Time min":null,"Distributor":"Rainforest Productions","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.3,"IMDB Votes":360},{"Title":"Things to Do in Denver when You're Dead","US Gross":529766,"Worldwide Gross":529766,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 01 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":6.6,"IMDB Votes":12789},{"Title":"A Time to Kill","US Gross":108766007,"Worldwide Gross":152266007,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 24 1996","MPAA Rating":"R","Running Time min":150,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":68,"IMDB Rating":7.1,"IMDB Votes":38577},{"Title":"Total Recall","US Gross":119394839,"Worldwide Gross":261400000,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Jun 01 1990","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Paul Verhoeven","Rotten Tomatoes Rating":81,"IMDB Rating":7.4,"IMDB Votes":70355},{"Title":"This Thing of Ours","US Gross":37227,"Worldwide Gross":37227,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jul 18 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":316},{"Title":"Tootsie","US Gross":177200000,"Worldwide Gross":177200000,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 17 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Sydney Pollack","Rotten Tomatoes Rating":87,"IMDB Rating":7.4,"IMDB Votes":31669},{"Title":"That Thing You Do!","US Gross":25857416,"Worldwide Gross":31748615,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Oct 04 1996","MPAA Rating":"PG","Running Time min":110,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Tom Hanks","Rotten Tomatoes Rating":92,"IMDB Rating":6.7,"IMDB Votes":25916},{"Title":"The Trouble With Harry","US Gross":7000000,"Worldwide Gross":7000000,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Oct 03 1955","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":89,"IMDB Rating":7.2,"IMDB Votes":11580},{"Title":"Twins","US Gross":111936388,"Worldwide Gross":216600000,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 09 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ivan Reitman","Rotten Tomatoes Rating":33,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Twister","US Gross":241888385,"Worldwide Gross":495900000,"US DVD Sales":null,"Production Budget":88000000,"Release Date":"May 10 1996","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Jan De Bont","Rotten Tomatoes Rating":57,"IMDB Rating":6,"IMDB Votes":61665},{"Title":"Towering Inferno","US Gross":116000000,"Worldwide Gross":139700000,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Dec 17 1974","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":null,"Major Genre":null,"Creative Type":null,"Director":"John Guillermin","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Taxi Driver","US Gross":21100000,"Worldwide Gross":21100000,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Feb 08 1976","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":98,"IMDB Rating":8.6,"IMDB Votes":155774},{"Title":"Tycoon","US Gross":121016,"Worldwide Gross":121016,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jun 13 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":456},{"Title":"Toy Story","US Gross":191796233,"Worldwide Gross":361948825,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Nov 22 1995","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"John Lasseter","Rotten Tomatoes Rating":100,"IMDB Rating":8.2,"IMDB Votes":151143},{"Title":"Twilight Zone: The Movie","US Gross":29500000,"Worldwide Gross":29500000,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jun 24 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Steven Spielberg","Rotten Tomatoes Rating":67,"IMDB Rating":6.3,"IMDB Votes":12054},{"Title":"Unforgettable","US Gross":2483790,"Worldwide Gross":2483790,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Feb 23 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"John Dahl","Rotten Tomatoes Rating":23,"IMDB Rating":5.7,"IMDB Votes":2284},{"Title":"UHF","US Gross":6157157,"Worldwide Gross":6157157,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jul 21 1989","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":6.6,"IMDB Votes":12676},{"Title":"Ulee's Gold","US Gross":9054736,"Worldwide Gross":15600000,"US DVD Sales":null,"Production Budget":2700000,"Release Date":"Jun 13 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":7,"IMDB Votes":4041},{"Title":"Under Siege 2: Dark Territory","US Gross":50024083,"Worldwide Gross":104324083,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jul 14 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":34,"IMDB Rating":5.1,"IMDB Votes":15218},{"Title":"The Untouchables","US Gross":76270454,"Worldwide Gross":76270454,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jun 03 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Dramatization","Director":"Brian De Palma","Rotten Tomatoes Rating":81,"IMDB Rating":8,"IMDB Votes":86097},{"Title":"Under the Rainbow","US Gross":18826490,"Worldwide Gross":18826490,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jul 31 1981","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":1263},{"Title":"Veer-Zaara","US Gross":2938532,"Worldwide Gross":7017859,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Nov 12 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Yash Raj Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":4155},{"Title":"Videodrome","US Gross":2120439,"Worldwide Gross":2120439,"US DVD Sales":null,"Production Budget":5952000,"Release Date":"Feb 04 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"David Cronenberg","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":20080},{"Title":"Les Visiteurs","US Gross":659000,"Worldwide Gross":98754000,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jul 12 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":7393},{"Title":"Couloirs du temps: Les visiteurs 2, Les","US Gross":146072,"Worldwide Gross":26146072,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 27 1998","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Valley of Decision","US Gross":9132000,"Worldwide Gross":9132000,"US DVD Sales":null,"Production Budget":2160000,"Release Date":"Dec 31 1944","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":682},{"Title":"Vampire in Brooklyn","US Gross":19637147,"Worldwide Gross":19637147,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Oct 27 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Wes Craven","Rotten Tomatoes Rating":11,"IMDB Rating":4.3,"IMDB Votes":8200},{"Title":"The Verdict","US Gross":53977250,"Worldwide Gross":53977250,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Dec 08 1982","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sidney Lumet","Rotten Tomatoes Rating":96,"IMDB Rating":7.7,"IMDB Votes":10864},{"Title":"Virtuosity","US Gross":23998226,"Worldwide Gross":23998226,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 04 1995","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":34,"IMDB Rating":5.3,"IMDB Votes":11079},{"Title":"Everything Put Together","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Nov 02 2001","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":418},{"Title":"A View to a Kill","US Gross":50327960,"Worldwide Gross":152627960,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"May 24 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Glen","Rotten Tomatoes Rating":39,"IMDB Rating":6.1,"IMDB Votes":23770},{"Title":"The Work and the Glory: American Zion","US Gross":2025032,"Worldwide Gross":2025032,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"Oct 21 2005","MPAA Rating":"PG-13","Running Time min":100,"Distributor":"Vineyard Distribution","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":365},{"Title":"A Walk on the Moon","US Gross":4741987,"Worldwide Gross":4741987,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Mar 26 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Tony Goldwyn","Rotten Tomatoes Rating":74,"IMDB Rating":6.4,"IMDB Votes":4125},{"Title":"The Work and the Glory","US Gross":3347647,"Worldwide Gross":3347647,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Nov 24 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"Excel Entertainment","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":6,"IMDB Votes":531},{"Title":"The Work and the Story","US Gross":16137,"Worldwide Gross":16137,"US DVD Sales":null,"Production Budget":103000,"Release Date":"Oct 03 2003","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Off-Hollywood Distribution","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":82},{"Title":"What the #$'! Do We Know","US Gross":10941801,"Worldwide Gross":10941801,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Feb 06 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Captured Light","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Waiting for Guffman","US Gross":2922988,"Worldwide Gross":2922988,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jan 31 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Christopher Guest","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":14880},{"Title":"Who Framed Roger Rabbit?","US Gross":154112492,"Worldwide Gross":351500000,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Jun 22 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Robert Zemeckis","Rotten Tomatoes Rating":98,"IMDB Rating":7.6,"IMDB Votes":53541},{"Title":"White Fang","US Gross":34729091,"Worldwide Gross":34729091,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Jan 18 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Randal Kleiser","Rotten Tomatoes Rating":67,"IMDB Rating":null,"IMDB Votes":null},{"Title":"White Squall","US Gross":10229300,"Worldwide Gross":10229300,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Feb 02 1996","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Adventure","Creative Type":"Dramatization","Director":"Ridley Scott","Rotten Tomatoes Rating":63,"IMDB Rating":6.4,"IMDB Votes":8385},{"Title":"What's Eating Gilbert Grape","US Gross":9170214,"Worldwide Gross":9170214,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Dec 25 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":"Lasse Hallstrom","Rotten Tomatoes Rating":88,"IMDB Rating":7.8,"IMDB Votes":51219},{"Title":"Witchboard","US Gross":7369373,"Worldwide Gross":7369373,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 31 1986","MPAA Rating":null,"Running Time min":null,"Distributor":"Cinema Guild","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":1666},{"Title":"The Wiz","US Gross":13000000,"Worldwide Gross":13000000,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Oct 24 1978","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Musical","Creative Type":null,"Director":"Sidney Lumet","Rotten Tomatoes Rating":37,"IMDB Rating":4.5,"IMDB Votes":4896},{"Title":"Walking and Talking","US Gross":1287480,"Worldwide Gross":1615787,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Jul 17 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":86,"IMDB Rating":6.5,"IMDB Votes":1756},{"Title":"The Wild Bunch","US Gross":509424,"Worldwide Gross":509424,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Jun 18 1969","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Sam Peckinpah","Rotten Tomatoes Rating":97,"IMDB Rating":8.2,"IMDB Votes":31196},{"Title":"Wall Street","US Gross":43848100,"Worldwide Gross":43848100,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 11 1987","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Oliver Stone","Rotten Tomatoes Rating":78,"IMDB Rating":7.3,"IMDB Votes":35454},{"Title":"Waterloo","US Gross":null,"Worldwide Gross":null,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jan 01 1970","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Wrong Man","US Gross":2000000,"Worldwide Gross":2000000,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Dec 23 1956","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Alfred Hitchcock","Rotten Tomatoes Rating":89,"IMDB Rating":7.5,"IMDB Votes":7531},{"Title":"Woman Chaser","US Gross":110719,"Worldwide Gross":110719,"US DVD Sales":null,"Production Budget":150000,"Release Date":"Jun 23 2000","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Wings","US Gross":null,"Worldwide Gross":null,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Aug 12 2027","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":96,"IMDB Rating":7.9,"IMDB Votes":3035},{"Title":"We're No Angels","US Gross":10555348,"Worldwide Gross":10555348,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 15 1989","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Neil Jordan","Rotten Tomatoes Rating":50,"IMDB Rating":5.6,"IMDB Votes":7839},{"Title":"Wolf","US Gross":65011757,"Worldwide Gross":131011757,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Jun 17 1994","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":"Mike Nichols","Rotten Tomatoes Rating":60,"IMDB Rating":6,"IMDB Votes":20035},{"Title":"Warriors of Virtue","US Gross":6448817,"Worldwide Gross":6448817,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"May 02 1997","MPAA Rating":"PG","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Ronny Yu","Rotten Tomatoes Rating":10,"IMDB Rating":4,"IMDB Votes":1202},{"Title":"War Games","US Gross":74433837,"Worldwide Gross":74433837,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jun 03 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"John Badham","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":88},{"Title":"Warlock","US Gross":8824553,"Worldwide Gross":8824553,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jan 10 1991","MPAA Rating":null,"Running Time min":null,"Distributor":"Trimark","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Steve Miner","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":4921},{"Title":"War and Peace","US Gross":12500000,"Worldwide Gross":12500000,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Dec 31 1955","MPAA Rating":"PG","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"King Vidor","Rotten Tomatoes Rating":50,"IMDB Rating":6.8,"IMDB Votes":2923},{"Title":"Warlock: The Armageddon","US Gross":3902679,"Worldwide Gross":3902679,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Sep 24 1993","MPAA Rating":null,"Running Time min":null,"Distributor":"Trimark","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":1888},{"Title":"Wasabi","US Gross":81525,"Worldwide Gross":7000000,"US DVD Sales":null,"Production Budget":15300000,"Release Date":"Sep 27 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":11647},{"Title":"West Side Story","US Gross":43700000,"Worldwide Gross":43700000,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Oct 18 1961","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Robert Wise","Rotten Tomatoes Rating":92,"IMDB Rating":7.7,"IMDB Votes":29488},{"Title":"When The Cat's Away","US Gross":1652472,"Worldwide Gross":2525984,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Sep 20 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Welcome to the Dollhouse","US Gross":4198137,"Worldwide Gross":4726732,"US DVD Sales":null,"Production Budget":800000,"Release Date":"May 10 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Todd Solondz","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":13469},{"Title":"Witness","US Gross":65532576,"Worldwide Gross":65532576,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Feb 08 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Peter Weir","Rotten Tomatoes Rating":94,"IMDB Rating":7.6,"IMDB Votes":30460},{"Title":"Waterworld","US Gross":88246220,"Worldwide Gross":264246220,"US DVD Sales":null,"Production Budget":175000000,"Release Date":"Jul 28 1995","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Kevin Reynolds","Rotten Tomatoes Rating":42,"IMDB Rating":5.7,"IMDB Votes":54126},{"Title":"Willy Wonka & the Chocolate Factory","US Gross":4000000,"Worldwide Gross":4000000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Jun 30 1971","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":90,"IMDB Rating":7.8,"IMDB Votes":46824},{"Title":"Wayne's World","US Gross":121697323,"Worldwide Gross":183097323,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Feb 14 1992","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Penelope Spheeris","Rotten Tomatoes Rating":84,"IMDB Rating":6.9,"IMDB Votes":42570},{"Title":"Wyatt Earp","US Gross":25052000,"Worldwide Gross":25052000,"US DVD Sales":null,"Production Budget":63000000,"Release Date":"Jun 24 1994","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Western","Creative Type":"Dramatization","Director":"Lawrence Kasdan","Rotten Tomatoes Rating":42,"IMDB Rating":6.4,"IMDB Votes":15614},{"Title":"The Wizard of Oz","US Gross":28202232,"Worldwide Gross":28202232,"US DVD Sales":null,"Production Budget":2777000,"Release Date":"Aug 25 2039","MPAA Rating":"G","Running Time min":103,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":"Fantasy","Director":"King Vidor","Rotten Tomatoes Rating":null,"IMDB Rating":8.3,"IMDB Votes":102795},{"Title":"Executive Decision","US Gross":56679192,"Worldwide Gross":122079192,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Mar 15 1996","MPAA Rating":"R","Running Time min":132,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":65,"IMDB Rating":6.3,"IMDB Votes":18569},{"Title":"Exodus","US Gross":21750000,"Worldwide Gross":21750000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jan 01 1960","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":6.8,"IMDB Votes":3546},{"Title":"The Exorcist","US Gross":204632868,"Worldwide Gross":402500000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 26 1973","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"William Friedkin","Rotten Tomatoes Rating":84,"IMDB Rating":8.1,"IMDB Votes":103131},{"Title":"Extreme Measures","US Gross":17378193,"Worldwide Gross":17378193,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Sep 27 1996","MPAA Rating":"R","Running Time min":117,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Michael Apted","Rotten Tomatoes Rating":55,"IMDB Rating":5.9,"IMDB Votes":8038},{"Title":"You Can't Take It With You","US Gross":4000000,"Worldwide Gross":4000000,"US DVD Sales":null,"Production Budget":1644000,"Release Date":"Dec 31 1937","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Frank Capra","Rotten Tomatoes Rating":96,"IMDB Rating":8,"IMDB Votes":8597},{"Title":"Eye for an Eye","US Gross":26792700,"Worldwide Gross":26792700,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jan 12 1996","MPAA Rating":"R","Running Time min":101,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Schlesinger","Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":4837},{"Title":"Young Guns","US Gross":44726644,"Worldwide Gross":44726644,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Aug 12 1988","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":6.6,"IMDB Votes":21404},{"Title":"Young Frankenstein","US Gross":86300000,"Worldwide Gross":86300000,"US DVD Sales":15500333,"Production Budget":2800000,"Release Date":"Dec 15 1974","MPAA Rating":null,"Running Time min":null,"Distributor":"20th Century Fox","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Mel Brooks","Rotten Tomatoes Rating":93,"IMDB Rating":8,"IMDB Votes":57106},{"Title":"Yentl","US Gross":39012241,"Worldwide Gross":39012241,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Nov 18 1983","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM/UA Classics","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":null,"Director":"Barbra Streisand","Rotten Tomatoes Rating":71,"IMDB Rating":6.2,"IMDB Votes":4952},{"Title":"You Only Live Twice","US Gross":43100000,"Worldwide Gross":111600000,"US DVD Sales":null,"Production Budget":9500000,"Release Date":"Jun 13 1967","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":70,"IMDB Rating":7,"IMDB Votes":24701},{"Title":"Ayurveda: Art of Being","US Gross":16892,"Worldwide Gross":2066892,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Jul 19 2002","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Kino International","Source":null,"Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":181},{"Title":"Young Sherlock Holmes","US Gross":19739000,"Worldwide Gross":19739000,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Dec 04 1985","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":63,"IMDB Rating":6.5,"IMDB Votes":7293},{"Title":"102 Dalmatians","US Gross":66941559,"Worldwide Gross":66941559,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Nov 22 2000","MPAA Rating":"G","Running Time min":100,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Kevin Lima","Rotten Tomatoes Rating":30,"IMDB Rating":4.4,"IMDB Votes":7147},{"Title":"Ten Things I Hate About You","US Gross":38177966,"Worldwide Gross":38177966,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Mar 31 1999","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Walt Disney Pictures","Source":"Based on Play","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":61910},{"Title":"10,000 B.C.","US Gross":94784201,"Worldwide Gross":269065678,"US DVD Sales":27044045,"Production Budget":105000000,"Release Date":"Mar 07 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Roland Emmerich","Rotten Tomatoes Rating":9,"IMDB Rating":5.8,"IMDB Votes":134},{"Title":"10th & Wolf","US Gross":54702,"Worldwide Gross":54702,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Aug 18 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"ThinkFilm","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Robert Moresco","Rotten Tomatoes Rating":19,"IMDB Rating":6.3,"IMDB Votes":3655},{"Title":"11:14","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Aug 12 2005","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":18261},{"Title":"Cloverfield","US Gross":80048433,"Worldwide Gross":170764033,"US DVD Sales":29180398,"Production Budget":25000000,"Release Date":"Jan 18 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Matt Reeves","Rotten Tomatoes Rating":76,"IMDB Rating":7.4,"IMDB Votes":136068},{"Title":"12 Rounds","US Gross":12234694,"Worldwide Gross":18184083,"US DVD Sales":8283859,"Production Budget":20000000,"Release Date":"Mar 27 2009","MPAA Rating":"PG-13","Running Time min":108,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":28,"IMDB Rating":5.4,"IMDB Votes":8914},{"Title":"Thirteen Conversations About One Thing","US Gross":3287435,"Worldwide Gross":3705923,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"May 24 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":6188},{"Title":"13 Going On 30","US Gross":57139723,"Worldwide Gross":96439723,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Apr 23 2004","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Gary Winick","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":32634},{"Title":"Thirteen Ghosts","US Gross":41867960,"Worldwide Gross":68467960,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Oct 26 2001","MPAA Rating":"R","Running Time min":91,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":23243},{"Title":1408,"US Gross":71985628,"Worldwide Gross":128529299,"US DVD Sales":49668544,"Production Budget":22500000,"Release Date":"Jun 22 2007","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":78,"IMDB Rating":6.9,"IMDB Votes":72913},{"Title":"15 Minutes","US Gross":24375436,"Worldwide Gross":56331864,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Mar 09 2001","MPAA Rating":"R","Running Time min":120,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":6.1,"IMDB Votes":25566},{"Title":"16 to Life","US Gross":10744,"Worldwide Gross":10744,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 03 2010","MPAA Rating":null,"Running Time min":null,"Distributor":"Waterdog Films","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"16 Blocks","US Gross":36895141,"Worldwide Gross":65595141,"US DVD Sales":17523555,"Production Budget":45000000,"Release Date":"Mar 03 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Richard Donner","Rotten Tomatoes Rating":55,"IMDB Rating":6.7,"IMDB Votes":41207},{"Title":"One Man's Hero","US Gross":229311,"Worldwide Gross":229311,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Sep 24 1999","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":627},{"Title":"First Daughter","US Gross":9055010,"Worldwide Gross":10419084,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 24 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Forest Whitaker","Rotten Tomatoes Rating":8,"IMDB Rating":4.7,"IMDB Votes":6839},{"Title":2012,"US Gross":166112167,"Worldwide Gross":766812167,"US DVD Sales":50736023,"Production Budget":200000000,"Release Date":"Nov 13 2009","MPAA Rating":"PG-13","Running Time min":158,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Roland Emmerich","Rotten Tomatoes Rating":39,"IMDB Rating":6.2,"IMDB Votes":396},{"Title":2046,"US Gross":1442338,"Worldwide Gross":19202856,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Aug 05 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Wong Kar-wai","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":19431},{"Title":"20 Dates","US Gross":541636,"Worldwide Gross":541636,"US DVD Sales":null,"Production Budget":66000,"Release Date":"Feb 26 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":1423},{"Title":21,"US Gross":81159365,"Worldwide Gross":157852532,"US DVD Sales":25789928,"Production Budget":35000000,"Release Date":"Mar 21 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Robert Luketic","Rotten Tomatoes Rating":35,"IMDB Rating":6.7,"IMDB Votes":60918},{"Title":"21 Grams","US Gross":16248701,"Worldwide Gross":60448701,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Nov 21 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Alejandro Gonzalez Inarritu","Rotten Tomatoes Rating":81,"IMDB Rating":7.9,"IMDB Votes":77910},{"Title":"25th Hour","US Gross":13084595,"Worldwide Gross":23928503,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Dec 19 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":78,"IMDB Rating":7.9,"IMDB Votes":58781},{"Title":"28 Days","US Gross":37035515,"Worldwide Gross":62063972,"US DVD Sales":null,"Production Budget":43000000,"Release Date":"Apr 14 2000","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Betty Thomas","Rotten Tomatoes Rating":30,"IMDB Rating":5.8,"IMDB Votes":17937},{"Title":"28 Days Later...","US Gross":45064915,"Worldwide Gross":82719885,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jun 27 2003","MPAA Rating":"R","Running Time min":113,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Danny Boyle","Rotten Tomatoes Rating":89,"IMDB Rating":7.6,"IMDB Votes":103525},{"Title":"28 Weeks Later","US Gross":28638916,"Worldwide Gross":64238440,"US DVD Sales":24422887,"Production Budget":15000000,"Release Date":"May 11 2007","MPAA Rating":"R","Running Time min":91,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":69558},{"Title":"Two Brothers","US Gross":18947630,"Worldwide Gross":39925603,"US DVD Sales":null,"Production Budget":72000000,"Release Date":"Jun 25 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Kids Fiction","Director":"Jean-Jacques Annaud","Rotten Tomatoes Rating":77,"IMDB Rating":6,"IMDB Votes":127},{"Title":"Cop Out","US Gross":44875481,"Worldwide Gross":44875481,"US DVD Sales":11433110,"Production Budget":37000000,"Release Date":"Feb 26 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":19,"IMDB Rating":5.7,"IMDB Votes":16520},{"Title":"Two Lovers","US Gross":3149034,"Worldwide Gross":11549034,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Feb 13 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"James Gray","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":10325},{"Title":"2 For the Money","US Gross":22991379,"Worldwide Gross":27848418,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 07 2005","MPAA Rating":"R","Running Time min":123,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"D.J. Caruso","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Secondhand Lions","US Gross":42023715,"Worldwide Gross":47855342,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 19 2003","MPAA Rating":"PG","Running Time min":111,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":7.5,"IMDB Votes":19040},{"Title":"Two Can Play That Game","US Gross":22235901,"Worldwide Gross":22391450,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Sep 07 2001","MPAA Rating":"R","Running Time min":91,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":43,"IMDB Rating":5.6,"IMDB Votes":2370},{"Title":"Two Weeks Notice","US Gross":93354918,"Worldwide Gross":199043309,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 20 2002","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":5.8,"IMDB Votes":35515},{"Title":300,"US Gross":210614939,"Worldwide Gross":456068181,"US DVD Sales":261252400,"Production Budget":60000000,"Release Date":"Mar 09 2007","MPAA Rating":"R","Running Time min":117,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Zack Snyder","Rotten Tomatoes Rating":60,"IMDB Rating":7.8,"IMDB Votes":235508},{"Title":"30 Days of Night","US Gross":39568996,"Worldwide Gross":75066323,"US DVD Sales":26908243,"Production Budget":30000000,"Release Date":"Oct 19 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":49,"IMDB Rating":6.6,"IMDB Votes":52518},{"Title":"Three Kings","US Gross":60652036,"Worldwide Gross":107752036,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Oct 01 1999","MPAA Rating":"R","Running Time min":115,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"David O. Russell","Rotten Tomatoes Rating":94,"IMDB Rating":7.3,"IMDB Votes":68726},{"Title":"3000 Miles to Graceland","US Gross":15738632,"Worldwide Gross":18708848,"US DVD Sales":null,"Production Budget":62000000,"Release Date":"Feb 23 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":5.6,"IMDB Votes":20094},{"Title":"3 Strikes","US Gross":9821335,"Worldwide Gross":9821335,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Mar 01 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.9,"IMDB Votes":905},{"Title":"3:10 to Yuma","US Gross":53606916,"Worldwide Gross":69791889,"US DVD Sales":51359371,"Production Budget":48000000,"Release Date":"Sep 02 2007","MPAA Rating":"R","Running Time min":117,"Distributor":"Lionsgate","Source":"Remake","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"James Mangold","Rotten Tomatoes Rating":89,"IMDB Rating":7.9,"IMDB Votes":98355},{"Title":"40 Days and 40 Nights","US Gross":37939782,"Worldwide Gross":95092667,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Mar 01 2002","MPAA Rating":"R","Running Time min":96,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Michael Lehmann","Rotten Tomatoes Rating":38,"IMDB Rating":5.4,"IMDB Votes":27912},{"Title":"The 40 Year-old Virgin","US Gross":109449237,"Worldwide Gross":177339049,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Aug 19 2005","MPAA Rating":"R","Running Time min":111,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Judd Apatow","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":94557},{"Title":"Four Brothers","US Gross":74494381,"Worldwide Gross":92494381,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 12 2005","MPAA Rating":"R","Running Time min":109,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Singleton","Rotten Tomatoes Rating":52,"IMDB Rating":6.8,"IMDB Votes":38311},{"Title":"Four Christmases","US Gross":120146040,"Worldwide Gross":163546040,"US DVD Sales":26029004,"Production Budget":80000000,"Release Date":"Nov 26 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Seth Gordon","Rotten Tomatoes Rating":25,"IMDB Rating":5.7,"IMDB Votes":14690},{"Title":"The Four Feathers","US Gross":18306166,"Worldwide Gross":29882645,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 20 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Shekhar Kapur","Rotten Tomatoes Rating":41,"IMDB Rating":6.3,"IMDB Votes":13204},{"Title":"The Fourth Kind","US Gross":26218170,"Worldwide Gross":41826604,"US DVD Sales":6244985,"Production Budget":10000000,"Release Date":"Nov 06 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":6,"IMDB Votes":16107},{"Title":"4 luni, 3 saptamani si 2 zile","US Gross":1196321,"Worldwide Gross":4723542,"US DVD Sales":null,"Production Budget":900000,"Release Date":"Jan 25 2008","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"50 First Dates","US Gross":120776832,"Worldwide Gross":196376832,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Feb 13 2004","MPAA Rating":"PG-13","Running Time min":99,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Segal","Rotten Tomatoes Rating":44,"IMDB Rating":6.8,"IMDB Votes":64701},{"Title":"Six-String Samurai","US Gross":134624,"Worldwide Gross":134624,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Sep 18 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Palm Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":6.4,"IMDB Votes":3462},{"Title":"The 6th Day","US Gross":34543701,"Worldwide Gross":96024898,"US DVD Sales":null,"Production Budget":82000000,"Release Date":"Nov 17 2000","MPAA Rating":"PG-13","Running Time min":123,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Roger Spottiswoode","Rotten Tomatoes Rating":40,"IMDB Rating":5.8,"IMDB Votes":32606},{"Title":"Seven Pounds","US Gross":69951824,"Worldwide Gross":166617328,"US DVD Sales":27601737,"Production Budget":54000000,"Release Date":"Dec 19 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Gabriele Muccino","Rotten Tomatoes Rating":27,"IMDB Rating":7.6,"IMDB Votes":62718},{"Title":"88 Minutes","US Gross":16930884,"Worldwide Gross":32955399,"US DVD Sales":11385055,"Production Budget":30000000,"Release Date":"Apr 18 2008","MPAA Rating":"R","Running Time min":106,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Jon Avnet","Rotten Tomatoes Rating":5,"IMDB Rating":5.9,"IMDB Votes":31205},{"Title":"Eight Below","US Gross":81612565,"Worldwide Gross":120612565,"US DVD Sales":104578578,"Production Budget":40000000,"Release Date":"Feb 17 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Frank Marshall","Rotten Tomatoes Rating":71,"IMDB Rating":7.3,"IMDB Votes":17717},{"Title":"Eight Legged Freaks","US Gross":17266505,"Worldwide Gross":17266505,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jul 17 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":5.4,"IMDB Votes":18173},{"Title":"8 Mile","US Gross":116724075,"Worldwide Gross":242924075,"US DVD Sales":null,"Production Budget":41000000,"Release Date":"Nov 08 2002","MPAA Rating":"R","Running Time min":110,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Curtis Hanson","Rotten Tomatoes Rating":74,"IMDB Rating":6.7,"IMDB Votes":55877},{"Title":"8 femmes","US Gross":3076425,"Worldwide Gross":42376425,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Sep 20 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Based on Play","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":13631},{"Title":9,"US Gross":31749894,"Worldwide Gross":46603791,"US DVD Sales":8655698,"Production Budget":30000000,"Release Date":"Sep 09 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Shane Acker","Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":1488},{"Title":"Nine Queens","US Gross":1222889,"Worldwide Gross":12412889,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Apr 19 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Whole Ten Yards","US Gross":16323969,"Worldwide Gross":26323969,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Apr 09 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Howard Deutch","Rotten Tomatoes Rating":4,"IMDB Rating":5.1,"IMDB Votes":20807},{"Title":"The Whole Nine Yards","US Gross":57262492,"Worldwide Gross":85262492,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Feb 18 2000","MPAA Rating":"R","Running Time min":99,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":45,"IMDB Rating":6.6,"IMDB Votes":42928},{"Title":"About a Boy","US Gross":40803000,"Worldwide Gross":129949664,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"May 17 2002","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Paul Weitz","Rotten Tomatoes Rating":93,"IMDB Rating":7.4,"IMDB Votes":48875},{"Title":"A Bug's Life","US Gross":162798565,"Worldwide Gross":363109485,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Nov 20 1998","MPAA Rating":"G","Running Time min":96,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"John Lasseter","Rotten Tomatoes Rating":91,"IMDB Rating":7.3,"IMDB Votes":56866},{"Title":"Abandon","US Gross":10719367,"Worldwide Gross":12219367,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Oct 18 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":4.8,"IMDB Votes":5361},{"Title":"Absolute Power","US Gross":50068310,"Worldwide Gross":50068310,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 14 1997","MPAA Rating":"R","Running Time min":120,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":46,"IMDB Rating":6.5,"IMDB Votes":20154},{"Title":"Tristram Shandy: A Cock and Bull Story","US Gross":1253413,"Worldwide Gross":3061763,"US DVD Sales":null,"Production Budget":4750000,"Release Date":"Jan 27 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Picturehouse","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Michael Winterbottom","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Adoration","US Gross":294244,"Worldwide Gross":294244,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"May 08 2009","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Atom Egoyan","Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":1437},{"Title":"Adaptation","US Gross":22498520,"Worldwide Gross":22498520,"US DVD Sales":null,"Production Budget":18500000,"Release Date":"Dec 06 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Spike Jonze","Rotten Tomatoes Rating":91,"IMDB Rating":7.9,"IMDB Votes":67135},{"Title":"Anything Else","US Gross":3203044,"Worldwide Gross":13203044,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Sep 19 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":40,"IMDB Rating":6.4,"IMDB Votes":13010},{"Title":"Antwone Fisher","US Gross":21078145,"Worldwide Gross":23367586,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Dec 19 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Denzel Washington","Rotten Tomatoes Rating":79,"IMDB Rating":7.3,"IMDB Votes":13258},{"Title":"Aeon Flux","US Gross":25857987,"Worldwide Gross":47953341,"US DVD Sales":21927972,"Production Budget":55000000,"Release Date":"Dec 02 2005","MPAA Rating":"PG-13","Running Time min":88,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":8.1,"IMDB Votes":1193},{"Title":"After the Sunset","US Gross":28328132,"Worldwide Gross":38329114,"US DVD Sales":null,"Production Budget":57000000,"Release Date":"Nov 12 2004","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Brett Ratner","Rotten Tomatoes Rating":18,"IMDB Rating":6.2,"IMDB Votes":19793},{"Title":"A Good Year","US Gross":7459300,"Worldwide Gross":42064105,"US DVD Sales":7342760,"Production Budget":35000000,"Release Date":"Nov 10 2006","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":24,"IMDB Rating":6.8,"IMDB Votes":23149},{"Title":"Agora","US Gross":599903,"Worldwide Gross":32912303,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"May 28 2010","MPAA Rating":"R","Running Time min":141,"Distributor":"Newmarket Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":10054},{"Title":"Air Bud","US Gross":24646936,"Worldwide Gross":27555061,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 01 1997","MPAA Rating":"PG","Running Time min":97,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Charles Martin Smith","Rotten Tomatoes Rating":45,"IMDB Rating":4.6,"IMDB Votes":4698},{"Title":"Air Force One","US Gross":172956409,"Worldwide Gross":315268353,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Jul 25 1997","MPAA Rating":"R","Running Time min":124,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Wolfgang Petersen","Rotten Tomatoes Rating":78,"IMDB Rating":6.3,"IMDB Votes":61394},{"Title":"Akeelah and the Bee","US Gross":18848430,"Worldwide Gross":18948425,"US DVD Sales":25684049,"Production Budget":8000000,"Release Date":"Apr 28 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":7.6,"IMDB Votes":8245},{"Title":"All the King's Men","US Gross":7221458,"Worldwide Gross":9521458,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Sep 22 2006","MPAA Rating":"PG-13","Running Time min":128,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Steven Zaillian","Rotten Tomatoes Rating":11,"IMDB Rating":6,"IMDB Votes":11994},{"Title":"The Alamo","US Gross":22406362,"Worldwide Gross":23911362,"US DVD Sales":null,"Production Budget":92000000,"Release Date":"Apr 09 2004","MPAA Rating":"PG-13","Running Time min":137,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Western","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":5.9,"IMDB Votes":10063},{"Title":"All About the Benjamins","US Gross":25482931,"Worldwide Gross":25873145,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Mar 08 2002","MPAA Rating":"R","Running Time min":95,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Bray","Rotten Tomatoes Rating":29,"IMDB Rating":5.3,"IMDB Votes":4366},{"Title":"Albino Alligator","US Gross":353480,"Worldwide Gross":353480,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jan 17 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":"Kevin Spacey","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":4377},{"Title":"Sweet Home Alabama","US Gross":127214072,"Worldwide Gross":163379330,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Sep 27 2002","MPAA Rating":"PG-13","Running Time min":109,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Andy Tennant","Rotten Tomatoes Rating":37,"IMDB Rating":5.8,"IMDB Votes":29891},{"Title":"Fat Albert","US Gross":48114556,"Worldwide Gross":48563556,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Dec 25 2004","MPAA Rating":"PG","Running Time min":93,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Joel Zwick","Rotten Tomatoes Rating":21,"IMDB Rating":4,"IMDB Votes":4801},{"Title":"Alice in Wonderland","US Gross":334191110,"Worldwide Gross":1023291110,"US DVD Sales":70909558,"Production Budget":200000000,"Release Date":"Mar 05 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Tim Burton","Rotten Tomatoes Rating":51,"IMDB Rating":6.7,"IMDB Votes":63458},{"Title":"Alfie","US Gross":13395939,"Worldwide Gross":35195939,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Nov 05 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Charles Shyer","Rotten Tomatoes Rating":49,"IMDB Rating":6.1,"IMDB Votes":20769},{"Title":"It's All Gone Pete Tong","US Gross":120620,"Worldwide Gross":1470620,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Apr 15 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Matson","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":7631},{"Title":"Ali","US Gross":58183966,"Worldwide Gross":84383966,"US DVD Sales":null,"Production Budget":109000000,"Release Date":"Dec 25 2001","MPAA Rating":"R","Running Time min":159,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Michael Mann","Rotten Tomatoes Rating":67,"IMDB Rating":6.6,"IMDB Votes":31785},{"Title":"Alien: Resurrection","US Gross":47795018,"Worldwide Gross":160700000,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Nov 26 1997","MPAA Rating":"R","Running Time min":108,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Jean-Pierre Jeunet","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":66141},{"Title":"Alien","US Gross":80930630,"Worldwide Gross":203630630,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"May 25 1979","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":97,"IMDB Rating":8.5,"IMDB Votes":180387},{"Title":"A Lot Like Love","US Gross":21835784,"Worldwide Gross":47835784,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 22 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":41,"IMDB Rating":6.4,"IMDB Votes":17929},{"Title":"All the Pretty Horses","US Gross":15527125,"Worldwide Gross":18120267,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Dec 25 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Billy Bob Thornton","Rotten Tomatoes Rating":32,"IMDB Rating":5.7,"IMDB Votes":6511},{"Title":"Almost Famous","US Gross":32522352,"Worldwide Gross":47371191,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Sep 15 2000","MPAA Rating":"R","Running Time min":123,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Dramatization","Director":"Cameron Crowe","Rotten Tomatoes Rating":88,"IMDB Rating":8,"IMDB Votes":94424},{"Title":"Evan Almighty","US Gross":100289690,"Worldwide Gross":173219280,"US DVD Sales":38038256,"Production Budget":175000000,"Release Date":"Jun 22 2007","MPAA Rating":"PG","Running Time min":78,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Tom Shadyac","Rotten Tomatoes Rating":23,"IMDB Rating":5.5,"IMDB Votes":43164},{"Title":"Bruce Almighty","US Gross":242704995,"Worldwide Gross":485004995,"US DVD Sales":null,"Production Budget":81000000,"Release Date":"May 23 2003","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Tom Shadyac","Rotten Tomatoes Rating":48,"IMDB Rating":6.6,"IMDB Votes":92494},{"Title":"All or Nothing","US Gross":184255,"Worldwide Gross":184255,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Oct 25 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":"Mike Leigh","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Alone in the Dark","US Gross":5178569,"Worldwide Gross":8178569,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jan 28 2005","MPAA Rating":"R","Running Time min":96,"Distributor":"Lionsgate","Source":"Based on Game","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Uwe Boll","Rotten Tomatoes Rating":1,"IMDB Rating":2.3,"IMDB Votes":26028},{"Title":"Alpha and Omega 3D","US Gross":10115431,"Worldwide Gross":10115431,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Sep 17 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":83},{"Title":"Along Came a Spider","US Gross":74058698,"Worldwide Gross":105159085,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Apr 06 2001","MPAA Rating":"R","Running Time min":103,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Lee Tamahori","Rotten Tomatoes Rating":32,"IMDB Rating":6.1,"IMDB Votes":22994},{"Title":"The Dangerous Lives of Altar Boys","US Gross":1779284,"Worldwide Gross":1779284,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jun 14 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"ThinkFilm","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":77,"IMDB Rating":6.9,"IMDB Votes":7943},{"Title":"Alatriste","US Gross":0,"Worldwide Gross":22860477,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Dec 31 2007","MPAA Rating":null,"Running Time min":135,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":4944},{"Title":"Alvin and the Chipmunks","US Gross":217326974,"Worldwide Gross":360578644,"US DVD Sales":137516182,"Production Budget":55000000,"Release Date":"Dec 14 2007","MPAA Rating":"PG","Running Time min":92,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Tim Hill","Rotten Tomatoes Rating":27,"IMDB Rating":5.5,"IMDB Votes":19200},{"Title":"Alex & Emma","US Gross":14208384,"Worldwide Gross":15358583,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 20 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Rob Reiner","Rotten Tomatoes Rating":11,"IMDB Rating":5.4,"IMDB Votes":6539},{"Title":"Alexander","US Gross":34297191,"Worldwide Gross":167297191,"US DVD Sales":null,"Production Budget":155000000,"Release Date":"Nov 24 2004","MPAA Rating":"R","Running Time min":175,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Adventure","Creative Type":"Dramatization","Director":"Oliver Stone","Rotten Tomatoes Rating":16,"IMDB Rating":5.4,"IMDB Votes":59498},{"Title":"El Crimen de Padre","US Gross":5719000,"Worldwide Gross":5719000,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Nov 15 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Goldwyn Entertainment","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"American Beauty","US Gross":130058047,"Worldwide Gross":356258047,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Sep 15 1999","MPAA Rating":"R","Running Time min":118,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sam Mendes","Rotten Tomatoes Rating":89,"IMDB Rating":8.6,"IMDB Votes":292562},{"Title":"An American Carol","US Gross":7013191,"Worldwide Gross":7013191,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 03 2008","MPAA Rating":"PG-13","Running Time min":84,"Distributor":"Vivendi Entertainment","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"David Zucker","Rotten Tomatoes Rating":12,"IMDB Rating":4.5,"IMDB Votes":6000},{"Title":"American Dreamz","US Gross":7314027,"Worldwide Gross":16510971,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Apr 21 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Paul Weitz","Rotten Tomatoes Rating":40,"IMDB Rating":5.7,"IMDB Votes":15097},{"Title":"Amelia","US Gross":14246488,"Worldwide Gross":19722782,"US DVD Sales":5763807,"Production Budget":40000000,"Release Date":"Oct 23 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Mira Nair","Rotten Tomatoes Rating":21,"IMDB Rating":5.7,"IMDB Votes":3238},{"Title":"Le Fabuleux destin d'AmÈlie Poulain","US Gross":33201661,"Worldwide Gross":174201661,"US DVD Sales":null,"Production Budget":10350000,"Release Date":"Nov 02 2001","MPAA Rating":"R","Running Time min":122,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jean-Pierre Jeunet","Rotten Tomatoes Rating":null,"IMDB Rating":8.5,"IMDB Votes":181085},{"Title":"American History X","US Gross":6719864,"Worldwide Gross":6719864,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 30 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":8.6,"IMDB Votes":224857},{"Title":"American Gangster","US Gross":130164645,"Worldwide Gross":265697825,"US DVD Sales":72653959,"Production Budget":100000000,"Release Date":"Nov 02 2007","MPAA Rating":"R","Running Time min":157,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ridley Scott","Rotten Tomatoes Rating":79,"IMDB Rating":7.9,"IMDB Votes":114060},{"Title":"An American Haunting","US Gross":16298046,"Worldwide Gross":27844063,"US DVD Sales":9905802,"Production Budget":14000000,"Release Date":"May 05 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Freestyle Releasing","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":4.9,"IMDB Votes":13510},{"Title":"Amistad","US Gross":44212592,"Worldwide Gross":44212592,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Dec 12 1997","MPAA Rating":"R","Running Time min":152,"Distributor":"Dreamworks SKG","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Steven Spielberg","Rotten Tomatoes Rating":77,"IMDB Rating":7.1,"IMDB Votes":28477},{"Title":"AimÈe & Jaguar","US Gross":927107,"Worldwide Gross":927107,"US DVD Sales":null,"Production Budget":6800000,"Release Date":"Aug 11 2000","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Zeitgeist","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":2974},{"Title":"Amores Perros","US Gross":5383834,"Worldwide Gross":20883834,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Mar 30 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Alejandro Gonzalez Inarritu","Rotten Tomatoes Rating":null,"IMDB Rating":8.1,"IMDB Votes":61083},{"Title":"American Pie 2","US Gross":145096820,"Worldwide Gross":286500000,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 10 2001","MPAA Rating":"R","Running Time min":105,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":52,"IMDB Rating":6.2,"IMDB Votes":66751},{"Title":"American Wedding","US Gross":104354205,"Worldwide Gross":126425115,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Aug 01 2003","MPAA Rating":"R","Running Time min":96,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":56,"IMDB Rating":6.1,"IMDB Votes":52210},{"Title":"American Pie","US Gross":101800948,"Worldwide Gross":234800000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jul 09 1999","MPAA Rating":"R","Running Time min":95,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Paul Weitz","Rotten Tomatoes Rating":59,"IMDB Rating":6.9,"IMDB Votes":106624},{"Title":"American Psycho","US Gross":15070285,"Worldwide Gross":28674417,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Apr 14 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Historical Fiction","Director":"Mary Harron","Rotten Tomatoes Rating":66,"IMDB Rating":7.4,"IMDB Votes":99424},{"Title":"American Splendor","US Gross":6003587,"Worldwide Gross":7978681,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Aug 15 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":7.6,"IMDB Votes":23686},{"Title":"America's Sweethearts","US Gross":93607673,"Worldwide Gross":157627733,"US DVD Sales":null,"Production Budget":46000000,"Release Date":"Jul 20 2001","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":5.7,"IMDB Votes":26899},{"Title":"The Amityville Horror","US Gross":65233369,"Worldwide Gross":108047131,"US DVD Sales":null,"Production Budget":18500000,"Release Date":"Apr 15 2005","MPAA Rating":"R","Running Time min":89,"Distributor":"MGM","Source":"Remake","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":24,"IMDB Rating":5.8,"IMDB Votes":26303},{"Title":"Anacondas: The Hunt for the Blood Orchid","US Gross":31526393,"Worldwide Gross":70326393,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Aug 27 2004","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Dwight H. Little","Rotten Tomatoes Rating":null,"IMDB Rating":4.3,"IMDB Votes":9565},{"Title":"Anaconda","US Gross":65598907,"Worldwide Gross":136998907,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Apr 11 1997","MPAA Rating":"PG-13","Running Time min":89,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":4.2,"IMDB Votes":29430},{"Title":"Anastasia","US Gross":58403409,"Worldwide Gross":139801410,"US DVD Sales":null,"Production Budget":53000000,"Release Date":"Nov 14 1997","MPAA Rating":"G","Running Time min":94,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":"Factual","Director":"Don Bluth","Rotten Tomatoes Rating":85,"IMDB Rating":6.6,"IMDB Votes":16513},{"Title":"Anchorman: The Legend of Ron Burgundy","US Gross":84136909,"Worldwide Gross":89366354,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jul 09 2004","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Adam McKay","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":78249},{"Title":"Angels & Demons","US Gross":133375846,"Worldwide Gross":485975846,"US DVD Sales":32746864,"Production Budget":150000000,"Release Date":"May 15 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Ron Howard","Rotten Tomatoes Rating":35,"IMDB Rating":6.7,"IMDB Votes":60114},{"Title":"Angela's Ashes","US Gross":13038660,"Worldwide Gross":13038660,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Dec 24 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Alan Parker","Rotten Tomatoes Rating":52,"IMDB Rating":7,"IMDB Votes":10185},{"Title":"Angel Eyes","US Gross":24044532,"Worldwide Gross":24044532,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"May 18 2001","MPAA Rating":"R","Running Time min":103,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":5.5,"IMDB Votes":11089},{"Title":"Anger Management","US Gross":135560942,"Worldwide Gross":195660942,"US DVD Sales":null,"Production Budget":56000000,"Release Date":"Apr 11 2003","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Segal","Rotten Tomatoes Rating":43,"IMDB Rating":6.1,"IMDB Votes":57088},{"Title":"A Night at the Roxbury","US Gross":30331165,"Worldwide Gross":30331165,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Oct 02 1998","MPAA Rating":"PG-13","Running Time min":81,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":5.7,"IMDB Votes":23259},{"Title":"The Animal","US Gross":55762229,"Worldwide Gross":55762229,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Jun 01 2001","MPAA Rating":"PG-13","Running Time min":83,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Luke Greenfield","Rotten Tomatoes Rating":30,"IMDB Rating":4.6,"IMDB Votes":18601},{"Title":"Anna and the King","US Gross":39251128,"Worldwide Gross":39251128,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Dec 17 1999","MPAA Rating":"PG-13","Running Time min":147,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Andy Tennant","Rotten Tomatoes Rating":51,"IMDB Rating":6.5,"IMDB Votes":14881},{"Title":"Analyze That","US Gross":32122249,"Worldwide Gross":54994757,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 06 2002","MPAA Rating":"R","Running Time min":96,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Harold Ramis","Rotten Tomatoes Rating":27,"IMDB Rating":5.6,"IMDB Votes":24090},{"Title":"Analyze This","US Gross":106885658,"Worldwide Gross":176885658,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Mar 05 1999","MPAA Rating":"R","Running Time min":103,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Harold Ramis","Rotten Tomatoes Rating":68,"IMDB Rating":6.6,"IMDB Votes":52894},{"Title":"The Ant Bully","US Gross":28142535,"Worldwide Gross":55181129,"US DVD Sales":28562108,"Production Budget":45000000,"Release Date":"Jul 28 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.2,"IMDB Votes":7766},{"Title":"Antitrust","US Gross":10965209,"Worldwide Gross":10965209,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jan 12 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":25,"IMDB Rating":6,"IMDB Votes":16263},{"Title":"Marie Antoinette","US Gross":15962471,"Worldwide Gross":60862471,"US DVD Sales":16636006,"Production Budget":40000000,"Release Date":"Oct 20 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Sofia Coppola","Rotten Tomatoes Rating":55,"IMDB Rating":6.4,"IMDB Votes":31877},{"Title":"Antz","US Gross":90757863,"Worldwide Gross":152457863,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Oct 02 1998","MPAA Rating":"PG","Running Time min":83,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Tim Johnson","Rotten Tomatoes Rating":95,"IMDB Rating":6.8,"IMDB Votes":37343},{"Title":"Anywhere But Here","US Gross":18653615,"Worldwide Gross":18653615,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Nov 12 1999","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Wayne Wang","Rotten Tomatoes Rating":64,"IMDB Rating":5.9,"IMDB Votes":8514},{"Title":"Appaloosa","US Gross":20211394,"Worldwide Gross":26111394,"US DVD Sales":10698987,"Production Budget":20000000,"Release Date":"Sep 19 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Ed Harris","Rotten Tomatoes Rating":76,"IMDB Rating":6.8,"IMDB Votes":22836},{"Title":"Apocalypto","US Gross":50866635,"Worldwide Gross":117785051,"US DVD Sales":43318599,"Production Budget":40000000,"Release Date":"Dec 08 2006","MPAA Rating":"R","Running Time min":136,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Mel Gibson","Rotten Tomatoes Rating":64,"IMDB Rating":7.9,"IMDB Votes":82162},{"Title":"Pieces of April","US Gross":2528664,"Worldwide Gross":3284124,"US DVD Sales":null,"Production Budget":300000,"Release Date":"Oct 17 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":85,"IMDB Rating":7.2,"IMDB Votes":12153},{"Title":"The Apostle","US Gross":20733485,"Worldwide Gross":21277770,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Dec 17 1997","MPAA Rating":"PG-13","Running Time min":148,"Distributor":"October Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Robert Duvall","Rotten Tomatoes Rating":91,"IMDB Rating":7.1,"IMDB Votes":7757},{"Title":"Aquamarine","US Gross":18597342,"Worldwide Gross":22978953,"US DVD Sales":29637202,"Production Budget":17000000,"Release Date":"Mar 03 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":52,"IMDB Rating":4.6,"IMDB Votes":9116},{"Title":"Ararat","US Gross":1693000,"Worldwide Gross":1693000,"US DVD Sales":null,"Production Budget":15500000,"Release Date":"Nov 15 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Atom Egoyan","Rotten Tomatoes Rating":56,"IMDB Rating":6.6,"IMDB Votes":6763},{"Title":"Are We There Yet?","US Gross":82674398,"Worldwide Gross":97918663,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jan 21 2005","MPAA Rating":"PG","Running Time min":94,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Kids Fiction","Director":"Brian Levant","Rotten Tomatoes Rating":12,"IMDB Rating":4.2,"IMDB Votes":8740},{"Title":"Arlington Road","US Gross":24419219,"Worldwide Gross":24419219,"US DVD Sales":null,"Production Budget":21500000,"Release Date":"Jul 09 1999","MPAA Rating":"R","Running Time min":117,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":7.2,"IMDB Votes":36051},{"Title":"Armageddon","US Gross":201578182,"Worldwide Gross":554600000,"US DVD Sales":null,"Production Budget":140000000,"Release Date":"Jul 01 1998","MPAA Rating":"PG-13","Running Time min":150,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Michael Bay","Rotten Tomatoes Rating":42,"IMDB Rating":6.1,"IMDB Votes":194},{"Title":"Hey Arnold! The Movie","US Gross":13684949,"Worldwide Gross":13684949,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jun 28 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":5.3,"IMDB Votes":1629},{"Title":"Against the Ropes","US Gross":5881504,"Worldwide Gross":6429865,"US DVD Sales":null,"Production Budget":39000000,"Release Date":"Feb 20 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Charles S. Dutton","Rotten Tomatoes Rating":12,"IMDB Rating":5.2,"IMDB Votes":3547},{"Title":"King Arthur","US Gross":51877963,"Worldwide Gross":203877963,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jul 07 2004","MPAA Rating":"PG-13","Running Time min":126,"Distributor":"Walt Disney Pictures","Source":"Traditional/Legend/Fairytale","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Antoine Fuqua","Rotten Tomatoes Rating":31,"IMDB Rating":6.2,"IMDB Votes":53106},{"Title":"Arthur et les Minimoys","US Gross":15132763,"Worldwide Gross":110102340,"US DVD Sales":13012362,"Production Budget":80000000,"Release Date":"Dec 15 2006","MPAA Rating":"PG","Running Time min":122,"Distributor":"Weinstein Co.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Luc Besson","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":7626},{"Title":"Artificial Intelligence: AI","US Gross":78616689,"Worldwide Gross":235900000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jun 29 2001","MPAA Rating":"PG-13","Running Time min":146,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":91901},{"Title":"The Art of War","US Gross":30199105,"Worldwide Gross":30199105,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 25 2000","MPAA Rating":"R","Running Time min":117,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Christian Duguay","Rotten Tomatoes Rating":16,"IMDB Rating":5.5,"IMDB Votes":12484},{"Title":"Astro Boy","US Gross":19551067,"Worldwide Gross":44093014,"US DVD Sales":7166365,"Production Budget":65000000,"Release Date":"Oct 23 2009","MPAA Rating":"PG","Running Time min":94,"Distributor":"Summit Entertainment","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"David Bowers","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":5265},{"Title":"A Serious Man","US Gross":9228788,"Worldwide Gross":30710147,"US DVD Sales":3614635,"Production Budget":7000000,"Release Date":"Oct 02 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Joel Coen","Rotten Tomatoes Rating":88,"IMDB Rating":7.2,"IMDB Votes":32396},{"Title":"The Astronaut Farmer","US Gross":11003643,"Worldwide Gross":11003643,"US DVD Sales":13774930,"Production Budget":13000000,"Release Date":"Feb 23 2007","MPAA Rating":"PG","Running Time min":109,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Michael Polish","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":10506},{"Title":"As Good as it Gets","US Gross":148478011,"Worldwide Gross":314111923,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Dec 24 1997","MPAA Rating":"PG-13","Running Time min":138,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"James L. Brooks","Rotten Tomatoes Rating":85,"IMDB Rating":7.8,"IMDB Votes":92240},{"Title":"A Single Man","US Gross":9176000,"Worldwide Gross":19112672,"US DVD Sales":2010869,"Production Budget":7000000,"Release Date":"Dec 11 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":85,"IMDB Rating":7.6,"IMDB Votes":14548},{"Title":"A Simple Plan","US Gross":16316273,"Worldwide Gross":16316273,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Dec 11 1998","MPAA Rating":"R","Running Time min":121,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sam Raimi","Rotten Tomatoes Rating":90,"IMDB Rating":7.6,"IMDB Votes":29095},{"Title":"Assault On Precinct 13","US Gross":20040895,"Worldwide Gross":36040895,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jan 19 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus/Rogue Pictures","Source":"Remake","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":7.4,"IMDB Votes":13456},{"Title":"The Astronaut's Wife","US Gross":10672566,"Worldwide Gross":10672566,"US DVD Sales":null,"Production Budget":34000000,"Release Date":"Aug 27 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":4.9,"IMDB Votes":20259},{"Title":"The A-Team","US Gross":77222099,"Worldwide Gross":176047914,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Jun 11 2010","MPAA Rating":"PG-13","Running Time min":119,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Action","Creative Type":null,"Director":"Joe Carnahan","Rotten Tomatoes Rating":47,"IMDB Rating":7.2,"IMDB Votes":29886},{"Title":"At First Sight","US Gross":22365133,"Worldwide Gross":22365133,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jan 15 1999","MPAA Rating":"PG-13","Running Time min":128,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5.6,"IMDB Votes":6872},{"Title":"Aqua Teen Hunger Force: The Movie","US Gross":5520368,"Worldwide Gross":5520368,"US DVD Sales":12134593,"Production Budget":750000,"Release Date":"Apr 13 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"First Look","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"ATL","US Gross":21170563,"Worldwide Gross":21170563,"US DVD Sales":29368071,"Production Budget":17000000,"Release Date":"Mar 31 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":4.7,"IMDB Votes":5480},{"Title":"Atlantis: The Lost Empire","US Gross":84052762,"Worldwide Gross":186049020,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jun 08 2001","MPAA Rating":"PG","Running Time min":96,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Gary Trousdale","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":15552},{"Title":"Hearts in Atlantis","US Gross":24185781,"Worldwide Gross":30885781,"US DVD Sales":null,"Production Budget":31000000,"Release Date":"Sep 28 2001","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":49,"IMDB Rating":6.8,"IMDB Votes":16336},{"Title":"Autumn in New York","US Gross":37752931,"Worldwide Gross":90717684,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 11 2000","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Joan Chen","Rotten Tomatoes Rating":21,"IMDB Rating":4.8,"IMDB Votes":9309},{"Title":"Atonement","US Gross":50980159,"Worldwide Gross":129425746,"US DVD Sales":15678677,"Production Budget":30000000,"Release Date":"Dec 07 2007","MPAA Rating":"R","Running Time min":130,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Joe Wright","Rotten Tomatoes Rating":83,"IMDB Rating":7.9,"IMDB Votes":75491},{"Title":"The Rules of Attraction","US Gross":6525762,"Worldwide Gross":11799060,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Oct 11 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":6.7,"IMDB Votes":26634},{"Title":"August Rush","US Gross":31664162,"Worldwide Gross":65627510,"US DVD Sales":22082092,"Production Budget":25000000,"Release Date":"Nov 17 2007","MPAA Rating":"PG","Running Time min":113,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":37,"IMDB Rating":7.5,"IMDB Votes":28650},{"Title":"Across the Universe","US Gross":24343673,"Worldwide Gross":29367143,"US DVD Sales":25759408,"Production Budget":45000000,"Release Date":"Sep 14 2007","MPAA Rating":"PG-13","Running Time min":133,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":53,"IMDB Rating":7.5,"IMDB Votes":45611},{"Title":"Austin Powers: The Spy Who Shagged Me","US Gross":206040085,"Worldwide Gross":309600000,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Jun 10 1999","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Jay Roach","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":81005},{"Title":"Austin Powers in Goldmember","US Gross":213117789,"Worldwide Gross":292738626,"US DVD Sales":null,"Production Budget":63000000,"Release Date":"Jul 25 2002","MPAA Rating":"PG-13","Running Time min":94,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Jay Roach","Rotten Tomatoes Rating":54,"IMDB Rating":6.2,"IMDB Votes":69140},{"Title":"Austin Powers: International Man of Mystery","US Gross":53883989,"Worldwide Gross":67683989,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"May 02 1997","MPAA Rating":"PG-13","Running Time min":89,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jay Roach","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":74487},{"Title":"Australia","US Gross":49551662,"Worldwide Gross":207482792,"US DVD Sales":28789275,"Production Budget":78000000,"Release Date":"Nov 26 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Baz Luhrmann","Rotten Tomatoes Rating":54,"IMDB Rating":6.8,"IMDB Votes":38089},{"Title":"Auto Focus","US Gross":2062066,"Worldwide Gross":2703821,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Oct 18 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Paul Schrader","Rotten Tomatoes Rating":72,"IMDB Rating":6.6,"IMDB Votes":7236},{"Title":"Avatar","US Gross":760167650,"Worldwide Gross":2767891499,"US DVD Sales":146153933,"Production Budget":237000000,"Release Date":"Dec 18 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"James Cameron","Rotten Tomatoes Rating":83,"IMDB Rating":8.3,"IMDB Votes":261439},{"Title":"The Avengers","US Gross":23385416,"Worldwide Gross":48585416,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Aug 14 1998","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":3.4,"IMDB Votes":21432},{"Title":"The Aviator","US Gross":102608827,"Worldwide Gross":214608827,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Dec 17 2004","MPAA Rating":"PG-13","Running Time min":170,"Distributor":"Miramax","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Martin Scorsese","Rotten Tomatoes Rating":88,"IMDB Rating":7.6,"IMDB Votes":85740},{"Title":"AVP: Alien Vs. Predator","US Gross":80281096,"Worldwide Gross":172543519,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Aug 13 2004","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"20th Century Fox","Source":"Spin-Off","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Paul Anderson","Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":63019},{"Title":"Around the World in 80 Days","US Gross":24004159,"Worldwide Gross":72004159,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Jun 16 2004","MPAA Rating":"PG","Running Time min":120,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Frank Coraci","Rotten Tomatoes Rating":30,"IMDB Rating":5.6,"IMDB Votes":21516},{"Title":"Awake","US Gross":14373825,"Worldwide Gross":30757745,"US DVD Sales":13038208,"Production Budget":8600000,"Release Date":"Nov 30 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":24,"IMDB Rating":6.5,"IMDB Votes":26076},{"Title":"And When Did You Last See Your Father?","US Gross":1071240,"Worldwide Gross":2476491,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Jun 06 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":1798},{"Title":"Away We Go","US Gross":9451946,"Worldwide Gross":10108016,"US DVD Sales":3788940,"Production Budget":21000000,"Release Date":"Jun 05 2009","MPAA Rating":"R","Running Time min":98,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Sam Mendes","Rotten Tomatoes Rating":66,"IMDB Rating":7.3,"IMDB Votes":14929},{"Title":"Don't Say a Word","US Gross":54997476,"Worldwide Gross":104488383,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Sep 28 2001","MPAA Rating":"R","Running Time min":113,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":6.1,"IMDB Votes":22157},{"Title":"Babe: Pig in the City","US Gross":18319860,"Worldwide Gross":69131860,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Nov 25 1998","MPAA Rating":"G","Running Time min":75,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"George Miller","Rotten Tomatoes Rating":61,"IMDB Rating":6.1,"IMDB Votes":9918},{"Title":"Babel","US Gross":34302837,"Worldwide Gross":135302837,"US DVD Sales":31459208,"Production Budget":20000000,"Release Date":"Oct 27 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Alejandro Gonzalez Inarritu","Rotten Tomatoes Rating":69,"IMDB Rating":7.6,"IMDB Votes":95122},{"Title":"Babylon A.D.","US Gross":22532572,"Worldwide Gross":70216497,"US DVD Sales":16787309,"Production Budget":45000000,"Release Date":"Aug 29 2008","MPAA Rating":"PG-13","Running Time min":100,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Mathieu Kassovitz","Rotten Tomatoes Rating":7,"IMDB Rating":5.3,"IMDB Votes":27189},{"Title":"My Baby's Daddy","US Gross":17321573,"Worldwide Gross":17322212,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jan 09 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4,"IMDB Votes":2010},{"Title":"Super Babies: Baby Geniuses 2","US Gross":9109322,"Worldwide Gross":9109322,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Aug 27 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":1.4,"IMDB Votes":10886},{"Title":"Baby Geniuses","US Gross":27151490,"Worldwide Gross":27151490,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Mar 12 1999","MPAA Rating":"PG","Running Time min":94,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":2,"IMDB Rating":2.2,"IMDB Votes":9038},{"Title":"Bad Boys II","US Gross":138540870,"Worldwide Gross":272940870,"US DVD Sales":null,"Production Budget":130000000,"Release Date":"Jul 18 2003","MPAA Rating":"R","Running Time min":147,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Michael Bay","Rotten Tomatoes Rating":24,"IMDB Rating":6.2,"IMDB Votes":58002},{"Title":"Bad Company","US Gross":30157016,"Worldwide Gross":69157016,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Jun 07 2002","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":10,"IMDB Rating":5.3,"IMDB Votes":17901},{"Title":"La mala educaciÛn","US Gross":5211842,"Worldwide Gross":40311842,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Nov 19 2004","MPAA Rating":"NC-17","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Pedro Almodovar","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":21756},{"Title":"Bad Lieutenant: Port of Call New Orleans","US Gross":1702112,"Worldwide Gross":8162545,"US DVD Sales":3902817,"Production Budget":25000000,"Release Date":"Nov 20 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"First Look","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Werner Herzog","Rotten Tomatoes Rating":87,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Bad News Bears","US Gross":32868349,"Worldwide Gross":33500620,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Jul 22 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Richard Linklater","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":7749},{"Title":"Burn After Reading","US Gross":60355347,"Worldwide Gross":163415735,"US DVD Sales":19163475,"Production Budget":37000000,"Release Date":"Sep 12 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Joel Coen","Rotten Tomatoes Rating":78,"IMDB Rating":7.2,"IMDB Votes":92553},{"Title":"Bait","US Gross":15325127,"Worldwide Gross":15471969,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 15 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Antoine Fuqua","Rotten Tomatoes Rating":26,"IMDB Rating":5.6,"IMDB Votes":5143},{"Title":"Boys and Girls","US Gross":21799652,"Worldwide Gross":21799652,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Jun 16 2000","MPAA Rating":"PG-13","Running Time min":94,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":4.9,"IMDB Votes":7779},{"Title":"Black and White","US Gross":5241315,"Worldwide Gross":5241315,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Apr 05 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"James Toback","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":452},{"Title":"Bangkok Dangerous","US Gross":15298133,"Worldwide Gross":46598133,"US DVD Sales":15494886,"Production Budget":45000000,"Release Date":"Sep 05 2008","MPAA Rating":"R","Running Time min":98,"Distributor":"Lionsgate","Source":"Remake","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Oxide Pang Chun","Rotten Tomatoes Rating":9,"IMDB Rating":5.4,"IMDB Votes":20931},{"Title":"The Banger Sisters","US Gross":30306281,"Worldwide Gross":38067218,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Sep 20 2002","MPAA Rating":"R","Running Time min":98,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":5.5,"IMDB Votes":7435},{"Title":"Les invasions barbares","US Gross":8460000,"Worldwide Gross":8460000,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"May 09 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":14322},{"Title":"Barney's Great Adventure","US Gross":11156471,"Worldwide Gross":11156471,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 03 1998","MPAA Rating":"G","Running Time min":null,"Distributor":"Polygram","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.1,"IMDB Votes":1456},{"Title":"Basic Instinct 2","US Gross":5946136,"Worldwide Gross":35417162,"US DVD Sales":6188980,"Production Budget":70000000,"Release Date":"Mar 31 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Michael Caton-Jones","Rotten Tomatoes Rating":7,"IMDB Rating":3.9,"IMDB Votes":16784},{"Title":"Basic","US Gross":26599248,"Worldwide Gross":42598498,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Mar 28 2003","MPAA Rating":"R","Running Time min":98,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"John McTiernan","Rotten Tomatoes Rating":21,"IMDB Rating":6.3,"IMDB Votes":25960},{"Title":"Batman Begins","US Gross":205343774,"Worldwide Gross":372353017,"US DVD Sales":null,"Production Budget":150000000,"Release Date":"Jun 15 2005","MPAA Rating":"PG-13","Running Time min":140,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Christopher Nolan","Rotten Tomatoes Rating":84,"IMDB Rating":8.3,"IMDB Votes":270641},{"Title":"Battlefield Earth: A Saga of the Year 3000","US Gross":21471685,"Worldwide Gross":29725663,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"May 12 2000","MPAA Rating":"PG-13","Running Time min":121,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.3,"IMDB Votes":39316},{"Title":"The Dark Knight","US Gross":533345358,"Worldwide Gross":1022345358,"US DVD Sales":234119058,"Production Budget":185000000,"Release Date":"Jul 18 2008","MPAA Rating":"PG-13","Running Time min":152,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Christopher Nolan","Rotten Tomatoes Rating":93,"IMDB Rating":8.9,"IMDB Votes":465000},{"Title":"Bats","US Gross":10155691,"Worldwide Gross":10155691,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"Oct 22 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":3.3,"IMDB Votes":5565},{"Title":"The Battle of Shaker Heights","US Gross":280351,"Worldwide Gross":280351,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Aug 22 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":43,"IMDB Rating":6.1,"IMDB Votes":2524},{"Title":"Baby Boy","US Gross":28734552,"Worldwide Gross":28734552,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Jun 27 2001","MPAA Rating":"R","Running Time min":130,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Singleton","Rotten Tomatoes Rating":69,"IMDB Rating":6.1,"IMDB Votes":4485},{"Title":"The Curious Case of Benjamin Button","US Gross":127509326,"Worldwide Gross":329809326,"US DVD Sales":42850598,"Production Budget":160000000,"Release Date":"Dec 25 2008","MPAA Rating":"PG-13","Running Time min":167,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":"David Fincher","Rotten Tomatoes Rating":72,"IMDB Rating":8,"IMDB Votes":137120},{"Title":"Baby Mama","US Gross":60494212,"Worldwide Gross":64391484,"US DVD Sales":24304275,"Production Budget":null,"Release Date":"Apr 25 2008","MPAA Rating":"PG-13","Running Time min":99,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.1,"IMDB Votes":16128},{"Title":"Bless the Child","US Gross":29374178,"Worldwide Gross":40435694,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 11 2000","MPAA Rating":"R","Running Time min":108,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":"Chuck Russell","Rotten Tomatoes Rating":3,"IMDB Rating":4.8,"IMDB Votes":7765},{"Title":"The Bachelor","US Gross":21731001,"Worldwide Gross":36882378,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Nov 05 1999","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"New Line","Source":"Remake","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":4.8,"IMDB Votes":9030},{"Title":"The Broken Hearts Club: A Romantic Comedy","US Gross":1744858,"Worldwide Gross":2022442,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 29 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":3731},{"Title":"Be Cool","US Gross":55849401,"Worldwide Gross":94849401,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Mar 04 2005","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"F. Gary Gray","Rotten Tomatoes Rating":30,"IMDB Rating":5.6,"IMDB Votes":32082},{"Title":"Big Daddy","US Gross":163479795,"Worldwide Gross":234779795,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 25 1999","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Dennis Dugan","Rotten Tomatoes Rating":40,"IMDB Rating":4.7,"IMDB Votes":48},{"Title":"Bedazzled","US Gross":37879996,"Worldwide Gross":90376224,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Oct 20 2000","MPAA Rating":"PG-13","Running Time min":93,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Harold Ramis","Rotten Tomatoes Rating":49,"IMDB Rating":5.9,"IMDB Votes":30946},{"Title":"Body of Lies","US Gross":39394666,"Worldwide Gross":108394666,"US DVD Sales":22024703,"Production Budget":67500000,"Release Date":"Oct 10 2008","MPAA Rating":"R","Running Time min":129,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":52,"IMDB Rating":7.2,"IMDB Votes":53921},{"Title":"Blood Diamond","US Gross":57377916,"Worldwide Gross":171377916,"US DVD Sales":62588936,"Production Budget":100000000,"Release Date":"Dec 08 2006","MPAA Rating":"R","Running Time min":143,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Edward Zwick","Rotten Tomatoes Rating":62,"IMDB Rating":8,"IMDB Votes":118925},{"Title":"Mr. Bean's Holiday","US Gross":33302167,"Worldwide Gross":229736344,"US DVD Sales":28248145,"Production Budget":25000000,"Release Date":"Aug 24 2007","MPAA Rating":"G","Running Time min":88,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":6,"IMDB Votes":28950},{"Title":"Beautiful","US Gross":3134509,"Worldwide Gross":3134509,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Sep 29 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Destination Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sally Field","Rotten Tomatoes Rating":15,"IMDB Rating":4.4,"IMDB Votes":2238},{"Title":"Beavis and Butt-head Do America","US Gross":63118386,"Worldwide Gross":63118386,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 20 1996","MPAA Rating":"PG-13","Running Time min":80,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Mike Judge","Rotten Tomatoes Rating":71,"IMDB Rating":6.6,"IMDB Votes":22918},{"Title":"Bend it Like Beckham","US Gross":32543449,"Worldwide Gross":76583333,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Mar 12 2003","MPAA Rating":"PG-13","Running Time min":112,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Gurinder Chadha","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":41052},{"Title":"In the Bedroom","US Gross":35930604,"Worldwide Gross":43430604,"US DVD Sales":null,"Production Budget":1700000,"Release Date":"Nov 23 2001","MPAA Rating":"R","Running Time min":130,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Todd Field","Rotten Tomatoes Rating":93,"IMDB Rating":7.5,"IMDB Votes":20888},{"Title":"Bee Movie","US Gross":126631277,"Worldwide Gross":287594577,"US DVD Sales":79628881,"Production Budget":150000000,"Release Date":"Nov 02 2007","MPAA Rating":"PG","Running Time min":90,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Steve Hickner","Rotten Tomatoes Rating":51,"IMDB Rating":6.3,"IMDB Votes":30575},{"Title":"Artie Lange's Beer League","US Gross":475000,"Worldwide Gross":475000,"US DVD Sales":null,"Production Budget":2800000,"Release Date":"Sep 15 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Freestyle Releasing","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Being John Malkovich","US Gross":22858926,"Worldwide Gross":32382381,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Oct 29 1999","MPAA Rating":"R","Running Time min":112,"Distributor":"USA Films","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Fantasy","Director":"Spike Jonze","Rotten Tomatoes Rating":92,"IMDB Rating":7.9,"IMDB Votes":113568},{"Title":"Behind Enemy Lines","US Gross":58855732,"Worldwide Gross":58855732,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Nov 30 2001","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":6.1,"IMDB Votes":32575},{"Title":"Bella","US Gross":8093373,"Worldwide Gross":9220041,"US DVD Sales":5935632,"Production Budget":3300000,"Release Date":"Oct 26 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Roadside Attractions","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":6562},{"Title":"Beloved","US Gross":22852487,"Worldwide Gross":22852487,"US DVD Sales":null,"Production Budget":53000000,"Release Date":"Oct 16 1998","MPAA Rating":"R","Running Time min":172,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Jonathan Demme","Rotten Tomatoes Rating":77,"IMDB Rating":5.3,"IMDB Votes":102},{"Title":"Les Triplettes de Belleville","US Gross":7301288,"Worldwide Gross":14440113,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Nov 26 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":19761},{"Title":"Beyond the Mat","US Gross":2047570,"Worldwide Gross":2047570,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Oct 22 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":82,"IMDB Rating":7.2,"IMDB Votes":4067},{"Title":"The Benchwarmers","US Gross":59843754,"Worldwide Gross":64843754,"US DVD Sales":32764806,"Production Budget":35000000,"Release Date":"Apr 07 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Dennis Dugan","Rotten Tomatoes Rating":12,"IMDB Rating":5.4,"IMDB Votes":17824},{"Title":"The Last Airbender","US Gross":131591957,"Worldwide Gross":290191957,"US DVD Sales":null,"Production Budget":150000000,"Release Date":"Jul 01 2010","MPAA Rating":null,"Running Time min":103,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"M. Night Shyamalan","Rotten Tomatoes Rating":7,"IMDB Rating":4.4,"IMDB Votes":16600},{"Title":"Beowulf","US Gross":82195215,"Worldwide Gross":194995215,"US DVD Sales":35961910,"Production Budget":150000000,"Release Date":"Nov 16 2007","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Robert Zemeckis","Rotten Tomatoes Rating":70,"IMDB Rating":6.6,"IMDB Votes":62513},{"Title":"The Importance of Being Earnest","US Gross":8378141,"Worldwide Gross":8378141,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"May 22 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":58,"IMDB Rating":6.7,"IMDB Votes":9345},{"Title":"Beauty Shop","US Gross":36351350,"Worldwide Gross":38351350,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 30 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Spin-Off","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Bille Woodruff","Rotten Tomatoes Rating":38,"IMDB Rating":5.3,"IMDB Votes":5468},{"Title":"Better Luck Tomorrow","US Gross":3802390,"Worldwide Gross":3809226,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Apr 11 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Justin Lin","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":5959},{"Title":"Big Fat Liar","US Gross":47811275,"Worldwide Gross":52375275,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Feb 08 2002","MPAA Rating":"PG","Running Time min":88,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Shawn Levy","Rotten Tomatoes Rating":43,"IMDB Rating":5.2,"IMDB Votes":9877},{"Title":"Big Fish","US Gross":66432867,"Worldwide Gross":123432867,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Dec 10 2003","MPAA Rating":"PG-13","Running Time min":125,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Tim Burton","Rotten Tomatoes Rating":77,"IMDB Rating":8.1,"IMDB Votes":141099},{"Title":"Before Sunset","US Gross":5792822,"Worldwide Gross":11293790,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jul 02 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Independent","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Richard Linklater","Rotten Tomatoes Rating":95,"IMDB Rating":8,"IMDB Votes":45535},{"Title":"The Big Hit","US Gross":27066941,"Worldwide Gross":27066941,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Apr 24 1998","MPAA Rating":"R","Running Time min":91,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":41,"IMDB Rating":5.8,"IMDB Votes":14157},{"Title":"Birthday Girl","US Gross":4919896,"Worldwide Gross":8130727,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Feb 01 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":13366},{"Title":"The Big Lebowski","US Gross":17498804,"Worldwide Gross":46189568,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Mar 06 1998","MPAA Rating":"R","Running Time min":127,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Joel Coen","Rotten Tomatoes Rating":78,"IMDB Rating":8.2,"IMDB Votes":177960},{"Title":"Big Momma's House","US Gross":117559438,"Worldwide Gross":173559438,"US DVD Sales":null,"Production Budget":33000000,"Release Date":"Jun 02 2000","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Raja Gosnell","Rotten Tomatoes Rating":30,"IMDB Rating":4.7,"IMDB Votes":21318},{"Title":"Black Hawk Down","US Gross":108638745,"Worldwide Gross":173638745,"US DVD Sales":970318,"Production Budget":95000000,"Release Date":"Dec 28 2001","MPAA Rating":"R","Running Time min":144,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Dramatization","Director":"Ridley Scott","Rotten Tomatoes Rating":76,"IMDB Rating":7.7,"IMDB Votes":98653},{"Title":"Eye of the Beholder","US Gross":16500786,"Worldwide Gross":18260865,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jan 28 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Destination Films","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":9992},{"Title":"The Big Bounce","US Gross":6471394,"Worldwide Gross":6626115,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jan 30 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.8,"IMDB Votes":9195},{"Title":"Big Trouble","US Gross":7262288,"Worldwide Gross":8488871,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Apr 05 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Barry Sonnenfeld","Rotten Tomatoes Rating":48,"IMDB Rating":6.3,"IMDB Votes":11610},{"Title":"Billy Elliot","US Gross":21995263,"Worldwide Gross":109280263,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Oct 13 2000","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Stephen Daldry","Rotten Tomatoes Rating":85,"IMDB Rating":7.7,"IMDB Votes":38403},{"Title":"Bicentennial Man","US Gross":58220776,"Worldwide Gross":87420776,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Dec 17 1999","MPAA Rating":"PG","Running Time min":132,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Chris Columbus","Rotten Tomatoes Rating":38,"IMDB Rating":6.4,"IMDB Votes":28827},{"Title":"Birth","US Gross":5005899,"Worldwide Gross":14603001,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 29 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":39,"IMDB Rating":6.3,"IMDB Votes":25},{"Title":"Becoming Jane","US Gross":18663911,"Worldwide Gross":37304637,"US DVD Sales":8061456,"Production Budget":16500000,"Release Date":"Aug 03 2007","MPAA Rating":"PG","Running Time min":120,"Distributor":"Miramax","Source":"Based on Real Life Events","Major Genre":"Romantic Comedy","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":58,"IMDB Rating":7,"IMDB Votes":15167},{"Title":"Bridget Jones: The Edge Of Reason","US Gross":40203020,"Worldwide Gross":263894551,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Nov 12 2004","MPAA Rating":"R","Running Time min":108,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":26325},{"Title":"Bridget Jones's Diary","US Gross":71500556,"Worldwide Gross":281527158,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 13 2001","MPAA Rating":"R","Running Time min":97,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":80,"IMDB Rating":6.8,"IMDB Votes":58213},{"Title":"The Bank Job","US Gross":30060660,"Worldwide Gross":63060660,"US DVD Sales":17254299,"Production Budget":20000000,"Release Date":"Mar 07 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Thriller/Suspense","Creative Type":"Dramatization","Director":"Roger Donaldson","Rotten Tomatoes Rating":79,"IMDB Rating":7.5,"IMDB Votes":50848},{"Title":"Blade","US Gross":70141876,"Worldwide Gross":131237688,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Aug 21 1998","MPAA Rating":"R","Running Time min":121,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Stephen Norrington","Rotten Tomatoes Rating":55,"IMDB Rating":7,"IMDB Votes":64896},{"Title":"The Blair Witch Project","US Gross":140539099,"Worldwide Gross":248300000,"US DVD Sales":null,"Production Budget":600000,"Release Date":"Jul 14 1999","MPAA Rating":"R","Running Time min":87,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":85,"IMDB Rating":6.2,"IMDB Votes":87629},{"Title":"Blast from the Past","US Gross":26613620,"Worldwide Gross":26613620,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Feb 12 1999","MPAA Rating":"PG-13","Running Time min":111,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Hugh Wilson","Rotten Tomatoes Rating":60,"IMDB Rating":6.4,"IMDB Votes":23243},{"Title":"Blade 2","US Gross":81676888,"Worldwide Gross":154338601,"US DVD Sales":null,"Production Budget":54000000,"Release Date":"Mar 22 2002","MPAA Rating":"R","Running Time min":117,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Guillermo Del Toro","Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":90},{"Title":"Blade: Trinity","US Gross":52397389,"Worldwide Gross":132397389,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Dec 08 2004","MPAA Rating":"R","Running Time min":113,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"David Goyer","Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":42477},{"Title":"Blades of Glory","US Gross":118594548,"Worldwide Gross":145594548,"US DVD Sales":49219041,"Production Budget":61000000,"Release Date":"Mar 30 2007","MPAA Rating":"PG-13","Running Time min":94,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":6.5,"IMDB Votes":51929},{"Title":"The Blind Side","US Gross":255959475,"Worldwide Gross":301759475,"US DVD Sales":86139819,"Production Budget":35000000,"Release Date":"Nov 20 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Factual Book/Article","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":66,"IMDB Rating":7.7,"IMDB Votes":42320},{"Title":"Blood Work","US Gross":26199517,"Worldwide Gross":26199517,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Aug 09 2002","MPAA Rating":"R","Running Time min":110,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":54,"IMDB Rating":6.3,"IMDB Votes":16751},{"Title":"Zwartboek","US Gross":4398392,"Worldwide Gross":4398392,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Apr 06 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"Paul Verhoeven","Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":27288},{"Title":"Black Christmas","US Gross":16235738,"Worldwide Gross":16235738,"US DVD Sales":28729107,"Production Budget":9000000,"Release Date":"Dec 25 2006","MPAA Rating":"R","Running Time min":90,"Distributor":"MGM","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":4.3,"IMDB Votes":10424},{"Title":"Black Snake Moan","US Gross":9396870,"Worldwide Gross":9396870,"US DVD Sales":12540785,"Production Budget":15000000,"Release Date":"Mar 02 2007","MPAA Rating":"R","Running Time min":115,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":66,"IMDB Rating":7.1,"IMDB Votes":28145},{"Title":"Black Water Transit","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 31 2008","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Blindness","US Gross":3073392,"Worldwide Gross":14542658,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Oct 03 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Fernando Meirelles","Rotten Tomatoes Rating":42,"IMDB Rating":6.6,"IMDB Votes":25508},{"Title":"Legally Blonde 2: Red, White & Blonde","US Gross":90639088,"Worldwide Gross":125339088,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jul 02 2003","MPAA Rating":"PG","Running Time min":95,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Legally Blonde","US Gross":96493426,"Worldwide Gross":141743426,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jul 13 2001","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Robert Luketic","Rotten Tomatoes Rating":67,"IMDB Rating":6.2,"IMDB Votes":44128},{"Title":"Blood and Wine","US Gross":1083350,"Worldwide Gross":1083350,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Feb 21 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Bob Rafelson","Rotten Tomatoes Rating":61,"IMDB Rating":6.1,"IMDB Votes":4761},{"Title":"Blow","US Gross":52990775,"Worldwide Gross":83282296,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Apr 06 2001","MPAA Rating":"R","Running Time min":123,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ted Demme","Rotten Tomatoes Rating":54,"IMDB Rating":7.4,"IMDB Votes":70218},{"Title":"Ballistic: Ecks vs. Sever","US Gross":14294842,"Worldwide Gross":14294842,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Sep 20 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.4,"IMDB Votes":11112},{"Title":"Blue Crush","US Gross":40118420,"Worldwide Gross":51327420,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 16 2002","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Universal","Source":"Based on Magazine Article","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":62,"IMDB Rating":5.5,"IMDB Votes":11699},{"Title":"Bamboozled","US Gross":2185266,"Worldwide Gross":2373937,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 06 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":47,"IMDB Rating":6.3,"IMDB Votes":5958},{"Title":"A Beautiful Mind","US Gross":170708996,"Worldwide Gross":316708996,"US DVD Sales":null,"Production Budget":78000000,"Release Date":"Dec 21 2001","MPAA Rating":"PG-13","Running Time min":135,"Distributor":"Universal","Source":"Based on Magazine Article","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ron Howard","Rotten Tomatoes Rating":78,"IMDB Rating":8,"IMDB Votes":126067},{"Title":"Big Momma's House 2","US Gross":70165972,"Worldwide Gross":137047376,"US DVD Sales":21234176,"Production Budget":40000000,"Release Date":"Jan 27 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":6,"IMDB Rating":4,"IMDB Votes":11368},{"Title":"Story of Bonnie and Clyde, The","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 31 1969","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Boondock Saints","US Gross":30471,"Worldwide Gross":250000,"US DVD Sales":7468574,"Production Budget":7000000,"Release Date":"Jan 21 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Indican Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":7.8,"IMDB Votes":86172},{"Title":"Bandidas","US Gross":0,"Worldwide Gross":10496317,"US DVD Sales":7921142,"Production Budget":35000000,"Release Date":"Sep 22 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":62,"IMDB Rating":5.6,"IMDB Votes":12103},{"Title":"Bandits","US Gross":41523271,"Worldwide Gross":71523271,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Oct 12 2001","MPAA Rating":"PG-13","Running Time min":123,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":63,"IMDB Rating":6.5,"IMDB Votes":30732},{"Title":"Bobby","US Gross":11242801,"Worldwide Gross":20597806,"US DVD Sales":12345494,"Production Budget":14000000,"Release Date":"Nov 17 2006","MPAA Rating":"R","Running Time min":120,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Emilio Estevez","Rotten Tomatoes Rating":46,"IMDB Rating":7.1,"IMDB Votes":23262},{"Title":"The Book of Eli","US Gross":94835059,"Worldwide Gross":146452390,"US DVD Sales":36862324,"Production Budget":80000000,"Release Date":"Jan 15 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":6.9,"IMDB Votes":47733},{"Title":"Boogeyman","US Gross":46752382,"Worldwide Gross":67192859,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Feb 04 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":3.9,"IMDB Votes":13901},{"Title":"Bolt","US Gross":114053579,"Worldwide Gross":313953579,"US DVD Sales":82600642,"Production Budget":150000000,"Release Date":"Nov 21 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":88,"IMDB Rating":7.4,"IMDB Votes":32473},{"Title":"The Other Boleyn Girl","US Gross":26814957,"Worldwide Gross":72944278,"US DVD Sales":8245298,"Production Budget":40000000,"Release Date":"Feb 29 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":41,"IMDB Rating":6.7,"IMDB Votes":26198},{"Title":"The Bone Collector","US Gross":66488090,"Worldwide Gross":151463090,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Nov 05 1999","MPAA Rating":"R","Running Time min":118,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Phillip Noyce","Rotten Tomatoes Rating":27,"IMDB Rating":6.3,"IMDB Votes":46961},{"Title":"Bones","US Gross":7316658,"Worldwide Gross":8378853,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 24 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":3.9,"IMDB Votes":3524},{"Title":"Bon Voyage","US Gross":2353728,"Worldwide Gross":8361736,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 19 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":76,"IMDB Rating":6.5,"IMDB Votes":622},{"Title":"Boogie Nights","US Gross":26410771,"Worldwide Gross":43111725,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 10 1997","MPAA Rating":"R","Running Time min":152,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Paul Thomas Anderson","Rotten Tomatoes Rating":92,"IMDB Rating":7.9,"IMDB Votes":70962},{"Title":"Borat","US Gross":128505958,"Worldwide Gross":261572744,"US DVD Sales":62661576,"Production Budget":18000000,"Release Date":"Nov 03 2006","MPAA Rating":"R","Running Time min":83,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Larry Charles","Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":3612},{"Title":"The Bourne Identity","US Gross":121468960,"Worldwide Gross":213300000,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jun 14 2002","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Doug Liman","Rotten Tomatoes Rating":82,"IMDB Rating":7.7,"IMDB Votes":122597},{"Title":"The Bourne Supremacy","US Gross":176087450,"Worldwide Gross":288587450,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Jul 23 2004","MPAA Rating":"PG-13","Running Time min":108,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Paul Greengrass","Rotten Tomatoes Rating":81,"IMDB Rating":7.6,"IMDB Votes":104614},{"Title":"The Bourne Ultimatum","US Gross":227471070,"Worldwide Gross":442161562,"US DVD Sales":123314592,"Production Budget":130000000,"Release Date":"Aug 03 2007","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Paul Greengrass","Rotten Tomatoes Rating":93,"IMDB Rating":8.2,"IMDB Votes":146025},{"Title":"The Borrowers","US Gross":22619589,"Worldwide Gross":54045832,"US DVD Sales":null,"Production Budget":29000000,"Release Date":"Feb 13 1998","MPAA Rating":"PG","Running Time min":83,"Distributor":"Polygram","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Peter Hewitt","Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":4340},{"Title":"My Boss's Daughter","US Gross":15549702,"Worldwide Gross":15549702,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Aug 22 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"David Zucker","Rotten Tomatoes Rating":9,"IMDB Rating":4.3,"IMDB Votes":10919},{"Title":"Bounce","US Gross":36779296,"Worldwide Gross":53399300,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 17 2000","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":51,"IMDB Rating":5.5,"IMDB Votes":10702},{"Title":"Bowling for Columbine","US Gross":21576018,"Worldwide Gross":58576018,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Oct 11 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Michael Moore","Rotten Tomatoes Rating":96,"IMDB Rating":8.2,"IMDB Votes":76928},{"Title":"Boys Don't Cry","US Gross":11540607,"Worldwide Gross":20741000,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Oct 08 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Kimberly Peirce","Rotten Tomatoes Rating":88,"IMDB Rating":7.6,"IMDB Votes":34435},{"Title":"The Boy in the Striped Pyjamas","US Gross":9030581,"Worldwide Gross":39830581,"US DVD Sales":9647546,"Production Budget":12500000,"Release Date":"Nov 07 2008","MPAA Rating":"PG-13","Running Time min":94,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":21683},{"Title":"Bulletproof Monk","US Gross":23010607,"Worldwide Gross":23010607,"US DVD Sales":null,"Production Budget":52000000,"Release Date":"Apr 16 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":5.2,"IMDB Votes":17130},{"Title":"Heartbreakers","US Gross":40334024,"Worldwide Gross":57753825,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Mar 23 2001","MPAA Rating":"PG-13","Running Time min":124,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":52,"IMDB Rating":6.2,"IMDB Votes":20962},{"Title":"Bride & Prejudice","US Gross":6601079,"Worldwide Gross":22064531,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Feb 11 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":"Gurinder Chadha","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":9442},{"Title":"Beyond Borders","US Gross":4426297,"Worldwide Gross":11427090,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Oct 24 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Martin Campbell","Rotten Tomatoes Rating":14,"IMDB Rating":6.2,"IMDB Votes":9575},{"Title":"Bride Wars","US Gross":58715510,"Worldwide Gross":115150424,"US DVD Sales":29943338,"Production Budget":30000000,"Release Date":"Jan 09 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":5,"IMDB Votes":15762},{"Title":"Breakfast of Champions","US Gross":178287,"Worldwide Gross":178287,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Sep 17 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":null,"Director":"Alan Rudolph","Rotten Tomatoes Rating":25,"IMDB Rating":4.3,"IMDB Votes":5033},{"Title":"Brigham City","US Gross":852206,"Worldwide Gross":852206,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Apr 06 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Excel Entertainment","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":7.1,"IMDB Votes":758},{"Title":"Brick","US Gross":2075743,"Worldwide Gross":3918941,"US DVD Sales":5013655,"Production Budget":450000,"Release Date":"Mar 31 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus/Rogue Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":37204},{"Title":"Bringing Out The Dead","US Gross":16640210,"Worldwide Gross":16640210,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Oct 22 1999","MPAA Rating":"R","Running Time min":120,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":71,"IMDB Rating":6.8,"IMDB Votes":31079},{"Title":"Breakdown","US Gross":50159144,"Worldwide Gross":50159144,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"May 02 1997","MPAA Rating":"R","Running Time min":93,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Jonathan Mostow","Rotten Tomatoes Rating":79,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Brooklyn's Finest","US Gross":27163593,"Worldwide Gross":28319627,"US DVD Sales":9300674,"Production Budget":25000000,"Release Date":"Mar 05 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Overture Films","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Antoine Fuqua","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":14034},{"Title":"Brokeback Mountain","US Gross":83043761,"Worldwide Gross":180343761,"US DVD Sales":31338042,"Production Budget":13900000,"Release Date":"Dec 09 2005","MPAA Rating":"R","Running Time min":134,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Ang Lee","Rotten Tomatoes Rating":87,"IMDB Rating":7.8,"IMDB Votes":115951},{"Title":"Breakin' All the Rules","US Gross":12232382,"Worldwide Gross":12512317,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"May 14 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5.3,"IMDB Votes":2643},{"Title":"The Break Up","US Gross":118806699,"Worldwide Gross":202944203,"US DVD Sales":52707367,"Production Budget":52000000,"Release Date":"Jun 02 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Peyton Reed","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":38285},{"Title":"An Alan Smithee Film: Burn Hollywood Burn","US Gross":45779,"Worldwide Gross":45779,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 27 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Arthur Hiller","Rotten Tomatoes Rating":null,"IMDB Rating":3.5,"IMDB Votes":2152},{"Title":"Barney's Version","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 31 1969","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Brooklyn Rules","US Gross":458232,"Worldwide Gross":458232,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"May 18 2007","MPAA Rating":"R","Running Time min":99,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":2797},{"Title":"Boiler Room","US Gross":16963963,"Worldwide Gross":28773637,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Feb 18 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":6.9,"IMDB Votes":22979},{"Title":"The Brothers Solomon","US Gross":900926,"Worldwide Gross":900926,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Sep 07 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":5.2,"IMDB Votes":6044},{"Title":"The Brothers","US Gross":27457409,"Worldwide Gross":27958191,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Mar 23 2001","MPAA Rating":"R","Running Time min":102,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":2.8,"IMDB Votes":153},{"Title":"Brown Sugar","US Gross":27362712,"Worldwide Gross":28315272,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Oct 11 2002","MPAA Rating":"PG-13","Running Time min":109,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":6,"IMDB Votes":2745},{"Title":"Bright Star","US Gross":4444637,"Worldwide Gross":9469105,"US DVD Sales":null,"Production Budget":8500000,"Release Date":"Jan 26 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Apparition","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Jane Campion","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":5957},{"Title":"Brother","US Gross":450594,"Worldwide Gross":450594,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jul 20 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":10831},{"Title":"In Bruges","US Gross":7800825,"Worldwide Gross":30782621,"US DVD Sales":3467377,"Production Budget":15000000,"Release Date":"Feb 08 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":80,"IMDB Rating":8.1,"IMDB Votes":97876},{"Title":"The Brown Bunny","US Gross":366301,"Worldwide Gross":630427,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 27 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"WellSpring","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Vincent Gallo","Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":7465},{"Title":"Barbershop 2: Back in Business","US Gross":65070412,"Worldwide Gross":65842412,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Feb 06 2004","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":4848},{"Title":"Barbershop","US Gross":75781642,"Worldwide Gross":77081642,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Sep 13 2002","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Tim Story","Rotten Tomatoes Rating":82,"IMDB Rating":6.2,"IMDB Votes":11164},{"Title":"Best in Show","US Gross":18621249,"Worldwide Gross":20695413,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Sep 27 2000","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Christopher Guest","Rotten Tomatoes Rating":94,"IMDB Rating":7.4,"IMDB Votes":24484},{"Title":"Bad Santa","US Gross":60060328,"Worldwide Gross":60063017,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Nov 26 2003","MPAA Rating":"R","Running Time min":91,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Terry Zwigoff","Rotten Tomatoes Rating":77,"IMDB Rating":7.3,"IMDB Votes":45022},{"Title":"Inglourious Basterds","US Gross":120831050,"Worldwide Gross":320389438,"US DVD Sales":58414604,"Production Budget":70000000,"Release Date":"Aug 21 2009","MPAA Rating":"R","Running Time min":152,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Quentin Tarantino","Rotten Tomatoes Rating":88,"IMDB Rating":8.4,"IMDB Votes":178742},{"Title":"Blue Streak","US Gross":68208190,"Worldwide Gross":117448157,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Sep 17 1999","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Les Mayfield","Rotten Tomatoes Rating":35,"IMDB Rating":5.9,"IMDB Votes":23545},{"Title":"The Butterfly Effect","US Gross":57924679,"Worldwide Gross":96046844,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Jan 23 2004","MPAA Rating":"R","Running Time min":113,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":7.8,"IMDB Votes":102982},{"Title":"O Brother, Where Art Thou","US Gross":45506619,"Worldwide Gross":65976782,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Dec 22 2000","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"Walt Disney Pictures","Source":"Traditional/Legend/Fairytale","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Joel Coen","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Batman & Robin","US Gross":107325195,"Worldwide Gross":238317814,"US DVD Sales":null,"Production Budget":125000000,"Release Date":"Jun 20 1997","MPAA Rating":"PG-13","Running Time min":130,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Super Hero","Director":"Joel Schumacher","Rotten Tomatoes Rating":11,"IMDB Rating":3.5,"IMDB Votes":81283},{"Title":"Boat Trip","US Gross":8586376,"Worldwide Gross":14933713,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Mar 21 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":7,"IMDB Rating":4.7,"IMDB Votes":13258},{"Title":"Bubba Ho-Tep","US Gross":1239183,"Worldwide Gross":1239183,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 19 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Vitagraph Films","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":23110},{"Title":"Bubble","US Gross":145382,"Worldwide Gross":145382,"US DVD Sales":null,"Production Budget":1600000,"Release Date":"Jan 27 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":101},{"Title":"Bubble Boy","US Gross":5002310,"Worldwide Gross":5002310,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Aug 24 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":5.4,"IMDB Votes":11073},{"Title":"Buffalo '66","US Gross":2380606,"Worldwide Gross":2380606,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Jun 26 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Vincent Gallo","Rotten Tomatoes Rating":78,"IMDB Rating":7.3,"IMDB Votes":17762},{"Title":"Buffalo Soldiers","US Gross":353743,"Worldwide Gross":353743,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jul 25 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":13510},{"Title":"Bulworth","US Gross":26528684,"Worldwide Gross":29203383,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"May 15 1998","MPAA Rating":"R","Running Time min":107,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Warren Beatty","Rotten Tomatoes Rating":75,"IMDB Rating":6.8,"IMDB Votes":15486},{"Title":"W.","US Gross":25534493,"Worldwide Gross":28575778,"US DVD Sales":7871296,"Production Budget":25100000,"Release Date":"Oct 17 2008","MPAA Rating":"PG-13","Running Time min":131,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Oliver Stone","Rotten Tomatoes Rating":60,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Bowfinger","US Gross":66458769,"Worldwide Gross":98699769,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Aug 13 1999","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Frank Oz","Rotten Tomatoes Rating":79,"IMDB Rating":6.4,"IMDB Votes":33389},{"Title":"Bewitched","US Gross":63313159,"Worldwide Gross":131413159,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 24 2005","MPAA Rating":"PG-13","Running Time min":100,"Distributor":"Sony Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Nora Ephron","Rotten Tomatoes Rating":24,"IMDB Rating":4.8,"IMDB Votes":26834},{"Title":"Barnyard: The Original Party Animals","US Gross":72779000,"Worldwide Gross":116618084,"US DVD Sales":65043181,"Production Budget":51000000,"Release Date":"Aug 04 2006","MPAA Rating":"PG","Running Time min":90,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Steve Oedekerk","Rotten Tomatoes Rating":23,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Beyond the Sea","US Gross":6144806,"Worldwide Gross":7061637,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Dec 17 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Kevin Spacey","Rotten Tomatoes Rating":42,"IMDB Rating":6.6,"IMDB Votes":8002},{"Title":"Cabin Fever","US Gross":21158188,"Worldwide Gross":30553394,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Sep 12 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Eli Roth","Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":28417},{"Title":"CachÈ","US Gross":3647381,"Worldwide Gross":17147381,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Dec 23 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":26},{"Title":"Cadillac Records","US Gross":8138000,"Worldwide Gross":8138000,"US DVD Sales":10049741,"Production Budget":12000000,"Release Date":"Dec 05 2008","MPAA Rating":"R","Running Time min":108,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":6.7,"IMDB Votes":5026},{"Title":"Can't Hardly Wait","US Gross":25358996,"Worldwide Gross":25358996,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jun 12 1998","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":6.2,"IMDB Votes":19470},{"Title":"Capote","US Gross":28750530,"Worldwide Gross":46309352,"US DVD Sales":17031573,"Production Budget":7000000,"Release Date":"Sep 30 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Bennett Miller","Rotten Tomatoes Rating":90,"IMDB Rating":7.6,"IMDB Votes":41472},{"Title":"Sukkar banat","US Gross":1060591,"Worldwide Gross":14253760,"US DVD Sales":null,"Production Budget":1600000,"Release Date":"Feb 01 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"Roadside Attractions","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":3799},{"Title":"Disney's A Christmas Carol","US Gross":137855863,"Worldwide Gross":323743744,"US DVD Sales":null,"Production Budget":190000000,"Release Date":"Nov 06 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Robert Zemeckis","Rotten Tomatoes Rating":53,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Rage: Carrie 2","US Gross":17760244,"Worldwide Gross":17760244,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Mar 12 1999","MPAA Rating":"R","Running Time min":101,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":4.3,"IMDB Votes":7235},{"Title":"Cars","US Gross":244082982,"Worldwide Gross":461923762,"US DVD Sales":246114559,"Production Budget":70000000,"Release Date":"Jun 09 2006","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"John Lasseter","Rotten Tomatoes Rating":74,"IMDB Rating":7.5,"IMDB Votes":66809},{"Title":"Cast Away","US Gross":233632142,"Worldwide Gross":427230516,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Dec 22 2000","MPAA Rating":"PG-13","Running Time min":144,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Robert Zemeckis","Rotten Tomatoes Rating":89,"IMDB Rating":7.5,"IMDB Votes":102936},{"Title":"Catch Me if You Can","US Gross":164606800,"Worldwide Gross":351106800,"US DVD Sales":null,"Production Budget":52000000,"Release Date":"Dec 25 2002","MPAA Rating":"PG-13","Running Time min":141,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Steven Spielberg","Rotten Tomatoes Rating":96,"IMDB Rating":5.7,"IMDB Votes":224},{"Title":"The Cat in the Hat","US Gross":101018283,"Worldwide Gross":133818283,"US DVD Sales":null,"Production Budget":109000000,"Release Date":"Nov 21 2003","MPAA Rating":"PG","Running Time min":82,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.4,"IMDB Votes":15318},{"Title":"Cats Don't Dance","US Gross":3588602,"Worldwide Gross":3588602,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Mar 26 1997","MPAA Rating":"G","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Fantasy","Director":"Mark Dindal","Rotten Tomatoes Rating":67,"IMDB Rating":6.9,"IMDB Votes":1663},{"Title":"Catwoman","US Gross":40202379,"Worldwide Gross":82102379,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Jul 23 2004","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":3.2,"IMDB Votes":34651},{"Title":"Cecil B. Demented","US Gross":1276984,"Worldwide Gross":1953882,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 11 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"John Waters","Rotten Tomatoes Rating":51,"IMDB Rating":5.9,"IMDB Votes":7565},{"Title":"The Country Bears","US Gross":16988996,"Worldwide Gross":16988996,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jul 26 2002","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Disney Ride","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":27,"IMDB Rating":3.8,"IMDB Votes":2021},{"Title":"Center Stage","US Gross":17200925,"Worldwide Gross":17200925,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"May 12 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":6.2,"IMDB Votes":7968},{"Title":"The Corpse Bride","US Gross":53359111,"Worldwide Gross":117359111,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 16 2005","MPAA Rating":"PG","Running Time min":77,"Distributor":"Warner Bros.","Source":"Traditional/Legend/Fairytale","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Tim Burton","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Critical Care","US Gross":220175,"Worldwide Gross":220175,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Oct 31 1997","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Sidney Lumet","Rotten Tomatoes Rating":53,"IMDB Rating":6,"IMDB Votes":895},{"Title":"Connie & Carla","US Gross":8047525,"Worldwide Gross":8047525,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Apr 16 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Michael Lembeck","Rotten Tomatoes Rating":44,"IMDB Rating":6,"IMDB Votes":4359},{"Title":"Collateral Damage","US Gross":40048332,"Worldwide Gross":78353508,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Feb 08 2002","MPAA Rating":"R","Running Time min":109,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Andrew Davis","Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":24358},{"Title":"Crocodile Dundee in Los Angeles","US Gross":25590119,"Worldwide Gross":39393111,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 20 2001","MPAA Rating":"PG","Running Time min":95,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Simon Wincer","Rotten Tomatoes Rating":12,"IMDB Rating":4.6,"IMDB Votes":7082},{"Title":"Celebrity","US Gross":5078660,"Worldwide Gross":6200000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Nov 20 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":41,"IMDB Rating":6.1,"IMDB Votes":10978},{"Title":"The Cell","US Gross":61280963,"Worldwide Gross":61280963,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Aug 18 2000","MPAA Rating":"R","Running Time min":109,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":46,"IMDB Rating":6.2,"IMDB Votes":36961},{"Title":"Cellular","US Gross":32003620,"Worldwide Gross":45261739,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Sep 10 2004","MPAA Rating":"PG-13","Running Time min":94,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"David R. Ellis","Rotten Tomatoes Rating":54,"IMDB Rating":6.5,"IMDB Votes":32534},{"Title":"City of Ember","US Gross":7871693,"Worldwide Gross":11817059,"US DVD Sales":6086988,"Production Budget":38000000,"Release Date":"Oct 10 2008","MPAA Rating":"PG","Running Time min":94,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Gil Kenan","Rotten Tomatoes Rating":53,"IMDB Rating":6.4,"IMDB Votes":14905},{"Title":"Charlie and the Chocolate Factory","US Gross":206459076,"Worldwide Gross":474459076,"US DVD Sales":null,"Production Budget":150000000,"Release Date":"Jul 15 2005","MPAA Rating":"PG","Running Time min":115,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Tim Burton","Rotten Tomatoes Rating":82,"IMDB Rating":7.1,"IMDB Votes":102437},{"Title":"Catch a Fire","US Gross":4299773,"Worldwide Gross":5699773,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Oct 27 2006","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Focus Features","Source":"Based on Real Life Events","Major Genre":"Thriller/Suspense","Creative Type":"Dramatization","Director":"Phillip Noyce","Rotten Tomatoes Rating":76,"IMDB Rating":6.8,"IMDB Votes":5959},{"Title":"Charlie's Angels: Full Throttle","US Gross":100814328,"Worldwide Gross":227200000,"US DVD Sales":null,"Production Budget":120000000,"Release Date":"Jun 27 2003","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"Sony Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Joseph McGinty Nichol","Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":43942},{"Title":"Charlie's Angels","US Gross":125305545,"Worldwide Gross":263200000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Nov 03 2000","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Sony Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Joseph McGinty Nichol","Rotten Tomatoes Rating":67,"IMDB Rating":5.5,"IMDB Votes":60791},{"Title":"Chasing Amy","US Gross":12006514,"Worldwide Gross":15155095,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Apr 04 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":91,"IMDB Rating":7.5,"IMDB Votes":63591},{"Title":"Chicago","US Gross":170687518,"Worldwide Gross":307687518,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 27 2002","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Miramax","Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Rob Marshall","Rotten Tomatoes Rating":88,"IMDB Rating":7.2,"IMDB Votes":82650},{"Title":"Chicken Little","US Gross":135386665,"Worldwide Gross":314432738,"US DVD Sales":142108745,"Production Budget":60000000,"Release Date":"Nov 04 2005","MPAA Rating":"G","Running Time min":80,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Mark Dindal","Rotten Tomatoes Rating":36,"IMDB Rating":5.8,"IMDB Votes":17415},{"Title":"Chicken Run","US Gross":106793915,"Worldwide Gross":227793915,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Jun 21 2000","MPAA Rating":"G","Running Time min":84,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Nick Park","Rotten Tomatoes Rating":96,"IMDB Rating":7.3,"IMDB Votes":48307},{"Title":"Cheaper by the Dozen","US Gross":138614544,"Worldwide Gross":189714544,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Dec 25 2003","MPAA Rating":"PG","Running Time min":98,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Shawn Levy","Rotten Tomatoes Rating":24,"IMDB Rating":5.6,"IMDB Votes":24283},{"Title":"Cheaper by the Dozen 2","US Gross":82571173,"Worldwide Gross":135015330,"US DVD Sales":26537982,"Production Budget":60000000,"Release Date":"Dec 21 2005","MPAA Rating":"PG","Running Time min":94,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Adam Shankman","Rotten Tomatoes Rating":7,"IMDB Rating":5.2,"IMDB Votes":11858},{"Title":"Cheri","US Gross":2715657,"Worldwide Gross":2715657,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Jun 26 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Stephen Frears","Rotten Tomatoes Rating":54,"IMDB Rating":6.1,"IMDB Votes":3307},{"Title":"Chill Factor","US Gross":11263966,"Worldwide Gross":11263966,"US DVD Sales":null,"Production Budget":34000000,"Release Date":"Sep 01 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":7,"IMDB Rating":4.9,"IMDB Votes":5374},{"Title":"Bride of Chucky","US Gross":32404188,"Worldwide Gross":50692188,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Oct 16 1998","MPAA Rating":"R","Running Time min":89,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Ronny Yu","Rotten Tomatoes Rating":43,"IMDB Rating":5.3,"IMDB Votes":13735},{"Title":"Seed of Chucky","US Gross":17016190,"Worldwide Gross":24716190,"US DVD Sales":null,"Production Budget":29000000,"Release Date":"Nov 12 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus/Rogue Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":5.1,"IMDB Votes":9897},{"Title":"Children of Men","US Gross":35552383,"Worldwide Gross":69450202,"US DVD Sales":25345271,"Production Budget":76000000,"Release Date":"Dec 25 2006","MPAA Rating":"R","Running Time min":114,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Alfonso Cuaron","Rotten Tomatoes Rating":93,"IMDB Rating":8.1,"IMDB Votes":158125},{"Title":"Chloe","US Gross":3075255,"Worldwide Gross":9675172,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Mar 26 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Atom Egoyan","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":8772},{"Title":"Love in the Time of Cholera","US Gross":4617608,"Worldwide Gross":31077418,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Nov 16 2007","MPAA Rating":"R","Running Time min":139,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Mike Newell","Rotten Tomatoes Rating":27,"IMDB Rating":6.2,"IMDB Votes":8580},{"Title":"Chocolat","US Gross":71309760,"Worldwide Gross":152500343,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Dec 15 2000","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Lasse Hallstrom","Rotten Tomatoes Rating":62,"IMDB Rating":7.3,"IMDB Votes":56176},{"Title":"The Children of Huang Shi","US Gross":1031872,"Worldwide Gross":5527507,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"May 23 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":31,"IMDB Rating":6.9,"IMDB Votes":4100},{"Title":"Les Choristes","US Gross":3629758,"Worldwide Gross":83529758,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Nov 26 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Remake","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":16391},{"Title":"Chairman of the Board","US Gross":306715,"Worldwide Gross":306715,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Mar 13 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Trimark","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":2.1,"IMDB Votes":3164},{"Title":"Chuck&Buck","US Gross":1055671,"Worldwide Gross":1157672,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Jul 14 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Chris Weitz","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":3455},{"Title":"The Chumscrubber","US Gross":49526,"Worldwide Gross":49526,"US DVD Sales":null,"Production Budget":6800000,"Release Date":"Aug 05 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Picturehouse","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":34,"IMDB Rating":7,"IMDB Votes":10449},{"Title":"Charlotte's Web","US Gross":82985708,"Worldwide Gross":143985708,"US DVD Sales":83571732,"Production Budget":82500000,"Release Date":"Dec 15 2006","MPAA Rating":"G","Running Time min":98,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Gary Winick","Rotten Tomatoes Rating":78,"IMDB Rating":6.7,"IMDB Votes":8028},{"Title":"Cinderella Man","US Gross":61649911,"Worldwide Gross":108539911,"US DVD Sales":null,"Production Budget":88000000,"Release Date":"Jun 03 2005","MPAA Rating":"PG-13","Running Time min":144,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ron Howard","Rotten Tomatoes Rating":80,"IMDB Rating":8,"IMDB Votes":63111},{"Title":"A Cinderella Story","US Gross":51438175,"Worldwide Gross":70067909,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Jul 16 2004","MPAA Rating":"PG","Running Time min":95,"Distributor":"Warner Bros.","Source":"Traditional/Legend/Fairytale","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":5.4,"IMDB Votes":14904},{"Title":"City of Angels","US Gross":78750909,"Worldwide Gross":198750909,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Apr 10 1998","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Brad Silberling","Rotten Tomatoes Rating":59,"IMDB Rating":6.4,"IMDB Votes":40053},{"Title":"A Civil Action","US Gross":56709981,"Worldwide Gross":56709981,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 25 1998","MPAA Rating":"PG-13","Running Time min":112,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Steven Zaillian","Rotten Tomatoes Rating":61,"IMDB Rating":6.4,"IMDB Votes":14244},{"Title":"CJ7","US Gross":206678,"Worldwide Gross":47300771,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 07 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Stephen Chow","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Cookout","US Gross":11540112,"Worldwide Gross":11540112,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Sep 03 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":3.2,"IMDB Votes":1659},{"Title":"The Claim","US Gross":622023,"Worldwide Gross":622023,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Dec 29 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.5,"IMDB Votes":3681},{"Title":"The Santa Clause 2","US Gross":139225854,"Worldwide Gross":172825854,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Nov 01 2002","MPAA Rating":"G","Running Time min":104,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Michael Lembeck","Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":9061},{"Title":"Cold Mountain","US Gross":95632614,"Worldwide Gross":161632614,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Dec 25 2003","MPAA Rating":"R","Running Time min":152,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Anthony Minghella","Rotten Tomatoes Rating":70,"IMDB Rating":7.3,"IMDB Votes":51083},{"Title":"Clean","US Gross":138711,"Worldwide Gross":138711,"US DVD Sales":null,"Production Budget":10000,"Release Date":"Apr 28 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Palm Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Click","US Gross":137355633,"Worldwide Gross":237555633,"US DVD Sales":81244755,"Production Budget":82500000,"Release Date":"Jun 23 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Frank Coraci","Rotten Tomatoes Rating":32,"IMDB Rating":5,"IMDB Votes":133},{"Title":"Code Name: The Cleaner","US Gross":8135024,"Worldwide Gross":8135024,"US DVD Sales":4492233,"Production Budget":20000000,"Release Date":"Jan 05 2007","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Les Mayfield","Rotten Tomatoes Rating":4,"IMDB Rating":4,"IMDB Votes":5277},{"Title":"Welcome to Collinwood","US Gross":378650,"Worldwide Gross":378650,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Oct 04 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":53,"IMDB Rating":6.2,"IMDB Votes":7887},{"Title":"Closer","US Gross":33987757,"Worldwide Gross":115987757,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 03 2004","MPAA Rating":"R","Running Time min":104,"Distributor":"Sony Pictures","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Mike Nichols","Rotten Tomatoes Rating":68,"IMDB Rating":2.9,"IMDB Votes":212},{"Title":"Clerks II","US Gross":24148068,"Worldwide Gross":25894473,"US DVD Sales":26411041,"Production Budget":5000000,"Release Date":"Jul 21 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":63,"IMDB Rating":7.7,"IMDB Votes":56668},{"Title":"Maid in Manhattan","US Gross":93932896,"Worldwide Gross":154832896,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Dec 13 2002","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Wayne Wang","Rotten Tomatoes Rating":39,"IMDB Rating":4.6,"IMDB Votes":30370},{"Title":"It's Complicated","US Gross":112735375,"Worldwide Gross":224614744,"US DVD Sales":29195673,"Production Budget":75000000,"Release Date":"Dec 25 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Nancy Meyers","Rotten Tomatoes Rating":57,"IMDB Rating":6.7,"IMDB Votes":17748},{"Title":"The Company","US Gross":2281585,"Worldwide Gross":3396508,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 25 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Robert Altman","Rotten Tomatoes Rating":69,"IMDB Rating":6.2,"IMDB Votes":3649},{"Title":"Constantine","US Gross":75976178,"Worldwide Gross":230884728,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Feb 18 2005","MPAA Rating":"R","Running Time min":122,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Francis Lawrence","Rotten Tomatoes Rating":46,"IMDB Rating":6.7,"IMDB Votes":78705},{"Title":"The Contender","US Gross":17804273,"Worldwide Gross":17804273,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Oct 13 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Rod Lurie","Rotten Tomatoes Rating":76,"IMDB Rating":6.9,"IMDB Votes":13709},{"Title":"Die F‰lscher","US Gross":5488570,"Worldwide Gross":19416495,"US DVD Sales":null,"Production Budget":6250000,"Release Date":"Feb 22 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":16525},{"Title":"Control","US Gross":871577,"Worldwide Gross":5645350,"US DVD Sales":null,"Production Budget":6400000,"Release Date":"Oct 10 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":87,"IMDB Rating":7.8,"IMDB Votes":19466},{"Title":"Centurion","US Gross":119621,"Worldwide Gross":119621,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Aug 27 2010","MPAA Rating":null,"Running Time min":null,"Distributor":"Magnolia Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":6.5,"IMDB Votes":8997},{"Title":"Coach Carter","US Gross":67264877,"Worldwide Gross":76669806,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jan 14 2005","MPAA Rating":"PG-13","Running Time min":136,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":65,"IMDB Rating":7.1,"IMDB Votes":23526},{"Title":"Confessions of a Dangerous Mind","US Gross":16007718,"Worldwide Gross":33013805,"US DVD Sales":null,"Production Budget":29000000,"Release Date":"Dec 31 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"George Clooney","Rotten Tomatoes Rating":79,"IMDB Rating":7.1,"IMDB Votes":36258},{"Title":"Coco avant Chanel","US Gross":6113834,"Worldwide Gross":48846765,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Sep 25 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":6720},{"Title":"Code 46","US Gross":197148,"Worldwide Gross":197148,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Aug 06 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":"Science Fiction","Director":"Michael Winterbottom","Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":9608},{"Title":"Agent Cody Banks 2: Destination London","US Gross":23514247,"Worldwide Gross":28703083,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Mar 12 2004","MPAA Rating":"PG","Running Time min":100,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.1,"IMDB Votes":4063},{"Title":"Agent Cody Banks","US Gross":47545060,"Worldwide Gross":58240458,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 14 2003","MPAA Rating":"PG","Running Time min":102,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":5.1,"IMDB Votes":9527},{"Title":"Collateral","US Gross":100170152,"Worldwide Gross":217670152,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Aug 06 2004","MPAA Rating":"R","Running Time min":120,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Michael Mann","Rotten Tomatoes Rating":86,"IMDB Rating":7.8,"IMDB Votes":105362},{"Title":"College","US Gross":4694491,"Worldwide Gross":5629618,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Aug 29 2008","MPAA Rating":"R","Running Time min":94,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":4.3,"IMDB Votes":6496},{"Title":"Company Man","US Gross":146028,"Worldwide Gross":146028,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Mar 09 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":1305},{"Title":"Come Early Morning","US Gross":119452,"Worldwide Gross":119452,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Nov 10 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"IDP/Goldwyn/Roadside","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Joey Lauren Adams","Rotten Tomatoes Rating":83,"IMDB Rating":6.2,"IMDB Votes":1511},{"Title":"Con Air","US Gross":101117573,"Worldwide Gross":224117573,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 06 1997","MPAA Rating":"R","Running Time min":115,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Simon West","Rotten Tomatoes Rating":57,"IMDB Rating":6.6,"IMDB Votes":76052},{"Title":"Confidence","US Gross":12212417,"Worldwide Gross":12212417,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 25 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"James Foley","Rotten Tomatoes Rating":71,"IMDB Rating":6.8,"IMDB Votes":17111},{"Title":"Conspiracy Theory","US Gross":76118990,"Worldwide Gross":137118990,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Aug 08 1997","MPAA Rating":"R","Running Time min":135,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Richard Donner","Rotten Tomatoes Rating":51,"IMDB Rating":6.5,"IMDB Votes":35719},{"Title":"Contact","US Gross":100920329,"Worldwide Gross":165900000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jul 11 1997","MPAA Rating":"PG","Running Time min":150,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Robert Zemeckis","Rotten Tomatoes Rating":67,"IMDB Rating":7.3,"IMDB Votes":73684},{"Title":"The Cooler","US Gross":8291572,"Worldwide Gross":10464788,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Nov 26 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":77,"IMDB Rating":7,"IMDB Votes":19072},{"Title":"Copying Beethoven","US Gross":355968,"Worldwide Gross":355968,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Nov 10 2006","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":5017},{"Title":"Corky Romano","US Gross":23978402,"Worldwide Gross":23978402,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Oct 12 2001","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":4.2,"IMDB Votes":6739},{"Title":"Coraline","US Gross":75286229,"Worldwide Gross":124062750,"US DVD Sales":46101073,"Production Budget":60000000,"Release Date":"Feb 06 2009","MPAA Rating":"PG","Running Time min":100,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":89,"IMDB Rating":7.8,"IMDB Votes":38464},{"Title":"Confessions of a Teenage Drama Queen","US Gross":29331068,"Worldwide Gross":33051296,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Feb 20 2004","MPAA Rating":"PG","Running Time min":89,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":4.3,"IMDB Votes":9976},{"Title":"The Covenant","US Gross":23364784,"Worldwide Gross":38164784,"US DVD Sales":26360430,"Production Budget":20000000,"Release Date":"Sep 08 2006","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Sony/Screen Gems","Source":"Based on Comic/Graphic Novel","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":3,"IMDB Rating":4.8,"IMDB Votes":17736},{"Title":"Cop Land","US Gross":44906632,"Worldwide Gross":63706632,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Aug 15 1997","MPAA Rating":"R","Running Time min":105,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"James Mangold","Rotten Tomatoes Rating":71,"IMDB Rating":6.9,"IMDB Votes":35192},{"Title":"Couples Retreat","US Gross":109205660,"Worldwide Gross":172450423,"US DVD Sales":34715888,"Production Budget":60000000,"Release Date":"Oct 09 2009","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Billingsley","Rotten Tomatoes Rating":12,"IMDB Rating":5.5,"IMDB Votes":18332},{"Title":"Cradle Will Rock","US Gross":2899970,"Worldwide Gross":2899970,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Dec 08 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Tim Robbins","Rotten Tomatoes Rating":64,"IMDB Rating":6.7,"IMDB Votes":6127},{"Title":"Crank","US Gross":27838408,"Worldwide Gross":33824696,"US DVD Sales":28776986,"Production Budget":12000000,"Release Date":"Sep 01 2006","MPAA Rating":"R","Running Time min":88,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":61,"IMDB Rating":7.1,"IMDB Votes":71094},{"Title":"Crash","US Gross":3357324,"Worldwide Gross":3357324,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 04 1996","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"David Cronenberg","Rotten Tomatoes Rating":65,"IMDB Rating":6.1,"IMDB Votes":20886},{"Title":"The Crazies","US Gross":39123589,"Worldwide Gross":43027734,"US DVD Sales":8835872,"Production Budget":20000000,"Release Date":"Feb 26 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Overture Films","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":6.7,"IMDB Votes":21135},{"Title":"Crazy in Alabama","US Gross":1954202,"Worldwide Gross":1954202,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 22 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Antonio Banderas","Rotten Tomatoes Rating":31,"IMDB Rating":5.7,"IMDB Votes":3991},{"Title":"The Crew","US Gross":13019253,"Worldwide Gross":13019253,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Aug 25 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":6,"IMDB Votes":1307},{"Title":"Cradle 2 the Grave","US Gross":34657731,"Worldwide Gross":56434942,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Feb 28 2003","MPAA Rating":"R","Running Time min":101,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Andrzej Bartkowiak","Rotten Tomatoes Rating":26,"IMDB Rating":5.4,"IMDB Votes":14834},{"Title":"Crocodile Hunter: Collision Course","US Gross":28436931,"Worldwide Gross":33436931,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Jul 12 2002","MPAA Rating":"PG","Running Time min":90,"Distributor":"MGM","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The In Crowd","US Gross":5217498,"Worldwide Gross":5217498,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jul 19 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":2,"IMDB Rating":4.2,"IMDB Votes":2720},{"Title":"The Corruptor","US Gross":15164492,"Worldwide Gross":15164492,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Mar 12 1999","MPAA Rating":"R","Running Time min":110,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"James Foley","Rotten Tomatoes Rating":48,"IMDB Rating":5.8,"IMDB Votes":9008},{"Title":"Man cheng jin dai huang jin jia","US Gross":6566773,"Worldwide Gross":75566773,"US DVD Sales":10581873,"Production Budget":45000000,"Release Date":"Dec 21 2006","MPAA Rating":"R","Running Time min":113,"Distributor":"Sony Pictures Classics","Source":"Based on Play","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Yimou Zhang","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":17975},{"Title":"Crash","US Gross":54557348,"Worldwide Gross":98387109,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"May 06 2005","MPAA Rating":"R","Running Time min":107,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Paul Haggis","Rotten Tomatoes Rating":75,"IMDB Rating":6.1,"IMDB Votes":20886},{"Title":"Crossover","US Gross":7009668,"Worldwide Gross":7009668,"US DVD Sales":2177636,"Production Budget":5600000,"Release Date":"Sep 01 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":3,"IMDB Rating":1.7,"IMDB Votes":7466},{"Title":"Crossroads","US Gross":37188667,"Worldwide Gross":57000000,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Feb 15 2002","MPAA Rating":"PG-13","Running Time min":93,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":6.6,"IMDB Votes":4894},{"Title":"The Count of Monte Cristo","US Gross":54228104,"Worldwide Gross":54228104,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jan 25 2002","MPAA Rating":"PG-13","Running Time min":131,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Kevin Reynolds","Rotten Tomatoes Rating":74,"IMDB Rating":7.6,"IMDB Votes":40605},{"Title":"Cruel Intentions","US Gross":38230075,"Worldwide Gross":75803716,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Mar 05 1999","MPAA Rating":"R","Running Time min":95,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Roger Kumble","Rotten Tomatoes Rating":47,"IMDB Rating":6.7,"IMDB Votes":66861},{"Title":"The Cry of the Owl","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":11500000,"Release Date":"Nov 27 2009","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":6.2,"IMDB Votes":1244},{"Title":"Cry Wolf","US Gross":10047674,"Worldwide Gross":15585495,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Sep 16 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Focus/Rogue Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":24,"IMDB Rating":6.4,"IMDB Votes":372},{"Title":"Crazy Heart","US Gross":39462438,"Worldwide Gross":47163756,"US DVD Sales":13929671,"Production Budget":8500000,"Release Date":"Dec 16 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":92,"IMDB Rating":7.4,"IMDB Votes":17255},{"Title":"crazy/beautiful","US Gross":16929123,"Worldwide Gross":19929123,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Jun 29 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":12102},{"Title":"The Last Castle","US Gross":18208078,"Worldwide Gross":20541668,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Oct 19 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Rod Lurie","Rotten Tomatoes Rating":52,"IMDB Rating":6.5,"IMDB Votes":21621},{"Title":"Clockstoppers","US Gross":36985501,"Worldwide Gross":38788828,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Mar 29 2002","MPAA Rating":"PG","Running Time min":94,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Jonathan Frakes","Rotten Tomatoes Rating":28,"IMDB Rating":5,"IMDB Votes":6392},{"Title":"Catch That Kid","US Gross":16703799,"Worldwide Gross":16930762,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Feb 06 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":3038},{"Title":"Cats & Dogs","US Gross":93375151,"Worldwide Gross":200700000,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jul 04 2001","MPAA Rating":"PG","Running Time min":91,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":53,"IMDB Rating":5.2,"IMDB Votes":16912},{"Title":"The City of Your Final Destination","US Gross":493296,"Worldwide Gross":493296,"US DVD Sales":null,"Production Budget":8300000,"Release Date":"Apr 16 2010","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"Hyde Park Films","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"James Ivory","Rotten Tomatoes Rating":40,"IMDB Rating":6.6,"IMDB Votes":430},{"Title":"Cidade de Deus","US Gross":7563397,"Worldwide Gross":28763397,"US DVD Sales":null,"Production Budget":3300000,"Release Date":"Jan 17 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Katia Lund","Rotten Tomatoes Rating":null,"IMDB Rating":8.8,"IMDB Votes":166897},{"Title":"City of Ghosts","US Gross":325491,"Worldwide Gross":325491,"US DVD Sales":null,"Production Budget":17500000,"Release Date":"Apr 25 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Matt Dillon","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":2880},{"Title":"City by the Sea","US Gross":22433915,"Worldwide Gross":22433915,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Sep 06 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Magazine Article","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Michael Caton-Jones","Rotten Tomatoes Rating":48,"IMDB Rating":6.1,"IMDB Votes":13487},{"Title":"The Cube","US Gross":489220,"Worldwide Gross":489220,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Sep 11 1998","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":202},{"Title":"Coyote Ugly","US Gross":60786269,"Worldwide Gross":115786269,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Aug 04 2000","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":5.3,"IMDB Votes":33808},{"Title":"Curious George","US Gross":58640119,"Worldwide Gross":70114174,"US DVD Sales":47809786,"Production Budget":50000000,"Release Date":"Feb 10 2006","MPAA Rating":"G","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":6.7,"IMDB Votes":5393},{"Title":"Cursed","US Gross":19294901,"Worldwide Gross":25114901,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Feb 25 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Wes Craven","Rotten Tomatoes Rating":null,"IMDB Rating":4.8,"IMDB Votes":14425},{"Title":"Civil Brand","US Gross":254293,"Worldwide Gross":254293,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Aug 29 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":340},{"Title":"Cloudy with a Chance of Meatballs","US Gross":124870275,"Worldwide Gross":139525862,"US DVD Sales":42574228,"Production Budget":100000000,"Release Date":"Sep 18 2009","MPAA Rating":"PG","Running Time min":90,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Phil Lord","Rotten Tomatoes Rating":86,"IMDB Rating":7.2,"IMDB Votes":19913},{"Title":"Charlie Wilson's War","US Gross":66661095,"Worldwide Gross":118661095,"US DVD Sales":17517037,"Production Budget":75000000,"Release Date":"Dec 21 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Mike Nichols","Rotten Tomatoes Rating":81,"IMDB Rating":7.3,"IMDB Votes":43168},{"Title":"Cyrus","US Gross":7426671,"Worldwide Gross":8514729,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jun 18 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Mark Duplass","Rotten Tomatoes Rating":81,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Daddy Day Camp","US Gross":13235267,"Worldwide Gross":18197398,"US DVD Sales":5405521,"Production Budget":76000000,"Release Date":"Aug 08 2007","MPAA Rating":"PG","Running Time min":85,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":1,"IMDB Rating":2.4,"IMDB Votes":6809},{"Title":"Daddy Day Care","US Gross":104148781,"Worldwide Gross":164285587,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"May 09 2003","MPAA Rating":"PG","Running Time min":92,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steve Carr","Rotten Tomatoes Rating":28,"IMDB Rating":5.5,"IMDB Votes":14944},{"Title":"The Black Dahlia","US Gross":22672813,"Worldwide Gross":46672813,"US DVD Sales":12350794,"Production Budget":60000000,"Release Date":"Sep 15 2006","MPAA Rating":"R","Running Time min":121,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":33,"IMDB Rating":5.6,"IMDB Votes":35210},{"Title":"Diary of a Mad Black Woman","US Gross":50406346,"Worldwide Gross":50425450,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Feb 25 2005","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Lionsgate","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":4.9,"IMDB Votes":5565},{"Title":"Dance Flick","US Gross":25662155,"Worldwide Gross":32092761,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"May 22 2009","MPAA Rating":"PG-13","Running Time min":83,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Damien Wayans","Rotten Tomatoes Rating":17,"IMDB Rating":3.4,"IMDB Votes":5002},{"Title":"Dancer, Texas Pop. 81","US Gross":574838,"Worldwide Gross":574838,"US DVD Sales":null,"Production Budget":2300000,"Release Date":"May 01 1998","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":80,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Daredevil","US Gross":102543518,"Worldwide Gross":179179718,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Feb 14 2003","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Mark Steven Johnson","Rotten Tomatoes Rating":44,"IMDB Rating":5.5,"IMDB Votes":63574},{"Title":"Dark City","US Gross":14435076,"Worldwide Gross":27257061,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Feb 27 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":"Alex Proyas","Rotten Tomatoes Rating":77,"IMDB Rating":7.8,"IMDB Votes":62991},{"Title":"His Dark Materials: The Golden Compass","US Gross":70107728,"Worldwide Gross":372234864,"US DVD Sales":41772382,"Production Budget":205000000,"Release Date":"Dec 01 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Chris Weitz","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Donnie Darko","US Gross":1270522,"Worldwide Gross":4116307,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Oct 26 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Newmarket Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Richard Kelly","Rotten Tomatoes Rating":84,"IMDB Rating":8.3,"IMDB Votes":210713},{"Title":"Dark Water","US Gross":25473093,"Worldwide Gross":49473093,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jul 08 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":"Walter Salles","Rotten Tomatoes Rating":46,"IMDB Rating":5.6,"IMDB Votes":19652},{"Title":"Win a Date with Tad Hamilton!","US Gross":16980098,"Worldwide Gross":16980098,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Jan 23 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Robert Luketic","Rotten Tomatoes Rating":52,"IMDB Rating":5.7,"IMDB Votes":10366},{"Title":"Date Movie","US Gross":48548426,"Worldwide Gross":84548426,"US DVD Sales":18840886,"Production Budget":20000000,"Release Date":"Feb 17 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jason Friedberg","Rotten Tomatoes Rating":6,"IMDB Rating":2.6,"IMDB Votes":31821},{"Title":"Date Night","US Gross":98711404,"Worldwide Gross":152253432,"US DVD Sales":19432795,"Production Budget":55000000,"Release Date":"Apr 09 2010","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Shawn Levy","Rotten Tomatoes Rating":67,"IMDB Rating":6.5,"IMDB Votes":22925},{"Title":"Dawn of the Dead","US Gross":58990765,"Worldwide Gross":102290765,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Mar 19 2004","MPAA Rating":"R","Running Time min":100,"Distributor":"Universal","Source":"Remake","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Zack Snyder","Rotten Tomatoes Rating":76,"IMDB Rating":7.4,"IMDB Votes":73875},{"Title":"Daybreakers","US Gross":30101577,"Worldwide Gross":48969954,"US DVD Sales":11463099,"Production Budget":20000000,"Release Date":"Jan 08 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Michael Spierig","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":28241},{"Title":"Day of the Dead","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Apr 08 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Steve Miner","Rotten Tomatoes Rating":null,"IMDB Rating":4.5,"IMDB Votes":8395},{"Title":"The Great Debaters","US Gross":30226144,"Worldwide Gross":30226144,"US DVD Sales":24133037,"Production Budget":15000000,"Release Date":"Dec 25 2007","MPAA Rating":"PG-13","Running Time min":130,"Distributor":"Weinstein Co.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Denzel Washington","Rotten Tomatoes Rating":79,"IMDB Rating":7.6,"IMDB Votes":14530},{"Title":"Double Jeopardy","US Gross":116735231,"Worldwide Gross":177835231,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Sep 24 1999","MPAA Rating":"R","Running Time min":105,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Bruce Beresford","Rotten Tomatoes Rating":25,"IMDB Rating":6,"IMDB Votes":28887},{"Title":"Der Baader Meinhof Komplex","US Gross":476270,"Worldwide Gross":16498827,"US DVD Sales":null,"Production Budget":19700000,"Release Date":"Aug 21 2009","MPAA Rating":"R","Running Time min":149,"Distributor":"Vitagraph Films","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":10383},{"Title":"Deep Blue Sea","US Gross":73648228,"Worldwide Gross":165048228,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jul 28 1999","MPAA Rating":"R","Running Time min":105,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":57,"IMDB Rating":5.6,"IMDB Votes":44191},{"Title":"Drive Me Crazy","US Gross":17843379,"Worldwide Gross":22591451,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Oct 01 1999","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"John Schultz","Rotten Tomatoes Rating":26,"IMDB Rating":5.1,"IMDB Votes":6968},{"Title":"Dave Chappelle's Block Party","US Gross":11718595,"Worldwide Gross":12051924,"US DVD Sales":18713941,"Production Budget":3000000,"Release Date":"Mar 03 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Michel Gondry","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Dancer in the Dark","US Gross":4157491,"Worldwide Gross":45557491,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Sep 22 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":68,"IMDB Rating":7.8,"IMDB Votes":36542},{"Title":"Diary of the Dead","US Gross":952620,"Worldwide Gross":4726656,"US DVD Sales":4653193,"Production Budget":2750000,"Release Date":"Feb 15 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"George A. Romero","Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":20792},{"Title":"Dear John","US Gross":80014842,"Worldwide Gross":112014842,"US DVD Sales":19179552,"Production Budget":25000000,"Release Date":"Feb 05 2010","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Lasse Hallstrom","Rotten Tomatoes Rating":28,"IMDB Rating":7,"IMDB Votes":246},{"Title":"Dear Wendy","US Gross":23106,"Worldwide Gross":446438,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Sep 23 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"WellSpring","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":"Thomas Vinterberg","Rotten Tomatoes Rating":37,"IMDB Rating":6.6,"IMDB Votes":5574},{"Title":"D.E.B.S.","US Gross":96793,"Worldwide Gross":96793,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Mar 25 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Samuel Goldwyn Films","Source":"Original Screenplay","Major Genre":"Action","Creative Type":null,"Director":"Angela Robinson","Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":6675},{"Title":"Deconstructing Harry","US Gross":10686841,"Worldwide Gross":10686841,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 12 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":70,"IMDB Rating":7.2,"IMDB Votes":16820},{"Title":"Mr. Deeds","US Gross":126293452,"Worldwide Gross":171269535,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 28 2002","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":5.5,"IMDB Votes":39756},{"Title":"The Deep End of the Ocean","US Gross":13508635,"Worldwide Gross":13508635,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Mar 12 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":6,"IMDB Votes":5790},{"Title":"Deep Rising","US Gross":11203026,"Worldwide Gross":11203026,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jan 30 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Stephen Sommers","Rotten Tomatoes Rating":30,"IMDB Rating":5.7,"IMDB Votes":12484},{"Title":"Definitely, Maybe","US Gross":32241649,"Worldwide Gross":55534224,"US DVD Sales":12928344,"Production Budget":7000000,"Release Date":"Feb 14 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Death at a Funeral","US Gross":42739347,"Worldwide Gross":42739347,"US DVD Sales":9750680,"Production Budget":21000000,"Release Date":"Apr 16 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Neil LaBute","Rotten Tomatoes Rating":38,"IMDB Rating":5.1,"IMDB Votes":6628},{"Title":"DÈj‡ Vu","US Gross":64038616,"Worldwide Gross":181038616,"US DVD Sales":40502497,"Production Budget":80000000,"Release Date":"Nov 22 2006","MPAA Rating":"PG-13","Running Time min":126,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":66106},{"Title":"Delgo","US Gross":915840,"Worldwide Gross":915840,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Dec 12 2008","MPAA Rating":"PG","Running Time min":88,"Distributor":"Freestyle Releasing","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":4.4,"IMDB Votes":1177},{"Title":"Despicable Me","US Gross":244885070,"Worldwide Gross":333572855,"US DVD Sales":null,"Production Budget":69000000,"Release Date":"Jul 09 2010","MPAA Rating":"PG","Running Time min":95,"Distributor":"Universal","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":80,"IMDB Rating":7.7,"IMDB Votes":10529},{"Title":"Deuce Bigalow: European Gigolo","US Gross":22400154,"Worldwide Gross":44400154,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Aug 12 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":4.3,"IMDB Votes":18228},{"Title":"Deuce Bigalow: Male Gigolo","US Gross":65535067,"Worldwide Gross":92935067,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Dec 10 1999","MPAA Rating":"R","Running Time min":88,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":5.6,"IMDB Votes":25397},{"Title":"The Devil's Own","US Gross":42885593,"Worldwide Gross":140900000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Mar 26 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Alan J. Pakula","Rotten Tomatoes Rating":29,"IMDB Rating":5.8,"IMDB Votes":21331},{"Title":"Darkness Falls","US Gross":32539681,"Worldwide Gross":32539681,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jan 24 2003","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":4.6,"IMDB Votes":12771},{"Title":"Defiance","US Gross":28644813,"Worldwide Gross":42268745,"US DVD Sales":13421577,"Production Budget":50000000,"Release Date":"Dec 31 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Edward Zwick","Rotten Tomatoes Rating":56,"IMDB Rating":5.9,"IMDB Votes":362},{"Title":"A Dog of Flanders","US Gross":2165637,"Worldwide Gross":2165637,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Aug 27 1999","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":5.9,"IMDB Votes":482},{"Title":"Dragonfly","US Gross":30063805,"Worldwide Gross":30063805,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Feb 22 2002","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Tom Shadyac","Rotten Tomatoes Rating":7,"IMDB Rating":5.8,"IMDB Votes":14098},{"Title":"The Dead Girl","US Gross":19875,"Worldwide Gross":19875,"US DVD Sales":null,"Production Budget":3300000,"Release Date":"Dec 29 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"First Look","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":73,"IMDB Rating":6.8,"IMDB Votes":7122},{"Title":"The Lords of Dogtown","US Gross":11273517,"Worldwide Gross":11354893,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jun 03 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/TriStar","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Dramatization","Director":"Catherine Hardwicke","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Dick","US Gross":6276869,"Worldwide Gross":6276869,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Aug 04 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Andrew Fleming","Rotten Tomatoes Rating":70,"IMDB Rating":6.1,"IMDB Votes":10451},{"Title":"Live Free or Die Hard","US Gross":134529403,"Worldwide Gross":383531464,"US DVD Sales":100774964,"Production Budget":110000000,"Release Date":"Jun 27 2007","MPAA Rating":"PG-13","Running Time min":128,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Len Wiseman","Rotten Tomatoes Rating":82,"IMDB Rating":7.5,"IMDB Votes":130559},{"Title":"Digimon: The Movie","US Gross":9628751,"Worldwide Gross":16628751,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Oct 06 2000","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.6,"IMDB Votes":1727},{"Title":"Dirty Work","US Gross":10020081,"Worldwide Gross":10020081,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Jun 12 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":4.8,"IMDB Votes":207},{"Title":"Banlieue 13","US Gross":1200216,"Worldwide Gross":11208291,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jun 02 2006","MPAA Rating":"R","Running Time min":85,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Pierre Morel","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":21427},{"Title":"Disaster Movie","US Gross":14190901,"Worldwide Gross":34690901,"US DVD Sales":9859088,"Production Budget":20000000,"Release Date":"Aug 29 2008","MPAA Rating":"PG-13","Running Time min":88,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jason Friedberg","Rotten Tomatoes Rating":2,"IMDB Rating":1.7,"IMDB Votes":34928},{"Title":"District 9","US Gross":115646235,"Worldwide Gross":206552113,"US DVD Sales":30058184,"Production Budget":30000000,"Release Date":"Aug 14 2009","MPAA Rating":"R","Running Time min":111,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Neill Blomkamp","Rotten Tomatoes Rating":91,"IMDB Rating":8.3,"IMDB Votes":151742},{"Title":"Disturbing Behavior","US Gross":17507368,"Worldwide Gross":17507368,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jul 24 1998","MPAA Rating":"R","Running Time min":83,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":5.2,"IMDB Votes":9394},{"Title":"Le Scaphandre et le Papillon","US Gross":5990075,"Worldwide Gross":19689095,"US DVD Sales":2354497,"Production Budget":14000000,"Release Date":"Nov 30 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Julian Schnabel","Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":31172},{"Title":"Dark Blue","US Gross":9237470,"Worldwide Gross":11933396,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Feb 21 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Ron Shelton","Rotten Tomatoes Rating":57,"IMDB Rating":6.6,"IMDB Votes":10881},{"Title":"Dreaming of Joseph Lees","US Gross":7680,"Worldwide Gross":7680,"US DVD Sales":null,"Production Budget":3250000,"Release Date":"Oct 29 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":520},{"Title":"De-Lovely","US Gross":13337299,"Worldwide Gross":18396382,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jun 25 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":49,"IMDB Rating":6.5,"IMDB Votes":6086},{"Title":"Madea's Family Reunion","US Gross":63257940,"Worldwide Gross":63308879,"US DVD Sales":26508859,"Production Budget":10000000,"Release Date":"Feb 24 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Tyler Perry","Rotten Tomatoes Rating":26,"IMDB Rating":3.9,"IMDB Votes":5369},{"Title":"Dead Man on Campus","US Gross":15064948,"Worldwide Gross":15064948,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Aug 21 1998","MPAA Rating":"R","Running Time min":93,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":5.6,"IMDB Votes":7109},{"Title":"Drowning Mona","US Gross":15427192,"Worldwide Gross":15427192,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Mar 03 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Destination Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":5.3,"IMDB Votes":7606},{"Title":"Diamonds","US Gross":81897,"Worldwide Gross":81897,"US DVD Sales":null,"Production Budget":11900000,"Release Date":"Dec 10 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5.3,"IMDB Votes":976},{"Title":"Doomsday","US Gross":11008770,"Worldwide Gross":21621188,"US DVD Sales":8666480,"Production Budget":33000000,"Release Date":"Mar 14 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":48,"IMDB Rating":6,"IMDB Votes":34035},{"Title":"Donkey Punch","US Gross":19367,"Worldwide Gross":19367,"US DVD Sales":null,"Production Budget":750000,"Release Date":"Jan 23 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":4551},{"Title":"Dinosaur","US Gross":137748063,"Worldwide Gross":356148063,"US DVD Sales":null,"Production Budget":127500000,"Release Date":"May 19 2000","MPAA Rating":"PG","Running Time min":82,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":65,"IMDB Rating":6.2,"IMDB Votes":13962},{"Title":"DOA: Dead or Alive","US Gross":480314,"Worldwide Gross":2670860,"US DVD Sales":1370874,"Production Budget":30000000,"Release Date":"Jun 15 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Weinstein/Dimension","Source":"Based on Game","Major Genre":"Action","Creative Type":"Fantasy","Director":"Corey Yuen","Rotten Tomatoes Rating":34,"IMDB Rating":4.9,"IMDB Votes":16646},{"Title":"Doogal","US Gross":7578946,"Worldwide Gross":26942802,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 31 2005","MPAA Rating":"G","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.5,"IMDB Votes":2709},{"Title":"Dogma","US Gross":30651422,"Worldwide Gross":43948865,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Nov 12 1999","MPAA Rating":"R","Running Time min":135,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":68,"IMDB Rating":7.3,"IMDB Votes":100476},{"Title":"Domestic Disturbance","US Gross":45207112,"Worldwide Gross":45207112,"US DVD Sales":null,"Production Budget":53000000,"Release Date":"Nov 02 2001","MPAA Rating":"PG-13","Running Time min":89,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Harold Becker","Rotten Tomatoes Rating":24,"IMDB Rating":5.3,"IMDB Votes":10778},{"Title":"Domino","US Gross":10169202,"Worldwide Gross":17759202,"US DVD Sales":15573570,"Production Budget":50000000,"Release Date":"Oct 14 2005","MPAA Rating":"R","Running Time min":133,"Distributor":"New Line","Source":"Based on Real Life Events","Major Genre":"Action","Creative Type":"Dramatization","Director":"Tony Scott","Rotten Tomatoes Rating":19,"IMDB Rating":5.9,"IMDB Votes":32560},{"Title":"Donnie Brasco","US Gross":41954997,"Worldwide Gross":55954997,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Feb 28 1997","MPAA Rating":"R","Running Time min":121,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Mike Newell","Rotten Tomatoes Rating":87,"IMDB Rating":7.7,"IMDB Votes":65462},{"Title":"Doom","US Gross":28212337,"Worldwide Gross":54612337,"US DVD Sales":28563264,"Production Budget":70000000,"Release Date":"Oct 21 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Game","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Andrzej Bartkowiak","Rotten Tomatoes Rating":19,"IMDB Rating":5.2,"IMDB Votes":39473},{"Title":"Doubt","US Gross":33422556,"Worldwide Gross":50923043,"US DVD Sales":12876746,"Production Budget":20000000,"Release Date":"Dec 12 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":78,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Doug's 1st Movie","US Gross":19421271,"Worldwide Gross":19421271,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Mar 26 1999","MPAA Rating":"G","Running Time min":77,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.8,"IMDB Votes":920},{"Title":"Downfall","US Gross":5501940,"Worldwide Gross":92101940,"US DVD Sales":null,"Production Budget":13500000,"Release Date":"Feb 18 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Newmarket Films","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":404},{"Title":"The Deep End","US Gross":8823109,"Worldwide Gross":8823109,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 08 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":6.6,"IMDB Votes":6734},{"Title":"Deep Impact","US Gross":140464664,"Worldwide Gross":349464664,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"May 08 1998","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Mimi Leder","Rotten Tomatoes Rating":47,"IMDB Rating":6,"IMDB Votes":54160},{"Title":"The Departed","US Gross":133311000,"Worldwide Gross":290539042,"US DVD Sales":140689412,"Production Budget":90000000,"Release Date":"Oct 06 2006","MPAA Rating":"R","Running Time min":152,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":93,"IMDB Rating":8.5,"IMDB Votes":264148},{"Title":"Dracula 2000","US Gross":33000377,"Worldwide Gross":33000377,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Dec 22 2000","MPAA Rating":"R","Running Time min":99,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":4.8,"IMDB Votes":14077},{"Title":"Death Race","US Gross":36316032,"Worldwide Gross":72516819,"US DVD Sales":24667330,"Production Budget":65000000,"Release Date":"Aug 22 2008","MPAA Rating":"R","Running Time min":105,"Distributor":"Universal","Source":"Remake","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Paul Anderson","Rotten Tomatoes Rating":41,"IMDB Rating":6.6,"IMDB Votes":40611},{"Title":"Drag Me To Hell","US Gross":42100625,"Worldwide Gross":85724728,"US DVD Sales":13123388,"Production Budget":30000000,"Release Date":"May 29 2009","MPAA Rating":"PG-13","Running Time min":99,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Sam Raimi","Rotten Tomatoes Rating":92,"IMDB Rating":7.1,"IMDB Votes":51343},{"Title":"Crouching Tiger, Hidden Dragon","US Gross":128067808,"Worldwide Gross":213200000,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 08 2000","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Ang Lee","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Derailed","US Gross":36020063,"Worldwide Gross":54962616,"US DVD Sales":27718572,"Production Budget":22000000,"Release Date":"Nov 11 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":3.4,"IMDB Votes":3317},{"Title":"Doctor Dolittle 2","US Gross":112950721,"Worldwide Gross":176101721,"US DVD Sales":null,"Production Budget":72000000,"Release Date":"Jun 22 2001","MPAA Rating":"PG","Running Time min":87,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Steve Carr","Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":2993},{"Title":"Doctor Dolittle","US Gross":144156605,"Worldwide Gross":294156605,"US DVD Sales":null,"Production Budget":71500000,"Release Date":"Jun 26 1998","MPAA Rating":"PG-13","Running Time min":85,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Betty Thomas","Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":25648},{"Title":"Dickie Roberts: Former Child Star","US Gross":22734486,"Worldwide Gross":23734486,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Sep 05 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":6949},{"Title":"Drillbit Taylor","US Gross":32862104,"Worldwide Gross":49686263,"US DVD Sales":12040874,"Production Budget":40000000,"Release Date":"Mar 21 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5.9,"IMDB Votes":19388},{"Title":"Driving Lessons","US Gross":239962,"Worldwide Gross":239962,"US DVD Sales":null,"Production Budget":4700000,"Release Date":"Oct 13 2006","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":48,"IMDB Rating":6.7,"IMDB Votes":5380},{"Title":"Driven","US Gross":32616869,"Worldwide Gross":54616869,"US DVD Sales":null,"Production Budget":72000000,"Release Date":"Apr 27 2001","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":13,"IMDB Rating":4.2,"IMDB Votes":18795},{"Title":"Darkness","US Gross":22163442,"Worldwide Gross":34409206,"US DVD Sales":null,"Production Budget":10600000,"Release Date":"Dec 25 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":4,"IMDB Rating":5.3,"IMDB Votes":9979},{"Title":"I Dreamed of Africa","US Gross":6543194,"Worldwide Gross":6543194,"US DVD Sales":null,"Production Budget":34000000,"Release Date":"May 05 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Hugh Hudson","Rotten Tomatoes Rating":9,"IMDB Rating":5.2,"IMDB Votes":2298},{"Title":"Dreamcatcher","US Gross":33685268,"Worldwide Gross":75685268,"US DVD Sales":null,"Production Budget":68000000,"Release Date":"Mar 21 2003","MPAA Rating":"R","Running Time min":136,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Lawrence Kasdan","Rotten Tomatoes Rating":30,"IMDB Rating":5.3,"IMDB Votes":34141},{"Title":"Dreamgirls","US Gross":103365956,"Worldwide Gross":154965956,"US DVD Sales":53674555,"Production Budget":75000000,"Release Date":"Dec 15 2006","MPAA Rating":"PG-13","Running Time min":130,"Distributor":"Paramount Pictures","Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Bill Condon","Rotten Tomatoes Rating":78,"IMDB Rating":6.6,"IMDB Votes":28016},{"Title":"Detroit Rock City","US Gross":4217115,"Worldwide Gross":4217115,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Aug 13 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":6.4,"IMDB Votes":15092},{"Title":"Drop Dead Gorgeous","US Gross":10571408,"Worldwide Gross":10571408,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jul 23 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":45,"IMDB Rating":6.2,"IMDB Votes":16344},{"Title":"Drumline","US Gross":56398162,"Worldwide Gross":56398162,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 13 2002","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":5.2,"IMDB Votes":18165},{"Title":"The Legend of Drunken Master","US Gross":11546543,"Worldwide Gross":11546543,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Oct 20 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Dinner Rush","US Gross":638227,"Worldwide Gross":1075504,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Sep 28 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Access Motion Picture Group","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":2991},{"Title":"The Descent","US Gross":26024456,"Worldwide Gross":57029609,"US DVD Sales":22484444,"Production Budget":7000000,"Release Date":"Aug 04 2006","MPAA Rating":"R","Running Time min":99,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":58176},{"Title":"DysFunkTional Family","US Gross":2255000,"Worldwide Gross":2255000,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Apr 04 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Concert/Performance","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":43,"IMDB Rating":5.9,"IMDB Votes":501},{"Title":"The Master of Disguise","US Gross":40363530,"Worldwide Gross":40363530,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Aug 02 2002","MPAA Rating":"PG","Running Time min":80,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":2,"IMDB Rating":3,"IMDB Votes":10050},{"Title":"Desert Blue","US Gross":99147,"Worldwide Gross":99147,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jun 04 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Goldwyn Entertainment","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":1412},{"Title":"Disturbia","US Gross":80209692,"Worldwide Gross":117573043,"US DVD Sales":34508128,"Production Budget":20000000,"Release Date":"Apr 13 2007","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"D.J. Caruso","Rotten Tomatoes Rating":68,"IMDB Rating":7,"IMDB Votes":72231},{"Title":"Double Take","US Gross":29823162,"Worldwide Gross":29823162,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Jan 12 2001","MPAA Rating":"PG-13","Running Time min":88,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":6.8,"IMDB Votes":162},{"Title":"Death at a Funeral","US Gross":8580428,"Worldwide Gross":34743644,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Aug 17 2007","MPAA Rating":"R","Running Time min":90,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Frank Oz","Rotten Tomatoes Rating":61,"IMDB Rating":5.1,"IMDB Votes":6628},{"Title":"Deterrence","US Gross":144583,"Worldwide Gross":371647,"US DVD Sales":null,"Production Budget":800000,"Release Date":"Mar 10 2000","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":45,"IMDB Rating":6.3,"IMDB Votes":1776},{"Title":"Dirty Pretty Things","US Gross":8112414,"Worldwide Gross":13904766,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jul 18 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Stephen Frears","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":18554},{"Title":"Dudley Do-Right","US Gross":9818792,"Worldwide Gross":9818792,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Aug 27 1999","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Hugh Wilson","Rotten Tomatoes Rating":14,"IMDB Rating":3.6,"IMDB Votes":4628},{"Title":"Duets","US Gross":4734235,"Worldwide Gross":4734235,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Sep 15 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":5.7,"IMDB Votes":5340},{"Title":"The Dukes of Hazzard","US Gross":80270227,"Worldwide Gross":110570227,"US DVD Sales":null,"Production Budget":53000000,"Release Date":"Aug 05 2005","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jay Chandrasekhar","Rotten Tomatoes Rating":13,"IMDB Rating":4.7,"IMDB Votes":27016},{"Title":"Duma","US Gross":870067,"Worldwide Gross":994790,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Sep 30 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":93,"IMDB Rating":7.2,"IMDB Votes":2966},{"Title":"Dumb and Dumberer: When Harry Met Lloyd","US Gross":26214846,"Worldwide Gross":26214846,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 13 2003","MPAA Rating":"PG-13","Running Time min":85,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":3.3,"IMDB Votes":14813},{"Title":"Dungeons & Dragons 2: The Elemental Might","US Gross":0,"Worldwide Gross":909822,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 08 2005","MPAA Rating":null,"Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Game","Major Genre":null,"Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Dungeons and Dragons","US Gross":15185241,"Worldwide Gross":33771965,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 08 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Based on Game","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.6,"IMDB Votes":16954},{"Title":"Duplex","US Gross":9652000,"Worldwide Gross":10070651,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Sep 26 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Danny De Vito","Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":19238},{"Title":"You, Me and Dupree","US Gross":75802010,"Worldwide Gross":130402010,"US DVD Sales":41651251,"Production Budget":54000000,"Release Date":"Jul 14 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":6.1,"IMDB Votes":164},{"Title":"Devil's Advocate","US Gross":61007424,"Worldwide Gross":153007424,"US DVD Sales":null,"Production Budget":57000000,"Release Date":"Oct 17 1997","MPAA Rating":"R","Running Time min":144,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Taylor Hackford","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Da Vinci Code","US Gross":217536138,"Worldwide Gross":757236138,"US DVD Sales":100178981,"Production Budget":125000000,"Release Date":"May 19 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Ron Howard","Rotten Tomatoes Rating":25,"IMDB Rating":6.4,"IMDB Votes":116903},{"Title":"D-War","US Gross":10977721,"Worldwide Gross":79915361,"US DVD Sales":7614486,"Production Budget":32000000,"Release Date":"Sep 14 2007","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"Freestyle Releasing","Source":"Traditional/Legend/Fairytale","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.8,"IMDB Votes":14081},{"Title":"Deuces Wild","US Gross":6044618,"Worldwide Gross":6044618,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"May 03 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":3,"IMDB Rating":5.3,"IMDB Votes":4010},{"Title":"Down to Earth","US Gross":64172251,"Worldwide Gross":71172251,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Feb 16 2001","MPAA Rating":"PG-13","Running Time min":87,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Paul Weitz","Rotten Tomatoes Rating":19,"IMDB Rating":5,"IMDB Votes":9193},{"Title":"Down to You","US Gross":20035310,"Worldwide Gross":20035310,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Jan 21 2000","MPAA Rating":"PG-13","Running Time min":92,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":3,"IMDB Rating":4.4,"IMDB Votes":7095},{"Title":"I'm Not There","US Gross":4017609,"Worldwide Gross":11498547,"US DVD Sales":6017494,"Production Budget":20000000,"Release Date":"Nov 21 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Todd Haynes","Rotten Tomatoes Rating":76,"IMDB Rating":7.1,"IMDB Votes":23078},{"Title":"Easy A","US Gross":21056221,"Worldwide Gross":22156221,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Sep 17 2010","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":80,"IMDB Rating":7.7,"IMDB Votes":483},{"Title":"The Eclipse","US Gross":133411,"Worldwide Gross":133411,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Feb 26 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":790},{"Title":"Edge of Darkness","US Gross":43313890,"Worldwide Gross":78739628,"US DVD Sales":12665512,"Production Budget":60000000,"Release Date":"Jan 29 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Martin Campbell","Rotten Tomatoes Rating":55,"IMDB Rating":6.7,"IMDB Votes":24174},{"Title":"EDtv","US Gross":22508689,"Worldwide Gross":35319689,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Mar 26 1999","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ron Howard","Rotten Tomatoes Rating":62,"IMDB Rating":6,"IMDB Votes":21734},{"Title":"An Education","US Gross":12574914,"Worldwide Gross":14134502,"US DVD Sales":1765115,"Production Budget":7500000,"Release Date":"Oct 09 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Factual Book/Article","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":7.5,"IMDB Votes":22855},{"Title":"East is East","US Gross":4170647,"Worldwide Gross":4170647,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Apr 14 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":8351},{"Title":"8 Heads in a Duffel Bag","US Gross":3602884,"Worldwide Gross":4002884,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Apr 18 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Orion Pictures","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":4.8,"IMDB Votes":5127},{"Title":"Eagle Eye","US Gross":101440743,"Worldwide Gross":178066569,"US DVD Sales":38374936,"Production Budget":80000000,"Release Date":"Sep 26 2008","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"D.J. Caruso","Rotten Tomatoes Rating":27,"IMDB Rating":6.6,"IMDB Votes":52336},{"Title":"8MM","US Gross":36443442,"Worldwide Gross":96398826,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Feb 26 1999","MPAA Rating":"R","Running Time min":119,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":22,"IMDB Rating":6.3,"IMDB Votes":47753},{"Title":"Iris","US Gross":5580479,"Worldwide Gross":15035827,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Dec 14 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":79,"IMDB Rating":5.8,"IMDB Votes":44},{"Title":"Election","US Gross":14943582,"Worldwide Gross":14943582,"US DVD Sales":null,"Production Budget":8500000,"Release Date":"Apr 23 1999","MPAA Rating":"R","Running Time min":103,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Alexander Payne","Rotten Tomatoes Rating":92,"IMDB Rating":7.4,"IMDB Votes":37454},{"Title":"Elektra","US Gross":24409722,"Worldwide Gross":56409722,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Jan 14 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Spin-Off","Major Genre":"Action","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":4.9,"IMDB Votes":27283},{"Title":"Elf","US Gross":173398518,"Worldwide Gross":220443451,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Nov 07 2003","MPAA Rating":"PG","Running Time min":95,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Jon Favreau","Rotten Tomatoes Rating":84,"IMDB Rating":6.8,"IMDB Votes":42123},{"Title":"Elizabeth","US Gross":30082699,"Worldwide Gross":82150642,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Nov 06 1998","MPAA Rating":"R","Running Time min":124,"Distributor":"Gramercy","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Shekhar Kapur","Rotten Tomatoes Rating":81,"IMDB Rating":7.6,"IMDB Votes":33773},{"Title":"Ella Enchanted","US Gross":22913677,"Worldwide Gross":22913677,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Apr 09 2004","MPAA Rating":"PG","Running Time min":96,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":49,"IMDB Rating":6.3,"IMDB Votes":12020},{"Title":"Once Upon a Time in Mexico","US Gross":56330657,"Worldwide Gross":98156459,"US DVD Sales":null,"Production Budget":29000000,"Release Date":"Sep 12 2003","MPAA Rating":"R","Running Time min":102,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Robert Rodriguez","Rotten Tomatoes Rating":68,"IMDB Rating":6.2,"IMDB Votes":54413},{"Title":"The Adventures of Elmo in Grouchland","US Gross":11634458,"Worldwide Gross":11634458,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Oct 01 1999","MPAA Rating":"G","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":76,"IMDB Rating":5.4,"IMDB Votes":1059},{"Title":"The Emperor's Club","US Gross":14060950,"Worldwide Gross":16124074,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Nov 22 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":6.7,"IMDB Votes":8165},{"Title":"Empire","US Gross":17504595,"Worldwide Gross":18495444,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Dec 06 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":6.5,"IMDB Votes":63},{"Title":"La marche de l'empereur","US Gross":77437223,"Worldwide Gross":129437223,"US DVD Sales":null,"Production Budget":3400000,"Release Date":"Jun 24 2005","MPAA Rating":"G","Running Time min":80,"Distributor":"Warner Independent","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":23674},{"Title":"Employee of the Month","US Gross":28444855,"Worldwide Gross":38117718,"US DVD Sales":21177885,"Production Budget":10000000,"Release Date":"Oct 06 2006","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":5.4,"IMDB Votes":17845},{"Title":"The Emperor's New Groove","US Gross":89296573,"Worldwide Gross":169296573,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Dec 15 2000","MPAA Rating":"G","Running Time min":78,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Mark Dindal","Rotten Tomatoes Rating":85,"IMDB Rating":7.4,"IMDB Votes":23355},{"Title":"Enchanted","US Gross":127706877,"Worldwide Gross":340384141,"US DVD Sales":87698079,"Production Budget":85000000,"Release Date":"Nov 21 2007","MPAA Rating":"PG","Running Time min":108,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Fantasy","Director":"Kevin Lima","Rotten Tomatoes Rating":92,"IMDB Rating":7.5,"IMDB Votes":55697},{"Title":"The End of the Affair","US Gross":10660147,"Worldwide Gross":10660147,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Dec 03 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Neil Jordan","Rotten Tomatoes Rating":67,"IMDB Rating":6.9,"IMDB Votes":9969},{"Title":"End of Days","US Gross":66889043,"Worldwide Gross":212026975,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Nov 24 1999","MPAA Rating":"R","Running Time min":120,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":"Peter Hyams","Rotten Tomatoes Rating":11,"IMDB Rating":5.4,"IMDB Votes":43513},{"Title":"End of the Spear","US Gross":11748661,"Worldwide Gross":11748661,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jan 20 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"M Power Releasing","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":2884},{"Title":"Enemy at the Gates","US Gross":51396781,"Worldwide Gross":96971293,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Mar 16 2001","MPAA Rating":"R","Running Time min":131,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Jean-Jacques Annaud","Rotten Tomatoes Rating":53,"IMDB Rating":7.4,"IMDB Votes":59916},{"Title":"Enemy of the State","US Gross":111549836,"Worldwide Gross":250649836,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Nov 20 1998","MPAA Rating":"R","Running Time min":127,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":70,"IMDB Rating":7.2,"IMDB Votes":66700},{"Title":"Entrapment","US Gross":87707396,"Worldwide Gross":211700000,"US DVD Sales":null,"Production Budget":66000000,"Release Date":"Apr 30 1999","MPAA Rating":"PG-13","Running Time min":112,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Jon Amiel","Rotten Tomatoes Rating":38,"IMDB Rating":6.1,"IMDB Votes":40764},{"Title":"Enough","US Gross":39177215,"Worldwide Gross":39177215,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"May 24 2002","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Michael Apted","Rotten Tomatoes Rating":21,"IMDB Rating":6.5,"IMDB Votes":92},{"Title":"Envy","US Gross":13548322,"Worldwide Gross":14566246,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Apr 30 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":7,"IMDB Rating":4.6,"IMDB Votes":15655},{"Title":"Epic Movie","US Gross":39739367,"Worldwide Gross":86858578,"US DVD Sales":16839362,"Production Budget":20000000,"Release Date":"Jan 26 2007","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jason Friedberg","Rotten Tomatoes Rating":2,"IMDB Rating":2.2,"IMDB Votes":48975},{"Title":"Eragon","US Gross":75030163,"Worldwide Gross":249488115,"US DVD Sales":87700229,"Production Budget":100000000,"Release Date":"Dec 15 2006","MPAA Rating":"PG","Running Time min":102,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":5,"IMDB Votes":43555},{"Title":"Erin Brockovich","US Gross":125548685,"Worldwide Gross":258400000,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Mar 17 2000","MPAA Rating":"R","Running Time min":133,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Steven Soderbergh","Rotten Tomatoes Rating":83,"IMDB Rating":7.2,"IMDB Votes":54977},{"Title":"Elizabethtown","US Gross":26850426,"Worldwide Gross":50719373,"US DVD Sales":15854391,"Production Budget":54000000,"Release Date":"Oct 14 2005","MPAA Rating":"PG-13","Running Time min":133,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Cameron Crowe","Rotten Tomatoes Rating":28,"IMDB Rating":6.4,"IMDB Votes":31775},{"Title":"Eat Pray Love","US Gross":78146373,"Worldwide Gross":81846373,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Aug 13 2010","MPAA Rating":"R","Running Time min":143,"Distributor":"Sony Pictures","Source":"Based on Magazine Article","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":37,"IMDB Rating":4.7,"IMDB Votes":3019},{"Title":"Eternal Sunshine of the Spotless Mind","US Gross":34366518,"Worldwide Gross":47066518,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 19 2004","MPAA Rating":"R","Running Time min":108,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Michel Gondry","Rotten Tomatoes Rating":93,"IMDB Rating":8.5,"IMDB Votes":219986},{"Title":"Eulogy","US Gross":70527,"Worldwide Gross":70527,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 15 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":6.6,"IMDB Votes":5205},{"Title":"Eureka","US Gross":49388,"Worldwide Gross":76654,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"May 04 2001","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.9,"IMDB Votes":1391},{"Title":"Eurotrip","US Gross":17718223,"Worldwide Gross":20718223,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Feb 20 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":46,"IMDB Rating":6.5,"IMDB Votes":52548},{"Title":"Eve's Bayou","US Gross":14843425,"Worldwide Gross":14843425,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Nov 07 1997","MPAA Rating":"R","Running Time min":109,"Distributor":"Trimark","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Kasi Lemmons","Rotten Tomatoes Rating":80,"IMDB Rating":7,"IMDB Votes":4509},{"Title":"Event Horizon","US Gross":26673242,"Worldwide Gross":26673242,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Aug 15 1997","MPAA Rating":"R","Running Time min":95,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Paul Anderson","Rotten Tomatoes Rating":21,"IMDB Rating":6.3,"IMDB Votes":44671},{"Title":"Ever After: A Cinderella Story","US Gross":65705772,"Worldwide Gross":65705772,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Jul 31 1998","MPAA Rating":"PG","Running Time min":122,"Distributor":"20th Century Fox","Source":"Traditional/Legend/Fairytale","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Andy Tennant","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Evita","US Gross":50047179,"Worldwide Gross":151947179,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Dec 25 1996","MPAA Rating":"PG","Running Time min":134,"Distributor":"Walt Disney Pictures","Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Dramatization","Director":"Alan Parker","Rotten Tomatoes Rating":61,"IMDB Rating":6.1,"IMDB Votes":16769},{"Title":"Evolution","US Gross":38311134,"Worldwide Gross":98341932,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 08 2001","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ivan Reitman","Rotten Tomatoes Rating":42,"IMDB Rating":5.9,"IMDB Votes":39590},{"Title":"An Everlasting Piece","US Gross":75078,"Worldwide Gross":75078,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 25 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Dreamworks SKG","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Barry Levinson","Rotten Tomatoes Rating":49,"IMDB Rating":6,"IMDB Votes":1097},{"Title":"Fong juk","US Gross":51957,"Worldwide Gross":51957,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Aug 31 2007","MPAA Rating":"Not Rated","Running Time min":100,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":3699},{"Title":"Exit Wounds","US Gross":51758599,"Worldwide Gross":79958599,"US DVD Sales":null,"Production Budget":33000000,"Release Date":"Mar 16 2001","MPAA Rating":"R","Running Time min":100,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Andrzej Bartkowiak","Rotten Tomatoes Rating":33,"IMDB Rating":5.2,"IMDB Votes":14528},{"Title":"The Exorcism of Emily Rose","US Gross":75072454,"Worldwide Gross":144216468,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Sep 09 2005","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"Sony/Screen Gems","Source":"Based on Real Life Events","Major Genre":"Thriller/Suspense","Creative Type":"Dramatization","Director":"Scott Derrickson","Rotten Tomatoes Rating":45,"IMDB Rating":6.8,"IMDB Votes":32425},{"Title":"Exorcist: The Beginning","US Gross":41814863,"Worldwide Gross":43957541,"US DVD Sales":null,"Production Budget":78000000,"Release Date":"Aug 20 2004","MPAA Rating":"R","Running Time min":114,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":15901},{"Title":"The Express","US Gross":9793406,"Worldwide Gross":9808102,"US DVD Sales":6580715,"Production Budget":37500000,"Release Date":"Oct 04 2008","MPAA Rating":"PG","Running Time min":129,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":61,"IMDB Rating":7.1,"IMDB Votes":4749},{"Title":"eXistenZ","US Gross":2840417,"Worldwide Gross":2840417,"US DVD Sales":null,"Production Budget":20700000,"Release Date":"Apr 23 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"David Cronenberg","Rotten Tomatoes Rating":71,"IMDB Rating":6.8,"IMDB Votes":35788},{"Title":"Extract","US Gross":10823158,"Worldwide Gross":10849158,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Sep 04 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Mike Judge","Rotten Tomatoes Rating":62,"IMDB Rating":6.4,"IMDB Votes":12371},{"Title":"Extreme Ops","US Gross":4835968,"Worldwide Gross":12624471,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Nov 27 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Christian Duguay","Rotten Tomatoes Rating":6,"IMDB Rating":4.1,"IMDB Votes":3195},{"Title":"Eyes Wide Shut","US Gross":55691208,"Worldwide Gross":86257553,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Jul 16 1999","MPAA Rating":"R","Running Time min":159,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Stanley Kubrick","Rotten Tomatoes Rating":78,"IMDB Rating":7.2,"IMDB Votes":93880},{"Title":"The Faculty","US Gross":40283321,"Worldwide Gross":40283321,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 25 1998","MPAA Rating":"R","Running Time min":102,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Robert Rodriguez","Rotten Tomatoes Rating":51,"IMDB Rating":6.3,"IMDB Votes":36139},{"Title":"Failure to Launch","US Gross":88715192,"Worldwide Gross":128402901,"US DVD Sales":41348843,"Production Budget":50000000,"Release Date":"Mar 10 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Tom Dey","Rotten Tomatoes Rating":25,"IMDB Rating":5.6,"IMDB Votes":20324},{"Title":"Keeping the Faith","US Gross":37036404,"Worldwide Gross":45336404,"US DVD Sales":null,"Production Budget":29000000,"Release Date":"Apr 14 2000","MPAA Rating":"PG-13","Running Time min":129,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":68,"IMDB Rating":6.5,"IMDB Votes":25485},{"Title":"Fame","US Gross":22455510,"Worldwide Gross":77956957,"US DVD Sales":4950732,"Production Budget":18000000,"Release Date":"Sep 25 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"MGM","Source":"Remake","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":25,"IMDB Rating":4.5,"IMDB Votes":4973},{"Title":"The Family Stone","US Gross":60062868,"Worldwide Gross":91762868,"US DVD Sales":23961409,"Production Budget":18000000,"Release Date":"Dec 16 2005","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":52,"IMDB Rating":6.3,"IMDB Votes":24434},{"Title":"Lisa Picard is Famous","US Gross":113433,"Worldwide Gross":113433,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Aug 22 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":"Griffin Dunne","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Fantasia 2000 (Theatrical Release)","US Gross":9103630,"Worldwide Gross":9103630,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 16 2000","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Compilation","Major Genre":"Musical","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Far From Heaven","US Gross":15901849,"Worldwide Gross":29027914,"US DVD Sales":null,"Production Budget":13500000,"Release Date":"Nov 08 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Todd Haynes","Rotten Tomatoes Rating":89,"IMDB Rating":7.5,"IMDB Votes":20239},{"Title":"Fascination","US Gross":16670,"Worldwide Gross":83356,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jan 28 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.5,"IMDB Votes":1016},{"Title":"Father's Day","US Gross":28681080,"Worldwide Gross":35681080,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"May 09 1997","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ivan Reitman","Rotten Tomatoes Rating":null,"IMDB Rating":4.8,"IMDB Votes":6654},{"Title":"Facing the Giants","US Gross":10178331,"Worldwide Gross":10178331,"US DVD Sales":20091582,"Production Budget":100000,"Release Date":"Sep 29 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"IDP/Goldwyn/Roadside","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Alex Kendrick","Rotten Tomatoes Rating":9,"IMDB Rating":6,"IMDB Votes":4901},{"Title":"Face/Off","US Gross":112276146,"Worldwide Gross":241200000,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 27 1997","MPAA Rating":"R","Running Time min":138,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Woo","Rotten Tomatoes Rating":93,"IMDB Rating":7.3,"IMDB Votes":102001},{"Title":"Final Destination 2","US Gross":46896664,"Worldwide Gross":89626226,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Jan 31 2003","MPAA Rating":"R","Running Time min":90,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"David R. Ellis","Rotten Tomatoes Rating":47,"IMDB Rating":6.4,"IMDB Votes":35737},{"Title":"Final Destination 3","US Gross":54098051,"Worldwide Gross":112798051,"US DVD Sales":18646884,"Production Budget":25000000,"Release Date":"Feb 10 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"James Wong","Rotten Tomatoes Rating":45,"IMDB Rating":5.9,"IMDB Votes":32263},{"Title":"The Final Destination","US Gross":66477700,"Worldwide Gross":185777700,"US DVD Sales":10148305,"Production Budget":40000000,"Release Date":"Aug 28 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"David R. Ellis","Rotten Tomatoes Rating":27,"IMDB Rating":4.9,"IMDB Votes":20319},{"Title":"FearDotCom","US Gross":13208023,"Worldwide Gross":13208023,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 30 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"William Malone","Rotten Tomatoes Rating":null,"IMDB Rating":3.1,"IMDB Votes":11438},{"Title":"Fear and Loathing in Las Vegas","US Gross":10680275,"Worldwide Gross":13711903,"US DVD Sales":null,"Production Budget":18500000,"Release Date":"May 22 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Dramatization","Director":"Terry Gilliam","Rotten Tomatoes Rating":47,"IMDB Rating":7.6,"IMDB Votes":81560},{"Title":"Feast","US Gross":56131,"Worldwide Gross":341808,"US DVD Sales":3570398,"Production Budget":3200000,"Release Date":"Sep 22 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein/Dimension","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":6.4,"IMDB Votes":12023},{"Title":"The Fifth Element","US Gross":63570862,"Worldwide Gross":263900000,"US DVD Sales":null,"Production Budget":95000000,"Release Date":"May 09 1997","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Luc Besson","Rotten Tomatoes Rating":72,"IMDB Rating":7.4,"IMDB Votes":131252},{"Title":"Femme Fatale","US Gross":6592103,"Worldwide Gross":6592103,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 06 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":48,"IMDB Rating":6.3,"IMDB Votes":16693},{"Title":"Bring it On","US Gross":68353550,"Worldwide Gross":90453550,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 25 2000","MPAA Rating":"PG-13","Running Time min":99,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peyton Reed","Rotten Tomatoes Rating":63,"IMDB Rating":5.9,"IMDB Votes":30309},{"Title":"Fantastic Four","US Gross":154696080,"Worldwide Gross":330579719,"US DVD Sales":4702358,"Production Budget":87500000,"Release Date":"Jul 08 2005","MPAA Rating":"PG-13","Running Time min":123,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Tim Story","Rotten Tomatoes Rating":27,"IMDB Rating":5.7,"IMDB Votes":71675},{"Title":54,"US Gross":16757163,"Worldwide Gross":16757163,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Aug 28 1998","MPAA Rating":"R","Running Time min":92,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":5.6,"IMDB Votes":15023},{"Title":"2 Fast 2 Furious","US Gross":127120058,"Worldwide Gross":236220058,"US DVD Sales":null,"Production Budget":76000000,"Release Date":"Jun 06 2003","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Universal","Source":"Based on Magazine Article","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Singleton","Rotten Tomatoes Rating":36,"IMDB Rating":5.1,"IMDB Votes":44151},{"Title":"The Fast and the Furious","US Gross":144512310,"Worldwide Gross":206512310,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Jun 22 2001","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Universal","Source":"Based on Magazine Article","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Rob Cohen","Rotten Tomatoes Rating":53,"IMDB Rating":6,"IMDB Votes":67939},{"Title":"Fool's Gold","US Gross":70231041,"Worldwide Gross":109362966,"US DVD Sales":20620930,"Production Budget":72500000,"Release Date":"Feb 08 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Andy Tennant","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":93},{"Title":"Fahrenheit 9/11","US Gross":119114517,"Worldwide Gross":222414517,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Jun 23 2004","MPAA Rating":"R","Running Time min":122,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Michael Moore","Rotten Tomatoes Rating":83,"IMDB Rating":7.6,"IMDB Votes":74424},{"Title":"Capitalism: A Love Story","US Gross":14363397,"Worldwide Gross":14678228,"US DVD Sales":2987505,"Production Budget":20000000,"Release Date":"Sep 23 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Overture Films","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Michael Moore","Rotten Tomatoes Rating":75,"IMDB Rating":7.3,"IMDB Votes":11829},{"Title":"From Hell","US Gross":31598308,"Worldwide Gross":31598308,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Oct 19 2001","MPAA Rating":"R","Running Time min":123,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"Albert Hughes","Rotten Tomatoes Rating":57,"IMDB Rating":6.8,"IMDB Votes":53477},{"Title":"Fido","US Gross":298110,"Worldwide Gross":419801,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Jun 15 2007","MPAA Rating":"R","Running Time min":93,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":11683},{"Title":"Fight Club","US Gross":37030102,"Worldwide Gross":100853753,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Oct 15 1999","MPAA Rating":"R","Running Time min":139,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"David Fincher","Rotten Tomatoes Rating":81,"IMDB Rating":8.8,"IMDB Votes":382470},{"Title":"Final Fantasy: The Spirits Within","US Gross":32131830,"Worldwide Gross":85131830,"US DVD Sales":null,"Production Budget":137000000,"Release Date":"Jul 11 2001","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"Sony Pictures","Source":"Based on Game","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":36227},{"Title":"Finding Forrester","US Gross":51768623,"Worldwide Gross":80013623,"US DVD Sales":null,"Production Budget":43000000,"Release Date":"Dec 19 2000","MPAA Rating":"PG-13","Running Time min":137,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Gus Van Sant","Rotten Tomatoes Rating":74,"IMDB Rating":7.2,"IMDB Votes":35966},{"Title":"Freddy Got Fingered","US Gross":14249005,"Worldwide Gross":14249005,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 20 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":4,"IMDB Votes":25033},{"Title":"Firestorm","US Gross":8123860,"Worldwide Gross":8123860,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Jan 09 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.4,"IMDB Votes":2118},{"Title":"Fish Tank","US Gross":374675,"Worldwide Gross":374675,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Jan 15 2010","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":5940},{"Title":"Felicia's Journey","US Gross":824295,"Worldwide Gross":1970268,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Nov 12 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Artisan","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Atom Egoyan","Rotten Tomatoes Rating":88,"IMDB Rating":6.9,"IMDB Votes":4790},{"Title":"From Justin to Kelly","US Gross":4922166,"Worldwide Gross":4922166,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jun 20 2003","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":1.6,"IMDB Votes":17596},{"Title":"Final Destination","US Gross":53302314,"Worldwide Gross":112802314,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Mar 17 2000","MPAA Rating":"R","Running Time min":98,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"James Wong","Rotten Tomatoes Rating":31,"IMDB Rating":6.8,"IMDB Votes":52618},{"Title":"Flags of Our Fathers","US Gross":33602376,"Worldwide Gross":61902376,"US DVD Sales":45105366,"Production Budget":53000000,"Release Date":"Oct 20 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":73,"IMDB Rating":7.2,"IMDB Votes":42788},{"Title":"Flawless","US Gross":4485485,"Worldwide Gross":4485485,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Nov 24 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":43,"IMDB Rating":6.7,"IMDB Votes":8125},{"Title":"Flammen og Citronen","US Gross":148089,"Worldwide Gross":1635241,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Jul 31 2009","MPAA Rating":null,"Running Time min":132,"Distributor":"IFC Films","Source":null,"Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":4182},{"Title":"Flicka","US Gross":21000147,"Worldwide Gross":21893591,"US DVD Sales":49974754,"Production Budget":15000000,"Release Date":"Oct 20 2006","MPAA Rating":"PG","Running Time min":94,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":54,"IMDB Rating":5.7,"IMDB Votes":2832},{"Title":"Flight of the Phoenix","US Gross":21009180,"Worldwide Gross":34009180,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Dec 17 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":6,"IMDB Votes":18568},{"Title":"United 93","US Gross":31567134,"Worldwide Gross":76366864,"US DVD Sales":17832230,"Production Budget":18000000,"Release Date":"Apr 28 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Paul Greengrass","Rotten Tomatoes Rating":91,"IMDB Rating":7.8,"IMDB Votes":46691},{"Title":"Flubber","US Gross":92993801,"Worldwide Gross":177993801,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Nov 26 1997","MPAA Rating":"PG","Running Time min":93,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Les Mayfield","Rotten Tomatoes Rating":17,"IMDB Rating":4.6,"IMDB Votes":18890},{"Title":"Flushed Away","US Gross":64665672,"Worldwide Gross":177665672,"US DVD Sales":71025931,"Production Budget":149000000,"Release Date":"Nov 03 2006","MPAA Rating":"PG","Running Time min":85,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Sam Fell","Rotten Tomatoes Rating":72,"IMDB Rating":7,"IMDB Votes":21334},{"Title":"Flyboys","US Gross":13090630,"Worldwide Gross":14816379,"US DVD Sales":23631077,"Production Budget":60000000,"Release Date":"Sep 22 2006","MPAA Rating":"PG-13","Running Time min":139,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Tony Bill","Rotten Tomatoes Rating":33,"IMDB Rating":6.5,"IMDB Votes":13934},{"Title":"Fly Me To the Moon","US Gross":14543943,"Worldwide Gross":40098231,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Aug 15 2008","MPAA Rating":"G","Running Time min":89,"Distributor":"Summit Entertainment","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":4.7,"IMDB Votes":1653},{"Title":"Find Me Guilty","US Gross":1173673,"Worldwide Gross":1788077,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Mar 17 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Freestyle Releasing","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Sidney Lumet","Rotten Tomatoes Rating":60,"IMDB Rating":7.1,"IMDB Votes":12800},{"Title":"The Family Man","US Gross":75764085,"Worldwide Gross":124715863,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 22 2000","MPAA Rating":"PG-13","Running Time min":126,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Brett Ratner","Rotten Tomatoes Rating":52,"IMDB Rating":6.6,"IMDB Votes":34090},{"Title":"Friends with Money","US Gross":13368437,"Worldwide Gross":15328368,"US DVD Sales":7822762,"Production Budget":6500000,"Release Date":"Apr 07 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":6.1,"IMDB Votes":11087},{"Title":"Finding Nemo","US Gross":339714978,"Worldwide Gross":867894287,"US DVD Sales":null,"Production Budget":94000000,"Release Date":"May 30 2003","MPAA Rating":"G","Running Time min":100,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Andrew Stanton","Rotten Tomatoes Rating":98,"IMDB Rating":8.2,"IMDB Votes":165006},{"Title":"Finishing the Game","US Gross":52850,"Worldwide Gross":52850,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Oct 05 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"IFC First Take","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Justin Lin","Rotten Tomatoes Rating":35,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Foodfight!","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Dec 31 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Formula 51","US Gross":5204007,"Worldwide Gross":5204007,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Oct 18 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Screen Media Films","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Fountain","US Gross":10144010,"Worldwide Gross":15461638,"US DVD Sales":8752844,"Production Budget":35000000,"Release Date":"Nov 22 2006","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Darren Aronofsky","Rotten Tomatoes Rating":51,"IMDB Rating":7.4,"IMDB Votes":72562},{"Title":"Fantastic Four: Rise of the Silver Surfer","US Gross":131921738,"Worldwide Gross":288215319,"US DVD Sales":62277740,"Production Budget":120000000,"Release Date":"Jun 15 2007","MPAA Rating":"PG","Running Time min":92,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Tim Story","Rotten Tomatoes Rating":36,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Farce of the Penguins","US Gross":0,"Worldwide Gross":0,"US DVD Sales":1619183,"Production Budget":5000000,"Release Date":"Jan 30 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"ThinkFilm","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.1,"IMDB Votes":3186},{"Title":"Flightplan","US Gross":89706988,"Worldwide Gross":225706988,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Sep 23 2005","MPAA Rating":"PG-13","Running Time min":93,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":6.2,"IMDB Votes":45305},{"Title":"Frailty","US Gross":13110448,"Worldwide Gross":17423030,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Apr 12 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":74,"IMDB Rating":7.3,"IMDB Votes":27629},{"Title":"The Forbidden Kingdom","US Gross":52075270,"Worldwide Gross":129075270,"US DVD Sales":23318686,"Production Budget":55000000,"Release Date":"Apr 18 2008","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Fantasy","Director":"Rob Minkoff","Rotten Tomatoes Rating":64,"IMDB Rating":6.7,"IMDB Votes":36548},{"Title":"Freedom Writers","US Gross":36605602,"Worldwide Gross":43090741,"US DVD Sales":20532539,"Production Budget":21000000,"Release Date":"Jan 05 2007","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Richard LaGravenese","Rotten Tomatoes Rating":69,"IMDB Rating":7.5,"IMDB Votes":18065},{"Title":"Next Friday","US Gross":57176582,"Worldwide Gross":59675307,"US DVD Sales":null,"Production Budget":9500000,"Release Date":"Jan 12 2000","MPAA Rating":"R","Running Time min":98,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steve Carr","Rotten Tomatoes Rating":21,"IMDB Rating":5.3,"IMDB Votes":10176},{"Title":"Freaky Friday","US Gross":110222438,"Worldwide Gross":160822438,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Aug 06 2003","MPAA Rating":"PG","Running Time min":97,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Mark Waters","Rotten Tomatoes Rating":88,"IMDB Rating":6.5,"IMDB Votes":29137},{"Title":"Frequency","US Gross":44983704,"Worldwide Gross":68079671,"US DVD Sales":null,"Production Budget":31000000,"Release Date":"Apr 28 2000","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":7.3,"IMDB Votes":35968},{"Title":"Serenity","US Gross":25514517,"Worldwide Gross":38514517,"US DVD Sales":null,"Production Budget":39000000,"Release Date":"Sep 30 2005","MPAA Rating":"PG-13","Running Time min":119,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Joss Whedon","Rotten Tomatoes Rating":81,"IMDB Rating":8,"IMDB Votes":106648},{"Title":"The Forgotton","US Gross":66711892,"Worldwide Gross":111311892,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Sep 24 2004","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Joseph Ruben","Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":1169},{"Title":"Jason X","US Gross":13121555,"Worldwide Gross":16951798,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Apr 26 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":null,"Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":4.4,"IMDB Votes":17964},{"Title":"Friday the 13th","US Gross":65002019,"Worldwide Gross":91700771,"US DVD Sales":9566980,"Production Budget":17000000,"Release Date":"Feb 13 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5.6,"IMDB Votes":26798},{"Title":"Friday After Next","US Gross":33253609,"Worldwide Gross":33526835,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Nov 22 2002","MPAA Rating":"R","Running Time min":85,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":25,"IMDB Rating":5.3,"IMDB Votes":6742},{"Title":"Frida","US Gross":25885000,"Worldwide Gross":56298474,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Oct 25 2002","MPAA Rating":"R","Running Time min":123,"Distributor":"Miramax","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":76,"IMDB Rating":7.3,"IMDB Votes":26243},{"Title":"Friday Night Lights","US Gross":61255921,"Worldwide Gross":61950770,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Oct 08 2004","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Peter Berg","Rotten Tomatoes Rating":81,"IMDB Rating":7.2,"IMDB Votes":20868},{"Title":"Frozen River","US Gross":2503902,"Worldwide Gross":5281776,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Aug 01 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":87,"IMDB Rating":7.2,"IMDB Votes":10447},{"Title":"The Princess and the Frog","US Gross":104374107,"Worldwide Gross":263467382,"US DVD Sales":68101150,"Production Budget":105000000,"Release Date":"Nov 25 2009","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"John Musker","Rotten Tomatoes Rating":84,"IMDB Rating":7.4,"IMDB Votes":16232},{"Title":"Full Frontal","US Gross":2512846,"Worldwide Gross":3438804,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Aug 02 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":37,"IMDB Rating":4.8,"IMDB Votes":6660},{"Title":"Fireproof","US Gross":33451479,"Worldwide Gross":33451479,"US DVD Sales":31898934,"Production Budget":500000,"Release Date":"Sep 26 2008","MPAA Rating":"PG","Running Time min":122,"Distributor":"Samuel Goldwyn Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Alex Kendrick","Rotten Tomatoes Rating":40,"IMDB Rating":5.6,"IMDB Votes":5498},{"Title":"The Forsaken","US Gross":6755271,"Worldwide Gross":6755271,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Apr 27 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":5.1,"IMDB Votes":4679},{"Title":"Frost/Nixon","US Gross":18622031,"Worldwide Gross":28144586,"US DVD Sales":6677601,"Production Budget":29000000,"Release Date":"Dec 05 2008","MPAA Rating":"R","Running Time min":122,"Distributor":"Universal","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ron Howard","Rotten Tomatoes Rating":92,"IMDB Rating":7.9,"IMDB Votes":36366},{"Title":"Factory Girl","US Gross":1661464,"Worldwide Gross":1661464,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Dec 29 2006","MPAA Rating":"R","Running Time min":90,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":6.1,"IMDB Votes":8680},{"Title":"Fateless","US Gross":196857,"Worldwide Gross":196857,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Jan 06 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"ThinkFilm","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":462},{"Title":"The Full Monty","US Gross":45950122,"Worldwide Gross":257938649,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Aug 13 1997","MPAA Rating":"R","Running Time min":90,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Cattaneo","Rotten Tomatoes Rating":95,"IMDB Rating":7.2,"IMDB Votes":40877},{"Title":"Fun With Dick And Jane","US Gross":110550000,"Worldwide Gross":202250000,"US DVD Sales":29638269,"Production Budget":140000000,"Release Date":"Dec 21 2005","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":6.3,"IMDB Votes":1788},{"Title":"Funny People","US Gross":51855045,"Worldwide Gross":71880305,"US DVD Sales":13721109,"Production Budget":70000000,"Release Date":"Jul 31 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Judd Apatow","Rotten Tomatoes Rating":67,"IMDB Rating":6.8,"IMDB Votes":37791},{"Title":"Fur","US Gross":223202,"Worldwide Gross":2281089,"US DVD Sales":null,"Production Budget":16800000,"Release Date":"Nov 10 2006","MPAA Rating":"R","Running Time min":121,"Distributor":"Picturehouse","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Furry Vengeance","US Gross":17630465,"Worldwide Gross":21630465,"US DVD Sales":4335991,"Production Budget":35000000,"Release Date":"Apr 30 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Summit Entertainment","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Roger Kumble","Rotten Tomatoes Rating":8,"IMDB Rating":2.6,"IMDB Votes":3458},{"Title":"Fever Pitch","US Gross":42071069,"Worldwide Gross":50071069,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Apr 08 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Bobby Farrelly","Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":16736},{"Title":"For Your Consideration","US Gross":5549923,"Worldwide Gross":5549923,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Nov 17 2006","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"Warner Independent","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Christopher Guest","Rotten Tomatoes Rating":50,"IMDB Rating":6.2,"IMDB Votes":7780},{"Title":"The Game","US Gross":48265581,"Worldwide Gross":48265581,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Sep 12 1997","MPAA Rating":"R","Running Time min":128,"Distributor":"Polygram","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"David Fincher","Rotten Tomatoes Rating":80,"IMDB Rating":7.7,"IMDB Votes":74136},{"Title":"Gangs of New York","US Gross":77730500,"Worldwide Gross":190400000,"US DVD Sales":null,"Production Budget":97000000,"Release Date":"Dec 20 2002","MPAA Rating":"R","Running Time min":168,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":75,"IMDB Rating":7.4,"IMDB Votes":113378},{"Title":"Garfield","US Gross":75367693,"Worldwide Gross":200802638,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 11 2004","MPAA Rating":"PG","Running Time min":80,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Hewitt","Rotten Tomatoes Rating":null,"IMDB Rating":4.8,"IMDB Votes":19870},{"Title":"Georgia Rule","US Gross":18882880,"Worldwide Gross":20819601,"US DVD Sales":19382312,"Production Budget":20000000,"Release Date":"May 11 2007","MPAA Rating":"R","Running Time min":111,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Garry Marshall","Rotten Tomatoes Rating":17,"IMDB Rating":5.8,"IMDB Votes":10902},{"Title":"Gattaca","US Gross":12532777,"Worldwide Gross":12532777,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Oct 24 1997","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Andrew Niccol","Rotten Tomatoes Rating":82,"IMDB Rating":7.8,"IMDB Votes":70906},{"Title":"Gone, Baby, Gone","US Gross":20300218,"Worldwide Gross":34619699,"US DVD Sales":11406490,"Production Budget":19000000,"Release Date":"Oct 19 2007","MPAA Rating":"R","Running Time min":114,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Ben Affleck","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Goodbye, Lenin!","US Gross":4063859,"Worldwide Gross":79316616,"US DVD Sales":null,"Production Budget":6400000,"Release Date":"Feb 27 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.3,"IMDB Votes":198},{"Title":"Good Boy!","US Gross":37667746,"Worldwide Gross":45312217,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Oct 10 2003","MPAA Rating":"PG","Running Time min":87,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":45,"IMDB Rating":5,"IMDB Votes":1961},{"Title":"Gods and Generals","US Gross":12882934,"Worldwide Gross":12923936,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Feb 21 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":null,"Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":6,"IMDB Votes":7437},{"Title":"The Good German","US Gross":1308696,"Worldwide Gross":1308696,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Dec 15 2006","MPAA Rating":"R","Running Time min":104,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":32,"IMDB Rating":6.1,"IMDB Votes":13007},{"Title":"Gods and Monsters","US Gross":6451628,"Worldwide Gross":6451628,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Nov 06 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Bill Condon","Rotten Tomatoes Rating":96,"IMDB Rating":7.5,"IMDB Votes":15946},{"Title":"The Good Night","US Gross":22441,"Worldwide Gross":22441,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 05 2007","MPAA Rating":"R","Running Time min":93,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":6,"IMDB Votes":4332},{"Title":"The Good Thief","US Gross":3517797,"Worldwide Gross":3517797,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Apr 02 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Neil Jordan","Rotten Tomatoes Rating":78,"IMDB Rating":null,"IMDB Votes":null},{"Title":"George and the Dragon","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Dec 31 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":1762},{"Title":"Gerry","US Gross":254683,"Worldwide Gross":254683,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Feb 14 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"ThinkFilm","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":"Gus Van Sant","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":8583},{"Title":"G-Force","US Gross":119436770,"Worldwide Gross":287389685,"US DVD Sales":44145849,"Production Budget":82500000,"Release Date":"Jul 24 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":5,"IMDB Votes":9633},{"Title":"Gridiron Gang","US Gross":38432823,"Worldwide Gross":41480851,"US DVD Sales":34066576,"Production Budget":30000000,"Release Date":"Sep 15 2006","MPAA Rating":"PG-13","Running Time min":126,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Phil Joanou","Rotten Tomatoes Rating":41,"IMDB Rating":6.8,"IMDB Votes":12400},{"Title":"The Good Girl","US Gross":14018296,"Worldwide Gross":15976468,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Aug 07 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":6.6,"IMDB Votes":21460},{"Title":"Ghost Ship","US Gross":30113491,"Worldwide Gross":68349884,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 25 2002","MPAA Rating":"R","Running Time min":91,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":5.3,"IMDB Votes":25891},{"Title":"Ghosts of Mississippi","US Gross":13052741,"Worldwide Gross":13052741,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Dec 20 1996","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Rob Reiner","Rotten Tomatoes Rating":50,"IMDB Rating":6.4,"IMDB Votes":5276},{"Title":"The Glass House","US Gross":17951431,"Worldwide Gross":22861785,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Sep 14 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":5.6,"IMDB Votes":10629},{"Title":"Ghost Rider","US Gross":115802596,"Worldwide Gross":237702596,"US DVD Sales":103730683,"Production Budget":120000000,"Release Date":"Feb 16 2007","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Mark Steven Johnson","Rotten Tomatoes Rating":26,"IMDB Rating":5.2,"IMDB Votes":63235},{"Title":"Ghost Town","US Gross":13252641,"Worldwide Gross":26612350,"US DVD Sales":7574314,"Production Budget":20000000,"Release Date":"Sep 19 2008","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Fantasy","Director":"David Koepp","Rotten Tomatoes Rating":85,"IMDB Rating":4.7,"IMDB Votes":310},{"Title":"The Gift","US Gross":12008642,"Worldwide Gross":44567606,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 19 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Sam Raimi","Rotten Tomatoes Rating":56,"IMDB Rating":6.7,"IMDB Votes":28488},{"Title":"Gigli","US Gross":6087542,"Worldwide Gross":7266209,"US DVD Sales":null,"Production Budget":54000000,"Release Date":"Aug 01 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Martin Brest","Rotten Tomatoes Rating":6,"IMDB Rating":2.4,"IMDB Votes":29031},{"Title":"G.I.Jane","US Gross":48169156,"Worldwide Gross":48169156,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Aug 22 1997","MPAA Rating":"R","Running Time min":124,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":23807},{"Title":"G.I. Joe: The Rise of Cobra","US Gross":150201498,"Worldwide Gross":302469019,"US DVD Sales":69866155,"Production Budget":175000000,"Release Date":"Aug 07 2009","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"Paramount Pictures","Source":"Based on Toy","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Stephen Sommers","Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":47052},{"Title":"Girl, Interrupted","US Gross":28871190,"Worldwide Gross":28871190,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Dec 21 1999","MPAA Rating":"R","Running Time min":127,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"James Mangold","Rotten Tomatoes Rating":53,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Gladiator","US Gross":187683805,"Worldwide Gross":457683805,"US DVD Sales":null,"Production Budget":103000000,"Release Date":"May 05 2000","MPAA Rating":"R","Running Time min":150,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":77,"IMDB Rating":8.3,"IMDB Votes":279512},{"Title":"Glitter","US Gross":4273372,"Worldwide Gross":4273372,"US DVD Sales":null,"Production Budget":8500000,"Release Date":"Sep 21 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":"Vondie Curtis-Hall","Rotten Tomatoes Rating":7,"IMDB Rating":2,"IMDB Votes":13778},{"Title":"Gloria","US Gross":4167493,"Worldwide Gross":4967493,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jan 22 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sidney Lumet","Rotten Tomatoes Rating":19,"IMDB Rating":4.7,"IMDB Votes":2726},{"Title":"Good Luck Chuck","US Gross":35017297,"Worldwide Gross":59183821,"US DVD Sales":26234476,"Production Budget":25000000,"Release Date":"Sep 21 2007","MPAA Rating":"R","Running Time min":96,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":5.6,"IMDB Votes":29013},{"Title":"John Carpenter's Ghosts of Mars","US Gross":8434601,"Worldwide Gross":8434601,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Aug 24 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Screen Media Films","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"John Carpenter","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Green Mile","US Gross":136801374,"Worldwide Gross":286601374,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 10 1999","MPAA Rating":"R","Running Time min":187,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Frank Darabont","Rotten Tomatoes Rating":77,"IMDB Rating":8.4,"IMDB Votes":198916},{"Title":"The Game of Their Lives","US Gross":375474,"Worldwide Gross":375474,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Apr 22 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"IFC Films","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":25,"IMDB Rating":6,"IMDB Votes":1443},{"Title":"Gandhi, My Father","US Gross":240425,"Worldwide Gross":1375194,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Aug 03 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Eros Entertainment","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":8.1,"IMDB Votes":50881},{"Title":"Good Night and Good Luck","US Gross":31501218,"Worldwide Gross":54601218,"US DVD Sales":20967273,"Production Budget":7000000,"Release Date":"Oct 07 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Independent","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"George Clooney","Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":42797},{"Title":"The General's Daughter","US Gross":102705852,"Worldwide Gross":149705852,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jun 18 1999","MPAA Rating":"R","Running Time min":116,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Simon West","Rotten Tomatoes Rating":22,"IMDB Rating":6.1,"IMDB Votes":23570},{"Title":"Gun Shy","US Gross":1638202,"Worldwide Gross":1638202,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 04 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":24,"IMDB Rating":5.4,"IMDB Votes":3607},{"Title":"Go!","US Gross":16875273,"Worldwide Gross":28383441,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"Apr 09 1999","MPAA Rating":"R","Running Time min":103,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Doug Liman","Rotten Tomatoes Rating":92,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Goal!","US Gross":4283255,"Worldwide Gross":27610873,"US DVD Sales":12616824,"Production Budget":33000000,"Release Date":"May 12 2006","MPAA Rating":"PG","Running Time min":121,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":16809},{"Title":"Godzilla 2000","US Gross":10037390,"Worldwide Gross":10037390,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Aug 18 2000","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Godsend","US Gross":14334645,"Worldwide Gross":16910708,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Apr 30 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":4,"IMDB Rating":4.7,"IMDB Votes":13866},{"Title":"Godzilla","US Gross":136314294,"Worldwide Gross":376000000,"US DVD Sales":null,"Production Budget":125000000,"Release Date":"May 19 1998","MPAA Rating":"PG-13","Running Time min":139,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Roland Emmerich","Rotten Tomatoes Rating":25,"IMDB Rating":4.8,"IMDB Votes":59455},{"Title":"Smiling Fish and Goat on Fire","US Gross":277233,"Worldwide Gross":277233,"US DVD Sales":null,"Production Budget":40000,"Release Date":"Aug 25 2000","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Gone in 60 Seconds","US Gross":101643008,"Worldwide Gross":232643008,"US DVD Sales":null,"Production Budget":103300000,"Release Date":"Jun 09 2000","MPAA Rating":"PG-13","Running Time min":118,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":2940},{"Title":"Good","US Gross":27276,"Worldwide Gross":27276,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Dec 31 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"ThinkFilm","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":34,"IMDB Rating":6.2,"IMDB Votes":1926},{"Title":"Good Will Hunting","US Gross":138433435,"Worldwide Gross":225933435,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 20 1987","MPAA Rating":"R","Running Time min":126,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Gus Van Sant","Rotten Tomatoes Rating":97,"IMDB Rating":8.1,"IMDB Votes":150415},{"Title":"Gosford Park","US Gross":41300105,"Worldwide Gross":41300105,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Dec 26 2001","MPAA Rating":"R","Running Time min":137,"Distributor":"USA Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Robert Altman","Rotten Tomatoes Rating":86,"IMDB Rating":7.3,"IMDB Votes":36648},{"Title":"Gossip","US Gross":5108820,"Worldwide Gross":12591270,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Apr 21 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":28,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Game Plan","US Gross":90648202,"Worldwide Gross":147914546,"US DVD Sales":50113315,"Production Budget":22000000,"Release Date":"Sep 22 2007","MPAA Rating":"PG","Running Time min":110,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Andy Fickman","Rotten Tomatoes Rating":27,"IMDB Rating":6.3,"IMDB Votes":14984},{"Title":"Girl with a Pearl Earring","US Gross":11634362,"Worldwide Gross":22106210,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 12 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Peter Webber","Rotten Tomatoes Rating":71,"IMDB Rating":7.1,"IMDB Votes":23493},{"Title":"Galaxy Quest","US Gross":71423726,"Worldwide Gross":90523726,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Dec 25 1999","MPAA Rating":"PG","Running Time min":104,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":89,"IMDB Rating":7.2,"IMDB Votes":52507},{"Title":"Saving Grace","US Gross":12178602,"Worldwide Gross":24325623,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Aug 04 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.8,"IMDB Votes":8543},{"Title":"Gracie","US Gross":2956339,"Worldwide Gross":3036736,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Jun 01 2007","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Picturehouse","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":59,"IMDB Rating":6.2,"IMDB Votes":2084},{"Title":"The Great Raid","US Gross":10166502,"Worldwide Gross":10597070,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Aug 12 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"John Dahl","Rotten Tomatoes Rating":36,"IMDB Rating":6.8,"IMDB Votes":8894},{"Title":"The Grand","US Gross":115879,"Worldwide Gross":115879,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Mar 21 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Anchor Bay Entertainment","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Zak Penn","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":3346},{"Title":"The Constant Gardener","US Gross":33579798,"Worldwide Gross":81079798,"US DVD Sales":null,"Production Budget":25500000,"Release Date":"Aug 31 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Fernando Meirelles","Rotten Tomatoes Rating":83,"IMDB Rating":7.6,"IMDB Votes":50763},{"Title":"Garden State","US Gross":26782316,"Worldwide Gross":32381151,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Jul 28 2004","MPAA Rating":"R","Running Time min":109,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Zach Braff","Rotten Tomatoes Rating":86,"IMDB Rating":7.9,"IMDB Votes":92594},{"Title":"Grease","US Gross":305260,"Worldwide Gross":206005260,"US DVD Sales":21249794,"Production Budget":6000000,"Release Date":"Jun 16 1978","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Randal Kleiser","Rotten Tomatoes Rating":83,"IMDB Rating":7,"IMDB Votes":60146},{"Title":"Green Zone","US Gross":35053660,"Worldwide Gross":84788541,"US DVD Sales":14424476,"Production Budget":100000000,"Release Date":"Mar 12 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Factual Book/Article","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Paul Greengrass","Rotten Tomatoes Rating":55,"IMDB Rating":7.1,"IMDB Votes":26759},{"Title":"George Of The Jungle","US Gross":105263257,"Worldwide Gross":174463257,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jul 16 1997","MPAA Rating":"PG","Running Time min":91,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":54,"IMDB Rating":5.3,"IMDB Votes":19685},{"Title":"The Brothers Grimm","US Gross":37899638,"Worldwide Gross":105299638,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Aug 26 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Terry Gilliam","Rotten Tomatoes Rating":37,"IMDB Rating":5.9,"IMDB Votes":43532},{"Title":"The Girl Next Door","US Gross":14589444,"Worldwide Gross":18589444,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 09 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Luke Greenfield","Rotten Tomatoes Rating":56,"IMDB Rating":7,"IMDB Votes":5614},{"Title":"How the Grinch Stole Christmas","US Gross":260044825,"Worldwide Gross":345141403,"US DVD Sales":null,"Production Budget":123000000,"Release Date":"Nov 17 2000","MPAA Rating":"PG","Running Time min":104,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Ron Howard","Rotten Tomatoes Rating":53,"IMDB Rating":5.7,"IMDB Votes":40310},{"Title":"Grindhouse","US Gross":25031037,"Worldwide Gross":50187789,"US DVD Sales":31070911,"Production Budget":53000000,"Release Date":"Apr 06 2007","MPAA Rating":"R","Running Time min":191,"Distributor":"Weinstein/Dimension","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Robert Rodriguez","Rotten Tomatoes Rating":null,"IMDB Rating":7.9,"IMDB Votes":82770},{"Title":"Get Rich or Die Tryin'","US Gross":30981850,"Worldwide Gross":46437122,"US DVD Sales":9906347,"Production Budget":40000000,"Release Date":"Nov 09 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Jim Sheridan","Rotten Tomatoes Rating":16,"IMDB Rating":4,"IMDB Votes":18126},{"Title":"Wallace & Gromit: The Curse of the Were-Rabbit","US Gross":56068547,"Worldwide Gross":185724838,"US DVD Sales":35069986,"Production Budget":30000000,"Release Date":"Oct 05 2005","MPAA Rating":"G","Running Time min":85,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Nick Park","Rotten Tomatoes Rating":95,"IMDB Rating":7.9,"IMDB Votes":38158},{"Title":"Groove","US Gross":1115313,"Worldwide Gross":1167524,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jun 09 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":56,"IMDB Rating":5.8,"IMDB Votes":2486},{"Title":"Grosse Point Blank","US Gross":28084357,"Worldwide Gross":28084357,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 11 1997","MPAA Rating":"R","Running Time min":106,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":41523},{"Title":"The Grudge 2","US Gross":39143839,"Worldwide Gross":68643839,"US DVD Sales":8293678,"Production Budget":20000000,"Release Date":"Oct 13 2006","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":4.6,"IMDB Votes":16024},{"Title":"The Grudge","US Gross":110359362,"Worldwide Gross":187281115,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 22 2004","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":39,"IMDB Rating":5.7,"IMDB Votes":43218},{"Title":"Grown Ups","US Gross":161094625,"Worldwide Gross":250294625,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jun 25 2010","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":5.8,"IMDB Votes":13488},{"Title":"Ghost Dog: Way of the Samurai","US Gross":3330230,"Worldwide Gross":6030230,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Mar 03 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Jim Jarmusch","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Guess Who","US Gross":68915888,"Worldwide Gross":102115888,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Mar 25 2005","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":43,"IMDB Rating":5.7,"IMDB Votes":15789},{"Title":"Get Carter","US Gross":14967182,"Worldwide Gross":19417182,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Oct 06 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":4.8,"IMDB Votes":14196},{"Title":"Get Over It","US Gross":11560259,"Worldwide Gross":11560259,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Mar 09 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":45,"IMDB Rating":5.5,"IMDB Votes":9350},{"Title":"Veronica Guerin","US Gross":1569918,"Worldwide Gross":9438074,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Oct 17 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Joel Schumacher","Rotten Tomatoes Rating":54,"IMDB Rating":6.8,"IMDB Votes":8778},{"Title":"The Guru","US Gross":3051221,"Worldwide Gross":23788368,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Jan 31 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":9239},{"Title":"A Guy Thing","US Gross":15543862,"Worldwide Gross":17430594,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jan 17 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":8147},{"Title":"Ghost World","US Gross":6217849,"Worldwide Gross":8764007,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Jul 20 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Comic/Graphic Novel","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Terry Zwigoff","Rotten Tomatoes Rating":92,"IMDB Rating":7.7,"IMDB Votes":42973},{"Title":"Halloween 2","US Gross":33392973,"Worldwide Gross":38512850,"US DVD Sales":6646073,"Production Budget":15000000,"Release Date":"Aug 28 2009","MPAA Rating":"R","Running Time min":105,"Distributor":"Weinstein/Dimension","Source":null,"Major Genre":"Horror","Creative Type":"Fantasy","Director":"Rob Zombie","Rotten Tomatoes Rating":null,"IMDB Rating":4.5,"IMDB Votes":9284},{"Title":"Hairspray","US Gross":118823091,"Worldwide Gross":202823091,"US DVD Sales":104104829,"Production Budget":75000000,"Release Date":"Jul 20 2007","MPAA Rating":"PG","Running Time min":117,"Distributor":"New Line","Source":"Remake","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Adam Shankman","Rotten Tomatoes Rating":91,"IMDB Rating":7.2,"IMDB Votes":41511},{"Title":"Half Baked","US Gross":17394881,"Worldwide Gross":17394881,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Jan 16 1998","MPAA Rating":"R","Running Time min":84,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":6.3,"IMDB Votes":18791},{"Title":"Hamlet","US Gross":4501094,"Worldwide Gross":7129670,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Dec 25 1996","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":6,"IMDB Votes":5147},{"Title":"Hamlet","US Gross":1577287,"Worldwide Gross":2288841,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"May 12 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":6,"IMDB Votes":5147},{"Title":"Hannibal the Conqueror","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Dec 31 1969","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":null,"Creative Type":"Dramatization","Director":"Vin Diesel","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Hancock","US Gross":227946274,"Worldwide Gross":624346274,"US DVD Sales":89352567,"Production Budget":150000000,"Release Date":"Jul 02 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Super Hero","Director":"Peter Berg","Rotten Tomatoes Rating":40,"IMDB Rating":6.5,"IMDB Votes":100822},{"Title":"Happily N'Ever After","US Gross":15849032,"Worldwide Gross":38344430,"US DVD Sales":16559473,"Production Budget":47000000,"Release Date":"Jan 05 2007","MPAA Rating":"PG","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.9,"IMDB Votes":4678},{"Title":"The Happening","US Gross":64506874,"Worldwide Gross":163403799,"US DVD Sales":21432877,"Production Budget":60000000,"Release Date":"Jun 13 2008","MPAA Rating":"R","Running Time min":89,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"M. Night Shyamalan","Rotten Tomatoes Rating":18,"IMDB Rating":5.2,"IMDB Votes":72259},{"Title":"Happy, Texas","US Gross":2039192,"Worldwide Gross":2039192,"US DVD Sales":null,"Production Budget":1700000,"Release Date":"Oct 01 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":82,"IMDB Rating":7.5,"IMDB Votes":198},{"Title":"Hard Candy","US Gross":1024640,"Worldwide Gross":1881243,"US DVD Sales":null,"Production Budget":950000,"Release Date":"Apr 14 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":45791},{"Title":"Harsh Times","US Gross":3337931,"Worldwide Gross":5963961,"US DVD Sales":2638319,"Production Budget":2000000,"Release Date":"Nov 10 2006","MPAA Rating":"R","Running Time min":120,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":48,"IMDB Rating":7,"IMDB Votes":26347},{"Title":"Harvard Man","US Gross":56653,"Worldwide Gross":56653,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"May 17 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":2758},{"Title":"Harry Brown","US Gross":1818681,"Worldwide Gross":6294140,"US DVD Sales":null,"Production Budget":7300000,"Release Date":"Apr 30 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Samuel Goldwyn Films","Source":null,"Major Genre":"Thriller/Suspense","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":14297},{"Title":"The House Bunny","US Gross":48237389,"Worldwide Gross":70237389,"US DVD Sales":15442818,"Production Budget":25000000,"Release Date":"Aug 22 2008","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Fred Wolf","Rotten Tomatoes Rating":39,"IMDB Rating":5.5,"IMDB Votes":18964},{"Title":"The Devil's Rejects","US Gross":17044981,"Worldwide Gross":20940428,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jul 22 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Rob Zombie","Rotten Tomatoes Rating":54,"IMDB Rating":6.9,"IMDB Votes":36082},{"Title":"House of 1,000 Corpses","US Gross":12634962,"Worldwide Gross":16829545,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Apr 11 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Rob Zombie","Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":3311},{"Title":"The House of the Dead","US Gross":10199354,"Worldwide Gross":13767816,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Oct 10 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Based on Game","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Uwe Boll","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":5541},{"Title":"Hidalgo","US Gross":67286731,"Worldwide Gross":107336658,"US DVD Sales":null,"Production Budget":78000000,"Release Date":"Mar 05 2004","MPAA Rating":"PG-13","Running Time min":136,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Joe Johnston","Rotten Tomatoes Rating":46,"IMDB Rating":6.6,"IMDB Votes":23604},{"Title":"Hide and Seek","US Gross":51100486,"Worldwide Gross":123100486,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jan 28 2005","MPAA Rating":"R","Running Time min":105,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":5.6,"IMDB Votes":30891},{"Title":"Hoodwinked","US Gross":51386611,"Worldwide Gross":110011106,"US DVD Sales":31171440,"Production Budget":17500000,"Release Date":"Dec 16 2005","MPAA Rating":"PG","Running Time min":80,"Distributor":"Weinstein Co.","Source":"Traditional/Legend/Fairytale","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":20461},{"Title":"How Do You Know?","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Dec 17 2010","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Head of State","US Gross":37788228,"Worldwide Gross":38283765,"US DVD Sales":null,"Production Budget":35200000,"Release Date":"Mar 28 2003","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Chris Rock","Rotten Tomatoes Rating":30,"IMDB Rating":5.1,"IMDB Votes":8447},{"Title":"Hedwig and the Angry Inch","US Gross":3067312,"Worldwide Gross":3643900,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Jul 20 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":92,"IMDB Rating":7.6,"IMDB Votes":14766},{"Title":"Pooh's Heffalump Movie","US Gross":18098433,"Worldwide Gross":52858433,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Feb 11 2005","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":80,"IMDB Rating":6.3,"IMDB Votes":1605},{"Title":"He Got Game","US Gross":21567853,"Worldwide Gross":21567853,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"May 01 1998","MPAA Rating":"R","Running Time min":134,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":80,"IMDB Rating":6.8,"IMDB Votes":14494},{"Title":"Heist","US Gross":23483357,"Worldwide Gross":28483168,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 09 2001","MPAA Rating":"R","Running Time min":109,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"David Mamet","Rotten Tomatoes Rating":66,"IMDB Rating":3.2,"IMDB Votes":77},{"Title":"Hellboy 2: The Golden Army","US Gross":75986503,"Worldwide Gross":160388063,"US DVD Sales":43689202,"Production Budget":82500000,"Release Date":"Jul 11 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Guillermo Del Toro","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":61902},{"Title":"Hellboy","US Gross":59623958,"Worldwide Gross":99823958,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Apr 02 2004","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Guillermo Del Toro","Rotten Tomatoes Rating":81,"IMDB Rating":6.8,"IMDB Votes":67763},{"Title":"Raising Helen","US Gross":37485528,"Worldwide Gross":43340302,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"May 28 2004","MPAA Rating":"PG-13","Running Time min":119,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Garry Marshall","Rotten Tomatoes Rating":22,"IMDB Rating":5.7,"IMDB Votes":10526},{"Title":"A Home at the End of the World","US Gross":1029017,"Worldwide Gross":1033810,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"Jul 23 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Independent","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":48,"IMDB Rating":6.7,"IMDB Votes":7180},{"Title":"Jet Li's Hero","US Gross":53652140,"Worldwide Gross":177352140,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Aug 27 2004","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Yimou Zhang","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Here on Earth","US Gross":10494147,"Worldwide Gross":10845127,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Mar 24 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":18,"IMDB Rating":4.6,"IMDB Votes":4929},{"Title":"House of Flying Daggers","US Gross":11050094,"Worldwide Gross":92863945,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 03 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Yimou Zhang","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Head Over Heels","US Gross":10397365,"Worldwide Gross":10397365,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Feb 02 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Mark Waters","Rotten Tomatoes Rating":9,"IMDB Rating":4.8,"IMDB Votes":6574},{"Title":"The Haunting","US Gross":91188905,"Worldwide Gross":180188905,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jul 23 1999","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Jan De Bont","Rotten Tomatoes Rating":17,"IMDB Rating":4.6,"IMDB Votes":31808},{"Title":"High Crimes","US Gross":41543207,"Worldwide Gross":63781100,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Apr 05 2002","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Carl Franklin","Rotten Tomatoes Rating":31,"IMDB Rating":6.1,"IMDB Votes":14428},{"Title":"High Fidelity","US Gross":27277055,"Worldwide Gross":47881663,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 31 2000","MPAA Rating":"R","Running Time min":114,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Stephen Frears","Rotten Tomatoes Rating":92,"IMDB Rating":7.6,"IMDB Votes":69740},{"Title":"Highlander: Endgame","US Gross":12801190,"Worldwide Gross":12801190,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Sep 01 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.3,"IMDB Votes":8421},{"Title":"High Heels and Low Lifes","US Gross":226792,"Worldwide Gross":226792,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 26 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":6.1,"IMDB Votes":2205},{"Title":"High School Musical 3: Senior Year","US Gross":90556401,"Worldwide Gross":251056401,"US DVD Sales":59373004,"Production Budget":11000000,"Release Date":"Oct 24 2008","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":66,"IMDB Rating":3.7,"IMDB Votes":18587},{"Title":"The History Boys","US Gross":2730296,"Worldwide Gross":13425589,"US DVD Sales":null,"Production Budget":3700000,"Release Date":"Nov 21 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.7,"IMDB Votes":10293},{"Title":"A History of Violence","US Gross":31493782,"Worldwide Gross":59993782,"US DVD Sales":38659936,"Production Budget":32000000,"Release Date":"Sep 23 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"David Cronenberg","Rotten Tomatoes Rating":87,"IMDB Rating":7.6,"IMDB Votes":79738},{"Title":"Hitch","US Gross":177784257,"Worldwide Gross":366784257,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Feb 11 2005","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Andy Tennant","Rotten Tomatoes Rating":69,"IMDB Rating":5.7,"IMDB Votes":89},{"Title":"Hitman","US Gross":39687694,"Worldwide Gross":99965792,"US DVD Sales":28077100,"Production Budget":17500000,"Release Date":"Nov 21 2007","MPAA Rating":"R","Running Time min":93,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":6.8,"IMDB Votes":520},{"Title":"Harold & Kumar Escape from Guantanamo Bay","US Gross":38108728,"Worldwide Gross":43231984,"US DVD Sales":24609630,"Production Budget":12000000,"Release Date":"Apr 25 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":54,"IMDB Rating":6.7,"IMDB Votes":42358},{"Title":"Harold & Kumar Go to White Castle","US Gross":18225165,"Worldwide Gross":18225165,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Jul 30 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":74,"IMDB Rating":7.2,"IMDB Votes":56030},{"Title":"Held Up","US Gross":4714090,"Worldwide Gross":4714090,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"May 12 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Trimark","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":4.7,"IMDB Votes":1840},{"Title":"The Hills Have Eyes II","US Gross":20804166,"Worldwide Gross":37466538,"US DVD Sales":30512461,"Production Budget":15000000,"Release Date":"Mar 23 2007","MPAA Rating":"R","Running Time min":88,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":17948},{"Title":"The Hills Have Eyes","US Gross":41778863,"Worldwide Gross":69623713,"US DVD Sales":20576805,"Production Budget":17000000,"Release Date":"Mar 10 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Alexandre Aja","Rotten Tomatoes Rating":49,"IMDB Rating":6.5,"IMDB Votes":43747},{"Title":"How to Lose Friends & Alienate People","US Gross":2775593,"Worldwide Gross":12031443,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Oct 03 2008","MPAA Rating":"R","Running Time min":109,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":6.7,"IMDB Votes":25756},{"Title":"Half Past Dead","US Gross":15567860,"Worldwide Gross":19233280,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Nov 15 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":2,"IMDB Rating":4.1,"IMDB Votes":6909},{"Title":"Halloween: H2O","US Gross":55041738,"Worldwide Gross":55041738,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Aug 05 1998","MPAA Rating":"R","Running Time min":85,"Distributor":"Miramax","Source":null,"Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Steve Miner","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Halloween: Resurrection","US Gross":30259652,"Worldwide Gross":37659652,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jul 12 2002","MPAA Rating":"R","Running Time min":89,"Distributor":"Miramax/Dimension","Source":null,"Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Rick Rosenthal","Rotten Tomatoes Rating":null,"IMDB Rating":3.9,"IMDB Votes":13181},{"Title":"Holy Man","US Gross":12069719,"Worldwide Gross":12069719,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Oct 09 1998","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Stephen Herek","Rotten Tomatoes Rating":12,"IMDB Rating":4.7,"IMDB Votes":9105},{"Title":"Milk","US Gross":31841299,"Worldwide Gross":50164027,"US DVD Sales":11075466,"Production Budget":20000000,"Release Date":"Nov 26 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Gus Van Sant","Rotten Tomatoes Rating":94,"IMDB Rating":3.6,"IMDB Votes":479},{"Title":"Hamlet 2","US Gross":4886216,"Worldwide Gross":4898285,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Aug 22 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Andrew Fleming","Rotten Tomatoes Rating":64,"IMDB Rating":6.4,"IMDB Votes":9017},{"Title":"Hannah Montana/Miley Cyrus: Best of Both Worlds Concert Tour","US Gross":65281781,"Worldwide Gross":71281781,"US DVD Sales":18154740,"Production Budget":6500000,"Release Date":"Feb 01 2008","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Concert/Performance","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":71,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Home on the Range","US Gross":50026353,"Worldwide Gross":76482461,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Apr 02 2004","MPAA Rating":"PG","Running Time min":94,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":54,"IMDB Rating":5.4,"IMDB Votes":4772},{"Title":"Hannibal Rising","US Gross":27669725,"Worldwide Gross":80583311,"US DVD Sales":23365803,"Production Budget":50000000,"Release Date":"Feb 09 2007","MPAA Rating":"R","Running Time min":121,"Distributor":"Weinstein Co.","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"Peter Webber","Rotten Tomatoes Rating":15,"IMDB Rating":6,"IMDB Votes":28690},{"Title":"The Hangover","US Gross":277322503,"Worldwide Gross":465132119,"US DVD Sales":165916727,"Production Budget":35000000,"Release Date":"Jun 05 2009","MPAA Rating":"R","Running Time min":99,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Todd Phillips","Rotten Tomatoes Rating":78,"IMDB Rating":7.9,"IMDB Votes":127634},{"Title":"Hanging Up","US Gross":36037909,"Worldwide Gross":51867723,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Feb 18 2000","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":4.3,"IMDB Votes":6098},{"Title":"The Hoax","US Gross":7164995,"Worldwide Gross":7164995,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 06 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Lasse Hallstrom","Rotten Tomatoes Rating":85,"IMDB Rating":6.9,"IMDB Votes":9171},{"Title":"Holes","US Gross":67383924,"Worldwide Gross":72383924,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Apr 18 2003","MPAA Rating":"PG","Running Time min":117,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Andrew Davis","Rotten Tomatoes Rating":77,"IMDB Rating":7.1,"IMDB Votes":19388},{"Title":"The Holiday","US Gross":63280000,"Worldwide Gross":205190324,"US DVD Sales":71449071,"Production Budget":85000000,"Release Date":"Dec 08 2006","MPAA Rating":"PG-13","Running Time min":131,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Nancy Meyers","Rotten Tomatoes Rating":47,"IMDB Rating":6.9,"IMDB Votes":48215},{"Title":"Hollow Man","US Gross":73209340,"Worldwide Gross":191200000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Aug 04 2000","MPAA Rating":"R","Running Time min":112,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Paul Verhoeven","Rotten Tomatoes Rating":28,"IMDB Rating":5.5,"IMDB Votes":41499},{"Title":"Holy Girl","US Gross":304124,"Worldwide Gross":1261792,"US DVD Sales":null,"Production Budget":1400000,"Release Date":"Apr 29 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Fine Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Home Fries","US Gross":10513979,"Worldwide Gross":10513979,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Nov 25 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":31,"IMDB Rating":4.7,"IMDB Votes":4806},{"Title":"Honey","US Gross":30272254,"Worldwide Gross":62192232,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Dec 05 2003","MPAA Rating":"PG-13","Running Time min":94,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Bille Woodruff","Rotten Tomatoes Rating":20,"IMDB Rating":4.6,"IMDB Votes":13026},{"Title":"The Honeymooners","US Gross":12834849,"Worldwide Gross":13174426,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Jun 10 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"John Schultz","Rotten Tomatoes Rating":14,"IMDB Rating":2.6,"IMDB Votes":5012},{"Title":"Hoot","US Gross":8117637,"Worldwide Gross":8224998,"US DVD Sales":11095119,"Production Budget":15000000,"Release Date":"May 05 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5.3,"IMDB Votes":2830},{"Title":"Hope Floats","US Gross":60110313,"Worldwide Gross":81529000,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"May 29 1998","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Forest Whitaker","Rotten Tomatoes Rating":23,"IMDB Rating":5.3,"IMDB Votes":9168},{"Title":"Horton Hears a Who","US Gross":154529439,"Worldwide Gross":297133947,"US DVD Sales":73524948,"Production Budget":85000000,"Release Date":"Mar 14 2008","MPAA Rating":"G","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":31323},{"Title":"Hostel: Part II","US Gross":17544812,"Worldwide Gross":33606409,"US DVD Sales":16230816,"Production Budget":7500000,"Release Date":"Jun 08 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Eli Roth","Rotten Tomatoes Rating":45,"IMDB Rating":5.4,"IMDB Votes":31511},{"Title":"Hostage","US Gross":34636443,"Worldwide Gross":77636443,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Mar 11 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":3070},{"Title":"Hostel","US Gross":47326473,"Worldwide Gross":80578934,"US DVD Sales":23835218,"Production Budget":4800000,"Release Date":"Jan 06 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Eli Roth","Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":64642},{"Title":"Hot Rod","US Gross":13938332,"Worldwide Gross":14334401,"US DVD Sales":24152720,"Production Budget":25000000,"Release Date":"Aug 03 2007","MPAA Rating":"PG-13","Running Time min":83,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":6.5,"IMDB Votes":22250},{"Title":"The Hours","US Gross":41675994,"Worldwide Gross":108775994,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Dec 27 2002","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Stephen Daldry","Rotten Tomatoes Rating":80,"IMDB Rating":7.6,"IMDB Votes":44618},{"Title":"Life as a House","US Gross":15652637,"Worldwide Gross":23889158,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Oct 26 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":46,"IMDB Rating":7.5,"IMDB Votes":19308},{"Title":"Bringing Down the House","US Gross":132675402,"Worldwide Gross":164675402,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 07 2003","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Adam Shankman","Rotten Tomatoes Rating":34,"IMDB Rating":5.4,"IMDB Votes":16242},{"Title":"House of Wax","US Gross":32064800,"Worldwide Gross":70064800,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"May 06 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":25,"IMDB Rating":5.4,"IMDB Votes":32159},{"Title":"How to Deal","US Gross":14108518,"Worldwide Gross":14108518,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Jul 18 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":5.4,"IMDB Votes":5292},{"Title":"How High","US Gross":31155435,"Worldwide Gross":31260435,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 21 2001","MPAA Rating":"R","Running Time min":93,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":27,"IMDB Rating":5.5,"IMDB Votes":14470},{"Title":"Def Jam's How To Be a Player","US Gross":14010363,"Worldwide Gross":14010363,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Aug 06 1997","MPAA Rating":"R","Running Time min":93,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Harry Potter and the Chamber of Secrets","US Gross":261987880,"Worldwide Gross":878987880,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Nov 15 2002","MPAA Rating":"PG","Running Time min":161,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Chris Columbus","Rotten Tomatoes Rating":82,"IMDB Rating":7.2,"IMDB Votes":120063},{"Title":"Harry Potter and the Prisoner of Azkaban","US Gross":249538952,"Worldwide Gross":795538952,"US DVD Sales":null,"Production Budget":130000000,"Release Date":"Jun 04 2004","MPAA Rating":"PG","Running Time min":141,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Alfonso Cuaron","Rotten Tomatoes Rating":90,"IMDB Rating":7.7,"IMDB Votes":108928},{"Title":"Harry Potter and the Goblet of Fire","US Gross":290013036,"Worldwide Gross":896013036,"US DVD Sales":215701005,"Production Budget":150000000,"Release Date":"Nov 18 2005","MPAA Rating":"PG-13","Running Time min":157,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Mike Newell","Rotten Tomatoes Rating":88,"IMDB Rating":7.6,"IMDB Votes":111946},{"Title":"Harry Potter and the Order of the Phoenix","US Gross":292004738,"Worldwide Gross":938468864,"US DVD Sales":220867077,"Production Budget":150000000,"Release Date":"Jul 11 2007","MPAA Rating":"PG-13","Running Time min":138,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"David Yates","Rotten Tomatoes Rating":78,"IMDB Rating":7.4,"IMDB Votes":104074},{"Title":"Harry Potter and the Half-Blood Prince","US Gross":301959197,"Worldwide Gross":937499905,"US DVD Sales":103574938,"Production Budget":250000000,"Release Date":"Jul 15 2009","MPAA Rating":"PG","Running Time min":153,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"David Yates","Rotten Tomatoes Rating":83,"IMDB Rating":7.3,"IMDB Votes":73720},{"Title":"Harry Potter and the Sorcerer's Stone","US Gross":317557891,"Worldwide Gross":976457891,"US DVD Sales":null,"Production Budget":125000000,"Release Date":"Nov 16 2001","MPAA Rating":"PG","Running Time min":152,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Chris Columbus","Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":132238},{"Title":"Happy Feet","US Gross":198000317,"Worldwide Gross":385000317,"US DVD Sales":203263968,"Production Budget":85000000,"Release Date":"Nov 17 2006","MPAA Rating":"PG","Running Time min":108,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"George Miller","Rotten Tomatoes Rating":74,"IMDB Rating":6.7,"IMDB Votes":42369},{"Title":"Hercules","US Gross":99112101,"Worldwide Gross":250700000,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Jun 15 1997","MPAA Rating":"G","Running Time min":92,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":84,"IMDB Rating":6.8,"IMDB Votes":21902},{"Title":"Hardball","US Gross":40222729,"Worldwide Gross":44102389,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Sep 14 2001","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Brian Robbins","Rotten Tomatoes Rating":38,"IMDB Rating":4.1,"IMDB Votes":165},{"Title":"Hard Rain","US Gross":19870567,"Worldwide Gross":19870567,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Jan 16 1998","MPAA Rating":"R","Running Time min":96,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5.6,"IMDB Votes":14375},{"Title":"The Horse Whisperer","US Gross":75383563,"Worldwide Gross":75383563,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"May 15 1998","MPAA Rating":"PG-13","Running Time min":168,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Robert Redford","Rotten Tomatoes Rating":71,"IMDB Rating":6.3,"IMDB Votes":15831},{"Title":"The Heart of Me","US Gross":196067,"Worldwide Gross":196067,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jun 13 2003","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":1342},{"Title":"Casa de Areia","US Gross":539285,"Worldwide Gross":1178175,"US DVD Sales":null,"Production Budget":3750000,"Release Date":"Aug 11 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":1519},{"Title":"Sorority Row","US Gross":11965282,"Worldwide Gross":26735797,"US DVD Sales":1350584,"Production Budget":12500000,"Release Date":"Sep 11 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Summit Entertainment","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":5.1,"IMDB Votes":7097},{"Title":"Hart's War","US Gross":19076815,"Worldwide Gross":33076815,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Feb 15 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":58,"IMDB Rating":6.2,"IMDB Votes":19541},{"Title":"The Hitchhiker's Guide to the Galaxy","US Gross":51019112,"Worldwide Gross":104019112,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Apr 29 2005","MPAA Rating":"PG","Running Time min":103,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":6.6,"IMDB Votes":61513},{"Title":"High Tension","US Gross":3681066,"Worldwide Gross":5208449,"US DVD Sales":null,"Production Budget":2850000,"Release Date":"Jun 10 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":165},{"Title":"Hot Fuzz","US Gross":23618786,"Worldwide Gross":79197493,"US DVD Sales":33391776,"Production Budget":16000000,"Release Date":"Apr 20 2007","MPAA Rating":"R","Running Time min":121,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Edgar Wright","Rotten Tomatoes Rating":91,"IMDB Rating":8,"IMDB Votes":129779},{"Title":"Human Traffic","US Gross":104257,"Worldwide Gross":5422740,"US DVD Sales":null,"Production Budget":3300000,"Release Date":"May 05 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":9455},{"Title":"How to Train Your Dragon","US Gross":217581231,"Worldwide Gross":491581231,"US DVD Sales":null,"Production Budget":165000000,"Release Date":"Mar 26 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":98,"IMDB Rating":8.2,"IMDB Votes":28556},{"Title":"I Heart Huckabees","US Gross":12784713,"Worldwide Gross":14584713,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Oct 01 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":62,"IMDB Rating":6.8,"IMDB Votes":35878},{"Title":"Hulk","US Gross":132177234,"Worldwide Gross":245360480,"US DVD Sales":null,"Production Budget":137000000,"Release Date":"Jun 20 2003","MPAA Rating":"PG-13","Running Time min":138,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Ang Lee","Rotten Tomatoes Rating":62,"IMDB Rating":5.7,"IMDB Votes":70844},{"Title":"The Incredible Hulk","US Gross":134806913,"Worldwide Gross":263349257,"US DVD Sales":58503066,"Production Budget":137500000,"Release Date":"Jun 13 2008","MPAA Rating":"PG-13","Running Time min":112,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Louis Leterrier","Rotten Tomatoes Rating":66,"IMDB Rating":7.1,"IMDB Votes":82419},{"Title":"The Hunchback of Notre Dame","US Gross":100138851,"Worldwide Gross":325500000,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Jun 21 1996","MPAA Rating":"G","Running Time min":86,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Gary Trousdale","Rotten Tomatoes Rating":73,"IMDB Rating":6.5,"IMDB Votes":19479},{"Title":"The Hunted","US Gross":34234008,"Worldwide Gross":45016494,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Mar 14 2003","MPAA Rating":"R","Running Time min":94,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"William Friedkin","Rotten Tomatoes Rating":31,"IMDB Rating":5.8,"IMDB Votes":18941},{"Title":"Hurricane Streets","US Gross":334041,"Worldwide Gross":367582,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Feb 13 1998","MPAA Rating":null,"Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Hurt Locker","US Gross":14700000,"Worldwide Gross":44468574,"US DVD Sales":31304710,"Production Budget":15000000,"Release Date":"Jun 26 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Summit Entertainment","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Kathryn Bigelow","Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":83679},{"Title":"Hustle & Flow","US Gross":22202809,"Worldwide Gross":23563727,"US DVD Sales":null,"Production Budget":2800000,"Release Date":"Jul 22 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":18688},{"Title":"Starsky & Hutch","US Gross":88200225,"Worldwide Gross":170200225,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Mar 05 2004","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Todd Phillips","Rotten Tomatoes Rating":64,"IMDB Rating":6.2,"IMDB Votes":48935},{"Title":"Hollywood Ending","US Gross":4839383,"Worldwide Gross":14839383,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"May 03 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":46,"IMDB Rating":6.3,"IMDB Votes":10486},{"Title":"Hollywood Homicide","US Gross":30207785,"Worldwide Gross":51107785,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jun 13 2003","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Sony/Columbia","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Ron Shelton","Rotten Tomatoes Rating":30,"IMDB Rating":5.2,"IMDB Votes":16452},{"Title":"Whatever it Takes","US Gross":8735529,"Worldwide Gross":8735529,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Mar 24 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":5.2,"IMDB Votes":4192},{"Title":"Ice Age: The Meltdown","US Gross":195330621,"Worldwide Gross":651899282,"US DVD Sales":131919814,"Production Budget":75000000,"Release Date":"Mar 31 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Carlos Saldanha","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":50981},{"Title":"Ice Age: Dawn of the Dinosaurs","US Gross":196573705,"Worldwide Gross":886685941,"US DVD Sales":87544387,"Production Budget":90000000,"Release Date":"Jul 01 2009","MPAA Rating":"PG","Running Time min":93,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Carlos Saldanha","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":33289},{"Title":"Ice Age","US Gross":176387405,"Worldwide Gross":383257136,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Mar 15 2002","MPAA Rating":"PG","Running Time min":81,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Chris Wedge","Rotten Tomatoes Rating":77,"IMDB Rating":7.4,"IMDB Votes":75552},{"Title":"Ice Princess","US Gross":24381334,"Worldwide Gross":25732334,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 18 2005","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":52,"IMDB Rating":6,"IMDB Votes":7106},{"Title":"The Ice Storm","US Gross":8038061,"Worldwide Gross":16011975,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Sep 27 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Ang Lee","Rotten Tomatoes Rating":82,"IMDB Rating":7.5,"IMDB Votes":27544},{"Title":"I Come with the Rain","US Gross":0,"Worldwide Gross":627422,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Dec 31 1969","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":618},{"Title":"Identity","US Gross":52131264,"Worldwide Gross":90231264,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Apr 25 2003","MPAA Rating":"R","Running Time min":90,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"James Mangold","Rotten Tomatoes Rating":62,"IMDB Rating":7.3,"IMDB Votes":57909},{"Title":"An Ideal Husband","US Gross":18542974,"Worldwide Gross":18542974,"US DVD Sales":null,"Production Budget":10700000,"Release Date":"Jun 18 1999","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":86,"IMDB Rating":6.7,"IMDB Votes":8078},{"Title":"Idlewild","US Gross":12669914,"Worldwide Gross":12669914,"US DVD Sales":3120029,"Production Budget":15000000,"Release Date":"Aug 25 2006","MPAA Rating":"R","Running Time min":121,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":5.8,"IMDB Votes":3056},{"Title":"Igby Goes Down","US Gross":4777465,"Worldwide Gross":4777465,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Sep 13 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":76,"IMDB Rating":7,"IMDB Votes":19050},{"Title":"Igor","US Gross":19528188,"Worldwide Gross":26608350,"US DVD Sales":12361783,"Production Budget":30000000,"Release Date":"Sep 19 2008","MPAA Rating":"PG","Running Time min":86,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":6,"IMDB Votes":6614},{"Title":"I Got the Hook-Up!","US Gross":10317779,"Worldwide Gross":10317779,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"May 27 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":3.3,"IMDB Votes":985},{"Title":"Idle Hands","US Gross":4023741,"Worldwide Gross":4023741,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 30 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":5.8,"IMDB Votes":16157},{"Title":"Imaginary Heroes","US Gross":228524,"Worldwide Gross":290875,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 17 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":7.2,"IMDB Votes":6057},{"Title":"I Still Know What You Did Last Summer","US Gross":40020622,"Worldwide Gross":40020622,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Nov 13 1998","MPAA Rating":"R","Running Time min":101,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":4.1,"IMDB Votes":23268},{"Title":"I Know What You Did Last Summer","US Gross":72250091,"Worldwide Gross":125250091,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Oct 17 1997","MPAA Rating":"R","Running Time min":101,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":5.4,"IMDB Votes":36807},{"Title":"I Love You, Beth Cooper","US Gross":14800725,"Worldwide Gross":16382538,"US DVD Sales":5475072,"Production Budget":18000000,"Release Date":"Jul 10 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Chris Columbus","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":179},{"Title":"The Illusionist","US Gross":39868642,"Worldwide Gross":84276175,"US DVD Sales":38200717,"Production Budget":16500000,"Release Date":"Aug 18 2006","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Yari Film Group Releasing","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":74,"IMDB Rating":7.7,"IMDB Votes":92040},{"Title":"But I'm a Cheerleader","US Gross":2205627,"Worldwide Gross":2595216,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Jul 07 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":10073},{"Title":"The Imaginarium of Doctor Parnassus","US Gross":7689458,"Worldwide Gross":58692979,"US DVD Sales":5387124,"Production Budget":30000000,"Release Date":"Dec 25 2009","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Terry Gilliam","Rotten Tomatoes Rating":64,"IMDB Rating":7.1,"IMDB Votes":33374},{"Title":"Imagine Me & You","US Gross":672243,"Worldwide Gross":972243,"US DVD Sales":null,"Production Budget":7900000,"Release Date":"Jan 27 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":9534},{"Title":"Imagine That","US Gross":16123323,"Worldwide Gross":16123323,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jun 12 2009","MPAA Rating":"PG","Running Time min":107,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Karey Kirkpatrick","Rotten Tomatoes Rating":38,"IMDB Rating":5.4,"IMDB Votes":3092},{"Title":"Impostor","US Gross":6114237,"Worldwide Gross":6114237,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jan 04 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":9020},{"Title":"Inception","US Gross":285630280,"Worldwide Gross":753830280,"US DVD Sales":null,"Production Budget":160000000,"Release Date":"Jul 16 2010","MPAA Rating":"PG-13","Running Time min":147,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Christopher Nolan","Rotten Tomatoes Rating":87,"IMDB Rating":9.1,"IMDB Votes":188247},{"Title":"In the Cut","US Gross":4717455,"Worldwide Gross":23693646,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Oct 22 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Jane Campion","Rotten Tomatoes Rating":34,"IMDB Rating":5.2,"IMDB Votes":11590},{"Title":"In Too Deep","US Gross":14026509,"Worldwide Gross":14026509,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Aug 25 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":5.5,"IMDB Votes":2529},{"Title":"IndigËnes","US Gross":320700,"Worldwide Gross":6877936,"US DVD Sales":null,"Production Budget":18900000,"Release Date":"Dec 15 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":5775},{"Title":"Indiana Jones and the Kingdom of the Crystal Skull","US Gross":317023851,"Worldwide Gross":786558145,"US DVD Sales":109654917,"Production Budget":185000000,"Release Date":"May 22 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":77,"IMDB Rating":6.6,"IMDB Votes":135071},{"Title":"In Dreams","US Gross":12017369,"Worldwide Gross":12017369,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jan 15 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Neil Jordan","Rotten Tomatoes Rating":22,"IMDB Rating":5.3,"IMDB Votes":7138},{"Title":"Infamous","US Gross":1151330,"Worldwide Gross":2613717,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Oct 13 2006","MPAA Rating":"R","Running Time min":118,"Distributor":"Warner Independent","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":72,"IMDB Rating":7.1,"IMDB Votes":6917},{"Title":"The Informant","US Gross":33316821,"Worldwide Gross":41771168,"US DVD Sales":6212437,"Production Budget":22000000,"Release Date":"Sep 18 2009","MPAA Rating":"R","Running Time min":108,"Distributor":"Warner Bros.","Source":"Based on Factual Book/Article","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":380},{"Title":"The Informers","US Gross":315000,"Worldwide Gross":315000,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Apr 24 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Senator Entertainment","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":7595},{"Title":"Inkheart","US Gross":17303424,"Worldwide Gross":58051454,"US DVD Sales":8342886,"Production Budget":60000000,"Release Date":"Jan 23 2009","MPAA Rating":"PG","Running Time min":105,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Iain Softley","Rotten Tomatoes Rating":40,"IMDB Rating":6.1,"IMDB Votes":14157},{"Title":"In & Out","US Gross":63826569,"Worldwide Gross":83226569,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 19 1997","MPAA Rating":"PG-13","Running Time min":92,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Frank Oz","Rotten Tomatoes Rating":71,"IMDB Rating":6.1,"IMDB Votes":18773},{"Title":"I Now Pronounce You Chuck and Larry","US Gross":119725280,"Worldwide Gross":185708462,"US DVD Sales":69334335,"Production Budget":85000000,"Release Date":"Jul 20 2007","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Dennis Dugan","Rotten Tomatoes Rating":14,"IMDB Rating":6.1,"IMDB Votes":46347},{"Title":"Inside Man","US Gross":88634237,"Worldwide Gross":184634237,"US DVD Sales":37712869,"Production Budget":50000000,"Release Date":"Mar 24 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":86,"IMDB Rating":7.7,"IMDB Votes":86229},{"Title":"The Insider","US Gross":28965197,"Worldwide Gross":60265197,"US DVD Sales":null,"Production Budget":68000000,"Release Date":"Nov 05 1999","MPAA Rating":"R","Running Time min":157,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Michael Mann","Rotten Tomatoes Rating":96,"IMDB Rating":8,"IMDB Votes":68747},{"Title":"Insomnia","US Gross":67263182,"Worldwide Gross":113622499,"US DVD Sales":null,"Production Budget":46000000,"Release Date":"May 24 2002","MPAA Rating":"R","Running Time min":118,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Christopher Nolan","Rotten Tomatoes Rating":92,"IMDB Rating":6.3,"IMDB Votes":33},{"Title":"Inspector Gadget","US Gross":97387965,"Worldwide Gross":97387965,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jul 23 1999","MPAA Rating":"PG","Running Time min":77,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":3.9,"IMDB Votes":13881},{"Title":"Instinct","US Gross":34105207,"Worldwide Gross":34105207,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jun 04 1999","MPAA Rating":"R","Running Time min":123,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Jon Turteltaub","Rotten Tomatoes Rating":27,"IMDB Rating":6.2,"IMDB Votes":15388},{"Title":"The Invention of Lying","US Gross":18451251,"Worldwide Gross":32679264,"US DVD Sales":4548709,"Production Budget":18500000,"Release Date":"Oct 02 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Ricky Gervais","Rotten Tomatoes Rating":57,"IMDB Rating":6.5,"IMDB Votes":24578},{"Title":"The Invasion","US Gross":15074191,"Worldwide Gross":40147042,"US DVD Sales":4845943,"Production Budget":80000000,"Release Date":"Aug 17 2007","MPAA Rating":"PG-13","Running Time min":99,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":6,"IMDB Votes":28605},{"Title":"Ira and Abby","US Gross":221096,"Worldwide Gross":221096,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Sep 14 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":855},{"Title":"I, Robot","US Gross":144801023,"Worldwide Gross":348601023,"US DVD Sales":null,"Production Budget":105000000,"Release Date":"Jul 16 2004","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Alex Proyas","Rotten Tomatoes Rating":58,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Iron Man 2","US Gross":312128345,"Worldwide Gross":622128345,"US DVD Sales":null,"Production Budget":170000000,"Release Date":"May 07 2010","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Jon Favreau","Rotten Tomatoes Rating":74,"IMDB Rating":7.3,"IMDB Votes":61256},{"Title":"Iron Man","US Gross":318604126,"Worldwide Gross":582604126,"US DVD Sales":169251757,"Production Budget":186000000,"Release Date":"May 02 2008","MPAA Rating":"PG-13","Running Time min":126,"Distributor":"Paramount Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Jon Favreau","Rotten Tomatoes Rating":94,"IMDB Rating":7.9,"IMDB Votes":174040},{"Title":"The Iron Giant","US Gross":23159305,"Worldwide Gross":31333917,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Aug 04 1999","MPAA Rating":"PG","Running Time min":86,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Brad Bird","Rotten Tomatoes Rating":97,"IMDB Rating":7.9,"IMDB Votes":38791},{"Title":"Obsluhoval jsem anglickÈho kr·le","US Gross":617228,"Worldwide Gross":7174984,"US DVD Sales":null,"Production Budget":4900000,"Release Date":"Aug 29 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":3048},{"Title":"The Island","US Gross":35818913,"Worldwide Gross":163018913,"US DVD Sales":null,"Production Budget":120000000,"Release Date":"Jul 22 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Michael Bay","Rotten Tomatoes Rating":40,"IMDB Rating":6.9,"IMDB Votes":82601},{"Title":"Isn't She Great","US Gross":2954405,"Worldwide Gross":2954405,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Jan 28 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Magazine Article","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Andrew Bergman","Rotten Tomatoes Rating":25,"IMDB Rating":4.9,"IMDB Votes":1426},{"Title":"I Spy","US Gross":33561137,"Worldwide Gross":33561137,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Nov 01 2002","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Sony Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Betty Thomas","Rotten Tomatoes Rating":15,"IMDB Rating":5.3,"IMDB Votes":18061},{"Title":"The Italian Job","US Gross":106126012,"Worldwide Gross":175826012,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"May 30 2003","MPAA Rating":"PG-13","Running Time min":111,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"F. Gary Gray","Rotten Tomatoes Rating":73,"IMDB Rating":6.9,"IMDB Votes":76835},{"Title":"I Think I Love My Wife","US Gross":12559771,"Worldwide Gross":13205411,"US DVD Sales":13566229,"Production Budget":14000000,"Release Date":"Mar 16 2007","MPAA Rating":"R","Running Time min":94,"Distributor":"Fox Searchlight","Source":"Remake","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Chris Rock","Rotten Tomatoes Rating":19,"IMDB Rating":5.5,"IMDB Votes":8643},{"Title":"Jack Frost","US Gross":34645374,"Worldwide Gross":34645374,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Dec 11 1998","MPAA Rating":"PG","Running Time min":95,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":4.6,"IMDB Votes":6932},{"Title":"Jackie Brown","US Gross":39673162,"Worldwide Gross":72673162,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Dec 25 1997","MPAA Rating":"R","Running Time min":154,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Quentin Tarantino","Rotten Tomatoes Rating":85,"IMDB Rating":7.6,"IMDB Votes":84068},{"Title":"The Jackal","US Gross":54956941,"Worldwide Gross":159356941,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Nov 14 1997","MPAA Rating":"R","Running Time min":124,"Distributor":"Universal","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Michael Caton-Jones","Rotten Tomatoes Rating":12,"IMDB Rating":6,"IMDB Votes":35540},{"Title":"The Jacket","US Gross":6301131,"Worldwide Gross":15452978,"US DVD Sales":null,"Production Budget":28500000,"Release Date":"Mar 04 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Independent","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":43,"IMDB Rating":7.1,"IMDB Votes":35932},{"Title":"Jakob the Liar","US Gross":4956401,"Worldwide Gross":4956401,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Sep 24 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":6.1,"IMDB Votes":6636},{"Title":"Jarhead","US Gross":62647540,"Worldwide Gross":96947540,"US DVD Sales":52209103,"Production Budget":72000000,"Release Date":"Nov 04 2005","MPAA Rating":"R","Running Time min":115,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Sam Mendes","Rotten Tomatoes Rating":61,"IMDB Rating":7.2,"IMDB Votes":60650},{"Title":"Jawbreaker","US Gross":3076820,"Worldwide Gross":3076820,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Feb 19 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":7,"IMDB Rating":4.8,"IMDB Votes":9329},{"Title":"The World is Not Enough","US Gross":126930660,"Worldwide Gross":361730660,"US DVD Sales":null,"Production Budget":135000000,"Release Date":"Nov 19 1999","MPAA Rating":"PG-13","Running Time min":125,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Michael Apted","Rotten Tomatoes Rating":51,"IMDB Rating":6.3,"IMDB Votes":59406},{"Title":"Die Another Day","US Gross":160942139,"Worldwide Gross":431942139,"US DVD Sales":null,"Production Budget":142000000,"Release Date":"Nov 22 2002","MPAA Rating":"PG-13","Running Time min":133,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Lee Tamahori","Rotten Tomatoes Rating":59,"IMDB Rating":6,"IMDB Votes":67476},{"Title":"Casino Royale","US Gross":167365000,"Worldwide Gross":596365000,"US DVD Sales":79681613,"Production Budget":102000000,"Release Date":"Nov 17 2006","MPAA Rating":"PG-13","Running Time min":144,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Martin Campbell","Rotten Tomatoes Rating":94,"IMDB Rating":8,"IMDB Votes":172936},{"Title":"Quantum of Solace","US Gross":169368427,"Worldwide Gross":576368427,"US DVD Sales":44912115,"Production Budget":230000000,"Release Date":"Nov 14 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Marc Forster","Rotten Tomatoes Rating":64,"IMDB Rating":6.8,"IMDB Votes":93596},{"Title":"Jennifer's Body","US Gross":16204793,"Worldwide Gross":32832166,"US DVD Sales":4998385,"Production Budget":16000000,"Release Date":"Sep 18 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":5.3,"IMDB Votes":24265},{"Title":"Jackass: Number Two","US Gross":72778712,"Worldwide Gross":83578712,"US DVD Sales":49050925,"Production Budget":11000000,"Release Date":"Sep 22 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":7.2,"IMDB Votes":24434},{"Title":"Jackass: The Movie","US Gross":64282312,"Worldwide Gross":75466905,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Oct 25 2002","MPAA Rating":"R","Running Time min":92,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":27454},{"Title":"Journey to the Center of the Earth","US Gross":101704370,"Worldwide Gross":240904370,"US DVD Sales":26253886,"Production Budget":45000000,"Release Date":"Jul 11 2008","MPAA Rating":"PG","Running Time min":92,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":23756},{"Title":"Joe Dirt","US Gross":27087695,"Worldwide Gross":30987695,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Apr 11 2001","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Dennie Gordon","Rotten Tomatoes Rating":11,"IMDB Rating":5.4,"IMDB Votes":18666},{"Title":"The Curse of the Jade Scorpion","US Gross":7496522,"Worldwide Gross":18496522,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Aug 24 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":45,"IMDB Rating":6.7,"IMDB Votes":15897},{"Title":"Jeepers Creepers","US Gross":37904175,"Worldwide Gross":55026845,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 31 2001","MPAA Rating":"R","Running Time min":91,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":45,"IMDB Rating":5.7,"IMDB Votes":30610},{"Title":"Johnny English","US Gross":28013509,"Worldwide Gross":160323929,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jul 18 2003","MPAA Rating":"PG","Running Time min":87,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5.8,"IMDB Votes":29246},{"Title":"Jeepers Creepers II","US Gross":35623801,"Worldwide Gross":35623801,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Aug 29 2003","MPAA Rating":"R","Running Time min":104,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.3,"IMDB Votes":15975},{"Title":"The Assassination of Jesse James by the Coward Robert Ford","US Gross":3909149,"Worldwide Gross":15001776,"US DVD Sales":9871881,"Production Budget":30000000,"Release Date":"Sep 21 2007","MPAA Rating":"R","Running Time min":160,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":75,"IMDB Rating":7.7,"IMDB Votes":57465},{"Title":"Johnson Family Vacation","US Gross":31203964,"Worldwide Gross":31462753,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Apr 07 2004","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":6,"IMDB Rating":3.8,"IMDB Votes":3278},{"Title":"Jersey Girl","US Gross":25266129,"Worldwide Gross":37066129,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Mar 26 2004","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":40,"IMDB Rating":6.2,"IMDB Votes":27370},{"Title":"The Jimmy Show","US Gross":703,"Worldwide Gross":703,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Dec 13 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":5.1,"IMDB Votes":358},{"Title":"Jindabyne","US Gross":399879,"Worldwide Gross":2862544,"US DVD Sales":null,"Production Budget":10800000,"Release Date":"Apr 27 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":3920},{"Title":"Jackpot","US Gross":44452,"Worldwide Gross":44452,"US DVD Sales":null,"Production Budget":400000,"Release Date":"Jul 27 2001","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":"Michael Polish","Rotten Tomatoes Rating":29,"IMDB Rating":5.7,"IMDB Votes":408},{"Title":"Just Like Heaven","US Gross":48318130,"Worldwide Gross":100687083,"US DVD Sales":37588463,"Production Budget":58000000,"Release Date":"Sep 16 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Mark Waters","Rotten Tomatoes Rating":57,"IMDB Rating":6.8,"IMDB Votes":29457},{"Title":"Just My Luck","US Gross":17326650,"Worldwide Gross":38326650,"US DVD Sales":11051609,"Production Budget":28000000,"Release Date":"May 12 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Donald Petrie","Rotten Tomatoes Rating":13,"IMDB Rating":5,"IMDB Votes":13368},{"Title":"The Messenger: The Story of Joan of Arc","US Gross":14271297,"Worldwide Gross":14271297,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Nov 12 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Luc Besson","Rotten Tomatoes Rating":31,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Jungle Book 2","US Gross":47901582,"Worldwide Gross":135703599,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Feb 14 2003","MPAA Rating":"G","Running Time min":72,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":5.2,"IMDB Votes":2740},{"Title":"Joe Somebody","US Gross":22770864,"Worldwide Gross":24515990,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Dec 21 2001","MPAA Rating":"PG","Running Time min":98,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"John Pasquin","Rotten Tomatoes Rating":19,"IMDB Rating":5.3,"IMDB Votes":5313},{"Title":"Jonah Hex","US Gross":10547117,"Worldwide Gross":10547117,"US DVD Sales":null,"Production Budget":47000000,"Release Date":"Jun 18 2010","MPAA Rating":"PG-13","Running Time min":81,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":4.3,"IMDB Votes":2316},{"Title":"John Q","US Gross":71026631,"Worldwide Gross":102226631,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Feb 15 2002","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Nick Cassavetes","Rotten Tomatoes Rating":22,"IMDB Rating":6.6,"IMDB Votes":32338},{"Title":"Jonah: A VeggieTales Movie","US Gross":25571351,"Worldwide Gross":25606175,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Oct 04 2002","MPAA Rating":"G","Running Time min":82,"Distributor":"Artisan","Source":"Based on Short Film","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":1704},{"Title":"The Joneses","US Gross":1475746,"Worldwide Gross":1475746,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Apr 16 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Roadside Attractions","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":4345},{"Title":"Josie and the Pussycats","US Gross":14252830,"Worldwide Gross":14252830,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Apr 11 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":53,"IMDB Rating":5.1,"IMDB Votes":11284},{"Title":"Joy Ride","US Gross":21973182,"Worldwide Gross":21973182,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Oct 05 2001","MPAA Rating":"R","Running Time min":97,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"John Dahl","Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":118},{"Title":"Jerry Maguire","US Gross":153952592,"Worldwide Gross":274000000,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Dec 13 1996","MPAA Rating":"R","Running Time min":138,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Cameron Crowe","Rotten Tomatoes Rating":84,"IMDB Rating":7.2,"IMDB Votes":78603},{"Title":"Jay and Silent Bob Strike Back","US Gross":30059386,"Worldwide Gross":33762400,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Aug 24 2001","MPAA Rating":"R","Running Time min":104,"Distributor":"Miramax/Dimension","Source":"Spin-Off","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":53,"IMDB Rating":6.8,"IMDB Votes":62692},{"Title":"Jesus' Son","US Gross":1282084,"Worldwide Gross":1687548,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Jun 16 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":4620},{"Title":"Being Julia","US Gross":7739049,"Worldwide Gross":11039049,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Oct 15 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":76,"IMDB Rating":7.1,"IMDB Votes":7067},{"Title":"Julie & Julia","US Gross":94125426,"Worldwide Gross":126646119,"US DVD Sales":40846498,"Production Budget":40000000,"Release Date":"Aug 07 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Nora Ephron","Rotten Tomatoes Rating":75,"IMDB Rating":7.2,"IMDB Votes":22269},{"Title":"Jumper","US Gross":80172128,"Worldwide Gross":222117068,"US DVD Sales":33679094,"Production Budget":82500000,"Release Date":"Feb 14 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Doug Liman","Rotten Tomatoes Rating":17,"IMDB Rating":5.9,"IMDB Votes":69161},{"Title":"Junebug","US Gross":2678010,"Worldwide Gross":2678010,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Aug 03 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":86,"IMDB Rating":7.1,"IMDB Votes":11457},{"Title":"Juno","US Gross":143495265,"Worldwide Gross":230327671,"US DVD Sales":57612374,"Production Budget":7000000,"Release Date":"Dec 05 2007","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jason Reitman","Rotten Tomatoes Rating":93,"IMDB Rating":7.9,"IMDB Votes":149855},{"Title":"Jurassic Park 3","US Gross":181166115,"Worldwide Gross":365900000,"US DVD Sales":null,"Production Budget":93000000,"Release Date":"Jul 18 2001","MPAA Rating":"PG-13","Running Time min":92,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Joe Johnston","Rotten Tomatoes Rating":null,"IMDB Rating":7.9,"IMDB Votes":151365},{"Title":"Just Looking","US Gross":39852,"Worldwide Gross":39852,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Oct 13 2000","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Jason Alexander","Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":949},{"Title":"Just Married","US Gross":56127162,"Worldwide Gross":56127162,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Jan 10 2003","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Shawn Levy","Rotten Tomatoes Rating":20,"IMDB Rating":5.1,"IMDB Votes":19508},{"Title":"Juwanna Man","US Gross":13571817,"Worldwide Gross":13771817,"US DVD Sales":null,"Production Budget":15600000,"Release Date":"Jun 21 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.1,"IMDB Votes":3062},{"Title":"Freddy vs. Jason","US Gross":82622655,"Worldwide Gross":114326122,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Aug 15 2003","MPAA Rating":"R","Running Time min":97,"Distributor":"New Line","Source":"Spin-Off","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Ronny Yu","Rotten Tomatoes Rating":41,"IMDB Rating":5.8,"IMDB Votes":39182},{"Title":"K-19: The Widowmaker","US Gross":35168966,"Worldwide Gross":65716126,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jul 19 2002","MPAA Rating":"PG-13","Running Time min":138,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Dramatization","Director":"Kathryn Bigelow","Rotten Tomatoes Rating":61,"IMDB Rating":6.5,"IMDB Votes":22288},{"Title":"Kate and Leopold","US Gross":47095453,"Worldwide Gross":70937778,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Dec 25 2001","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Fantasy","Director":"James Mangold","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":23600},{"Title":"Kama Sutra","US Gross":4109095,"Worldwide Gross":4109095,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Feb 28 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Trimark","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Mira Nair","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Kangaroo Jack","US Gross":66723216,"Worldwide Gross":90723216,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jan 17 2003","MPAA Rating":"PG","Running Time min":89,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.1,"IMDB Votes":9994},{"Title":"Kick-Ass","US Gross":48071303,"Worldwide Gross":76252166,"US DVD Sales":18666874,"Production Budget":28000000,"Release Date":"Apr 16 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Matthew Vaughn","Rotten Tomatoes Rating":75,"IMDB Rating":8.1,"IMDB Votes":86990},{"Title":"The Original Kings of Comedy","US Gross":38168022,"Worldwide Gross":38236338,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 18 2000","MPAA Rating":"R","Running Time min":116,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Concert/Performance","Creative Type":"Factual","Director":"Spike Lee","Rotten Tomatoes Rating":86,"IMDB Rating":6.2,"IMDB Votes":3258},{"Title":"Kiss of the Dragon","US Gross":36833473,"Worldwide Gross":36833473,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jul 06 2001","MPAA Rating":"R","Running Time min":98,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Chris Nahon","Rotten Tomatoes Rating":51,"IMDB Rating":6.3,"IMDB Votes":22087},{"Title":"Kung Fu Hustle","US Gross":17104669,"Worldwide Gross":101004669,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Apr 08 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Stephen Chow","Rotten Tomatoes Rating":89,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Karate Kid","US Gross":176591618,"Worldwide Gross":350591618,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jun 11 2010","MPAA Rating":"PG","Running Time min":140,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":6.1,"IMDB Votes":20039},{"Title":"The Kentucky Fried Movie","US Gross":15000000,"Worldwide Gross":20000000,"US DVD Sales":null,"Production Budget":600000,"Release Date":"Aug 10 1977","MPAA Rating":null,"Running Time min":null,"Distributor":"United Film Distribution Co.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"John Landis","Rotten Tomatoes Rating":77,"IMDB Rating":6.4,"IMDB Votes":8342},{"Title":"Kicking and Screaming","US Gross":52842724,"Worldwide Gross":55842724,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"May 13 2005","MPAA Rating":"PG","Running Time min":90,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":3841},{"Title":"Kill Bill: Volume 2","US Gross":66207920,"Worldwide Gross":150907920,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Apr 16 2004","MPAA Rating":"R","Running Time min":136,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Quentin Tarantino","Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":182834},{"Title":"Kill Bill: Volume 1","US Gross":70098138,"Worldwide Gross":180098138,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Oct 10 2003","MPAA Rating":"R","Running Time min":111,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Quentin Tarantino","Rotten Tomatoes Rating":85,"IMDB Rating":8.2,"IMDB Votes":231761},{"Title":"Kingdom Come","US Gross":23247539,"Worldwide Gross":23393939,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Apr 11 2001","MPAA Rating":"PG","Running Time min":94,"Distributor":"Fox Searchlight","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":28,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Kingdom of Heaven","US Gross":47398413,"Worldwide Gross":211398413,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"May 06 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":39,"IMDB Rating":7.1,"IMDB Votes":83189},{"Title":"Kinsey","US Gross":10214647,"Worldwide Gross":13000959,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Nov 12 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Bill Condon","Rotten Tomatoes Rating":90,"IMDB Rating":7.2,"IMDB Votes":20135},{"Title":"Kissing Jessica Stein","US Gross":7025722,"Worldwide Gross":8915268,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Mar 13 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Play","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":8291},{"Title":"Kiss the Girls","US Gross":60527873,"Worldwide Gross":60527873,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Oct 03 1997","MPAA Rating":"R","Running Time min":120,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":6.4,"IMDB Votes":20932},{"Title":"King Kong","US Gross":218080025,"Worldwide Gross":550517357,"US DVD Sales":140752353,"Production Budget":207000000,"Release Date":"Dec 14 2005","MPAA Rating":"PG-13","Running Time min":187,"Distributor":"Universal","Source":"Remake","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Peter Jackson","Rotten Tomatoes Rating":83,"IMDB Rating":7.6,"IMDB Votes":132720},{"Title":"Knocked Up","US Gross":148761765,"Worldwide Gross":218994109,"US DVD Sales":117601397,"Production Budget":27500000,"Release Date":"Jun 01 2007","MPAA Rating":"R","Running Time min":132,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Judd Apatow","Rotten Tomatoes Rating":90,"IMDB Rating":7.5,"IMDB Votes":111192},{"Title":"Knight and Day","US Gross":76373029,"Worldwide Gross":228937227,"US DVD Sales":null,"Production Budget":117000000,"Release Date":"Jun 23 2010","MPAA Rating":"PG-13","Running Time min":109,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"James Mangold","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":13887},{"Title":"The Kingdom","US Gross":47467250,"Worldwide Gross":86509602,"US DVD Sales":34065220,"Production Budget":72500000,"Release Date":"Sep 28 2007","MPAA Rating":"R","Running Time min":110,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Peter Berg","Rotten Tomatoes Rating":51,"IMDB Rating":7.1,"IMDB Votes":47200},{"Title":"Black Knight","US Gross":33422806,"Worldwide Gross":33422806,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 21 2001","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":4.3,"IMDB Votes":12747},{"Title":"Knockaround Guys","US Gross":11660180,"Worldwide Gross":12419700,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 11 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":11019},{"Title":"Knowing","US Gross":79957634,"Worldwide Gross":187858642,"US DVD Sales":23450931,"Production Budget":50000000,"Release Date":"Mar 20 2009","MPAA Rating":"PG-13","Running Time min":121,"Distributor":"Summit Entertainment","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Alex Proyas","Rotten Tomatoes Rating":32,"IMDB Rating":6.4,"IMDB Votes":58138},{"Title":"Knock Off","US Gross":10319915,"Worldwide Gross":10319915,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 04 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":4.1,"IMDB Votes":5852},{"Title":"K-PAX","US Gross":50315140,"Worldwide Gross":50315140,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Oct 26 2001","MPAA Rating":"PG-13","Running Time min":121,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Iain Softley","Rotten Tomatoes Rating":40,"IMDB Rating":7.3,"IMDB Votes":50475},{"Title":"Christmas with the Kranks","US Gross":73701902,"Worldwide Gross":96501902,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Nov 24 2004","MPAA Rating":"PG","Running Time min":98,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":4.7,"IMDB Votes":9126},{"Title":"King's Ransom","US Gross":4008527,"Worldwide Gross":4049527,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 22 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jeffrey W. Byrd","Rotten Tomatoes Rating":2,"IMDB Rating":3.5,"IMDB Votes":2251},{"Title":"Kiss Kiss, Bang Bang","US Gross":4235837,"Worldwide Gross":13105837,"US DVD Sales":6863163,"Production Budget":15000000,"Release Date":"Oct 21 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":null,"IMDB Votes":null},{"Title":"A Knight's Tale","US Gross":56083966,"Worldwide Gross":56083966,"US DVD Sales":null,"Production Budget":41000000,"Release Date":"May 11 2001","MPAA Rating":"PG-13","Running Time min":132,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":58,"IMDB Rating":6.6,"IMDB Votes":47609},{"Title":"The Kite Runner","US Gross":15800078,"Worldwide Gross":73222245,"US DVD Sales":6563936,"Production Budget":20000000,"Release Date":"Dec 14 2007","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Paramount Vantage","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Marc Forster","Rotten Tomatoes Rating":66,"IMDB Rating":7.8,"IMDB Votes":26816},{"Title":"Kundun","US Gross":5686694,"Worldwide Gross":5686694,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Dec 25 1997","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Martin Scorsese","Rotten Tomatoes Rating":76,"IMDB Rating":7,"IMDB Votes":10248},{"Title":"Kung Pow: Enter the Fist","US Gross":16033556,"Worldwide Gross":16033556,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jan 25 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steve Oedekerk","Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":19348},{"Title":"L.A. Confidential","US Gross":64604977,"Worldwide Gross":110604977,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 19 1997","MPAA Rating":"R","Running Time min":137,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Curtis Hanson","Rotten Tomatoes Rating":99,"IMDB Rating":8.4,"IMDB Votes":165161},{"Title":"Law Abiding Citizen","US Gross":73357727,"Worldwide Gross":113190972,"US DVD Sales":20038881,"Production Budget":53000000,"Release Date":"Oct 16 2009","MPAA Rating":"R","Running Time min":108,"Distributor":"Overture Films","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"F. Gary Gray","Rotten Tomatoes Rating":25,"IMDB Rating":7.2,"IMDB Votes":45577},{"Title":"Ladder 49","US Gross":74541707,"Worldwide Gross":102332848,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Oct 01 2004","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Jay Russell","Rotten Tomatoes Rating":40,"IMDB Rating":6.5,"IMDB Votes":23369},{"Title":"The Ladykillers","US Gross":39692139,"Worldwide Gross":77692139,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Mar 26 2004","MPAA Rating":"R","Running Time min":104,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Joel Coen","Rotten Tomatoes Rating":54,"IMDB Rating":6.2,"IMDB Votes":39242},{"Title":"Lady in the Water","US Gross":42285169,"Worldwide Gross":72785169,"US DVD Sales":12440849,"Production Budget":75000000,"Release Date":"Jul 21 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Fantasy","Director":"M. Night Shyamalan","Rotten Tomatoes Rating":24,"IMDB Rating":5.8,"IMDB Votes":47535},{"Title":"The Lake House","US Gross":52330111,"Worldwide Gross":114830111,"US DVD Sales":39758509,"Production Budget":40000000,"Release Date":"Jun 16 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":6.8,"IMDB Votes":36613},{"Title":"Lakeview Terrace","US Gross":39263506,"Worldwide Gross":44263506,"US DVD Sales":21455006,"Production Budget":20000000,"Release Date":"Sep 19 2008","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Neil LaBute","Rotten Tomatoes Rating":46,"IMDB Rating":6.3,"IMDB Votes":18547},{"Title":"The Ladies Man","US Gross":13592872,"Worldwide Gross":13719474,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Oct 13 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":4.7,"IMDB Votes":6556},{"Title":"Land of the Lost","US Gross":49438370,"Worldwide Gross":69548641,"US DVD Sales":18953806,"Production Budget":100000000,"Release Date":"Jun 05 2009","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Brad Silberling","Rotten Tomatoes Rating":26,"IMDB Rating":5.3,"IMDB Votes":16830},{"Title":"Changing Lanes","US Gross":66790248,"Worldwide Gross":66790248,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Apr 12 2002","MPAA Rating":"R","Running Time min":99,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":77,"IMDB Rating":6.5,"IMDB Votes":29222},{"Title":"Lars and the Real Girl","US Gross":5956480,"Worldwide Gross":10553442,"US DVD Sales":2560922,"Production Budget":12500000,"Release Date":"Oct 12 2007","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":7.5,"IMDB Votes":32423},{"Title":"L'auberge espagnole","US Gross":3895664,"Worldwide Gross":3895664,"US DVD Sales":null,"Production Budget":5900000,"Release Date":"May 16 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":15696},{"Title":"Laws of Attraction","US Gross":17848322,"Worldwide Gross":29948322,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Apr 30 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":18,"IMDB Rating":5.7,"IMDB Votes":9266},{"Title":"Little Black Book","US Gross":20422207,"Worldwide Gross":21758371,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 06 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":5.2,"IMDB Votes":7625},{"Title":"Layer Cake","US Gross":2339957,"Worldwide Gross":11850214,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"May 13 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Matthew Vaughn","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":39857},{"Title":"Larry the Cable Guy: Health Inspector","US Gross":15680099,"Worldwide Gross":15680099,"US DVD Sales":13180936,"Production Budget":17000000,"Release Date":"Mar 24 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":6,"IMDB Rating":2.8,"IMDB Votes":7547},{"Title":"Little Children","US Gross":5463019,"Worldwide Gross":14763019,"US DVD Sales":3657245,"Production Budget":14000000,"Release Date":"Oct 06 2006","MPAA Rating":"R","Running Time min":136,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Todd Field","Rotten Tomatoes Rating":79,"IMDB Rating":7.8,"IMDB Votes":37162},{"Title":"Save the Last Dance","US Gross":91038276,"Worldwide Gross":131638276,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Jan 12 2001","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":53,"IMDB Rating":5.9,"IMDB Votes":20355},{"Title":"George A. Romero's Land of the Dead","US Gross":20700082,"Worldwide Gross":45900082,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jun 24 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"George A. Romero","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Left Behind","US Gross":4221341,"Worldwide Gross":4221341,"US DVD Sales":null,"Production Budget":18500000,"Release Date":"Feb 02 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Cloud Ten Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":43},{"Title":"Legion","US Gross":40122938,"Worldwide Gross":64622938,"US DVD Sales":16715657,"Production Budget":26000000,"Release Date":"Jan 22 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":5,"IMDB Votes":19962},{"Title":"I am Legend","US Gross":256393010,"Worldwide Gross":585055701,"US DVD Sales":129742540,"Production Budget":150000000,"Release Date":"Dec 14 2007","MPAA Rating":"PG-13","Running Time min":100,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Francis Lawrence","Rotten Tomatoes Rating":69,"IMDB Rating":7.1,"IMDB Votes":153631},{"Title":"Leatherheads","US Gross":31373938,"Worldwide Gross":40830862,"US DVD Sales":8871266,"Production Budget":58000000,"Release Date":"Apr 04 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Historical Fiction","Director":"George Clooney","Rotten Tomatoes Rating":52,"IMDB Rating":6.1,"IMDB Votes":14504},{"Title":"Life Before Her Eyes","US Gross":303439,"Worldwide Gross":303439,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Apr 18 2008","MPAA Rating":"R","Running Time min":90,"Distributor":"Magnolia Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Letters from Iwo Jima","US Gross":13756082,"Worldwide Gross":68756082,"US DVD Sales":13625847,"Production Budget":13000000,"Release Date":"Dec 20 2006","MPAA Rating":"R","Running Time min":141,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":91,"IMDB Rating":8.1,"IMDB Votes":56872},{"Title":"Life, or Something Like It","US Gross":14448589,"Worldwide Gross":14448589,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Apr 26 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Stephen Herek","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Last Holiday","US Gross":38399961,"Worldwide Gross":43343247,"US DVD Sales":29881643,"Production Budget":45000000,"Release Date":"Jan 13 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Wayne Wang","Rotten Tomatoes Rating":54,"IMDB Rating":6.3,"IMDB Votes":8060},{"Title":"The Hurricane","US Gross":50699241,"Worldwide Gross":73956241,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Dec 29 1999","MPAA Rating":"R","Running Time min":125,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Norman Jewison","Rotten Tomatoes Rating":83,"IMDB Rating":7.4,"IMDB Votes":32172},{"Title":"Liar Liar","US Gross":181410615,"Worldwide Gross":302710615,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Mar 21 1997","MPAA Rating":"PG-13","Running Time min":87,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Tom Shadyac","Rotten Tomatoes Rating":82,"IMDB Rating":6.7,"IMDB Votes":67798},{"Title":"Equilibrium","US Gross":1190018,"Worldwide Gross":5345869,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 06 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":37,"IMDB Rating":7.7,"IMDB Votes":86428},{"Title":"Chasing Liberty","US Gross":12189514,"Worldwide Gross":12291975,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Jan 09 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":5.8,"IMDB Votes":7855},{"Title":"The Libertine","US Gross":4835065,"Worldwide Gross":9448623,"US DVD Sales":2836487,"Production Budget":22000000,"Release Date":"Nov 23 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":16266},{"Title":"L.I.E.","US Gross":1138836,"Worldwide Gross":1138836,"US DVD Sales":null,"Production Budget":700000,"Release Date":"Sep 07 2001","MPAA Rating":"Open","Running Time min":null,"Distributor":"Lot 47 Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":7.2,"IMDB Votes":5122},{"Title":"The Life Aquatic with Steve Zissou","US Gross":24006726,"Worldwide Gross":34806726,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Dec 10 2004","MPAA Rating":"R","Running Time min":118,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Wes Anderson","Rotten Tomatoes Rating":53,"IMDB Rating":7.2,"IMDB Votes":57889},{"Title":"The Life of David Gale","US Gross":19694635,"Worldwide Gross":28920188,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 21 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Alan Parker","Rotten Tomatoes Rating":20,"IMDB Rating":7.3,"IMDB Votes":37628},{"Title":"Life","US Gross":64062587,"Worldwide Gross":73521587,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Apr 16 1999","MPAA Rating":"R","Running Time min":108,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ted Demme","Rotten Tomatoes Rating":50,"IMDB Rating":5.3,"IMDB Votes":99},{"Title":"Like Mike","US Gross":51432423,"Worldwide Gross":62432423,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jul 03 2002","MPAA Rating":"PG","Running Time min":99,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"John Schultz","Rotten Tomatoes Rating":56,"IMDB Rating":4.4,"IMDB Votes":4870},{"Title":"Lilo & Stitch","US Gross":145771527,"Worldwide Gross":245800000,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 21 2002","MPAA Rating":"PG","Running Time min":85,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":25611},{"Title":"Limbo","US Gross":2016687,"Worldwide Gross":2016687,"US DVD Sales":null,"Production Budget":8300000,"Release Date":"Jun 04 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Sayles","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":3855},{"Title":"Light It Up","US Gross":5871603,"Worldwide Gross":5871603,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Nov 10 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":5.4,"IMDB Votes":2257},{"Title":"Living Out Loud","US Gross":12905901,"Worldwide Gross":12905901,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Oct 30 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Richard LaGravenese","Rotten Tomatoes Rating":58,"IMDB Rating":6.5,"IMDB Votes":3040},{"Title":"The Lizzie McGuire Movie","US Gross":42734455,"Worldwide Gross":55534455,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"May 02 2003","MPAA Rating":"PG","Running Time min":94,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":4.7,"IMDB Votes":10199},{"Title":"Letters to Juliet","US Gross":53032453,"Worldwide Gross":68332453,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"May 14 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Summit Entertainment","Source":"Based on Factual Book/Article","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":6.3,"IMDB Votes":4576},{"Title":"Lucky Break","US Gross":54606,"Worldwide Gross":54606,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Apr 05 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Peter Cattaneo","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":1482},{"Title":"The Last King of Scotland","US Gross":17606684,"Worldwide Gross":48363516,"US DVD Sales":16836991,"Production Budget":6000000,"Release Date":"Sep 27 2006","MPAA Rating":"R","Running Time min":121,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Kevin MacDonald","Rotten Tomatoes Rating":87,"IMDB Rating":7.8,"IMDB Votes":54022},{"Title":"Lolita","US Gross":1147784,"Worldwide Gross":1147784,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jul 22 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Adrian Lyne","Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":15197},{"Title":"Love Lisa","US Gross":211724,"Worldwide Gross":211724,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Dec 30 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":4126},{"Title":"Little Miss Sunshine","US Gross":59891098,"Worldwide Gross":100523181,"US DVD Sales":55501748,"Production Budget":8000000,"Release Date":"Jul 26 2006","MPAA Rating":"R","Running Time min":101,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":91,"IMDB Rating":8,"IMDB Votes":151013},{"Title":"In the Land of Women","US Gross":11052958,"Worldwide Gross":14140402,"US DVD Sales":9876018,"Production Budget":10500000,"Release Date":"Apr 20 2007","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":6.7,"IMDB Votes":13550},{"Title":"Lions for Lambs","US Gross":14998070,"Worldwide Gross":63211088,"US DVD Sales":9203604,"Production Budget":35000000,"Release Date":"Nov 09 2007","MPAA Rating":"R","Running Time min":90,"Distributor":"United Artists","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Robert Redford","Rotten Tomatoes Rating":27,"IMDB Rating":6.2,"IMDB Votes":22264},{"Title":"London","US Gross":12667,"Worldwide Gross":12667,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Feb 10 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"IDP/Goldwyn/Roadside","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":181},{"Title":"How to Lose a Guy in 10 Days","US Gross":105807520,"Worldwide Gross":177079973,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 07 2003","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Donald Petrie","Rotten Tomatoes Rating":43,"IMDB Rating":6.1,"IMDB Votes":33866},{"Title":"Loser","US Gross":15464026,"Worldwide Gross":18250106,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jul 21 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Amy Heckerling","Rotten Tomatoes Rating":25,"IMDB Rating":5,"IMDB Votes":12877},{"Title":"The Losers","US Gross":23591432,"Worldwide Gross":23591432,"US DVD Sales":7360965,"Production Budget":25000000,"Release Date":"Apr 23 2010","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Sylvain White","Rotten Tomatoes Rating":48,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Lost City","US Gross":2484186,"Worldwide Gross":3650302,"US DVD Sales":null,"Production Budget":9600000,"Release Date":"Apr 28 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Andy Garcia","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":5790},{"Title":"Lost In Space","US Gross":69117629,"Worldwide Gross":136117629,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Apr 03 1998","MPAA Rating":"PG-13","Running Time min":131,"Distributor":"New Line","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Stephen Hopkins","Rotten Tomatoes Rating":26,"IMDB Rating":4.8,"IMDB Votes":31611},{"Title":"Lost and Found","US Gross":6552255,"Worldwide Gross":6552255,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Apr 23 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":4.8,"IMDB Votes":118},{"Title":"Lottery Ticket","US Gross":23602581,"Worldwide Gross":23602581,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Aug 20 2010","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Love and Basketball","US Gross":27441122,"Worldwide Gross":27709625,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 21 2000","MPAA Rating":"PG-13","Running Time min":125,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Gina Prince-Bythewood","Rotten Tomatoes Rating":81,"IMDB Rating":6.7,"IMDB Votes":5835},{"Title":"Love Jones","US Gross":12554569,"Worldwide Gross":12554569,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Mar 14 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":6.7,"IMDB Votes":1165},{"Title":"The Love Letter","US Gross":8322608,"Worldwide Gross":8322608,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"May 21 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5.1,"IMDB Votes":2446},{"Title":"Lovely and Amazing","US Gross":4210379,"Worldwide Gross":4695781,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Jun 28 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":3936},{"Title":"The Lord of the Rings: The Two Towers","US Gross":341784377,"Worldwide Gross":926284377,"US DVD Sales":null,"Production Budget":94000000,"Release Date":"Dec 18 2002","MPAA Rating":"PG-13","Running Time min":179,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Peter Jackson","Rotten Tomatoes Rating":null,"IMDB Rating":8.7,"IMDB Votes":326950},{"Title":"The Lord of the Rings: The Return of the King","US Gross":377027325,"Worldwide Gross":1133027325,"US DVD Sales":null,"Production Budget":94000000,"Release Date":"Dec 17 2003","MPAA Rating":"PG-13","Running Time min":201,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Peter Jackson","Rotten Tomatoes Rating":null,"IMDB Rating":8.8,"IMDB Votes":364077},{"Title":"The Lord of the Rings: The Fellowship of the Ring","US Gross":314776170,"Worldwide Gross":868621686,"US DVD Sales":null,"Production Budget":109000000,"Release Date":"Dec 19 2001","MPAA Rating":"PG-13","Running Time min":178,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Peter Jackson","Rotten Tomatoes Rating":null,"IMDB Rating":8.8,"IMDB Votes":387438},{"Title":"Lord of War","US Gross":24149632,"Worldwide Gross":62142629,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Sep 16 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Andrew Niccol","Rotten Tomatoes Rating":61,"IMDB Rating":7.7,"IMDB Votes":80124},{"Title":"Lock, Stock and Two Smoking Barrels","US Gross":3897569,"Worldwide Gross":25297569,"US DVD Sales":null,"Production Budget":1350000,"Release Date":"Mar 05 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Gramercy","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Guy Ritchie","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Last Shot","US Gross":463730,"Worldwide Gross":463730,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Sep 24 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Comedy","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":5.7,"IMDB Votes":2711},{"Title":"Lonesome Jim","US Gross":154187,"Worldwide Gross":154187,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Mar 24 2006","MPAA Rating":"R","Running Time min":91,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steve Buscemi","Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":4585},{"Title":"The Last Legion","US Gross":5932060,"Worldwide Gross":21439015,"US DVD Sales":null,"Production Budget":67000000,"Release Date":"Aug 17 2007","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Weinstein/Dimension","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":5.4,"IMDB Votes":12250},{"Title":"The Last Samurai","US Gross":111110575,"Worldwide Gross":456810575,"US DVD Sales":null,"Production Budget":120000000,"Release Date":"Dec 05 2003","MPAA Rating":"R","Running Time min":154,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Edward Zwick","Rotten Tomatoes Rating":65,"IMDB Rating":7.8,"IMDB Votes":106002},{"Title":"The Last Sin Eater","US Gross":388390,"Worldwide Gross":388390,"US DVD Sales":null,"Production Budget":2200000,"Release Date":"Feb 09 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":5.7,"IMDB Votes":1012},{"Title":"The Last Song","US Gross":62950384,"Worldwide Gross":75850384,"US DVD Sales":20035017,"Production Budget":20000000,"Release Date":"Mar 31 2010","MPAA Rating":"PG","Running Time min":108,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":3.9,"IMDB Votes":7210},{"Title":"Love Stinks","US Gross":2793776,"Worldwide Gross":2793776,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Sep 10 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Independent Artists","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":5.3,"IMDB Votes":3228},{"Title":"Lost in Translation","US Gross":44585453,"Worldwide Gross":106454000,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Sep 12 2003","MPAA Rating":"R","Running Time min":102,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sofia Coppola","Rotten Tomatoes Rating":94,"IMDB Rating":7.9,"IMDB Votes":130998},{"Title":"Last Orders","US Gross":2326407,"Worldwide Gross":2326407,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Feb 15 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Fred Schepisi","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":3463},{"Title":"Lost Souls","US Gross":16779636,"Worldwide Gross":31320293,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Oct 13 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":7,"IMDB Rating":4.5,"IMDB Votes":6639},{"Title":"The Last Station","US Gross":6616974,"Worldwide Gross":6616974,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jan 15 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":3465},{"Title":"The Lost World: Jurassic Park","US Gross":229086679,"Worldwide Gross":786686679,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"May 22 1997","MPAA Rating":"PG-13","Running Time min":134,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":77124},{"Title":"License to Wed","US Gross":43799818,"Worldwide Gross":70799818,"US DVD Sales":22782913,"Production Budget":35000000,"Release Date":"Jul 03 2007","MPAA Rating":"PG","Running Time min":90,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Ken Kwapis","Rotten Tomatoes Rating":7,"IMDB Rating":5.1,"IMDB Votes":15422},{"Title":"Looney Tunes: Back in Action","US Gross":20950820,"Worldwide Gross":54540662,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Nov 14 2003","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Short Film","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Joe Dante","Rotten Tomatoes Rating":57,"IMDB Rating":6,"IMDB Votes":8604},{"Title":"Letters to God","US Gross":2848587,"Worldwide Gross":2848587,"US DVD Sales":3346596,"Production Budget":3000000,"Release Date":"Apr 09 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Vivendi Entertainment","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.4,"IMDB Votes":839},{"Title":"Lethal Weapon 4","US Gross":130444603,"Worldwide Gross":285400000,"US DVD Sales":null,"Production Budget":140000000,"Release Date":"Jul 10 1998","MPAA Rating":"R","Running Time min":127,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Richard Donner","Rotten Tomatoes Rating":54,"IMDB Rating":6.4,"IMDB Votes":47846},{"Title":"Little Man","US Gross":58636047,"Worldwide Gross":101636047,"US DVD Sales":32799301,"Production Budget":64000000,"Release Date":"Jul 14 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Keenen Ivory Wayans","Rotten Tomatoes Rating":12,"IMDB Rating":5.7,"IMDB Votes":97},{"Title":"The Lucky Ones","US Gross":266967,"Worldwide Gross":266967,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Sep 26 2008","MPAA Rating":"R","Running Time min":104,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":7.1,"IMDB Votes":4719},{"Title":"Lucky You","US Gross":5755286,"Worldwide Gross":6521829,"US DVD Sales":853973,"Production Budget":55000000,"Release Date":"May 04 2007","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Curtis Hanson","Rotten Tomatoes Rating":28,"IMDB Rating":5.9,"IMDB Votes":9870},{"Title":"Luminarias","US Gross":428535,"Worldwide Gross":428535,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"May 05 2000","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.3,"IMDB Votes":467},{"Title":"Se jie","US Gross":4604982,"Worldwide Gross":65696051,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Sep 28 2007","MPAA Rating":"NC-17","Running Time min":156,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Ang Lee","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":15440},{"Title":"Luther","US Gross":5781086,"Worldwide Gross":29465190,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 26 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"RS Entertainment","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":6.8,"IMDB Votes":5909},{"Title":"Love Actually","US Gross":59472278,"Worldwide Gross":247967903,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Nov 07 2003","MPAA Rating":"R","Running Time min":135,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":7.9,"IMDB Votes":97921},{"Title":"The Little Vampire","US Gross":13555988,"Worldwide Gross":13555988,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Oct 27 2000","MPAA Rating":"PG","Running Time min":null,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":53,"IMDB Rating":5.3,"IMDB Votes":2202},{"Title":"The Lovely Bones","US Gross":44028238,"Worldwide Gross":94702568,"US DVD Sales":8474087,"Production Budget":65000000,"Release Date":"Dec 11 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Peter Jackson","Rotten Tomatoes Rating":32,"IMDB Rating":6.6,"IMDB Votes":32049},{"Title":"Herbie: Fully Loaded","US Gross":66010682,"Worldwide Gross":144110682,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 22 2005","MPAA Rating":"G","Running Time min":95,"Distributor":"Walt Disney Pictures","Source":null,"Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Angela Robinson","Rotten Tomatoes Rating":42,"IMDB Rating":4.7,"IMDB Votes":14178},{"Title":"For Love of the Game","US Gross":35188640,"Worldwide Gross":46112640,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Sep 17 1999","MPAA Rating":"PG-13","Running Time min":137,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sam Raimi","Rotten Tomatoes Rating":64,"IMDB Rating":6.2,"IMDB Votes":13612},{"Title":"Leaves of Grass","US Gross":20987,"Worldwide Gross":20987,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Apr 02 2010","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Tim Blake Nelson","Rotten Tomatoes Rating":50,"IMDB Rating":6.9,"IMDB Votes":4541},{"Title":"Love Happens","US Gross":22965110,"Worldwide Gross":30206355,"US DVD Sales":7174988,"Production Budget":18000000,"Release Date":"Sep 18 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":5.5,"IMDB Votes":6111},{"Title":"Just Visiting","US Gross":4777007,"Worldwide Gross":16172200,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Apr 06 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5.6,"IMDB Votes":6923},{"Title":"Das Leben der Anderen","US Gross":11284657,"Worldwide Gross":75284657,"US DVD Sales":4225830,"Production Budget":2000000,"Release Date":"Feb 09 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8.5,"IMDB Votes":75070},{"Title":"Love Ranch","US Gross":134904,"Worldwide Gross":134904,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jun 30 2010","MPAA Rating":"R","Running Time min":117,"Distributor":null,"Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Taylor Hackford","Rotten Tomatoes Rating":13,"IMDB Rating":5.6,"IMDB Votes":163},{"Title":"La MÙme","US Gross":10299782,"Worldwide Gross":83499782,"US DVD Sales":null,"Production Budget":15500000,"Release Date":"Jun 08 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Picturehouse","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":21412},{"Title":"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe","US Gross":291710957,"Worldwide Gross":748806957,"US DVD Sales":352582053,"Production Budget":180000000,"Release Date":"Dec 09 2005","MPAA Rating":"PG","Running Time min":140,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Andrew Adamson","Rotten Tomatoes Rating":76,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Longest Yard","US Gross":158119460,"Worldwide Gross":190320568,"US DVD Sales":null,"Production Budget":82000000,"Release Date":"May 27 2005","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Segal","Rotten Tomatoes Rating":31,"IMDB Rating":6.2,"IMDB Votes":39752},{"Title":"Mad City","US Gross":10561038,"Worldwide Gross":10561038,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Nov 07 1997","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Costa-Gavras","Rotten Tomatoes Rating":37,"IMDB Rating":6.1,"IMDB Votes":9611},{"Title":"Made","US Gross":5308707,"Worldwide Gross":5476060,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jul 13 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":70,"IMDB Rating":6.3,"IMDB Votes":9720},{"Title":"Madagascar: Escape 2 Africa","US Gross":180010950,"Worldwide Gross":599516844,"US DVD Sales":108725804,"Production Budget":150000000,"Release Date":"Nov 07 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Eric Darnell","Rotten Tomatoes Rating":64,"IMDB Rating":6.8,"IMDB Votes":30285},{"Title":"Madagascar","US Gross":193595521,"Worldwide Gross":532680671,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"May 27 2005","MPAA Rating":"PG","Running Time min":83,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Eric Darnell","Rotten Tomatoes Rating":55,"IMDB Rating":6.6,"IMDB Votes":56480},{"Title":"Mad Hot Ballroom","US Gross":8117961,"Worldwide Gross":9079042,"US DVD Sales":null,"Production Budget":500000,"Release Date":"May 13 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":7.4,"IMDB Votes":2562},{"Title":"Madison","US Gross":517262,"Worldwide Gross":517262,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Apr 22 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":536},{"Title":"Jane Austen's Mafia","US Gross":19843795,"Worldwide Gross":30143795,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jul 24 1998","MPAA Rating":"PG-13","Running Time min":83,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jim Abrahams","Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":7706},{"Title":"Paul Blart: Mall Cop","US Gross":146336178,"Worldwide Gross":180449670,"US DVD Sales":53105030,"Production Budget":26000000,"Release Date":"Jan 16 2009","MPAA Rating":"PG","Running Time min":91,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steve Carr","Rotten Tomatoes Rating":35,"IMDB Rating":5.3,"IMDB Votes":23753},{"Title":"A Man Apart","US Gross":26500000,"Worldwide Gross":44114828,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Apr 04 2003","MPAA Rating":"R","Running Time min":110,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"F. Gary Gray","Rotten Tomatoes Rating":11,"IMDB Rating":5.7,"IMDB Votes":14953},{"Title":"Man on Fire","US Gross":77906816,"Worldwide Gross":118706816,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Apr 23 2004","MPAA Rating":"R","Running Time min":146,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":38,"IMDB Rating":7.7,"IMDB Votes":75256},{"Title":"Man of the House","US Gross":19699706,"Worldwide Gross":22099706,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 25 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Stephen Herek","Rotten Tomatoes Rating":8,"IMDB Rating":4.2,"IMDB Votes":3432},{"Title":"Man on the Moon","US Gross":34580635,"Worldwide Gross":47407635,"US DVD Sales":null,"Production Budget":52000000,"Release Date":"Dec 22 1999","MPAA Rating":"R","Running Time min":118,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Milos Forman","Rotten Tomatoes Rating":62,"IMDB Rating":7.4,"IMDB Votes":49481},{"Title":"The Man Who Knew Too Little","US Gross":13801755,"Worldwide Gross":13801755,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Nov 14 1997","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jon Amiel","Rotten Tomatoes Rating":40,"IMDB Rating":6.3,"IMDB Votes":11307},{"Title":"Marci X","US Gross":1646664,"Worldwide Gross":1646664,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Aug 22 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Richard Benjamin","Rotten Tomatoes Rating":10,"IMDB Rating":2.4,"IMDB Votes":3449},{"Title":"Married Life","US Gross":1506998,"Worldwide Gross":1506998,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Mar 07 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":4358},{"Title":"The Marine","US Gross":18844784,"Worldwide Gross":22165608,"US DVD Sales":26786370,"Production Budget":15000000,"Release Date":"Oct 13 2006","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":4.5,"IMDB Votes":13157},{"Title":"Son of the Mask","US Gross":17018422,"Worldwide Gross":59918422,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Feb 18 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":6,"IMDB Rating":2,"IMDB Votes":15800},{"Title":"The Matador","US Gross":12578537,"Worldwide Gross":17290120,"US DVD Sales":5309636,"Production Budget":10000000,"Release Date":"Dec 30 2005","MPAA Rating":"R","Running Time min":74,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":76,"IMDB Rating":6.9,"IMDB Votes":25035},{"Title":"The Matrix","US Gross":171479930,"Worldwide Gross":460279930,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Mar 31 1999","MPAA Rating":"R","Running Time min":136,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Andy Wachowski","Rotten Tomatoes Rating":86,"IMDB Rating":8.7,"IMDB Votes":380934},{"Title":"Max Keeble's Big Move","US Gross":17292381,"Worldwide Gross":17292381,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Oct 05 2001","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Tim Hill","Rotten Tomatoes Rating":26,"IMDB Rating":5.1,"IMDB Votes":2490},{"Title":"May","US Gross":145540,"Worldwide Gross":145540,"US DVD Sales":null,"Production Budget":1750000,"Release Date":"Feb 07 2003","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":41},{"Title":"Murderball","US Gross":1531154,"Worldwide Gross":1722277,"US DVD Sales":null,"Production Budget":350000,"Release Date":"Jul 08 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"ThinkFilm","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":98,"IMDB Rating":7.8,"IMDB Votes":5699},{"Title":"Vicky Cristina Barcelona","US Gross":23213577,"Worldwide Gross":77213577,"US DVD Sales":8276490,"Production Budget":16000000,"Release Date":"Aug 15 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":82,"IMDB Rating":7.4,"IMDB Votes":51760},{"Title":"My Big Fat Greek Wedding","US Gross":241438208,"Worldwide Gross":368744044,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Apr 19 2002","MPAA Rating":"PG","Running Time min":95,"Distributor":"IFC Films","Source":"Based on Play","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Joel Zwick","Rotten Tomatoes Rating":75,"IMDB Rating":6.6,"IMDB Votes":46548},{"Title":"My Best Friend's Girl","US Gross":19219250,"Worldwide Gross":34787111,"US DVD Sales":18449619,"Production Budget":20000000,"Release Date":"Sep 19 2008","MPAA Rating":"R","Running Time min":103,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Howard Deutch","Rotten Tomatoes Rating":15,"IMDB Rating":5.8,"IMDB Votes":14617},{"Title":"Monkeybone","US Gross":5409517,"Worldwide Gross":5409517,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Feb 23 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":4.5,"IMDB Votes":8211},{"Title":"Meet the Browns","US Gross":41975388,"Worldwide Gross":41975388,"US DVD Sales":18271961,"Production Budget":20000000,"Release Date":"Mar 21 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Tyler Perry","Rotten Tomatoes Rating":30,"IMDB Rating":3.1,"IMDB Votes":3362},{"Title":"My Bloody Valentine","US Gross":51545952,"Worldwide Gross":98817028,"US DVD Sales":20831900,"Production Budget":14000000,"Release Date":"Jan 16 2009","MPAA Rating":"R","Running Time min":101,"Distributor":"Lionsgate","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":18037},{"Title":"Wu ji","US Gross":669625,"Worldwide Gross":35869934,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"May 05 2006","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Warner Independent","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":5733},{"Title":"McHale's Navy","US Gross":4408420,"Worldwide Gross":4408420,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Apr 18 1997","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":3,"IMDB Rating":3.9,"IMDB Votes":3466},{"Title":"The Martian Child","US Gross":7500310,"Worldwide Gross":9076823,"US DVD Sales":7705880,"Production Budget":27000000,"Release Date":"Nov 02 2007","MPAA Rating":"PG","Running Time min":107,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Manchurian Candidate","US Gross":65948711,"Worldwide Gross":96148711,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jul 30 2004","MPAA Rating":"R","Running Time min":129,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"Jonathan Demme","Rotten Tomatoes Rating":81,"IMDB Rating":6.7,"IMDB Votes":36553},{"Title":"Mickey Blue Eyes","US Gross":33864342,"Worldwide Gross":53864342,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 20 1999","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":5.7,"IMDB Votes":16646},{"Title":"Michael Clayton","US Gross":49033882,"Worldwide Gross":92987651,"US DVD Sales":18802372,"Production Budget":21500000,"Release Date":"Oct 05 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Tony Gilroy","Rotten Tomatoes Rating":90,"IMDB Rating":7.5,"IMDB Votes":59493},{"Title":"Master and Commander: The Far Side of the World","US Gross":93926386,"Worldwide Gross":209486484,"US DVD Sales":null,"Production Budget":135000000,"Release Date":"Nov 14 2003","MPAA Rating":"PG-13","Running Time min":138,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Peter Weir","Rotten Tomatoes Rating":85,"IMDB Rating":7.5,"IMDB Votes":63632},{"Title":"Nanny McPhee and the Big Bang","US Gross":27776620,"Worldwide Gross":90676620,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Aug 20 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":2326},{"Title":"Nanny McPhee","US Gross":47279279,"Worldwide Gross":122540909,"US DVD Sales":42041450,"Production Budget":25000000,"Release Date":"Jan 27 2006","MPAA Rating":"PG","Running Time min":91,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":73,"IMDB Rating":6.7,"IMDB Votes":13391},{"Title":"Mean Creek","US Gross":603951,"Worldwide Gross":967749,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Aug 20 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":14472},{"Title":"The Medallion","US Gross":22108977,"Worldwide Gross":22108977,"US DVD Sales":null,"Production Budget":41000000,"Release Date":"Aug 22 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":18,"IMDB Rating":4.7,"IMDB Votes":10121},{"Title":"Meet Dave","US Gross":11803254,"Worldwide Gross":50648806,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jul 11 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Brian Robbins","Rotten Tomatoes Rating":19,"IMDB Rating":4.8,"IMDB Votes":13381},{"Title":"Million Dollar Baby","US Gross":100492203,"Worldwide Gross":216763646,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 15 2004","MPAA Rating":"PG-13","Running Time min":132,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":91,"IMDB Rating":8.2,"IMDB Votes":141212},{"Title":"Madea Goes To Jail","US Gross":90508336,"Worldwide Gross":90508336,"US DVD Sales":27100919,"Production Budget":17500000,"Release Date":"Feb 20 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Tyler Perry","Rotten Tomatoes Rating":26,"IMDB Rating":3.1,"IMDB Votes":5468},{"Title":"Made of Honor","US Gross":46012734,"Worldwide Gross":105508112,"US DVD Sales":14330761,"Production Budget":40000000,"Release Date":"May 02 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Paul Weiland","Rotten Tomatoes Rating":14,"IMDB Rating":5.5,"IMDB Votes":15260},{"Title":"Mean Girls","US Gross":86047227,"Worldwide Gross":128947227,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Apr 30 2004","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Mark Waters","Rotten Tomatoes Rating":83,"IMDB Rating":7,"IMDB Votes":63607},{"Title":"Mean Machine","US Gross":92723,"Worldwide Gross":92723,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Feb 22 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":12754},{"Title":"Meet the Deedles","US Gross":4356126,"Worldwide Gross":4356126,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Mar 27 1998","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":4,"IMDB Rating":3.4,"IMDB Votes":1379},{"Title":"Me, Myself & Irene","US Gross":90570999,"Worldwide Gross":149270999,"US DVD Sales":null,"Production Budget":51000000,"Release Date":"Jun 23 2000","MPAA Rating":"R","Running Time min":116,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Bobby Farrelly","Rotten Tomatoes Rating":48,"IMDB Rating":6.9,"IMDB Votes":215},{"Title":"Memoirs of a Geisha","US Gross":57010853,"Worldwide Gross":161510853,"US DVD Sales":32837435,"Production Budget":85000000,"Release Date":"Dec 09 2005","MPAA Rating":"PG-13","Running Time min":145,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Rob Marshall","Rotten Tomatoes Rating":36,"IMDB Rating":7.1,"IMDB Votes":38695},{"Title":"Men in Black","US Gross":250690539,"Worldwide Gross":587790539,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jul 01 1997","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Barry Sonnenfeld","Rotten Tomatoes Rating":91,"IMDB Rating":7,"IMDB Votes":119704},{"Title":"Men of Honor","US Gross":48814909,"Worldwide Gross":82339483,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Nov 10 2000","MPAA Rating":"R","Running Time min":128,"Distributor":"20th Century Fox","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":41,"IMDB Rating":6.8,"IMDB Votes":30630},{"Title":"Memento","US Gross":25544867,"Worldwide Gross":39665950,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Mar 16 2001","MPAA Rating":"R","Running Time min":113,"Distributor":"Newmarket Films","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Christopher Nolan","Rotten Tomatoes Rating":null,"IMDB Rating":8.7,"IMDB Votes":274524},{"Title":"Mercury Rising","US Gross":32983332,"Worldwide Gross":32983332,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Apr 03 1998","MPAA Rating":"R","Running Time min":112,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Harold Becker","Rotten Tomatoes Rating":17,"IMDB Rating":5.8,"IMDB Votes":21449},{"Title":"Mercy Streets","US Gross":173599,"Worldwide Gross":173599,"US DVD Sales":null,"Production Budget":600000,"Release Date":"Oct 31 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":4.9,"IMDB Votes":307},{"Title":"Joyeux NoÎl","US Gross":1054361,"Worldwide Gross":1054361,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Mar 03 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":9363},{"Title":"Message in a Bottle","US Gross":52880016,"Worldwide Gross":52880016,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Feb 12 1999","MPAA Rating":"PG-13","Running Time min":132,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":31,"IMDB Rating":5.6,"IMDB Votes":13108},{"Title":"Meet Joe Black","US Gross":44650003,"Worldwide Gross":44650003,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Nov 13 1998","MPAA Rating":"PG-13","Running Time min":154,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Martin Brest","Rotten Tomatoes Rating":50,"IMDB Rating":6.9,"IMDB Votes":56067},{"Title":"Maria Full of Grace","US Gross":6529624,"Worldwide Gross":9892434,"US DVD Sales":null,"Production Budget":3200000,"Release Date":"Jul 16 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":16134},{"Title":"Megiddo: Omega Code 2","US Gross":6047691,"Worldwide Gross":6047691,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Sep 21 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"8X Entertainment","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Magnolia","US Gross":22450975,"Worldwide Gross":48446802,"US DVD Sales":null,"Production Budget":37000000,"Release Date":"Dec 17 1999","MPAA Rating":"R","Running Time min":188,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Paul Thomas Anderson","Rotten Tomatoes Rating":83,"IMDB Rating":8,"IMDB Votes":121540},{"Title":"The Men Who Stare at Goats","US Gross":32428195,"Worldwide Gross":67348218,"US DVD Sales":8155901,"Production Budget":24000000,"Release Date":"Nov 06 2009","MPAA Rating":"R","Running Time min":93,"Distributor":"Overture Films","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Grant Heslov","Rotten Tomatoes Rating":53,"IMDB Rating":6.4,"IMDB Votes":33763},{"Title":"Marilyn Hotchkiss' Ballroom Dancing and Charm School","US Gross":349132,"Worldwide Gross":399114,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Mar 31 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"IDP/Goldwyn/Roadside","Source":"Remake","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":1351},{"Title":"Men in Black 2","US Gross":190418803,"Worldwide Gross":441818803,"US DVD Sales":null,"Production Budget":140000000,"Release Date":"Jul 03 2002","MPAA Rating":"PG-13","Running Time min":88,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Barry Sonnenfeld","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":467},{"Title":"Micmacs","US Gross":1237269,"Worldwide Gross":11734498,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"May 28 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Jean-Pierre Jeunet","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The House of Mirth","US Gross":3041803,"Worldwide Gross":3041803,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 22 2000","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":6.8,"IMDB Votes":4489},{"Title":"Miss Congeniality 2: Armed and Fabulous","US Gross":48478006,"Worldwide Gross":101382396,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Mar 24 2005","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"John Pasquin","Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":14297},{"Title":"Mission: Impossible 2","US Gross":215409889,"Worldwide Gross":546209889,"US DVD Sales":null,"Production Budget":120000000,"Release Date":"May 24 2000","MPAA Rating":"PG-13","Running Time min":124,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Woo","Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":86222},{"Title":"Mission: Impossible III","US Gross":133501348,"Worldwide Gross":397501348,"US DVD Sales":49824367,"Production Budget":150000000,"Release Date":"May 05 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"J.J. Abrams","Rotten Tomatoes Rating":70,"IMDB Rating":6.9,"IMDB Votes":74174},{"Title":"Miss Congeniality","US Gross":106807667,"Worldwide Gross":212100000,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Dec 22 2000","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Donald Petrie","Rotten Tomatoes Rating":41,"IMDB Rating":6.1,"IMDB Votes":42323},{"Title":"The Missing","US Gross":26900336,"Worldwide Gross":38253433,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Nov 26 2003","MPAA Rating":"R","Running Time min":137,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Ron Howard","Rotten Tomatoes Rating":59,"IMDB Rating":7.4,"IMDB Votes":19068},{"Title":"Mighty Joe Young","US Gross":50632037,"Worldwide Gross":50632037,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Dec 25 1998","MPAA Rating":"PG","Running Time min":114,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":52,"IMDB Rating":5.4,"IMDB Votes":9187},{"Title":"The Majestic","US Gross":27796042,"Worldwide Gross":37306334,"US DVD Sales":null,"Production Budget":72000000,"Release Date":"Dec 21 2001","MPAA Rating":"PG","Running Time min":153,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Frank Darabont","Rotten Tomatoes Rating":41,"IMDB Rating":6.8,"IMDB Votes":24809},{"Title":"Martin Lawrence Live: RunTelDat","US Gross":19184820,"Worldwide Gross":19184820,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Aug 02 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Concert/Performance","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":1166},{"Title":"Malibu's Most Wanted","US Gross":34308901,"Worldwide Gross":34499204,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 18 2003","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":4.8,"IMDB Votes":8159},{"Title":"Must Love Dogs","US Gross":43894863,"Worldwide Gross":58894863,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Jul 29 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":5.9,"IMDB Votes":13491},{"Title":"My Life Without Me","US Gross":432360,"Worldwide Gross":9476113,"US DVD Sales":null,"Production Budget":2500000,"Release Date":"Sep 26 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":7.6,"IMDB Votes":11022},{"Title":"Mission to Mars","US Gross":60874615,"Worldwide Gross":106000000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Mar 10 2000","MPAA Rating":"PG","Running Time min":116,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":24,"IMDB Rating":5.1,"IMDB Votes":32449},{"Title":"MirrorMask","US Gross":864959,"Worldwide Gross":864959,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Sep 30 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Samuel Goldwyn Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":53,"IMDB Rating":7,"IMDB Votes":10398},{"Title":"Mumford","US Gross":4559569,"Worldwide Gross":4559569,"US DVD Sales":null,"Production Budget":28700000,"Release Date":"Sep 24 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Lawrence Kasdan","Rotten Tomatoes Rating":55,"IMDB Rating":6.7,"IMDB Votes":6303},{"Title":"Mindhunters","US Gross":4476235,"Worldwide Gross":16566235,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"May 13 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Renny Harlin","Rotten Tomatoes Rating":26,"IMDB Rating":6.2,"IMDB Votes":23357},{"Title":"Captain Corelli's Mandolin","US Gross":25528495,"Worldwide Gross":62097495,"US DVD Sales":null,"Production Budget":57000000,"Release Date":"Aug 17 2001","MPAA Rating":"R","Running Time min":129,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"John Madden","Rotten Tomatoes Rating":29,"IMDB Rating":5.7,"IMDB Votes":14706},{"Title":"Manderlay","US Gross":74205,"Worldwide Gross":543306,"US DVD Sales":null,"Production Budget":14200000,"Release Date":"Jan 27 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Lars Von Trier","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":8986},{"Title":"Midnight in the Garden of Good and Evil","US Gross":25078937,"Worldwide Gross":25078937,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 21 1997","MPAA Rating":"R","Running Time min":155,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":50,"IMDB Rating":6.5,"IMDB Votes":18960},{"Title":"The Man in the Iron Mask","US Gross":56968169,"Worldwide Gross":56968169,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Mar 13 1998","MPAA Rating":"PG-13","Running Time min":132,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":31,"IMDB Rating":7.2,"IMDB Votes":561},{"Title":"Monster-in-Law","US Gross":82931301,"Worldwide Gross":155931301,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"May 13 2005","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Robert Luketic","Rotten Tomatoes Rating":16,"IMDB Rating":5.1,"IMDB Votes":16320},{"Title":"Moonlight Mile","US Gross":6830957,"Worldwide Gross":6830957,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Sep 27 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Brad Silberling","Rotten Tomatoes Rating":62,"IMDB Rating":6.7,"IMDB Votes":8346},{"Title":"Mona Lisa Smile","US Gross":63803100,"Worldwide Gross":121598309,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Dec 19 2003","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Mike Newell","Rotten Tomatoes Rating":35,"IMDB Rating":6.1,"IMDB Votes":23657},{"Title":"Monster's Ball","US Gross":31273922,"Worldwide Gross":44873922,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 26 2001","MPAA Rating":"R","Running Time min":111,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Marc Forster","Rotten Tomatoes Rating":85,"IMDB Rating":7.2,"IMDB Votes":38023},{"Title":"MoliËre","US Gross":635733,"Worldwide Gross":791154,"US DVD Sales":null,"Production Budget":21600000,"Release Date":"Jul 27 2007","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":"Comedy","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":265},{"Title":"Molly","US Gross":17396,"Worldwide Gross":17396,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Oct 22 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":5.6,"IMDB Votes":1563},{"Title":"Monster House","US Gross":73661010,"Worldwide Gross":140161010,"US DVD Sales":71719512,"Production Budget":75000000,"Release Date":"Jul 21 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Gil Kenan","Rotten Tomatoes Rating":74,"IMDB Rating":6.8,"IMDB Votes":20689},{"Title":"Mononoke-hime","US Gross":2374107,"Worldwide Gross":150350000,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 29 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Hayao Miyazaki","Rotten Tomatoes Rating":null,"IMDB Rating":8.3,"IMDB Votes":65773},{"Title":"Monsoon Wedding","US Gross":13876974,"Worldwide Gross":13876974,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Feb 22 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"USA Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Mira Nair","Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":11314},{"Title":"Monster","US Gross":34469210,"Worldwide Gross":58003694,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Dec 24 2003","MPAA Rating":"R","Running Time min":109,"Distributor":"Newmarket Films","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":82,"IMDB Rating":7.4,"IMDB Votes":39908},{"Title":"Monsters, Inc.","US Gross":255870172,"Worldwide Gross":526864330,"US DVD Sales":null,"Production Budget":115000000,"Release Date":"Nov 02 2001","MPAA Rating":"G","Running Time min":95,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"David Silverman","Rotten Tomatoes Rating":95,"IMDB Rating":7.4,"IMDB Votes":39908},{"Title":"Mondays in the Sun","US Gross":146402,"Worldwide Gross":146402,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jul 25 2003","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Money Talks","US Gross":41076865,"Worldwide Gross":41076865,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Aug 22 1997","MPAA Rating":"R","Running Time min":95,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Brett Ratner","Rotten Tomatoes Rating":17,"IMDB Rating":5.7,"IMDB Votes":8640},{"Title":"Moon","US Gross":5010163,"Worldwide Gross":6934829,"US DVD Sales":1978111,"Production Budget":5000000,"Release Date":"Jun 12 2009","MPAA Rating":"R","Running Time min":97,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":55251},{"Title":"Welcome to Mooseport","US Gross":14469428,"Worldwide Gross":14469428,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Feb 20 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Donald Petrie","Rotten Tomatoes Rating":13,"IMDB Rating":5.2,"IMDB Votes":6907},{"Title":"Morvern Callar","US Gross":267194,"Worldwide Gross":267194,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Dec 20 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":84,"IMDB Rating":6.4,"IMDB Votes":3831},{"Title":"The Mothman Prophecies","US Gross":35228696,"Worldwide Gross":54639865,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Jan 25 2002","MPAA Rating":"PG-13","Running Time min":119,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":52,"IMDB Rating":6.5,"IMDB Votes":26948},{"Title":"Moulin Rouge","US Gross":57386369,"Worldwide Gross":179213196,"US DVD Sales":null,"Production Budget":53000000,"Release Date":"May 18 2001","MPAA Rating":"PG-13","Running Time min":123,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Baz Luhrmann","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":2105},{"Title":"Me and Orson Welles","US Gross":1190003,"Worldwide Gross":1190003,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Nov 25 2009","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Freestyle Releasing","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Richard Linklater","Rotten Tomatoes Rating":84,"IMDB Rating":7.1,"IMDB Votes":2417},{"Title":"Meet the Fockers","US Gross":279167575,"Worldwide Gross":516567575,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 22 2004","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jay Roach","Rotten Tomatoes Rating":38,"IMDB Rating":6.4,"IMDB Votes":69613},{"Title":"Meet the Parents","US Gross":166225040,"Worldwide Gross":301500000,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Oct 06 2000","MPAA Rating":"PG-13","Running Time min":108,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jay Roach","Rotten Tomatoes Rating":84,"IMDB Rating":7,"IMDB Votes":84924},{"Title":"Mr. 3000","US Gross":21800302,"Worldwide Gross":21827296,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 17 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":5.6,"IMDB Votes":6202},{"Title":"The Miracle","US Gross":64378093,"Worldwide Gross":64445708,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Feb 06 2004","MPAA Rating":"PG","Running Time min":92,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":126},{"Title":"Minority Report","US Gross":132024714,"Worldwide Gross":358824714,"US DVD Sales":null,"Production Budget":102000000,"Release Date":"Jun 21 2002","MPAA Rating":"PG-13","Running Time min":145,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":91,"IMDB Rating":7.7,"IMDB Votes":135142},{"Title":"The Fantastic Mr. Fox","US Gross":20999103,"Worldwide Gross":46467231,"US DVD Sales":7571489,"Production Budget":40000000,"Release Date":"Nov 13 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Wes Anderson","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Mr. Nice Guy","US Gross":12716953,"Worldwide Gross":31716953,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Mar 20 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Sammo Hung Kam-Bo","Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":174},{"Title":"Mrs. Henderson Presents","US Gross":11036366,"Worldwide Gross":14466366,"US DVD Sales":5796061,"Production Budget":20000000,"Release Date":"Dec 09 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Stephen Frears","Rotten Tomatoes Rating":66,"IMDB Rating":7.1,"IMDB Votes":8831},{"Title":"Mortal Kombat: Annihilation","US Gross":35927406,"Worldwide Gross":51327406,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Nov 21 1997","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"New Line","Source":"Based on Game","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":7,"IMDB Rating":3.2,"IMDB Votes":16672},{"Title":"Marvin's Room","US Gross":12803305,"Worldwide Gross":12803305,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Dec 20 1996","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":6.6,"IMDB Votes":9684},{"Title":"Miracle at St. Anna","US Gross":7916887,"Worldwide Gross":9110458,"US DVD Sales":9178061,"Production Budget":45000000,"Release Date":"Sep 26 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":34,"IMDB Rating":5.9,"IMDB Votes":8559},{"Title":"Mouse Hunt","US Gross":61894591,"Worldwide Gross":61894591,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Dec 19 1997","MPAA Rating":"PG","Running Time min":95,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Gore Verbinski","Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":14934},{"Title":"Masked and Anonymous","US Gross":533344,"Worldwide Gross":533344,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Jul 24 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":"Larry Charles","Rotten Tomatoes Rating":25,"IMDB Rating":5.3,"IMDB Votes":2762},{"Title":"Miss Potter","US Gross":3005605,"Worldwide Gross":35025861,"US DVD Sales":7821056,"Production Budget":30000000,"Release Date":"Dec 29 2006","MPAA Rating":"PG","Running Time min":92,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Chris Noonan","Rotten Tomatoes Rating":66,"IMDB Rating":7.1,"IMDB Votes":10236},{"Title":"The Missing Person","US Gross":17896,"Worldwide Gross":17896,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Nov 20 2009","MPAA Rating":null,"Running Time min":null,"Distributor":"Strand","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":416},{"Title":"Meet the Spartans","US Gross":38233676,"Worldwide Gross":84646831,"US DVD Sales":12248893,"Production Budget":30000000,"Release Date":"Jan 25 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Jason Friedberg","Rotten Tomatoes Rating":2,"IMDB Rating":2.4,"IMDB Votes":47281},{"Title":"Mystery, Alaska","US Gross":8891623,"Worldwide Gross":8891623,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Oct 01 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jay Roach","Rotten Tomatoes Rating":37,"IMDB Rating":5.5,"IMDB Votes":1338},{"Title":"Match Point","US Gross":23089926,"Worldwide Gross":87989926,"US DVD Sales":7210408,"Production Budget":15000000,"Release Date":"Dec 28 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":77,"IMDB Rating":7.8,"IMDB Votes":65704},{"Title":"Mother and Child","US Gross":1105266,"Worldwide Gross":1105266,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"May 07 2010","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":900},{"Title":"A Mighty Heart","US Gross":9176787,"Worldwide Gross":18932117,"US DVD Sales":5455645,"Production Budget":15000000,"Release Date":"Jun 22 2007","MPAA Rating":"R","Running Time min":100,"Distributor":"Paramount Vantage","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Michael Winterbottom","Rotten Tomatoes Rating":78,"IMDB Rating":6.7,"IMDB Votes":13881},{"Title":"Metropolis (2002)","US Gross":673414,"Worldwide Gross":673414,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jan 25 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Matrix Reloaded","US Gross":281553689,"Worldwide Gross":738576929,"US DVD Sales":null,"Production Budget":127000000,"Release Date":"May 15 2003","MPAA Rating":"R","Running Time min":138,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Andy Wachowski","Rotten Tomatoes Rating":73,"IMDB Rating":7.1,"IMDB Votes":148874},{"Title":"The Matrix Revolutions","US Gross":139259759,"Worldwide Gross":424259759,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Nov 05 2003","MPAA Rating":"R","Running Time min":129,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Andy Wachowski","Rotten Tomatoes Rating":37,"IMDB Rating":6.5,"IMDB Votes":123347},{"Title":"The Mudge Boy","US Gross":62544,"Worldwide Gross":62544,"US DVD Sales":null,"Production Budget":800000,"Release Date":"May 07 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Strand","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":1576},{"Title":"Mulan","US Gross":120620254,"Worldwide Gross":303500000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jun 19 1998","MPAA Rating":"G","Running Time min":88,"Distributor":"Walt Disney Pictures","Source":"Traditional/Legend/Fairytale","Major Genre":"Adventure","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":86,"IMDB Rating":7.2,"IMDB Votes":34256},{"Title":"Mulholland Drive","US Gross":7219578,"Worldwide Gross":11919578,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 08 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"David Lynch","Rotten Tomatoes Rating":81,"IMDB Rating":7.9,"IMDB Votes":103026},{"Title":"The Mummy","US Gross":155385488,"Worldwide Gross":416385488,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"May 07 1999","MPAA Rating":"PG-13","Running Time min":124,"Distributor":"Universal","Source":"Remake","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Stephen Sommers","Rotten Tomatoes Rating":54,"IMDB Rating":6.8,"IMDB Votes":95658},{"Title":"The Mummy Returns","US Gross":202007640,"Worldwide Gross":433007640,"US DVD Sales":null,"Production Budget":98000000,"Release Date":"May 04 2001","MPAA Rating":"PG-13","Running Time min":129,"Distributor":"Universal","Source":"Remake","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Stephen Sommers","Rotten Tomatoes Rating":47,"IMDB Rating":6.2,"IMDB Votes":68084},{"Title":"The Mummy: Tomb of the Dragon Emperor","US Gross":102491776,"Worldwide Gross":397912118,"US DVD Sales":43147886,"Production Budget":175000000,"Release Date":"Aug 01 2008","MPAA Rating":"PG-13","Running Time min":111,"Distributor":"Universal","Source":"Remake","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Rob Cohen","Rotten Tomatoes Rating":13,"IMDB Rating":5.1,"IMDB Votes":41570},{"Title":"Munich","US Gross":47379090,"Worldwide Gross":130279090,"US DVD Sales":33113440,"Production Budget":75000000,"Release Date":"Dec 23 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Steven Spielberg","Rotten Tomatoes Rating":78,"IMDB Rating":7.8,"IMDB Votes":79529},{"Title":"Muppets From Space","US Gross":16304786,"Worldwide Gross":16304786,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Jul 14 1999","MPAA Rating":"G","Running Time min":88,"Distributor":"Sony Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Tim Hill","Rotten Tomatoes Rating":62,"IMDB Rating":6.1,"IMDB Votes":5945},{"Title":"Murder by Numbers","US Gross":31874869,"Worldwide Gross":56643267,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Apr 19 2002","MPAA Rating":"R","Running Time min":120,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Barbet Schroeder","Rotten Tomatoes Rating":31,"IMDB Rating":5.9,"IMDB Votes":22318},{"Title":"The Muse","US Gross":11614954,"Worldwide Gross":11614954,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Aug 27 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"October Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Albert Brooks","Rotten Tomatoes Rating":51,"IMDB Rating":5.5,"IMDB Votes":6507},{"Title":"Night at the Museum","US Gross":250863268,"Worldwide Gross":574480841,"US DVD Sales":153389976,"Production Budget":110000000,"Release Date":"Dec 22 2006","MPAA Rating":"PG","Running Time min":108,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Shawn Levy","Rotten Tomatoes Rating":43,"IMDB Rating":6.4,"IMDB Votes":67133},{"Title":"The Musketeer","US Gross":27053815,"Worldwide Gross":27053815,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Sep 07 2001","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Peter Hyams","Rotten Tomatoes Rating":10,"IMDB Rating":4.4,"IMDB Votes":7812},{"Title":"Music and Lyrics","US Gross":50572589,"Worldwide Gross":145556146,"US DVD Sales":21145518,"Production Budget":40000000,"Release Date":"Feb 14 2007","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.6,"IMDB Votes":32307},{"Title":"The Merchant of Venice","US Gross":3765585,"Worldwide Gross":18765585,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 29 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Michael Radford","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":14021},{"Title":"Miami Vice","US Gross":63478838,"Worldwide Gross":163818556,"US DVD Sales":37652030,"Production Budget":135000000,"Release Date":"Jul 28 2006","MPAA Rating":"R","Running Time min":132,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Michael Mann","Rotten Tomatoes Rating":47,"IMDB Rating":6,"IMDB Votes":51921},{"Title":"Monsters vs. Aliens","US Gross":198351526,"Worldwide Gross":381687380,"US DVD Sales":83851943,"Production Budget":175000000,"Release Date":"Mar 27 2009","MPAA Rating":"PG","Running Time min":95,"Distributor":"Paramount Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Rob Letterman","Rotten Tomatoes Rating":72,"IMDB Rating":6.8,"IMDB Votes":26582},{"Title":"A Mighty Wind","US Gross":17583468,"Worldwide Gross":18552708,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Apr 16 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Christopher Guest","Rotten Tomatoes Rating":88,"IMDB Rating":7.2,"IMDB Votes":13602},{"Title":"The Mexican","US Gross":66808615,"Worldwide Gross":147808615,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Mar 02 2001","MPAA Rating":"R","Running Time min":124,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Gore Verbinski","Rotten Tomatoes Rating":55,"IMDB Rating":5.9,"IMDB Votes":37696},{"Title":"My Best Friend's Wedding","US Gross":126813153,"Worldwide Gross":287200000,"US DVD Sales":null,"Production Budget":46000000,"Release Date":"Jun 20 1997","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"P.J. Hogan","Rotten Tomatoes Rating":72,"IMDB Rating":6.2,"IMDB Votes":37287},{"Title":"Dude, Where's My Car?","US Gross":46729374,"Worldwide Gross":73180297,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Dec 15 2000","MPAA Rating":"PG-13","Running Time min":83,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":null,"IMDB Votes":null},{"Title":"My Dog Skip","US Gross":34099640,"Worldwide Gross":35512760,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Jan 12 2000","MPAA Rating":"PG","Running Time min":95,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Kids Fiction","Director":"Jay Russell","Rotten Tomatoes Rating":72,"IMDB Rating":6.9,"IMDB Votes":9029},{"Title":"My Date With Drew","US Gross":181041,"Worldwide Gross":181041,"US DVD Sales":null,"Production Budget":1100,"Release Date":"Aug 05 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"DEJ Productions","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":2961},{"Title":"Me and You and Everyone We Know","US Gross":3885134,"Worldwide Gross":5409058,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jun 17 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":82,"IMDB Rating":7.4,"IMDB Votes":17135},{"Title":"My Favorite Martian","US Gross":36850101,"Worldwide Gross":36850101,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Feb 12 1999","MPAA Rating":"PG","Running Time min":93,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":"Donald Petrie","Rotten Tomatoes Rating":13,"IMDB Rating":4.5,"IMDB Votes":4918},{"Title":"My Fellow Americans","US Gross":22331846,"Worldwide Gross":22331846,"US DVD Sales":null,"Production Budget":21500000,"Release Date":"Dec 20 1996","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Segal","Rotten Tomatoes Rating":50,"IMDB Rating":6.3,"IMDB Votes":6366},{"Title":"My Sister's Keeper","US Gross":49200230,"Worldwide Gross":89053995,"US DVD Sales":21467223,"Production Budget":27500000,"Release Date":"Jun 26 2009","MPAA Rating":"PG-13","Running Time min":108,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Nick Cassavetes","Rotten Tomatoes Rating":48,"IMDB Rating":7.4,"IMDB Votes":13839},{"Title":"My Summer of Love","US Gross":1000915,"Worldwide Gross":3800915,"US DVD Sales":null,"Production Budget":1700000,"Release Date":"Jun 17 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":7242},{"Title":"The Mystery Men","US Gross":29762011,"Worldwide Gross":29762011,"US DVD Sales":null,"Production Budget":68000000,"Release Date":"Aug 06 1999","MPAA Rating":"PG","Running Time min":120,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Comedy","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Mystic River","US Gross":90135191,"Worldwide Gross":156835191,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Oct 08 2003","MPAA Rating":"R","Running Time min":137,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":87,"IMDB Rating":8,"IMDB Votes":119484},{"Title":"Nacho Libre","US Gross":80197993,"Worldwide Gross":99197993,"US DVD Sales":46582125,"Production Budget":32000000,"Release Date":"Jun 16 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jared Hess","Rotten Tomatoes Rating":40,"IMDB Rating":5.7,"IMDB Votes":31455},{"Title":"Narc","US Gross":10465659,"Worldwide Gross":10465659,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Dec 20 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Joe Carnahan","Rotten Tomatoes Rating":83,"IMDB Rating":7.3,"IMDB Votes":19248},{"Title":"The Chronicles of Narnia: Prince Caspian","US Gross":141621490,"Worldwide Gross":419490286,"US DVD Sales":77773230,"Production Budget":225000000,"Release Date":"May 16 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Andrew Adamson","Rotten Tomatoes Rating":67,"IMDB Rating":6.9,"IMDB Votes":46608},{"Title":"National Treasure","US Gross":173005002,"Worldwide Gross":347405002,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Nov 19 2004","MPAA Rating":"PG","Running Time min":131,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Jon Turteltaub","Rotten Tomatoes Rating":44,"IMDB Rating":6.9,"IMDB Votes":83989},{"Title":"The Nativity Story","US Gross":37629831,"Worldwide Gross":46432264,"US DVD Sales":26142500,"Production Budget":35000000,"Release Date":"Dec 01 2006","MPAA Rating":"PG","Running Time min":102,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Catherine Hardwicke","Rotten Tomatoes Rating":37,"IMDB Rating":6.6,"IMDB Votes":4701},{"Title":"Never Back Down","US Gross":24850922,"Worldwide Gross":39319801,"US DVD Sales":18692319,"Production Budget":21000000,"Release Date":"Mar 14 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Summit Entertainment","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":6.2,"IMDB Votes":21708},{"Title":"Into the Blue","US Gross":18782227,"Worldwide Gross":41982227,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Sep 30 2005","MPAA Rating":"PG-13","Running Time min":109,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":5.7,"IMDB Votes":22859},{"Title":"Shinjuku Incident","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Feb 05 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"No Country for Old Men","US Gross":74273505,"Worldwide Gross":162103209,"US DVD Sales":45877844,"Production Budget":25000000,"Release Date":"Nov 09 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Joel Coen","Rotten Tomatoes Rating":95,"IMDB Rating":8.3,"IMDB Votes":197898},{"Title":"The Incredibles","US Gross":261441092,"Worldwide Gross":632882184,"US DVD Sales":null,"Production Budget":92000000,"Release Date":"Nov 05 2004","MPAA Rating":"PG","Running Time min":121,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Brad Bird","Rotten Tomatoes Rating":97,"IMDB Rating":8.1,"IMDB Votes":159123},{"Title":"The Negotiator","US Gross":44705766,"Worldwide Gross":49105766,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jul 29 1998","MPAA Rating":"R","Running Time min":138,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"F. Gary Gray","Rotten Tomatoes Rating":81,"IMDB Rating":7.2,"IMDB Votes":46511},{"Title":"A Nightmare on Elm Street","US Gross":63075011,"Worldwide Gross":105175011,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Apr 30 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":5.3,"IMDB Votes":12554},{"Title":"Not Easily Broken","US Gross":10572742,"Worldwide Gross":10572742,"US DVD Sales":13828911,"Production Budget":5000000,"Release Date":"Jan 09 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Bill Duke","Rotten Tomatoes Rating":35,"IMDB Rating":5.2,"IMDB Votes":1010},{"Title":"The New Guy","US Gross":28972187,"Worldwide Gross":28972187,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"May 10 2002","MPAA Rating":"PG-13","Running Time min":88,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":7,"IMDB Rating":5.4,"IMDB Votes":14268},{"Title":"The Newton Boys","US Gross":10341093,"Worldwide Gross":10341093,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Mar 27 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Richard Linklater","Rotten Tomatoes Rating":61,"IMDB Rating":5.7,"IMDB Votes":4443},{"Title":"The Next Best Thing","US Gross":14983572,"Worldwide Gross":24355762,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 03 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Schlesinger","Rotten Tomatoes Rating":19,"IMDB Rating":4.4,"IMDB Votes":6104},{"Title":"Northfork","US Gross":1420578,"Worldwide Gross":1445140,"US DVD Sales":null,"Production Budget":1900000,"Release Date":"Jul 11 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Michael Polish","Rotten Tomatoes Rating":57,"IMDB Rating":6.3,"IMDB Votes":3776},{"Title":"In Good Company","US Gross":45489752,"Worldwide Gross":63489752,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Dec 29 2004","MPAA Rating":"PG-13","Running Time min":109,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Paul Weitz","Rotten Tomatoes Rating":84,"IMDB Rating":6.8,"IMDB Votes":25695},{"Title":"Notting Hill","US Gross":116089678,"Worldwide Gross":363728226,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"May 28 1999","MPAA Rating":"PG-13","Running Time min":123,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":82,"IMDB Rating":6.9,"IMDB Votes":66362},{"Title":"Little Nicky","US Gross":39442871,"Worldwide Gross":58270391,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Nov 10 2000","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":5,"IMDB Votes":35082},{"Title":"Nicholas Nickleby","US Gross":1562800,"Worldwide Gross":1562800,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 27 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"United Artists","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":77,"IMDB Rating":7.3,"IMDB Votes":4968},{"Title":"Nim's Island","US Gross":48006762,"Worldwide Gross":94081683,"US DVD Sales":18322434,"Production Budget":37000000,"Release Date":"Apr 04 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":6,"IMDB Votes":10391},{"Title":"Ninja Assassin","US Gross":38122883,"Worldwide Gross":57422883,"US DVD Sales":14085314,"Production Budget":50000000,"Release Date":"Nov 25 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"James McTeigue","Rotten Tomatoes Rating":25,"IMDB Rating":6.3,"IMDB Votes":20078},{"Title":"The Ninth Gate","US Gross":18653746,"Worldwide Gross":58394308,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Mar 10 2000","MPAA Rating":"R","Running Time min":133,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":"Roman Polanski","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":50510},{"Title":"Never Let Me Go","US Gross":186830,"Worldwide Gross":186830,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Sep 15 2010","MPAA Rating":null,"Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":62,"IMDB Rating":7.3,"IMDB Votes":252},{"Title":"Lucky Numbers","US Gross":10014234,"Worldwide Gross":10014234,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Oct 27 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Nora Ephron","Rotten Tomatoes Rating":23,"IMDB Rating":4.9,"IMDB Votes":5461},{"Title":"Night at the Museum: Battle of the Smithsonian","US Gross":177243721,"Worldwide Gross":413054631,"US DVD Sales":48547729,"Production Budget":150000000,"Release Date":"May 22 2009","MPAA Rating":"PG","Running Time min":104,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Shawn Levy","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":25631},{"Title":"Nick and Norah's Infinite Playlist","US Gross":31487293,"Worldwide Gross":31487293,"US DVD Sales":10327750,"Production Budget":10000000,"Release Date":"Oct 03 2008","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Peter Sollett","Rotten Tomatoes Rating":73,"IMDB Rating":6.8,"IMDB Votes":24021},{"Title":"Notorious","US Gross":36842118,"Worldwide Gross":44473591,"US DVD Sales":21503929,"Production Budget":19000000,"Release Date":"Jan 16 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":6.3,"IMDB Votes":9811},{"Title":"No End In Sight","US Gross":1433319,"Worldwide Gross":1433319,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jul 27 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":8.3,"IMDB Votes":4086},{"Title":"Nomad","US Gross":79123,"Worldwide Gross":79123,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Mar 16 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":1224},{"Title":"No Man's Land","US Gross":1067481,"Worldwide Gross":2684207,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Dec 07 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":93,"IMDB Rating":8,"IMDB Votes":19600},{"Title":"No Reservations","US Gross":43107979,"Worldwide Gross":92107979,"US DVD Sales":27029295,"Production Budget":28000000,"Release Date":"Jul 27 2007","MPAA Rating":"PG","Running Time min":103,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":6.3,"IMDB Votes":16952},{"Title":"The Notebook","US Gross":81001787,"Worldwide Gross":102276787,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 25 2004","MPAA Rating":"PG-13","Running Time min":123,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Nick Cassavetes","Rotten Tomatoes Rating":52,"IMDB Rating":8,"IMDB Votes":95850},{"Title":"November","US Gross":191862,"Worldwide Gross":191862,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Jul 22 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":2189},{"Title":"Novocaine","US Gross":2025238,"Worldwide Gross":2522928,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Nov 16 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":37,"IMDB Rating":5.8,"IMDB Votes":6233},{"Title":"Nowhere in Africa","US Gross":6173485,"Worldwide Gross":6173485,"US DVD Sales":null,"Production Budget":6500000,"Release Date":"Mar 07 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Zeitgeist","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Napoleon Dynamite","US Gross":44540956,"Worldwide Gross":46140956,"US DVD Sales":null,"Production Budget":400000,"Release Date":"Jun 11 2004","MPAA Rating":"PG","Running Time min":82,"Distributor":"Fox Searchlight","Source":"Based on Short Film","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jared Hess","Rotten Tomatoes Rating":70,"IMDB Rating":6.9,"IMDB Votes":76557},{"Title":"North Country","US Gross":18324242,"Worldwide Gross":23624242,"US DVD Sales":14349786,"Production Budget":30000000,"Release Date":"Oct 21 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":7.2,"IMDB Votes":16497},{"Title":"The Namesake","US Gross":13610521,"Worldwide Gross":20180109,"US DVD Sales":9364773,"Production Budget":8500000,"Release Date":"Mar 09 2007","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Mira Nair","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":9700},{"Title":"Inside Deep Throat","US Gross":691880,"Worldwide Gross":691880,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Feb 11 2005","MPAA Rating":"NC-17","Running Time min":null,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":3264},{"Title":"Intolerable Cruelty","US Gross":35327628,"Worldwide Gross":121327628,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Oct 10 2003","MPAA Rating":"PG-13","Running Time min":100,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Joel Coen","Rotten Tomatoes Rating":75,"IMDB Rating":6.4,"IMDB Votes":36323},{"Title":"The Interpreter","US Gross":72708161,"Worldwide Gross":163954076,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Apr 22 2005","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Sydney Pollack","Rotten Tomatoes Rating":58,"IMDB Rating":6.5,"IMDB Votes":38227},{"Title":"The Night Listener","US Gross":7836393,"Worldwide Gross":10547755,"US DVD Sales":8927227,"Production Budget":4000000,"Release Date":"Aug 04 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":5.9,"IMDB Votes":8437},{"Title":"The International","US Gross":25450527,"Worldwide Gross":53850527,"US DVD Sales":7276738,"Production Budget":50000000,"Release Date":"Feb 13 2009","MPAA Rating":"R","Running Time min":118,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Tom Tykwer","Rotten Tomatoes Rating":59,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Number 23","US Gross":35193167,"Worldwide Gross":76593167,"US DVD Sales":27576238,"Production Budget":32000000,"Release Date":"Feb 23 2007","MPAA Rating":"R","Running Time min":95,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":8,"IMDB Rating":6.2,"IMDB Votes":59174},{"Title":"Nurse Betty","US Gross":25170054,"Worldwide Gross":27732366,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Sep 08 2000","MPAA Rating":"R","Running Time min":110,"Distributor":"USA Films","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Neil LaBute","Rotten Tomatoes Rating":84,"IMDB Rating":6.4,"IMDB Votes":20354},{"Title":"Jimmy Neutron: Boy Genius","US Gross":80936232,"Worldwide Gross":102992536,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Dec 21 2001","MPAA Rating":"G","Running Time min":83,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":5379},{"Title":"Nutty Professor II: The Klumps","US Gross":123307945,"Worldwide Gross":161600000,"US DVD Sales":null,"Production Budget":84000000,"Release Date":"Jul 28 2000","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Universal","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Segal","Rotten Tomatoes Rating":null,"IMDB Rating":4.3,"IMDB Votes":17075},{"Title":"Never Again","US Gross":307631,"Worldwide Gross":307631,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jul 12 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Romantic Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":511},{"Title":"Finding Neverland","US Gross":51676606,"Worldwide Gross":118676606,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Nov 12 2004","MPAA Rating":"PG","Running Time min":106,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Marc Forster","Rotten Tomatoes Rating":82,"IMDB Rating":7.9,"IMDB Votes":86828},{"Title":"Into the Wild","US Gross":18354356,"Worldwide Gross":53813837,"US DVD Sales":15272435,"Production Budget":20000000,"Release Date":"Sep 21 2007","MPAA Rating":"R","Running Time min":147,"Distributor":"Paramount Vantage","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sean Penn","Rotten Tomatoes Rating":82,"IMDB Rating":8.2,"IMDB Votes":99464},{"Title":"The New World","US Gross":12712093,"Worldwide Gross":26184400,"US DVD Sales":8200002,"Production Budget":30000000,"Release Date":"Dec 25 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Terrence Malick","Rotten Tomatoes Rating":60,"IMDB Rating":6.9,"IMDB Votes":33248},{"Title":"Nochnoy dozor","US Gross":1502188,"Worldwide Gross":33923550,"US DVD Sales":7476421,"Production Budget":4200000,"Release Date":"Feb 17 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Fantasy","Director":"Timur Bekmambetov","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":25136},{"Title":"New York Minute","US Gross":14018364,"Worldwide Gross":21215882,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"May 07 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Dennie Gordon","Rotten Tomatoes Rating":11,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Object of my Affection","US Gross":29145924,"Worldwide Gross":29145924,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 17 1998","MPAA Rating":"R","Running Time min":112,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":50,"IMDB Rating":5.9,"IMDB Votes":8492},{"Title":"Orange County","US Gross":41059716,"Worldwide Gross":43308707,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Jan 11 2002","MPAA Rating":"PG-13","Running Time min":82,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":6.1,"IMDB Votes":23742},{"Title":"Ocean's Eleven","US Gross":183417150,"Worldwide Gross":450728529,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Dec 07 2001","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":81,"IMDB Rating":7.6,"IMDB Votes":139034},{"Title":"Ocean's Twelve","US Gross":125531634,"Worldwide Gross":363531634,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Dec 10 2004","MPAA Rating":"PG-13","Running Time min":125,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":55,"IMDB Rating":6,"IMDB Votes":89861},{"Title":"Ocean's Thirteen","US Gross":117144465,"Worldwide Gross":311744465,"US DVD Sales":48258805,"Production Budget":85000000,"Release Date":"Jun 08 2007","MPAA Rating":"PG-13","Running Time min":122,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":70,"IMDB Rating":6.9,"IMDB Votes":76884},{"Title":"Oceans","US Gross":19422319,"Worldwide Gross":72965951,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Apr 22 2010","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":1429},{"Title":"Office Space","US Gross":10827813,"Worldwide Gross":12827813,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 19 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Short Film","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Mike Judge","Rotten Tomatoes Rating":80,"IMDB Rating":7.9,"IMDB Votes":80972},{"Title":"White Oleander","US Gross":16357770,"Worldwide Gross":21657770,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Oct 11 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":7,"IMDB Votes":13755},{"Title":"The Omen","US Gross":54607383,"Worldwide Gross":119607383,"US DVD Sales":10468933,"Production Budget":25000000,"Release Date":"Jun 06 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5.4,"IMDB Votes":24523},{"Title":"Any Given Sunday","US Gross":75530832,"Worldwide Gross":100230832,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 22 1999","MPAA Rating":"R","Running Time min":162,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Oliver Stone","Rotten Tomatoes Rating":49,"IMDB Rating":6.6,"IMDB Votes":48477},{"Title":"Once","US Gross":9445857,"Worldwide Gross":18997174,"US DVD Sales":null,"Production Budget":150000,"Release Date":"Jun 16 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":97,"IMDB Rating":8,"IMDB Votes":34348},{"Title":"Once in a Lifetime: the Extraordinary Story of the New York Cosmos","US Gross":144601,"Worldwide Gross":206351,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Jul 07 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Matt Dillon","Rotten Tomatoes Rating":82,"IMDB Rating":7.1,"IMDB Votes":643},{"Title":"One Hour Photo","US Gross":31597131,"Worldwide Gross":52223306,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Aug 21 2002","MPAA Rating":"R","Running Time min":96,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":81,"IMDB Rating":7,"IMDB Votes":42134},{"Title":"One True Thing","US Gross":23337196,"Worldwide Gross":26708196,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 18 1998","MPAA Rating":"R","Running Time min":127,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Carl Franklin","Rotten Tomatoes Rating":88,"IMDB Rating":6.9,"IMDB Votes":5591},{"Title":"Ong-Bak 2","US Gross":102458,"Worldwide Gross":7583050,"US DVD Sales":1238181,"Production Budget":15000000,"Release Date":"Sep 25 2009","MPAA Rating":"R","Running Time min":97,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":887},{"Title":"On the Line","US Gross":4356743,"Worldwide Gross":4356743,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 26 2001","MPAA Rating":"PG","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":18,"IMDB Rating":3.4,"IMDB Votes":2617},{"Title":"One Night with the King","US Gross":13395961,"Worldwide Gross":13395961,"US DVD Sales":20554010,"Production Budget":20000000,"Release Date":"Oct 13 2006","MPAA Rating":"PG","Running Time min":124,"Distributor":"Rocky Mountain Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Michael O. Sajbel","Rotten Tomatoes Rating":16,"IMDB Rating":6,"IMDB Votes":2993},{"Title":"Opal Dreams","US Gross":14443,"Worldwide Gross":14443,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Nov 22 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Strand","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":468},{"Title":"Open Season","US Gross":85105259,"Worldwide Gross":189901703,"US DVD Sales":96622855,"Production Budget":85000000,"Release Date":"Sep 29 2006","MPAA Rating":"PG","Running Time min":87,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":6,"IMDB Votes":52},{"Title":"Open Water","US Gross":30500882,"Worldwide Gross":52100882,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Aug 06 2004","MPAA Rating":"R","Running Time min":79,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":23667},{"Title":"Open Range","US Gross":58328680,"Worldwide Gross":68293719,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Aug 15 2003","MPAA Rating":"R","Running Time min":139,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Kevin Costner","Rotten Tomatoes Rating":79,"IMDB Rating":7.5,"IMDB Votes":26438},{"Title":"The Order","US Gross":7659747,"Worldwide Gross":11559747,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 05 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.9,"IMDB Votes":9119},{"Title":"Orgazmo","US Gross":582024,"Worldwide Gross":627287,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Oct 23 1998","MPAA Rating":"NC-17","Running Time min":null,"Distributor":"October Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Trey Parker","Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":15592},{"Title":"Original Sin","US Gross":16521410,"Worldwide Gross":16521410,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Aug 03 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":5.6,"IMDB Votes":15939},{"Title":"Osama","US Gross":1127331,"Worldwide Gross":1971479,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jan 30 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":4737},{"Title":"Oscar and Lucinda","US Gross":1612957,"Worldwide Gross":1612957,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"Dec 31 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":65,"IMDB Rating":6.7,"IMDB Votes":3782},{"Title":"Old School","US Gross":75155000,"Worldwide Gross":86325829,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Feb 21 2003","MPAA Rating":"R","Running Time min":91,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Todd Phillips","Rotten Tomatoes Rating":60,"IMDB Rating":7,"IMDB Votes":60477},{"Title":"Osmosis Jones","US Gross":13596911,"Worldwide Gross":13596911,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Aug 10 2001","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Bobby Farrelly","Rotten Tomatoes Rating":54,"IMDB Rating":6,"IMDB Votes":10959},{"Title":"American Outlaws","US Gross":13264986,"Worldwide Gross":13264986,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Aug 17 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Les Mayfield","Rotten Tomatoes Rating":13,"IMDB Rating":5.6,"IMDB Votes":7396},{"Title":"Oliver Twist","US Gross":2070920,"Worldwide Gross":26670920,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Sep 23 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/TriStar","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Roman Polanski","Rotten Tomatoes Rating":59,"IMDB Rating":7,"IMDB Votes":10748},{"Title":"Out Cold","US Gross":13906394,"Worldwide Gross":13906394,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Nov 21 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":5.8,"IMDB Votes":7153},{"Title":"Outlander","US Gross":166003,"Worldwide Gross":1250617,"US DVD Sales":1757108,"Production Budget":50000000,"Release Date":"Jan 23 2009","MPAA Rating":"R","Running Time min":115,"Distributor":"Third Rail","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":18299},{"Title":"Out of Sight","US Gross":37562568,"Worldwide Gross":37562568,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Jun 26 1998","MPAA Rating":"R","Running Time min":129,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":93,"IMDB Rating":7.1,"IMDB Votes":38263},{"Title":"Out of Time","US Gross":41083108,"Worldwide Gross":55489826,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Oct 03 2003","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Carl Franklin","Rotten Tomatoes Rating":65,"IMDB Rating":4.9,"IMDB Votes":151},{"Title":"The Out-of-Towners","US Gross":28544120,"Worldwide Gross":28544120,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Apr 02 1999","MPAA Rating":"PG-13","Running Time min":92,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":24,"IMDB Rating":4.9,"IMDB Votes":6338},{"Title":"Owning Mahowny","US Gross":1011054,"Worldwide Gross":1011054,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"May 02 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":78,"IMDB Rating":7,"IMDB Votes":5789},{"Title":"The Pacifier","US Gross":113006880,"Worldwide Gross":198006880,"US DVD Sales":null,"Production Budget":56000000,"Release Date":"Mar 04 2005","MPAA Rating":"PG","Running Time min":97,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Adam Shankman","Rotten Tomatoes Rating":20,"IMDB Rating":5.3,"IMDB Votes":22590},{"Title":"El Laberinto del Fauno","US Gross":37634615,"Worldwide Gross":83234615,"US DVD Sales":40776265,"Production Budget":16000000,"Release Date":"Dec 29 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Picturehouse","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":"Guillermo Del Toro","Rotten Tomatoes Rating":null,"IMDB Rating":8.4,"IMDB Votes":153762},{"Title":"The Passion of the Christ","US Gross":370782930,"Worldwide Gross":611899420,"US DVD Sales":618454,"Production Budget":25000000,"Release Date":"Feb 25 2004","MPAA Rating":"R","Running Time min":127,"Distributor":"Newmarket Films","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Mel Gibson","Rotten Tomatoes Rating":50,"IMDB Rating":7.1,"IMDB Votes":87326},{"Title":"Patch Adams","US Gross":135041968,"Worldwide Gross":202200000,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Dec 25 1998","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Tom Shadyac","Rotten Tomatoes Rating":24,"IMDB Rating":6.3,"IMDB Votes":31481},{"Title":"Payback","US Gross":81526121,"Worldwide Gross":161626121,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 05 1999","MPAA Rating":"R","Running Time min":110,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":51,"IMDB Rating":5.8,"IMDB Votes":304},{"Title":"Paycheck","US Gross":53789313,"Worldwide Gross":89350576,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 25 2003","MPAA Rating":"PG-13","Running Time min":119,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"John Woo","Rotten Tomatoes Rating":28,"IMDB Rating":6.1,"IMDB Votes":35660},{"Title":"Max Payne","US Gross":40687294,"Worldwide Gross":85761789,"US DVD Sales":25346362,"Production Budget":35000000,"Release Date":"Oct 17 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Game","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":5.4,"IMDB Votes":47541},{"Title":"The Princess Diaries 2: Royal Engagement","US Gross":95149435,"Worldwide Gross":122071435,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Aug 11 2004","MPAA Rating":"G","Running Time min":115,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Garry Marshall","Rotten Tomatoes Rating":null,"IMDB Rating":5.3,"IMDB Votes":12439},{"Title":"The Princess Diaries","US Gross":108244774,"Worldwide Gross":165334774,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 03 2001","MPAA Rating":"G","Running Time min":115,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Garry Marshall","Rotten Tomatoes Rating":46,"IMDB Rating":5.9,"IMDB Votes":23486},{"Title":"The Peacemaker","US Gross":41263140,"Worldwide Gross":62967368,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Sep 26 1997","MPAA Rating":"R","Running Time min":123,"Distributor":"Dreamworks SKG","Source":"Based on Magazine Article","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Mimi Leder","Rotten Tomatoes Rating":45,"IMDB Rating":5.8,"IMDB Votes":21524},{"Title":"Peter Pan","US Gross":48417850,"Worldwide Gross":95255485,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Dec 25 2003","MPAA Rating":"PG","Running Time min":113,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"P.J. Hogan","Rotten Tomatoes Rating":76,"IMDB Rating":7.1,"IMDB Votes":16894},{"Title":"People I Know","US Gross":121972,"Worldwide Gross":121972,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Apr 25 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":6305},{"Title":"Perrier's Bounty","US Gross":828,"Worldwide Gross":828,"US DVD Sales":null,"Production Budget":6600000,"Release Date":"May 21 2010","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":808},{"Title":"A Perfect Getaway","US Gross":15515460,"Worldwide Gross":20613298,"US DVD Sales":3994342,"Production Budget":14000000,"Release Date":"Aug 07 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"David Twohy","Rotten Tomatoes Rating":60,"IMDB Rating":6.5,"IMDB Votes":16324},{"Title":"Phat Girlz","US Gross":7061128,"Worldwide Gross":7271305,"US DVD Sales":18090044,"Production Budget":3000000,"Release Date":"Apr 07 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":2.2,"IMDB Votes":6343},{"Title":"Poolhall Junkies","US Gross":563711,"Worldwide Gross":563711,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Feb 28 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Gold Circle Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":5233},{"Title":"The Phantom of the Opera","US Gross":51225796,"Worldwide Gross":158225796,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Dec 22 2004","MPAA Rating":"PG-13","Running Time min":143,"Distributor":"Warner Bros.","Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":33,"IMDB Rating":7.2,"IMDB Votes":42832},{"Title":"Phone Booth","US Gross":46566212,"Worldwide Gross":97837138,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Apr 04 2003","MPAA Rating":"R","Running Time min":81,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Joel Schumacher","Rotten Tomatoes Rating":71,"IMDB Rating":7.2,"IMDB Votes":68874},{"Title":"The Pianist","US Gross":32519322,"Worldwide Gross":120000000,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 27 2002","MPAA Rating":"R","Running Time min":149,"Distributor":"Focus Features","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Roman Polanski","Rotten Tomatoes Rating":null,"IMDB Rating":8.5,"IMDB Votes":134516},{"Title":"The Pink Panther","US Gross":82226474,"Worldwide Gross":158926474,"US DVD Sales":23182695,"Production Budget":80000000,"Release Date":"Feb 10 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Shawn Levy","Rotten Tomatoes Rating":22,"IMDB Rating":5.1,"IMDB Votes":28456},{"Title":"Pirates of the Caribbean: The Curse of the Black Pearl","US Gross":305411224,"Worldwide Gross":655011224,"US DVD Sales":null,"Production Budget":125000000,"Release Date":"Jul 09 2003","MPAA Rating":"PG-13","Running Time min":143,"Distributor":"Walt Disney Pictures","Source":"Disney Ride","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Gore Verbinski","Rotten Tomatoes Rating":null,"IMDB Rating":8,"IMDB Votes":232719},{"Title":"Pirates of the Caribbean: Dead Man's Chest","US Gross":423315812,"Worldwide Gross":1065659812,"US DVD Sales":320830925,"Production Budget":225000000,"Release Date":"Jul 07 2006","MPAA Rating":"PG-13","Running Time min":151,"Distributor":"Walt Disney Pictures","Source":"Disney Ride","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Gore Verbinski","Rotten Tomatoes Rating":54,"IMDB Rating":7.3,"IMDB Votes":150446},{"Title":"Pirates of the Caribbean: At World's End","US Gross":309420425,"Worldwide Gross":960996492,"US DVD Sales":296060575,"Production Budget":300000000,"Release Date":"May 25 2007","MPAA Rating":"PG-13","Running Time min":167,"Distributor":"Walt Disney Pictures","Source":"Disney Ride","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Gore Verbinski","Rotten Tomatoes Rating":45,"IMDB Rating":7,"IMDB Votes":133241},{"Title":"The Chronicles of Riddick","US Gross":57712751,"Worldwide Gross":107212751,"US DVD Sales":null,"Production Budget":120000000,"Release Date":"Jun 11 2004","MPAA Rating":"PG-13","Running Time min":119,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"David Twohy","Rotten Tomatoes Rating":29,"IMDB Rating":6.4,"IMDB Votes":49383},{"Title":"Pitch Black","US Gross":39235088,"Worldwide Gross":53182088,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Feb 18 2000","MPAA Rating":"R","Running Time min":110,"Distributor":"USA Films","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"David Twohy","Rotten Tomatoes Rating":55,"IMDB Rating":7,"IMDB Votes":55217},{"Title":"Play it to the Bone","US Gross":8427204,"Worldwide Gross":8427204,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Dec 24 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ron Shelton","Rotten Tomatoes Rating":null,"IMDB Rating":5.1,"IMDB Votes":6039},{"Title":"Screwed","US Gross":6982680,"Worldwide Gross":6982680,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"May 12 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":5.1,"IMDB Votes":4411},{"Title":"Percy Jackson & the Olympians: The Lightning Thief","US Gross":88761720,"Worldwide Gross":226435277,"US DVD Sales":30795712,"Production Budget":95000000,"Release Date":"Feb 12 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Chris Columbus","Rotten Tomatoes Rating":50,"IMDB Rating":5.8,"IMDB Votes":20451},{"Title":"Paris, je t'aime","US Gross":4857374,"Worldwide Gross":4857374,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"May 04 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"First Look","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Gurinder Chadha","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":175},{"Title":"Princess Kaiulani","US Gross":883454,"Worldwide Gross":883454,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"May 14 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Roadside Attractions","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.3,"IMDB Votes":224},{"Title":"Lake Placid","US Gross":31770413,"Worldwide Gross":31770413,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Jul 16 1999","MPAA Rating":"R","Running Time min":82,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Steve Miner","Rotten Tomatoes Rating":38,"IMDB Rating":5.3,"IMDB Votes":19382},{"Title":"The Back-up Plan","US Gross":37490007,"Worldwide Gross":77090007,"US DVD Sales":7571152,"Production Budget":35000000,"Release Date":"Apr 23 2010","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"CBS Films","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":4.4,"IMDB Votes":6981},{"Title":"The Pledge","US Gross":19719930,"Worldwide Gross":29406132,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jan 19 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sean Penn","Rotten Tomatoes Rating":77,"IMDB Rating":6.9,"IMDB Votes":22609},{"Title":"Proof of Life","US Gross":32598931,"Worldwide Gross":62761005,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Dec 08 2000","MPAA Rating":"R","Running Time min":135,"Distributor":"Warner Bros.","Source":"Based on Magazine Article","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Taylor Hackford","Rotten Tomatoes Rating":39,"IMDB Rating":6.1,"IMDB Votes":23099},{"Title":"Pollock","US Gross":8596914,"Worldwide Gross":10557291,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Dec 15 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ed Harris","Rotten Tomatoes Rating":82,"IMDB Rating":7.1,"IMDB Votes":9669},{"Title":"Planet of the Apes","US Gross":180011740,"Worldwide Gross":362211740,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Jul 27 2001","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Tim Burton","Rotten Tomatoes Rating":44,"IMDB Rating":5.5,"IMDB Votes":72763},{"Title":"Please Give","US Gross":4028339,"Worldwide Gross":4028339,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Apr 30 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":88,"IMDB Rating":7.4,"IMDB Votes":1023},{"Title":"Planet 51","US Gross":42194060,"Worldwide Gross":108005745,"US DVD Sales":15341764,"Production Budget":50000000,"Release Date":"Nov 20 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":6.1,"IMDB Votes":9645},{"Title":"The Adventures of Pluto Nash","US Gross":4411102,"Worldwide Gross":7094995,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Aug 16 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":6,"IMDB Rating":3.7,"IMDB Votes":9207},{"Title":"The Players Club","US Gross":23047939,"Worldwide Gross":23047939,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Apr 08 1998","MPAA Rating":"R","Running Time min":104,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":27,"IMDB Rating":4.8,"IMDB Votes":2072},{"Title":"Paranormal Activity","US Gross":107918810,"Worldwide Gross":193770453,"US DVD Sales":14051496,"Production Budget":15000,"Release Date":"Sep 25 2009","MPAA Rating":"R","Running Time min":85,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Oren Peli","Rotten Tomatoes Rating":82,"IMDB Rating":6.7,"IMDB Votes":53455},{"Title":"The Pineapple Express","US Gross":87341380,"Worldwide Gross":100941380,"US DVD Sales":45217362,"Production Budget":26000000,"Release Date":"Aug 06 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"David Gordon Green","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Pinocchio","US Gross":3681811,"Worldwide Gross":31681811,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Dec 25 2002","MPAA Rating":"G","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Roberto Benigni","Rotten Tomatoes Rating":null,"IMDB Rating":3.5,"IMDB Votes":3215},{"Title":"Pandaemonium","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jun 29 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":496},{"Title":"Pandorum","US Gross":10330853,"Worldwide Gross":17033431,"US DVD Sales":4018696,"Production Budget":40000000,"Release Date":"Sep 25 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Overture Films","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":28,"IMDB Rating":6.9,"IMDB Votes":29428},{"Title":"The Punisher","US Gross":33664370,"Worldwide Gross":54664370,"US DVD Sales":null,"Production Budget":33000000,"Release Date":"Apr 16 2004","MPAA Rating":"R","Running Time min":124,"Distributor":"Lionsgate","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":6.4,"IMDB Votes":50482},{"Title":"Pokemon 2000","US Gross":43746923,"Worldwide Gross":133946923,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jul 21 2000","MPAA Rating":"G","Running Time min":99,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Pokemon 3: The Movie","US Gross":17052128,"Worldwide Gross":68452128,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Apr 06 2001","MPAA Rating":"G","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":3.5,"IMDB Votes":2577},{"Title":"The Polar Express","US Gross":181320597,"Worldwide Gross":305420597,"US DVD Sales":null,"Production Budget":170000000,"Release Date":"Nov 10 2004","MPAA Rating":"G","Running Time min":99,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Robert Zemeckis","Rotten Tomatoes Rating":56,"IMDB Rating":6.7,"IMDB Votes":28550},{"Title":"Along Came Polly","US Gross":88073507,"Worldwide Gross":170360435,"US DVD Sales":null,"Production Budget":42000000,"Release Date":"Jan 16 2004","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":5.8,"IMDB Votes":38276},{"Title":"Gake no ue no Ponyo","US Gross":15090399,"Worldwide Gross":199090399,"US DVD Sales":12626319,"Production Budget":34000000,"Release Date":"Aug 14 2009","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":13821},{"Title":"Pootie Tang","US Gross":3293258,"Worldwide Gross":3293258,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Jun 29 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":27,"IMDB Rating":4.5,"IMDB Votes":6183},{"Title":"Poseidon","US Gross":60674817,"Worldwide Gross":181674817,"US DVD Sales":19732418,"Production Budget":160000000,"Release Date":"May 12 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Wolfgang Petersen","Rotten Tomatoes Rating":33,"IMDB Rating":5.6,"IMDB Votes":35930},{"Title":"Possession","US Gross":10103647,"Worldwide Gross":14805812,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Aug 16 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Neil LaBute","Rotten Tomatoes Rating":64,"IMDB Rating":6.4,"IMDB Votes":6789},{"Title":"Peter Pan: Return to Neverland","US Gross":48430258,"Worldwide Gross":109862682,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Feb 15 2002","MPAA Rating":"G","Running Time min":72,"Distributor":"Walt Disney Pictures","Source":"Based on Play","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":46,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Practical Magic","US Gross":46850558,"Worldwide Gross":68336997,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Oct 16 1998","MPAA Rating":"PG-13","Running Time min":105,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Griffin Dunne","Rotten Tomatoes Rating":21,"IMDB Rating":5.5,"IMDB Votes":20196},{"Title":"The Devil Wears Prada","US Gross":124740460,"Worldwide Gross":326551094,"US DVD Sales":95856827,"Production Budget":35000000,"Release Date":"Jun 30 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"David Frankel","Rotten Tomatoes Rating":75,"IMDB Rating":6.8,"IMDB Votes":66627},{"Title":"The Boat That Rocked","US Gross":8017467,"Worldwide Gross":37472651,"US DVD Sales":1374953,"Production Budget":50000000,"Release Date":"Nov 13 2009","MPAA Rating":"R","Running Time min":134,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":25415},{"Title":"Paparazzi","US Gross":15712072,"Worldwide Gross":16612072,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Sep 03 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":18,"IMDB Rating":5.7,"IMDB Votes":9058},{"Title":"Primary Colors","US Gross":39017984,"Worldwide Gross":39017984,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Mar 20 1998","MPAA Rating":"R","Running Time min":143,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Dramatization","Director":"Mike Nichols","Rotten Tomatoes Rating":80,"IMDB Rating":6.7,"IMDB Votes":15340},{"Title":"Precious (Based on the Novel Push by Sapphire)","US Gross":47566524,"Worldwide Gross":63471431,"US DVD Sales":20130576,"Production Budget":10000000,"Release Date":"Nov 06 2009","MPAA Rating":"R","Running Time min":109,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Lee Daniels","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":24504},{"Title":"Pride and Glory","US Gross":15740721,"Worldwide Gross":43440721,"US DVD Sales":11495577,"Production Budget":30000000,"Release Date":"Oct 24 2008","MPAA Rating":"R","Running Time min":129,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":34,"IMDB Rating":6.7,"IMDB Votes":24596},{"Title":"Pride and Prejudice","US Gross":38372662,"Worldwide Gross":120918508,"US DVD Sales":53281347,"Production Budget":28000000,"Release Date":"Nov 11 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Joe Wright","Rotten Tomatoes Rating":85,"IMDB Rating":5.5,"IMDB Votes":1230},{"Title":"The Road to Perdition","US Gross":104054514,"Worldwide Gross":181054514,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jul 12 2002","MPAA Rating":"R","Running Time min":117,"Distributor":"Dreamworks SKG","Source":"Based on Comic/Graphic Novel","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Sam Mendes","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Predators","US Gross":51920690,"Worldwide Gross":124549380,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 09 2010","MPAA Rating":"R","Running Time min":109,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.9,"IMDB Votes":22257},{"Title":"Prefontaine","US Gross":590817,"Worldwide Gross":590817,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Jan 24 1997","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":62,"IMDB Rating":6.2,"IMDB Votes":2580},{"Title":"Perfume: The Story of a Murderer","US Gross":2223293,"Worldwide Gross":132180323,"US DVD Sales":7529604,"Production Budget":63700000,"Release Date":"Dec 27 2006","MPAA Rating":"R","Running Time min":147,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Tom Tykwer","Rotten Tomatoes Rating":58,"IMDB Rating":7.5,"IMDB Votes":51704},{"Title":"The Prince & Me","US Gross":28165882,"Worldwide Gross":29356757,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Apr 02 2004","MPAA Rating":"PG","Running Time min":111,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Martha Coolidge","Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":9547},{"Title":"The Perfect Man","US Gross":16535005,"Worldwide Gross":19535005,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jun 17 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":5.1,"IMDB Votes":7278},{"Title":"The Pursuit of Happyness","US Gross":162586036,"Worldwide Gross":306086036,"US DVD Sales":90857430,"Production Budget":55000000,"Release Date":"Dec 15 2006","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Gabriele Muccino","Rotten Tomatoes Rating":66,"IMDB Rating":7.8,"IMDB Votes":77939},{"Title":"Primer","US Gross":424760,"Worldwide Gross":565846,"US DVD Sales":null,"Production Budget":7000,"Release Date":"Oct 08 2004","MPAA Rating":"PG-13","Running Time min":80,"Distributor":"ThinkFilm","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":17454},{"Title":"Pearl Harbor","US Gross":198539855,"Worldwide Gross":449239855,"US DVD Sales":null,"Production Budget":151500000,"Release Date":"May 25 2001","MPAA Rating":"PG-13","Running Time min":183,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Action","Creative Type":"Dramatization","Director":"Michael Bay","Rotten Tomatoes Rating":26,"IMDB Rating":5.4,"IMDB Votes":96186},{"Title":"Premonition","US Gross":47852604,"Worldwide Gross":81461343,"US DVD Sales":33241945,"Production Budget":20000000,"Release Date":"Mar 16 2007","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Prince of Egypt","US Gross":101413188,"Worldwide Gross":218600000,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 18 1998","MPAA Rating":"PG","Running Time min":97,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Dramatization","Director":"Steve Hickner","Rotten Tomatoes Rating":79,"IMDB Rating":6.8,"IMDB Votes":24569},{"Title":"The Producers: The Movie Musical","US Gross":19398532,"Worldwide Gross":32952995,"US DVD Sales":5338452,"Production Budget":45000000,"Release Date":"Dec 16 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Remake","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Prom Night","US Gross":43869350,"Worldwide Gross":57109687,"US DVD Sales":8497205,"Production Budget":18000000,"Release Date":"Apr 11 2008","MPAA Rating":"PG-13","Running Time min":85,"Distributor":"Sony/Screen Gems","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":5.1,"IMDB Votes":4263},{"Title":"Proof","US Gross":7535331,"Worldwide Gross":8284331,"US DVD Sales":9239421,"Production Budget":20000000,"Release Date":"Sep 16 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Madden","Rotten Tomatoes Rating":64,"IMDB Rating":6.9,"IMDB Votes":18622},{"Title":"Panic Room","US Gross":95308367,"Worldwide Gross":196308367,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Mar 29 2002","MPAA Rating":"R","Running Time min":112,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"David Fincher","Rotten Tomatoes Rating":76,"IMDB Rating":6.9,"IMDB Votes":68737},{"Title":"The Proposal","US Gross":163958031,"Worldwide Gross":317358031,"US DVD Sales":83691948,"Production Budget":40000000,"Release Date":"Jun 19 2009","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Anne Fletcher","Rotten Tomatoes Rating":43,"IMDB Rating":5.4,"IMDB Votes":397},{"Title":"Prince of Persia: Sands of Time","US Gross":90755643,"Worldwide Gross":335055643,"US DVD Sales":null,"Production Budget":200000000,"Release Date":"May 28 2010","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Walt Disney Pictures","Source":"Based on Game","Major Genre":"Action","Creative Type":"Fantasy","Director":"Mike Newell","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Prestige","US Gross":53089891,"Worldwide Gross":107896006,"US DVD Sales":45394364,"Production Budget":40000000,"Release Date":"Oct 20 2006","MPAA Rating":"PG-13","Running Time min":131,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"Christopher Nolan","Rotten Tomatoes Rating":75,"IMDB Rating":8.4,"IMDB Votes":207322},{"Title":"The Party's Over","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Oct 24 2003","MPAA Rating":null,"Running Time min":null,"Distributor":"Film Movement","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Postman","US Gross":17650704,"Worldwide Gross":17650704,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Dec 25 1997","MPAA Rating":"R","Running Time min":177,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Kevin Costner","Rotten Tomatoes Rating":10,"IMDB Rating":5.5,"IMDB Votes":24045},{"Title":"Psycho Beach Party","US Gross":267972,"Worldwide Gross":267972,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Aug 04 2000","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":6,"IMDB Votes":3085},{"Title":"Psycho","US Gross":21541218,"Worldwide Gross":37226218,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 04 1998","MPAA Rating":"R","Running Time min":100,"Distributor":"Universal","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Gus Van Sant","Rotten Tomatoes Rating":35,"IMDB Rating":4.5,"IMDB Votes":19769},{"Title":"The Patriot","US Gross":113330342,"Worldwide Gross":215300000,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Jun 28 2000","MPAA Rating":"R","Running Time min":165,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Roland Emmerich","Rotten Tomatoes Rating":62,"IMDB Rating":6.9,"IMDB Votes":78302},{"Title":"Public Enemies","US Gross":97104620,"Worldwide Gross":210379983,"US DVD Sales":35026854,"Production Budget":102500000,"Release Date":"Jul 01 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Michael Mann","Rotten Tomatoes Rating":68,"IMDB Rating":7.1,"IMDB Votes":71323},{"Title":"The Powerpuff Girls","US Gross":11411644,"Worldwide Gross":16425701,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jul 03 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":3234},{"Title":"Pulse","US Gross":20264436,"Worldwide Gross":29771485,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Aug 11 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein/Dimension","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":5,"IMDB Votes":846},{"Title":"Punch-Drunk Love","US Gross":17791031,"Worldwide Gross":24591031,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Oct 11 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Paul Thomas Anderson","Rotten Tomatoes Rating":79,"IMDB Rating":7.4,"IMDB Votes":49786},{"Title":"Punisher: War Zone","US Gross":8050977,"Worldwide Gross":8199130,"US DVD Sales":10872355,"Production Budget":35000000,"Release Date":"Dec 05 2008","MPAA Rating":"R","Running Time min":101,"Distributor":"Lionsgate","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":6.1,"IMDB Votes":20865},{"Title":"Push","US Gross":31811527,"Worldwide Gross":44411527,"US DVD Sales":16118548,"Production Budget":38000000,"Release Date":"Feb 06 2009","MPAA Rating":"PG-13","Running Time min":111,"Distributor":"Summit Entertainment","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":6,"IMDB Votes":26623},{"Title":"Pushing Tin","US Gross":8408835,"Worldwide Gross":8408835,"US DVD Sales":null,"Production Budget":33000000,"Release Date":"Apr 23 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Magazine Article","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Mike Newell","Rotten Tomatoes Rating":49,"IMDB Rating":5.9,"IMDB Votes":16160},{"Title":"The Painted Veil","US Gross":8060487,"Worldwide Gross":15118795,"US DVD Sales":7574035,"Production Budget":19400000,"Release Date":"Dec 20 2006","MPAA Rating":"PG-13","Running Time min":125,"Distributor":"Warner Independent","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":74,"IMDB Rating":7.6,"IMDB Votes":26331},{"Title":"Pay it Forward","US Gross":33508922,"Worldwide Gross":33508922,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Oct 20 2000","MPAA Rating":"PG-13","Running Time min":123,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Mimi Leder","Rotten Tomatoes Rating":40,"IMDB Rating":6.8,"IMDB Votes":36762},{"Title":"Queen of the Damned","US Gross":30307804,"Worldwide Gross":30307804,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Feb 22 2002","MPAA Rating":"R","Running Time min":101,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":4.7,"IMDB Votes":20268},{"Title":"The Quiet American","US Gross":12987647,"Worldwide Gross":12987647,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Nov 22 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Phillip Noyce","Rotten Tomatoes Rating":87,"IMDB Rating":7.2,"IMDB Votes":14285},{"Title":"All the Queen's Men","US Gross":22723,"Worldwide Gross":22723,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 25 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Strand","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.5,"IMDB Votes":1591},{"Title":"Quarantine","US Gross":31691811,"Worldwide Gross":36091811,"US DVD Sales":13657408,"Production Budget":12000000,"Release Date":"Oct 10 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"John Erick Dowdle","Rotten Tomatoes Rating":58,"IMDB Rating":6.1,"IMDB Votes":21939},{"Title":"The Queen","US Gross":56441711,"Worldwide Gross":122840603,"US DVD Sales":29161789,"Production Budget":15000000,"Release Date":"Sep 30 2006","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Miramax","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Stephen Frears","Rotten Tomatoes Rating":97,"IMDB Rating":7.6,"IMDB Votes":34785},{"Title":"Quest for Camelot","US Gross":22772500,"Worldwide Gross":38172500,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"May 15 1998","MPAA Rating":"G","Running Time min":85,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":5,"IMDB Votes":3053},{"Title":"The Quiet","US Gross":381420,"Worldwide Gross":381420,"US DVD Sales":null,"Production Budget":900000,"Release Date":"Aug 25 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":7689},{"Title":"Quinceanera","US Gross":1692693,"Worldwide Gross":2522787,"US DVD Sales":null,"Production Budget":400000,"Release Date":"Aug 02 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":2577},{"Title":"Rabbit-Proof Fence","US Gross":6199600,"Worldwide Gross":16199600,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"Nov 29 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Phillip Noyce","Rotten Tomatoes Rating":87,"IMDB Rating":7.6,"IMDB Votes":13241},{"Title":"Radio","US Gross":52333738,"Worldwide Gross":53293628,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Oct 24 2003","MPAA Rating":"PG","Running Time min":109,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":6.9,"IMDB Votes":12070},{"Title":"The Rainmaker","US Gross":45916769,"Worldwide Gross":45916769,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Nov 21 1997","MPAA Rating":"PG-13","Running Time min":135,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":84,"IMDB Rating":6.9,"IMDB Votes":20514},{"Title":"Rambo","US Gross":42754105,"Worldwide Gross":116754105,"US DVD Sales":38751777,"Production Budget":47500000,"Release Date":"Jan 25 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Sylvester Stallone","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":82600},{"Title":"Random Hearts","US Gross":31054924,"Worldwide Gross":63200000,"US DVD Sales":null,"Production Budget":64000000,"Release Date":"Oct 08 1999","MPAA Rating":"R","Running Time min":133,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sydney Pollack","Rotten Tomatoes Rating":15,"IMDB Rating":4.8,"IMDB Votes":11100},{"Title":"Rugrats in Paris","US Gross":76501438,"Worldwide Gross":103284813,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Nov 17 2000","MPAA Rating":"G","Running Time min":79,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Rugrats Go Wild","US Gross":39402572,"Worldwide Gross":55443032,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jun 13 2003","MPAA Rating":"PG","Running Time min":84,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":5,"IMDB Votes":1847},{"Title":"Ratatouille","US Gross":206445654,"Worldwide Gross":620495432,"US DVD Sales":189134287,"Production Budget":150000000,"Release Date":"Jun 29 2007","MPAA Rating":"G","Running Time min":111,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Brad Bird","Rotten Tomatoes Rating":96,"IMDB Rating":8.1,"IMDB Votes":131929},{"Title":"Ray","US Gross":75305995,"Worldwide Gross":125305995,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Oct 29 2004","MPAA Rating":"PG-13","Running Time min":152,"Distributor":"Universal","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Taylor Hackford","Rotten Tomatoes Rating":81,"IMDB Rating":null,"IMDB Votes":null},{"Title":"BloodRayne","US Gross":2405420,"Worldwide Gross":2405420,"US DVD Sales":10828222,"Production Budget":25000000,"Release Date":"Jan 06 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Romar","Source":"Based on Game","Major Genre":"Action","Creative Type":"Fantasy","Director":"Uwe Boll","Rotten Tomatoes Rating":4,"IMDB Rating":2.7,"IMDB Votes":20137},{"Title":"Rollerball","US Gross":18990542,"Worldwide Gross":25852508,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Feb 08 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Remake","Major Genre":"Action","Creative Type":"Science Fiction","Director":"John McTiernan","Rotten Tomatoes Rating":3,"IMDB Rating":2.8,"IMDB Votes":13827},{"Title":"Robin Hood","US Gross":105269730,"Worldwide Gross":310885538,"US DVD Sales":null,"Production Budget":210000000,"Release Date":"May 14 2010","MPAA Rating":"PG-13","Running Time min":140,"Distributor":"Universal","Source":"Traditional/Legend/Fairytale","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":43,"IMDB Rating":6.9,"IMDB Votes":34501},{"Title":"Robots","US Gross":128200012,"Worldwide Gross":260700012,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Mar 11 2005","MPAA Rating":"PG","Running Time min":89,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Chris Wedge","Rotten Tomatoes Rating":64,"IMDB Rating":6.4,"IMDB Votes":27361},{"Title":"A Room for Romeo Brass","US Gross":20097,"Worldwide Gross":20097,"US DVD Sales":null,"Production Budget":5250000,"Release Date":"Oct 27 2000","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Shane Meadows","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":2393},{"Title":"Runaway Bride","US Gross":152257509,"Worldwide Gross":308007919,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Jul 30 1999","MPAA Rating":"PG","Running Time min":116,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Garry Marshall","Rotten Tomatoes Rating":45,"IMDB Rating":5.2,"IMDB Votes":28497},{"Title":"Racing Stripes","US Gross":49772522,"Worldwide Gross":93772522,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jan 14 2005","MPAA Rating":"PG","Running Time min":110,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":5.2,"IMDB Votes":5086},{"Title":"Rocky Balboa","US Gross":70269899,"Worldwide Gross":155720088,"US DVD Sales":34669384,"Production Budget":24000000,"Release Date":"Dec 20 2006","MPAA Rating":"PG","Running Time min":102,"Distributor":"MGM","Source":null,"Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Sylvester Stallone","Rotten Tomatoes Rating":76,"IMDB Rating":7.4,"IMDB Votes":63717},{"Title":"The Road to El Dorado","US Gross":50802661,"Worldwide Gross":65700000,"US DVD Sales":null,"Production Budget":95000000,"Release Date":"Mar 31 2000","MPAA Rating":"PG","Running Time min":90,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"David Silverman","Rotten Tomatoes Rating":49,"IMDB Rating":6.4,"IMDB Votes":8876},{"Title":"Riding Giants","US Gross":2276368,"Worldwide Gross":3216111,"US DVD Sales":null,"Production Budget":2600000,"Release Date":"Jul 09 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":93,"IMDB Rating":7.7,"IMDB Votes":2193},{"Title":"Red Dragon","US Gross":92955420,"Worldwide Gross":206455420,"US DVD Sales":null,"Production Budget":78000000,"Release Date":"Oct 04 2002","MPAA Rating":"R","Running Time min":125,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Brett Ratner","Rotten Tomatoes Rating":68,"IMDB Rating":7.3,"IMDB Votes":66386},{"Title":"The Reader","US Gross":34192652,"Worldwide Gross":106107610,"US DVD Sales":12359754,"Production Budget":33000000,"Release Date":"Dec 10 2008","MPAA Rating":"R","Running Time min":123,"Distributor":"Weinstein Co.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Stephen Daldry","Rotten Tomatoes Rating":61,"IMDB Rating":7.7,"IMDB Votes":46984},{"Title":"The Reaping","US Gross":25126214,"Worldwide Gross":62226214,"US DVD Sales":19812272,"Production Budget":40000000,"Release Date":"Apr 05 2007","MPAA Rating":"R","Running Time min":100,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Stephen Hopkins","Rotten Tomatoes Rating":8,"IMDB Rating":5.6,"IMDB Votes":19881},{"Title":"Rebound","US Gross":16809014,"Worldwide Gross":17492014,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jul 01 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Steve Carr","Rotten Tomatoes Rating":14,"IMDB Rating":4.7,"IMDB Votes":4485},{"Title":"Recess: School's Out","US Gross":36696761,"Worldwide Gross":44451470,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 16 2001","MPAA Rating":"G","Running Time min":83,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":62,"IMDB Rating":6.2,"IMDB Votes":2176},{"Title":"Redacted","US Gross":65388,"Worldwide Gross":65388,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Nov 16 2007","MPAA Rating":"R","Running Time min":90,"Distributor":"Magnolia Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Brian De Palma","Rotten Tomatoes Rating":44,"IMDB Rating":6.1,"IMDB Votes":5759},{"Title":"Red-Eye","US Gross":57891803,"Worldwide Gross":95891803,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Aug 19 2005","MPAA Rating":"PG-13","Running Time min":85,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Wes Craven","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":42489},{"Title":"Reign Over Me","US Gross":19661987,"Worldwide Gross":20081987,"US DVD Sales":16021076,"Production Budget":20000000,"Release Date":"Mar 23 2007","MPAA Rating":"R","Running Time min":128,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Mike Binder","Rotten Tomatoes Rating":63,"IMDB Rating":7.7,"IMDB Votes":39234},{"Title":"The Relic","US Gross":33956608,"Worldwide Gross":33956608,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jan 10 1997","MPAA Rating":"R","Running Time min":110,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Peter Hyams","Rotten Tomatoes Rating":32,"IMDB Rating":5.4,"IMDB Votes":10249},{"Title":"Religulous","US Gross":13011160,"Worldwide Gross":13136074,"US DVD Sales":7486708,"Production Budget":2500000,"Release Date":"Oct 01 2008","MPAA Rating":"R","Running Time min":101,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Larry Charles","Rotten Tomatoes Rating":69,"IMDB Rating":7.8,"IMDB Votes":23094},{"Title":"Remember Me","US Gross":19068240,"Worldwide Gross":55343435,"US DVD Sales":9952465,"Production Budget":16000000,"Release Date":"Mar 12 2010","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Summit Entertainment","Source":null,"Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":28,"IMDB Rating":7,"IMDB Votes":16319},{"Title":"Remember Me, My Love","US Gross":223878,"Worldwide Gross":223878,"US DVD Sales":null,"Production Budget":6700000,"Release Date":"Sep 03 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"IDP Distribution","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Gabriele Muccino","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":16319},{"Title":"Rent","US Gross":29077547,"Worldwide Gross":31670620,"US DVD Sales":31412380,"Production Budget":40000000,"Release Date":"Nov 23 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Musical/Opera","Major Genre":"Musical","Creative Type":"Historical Fiction","Director":"Chris Columbus","Rotten Tomatoes Rating":47,"IMDB Rating":6.9,"IMDB Votes":22605},{"Title":"The Replacements","US Gross":44737059,"Worldwide Gross":50054511,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Aug 11 2000","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Howard Deutch","Rotten Tomatoes Rating":39,"IMDB Rating":6.2,"IMDB Votes":21542},{"Title":"The Replacement Killers","US Gross":19035741,"Worldwide Gross":19035741,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Feb 06 1998","MPAA Rating":"R","Running Time min":86,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Antoine Fuqua","Rotten Tomatoes Rating":39,"IMDB Rating":5.9,"IMDB Votes":13905},{"Title":"Resident Evil: Apocalypse","US Gross":50740078,"Worldwide Gross":128940078,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Sep 10 2004","MPAA Rating":"R","Running Time min":94,"Distributor":"Sony Pictures","Source":"Based on Game","Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":52753},{"Title":"Resident Evil: Extinction","US Gross":50648679,"Worldwide Gross":146162920,"US DVD Sales":34217549,"Production Budget":45000000,"Release Date":"Sep 21 2007","MPAA Rating":"R","Running Time min":95,"Distributor":"Sony/Screen Gems","Source":"Based on Game","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Russell Mulcahy","Rotten Tomatoes Rating":22,"IMDB Rating":6.2,"IMDB Votes":49502},{"Title":"Resident Evil: Afterlife 3D","US Gross":46368993,"Worldwide Gross":149568993,"US DVD Sales":null,"Production Budget":57500000,"Release Date":"Sep 10 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Based on Game","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Paul Anderson","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Resident Evil","US Gross":40119709,"Worldwide Gross":103787401,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Mar 15 2002","MPAA Rating":"R","Running Time min":100,"Distributor":"Sony Pictures","Source":"Based on Game","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Paul Anderson","Rotten Tomatoes Rating":34,"IMDB Rating":6.4,"IMDB Votes":68342},{"Title":"Return to Me","US Gross":32662299,"Worldwide Gross":32662299,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Apr 07 2000","MPAA Rating":"PG","Running Time min":116,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":61,"IMDB Rating":6.6,"IMDB Votes":9565},{"Title":"Revolutionary Road","US Gross":22911480,"Worldwide Gross":76989671,"US DVD Sales":7642600,"Production Budget":35000000,"Release Date":"Dec 26 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Sam Mendes","Rotten Tomatoes Rating":68,"IMDB Rating":7.6,"IMDB Votes":45887},{"Title":"Be Kind Rewind","US Gross":11175164,"Worldwide Gross":28505302,"US DVD Sales":5162454,"Production Budget":20000000,"Release Date":"Feb 22 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Michel Gondry","Rotten Tomatoes Rating":65,"IMDB Rating":6.6,"IMDB Votes":42470},{"Title":"Reign of Fire","US Gross":43061982,"Worldwide Gross":82150183,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Feb 19 2002","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":5.9,"IMDB Votes":38414},{"Title":"Reindeer Games","US Gross":23360779,"Worldwide Gross":23360779,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Feb 25 2000","MPAA Rating":"R","Running Time min":104,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Frankenheimer","Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":16822},{"Title":"Rachel Getting Married","US Gross":12796277,"Worldwide Gross":13326280,"US DVD Sales":6635346,"Production Budget":12000000,"Release Date":"Oct 03 2008","MPAA Rating":"R","Running Time min":111,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Jonathan Demme","Rotten Tomatoes Rating":86,"IMDB Rating":6.9,"IMDB Votes":20451},{"Title":"The Rugrats Movie","US Gross":100494685,"Worldwide Gross":140894685,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Nov 20 1998","MPAA Rating":"G","Running Time min":79,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":57,"IMDB Rating":5.4,"IMDB Votes":4857},{"Title":"Riding in Cars with Boys","US Gross":29781453,"Worldwide Gross":29781453,"US DVD Sales":null,"Production Budget":47000000,"Release Date":"Oct 19 2001","MPAA Rating":"PG-13","Running Time min":131,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Penny Marshall","Rotten Tomatoes Rating":48,"IMDB Rating":6.2,"IMDB Votes":11895},{"Title":"Ride With the Devil","US Gross":630779,"Worldwide Gross":630779,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Nov 24 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"USA Films","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Ang Lee","Rotten Tomatoes Rating":63,"IMDB Rating":6.4,"IMDB Votes":1873},{"Title":"The Ring Two","US Gross":75941727,"Worldwide Gross":161941727,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Mar 18 2005","MPAA Rating":"PG-13","Running Time min":111,"Distributor":"Dreamworks SKG","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":5.1,"IMDB Votes":28408},{"Title":"Rize","US Gross":3278611,"Worldwide Gross":4462763,"US DVD Sales":null,"Production Budget":700000,"Release Date":"Jun 24 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":2052},{"Title":"The Adventures of Rocky & Bullwinkle","US Gross":26000610,"Worldwide Gross":35129610,"US DVD Sales":null,"Production Budget":76000000,"Release Date":"Jun 30 2000","MPAA Rating":"PG","Running Time min":91,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":4.1,"IMDB Votes":10320},{"Title":"All the Real Girls","US Gross":549666,"Worldwide Gross":703020,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Feb 14 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":"David Gordon Green","Rotten Tomatoes Rating":71,"IMDB Rating":7.1,"IMDB Votes":5632},{"Title":"Real Women Have Curves","US Gross":5853194,"Worldwide Gross":5853194,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Oct 18 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Newmarket Films","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":83,"IMDB Rating":7,"IMDB Votes":4396},{"Title":"Son of Rambow: A Home Movie","US Gross":1785505,"Worldwide Gross":10573083,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"May 02 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Romance and Cigarettes","US Gross":551002,"Worldwide Gross":3231251,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Sep 07 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Borotoro","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"John Turturro","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":5362},{"Title":"Reno 911!: Miami","US Gross":20342161,"Worldwide Gross":20342161,"US DVD Sales":16323972,"Production Budget":10000000,"Release Date":"Feb 23 2007","MPAA Rating":"R","Running Time min":81,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":5.8,"IMDB Votes":15684},{"Title":"Rounders","US Gross":22921898,"Worldwide Gross":22921898,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Sep 11 1998","MPAA Rating":"R","Running Time min":120,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Dahl","Rotten Tomatoes Rating":64,"IMDB Rating":7.3,"IMDB Votes":45439},{"Title":"Rendition","US Gross":9736045,"Worldwide Gross":20437142,"US DVD Sales":6007008,"Production Budget":27500000,"Release Date":"Oct 19 2007","MPAA Rating":"R","Running Time min":121,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Gavin Hood","Rotten Tomatoes Rating":46,"IMDB Rating":6.9,"IMDB Votes":23223},{"Title":"The Rocker","US Gross":6409528,"Worldwide Gross":8767338,"US DVD Sales":7970409,"Production Budget":15000000,"Release Date":"Aug 20 2008","MPAA Rating":"PG-13","Running Time min":102,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Cattaneo","Rotten Tomatoes Rating":40,"IMDB Rating":6.3,"IMDB Votes":11859},{"Title":"Rock Star","US Gross":16991902,"Worldwide Gross":19317765,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Sep 07 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Stephen Herek","Rotten Tomatoes Rating":52,"IMDB Rating":5.8,"IMDB Votes":15806},{"Title":"The Rookie","US Gross":75600072,"Worldwide Gross":80693537,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Mar 29 2002","MPAA Rating":"G","Running Time min":128,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":82,"IMDB Rating":5.5,"IMDB Votes":8453},{"Title":"Roll Bounce","US Gross":17380866,"Worldwide Gross":17500866,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Sep 23 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Malcolm D. Lee","Rotten Tomatoes Rating":64,"IMDB Rating":5,"IMDB Votes":3167},{"Title":"Romeo Must Die","US Gross":55973336,"Worldwide Gross":91036760,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 22 2000","MPAA Rating":"R","Running Time min":114,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Andrzej Bartkowiak","Rotten Tomatoes Rating":33,"IMDB Rating":5.9,"IMDB Votes":25309},{"Title":"Ronin","US Gross":41610884,"Worldwide Gross":41610884,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Sep 25 1998","MPAA Rating":"R","Running Time min":121,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Frankenheimer","Rotten Tomatoes Rating":68,"IMDB Rating":7.2,"IMDB Votes":57484},{"Title":"The Ballad of Jack and Rose","US Gross":712294,"Worldwide Gross":712294,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Mar 25 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":5223},{"Title":"Red Planet","US Gross":17480890,"Worldwide Gross":33463969,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Nov 10 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":5.3,"IMDB Votes":20989},{"Title":"Requiem for a Dream","US Gross":3635482,"Worldwide Gross":7390108,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Oct 06 2000","MPAA Rating":"Open","Running Time min":null,"Distributor":"Artisan","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Darren Aronofsky","Rotten Tomatoes Rating":78,"IMDB Rating":8.5,"IMDB Votes":185226},{"Title":"Rat Race","US Gross":56607223,"Worldwide Gross":86607223,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Aug 17 2001","MPAA Rating":"PG-13","Running Time min":112,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jerry Zucker","Rotten Tomatoes Rating":43,"IMDB Rating":6.4,"IMDB Votes":40087},{"Title":"Rescue Dawn","US Gross":5490423,"Worldwide Gross":7037886,"US DVD Sales":24745520,"Production Budget":10000000,"Release Date":"Jul 04 2007","MPAA Rating":"PG-13","Running Time min":125,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Werner Herzog","Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":37764},{"Title":"The Real Cancun","US Gross":3816594,"Worldwide Gross":3816594,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Apr 25 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Based on TV","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":2.3,"IMDB Votes":3211},{"Title":"Restless","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jan 28 2011","MPAA Rating":null,"Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":300},{"Title":"Remember the Titans","US Gross":115654751,"Worldwide Gross":136706683,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 29 2000","MPAA Rating":"PG","Running Time min":113,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Boaz Yakin","Rotten Tomatoes Rating":72,"IMDB Rating":7.5,"IMDB Votes":49844},{"Title":"Righteous Kill","US Gross":40081410,"Worldwide Gross":76781410,"US DVD Sales":16209689,"Production Budget":60000000,"Release Date":"Sep 12 2008","MPAA Rating":"R","Running Time min":100,"Distributor":"Overture Films","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Jon Avnet","Rotten Tomatoes Rating":20,"IMDB Rating":6,"IMDB Votes":34641},{"Title":"Road Trip","US Gross":68525609,"Worldwide Gross":119739110,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"May 19 2000","MPAA Rating":"R","Running Time min":94,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Todd Phillips","Rotten Tomatoes Rating":59,"IMDB Rating":6.4,"IMDB Votes":44702},{"Title":"The Ruins","US Gross":17432844,"Worldwide Gross":22177122,"US DVD Sales":10610865,"Production Budget":25000000,"Release Date":"Apr 04 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":47,"IMDB Rating":6,"IMDB Votes":23752},{"Title":"Rules of Engagement","US Gross":61322858,"Worldwide Gross":71719931,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Apr 07 2000","MPAA Rating":"R","Running Time min":127,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"William Friedkin","Rotten Tomatoes Rating":37,"IMDB Rating":6.2,"IMDB Votes":18462},{"Title":"The Rundown","US Gross":47641743,"Worldwide Gross":80831893,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Sep 26 2003","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Peter Berg","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":30855},{"Title":"Running Scared","US Gross":6855137,"Worldwide Gross":8345277,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Feb 24 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":7.5,"IMDB Votes":39447},{"Title":"Running With Scissors","US Gross":6775659,"Worldwide Gross":7213629,"US DVD Sales":1877732,"Production Budget":12000000,"Release Date":"Oct 20 2006","MPAA Rating":"R","Running Time min":116,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":6,"IMDB Votes":12926},{"Title":"Rush Hour 2","US Gross":226164286,"Worldwide Gross":347425832,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Aug 03 2001","MPAA Rating":"PG-13","Running Time min":90,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Brett Ratner","Rotten Tomatoes Rating":51,"IMDB Rating":6.4,"IMDB Votes":52049},{"Title":"Rush Hour 3","US Gross":140125968,"Worldwide Gross":253025968,"US DVD Sales":40854922,"Production Budget":180000000,"Release Date":"Aug 10 2007","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Brett Ratner","Rotten Tomatoes Rating":19,"IMDB Rating":6,"IMDB Votes":39312},{"Title":"Rush Hour","US Gross":141186864,"Worldwide Gross":245300000,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 18 1998","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Brett Ratner","Rotten Tomatoes Rating":60,"IMDB Rating":6.8,"IMDB Votes":55248},{"Title":"Rushmore","US Gross":17105219,"Worldwide Gross":19080435,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 11 1998","MPAA Rating":"R","Running Time min":89,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Wes Anderson","Rotten Tomatoes Rating":87,"IMDB Rating":7.8,"IMDB Votes":53192},{"Title":"R.V.","US Gross":71724497,"Worldwide Gross":87524497,"US DVD Sales":32041099,"Production Budget":55000000,"Release Date":"Apr 28 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Barry Sonnenfeld","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Ravenous","US Gross":2062406,"Worldwide Gross":2062406,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Mar 19 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":39,"IMDB Rating":6.9,"IMDB Votes":15804},{"Title":"Raise Your Voice","US Gross":10411980,"Worldwide Gross":14811980,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 08 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":5.2,"IMDB Votes":8634},{"Title":"Hotel Rwanda","US Gross":23519128,"Worldwide Gross":33919128,"US DVD Sales":null,"Production Budget":17500000,"Release Date":"Dec 22 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":90,"IMDB Rating":8.3,"IMDB Votes":92106},{"Title":"Sahara","US Gross":68671925,"Worldwide Gross":121671925,"US DVD Sales":null,"Production Budget":145000000,"Release Date":"Apr 08 2005","MPAA Rating":"PG-13","Running Time min":123,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":39,"IMDB Rating":5.9,"IMDB Votes":30739},{"Title":"The Saint","US Gross":61363304,"Worldwide Gross":169400000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Apr 04 1997","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Phillip Noyce","Rotten Tomatoes Rating":30,"IMDB Rating":5.9,"IMDB Votes":27413},{"Title":"The Salon","US Gross":139084,"Worldwide Gross":139084,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"May 11 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Freestyle Releasing","Source":"Based on Play","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":3.5,"IMDB Votes":308},{"Title":"I Am Sam","US Gross":40270895,"Worldwide Gross":40270895,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Dec 28 2001","MPAA Rating":"PG-13","Running Time min":132,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":34,"IMDB Rating":7.4,"IMDB Votes":36448},{"Title":"The Salton Sea","US Gross":676698,"Worldwide Gross":676698,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Apr 26 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"D.J. Caruso","Rotten Tomatoes Rating":63,"IMDB Rating":7.1,"IMDB Votes":16415},{"Title":"Sex and the City 2","US Gross":95347692,"Worldwide Gross":288347692,"US DVD Sales":null,"Production Budget":95000000,"Release Date":"May 27 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":3.9,"IMDB Votes":13796},{"Title":"Saved!","US Gross":8886160,"Worldwide Gross":10102511,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"May 28 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":22784},{"Title":"Saving Silverman","US Gross":19351569,"Worldwide Gross":19351569,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Feb 09 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Dennis Dugan","Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":18748},{"Title":"Saw","US Gross":55185045,"Worldwide Gross":103096345,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Oct 29 2004","MPAA Rating":"R","Running Time min":100,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":48,"IMDB Rating":7.7,"IMDB Votes":112785},{"Title":"Saw II","US Gross":87025093,"Worldwide Gross":152925093,"US DVD Sales":44699720,"Production Budget":5000000,"Release Date":"Oct 28 2005","MPAA Rating":"R","Running Time min":91,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Darren Lynn Bousman","Rotten Tomatoes Rating":36,"IMDB Rating":6.8,"IMDB Votes":76530},{"Title":"Saw III","US Gross":80238724,"Worldwide Gross":163876815,"US DVD Sales":47153811,"Production Budget":10000000,"Release Date":"Oct 27 2006","MPAA Rating":"R","Running Time min":107,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Darren Lynn Bousman","Rotten Tomatoes Rating":25,"IMDB Rating":6.3,"IMDB Votes":60784},{"Title":"Saw IV","US Gross":63300095,"Worldwide Gross":134528909,"US DVD Sales":31998452,"Production Budget":10000000,"Release Date":"Oct 26 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Darren Lynn Bousman","Rotten Tomatoes Rating":17,"IMDB Rating":6,"IMDB Votes":44730},{"Title":"Saw V","US Gross":56746769,"Worldwide Gross":113146769,"US DVD Sales":26535833,"Production Budget":10800000,"Release Date":"Oct 24 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":5.7,"IMDB Votes":31219},{"Title":"Saw VI","US Gross":27693292,"Worldwide Gross":61259697,"US DVD Sales":8308717,"Production Budget":11000000,"Release Date":"Oct 23 2009","MPAA Rating":"R","Running Time min":91,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Kevin Greutert","Rotten Tomatoes Rating":42,"IMDB Rating":6.2,"IMDB Votes":18091},{"Title":"Say It Isn't So","US Gross":5516708,"Worldwide Gross":5516708,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 23 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":4.6,"IMDB Votes":7736},{"Title":"Say Uncle","US Gross":5361,"Worldwide Gross":5361,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jun 23 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"TLA Releasing","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":431},{"Title":"The Adventures of Sharkboy and Lavagirl in 3-D","US Gross":39177684,"Worldwide Gross":69425966,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Jun 10 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Robert Rodriguez","Rotten Tomatoes Rating":20,"IMDB Rating":3.6,"IMDB Votes":5619},{"Title":"Seabiscuit","US Gross":120277854,"Worldwide Gross":148336445,"US DVD Sales":null,"Production Budget":86000000,"Release Date":"Jul 25 2003","MPAA Rating":"PG-13","Running Time min":141,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Gary Ross","Rotten Tomatoes Rating":77,"IMDB Rating":7.4,"IMDB Votes":31033},{"Title":"A Scanner Darkly","US Gross":5501616,"Worldwide Gross":7405084,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jul 07 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Independent","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Richard Linklater","Rotten Tomatoes Rating":68,"IMDB Rating":7.2,"IMDB Votes":41928},{"Title":"Scary Movie 2","US Gross":71277420,"Worldwide Gross":141189101,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Jul 04 2001","MPAA Rating":"R","Running Time min":82,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Keenen Ivory Wayans","Rotten Tomatoes Rating":14,"IMDB Rating":4.7,"IMDB Votes":43941},{"Title":"Scary Movie 3","US Gross":110000082,"Worldwide Gross":155200000,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Oct 24 2003","MPAA Rating":"PG-13","Running Time min":84,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"David Zucker","Rotten Tomatoes Rating":37,"IMDB Rating":5.4,"IMDB Votes":42829},{"Title":"Scary Movie 4","US Gross":90710620,"Worldwide Gross":178710620,"US DVD Sales":22401247,"Production Budget":40000000,"Release Date":"Apr 14 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Weinstein/Dimension","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"David Zucker","Rotten Tomatoes Rating":37,"IMDB Rating":5,"IMDB Votes":39542},{"Title":"Scooby-Doo 2: Monsters Unleashed","US Gross":84185387,"Worldwide Gross":181185387,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Mar 26 2004","MPAA Rating":"PG","Running Time min":93,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Raja Gosnell","Rotten Tomatoes Rating":null,"IMDB Rating":4.8,"IMDB Votes":10749},{"Title":"Scooby-Doo","US Gross":153294164,"Worldwide Gross":276294164,"US DVD Sales":null,"Production Budget":84000000,"Release Date":"Jun 14 2002","MPAA Rating":"PG","Running Time min":86,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Raja Gosnell","Rotten Tomatoes Rating":28,"IMDB Rating":4.7,"IMDB Votes":26018},{"Title":"About Schmidt","US Gross":65005217,"Worldwide Gross":105823486,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Dec 13 2002","MPAA Rating":"R","Running Time min":125,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Alexander Payne","Rotten Tomatoes Rating":85,"IMDB Rating":7.3,"IMDB Votes":53760},{"Title":"The School of Rock","US Gross":81261177,"Worldwide Gross":131161177,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 03 2003","MPAA Rating":"PG-13","Running Time min":108,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Richard Linklater","Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":63188},{"Title":"School for Scoundrels","US Gross":17807569,"Worldwide Gross":17807569,"US DVD Sales":13739501,"Production Budget":20000000,"Release Date":"Sep 29 2006","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"MGM","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Todd Phillips","Rotten Tomatoes Rating":26,"IMDB Rating":6,"IMDB Votes":15536},{"Title":"Scoop","US Gross":10525717,"Worldwide Gross":39125717,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jul 28 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Focus/Rogue Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":39,"IMDB Rating":6.8,"IMDB Votes":30336},{"Title":"The Score","US Gross":71069884,"Worldwide Gross":113542091,"US DVD Sales":null,"Production Budget":68000000,"Release Date":"Jul 13 2001","MPAA Rating":"R","Running Time min":124,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Frank Oz","Rotten Tomatoes Rating":74,"IMDB Rating":6.8,"IMDB Votes":42616},{"Title":"Scream","US Gross":103046663,"Worldwide Gross":173046663,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 20 1996","MPAA Rating":"R","Running Time min":110,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Wes Craven","Rotten Tomatoes Rating":81,"IMDB Rating":2.9,"IMDB Votes":217},{"Title":"Scream 2","US Gross":101363301,"Worldwide Gross":101363301,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Dec 12 1997","MPAA Rating":"R","Running Time min":120,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Wes Craven","Rotten Tomatoes Rating":80,"IMDB Rating":5.9,"IMDB Votes":48196},{"Title":"Scream 3","US Gross":89138076,"Worldwide Gross":161838076,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Feb 04 2000","MPAA Rating":"R","Running Time min":118,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Wes Craven","Rotten Tomatoes Rating":38,"IMDB Rating":5.3,"IMDB Votes":38230},{"Title":"The Scorpion King","US Gross":90580000,"Worldwide Gross":164529000,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Apr 19 2002","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"Universal","Source":"Spin-Off","Major Genre":"Action","Creative Type":"Fantasy","Director":"Chuck Russell","Rotten Tomatoes Rating":40,"IMDB Rating":5.3,"IMDB Votes":30359},{"Title":"George A. Romero's Survival of the Dead","US Gross":101740,"Worldwide Gross":101740,"US DVD Sales":943385,"Production Budget":4200000,"Release Date":"May 28 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":null,"Major Genre":"Horror","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Stardust","US Gross":38634938,"Worldwide Gross":135556675,"US DVD Sales":25129402,"Production Budget":70000000,"Release Date":"Aug 10 2007","MPAA Rating":"PG-13","Running Time min":128,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Matthew Vaughn","Rotten Tomatoes Rating":76,"IMDB Rating":7.9,"IMDB Votes":87883},{"Title":"Mar adentro","US Gross":2086345,"Worldwide Gross":39686345,"US DVD Sales":null,"Production Budget":13300000,"Release Date":"Dec 17 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":466},{"Title":"Selena","US Gross":35450113,"Worldwide Gross":35450113,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 21 1997","MPAA Rating":"PG","Running Time min":127,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":63,"IMDB Rating":6.3,"IMDB Votes":7996},{"Title":"The Sentinel","US Gross":36280697,"Worldwide Gross":77280697,"US DVD Sales":17497571,"Production Budget":60000000,"Release Date":"Apr 21 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":6.1,"IMDB Votes":23567},{"Title":"September Dawn","US Gross":901857,"Worldwide Gross":901857,"US DVD Sales":null,"Production Budget":10100000,"Release Date":"Aug 24 2007","MPAA Rating":"R","Running Time min":110,"Distributor":"Black Diamond Pictures","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":5.5,"IMDB Votes":1823},{"Title":"You Got Served","US Gross":40066497,"Worldwide Gross":48066497,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Jan 30 2004","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":2.6,"IMDB Votes":17830},{"Title":"Serving Sara","US Gross":16930185,"Worldwide Gross":20146150,"US DVD Sales":null,"Production Budget":29000000,"Release Date":"Aug 23 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":5,"IMDB Votes":7973},{"Title":"Session 9","US Gross":378176,"Worldwide Gross":1619602,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Aug 10 2001","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":"Brad Anderson","Rotten Tomatoes Rating":60,"IMDB Rating":6.8,"IMDB Votes":14685},{"Title":"Seven Years in Tibet","US Gross":37945884,"Worldwide Gross":131445884,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Oct 10 1997","MPAA Rating":"PG-13","Running Time min":139,"Distributor":"Sony Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Jean-Jacques Annaud","Rotten Tomatoes Rating":59,"IMDB Rating":6.7,"IMDB Votes":29020},{"Title":"Sex and the City","US Gross":152647258,"Worldwide Gross":416047258,"US DVD Sales":85061666,"Production Budget":57500000,"Release Date":"May 30 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":49,"IMDB Rating":5.4,"IMDB Votes":46837},{"Title":"Swordfish","US Gross":69772969,"Worldwide Gross":147080413,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 08 2001","MPAA Rating":"R","Running Time min":99,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Dominic Sena","Rotten Tomatoes Rating":25,"IMDB Rating":6.3,"IMDB Votes":57952},{"Title":"Something's Gotta Give","US Gross":124685242,"Worldwide Gross":266685242,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Dec 12 2003","MPAA Rating":"PG-13","Running Time min":128,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Nancy Meyers","Rotten Tomatoes Rating":70,"IMDB Rating":6.8,"IMDB Votes":36303},{"Title":"Sugar Town","US Gross":178095,"Worldwide Gross":178095,"US DVD Sales":null,"Production Budget":250000,"Release Date":"Sep 17 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"October Films","Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":5.6,"IMDB Votes":566},{"Title":"Shade","US Gross":22183,"Worldwide Gross":22183,"US DVD Sales":null,"Production Budget":6800000,"Release Date":"Apr 09 2004","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":950},{"Title":"Shadow of the Vampire","US Gross":8279017,"Worldwide Gross":8279017,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Dec 29 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"E. Elias Merhige","Rotten Tomatoes Rating":81,"IMDB Rating":6.8,"IMDB Votes":18221},{"Title":"Shaft","US Gross":70327868,"Worldwide Gross":107190108,"US DVD Sales":null,"Production Budget":53012938,"Release Date":"Jun 16 2000","MPAA Rating":"R","Running Time min":99,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"John Singleton","Rotten Tomatoes Rating":68,"IMDB Rating":5.9,"IMDB Votes":32881},{"Title":"The Shaggy Dog","US Gross":61123569,"Worldwide Gross":87123569,"US DVD Sales":28587103,"Production Budget":60000000,"Release Date":"Mar 10 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Brian Robbins","Rotten Tomatoes Rating":27,"IMDB Rating":4.1,"IMDB Votes":6116},{"Title":"Scary Movie","US Gross":157019771,"Worldwide Gross":277200000,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Jul 07 2000","MPAA Rating":"R","Running Time min":88,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Keenen Ivory Wayans","Rotten Tomatoes Rating":53,"IMDB Rating":6,"IMDB Votes":68541},{"Title":"Shaun of the Dead","US Gross":13542874,"Worldwide Gross":29629128,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Sep 24 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus/Rogue Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Edgar Wright","Rotten Tomatoes Rating":91,"IMDB Rating":8,"IMDB Votes":134693},{"Title":"Shortbus","US Gross":1985292,"Worldwide Gross":1985292,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Oct 04 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"ThinkFilm","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":66,"IMDB Rating":6.7,"IMDB Votes":14276},{"Title":"She's All That","US Gross":63465522,"Worldwide Gross":63465522,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jan 29 1999","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":5.4,"IMDB Votes":28498},{"Title":"She's the Man","US Gross":33889159,"Worldwide Gross":56889159,"US DVD Sales":33340509,"Production Budget":25000000,"Release Date":"Mar 17 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Play","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Andy Fickman","Rotten Tomatoes Rating":44,"IMDB Rating":6.4,"IMDB Votes":26513},{"Title":"Sherrybaby","US Gross":199176,"Worldwide Gross":622806,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Sep 08 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":74,"IMDB Rating":6.7,"IMDB Votes":6372},{"Title":"Shallow Hal","US Gross":70836296,"Worldwide Gross":70836296,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Nov 09 2001","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Bobby Farrelly","Rotten Tomatoes Rating":50,"IMDB Rating":6,"IMDB Votes":35878},{"Title":"Silent Hill","US Gross":46982632,"Worldwide Gross":99982632,"US DVD Sales":22104517,"Production Budget":50000000,"Release Date":"Apr 21 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Game","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Christophe Gans","Rotten Tomatoes Rating":29,"IMDB Rating":6.5,"IMDB Votes":65485},{"Title":"Shutter Island","US Gross":128012934,"Worldwide Gross":294512934,"US DVD Sales":22083616,"Production Budget":80000000,"Release Date":"Feb 19 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"Martin Scorsese","Rotten Tomatoes Rating":67,"IMDB Rating":8,"IMDB Votes":105706},{"Title":"Shakespeare in Love","US Gross":100317794,"Worldwide Gross":279500000,"US DVD Sales":null,"Production Budget":26000000,"Release Date":"Dec 11 1998","MPAA Rating":"R","Running Time min":122,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Historical Fiction","Director":"John Madden","Rotten Tomatoes Rating":93,"IMDB Rating":7.4,"IMDB Votes":77911},{"Title":"In the Shadow of the Moon","US Gross":1134358,"Worldwide Gross":1134358,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Sep 07 2007","MPAA Rating":"PG","Running Time min":100,"Distributor":"ThinkFilm","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":94,"IMDB Rating":8,"IMDB Votes":2974},{"Title":"Sherlock Holmes","US Gross":209028679,"Worldwide Gross":518249844,"US DVD Sales":42276167,"Production Budget":80000000,"Release Date":"Dec 25 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Guy Ritchie","Rotten Tomatoes Rating":69,"IMDB Rating":7.5,"IMDB Votes":91555},{"Title":"She's Out of My League","US Gross":31628317,"Worldwide Gross":49219151,"US DVD Sales":7889235,"Production Budget":20000000,"Release Date":"Mar 12 2010","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":57,"IMDB Rating":6.7,"IMDB Votes":17449},{"Title":"Shooter","US Gross":47003582,"Worldwide Gross":95203582,"US DVD Sales":57333255,"Production Budget":60000000,"Release Date":"Mar 23 2007","MPAA Rating":"R","Running Time min":125,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Antoine Fuqua","Rotten Tomatoes Rating":48,"IMDB Rating":7.2,"IMDB Votes":149},{"Title":"Shrek","US Gross":267655011,"Worldwide Gross":484399218,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"May 18 2001","MPAA Rating":"PG","Running Time min":90,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Andrew Adamson","Rotten Tomatoes Rating":89,"IMDB Rating":8,"IMDB Votes":163855},{"Title":"Shrek 2","US Gross":441226247,"Worldwide Gross":919838758,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"May 19 2004","MPAA Rating":"PG","Running Time min":92,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Andrew Adamson","Rotten Tomatoes Rating":89,"IMDB Rating":7.5,"IMDB Votes":95658},{"Title":"Shrek the Third","US Gross":322719944,"Worldwide Gross":798958162,"US DVD Sales":176400340,"Production Budget":160000000,"Release Date":"May 18 2007","MPAA Rating":"PG","Running Time min":92,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":41,"IMDB Rating":6.1,"IMDB Votes":59778},{"Title":"Shrek Forever After","US Gross":238395990,"Worldwide Gross":729395990,"US DVD Sales":null,"Production Budget":165000000,"Release Date":"May 21 2010","MPAA Rating":"PG","Running Time min":93,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":12193},{"Title":"Shark Tale","US Gross":160861908,"Worldwide Gross":367275019,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Oct 01 2004","MPAA Rating":"PG","Running Time min":90,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Rob Letterman","Rotten Tomatoes Rating":35,"IMDB Rating":5.9,"IMDB Votes":40019},{"Title":"Shattered Glass","US Gross":2207975,"Worldwide Gross":2932719,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Oct 31 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":91,"IMDB Rating":7.4,"IMDB Votes":14575},{"Title":"Stealing Harvard","US Gross":13973532,"Worldwide Gross":13973532,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Sep 13 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":4.7,"IMDB Votes":6899},{"Title":"Showtime","US Gross":37948765,"Worldwide Gross":78948765,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Mar 15 2002","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Tom Dey","Rotten Tomatoes Rating":24,"IMDB Rating":5.3,"IMDB Votes":22128},{"Title":"Sicko","US Gross":24538513,"Worldwide Gross":33538513,"US DVD Sales":17438209,"Production Budget":9000000,"Release Date":"Jun 22 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Michael Moore","Rotten Tomatoes Rating":93,"IMDB Rating":8.2,"IMDB Votes":40886},{"Title":"The Siege","US Gross":40934175,"Worldwide Gross":116625798,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Nov 06 1998","MPAA Rating":"R","Running Time min":116,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Edward Zwick","Rotten Tomatoes Rating":44,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Signs","US Gross":227965690,"Worldwide Gross":408265690,"US DVD Sales":null,"Production Budget":70702619,"Release Date":"Aug 02 2002","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"M. Night Shyamalan","Rotten Tomatoes Rating":74,"IMDB Rating":6.9,"IMDB Votes":111561},{"Title":"Simon Birch","US Gross":18253415,"Worldwide Gross":18253415,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Sep 11 1998","MPAA Rating":"PG","Running Time min":110,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Mark Steven Johnson","Rotten Tomatoes Rating":44,"IMDB Rating":6.7,"IMDB Votes":11371},{"Title":"A Simple Wish","US Gross":8165213,"Worldwide Gross":8165213,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Jul 11 1997","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Michael Ritchie","Rotten Tomatoes Rating":27,"IMDB Rating":4.9,"IMDB Votes":1545},{"Title":"The Simpsons Movie","US Gross":183135014,"Worldwide Gross":527071022,"US DVD Sales":96359085,"Production Budget":72500000,"Release Date":"Jul 27 2007","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"David Silverman","Rotten Tomatoes Rating":89,"IMDB Rating":7.6,"IMDB Votes":117656},{"Title":"Sinbad: Legend of the Seven Seas","US Gross":26483452,"Worldwide Gross":80767884,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jul 02 2003","MPAA Rating":"PG","Running Time min":86,"Distributor":"Dreamworks SKG","Source":"Traditional/Legend/Fairytale","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Tim Johnson","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":7895},{"Title":"Sin City","US Gross":74103820,"Worldwide Gross":158753820,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Apr 01 2005","MPAA Rating":"R","Running Time min":126,"Distributor":"Miramax/Dimension","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Fantasy","Director":"Robert Rodriguez","Rotten Tomatoes Rating":77,"IMDB Rating":8.3,"IMDB Votes":255814},{"Title":"The Singing Detective","US Gross":336456,"Worldwide Gross":524747,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Oct 24 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":38,"IMDB Rating":5.6,"IMDB Votes":4441},{"Title":"The Sixth Sense","US Gross":293506292,"Worldwide Gross":672806292,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 06 1999","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"M. Night Shyamalan","Rotten Tomatoes Rating":85,"IMDB Rating":8.2,"IMDB Votes":238745},{"Title":"Super Size Me","US Gross":11529368,"Worldwide Gross":29529368,"US DVD Sales":null,"Production Budget":65000,"Release Date":"May 07 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"IDP Distribution","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":"Morgan Spurlock","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":33805},{"Title":"The Skeleton Key","US Gross":47907715,"Worldwide Gross":92907715,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 12 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Iain Softley","Rotten Tomatoes Rating":38,"IMDB Rating":6.5,"IMDB Votes":29810},{"Title":"The Skulls","US Gross":35007180,"Worldwide Gross":35007180,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Mar 31 2000","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Rob Cohen","Rotten Tomatoes Rating":8,"IMDB Rating":5.3,"IMDB Votes":14903},{"Title":"Sky High","US Gross":63939454,"Worldwide Gross":81627454,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jul 29 2005","MPAA Rating":"PG","Running Time min":102,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":73,"IMDB Rating":6.6,"IMDB Votes":20923},{"Title":"Slackers","US Gross":4814244,"Worldwide Gross":4814244,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Feb 01 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":4.9,"IMDB Votes":7934},{"Title":"Ready to Rumble","US Gross":12372410,"Worldwide Gross":12372410,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Apr 07 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Brian Robbins","Rotten Tomatoes Rating":25,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Soldier","US Gross":14623082,"Worldwide Gross":14623082,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Oct 23 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Paul Anderson","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Sleepy Hollow","US Gross":101068340,"Worldwide Gross":207068340,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Nov 19 1999","MPAA Rating":"R","Running Time min":105,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":"Tim Burton","Rotten Tomatoes Rating":68,"IMDB Rating":7.5,"IMDB Votes":107511},{"Title":"Lucky Number Slevin","US Gross":22495466,"Worldwide Gross":55495466,"US DVD Sales":26858545,"Production Budget":27000000,"Release Date":"Apr 07 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Paul McGuigan","Rotten Tomatoes Rating":51,"IMDB Rating":7.8,"IMDB Votes":91145},{"Title":"The Secret Life of Bees","US Gross":37766350,"Worldwide Gross":39612166,"US DVD Sales":17077991,"Production Budget":11000000,"Release Date":"Oct 17 2008","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":57,"IMDB Rating":7,"IMDB Votes":7077},{"Title":"Hannibal","US Gross":165092266,"Worldwide Gross":350100280,"US DVD Sales":null,"Production Budget":87000000,"Release Date":"Feb 09 2001","MPAA Rating":"R","Running Time min":131,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Ridley Scott","Rotten Tomatoes Rating":39,"IMDB Rating":6.4,"IMDB Votes":74862},{"Title":"Southland Tales","US Gross":275380,"Worldwide Gross":364607,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Nov 14 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Samuel Goldwyn Films","Source":"Original Screenplay","Major Genre":"Musical","Creative Type":"Contemporary Fiction","Director":"Richard Kelly","Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":20172},{"Title":"Slow Burn","US Gross":1237615,"Worldwide Gross":1237615,"US DVD Sales":893953,"Production Budget":15500000,"Release Date":"Apr 13 2007","MPAA Rating":"R","Running Time min":93,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":5.9,"IMDB Votes":2318},{"Title":"Sleepover","US Gross":9408183,"Worldwide Gross":9408183,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jul 09 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":4.6,"IMDB Votes":4774},{"Title":"The Bridge of San Luis Rey","US Gross":49981,"Worldwide Gross":1696765,"US DVD Sales":null,"Production Budget":24000000,"Release Date":"Jun 10 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":4,"IMDB Rating":5,"IMDB Votes":1913},{"Title":"Slither","US Gross":7802450,"Worldwide Gross":12834936,"US DVD Sales":7475776,"Production Budget":15250000,"Release Date":"Mar 31 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":85,"IMDB Rating":6.6,"IMDB Votes":26101},{"Title":"Slumdog Millionaire","US Gross":141319928,"Worldwide Gross":365257315,"US DVD Sales":31952272,"Production Budget":14000000,"Release Date":"Nov 12 2008","MPAA Rating":"R","Running Time min":116,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Danny Boyle","Rotten Tomatoes Rating":94,"IMDB Rating":8.3,"IMDB Votes":176325},{"Title":"Slums of Beverly Hills","US Gross":5502773,"Worldwide Gross":5502773,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Aug 14 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Real Life Events","Major Genre":"Comedy","Creative Type":"Dramatization","Director":"Tamara Jenkins","Rotten Tomatoes Rating":79,"IMDB Rating":6.4,"IMDB Votes":5821},{"Title":"Small Soldiers","US Gross":55143823,"Worldwide Gross":71743823,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 10 1998","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Joe Dante","Rotten Tomatoes Rating":46,"IMDB Rating":5.9,"IMDB Votes":20571},{"Title":"Mr. And Mrs. Smith","US Gross":186336279,"Worldwide Gross":478336279,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Jun 10 2005","MPAA Rating":"PG-13","Running Time min":112,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Doug Liman","Rotten Tomatoes Rating":null,"IMDB Rating":4.7,"IMDB Votes":189},{"Title":"Smokin' Aces","US Gross":35662731,"Worldwide Gross":56047261,"US DVD Sales":35817034,"Production Budget":17000000,"Release Date":"Jan 26 2007","MPAA Rating":"R","Running Time min":108,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Joe Carnahan","Rotten Tomatoes Rating":28,"IMDB Rating":6.6,"IMDB Votes":57313},{"Title":"Someone Like You","US Gross":27338033,"Worldwide Gross":38684906,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Mar 30 2001","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Tony Goldwyn","Rotten Tomatoes Rating":41,"IMDB Rating":5.8,"IMDB Votes":10073},{"Title":"Death to Smoochy","US Gross":8355815,"Worldwide Gross":8374062,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Mar 29 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Danny De Vito","Rotten Tomatoes Rating":42,"IMDB Rating":6.2,"IMDB Votes":22379},{"Title":"Simply Irresistible","US Gross":4398989,"Worldwide Gross":4398989,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Feb 05 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":14,"IMDB Rating":4.8,"IMDB Votes":6927},{"Title":"Summer Catch","US Gross":19693891,"Worldwide Gross":19693891,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Aug 24 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":7,"IMDB Rating":4.6,"IMDB Votes":6848},{"Title":"There's Something About Mary","US Gross":176484651,"Worldwide Gross":360099999,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Jul 15 1998","MPAA Rating":"R","Running Time min":119,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Bobby Farrelly","Rotten Tomatoes Rating":83,"IMDB Rating":7.2,"IMDB Votes":96443},{"Title":"Snake Eyes","US Gross":55591409,"Worldwide Gross":103891409,"US DVD Sales":null,"Production Budget":73000000,"Release Date":"Aug 07 1998","MPAA Rating":"R","Running Time min":99,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Brian De Palma","Rotten Tomatoes Rating":41,"IMDB Rating":5.8,"IMDB Votes":29321},{"Title":"Snakes on a Plane","US Gross":34020814,"Worldwide Gross":62020814,"US DVD Sales":23704179,"Production Budget":33000000,"Release Date":"Aug 18 2006","MPAA Rating":"R","Running Time min":105,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"David R. Ellis","Rotten Tomatoes Rating":68,"IMDB Rating":6,"IMDB Votes":65841},{"Title":"Lemony Snicket's A Series of Unfortunate Events","US Gross":118627117,"Worldwide Gross":201627117,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Dec 17 2004","MPAA Rating":"PG","Running Time min":108,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Brad Silberling","Rotten Tomatoes Rating":71,"IMDB Rating":6.9,"IMDB Votes":51614},{"Title":"House of Sand and Fog","US Gross":13005485,"Worldwide Gross":16157923,"US DVD Sales":null,"Production Budget":16500000,"Release Date":"Dec 19 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":75,"IMDB Rating":7.8,"IMDB Votes":29777},{"Title":"A Sound of Thunder","US Gross":1900451,"Worldwide Gross":6300451,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Sep 02 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Peter Hyams","Rotten Tomatoes Rating":6,"IMDB Rating":4.1,"IMDB Votes":9915},{"Title":"See No Evil","US Gross":15032800,"Worldwide Gross":15387513,"US DVD Sales":45391536,"Production Budget":8000000,"Release Date":"May 19 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":5,"IMDB Votes":10035},{"Title":"The Shipping News","US Gross":11405825,"Worldwide Gross":24405825,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Dec 25 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Lasse Hallstrom","Rotten Tomatoes Rating":55,"IMDB Rating":6.7,"IMDB Votes":17338},{"Title":"Shanghai Knights","US Gross":60470220,"Worldwide Gross":60470220,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 07 2003","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"David Dobkin","Rotten Tomatoes Rating":66,"IMDB Rating":6.2,"IMDB Votes":24893},{"Title":"Shanghai Noon","US Gross":56932305,"Worldwide Gross":71189835,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"May 26 2000","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Tom Dey","Rotten Tomatoes Rating":78,"IMDB Rating":6.6,"IMDB Votes":32446},{"Title":"Snow Dogs","US Gross":81150692,"Worldwide Gross":115010692,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Jan 18 2002","MPAA Rating":"PG","Running Time min":99,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Brian Levant","Rotten Tomatoes Rating":23,"IMDB Rating":4.9,"IMDB Votes":7561},{"Title":"Snow Falling on Cedars","US Gross":14378353,"Worldwide Gross":14378353,"US DVD Sales":null,"Production Budget":36000000,"Release Date":"Dec 24 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":6.7,"IMDB Votes":8444},{"Title":"Sunshine","US Gross":3688560,"Worldwide Gross":32030610,"US DVD Sales":6342481,"Production Budget":40000000,"Release Date":"Jul 20 2007","MPAA Rating":"R","Running Time min":108,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":"Danny Boyle","Rotten Tomatoes Rating":74,"IMDB Rating":7.3,"IMDB Votes":74535},{"Title":"Snatch","US Gross":30093107,"Worldwide Gross":83593107,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Dec 08 2000","MPAA Rating":"R","Running Time min":103,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Guy Ritchie","Rotten Tomatoes Rating":null,"IMDB Rating":8.2,"IMDB Votes":173919},{"Title":"Snow Day","US Gross":60008303,"Worldwide Gross":62452927,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Feb 11 2000","MPAA Rating":"PG","Running Time min":89,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":4.4,"IMDB Votes":4611},{"Title":"Sorority Boys","US Gross":10198766,"Worldwide Gross":12516222,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Mar 22 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":5.1,"IMDB Votes":7392},{"Title":"Solaris","US Gross":14970038,"Worldwide Gross":14970038,"US DVD Sales":null,"Production Budget":47000000,"Release Date":"Nov 27 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Drama","Creative Type":"Science Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":65,"IMDB Rating":6.2,"IMDB Votes":33151},{"Title":"Solitary Man","US Gross":4354546,"Worldwide Gross":4354546,"US DVD Sales":null,"Production Budget":12500000,"Release Date":"May 21 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Anchor Bay Entertainment","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":1936},{"Title":"The Soloist","US Gross":31720158,"Worldwide Gross":38286958,"US DVD Sales":10310814,"Production Budget":60000000,"Release Date":"Apr 24 2009","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Joe Wright","Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":14257},{"Title":"Songcatcher","US Gross":3050934,"Worldwide Gross":3050934,"US DVD Sales":null,"Production Budget":1800000,"Release Date":"Jun 15 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":1997},{"Title":"Sonny","US Gross":17639,"Worldwide Gross":17639,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Dec 27 2002","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":5.7,"IMDB Votes":1941},{"Title":"Standard Operating Procedure","US Gross":228830,"Worldwide Gross":228830,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Apr 25 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":80,"IMDB Rating":7.5,"IMDB Votes":1640},{"Title":"The Sorcerer's Apprentice","US Gross":62492818,"Worldwide Gross":200092818,"US DVD Sales":null,"Production Budget":160000000,"Release Date":"Jul 14 2010","MPAA Rating":"PG","Running Time min":110,"Distributor":"Walt Disney Pictures","Source":"Based on Short Film","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":42,"IMDB Rating":6.4,"IMDB Votes":9108},{"Title":"Soul Food","US Gross":43492389,"Worldwide Gross":43492389,"US DVD Sales":null,"Production Budget":7500000,"Release Date":"Sep 26 1997","MPAA Rating":"R","Running Time min":114,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":80,"IMDB Rating":6.4,"IMDB Votes":2636},{"Title":"Soul Plane","US Gross":13922211,"Worldwide Gross":14553807,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"May 28 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":3.7,"IMDB Votes":9143},{"Title":"South Park: Bigger, Longer & Uncut","US Gross":52037603,"Worldwide Gross":52037603,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Jun 30 1999","MPAA Rating":"R","Running Time min":80,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Trey Parker","Rotten Tomatoes Rating":80,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Space Jam","US Gross":90463534,"Worldwide Gross":250200000,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Nov 15 1996","MPAA Rating":"PG","Running Time min":87,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Joe Pytka","Rotten Tomatoes Rating":36,"IMDB Rating":5.6,"IMDB Votes":29293},{"Title":"Spanglish","US Gross":42044321,"Worldwide Gross":54344321,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Dec 17 2004","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"James L. Brooks","Rotten Tomatoes Rating":52,"IMDB Rating":6.7,"IMDB Votes":30660},{"Title":"Spawn","US Gross":54979992,"Worldwide Gross":87949859,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 31 1997","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"New Line","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":20,"IMDB Rating":4.8,"IMDB Votes":21366},{"Title":"Superbad","US Gross":121463226,"Worldwide Gross":169863226,"US DVD Sales":134555373,"Production Budget":17500000,"Release Date":"Aug 17 2007","MPAA Rating":"R","Running Time min":112,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Greg Mottola","Rotten Tomatoes Rating":87,"IMDB Rating":7.8,"IMDB Votes":134212},{"Title":"SpongeBob SquarePants","US Gross":85416609,"Worldwide Gross":140416609,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Nov 19 2004","MPAA Rating":"PG","Running Time min":90,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Space Chimps","US Gross":30105968,"Worldwide Gross":59517784,"US DVD Sales":13349286,"Production Budget":37000000,"Release Date":"Jul 18 2008","MPAA Rating":"G","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":4.5,"IMDB Votes":4324},{"Title":"Space Cowboys","US Gross":90454043,"Worldwide Gross":128874043,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Aug 04 2000","MPAA Rating":"PG-13","Running Time min":130,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Clint Eastwood","Rotten Tomatoes Rating":79,"IMDB Rating":6.3,"IMDB Votes":29983},{"Title":"Spider","US Gross":1641788,"Worldwide Gross":1641788,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 28 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"David Cronenberg","Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":560},{"Title":"Speed Racer","US Gross":43945766,"Worldwide Gross":93394462,"US DVD Sales":14217924,"Production Budget":120000000,"Release Date":"May 09 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Andy Wachowski","Rotten Tomatoes Rating":38,"IMDB Rating":6.3,"IMDB Votes":32672},{"Title":"The Spiderwick Chronicles","US Gross":71195053,"Worldwide Gross":162839667,"US DVD Sales":27525903,"Production Budget":92500000,"Release Date":"Feb 14 2008","MPAA Rating":"PG","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Mark Waters","Rotten Tomatoes Rating":79,"IMDB Rating":6.8,"IMDB Votes":18715},{"Title":"Speedway Junky","US Gross":17127,"Worldwide Gross":17127,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Aug 31 2001","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.7,"IMDB Votes":1205},{"Title":"Speed II: Cruise Control","US Gross":48097081,"Worldwide Gross":150468000,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Jun 13 1997","MPAA Rating":"PG-13","Running Time min":125,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Jan De Bont","Rotten Tomatoes Rating":null,"IMDB Rating":3.4,"IMDB Votes":30896},{"Title":"Sphere","US Gross":37068294,"Worldwide Gross":50168294,"US DVD Sales":null,"Production Budget":73000000,"Release Date":"Feb 13 1998","MPAA Rating":"PG-13","Running Time min":132,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":12,"IMDB Rating":5.6,"IMDB Votes":31461},{"Title":"Spiceworld","US Gross":29342592,"Worldwide Gross":56042592,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jan 23 1998","MPAA Rating":"PG","Running Time min":92,"Distributor":"Sony Pictures","Source":"Musical Group Movie","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":2.9,"IMDB Votes":18010},{"Title":"Spider-Man 2","US Gross":373524485,"Worldwide Gross":783705001,"US DVD Sales":4196484,"Production Budget":200000000,"Release Date":"Jun 30 2004","MPAA Rating":"PG-13","Running Time min":127,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Sam Raimi","Rotten Tomatoes Rating":93,"IMDB Rating":7.7,"IMDB Votes":141940},{"Title":"Spider-Man 3","US Gross":336530303,"Worldwide Gross":890871626,"US DVD Sales":124058348,"Production Budget":258000000,"Release Date":"May 04 2007","MPAA Rating":"PG-13","Running Time min":139,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Sam Raimi","Rotten Tomatoes Rating":63,"IMDB Rating":6.4,"IMDB Votes":141513},{"Title":"Spider-Man","US Gross":403706375,"Worldwide Gross":821708551,"US DVD Sales":null,"Production Budget":139000000,"Release Date":"May 03 2002","MPAA Rating":"PG-13","Running Time min":121,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Sam Raimi","Rotten Tomatoes Rating":89,"IMDB Rating":7.4,"IMDB Votes":167524},{"Title":"Scott Pilgrim vs. The World","US Gross":31167395,"Worldwide Gross":43149143,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Aug 13 2010","MPAA Rating":"PG-13","Running Time min":112,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Edgar Wright","Rotten Tomatoes Rating":81,"IMDB Rating":8.1,"IMDB Votes":17461},{"Title":"See Spot Run","US Gross":33357476,"Worldwide Gross":43057552,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Mar 02 2001","MPAA Rating":"PG","Running Time min":97,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":24,"IMDB Rating":4.9,"IMDB Votes":3673},{"Title":"Superman Returns","US Gross":200120000,"Worldwide Gross":391120000,"US DVD Sales":81580739,"Production Budget":232000000,"Release Date":"Jun 28 2006","MPAA Rating":"PG-13","Running Time min":157,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Bryan Singer","Rotten Tomatoes Rating":76,"IMDB Rating":6.6,"IMDB Votes":102751},{"Title":"Supernova","US Gross":14218868,"Worldwide Gross":14218868,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jan 14 2000","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Francis Ford Coppola","Rotten Tomatoes Rating":10,"IMDB Rating":6.8,"IMDB Votes":127},{"Title":"Spirited Away","US Gross":10049886,"Worldwide Gross":274949886,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Sep 20 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Hayao Miyazaki","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Spun","US Gross":410241,"Worldwide Gross":1022649,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"Mar 14 2003","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":16011},{"Title":"Spy Game","US Gross":62362560,"Worldwide Gross":143049560,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Nov 21 2001","MPAA Rating":"R","Running Time min":126,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":65,"IMDB Rating":6.9,"IMDB Votes":44850},{"Title":"Spy Kids 2: The Island of Lost Dreams","US Gross":85846296,"Worldwide Gross":119721296,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Aug 07 2002","MPAA Rating":"PG","Running Time min":100,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Robert Rodriguez","Rotten Tomatoes Rating":75,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Spy Kids 3-D: Game Over","US Gross":111760631,"Worldwide Gross":167851995,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 25 2003","MPAA Rating":"PG","Running Time min":84,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Robert Rodriguez","Rotten Tomatoes Rating":null,"IMDB Rating":4.1,"IMDB Votes":12352},{"Title":"Spy Kids","US Gross":112692062,"Worldwide Gross":197692062,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Mar 30 2001","MPAA Rating":"PG","Running Time min":88,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Robert Rodriguez","Rotten Tomatoes Rating":93,"IMDB Rating":5.7,"IMDB Votes":23479},{"Title":"The Square","US Gross":406216,"Worldwide Gross":406216,"US DVD Sales":null,"Production Budget":1900000,"Release Date":"Apr 09 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Apparition","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":1303},{"Title":"The Squid and the Whale","US Gross":7372734,"Worldwide Gross":11098131,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Oct 05 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"IDP/Goldwyn/Roadside","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Noah Baumbach","Rotten Tomatoes Rating":93,"IMDB Rating":7.6,"IMDB Votes":23521},{"Title":"Serendipity","US Gross":50255310,"Worldwide Gross":75294136,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Oct 05 2001","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Chelsom","Rotten Tomatoes Rating":58,"IMDB Rating":6.6,"IMDB Votes":32014},{"Title":"Saint Ralph","US Gross":795126,"Worldwide Gross":795126,"US DVD Sales":null,"Production Budget":5200000,"Release Date":"Aug 05 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Samuel Goldwyn Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.5,"IMDB Votes":3492},{"Title":"Shaolin Soccer","US Gross":488872,"Worldwide Gross":42776032,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Apr 02 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":"Stephen Chow","Rotten Tomatoes Rating":91,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Superstar","US Gross":30628981,"Worldwide Gross":30628981,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Oct 08 1999","MPAA Rating":"PG-13","Running Time min":82,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":33,"IMDB Rating":6,"IMDB Votes":103},{"Title":"Soul Survivors","US Gross":3100650,"Worldwide Gross":4288246,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Sep 07 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":4,"IMDB Rating":3.6,"IMDB Votes":5116},{"Title":"Spirit: Stallion of the Cimarron","US Gross":73215310,"Worldwide Gross":106515310,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"May 24 2002","MPAA Rating":"G","Running Time min":84,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Kelly Asbury","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":8622},{"Title":"Star Wars Ep. II: Attack of the Clones","US Gross":310676740,"Worldwide Gross":656695615,"US DVD Sales":null,"Production Budget":115000000,"Release Date":"May 16 2002","MPAA Rating":"PG","Running Time min":142,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"George Lucas","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Star Wars Ep. III: Revenge of the Sith","US Gross":380270577,"Worldwide Gross":848998877,"US DVD Sales":null,"Production Budget":115000000,"Release Date":"May 19 2005","MPAA Rating":"PG-13","Running Time min":140,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"George Lucas","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Starship Troopers","US Gross":54768952,"Worldwide Gross":121100000,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Nov 07 1997","MPAA Rating":"R","Running Time min":129,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Paul Verhoeven","Rotten Tomatoes Rating":60,"IMDB Rating":7.1,"IMDB Votes":83516},{"Title":"The Station Agent","US Gross":5801558,"Worldwide Gross":7773824,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Oct 03 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":95,"IMDB Rating":7.8,"IMDB Votes":22274},{"Title":"Stay Alive","US Gross":23086480,"Worldwide Gross":23187506,"US DVD Sales":13333591,"Production Budget":20000000,"Release Date":"Mar 24 2006","MPAA Rating":"PG-13","Running Time min":91,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":4.5,"IMDB Votes":13658},{"Title":"Small Time Crooks","US Gross":17266359,"Worldwide Gross":29934477,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"May 19 2000","MPAA Rating":"PG","Running Time min":null,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Woody Allen","Rotten Tomatoes Rating":66,"IMDB Rating":6.5,"IMDB Votes":15636},{"Title":"Steel","US Gross":1686429,"Worldwide Gross":1686429,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Aug 15 1997","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":2.7,"IMDB Votes":4409},{"Title":"How Stella Got Her Groove Back","US Gross":37672944,"Worldwide Gross":37672944,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Aug 14 1998","MPAA Rating":"R","Running Time min":124,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":49,"IMDB Rating":5.1,"IMDB Votes":3080},{"Title":"The Stepford Wives","US Gross":59475623,"Worldwide Gross":96221971,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Jun 11 2004","MPAA Rating":"PG-13","Running Time min":93,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Frank Oz","Rotten Tomatoes Rating":26,"IMDB Rating":5.1,"IMDB Votes":26712},{"Title":"Stepmom","US Gross":91137662,"Worldwide Gross":119709917,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Dec 25 1998","MPAA Rating":"PG-13","Running Time min":127,"Distributor":"Sony/TriStar","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Chris Columbus","Rotten Tomatoes Rating":43,"IMDB Rating":6.2,"IMDB Votes":18505},{"Title":"Stomp the Yard","US Gross":61356221,"Worldwide Gross":76356221,"US DVD Sales":33252252,"Production Budget":14000000,"Release Date":"Jan 12 2007","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":26,"IMDB Rating":4.3,"IMDB Votes":13737},{"Title":"Stranger Than Fiction","US Gross":40435190,"Worldwide Gross":45235190,"US DVD Sales":30936711,"Production Budget":30000000,"Release Date":"Nov 10 2006","MPAA Rating":"PG-13","Running Time min":112,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Marc Forster","Rotten Tomatoes Rating":72,"IMDB Rating":7.8,"IMDB Votes":74218},{"Title":"The Legend of Suriyothai","US Gross":454255,"Worldwide Gross":454255,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Jun 20 2003","MPAA Rating":"R","Running Time min":null,"Distributor":null,"Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Stick It","US Gross":26910736,"Worldwide Gross":30399714,"US DVD Sales":27642935,"Production Budget":20000000,"Release Date":"Apr 28 2006","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":31,"IMDB Rating":5.9,"IMDB Votes":9556},{"Title":"Stigmata","US Gross":50041732,"Worldwide Gross":89441732,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Sep 10 1999","MPAA Rating":"R","Running Time min":103,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Rupert Wainwright","Rotten Tomatoes Rating":22,"IMDB Rating":6,"IMDB Votes":29411},{"Title":"A Stir of Echoes","US Gross":21133087,"Worldwide Gross":21133087,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Sep 10 1999","MPAA Rating":"R","Running Time min":110,"Distributor":"Artisan","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"David Koepp","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":26752},{"Title":"Street Kings","US Gross":26415649,"Worldwide Gross":65589243,"US DVD Sales":13420759,"Production Budget":20000000,"Release Date":"Apr 11 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":7,"IMDB Votes":40291},{"Title":"Stuart Little","US Gross":140015224,"Worldwide Gross":298800000,"US DVD Sales":null,"Production Budget":105000000,"Release Date":"Dec 17 1999","MPAA Rating":"PG","Running Time min":92,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Rob Minkoff","Rotten Tomatoes Rating":65,"IMDB Rating":5.8,"IMDB Votes":23226},{"Title":"Stuart Little 2","US Gross":64956806,"Worldwide Gross":166000000,"US DVD Sales":null,"Production Budget":120000000,"Release Date":"Jul 19 2002","MPAA Rating":"PG","Running Time min":78,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Rob Minkoff","Rotten Tomatoes Rating":83,"IMDB Rating":5.6,"IMDB Votes":7534},{"Title":"Stealth","US Gross":32116746,"Worldwide Gross":76416746,"US DVD Sales":null,"Production Budget":138000000,"Release Date":"Jul 29 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Rob Cohen","Rotten Tomatoes Rating":13,"IMDB Rating":4.8,"IMDB Votes":21664},{"Title":"Steamboy","US Gross":468867,"Worldwide Gross":10468867,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 18 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Statement","US Gross":765637,"Worldwide Gross":1545064,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Dec 12 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":"Thriller/Suspense","Creative Type":null,"Director":"Norman Jewison","Rotten Tomatoes Rating":23,"IMDB Rating":6,"IMDB Votes":2735},{"Title":"Stolen Summer","US Gross":119841,"Worldwide Gross":119841,"US DVD Sales":null,"Production Budget":1500000,"Release Date":"Mar 22 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":6.4,"IMDB Votes":1733},{"Title":"Stop-Loss","US Gross":10915744,"Worldwide Gross":11179472,"US DVD Sales":4736139,"Production Budget":25000000,"Release Date":"Mar 28 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Kimberly Peirce","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":9268},{"Title":"The Perfect Storm","US Gross":182618434,"Worldwide Gross":328711434,"US DVD Sales":null,"Production Budget":120000000,"Release Date":"Jun 30 2000","MPAA Rating":"PG-13","Running Time min":130,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Wolfgang Petersen","Rotten Tomatoes Rating":47,"IMDB Rating":6.2,"IMDB Votes":55716},{"Title":"The Story of Us","US Gross":27100030,"Worldwide Gross":27100030,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Oct 15 1999","MPAA Rating":"R","Running Time min":74,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Rob Reiner","Rotten Tomatoes Rating":28,"IMDB Rating":5.6,"IMDB Votes":10720},{"Title":"The Stepfather","US Gross":29062561,"Worldwide Gross":29227561,"US DVD Sales":6587798,"Production Budget":20000000,"Release Date":"Oct 16 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":5.3,"IMDB Votes":6263},{"Title":"State of Play","US Gross":37017955,"Worldwide Gross":91445389,"US DVD Sales":13578224,"Production Budget":60000000,"Release Date":"Apr 17 2009","MPAA Rating":"PG-13","Running Time min":127,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Kevin MacDonald","Rotten Tomatoes Rating":84,"IMDB Rating":7.3,"IMDB Votes":34067},{"Title":"The Sisterhood of the Traveling Pants 2","US Gross":44089964,"Worldwide Gross":44154645,"US DVD Sales":15266725,"Production Budget":27000000,"Release Date":"Aug 06 2008","MPAA Rating":"PG-13","Running Time min":111,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":6.2,"IMDB Votes":6557},{"Title":"Sisterhood of the Traveling Pants","US Gross":39053061,"Worldwide Gross":41560117,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Jun 01 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Ken Kwapis","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Step Up","US Gross":65328121,"Worldwide Gross":115328121,"US DVD Sales":51317604,"Production Budget":12000000,"Release Date":"Aug 11 2006","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Anne Fletcher","Rotten Tomatoes Rating":19,"IMDB Rating":6.1,"IMDB Votes":21691},{"Title":"The Straight Story","US Gross":6197866,"Worldwide Gross":6197866,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 15 1999","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"David Lynch","Rotten Tomatoes Rating":95,"IMDB Rating":8,"IMDB Votes":36265},{"Title":"Star Trek: First Contact","US Gross":92027888,"Worldwide Gross":150000000,"US DVD Sales":null,"Production Budget":46000000,"Release Date":"Nov 22 1996","MPAA Rating":"PG-13","Running Time min":111,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Jonathan Frakes","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":45106},{"Title":"Star Trek: Insurrection","US Gross":70187658,"Worldwide Gross":117800000,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Dec 11 1998","MPAA Rating":"PG","Running Time min":100,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Jonathan Frakes","Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":26559},{"Title":"Star Trek: Nemesis","US Gross":43254409,"Worldwide Gross":67312826,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Dec 13 2002","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.4,"IMDB Votes":28449},{"Title":"Alex Rider: Operation Stormbreaker","US Gross":659210,"Worldwide Gross":9351567,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Oct 13 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Strangers","US Gross":52597610,"Worldwide Gross":80597610,"US DVD Sales":15789825,"Production Budget":9000000,"Release Date":"May 30 2008","MPAA Rating":"R","Running Time min":85,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":6,"IMDB Votes":35078},{"Title":"Super Troopers","US Gross":18492362,"Worldwide Gross":23046142,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Feb 15 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jay Chandrasekhar","Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":29514},{"Title":"Strangers with Candy","US Gross":2072645,"Worldwide Gross":2077844,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jun 28 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"ThinkFilm","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":4941},{"Title":"Star Wars Ep. I: The Phantom Menace","US Gross":431088297,"Worldwide Gross":924288297,"US DVD Sales":null,"Production Budget":115000000,"Release Date":"May 19 1999","MPAA Rating":"PG","Running Time min":133,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"George Lucas","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Stuck On You","US Gross":33832741,"Worldwide Gross":63537164,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Dec 12 2003","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Bobby Farrelly","Rotten Tomatoes Rating":60,"IMDB Rating":5.9,"IMDB Votes":23196},{"Title":"Step Up 2 the Streets","US Gross":58017783,"Worldwide Gross":150017783,"US DVD Sales":21801408,"Production Budget":17500000,"Release Date":"Feb 14 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":25,"IMDB Rating":5.6,"IMDB Votes":20345},{"Title":"The Sum of All Fears","US Gross":118471320,"Worldwide Gross":193500000,"US DVD Sales":null,"Production Budget":68000000,"Release Date":"May 31 2002","MPAA Rating":"PG-13","Running Time min":124,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Phil Alden Robinson","Rotten Tomatoes Rating":59,"IMDB Rating":6.3,"IMDB Votes":38586},{"Title":"Sunshine State","US Gross":3064356,"Worldwide Gross":3064356,"US DVD Sales":null,"Production Budget":5600000,"Release Date":"Jun 21 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John Sayles","Rotten Tomatoes Rating":80,"IMDB Rating":6.8,"IMDB Votes":2769},{"Title":"Supercross","US Gross":3102550,"Worldwide Gross":3252550,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 17 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":6,"IMDB Rating":2.9,"IMDB Votes":2514},{"Title":"Surf's Up","US Gross":58867694,"Worldwide Gross":145395745,"US DVD Sales":46260220,"Production Budget":100000000,"Release Date":"Jun 08 2007","MPAA Rating":"PG","Running Time min":86,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":77,"IMDB Rating":7,"IMDB Votes":20974},{"Title":"Surrogates","US Gross":38577772,"Worldwide Gross":119668350,"US DVD Sales":11099238,"Production Budget":80000000,"Release Date":"Sep 25 2009","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Walt Disney Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Jonathan Mostow","Rotten Tomatoes Rating":39,"IMDB Rating":6.3,"IMDB Votes":36940},{"Title":"Summer of Sam","US Gross":19288130,"Worldwide Gross":19288130,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Jul 02 1999","MPAA Rating":"R","Running Time min":142,"Distributor":"Walt Disney Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Spike Lee","Rotten Tomatoes Rating":50,"IMDB Rating":6.5,"IMDB Votes":18431},{"Title":"Savage Grace","US Gross":434417,"Worldwide Gross":968805,"US DVD Sales":null,"Production Budget":4600000,"Release Date":"May 28 2008","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"IFC Films","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":3838},{"Title":"Saving Private Ryan","US Gross":216335085,"Worldwide Gross":481635085,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Jul 24 1998","MPAA Rating":"R","Running Time min":169,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":91,"IMDB Rating":8.5,"IMDB Votes":270540},{"Title":"S.W.A.T.","US Gross":116877597,"Worldwide Gross":198100000,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Aug 08 2003","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Sony Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":48,"IMDB Rating":5.9,"IMDB Votes":43260},{"Title":"Sideways","US Gross":71502303,"Worldwide Gross":109705641,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Oct 22 2004","MPAA Rating":"R","Running Time min":125,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Alexander Payne","Rotten Tomatoes Rating":97,"IMDB Rating":7.8,"IMDB Votes":69778},{"Title":"Shall We Dance?","US Gross":57887882,"Worldwide Gross":118097882,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Oct 15 2004","MPAA Rating":"PG-13","Running Time min":106,"Distributor":"Miramax","Source":"Remake","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Chelsom","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":2192},{"Title":"Secret Window","US Gross":47958031,"Worldwide Gross":92958031,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Mar 12 2004","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":"David Koepp","Rotten Tomatoes Rating":46,"IMDB Rating":6.5,"IMDB Votes":53868},{"Title":"Swept Away","US Gross":598645,"Worldwide Gross":598645,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Oct 11 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Guy Ritchie","Rotten Tomatoes Rating":5,"IMDB Rating":3.4,"IMDB Votes":7665},{"Title":"Swimming Pool","US Gross":10130108,"Worldwide Gross":22441323,"US DVD Sales":null,"Production Budget":7800000,"Release Date":"Jul 04 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":84,"IMDB Rating":6.8,"IMDB Votes":19992},{"Title":"The Sidewalks of New York","US Gross":2402459,"Worldwide Gross":3100834,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Nov 21 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Edward Burns","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Swimfan","US Gross":28563926,"Worldwide Gross":28563926,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Sep 06 2002","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":4.6,"IMDB Votes":9577},{"Title":"Sweet November","US Gross":25288103,"Worldwide Gross":65754228,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Feb 16 2001","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":16,"IMDB Rating":6,"IMDB Votes":20891},{"Title":"Sydney White","US Gross":11892415,"Worldwide Gross":12778631,"US DVD Sales":6828112,"Production Budget":16500000,"Release Date":"Sep 21 2007","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Universal","Source":"Traditional/Legend/Fairytale","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":37,"IMDB Rating":6.2,"IMDB Votes":9309},{"Title":"Switchback","US Gross":6504442,"Worldwide Gross":6504442,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Oct 31 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":32,"IMDB Rating":6.1,"IMDB Votes":5141},{"Title":"Star Wars: The Clone Wars","US Gross":35161554,"Worldwide Gross":68161554,"US DVD Sales":22831563,"Production Budget":8500000,"Release Date":"Aug 15 2008","MPAA Rating":"PG","Running Time min":98,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":5.4,"IMDB Votes":17513},{"Title":"The Sweetest Thing","US Gross":24430272,"Worldwide Gross":44633441,"US DVD Sales":null,"Production Budget":43000000,"Release Date":"Apr 12 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Roger Kumble","Rotten Tomatoes Rating":25,"IMDB Rating":4.7,"IMDB Votes":23378},{"Title":"Six Days, Seven Nights","US Gross":74339294,"Worldwide Gross":164800000,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Jun 12 1998","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Ivan Reitman","Rotten Tomatoes Rating":37,"IMDB Rating":4.7,"IMDB Votes":48},{"Title":"Sex Drive","US Gross":8402485,"Worldwide Gross":10412485,"US DVD Sales":10245880,"Production Budget":19000000,"Release Date":"Oct 17 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Summit Entertainment","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":46,"IMDB Rating":6.8,"IMDB Votes":26920},{"Title":"Sexy Beast","US Gross":6946056,"Worldwide Gross":6946056,"US DVD Sales":null,"Production Budget":4300000,"Release Date":"Jun 13 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":20916},{"Title":"Chinjeolhan geumjassi","US Gross":211667,"Worldwide Gross":23471871,"US DVD Sales":null,"Production Budget":4500000,"Release Date":"May 05 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Tartan Films","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":null,"Director":"Chan-wook Park","Rotten Tomatoes Rating":null,"IMDB Rating":7.7,"IMDB Votes":19341},{"Title":"Synecdoche, New York","US Gross":3081925,"Worldwide Gross":3081925,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 24 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Syriana","US Gross":50824620,"Worldwide Gross":95024620,"US DVD Sales":15415665,"Production Budget":50000000,"Release Date":"Nov 23 2005","MPAA Rating":"R","Running Time min":126,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":72,"IMDB Rating":7.1,"IMDB Votes":53265},{"Title":"Suspect Zero","US Gross":8712564,"Worldwide Gross":8712564,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Aug 27 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"E. Elias Merhige","Rotten Tomatoes Rating":18,"IMDB Rating":5.8,"IMDB Votes":9804},{"Title":"Tadpole","US Gross":2891288,"Worldwide Gross":3200241,"US DVD Sales":null,"Production Budget":150000,"Release Date":"Jul 19 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Gary Winick","Rotten Tomatoes Rating":78,"IMDB Rating":6.1,"IMDB Votes":3800},{"Title":"Tailor of Panama","US Gross":13491653,"Worldwide Gross":27491653,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Mar 30 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"John Boorman","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Taken","US Gross":145000989,"Worldwide Gross":225461461,"US DVD Sales":67315399,"Production Budget":25000000,"Release Date":"Jan 30 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Pierre Morel","Rotten Tomatoes Rating":null,"IMDB Rating":4.8,"IMDB Votes":1125},{"Title":"Take the Lead","US Gross":34742066,"Worldwide Gross":65742066,"US DVD Sales":21100670,"Production Budget":30000000,"Release Date":"Apr 01 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":44,"IMDB Rating":6.5,"IMDB Votes":10015},{"Title":"Talladega Nights: The Ballad of Ricky Bobby","US Gross":148213377,"Worldwide Gross":163013377,"US DVD Sales":84838372,"Production Budget":73000000,"Release Date":"Aug 04 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Adam McKay","Rotten Tomatoes Rating":72,"IMDB Rating":6.4,"IMDB Votes":50407},{"Title":"The Talented Mr. Ripley","US Gross":81292135,"Worldwide Gross":81292135,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Dec 25 1999","MPAA Rating":"R","Running Time min":139,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Anthony Minghella","Rotten Tomatoes Rating":82,"IMDB Rating":7.2,"IMDB Votes":63319},{"Title":"Tarnation","US Gross":592014,"Worldwide Gross":1162014,"US DVD Sales":null,"Production Budget":218,"Release Date":"Oct 06 2004","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"WellSpring","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":3847},{"Title":"Taxman","US Gross":9871,"Worldwide Gross":9871,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Sep 17 1999","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":null,"Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":520},{"Title":"Thunderbirds","US Gross":6768055,"Worldwide Gross":28231444,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jul 30 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Jonathan Frakes","Rotten Tomatoes Rating":19,"IMDB Rating":4,"IMDB Votes":5397},{"Title":"The Best Man","US Gross":34102780,"Worldwide Gross":34572780,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Oct 22 1999","MPAA Rating":"R","Running Time min":120,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Malcolm D. Lee","Rotten Tomatoes Rating":71,"IMDB Rating":6.1,"IMDB Votes":2019},{"Title":"Book of Shadows: Blair Witch 2","US Gross":26421314,"Worldwide Gross":47721314,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 27 2000","MPAA Rating":"R","Running Time min":90,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4,"IMDB Votes":16122},{"Title":"The Cave","US Gross":15007991,"Worldwide Gross":27147991,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 26 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":12,"IMDB Rating":4.8,"IMDB Votes":13025},{"Title":"This Christmas","US Gross":49121934,"Worldwide Gross":49778552,"US DVD Sales":17922664,"Production Budget":13000000,"Release Date":"Nov 21 2007","MPAA Rating":"PG-13","Running Time min":118,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":5.4,"IMDB Votes":3351},{"Title":"The Core","US Gross":31111260,"Worldwide Gross":74132631,"US DVD Sales":null,"Production Budget":85000000,"Release Date":"Mar 28 2003","MPAA Rating":"PG-13","Running Time min":133,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Jon Amiel","Rotten Tomatoes Rating":42,"IMDB Rating":5.3,"IMDB Votes":27375},{"Title":"The Thomas Crown Affair","US Gross":69304264,"Worldwide Gross":124304264,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Aug 06 1999","MPAA Rating":"R","Running Time min":111,"Distributor":"MGM","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"John McTiernan","Rotten Tomatoes Rating":67,"IMDB Rating":6.7,"IMDB Votes":37692},{"Title":"The Damned United","US Gross":449865,"Worldwide Gross":4054204,"US DVD Sales":null,"Production Budget":6400000,"Release Date":"Oct 09 2009","MPAA Rating":"R","Running Time min":97,"Distributor":"Sony Pictures Classics","Source":"Based on Factual Book/Article","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Tom Hooper","Rotten Tomatoes Rating":94,"IMDB Rating":7.5,"IMDB Votes":7560},{"Title":"The Tale of Despereaux","US Gross":50877145,"Worldwide Gross":88717945,"US DVD Sales":26233404,"Production Budget":60000000,"Release Date":"Dec 19 2008","MPAA Rating":"G","Running Time min":93,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Sam Fell","Rotten Tomatoes Rating":55,"IMDB Rating":6.1,"IMDB Votes":7460},{"Title":"Team America: World Police","US Gross":32774834,"Worldwide Gross":50274834,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 15 2004","MPAA Rating":"R","Running Time min":98,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Trey Parker","Rotten Tomatoes Rating":null,"IMDB Rating":7.3,"IMDB Votes":58763},{"Title":"Tea with Mussolini","US Gross":14395874,"Worldwide Gross":14395874,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"May 14 1999","MPAA Rating":"PG","Running Time min":116,"Distributor":"MGM","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Franco Zeffirelli","Rotten Tomatoes Rating":67,"IMDB Rating":6.7,"IMDB Votes":5435},{"Title":"Tears of the Sun","US Gross":43632458,"Worldwide Gross":85632458,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Mar 07 2003","MPAA Rating":"R","Running Time min":121,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Antoine Fuqua","Rotten Tomatoes Rating":34,"IMDB Rating":6.4,"IMDB Votes":34304},{"Title":"The Big Tease","US Gross":185577,"Worldwide Gross":185577,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jan 28 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.1,"IMDB Votes":1610},{"Title":"Not Another Teen Movie","US Gross":37882551,"Worldwide Gross":62401343,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 14 2001","MPAA Rating":"R","Running Time min":89,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":28,"IMDB Rating":5.5,"IMDB Votes":36678},{"Title":"Teeth","US Gross":347578,"Worldwide Gross":2300349,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jan 18 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Roadside Attractions","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":18},{"Title":"Bridge to Terabithia","US Gross":82234139,"Worldwide Gross":136934139,"US DVD Sales":41383048,"Production Budget":25000000,"Release Date":"Feb 16 2007","MPAA Rating":"PG","Running Time min":95,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":85,"IMDB Rating":7.4,"IMDB Votes":34482},{"Title":"Terminator 3: Rise of the Machines","US Gross":150358296,"Worldwide Gross":433058296,"US DVD Sales":null,"Production Budget":170000000,"Release Date":"Jul 01 2003","MPAA Rating":"R","Running Time min":109,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Jonathan Mostow","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":107667},{"Title":"Terminator Salvation: The Future Begins","US Gross":125322469,"Worldwide Gross":371628539,"US DVD Sales":28434778,"Production Budget":200000000,"Release Date":"May 21 2009","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Joseph McGinty Nichol","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Transformers","US Gross":319246193,"Worldwide Gross":708272592,"US DVD Sales":290787166,"Production Budget":151000000,"Release Date":"Jul 03 2007","MPAA Rating":"PG-13","Running Time min":140,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Michael Bay","Rotten Tomatoes Rating":57,"IMDB Rating":7.3,"IMDB Votes":197131},{"Title":"Transformers: Revenge of the Fallen","US Gross":402111870,"Worldwide Gross":836303693,"US DVD Sales":217509899,"Production Budget":210000000,"Release Date":"Jun 24 2009","MPAA Rating":"PG-13","Running Time min":149,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Michael Bay","Rotten Tomatoes Rating":20,"IMDB Rating":6,"IMDB Votes":95786},{"Title":"The Goods: Live Hard, Sell Hard","US Gross":15122676,"Worldwide Gross":15122676,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Aug 14 2009","MPAA Rating":"R","Running Time min":89,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Neal Brennan","Rotten Tomatoes Rating":26,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Greatest Game Ever Played","US Gross":15331289,"Worldwide Gross":15425073,"US DVD Sales":37687804,"Production Budget":25000000,"Release Date":"Sep 30 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Bill Paxton","Rotten Tomatoes Rating":62,"IMDB Rating":7.3,"IMDB Votes":7876},{"Title":"The Ghost Writer","US Gross":15541549,"Worldwide Gross":63241549,"US DVD Sales":3354366,"Production Budget":45000000,"Release Date":"Feb 19 2010","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Summit Entertainment","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Roman Polanski","Rotten Tomatoes Rating":84,"IMDB Rating":7.6,"IMDB Votes":22875},{"Title":"Joheunnom nabbeunnom isanghannom","US Gross":128486,"Worldwide Gross":42226657,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Apr 23 2010","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":5548},{"Title":"The Beach","US Gross":39778599,"Worldwide Gross":39778599,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 11 2000","MPAA Rating":"R","Running Time min":119,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Danny Boyle","Rotten Tomatoes Rating":19,"IMDB Rating":4.5,"IMDB Votes":229},{"Title":"The Box","US Gross":15051977,"Worldwide Gross":26341896,"US DVD Sales":3907625,"Production Budget":25000000,"Release Date":"Nov 06 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":"Richard Kelly","Rotten Tomatoes Rating":45,"IMDB Rating":6.8,"IMDB Votes":418},{"Title":"The Wild Thornberrys","US Gross":40108697,"Worldwide Gross":60694737,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Dec 20 2002","MPAA Rating":"PG","Running Time min":85,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":1104},{"Title":"Bug","US Gross":7006708,"Worldwide Gross":7006708,"US DVD Sales":1251654,"Production Budget":4000000,"Release Date":"May 25 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"William Friedkin","Rotten Tomatoes Rating":null,"IMDB Rating":6,"IMDB Votes":14164},{"Title":"They","US Gross":12840842,"Worldwide Gross":12840842,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Nov 27 2002","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":37,"IMDB Rating":4.6,"IMDB Votes":6550},{"Title":"The Eye","US Gross":31418697,"Worldwide Gross":56706727,"US DVD Sales":12319404,"Production Budget":12000000,"Release Date":"Feb 01 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":5.3,"IMDB Votes":17304},{"Title":"The Fog","US Gross":29511112,"Worldwide Gross":37048526,"US DVD Sales":null,"Production Budget":18000000,"Release Date":"Oct 14 2005","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Rupert Wainwright","Rotten Tomatoes Rating":5,"IMDB Rating":3.3,"IMDB Votes":15760},{"Title":"The Thin Red Line","US Gross":36400491,"Worldwide Gross":36400491,"US DVD Sales":null,"Production Budget":52000000,"Release Date":"Dec 23 1998","MPAA Rating":"R","Running Time min":166,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Terrence Malick","Rotten Tomatoes Rating":78,"IMDB Rating":7.5,"IMDB Votes":60966},{"Title":"Thirteen Days","US Gross":34566746,"Worldwide Gross":66554547,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Dec 25 2000","MPAA Rating":"PG-13","Running Time min":145,"Distributor":"New Line","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Roger Donaldson","Rotten Tomatoes Rating":82,"IMDB Rating":7.3,"IMDB Votes":23578},{"Title":"The Kid","US Gross":69688384,"Worldwide Gross":69688384,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Jul 07 2000","MPAA Rating":"PG","Running Time min":104,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Jon Turteltaub","Rotten Tomatoes Rating":49,"IMDB Rating":5.9,"IMDB Votes":14927},{"Title":"The Man","US Gross":8330720,"Worldwide Gross":10393696,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Sep 09 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Les Mayfield","Rotten Tomatoes Rating":11,"IMDB Rating":5.4,"IMDB Votes":9356},{"Title":"House on Haunted Hill","US Gross":40846082,"Worldwide Gross":40846082,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Oct 29 1999","MPAA Rating":"R","Running Time min":96,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"William Malone","Rotten Tomatoes Rating":25,"IMDB Rating":5.2,"IMDB Votes":22795},{"Title":"The One","US Gross":43905746,"Worldwide Gross":43905746,"US DVD Sales":null,"Production Budget":49000000,"Release Date":"Nov 02 2001","MPAA Rating":"PG-13","Running Time min":87,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":"James Wong","Rotten Tomatoes Rating":13,"IMDB Rating":5.6,"IMDB Votes":24416},{"Title":"Gwoemul","US Gross":2201923,"Worldwide Gross":89006691,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Mar 09 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":26783},{"Title":"Thr3e","US Gross":1008849,"Worldwide Gross":1060418,"US DVD Sales":null,"Production Budget":2400000,"Release Date":"Jan 05 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"The Bigger Picture","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":5,"IMDB Votes":2825},{"Title":"Three to Tango","US Gross":10570375,"Worldwide Gross":10570375,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 22 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":28,"IMDB Rating":5.8,"IMDB Votes":11148},{"Title":"The Thirteenth Floor","US Gross":11810854,"Worldwide Gross":11810854,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"May 28 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":28,"IMDB Rating":6.7,"IMDB Votes":19939},{"Title":"The 13th Warrior","US Gross":32698899,"Worldwide Gross":61698899,"US DVD Sales":null,"Production Budget":125000000,"Release Date":"Aug 27 1999","MPAA Rating":"R","Running Time min":103,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Fantasy","Director":"John McTiernan","Rotten Tomatoes Rating":33,"IMDB Rating":6.3,"IMDB Votes":36151},{"Title":"The Tuxedo","US Gross":50586000,"Worldwide Gross":50586000,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Sep 27 2002","MPAA Rating":"PG-13","Running Time min":99,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":22,"IMDB Rating":5,"IMDB Votes":19370},{"Title":"The Tigger Movie","US Gross":4554533,"Worldwide Gross":55159800,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Feb 11 2000","MPAA Rating":"G","Running Time min":77,"Distributor":"Walt Disney Pictures","Source":"Spin-Off","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":61,"IMDB Rating":6,"IMDB Votes":2986},{"Title":"Timeline","US Gross":19480739,"Worldwide Gross":26703184,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Nov 26 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Richard Donner","Rotten Tomatoes Rating":11,"IMDB Rating":5.3,"IMDB Votes":19318},{"Title":"The Adventures of Tintin: Secret of the Unicorn","US Gross":0,"Worldwide Gross":0,"US DVD Sales":null,"Production Budget":130000000,"Release Date":"Dec 23 2011","MPAA Rating":null,"Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Thirteen","US Gross":4601043,"Worldwide Gross":6302406,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Aug 20 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Catherine Hardwicke","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":31482},{"Title":"Titan A.E.","US Gross":22751979,"Worldwide Gross":36751979,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jun 16 2000","MPAA Rating":"PG","Running Time min":95,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Don Bluth","Rotten Tomatoes Rating":51,"IMDB Rating":6.4,"IMDB Votes":22286},{"Title":"Titanic","US Gross":600788188,"Worldwide Gross":1842879955,"US DVD Sales":null,"Production Budget":200000000,"Release Date":"Dec 19 1997","MPAA Rating":"PG-13","Running Time min":194,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Historical Fiction","Director":"James Cameron","Rotten Tomatoes Rating":82,"IMDB Rating":7.4,"IMDB Votes":240732},{"Title":"The Kids Are All Right","US Gross":20553799,"Worldwide Gross":20553799,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jul 09 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":96,"IMDB Rating":7.8,"IMDB Votes":3093},{"Title":"The League of Extraordinary Gentlemen","US Gross":66465204,"Worldwide Gross":179265204,"US DVD Sales":null,"Production Budget":78000000,"Release Date":"Jul 11 2003","MPAA Rating":"PG-13","Running Time min":110,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Stephen Norrington","Rotten Tomatoes Rating":17,"IMDB Rating":5.5,"IMDB Votes":50710},{"Title":"The Time Machine","US Gross":56684819,"Worldwide Gross":98983590,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Mar 08 2002","MPAA Rating":"PG-13","Running Time min":96,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":28,"IMDB Rating":5.6,"IMDB Votes":32465},{"Title":"Tomcats","US Gross":13558739,"Worldwide Gross":13558739,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Mar 30 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":4.9,"IMDB Votes":9505},{"Title":"The Mist","US Gross":25593755,"Worldwide Gross":54777490,"US DVD Sales":29059367,"Production Budget":13000000,"Release Date":"Nov 21 2007","MPAA Rating":"R","Running Time min":127,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Science Fiction","Director":"Frank Darabont","Rotten Tomatoes Rating":73,"IMDB Rating":7.4,"IMDB Votes":76830},{"Title":"TMNT","US Gross":54149098,"Worldwide Gross":95009888,"US DVD Sales":30836109,"Production Budget":35000000,"Release Date":"Mar 23 2007","MPAA Rating":"PG","Running Time min":88,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":26178},{"Title":"Tomorrow Never Dies","US Gross":125304276,"Worldwide Gross":339504276,"US DVD Sales":null,"Production Budget":110000000,"Release Date":"Dec 19 1997","MPAA Rating":"PG-13","Running Time min":119,"Distributor":"MGM","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Roger Spottiswoode","Rotten Tomatoes Rating":55,"IMDB Rating":6.4,"IMDB Votes":46650},{"Title":"The Royal Tenenbaums","US Gross":52353636,"Worldwide Gross":71430876,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Dec 14 2001","MPAA Rating":"R","Running Time min":110,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Wes Anderson","Rotten Tomatoes Rating":79,"IMDB Rating":7.6,"IMDB Votes":82349},{"Title":"Lara Croft: Tomb Raider: The Cradle of Life","US Gross":65653758,"Worldwide Gross":156453758,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jul 25 2003","MPAA Rating":"PG-13","Running Time min":117,"Distributor":"Paramount Pictures","Source":"Based on Game","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Jan De Bont","Rotten Tomatoes Rating":null,"IMDB Rating":5.2,"IMDB Votes":32832},{"Title":"Lara Croft: Tomb Raider","US Gross":131144183,"Worldwide Gross":274644183,"US DVD Sales":null,"Production Budget":94000000,"Release Date":"Jun 15 2001","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Paramount Pictures","Source":"Based on Game","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":"Simon West","Rotten Tomatoes Rating":null,"IMDB Rating":5.4,"IMDB Votes":55582},{"Title":"The Day After Tomorrow","US Gross":186740799,"Worldwide Gross":544272402,"US DVD Sales":null,"Production Budget":125000000,"Release Date":"May 28 2004","MPAA Rating":"PG-13","Running Time min":124,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"Roland Emmerich","Rotten Tomatoes Rating":46,"IMDB Rating":6.3,"IMDB Votes":92241},{"Title":"Topsy Turvy","US Gross":6201757,"Worldwide Gross":6201757,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Dec 17 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"USA Films","Source":"Based on Real Life Events","Major Genre":"Musical","Creative Type":"Dramatization","Director":"Mike Leigh","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":6215},{"Title":"Torque","US Gross":21176322,"Worldwide Gross":46176322,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jan 16 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":23,"IMDB Rating":3.5,"IMDB Votes":12986},{"Title":"The Others","US Gross":96522687,"Worldwide Gross":209947037,"US DVD Sales":null,"Production Budget":17000000,"Release Date":"Aug 10 2001","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":84,"IMDB Rating":7.8,"IMDB Votes":86091},{"Title":"The Town","US Gross":30980607,"Worldwide Gross":33180607,"US DVD Sales":null,"Production Budget":37000000,"Release Date":"Sep 17 2010","MPAA Rating":"R","Running Time min":123,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Ben Affleck","Rotten Tomatoes Rating":84,"IMDB Rating":8.7,"IMDB Votes":493},{"Title":"Toy Story 2","US Gross":245852179,"Worldwide Gross":484966906,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Nov 19 1999","MPAA Rating":"G","Running Time min":92,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"John Lasseter","Rotten Tomatoes Rating":100,"IMDB Rating":8,"IMDB Votes":119357},{"Title":"Toy Story 3","US Gross":410640665,"Worldwide Gross":1046340665,"US DVD Sales":null,"Production Budget":200000000,"Release Date":"Jun 18 2010","MPAA Rating":"G","Running Time min":102,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":99,"IMDB Rating":8.9,"IMDB Votes":67380},{"Title":"The Taking of Pelham 123","US Gross":65452312,"Worldwide Gross":148989667,"US DVD Sales":23048229,"Production Budget":110000000,"Release Date":"Jun 12 2009","MPAA Rating":"R","Running Time min":106,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Tony Scott","Rotten Tomatoes Rating":null,"IMDB Rating":6.5,"IMDB Votes":33452},{"Title":"Treasure Planet","US Gross":38120554,"Worldwide Gross":91800000,"US DVD Sales":null,"Production Budget":100000000,"Release Date":"Nov 27 2002","MPAA Rating":"PG","Running Time min":96,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":6.6,"IMDB Votes":12099},{"Title":"Traffic","US Gross":124107476,"Worldwide Gross":208300000,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Dec 27 2000","MPAA Rating":"R","Running Time min":147,"Distributor":"USA Films","Source":"Based on TV","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Steven Soderbergh","Rotten Tomatoes Rating":91,"IMDB Rating":7.8,"IMDB Votes":85759},{"Title":"Thomas and the Magic Railroad","US Gross":15911332,"Worldwide Gross":15911332,"US DVD Sales":null,"Production Budget":19000000,"Release Date":"Jul 26 2000","MPAA Rating":"G","Running Time min":null,"Distributor":"Destination Films","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":2.7,"IMDB Votes":1613},{"Title":"Training Day","US Gross":76261036,"Worldwide Gross":104505362,"US DVD Sales":null,"Production Budget":45000000,"Release Date":"Oct 05 2001","MPAA Rating":"R","Running Time min":122,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Antoine Fuqua","Rotten Tomatoes Rating":72,"IMDB Rating":7.6,"IMDB Votes":82057},{"Title":"Traitor","US Gross":23530831,"Worldwide Gross":27664173,"US DVD Sales":13547082,"Production Budget":22000000,"Release Date":"Aug 27 2008","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Overture Films","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":61,"IMDB Rating":7.1,"IMDB Votes":22468},{"Title":"Trapped","US Gross":6916869,"Worldwide Gross":6916869,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 20 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":18,"IMDB Rating":6,"IMDB Votes":10685},{"Title":"The Ring","US Gross":129094024,"Worldwide Gross":249094024,"US DVD Sales":null,"Production Budget":48000000,"Release Date":"Oct 18 2002","MPAA Rating":"PG-13","Running Time min":115,"Distributor":"Dreamworks SKG","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Gore Verbinski","Rotten Tomatoes Rating":71,"IMDB Rating":5.5,"IMDB Votes":589},{"Title":"Trippin'","US Gross":9017070,"Worldwide Gross":9017070,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"May 12 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"October Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":4.6,"IMDB Votes":673},{"Title":"Star Trek","US Gross":257730019,"Worldwide Gross":385680447,"US DVD Sales":98317480,"Production Budget":140000000,"Release Date":"May 08 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":"J.J. Abrams","Rotten Tomatoes Rating":94,"IMDB Rating":8.2,"IMDB Votes":134187},{"Title":"The Terminal","US Gross":77073959,"Worldwide Gross":218673959,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jun 18 2004","MPAA Rating":"PG-13","Running Time min":128,"Distributor":"Dreamworks SKG","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Steven Spielberg","Rotten Tomatoes Rating":60,"IMDB Rating":7.1,"IMDB Votes":79803},{"Title":"Transamerica","US Gross":9015303,"Worldwide Gross":15151744,"US DVD Sales":3927958,"Production Budget":1000000,"Release Date":"Dec 02 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":76,"IMDB Rating":7.6,"IMDB Votes":19343},{"Title":"The Transporter 2","US Gross":43095856,"Worldwide Gross":85095856,"US DVD Sales":null,"Production Budget":32000000,"Release Date":"Sep 02 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Louis Leterrier","Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":51005},{"Title":"The Transporter","US Gross":25296447,"Worldwide Gross":43928932,"US DVD Sales":null,"Production Budget":21000000,"Release Date":"Oct 11 2002","MPAA Rating":"PG-13","Running Time min":92,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Corey Yuen","Rotten Tomatoes Rating":53,"IMDB Rating":6.6,"IMDB Votes":51005},{"Title":"The Road","US Gross":8114270,"Worldwide Gross":23914270,"US DVD Sales":6599387,"Production Budget":25000000,"Release Date":"Nov 25 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":75,"IMDB Rating":7.5,"IMDB Votes":39124},{"Title":"Tropic Thunder","US Gross":110461307,"Worldwide Gross":188163455,"US DVD Sales":50387300,"Production Budget":90000000,"Release Date":"Aug 13 2008","MPAA Rating":"R","Running Time min":106,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ben Stiller","Rotten Tomatoes Rating":83,"IMDB Rating":7.2,"IMDB Votes":104839},{"Title":"Troy","US Gross":133298577,"Worldwide Gross":497398577,"US DVD Sales":null,"Production Budget":150000000,"Release Date":"May 14 2004","MPAA Rating":"R","Running Time min":163,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Wolfgang Petersen","Rotten Tomatoes Rating":54,"IMDB Rating":7,"IMDB Votes":129575},{"Title":"xXx","US Gross":141930000,"Worldwide Gross":267200000,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Aug 09 2002","MPAA Rating":"PG-13","Running Time min":124,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Rob Cohen","Rotten Tomatoes Rating":48,"IMDB Rating":5.5,"IMDB Votes":52636},{"Title":"Ta Ra Rum Pum","US Gross":872643,"Worldwide Gross":9443864,"US DVD Sales":null,"Production Budget":7400000,"Release Date":"Apr 27 2007","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"Yash Raj Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":67,"IMDB Rating":5.1,"IMDB Votes":1051},{"Title":"The Truman Show","US Gross":125618201,"Worldwide Gross":248400000,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Jun 05 1998","MPAA Rating":"PG","Running Time min":102,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Peter Weir","Rotten Tomatoes Rating":95,"IMDB Rating":8,"IMDB Votes":156346},{"Title":"Trust the Man","US Gross":1530535,"Worldwide Gross":2548378,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Aug 18 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":27,"IMDB Rating":5.8,"IMDB Votes":5262},{"Title":"Where the Truth Lies","US Gross":872142,"Worldwide Gross":1415656,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Oct 14 2005","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"ThinkFilm","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":null,"Director":"Atom Egoyan","Rotten Tomatoes Rating":41,"IMDB Rating":6.6,"IMDB Votes":8951},{"Title":"Tarzan","US Gross":171091819,"Worldwide Gross":448191819,"US DVD Sales":null,"Production Budget":145000000,"Release Date":"Jun 16 1999","MPAA Rating":"G","Running Time min":88,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Kevin Lima","Rotten Tomatoes Rating":88,"IMDB Rating":6.9,"IMDB Votes":26871},{"Title":"The Secret in Their Eyes","US Gross":6374789,"Worldwide Gross":6374789,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Apr 16 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Tsotsi","US Gross":2912606,"Worldwide Gross":9879971,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Feb 24 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Gavin Hood","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":13167},{"Title":"Teacher's Pet: The Movie","US Gross":6491969,"Worldwide Gross":6491969,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jan 16 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Time Traveler's Wife","US Gross":63414846,"Worldwide Gross":98666635,"US DVD Sales":19814283,"Production Budget":39000000,"Release Date":"Aug 14 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":37,"IMDB Rating":7.1,"IMDB Votes":23908},{"Title":"The Touch","US Gross":0,"Worldwide Gross":5918742,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 31 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.5,"IMDB Votes":1031},{"Title":"Tuck Everlasting","US Gross":19161999,"Worldwide Gross":19344615,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Oct 11 2002","MPAA Rating":"PG","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Kids Fiction","Director":"Jay Russell","Rotten Tomatoes Rating":61,"IMDB Rating":6.5,"IMDB Votes":6639},{"Title":"Thumbsucker","US Gross":1328679,"Worldwide Gross":1919197,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Sep 16 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":70,"IMDB Rating":6.7,"IMDB Votes":12109},{"Title":"Turbulence","US Gross":11532774,"Worldwide Gross":11532774,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Jan 10 1997","MPAA Rating":"R","Running Time min":null,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":17,"IMDB Rating":4.5,"IMDB Votes":5147},{"Title":"Turistas","US Gross":7027762,"Worldwide Gross":14321070,"US DVD Sales":3507046,"Production Budget":10000000,"Release Date":"Dec 01 2006","MPAA Rating":"R","Running Time min":89,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":83},{"Title":"The Wash","US Gross":10097096,"Worldwide Gross":10097096,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Nov 14 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":3.6,"IMDB Votes":3095},{"Title":"Two Girls and a Guy","US Gross":2057193,"Worldwide Gross":2315026,"US DVD Sales":null,"Production Budget":1000000,"Release Date":"Apr 24 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"James Toback","Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":3722},{"Title":"The Wild","US Gross":37384046,"Worldwide Gross":99384046,"US DVD Sales":43063958,"Production Budget":80000000,"Release Date":"Apr 14 2006","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":19,"IMDB Rating":5.4,"IMDB Votes":8498},{"Title":"Twilight","US Gross":15055091,"Worldwide Gross":15055091,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 06 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":6.1,"IMDB Votes":4840},{"Title":"Twisted","US Gross":25195050,"Worldwide Gross":40119848,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Feb 27 2004","MPAA Rating":"R","Running Time min":97,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Philip Kaufman","Rotten Tomatoes Rating":2,"IMDB Rating":4.8,"IMDB Votes":83},{"Title":"The Twilight Saga: New Moon","US Gross":296623634,"Worldwide Gross":702623634,"US DVD Sales":162665819,"Production Budget":50000000,"Release Date":"Nov 20 2009","MPAA Rating":"PG-13","Running Time min":130,"Distributor":"Summit Entertainment","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Chris Weitz","Rotten Tomatoes Rating":28,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Twilight Saga: Eclipse","US Gross":300155447,"Worldwide Gross":688155447,"US DVD Sales":null,"Production Budget":68000000,"Release Date":"Jun 30 2010","MPAA Rating":"PG-13","Running Time min":124,"Distributor":"Summit Entertainment","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":"David Slade","Rotten Tomatoes Rating":51,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Twilight","US Gross":192769854,"Worldwide Gross":396439854,"US DVD Sales":193591463,"Production Budget":37000000,"Release Date":"Nov 21 2008","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"Summit Entertainment","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":"Catherine Hardwicke","Rotten Tomatoes Rating":50,"IMDB Rating":6.1,"IMDB Votes":4840},{"Title":"Town & Country","US Gross":6712451,"Worldwide Gross":10364769,"US DVD Sales":null,"Production Budget":105000000,"Release Date":"Apr 27 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Peter Chelsom","Rotten Tomatoes Rating":13,"IMDB Rating":4.4,"IMDB Votes":2889},{"Title":"200 Cigarettes","US Gross":6852450,"Worldwide Gross":6852450,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Feb 26 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":5.4,"IMDB Votes":8645},{"Title":"The Texas Chainsaw Massacre: The Beginning","US Gross":39517763,"Worldwide Gross":50517763,"US DVD Sales":15943146,"Production Budget":16000000,"Release Date":"Oct 06 2006","MPAA Rating":"R","Running Time min":90,"Distributor":"New Line","Source":"Remake","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.8,"IMDB Votes":20196},{"Title":"The Texas Chainsaw Massacre","US Gross":80571655,"Worldwide Gross":107071655,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Oct 17 2003","MPAA Rating":"R","Running Time min":98,"Distributor":"New Line","Source":"Remake","Major Genre":"Horror","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":36,"IMDB Rating":6.1,"IMDB Votes":39172},{"Title":"Texas Rangers","US Gross":623374,"Worldwide Gross":623374,"US DVD Sales":null,"Production Budget":38000000,"Release Date":"Nov 30 2001","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Based on Book/Short Story","Major Genre":"Western","Creative Type":"Historical Fiction","Director":"Steve Miner","Rotten Tomatoes Rating":null,"IMDB Rating":5,"IMDB Votes":2645},{"Title":"Tom yum goong","US Gross":12044087,"Worldwide Gross":43044087,"US DVD Sales":13125985,"Production Budget":5700000,"Release Date":"Sep 08 2006","MPAA Rating":"R","Running Time min":82,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.9,"IMDB Votes":13929},{"Title":"Thank You For Smoking","US Gross":24793509,"Worldwide Gross":39232211,"US DVD Sales":16660404,"Production Budget":7500000,"Release Date":"Mar 17 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Jason Reitman","Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":65340},{"Title":"U2 3D","US Gross":10363341,"Worldwide Gross":22664070,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Jan 23 2008","MPAA Rating":"G","Running Time min":85,"Distributor":"National Geographic Entertainment","Source":"Based on Real Life Events","Major Genre":"Concert/Performance","Creative Type":"Factual","Director":"Catherine Owens","Rotten Tomatoes Rating":null,"IMDB Rating":8.3,"IMDB Votes":2090},{"Title":"U-571","US Gross":77086030,"Worldwide Gross":127630030,"US DVD Sales":null,"Production Budget":62000000,"Release Date":"Apr 21 2000","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Jonathan Mostow","Rotten Tomatoes Rating":68,"IMDB Rating":6.4,"IMDB Votes":32528},{"Title":"Undercover Brother","US Gross":38230435,"Worldwide Gross":38230435,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"May 31 2002","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Malcolm D. Lee","Rotten Tomatoes Rating":76,"IMDB Rating":5.7,"IMDB Votes":14237},{"Title":"Underclassman","US Gross":5654777,"Worldwide Gross":5654777,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Sep 02 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.3,"IMDB Votes":3249},{"Title":"Dodgeball: A True Underdog Story","US Gross":114326736,"Worldwide Gross":167726736,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 18 2004","MPAA Rating":"PG-13","Running Time min":92,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.6,"IMDB Votes":65329},{"Title":"The Ugly Truth","US Gross":88915214,"Worldwide Gross":203115214,"US DVD Sales":33619971,"Production Budget":38000000,"Release Date":"Jul 24 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Robert Luketic","Rotten Tomatoes Rating":14,"IMDB Rating":6.4,"IMDB Votes":27888},{"Title":"Ultraviolet","US Gross":18522064,"Worldwide Gross":20722064,"US DVD Sales":14141779,"Production Budget":30000000,"Release Date":"Mar 03 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":4,"IMDB Votes":28547},{"Title":"Unaccompanied Minors","US Gross":16655224,"Worldwide Gross":21949214,"US DVD Sales":7060674,"Production Budget":25000000,"Release Date":"Dec 08 2006","MPAA Rating":"PG","Running Time min":87,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.7,"IMDB Votes":4133},{"Title":"Unbreakable","US Gross":94999143,"Worldwide Gross":248099143,"US DVD Sales":null,"Production Budget":73243106,"Release Date":"Nov 22 2000","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Super Hero","Director":"M. Night Shyamalan","Rotten Tomatoes Rating":68,"IMDB Rating":7.3,"IMDB Votes":97324},{"Title":"The Unborn","US Gross":42670410,"Worldwide Gross":77208315,"US DVD Sales":11045109,"Production Budget":16000000,"Release Date":"Jan 09 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":"David Goyer","Rotten Tomatoes Rating":11,"IMDB Rating":4.5,"IMDB Votes":15331},{"Title":"Undead","US Gross":41196,"Worldwide Gross":187847,"US DVD Sales":null,"Production Budget":750000,"Release Date":"Jul 01 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.6,"IMDB Votes":6957},{"Title":"Underworld","US Gross":51970690,"Worldwide Gross":95708457,"US DVD Sales":null,"Production Budget":22000000,"Release Date":"Sep 19 2003","MPAA Rating":"R","Running Time min":121,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Len Wiseman","Rotten Tomatoes Rating":30,"IMDB Rating":6.7,"IMDB Votes":65690},{"Title":"Undiscovered","US Gross":1069318,"Worldwide Gross":1069318,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Aug 26 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":8,"IMDB Rating":3.7,"IMDB Votes":1981},{"Title":"Undisputed","US Gross":12398628,"Worldwide Gross":12398628,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Aug 23 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Walter Hill","Rotten Tomatoes Rating":49,"IMDB Rating":5.8,"IMDB Votes":6837},{"Title":"Underworld: Evolution","US Gross":62318875,"Worldwide Gross":111318875,"US DVD Sales":47003121,"Production Budget":45000000,"Release Date":"Jan 20 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Fantasy","Director":"Len Wiseman","Rotten Tomatoes Rating":15,"IMDB Rating":6.6,"IMDB Votes":48551},{"Title":"An Unfinished Life","US Gross":8535575,"Worldwide Gross":18535575,"US DVD Sales":21172686,"Production Budget":30000000,"Release Date":"Sep 09 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Lasse Hallstrom","Rotten Tomatoes Rating":53,"IMDB Rating":7.1,"IMDB Votes":11770},{"Title":"Unfaithful","US Gross":52752475,"Worldwide Gross":119114494,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"May 08 2002","MPAA Rating":"R","Running Time min":123,"Distributor":"20th Century Fox","Source":"Remake","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Adrian Lyne","Rotten Tomatoes Rating":48,"IMDB Rating":6.6,"IMDB Votes":23998},{"Title":"Universal Soldier II: The Return","US Gross":10447421,"Worldwide Gross":10717421,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Aug 20 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":3.4,"IMDB Votes":10233},{"Title":null,"US Gross":26403,"Worldwide Gross":3080493,"US DVD Sales":null,"Production Budget":3700000,"Release Date":"Nov 03 2006","MPAA Rating":"Not Rated","Running Time min":85,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":39,"IMDB Rating":6.6,"IMDB Votes":11986},{"Title":"Danny the Dog","US Gross":24537621,"Worldwide Gross":49037621,"US DVD Sales":null,"Production Budget":43000000,"Release Date":"May 13 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus/Rogue Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Louis Leterrier","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":36119},{"Title":"Untraceable","US Gross":28687835,"Worldwide Gross":52649951,"US DVD Sales":19710582,"Production Budget":35000000,"Release Date":"Jan 25 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":6.1,"IMDB Votes":21922},{"Title":"Up","US Gross":293004164,"Worldwide Gross":731304609,"US DVD Sales":178459329,"Production Budget":175000000,"Release Date":"May 29 2009","MPAA Rating":"PG","Running Time min":96,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":"Pete Docter","Rotten Tomatoes Rating":98,"IMDB Rating":8.4,"IMDB Votes":110491},{"Title":"Up in the Air","US Gross":83823381,"Worldwide Gross":166077420,"US DVD Sales":17124041,"Production Budget":30000000,"Release Date":"Dec 04 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Jason Reitman","Rotten Tomatoes Rating":90,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Upside of Anger","US Gross":18761993,"Worldwide Gross":27361993,"US DVD Sales":null,"Production Budget":12000000,"Release Date":"Mar 11 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Mike Binder","Rotten Tomatoes Rating":null,"IMDB Rating":7,"IMDB Votes":12317},{"Title":"Urban Legend","US Gross":38116707,"Worldwide Gross":72571864,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Sep 25 1998","MPAA Rating":"R","Running Time min":100,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":21,"IMDB Rating":5.2,"IMDB Votes":19113},{"Title":"Urban Legends: Final Cut","US Gross":21468807,"Worldwide Gross":38574362,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Sep 22 2000","MPAA Rating":"R","Running Time min":98,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":3.7,"IMDB Votes":7609},{"Title":"Urbania","US Gross":1032075,"Worldwide Gross":1032075,"US DVD Sales":null,"Production Budget":225000,"Release Date":"Sep 15 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":73,"IMDB Rating":6.7,"IMDB Votes":2218},{"Title":"Valkyrie","US Gross":83077470,"Worldwide Gross":198686497,"US DVD Sales":26715008,"Production Budget":75000000,"Release Date":"Dec 25 2008","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"United Artists","Source":"Based on Real Life Events","Major Genre":"Thriller/Suspense","Creative Type":"Dramatization","Director":"Bryan Singer","Rotten Tomatoes Rating":61,"IMDB Rating":7.3,"IMDB Votes":54343},{"Title":"Valiant","US Gross":19478106,"Worldwide Gross":61746888,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Aug 19 2005","MPAA Rating":"G","Running Time min":null,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":5.6,"IMDB Votes":7158},{"Title":"Valentine","US Gross":20384136,"Worldwide Gross":20384136,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Feb 02 2001","MPAA Rating":"R","Running Time min":96,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":4.3,"IMDB Votes":11435},{"Title":"Cirque du Freak: The Vampire's Assistant","US Gross":14046595,"Worldwide Gross":34372469,"US DVD Sales":6377527,"Production Budget":40000000,"Release Date":"Oct 23 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Action","Creative Type":"Fantasy","Director":"Paul Weitz","Rotten Tomatoes Rating":37,"IMDB Rating":6.1,"IMDB Votes":9539},{"Title":"The Legend of Bagger Vance","US Gross":30695227,"Worldwide Gross":39235486,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Nov 03 2000","MPAA Rating":"PG-13","Running Time min":126,"Distributor":"Dreamworks SKG","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Robert Redford","Rotten Tomatoes Rating":43,"IMDB Rating":6.4,"IMDB Votes":21995},{"Title":"Raising Victor Vargas","US Gross":2073984,"Worldwide Gross":2811439,"US DVD Sales":null,"Production Budget":800000,"Release Date":"Mar 28 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Samuel Goldwyn Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Peter Sollett","Rotten Tomatoes Rating":null,"IMDB Rating":7.1,"IMDB Votes":3719},{"Title":"In the Valley of Elah","US Gross":6777741,"Worldwide Gross":24489150,"US DVD Sales":3182650,"Production Budget":23000000,"Release Date":"Sep 14 2007","MPAA Rating":"R","Running Time min":120,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Paul Haggis","Rotten Tomatoes Rating":73,"IMDB Rating":7.4,"IMDB Votes":27529},{"Title":"Venom","US Gross":881745,"Worldwide Gross":881745,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Sep 16 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax/Dimension","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":4.6,"IMDB Votes":4220},{"Title":"Venus","US Gross":3347411,"Worldwide Gross":4022411,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Dec 21 2006","MPAA Rating":"R","Running Time min":95,"Distributor":"Miramax","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":89,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Vanity Fair","US Gross":16123851,"Worldwide Gross":19123851,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Sep 01 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Mira Nair","Rotten Tomatoes Rating":50,"IMDB Rating":6.2,"IMDB Votes":9343},{"Title":"V for Vendetta","US Gross":70511035,"Worldwide Gross":132511035,"US DVD Sales":58723721,"Production Budget":50000000,"Release Date":"Mar 17 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":"James McTeigue","Rotten Tomatoes Rating":73,"IMDB Rating":8.2,"IMDB Votes":224636},{"Title":"The Velocity of Gary","US Gross":34145,"Worldwide Gross":34145,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jul 16 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Van Helsing","US Gross":120150546,"Worldwide Gross":300150546,"US DVD Sales":null,"Production Budget":170000000,"Release Date":"May 07 2004","MPAA Rating":"PG-13","Running Time min":132,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"Stephen Sommers","Rotten Tomatoes Rating":22,"IMDB Rating":5.5,"IMDB Votes":68846},{"Title":"The Village","US Gross":114197520,"Worldwide Gross":260197520,"US DVD Sales":null,"Production Budget":71682975,"Release Date":"Jul 30 2004","MPAA Rating":"PG-13","Running Time min":108,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"M. Night Shyamalan","Rotten Tomatoes Rating":42,"IMDB Rating":6.6,"IMDB Votes":88928},{"Title":"The Virgin Suicides","US Gross":4859475,"Worldwide Gross":4859475,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Apr 21 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Based on Book/Short Story","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"Sofia Coppola","Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":49110},{"Title":"Virus","US Gross":14010690,"Worldwide Gross":30626690,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jan 15 1999","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":4.5,"IMDB Votes":10487},{"Title":"The Visitor","US Gross":9427026,"Worldwide Gross":16194905,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Apr 11 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Overture Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":90,"IMDB Rating":6.8,"IMDB Votes":318},{"Title":"A Very Long Engagement","US Gross":6167817,"Worldwide Gross":59606587,"US DVD Sales":null,"Production Budget":55000000,"Release Date":"Nov 26 2004","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Jean-Pierre Jeunet","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Vertical Limit","US Gross":68473360,"Worldwide Gross":213500000,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Dec 08 2000","MPAA Rating":"PG-13","Running Time min":124,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Martin Campbell","Rotten Tomatoes Rating":47,"IMDB Rating":5.6,"IMDB Votes":24294},{"Title":"Vampires","US Gross":20268825,"Worldwide Gross":20268825,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 30 1998","MPAA Rating":"R","Running Time min":108,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Horror","Creative Type":"Fantasy","Director":"John Carpenter","Rotten Tomatoes Rating":33,"IMDB Rating":6.8,"IMDB Votes":54},{"Title":"Vanilla Sky","US Gross":100614858,"Worldwide Gross":202726605,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Dec 14 2001","MPAA Rating":"R","Running Time min":136,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Cameron Crowe","Rotten Tomatoes Rating":39,"IMDB Rating":6.9,"IMDB Votes":87820},{"Title":"Volcano","US Gross":47546796,"Worldwide Gross":120100000,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Apr 25 1997","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Mick Jackson","Rotten Tomatoes Rating":42,"IMDB Rating":5.2,"IMDB Votes":21313},{"Title":"Volver","US Gross":12899867,"Worldwide Gross":85599867,"US DVD Sales":null,"Production Budget":9400000,"Release Date":"Nov 03 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Pedro Almodovar","Rotten Tomatoes Rating":92,"IMDB Rating":4.4,"IMDB Votes":288},{"Title":"Kurtlar vadisi - Irak","US Gross":0,"Worldwide Gross":24906717,"US DVD Sales":null,"Production Budget":8300000,"Release Date":"Nov 24 2006","MPAA Rating":null,"Running Time min":null,"Distributor":null,"Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.7,"IMDB Votes":7936},{"Title":"The Flintstones in Viva Rock Vegas","US Gross":35231365,"Worldwide Gross":59431365,"US DVD Sales":null,"Production Budget":58000000,"Release Date":"Apr 28 2000","MPAA Rating":"PG","Running Time min":90,"Distributor":"Universal","Source":"Based on TV","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Brian Levant","Rotten Tomatoes Rating":24,"IMDB Rating":3.3,"IMDB Votes":5491},{"Title":"Varsity Blues","US Gross":52894169,"Worldwide Gross":54294169,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Jan 15 1999","MPAA Rating":"R","Running Time min":104,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Brian Robbins","Rotten Tomatoes Rating":39,"IMDB Rating":6,"IMDB Votes":18066},{"Title":"Valentine's Day","US Gross":110485654,"Worldwide Gross":215771698,"US DVD Sales":17250458,"Production Budget":52000000,"Release Date":"Feb 12 2010","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Garry Marshall","Rotten Tomatoes Rating":17,"IMDB Rating":5.7,"IMDB Votes":17599},{"Title":"National Lampoon's Van Wilder","US Gross":21005329,"Worldwide Gross":37975553,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Apr 05 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Wackness","US Gross":2077046,"Worldwide Gross":2635650,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Jul 03 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":69,"IMDB Rating":7.1,"IMDB Votes":13257},{"Title":"Wag the Dog","US Gross":43057470,"Worldwide Gross":64252038,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Dec 25 1997","MPAA Rating":"R","Running Time min":120,"Distributor":"New Line","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":84,"IMDB Rating":7,"IMDB Votes":36092},{"Title":"Wah-Wah","US Gross":234750,"Worldwide Gross":463039,"US DVD Sales":null,"Production Budget":7000000,"Release Date":"May 12 2006","MPAA Rating":"Not Rated","Running Time min":null,"Distributor":"IDP/Goldwyn/Roadside","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Richard E. Grant","Rotten Tomatoes Rating":null,"IMDB Rating":6.8,"IMDB Votes":1889},{"Title":"Waiting...","US Gross":16124543,"Worldwide Gross":16285543,"US DVD Sales":37517657,"Production Budget":1125000,"Release Date":"Oct 07 2005","MPAA Rating":"R","Running Time min":93,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":30,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Waking Ned Devine","US Gross":24793251,"Worldwide Gross":55193251,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Nov 20 1998","MPAA Rating":"PG","Running Time min":91,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":82,"IMDB Rating":null,"IMDB Votes":null},{"Title":"WALL-E","US Gross":223808164,"Worldwide Gross":532743103,"US DVD Sales":142201722,"Production Budget":180000000,"Release Date":"Jun 27 2008","MPAA Rating":"G","Running Time min":97,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Kids Fiction","Director":"Andrew Stanton","Rotten Tomatoes Rating":96,"IMDB Rating":8.5,"IMDB Votes":182257},{"Title":"War","US Gross":22466994,"Worldwide Gross":40666994,"US DVD Sales":27148376,"Production Budget":25000000,"Release Date":"Aug 24 2007","MPAA Rating":"R","Running Time min":99,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":28771},{"Title":"War, Inc.","US Gross":580862,"Worldwide Gross":1296184,"US DVD Sales":910568,"Production Budget":10000000,"Release Date":"May 23 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"First Look","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":29,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Red Cliff","US Gross":627047,"Worldwide Gross":119627047,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Nov 20 2009","MPAA Rating":"R","Running Time min":131,"Distributor":"Magnolia Pictures","Source":"Based on Real Life Events","Major Genre":"Action","Creative Type":"Dramatization","Director":"John Woo","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The War of the Worlds","US Gross":234280354,"Worldwide Gross":591745532,"US DVD Sales":null,"Production Budget":132000000,"Release Date":"Jun 29 2005","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Steven Spielberg","Rotten Tomatoes Rating":null,"IMDB Rating":7.2,"IMDB Votes":12074},{"Title":"Watchmen","US Gross":107509799,"Worldwide Gross":184068357,"US DVD Sales":52112827,"Production Budget":138000000,"Release Date":"Mar 06 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Zack Snyder","Rotten Tomatoes Rating":64,"IMDB Rating":7.8,"IMDB Votes":132250},{"Title":"Water","US Gross":5529144,"Worldwide Gross":8119205,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Apr 28 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"Deepa Mehta","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Waitress","US Gross":19097550,"Worldwide Gross":22202180,"US DVD Sales":23127549,"Production Budget":1500000,"Release Date":"May 02 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Adrienne Shelly","Rotten Tomatoes Rating":89,"IMDB Rating":7.2,"IMDB Votes":20384},{"Title":"The Wendell Baker Story","US Gross":127188,"Worldwide Gross":127188,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"May 18 2007","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"ThinkFilm","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Luke Wilson","Rotten Tomatoes Rating":null,"IMDB Rating":5.5,"IMDB Votes":3535},{"Title":"Winter's Bone","US Gross":5951693,"Worldwide Gross":5951693,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Jun 11 2010","MPAA Rating":"R","Running Time min":100,"Distributor":"Roadside Attractions","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":95,"IMDB Rating":8.2,"IMDB Votes":1704},{"Title":"Wonder Boys","US Gross":19389454,"Worldwide Gross":33422485,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Feb 23 2000","MPAA Rating":"R","Running Time min":111,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Curtis Hanson","Rotten Tomatoes Rating":81,"IMDB Rating":7.5,"IMDB Votes":31572},{"Title":"Waltz with Bashir","US Gross":2283849,"Worldwide Gross":11125664,"US DVD Sales":null,"Production Budget":2000000,"Release Date":"Dec 25 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"White Chicks","US Gross":69148997,"Worldwide Gross":111448997,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Jun 23 2004","MPAA Rating":"PG-13","Running Time min":109,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Keenen Ivory Wayans","Rotten Tomatoes Rating":15,"IMDB Rating":5,"IMDB Votes":25970},{"Title":"Wolf Creek","US Gross":16186348,"Worldwide Gross":27649774,"US DVD Sales":8898756,"Production Budget":1100000,"Release Date":"Dec 25 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein Co.","Source":"Based on Real Life Events","Major Genre":"Horror","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.3,"IMDB Votes":22594},{"Title":"The Wedding Planner","US Gross":60400856,"Worldwide Gross":94728529,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Jan 26 2001","MPAA Rating":"PG-13","Running Time min":103,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Adam Shankman","Rotten Tomatoes Rating":16,"IMDB Rating":4.8,"IMDB Votes":18717},{"Title":"Wonderland","US Gross":1060512,"Worldwide Gross":1060512,"US DVD Sales":null,"Production Budget":5500000,"Release Date":"Oct 03 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":6.6,"IMDB Votes":11966},{"Title":"Taking Woodstock","US Gross":7460204,"Worldwide Gross":10061080,"US DVD Sales":null,"Production Budget":29000000,"Release Date":"Aug 26 2009","MPAA Rating":"R","Running Time min":120,"Distributor":"Focus Features","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Ang Lee","Rotten Tomatoes Rating":48,"IMDB Rating":6.8,"IMDB Votes":8778},{"Title":"The Widow of St. Pierre","US Gross":3058380,"Worldwide Gross":3058380,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"Mar 02 2001","MPAA Rating":"R","Running Time min":null,"Distributor":"Lionsgate","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Wedding Crashers","US Gross":209218368,"Worldwide Gross":283218368,"US DVD Sales":null,"Production Budget":40000000,"Release Date":"Jul 15 2005","MPAA Rating":"R","Running Time min":113,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"David Dobkin","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Wedding Date","US Gross":31726995,"Worldwide Gross":47175038,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Feb 04 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Based on Book/Short Story","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":5.5,"IMDB Votes":12205},{"Title":"Tumbleweeds","US Gross":1350248,"Worldwide Gross":1788168,"US DVD Sales":null,"Production Budget":312000,"Release Date":"Nov 24 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fine Line","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":84,"IMDB Rating":6.4,"IMDB Votes":2152},{"Title":"We Own the Night","US Gross":28563179,"Worldwide Gross":54700285,"US DVD Sales":22557036,"Production Budget":28000000,"Release Date":"Oct 12 2007","MPAA Rating":"R","Running Time min":117,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"James Gray","Rotten Tomatoes Rating":56,"IMDB Rating":7,"IMDB Votes":38163},{"Title":"We Were Soldiers","US Gross":78120196,"Worldwide Gross":114658262,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Mar 01 2002","MPAA Rating":"R","Running Time min":138,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":62,"IMDB Rating":6.9,"IMDB Votes":42580},{"Title":"The World's Fastest Indian","US Gross":5128124,"Worldwide Gross":16509706,"US DVD Sales":7272519,"Production Budget":25000000,"Release Date":"Dec 07 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Roger Donaldson","Rotten Tomatoes Rating":82,"IMDB Rating":7.9,"IMDB Votes":19687},{"Title":"Les herbes folles","US Gross":377556,"Worldwide Gross":1877556,"US DVD Sales":null,"Production Budget":14000000,"Release Date":"Jun 25 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":915},{"Title":"What a Girl Wants","US Gross":35990505,"Worldwide Gross":35990505,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Apr 04 2003","MPAA Rating":"PG","Running Time min":105,"Distributor":"Warner Bros.","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Dennie Gordon","Rotten Tomatoes Rating":34,"IMDB Rating":5.7,"IMDB Votes":12561},{"Title":"Whale Rider","US Gross":20779666,"Worldwide Gross":38833352,"US DVD Sales":null,"Production Budget":4300000,"Release Date":"Jun 06 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Palm Pictures","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":90,"IMDB Rating":7.7,"IMDB Votes":21814},{"Title":"Walk Hard: The Dewey Cox Story","US Gross":18317151,"Worldwide Gross":20575121,"US DVD Sales":15734125,"Production Budget":35000000,"Release Date":"Dec 21 2007","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":null,"Rotten Tomatoes Rating":74,"IMDB Rating":6.7,"IMDB Votes":28032},{"Title":"Where the Heart Is","US Gross":33771174,"Worldwide Gross":40862054,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Apr 28 2000","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":34,"IMDB Rating":6.4,"IMDB Votes":13302},{"Title":"Whipped","US Gross":4142507,"Worldwide Gross":4142507,"US DVD Sales":null,"Production Budget":3000000,"Release Date":"Sep 01 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Destination Films","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":4.2,"IMDB Votes":2973},{"Title":"Whip It","US Gross":13043363,"Worldwide Gross":13043363,"US DVD Sales":6310163,"Production Budget":15000000,"Release Date":"Oct 02 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Drew Barrymore","Rotten Tomatoes Rating":84,"IMDB Rating":7.1,"IMDB Votes":14068},{"Title":"Welcome Home Roscoe Jenkins","US Gross":42436517,"Worldwide Gross":43607627,"US DVD Sales":17066717,"Production Budget":27500000,"Release Date":"Feb 08 2008","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Malcolm D. Lee","Rotten Tomatoes Rating":23,"IMDB Rating":4.5,"IMDB Votes":5700},{"Title":"When a Stranger Calls","US Gross":47860214,"Worldwide Gross":66966987,"US DVD Sales":13084600,"Production Budget":15000000,"Release Date":"Feb 03 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony/Screen Gems","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":"Simon West","Rotten Tomatoes Rating":9,"IMDB Rating":4.7,"IMDB Votes":16505},{"Title":"What Dreams May Come","US Gross":55485043,"Worldwide Gross":71485043,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Oct 02 1998","MPAA Rating":"PG-13","Running Time min":113,"Distributor":"Polygram","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":55,"IMDB Rating":6.6,"IMDB Votes":30486},{"Title":"The White Countess","US Gross":1669971,"Worldwide Gross":2814566,"US DVD Sales":null,"Production Budget":16000000,"Release Date":"Dec 21 2005","MPAA Rating":"PG-13","Running Time min":135,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Historical Fiction","Director":"James Ivory","Rotten Tomatoes Rating":51,"IMDB Rating":6.5,"IMDB Votes":2855},{"Title":"Wicker Park","US Gross":12831121,"Worldwide Gross":13400080,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Sep 03 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"MGM","Source":"Remake","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Paul McGuigan","Rotten Tomatoes Rating":24,"IMDB Rating":6.9,"IMDB Votes":18987},{"Title":"Where the Wild Things Are","US Gross":77233467,"Worldwide Gross":99123656,"US DVD Sales":27984751,"Production Budget":100000000,"Release Date":"Oct 16 2009","MPAA Rating":"PG","Running Time min":100,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Spike Jonze","Rotten Tomatoes Rating":73,"IMDB Rating":7.2,"IMDB Votes":30669},{"Title":"Wild Things","US Gross":29795299,"Worldwide Gross":55576699,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 20 1998","MPAA Rating":"R","Running Time min":108,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":64,"IMDB Rating":6.6,"IMDB Votes":40110},{"Title":"Wimbledon","US Gross":16862585,"Worldwide Gross":41862585,"US DVD Sales":null,"Production Budget":35000000,"Release Date":"Sep 17 2004","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":60,"IMDB Rating":6.3,"IMDB Votes":21996},{"Title":"Windtalkers","US Gross":40914068,"Worldwide Gross":77628265,"US DVD Sales":null,"Production Budget":115000000,"Release Date":"Jun 14 2002","MPAA Rating":"R","Running Time min":134,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Historical Fiction","Director":"John Woo","Rotten Tomatoes Rating":32,"IMDB Rating":5.8,"IMDB Votes":26421},{"Title":"Because of Winn-Dixie","US Gross":32647042,"Worldwide Gross":33589427,"US DVD Sales":null,"Production Budget":15000000,"Release Date":"Feb 18 2005","MPAA Rating":"PG","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Wayne Wang","Rotten Tomatoes Rating":53,"IMDB Rating":6.1,"IMDB Votes":3720},{"Title":"Wing Commander","US Gross":11578022,"Worldwide Gross":11578022,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Mar 12 1999","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Game","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":11,"IMDB Rating":3.7,"IMDB Votes":9460},{"Title":"Without Limits","US Gross":780326,"Worldwide Gross":780326,"US DVD Sales":null,"Production Budget":25000000,"Release Date":"Sep 11 1998","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":78,"IMDB Rating":6.9,"IMDB Votes":3369},{"Title":"What Just Happened","US Gross":1090947,"Worldwide Gross":2412123,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Oct 17 2008","MPAA Rating":"R","Running Time min":null,"Distributor":"Magnolia Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Barry Levinson","Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":12537},{"Title":"What Lies Beneath","US Gross":155464351,"Worldwide Gross":288693989,"US DVD Sales":null,"Production Budget":90000000,"Release Date":"Jul 21 2000","MPAA Rating":"PG-13","Running Time min":130,"Distributor":"Dreamworks SKG","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Robert Zemeckis","Rotten Tomatoes Rating":45,"IMDB Rating":6.5,"IMDB Votes":45633},{"Title":"Walk the Line","US Gross":119519402,"Worldwide Gross":184319402,"US DVD Sales":123216687,"Production Budget":29000000,"Release Date":"Nov 18 2005","MPAA Rating":"PG-13","Running Time min":80,"Distributor":"20th Century Fox","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"James Mangold","Rotten Tomatoes Rating":82,"IMDB Rating":7.9,"IMDB Votes":85235},{"Title":"A Walk to Remember","US Gross":41227069,"Worldwide Gross":46060915,"US DVD Sales":null,"Production Budget":11000000,"Release Date":"Jan 25 2002","MPAA Rating":"PG","Running Time min":102,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Adam Shankman","Rotten Tomatoes Rating":28,"IMDB Rating":7.1,"IMDB Votes":38045},{"Title":"Willard","US Gross":6882696,"Worldwide Gross":6882696,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Mar 14 2003","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"New Line","Source":"Remake","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":65,"IMDB Rating":6.2,"IMDB Votes":7702},{"Title":"Wild Wild West","US Gross":113805681,"Worldwide Gross":222105681,"US DVD Sales":null,"Production Budget":175000000,"Release Date":"Jun 30 1999","MPAA Rating":"PG-13","Running Time min":107,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Barry Sonnenfeld","Rotten Tomatoes Rating":21,"IMDB Rating":4.3,"IMDB Votes":54183},{"Title":"White Noise 2: The Light","US Gross":0,"Worldwide Gross":8243567,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jan 08 2008","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Fantasy","Director":null,"Rotten Tomatoes Rating":86,"IMDB Rating":5.9,"IMDB Votes":5647},{"Title":"White Noise","US Gross":56094360,"Worldwide Gross":92094360,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"Jan 07 2005","MPAA Rating":"PG-13","Running Time min":101,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":9,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Wanted","US Gross":134508551,"Worldwide Gross":340934768,"US DVD Sales":71092823,"Production Budget":75000000,"Release Date":"Jun 27 2008","MPAA Rating":"R","Running Time min":110,"Distributor":"Universal","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Science Fiction","Director":"Timur Bekmambetov","Rotten Tomatoes Rating":71,"IMDB Rating":6.4,"IMDB Votes":1089},{"Title":"Woman on Top","US Gross":5018450,"Worldwide Gross":10192613,"US DVD Sales":null,"Production Budget":8000000,"Release Date":"Sep 22 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":35,"IMDB Rating":4.9,"IMDB Votes":4743},{"Title":"The Wolf Man","US Gross":61979680,"Worldwide Gross":142422252,"US DVD Sales":18568140,"Production Budget":150000000,"Release Date":"Feb 12 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Universal","Source":"Remake","Major Genre":"Horror","Creative Type":"Fantasy","Director":"Joe Johnston","Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":6099},{"Title":"X-Men Origins: Wolverine","US Gross":179883157,"Worldwide Gross":374825760,"US DVD Sales":73930122,"Production Budget":150000000,"Release Date":"May 01 2009","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Spin-Off","Major Genre":"Action","Creative Type":"Super Hero","Director":"Gavin Hood","Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":79499},{"Title":"The Women","US Gross":26902075,"Worldwide Gross":50042410,"US DVD Sales":10057074,"Production Budget":16000000,"Release Date":"Sep 12 2008","MPAA Rating":"PG-13","Running Time min":114,"Distributor":"Picturehouse","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":13,"IMDB Rating":7.9,"IMDB Votes":5519},{"Title":"Woo","US Gross":8064972,"Worldwide Gross":8064972,"US DVD Sales":null,"Production Budget":13000000,"Release Date":"May 08 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"New Line","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":5,"IMDB Rating":3.4,"IMDB Votes":982},{"Title":"The Wood","US Gross":25059640,"Worldwide Gross":25059640,"US DVD Sales":null,"Production Budget":6000000,"Release Date":"Jul 16 1999","MPAA Rating":"R","Running Time min":106,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":61,"IMDB Rating":6.1,"IMDB Votes":3224},{"Title":"Without a Paddle","US Gross":58156435,"Worldwide Gross":65121280,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Aug 20 2004","MPAA Rating":"PG-13","Running Time min":95,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":15,"IMDB Rating":5.7,"IMDB Votes":17207},{"Title":"What's the Worst That Could Happen?","US Gross":32267774,"Worldwide Gross":38462071,"US DVD Sales":null,"Production Budget":30000000,"Release Date":"Jun 01 2001","MPAA Rating":"PG-13","Running Time min":98,"Distributor":"MGM","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":5,"IMDB Votes":6727},{"Title":"Winter Passing","US Gross":107492,"Worldwide Gross":113783,"US DVD Sales":null,"Production Budget":3500000,"Release Date":"Feb 17 2006","MPAA Rating":"R","Running Time min":null,"Distributor":"Focus Features","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":6.4,"IMDB Votes":4360},{"Title":"What Planet Are You From?","US Gross":6291602,"Worldwide Gross":6291602,"US DVD Sales":null,"Production Budget":50000000,"Release Date":"Mar 03 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Mike Nichols","Rotten Tomatoes Rating":42,"IMDB Rating":5.4,"IMDB Votes":5304},{"Title":"Wordplay","US Gross":3121270,"Worldwide Gross":3177636,"US DVD Sales":null,"Production Budget":500000,"Release Date":"Jun 16 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"IFC Films","Source":"Based on Real Life Events","Major Genre":"Documentary","Creative Type":"Factual","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":7.4,"IMDB Votes":2222},{"Title":"The Wrestler","US Gross":26236603,"Worldwide Gross":43236603,"US DVD Sales":11912450,"Production Budget":6000000,"Release Date":"Dec 17 2008","MPAA Rating":"R","Running Time min":109,"Distributor":"Fox Searchlight","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Darren Aronofsky","Rotten Tomatoes Rating":98,"IMDB Rating":8.2,"IMDB Votes":93301},{"Title":"Walking Tall","US Gross":46213824,"Worldwide Gross":47313824,"US DVD Sales":null,"Production Budget":56000000,"Release Date":"Apr 02 2004","MPAA Rating":"PG-13","Running Time min":87,"Distributor":"MGM","Source":"Remake","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Kevin Bray","Rotten Tomatoes Rating":25,"IMDB Rating":6,"IMDB Votes":20517},{"Title":"World Trade Center","US Gross":70278893,"Worldwide Gross":163278893,"US DVD Sales":36877248,"Production Budget":65000000,"Release Date":"Aug 09 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Oliver Stone","Rotten Tomatoes Rating":69,"IMDB Rating":6.2,"IMDB Votes":34341},{"Title":"The Watcher","US Gross":28946615,"Worldwide Gross":47267829,"US DVD Sales":null,"Production Budget":33000000,"Release Date":"Sep 08 2000","MPAA Rating":"R","Running Time min":97,"Distributor":"Universal","Source":"Original Screenplay","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":10,"IMDB Rating":3.7,"IMDB Votes":959},{"Title":"The Weather Man","US Gross":12482775,"Worldwide Gross":15466961,"US DVD Sales":16632857,"Production Budget":20000000,"Release Date":"Oct 28 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Gore Verbinski","Rotten Tomatoes Rating":58,"IMDB Rating":6.9,"IMDB Votes":35394},{"Title":"Sky Captain and the World of Tomorrow","US Gross":37760080,"Worldwide Gross":49730854,"US DVD Sales":null,"Production Budget":70000000,"Release Date":"Sep 17 2004","MPAA Rating":"PG","Running Time min":106,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Adventure","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":72,"IMDB Rating":6.3,"IMDB Votes":40281},{"Title":"Whiteout","US Gross":10275638,"Worldwide Gross":12254746,"US DVD Sales":3231673,"Production Budget":35000000,"Release Date":"Sep 11 2009","MPAA Rating":"R","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on Comic/Graphic Novel","Major Genre":"Thriller/Suspense","Creative Type":"Contemporary Fiction","Director":"Dominic Sena","Rotten Tomatoes Rating":7,"IMDB Rating":5.3,"IMDB Votes":10044},{"Title":"The Waterboy","US Gross":161491646,"Worldwide Gross":190191646,"US DVD Sales":null,"Production Budget":23000000,"Release Date":"Nov 06 1998","MPAA Rating":"PG-13","Running Time min":86,"Distributor":"Walt Disney Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Frank Coraci","Rotten Tomatoes Rating":32,"IMDB Rating":5.7,"IMDB Votes":43251},{"Title":"Wrong Turn","US Gross":15417771,"Worldwide Gross":28649556,"US DVD Sales":null,"Production Budget":10000000,"Release Date":"May 30 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"20th Century Fox","Source":"Original Screenplay","Major Genre":"Horror","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":40,"IMDB Rating":5.8,"IMDB Votes":119},{"Title":"What Women Want","US Gross":182805123,"Worldwide Gross":372100000,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Dec 15 2000","MPAA Rating":"PG-13","Running Time min":127,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Romantic Comedy","Creative Type":"Contemporary Fiction","Director":"Nancy Meyers","Rotten Tomatoes Rating":53,"IMDB Rating":6.3,"IMDB Votes":54525},{"Title":"The Way of the Gun","US Gross":6047856,"Worldwide Gross":13061935,"US DVD Sales":null,"Production Budget":9000000,"Release Date":"Sep 08 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Artisan","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":48,"IMDB Rating":6.5,"IMDB Votes":17513},{"Title":"The X-Files: I Want to Believe","US Gross":20982478,"Worldwide Gross":68369434,"US DVD Sales":16034958,"Production Budget":35000000,"Release Date":"Jul 25 2008","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":5.9,"IMDB Votes":35433},{"Title":"The X Files: Fight the Future","US Gross":83898313,"Worldwide Gross":189176423,"US DVD Sales":null,"Production Budget":66000000,"Release Date":"Jun 19 1998","MPAA Rating":"PG-13","Running Time min":120,"Distributor":"20th Century Fox","Source":"Based on TV","Major Genre":"Action","Creative Type":"Science Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Extraordinary Measures","US Gross":12482741,"Worldwide Gross":12697741,"US DVD Sales":5267433,"Production Budget":31000000,"Release Date":"Jan 22 2010","MPAA Rating":"PG","Running Time min":null,"Distributor":"CBS Films","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":"Tom Vaughan","Rotten Tomatoes Rating":27,"IMDB Rating":6.4,"IMDB Votes":3770},{"Title":"X-Men","US Gross":157299717,"Worldwide Gross":334627820,"US DVD Sales":null,"Production Budget":75000000,"Release Date":"Jul 14 2000","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Bryan Singer","Rotten Tomatoes Rating":82,"IMDB Rating":7.4,"IMDB Votes":120706},{"Title":"X2","US Gross":214949694,"Worldwide Gross":407711549,"US DVD Sales":null,"Production Budget":125000000,"Release Date":"May 02 2003","MPAA Rating":"PG-13","Running Time min":133,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Bryan Singer","Rotten Tomatoes Rating":null,"IMDB Rating":7.8,"IMDB Votes":112320},{"Title":"X-Men: The Last Stand","US Gross":234362462,"Worldwide Gross":459359555,"US DVD Sales":103555667,"Production Budget":150000000,"Release Date":"May 26 2006","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"20th Century Fox","Source":"Based on Comic/Graphic Novel","Major Genre":"Action","Creative Type":"Super Hero","Director":"Brett Ratner","Rotten Tomatoes Rating":57,"IMDB Rating":6.9,"IMDB Votes":109125},{"Title":"The Exploding Girl","US Gross":25572,"Worldwide Gross":25572,"US DVD Sales":null,"Production Budget":40000,"Release Date":"Mar 12 2010","MPAA Rating":null,"Running Time min":79,"Distributor":"Oscilloscope Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":"Bradley Rust Grey","Rotten Tomatoes Rating":null,"IMDB Rating":6.2,"IMDB Votes":260},{"Title":"The Expendables","US Gross":101384023,"Worldwide Gross":240484023,"US DVD Sales":null,"Production Budget":82000000,"Release Date":"Aug 13 2010","MPAA Rating":null,"Running Time min":103,"Distributor":"Lionsgate","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Sylvester Stallone","Rotten Tomatoes Rating":40,"IMDB Rating":7.1,"IMDB Votes":42427},{"Title":"XXX: State of the Union","US Gross":26873932,"Worldwide Gross":71073932,"US DVD Sales":null,"Production Budget":60000000,"Release Date":"Apr 29 2005","MPAA Rating":"PG-13","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Action","Creative Type":"Contemporary Fiction","Director":"Lee Tamahori","Rotten Tomatoes Rating":null,"IMDB Rating":4.1,"IMDB Votes":19527},{"Title":"The Yards","US Gross":882710,"Worldwide Gross":2282710,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Oct 20 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Miramax","Source":null,"Major Genre":"Drama","Creative Type":null,"Director":"James Gray","Rotten Tomatoes Rating":64,"IMDB Rating":6.3,"IMDB Votes":8784},{"Title":"The Divine Secrets of the Ya-Ya Sisterhood","US Gross":69586544,"Worldwide Gross":73826768,"US DVD Sales":null,"Production Budget":27000000,"Release Date":"Jun 07 2002","MPAA Rating":"PG-13","Running Time min":116,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"You Can Count on Me","US Gross":9180275,"Worldwide Gross":11005992,"US DVD Sales":null,"Production Budget":1200000,"Release Date":"Nov 10 2000","MPAA Rating":"R","Running Time min":null,"Distributor":"Paramount Vantage","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":95,"IMDB Rating":7.7,"IMDB Votes":14261},{"Title":"Year One","US Gross":43337279,"Worldwide Gross":57604723,"US DVD Sales":14813995,"Production Budget":60000000,"Release Date":"Jun 19 2009","MPAA Rating":"PG-13","Running Time min":97,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Historical Fiction","Director":"Harold Ramis","Rotten Tomatoes Rating":14,"IMDB Rating":5,"IMDB Votes":23091},{"Title":"Yes","US Gross":396035,"Worldwide Gross":661221,"US DVD Sales":null,"Production Budget":1700000,"Release Date":"Jun 24 2005","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures Classics","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Yes Man","US Gross":97690976,"Worldwide Gross":225990976,"US DVD Sales":26601131,"Production Budget":50000000,"Release Date":"Dec 19 2008","MPAA Rating":"PG-13","Running Time min":104,"Distributor":"Warner Bros.","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Peyton Reed","Rotten Tomatoes Rating":43,"IMDB Rating":7,"IMDB Votes":62150},{"Title":"You Kill Me","US Gross":2426851,"Worldwide Gross":2426851,"US DVD Sales":null,"Production Budget":4000000,"Release Date":"Jun 22 2007","MPAA Rating":"R","Running Time min":92,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Black Comedy","Creative Type":"Contemporary Fiction","Director":"John Dahl","Rotten Tomatoes Rating":78,"IMDB Rating":6.7,"IMDB Votes":9498},{"Title":"Yours, Mine and Ours","US Gross":53359917,"Worldwide Gross":72359917,"US DVD Sales":26979166,"Production Budget":45000000,"Release Date":"Nov 23 2005","MPAA Rating":"PG","Running Time min":90,"Distributor":"Paramount Pictures","Source":"Remake","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Raja Gosnell","Rotten Tomatoes Rating":null,"IMDB Rating":7.6,"IMDB Votes":259},{"Title":"You've Got Mail","US Gross":115821495,"Worldwide Gross":250800000,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Dec 18 1998","MPAA Rating":"PG","Running Time min":119,"Distributor":"Warner Bros.","Source":"Based on Play","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Nora Ephron","Rotten Tomatoes Rating":68,"IMDB Rating":6.2,"IMDB Votes":52587},{"Title":"Youth in Revolt","US Gross":15285588,"Worldwide Gross":17585588,"US DVD Sales":3654607,"Production Budget":18000000,"Release Date":"Jan 08 2010","MPAA Rating":"R","Running Time min":null,"Distributor":"Weinstein/Dimension","Source":"Based on Book/Short Story","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":6.7,"IMDB Votes":14670},{"Title":"Y Tu Mama Tambien (And Your Mother Too)","US Gross":13649881,"Worldwide Gross":33649881,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Mar 15 2002","MPAA Rating":"R","Running Time min":null,"Distributor":"IFC Films","Source":"Original Screenplay","Major Genre":"Drama","Creative Type":"Contemporary Fiction","Director":"Alfonso Cuaron","Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Yu-Gi-Oh","US Gross":19762690,"Worldwide Gross":28762690,"US DVD Sales":null,"Production Budget":20000000,"Release Date":"Aug 13 2004","MPAA Rating":"PG","Running Time min":null,"Distributor":"Warner Bros.","Source":"Based on TV","Major Genre":"Adventure","Creative Type":"Kids Fiction","Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":null,"IMDB Votes":null},{"Title":"The Young Unknowns","US Gross":58163,"Worldwide Gross":58163,"US DVD Sales":null,"Production Budget":800000,"Release Date":"Apr 11 2003","MPAA Rating":"R","Running Time min":null,"Distributor":"Indican Pictures","Source":null,"Major Genre":null,"Creative Type":null,"Director":null,"Rotten Tomatoes Rating":null,"IMDB Rating":4.5,"IMDB Votes":98},{"Title":"The Young Victoria","US Gross":11001272,"Worldwide Gross":11001272,"US DVD Sales":3273039,"Production Budget":35000000,"Release Date":"Dec 18 2009","MPAA Rating":"PG","Running Time min":null,"Distributor":"Apparition","Source":"Based on Real Life Events","Major Genre":"Drama","Creative Type":"Dramatization","Director":null,"Rotten Tomatoes Rating":76,"IMDB Rating":7.2,"IMDB Votes":8408},{"Title":"Zathura","US Gross":28045540,"Worldwide Gross":58545540,"US DVD Sales":22025352,"Production Budget":65000000,"Release Date":"Nov 11 2005","MPAA Rating":"PG","Running Time min":113,"Distributor":"Sony Pictures","Source":"Based on Book/Short Story","Major Genre":"Adventure","Creative Type":"Fantasy","Director":"Jon Favreau","Rotten Tomatoes Rating":75,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Zero Effect","US Gross":2080693,"Worldwide Gross":2080693,"US DVD Sales":null,"Production Budget":5000000,"Release Date":"Jan 30 1998","MPAA Rating":"R","Running Time min":null,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":null,"Rotten Tomatoes Rating":66,"IMDB Rating":6.8,"IMDB Votes":8489},{"Title":"Zoolander","US Gross":45172250,"Worldwide Gross":60780981,"US DVD Sales":null,"Production Budget":28000000,"Release Date":"Sep 28 2001","MPAA Rating":"PG-13","Running Time min":89,"Distributor":"Paramount Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Ben Stiller","Rotten Tomatoes Rating":62,"IMDB Rating":6.4,"IMDB Votes":69296},{"Title":"Zombieland","US Gross":75590286,"Worldwide Gross":98690286,"US DVD Sales":28281155,"Production Budget":23600000,"Release Date":"Oct 02 2009","MPAA Rating":"R","Running Time min":87,"Distributor":"Sony Pictures","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Fantasy","Director":"Ruben Fleischer","Rotten Tomatoes Rating":89,"IMDB Rating":7.8,"IMDB Votes":81629},{"Title":"Zack and Miri Make a Porno","US Gross":31452765,"Worldwide Gross":36851125,"US DVD Sales":21240321,"Production Budget":24000000,"Release Date":"Oct 31 2008","MPAA Rating":"R","Running Time min":101,"Distributor":"Weinstein Co.","Source":"Original Screenplay","Major Genre":"Comedy","Creative Type":"Contemporary Fiction","Director":"Kevin Smith","Rotten Tomatoes Rating":65,"IMDB Rating":7,"IMDB Votes":55687},{"Title":"Zodiac","US Gross":33080084,"Worldwide Gross":83080084,"US DVD Sales":20983030,"Production Budget":85000000,"Release Date":"Mar 02 2007","MPAA Rating":"R","Running Time min":157,"Distributor":"Paramount Pictures","Source":"Based on Book/Short Story","Major Genre":"Thriller/Suspense","Creative Type":"Dramatization","Director":"David Fincher","Rotten Tomatoes Rating":89,"IMDB Rating":null,"IMDB Votes":null},{"Title":"Zoom","US Gross":11989328,"Worldwide Gross":12506188,"US DVD Sales":6679409,"Production Budget":35000000,"Release Date":"Aug 11 2006","MPAA Rating":"PG","Running Time min":null,"Distributor":"Sony Pictures","Source":"Based on Comic/Graphic Novel","Major Genre":"Adventure","Creative Type":"Super Hero","Director":"Peter Hewitt","Rotten Tomatoes Rating":3,"IMDB Rating":3.4,"IMDB Votes":7424},{"Title":"The Legend of Zorro","US Gross":45575336,"Worldwide Gross":141475336,"US DVD Sales":null,"Production Budget":80000000,"Release Date":"Oct 28 2005","MPAA Rating":"PG","Running Time min":129,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Martin Campbell","Rotten Tomatoes Rating":26,"IMDB Rating":5.7,"IMDB Votes":21161},{"Title":"The Mask of Zorro","US Gross":93828745,"Worldwide Gross":233700000,"US DVD Sales":null,"Production Budget":65000000,"Release Date":"Jul 17 1998","MPAA Rating":"PG-13","Running Time min":136,"Distributor":"Sony Pictures","Source":"Remake","Major Genre":"Adventure","Creative Type":"Historical Fiction","Director":"Martin Campbell","Rotten Tomatoes Rating":82,"IMDB Rating":6.7,"IMDB Votes":4789}],"anchored":true,"createdBy":"user","attachedMetadata":""},{"id":"table-78","displayId":"movie-profits","names":["Production Budget","Profit","Title","Worldwide Gross"],"rows":[{"Production Budget":237000000,"Profit":2530891499,"Title":"Avatar","Worldwide Gross":2767891499},{"Production Budget":200000000,"Profit":1642879955,"Title":"Titanic","Worldwide Gross":1842879955},{"Production Budget":94000000,"Profit":1039027325,"Title":"The Lord of the Rings: The Return of the King","Worldwide Gross":1133027325},{"Production Budget":63000000,"Profit":860067947,"Title":"Jurassic Park","Worldwide Gross":923067947},{"Production Budget":125000000,"Profit":851457891,"Title":"Harry Potter and the Sorcerer's Stone","Worldwide Gross":976457891},{"Production Budget":70000000,"Profit":849838758,"Title":"Shrek 2","Worldwide Gross":919838758},{"Production Budget":200000000,"Profit":846340665,"Title":"Toy Story 3","Worldwide Gross":1046340665},{"Production Budget":225000000,"Profit":840659812,"Title":"Pirates of the Caribbean: Dead Man's Chest","Worldwide Gross":1065659812},{"Production Budget":185000000,"Profit":837345358,"Title":"The Dark Knight","Worldwide Gross":1022345358},{"Production Budget":94000000,"Profit":832284377,"Title":"The Lord of the Rings: The Two Towers","Worldwide Gross":926284377},{"Production Budget":200000000,"Profit":823291110,"Title":"Alice in Wonderland","Worldwide Gross":1023291110},{"Production Budget":115000000,"Profit":809288297,"Title":"Star Wars Ep. I: The Phantom Menace","Worldwide Gross":924288297},{"Production Budget":90000000,"Profit":796685941,"Title":"Ice Age: Dawn of the Dinosaurs","Worldwide Gross":886685941},{"Production Budget":150000000,"Profit":788468864,"Title":"Harry Potter and the Order of the Phoenix","Worldwide Gross":938468864},{"Production Budget":11000000,"Profit":786900000,"Title":"Star Wars Ep. IV: A New Hope","Worldwide Gross":797900000},{"Production Budget":10500000,"Profit":782410554,"Title":"ET: The Extra-Terrestrial","Worldwide Gross":792910554},{"Production Budget":100000000,"Profit":778987880,"Title":"Harry Potter and the Chamber of Secrets","Worldwide Gross":878987880},{"Production Budget":94000000,"Profit":773894287,"Title":"Finding Nemo","Worldwide Gross":867894287},{"Production Budget":109000000,"Profit":759621686,"Title":"The Lord of the Rings: The Fellowship of the Ring","Worldwide Gross":868621686},{"Production Budget":150000000,"Profit":746013036,"Title":"Harry Potter and the Goblet of Fire","Worldwide Gross":896013036},{"Production Budget":75000000,"Profit":742400878,"Title":"Independence Day","Worldwide Gross":817400878},{"Production Budget":115000000,"Profit":733998877,"Title":"Star Wars Ep. III: Revenge of the Sith","Worldwide Gross":848998877},{"Production Budget":75000000,"Profit":711686679,"Title":"The Lost World: Jurassic Park","Worldwide Gross":786686679},{"Production Budget":79300000,"Profit":704539505,"Title":"The Lion King","Worldwide Gross":783839505},{"Production Budget":250000000,"Profit":687499905,"Title":"Harry Potter and the Half-Blood Prince","Worldwide Gross":937499905},{"Production Budget":139000000,"Profit":682708551,"Title":"Spider-Man","Worldwide Gross":821708551},{"Production Budget":130000000,"Profit":665538952,"Title":"Harry Potter and the Prisoner of Azkaban","Worldwide Gross":795538952},{"Production Budget":300000000,"Profit":660996492,"Title":"Pirates of the Caribbean: At World's End","Worldwide Gross":960996492},{"Production Budget":50000000,"Profit":652623634,"Title":"The Twilight Saga: New Moon","Worldwide Gross":702623634},{"Production Budget":160000000,"Profit":638958162,"Title":"Shrek the Third","Worldwide Gross":798958162}],"metadata":{"Production Budget":{"type":"number","semanticType":"Number"},"Profit":{"type":"number","semanticType":"Number"},"Title":{"type":"string","semanticType":"Name"},"Worldwide Gross":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title'])\n \n # Sort by profit in descending order and select top 30\n df_top30 = df_filtered.nlargest(30, 'Profit')\n \n # Select only the required output fields\n transformed_df = df_top30[['Title', 'Production Budget', 'Worldwide Gross', 'Profit']].reset_index(drop=True)\n \n return transformed_df\n","source":["movies"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 380270577.0, 402111870.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 33619971.0, 140689412.0, nan, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 237477.0, 417703.0, 519541.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"show top 30 movies based on their profit\",\n \"chart_type\": \"Scatter Plot\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Worldwide Gross\",\n \"color\": \"Title\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the profit for each movie (Worldwide Gross minus Production Budget), then select the top 30 movies with the highest profit. Display these movies with their Production Budget, Worldwide Gross, and Title to visualize the relationship between budget and revenue for the most profitable films.\",\n \"display_instruction\": \"Show top 30 movies by **profit** with their **Production Budget** and **Worldwide Gross**\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Worldwide Gross\", \"Profit\"],\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Worldwide Gross\",\n \"color\": \"Title\"\n },\n \"reason\": \"The user wants to show top 30 movies based on profit, which requires calculating profit as the difference between Worldwide Gross and Production Budget. The chart encodings provided are sufficient to visualize the most profitable movies, showing the relationship between their budget and gross revenue. An intermediate field 'Profit' is added to output_fields to enable the top 30 selection, though it won't be directly visualized in the chart.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title'])\n \n # Sort by profit in descending order and select top 30\n df_top30 = df_filtered.nlargest(30, 'Profit')\n \n # Select only the required output fields\n transformed_df = df_top30[['Title', 'Production Budget', 'Worldwide Gross', 'Profit']].reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"movies","sourceTableIds":["movies"],"instruction":"show top 30 movies based on their profit","displayInstruction":"Show top 30 movies by **profit** with their **Production Budget** and **Worldwide Gross**","chart":{"id":"chart-1760743154092","chartType":"Scatter Plot","encodingMap":{"x":{"fieldID":"original--movies--Production Budget"},"y":{"fieldID":"original--movies--Worldwide Gross"},"color":{"fieldID":"original--movies--Title"},"size":{"channel":"size","bin":false},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"movies","saved":false,"source":"trigger","unread":false},"resultTableId":"table-78"},"explanation":{"agent":"CodeExplanationAgent","code":"The code identifies the most financially successful movies by analyzing their profitability:\n\n- Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Filter out movies with missing values in **Profit**, **Production Budget**, **Worldwide Gross**, or **Title** fields\n- Sort all movies by **Profit** in descending order and select the **top 30** most profitable movies\n- Return a simplified dataset containing only **Title**, **Production Budget**, **Worldwide Gross**, and **Profit** for these top performers","concepts":[{"explanation":"The net financial gain from a movie, calculated as the difference between worldwide box office revenue and production costs: \\( \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\). This metric represents the pure theatrical profitability before accounting for marketing costs, distribution fees, or ancillary revenue streams like DVD sales.","field":"Profit"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 441226247.0, 533345358.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 1065659812.0, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 2638319.0, 3907625.0, 4653193.0, ..., 124058348.0, 153389976.0, 234119058.0, 320830925.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: 46.0, 72.0, 74.0, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 261439.0, 292562.0, 417703.0, 519541.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title'])\n \n # Sort by profit in descending order and select top 30\n df_top30 = df_filtered.nlargest(30, 'Profit')\n \n # Select only the required output fields\n transformed_df = df_top30[['Title', 'Production Budget', 'Worldwide Gross', 'Profit']].reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThe code identifies the most financially successful movies by analyzing their profitability:\n\n- Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Filter out movies with missing values in **Profit**, **Production Budget**, **Worldwide Gross**, or **Title** fields\n- Sort all movies by **Profit** in descending order and select the **top 30** most profitable movies\n- Return a simplified dataset containing only **Title**, **Production Budget**, **Worldwide Gross**, and **Profit** for these top performers\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"The net financial gain from a movie, calculated as the difference between worldwide box office revenue and production costs: \\\\( \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\). This metric represents the pure theatrical profitability before accounting for marketing costs, distribution fees, or ancillary revenue streams like DVD sales.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-77","displayId":"movie-profits1","names":["Major Genre","Production Budget","Profit","Title","Worldwide Gross"],"rows":[{"Major Genre":"Action","Production Budget":237000000,"Profit":2530891499,"Title":"Avatar","Worldwide Gross":2767891499},{"Major Genre":"Action","Production Budget":63000000,"Profit":860067947,"Title":"Jurassic Park","Worldwide Gross":923067947},{"Major Genre":"Action","Production Budget":185000000,"Profit":837345358,"Title":"The Dark Knight","Worldwide Gross":1022345358},{"Major Genre":"Adventure","Production Budget":94000000,"Profit":1039027325,"Title":"The Lord of the Rings: The Return of the King","Worldwide Gross":1133027325},{"Major Genre":"Adventure","Production Budget":125000000,"Profit":851457891,"Title":"Harry Potter and the Sorcerer's Stone","Worldwide Gross":976457891},{"Major Genre":"Adventure","Production Budget":70000000,"Profit":849838758,"Title":"Shrek 2","Worldwide Gross":919838758},{"Major Genre":"Black Comedy","Production Budget":37000000,"Profit":126415735,"Title":"Burn After Reading","Worldwide Gross":163415735},{"Major Genre":"Black Comedy","Production Budget":10000000,"Profit":73593107,"Title":"Snatch","Worldwide Gross":83593107},{"Major Genre":"Black Comedy","Production Budget":28000000,"Profit":43430876,"Title":"The Royal Tenenbaums","Worldwide Gross":71430876},{"Major Genre":"Comedy","Production Budget":28000000,"Profit":476050219,"Title":"Aladdin","Worldwide Gross":504050219},{"Major Genre":"Comedy","Production Budget":150000000,"Profit":470495432,"Title":"Ratatouille","Worldwide Gross":620495432},{"Major Genre":"Comedy","Production Budget":110000000,"Profit":464480841,"Title":"Night at the Museum","Worldwide Gross":574480841},{"Major Genre":"Concert/Performance","Production Budget":6500000,"Profit":64781781,"Title":"Hannah Montana/Miley Cyrus: Best of Both Worlds Concert Tour","Worldwide Gross":71281781},{"Major Genre":"Concert/Performance","Production Budget":3000000,"Profit":35236338,"Title":"The Original Kings of Comedy","Worldwide Gross":38236338},{"Major Genre":"Concert/Performance","Production Budget":3000000,"Profit":16184820,"Title":"Martin Lawrence Live: RunTelDat","Worldwide Gross":19184820},{"Major Genre":"Documentary","Production Budget":6000000,"Profit":216414517,"Title":"Fahrenheit 9/11","Worldwide Gross":222414517},{"Major Genre":"Documentary","Production Budget":3400000,"Profit":126037223,"Title":"La marche de l'empereur","Worldwide Gross":129437223},{"Major Genre":"Documentary","Production Budget":3000000,"Profit":55576018,"Title":"Bowling for Columbine","Worldwide Gross":58576018},{"Major Genre":"Drama","Production Budget":10500000,"Profit":782410554,"Title":"ET: The Extra-Terrestrial","Worldwide Gross":792910554},{"Major Genre":"Drama","Production Budget":50000000,"Profit":652623634,"Title":"The Twilight Saga: New Moon","Worldwide Gross":702623634},{"Major Genre":"Drama","Production Budget":55000000,"Profit":624400525,"Title":"Forrest Gump","Worldwide Gross":679400525},{"Major Genre":"Horror","Production Budget":12000000,"Profit":458700000,"Title":"Jaws","Worldwide Gross":470700000},{"Major Genre":"Horror","Production Budget":150000000,"Profit":435055701,"Title":"I am Legend","Worldwide Gross":585055701},{"Major Genre":"Horror","Production Budget":12000000,"Profit":390500000,"Title":"The Exorcist","Worldwide Gross":402500000},{"Major Genre":"Musical","Production Budget":20000000,"Profit":383476931,"Title":"Beauty and the Beast","Worldwide Gross":403476931},{"Major Genre":"Musical","Production Budget":8200000,"Profit":278014286,"Title":"The Sound of Music","Worldwide Gross":286214286},{"Major Genre":"Musical","Production Budget":30000000,"Profit":277687518,"Title":"Chicago","Worldwide Gross":307687518},{"Major Genre":"Romantic Comedy","Production Budget":14000000,"Profit":449400000,"Title":"Pretty Woman","Worldwide Gross":463400000},{"Major Genre":"Romantic Comedy","Production Budget":5000000,"Profit":363744044,"Title":"My Big Fat Greek Wedding","Worldwide Gross":368744044},{"Major Genre":"Romantic Comedy","Production Budget":22000000,"Profit":338099999,"Title":"There's Something About Mary","Worldwide Gross":360099999},{"Major Genre":"Thriller/Suspense","Production Budget":200000000,"Profit":1642879955,"Title":"Titanic","Worldwide Gross":1842879955},{"Major Genre":"Thriller/Suspense","Production Budget":40000000,"Profit":632806292,"Title":"The Sixth Sense","Worldwide Gross":672806292},{"Major Genre":"Thriller/Suspense","Production Budget":125000000,"Profit":632236138,"Title":"The Da Vinci Code","Worldwide Gross":757236138},{"Major Genre":"Western","Production Budget":19000000,"Profit":405200000,"Title":"Dances with Wolves","Worldwide Gross":424200000},{"Major Genre":"Western","Production Budget":6000000,"Profit":96308900,"Title":"Butch Cassidy and the Sundance Kid","Worldwide Gross":102308900},{"Major Genre":"Western","Production Budget":26000000,"Profit":42293719,"Title":"Open Range","Worldwide Gross":68293719}],"metadata":{"Major Genre":{"type":"string","semanticType":"String"},"Production Budget":{"type":"number","semanticType":"Number"},"Profit":{"type":"number","semanticType":"Number"},"Title":{"type":"string","semanticType":"Name"},"Worldwide Gross":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title', 'Major Genre'])\n \n # Group by Major Genre and select top 3 most profitable movies from each genre\n transformed_df = df_filtered.groupby('Major Genre', group_keys=False).apply(\n lambda x: x.nlargest(3, 'Profit')\n ).reset_index(drop=True)\n \n # Select only the required output fields\n transformed_df = transformed_df[['Title', 'Major Genre', 'Profit', 'Production Budget', 'Worldwide Gross']]\n \n return transformed_df\n","source":["movies"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 380270577.0, 402111870.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 33619971.0, 140689412.0, nan, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 237477.0, 417703.0, 519541.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"show top 30 movies based on their profit\",\n \"chart_type\": \"Scatter Plot\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Worldwide Gross\",\n \"color\": \"Title\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the profit for each movie (Worldwide Gross minus Production Budget), then select the top 30 movies with the highest profit. Display these movies with their Production Budget, Worldwide Gross, and Title to visualize the relationship between budget and revenue for the most profitable films.\",\n \"display_instruction\": \"Show top 30 movies by **profit** with their **Production Budget** and **Worldwide Gross**\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Worldwide Gross\", \"Profit\"],\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Worldwide Gross\",\n \"color\": \"Title\"\n },\n \"reason\": \"The user wants to show top 30 movies based on profit, which requires calculating profit as the difference between Worldwide Gross and Production Budget. The chart encodings provided are sufficient to visualize the most profitable movies, showing the relationship between their budget and gross revenue. An intermediate field 'Profit' is added to output_fields to enable the top 30 selection, though it won't be directly visualized in the chart.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title'])\n \n # Sort by profit in descending order and select top 30\n df_top30 = df_filtered.nlargest(30, 'Profit')\n \n # Select only the required output fields\n transformed_df = df_top30[['Title', 'Production Budget', 'Worldwide Gross', 'Profit']].reset_index(drop=True)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Production Budget Profit Title Worldwide Gross\n0 237000000 2530891499 Avatar 2767891499\n1 200000000 1642879955 Titanic 1842879955\n2 94000000 1039027325 The Lord of the Rings: The Return of the King 1133027325\n3 63000000 860067947 Jurassic Park 923067947\n4 125000000 851457891 Harry Potter and the Sorcerer's Stone 976457891\n5 70000000 849838758 Shrek 2 919838758\n6 200000000 846340665 Toy Story 3 1046340665\n7 225000000 840659812 Pirates of the Caribbean: Dead Man's Chest 1065659812\n8 185000000 837345358 The Dark Knight 1022345358\n9 94000000 832284377 The Lord of the Rings: The Two Towers 926284377\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show the top 3 most profitable movies from each genre\",\n \"chart_type\": \"Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Title\",\n \"y\": \"Profit\",\n \"color\": \"Production Budget\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate the profit for each movie (Worldwide Gross minus Production Budget), then group movies by their Major Genre and select the top 3 most profitable movies from each genre. Display these movies with their Title, Profit, Production Budget, Major Genre, and Worldwide Gross.\",\n \"display_instruction\": \"Show top 3 most profitable movies from each **Major Genre**\",\n \"output_fields\": [\"Title\", \"Major Genre\", \"Profit\", \"Production Budget\", \"Worldwide Gross\"],\n \"chart_encodings\": {\n \"x\": \"Title\",\n \"y\": \"Profit\",\n \"color\": \"Major Genre\"\n },\n \"reason\": \"The user wants to see the top 3 most profitable movies from each genre, which builds upon the previous profit calculation. The chart encodings are updated to use 'Major Genre' for color instead of 'Production Budget' because when showing top movies by genre, it's more meaningful to distinguish them by genre in the visualization. The Major Genre field is added to output_fields to enable grouping and visualization by genre.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title', 'Major Genre'])\n \n # Group by Major Genre and select top 3 most profitable movies from each genre\n transformed_df = df_filtered.groupby('Major Genre', group_keys=False).apply(\n lambda x: x.nlargest(3, 'Profit')\n ).reset_index(drop=True)\n \n # Select only the required output fields\n transformed_df = transformed_df[['Title', 'Major Genre', 'Profit', 'Production Budget', 'Worldwide Gross']]\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-78","sourceTableIds":["movies"],"instruction":"show the top 3 most profitable movies from each genre","displayInstruction":"Show top 3 most profitable movies from each **Major Genre**","chart":{"id":"chart-1760743349594","chartType":"Bar Chart","encodingMap":{"x":{"fieldID":"original--movies--Title"},"y":{"fieldID":"concept-Profit-1760742653681"},"color":{"fieldID":"original--movies--Production Budget"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-78","saved":false,"source":"trigger","unread":false},"resultTableId":"table-77"},"explanation":{"agent":"CodeExplanationAgent","code":"This code performs a profitability analysis to identify the most successful movies in each genre:\n\n- **Calculate Profit**: Computes the **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- **Filter Data**: Removes movies with missing values in **Profit**, **Production Budget**, **Worldwide Gross**, **Title**, or **Major Genre** to ensure complete data for analysis\n- **Group by Genre**: Groups all movies by their **Major Genre** (e.g., Action, Comedy, Drama)\n- **Select Top Performers**: Within each genre, identifies the **top 3** movies with the highest **Profit**\n- **Format Output**: Returns a focused dataset containing only **Title**, **Major Genre**, **Profit**, **Production Budget**, and **Worldwide Gross** for these top-performing movies","concepts":[{"explanation":"The net financial gain from a movie's theatrical release, calculated as the difference between worldwide box office revenue and production costs: \\( \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\). This metric indicates the commercial success of a film before accounting for marketing costs and revenue sharing.","field":"Profit"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: nan, 140689412.0, nan, ..., 44145849.0, nan, nan, 46260220.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 237477.0, 417703.0, nan, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title', 'Major Genre'])\n \n # Group by Major Genre and select top 3 most profitable movies from each genre\n transformed_df = df_filtered.groupby('Major Genre', group_keys=False).apply(\n lambda x: x.nlargest(3, 'Profit')\n ).reset_index(drop=True)\n \n # Select only the required output fields\n transformed_df = transformed_df[['Title', 'Major Genre', 'Profit', 'Production Budget', 'Worldwide Gross']]\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThis code performs a profitability analysis to identify the most successful movies in each genre:\n\n- **Calculate Profit**: Computes the **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- **Filter Data**: Removes movies with missing values in **Profit**, **Production Budget**, **Worldwide Gross**, **Title**, or **Major Genre** to ensure complete data for analysis\n- **Group by Genre**: Groups all movies by their **Major Genre** (e.g., Action, Comedy, Drama)\n- **Select Top Performers**: Within each genre, identifies the **top 3** movies with the highest **Profit**\n- **Format Output**: Returns a focused dataset containing only **Title**, **Major Genre**, **Profit**, **Production Budget**, and **Worldwide Gross** for these top-performing movies\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"The net financial gain from a movie's theatrical release, calculated as the difference between worldwide box office revenue and production costs: \\\\( \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\). This metric indicates the commercial success of a film before accounting for marketing costs and revenue sharing.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-770727","displayId":"director-profit","names":["Director","Profit","Title","Total_Director_Profit"],"rows":[{"Director":"Steven Spielberg","Profit":860067947,"Title":"Jurassic Park","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":782410554,"Title":"ET: The Extra-Terrestrial","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":711686679,"Title":"The Lost World: Jurassic Park","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":601558145,"Title":"Indiana Jones and the Kingdom of the Crystal Skull","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":459745532,"Title":"The War of the Worlds","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":458700000,"Title":"Jaws","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":426171806,"Title":"Indiana Jones and the Last Crusade","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":416635085,"Title":"Saving Private Ryan","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":366800358,"Title":"Raiders of the Lost Ark","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":317700000,"Title":"Close Encounters of the Third Kind","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":305080271,"Title":"Indiana Jones and the Temple of Doom","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":299106800,"Title":"Catch Me if You Can","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":296200000,"Title":"Schindler's List","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":256824714,"Title":"Minority Report","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":230854823,"Title":"Hook","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":145900000,"Title":"Artificial Intelligence: AI","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":143673959,"Title":"The Terminal","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":78589701,"Title":"The Color Purple","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":62875000,"Title":1941,"Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":55279090,"Title":"Munich","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":19500000,"Title":"Twilight Zone: The Movie","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":4212592,"Title":"Amistad","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Profit":-130000000,"Title":"The Adventures of Tintin: Secret of the Unicorn","Total_Director_Profit":7169573056},{"Director":"James Cameron","Profit":2530891499,"Title":"Avatar","Total_Director_Profit":5078066216},{"Director":"James Cameron","Profit":1642879955,"Title":"Titanic","Total_Director_Profit":5078066216},{"Director":"James Cameron","Profit":416816151,"Title":"Terminator 2: Judgment Day","Total_Director_Profit":5078066216},{"Director":"James Cameron","Profit":265300000,"Title":"True Lies","Total_Director_Profit":5078066216},{"Director":"James Cameron","Profit":166316455,"Title":"Aliens","Total_Director_Profit":5078066216},{"Director":"James Cameron","Profit":71619031,"Title":"The Terminator","Total_Director_Profit":5078066216},{"Director":"James Cameron","Profit":-15756875,"Title":"The Abyss","Total_Director_Profit":5078066216},{"Director":"Chris Columbus","Profit":851457891,"Title":"Harry Potter and the Sorcerer's Stone","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":778987880,"Title":"Harry Potter and the Chamber of Secrets","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":461684675,"Title":"Home Alone","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":416286003,"Title":"Mrs. Doubtfire","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":338994850,"Title":"Home Alone 2: Lost in New York","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":131435277,"Title":"Percy Jackson & the Olympians: The Lightning Thief","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":69709917,"Title":"Stepmom","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":-1617462,"Title":"I Love You, Beth Cooper","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":-2579224,"Title":"Bicentennial Man","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Profit":-8329380,"Title":"Rent","Total_Director_Profit":3036030427},{"Director":"George Lucas","Profit":809288297,"Title":"Star Wars Ep. I: The Phantom Menace","Total_Director_Profit":3011105789},{"Director":"George Lucas","Profit":786900000,"Title":"Star Wars Ep. IV: A New Hope","Total_Director_Profit":3011105789},{"Director":"George Lucas","Profit":733998877,"Title":"Star Wars Ep. III: Revenge of the Sith","Total_Director_Profit":3011105789},{"Director":"George Lucas","Profit":541695615,"Title":"Star Wars Ep. II: Attack of the Clones","Total_Director_Profit":3011105789},{"Director":"George Lucas","Profit":139223000,"Title":"American Graffiti","Total_Director_Profit":3011105789},{"Director":"Peter Jackson","Profit":1039027325,"Title":"The Lord of the Rings: The Return of the King","Total_Director_Profit":3001395936},{"Director":"Peter Jackson","Profit":832284377,"Title":"The Lord of the Rings: The Two Towers","Total_Director_Profit":3001395936},{"Director":"Peter Jackson","Profit":759621686,"Title":"The Lord of the Rings: The Fellowship of the Ring","Total_Director_Profit":3001395936},{"Director":"Peter Jackson","Profit":343517357,"Title":"King Kong","Total_Director_Profit":3001395936},{"Director":"Peter Jackson","Profit":29702568,"Title":"The Lovely Bones","Total_Director_Profit":3001395936},{"Director":"Peter Jackson","Profit":-2757377,"Title":"Braindead","Total_Director_Profit":3001395936},{"Director":"Robert Zemeckis","Profit":624400525,"Title":"Forrest Gump","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":362109762,"Title":"Back to the Future","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":342230516,"Title":"Cast Away","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":292000000,"Title":"Back to the Future Part II","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":281500000,"Title":"Who Framed Roger Rabbit?","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":203700000,"Title":"Back to the Future Part III","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":198693989,"Title":"What Lies Beneath","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":135420597,"Title":"The Polar Express","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":133743744,"Title":"Disney's A Christmas Carol","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":94022650,"Title":"Death Becomes Her","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":75900000,"Title":"Contact","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Profit":44995215,"Title":"Beowulf","Total_Director_Profit":2788716998},{"Director":"Michael Bay","Profit":626303693,"Title":"Transformers: Revenge of the Fallen","Total_Director_Profit":2461192847},{"Director":"Michael Bay","Profit":557272592,"Title":"Transformers","Total_Director_Profit":2461192847},{"Director":"Michael Bay","Profit":414600000,"Title":"Armageddon","Total_Director_Profit":2461192847},{"Director":"Michael Bay","Profit":297739855,"Title":"Pearl Harbor","Total_Director_Profit":2461192847},{"Director":"Michael Bay","Profit":261069511,"Title":"The Rock","Total_Director_Profit":2461192847},{"Director":"Michael Bay","Profit":142940870,"Title":"Bad Boys II","Total_Director_Profit":2461192847},{"Director":"Michael Bay","Profit":118247413,"Title":"Bad Boys","Total_Director_Profit":2461192847},{"Director":"Michael Bay","Profit":43018913,"Title":"The Island","Total_Director_Profit":2461192847},{"Director":"Roland Emmerich","Profit":742400878,"Title":"Independence Day","Total_Director_Profit":2390416794},{"Director":"Roland Emmerich","Profit":566812167,"Title":2012,"Total_Director_Profit":2390416794},{"Director":"Roland Emmerich","Profit":419272402,"Title":"The Day After Tomorrow","Total_Director_Profit":2390416794},{"Director":"Roland Emmerich","Profit":251000000,"Title":"Godzilla","Total_Director_Profit":2390416794},{"Director":"Roland Emmerich","Profit":164065678,"Title":"10,000 B.C.","Total_Director_Profit":2390416794},{"Director":"Roland Emmerich","Profit":141565669,"Title":"Stargate","Total_Director_Profit":2390416794},{"Director":"Roland Emmerich","Profit":105300000,"Title":"The Patriot","Total_Director_Profit":2390416794},{"Director":"Gore Verbinski","Profit":840659812,"Title":"Pirates of the Caribbean: Dead Man's Chest","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Profit":660996492,"Title":"Pirates of the Caribbean: At World's End","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Profit":530011224,"Title":"Pirates of the Caribbean: The Curse of the Black Pearl","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Profit":201094024,"Title":"The Ring","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Profit":107808615,"Title":"The Mexican","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Profit":23894591,"Title":"Mouse Hunt","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Profit":-4533039,"Title":"The Weather Man","Total_Director_Profit":2359931719},{"Director":"Tim Burton","Profit":823291110,"Title":"Alice in Wonderland","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":376348924,"Title":"Batman","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":324459076,"Title":"Charlie and the Chocolate Factory","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":262211740,"Title":"Planet of the Apes","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":186822354,"Title":"Batman Returns","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":137068340,"Title":"Sleepy Hollow","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":87359111,"Title":"The Corpse Bride","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":58326666,"Title":"Beetle Juice","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":53432867,"Title":"Big Fish","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":33976987,"Title":"Edward Scissorhands","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":21371017,"Title":"Mars Attacks!","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Profit":-12171534,"Title":"Ed Wood","Total_Director_Profit":2352496658},{"Director":"Andrew Adamson","Profit":849838758,"Title":"Shrek 2","Total_Director_Profit":2047535219},{"Director":"Andrew Adamson","Profit":568806957,"Title":"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe","Total_Director_Profit":2047535219},{"Director":"Andrew Adamson","Profit":434399218,"Title":"Shrek","Total_Director_Profit":2047535219},{"Director":"Andrew Adamson","Profit":194490286,"Title":"The Chronicles of Narnia: Prince Caspian","Total_Director_Profit":2047535219},{"Director":"Sam Raimi","Profit":682708551,"Title":"Spider-Man","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":632871626,"Title":"Spider-Man 3","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":583705001,"Title":"Spider-Man 2","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":55724728,"Title":"Drag Me To Hell","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":34567606,"Title":"The Gift","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":29025000,"Title":"The Evil Dead","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":10502976,"Title":"Army of Darkness","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":2423044,"Title":"Evil Dead II","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":-683727,"Title":"A Simple Plan","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":-3887360,"Title":"For Love of the Game","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Profit":-13447540,"Title":"The Quick and the Dead","Total_Director_Profit":2013509905},{"Director":"Ron Howard","Profit":632236138,"Title":"The Da Vinci Code","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":335975846,"Title":"Angels & Demons","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":269100000,"Title":"Apollo 13","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":238708996,"Title":"A Beautiful Mind","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":238700000,"Title":"Ransom","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":222141403,"Title":"How the Grinch Stole Christmas","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":54599495,"Title":"Splash","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":20539911,"Title":"Cinderella Man","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":-855414,"Title":"Frost/Nixon","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":-24680311,"Title":"EDtv","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Profit":-26746567,"Title":"The Missing","Total_Director_Profit":1959719497},{"Director":"Christopher Nolan","Profit":837345358,"Title":"The Dark Knight","Total_Director_Profit":1823751815},{"Director":"Christopher Nolan","Profit":593830280,"Title":"Inception","Total_Director_Profit":1823751815},{"Director":"Christopher Nolan","Profit":222353017,"Title":"Batman Begins","Total_Director_Profit":1823751815},{"Director":"Christopher Nolan","Profit":67896006,"Title":"The Prestige","Total_Director_Profit":1823751815},{"Director":"Christopher Nolan","Profit":67622499,"Title":"Insomnia","Total_Director_Profit":1823751815},{"Director":"Christopher Nolan","Profit":34665950,"Title":"Memento","Total_Director_Profit":1823751815},{"Director":"Christopher Nolan","Profit":38705,"Title":"Following","Total_Director_Profit":1823751815},{"Director":"M. Night Shyamalan","Profit":632806292,"Title":"The Sixth Sense","Total_Director_Profit":1575120870},{"Director":"M. Night Shyamalan","Profit":337563071,"Title":"Signs","Total_Director_Profit":1575120870},{"Director":"M. Night Shyamalan","Profit":188514545,"Title":"The Village","Total_Director_Profit":1575120870},{"Director":"M. Night Shyamalan","Profit":174856037,"Title":"Unbreakable","Total_Director_Profit":1575120870},{"Director":"M. Night Shyamalan","Profit":140191957,"Title":"The Last Airbender","Total_Director_Profit":1575120870},{"Director":"M. Night Shyamalan","Profit":103403799,"Title":"The Happening","Total_Director_Profit":1575120870},{"Director":"M. Night Shyamalan","Profit":-2214831,"Title":"Lady in the Water","Total_Director_Profit":1575120870},{"Director":"David Yates","Profit":788468864,"Title":"Harry Potter and the Order of the Phoenix","Total_Director_Profit":1475968769},{"Director":"David Yates","Profit":687499905,"Title":"Harry Potter and the Half-Blood Prince","Total_Director_Profit":1475968769},{"Director":"John Lasseter","Profit":394966906,"Title":"Toy Story 2","Total_Director_Profit":1436948978},{"Director":"John Lasseter","Profit":391923762,"Title":"Cars","Total_Director_Profit":1436948978},{"Director":"John Lasseter","Profit":331948825,"Title":"Toy Story","Total_Director_Profit":1436948978},{"Director":"John Lasseter","Profit":318109485,"Title":"A Bug's Life","Total_Director_Profit":1436948978},{"Director":"Carlos Saldanha","Profit":796685941,"Title":"Ice Age: Dawn of the Dinosaurs","Total_Director_Profit":1373585223},{"Director":"Carlos Saldanha","Profit":576899282,"Title":"Ice Age: The Meltdown","Total_Director_Profit":1373585223},{"Director":"Andy Wachowski","Profit":611576929,"Title":"The Matrix Reloaded","Total_Director_Profit":1296311080},{"Director":"Andy Wachowski","Profit":395279930,"Title":"The Matrix","Total_Director_Profit":1296311080},{"Director":"Andy Wachowski","Profit":314259759,"Title":"The Matrix Revolutions","Total_Director_Profit":1296311080},{"Director":"Andy Wachowski","Profit":1800000,"Title":"Bound","Total_Director_Profit":1296311080},{"Director":"Andy Wachowski","Profit":-26605538,"Title":"Speed Racer","Total_Director_Profit":1296311080},{"Director":"Ridley Scott","Profit":354683805,"Title":"Gladiator","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":263100280,"Title":"Hannibal","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":194630630,"Title":"Alien","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":165697825,"Title":"American Gangster","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":101398413,"Title":"Kingdom of Heaven","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":100885538,"Title":"Robin Hood","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":78638745,"Title":"Black Hawk Down","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":40894666,"Title":"Body of Lies","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":15892212,"Title":"Black Rain","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":7064105,"Title":"A Good Year","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":5139618,"Title":"Blade Runner","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":-1830844,"Title":"G.I.Jane","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":-9497888,"Title":"Legend","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Profit":-27770700,"Title":"White Squall","Total_Director_Profit":1288926405}],"metadata":{"Director":{"type":"string","semanticType":"Name"},"Profit":{"type":"number","semanticType":"Number"},"Title":{"type":"string","semanticType":"Name"},"Total_Director_Profit":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director or Profit values\n df = df.dropna(subset=['Director', 'Profit'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Add total director profit to each movie row\n df_filtered = df_filtered.merge(director_profit, on='Director', how='left')\n \n # Select and order columns\n transformed_df = df_filtered[['Director', 'Title', 'Profit', 'Total_Director_Profit']].copy()\n \n # Sort by total director profit (descending) and then by movie profit (descending)\n transformed_df = transformed_df.sort_values(['Total_Director_Profit', 'Profit'], ascending=[False, False])\n \n return transformed_df\n","source":["movies"],"dialog":[{"content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 441226247.0, 533345358.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: nan, 1978111.0, 140689412.0, ..., 100178981.0, 104578578.0, 234119058.0, 320830925.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 15000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 245271.0, 261439.0, 326950.0, 417703.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nshow top 20 directories based on profit breakdown by their movies","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Show top 20 directors based on total profit, with a breakdown of profit by their individual movies\",\n \"display_instruction\": \"Show top 20 **directors** by total **profit** with movie breakdown\",\n \"recommendation\": \"Calculate profit (Worldwide Gross - Production Budget) for each movie, then aggregate by director to find top 20 directors by total profit. Display individual movie profits for each director to show the breakdown.\",\n \"output_fields\": [\"Director\", \"Title\", \"Profit\", \"Total_Director_Profit\"],\n \"chart_type\": \"group_bar\",\n \"chart_encodings\": {\n \"x\": \"Director\",\n \"y\": \"Profit\",\n \"color\": \"Title\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director or Profit values\n df = df.dropna(subset=['Director', 'Profit'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Add total director profit to each movie row\n df_filtered = df_filtered.merge(director_profit, on='Director', how='left')\n \n # Select and order columns\n transformed_df = df_filtered[['Director', 'Title', 'Profit', 'Total_Director_Profit']].copy()\n \n # Sort by total director profit (descending) and then by movie profit (descending)\n transformed_df = transformed_df.sort_values(['Total_Director_Profit', 'Profit'], ascending=[False, False])\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"movies","sourceTableIds":["movies"],"instruction":"show top 20 directories based on profit breakdown by their movies","displayInstruction":"Show top 20 **directors** by total **profit** with movie breakdown","chart":{"id":"chart-1760743765735","chartType":"Auto","encodingMap":{},"tableRef":"movies","saved":false,"source":"trigger","unread":true},"resultTableId":"table-770727"},"explanation":{"agent":"CodeExplanationAgent","code":"This code performs a director profitability analysis:\n\n1. Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n\n2. Remove movies with missing **Director** or **Profit** information to ensure clean analysis\n\n3. Aggregate movies by **Director** to compute **Total_Director_Profit** (sum of all profits from their movies)\n\n4. Identify the **top 20 directors** ranked by their total profit across all films\n\n5. Filter the dataset to include only movies directed by these **top 20 directors**\n\n6. Enrich each movie record with its director's **Total_Director_Profit** for comparison context\n\n7. Sort results first by **Total_Director_Profit** (descending) to group directors by overall success, then by individual movie **Profit** (descending) to rank films within each director's portfolio","concepts":[{"explanation":"Net financial return for each movie, calculated as: \\( \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\). Positive values indicate profitable films, while negative values represent financial losses.","field":"Profit"},{"explanation":"Cumulative profit generated by a director across all their films in the dataset, computed as: \\( \\text{Total\\_Director\\_Profit} = \\sum \\text{Profit}_{\\text{all movies by director}} \\). This metric measures a director's overall commercial track record and financial value to studios.","field":"Total_Director_Profit"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 402111870.0, 403706375.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 893953.0, 2638319.0, 3507046.0, ..., 104578578.0, 124058348.0, 234119058.0, 320830925.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: 46.0, 72.0, 74.0, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: nan, 1.5, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 237477.0, 417703.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director or Profit values\n df = df.dropna(subset=['Director', 'Profit'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Add total director profit to each movie row\n df_filtered = df_filtered.merge(director_profit, on='Director', how='left')\n \n # Select and order columns\n transformed_df = df_filtered[['Director', 'Title', 'Profit', 'Total_Director_Profit']].copy()\n \n # Sort by total director profit (descending) and then by movie profit (descending)\n transformed_df = transformed_df.sort_values(['Total_Director_Profit', 'Profit'], ascending=[False, False])\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThis code performs a director profitability analysis:\n\n1. Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n\n2. Remove movies with missing **Director** or **Profit** information to ensure clean analysis\n\n3. Aggregate movies by **Director** to compute **Total_Director_Profit** (sum of all profits from their movies)\n\n4. Identify the **top 20 directors** ranked by their total profit across all films\n\n5. Filter the dataset to include only movies directed by these **top 20 directors**\n\n6. Enrich each movie record with its director's **Total_Director_Profit** for comparison context\n\n7. Sort results first by **Total_Director_Profit** (descending) to group directors by overall success, then by individual movie **Profit** (descending) to rank films within each director's portfolio\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"Net financial return for each movie, calculated as: \\\\( \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\). Positive values indicate profitable films, while negative values represent financial losses.\"\n },\n {\n \"field\": \"Total_Director_Profit\",\n \"explanation\": \"Cumulative profit generated by a director across all their films in the dataset, computed as: \\\\( \\\\text{Total\\\\_Director\\\\_Profit} = \\\\sum \\\\text{Profit}_{\\\\text{all movies by director}} \\\\). This metric measures a director's overall commercial track record and financial value to studios.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-89","displayId":"director-genre-profit","names":["Director","Genre_Profit","Major Genre","Total_Director_Profit"],"rows":[{"Director":"Steven Spielberg","Genre_Profit":2288324872,"Major Genre":"Action","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Genre_Profit":2222007781,"Major Genre":"Drama","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Genre_Profit":2118165403,"Major Genre":"Adventure","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Genre_Profit":478200000,"Major Genre":"Horror","Total_Director_Profit":7169573056},{"Director":"Steven Spielberg","Genre_Profit":62875000,"Major Genre":"Comedy","Total_Director_Profit":7169573056},{"Director":"James Cameron","Genre_Profit":3435186261,"Major Genre":"Action","Total_Director_Profit":5078066216},{"Director":"James Cameron","Genre_Profit":1642879955,"Major Genre":"Thriller/Suspense","Total_Director_Profit":5078066216},{"Director":"Chris Columbus","Genre_Profit":1761881048,"Major Genre":"Adventure","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Genre_Profit":1215348066,"Major Genre":"Comedy","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Genre_Profit":67130693,"Major Genre":"Drama","Total_Director_Profit":3036030427},{"Director":"Chris Columbus","Genre_Profit":-8329380,"Major Genre":"Musical","Total_Director_Profit":3036030427},{"Director":"George Lucas","Genre_Profit":2871882789,"Major Genre":"Adventure","Total_Director_Profit":3011105789},{"Director":"George Lucas","Genre_Profit":139223000,"Major Genre":"Comedy","Total_Director_Profit":3011105789},{"Director":"Peter Jackson","Genre_Profit":2974450745,"Major Genre":"Adventure","Total_Director_Profit":3001395936},{"Director":"Peter Jackson","Genre_Profit":29702568,"Major Genre":"Drama","Total_Director_Profit":3001395936},{"Director":"Peter Jackson","Genre_Profit":-2757377,"Major Genre":"Horror","Total_Director_Profit":3001395936},{"Director":"Robert Zemeckis","Genre_Profit":1176274785,"Major Genre":"Drama","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Genre_Profit":1038225574,"Major Genre":"Adventure","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Genre_Profit":375522650,"Major Genre":"Comedy","Total_Director_Profit":2788716998},{"Director":"Robert Zemeckis","Genre_Profit":198693989,"Major Genre":"Thriller/Suspense","Total_Director_Profit":2788716998},{"Director":"Michael Bay","Genre_Profit":2046592847,"Major Genre":"Action","Total_Director_Profit":2461192847},{"Director":"Michael Bay","Genre_Profit":414600000,"Major Genre":"Adventure","Total_Director_Profit":2461192847},{"Director":"Roland Emmerich","Genre_Profit":1325738958,"Major Genre":"Adventure","Total_Director_Profit":2390416794},{"Director":"Roland Emmerich","Genre_Profit":959377836,"Major Genre":"Action","Total_Director_Profit":2390416794},{"Director":"Roland Emmerich","Genre_Profit":105300000,"Major Genre":"Drama","Total_Director_Profit":2390416794},{"Director":"Gore Verbinski","Genre_Profit":2031667528,"Major Genre":"Adventure","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Genre_Profit":201094024,"Major Genre":"Horror","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Genre_Profit":107808615,"Major Genre":"Action","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Genre_Profit":23894591,"Major Genre":"Comedy","Total_Director_Profit":2359931719},{"Director":"Gore Verbinski","Genre_Profit":-4533039,"Major Genre":"Drama","Total_Director_Profit":2359931719},{"Director":"Tim Burton","Genre_Profit":1172861961,"Major Genre":"Adventure","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Genre_Profit":563171278,"Major Genre":"Action","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Genre_Profit":425962212,"Major Genre":"Comedy","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Genre_Profit":137068340,"Major Genre":"Horror","Total_Director_Profit":2352496658},{"Director":"Tim Burton","Genre_Profit":53432867,"Major Genre":"Drama","Total_Director_Profit":2352496658},{"Director":"Andrew Adamson","Genre_Profit":2047535219,"Major Genre":"Adventure","Total_Director_Profit":2047535219},{"Director":"Sam Raimi","Genre_Profit":1899285178,"Major Genre":"Adventure","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Genre_Profit":97675748,"Major Genre":"Horror","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Genre_Profit":34567606,"Major Genre":"Thriller/Suspense","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Genre_Profit":-4571087,"Major Genre":"Drama","Total_Director_Profit":2013509905},{"Director":"Sam Raimi","Genre_Profit":-13447540,"Major Genre":"Western","Total_Director_Profit":2013509905},{"Director":"Ron Howard","Genre_Profit":968211984,"Major Genre":"Thriller/Suspense","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Genre_Profit":527493493,"Major Genre":"Drama","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Genre_Profit":252060587,"Major Genre":"Comedy","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Genre_Profit":238700000,"Major Genre":"Action","Total_Director_Profit":1959719497},{"Director":"Ron Howard","Genre_Profit":-26746567,"Major Genre":"Western","Total_Director_Profit":1959719497},{"Director":"Christopher Nolan","Genre_Profit":1059698375,"Major Genre":"Action","Total_Director_Profit":1823713110},{"Director":"Christopher Nolan","Genre_Profit":729348785,"Major Genre":"Thriller/Suspense","Total_Director_Profit":1823713110},{"Director":"Christopher Nolan","Genre_Profit":34665950,"Major Genre":"Drama","Total_Director_Profit":1823713110},{"Director":"M. Night Shyamalan","Genre_Profit":1437143744,"Major Genre":"Thriller/Suspense","Total_Director_Profit":1575120870},{"Director":"M. Night Shyamalan","Genre_Profit":140191957,"Major Genre":"Adventure","Total_Director_Profit":1575120870},{"Director":"M. Night Shyamalan","Genre_Profit":-2214831,"Major Genre":"Drama","Total_Director_Profit":1575120870},{"Director":"David Yates","Genre_Profit":1475968769,"Major Genre":"Adventure","Total_Director_Profit":1475968769},{"Director":"John Lasseter","Genre_Profit":1045025216,"Major Genre":"Adventure","Total_Director_Profit":1436948978},{"Director":"John Lasseter","Genre_Profit":391923762,"Major Genre":"Comedy","Total_Director_Profit":1436948978},{"Director":"Carlos Saldanha","Genre_Profit":1373585223,"Major Genre":"Adventure","Total_Director_Profit":1373585223},{"Director":"Andy Wachowski","Genre_Profit":1294511080,"Major Genre":"Action","Total_Director_Profit":1296311080},{"Director":"Andy Wachowski","Genre_Profit":1800000,"Major Genre":"Thriller/Suspense","Total_Director_Profit":1296311080},{"Director":"Ridley Scott","Genre_Profit":534208088,"Major Genre":"Action","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Genre_Profit":457730910,"Major Genre":"Horror","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Genre_Profit":170931086,"Major Genre":"Drama","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Genre_Profit":64129825,"Major Genre":"Adventure","Total_Director_Profit":1288926405},{"Director":"Ridley Scott","Genre_Profit":61926496,"Major Genre":"Thriller/Suspense","Total_Director_Profit":1288926405}],"metadata":{"Director":{"type":"string","semanticType":"Name"},"Genre_Profit":{"type":"number","semanticType":"Number"},"Major Genre":{"type":"string","semanticType":"String"},"Total_Director_Profit":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director, Profit, or Major Genre values\n df = df.dropna(subset=['Director', 'Profit', 'Major Genre'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Aggregate profit by Director and Major Genre\n genre_breakdown = df_filtered.groupby(['Director', 'Major Genre'])['Profit'].sum().reset_index()\n genre_breakdown.columns = ['Director', 'Major Genre', 'Genre_Profit']\n \n # Add total director profit to each row\n genre_breakdown = genre_breakdown.merge(director_profit, on='Director', how='left')\n \n # Sort by total director profit (descending) and then by genre profit (descending)\n transformed_df = genre_breakdown.sort_values(['Total_Director_Profit', 'Genre_Profit'], ascending=[False, False])\n \n return transformed_df\n","source":["movies"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 441226247.0, 533345358.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: nan, 1978111.0, 140689412.0, ..., 100178981.0, 104578578.0, 234119058.0, 320830925.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 15000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 245271.0, 261439.0, 326950.0, 417703.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nshow top 20 directories based on profit breakdown by their movies","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Show top 20 directors based on total profit, with a breakdown of profit by their individual movies\",\n \"display_instruction\": \"Show top 20 **directors** by total **profit** with movie breakdown\",\n \"recommendation\": \"Calculate profit (Worldwide Gross - Production Budget) for each movie, then aggregate by director to find top 20 directors by total profit. Display individual movie profits for each director to show the breakdown.\",\n \"output_fields\": [\"Director\", \"Title\", \"Profit\", \"Total_Director_Profit\"],\n \"chart_type\": \"group_bar\",\n \"chart_encodings\": {\n \"x\": \"Director\",\n \"y\": \"Profit\",\n \"color\": \"Title\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director or Profit values\n df = df.dropna(subset=['Director', 'Profit'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Add total director profit to each movie row\n df_filtered = df_filtered.merge(director_profit, on='Director', how='left')\n \n # Select and order columns\n transformed_df = df_filtered[['Director', 'Title', 'Profit', 'Total_Director_Profit']].copy()\n \n # Sort by total director profit (descending) and then by movie profit (descending)\n transformed_df = transformed_df.sort_values(['Total_Director_Profit', 'Profit'], ascending=[False, False])\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Director Profit Title Total_Director_Profit\n0 Steven Spielberg 860067947 Jurassic Park 7169573056\n1 Steven Spielberg 782410554 ET: The Extra-Terrestrial 7169573056\n2 Steven Spielberg 711686679 The Lost World: Jurassic Park 7169573056\n3 Steven Spielberg 601558145 Indiana Jones and the Kingdom of the Crystal Skull 7169573056\n4 Steven Spielberg 459745532 The War of the Worlds 7169573056\n5 Steven Spielberg 458700000 Jaws 7169573056\n6 Steven Spielberg 426171806 Indiana Jones and the Last Crusade 7169573056\n7 Steven Spielberg 416635085 Saving Private Ryan 7169573056\n8 Steven Spielberg 366800358 Raiders of the Lost Ark 7169573056\n9 Steven Spielberg 317700000 Close Encounters of the Third Kind 7169573056\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"break down by movie genre instead\",\n \"chart_type\": \"Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Director\",\n \"y\": \"Profit\",\n \"color\": \"Title\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Show top 20 directors based on total profit, with a breakdown by the major genre of their movies instead of individual movie titles. This will show how each director's profit is distributed across different genres.\",\n \"display_instruction\": \"Show top 20 **directors** by total **profit** with **genre** breakdown\",\n \"output_fields\": [\"Director\", \"Major Genre\", \"Genre_Profit\", \"Total_Director_Profit\"],\n \"chart_encodings\": {\n \"x\": \"Director\",\n \"y\": \"Genre_Profit\",\n \"color\": \"Major Genre\"\n },\n \"reason\": \"The user wants to change the breakdown from individual movies to movie genres. Instead of showing profit by Title, we now aggregate profit by Major Genre for each director. The chart_encodings are updated to use 'Major Genre' for color instead of 'Title', and y-axis now shows 'Genre_Profit' (aggregated by genre) instead of individual movie profit.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director, Profit, or Major Genre values\n df = df.dropna(subset=['Director', 'Profit', 'Major Genre'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Aggregate profit by Director and Major Genre\n genre_breakdown = df_filtered.groupby(['Director', 'Major Genre'])['Profit'].sum().reset_index()\n genre_breakdown.columns = ['Director', 'Major Genre', 'Genre_Profit']\n \n # Add total director profit to each row\n genre_breakdown = genre_breakdown.merge(director_profit, on='Director', how='left')\n \n # Sort by total director profit (descending) and then by genre profit (descending)\n transformed_df = genre_breakdown.sort_values(['Total_Director_Profit', 'Genre_Profit'], ascending=[False, False])\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-770727","sourceTableIds":["movies"],"instruction":"break down by movie genre instead","displayInstruction":"Show top 20 **directors** by total **profit** with **genre** breakdown","chart":{"id":"chart-1760743802354","chartType":"Bar Chart","encodingMap":{"x":{"fieldID":"original--movies--Director"},"y":{"fieldID":"concept-Profit-1760742653681"},"color":{"fieldID":"original--movies--Title"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-770727","saved":false,"source":"trigger","unread":false},"resultTableId":"table-89"},"explanation":{"agent":"CodeExplanationAgent","code":"- Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Remove movies with missing **Director**, **Profit**, or **Major Genre** information\n- Aggregate the **Profit** for each **Director** to calculate their **Total_Director_Profit**\n- Identify the **top 20 directors** based on their **Total_Director_Profit**\n- Filter the dataset to include only movies made by these **top 20 directors**\n- Group the filtered movies by **Director** and **Major Genre**, summing the **Profit** for each combination to create **Genre_Profit**\n- Merge the **Total_Director_Profit** back into the genre breakdown data\n- Sort the results first by **Total_Director_Profit** (highest to lowest), then by **Genre_Profit** (highest to lowest) within each director","concepts":[{"explanation":"The financial return of a movie, calculated as \\( \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\). This represents the net revenue after accounting for production costs.","field":"Profit"},{"explanation":"The cumulative profit generated by all movies directed by a specific director. This metric aggregates the Profit across all films in their portfolio to measure overall financial success.","field":"Total_Director_Profit"},{"explanation":"The total profit generated by a director within a specific Major Genre. This breaks down a director's Total_Director_Profit by genre category, showing which genres contribute most to their financial success.","field":"Genre_Profit"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., nan, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 7166365.0, 33619971.0, 140689412.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 15000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., nan, nan, 212985.0, 411088.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director, Profit, or Major Genre values\n df = df.dropna(subset=['Director', 'Profit', 'Major Genre'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Aggregate profit by Director and Major Genre\n genre_breakdown = df_filtered.groupby(['Director', 'Major Genre'])['Profit'].sum().reset_index()\n genre_breakdown.columns = ['Director', 'Major Genre', 'Genre_Profit']\n \n # Add total director profit to each row\n genre_breakdown = genre_breakdown.merge(director_profit, on='Director', how='left')\n \n # Sort by total director profit (descending) and then by genre profit (descending)\n transformed_df = genre_breakdown.sort_values(['Total_Director_Profit', 'Genre_Profit'], ascending=[False, False])\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Remove movies with missing **Director**, **Profit**, or **Major Genre** information\n- Aggregate the **Profit** for each **Director** to calculate their **Total_Director_Profit**\n- Identify the **top 20 directors** based on their **Total_Director_Profit**\n- Filter the dataset to include only movies made by these **top 20 directors**\n- Group the filtered movies by **Director** and **Major Genre**, summing the **Profit** for each combination to create **Genre_Profit**\n- Merge the **Total_Director_Profit** back into the genre breakdown data\n- Sort the results first by **Total_Director_Profit** (highest to lowest), then by **Genre_Profit** (highest to lowest) within each director\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"The financial return of a movie, calculated as \\\\( \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\). This represents the net revenue after accounting for production costs.\"\n },\n {\n \"field\": \"Total_Director_Profit\",\n \"explanation\": \"The cumulative profit generated by all movies directed by a specific director. This metric aggregates the Profit across all films in their portfolio to measure overall financial success.\"\n },\n {\n \"field\": \"Genre_Profit\",\n \"explanation\": \"The total profit generated by a director within a specific Major Genre. This breaks down a director's Total_Director_Profit by genre category, showing which genres contribute most to their financial success.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-456490","displayId":"movie-ratings","names":["IMDB Rating","Production Budget","Rotten Tomatoes Rating","Title"],"rows":[{"IMDB Rating":6.1,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"The Land Girls"},{"IMDB Rating":6.9,"Production Budget":300000,"Rotten Tomatoes Rating":null,"Title":"First Love, Last Rites"},{"IMDB Rating":6.8,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"I Married a Strange Person"},{"IMDB Rating":null,"Production Budget":300000,"Rotten Tomatoes Rating":13,"Title":"Let's Talk About Sex"},{"IMDB Rating":3.4,"Production Budget":1000000,"Rotten Tomatoes Rating":62,"Title":"Slam"},{"IMDB Rating":7.7,"Production Budget":6000,"Rotten Tomatoes Rating":null,"Title":"Following"},{"IMDB Rating":3.8,"Production Budget":1600000,"Rotten Tomatoes Rating":null,"Title":"Foolish"},{"IMDB Rating":5.8,"Production Budget":40000000,"Rotten Tomatoes Rating":25,"Title":"Pirates"},{"IMDB Rating":7,"Production Budget":6000000,"Rotten Tomatoes Rating":86,"Title":"Duel in the Sun"},{"IMDB Rating":7,"Production Budget":1000000,"Rotten Tomatoes Rating":81,"Title":"Tom Jones"},{"IMDB Rating":7.5,"Production Budget":10000000,"Rotten Tomatoes Rating":84,"Title":"Oliver!"},{"IMDB Rating":8.4,"Production Budget":2000000,"Rotten Tomatoes Rating":97,"Title":"To Kill A Mockingbird"},{"IMDB Rating":6.8,"Production Budget":100000,"Rotten Tomatoes Rating":87,"Title":"Hollywood Shuffle"},{"IMDB Rating":7,"Production Budget":5200000,"Rotten Tomatoes Rating":null,"Title":"Wilson"},{"IMDB Rating":6.1,"Production Budget":22000000,"Rotten Tomatoes Rating":null,"Title":"Darling Lili"},{"IMDB Rating":2.5,"Production Budget":13500000,"Rotten Tomatoes Rating":90,"Title":"The Ten Commandments"},{"IMDB Rating":8.9,"Production Budget":340000,"Rotten Tomatoes Rating":null,"Title":"12 Angry Men"},{"IMDB Rating":8.1,"Production Budget":29000000,"Rotten Tomatoes Rating":null,"Title":"Twelve Monkeys"},{"IMDB Rating":7,"Production Budget":4000000,"Rotten Tomatoes Rating":57,"Title":1776},{"IMDB Rating":5.6,"Production Budget":32000000,"Rotten Tomatoes Rating":33,"Title":1941},{"IMDB Rating":6.3,"Production Budget":1900000,"Rotten Tomatoes Rating":null,"Title":"Chacun sa nuit"},{"IMDB Rating":8.4,"Production Budget":10500000,"Rotten Tomatoes Rating":96,"Title":"2001: A Space Odyssey"},{"IMDB Rating":null,"Production Budget":5000000,"Rotten Tomatoes Rating":92,"Title":"20,000 Leagues Under the Sea"},{"IMDB Rating":6.9,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"24 7: Twenty Four Seven"},{"IMDB Rating":7.1,"Production Budget":500000,"Rotten Tomatoes Rating":77,"Title":"Twin Falls Idaho"},{"IMDB Rating":5.7,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"3 Men and a Baby"},{"IMDB Rating":3.2,"Production Budget":20000000,"Rotten Tomatoes Rating":17,"Title":"3 Ninjas Kick Back"},{"IMDB Rating":6,"Production Budget":1500000,"Rotten Tomatoes Rating":null,"Title":"Forty Shades of Blue"},{"IMDB Rating":7.7,"Production Budget":439000,"Rotten Tomatoes Rating":95,"Title":"42nd Street"},{"IMDB Rating":6.4,"Production Budget":4000000,"Rotten Tomatoes Rating":14,"Title":"Four Rooms"},{"IMDB Rating":7,"Production Budget":6500000,"Rotten Tomatoes Rating":71,"Title":"The Four Seasons"},{"IMDB Rating":7.1,"Production Budget":4500000,"Rotten Tomatoes Rating":96,"Title":"Four Weddings and a Funeral"},{"IMDB Rating":7.4,"Production Budget":350000,"Rotten Tomatoes Rating":97,"Title":"51 Birch Street"},{"IMDB Rating":6.8,"Production Budget":17000000,"Rotten Tomatoes Rating":57,"Title":"55 Days at Peking"},{"IMDB Rating":5.4,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Nine 1/2 Weeks"},{"IMDB Rating":4.9,"Production Budget":113500000,"Rotten Tomatoes Rating":null,"Title":"AstÈrix aux Jeux Olympiques"},{"IMDB Rating":7.6,"Production Budget":70000000,"Rotten Tomatoes Rating":88,"Title":"The Abyss"},{"IMDB Rating":4.6,"Production Budget":7000000,"Rotten Tomatoes Rating":10,"Title":"Action Jackson"},{"IMDB Rating":6.6,"Production Budget":12000000,"Rotten Tomatoes Rating":49,"Title":"Ace Ventura: Pet Detective"},{"IMDB Rating":5.6,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Ace Ventura: When Nature Calls"},{"IMDB Rating":null,"Production Budget":5000000,"Rotten Tomatoes Rating":31,"Title":"April Fool's Day"},{"IMDB Rating":5.7,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Among Giants"},{"IMDB Rating":7.1,"Production Budget":3768785,"Rotten Tomatoes Rating":100,"Title":"Annie Get Your Gun"},{"IMDB Rating":6.7,"Production Budget":3000000,"Rotten Tomatoes Rating":20,"Title":"Alice in Wonderland"},{"IMDB Rating":7.3,"Production Budget":24000000,"Rotten Tomatoes Rating":null,"Title":"The Princess and the Cobbler"},{"IMDB Rating":5.9,"Production Budget":12000000,"Rotten Tomatoes Rating":54,"Title":"The Alamo"},{"IMDB Rating":3.2,"Production Budget":32000000,"Rotten Tomatoes Rating":71,"Title":"Alive"},{"IMDB Rating":7.4,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"Amen"},{"IMDB Rating":7.6,"Production Budget":777000,"Rotten Tomatoes Rating":97,"Title":"American Graffiti"},{"IMDB Rating":3.7,"Production Budget":350000,"Rotten Tomatoes Rating":null,"Title":"American Ninja 2: The Confrontation"},{"IMDB Rating":6.8,"Production Budget":62000000,"Rotten Tomatoes Rating":90,"Title":"The American President"},{"IMDB Rating":8.2,"Production Budget":4000000,"Rotten Tomatoes Rating":98,"Title":"Annie Hall"},{"IMDB Rating":6.1,"Production Budget":2500000,"Rotten Tomatoes Rating":null,"Title":"Anatomie"},{"IMDB Rating":5.8,"Production Budget":6500000,"Rotten Tomatoes Rating":62,"Title":"The Adventures of Huck Finn"},{"IMDB Rating":8.4,"Production Budget":3000000,"Rotten Tomatoes Rating":91,"Title":"The Apartment"},{"IMDB Rating":8.6,"Production Budget":31500000,"Rotten Tomatoes Rating":98,"Title":"Apocalypse Now"},{"IMDB Rating":6.2,"Production Budget":31000000,"Rotten Tomatoes Rating":85,"Title":"Arachnophobia"},{"IMDB Rating":6.4,"Production Budget":16500000,"Rotten Tomatoes Rating":null,"Title":"Arn - Tempelriddaren"},{"IMDB Rating":5.1,"Production Budget":600000,"Rotten Tomatoes Rating":null,"Title":"Arnolds Park"},{"IMDB Rating":5.6,"Production Budget":150000,"Rotten Tomatoes Rating":null,"Title":"Sweet Sweetback's Baad Asssss Song"},{"IMDB Rating":4.4,"Production Budget":989000,"Rotten Tomatoes Rating":17,"Title":"And Then Came Love"},{"IMDB Rating":5.6,"Production Budget":6000000,"Rotten Tomatoes Rating":73,"Title":"Around the World in 80 Days"},{"IMDB Rating":5.7,"Production Budget":9000000,"Rotten Tomatoes Rating":74,"Title":"Barbarella"},{"IMDB Rating":8.1,"Production Budget":11000000,"Rotten Tomatoes Rating":94,"Title":"Barry Lyndon"},{"IMDB Rating":5.4,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Barbarians, The"},{"IMDB Rating":7.3,"Production Budget":30000000,"Rotten Tomatoes Rating":98,"Title":"Babe"},{"IMDB Rating":5,"Production Budget":50000000,"Rotten Tomatoes Rating":21,"Title":"Baby's Day Out"},{"IMDB Rating":7.7,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"Bound by Honor"},{"IMDB Rating":6.9,"Production Budget":8000000,"Rotten Tomatoes Rating":67,"Title":"Bon Cop, Bad Cop"},{"IMDB Rating":8.4,"Production Budget":19000000,"Rotten Tomatoes Rating":96,"Title":"Back to the Future"},{"IMDB Rating":7.5,"Production Budget":40000000,"Rotten Tomatoes Rating":64,"Title":"Back to the Future Part II"},{"IMDB Rating":7.1,"Production Budget":40000000,"Rotten Tomatoes Rating":71,"Title":"Back to the Future Part III"},{"IMDB Rating":8.2,"Production Budget":6000000,"Rotten Tomatoes Rating":90,"Title":"Butch Cassidy and the Sundance Kid"},{"IMDB Rating":6.6,"Production Budget":23000000,"Rotten Tomatoes Rating":39,"Title":"Bad Boys"},{"IMDB Rating":6.4,"Production Budget":10000000,"Rotten Tomatoes Rating":84,"Title":"Body Double"},{"IMDB Rating":null,"Production Budget":210000,"Rotten Tomatoes Rating":90,"Title":"The Beast from 20,000 Fathoms"},{"IMDB Rating":3.3,"Production Budget":6000000,"Rotten Tomatoes Rating":17,"Title":"Beastmaster 2: Through the Portal of Time"},{"IMDB Rating":5.7,"Production Budget":5000000,"Rotten Tomatoes Rating":50,"Title":"The Beastmaster"},{"IMDB Rating":8.2,"Production Budget":3900000,"Rotten Tomatoes Rating":null,"Title":"Ben-Hur"},{"IMDB Rating":8.2,"Production Budget":15000000,"Rotten Tomatoes Rating":91,"Title":"Ben-Hur"},{"IMDB Rating":5.8,"Production Budget":500000,"Rotten Tomatoes Rating":83,"Title":"Benji"},{"IMDB Rating":8,"Production Budget":2500000,"Rotten Tomatoes Rating":100,"Title":"Before Sunrise"},{"IMDB Rating":3.4,"Production Budget":20000000,"Rotten Tomatoes Rating":93,"Title":"Beauty and the Beast"},{"IMDB Rating":8.2,"Production Budget":2100000,"Rotten Tomatoes Rating":97,"Title":"The Best Years of Our Lives"},{"IMDB Rating":3.2,"Production Budget":3000000,"Rotten Tomatoes Rating":23,"Title":"My Big Fat Independent Movie"},{"IMDB Rating":5,"Production Budget":1800000,"Rotten Tomatoes Rating":38,"Title":"Battle for the Planet of the Apes"},{"IMDB Rating":4.8,"Production Budget":32000000,"Rotten Tomatoes Rating":40,"Title":"Bogus"},{"IMDB Rating":7.3,"Production Budget":15000000,"Rotten Tomatoes Rating":83,"Title":"Beverly Hills Cop"},{"IMDB Rating":6.1,"Production Budget":20000000,"Rotten Tomatoes Rating":46,"Title":"Beverly Hills Cop II"},{"IMDB Rating":5,"Production Budget":50000000,"Rotten Tomatoes Rating":10,"Title":"Beverly Hills Cop III"},{"IMDB Rating":5.6,"Production Budget":20000000,"Rotten Tomatoes Rating":42,"Title":"The Black Hole"},{"IMDB Rating":6.1,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Bathory"},{"IMDB Rating":7.2,"Production Budget":18000000,"Rotten Tomatoes Rating":96,"Title":"Big"},{"IMDB Rating":8.4,"Production Budget":245000,"Rotten Tomatoes Rating":100,"Title":"The Big Parade"},{"IMDB Rating":7.8,"Production Budget":6500000,"Rotten Tomatoes Rating":98,"Title":"Boyz n the Hood"},{"IMDB Rating":4.3,"Production Budget":11000000,"Rotten Tomatoes Rating":null,"Title":"Return to the Blue Lagoon"},{"IMDB Rating":6.8,"Production Budget":25000000,"Rotten Tomatoes Rating":61,"Title":"Bright Lights, Big City"},{"IMDB Rating":4.9,"Production Budget":1200000,"Rotten Tomatoes Rating":null,"Title":"The Blue Bird"},{"IMDB Rating":6.2,"Production Budget":10400000,"Rotten Tomatoes Rating":44,"Title":"The Blue Butterfly"},{"IMDB Rating":8.3,"Production Budget":28000000,"Rotten Tomatoes Rating":92,"Title":"Blade Runner"},{"IMDB Rating":6.2,"Production Budget":1500000,"Rotten Tomatoes Rating":null,"Title":"Bloodsport"},{"IMDB Rating":7.9,"Production Budget":27000000,"Rotten Tomatoes Rating":84,"Title":"The Blues Brothers"},{"IMDB Rating":7.1,"Production Budget":18000000,"Rotten Tomatoes Rating":89,"Title":"Blow Out"},{"IMDB Rating":7.3,"Production Budget":5500000,"Rotten Tomatoes Rating":null,"Title":"De battre mon coeur s'est arrÍtÈ"},{"IMDB Rating":6.7,"Production Budget":379000,"Rotten Tomatoes Rating":38,"Title":"The Broadway Melody"},{"IMDB Rating":7.1,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Boom Town"},{"IMDB Rating":7.4,"Production Budget":4500000,"Rotten Tomatoes Rating":88,"Title":"Bound"},{"IMDB Rating":6.3,"Production Budget":10000,"Rotten Tomatoes Rating":null,"Title":"Bang"},{"IMDB Rating":7.1,"Production Budget":2000000,"Rotten Tomatoes Rating":89,"Title":"Bananas"},{"IMDB Rating":5.8,"Production Budget":20000000,"Rotten Tomatoes Rating":58,"Title":"Bill & Ted's Bogus Journey"},{"IMDB Rating":7.1,"Production Budget":110000,"Rotten Tomatoes Rating":100,"Title":"The Birth of a Nation"},{"IMDB Rating":7.3,"Production Budget":3716946,"Rotten Tomatoes Rating":92,"Title":"The Ballad of Cable Hogue"},{"IMDB Rating":6.2,"Production Budget":7700000,"Rotten Tomatoes Rating":null,"Title":"The Blood of Heroes"},{"IMDB Rating":7.6,"Production Budget":120000,"Rotten Tomatoes Rating":71,"Title":"The Blood of My Brother: A Story of Death in Iraq"},{"IMDB Rating":5.9,"Production Budget":42000000,"Rotten Tomatoes Rating":37,"Title":"Boomerang"},{"IMDB Rating":8.4,"Production Budget":3000000,"Rotten Tomatoes Rating":95,"Title":"The Bridge on the River Kwai"},{"IMDB Rating":7.2,"Production Budget":14000000,"Rotten Tomatoes Rating":89,"Title":"Born on the Fourth of July"},{"IMDB Rating":6.7,"Production Budget":3000000,"Rotten Tomatoes Rating":69,"Title":"Basquiat"},{"IMDB Rating":4.1,"Production Budget":30000000,"Rotten Tomatoes Rating":57,"Title":"Black Rain"},{"IMDB Rating":7.2,"Production Budget":5000000,"Rotten Tomatoes Rating":79,"Title":"Bottle Rocket"},{"IMDB Rating":7.6,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Braindead"},{"IMDB Rating":7.2,"Production Budget":22000000,"Rotten Tomatoes Rating":90,"Title":"The Bridges of Madison County"},{"IMDB Rating":6.4,"Production Budget":25000,"Rotten Tomatoes Rating":91,"Title":"The Brothers McMullen"},{"IMDB Rating":6.4,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Dracula"},{"IMDB Rating":5.8,"Production Budget":65000000,"Rotten Tomatoes Rating":55,"Title":"Broken Arrow"},{"IMDB Rating":6.3,"Production Budget":15000000,"Rotten Tomatoes Rating":64,"Title":"Brainstorm"},{"IMDB Rating":8.4,"Production Budget":72000000,"Rotten Tomatoes Rating":77,"Title":"Braveheart"},{"IMDB Rating":4.4,"Production Budget":42000000,"Rotten Tomatoes Rating":null,"Title":"Les BronzÈs 3: amis pour la vie"},{"IMDB Rating":8,"Production Budget":15000000,"Rotten Tomatoes Rating":98,"Title":"Brazil"},{"IMDB Rating":7.8,"Production Budget":2600000,"Rotten Tomatoes Rating":89,"Title":"Blazing Saddles"},{"IMDB Rating":6.3,"Production Budget":1300000,"Rotten Tomatoes Rating":null,"Title":"The Basket"},{"IMDB Rating":6.2,"Production Budget":2361000,"Rotten Tomatoes Rating":null,"Title":"Bathing Beauty"},{"IMDB Rating":6.7,"Production Budget":10000000,"Rotten Tomatoes Rating":81,"Title":"Bill & Ted's Excellent Adventure"},{"IMDB Rating":7.3,"Production Budget":26000000,"Rotten Tomatoes Rating":67,"Title":"A Bridge Too Far"},{"IMDB Rating":7.3,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Beetle Juice"},{"IMDB Rating":6.9,"Production Budget":80000000,"Rotten Tomatoes Rating":78,"Title":"Batman Returns"},{"IMDB Rating":5.4,"Production Budget":100000000,"Rotten Tomatoes Rating":43,"Title":"Batman Forever"},{"IMDB Rating":7.6,"Production Budget":35000000,"Rotten Tomatoes Rating":71,"Title":"Batman"},{"IMDB Rating":5.3,"Production Budget":7000000,"Rotten Tomatoes Rating":32,"Title":"Buffy the Vampire Slayer"},{"IMDB Rating":7,"Production Budget":16000000,"Rotten Tomatoes Rating":null,"Title":"Bienvenue chez les Ch'tis"},{"IMDB Rating":5.7,"Production Budget":1000000,"Rotten Tomatoes Rating":68,"Title":"Beyond the Valley of the Dolls"},{"IMDB Rating":6.4,"Production Budget":600000,"Rotten Tomatoes Rating":null,"Title":"Broken Vessels"},{"IMDB Rating":7,"Production Budget":12000000,"Rotten Tomatoes Rating":65,"Title":"The Boys from Brazil"},{"IMDB Rating":7,"Production Budget":200000,"Rotten Tomatoes Rating":null,"Title":"The Business of Fancy Dancing"},{"IMDB Rating":7.3,"Production Budget":6000000,"Rotten Tomatoes Rating":75,"Title":"Caddyshack"},{"IMDB Rating":7.3,"Production Budget":35000000,"Rotten Tomatoes Rating":76,"Title":"Cape Fear"},{"IMDB Rating":6.8,"Production Budget":62000000,"Rotten Tomatoes Rating":78,"Title":"Clear and Present Danger"},{"IMDB Rating":7.4,"Production Budget":1800000,"Rotten Tomatoes Rating":90,"Title":"Carrie"},{"IMDB Rating":8,"Production Budget":12000000,"Rotten Tomatoes Rating":30,"Title":"Casino Royale"},{"IMDB Rating":6,"Production Budget":4600000,"Rotten Tomatoes Rating":null,"Title":"Camping Sauvage"},{"IMDB Rating":6.3,"Production Budget":48000000,"Rotten Tomatoes Rating":74,"Title":"The Cotton Club"},{"IMDB Rating":7.1,"Production Budget":600000,"Rotten Tomatoes Rating":60,"Title":"Crop Circles: Quest for Truth"},{"IMDB Rating":7.8,"Production Budget":20000000,"Rotten Tomatoes Rating":95,"Title":"Close Encounters of the Third Kind"},{"IMDB Rating":5.8,"Production Budget":47000000,"Rotten Tomatoes Rating":52,"Title":"The Cable Guy"},{"IMDB Rating":4.6,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Chocolate: Deep Dark Secrets"},{"IMDB Rating":6.3,"Production Budget":9000000,"Rotten Tomatoes Rating":70,"Title":"Child's Play"},{"IMDB Rating":5.1,"Production Budget":13000000,"Rotten Tomatoes Rating":38,"Title":"Child's Play 2"},{"IMDB Rating":5.2,"Production Budget":55000000,"Rotten Tomatoes Rating":13,"Title":"Chain Reaction"},{"IMDB Rating":5.8,"Production Budget":950000,"Rotten Tomatoes Rating":null,"Title":"Charly"},{"IMDB Rating":7.3,"Production Budget":5500000,"Rotten Tomatoes Rating":86,"Title":"Chariots of Fire"},{"IMDB Rating":8,"Production Budget":3250000,"Rotten Tomatoes Rating":88,"Title":"A Christmas Story"},{"IMDB Rating":8,"Production Budget":3000000,"Rotten Tomatoes Rating":100,"Title":"Cat on a Hot Tin Roof"},{"IMDB Rating":5,"Production Budget":1250000,"Rotten Tomatoes Rating":null,"Title":"C.H.U.D."},{"IMDB Rating":6.5,"Production Budget":14000000,"Rotten Tomatoes Rating":75,"Title":"Crooklyn"},{"IMDB Rating":8.1,"Production Budget":1300000,"Rotten Tomatoes Rating":null,"Title":"Festen"},{"IMDB Rating":6.8,"Production Budget":36000000,"Rotten Tomatoes Rating":40,"Title":"Cleopatra"},{"IMDB Rating":6.2,"Production Budget":65000000,"Rotten Tomatoes Rating":82,"Title":"Cliffhanger"},{"IMDB Rating":5.1,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"The Californians"},{"IMDB Rating":6.5,"Production Budget":45000000,"Rotten Tomatoes Rating":80,"Title":"The Client"},{"IMDB Rating":3.4,"Production Budget":160000,"Rotten Tomatoes Rating":null,"Title":"The Calling"},{"IMDB Rating":6.7,"Production Budget":13700000,"Rotten Tomatoes Rating":83,"Title":"Clueless"},{"IMDB Rating":7.7,"Production Budget":15000000,"Rotten Tomatoes Rating":88,"Title":"The Color Purple"},{"IMDB Rating":7.9,"Production Budget":27000,"Rotten Tomatoes Rating":88,"Title":"Clerks"},{"IMDB Rating":8,"Production Budget":2900000,"Rotten Tomatoes Rating":null,"Title":"Central do Brasil"},{"IMDB Rating":5.9,"Production Budget":15000000,"Rotten Tomatoes Rating":65,"Title":"Clash of the Titans"},{"IMDB Rating":5.9,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Clockwatchers"},{"IMDB Rating":4.5,"Production Budget":10000000,"Rotten Tomatoes Rating":71,"Title":"Commando"},{"IMDB Rating":6.9,"Production Budget":10000000,"Rotten Tomatoes Rating":91,"Title":"The Color of Money"},{"IMDB Rating":5.1,"Production Budget":2900000,"Rotten Tomatoes Rating":92,"Title":"Cinderella"},{"IMDB Rating":4.6,"Production Budget":50000000,"Rotten Tomatoes Rating":21,"Title":"Congo"},{"IMDB Rating":6.8,"Production Budget":20000000,"Rotten Tomatoes Rating":76,"Title":"Conan the Barbarian"},{"IMDB Rating":5.4,"Production Budget":18000000,"Rotten Tomatoes Rating":29,"Title":"Conan the Destroyer"},{"IMDB Rating":6.3,"Production Budget":3250000,"Rotten Tomatoes Rating":null,"Title":"Class of 1984"},{"IMDB Rating":4.9,"Production Budget":15000000,"Rotten Tomatoes Rating":13,"Title":"The Clan of the Cave Bear"},{"IMDB Rating":8,"Production Budget":180000,"Rotten Tomatoes Rating":null,"Title":"Bacheha-Ye aseman"},{"IMDB Rating":7.3,"Production Budget":3000000,"Rotten Tomatoes Rating":81,"Title":"Coming Home"},{"IMDB Rating":7.6,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Nanjing! Nanjing!"},{"IMDB Rating":6.5,"Production Budget":14000000,"Rotten Tomatoes Rating":73,"Title":"Cool Runnings"},{"IMDB Rating":5.8,"Production Budget":1700000,"Rotten Tomatoes Rating":44,"Title":"Conquest of the Planet of the Apes"},{"IMDB Rating":7.4,"Production Budget":10000,"Rotten Tomatoes Rating":null,"Title":"Cure"},{"IMDB Rating":6.5,"Production Budget":5000000,"Rotten Tomatoes Rating":88,"Title":"Crocodile Dundee"},{"IMDB Rating":7.3,"Production Budget":10000,"Rotten Tomatoes Rating":null,"Title":"Dayereh"},{"IMDB Rating":7.8,"Production Budget":4500000,"Rotten Tomatoes Rating":null,"Title":"Karakter"},{"IMDB Rating":6.5,"Production Budget":8000000,"Rotten Tomatoes Rating":67,"Title":"Creepshow"},{"IMDB Rating":5.4,"Production Budget":3500000,"Rotten Tomatoes Rating":26,"Title":"Creepshow 2"},{"IMDB Rating":7.3,"Production Budget":4000000,"Rotten Tomatoes Rating":100,"Title":"The Crying Game"},{"IMDB Rating":7.2,"Production Budget":55000000,"Rotten Tomatoes Rating":86,"Title":"Crimson Tide"},{"IMDB Rating":5.8,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"Caravans"},{"IMDB Rating":7.6,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Fengkuang de Shitou"},{"IMDB Rating":8.8,"Production Budget":950000,"Rotten Tomatoes Rating":97,"Title":"Casablanca"},{"IMDB Rating":8.1,"Production Budget":52000000,"Rotten Tomatoes Rating":81,"Title":"Casino"},{"IMDB Rating":5.7,"Production Budget":55000000,"Rotten Tomatoes Rating":41,"Title":"Casper"},{"IMDB Rating":3.5,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Can't Stop the Music"},{"IMDB Rating":7.1,"Production Budget":18000000,"Rotten Tomatoes Rating":87,"Title":"Catch-22"},{"IMDB Rating":6.1,"Production Budget":40000000,"Rotten Tomatoes Rating":55,"Title":"City Hall"},{"IMDB Rating":5.3,"Production Budget":92000000,"Rotten Tomatoes Rating":45,"Title":"Cutthroat Island"},{"IMDB Rating":6.8,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"La femme de chambre du Titanic"},{"IMDB Rating":5.9,"Production Budget":134000,"Rotten Tomatoes Rating":91,"Title":"Cat People"},{"IMDB Rating":6.6,"Production Budget":46000000,"Rotten Tomatoes Rating":85,"Title":"Courage Under Fire"},{"IMDB Rating":8.8,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"C'era una volta il West"},{"IMDB Rating":8.1,"Production Budget":1600000,"Rotten Tomatoes Rating":98,"Title":"The Conversation"},{"IMDB Rating":6,"Production Budget":7000,"Rotten Tomatoes Rating":null,"Title":"Cavite"},{"IMDB Rating":6.5,"Production Budget":20000000,"Rotten Tomatoes Rating":75,"Title":"Copycat"},{"IMDB Rating":5.3,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Dark Angel"},{"IMDB Rating":4.3,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Boot, Das"},{"IMDB Rating":7,"Production Budget":7000000,"Rotten Tomatoes Rating":61,"Title":"Desperado"},{"IMDB Rating":7.2,"Production Budget":16000000,"Rotten Tomatoes Rating":null,"Title":"Dumb & Dumber"},{"IMDB Rating":6.7,"Production Budget":7200000,"Rotten Tomatoes Rating":67,"Title":"Diamonds Are Forever"},{"IMDB Rating":5.7,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"The Dark Half"},{"IMDB Rating":6.3,"Production Budget":400000,"Rotten Tomatoes Rating":null,"Title":"The Dark Hours"},{"IMDB Rating":5.6,"Production Budget":115000000,"Rotten Tomatoes Rating":28,"Title":"Dante's Peak"},{"IMDB Rating":5.4,"Production Budget":80000000,"Rotten Tomatoes Rating":22,"Title":"Daylight"},{"IMDB Rating":5.9,"Production Budget":47000000,"Rotten Tomatoes Rating":65,"Title":"Dick Tracy"},{"IMDB Rating":4.4,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Decoys"},{"IMDB Rating":7.4,"Production Budget":1500000,"Rotten Tomatoes Rating":null,"Title":"Dawn of the Dead"},{"IMDB Rating":6.6,"Production Budget":30000000,"Rotten Tomatoes Rating":59,"Title":"The Addams Family"},{"IMDB Rating":6,"Production Budget":55000000,"Rotten Tomatoes Rating":53,"Title":"Death Becomes Her"},{"IMDB Rating":3.8,"Production Budget":1300000,"Rotten Tomatoes Rating":null,"Title":"Def-Con 4"},{"IMDB Rating":7.8,"Production Budget":16400000,"Rotten Tomatoes Rating":86,"Title":"Dead Poets' Society"},{"IMDB Rating":5.5,"Production Budget":1200000,"Rotten Tomatoes Rating":94,"Title":"The Day the Earth Stood Still"},{"IMDB Rating":5.2,"Production Budget":25000,"Rotten Tomatoes Rating":null,"Title":"Deep Throat"},{"IMDB Rating":7.3,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"The Dead Zone"},{"IMDB Rating":7,"Production Budget":70000000,"Rotten Tomatoes Rating":null,"Title":"Die Hard 2"},{"IMDB Rating":7.4,"Production Budget":90000000,"Rotten Tomatoes Rating":null,"Title":"Die Hard: With a Vengeance"},{"IMDB Rating":6.2,"Production Budget":57000000,"Rotten Tomatoes Rating":50,"Title":"Dragonheart"},{"IMDB Rating":7.3,"Production Budget":28000000,"Rotten Tomatoes Rating":94,"Title":"Die Hard"},{"IMDB Rating":7.1,"Production Budget":5000000,"Rotten Tomatoes Rating":96,"Title":"Diner"},{"IMDB Rating":5,"Production Budget":1600000,"Rotten Tomatoes Rating":null,"Title":"Dil Jo Bhi Kahey..."},{"IMDB Rating":6.6,"Production Budget":25000000,"Rotten Tomatoes Rating":73,"Title":"Don Juan DeMarco"},{"IMDB Rating":6.4,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Tales from the Crypt: Demon Knight"},{"IMDB Rating":4.7,"Production Budget":17000000,"Rotten Tomatoes Rating":null,"Title":"Damnation Alley"},{"IMDB Rating":7.6,"Production Budget":11000000,"Rotten Tomatoes Rating":94,"Title":"Dead Man Walking"},{"IMDB Rating":8,"Production Budget":19000000,"Rotten Tomatoes Rating":76,"Title":"Dances with Wolves"},{"IMDB Rating":7.7,"Production Budget":14000000,"Rotten Tomatoes Rating":93,"Title":"Dangerous Liaisons"},{"IMDB Rating":6.6,"Production Budget":2686000,"Rotten Tomatoes Rating":60,"Title":"Donovan's Reef"},{"IMDB Rating":5.9,"Production Budget":9000000,"Rotten Tomatoes Rating":null,"Title":"Due occhi diabolici"},{"IMDB Rating":4.7,"Production Budget":16000000,"Rotten Tomatoes Rating":8,"Title":"Double Impact"},{"IMDB Rating":7,"Production Budget":40000000,"Rotten Tomatoes Rating":57,"Title":"The Doors"},{"IMDB Rating":4.5,"Production Budget":3500000,"Rotten Tomatoes Rating":78,"Title":"Day of the Dead"},{"IMDB Rating":5.4,"Production Budget":60000000,"Rotten Tomatoes Rating":40,"Title":"Days of Thunder"},{"IMDB Rating":7,"Production Budget":1100000,"Rotten Tomatoes Rating":null,"Title":"Dracula: Pages from a Virgin's Diary"},{"IMDB Rating":5.8,"Production Budget":170000,"Rotten Tomatoes Rating":null,"Title":"Dolphin"},{"IMDB Rating":6.1,"Production Budget":300000,"Rotten Tomatoes Rating":84,"Title":"Death Race 2000"},{"IMDB Rating":7.6,"Production Budget":2650000,"Rotten Tomatoes Rating":null,"Title":"The Dress"},{"IMDB Rating":8.2,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"The Deer Hunter"},{"IMDB Rating":6.8,"Production Budget":18000000,"Rotten Tomatoes Rating":82,"Title":"Dragonslayer"},{"IMDB Rating":7.5,"Production Budget":7500000,"Rotten Tomatoes Rating":78,"Title":"Driving Miss Daisy"},{"IMDB Rating":7.1,"Production Budget":6500000,"Rotten Tomatoes Rating":84,"Title":"Dressed to Kill"},{"IMDB Rating":7.9,"Production Budget":6000000,"Rotten Tomatoes Rating":98,"Title":"Do the Right Thing"},{"IMDB Rating":6.5,"Production Budget":45000000,"Rotten Tomatoes Rating":62,"Title":"Dune"},{"IMDB Rating":5.8,"Production Budget":1200000,"Rotten Tomatoes Rating":null,"Title":"Down & Out with the Dolls"},{"IMDB Rating":6.6,"Production Budget":1000000,"Rotten Tomatoes Rating":58,"Title":"Dream With The Fishes"},{"IMDB Rating":8,"Production Budget":11000000,"Rotten Tomatoes Rating":84,"Title":"Doctor Zhivago"},{"IMDB Rating":7.6,"Production Budget":375000,"Rotten Tomatoes Rating":null,"Title":"The Evil Dead"},{"IMDB Rating":7.9,"Production Budget":3500000,"Rotten Tomatoes Rating":null,"Title":"Evil Dead II"},{"IMDB Rating":7.6,"Production Budget":11000000,"Rotten Tomatoes Rating":null,"Title":"Army of Darkness"},{"IMDB Rating":5.6,"Production Budget":1800000,"Rotten Tomatoes Rating":50,"Title":"Ed and his Dead Mother"},{"IMDB Rating":8,"Production Budget":20000000,"Rotten Tomatoes Rating":91,"Title":"Edward Scissorhands"},{"IMDB Rating":8.1,"Production Budget":18000000,"Rotten Tomatoes Rating":91,"Title":"Ed Wood"},{"IMDB Rating":6.2,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"The Egyptian"},{"IMDB Rating":6.8,"Production Budget":20000000,"Rotten Tomatoes Rating":80,"Title":"Everyone Says I Love You"},{"IMDB Rating":8.4,"Production Budget":5000000,"Rotten Tomatoes Rating":91,"Title":"The Elephant Man"},{"IMDB Rating":6.8,"Production Budget":5900000,"Rotten Tomatoes Rating":null,"Title":"Emma"},{"IMDB Rating":7.1,"Production Budget":6000000,"Rotten Tomatoes Rating":82,"Title":"Escape from New York"},{"IMDB Rating":5.3,"Production Budget":50000000,"Rotten Tomatoes Rating":56,"Title":"Escape from L.A."},{"IMDB Rating":6.1,"Production Budget":2500000,"Rotten Tomatoes Rating":78,"Title":"Escape from the Planet of the Apes"},{"IMDB Rating":5.9,"Production Budget":100000000,"Rotten Tomatoes Rating":34,"Title":"Eraser"},{"IMDB Rating":7.4,"Production Budget":100000,"Rotten Tomatoes Rating":90,"Title":"Eraserhead"},{"IMDB Rating":7.9,"Production Budget":10500000,"Rotten Tomatoes Rating":null,"Title":"ET: The Extra-Terrestrial"},{"IMDB Rating":4.7,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"Excessive Force"},{"IMDB Rating":3.5,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"Exorcist II: The Heretic"},{"IMDB Rating":7.1,"Production Budget":1500000,"Rotten Tomatoes Rating":96,"Title":"Exotica"},{"IMDB Rating":6,"Production Budget":5000000,"Rotten Tomatoes Rating":64,"Title":"Force 10 from Navarone"},{"IMDB Rating":6.6,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"A Farewell To Arms"},{"IMDB Rating":6.8,"Production Budget":14000000,"Rotten Tomatoes Rating":81,"Title":"Fatal Attraction"},{"IMDB Rating":6.8,"Production Budget":3000000,"Rotten Tomatoes Rating":95,"Title":"Family Plot"},{"IMDB Rating":5.4,"Production Budget":400000,"Rotten Tomatoes Rating":null,"Title":"Fabled"},{"IMDB Rating":6.7,"Production Budget":1500000,"Rotten Tomatoes Rating":null,"Title":"Fetching Cody"},{"IMDB Rating":7.9,"Production Budget":2200000,"Rotten Tomatoes Rating":98,"Title":"The French Connection"},{"IMDB Rating":7.1,"Production Budget":20000000,"Rotten Tomatoes Rating":63,"Title":"From Dusk Till Dawn"},{"IMDB Rating":5.6,"Production Budget":550000,"Rotten Tomatoes Rating":60,"Title":"Friday the 13th"},{"IMDB Rating":5.5,"Production Budget":2250000,"Rotten Tomatoes Rating":14,"Title":"Friday the 13th Part 3"},{"IMDB Rating":4.6,"Production Budget":2800000,"Rotten Tomatoes Rating":null,"Title":"Friday the 13th Part VII: The New Blood"},{"IMDB Rating":3.9,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Friday the 13th Part VIII: Jason Takes Manhattan"},{"IMDB Rating":4.1,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Jason Goes to Hell: The Final Friday"},{"IMDB Rating":8.2,"Production Budget":600000,"Rotten Tomatoes Rating":null,"Title":"Per qualche dollaro in pi˘"},{"IMDB Rating":8,"Production Budget":200000,"Rotten Tomatoes Rating":null,"Title":"Per un pugno di dollari"},{"IMDB Rating":6.6,"Production Budget":19000000,"Rotten Tomatoes Rating":100,"Title":"The Fall of the Roman Empire"},{"IMDB Rating":5.5,"Production Budget":1250000,"Rotten Tomatoes Rating":33,"Title":"Friday the 13th Part 2"},{"IMDB Rating":5.7,"Production Budget":13000000,"Rotten Tomatoes Rating":7,"Title":"Faithful"},{"IMDB Rating":6.6,"Production Budget":50000000,"Rotten Tomatoes Rating":13,"Title":"Fair Game"},{"IMDB Rating":7.6,"Production Budget":33000000,"Rotten Tomatoes Rating":83,"Title":"A Few Good Men"},{"IMDB Rating":7.8,"Production Budget":44000000,"Rotten Tomatoes Rating":94,"Title":"The Fugitive"},{"IMDB Rating":7.9,"Production Budget":1650000,"Rotten Tomatoes Rating":86,"Title":"From Here to Eternity"},{"IMDB Rating":6.4,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Shooting Fish"},{"IMDB Rating":6.2,"Production Budget":11000000,"Rotten Tomatoes Rating":null,"Title":"F.I.S.T"},{"IMDB Rating":5.6,"Production Budget":7000000,"Rotten Tomatoes Rating":29,"Title":"Flashdance"},{"IMDB Rating":4.9,"Production Budget":30000000,"Rotten Tomatoes Rating":14,"Title":"Fled"},{"IMDB Rating":6.2,"Production Budget":35000000,"Rotten Tomatoes Rating":81,"Title":"Flash Gordon"},{"IMDB Rating":4.6,"Production Budget":45000000,"Rotten Tomatoes Rating":20,"Title":"The Flintstones"},{"IMDB Rating":5.3,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"Flight of the Intruder"},{"IMDB Rating":6.4,"Production Budget":26000000,"Rotten Tomatoes Rating":52,"Title":"Flatliners"},{"IMDB Rating":null,"Production Budget":6000000,"Rotten Tomatoes Rating":64,"Title":"The Flower of Evil"},{"IMDB Rating":6.1,"Production Budget":30000,"Rotten Tomatoes Rating":null,"Title":"Funny Ha Ha"},{"IMDB Rating":6.4,"Production Budget":12500000,"Rotten Tomatoes Rating":83,"Title":"The Funeral"},{"IMDB Rating":7.8,"Production Budget":2280000,"Rotten Tomatoes Rating":98,"Title":"Fantasia"},{"IMDB Rating":3.3,"Production Budget":1000000,"Rotten Tomatoes Rating":69,"Title":"The Fog"},{"IMDB Rating":8.6,"Production Budget":55000000,"Rotten Tomatoes Rating":70,"Title":"Forrest Gump"},{"IMDB Rating":5.5,"Production Budget":12000000,"Rotten Tomatoes Rating":36,"Title":"Fortress"},{"IMDB Rating":7.7,"Production Budget":9000000,"Rotten Tomatoes Rating":88,"Title":"Fiddler on the Roof"},{"IMDB Rating":7.2,"Production Budget":4000000,"Rotten Tomatoes Rating":67,"Title":"The Front Page"},{"IMDB Rating":7.4,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"First Blood"},{"IMDB Rating":7,"Production Budget":3500000,"Rotten Tomatoes Rating":77,"Title":"Friday"},{"IMDB Rating":6.3,"Production Budget":2000000,"Rotten Tomatoes Rating":83,"Title":"Freeze Frame"},{"IMDB Rating":5.6,"Production Budget":21000000,"Rotten Tomatoes Rating":42,"Title":"Firefox"},{"IMDB Rating":8.3,"Production Budget":7000000,"Rotten Tomatoes Rating":94,"Title":"Fargo"},{"IMDB Rating":5.6,"Production Budget":75000000,"Rotten Tomatoes Rating":45,"Title":"First Knight"},{"IMDB Rating":7.5,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"From Russia With Love"},{"IMDB Rating":5.5,"Production Budget":42000000,"Rotten Tomatoes Rating":76,"Title":"The Firm"},{"IMDB Rating":7.5,"Production Budget":3500000,"Rotten Tomatoes Rating":87,"Title":"Frenzy"},{"IMDB Rating":6,"Production Budget":8200000,"Rotten Tomatoes Rating":56,"Title":"Footloose"},{"IMDB Rating":7.2,"Production Budget":4500000,"Rotten Tomatoes Rating":80,"Title":"Fast Times at Ridgemont High"},{"IMDB Rating":6.6,"Production Budget":300000,"Rotten Tomatoes Rating":null,"Title":"Fighting Tommy Riley"},{"IMDB Rating":5.6,"Production Budget":30000000,"Rotten Tomatoes Rating":41,"Title":"The First Wives Club"},{"IMDB Rating":6.7,"Production Budget":7000000,"Rotten Tomatoes Rating":86,"Title":"Flirting with Disaster"},{"IMDB Rating":6.8,"Production Budget":28000000,"Rotten Tomatoes Rating":71,"Title":"For Your Eyes Only"},{"IMDB Rating":6.5,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Fiza"},{"IMDB Rating":6.6,"Production Budget":55000000,"Rotten Tomatoes Rating":51,"Title":"The Ghost and the Darkness"},{"IMDB Rating":7.7,"Production Budget":3000000,"Rotten Tomatoes Rating":86,"Title":"Gallipoli"},{"IMDB Rating":5.5,"Production Budget":50000,"Rotten Tomatoes Rating":null,"Title":"Gabriela"},{"IMDB Rating":6.8,"Production Budget":1200000,"Rotten Tomatoes Rating":null,"Title":"Il buono, il brutto, il cattivo"},{"IMDB Rating":3,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"Graduation Day"},{"IMDB Rating":9,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"The Godfather: Part II"},{"IMDB Rating":7.6,"Production Budget":54000000,"Rotten Tomatoes Rating":null,"Title":"The Godfather: Part III"},{"IMDB Rating":8.8,"Production Budget":25000000,"Rotten Tomatoes Rating":97,"Title":"Goodfellas"},{"IMDB Rating":9.2,"Production Budget":7000000,"Rotten Tomatoes Rating":100,"Title":"The Godfather"},{"IMDB Rating":6.8,"Production Budget":300000,"Rotten Tomatoes Rating":50,"Title":"God's Army"},{"IMDB Rating":8.4,"Production Budget":4000000,"Rotten Tomatoes Rating":91,"Title":"The Great Escape"},{"IMDB Rating":5.2,"Production Budget":425000,"Rotten Tomatoes Rating":null,"Title":"Gory Gory Hallelujah"},{"IMDB Rating":6.9,"Production Budget":22000000,"Rotten Tomatoes Rating":81,"Title":"Ghost"},{"IMDB Rating":6.8,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Ghostbusters"},{"IMDB Rating":4.9,"Production Budget":12000000,"Rotten Tomatoes Rating":34,"Title":"Girl 6"},{"IMDB Rating":7.2,"Production Budget":60000000,"Rotten Tomatoes Rating":80,"Title":"Goldeneye"},{"IMDB Rating":4.9,"Production Budget":45000000,"Rotten Tomatoes Rating":13,"Title":"The Glimmer Man"},{"IMDB Rating":8,"Production Budget":18000000,"Rotten Tomatoes Rating":93,"Title":"Glory"},{"IMDB Rating":6.1,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"The Gambler"},{"IMDB Rating":7.2,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"Good Morning Vietnam"},{"IMDB Rating":8.2,"Production Budget":22000000,"Rotten Tomatoes Rating":85,"Title":"Gandhi"},{"IMDB Rating":6.9,"Production Budget":2627000,"Rotten Tomatoes Rating":null,"Title":"A Guy Named Joe"},{"IMDB Rating":7.4,"Production Budget":2000000,"Rotten Tomatoes Rating":83,"Title":"Gentleman's Agreement"},{"IMDB Rating":7,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Goodbye Bafana"},{"IMDB Rating":6.7,"Production Budget":2400000,"Rotten Tomatoes Rating":87,"Title":"Get on the Bus"},{"IMDB Rating":5.4,"Production Budget":12000000,"Rotten Tomatoes Rating":26,"Title":"The Golden Child"},{"IMDB Rating":6.4,"Production Budget":200000,"Rotten Tomatoes Rating":null,"Title":"Good Dick"},{"IMDB Rating":7.9,"Production Budget":3000000,"Rotten Tomatoes Rating":96,"Title":"Goldfinger"},{"IMDB Rating":8.2,"Production Budget":14600000,"Rotten Tomatoes Rating":96,"Title":"Groundhog Day"},{"IMDB Rating":7,"Production Budget":11000000,"Rotten Tomatoes Rating":78,"Title":"Gremlins"},{"IMDB Rating":7.5,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Get Real"},{"IMDB Rating":6.1,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"Gremlins 2: The New Batch"},{"IMDB Rating":6.3,"Production Budget":20000000,"Rotten Tomatoes Rating":39,"Title":"The Greatest Story Ever Told"},{"IMDB Rating":6.8,"Production Budget":4000000,"Rotten Tomatoes Rating":41,"Title":"The Greatest Show on Earth"},{"IMDB Rating":6.9,"Production Budget":6000000,"Rotten Tomatoes Rating":null,"Title":"The First Great Train Robbery"},{"IMDB Rating":6.9,"Production Budget":30250000,"Rotten Tomatoes Rating":86,"Title":"Get Shorty"},{"IMDB Rating":7.6,"Production Budget":25000000,"Rotten Tomatoes Rating":87,"Title":"Gettysburg"},{"IMDB Rating":8.2,"Production Budget":3900000,"Rotten Tomatoes Rating":97,"Title":"Gone with the Wind"},{"IMDB Rating":6.5,"Production Budget":3000000,"Rotten Tomatoes Rating":84,"Title":"Happiness"},{"IMDB Rating":5.3,"Production Budget":23000000,"Rotten Tomatoes Rating":27,"Title":"Harley Davidson and the Marlboro Man"},{"IMDB Rating":6,"Production Budget":9300000,"Rotten Tomatoes Rating":60,"Title":"Heavy Metal"},{"IMDB Rating":7.9,"Production Budget":4000000,"Rotten Tomatoes Rating":90,"Title":"Hell's Angels"},{"IMDB Rating":4.1,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Heartbeeps"},{"IMDB Rating":1.5,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"The Helix... Loaded"},{"IMDB Rating":6.9,"Production Budget":1800000,"Rotten Tomatoes Rating":93,"Title":"Hang 'em High"},{"IMDB Rating":7,"Production Budget":1000000,"Rotten Tomatoes Rating":63,"Title":"Hellraiser"},{"IMDB Rating":6.4,"Production Budget":42000000,"Rotten Tomatoes Rating":null,"Title":"Hero"},{"IMDB Rating":3.8,"Production Budget":26000000,"Rotten Tomatoes Rating":null,"Title":"Highlander III: The Sorcerer"},{"IMDB Rating":7.2,"Production Budget":16000000,"Rotten Tomatoes Rating":66,"Title":"Highlander"},{"IMDB Rating":7.9,"Production Budget":1250000,"Rotten Tomatoes Rating":88,"Title":"How Green Was My Valley"},{"IMDB Rating":8.3,"Production Budget":730000,"Rotten Tomatoes Rating":95,"Title":"High Noon"},{"IMDB Rating":6.5,"Production Budget":11000000,"Rotten Tomatoes Rating":null,"Title":"History of the World: Part I"},{"IMDB Rating":4.4,"Production Budget":24000000,"Rotten Tomatoes Rating":null,"Title":"Hello, Dolly"},{"IMDB Rating":4.9,"Production Budget":2500000,"Rotten Tomatoes Rating":27,"Title":"Halloween II"},{"IMDB Rating":3.8,"Production Budget":2500000,"Rotten Tomatoes Rating":null,"Title":"Halloween 3: Season of the Witch"},{"IMDB Rating":5.6,"Production Budget":5000000,"Rotten Tomatoes Rating":23,"Title":"Halloween 4: The Return of Michael Myers"},{"IMDB Rating":null,"Production Budget":6000000,"Rotten Tomatoes Rating":14,"Title":"Halloween 5: The Revenge of Michael Myers"},{"IMDB Rating":4.4,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Halloween: The Curse of Michael Myers"},{"IMDB Rating":6,"Production Budget":325000,"Rotten Tomatoes Rating":93,"Title":"Halloween"},{"IMDB Rating":5.8,"Production Budget":20000000,"Rotten Tomatoes Rating":21,"Title":"Home Alone 2: Lost in New York"},{"IMDB Rating":7,"Production Budget":15000000,"Rotten Tomatoes Rating":47,"Title":"Home Alone"},{"IMDB Rating":5.3,"Production Budget":400000,"Rotten Tomatoes Rating":null,"Title":"Home Movies"},{"IMDB Rating":3.6,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Hum to Mohabbt Karega"},{"IMDB Rating":5.8,"Production Budget":7500000,"Rotten Tomatoes Rating":69,"Title":"The Hotel New Hampshire"},{"IMDB Rating":7.9,"Production Budget":9000000,"Rotten Tomatoes Rating":100,"Title":"Henry V"},{"IMDB Rating":4.6,"Production Budget":10100000,"Rotten Tomatoes Rating":null,"Title":"Housefull"},{"IMDB Rating":6.2,"Production Budget":70000000,"Rotten Tomatoes Rating":24,"Title":"Hook"},{"IMDB Rating":4.3,"Production Budget":5000000,"Rotten Tomatoes Rating":25,"Title":"House Party 2"},{"IMDB Rating":6,"Production Budget":28000000,"Rotten Tomatoes Rating":29,"Title":"Hocus Pocus"},{"IMDB Rating":6.5,"Production Budget":1000000,"Rotten Tomatoes Rating":60,"Title":"The Howling"},{"IMDB Rating":7.6,"Production Budget":15700000,"Rotten Tomatoes Rating":null,"Title":"High Plains Drifter"},{"IMDB Rating":8,"Production Budget":700000,"Rotten Tomatoes Rating":98,"Title":"Hoop Dreams"},{"IMDB Rating":6.9,"Production Budget":10000000,"Rotten Tomatoes Rating":58,"Title":"Happy Gilmore"},{"IMDB Rating":7.4,"Production Budget":40000000,"Rotten Tomatoes Rating":58,"Title":"The Hudsucker Proxy"},{"IMDB Rating":7.6,"Production Budget":560000,"Rotten Tomatoes Rating":100,"Title":"A Hard Day's Night"},{"IMDB Rating":6.1,"Production Budget":400000,"Rotten Tomatoes Rating":null,"Title":"Heroes"},{"IMDB Rating":7.6,"Production Budget":30000000,"Rotten Tomatoes Rating":95,"Title":"The Hunt for Red October"},{"IMDB Rating":7,"Production Budget":3500000,"Rotten Tomatoes Rating":null,"Title":"Harper"},{"IMDB Rating":5.8,"Production Budget":13000000,"Rotten Tomatoes Rating":45,"Title":"Harriet the Spy"},{"IMDB Rating":6.9,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"Le hussard sur le toit"},{"IMDB Rating":8.1,"Production Budget":2000000,"Rotten Tomatoes Rating":97,"Title":"The Hustler"},{"IMDB Rating":3.4,"Production Budget":2500000,"Rotten Tomatoes Rating":79,"Title":"Hud"},{"IMDB Rating":5.3,"Production Budget":65000000,"Rotten Tomatoes Rating":20,"Title":"Hudson Hawk"},{"IMDB Rating":6.5,"Production Budget":44000000,"Rotten Tomatoes Rating":null,"Title":"Heaven's Gate"},{"IMDB Rating":5.6,"Production Budget":650000,"Rotten Tomatoes Rating":null,"Title":"Hav Plenty"},{"IMDB Rating":5.4,"Production Budget":658000,"Rotten Tomatoes Rating":94,"Title":"House of Wax"},{"IMDB Rating":6.4,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Hawaii"},{"IMDB Rating":4.1,"Production Budget":30000000,"Rotten Tomatoes Rating":16,"Title":"Howard the Duck"},{"IMDB Rating":6.5,"Production Budget":3400000,"Rotten Tomatoes Rating":73,"Title":"High Anxiety"},{"IMDB Rating":2.2,"Production Budget":200000,"Rotten Tomatoes Rating":null,"Title":"Hybrid"},{"IMDB Rating":8.7,"Production Budget":3180000,"Rotten Tomatoes Rating":94,"Title":"It's a Wonderful Life"},{"IMDB Rating":5.1,"Production Budget":9000000,"Rotten Tomatoes Rating":11,"Title":"The Ice Pirates"},{"IMDB Rating":6.5,"Production Budget":75000000,"Rotten Tomatoes Rating":61,"Title":"Independence Day"},{"IMDB Rating":4.1,"Production Budget":40000000,"Rotten Tomatoes Rating":23,"Title":"The Island of Dr. Moreau"},{"IMDB Rating":7.8,"Production Budget":775000,"Rotten Tomatoes Rating":100,"Title":"Iraq for Sale: The War Profiteers"},{"IMDB Rating":3.5,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"In Her Line of Fire"},{"IMDB Rating":5.7,"Production Budget":45000000,"Rotten Tomatoes Rating":68,"Title":"The Indian in the Cupboard"},{"IMDB Rating":5.6,"Production Budget":68000,"Rotten Tomatoes Rating":null,"Title":"I Love You Ö Don't Touch Me!"},{"IMDB Rating":6.1,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Illuminata"},{"IMDB Rating":8.1,"Production Budget":3500000,"Rotten Tomatoes Rating":88,"Title":"In Cold Blood"},{"IMDB Rating":7.2,"Production Budget":25000,"Rotten Tomatoes Rating":89,"Title":"In the Company of Men"},{"IMDB Rating":5.7,"Production Budget":8000000,"Rotten Tomatoes Rating":29,"Title":"The Inkwell"},{"IMDB Rating":5,"Production Budget":12000000,"Rotten Tomatoes Rating":27,"Title":"Invaders from Mars"},{"IMDB Rating":6.1,"Production Budget":3400000,"Rotten Tomatoes Rating":null,"Title":"L'incomparable mademoiselle C."},{"IMDB Rating":null,"Production Budget":385907,"Rotten Tomatoes Rating":96,"Title":"Intolerance"},{"IMDB Rating":6.9,"Production Budget":22000000,"Rotten Tomatoes Rating":null,"Title":"The Island"},{"IMDB Rating":5.1,"Production Budget":55000000,"Rotten Tomatoes Rating":null,"Title":"Eye See You"},{"IMDB Rating":8.1,"Production Budget":2000000,"Rotten Tomatoes Rating":96,"Title":"In the Heat of the Night"},{"IMDB Rating":5.3,"Production Budget":45000000,"Rotten Tomatoes Rating":17,"Title":"Jack"},{"IMDB Rating":4.8,"Production Budget":50000000,"Rotten Tomatoes Rating":16,"Title":"Jade"},{"IMDB Rating":4.9,"Production Budget":60000000,"Rotten Tomatoes Rating":16,"Title":"Jingle All the Way"},{"IMDB Rating":7.3,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Dr. No"},{"IMDB Rating":5.8,"Production Budget":27000000,"Rotten Tomatoes Rating":null,"Title":"The Jungle Book"},{"IMDB Rating":4.9,"Production Budget":85000000,"Rotten Tomatoes Rating":15,"Title":"Judge Dredd"},{"IMDB Rating":3.9,"Production Budget":4000000,"Rotten Tomatoes Rating":10,"Title":"The Jerky Boys"},{"IMDB Rating":5.6,"Production Budget":14000000,"Rotten Tomatoes Rating":36,"Title":"Jefferson in Paris"},{"IMDB Rating":8,"Production Budget":40000000,"Rotten Tomatoes Rating":83,"Title":"JFK"},{"IMDB Rating":7.2,"Production Budget":1300000,"Rotten Tomatoes Rating":92,"Title":"Journey from the Fall"},{"IMDB Rating":5.5,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Jekyll and Hyde... Together Again"},{"IMDB Rating":6.4,"Production Budget":65000000,"Rotten Tomatoes Rating":48,"Title":"Jumanji"},{"IMDB Rating":5.3,"Production Budget":44000000,"Rotten Tomatoes Rating":16,"Title":"The Juror"},{"IMDB Rating":7.9,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Jerusalema"},{"IMDB Rating":7.9,"Production Budget":63000000,"Rotten Tomatoes Rating":87,"Title":"Jurassic Park"},{"IMDB Rating":5.8,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Johnny Suede"},{"IMDB Rating":8.3,"Production Budget":12000000,"Rotten Tomatoes Rating":100,"Title":"Jaws"},{"IMDB Rating":5.6,"Production Budget":20000000,"Rotten Tomatoes Rating":56,"Title":"Jaws 2"},{"IMDB Rating":2.6,"Production Budget":23000000,"Rotten Tomatoes Rating":null,"Title":"Jaws 4: The Revenge"},{"IMDB Rating":5.6,"Production Budget":10750000,"Rotten Tomatoes Rating":67,"Title":"Kabhi Alvida Naa Kehna"},{"IMDB Rating":5.5,"Production Budget":1500000,"Rotten Tomatoes Rating":null,"Title":"Kickboxer"},{"IMDB Rating":6.7,"Production Budget":1500000,"Rotten Tomatoes Rating":50,"Title":"Kids"},{"IMDB Rating":6.7,"Production Budget":25000000,"Rotten Tomatoes Rating":51,"Title":"Kingpin"},{"IMDB Rating":5.8,"Production Budget":26000000,"Rotten Tomatoes Rating":50,"Title":"Kindergarten Cop"},{"IMDB Rating":7.6,"Production Budget":23000000,"Rotten Tomatoes Rating":46,"Title":"King Kong"},{"IMDB Rating":7.6,"Production Budget":40000000,"Rotten Tomatoes Rating":67,"Title":"Kiss of Death"},{"IMDB Rating":5.7,"Production Budget":500000,"Rotten Tomatoes Rating":44,"Title":"Kingdom of the Spiders"},{"IMDB Rating":7.9,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"Akira"},{"IMDB Rating":5.8,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Krush Groove"},{"IMDB Rating":6.1,"Production Budget":10000000,"Rotten Tomatoes Rating":100,"Title":"Krrish"},{"IMDB Rating":6,"Production Budget":19000000,"Rotten Tomatoes Rating":58,"Title":"Kansas City"},{"IMDB Rating":7.9,"Production Budget":25000000,"Rotten Tomatoes Rating":91,"Title":"The Last Emperor"},{"IMDB Rating":5.9,"Production Budget":85000000,"Rotten Tomatoes Rating":38,"Title":"Last Action Hero"},{"IMDB Rating":6.8,"Production Budget":7000000,"Rotten Tomatoes Rating":64,"Title":"Live and Let Die"},{"IMDB Rating":7.8,"Production Budget":2700000,"Rotten Tomatoes Rating":null,"Title":"Lage Raho Munnabhai"},{"IMDB Rating":8,"Production Budget":35000,"Rotten Tomatoes Rating":null,"Title":"The Last Waltz"},{"IMDB Rating":6,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"The Last Big Thing"},{"IMDB Rating":6.9,"Production Budget":12300000,"Rotten Tomatoes Rating":71,"Title":"The Land Before Time"},{"IMDB Rating":7.8,"Production Budget":10000000,"Rotten Tomatoes Rating":92,"Title":"The Longest Day"},{"IMDB Rating":6.7,"Production Budget":40000000,"Rotten Tomatoes Rating":73,"Title":"The Living Daylights"},{"IMDB Rating":7.8,"Production Budget":28000000,"Rotten Tomatoes Rating":null,"Title":"Aladdin"},{"IMDB Rating":5.4,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"A Low Down Dirty Shame"},{"IMDB Rating":6.9,"Production Budget":4030000,"Rotten Tomatoes Rating":null,"Title":"Love and Death on Long Island"},{"IMDB Rating":6.7,"Production Budget":20000000,"Rotten Tomatoes Rating":63,"Title":"Ladyhawke"},{"IMDB Rating":7.5,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Nikita"},{"IMDB Rating":7.8,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"Lion of the Desert"},{"IMDB Rating":5.6,"Production Budget":40000000,"Rotten Tomatoes Rating":50,"Title":"Legal Eagles"},{"IMDB Rating":6.1,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Legend"},{"IMDB Rating":6.7,"Production Budget":87000,"Rotten Tomatoes Rating":63,"Title":"The Last House on the Left"},{"IMDB Rating":5.8,"Production Budget":25000000,"Rotten Tomatoes Rating":57,"Title":"Lifeforce"},{"IMDB Rating":6.6,"Production Budget":4700000,"Rotten Tomatoes Rating":73,"Title":"Lady in White"},{"IMDB Rating":6.6,"Production Budget":65000000,"Rotten Tomatoes Rating":69,"Title":"The Long Kiss Goodnight"},{"IMDB Rating":8.4,"Production Budget":6000000,"Rotten Tomatoes Rating":null,"Title":"Lake of Fire"},{"IMDB Rating":7.5,"Production Budget":2100000,"Rotten Tomatoes Rating":null,"Title":"Elling"},{"IMDB Rating":7.8,"Production Budget":3000000,"Rotten Tomatoes Rating":96,"Title":"Elmer Gantry"},{"IMDB Rating":7,"Production Budget":7000,"Rotten Tomatoes Rating":null,"Title":"El Mariachi"},{"IMDB Rating":7.5,"Production Budget":17000000,"Rotten Tomatoes Rating":100,"Title":"Aliens"},{"IMDB Rating":6.3,"Production Budget":55000000,"Rotten Tomatoes Rating":37,"Title":"Alien³"},{"IMDB Rating":8.2,"Production Budget":79300000,"Rotten Tomatoes Rating":92,"Title":"The Lion King"},{"IMDB Rating":7.6,"Production Budget":3000000,"Rotten Tomatoes Rating":100,"Title":"Love and Death"},{"IMDB Rating":5.7,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"Love and Other Catastrophes"},{"IMDB Rating":7.3,"Production Budget":550000,"Rotten Tomatoes Rating":null,"Title":"Love Letters"},{"IMDB Rating":4.6,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"The Legend of the Lone Ranger"},{"IMDB Rating":7.8,"Production Budget":40000000,"Rotten Tomatoes Rating":97,"Title":"The Last of the Mohicans"},{"IMDB Rating":5.9,"Production Budget":1000000,"Rotten Tomatoes Rating":38,"Title":"Love Me Tender"},{"IMDB Rating":7.1,"Production Budget":10000000,"Rotten Tomatoes Rating":79,"Title":"The Long Riders"},{"IMDB Rating":4.6,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Losin' It"},{"IMDB Rating":4.9,"Production Budget":4000000,"Rotten Tomatoes Rating":45,"Title":"The Loss of Sexual Innocence"},{"IMDB Rating":7.1,"Production Budget":30000000,"Rotten Tomatoes Rating":63,"Title":"Legends of the Fall"},{"IMDB Rating":6.9,"Production Budget":40000000,"Rotten Tomatoes Rating":81,"Title":"A League of Their Own"},{"IMDB Rating":5.7,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"Loaded Weapon 1"},{"IMDB Rating":8.2,"Production Budget":1250000,"Rotten Tomatoes Rating":100,"Title":"The Lost Weekend"},{"IMDB Rating":6.9,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Le petit Nicolas"},{"IMDB Rating":6.7,"Production Budget":7000000,"Rotten Tomatoes Rating":70,"Title":"Logan's Run"},{"IMDB Rating":6.9,"Production Budget":7500000,"Rotten Tomatoes Rating":null,"Title":"Betty Fisher et autres histoires"},{"IMDB Rating":6.7,"Production Budget":5000000,"Rotten Tomatoes Rating":94,"Title":"Light Sleeper"},{"IMDB Rating":6.6,"Production Budget":30000000,"Rotten Tomatoes Rating":91,"Title":"Little Shop of Horrors"},{"IMDB Rating":7.6,"Production Budget":5000000,"Rotten Tomatoes Rating":92,"Title":"Lone Star"},{"IMDB Rating":7.4,"Production Budget":850000,"Rotten Tomatoes Rating":null,"Title":"Latter Days"},{"IMDB Rating":7.6,"Production Budget":15000000,"Rotten Tomatoes Rating":90,"Title":"Lethal Weapon"},{"IMDB Rating":6.5,"Production Budget":35000000,"Rotten Tomatoes Rating":56,"Title":"Lethal Weapon 3"},{"IMDB Rating":5.7,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"The Last Time I Committed Suicide"},{"IMDB Rating":6.9,"Production Budget":6000000,"Rotten Tomatoes Rating":83,"Title":"Little Voice"},{"IMDB Rating":7.5,"Production Budget":7000000,"Rotten Tomatoes Rating":83,"Title":"The Last Temptation of Christ"},{"IMDB Rating":6.5,"Production Budget":42000000,"Rotten Tomatoes Rating":null,"Title":"License to Kill"},{"IMDB Rating":7.2,"Production Budget":800000,"Rotten Tomatoes Rating":null,"Title":"Cama adentro"},{"IMDB Rating":7.6,"Production Budget":4000000,"Rotten Tomatoes Rating":89,"Title":"Leaving Las Vegas"},{"IMDB Rating":5.1,"Production Budget":10000000,"Rotten Tomatoes Rating":47,"Title":"The Lawnmower Man"},{"IMDB Rating":5.8,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Lone Wolf McQuade"},{"IMDB Rating":7.1,"Production Budget":15000000,"Rotten Tomatoes Rating":89,"Title":"Little Women"},{"IMDB Rating":8.6,"Production Budget":15000000,"Rotten Tomatoes Rating":98,"Title":"Lawrence of Arabia"},{"IMDB Rating":7.4,"Production Budget":3500000,"Rotten Tomatoes Rating":85,"Title":"Menace II Society"},{"IMDB Rating":7.4,"Production Budget":8000000,"Rotten Tomatoes Rating":90,"Title":"Much Ado About Nothing"},{"IMDB Rating":6.7,"Production Budget":3800000,"Rotten Tomatoes Rating":97,"Title":"Major Dundee"},{"IMDB Rating":6.4,"Production Budget":27000000,"Rotten Tomatoes Rating":null,"Title":"The Magic Flute"},{"IMDB Rating":2.2,"Production Budget":558000,"Rotten Tomatoes Rating":null,"Title":"Mata Hari"},{"IMDB Rating":7.7,"Production Budget":35000000,"Rotten Tomatoes Rating":90,"Title":"Malcolm X"},{"IMDB Rating":6.2,"Production Budget":350000,"Rotten Tomatoes Rating":null,"Title":"Maniac"},{"IMDB Rating":7.7,"Production Budget":6000000,"Rotten Tomatoes Rating":100,"Title":"Mary Poppins"},{"IMDB Rating":5.5,"Production Budget":47000000,"Rotten Tomatoes Rating":27,"Title":"Mary Reilly"},{"IMDB Rating":4.9,"Production Budget":25000000,"Rotten Tomatoes Rating":29,"Title":"Maximum Risk"},{"IMDB Rating":8.6,"Production Budget":3500000,"Rotten Tomatoes Rating":null,"Title":"M*A*S*H"},{"IMDB Rating":6.6,"Production Budget":18000000,"Rotten Tomatoes Rating":75,"Title":"The Mask"},{"IMDB Rating":6.3,"Production Budget":80000000,"Rotten Tomatoes Rating":50,"Title":"Mars Attacks!"},{"IMDB Rating":6.3,"Production Budget":10000000,"Rotten Tomatoes Rating":72,"Title":"Mo' Better Blues"},{"IMDB Rating":7.4,"Production Budget":4500000,"Rotten Tomatoes Rating":67,"Title":"Moby Dick"},{"IMDB Rating":6.9,"Production Budget":400000,"Rotten Tomatoes Rating":null,"Title":"My Beautiful Laundrette"},{"IMDB Rating":7.2,"Production Budget":7000000,"Rotten Tomatoes Rating":64,"Title":"Michael Jordan to the MAX"},{"IMDB Rating":6.9,"Production Budget":25000000,"Rotten Tomatoes Rating":77,"Title":"Michael Collins"},{"IMDB Rating":7.3,"Production Budget":11000000,"Rotten Tomatoes Rating":86,"Title":"My Cousin Vinny"},{"IMDB Rating":5.7,"Production Budget":40000000,"Rotten Tomatoes Rating":22,"Title":"Medicine Man"},{"IMDB Rating":7.4,"Production Budget":11900000,"Rotten Tomatoes Rating":null,"Title":"Madadayo"},{"IMDB Rating":4.5,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"Modern Problems"},{"IMDB Rating":8.4,"Production Budget":18000000,"Rotten Tomatoes Rating":96,"Title":"Amadeus"},{"IMDB Rating":8.5,"Production Budget":1500000,"Rotten Tomatoes Rating":100,"Title":"Modern Times"},{"IMDB Rating":5.9,"Production Budget":10000000,"Rotten Tomatoes Rating":8,"Title":"The Mighty Ducks"},{"IMDB Rating":8.1,"Production Budget":3900000,"Rotten Tomatoes Rating":85,"Title":"A Man for All Seasons"},{"IMDB Rating":2.5,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Megaforce"},{"IMDB Rating":6,"Production Budget":42000000,"Rotten Tomatoes Rating":54,"Title":"The Mirror Has Two Faces"},{"IMDB Rating":8,"Production Budget":3600000,"Rotten Tomatoes Rating":90,"Title":"Midnight Cowboy"},{"IMDB Rating":7.5,"Production Budget":30000000,"Rotten Tomatoes Rating":96,"Title":"Midnight Run"},{"IMDB Rating":6.9,"Production Budget":11000000,"Rotten Tomatoes Rating":84,"Title":"Major League"},{"IMDB Rating":6.8,"Production Budget":11000000,"Rotten Tomatoes Rating":89,"Title":"The Molly Maguires"},{"IMDB Rating":5,"Production Budget":200000,"Rotten Tomatoes Rating":31,"Title":"Malevolence"},{"IMDB Rating":7.5,"Production Budget":9400000,"Rotten Tomatoes Rating":null,"Title":"It's a Mad Mad Mad Mad World"},{"IMDB Rating":6.9,"Production Budget":200000,"Rotten Tomatoes Rating":null,"Title":"Mad Max"},{"IMDB Rating":5.9,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Mad Max Beyond Thunderdome"},{"IMDB Rating":7,"Production Budget":5000000,"Rotten Tomatoes Rating":80,"Title":"The Man From Snowy River"},{"IMDB Rating":5.2,"Production Budget":6000000,"Rotten Tomatoes Rating":null,"Title":"Men of War"},{"IMDB Rating":8.4,"Production Budget":400000,"Rotten Tomatoes Rating":null,"Title":"Monty Python and the Holy Grail"},{"IMDB Rating":5.8,"Production Budget":7500000,"Rotten Tomatoes Rating":63,"Title":"Men with Brooms"},{"IMDB Rating":7.9,"Production Budget":19000000,"Rotten Tomatoes Rating":69,"Title":"Mutiny on The Bounty"},{"IMDB Rating":6.3,"Production Budget":5000000,"Rotten Tomatoes Rating":57,"Title":"Mommie Dearest"},{"IMDB Rating":6.1,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"March or Die"},{"IMDB Rating":5.8,"Production Budget":40000000,"Rotten Tomatoes Rating":24,"Title":"Memoirs of an Invisible Man"},{"IMDB Rating":7,"Production Budget":2500000,"Rotten Tomatoes Rating":84,"Title":"My Own Private Idaho"},{"IMDB Rating":6.1,"Production Budget":31000000,"Rotten Tomatoes Rating":64,"Title":"Moonraker"},{"IMDB Rating":5.2,"Production Budget":68000000,"Rotten Tomatoes Rating":17,"Title":"Money Train"},{"IMDB Rating":7.2,"Production Budget":430000,"Rotten Tomatoes Rating":88,"Title":"Metropolitan"},{"IMDB Rating":7.1,"Production Budget":6100000,"Rotten Tomatoes Rating":53,"Title":"Mallrats"},{"IMDB Rating":6.7,"Production Budget":250000,"Rotten Tomatoes Rating":42,"Title":"American Desi"},{"IMDB Rating":5.8,"Production Budget":25000000,"Rotten Tomatoes Rating":7,"Title":"Mrs. Winterbourne"},{"IMDB Rating":6.6,"Production Budget":25000000,"Rotten Tomatoes Rating":64,"Title":"Mrs. Doubtfire"},{"IMDB Rating":8.2,"Production Budget":1500000,"Rotten Tomatoes Rating":97,"Title":"Mr. Smith Goes To Washington"},{"IMDB Rating":5.4,"Production Budget":20000000,"Rotten Tomatoes Rating":35,"Title":"Mortal Kombat"},{"IMDB Rating":6.2,"Production Budget":45000000,"Rotten Tomatoes Rating":null,"Title":"Frankenstein"},{"IMDB Rating":7.4,"Production Budget":4000000,"Rotten Tomatoes Rating":100,"Title":"The Misfits"},{"IMDB Rating":4.8,"Production Budget":16000000,"Rotten Tomatoes Rating":13,"Title":"My Stepmother Is an Alien"},{"IMDB Rating":8.1,"Production Budget":3200000,"Rotten Tomatoes Rating":97,"Title":"The Man Who Shot Liberty Valance"},{"IMDB Rating":6.9,"Production Budget":80000000,"Rotten Tomatoes Rating":null,"Title":"Mission: Impossible"},{"IMDB Rating":4.7,"Production Budget":16000000,"Rotten Tomatoes Rating":9,"Title":"Meteor"},{"IMDB Rating":5.7,"Production Budget":45000000,"Rotten Tomatoes Rating":44,"Title":"Multiplicity"},{"IMDB Rating":7,"Production Budget":30000,"Rotten Tomatoes Rating":null,"Title":"Mutual Appreciation"},{"IMDB Rating":7.5,"Production Budget":12000000,"Rotten Tomatoes Rating":67,"Title":"The Muppet Christmas Carol"},{"IMDB Rating":6.7,"Production Budget":7000000,"Rotten Tomatoes Rating":52,"Title":"The Man with the Golden Gun"},{"IMDB Rating":7.9,"Production Budget":17000000,"Rotten Tomatoes Rating":94,"Title":"My Fair Lady"},{"IMDB Rating":5.9,"Production Budget":6000000,"Rotten Tomatoes Rating":82,"Title":"Mystic Pizza"},{"IMDB Rating":6.7,"Production Budget":8400000,"Rotten Tomatoes Rating":null,"Title":"Namastey London"},{"IMDB Rating":6.8,"Production Budget":700000,"Rotten Tomatoes Rating":null,"Title":"Naturally Native"},{"IMDB Rating":3,"Production Budget":46000000,"Rotten Tomatoes Rating":null,"Title":"Inchon"},{"IMDB Rating":7.5,"Production Budget":28000000,"Rotten Tomatoes Rating":85,"Title":"Indiana Jones and the Temple of Doom"},{"IMDB Rating":8.3,"Production Budget":48000000,"Rotten Tomatoes Rating":89,"Title":"Indiana Jones and the Last Crusade"},{"IMDB Rating":3.5,"Production Budget":1300000,"Rotten Tomatoes Rating":null,"Title":"Neal n' Nikki"},{"IMDB Rating":5.2,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"A Nightmare on Elm Street 4: The Dream Master"},{"IMDB Rating":6.3,"Production Budget":5000000,"Rotten Tomatoes Rating":71,"Title":"Nighthawks"},{"IMDB Rating":7.3,"Production Budget":35000000,"Rotten Tomatoes Rating":83,"Title":"The English Patient"},{"IMDB Rating":7,"Production Budget":1250000,"Rotten Tomatoes Rating":null,"Title":"Niagara"},{"IMDB Rating":6.6,"Production Budget":23000000,"Rotten Tomatoes Rating":null,"Title":"The Naked Gun 2Ω: The Smell of Fear"},{"IMDB Rating":6.1,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Naked Gun 33 1/3: The Final Insult"},{"IMDB Rating":null,"Production Budget":3000000,"Rotten Tomatoes Rating":90,"Title":"National Lampoon's Animal House"},{"IMDB Rating":6.6,"Production Budget":114000,"Rotten Tomatoes Rating":96,"Title":"Night of the Living Dead"},{"IMDB Rating":5.7,"Production Budget":5000000,"Rotten Tomatoes Rating":38,"Title":"No Looking Back"},{"IMDB Rating":7.5,"Production Budget":3500000,"Rotten Tomatoes Rating":93,"Title":"The Nun's Story"},{"IMDB Rating":5.3,"Production Budget":1800000,"Rotten Tomatoes Rating":95,"Title":"A Nightmare on Elm Street"},{"IMDB Rating":4.9,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"A Nightmare On Elm Street Part 2: Freddy's Revenge"},{"IMDB Rating":6.2,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"A Nightmare On Elm Street 3: Dream Warriors"},{"IMDB Rating":4.7,"Production Budget":6000000,"Rotten Tomatoes Rating":null,"Title":"A Nightmare On Elm Street: The Dream Child"},{"IMDB Rating":4.5,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Freddy's Dead: The Final Nightmare"},{"IMDB Rating":null,"Production Budget":8000000,"Rotten Tomatoes Rating":81,"Title":"Wes Craven's New Nightmare"},{"IMDB Rating":6.6,"Production Budget":4200000,"Rotten Tomatoes Rating":67,"Title":"Night of the Living Dead"},{"IMDB Rating":6.3,"Production Budget":2000000,"Rotten Tomatoes Rating":97,"Title":"Notorious"},{"IMDB Rating":6,"Production Budget":36000000,"Rotten Tomatoes Rating":65,"Title":"Never Say Never Again"},{"IMDB Rating":5.2,"Production Budget":19000000,"Rotten Tomatoes Rating":50,"Title":"The Nutcracker"},{"IMDB Rating":5,"Production Budget":15000000,"Rotten Tomatoes Rating":26,"Title":"Nowhere to Run"},{"IMDB Rating":7.4,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"Interview with the Vampire: The Vampire Chronicles"},{"IMDB Rating":5.6,"Production Budget":55000000,"Rotten Tomatoes Rating":67,"Title":"The Nutty Professor"},{"IMDB Rating":7.4,"Production Budget":27000000,"Rotten Tomatoes Rating":null,"Title":"Die Unendliche Geschichte"},{"IMDB Rating":6.6,"Production Budget":750000,"Rotten Tomatoes Rating":67,"Title":"Interview with the Assassin"},{"IMDB Rating":7.1,"Production Budget":45000000,"Rotten Tomatoes Rating":75,"Title":"Nixon"},{"IMDB Rating":6.7,"Production Budget":14000000,"Rotten Tomatoes Rating":63,"Title":"New York, New York"},{"IMDB Rating":6.1,"Production Budget":15000000,"Rotten Tomatoes Rating":74,"Title":"New York Stories"},{"IMDB Rating":5.5,"Production Budget":36500000,"Rotten Tomatoes Rating":null,"Title":"Obitaemyy ostrov"},{"IMDB Rating":6.6,"Production Budget":27500000,"Rotten Tomatoes Rating":47,"Title":"Octopussy"},{"IMDB Rating":3.8,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"On Deadly Ground"},{"IMDB Rating":8.9,"Production Budget":4400000,"Rotten Tomatoes Rating":96,"Title":"One Flew Over the Cuckoo's Nest"},{"IMDB Rating":5.6,"Production Budget":1100000,"Rotten Tomatoes Rating":null,"Title":"The Offspring"},{"IMDB Rating":6.9,"Production Budget":8000000,"Rotten Tomatoes Rating":81,"Title":"On Her Majesty's Secret Service"},{"IMDB Rating":5.4,"Production Budget":2800000,"Rotten Tomatoes Rating":84,"Title":"The Omen"},{"IMDB Rating":3.3,"Production Budget":7200000,"Rotten Tomatoes Rating":8,"Title":"The Omega Code"},{"IMDB Rating":7,"Production Budget":31000000,"Rotten Tomatoes Rating":63,"Title":"Out of Africa"},{"IMDB Rating":5.1,"Production Budget":1600000,"Rotten Tomatoes Rating":null,"Title":"Out of the Dark"},{"IMDB Rating":7,"Production Budget":6000000,"Rotten Tomatoes Rating":91,"Title":"Ordinary People"},{"IMDB Rating":6.3,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"The Other Side of Heaven"},{"IMDB Rating":6.3,"Production Budget":10000,"Rotten Tomatoes Rating":null,"Title":"On the Down Low"},{"IMDB Rating":6.9,"Production Budget":11000000,"Rotten Tomatoes Rating":68,"Title":"Othello"},{"IMDB Rating":6.5,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"On the Outs"},{"IMDB Rating":8.4,"Production Budget":910000,"Rotten Tomatoes Rating":100,"Title":"On the Waterfront"},{"IMDB Rating":6.4,"Production Budget":50000000,"Rotten Tomatoes Rating":59,"Title":"Outbreak"},{"IMDB Rating":7,"Production Budget":10000000,"Rotten Tomatoes Rating":65,"Title":"The Outsiders"},{"IMDB Rating":6.1,"Production Budget":10000000,"Rotten Tomatoes Rating":10,"Title":"The Oxford Murders"},{"IMDB Rating":6.3,"Production Budget":4500000,"Rotten Tomatoes Rating":47,"Title":"Police Academy"},{"IMDB Rating":2.5,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Police Academy 7: Mission to Moscow"},{"IMDB Rating":7.3,"Production Budget":4300000,"Rotten Tomatoes Rating":60,"Title":"Paa"},{"IMDB Rating":7.1,"Production Budget":6900000,"Rotten Tomatoes Rating":92,"Title":"Pale Rider"},{"IMDB Rating":6.9,"Production Budget":45000000,"Rotten Tomatoes Rating":75,"Title":"Patriot Games"},{"IMDB Rating":4.7,"Production Budget":8000000,"Rotten Tomatoes Rating":39,"Title":"The Pallbearer"},{"IMDB Rating":6,"Production Budget":55000000,"Rotten Tomatoes Rating":55,"Title":"Pocahontas"},{"IMDB Rating":7.2,"Production Budget":2900000,"Rotten Tomatoes Rating":63,"Title":"Pocketful of Miracles"},{"IMDB Rating":6,"Production Budget":9000000,"Rotten Tomatoes Rating":47,"Title":"PCU"},{"IMDB Rating":6,"Production Budget":10000000,"Rotten Tomatoes Rating":50,"Title":"Pete's Dragon"},{"IMDB Rating":7.3,"Production Budget":4638783,"Rotten Tomatoes Rating":null,"Title":"Pat Garrett and Billy the Kid"},{"IMDB Rating":7.4,"Production Budget":10700000,"Rotten Tomatoes Rating":86,"Title":"Poltergeist"},{"IMDB Rating":3.8,"Production Budget":9500000,"Rotten Tomatoes Rating":14,"Title":"Poltergeist III"},{"IMDB Rating":6.3,"Production Budget":3000000,"Rotten Tomatoes Rating":29,"Title":"Phantasm II"},{"IMDB Rating":6.3,"Production Budget":32000000,"Rotten Tomatoes Rating":50,"Title":"Phenomenon"},{"IMDB Rating":7.6,"Production Budget":26000000,"Rotten Tomatoes Rating":74,"Title":"Philadelphia"},{"IMDB Rating":4.8,"Production Budget":45000000,"Rotten Tomatoes Rating":43,"Title":"The Phantom"},{"IMDB Rating":7.5,"Production Budget":68000,"Rotten Tomatoes Rating":86,"Title":"Pi"},{"IMDB Rating":5.8,"Production Budget":12000,"Rotten Tomatoes Rating":null,"Title":"Pink Flamingos"},{"IMDB Rating":7.1,"Production Budget":3700000,"Rotten Tomatoes Rating":71,"Title":"The Pirate"},{"IMDB Rating":7.7,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"The Player"},{"IMDB Rating":7.5,"Production Budget":65000000,"Rotten Tomatoes Rating":null,"Title":"Apollo 13"},{"IMDB Rating":8.2,"Production Budget":6000000,"Rotten Tomatoes Rating":86,"Title":"Platoon"},{"IMDB Rating":2.7,"Production Budget":1000000,"Rotten Tomatoes Rating":92,"Title":"Panic"},{"IMDB Rating":5.3,"Production Budget":25000000,"Rotten Tomatoes Rating":27,"Title":"The Adventures of Pinocchio"},{"IMDB Rating":4.6,"Production Budget":800000,"Rotten Tomatoes Rating":null,"Title":"Pandora's Box"},{"IMDB Rating":6,"Production Budget":27000,"Rotten Tomatoes Rating":null,"Title":"Pink Narcissus"},{"IMDB Rating":5.5,"Production Budget":100000,"Rotten Tomatoes Rating":null,"Title":"Penitentiary"},{"IMDB Rating":5.8,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"The Pursuit of D.B. Cooper"},{"IMDB Rating":5.1,"Production Budget":14000000,"Rotten Tomatoes Rating":36,"Title":"Poetic Justice"},{"IMDB Rating":5.8,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Porky's"},{"IMDB Rating":3,"Production Budget":70000,"Rotten Tomatoes Rating":null,"Title":"Peace, Propaganda and the Promised Land"},{"IMDB Rating":4.9,"Production Budget":20000000,"Rotten Tomatoes Rating":56,"Title":"Popeye"},{"IMDB Rating":6,"Production Budget":35000000,"Rotten Tomatoes Rating":23,"Title":"Predator 2"},{"IMDB Rating":7.8,"Production Budget":18000000,"Rotten Tomatoes Rating":76,"Title":"Predator"},{"IMDB Rating":8.1,"Production Budget":15000000,"Rotten Tomatoes Rating":95,"Title":"The Princess Bride"},{"IMDB Rating":5.8,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Prison"},{"IMDB Rating":8.6,"Production Budget":16000000,"Rotten Tomatoes Rating":null,"Title":"LÈon"},{"IMDB Rating":4.7,"Production Budget":12000000,"Rotten Tomatoes Rating":25,"Title":"Prophecy"},{"IMDB Rating":6.4,"Production Budget":30000000,"Rotten Tomatoes Rating":74,"Title":"The Prince of Tides"},{"IMDB Rating":5.7,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Proud"},{"IMDB Rating":6.7,"Production Budget":14000000,"Rotten Tomatoes Rating":62,"Title":"Pretty Woman"},{"IMDB Rating":6.6,"Production Budget":10000000,"Rotten Tomatoes Rating":40,"Title":"Partition"},{"IMDB Rating":6.4,"Production Budget":12000000,"Rotten Tomatoes Rating":70,"Title":"The Postman Always Rings Twice"},{"IMDB Rating":6.3,"Production Budget":18000000,"Rotten Tomatoes Rating":88,"Title":"Peggy Sue Got Married"},{"IMDB Rating":7.1,"Production Budget":4000000,"Rotten Tomatoes Rating":83,"Title":"Peter Pan"},{"IMDB Rating":6.3,"Production Budget":11500000,"Rotten Tomatoes Rating":50,"Title":"Pet Sematary"},{"IMDB Rating":8.1,"Production Budget":12000000,"Rotten Tomatoes Rating":97,"Title":"Patton"},{"IMDB Rating":6.4,"Production Budget":15000,"Rotten Tomatoes Rating":null,"Title":"The Puffy Chair"},{"IMDB Rating":8.9,"Production Budget":8000000,"Rotten Tomatoes Rating":94,"Title":"Pulp Fiction"},{"IMDB Rating":6.5,"Production Budget":20000000,"Rotten Tomatoes Rating":23,"Title":"Paint Your Wagon"},{"IMDB Rating":4.6,"Production Budget":12500000,"Rotten Tomatoes Rating":null,"Title":"The Prisoner of Zenda"},{"IMDB Rating":6,"Production Budget":11000000,"Rotten Tomatoes Rating":67,"Title":"The Perez Family"},{"IMDB Rating":6.1,"Production Budget":1200000,"Rotten Tomatoes Rating":null,"Title":"Q"},{"IMDB Rating":6.3,"Production Budget":32000000,"Rotten Tomatoes Rating":56,"Title":"The Quick and the Dead"},{"IMDB Rating":6.5,"Production Budget":20000000,"Rotten Tomatoes Rating":60,"Title":"Quigley Down Under"},{"IMDB Rating":7.4,"Production Budget":12500000,"Rotten Tomatoes Rating":null,"Title":"La Guerre du feu"},{"IMDB Rating":5.8,"Production Budget":8250000,"Rotten Tomatoes Rating":88,"Title":"Quo Vadis?"},{"IMDB Rating":8.1,"Production Budget":5300000,"Rotten Tomatoes Rating":null,"Title":"Rang De Basanti"},{"IMDB Rating":6.5,"Production Budget":5000000,"Rotten Tomatoes Rating":68,"Title":"Robin and Marian"},{"IMDB Rating":6.6,"Production Budget":70000000,"Rotten Tomatoes Rating":70,"Title":"Ransom"},{"IMDB Rating":8.1,"Production Budget":3200000,"Rotten Tomatoes Rating":98,"Title":"Rosemary's Baby"},{"IMDB Rating":8.4,"Production Budget":1288000,"Rotten Tomatoes Rating":100,"Title":"Rebecca"},{"IMDB Rating":6.7,"Production Budget":50000000,"Rotten Tomatoes Rating":56,"Title":"Robin Hood: Prince of Thieves"},{"IMDB Rating":6.8,"Production Budget":28000000,"Rotten Tomatoes Rating":71,"Title":"Rob Roy"},{"IMDB Rating":8.4,"Production Budget":18000000,"Rotten Tomatoes Rating":98,"Title":"Raging Bull"},{"IMDB Rating":7.5,"Production Budget":9200000,"Rotten Tomatoes Rating":95,"Title":"Richard III"},{"IMDB Rating":5.7,"Production Budget":11000000,"Rotten Tomatoes Rating":53,"Title":"Raising Cain"},{"IMDB Rating":7.6,"Production Budget":13000000,"Rotten Tomatoes Rating":88,"Title":"RoboCop"},{"IMDB Rating":3.4,"Production Budget":22000000,"Rotten Tomatoes Rating":null,"Title":"RoboCop 3"},{"IMDB Rating":4.7,"Production Budget":40000000,"Rotten Tomatoes Rating":25,"Title":"Ri¢hie Ri¢h"},{"IMDB Rating":7.5,"Production Budget":16000000,"Rotten Tomatoes Rating":95,"Title":"Radio Days"},{"IMDB Rating":6.5,"Production Budget":35000000,"Rotten Tomatoes Rating":43,"Title":"Radio Flyer"},{"IMDB Rating":8.4,"Production Budget":1200000,"Rotten Tomatoes Rating":96,"Title":"Reservoir Dogs"},{"IMDB Rating":8.7,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Raiders of the Lost Ark"},{"IMDB Rating":7.8,"Production Budget":3000000,"Rotten Tomatoes Rating":100,"Title":"Red River"},{"IMDB Rating":7.4,"Production Budget":33500000,"Rotten Tomatoes Rating":94,"Title":"Reds"},{"IMDB Rating":7.7,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Le Violon rouge"},{"IMDB Rating":4.4,"Production Budget":17900000,"Rotten Tomatoes Rating":20,"Title":"Red Sonja"},{"IMDB Rating":2.3,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"The Return"},{"IMDB Rating":7.5,"Production Budget":140000,"Rotten Tomatoes Rating":100,"Title":"Roger & Me"},{"IMDB Rating":7.9,"Production Budget":27000000,"Rotten Tomatoes Rating":97,"Title":"The Right Stuff"},{"IMDB Rating":7.1,"Production Budget":1200000,"Rotten Tomatoes Rating":77,"Title":"The Rocky Horror Picture Show"},{"IMDB Rating":5.8,"Production Budget":10000000,"Rotten Tomatoes Rating":44,"Title":"Road House"},{"IMDB Rating":6.3,"Production Budget":10000000,"Rotten Tomatoes Rating":24,"Title":"Romeo Is Bleeding"},{"IMDB Rating":4.2,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Rockaway"},{"IMDB Rating":4,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Rocky"},{"IMDB Rating":5.1,"Production Budget":6200000,"Rotten Tomatoes Rating":null,"Title":"Return of the Living Dead Part II"},{"IMDB Rating":5.5,"Production Budget":500000,"Rotten Tomatoes Rating":64,"Title":"The R.M."},{"IMDB Rating":5.9,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Renaissance Man"},{"IMDB Rating":5.8,"Production Budget":44000000,"Rotten Tomatoes Rating":30,"Title":"Rambo: First Blood Part II"},{"IMDB Rating":4.9,"Production Budget":58000000,"Rotten Tomatoes Rating":36,"Title":"Rambo III"},{"IMDB Rating":6.5,"Production Budget":14500000,"Rotten Tomatoes Rating":null,"Title":"Romeo+Juliet"},{"IMDB Rating":8,"Production Budget":25000000,"Rotten Tomatoes Rating":87,"Title":"Rain Man"},{"IMDB Rating":6.1,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Rapa Nui"},{"IMDB Rating":5.9,"Production Budget":17000000,"Rotten Tomatoes Rating":null,"Title":"Roar"},{"IMDB Rating":6.7,"Production Budget":5000000,"Rotten Tomatoes Rating":38,"Title":"The Robe"},{"IMDB Rating":7.2,"Production Budget":75000000,"Rotten Tomatoes Rating":66,"Title":"The Rock"},{"IMDB Rating":7.9,"Production Budget":15000000,"Rotten Tomatoes Rating":97,"Title":"The Remains of the Day"},{"IMDB Rating":7.8,"Production Budget":3500000,"Rotten Tomatoes Rating":98,"Title":"Airplane!"},{"IMDB Rating":6.7,"Production Budget":1500000,"Rotten Tomatoes Rating":97,"Title":"Repo Man"},{"IMDB Rating":7.5,"Production Budget":1070000,"Rotten Tomatoes Rating":null,"Title":"Rocket Singh: Salesman of the Year"},{"IMDB Rating":3.9,"Production Budget":40000000,"Rotten Tomatoes Rating":60,"Title":"Raise the Titanic"},{"IMDB Rating":6.5,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Restoration"},{"IMDB Rating":7.1,"Production Budget":4000000,"Rotten Tomatoes Rating":88,"Title":"The Return of the Living Dead"},{"IMDB Rating":5.9,"Production Budget":2700000,"Rotten Tomatoes Rating":null,"Title":"Rejsen til Saturn"},{"IMDB Rating":8.5,"Production Budget":5000,"Rotten Tomatoes Rating":null,"Title":"Return to the Land of Wonders"},{"IMDB Rating":6.7,"Production Budget":27000000,"Rotten Tomatoes Rating":55,"Title":"Return to Oz"},{"IMDB Rating":6.4,"Production Budget":30000000,"Rotten Tomatoes Rating":63,"Title":"The Running Man"},{"IMDB Rating":6,"Production Budget":1750000,"Rotten Tomatoes Rating":null,"Title":"Run Lola Run"},{"IMDB Rating":7.3,"Production Budget":350000,"Rotten Tomatoes Rating":null,"Title":"Revolution#9"},{"IMDB Rating":6.2,"Production Budget":45000000,"Rotten Tomatoes Rating":56,"Title":"The River Wild"},{"IMDB Rating":8.7,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Se7en"},{"IMDB Rating":5.9,"Production Budget":1000000,"Rotten Tomatoes Rating":58,"Title":"Safe Men"},{"IMDB Rating":7.9,"Production Budget":4500000,"Rotten Tomatoes Rating":94,"Title":"Secrets & Lies"},{"IMDB Rating":5.2,"Production Budget":39000000,"Rotten Tomatoes Rating":33,"Title":"Sgt. Bilko"},{"IMDB Rating":6,"Production Budget":58000000,"Rotten Tomatoes Rating":61,"Title":"Sabrina"},{"IMDB Rating":6.2,"Production Budget":2000000,"Rotten Tomatoes Rating":86,"Title":"Subway"},{"IMDB Rating":5.3,"Production Budget":6000000,"Rotten Tomatoes Rating":58,"Title":"School Daze"},{"IMDB Rating":8.2,"Production Budget":25000000,"Rotten Tomatoes Rating":88,"Title":"Scarface"},{"IMDB Rating":8.9,"Production Budget":25000000,"Rotten Tomatoes Rating":97,"Title":"Schindler's List"},{"IMDB Rating":8.1,"Production Budget":1800000,"Rotten Tomatoes Rating":null,"Title":"A Streetcar Named Desire"},{"IMDB Rating":4.7,"Production Budget":45000000,"Rotten Tomatoes Rating":null,"Title":"Shadow Conspiracy"},{"IMDB Rating":6.9,"Production Budget":200000,"Rotten Tomatoes Rating":75,"Title":"Short Cut to Nirvana: Kumbh Mela"},{"IMDB Rating":8,"Production Budget":12000000,"Rotten Tomatoes Rating":96,"Title":"Spartacus"},{"IMDB Rating":6.9,"Production Budget":450000,"Rotten Tomatoes Rating":79,"Title":"Sunday"},{"IMDB Rating":6.7,"Production Budget":200000,"Rotten Tomatoes Rating":100,"Title":"She Done Him Wrong"},{"IMDB Rating":5.7,"Production Budget":4500000,"Rotten Tomatoes Rating":14,"Title":"State Fair"},{"IMDB Rating":6.2,"Production Budget":175000,"Rotten Tomatoes Rating":93,"Title":"She's Gotta Have It"},{"IMDB Rating":6.7,"Production Budget":55000000,"Rotten Tomatoes Rating":46,"Title":"Stargate"},{"IMDB Rating":5.6,"Production Budget":40000000,"Rotten Tomatoes Rating":34,"Title":"The Shadow"},{"IMDB Rating":6.9,"Production Budget":2300000,"Rotten Tomatoes Rating":89,"Title":"Show Boat"},{"IMDB Rating":7.4,"Production Budget":22000000,"Rotten Tomatoes Rating":96,"Title":"Shadowlands"},{"IMDB Rating":2.6,"Production Budget":17000000,"Rotten Tomatoes Rating":14,"Title":"Shanghai Surprise"},{"IMDB Rating":5.3,"Production Budget":1455000,"Rotten Tomatoes Rating":null,"Title":"Shalako"},{"IMDB Rating":4.3,"Production Budget":25000000,"Rotten Tomatoes Rating":38,"Title":"Sheena"},{"IMDB Rating":7.6,"Production Budget":5500000,"Rotten Tomatoes Rating":90,"Title":"Shine"},{"IMDB Rating":8.5,"Production Budget":19000000,"Rotten Tomatoes Rating":87,"Title":"The Shining"},{"IMDB Rating":6.4,"Production Budget":8500000,"Rotten Tomatoes Rating":null,"Title":"Haakon Haakonsen"},{"IMDB Rating":3.7,"Production Budget":40000000,"Rotten Tomatoes Rating":19,"Title":"Ishtar"},{"IMDB Rating":4.1,"Production Budget":40000000,"Rotten Tomatoes Rating":12,"Title":"Showgirls"},{"IMDB Rating":9.2,"Production Budget":25000000,"Rotten Tomatoes Rating":88,"Title":"The Shawshank Redemption"},{"IMDB Rating":5.9,"Production Budget":7000000,"Rotten Tomatoes Rating":50,"Title":"Silver Bullet"},{"IMDB Rating":null,"Production Budget":200000,"Rotten Tomatoes Rating":11,"Title":"Side Effects"},{"IMDB Rating":6.3,"Production Budget":9000000,"Rotten Tomatoes Rating":61,"Title":"Set It Off"},{"IMDB Rating":8.7,"Production Budget":20000000,"Rotten Tomatoes Rating":96,"Title":"The Silence of the Lambs"},{"IMDB Rating":5.2,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Silent Trigger"},{"IMDB Rating":5.3,"Production Budget":14000000,"Rotten Tomatoes Rating":18,"Title":"Thinner"},{"IMDB Rating":8,"Production Budget":4833610,"Rotten Tomatoes Rating":96,"Title":"Sling Blade"},{"IMDB Rating":6.9,"Production Budget":23000,"Rotten Tomatoes Rating":83,"Title":"Slacker"},{"IMDB Rating":8.3,"Production Budget":2883848,"Rotten Tomatoes Rating":97,"Title":"Some Like it Hot"},{"IMDB Rating":4.6,"Production Budget":50000000,"Rotten Tomatoes Rating":15,"Title":"The Scarlet Letter"},{"IMDB Rating":7.1,"Production Budget":8500000,"Rotten Tomatoes Rating":null,"Title":"Silmido"},{"IMDB Rating":7.3,"Production Budget":2000000,"Rotten Tomatoes Rating":100,"Title":"Sleeper"},{"IMDB Rating":7.3,"Production Budget":44000000,"Rotten Tomatoes Rating":73,"Title":"Sleepers"},{"IMDB Rating":6,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"The Slaughter Rule"},{"IMDB Rating":6,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Solomon and Sheba"},{"IMDB Rating":6.7,"Production Budget":2500000,"Rotten Tomatoes Rating":null,"Title":"Sur Le Seuil"},{"IMDB Rating":8.7,"Production Budget":6000000,"Rotten Tomatoes Rating":87,"Title":"The Usual Suspects"},{"IMDB Rating":7,"Production Budget":26000000,"Rotten Tomatoes Rating":76,"Title":"Silverado"},{"IMDB Rating":7.5,"Production Budget":4500000,"Rotten Tomatoes Rating":91,"Title":"Salvador"},{"IMDB Rating":null,"Production Budget":1200000,"Rotten Tomatoes Rating":97,"Title":"Sex, Lies, and Videotape"},{"IMDB Rating":5.9,"Production Budget":400000,"Rotten Tomatoes Rating":null,"Title":"Show Me"},{"IMDB Rating":8,"Production Budget":1300000,"Rotten Tomatoes Rating":null,"Title":"Simon"},{"IMDB Rating":3.8,"Production Budget":42000000,"Rotten Tomatoes Rating":null,"Title":"Super Mario Bros."},{"IMDB Rating":7,"Production Budget":5100000,"Rotten Tomatoes Rating":63,"Title":"Somewhere in Time"},{"IMDB Rating":6.9,"Production Budget":2000000,"Rotten Tomatoes Rating":86,"Title":"Smoke Signals"},{"IMDB Rating":6.4,"Production Budget":13000000,"Rotten Tomatoes Rating":61,"Title":"Serial Mom"},{"IMDB Rating":7.6,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Sommersturm"},{"IMDB Rating":6.4,"Production Budget":4400000,"Rotten Tomatoes Rating":89,"Title":"Silent Movie"},{"IMDB Rating":6.1,"Production Budget":22000000,"Rotten Tomatoes Rating":79,"Title":"The Santa Clause"},{"IMDB Rating":5.7,"Production Budget":500000,"Rotten Tomatoes Rating":50,"Title":"The Singles Ward"},{"IMDB Rating":7.7,"Production Budget":16500000,"Rotten Tomatoes Rating":98,"Title":"Sense and Sensibility"},{"IMDB Rating":8.4,"Production Budget":2540000,"Rotten Tomatoes Rating":100,"Title":"Singin' in the Rain"},{"IMDB Rating":4.8,"Production Budget":200000,"Rotten Tomatoes Rating":null,"Title":"Solitude"},{"IMDB Rating":6.3,"Production Budget":8200000,"Rotten Tomatoes Rating":81,"Title":"The Sound of Music"},{"IMDB Rating":6,"Production Budget":3500000,"Rotten Tomatoes Rating":60,"Title":"She's the One"},{"IMDB Rating":5.6,"Production Budget":450000,"Rotten Tomatoes Rating":100,"Title":"Straight out of Brooklyn"},{"IMDB Rating":6.9,"Production Budget":22700000,"Rotten Tomatoes Rating":65,"Title":"Spaceballs"},{"IMDB Rating":2.6,"Production Budget":30000000,"Rotten Tomatoes Rating":90,"Title":"Speed"},{"IMDB Rating":5.6,"Production Budget":35000000,"Rotten Tomatoes Rating":39,"Title":"Species"},{"IMDB Rating":4.9,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Sphinx"},{"IMDB Rating":4.8,"Production Budget":3000000,"Rotten Tomatoes Rating":9,"Title":"Spaced Invaders"},{"IMDB Rating":7.7,"Production Budget":1500000,"Rotten Tomatoes Rating":87,"Title":"Spellbound"},{"IMDB Rating":6.2,"Production Budget":8000000,"Rotten Tomatoes Rating":91,"Title":"Splash"},{"IMDB Rating":3.4,"Production Budget":17000000,"Rotten Tomatoes Rating":null,"Title":"Superman IV: The Quest for Peace"},{"IMDB Rating":6.7,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"Superman II"},{"IMDB Rating":4.7,"Production Budget":39000000,"Rotten Tomatoes Rating":23,"Title":"Superman III"},{"IMDB Rating":5.5,"Production Budget":1000000,"Rotten Tomatoes Rating":17,"Title":"Sparkler"},{"IMDB Rating":4.9,"Production Budget":55000000,"Rotten Tomatoes Rating":94,"Title":"Superman"},{"IMDB Rating":4.9,"Production Budget":45000000,"Rotten Tomatoes Rating":4,"Title":"The Specialist"},{"IMDB Rating":6.8,"Production Budget":21600000,"Rotten Tomatoes Rating":null,"Title":"The Sorcerer"},{"IMDB Rating":6.7,"Production Budget":300000,"Rotten Tomatoes Rating":null,"Title":"Sisters in Law"},{"IMDB Rating":6.1,"Production Budget":35000000,"Rotten Tomatoes Rating":53,"Title":"Smilla's Sense of Snow"},{"IMDB Rating":5.9,"Production Budget":50000000,"Rotten Tomatoes Rating":9,"Title":"Assassins"},{"IMDB Rating":6.2,"Production Budget":35000000,"Rotten Tomatoes Rating":48,"Title":"Star Trek: The Motion Picture"},{"IMDB Rating":6.5,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek III: The Search for Spock"},{"IMDB Rating":7.3,"Production Budget":24000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek IV: The Voyage Home"},{"IMDB Rating":8.2,"Production Budget":8000000,"Rotten Tomatoes Rating":94,"Title":"Stand by Me"},{"IMDB Rating":4.6,"Production Budget":25000000,"Rotten Tomatoes Rating":29,"Title":"Stone Cold"},{"IMDB Rating":4.3,"Production Budget":200000,"Rotten Tomatoes Rating":null,"Title":"The Stewardesses"},{"IMDB Rating":3.3,"Production Budget":35000000,"Rotten Tomatoes Rating":13,"Title":"Street Fighter"},{"IMDB Rating":7.8,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek II: The Wrath of Khan"},{"IMDB Rating":8.4,"Production Budget":5500000,"Rotten Tomatoes Rating":91,"Title":"The Sting"},{"IMDB Rating":7,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Stonewall"},{"IMDB Rating":5,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek V: The Final Frontier"},{"IMDB Rating":7.2,"Production Budget":27000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek VI: The Undiscovered Country"},{"IMDB Rating":6.5,"Production Budget":38000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek: Generations"},{"IMDB Rating":6.8,"Production Budget":10000000,"Rotten Tomatoes Rating":88,"Title":"Stripes"},{"IMDB Rating":3.9,"Production Budget":50000000,"Rotten Tomatoes Rating":12,"Title":"Striptease"},{"IMDB Rating":7,"Production Budget":780000,"Rotten Tomatoes Rating":null,"Title":"Saints and Soldiers"},{"IMDB Rating":3.3,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Steppin: The Movie"},{"IMDB Rating":8.3,"Production Budget":1200000,"Rotten Tomatoes Rating":98,"Title":"Strangers on a Train"},{"IMDB Rating":5.3,"Production Budget":10000000,"Rotten Tomatoes Rating":22,"Title":"Sugar Hill"},{"IMDB Rating":6.1,"Production Budget":5700000,"Rotten Tomatoes Rating":29,"Title":"Stiff Upper Lips"},{"IMDB Rating":8.8,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Shichinin no samurai"},{"IMDB Rating":7,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Sweet Charity"},{"IMDB Rating":7.1,"Production Budget":1000000,"Rotten Tomatoes Rating":100,"Title":"Sands of Iwo Jima"},{"IMDB Rating":7.1,"Production Budget":14000000,"Rotten Tomatoes Rating":78,"Title":"The Spy Who Loved Me"},{"IMDB Rating":5.2,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"The Swindle"},{"IMDB Rating":6.2,"Production Budget":200000,"Rotten Tomatoes Rating":86,"Title":"Swingers"},{"IMDB Rating":7.8,"Production Budget":1488000,"Rotten Tomatoes Rating":97,"Title":"Snow White and the Seven Dwarfs"},{"IMDB Rating":7.8,"Production Budget":5000000,"Rotten Tomatoes Rating":100,"Title":"The Sweet Hereafter"},{"IMDB Rating":7.3,"Production Budget":1600000,"Rotten Tomatoes Rating":100,"Title":"She Wore a Yellow Ribbon"},{"IMDB Rating":5,"Production Budget":1100000,"Rotten Tomatoes Rating":39,"Title":"Sex with Strangers"},{"IMDB Rating":4.7,"Production Budget":18000000,"Rotten Tomatoes Rating":7,"Title":"Spy Hard"},{"IMDB Rating":6.9,"Production Budget":23000000,"Rotten Tomatoes Rating":null,"Title":"Shi Yue Wei Cheng"},{"IMDB Rating":6.9,"Production Budget":4500000,"Rotten Tomatoes Rating":null,"Title":"Tango"},{"IMDB Rating":7.1,"Production Budget":34000000,"Rotten Tomatoes Rating":81,"Title":"The Age of Innocence"},{"IMDB Rating":7,"Production Budget":4000000,"Rotten Tomatoes Rating":80,"Title":"Talk Radio"},{"IMDB Rating":6.1,"Production Budget":140000,"Rotten Tomatoes Rating":90,"Title":"The Texas Chainsaw Massacre"},{"IMDB Rating":5.1,"Production Budget":4700000,"Rotten Tomatoes Rating":43,"Title":"The Texas Chainsaw Massacre 2"},{"IMDB Rating":5.5,"Production Budget":28000000,"Rotten Tomatoes Rating":47,"Title":"Timecop"},{"IMDB Rating":6.1,"Production Budget":45000000,"Rotten Tomatoes Rating":69,"Title":"Tin Cup"},{"IMDB Rating":6.6,"Production Budget":3000000,"Rotten Tomatoes Rating":81,"Title":"Torn Curtain"},{"IMDB Rating":6.8,"Production Budget":20000000,"Rotten Tomatoes Rating":87,"Title":"To Die For"},{"IMDB Rating":5.5,"Production Budget":3500000,"Rotten Tomatoes Rating":33,"Title":"Terror Train"},{"IMDB Rating":2.8,"Production Budget":3000000,"Rotten Tomatoes Rating":14,"Title":"Teen Wolf Too"},{"IMDB Rating":5.6,"Production Budget":55000000,"Rotten Tomatoes Rating":40,"Title":"The Fan"},{"IMDB Rating":5.3,"Production Budget":2600000,"Rotten Tomatoes Rating":38,"Title":"Timber Falls"},{"IMDB Rating":5.8,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"The Incredibly True Adventure of Two Girls in Love"},{"IMDB Rating":6.3,"Production Budget":10500000,"Rotten Tomatoes Rating":null,"Title":"There Goes My Baby"},{"IMDB Rating":4.7,"Production Budget":25000000,"Rotten Tomatoes Rating":42,"Title":"Tank Girl"},{"IMDB Rating":6.5,"Production Budget":15000000,"Rotten Tomatoes Rating":45,"Title":"Top Gun"},{"IMDB Rating":7,"Production Budget":9000000,"Rotten Tomatoes Rating":91,"Title":"Thunderball"},{"IMDB Rating":3.4,"Production Budget":2500000,"Rotten Tomatoes Rating":null,"Title":"The Calling"},{"IMDB Rating":5.9,"Production Budget":15000000,"Rotten Tomatoes Rating":45,"Title":"The Craft"},{"IMDB Rating":8.3,"Production Budget":325000,"Rotten Tomatoes Rating":97,"Title":"It Happened One Night"},{"IMDB Rating":5.6,"Production Budget":22000000,"Rotten Tomatoes Rating":33,"Title":"The Net"},{"IMDB Rating":6.1,"Production Budget":3500000,"Rotten Tomatoes Rating":null,"Title":"La otra conquista"},{"IMDB Rating":4.4,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"The Journey"},{"IMDB Rating":7,"Production Budget":4000000,"Rotten Tomatoes Rating":88,"Title":"They Live"},{"IMDB Rating":5.8,"Production Budget":6000000,"Rotten Tomatoes Rating":33,"Title":"Tales from the Hood"},{"IMDB Rating":6.9,"Production Budget":12000000,"Rotten Tomatoes Rating":94,"Title":"Time Bandits"},{"IMDB Rating":7.7,"Production Budget":25000000,"Rotten Tomatoes Rating":77,"Title":"Tombstone"},{"IMDB Rating":5,"Production Budget":825000,"Rotten Tomatoes Rating":22,"Title":"Time Changer"},{"IMDB Rating":5.3,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Teenage Mutant Ninja Turtles II: The Secret of the Ooze"},{"IMDB Rating":4.3,"Production Budget":21000000,"Rotten Tomatoes Rating":30,"Title":"Teenage Mutant Ninja Turtles III"},{"IMDB Rating":5.8,"Production Budget":55000000,"Rotten Tomatoes Rating":39,"Title":"Tango & Cash"},{"IMDB Rating":6.4,"Production Budget":13500000,"Rotten Tomatoes Rating":null,"Title":"Teenage Mutant Ninja Turtles"},{"IMDB Rating":6.2,"Production Budget":4000000,"Rotten Tomatoes Rating":71,"Title":"Topaz"},{"IMDB Rating":6.5,"Production Budget":14000000,"Rotten Tomatoes Rating":79,"Title":"Taps"},{"IMDB Rating":8.2,"Production Budget":3100000,"Rotten Tomatoes Rating":89,"Title":"Trainspotting"},{"IMDB Rating":7.8,"Production Budget":5800000,"Rotten Tomatoes Rating":83,"Title":"The Train"},{"IMDB Rating":4.7,"Production Budget":18000000,"Rotten Tomatoes Rating":8,"Title":"Troop Beverly Hills"},{"IMDB Rating":6.9,"Production Budget":375000,"Rotten Tomatoes Rating":null,"Title":"Trekkies"},{"IMDB Rating":7.2,"Production Budget":100000000,"Rotten Tomatoes Rating":69,"Title":"True Lies"},{"IMDB Rating":8.5,"Production Budget":100000000,"Rotten Tomatoes Rating":98,"Title":"Terminator 2: Judgment Day"},{"IMDB Rating":7.4,"Production Budget":1800000,"Rotten Tomatoes Rating":null,"Title":"Travellers and Magicians"},{"IMDB Rating":8.1,"Production Budget":6400000,"Rotten Tomatoes Rating":100,"Title":"The Terminator"},{"IMDB Rating":7.2,"Production Budget":10000000,"Rotten Tomatoes Rating":88,"Title":"Tremors"},{"IMDB Rating":7.9,"Production Budget":12500000,"Rotten Tomatoes Rating":91,"Title":"True Romance"},{"IMDB Rating":2.9,"Production Budget":17000000,"Rotten Tomatoes Rating":68,"Title":"Tron"},{"IMDB Rating":6.7,"Production Budget":4000000,"Rotten Tomatoes Rating":60,"Title":"Trapeze"},{"IMDB Rating":5.5,"Production Budget":25000,"Rotten Tomatoes Rating":null,"Title":"The Terrorist"},{"IMDB Rating":3.3,"Production Budget":200000,"Rotten Tomatoes Rating":null,"Title":"Trois"},{"IMDB Rating":6.6,"Production Budget":15000000,"Rotten Tomatoes Rating":33,"Title":"Things to Do in Denver when You're Dead"},{"IMDB Rating":7.1,"Production Budget":40000000,"Rotten Tomatoes Rating":68,"Title":"A Time to Kill"},{"IMDB Rating":7.4,"Production Budget":65000000,"Rotten Tomatoes Rating":81,"Title":"Total Recall"},{"IMDB Rating":5.2,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"This Thing of Ours"},{"IMDB Rating":7.4,"Production Budget":15000000,"Rotten Tomatoes Rating":87,"Title":"Tootsie"},{"IMDB Rating":6.7,"Production Budget":2500000,"Rotten Tomatoes Rating":92,"Title":"That Thing You Do!"},{"IMDB Rating":7.2,"Production Budget":1200000,"Rotten Tomatoes Rating":89,"Title":"The Trouble With Harry"},{"IMDB Rating":null,"Production Budget":15000000,"Rotten Tomatoes Rating":33,"Title":"Twins"},{"IMDB Rating":6,"Production Budget":88000000,"Rotten Tomatoes Rating":57,"Title":"Twister"},{"IMDB Rating":8.6,"Production Budget":1000000,"Rotten Tomatoes Rating":98,"Title":"Taxi Driver"},{"IMDB Rating":6,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Tycoon"},{"IMDB Rating":8.2,"Production Budget":30000000,"Rotten Tomatoes Rating":100,"Title":"Toy Story"},{"IMDB Rating":6.3,"Production Budget":10000000,"Rotten Tomatoes Rating":67,"Title":"Twilight Zone: The Movie"},{"IMDB Rating":5.7,"Production Budget":18000000,"Rotten Tomatoes Rating":23,"Title":"Unforgettable"},{"IMDB Rating":6.6,"Production Budget":5000000,"Rotten Tomatoes Rating":55,"Title":"UHF"},{"IMDB Rating":7,"Production Budget":2700000,"Rotten Tomatoes Rating":94,"Title":"Ulee's Gold"},{"IMDB Rating":5.1,"Production Budget":60000000,"Rotten Tomatoes Rating":34,"Title":"Under Siege 2: Dark Territory"},{"IMDB Rating":8,"Production Budget":25000000,"Rotten Tomatoes Rating":81,"Title":"The Untouchables"},{"IMDB Rating":4.9,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Under the Rainbow"},{"IMDB Rating":7.3,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Veer-Zaara"},{"IMDB Rating":7.3,"Production Budget":5952000,"Rotten Tomatoes Rating":null,"Title":"Videodrome"},{"IMDB Rating":6.7,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Les Visiteurs"},{"IMDB Rating":7.3,"Production Budget":2160000,"Rotten Tomatoes Rating":null,"Title":"The Valley of Decision"},{"IMDB Rating":4.3,"Production Budget":14000000,"Rotten Tomatoes Rating":11,"Title":"Vampire in Brooklyn"},{"IMDB Rating":7.7,"Production Budget":16000000,"Rotten Tomatoes Rating":96,"Title":"The Verdict"},{"IMDB Rating":5.3,"Production Budget":30000000,"Rotten Tomatoes Rating":34,"Title":"Virtuosity"},{"IMDB Rating":6.7,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Everything Put Together"},{"IMDB Rating":6.1,"Production Budget":30000000,"Rotten Tomatoes Rating":39,"Title":"A View to a Kill"},{"IMDB Rating":5.6,"Production Budget":6500000,"Rotten Tomatoes Rating":null,"Title":"The Work and the Glory: American Zion"},{"IMDB Rating":6.4,"Production Budget":14000000,"Rotten Tomatoes Rating":74,"Title":"A Walk on the Moon"},{"IMDB Rating":6,"Production Budget":7500000,"Rotten Tomatoes Rating":17,"Title":"The Work and the Glory"},{"IMDB Rating":5.1,"Production Budget":103000,"Rotten Tomatoes Rating":null,"Title":"The Work and the Story"},{"IMDB Rating":7.4,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Waiting for Guffman"},{"IMDB Rating":7.6,"Production Budget":70000000,"Rotten Tomatoes Rating":98,"Title":"Who Framed Roger Rabbit?"},{"IMDB Rating":null,"Production Budget":14000000,"Rotten Tomatoes Rating":67,"Title":"White Fang"},{"IMDB Rating":6.4,"Production Budget":38000000,"Rotten Tomatoes Rating":63,"Title":"White Squall"},{"IMDB Rating":7.8,"Production Budget":11000000,"Rotten Tomatoes Rating":88,"Title":"What's Eating Gilbert Grape"},{"IMDB Rating":5.2,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Witchboard"},{"IMDB Rating":4.5,"Production Budget":24000000,"Rotten Tomatoes Rating":37,"Title":"The Wiz"},{"IMDB Rating":6.5,"Production Budget":1000000,"Rotten Tomatoes Rating":86,"Title":"Walking and Talking"},{"IMDB Rating":8.2,"Production Budget":6000000,"Rotten Tomatoes Rating":97,"Title":"The Wild Bunch"},{"IMDB Rating":7.3,"Production Budget":15000000,"Rotten Tomatoes Rating":78,"Title":"Wall Street"},{"IMDB Rating":7.5,"Production Budget":1200000,"Rotten Tomatoes Rating":89,"Title":"The Wrong Man"},{"IMDB Rating":7.9,"Production Budget":2000000,"Rotten Tomatoes Rating":96,"Title":"Wings"},{"IMDB Rating":5.6,"Production Budget":20000000,"Rotten Tomatoes Rating":50,"Title":"We're No Angels"},{"IMDB Rating":6,"Production Budget":70000000,"Rotten Tomatoes Rating":60,"Title":"Wolf"},{"IMDB Rating":4,"Production Budget":35000000,"Rotten Tomatoes Rating":10,"Title":"Warriors of Virtue"},{"IMDB Rating":6.4,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"War Games"},{"IMDB Rating":5.9,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Warlock"},{"IMDB Rating":6.8,"Production Budget":6000000,"Rotten Tomatoes Rating":50,"Title":"War and Peace"},{"IMDB Rating":4.9,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Warlock: The Armageddon"},{"IMDB Rating":6.5,"Production Budget":15300000,"Rotten Tomatoes Rating":null,"Title":"Wasabi"},{"IMDB Rating":7.7,"Production Budget":6000000,"Rotten Tomatoes Rating":92,"Title":"West Side Story"},{"IMDB Rating":7.3,"Production Budget":800000,"Rotten Tomatoes Rating":null,"Title":"Welcome to the Dollhouse"},{"IMDB Rating":7.6,"Production Budget":12000000,"Rotten Tomatoes Rating":94,"Title":"Witness"},{"IMDB Rating":5.7,"Production Budget":175000000,"Rotten Tomatoes Rating":42,"Title":"Waterworld"},{"IMDB Rating":7.8,"Production Budget":3000000,"Rotten Tomatoes Rating":90,"Title":"Willy Wonka & the Chocolate Factory"},{"IMDB Rating":6.9,"Production Budget":20000000,"Rotten Tomatoes Rating":84,"Title":"Wayne's World"},{"IMDB Rating":6.4,"Production Budget":63000000,"Rotten Tomatoes Rating":42,"Title":"Wyatt Earp"},{"IMDB Rating":8.3,"Production Budget":2777000,"Rotten Tomatoes Rating":null,"Title":"The Wizard of Oz"},{"IMDB Rating":6.3,"Production Budget":55000000,"Rotten Tomatoes Rating":65,"Title":"Executive Decision"},{"IMDB Rating":6.8,"Production Budget":4000000,"Rotten Tomatoes Rating":67,"Title":"Exodus"},{"IMDB Rating":8.1,"Production Budget":12000000,"Rotten Tomatoes Rating":84,"Title":"The Exorcist"},{"IMDB Rating":5.9,"Production Budget":38000000,"Rotten Tomatoes Rating":55,"Title":"Extreme Measures"},{"IMDB Rating":8,"Production Budget":1644000,"Rotten Tomatoes Rating":96,"Title":"You Can't Take It With You"},{"IMDB Rating":5.7,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Eye for an Eye"},{"IMDB Rating":6.6,"Production Budget":13000000,"Rotten Tomatoes Rating":40,"Title":"Young Guns"},{"IMDB Rating":8,"Production Budget":2800000,"Rotten Tomatoes Rating":93,"Title":"Young Frankenstein"},{"IMDB Rating":6.2,"Production Budget":12000000,"Rotten Tomatoes Rating":71,"Title":"Yentl"},{"IMDB Rating":7,"Production Budget":9500000,"Rotten Tomatoes Rating":70,"Title":"You Only Live Twice"},{"IMDB Rating":7.3,"Production Budget":300000,"Rotten Tomatoes Rating":null,"Title":"Ayurveda: Art of Being"},{"IMDB Rating":6.5,"Production Budget":18000000,"Rotten Tomatoes Rating":63,"Title":"Young Sherlock Holmes"},{"IMDB Rating":4.4,"Production Budget":85000000,"Rotten Tomatoes Rating":30,"Title":"102 Dalmatians"},{"IMDB Rating":6.9,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"Ten Things I Hate About You"},{"IMDB Rating":5.8,"Production Budget":105000000,"Rotten Tomatoes Rating":9,"Title":"10,000 B.C."},{"IMDB Rating":6.3,"Production Budget":8000000,"Rotten Tomatoes Rating":19,"Title":"10th & Wolf"},{"IMDB Rating":7.3,"Production Budget":6000000,"Rotten Tomatoes Rating":null,"Title":"11:14"},{"IMDB Rating":7.4,"Production Budget":25000000,"Rotten Tomatoes Rating":76,"Title":"Cloverfield"},{"IMDB Rating":5.4,"Production Budget":20000000,"Rotten Tomatoes Rating":28,"Title":"12 Rounds"},{"IMDB Rating":7.1,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Thirteen Conversations About One Thing"},{"IMDB Rating":6.1,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"13 Going On 30"},{"IMDB Rating":5.1,"Production Budget":19000000,"Rotten Tomatoes Rating":null,"Title":"Thirteen Ghosts"},{"IMDB Rating":6.9,"Production Budget":22500000,"Rotten Tomatoes Rating":78,"Title":1408},{"IMDB Rating":6.1,"Production Budget":42000000,"Rotten Tomatoes Rating":32,"Title":"15 Minutes"},{"IMDB Rating":6.7,"Production Budget":45000000,"Rotten Tomatoes Rating":55,"Title":"16 Blocks"},{"IMDB Rating":5.7,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"One Man's Hero"},{"IMDB Rating":4.7,"Production Budget":30000000,"Rotten Tomatoes Rating":8,"Title":"First Daughter"},{"IMDB Rating":6.2,"Production Budget":200000000,"Rotten Tomatoes Rating":39,"Title":2012},{"IMDB Rating":7.5,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":2046},{"IMDB Rating":4.9,"Production Budget":66000,"Rotten Tomatoes Rating":null,"Title":"20 Dates"},{"IMDB Rating":6.7,"Production Budget":35000000,"Rotten Tomatoes Rating":35,"Title":21},{"IMDB Rating":7.9,"Production Budget":20000000,"Rotten Tomatoes Rating":81,"Title":"21 Grams"},{"IMDB Rating":7.9,"Production Budget":4500000,"Rotten Tomatoes Rating":78,"Title":"25th Hour"},{"IMDB Rating":5.8,"Production Budget":43000000,"Rotten Tomatoes Rating":30,"Title":"28 Days"},{"IMDB Rating":7.6,"Production Budget":15000000,"Rotten Tomatoes Rating":89,"Title":"28 Days Later..."},{"IMDB Rating":7.1,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"28 Weeks Later"},{"IMDB Rating":6,"Production Budget":72000000,"Rotten Tomatoes Rating":77,"Title":"Two Brothers"},{"IMDB Rating":5.7,"Production Budget":37000000,"Rotten Tomatoes Rating":19,"Title":"Cop Out"},{"IMDB Rating":7.3,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Two Lovers"},{"IMDB Rating":7.5,"Production Budget":30000000,"Rotten Tomatoes Rating":60,"Title":"Secondhand Lions"},{"IMDB Rating":5.6,"Production Budget":13000000,"Rotten Tomatoes Rating":43,"Title":"Two Can Play That Game"},{"IMDB Rating":5.8,"Production Budget":60000000,"Rotten Tomatoes Rating":42,"Title":"Two Weeks Notice"},{"IMDB Rating":7.8,"Production Budget":60000000,"Rotten Tomatoes Rating":60,"Title":300},{"IMDB Rating":6.6,"Production Budget":30000000,"Rotten Tomatoes Rating":49,"Title":"30 Days of Night"},{"IMDB Rating":7.3,"Production Budget":48000000,"Rotten Tomatoes Rating":94,"Title":"Three Kings"},{"IMDB Rating":5.6,"Production Budget":62000000,"Rotten Tomatoes Rating":14,"Title":"3000 Miles to Graceland"},{"IMDB Rating":2.9,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"3 Strikes"},{"IMDB Rating":7.9,"Production Budget":48000000,"Rotten Tomatoes Rating":89,"Title":"3:10 to Yuma"},{"IMDB Rating":5.4,"Production Budget":17000000,"Rotten Tomatoes Rating":38,"Title":"40 Days and 40 Nights"},{"IMDB Rating":7.5,"Production Budget":26000000,"Rotten Tomatoes Rating":null,"Title":"The 40 Year-old Virgin"},{"IMDB Rating":6.8,"Production Budget":30000000,"Rotten Tomatoes Rating":52,"Title":"Four Brothers"},{"IMDB Rating":5.7,"Production Budget":80000000,"Rotten Tomatoes Rating":25,"Title":"Four Christmases"},{"IMDB Rating":6.3,"Production Budget":35000000,"Rotten Tomatoes Rating":41,"Title":"The Four Feathers"},{"IMDB Rating":6,"Production Budget":10000000,"Rotten Tomatoes Rating":17,"Title":"The Fourth Kind"},{"IMDB Rating":6.8,"Production Budget":75000000,"Rotten Tomatoes Rating":44,"Title":"50 First Dates"},{"IMDB Rating":6.4,"Production Budget":2000000,"Rotten Tomatoes Rating":60,"Title":"Six-String Samurai"},{"IMDB Rating":5.8,"Production Budget":82000000,"Rotten Tomatoes Rating":40,"Title":"The 6th Day"},{"IMDB Rating":7.6,"Production Budget":54000000,"Rotten Tomatoes Rating":27,"Title":"Seven Pounds"},{"IMDB Rating":5.9,"Production Budget":30000000,"Rotten Tomatoes Rating":5,"Title":"88 Minutes"},{"IMDB Rating":7.3,"Production Budget":40000000,"Rotten Tomatoes Rating":71,"Title":"Eight Below"},{"IMDB Rating":5.4,"Production Budget":30000000,"Rotten Tomatoes Rating":47,"Title":"Eight Legged Freaks"},{"IMDB Rating":6.7,"Production Budget":41000000,"Rotten Tomatoes Rating":74,"Title":"8 Mile"},{"IMDB Rating":7,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"8 femmes"},{"IMDB Rating":7.8,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":9},{"IMDB Rating":5.1,"Production Budget":30000000,"Rotten Tomatoes Rating":4,"Title":"The Whole Ten Yards"},{"IMDB Rating":6.6,"Production Budget":24000000,"Rotten Tomatoes Rating":45,"Title":"The Whole Nine Yards"},{"IMDB Rating":7.4,"Production Budget":27000000,"Rotten Tomatoes Rating":93,"Title":"About a Boy"},{"IMDB Rating":7.3,"Production Budget":45000000,"Rotten Tomatoes Rating":91,"Title":"A Bug's Life"},{"IMDB Rating":4.8,"Production Budget":25000000,"Rotten Tomatoes Rating":17,"Title":"Abandon"},{"IMDB Rating":6.5,"Production Budget":50000000,"Rotten Tomatoes Rating":46,"Title":"Absolute Power"},{"IMDB Rating":6.3,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Adoration"},{"IMDB Rating":7.9,"Production Budget":18500000,"Rotten Tomatoes Rating":91,"Title":"Adaptation"},{"IMDB Rating":6.4,"Production Budget":18000000,"Rotten Tomatoes Rating":40,"Title":"Anything Else"},{"IMDB Rating":7.3,"Production Budget":12500000,"Rotten Tomatoes Rating":79,"Title":"Antwone Fisher"},{"IMDB Rating":8.1,"Production Budget":55000000,"Rotten Tomatoes Rating":10,"Title":"Aeon Flux"},{"IMDB Rating":6.2,"Production Budget":57000000,"Rotten Tomatoes Rating":18,"Title":"After the Sunset"},{"IMDB Rating":6.8,"Production Budget":35000000,"Rotten Tomatoes Rating":24,"Title":"A Good Year"},{"IMDB Rating":7.3,"Production Budget":70000000,"Rotten Tomatoes Rating":null,"Title":"Agora"},{"IMDB Rating":4.6,"Production Budget":3000000,"Rotten Tomatoes Rating":45,"Title":"Air Bud"},{"IMDB Rating":6.3,"Production Budget":85000000,"Rotten Tomatoes Rating":78,"Title":"Air Force One"},{"IMDB Rating":7.6,"Production Budget":8000000,"Rotten Tomatoes Rating":83,"Title":"Akeelah and the Bee"},{"IMDB Rating":6,"Production Budget":55000000,"Rotten Tomatoes Rating":11,"Title":"All the King's Men"},{"IMDB Rating":5.9,"Production Budget":92000000,"Rotten Tomatoes Rating":30,"Title":"The Alamo"},{"IMDB Rating":5.3,"Production Budget":14000000,"Rotten Tomatoes Rating":29,"Title":"All About the Benjamins"},{"IMDB Rating":5.9,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Albino Alligator"},{"IMDB Rating":5.8,"Production Budget":38000000,"Rotten Tomatoes Rating":37,"Title":"Sweet Home Alabama"},{"IMDB Rating":4,"Production Budget":45000000,"Rotten Tomatoes Rating":21,"Title":"Fat Albert"},{"IMDB Rating":6.7,"Production Budget":200000000,"Rotten Tomatoes Rating":51,"Title":"Alice in Wonderland"},{"IMDB Rating":6.1,"Production Budget":40000000,"Rotten Tomatoes Rating":49,"Title":"Alfie"},{"IMDB Rating":7.3,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"It's All Gone Pete Tong"},{"IMDB Rating":6.6,"Production Budget":109000000,"Rotten Tomatoes Rating":67,"Title":"Ali"},{"IMDB Rating":6.2,"Production Budget":60000000,"Rotten Tomatoes Rating":null,"Title":"Alien: Resurrection"},{"IMDB Rating":8.5,"Production Budget":9000000,"Rotten Tomatoes Rating":97,"Title":"Alien"},{"IMDB Rating":6.4,"Production Budget":25000000,"Rotten Tomatoes Rating":41,"Title":"A Lot Like Love"},{"IMDB Rating":5.7,"Production Budget":45000000,"Rotten Tomatoes Rating":32,"Title":"All the Pretty Horses"},{"IMDB Rating":8,"Production Budget":60000000,"Rotten Tomatoes Rating":88,"Title":"Almost Famous"},{"IMDB Rating":5.5,"Production Budget":175000000,"Rotten Tomatoes Rating":23,"Title":"Evan Almighty"},{"IMDB Rating":6.6,"Production Budget":81000000,"Rotten Tomatoes Rating":48,"Title":"Bruce Almighty"},{"IMDB Rating":2.3,"Production Budget":20000000,"Rotten Tomatoes Rating":1,"Title":"Alone in the Dark"},{"IMDB Rating":6.2,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Alpha and Omega 3D"},{"IMDB Rating":6.1,"Production Budget":28000000,"Rotten Tomatoes Rating":32,"Title":"Along Came a Spider"},{"IMDB Rating":6.9,"Production Budget":12000000,"Rotten Tomatoes Rating":77,"Title":"The Dangerous Lives of Altar Boys"},{"IMDB Rating":5.9,"Production Budget":28000000,"Rotten Tomatoes Rating":null,"Title":"Alatriste"},{"IMDB Rating":5.5,"Production Budget":55000000,"Rotten Tomatoes Rating":27,"Title":"Alvin and the Chipmunks"},{"IMDB Rating":5.4,"Production Budget":30000000,"Rotten Tomatoes Rating":11,"Title":"Alex & Emma"},{"IMDB Rating":5.4,"Production Budget":155000000,"Rotten Tomatoes Rating":16,"Title":"Alexander"},{"IMDB Rating":8.6,"Production Budget":15000000,"Rotten Tomatoes Rating":89,"Title":"American Beauty"},{"IMDB Rating":4.5,"Production Budget":20000000,"Rotten Tomatoes Rating":12,"Title":"An American Carol"},{"IMDB Rating":5.7,"Production Budget":17000000,"Rotten Tomatoes Rating":40,"Title":"American Dreamz"},{"IMDB Rating":5.7,"Production Budget":40000000,"Rotten Tomatoes Rating":21,"Title":"Amelia"},{"IMDB Rating":8.5,"Production Budget":10350000,"Rotten Tomatoes Rating":null,"Title":"Le Fabuleux destin d'AmÈlie Poulain"},{"IMDB Rating":8.6,"Production Budget":10000000,"Rotten Tomatoes Rating":83,"Title":"American History X"},{"IMDB Rating":7.9,"Production Budget":100000000,"Rotten Tomatoes Rating":79,"Title":"American Gangster"},{"IMDB Rating":4.9,"Production Budget":14000000,"Rotten Tomatoes Rating":12,"Title":"An American Haunting"},{"IMDB Rating":7.1,"Production Budget":40000000,"Rotten Tomatoes Rating":77,"Title":"Amistad"},{"IMDB Rating":7.2,"Production Budget":6800000,"Rotten Tomatoes Rating":null,"Title":"AimÈe & Jaguar"},{"IMDB Rating":8.1,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Amores Perros"},{"IMDB Rating":6.2,"Production Budget":30000000,"Rotten Tomatoes Rating":52,"Title":"American Pie 2"},{"IMDB Rating":6.1,"Production Budget":55000000,"Rotten Tomatoes Rating":56,"Title":"American Wedding"},{"IMDB Rating":6.9,"Production Budget":12000000,"Rotten Tomatoes Rating":59,"Title":"American Pie"},{"IMDB Rating":7.4,"Production Budget":8000000,"Rotten Tomatoes Rating":66,"Title":"American Psycho"},{"IMDB Rating":7.6,"Production Budget":2000000,"Rotten Tomatoes Rating":94,"Title":"American Splendor"},{"IMDB Rating":5.7,"Production Budget":46000000,"Rotten Tomatoes Rating":32,"Title":"America's Sweethearts"},{"IMDB Rating":5.8,"Production Budget":18500000,"Rotten Tomatoes Rating":24,"Title":"The Amityville Horror"},{"IMDB Rating":4.3,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Anacondas: The Hunt for the Blood Orchid"},{"IMDB Rating":4.2,"Production Budget":45000000,"Rotten Tomatoes Rating":38,"Title":"Anaconda"},{"IMDB Rating":6.6,"Production Budget":53000000,"Rotten Tomatoes Rating":85,"Title":"Anastasia"},{"IMDB Rating":7,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Anchorman: The Legend of Ron Burgundy"},{"IMDB Rating":6.7,"Production Budget":150000000,"Rotten Tomatoes Rating":35,"Title":"Angels & Demons"},{"IMDB Rating":7,"Production Budget":25000000,"Rotten Tomatoes Rating":52,"Title":"Angela's Ashes"},{"IMDB Rating":5.5,"Production Budget":38000000,"Rotten Tomatoes Rating":32,"Title":"Angel Eyes"},{"IMDB Rating":6.1,"Production Budget":56000000,"Rotten Tomatoes Rating":43,"Title":"Anger Management"},{"IMDB Rating":5.7,"Production Budget":17000000,"Rotten Tomatoes Rating":11,"Title":"A Night at the Roxbury"},{"IMDB Rating":4.6,"Production Budget":22000000,"Rotten Tomatoes Rating":30,"Title":"The Animal"},{"IMDB Rating":6.5,"Production Budget":75000000,"Rotten Tomatoes Rating":51,"Title":"Anna and the King"},{"IMDB Rating":5.6,"Production Budget":60000000,"Rotten Tomatoes Rating":27,"Title":"Analyze That"},{"IMDB Rating":6.6,"Production Budget":30000000,"Rotten Tomatoes Rating":68,"Title":"Analyze This"},{"IMDB Rating":6.2,"Production Budget":45000000,"Rotten Tomatoes Rating":63,"Title":"The Ant Bully"},{"IMDB Rating":6,"Production Budget":30000000,"Rotten Tomatoes Rating":25,"Title":"Antitrust"},{"IMDB Rating":6.4,"Production Budget":40000000,"Rotten Tomatoes Rating":55,"Title":"Marie Antoinette"},{"IMDB Rating":6.8,"Production Budget":60000000,"Rotten Tomatoes Rating":95,"Title":"Antz"},{"IMDB Rating":5.9,"Production Budget":23000000,"Rotten Tomatoes Rating":64,"Title":"Anywhere But Here"},{"IMDB Rating":6.8,"Production Budget":20000000,"Rotten Tomatoes Rating":76,"Title":"Appaloosa"},{"IMDB Rating":7.9,"Production Budget":40000000,"Rotten Tomatoes Rating":64,"Title":"Apocalypto"},{"IMDB Rating":7.2,"Production Budget":300000,"Rotten Tomatoes Rating":85,"Title":"Pieces of April"},{"IMDB Rating":7.1,"Production Budget":5000000,"Rotten Tomatoes Rating":91,"Title":"The Apostle"},{"IMDB Rating":4.6,"Production Budget":17000000,"Rotten Tomatoes Rating":52,"Title":"Aquamarine"},{"IMDB Rating":6.6,"Production Budget":15500000,"Rotten Tomatoes Rating":56,"Title":"Ararat"},{"IMDB Rating":4.2,"Production Budget":20000000,"Rotten Tomatoes Rating":12,"Title":"Are We There Yet?"},{"IMDB Rating":7.2,"Production Budget":21500000,"Rotten Tomatoes Rating":60,"Title":"Arlington Road"},{"IMDB Rating":6.1,"Production Budget":140000000,"Rotten Tomatoes Rating":42,"Title":"Armageddon"},{"IMDB Rating":5.3,"Production Budget":10000000,"Rotten Tomatoes Rating":30,"Title":"Hey Arnold! The Movie"},{"IMDB Rating":5.2,"Production Budget":39000000,"Rotten Tomatoes Rating":12,"Title":"Against the Ropes"},{"IMDB Rating":6.2,"Production Budget":90000000,"Rotten Tomatoes Rating":31,"Title":"King Arthur"},{"IMDB Rating":5.9,"Production Budget":80000000,"Rotten Tomatoes Rating":null,"Title":"Arthur et les Minimoys"},{"IMDB Rating":6.9,"Production Budget":90000000,"Rotten Tomatoes Rating":null,"Title":"Artificial Intelligence: AI"},{"IMDB Rating":5.5,"Production Budget":40000000,"Rotten Tomatoes Rating":16,"Title":"The Art of War"},{"IMDB Rating":6.4,"Production Budget":65000000,"Rotten Tomatoes Rating":null,"Title":"Astro Boy"},{"IMDB Rating":7.2,"Production Budget":7000000,"Rotten Tomatoes Rating":88,"Title":"A Serious Man"},{"IMDB Rating":6.4,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"The Astronaut Farmer"},{"IMDB Rating":7.8,"Production Budget":50000000,"Rotten Tomatoes Rating":85,"Title":"As Good as it Gets"},{"IMDB Rating":7.6,"Production Budget":7000000,"Rotten Tomatoes Rating":85,"Title":"A Single Man"},{"IMDB Rating":7.6,"Production Budget":17000000,"Rotten Tomatoes Rating":90,"Title":"A Simple Plan"},{"IMDB Rating":7.4,"Production Budget":30000000,"Rotten Tomatoes Rating":60,"Title":"Assault On Precinct 13"},{"IMDB Rating":4.9,"Production Budget":34000000,"Rotten Tomatoes Rating":16,"Title":"The Astronaut's Wife"},{"IMDB Rating":7.2,"Production Budget":110000000,"Rotten Tomatoes Rating":47,"Title":"The A-Team"},{"IMDB Rating":5.6,"Production Budget":40000000,"Rotten Tomatoes Rating":33,"Title":"At First Sight"},{"IMDB Rating":4.7,"Production Budget":17000000,"Rotten Tomatoes Rating":63,"Title":"ATL"},{"IMDB Rating":6.4,"Production Budget":90000000,"Rotten Tomatoes Rating":null,"Title":"Atlantis: The Lost Empire"},{"IMDB Rating":6.8,"Production Budget":31000000,"Rotten Tomatoes Rating":49,"Title":"Hearts in Atlantis"},{"IMDB Rating":4.8,"Production Budget":40000000,"Rotten Tomatoes Rating":21,"Title":"Autumn in New York"},{"IMDB Rating":7.9,"Production Budget":30000000,"Rotten Tomatoes Rating":83,"Title":"Atonement"},{"IMDB Rating":6.7,"Production Budget":4000000,"Rotten Tomatoes Rating":44,"Title":"The Rules of Attraction"},{"IMDB Rating":7.5,"Production Budget":25000000,"Rotten Tomatoes Rating":37,"Title":"August Rush"},{"IMDB Rating":7.5,"Production Budget":45000000,"Rotten Tomatoes Rating":53,"Title":"Across the Universe"},{"IMDB Rating":6.6,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"Austin Powers: The Spy Who Shagged Me"},{"IMDB Rating":6.2,"Production Budget":63000000,"Rotten Tomatoes Rating":54,"Title":"Austin Powers in Goldmember"},{"IMDB Rating":7.1,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Austin Powers: International Man of Mystery"},{"IMDB Rating":6.8,"Production Budget":78000000,"Rotten Tomatoes Rating":54,"Title":"Australia"},{"IMDB Rating":6.6,"Production Budget":7000000,"Rotten Tomatoes Rating":72,"Title":"Auto Focus"},{"IMDB Rating":8.3,"Production Budget":237000000,"Rotten Tomatoes Rating":83,"Title":"Avatar"},{"IMDB Rating":3.4,"Production Budget":60000000,"Rotten Tomatoes Rating":15,"Title":"The Avengers"},{"IMDB Rating":7.6,"Production Budget":110000000,"Rotten Tomatoes Rating":88,"Title":"The Aviator"},{"IMDB Rating":5.4,"Production Budget":70000000,"Rotten Tomatoes Rating":null,"Title":"AVP: Alien Vs. Predator"},{"IMDB Rating":5.6,"Production Budget":110000000,"Rotten Tomatoes Rating":30,"Title":"Around the World in 80 Days"},{"IMDB Rating":6.5,"Production Budget":8600000,"Rotten Tomatoes Rating":24,"Title":"Awake"},{"IMDB Rating":6.8,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"And When Did You Last See Your Father?"},{"IMDB Rating":7.3,"Production Budget":21000000,"Rotten Tomatoes Rating":66,"Title":"Away We Go"},{"IMDB Rating":6.1,"Production Budget":50000000,"Rotten Tomatoes Rating":23,"Title":"Don't Say a Word"},{"IMDB Rating":6.1,"Production Budget":80000000,"Rotten Tomatoes Rating":61,"Title":"Babe: Pig in the City"},{"IMDB Rating":7.6,"Production Budget":20000000,"Rotten Tomatoes Rating":69,"Title":"Babel"},{"IMDB Rating":5.3,"Production Budget":45000000,"Rotten Tomatoes Rating":7,"Title":"Babylon A.D."},{"IMDB Rating":4,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"My Baby's Daddy"},{"IMDB Rating":1.4,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Super Babies: Baby Geniuses 2"},{"IMDB Rating":2.2,"Production Budget":13000000,"Rotten Tomatoes Rating":2,"Title":"Baby Geniuses"},{"IMDB Rating":6.2,"Production Budget":130000000,"Rotten Tomatoes Rating":24,"Title":"Bad Boys II"},{"IMDB Rating":5.3,"Production Budget":70000000,"Rotten Tomatoes Rating":10,"Title":"Bad Company"},{"IMDB Rating":7.5,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"La mala educaciÛn"},{"IMDB Rating":null,"Production Budget":25000000,"Rotten Tomatoes Rating":87,"Title":"Bad Lieutenant: Port of Call New Orleans"},{"IMDB Rating":7.1,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"The Bad News Bears"},{"IMDB Rating":7.2,"Production Budget":37000000,"Rotten Tomatoes Rating":78,"Title":"Burn After Reading"},{"IMDB Rating":5.6,"Production Budget":35000000,"Rotten Tomatoes Rating":26,"Title":"Bait"},{"IMDB Rating":4.9,"Production Budget":16000000,"Rotten Tomatoes Rating":11,"Title":"Boys and Girls"},{"IMDB Rating":6.6,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Black and White"},{"IMDB Rating":5.4,"Production Budget":45000000,"Rotten Tomatoes Rating":9,"Title":"Bangkok Dangerous"},{"IMDB Rating":5.5,"Production Budget":10000000,"Rotten Tomatoes Rating":47,"Title":"The Banger Sisters"},{"IMDB Rating":7.8,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Les invasions barbares"},{"IMDB Rating":2.1,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Barney's Great Adventure"},{"IMDB Rating":3.9,"Production Budget":70000000,"Rotten Tomatoes Rating":7,"Title":"Basic Instinct 2"},{"IMDB Rating":6.3,"Production Budget":50000000,"Rotten Tomatoes Rating":21,"Title":"Basic"},{"IMDB Rating":8.3,"Production Budget":150000000,"Rotten Tomatoes Rating":84,"Title":"Batman Begins"},{"IMDB Rating":2.3,"Production Budget":80000000,"Rotten Tomatoes Rating":null,"Title":"Battlefield Earth: A Saga of the Year 3000"},{"IMDB Rating":8.9,"Production Budget":185000000,"Rotten Tomatoes Rating":93,"Title":"The Dark Knight"},{"IMDB Rating":3.3,"Production Budget":6500000,"Rotten Tomatoes Rating":17,"Title":"Bats"},{"IMDB Rating":6.1,"Production Budget":1000000,"Rotten Tomatoes Rating":43,"Title":"The Battle of Shaker Heights"},{"IMDB Rating":6.1,"Production Budget":16000000,"Rotten Tomatoes Rating":69,"Title":"Baby Boy"},{"IMDB Rating":8,"Production Budget":160000000,"Rotten Tomatoes Rating":72,"Title":"The Curious Case of Benjamin Button"},{"IMDB Rating":4.8,"Production Budget":40000000,"Rotten Tomatoes Rating":3,"Title":"Bless the Child"},{"IMDB Rating":4.8,"Production Budget":21000000,"Rotten Tomatoes Rating":9,"Title":"The Bachelor"},{"IMDB Rating":6.6,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"The Broken Hearts Club: A Romantic Comedy"},{"IMDB Rating":5.6,"Production Budget":75000000,"Rotten Tomatoes Rating":30,"Title":"Be Cool"},{"IMDB Rating":4.7,"Production Budget":30000000,"Rotten Tomatoes Rating":40,"Title":"Big Daddy"},{"IMDB Rating":5.9,"Production Budget":48000000,"Rotten Tomatoes Rating":49,"Title":"Bedazzled"},{"IMDB Rating":7.2,"Production Budget":67500000,"Rotten Tomatoes Rating":52,"Title":"Body of Lies"},{"IMDB Rating":8,"Production Budget":100000000,"Rotten Tomatoes Rating":62,"Title":"Blood Diamond"},{"IMDB Rating":6,"Production Budget":25000000,"Rotten Tomatoes Rating":50,"Title":"Mr. Bean's Holiday"},{"IMDB Rating":4.4,"Production Budget":9000000,"Rotten Tomatoes Rating":15,"Title":"Beautiful"},{"IMDB Rating":6.6,"Production Budget":12000000,"Rotten Tomatoes Rating":71,"Title":"Beavis and Butt-head Do America"},{"IMDB Rating":6.9,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Bend it Like Beckham"},{"IMDB Rating":7.5,"Production Budget":1700000,"Rotten Tomatoes Rating":93,"Title":"In the Bedroom"},{"IMDB Rating":6.3,"Production Budget":150000000,"Rotten Tomatoes Rating":51,"Title":"Bee Movie"},{"IMDB Rating":7.9,"Production Budget":13000000,"Rotten Tomatoes Rating":92,"Title":"Being John Malkovich"},{"IMDB Rating":6.1,"Production Budget":40000000,"Rotten Tomatoes Rating":36,"Title":"Behind Enemy Lines"},{"IMDB Rating":7.3,"Production Budget":3300000,"Rotten Tomatoes Rating":null,"Title":"Bella"},{"IMDB Rating":5.3,"Production Budget":53000000,"Rotten Tomatoes Rating":77,"Title":"Beloved"},{"IMDB Rating":7.7,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Les Triplettes de Belleville"},{"IMDB Rating":7.2,"Production Budget":500000,"Rotten Tomatoes Rating":82,"Title":"Beyond the Mat"},{"IMDB Rating":5.4,"Production Budget":35000000,"Rotten Tomatoes Rating":12,"Title":"The Benchwarmers"},{"IMDB Rating":4.4,"Production Budget":150000000,"Rotten Tomatoes Rating":7,"Title":"The Last Airbender"},{"IMDB Rating":6.6,"Production Budget":150000000,"Rotten Tomatoes Rating":70,"Title":"Beowulf"},{"IMDB Rating":6.7,"Production Budget":15000000,"Rotten Tomatoes Rating":58,"Title":"The Importance of Being Earnest"},{"IMDB Rating":5.3,"Production Budget":25000000,"Rotten Tomatoes Rating":38,"Title":"Beauty Shop"},{"IMDB Rating":7.1,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"Better Luck Tomorrow"},{"IMDB Rating":5.2,"Production Budget":15000000,"Rotten Tomatoes Rating":43,"Title":"Big Fat Liar"},{"IMDB Rating":8.1,"Production Budget":70000000,"Rotten Tomatoes Rating":77,"Title":"Big Fish"},{"IMDB Rating":8,"Production Budget":2000000,"Rotten Tomatoes Rating":95,"Title":"Before Sunset"},{"IMDB Rating":5.8,"Production Budget":13000000,"Rotten Tomatoes Rating":41,"Title":"The Big Hit"},{"IMDB Rating":6,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"Birthday Girl"},{"IMDB Rating":8.2,"Production Budget":15000000,"Rotten Tomatoes Rating":78,"Title":"The Big Lebowski"},{"IMDB Rating":4.7,"Production Budget":33000000,"Rotten Tomatoes Rating":30,"Title":"Big Momma's House"},{"IMDB Rating":7.7,"Production Budget":95000000,"Rotten Tomatoes Rating":76,"Title":"Black Hawk Down"},{"IMDB Rating":4.6,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Eye of the Beholder"},{"IMDB Rating":4.8,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"The Big Bounce"},{"IMDB Rating":6.3,"Production Budget":45000000,"Rotten Tomatoes Rating":48,"Title":"Big Trouble"},{"IMDB Rating":7.7,"Production Budget":5000000,"Rotten Tomatoes Rating":85,"Title":"Billy Elliot"},{"IMDB Rating":6.4,"Production Budget":90000000,"Rotten Tomatoes Rating":38,"Title":"Bicentennial Man"},{"IMDB Rating":6.3,"Production Budget":20000000,"Rotten Tomatoes Rating":39,"Title":"Birth"},{"IMDB Rating":7,"Production Budget":16500000,"Rotten Tomatoes Rating":58,"Title":"Becoming Jane"},{"IMDB Rating":5.6,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"Bridget Jones: The Edge Of Reason"},{"IMDB Rating":6.8,"Production Budget":25000000,"Rotten Tomatoes Rating":80,"Title":"Bridget Jones's Diary"},{"IMDB Rating":7.5,"Production Budget":20000000,"Rotten Tomatoes Rating":79,"Title":"The Bank Job"},{"IMDB Rating":7,"Production Budget":45000000,"Rotten Tomatoes Rating":55,"Title":"Blade"},{"IMDB Rating":6.2,"Production Budget":600000,"Rotten Tomatoes Rating":85,"Title":"The Blair Witch Project"},{"IMDB Rating":6.4,"Production Budget":35000000,"Rotten Tomatoes Rating":60,"Title":"Blast from the Past"},{"IMDB Rating":5.5,"Production Budget":54000000,"Rotten Tomatoes Rating":null,"Title":"Blade 2"},{"IMDB Rating":5.7,"Production Budget":65000000,"Rotten Tomatoes Rating":null,"Title":"Blade: Trinity"},{"IMDB Rating":6.5,"Production Budget":61000000,"Rotten Tomatoes Rating":69,"Title":"Blades of Glory"},{"IMDB Rating":7.7,"Production Budget":35000000,"Rotten Tomatoes Rating":66,"Title":"The Blind Side"},{"IMDB Rating":6.3,"Production Budget":50000000,"Rotten Tomatoes Rating":54,"Title":"Blood Work"},{"IMDB Rating":8,"Production Budget":22000000,"Rotten Tomatoes Rating":null,"Title":"Zwartboek"},{"IMDB Rating":4.3,"Production Budget":9000000,"Rotten Tomatoes Rating":15,"Title":"Black Christmas"},{"IMDB Rating":7.1,"Production Budget":15000000,"Rotten Tomatoes Rating":66,"Title":"Black Snake Moan"},{"IMDB Rating":6.6,"Production Budget":25000000,"Rotten Tomatoes Rating":42,"Title":"Blindness"},{"IMDB Rating":6.2,"Production Budget":18000000,"Rotten Tomatoes Rating":67,"Title":"Legally Blonde"},{"IMDB Rating":6.1,"Production Budget":26000000,"Rotten Tomatoes Rating":61,"Title":"Blood and Wine"},{"IMDB Rating":7.4,"Production Budget":30000000,"Rotten Tomatoes Rating":54,"Title":"Blow"},{"IMDB Rating":3.4,"Production Budget":70000000,"Rotten Tomatoes Rating":null,"Title":"Ballistic: Ecks vs. Sever"},{"IMDB Rating":5.5,"Production Budget":30000000,"Rotten Tomatoes Rating":62,"Title":"Blue Crush"},{"IMDB Rating":6.3,"Production Budget":10000000,"Rotten Tomatoes Rating":47,"Title":"Bamboozled"},{"IMDB Rating":8,"Production Budget":78000000,"Rotten Tomatoes Rating":78,"Title":"A Beautiful Mind"},{"IMDB Rating":4,"Production Budget":40000000,"Rotten Tomatoes Rating":6,"Title":"Big Momma's House 2"},{"IMDB Rating":7.8,"Production Budget":7000000,"Rotten Tomatoes Rating":19,"Title":"The Boondock Saints"},{"IMDB Rating":5.6,"Production Budget":35000000,"Rotten Tomatoes Rating":62,"Title":"Bandidas"},{"IMDB Rating":6.5,"Production Budget":75000000,"Rotten Tomatoes Rating":63,"Title":"Bandits"},{"IMDB Rating":7.1,"Production Budget":14000000,"Rotten Tomatoes Rating":46,"Title":"Bobby"},{"IMDB Rating":6.9,"Production Budget":80000000,"Rotten Tomatoes Rating":47,"Title":"The Book of Eli"},{"IMDB Rating":3.9,"Production Budget":20000000,"Rotten Tomatoes Rating":13,"Title":"Boogeyman"},{"IMDB Rating":7.4,"Production Budget":150000000,"Rotten Tomatoes Rating":88,"Title":"Bolt"},{"IMDB Rating":6.7,"Production Budget":40000000,"Rotten Tomatoes Rating":41,"Title":"The Other Boleyn Girl"},{"IMDB Rating":6.3,"Production Budget":48000000,"Rotten Tomatoes Rating":27,"Title":"The Bone Collector"},{"IMDB Rating":3.9,"Production Budget":10000000,"Rotten Tomatoes Rating":22,"Title":"Bones"},{"IMDB Rating":6.5,"Production Budget":20000000,"Rotten Tomatoes Rating":76,"Title":"Bon Voyage"},{"IMDB Rating":7.9,"Production Budget":15000000,"Rotten Tomatoes Rating":92,"Title":"Boogie Nights"},{"IMDB Rating":7.7,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Borat"},{"IMDB Rating":7.7,"Production Budget":60000000,"Rotten Tomatoes Rating":82,"Title":"The Bourne Identity"},{"IMDB Rating":7.6,"Production Budget":85000000,"Rotten Tomatoes Rating":81,"Title":"The Bourne Supremacy"},{"IMDB Rating":8.2,"Production Budget":130000000,"Rotten Tomatoes Rating":93,"Title":"The Bourne Ultimatum"},{"IMDB Rating":5.6,"Production Budget":29000000,"Rotten Tomatoes Rating":null,"Title":"The Borrowers"},{"IMDB Rating":4.3,"Production Budget":14000000,"Rotten Tomatoes Rating":9,"Title":"My Boss's Daughter"},{"IMDB Rating":5.5,"Production Budget":35000000,"Rotten Tomatoes Rating":51,"Title":"Bounce"},{"IMDB Rating":8.2,"Production Budget":3000000,"Rotten Tomatoes Rating":96,"Title":"Bowling for Columbine"},{"IMDB Rating":7.6,"Production Budget":2000000,"Rotten Tomatoes Rating":88,"Title":"Boys Don't Cry"},{"IMDB Rating":7.8,"Production Budget":12500000,"Rotten Tomatoes Rating":null,"Title":"The Boy in the Striped Pyjamas"},{"IMDB Rating":5.2,"Production Budget":52000000,"Rotten Tomatoes Rating":22,"Title":"Bulletproof Monk"},{"IMDB Rating":6.2,"Production Budget":38000000,"Rotten Tomatoes Rating":52,"Title":"Heartbreakers"},{"IMDB Rating":6.2,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Bride & Prejudice"},{"IMDB Rating":6.2,"Production Budget":60000000,"Rotten Tomatoes Rating":14,"Title":"Beyond Borders"},{"IMDB Rating":5,"Production Budget":30000000,"Rotten Tomatoes Rating":12,"Title":"Bride Wars"},{"IMDB Rating":4.3,"Production Budget":12000000,"Rotten Tomatoes Rating":25,"Title":"Breakfast of Champions"},{"IMDB Rating":7.1,"Production Budget":1000000,"Rotten Tomatoes Rating":71,"Title":"Brigham City"},{"IMDB Rating":7.5,"Production Budget":450000,"Rotten Tomatoes Rating":null,"Title":"Brick"},{"IMDB Rating":6.8,"Production Budget":32000000,"Rotten Tomatoes Rating":71,"Title":"Bringing Out The Dead"},{"IMDB Rating":null,"Production Budget":36000000,"Rotten Tomatoes Rating":79,"Title":"Breakdown"},{"IMDB Rating":6.9,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Brooklyn's Finest"},{"IMDB Rating":7.8,"Production Budget":13900000,"Rotten Tomatoes Rating":87,"Title":"Brokeback Mountain"},{"IMDB Rating":5.3,"Production Budget":9000000,"Rotten Tomatoes Rating":33,"Title":"Breakin' All the Rules"},{"IMDB Rating":5.9,"Production Budget":52000000,"Rotten Tomatoes Rating":null,"Title":"The Break Up"},{"IMDB Rating":3.5,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"An Alan Smithee Film: Burn Hollywood Burn"},{"IMDB Rating":6.4,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"Brooklyn Rules"},{"IMDB Rating":6.9,"Production Budget":9000000,"Rotten Tomatoes Rating":67,"Title":"Boiler Room"},{"IMDB Rating":5.2,"Production Budget":10000000,"Rotten Tomatoes Rating":15,"Title":"The Brothers Solomon"},{"IMDB Rating":2.8,"Production Budget":6000000,"Rotten Tomatoes Rating":63,"Title":"The Brothers"},{"IMDB Rating":6,"Production Budget":8000000,"Rotten Tomatoes Rating":64,"Title":"Brown Sugar"},{"IMDB Rating":7.1,"Production Budget":8500000,"Rotten Tomatoes Rating":null,"Title":"Bright Star"},{"IMDB Rating":7.1,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Brother"},{"IMDB Rating":8.1,"Production Budget":15000000,"Rotten Tomatoes Rating":80,"Title":"In Bruges"},{"IMDB Rating":4.9,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"The Brown Bunny"},{"IMDB Rating":5.5,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Barbershop 2: Back in Business"},{"IMDB Rating":6.2,"Production Budget":12000000,"Rotten Tomatoes Rating":82,"Title":"Barbershop"},{"IMDB Rating":7.4,"Production Budget":6000000,"Rotten Tomatoes Rating":94,"Title":"Best in Show"},{"IMDB Rating":7.3,"Production Budget":18000000,"Rotten Tomatoes Rating":77,"Title":"Bad Santa"},{"IMDB Rating":8.4,"Production Budget":70000000,"Rotten Tomatoes Rating":88,"Title":"Inglourious Basterds"},{"IMDB Rating":5.9,"Production Budget":36000000,"Rotten Tomatoes Rating":35,"Title":"Blue Streak"},{"IMDB Rating":7.8,"Production Budget":13000000,"Rotten Tomatoes Rating":33,"Title":"The Butterfly Effect"},{"IMDB Rating":3.5,"Production Budget":125000000,"Rotten Tomatoes Rating":11,"Title":"Batman & Robin"},{"IMDB Rating":4.7,"Production Budget":15000000,"Rotten Tomatoes Rating":7,"Title":"Boat Trip"},{"IMDB Rating":7.3,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Bubba Ho-Tep"},{"IMDB Rating":4.6,"Production Budget":1600000,"Rotten Tomatoes Rating":null,"Title":"Bubble"},{"IMDB Rating":5.4,"Production Budget":13000000,"Rotten Tomatoes Rating":30,"Title":"Bubble Boy"},{"IMDB Rating":7.3,"Production Budget":1500000,"Rotten Tomatoes Rating":78,"Title":"Buffalo '66"},{"IMDB Rating":6.9,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Buffalo Soldiers"},{"IMDB Rating":6.8,"Production Budget":30000000,"Rotten Tomatoes Rating":75,"Title":"Bulworth"},{"IMDB Rating":null,"Production Budget":25100000,"Rotten Tomatoes Rating":60,"Title":"W."},{"IMDB Rating":6.4,"Production Budget":55000000,"Rotten Tomatoes Rating":79,"Title":"Bowfinger"},{"IMDB Rating":4.8,"Production Budget":80000000,"Rotten Tomatoes Rating":24,"Title":"Bewitched"},{"IMDB Rating":null,"Production Budget":51000000,"Rotten Tomatoes Rating":23,"Title":"Barnyard: The Original Party Animals"},{"IMDB Rating":6.6,"Production Budget":24000000,"Rotten Tomatoes Rating":42,"Title":"Beyond the Sea"},{"IMDB Rating":5.4,"Production Budget":1500000,"Rotten Tomatoes Rating":null,"Title":"Cabin Fever"},{"IMDB Rating":5.5,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"CachÈ"},{"IMDB Rating":6.7,"Production Budget":12000000,"Rotten Tomatoes Rating":67,"Title":"Cadillac Records"},{"IMDB Rating":6.2,"Production Budget":10000000,"Rotten Tomatoes Rating":44,"Title":"Can't Hardly Wait"},{"IMDB Rating":7.6,"Production Budget":7000000,"Rotten Tomatoes Rating":90,"Title":"Capote"},{"IMDB Rating":7,"Production Budget":1600000,"Rotten Tomatoes Rating":null,"Title":"Sukkar banat"},{"IMDB Rating":null,"Production Budget":190000000,"Rotten Tomatoes Rating":53,"Title":"Disney's A Christmas Carol"},{"IMDB Rating":4.3,"Production Budget":21000000,"Rotten Tomatoes Rating":16,"Title":"The Rage: Carrie 2"},{"IMDB Rating":7.5,"Production Budget":70000000,"Rotten Tomatoes Rating":74,"Title":"Cars"},{"IMDB Rating":7.5,"Production Budget":85000000,"Rotten Tomatoes Rating":89,"Title":"Cast Away"},{"IMDB Rating":5.7,"Production Budget":52000000,"Rotten Tomatoes Rating":96,"Title":"Catch Me if You Can"},{"IMDB Rating":3.4,"Production Budget":109000000,"Rotten Tomatoes Rating":null,"Title":"The Cat in the Hat"},{"IMDB Rating":6.9,"Production Budget":32000000,"Rotten Tomatoes Rating":67,"Title":"Cats Don't Dance"},{"IMDB Rating":3.2,"Production Budget":100000000,"Rotten Tomatoes Rating":10,"Title":"Catwoman"},{"IMDB Rating":5.9,"Production Budget":10000000,"Rotten Tomatoes Rating":51,"Title":"Cecil B. Demented"},{"IMDB Rating":3.8,"Production Budget":20000000,"Rotten Tomatoes Rating":27,"Title":"The Country Bears"},{"IMDB Rating":6.2,"Production Budget":18000000,"Rotten Tomatoes Rating":42,"Title":"Center Stage"},{"IMDB Rating":6,"Production Budget":12000000,"Rotten Tomatoes Rating":53,"Title":"Critical Care"},{"IMDB Rating":6,"Production Budget":20000000,"Rotten Tomatoes Rating":44,"Title":"Connie & Carla"},{"IMDB Rating":5.2,"Production Budget":85000000,"Rotten Tomatoes Rating":null,"Title":"Collateral Damage"},{"IMDB Rating":4.6,"Production Budget":25000000,"Rotten Tomatoes Rating":12,"Title":"Crocodile Dundee in Los Angeles"},{"IMDB Rating":6.1,"Production Budget":12000000,"Rotten Tomatoes Rating":41,"Title":"Celebrity"},{"IMDB Rating":6.2,"Production Budget":35000000,"Rotten Tomatoes Rating":46,"Title":"The Cell"},{"IMDB Rating":6.5,"Production Budget":45000000,"Rotten Tomatoes Rating":54,"Title":"Cellular"},{"IMDB Rating":6.4,"Production Budget":38000000,"Rotten Tomatoes Rating":53,"Title":"City of Ember"},{"IMDB Rating":7.1,"Production Budget":150000000,"Rotten Tomatoes Rating":82,"Title":"Charlie and the Chocolate Factory"},{"IMDB Rating":6.8,"Production Budget":14000000,"Rotten Tomatoes Rating":76,"Title":"Catch a Fire"},{"IMDB Rating":4.7,"Production Budget":120000000,"Rotten Tomatoes Rating":null,"Title":"Charlie's Angels: Full Throttle"},{"IMDB Rating":5.5,"Production Budget":90000000,"Rotten Tomatoes Rating":67,"Title":"Charlie's Angels"},{"IMDB Rating":7.5,"Production Budget":250000,"Rotten Tomatoes Rating":91,"Title":"Chasing Amy"},{"IMDB Rating":7.2,"Production Budget":30000000,"Rotten Tomatoes Rating":88,"Title":"Chicago"},{"IMDB Rating":5.8,"Production Budget":60000000,"Rotten Tomatoes Rating":36,"Title":"Chicken Little"},{"IMDB Rating":7.3,"Production Budget":42000000,"Rotten Tomatoes Rating":96,"Title":"Chicken Run"},{"IMDB Rating":5.6,"Production Budget":40000000,"Rotten Tomatoes Rating":24,"Title":"Cheaper by the Dozen"},{"IMDB Rating":5.2,"Production Budget":60000000,"Rotten Tomatoes Rating":7,"Title":"Cheaper by the Dozen 2"},{"IMDB Rating":6.1,"Production Budget":23000000,"Rotten Tomatoes Rating":54,"Title":"Cheri"},{"IMDB Rating":4.9,"Production Budget":34000000,"Rotten Tomatoes Rating":7,"Title":"Chill Factor"},{"IMDB Rating":5.3,"Production Budget":25000000,"Rotten Tomatoes Rating":43,"Title":"Bride of Chucky"},{"IMDB Rating":5.1,"Production Budget":29000000,"Rotten Tomatoes Rating":32,"Title":"Seed of Chucky"},{"IMDB Rating":8.1,"Production Budget":76000000,"Rotten Tomatoes Rating":93,"Title":"Children of Men"},{"IMDB Rating":6.5,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"Chloe"},{"IMDB Rating":6.2,"Production Budget":45000000,"Rotten Tomatoes Rating":27,"Title":"Love in the Time of Cholera"},{"IMDB Rating":7.3,"Production Budget":25000000,"Rotten Tomatoes Rating":62,"Title":"Chocolat"},{"IMDB Rating":6.9,"Production Budget":20000000,"Rotten Tomatoes Rating":31,"Title":"The Children of Huang Shi"},{"IMDB Rating":7.8,"Production Budget":5500000,"Rotten Tomatoes Rating":null,"Title":"Les Choristes"},{"IMDB Rating":2.1,"Production Budget":7000000,"Rotten Tomatoes Rating":14,"Title":"Chairman of the Board"},{"IMDB Rating":6.5,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"Chuck&Buck"},{"IMDB Rating":7,"Production Budget":6800000,"Rotten Tomatoes Rating":34,"Title":"The Chumscrubber"},{"IMDB Rating":6.7,"Production Budget":82500000,"Rotten Tomatoes Rating":78,"Title":"Charlotte's Web"},{"IMDB Rating":8,"Production Budget":88000000,"Rotten Tomatoes Rating":80,"Title":"Cinderella Man"},{"IMDB Rating":5.4,"Production Budget":19000000,"Rotten Tomatoes Rating":10,"Title":"A Cinderella Story"},{"IMDB Rating":6.4,"Production Budget":55000000,"Rotten Tomatoes Rating":59,"Title":"City of Angels"},{"IMDB Rating":6.4,"Production Budget":60000000,"Rotten Tomatoes Rating":61,"Title":"A Civil Action"},{"IMDB Rating":3.2,"Production Budget":16000000,"Rotten Tomatoes Rating":5,"Title":"The Cookout"},{"IMDB Rating":6.5,"Production Budget":13000000,"Rotten Tomatoes Rating":63,"Title":"The Claim"},{"IMDB Rating":5.5,"Production Budget":65000000,"Rotten Tomatoes Rating":null,"Title":"The Santa Clause 2"},{"IMDB Rating":7.3,"Production Budget":80000000,"Rotten Tomatoes Rating":70,"Title":"Cold Mountain"},{"IMDB Rating":5,"Production Budget":82500000,"Rotten Tomatoes Rating":32,"Title":"Click"},{"IMDB Rating":4,"Production Budget":20000000,"Rotten Tomatoes Rating":4,"Title":"Code Name: The Cleaner"},{"IMDB Rating":6.2,"Production Budget":12000000,"Rotten Tomatoes Rating":53,"Title":"Welcome to Collinwood"},{"IMDB Rating":2.9,"Production Budget":35000000,"Rotten Tomatoes Rating":68,"Title":"Closer"},{"IMDB Rating":7.7,"Production Budget":5000000,"Rotten Tomatoes Rating":63,"Title":"Clerks II"},{"IMDB Rating":4.6,"Production Budget":55000000,"Rotten Tomatoes Rating":39,"Title":"Maid in Manhattan"},{"IMDB Rating":6.7,"Production Budget":75000000,"Rotten Tomatoes Rating":57,"Title":"It's Complicated"},{"IMDB Rating":6.2,"Production Budget":15000000,"Rotten Tomatoes Rating":69,"Title":"The Company"},{"IMDB Rating":6.7,"Production Budget":75000000,"Rotten Tomatoes Rating":46,"Title":"Constantine"},{"IMDB Rating":6.9,"Production Budget":9000000,"Rotten Tomatoes Rating":76,"Title":"The Contender"},{"IMDB Rating":7.6,"Production Budget":6250000,"Rotten Tomatoes Rating":null,"Title":"Die F‰lscher"},{"IMDB Rating":7.8,"Production Budget":6400000,"Rotten Tomatoes Rating":87,"Title":"Control"},{"IMDB Rating":6.5,"Production Budget":15000000,"Rotten Tomatoes Rating":55,"Title":"Centurion"},{"IMDB Rating":7.1,"Production Budget":45000000,"Rotten Tomatoes Rating":65,"Title":"Coach Carter"},{"IMDB Rating":7.1,"Production Budget":29000000,"Rotten Tomatoes Rating":79,"Title":"Confessions of a Dangerous Mind"},{"IMDB Rating":6.5,"Production Budget":23000000,"Rotten Tomatoes Rating":null,"Title":"Coco avant Chanel"},{"IMDB Rating":6.3,"Production Budget":7500000,"Rotten Tomatoes Rating":null,"Title":"Code 46"},{"IMDB Rating":4.1,"Production Budget":26000000,"Rotten Tomatoes Rating":null,"Title":"Agent Cody Banks 2: Destination London"},{"IMDB Rating":5.1,"Production Budget":25000000,"Rotten Tomatoes Rating":38,"Title":"Agent Cody Banks"},{"IMDB Rating":7.8,"Production Budget":60000000,"Rotten Tomatoes Rating":86,"Title":"Collateral"},{"IMDB Rating":4.3,"Production Budget":6000000,"Rotten Tomatoes Rating":5,"Title":"College"},{"IMDB Rating":5,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Company Man"},{"IMDB Rating":6.2,"Production Budget":6000000,"Rotten Tomatoes Rating":83,"Title":"Come Early Morning"},{"IMDB Rating":6.6,"Production Budget":80000000,"Rotten Tomatoes Rating":57,"Title":"Con Air"},{"IMDB Rating":6.8,"Production Budget":15000000,"Rotten Tomatoes Rating":71,"Title":"Confidence"},{"IMDB Rating":6.5,"Production Budget":80000000,"Rotten Tomatoes Rating":51,"Title":"Conspiracy Theory"},{"IMDB Rating":7.3,"Production Budget":90000000,"Rotten Tomatoes Rating":67,"Title":"Contact"},{"IMDB Rating":7,"Production Budget":4000000,"Rotten Tomatoes Rating":77,"Title":"The Cooler"},{"IMDB Rating":6.8,"Production Budget":11000000,"Rotten Tomatoes Rating":null,"Title":"Copying Beethoven"},{"IMDB Rating":4.2,"Production Budget":11000000,"Rotten Tomatoes Rating":5,"Title":"Corky Romano"},{"IMDB Rating":7.8,"Production Budget":60000000,"Rotten Tomatoes Rating":89,"Title":"Coraline"},{"IMDB Rating":4.3,"Production Budget":15000000,"Rotten Tomatoes Rating":13,"Title":"Confessions of a Teenage Drama Queen"},{"IMDB Rating":4.8,"Production Budget":20000000,"Rotten Tomatoes Rating":3,"Title":"The Covenant"},{"IMDB Rating":6.9,"Production Budget":15000000,"Rotten Tomatoes Rating":71,"Title":"Cop Land"},{"IMDB Rating":5.5,"Production Budget":60000000,"Rotten Tomatoes Rating":12,"Title":"Couples Retreat"},{"IMDB Rating":6.7,"Production Budget":32000000,"Rotten Tomatoes Rating":64,"Title":"Cradle Will Rock"},{"IMDB Rating":7.1,"Production Budget":12000000,"Rotten Tomatoes Rating":61,"Title":"Crank"},{"IMDB Rating":6.1,"Production Budget":10000000,"Rotten Tomatoes Rating":65,"Title":"Crash"},{"IMDB Rating":6.7,"Production Budget":20000000,"Rotten Tomatoes Rating":71,"Title":"The Crazies"},{"IMDB Rating":5.7,"Production Budget":15000000,"Rotten Tomatoes Rating":31,"Title":"Crazy in Alabama"},{"IMDB Rating":6,"Production Budget":23000000,"Rotten Tomatoes Rating":19,"Title":"The Crew"},{"IMDB Rating":5.4,"Production Budget":25000000,"Rotten Tomatoes Rating":26,"Title":"Cradle 2 the Grave"},{"IMDB Rating":4.2,"Production Budget":15000000,"Rotten Tomatoes Rating":2,"Title":"The In Crowd"},{"IMDB Rating":5.8,"Production Budget":10000000,"Rotten Tomatoes Rating":48,"Title":"The Corruptor"},{"IMDB Rating":7,"Production Budget":45000000,"Rotten Tomatoes Rating":null,"Title":"Man cheng jin dai huang jin jia"},{"IMDB Rating":6.1,"Production Budget":6500000,"Rotten Tomatoes Rating":75,"Title":"Crash"},{"IMDB Rating":1.7,"Production Budget":5600000,"Rotten Tomatoes Rating":3,"Title":"Crossover"},{"IMDB Rating":6.6,"Production Budget":12000000,"Rotten Tomatoes Rating":14,"Title":"Crossroads"},{"IMDB Rating":7.6,"Production Budget":40000000,"Rotten Tomatoes Rating":74,"Title":"The Count of Monte Cristo"},{"IMDB Rating":6.7,"Production Budget":11000000,"Rotten Tomatoes Rating":47,"Title":"Cruel Intentions"},{"IMDB Rating":6.2,"Production Budget":11500000,"Rotten Tomatoes Rating":14,"Title":"The Cry of the Owl"},{"IMDB Rating":6.4,"Production Budget":1000000,"Rotten Tomatoes Rating":24,"Title":"Cry Wolf"},{"IMDB Rating":7.4,"Production Budget":8500000,"Rotten Tomatoes Rating":92,"Title":"Crazy Heart"},{"IMDB Rating":6.3,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"crazy/beautiful"},{"IMDB Rating":6.5,"Production Budget":60000000,"Rotten Tomatoes Rating":52,"Title":"The Last Castle"},{"IMDB Rating":5,"Production Budget":26000000,"Rotten Tomatoes Rating":28,"Title":"Clockstoppers"},{"IMDB Rating":4.7,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Catch That Kid"},{"IMDB Rating":5.2,"Production Budget":60000000,"Rotten Tomatoes Rating":53,"Title":"Cats & Dogs"},{"IMDB Rating":6.6,"Production Budget":8300000,"Rotten Tomatoes Rating":40,"Title":"The City of Your Final Destination"},{"IMDB Rating":8.8,"Production Budget":3300000,"Rotten Tomatoes Rating":null,"Title":"Cidade de Deus"},{"IMDB Rating":5.9,"Production Budget":17500000,"Rotten Tomatoes Rating":null,"Title":"City of Ghosts"},{"IMDB Rating":6.1,"Production Budget":40000000,"Rotten Tomatoes Rating":48,"Title":"City by the Sea"},{"IMDB Rating":7.1,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"The Cube"},{"IMDB Rating":5.3,"Production Budget":45000000,"Rotten Tomatoes Rating":21,"Title":"Coyote Ugly"},{"IMDB Rating":6.7,"Production Budget":50000000,"Rotten Tomatoes Rating":69,"Title":"Curious George"},{"IMDB Rating":4.8,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"Cursed"},{"IMDB Rating":4.9,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Civil Brand"},{"IMDB Rating":7.2,"Production Budget":100000000,"Rotten Tomatoes Rating":86,"Title":"Cloudy with a Chance of Meatballs"},{"IMDB Rating":7.3,"Production Budget":75000000,"Rotten Tomatoes Rating":81,"Title":"Charlie Wilson's War"},{"IMDB Rating":null,"Production Budget":7000000,"Rotten Tomatoes Rating":81,"Title":"Cyrus"},{"IMDB Rating":2.4,"Production Budget":76000000,"Rotten Tomatoes Rating":1,"Title":"Daddy Day Camp"},{"IMDB Rating":5.5,"Production Budget":60000000,"Rotten Tomatoes Rating":28,"Title":"Daddy Day Care"},{"IMDB Rating":5.6,"Production Budget":60000000,"Rotten Tomatoes Rating":33,"Title":"The Black Dahlia"},{"IMDB Rating":4.9,"Production Budget":5500000,"Rotten Tomatoes Rating":16,"Title":"Diary of a Mad Black Woman"},{"IMDB Rating":3.4,"Production Budget":25000000,"Rotten Tomatoes Rating":17,"Title":"Dance Flick"},{"IMDB Rating":null,"Production Budget":2300000,"Rotten Tomatoes Rating":80,"Title":"Dancer, Texas Pop. 81"},{"IMDB Rating":5.5,"Production Budget":80000000,"Rotten Tomatoes Rating":44,"Title":"Daredevil"},{"IMDB Rating":7.8,"Production Budget":27000000,"Rotten Tomatoes Rating":77,"Title":"Dark City"},{"IMDB Rating":8.3,"Production Budget":4500000,"Rotten Tomatoes Rating":84,"Title":"Donnie Darko"},{"IMDB Rating":5.6,"Production Budget":60000000,"Rotten Tomatoes Rating":46,"Title":"Dark Water"},{"IMDB Rating":5.7,"Production Budget":24000000,"Rotten Tomatoes Rating":52,"Title":"Win a Date with Tad Hamilton!"},{"IMDB Rating":2.6,"Production Budget":20000000,"Rotten Tomatoes Rating":6,"Title":"Date Movie"},{"IMDB Rating":6.5,"Production Budget":55000000,"Rotten Tomatoes Rating":67,"Title":"Date Night"},{"IMDB Rating":7.4,"Production Budget":28000000,"Rotten Tomatoes Rating":76,"Title":"Dawn of the Dead"},{"IMDB Rating":6.6,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Daybreakers"},{"IMDB Rating":4.5,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Day of the Dead"},{"IMDB Rating":7.6,"Production Budget":15000000,"Rotten Tomatoes Rating":79,"Title":"The Great Debaters"},{"IMDB Rating":6,"Production Budget":40000000,"Rotten Tomatoes Rating":25,"Title":"Double Jeopardy"},{"IMDB Rating":7.4,"Production Budget":19700000,"Rotten Tomatoes Rating":null,"Title":"Der Baader Meinhof Komplex"},{"IMDB Rating":5.6,"Production Budget":60000000,"Rotten Tomatoes Rating":57,"Title":"Deep Blue Sea"},{"IMDB Rating":5.1,"Production Budget":8000000,"Rotten Tomatoes Rating":26,"Title":"Drive Me Crazy"},{"IMDB Rating":7.8,"Production Budget":12500000,"Rotten Tomatoes Rating":68,"Title":"Dancer in the Dark"},{"IMDB Rating":6,"Production Budget":2750000,"Rotten Tomatoes Rating":null,"Title":"Diary of the Dead"},{"IMDB Rating":7,"Production Budget":25000000,"Rotten Tomatoes Rating":28,"Title":"Dear John"},{"IMDB Rating":6.6,"Production Budget":8000000,"Rotten Tomatoes Rating":37,"Title":"Dear Wendy"},{"IMDB Rating":5.1,"Production Budget":3500000,"Rotten Tomatoes Rating":null,"Title":"D.E.B.S."},{"IMDB Rating":7.2,"Production Budget":20000000,"Rotten Tomatoes Rating":70,"Title":"Deconstructing Harry"},{"IMDB Rating":5.5,"Production Budget":50000000,"Rotten Tomatoes Rating":22,"Title":"Mr. Deeds"},{"IMDB Rating":6,"Production Budget":40000000,"Rotten Tomatoes Rating":42,"Title":"The Deep End of the Ocean"},{"IMDB Rating":5.7,"Production Budget":45000000,"Rotten Tomatoes Rating":30,"Title":"Deep Rising"},{"IMDB Rating":null,"Production Budget":7000000,"Rotten Tomatoes Rating":71,"Title":"Definitely, Maybe"},{"IMDB Rating":5.1,"Production Budget":21000000,"Rotten Tomatoes Rating":38,"Title":"Death at a Funeral"},{"IMDB Rating":7,"Production Budget":80000000,"Rotten Tomatoes Rating":null,"Title":"DÈj‡ Vu"},{"IMDB Rating":4.4,"Production Budget":40000000,"Rotten Tomatoes Rating":12,"Title":"Delgo"},{"IMDB Rating":7.7,"Production Budget":69000000,"Rotten Tomatoes Rating":80,"Title":"Despicable Me"},{"IMDB Rating":4.3,"Production Budget":22000000,"Rotten Tomatoes Rating":10,"Title":"Deuce Bigalow: European Gigolo"},{"IMDB Rating":5.6,"Production Budget":18000000,"Rotten Tomatoes Rating":23,"Title":"Deuce Bigalow: Male Gigolo"},{"IMDB Rating":5.8,"Production Budget":90000000,"Rotten Tomatoes Rating":29,"Title":"The Devil's Own"},{"IMDB Rating":4.6,"Production Budget":7000000,"Rotten Tomatoes Rating":8,"Title":"Darkness Falls"},{"IMDB Rating":5.9,"Production Budget":50000000,"Rotten Tomatoes Rating":56,"Title":"Defiance"},{"IMDB Rating":5.9,"Production Budget":7000000,"Rotten Tomatoes Rating":17,"Title":"A Dog of Flanders"},{"IMDB Rating":5.8,"Production Budget":60000000,"Rotten Tomatoes Rating":7,"Title":"Dragonfly"},{"IMDB Rating":6.8,"Production Budget":3300000,"Rotten Tomatoes Rating":73,"Title":"The Dead Girl"},{"IMDB Rating":6.1,"Production Budget":13000000,"Rotten Tomatoes Rating":70,"Title":"Dick"},{"IMDB Rating":7.5,"Production Budget":110000000,"Rotten Tomatoes Rating":82,"Title":"Live Free or Die Hard"},{"IMDB Rating":4.6,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Digimon: The Movie"},{"IMDB Rating":4.8,"Production Budget":13000000,"Rotten Tomatoes Rating":17,"Title":"Dirty Work"},{"IMDB Rating":7.1,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Banlieue 13"},{"IMDB Rating":1.7,"Production Budget":20000000,"Rotten Tomatoes Rating":2,"Title":"Disaster Movie"},{"IMDB Rating":8.3,"Production Budget":30000000,"Rotten Tomatoes Rating":91,"Title":"District 9"},{"IMDB Rating":5.2,"Production Budget":15000000,"Rotten Tomatoes Rating":30,"Title":"Disturbing Behavior"},{"IMDB Rating":8,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"Le Scaphandre et le Papillon"},{"IMDB Rating":6.6,"Production Budget":15000000,"Rotten Tomatoes Rating":57,"Title":"Dark Blue"},{"IMDB Rating":5.8,"Production Budget":3250000,"Rotten Tomatoes Rating":null,"Title":"Dreaming of Joseph Lees"},{"IMDB Rating":6.5,"Production Budget":4000000,"Rotten Tomatoes Rating":49,"Title":"De-Lovely"},{"IMDB Rating":3.9,"Production Budget":10000000,"Rotten Tomatoes Rating":26,"Title":"Madea's Family Reunion"},{"IMDB Rating":5.6,"Production Budget":14000000,"Rotten Tomatoes Rating":15,"Title":"Dead Man on Campus"},{"IMDB Rating":5.3,"Production Budget":16000000,"Rotten Tomatoes Rating":29,"Title":"Drowning Mona"},{"IMDB Rating":5.3,"Production Budget":11900000,"Rotten Tomatoes Rating":26,"Title":"Diamonds"},{"IMDB Rating":6,"Production Budget":33000000,"Rotten Tomatoes Rating":48,"Title":"Doomsday"},{"IMDB Rating":5.4,"Production Budget":750000,"Rotten Tomatoes Rating":null,"Title":"Donkey Punch"},{"IMDB Rating":6.2,"Production Budget":127500000,"Rotten Tomatoes Rating":65,"Title":"Dinosaur"},{"IMDB Rating":4.9,"Production Budget":30000000,"Rotten Tomatoes Rating":34,"Title":"DOA: Dead or Alive"},{"IMDB Rating":2.5,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Doogal"},{"IMDB Rating":7.3,"Production Budget":10000000,"Rotten Tomatoes Rating":68,"Title":"Dogma"},{"IMDB Rating":5.3,"Production Budget":53000000,"Rotten Tomatoes Rating":24,"Title":"Domestic Disturbance"},{"IMDB Rating":5.9,"Production Budget":50000000,"Rotten Tomatoes Rating":19,"Title":"Domino"},{"IMDB Rating":7.7,"Production Budget":35000000,"Rotten Tomatoes Rating":87,"Title":"Donnie Brasco"},{"IMDB Rating":5.2,"Production Budget":70000000,"Rotten Tomatoes Rating":19,"Title":"Doom"},{"IMDB Rating":null,"Production Budget":20000000,"Rotten Tomatoes Rating":78,"Title":"Doubt"},{"IMDB Rating":4.8,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Doug's 1st Movie"},{"IMDB Rating":6.1,"Production Budget":13500000,"Rotten Tomatoes Rating":null,"Title":"Downfall"},{"IMDB Rating":6.6,"Production Budget":3000000,"Rotten Tomatoes Rating":81,"Title":"The Deep End"},{"IMDB Rating":6,"Production Budget":80000000,"Rotten Tomatoes Rating":47,"Title":"Deep Impact"},{"IMDB Rating":8.5,"Production Budget":90000000,"Rotten Tomatoes Rating":93,"Title":"The Departed"},{"IMDB Rating":4.8,"Production Budget":28000000,"Rotten Tomatoes Rating":15,"Title":"Dracula 2000"},{"IMDB Rating":6.6,"Production Budget":65000000,"Rotten Tomatoes Rating":41,"Title":"Death Race"},{"IMDB Rating":7.1,"Production Budget":30000000,"Rotten Tomatoes Rating":92,"Title":"Drag Me To Hell"},{"IMDB Rating":3.4,"Production Budget":22000000,"Rotten Tomatoes Rating":20,"Title":"Derailed"},{"IMDB Rating":6,"Production Budget":72000000,"Rotten Tomatoes Rating":null,"Title":"Doctor Dolittle 2"},{"IMDB Rating":5.2,"Production Budget":71500000,"Rotten Tomatoes Rating":null,"Title":"Doctor Dolittle"},{"IMDB Rating":5.5,"Production Budget":17000000,"Rotten Tomatoes Rating":null,"Title":"Dickie Roberts: Former Child Star"},{"IMDB Rating":5.9,"Production Budget":40000000,"Rotten Tomatoes Rating":26,"Title":"Drillbit Taylor"},{"IMDB Rating":6.7,"Production Budget":4700000,"Rotten Tomatoes Rating":48,"Title":"Driving Lessons"},{"IMDB Rating":4.2,"Production Budget":72000000,"Rotten Tomatoes Rating":13,"Title":"Driven"},{"IMDB Rating":5.3,"Production Budget":10600000,"Rotten Tomatoes Rating":4,"Title":"Darkness"},{"IMDB Rating":5.2,"Production Budget":34000000,"Rotten Tomatoes Rating":9,"Title":"I Dreamed of Africa"},{"IMDB Rating":5.3,"Production Budget":68000000,"Rotten Tomatoes Rating":30,"Title":"Dreamcatcher"},{"IMDB Rating":6.6,"Production Budget":75000000,"Rotten Tomatoes Rating":78,"Title":"Dreamgirls"},{"IMDB Rating":6.4,"Production Budget":16000000,"Rotten Tomatoes Rating":47,"Title":"Detroit Rock City"},{"IMDB Rating":6.2,"Production Budget":10000000,"Rotten Tomatoes Rating":45,"Title":"Drop Dead Gorgeous"},{"IMDB Rating":5.2,"Production Budget":20000000,"Rotten Tomatoes Rating":81,"Title":"Drumline"},{"IMDB Rating":7.2,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Dinner Rush"},{"IMDB Rating":7.4,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"The Descent"},{"IMDB Rating":5.9,"Production Budget":3000000,"Rotten Tomatoes Rating":43,"Title":"DysFunkTional Family"},{"IMDB Rating":3,"Production Budget":16000000,"Rotten Tomatoes Rating":2,"Title":"The Master of Disguise"},{"IMDB Rating":6,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Desert Blue"},{"IMDB Rating":7,"Production Budget":20000000,"Rotten Tomatoes Rating":68,"Title":"Disturbia"},{"IMDB Rating":6.8,"Production Budget":24000000,"Rotten Tomatoes Rating":12,"Title":"Double Take"},{"IMDB Rating":5.1,"Production Budget":20000000,"Rotten Tomatoes Rating":61,"Title":"Death at a Funeral"},{"IMDB Rating":6.3,"Production Budget":800000,"Rotten Tomatoes Rating":45,"Title":"Deterrence"},{"IMDB Rating":7.5,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Dirty Pretty Things"},{"IMDB Rating":3.6,"Production Budget":22000000,"Rotten Tomatoes Rating":14,"Title":"Dudley Do-Right"},{"IMDB Rating":5.7,"Production Budget":16000000,"Rotten Tomatoes Rating":21,"Title":"Duets"},{"IMDB Rating":4.7,"Production Budget":53000000,"Rotten Tomatoes Rating":13,"Title":"The Dukes of Hazzard"},{"IMDB Rating":7.2,"Production Budget":12000000,"Rotten Tomatoes Rating":93,"Title":"Duma"},{"IMDB Rating":3.3,"Production Budget":30000000,"Rotten Tomatoes Rating":10,"Title":"Dumb and Dumberer: When Harry Met Lloyd"},{"IMDB Rating":3.6,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"Dungeons and Dragons"},{"IMDB Rating":5.7,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Duplex"},{"IMDB Rating":6.1,"Production Budget":54000000,"Rotten Tomatoes Rating":21,"Title":"You, Me and Dupree"},{"IMDB Rating":6.4,"Production Budget":125000000,"Rotten Tomatoes Rating":25,"Title":"The Da Vinci Code"},{"IMDB Rating":3.8,"Production Budget":32000000,"Rotten Tomatoes Rating":null,"Title":"D-War"},{"IMDB Rating":5.3,"Production Budget":10000000,"Rotten Tomatoes Rating":3,"Title":"Deuces Wild"},{"IMDB Rating":5,"Production Budget":30000000,"Rotten Tomatoes Rating":19,"Title":"Down to Earth"},{"IMDB Rating":4.4,"Production Budget":9000000,"Rotten Tomatoes Rating":3,"Title":"Down to You"},{"IMDB Rating":7.1,"Production Budget":20000000,"Rotten Tomatoes Rating":76,"Title":"I'm Not There"},{"IMDB Rating":7.7,"Production Budget":8000000,"Rotten Tomatoes Rating":80,"Title":"Easy A"},{"IMDB Rating":6.2,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"The Eclipse"},{"IMDB Rating":6.7,"Production Budget":60000000,"Rotten Tomatoes Rating":55,"Title":"Edge of Darkness"},{"IMDB Rating":6,"Production Budget":60000000,"Rotten Tomatoes Rating":62,"Title":"EDtv"},{"IMDB Rating":7.5,"Production Budget":7500000,"Rotten Tomatoes Rating":94,"Title":"An Education"},{"IMDB Rating":6.7,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"East is East"},{"IMDB Rating":4.8,"Production Budget":3000000,"Rotten Tomatoes Rating":11,"Title":"8 Heads in a Duffel Bag"},{"IMDB Rating":6.6,"Production Budget":80000000,"Rotten Tomatoes Rating":27,"Title":"Eagle Eye"},{"IMDB Rating":6.3,"Production Budget":40000000,"Rotten Tomatoes Rating":22,"Title":"8MM"},{"IMDB Rating":5.8,"Production Budget":5500000,"Rotten Tomatoes Rating":79,"Title":"Iris"},{"IMDB Rating":7.4,"Production Budget":8500000,"Rotten Tomatoes Rating":92,"Title":"Election"},{"IMDB Rating":4.9,"Production Budget":65000000,"Rotten Tomatoes Rating":10,"Title":"Elektra"},{"IMDB Rating":6.8,"Production Budget":32000000,"Rotten Tomatoes Rating":84,"Title":"Elf"},{"IMDB Rating":7.6,"Production Budget":25000000,"Rotten Tomatoes Rating":81,"Title":"Elizabeth"},{"IMDB Rating":6.3,"Production Budget":35000000,"Rotten Tomatoes Rating":49,"Title":"Ella Enchanted"},{"IMDB Rating":6.2,"Production Budget":29000000,"Rotten Tomatoes Rating":68,"Title":"Once Upon a Time in Mexico"},{"IMDB Rating":5.4,"Production Budget":17000000,"Rotten Tomatoes Rating":76,"Title":"The Adventures of Elmo in Grouchland"},{"IMDB Rating":6.7,"Production Budget":12500000,"Rotten Tomatoes Rating":50,"Title":"The Emperor's Club"},{"IMDB Rating":6.5,"Production Budget":3500000,"Rotten Tomatoes Rating":21,"Title":"Empire"},{"IMDB Rating":7.8,"Production Budget":3400000,"Rotten Tomatoes Rating":null,"Title":"La marche de l'empereur"},{"IMDB Rating":5.4,"Production Budget":10000000,"Rotten Tomatoes Rating":20,"Title":"Employee of the Month"},{"IMDB Rating":7.4,"Production Budget":100000000,"Rotten Tomatoes Rating":85,"Title":"The Emperor's New Groove"},{"IMDB Rating":7.5,"Production Budget":85000000,"Rotten Tomatoes Rating":92,"Title":"Enchanted"},{"IMDB Rating":6.9,"Production Budget":23000000,"Rotten Tomatoes Rating":67,"Title":"The End of the Affair"},{"IMDB Rating":5.4,"Production Budget":100000000,"Rotten Tomatoes Rating":11,"Title":"End of Days"},{"IMDB Rating":6.7,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"End of the Spear"},{"IMDB Rating":7.4,"Production Budget":85000000,"Rotten Tomatoes Rating":53,"Title":"Enemy at the Gates"},{"IMDB Rating":7.2,"Production Budget":85000000,"Rotten Tomatoes Rating":70,"Title":"Enemy of the State"},{"IMDB Rating":6.1,"Production Budget":66000000,"Rotten Tomatoes Rating":38,"Title":"Entrapment"},{"IMDB Rating":6.5,"Production Budget":38000000,"Rotten Tomatoes Rating":21,"Title":"Enough"},{"IMDB Rating":4.6,"Production Budget":20000000,"Rotten Tomatoes Rating":7,"Title":"Envy"},{"IMDB Rating":2.2,"Production Budget":20000000,"Rotten Tomatoes Rating":2,"Title":"Epic Movie"},{"IMDB Rating":5,"Production Budget":100000000,"Rotten Tomatoes Rating":16,"Title":"Eragon"},{"IMDB Rating":7.2,"Production Budget":50000000,"Rotten Tomatoes Rating":83,"Title":"Erin Brockovich"},{"IMDB Rating":6.4,"Production Budget":54000000,"Rotten Tomatoes Rating":28,"Title":"Elizabethtown"},{"IMDB Rating":4.7,"Production Budget":60000000,"Rotten Tomatoes Rating":37,"Title":"Eat Pray Love"},{"IMDB Rating":8.5,"Production Budget":20000000,"Rotten Tomatoes Rating":93,"Title":"Eternal Sunshine of the Spotless Mind"},{"IMDB Rating":6.6,"Production Budget":10000000,"Rotten Tomatoes Rating":32,"Title":"Eulogy"},{"IMDB Rating":7.9,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Eureka"},{"IMDB Rating":6.5,"Production Budget":25000000,"Rotten Tomatoes Rating":46,"Title":"Eurotrip"},{"IMDB Rating":7,"Production Budget":5000000,"Rotten Tomatoes Rating":80,"Title":"Eve's Bayou"},{"IMDB Rating":6.3,"Production Budget":60000000,"Rotten Tomatoes Rating":21,"Title":"Event Horizon"},{"IMDB Rating":6.1,"Production Budget":55000000,"Rotten Tomatoes Rating":61,"Title":"Evita"},{"IMDB Rating":5.9,"Production Budget":80000000,"Rotten Tomatoes Rating":42,"Title":"Evolution"},{"IMDB Rating":6,"Production Budget":4000000,"Rotten Tomatoes Rating":49,"Title":"An Everlasting Piece"},{"IMDB Rating":7.3,"Production Budget":4500000,"Rotten Tomatoes Rating":null,"Title":"Fong juk"},{"IMDB Rating":5.2,"Production Budget":33000000,"Rotten Tomatoes Rating":33,"Title":"Exit Wounds"},{"IMDB Rating":6.8,"Production Budget":18000000,"Rotten Tomatoes Rating":45,"Title":"The Exorcism of Emily Rose"},{"IMDB Rating":5,"Production Budget":78000000,"Rotten Tomatoes Rating":null,"Title":"Exorcist: The Beginning"},{"IMDB Rating":7.1,"Production Budget":37500000,"Rotten Tomatoes Rating":61,"Title":"The Express"},{"IMDB Rating":6.8,"Production Budget":20700000,"Rotten Tomatoes Rating":71,"Title":"eXistenZ"},{"IMDB Rating":6.4,"Production Budget":7500000,"Rotten Tomatoes Rating":62,"Title":"Extract"},{"IMDB Rating":4.1,"Production Budget":40000000,"Rotten Tomatoes Rating":6,"Title":"Extreme Ops"},{"IMDB Rating":7.2,"Production Budget":65000000,"Rotten Tomatoes Rating":78,"Title":"Eyes Wide Shut"},{"IMDB Rating":6.3,"Production Budget":15000000,"Rotten Tomatoes Rating":51,"Title":"The Faculty"},{"IMDB Rating":5.6,"Production Budget":50000000,"Rotten Tomatoes Rating":25,"Title":"Failure to Launch"},{"IMDB Rating":6.5,"Production Budget":29000000,"Rotten Tomatoes Rating":68,"Title":"Keeping the Faith"},{"IMDB Rating":4.5,"Production Budget":18000000,"Rotten Tomatoes Rating":25,"Title":"Fame"},{"IMDB Rating":6.3,"Production Budget":18000000,"Rotten Tomatoes Rating":52,"Title":"The Family Stone"},{"IMDB Rating":7.5,"Production Budget":13500000,"Rotten Tomatoes Rating":89,"Title":"Far From Heaven"},{"IMDB Rating":2.5,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Fascination"},{"IMDB Rating":4.8,"Production Budget":85000000,"Rotten Tomatoes Rating":null,"Title":"Father's Day"},{"IMDB Rating":6,"Production Budget":100000,"Rotten Tomatoes Rating":9,"Title":"Facing the Giants"},{"IMDB Rating":7.3,"Production Budget":80000000,"Rotten Tomatoes Rating":93,"Title":"Face/Off"},{"IMDB Rating":6.4,"Production Budget":26000000,"Rotten Tomatoes Rating":47,"Title":"Final Destination 2"},{"IMDB Rating":5.9,"Production Budget":25000000,"Rotten Tomatoes Rating":45,"Title":"Final Destination 3"},{"IMDB Rating":4.9,"Production Budget":40000000,"Rotten Tomatoes Rating":27,"Title":"The Final Destination"},{"IMDB Rating":3.1,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"FearDotCom"},{"IMDB Rating":7.6,"Production Budget":18500000,"Rotten Tomatoes Rating":47,"Title":"Fear and Loathing in Las Vegas"},{"IMDB Rating":6.4,"Production Budget":3200000,"Rotten Tomatoes Rating":55,"Title":"Feast"},{"IMDB Rating":7.4,"Production Budget":95000000,"Rotten Tomatoes Rating":72,"Title":"The Fifth Element"},{"IMDB Rating":6.3,"Production Budget":35000000,"Rotten Tomatoes Rating":48,"Title":"Femme Fatale"},{"IMDB Rating":5.9,"Production Budget":10000000,"Rotten Tomatoes Rating":63,"Title":"Bring it On"},{"IMDB Rating":5.7,"Production Budget":87500000,"Rotten Tomatoes Rating":27,"Title":"Fantastic Four"},{"IMDB Rating":5.6,"Production Budget":13000000,"Rotten Tomatoes Rating":13,"Title":54},{"IMDB Rating":5.1,"Production Budget":76000000,"Rotten Tomatoes Rating":36,"Title":"2 Fast 2 Furious"},{"IMDB Rating":6,"Production Budget":38000000,"Rotten Tomatoes Rating":53,"Title":"The Fast and the Furious"},{"IMDB Rating":7.6,"Production Budget":72500000,"Rotten Tomatoes Rating":null,"Title":"Fool's Gold"},{"IMDB Rating":7.6,"Production Budget":6000000,"Rotten Tomatoes Rating":83,"Title":"Fahrenheit 9/11"},{"IMDB Rating":7.3,"Production Budget":20000000,"Rotten Tomatoes Rating":75,"Title":"Capitalism: A Love Story"},{"IMDB Rating":6.8,"Production Budget":35000000,"Rotten Tomatoes Rating":57,"Title":"From Hell"},{"IMDB Rating":6.9,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"Fido"},{"IMDB Rating":8.8,"Production Budget":65000000,"Rotten Tomatoes Rating":81,"Title":"Fight Club"},{"IMDB Rating":6.4,"Production Budget":137000000,"Rotten Tomatoes Rating":null,"Title":"Final Fantasy: The Spirits Within"},{"IMDB Rating":7.2,"Production Budget":43000000,"Rotten Tomatoes Rating":74,"Title":"Finding Forrester"},{"IMDB Rating":4,"Production Budget":15000000,"Rotten Tomatoes Rating":11,"Title":"Freddy Got Fingered"},{"IMDB Rating":4.4,"Production Budget":19000000,"Rotten Tomatoes Rating":null,"Title":"Firestorm"},{"IMDB Rating":7.5,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Fish Tank"},{"IMDB Rating":6.9,"Production Budget":15000000,"Rotten Tomatoes Rating":88,"Title":"Felicia's Journey"},{"IMDB Rating":1.6,"Production Budget":12000000,"Rotten Tomatoes Rating":8,"Title":"From Justin to Kelly"},{"IMDB Rating":6.8,"Production Budget":23000000,"Rotten Tomatoes Rating":31,"Title":"Final Destination"},{"IMDB Rating":7.2,"Production Budget":53000000,"Rotten Tomatoes Rating":73,"Title":"Flags of Our Fathers"},{"IMDB Rating":6.7,"Production Budget":27000000,"Rotten Tomatoes Rating":43,"Title":"Flawless"},{"IMDB Rating":7.2,"Production Budget":9000000,"Rotten Tomatoes Rating":null,"Title":"Flammen og Citronen"},{"IMDB Rating":5.7,"Production Budget":15000000,"Rotten Tomatoes Rating":54,"Title":"Flicka"},{"IMDB Rating":6,"Production Budget":75000000,"Rotten Tomatoes Rating":30,"Title":"Flight of the Phoenix"},{"IMDB Rating":7.8,"Production Budget":18000000,"Rotten Tomatoes Rating":91,"Title":"United 93"},{"IMDB Rating":4.6,"Production Budget":80000000,"Rotten Tomatoes Rating":17,"Title":"Flubber"},{"IMDB Rating":7,"Production Budget":149000000,"Rotten Tomatoes Rating":72,"Title":"Flushed Away"},{"IMDB Rating":6.5,"Production Budget":60000000,"Rotten Tomatoes Rating":33,"Title":"Flyboys"},{"IMDB Rating":4.7,"Production Budget":25000000,"Rotten Tomatoes Rating":17,"Title":"Fly Me To the Moon"},{"IMDB Rating":7.1,"Production Budget":13000000,"Rotten Tomatoes Rating":60,"Title":"Find Me Guilty"},{"IMDB Rating":6.6,"Production Budget":60000000,"Rotten Tomatoes Rating":52,"Title":"The Family Man"},{"IMDB Rating":6.1,"Production Budget":6500000,"Rotten Tomatoes Rating":71,"Title":"Friends with Money"},{"IMDB Rating":8.2,"Production Budget":94000000,"Rotten Tomatoes Rating":98,"Title":"Finding Nemo"},{"IMDB Rating":null,"Production Budget":500000,"Rotten Tomatoes Rating":35,"Title":"Finishing the Game"},{"IMDB Rating":7.4,"Production Budget":35000000,"Rotten Tomatoes Rating":51,"Title":"The Fountain"},{"IMDB Rating":null,"Production Budget":120000000,"Rotten Tomatoes Rating":36,"Title":"Fantastic Four: Rise of the Silver Surfer"},{"IMDB Rating":4.1,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Farce of the Penguins"},{"IMDB Rating":6.2,"Production Budget":55000000,"Rotten Tomatoes Rating":38,"Title":"Flightplan"},{"IMDB Rating":7.3,"Production Budget":11000000,"Rotten Tomatoes Rating":74,"Title":"Frailty"},{"IMDB Rating":6.7,"Production Budget":55000000,"Rotten Tomatoes Rating":64,"Title":"The Forbidden Kingdom"},{"IMDB Rating":7.5,"Production Budget":21000000,"Rotten Tomatoes Rating":69,"Title":"Freedom Writers"},{"IMDB Rating":5.3,"Production Budget":9500000,"Rotten Tomatoes Rating":21,"Title":"Next Friday"},{"IMDB Rating":6.5,"Production Budget":26000000,"Rotten Tomatoes Rating":88,"Title":"Freaky Friday"},{"IMDB Rating":7.3,"Production Budget":31000000,"Rotten Tomatoes Rating":69,"Title":"Frequency"},{"IMDB Rating":8,"Production Budget":39000000,"Rotten Tomatoes Rating":81,"Title":"Serenity"},{"IMDB Rating":4.9,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"The Forgotton"},{"IMDB Rating":4.4,"Production Budget":14000000,"Rotten Tomatoes Rating":21,"Title":"Jason X"},{"IMDB Rating":5.6,"Production Budget":17000000,"Rotten Tomatoes Rating":26,"Title":"Friday the 13th"},{"IMDB Rating":5.3,"Production Budget":10000000,"Rotten Tomatoes Rating":25,"Title":"Friday After Next"},{"IMDB Rating":7.3,"Production Budget":12000000,"Rotten Tomatoes Rating":76,"Title":"Frida"},{"IMDB Rating":7.2,"Production Budget":30000000,"Rotten Tomatoes Rating":81,"Title":"Friday Night Lights"},{"IMDB Rating":7.2,"Production Budget":1000000,"Rotten Tomatoes Rating":87,"Title":"Frozen River"},{"IMDB Rating":7.4,"Production Budget":105000000,"Rotten Tomatoes Rating":84,"Title":"The Princess and the Frog"},{"IMDB Rating":4.8,"Production Budget":2000000,"Rotten Tomatoes Rating":37,"Title":"Full Frontal"},{"IMDB Rating":5.6,"Production Budget":500000,"Rotten Tomatoes Rating":40,"Title":"Fireproof"},{"IMDB Rating":5.1,"Production Budget":5000000,"Rotten Tomatoes Rating":8,"Title":"The Forsaken"},{"IMDB Rating":7.9,"Production Budget":29000000,"Rotten Tomatoes Rating":92,"Title":"Frost/Nixon"},{"IMDB Rating":6.1,"Production Budget":7000000,"Rotten Tomatoes Rating":19,"Title":"Factory Girl"},{"IMDB Rating":6,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Fateless"},{"IMDB Rating":7.2,"Production Budget":3500000,"Rotten Tomatoes Rating":95,"Title":"The Full Monty"},{"IMDB Rating":6.3,"Production Budget":140000000,"Rotten Tomatoes Rating":29,"Title":"Fun With Dick And Jane"},{"IMDB Rating":6.8,"Production Budget":70000000,"Rotten Tomatoes Rating":67,"Title":"Funny People"},{"IMDB Rating":2.6,"Production Budget":35000000,"Rotten Tomatoes Rating":8,"Title":"Furry Vengeance"},{"IMDB Rating":6.3,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Fever Pitch"},{"IMDB Rating":6.2,"Production Budget":12000000,"Rotten Tomatoes Rating":50,"Title":"For Your Consideration"},{"IMDB Rating":7.7,"Production Budget":50000000,"Rotten Tomatoes Rating":80,"Title":"The Game"},{"IMDB Rating":7.4,"Production Budget":97000000,"Rotten Tomatoes Rating":75,"Title":"Gangs of New York"},{"IMDB Rating":4.8,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"Garfield"},{"IMDB Rating":5.8,"Production Budget":20000000,"Rotten Tomatoes Rating":17,"Title":"Georgia Rule"},{"IMDB Rating":7.8,"Production Budget":36000000,"Rotten Tomatoes Rating":82,"Title":"Gattaca"},{"IMDB Rating":3.3,"Production Budget":6400000,"Rotten Tomatoes Rating":null,"Title":"Goodbye, Lenin!"},{"IMDB Rating":5,"Production Budget":17000000,"Rotten Tomatoes Rating":45,"Title":"Good Boy!"},{"IMDB Rating":6,"Production Budget":55000000,"Rotten Tomatoes Rating":8,"Title":"Gods and Generals"},{"IMDB Rating":6.1,"Production Budget":32000000,"Rotten Tomatoes Rating":32,"Title":"The Good German"},{"IMDB Rating":7.5,"Production Budget":3500000,"Rotten Tomatoes Rating":96,"Title":"Gods and Monsters"},{"IMDB Rating":6,"Production Budget":15000000,"Rotten Tomatoes Rating":29,"Title":"The Good Night"},{"IMDB Rating":null,"Production Budget":30000000,"Rotten Tomatoes Rating":78,"Title":"The Good Thief"},{"IMDB Rating":5.7,"Production Budget":32000000,"Rotten Tomatoes Rating":null,"Title":"George and the Dragon"},{"IMDB Rating":6.2,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Gerry"},{"IMDB Rating":5,"Production Budget":82500000,"Rotten Tomatoes Rating":22,"Title":"G-Force"},{"IMDB Rating":6.8,"Production Budget":30000000,"Rotten Tomatoes Rating":41,"Title":"Gridiron Gang"},{"IMDB Rating":6.6,"Production Budget":8000000,"Rotten Tomatoes Rating":81,"Title":"The Good Girl"},{"IMDB Rating":5.3,"Production Budget":20000000,"Rotten Tomatoes Rating":13,"Title":"Ghost Ship"},{"IMDB Rating":6.4,"Production Budget":36000000,"Rotten Tomatoes Rating":50,"Title":"Ghosts of Mississippi"},{"IMDB Rating":5.6,"Production Budget":22000000,"Rotten Tomatoes Rating":21,"Title":"The Glass House"},{"IMDB Rating":5.2,"Production Budget":120000000,"Rotten Tomatoes Rating":26,"Title":"Ghost Rider"},{"IMDB Rating":4.7,"Production Budget":20000000,"Rotten Tomatoes Rating":85,"Title":"Ghost Town"},{"IMDB Rating":6.7,"Production Budget":10000000,"Rotten Tomatoes Rating":56,"Title":"The Gift"},{"IMDB Rating":2.4,"Production Budget":54000000,"Rotten Tomatoes Rating":6,"Title":"Gigli"},{"IMDB Rating":5.5,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"G.I.Jane"},{"IMDB Rating":5.8,"Production Budget":175000000,"Rotten Tomatoes Rating":null,"Title":"G.I. Joe: The Rise of Cobra"},{"IMDB Rating":null,"Production Budget":24000000,"Rotten Tomatoes Rating":53,"Title":"Girl, Interrupted"},{"IMDB Rating":8.3,"Production Budget":103000000,"Rotten Tomatoes Rating":77,"Title":"Gladiator"},{"IMDB Rating":2,"Production Budget":8500000,"Rotten Tomatoes Rating":7,"Title":"Glitter"},{"IMDB Rating":4.7,"Production Budget":30000000,"Rotten Tomatoes Rating":19,"Title":"Gloria"},{"IMDB Rating":5.6,"Production Budget":25000000,"Rotten Tomatoes Rating":5,"Title":"Good Luck Chuck"},{"IMDB Rating":8.4,"Production Budget":60000000,"Rotten Tomatoes Rating":77,"Title":"The Green Mile"},{"IMDB Rating":6,"Production Budget":20000000,"Rotten Tomatoes Rating":25,"Title":"The Game of Their Lives"},{"IMDB Rating":8.1,"Production Budget":5000000,"Rotten Tomatoes Rating":40,"Title":"Gandhi, My Father"},{"IMDB Rating":7.7,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Good Night and Good Luck"},{"IMDB Rating":6.1,"Production Budget":60000000,"Rotten Tomatoes Rating":22,"Title":"The General's Daughter"},{"IMDB Rating":5.4,"Production Budget":10000000,"Rotten Tomatoes Rating":24,"Title":"Gun Shy"},{"IMDB Rating":null,"Production Budget":6500000,"Rotten Tomatoes Rating":92,"Title":"Go!"},{"IMDB Rating":6.9,"Production Budget":33000000,"Rotten Tomatoes Rating":null,"Title":"Goal!"},{"IMDB Rating":4.7,"Production Budget":30000000,"Rotten Tomatoes Rating":4,"Title":"Godsend"},{"IMDB Rating":4.8,"Production Budget":125000000,"Rotten Tomatoes Rating":25,"Title":"Godzilla"},{"IMDB Rating":6.4,"Production Budget":103300000,"Rotten Tomatoes Rating":null,"Title":"Gone in 60 Seconds"},{"IMDB Rating":6.2,"Production Budget":16000000,"Rotten Tomatoes Rating":34,"Title":"Good"},{"IMDB Rating":8.1,"Production Budget":10000000,"Rotten Tomatoes Rating":97,"Title":"Good Will Hunting"},{"IMDB Rating":7.3,"Production Budget":18000000,"Rotten Tomatoes Rating":86,"Title":"Gosford Park"},{"IMDB Rating":null,"Production Budget":14000000,"Rotten Tomatoes Rating":28,"Title":"Gossip"},{"IMDB Rating":6.3,"Production Budget":22000000,"Rotten Tomatoes Rating":27,"Title":"The Game Plan"},{"IMDB Rating":7.1,"Production Budget":12000000,"Rotten Tomatoes Rating":71,"Title":"Girl with a Pearl Earring"},{"IMDB Rating":7.2,"Production Budget":45000000,"Rotten Tomatoes Rating":89,"Title":"Galaxy Quest"},{"IMDB Rating":6.8,"Production Budget":4000000,"Rotten Tomatoes Rating":63,"Title":"Saving Grace"},{"IMDB Rating":6.2,"Production Budget":9000000,"Rotten Tomatoes Rating":59,"Title":"Gracie"},{"IMDB Rating":6.8,"Production Budget":60000000,"Rotten Tomatoes Rating":36,"Title":"The Great Raid"},{"IMDB Rating":6.1,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"The Grand"},{"IMDB Rating":7.6,"Production Budget":25500000,"Rotten Tomatoes Rating":83,"Title":"The Constant Gardener"},{"IMDB Rating":7.9,"Production Budget":2500000,"Rotten Tomatoes Rating":86,"Title":"Garden State"},{"IMDB Rating":7,"Production Budget":6000000,"Rotten Tomatoes Rating":83,"Title":"Grease"},{"IMDB Rating":7.1,"Production Budget":100000000,"Rotten Tomatoes Rating":55,"Title":"Green Zone"},{"IMDB Rating":5.3,"Production Budget":55000000,"Rotten Tomatoes Rating":54,"Title":"George Of The Jungle"},{"IMDB Rating":5.9,"Production Budget":80000000,"Rotten Tomatoes Rating":37,"Title":"The Brothers Grimm"},{"IMDB Rating":7,"Production Budget":25000000,"Rotten Tomatoes Rating":56,"Title":"The Girl Next Door"},{"IMDB Rating":5.7,"Production Budget":123000000,"Rotten Tomatoes Rating":53,"Title":"How the Grinch Stole Christmas"},{"IMDB Rating":7.9,"Production Budget":53000000,"Rotten Tomatoes Rating":null,"Title":"Grindhouse"},{"IMDB Rating":4,"Production Budget":40000000,"Rotten Tomatoes Rating":16,"Title":"Get Rich or Die Tryin'"},{"IMDB Rating":7.9,"Production Budget":30000000,"Rotten Tomatoes Rating":95,"Title":"Wallace & Gromit: The Curse of the Were-Rabbit"},{"IMDB Rating":5.8,"Production Budget":500000,"Rotten Tomatoes Rating":56,"Title":"Groove"},{"IMDB Rating":7.4,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Grosse Point Blank"},{"IMDB Rating":4.6,"Production Budget":20000000,"Rotten Tomatoes Rating":10,"Title":"The Grudge 2"},{"IMDB Rating":5.7,"Production Budget":10000000,"Rotten Tomatoes Rating":39,"Title":"The Grudge"},{"IMDB Rating":5.8,"Production Budget":75000000,"Rotten Tomatoes Rating":9,"Title":"Grown Ups"},{"IMDB Rating":5.7,"Production Budget":35000000,"Rotten Tomatoes Rating":43,"Title":"Guess Who"},{"IMDB Rating":4.8,"Production Budget":40000000,"Rotten Tomatoes Rating":12,"Title":"Get Carter"},{"IMDB Rating":5.5,"Production Budget":10000000,"Rotten Tomatoes Rating":45,"Title":"Get Over It"},{"IMDB Rating":6.8,"Production Budget":17000000,"Rotten Tomatoes Rating":54,"Title":"Veronica Guerin"},{"IMDB Rating":5.5,"Production Budget":11000000,"Rotten Tomatoes Rating":null,"Title":"The Guru"},{"IMDB Rating":5.5,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"A Guy Thing"},{"IMDB Rating":7.7,"Production Budget":5500000,"Rotten Tomatoes Rating":92,"Title":"Ghost World"},{"IMDB Rating":4.5,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Halloween 2"},{"IMDB Rating":7.2,"Production Budget":75000000,"Rotten Tomatoes Rating":91,"Title":"Hairspray"},{"IMDB Rating":6.3,"Production Budget":8000000,"Rotten Tomatoes Rating":29,"Title":"Half Baked"},{"IMDB Rating":6,"Production Budget":18000000,"Rotten Tomatoes Rating":94,"Title":"Hamlet"},{"IMDB Rating":6,"Production Budget":2000000,"Rotten Tomatoes Rating":71,"Title":"Hamlet"},{"IMDB Rating":6.5,"Production Budget":150000000,"Rotten Tomatoes Rating":40,"Title":"Hancock"},{"IMDB Rating":3.9,"Production Budget":47000000,"Rotten Tomatoes Rating":null,"Title":"Happily N'Ever After"},{"IMDB Rating":5.2,"Production Budget":60000000,"Rotten Tomatoes Rating":18,"Title":"The Happening"},{"IMDB Rating":7.5,"Production Budget":1700000,"Rotten Tomatoes Rating":82,"Title":"Happy, Texas"},{"IMDB Rating":7.2,"Production Budget":950000,"Rotten Tomatoes Rating":null,"Title":"Hard Candy"},{"IMDB Rating":7,"Production Budget":2000000,"Rotten Tomatoes Rating":48,"Title":"Harsh Times"},{"IMDB Rating":4.9,"Production Budget":5500000,"Rotten Tomatoes Rating":null,"Title":"Harvard Man"},{"IMDB Rating":7.4,"Production Budget":7300000,"Rotten Tomatoes Rating":null,"Title":"Harry Brown"},{"IMDB Rating":5.5,"Production Budget":25000000,"Rotten Tomatoes Rating":39,"Title":"The House Bunny"},{"IMDB Rating":6.9,"Production Budget":7000000,"Rotten Tomatoes Rating":54,"Title":"The Devil's Rejects"},{"IMDB Rating":5.5,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"House of 1,000 Corpses"},{"IMDB Rating":6.5,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"The House of the Dead"},{"IMDB Rating":6.6,"Production Budget":78000000,"Rotten Tomatoes Rating":46,"Title":"Hidalgo"},{"IMDB Rating":5.6,"Production Budget":25000000,"Rotten Tomatoes Rating":12,"Title":"Hide and Seek"},{"IMDB Rating":6.7,"Production Budget":17500000,"Rotten Tomatoes Rating":null,"Title":"Hoodwinked"},{"IMDB Rating":5.1,"Production Budget":35200000,"Rotten Tomatoes Rating":30,"Title":"Head of State"},{"IMDB Rating":7.6,"Production Budget":6000000,"Rotten Tomatoes Rating":92,"Title":"Hedwig and the Angry Inch"},{"IMDB Rating":6.3,"Production Budget":20000000,"Rotten Tomatoes Rating":80,"Title":"Pooh's Heffalump Movie"},{"IMDB Rating":6.8,"Production Budget":25000000,"Rotten Tomatoes Rating":80,"Title":"He Got Game"},{"IMDB Rating":3.2,"Production Budget":35000000,"Rotten Tomatoes Rating":66,"Title":"Heist"},{"IMDB Rating":7.3,"Production Budget":82500000,"Rotten Tomatoes Rating":null,"Title":"Hellboy 2: The Golden Army"},{"IMDB Rating":6.8,"Production Budget":60000000,"Rotten Tomatoes Rating":81,"Title":"Hellboy"},{"IMDB Rating":5.7,"Production Budget":50000000,"Rotten Tomatoes Rating":22,"Title":"Raising Helen"},{"IMDB Rating":6.7,"Production Budget":6500000,"Rotten Tomatoes Rating":48,"Title":"A Home at the End of the World"},{"IMDB Rating":4.6,"Production Budget":15000000,"Rotten Tomatoes Rating":18,"Title":"Here on Earth"},{"IMDB Rating":4.8,"Production Budget":14000000,"Rotten Tomatoes Rating":9,"Title":"Head Over Heels"},{"IMDB Rating":4.6,"Production Budget":80000000,"Rotten Tomatoes Rating":17,"Title":"The Haunting"},{"IMDB Rating":6.1,"Production Budget":42000000,"Rotten Tomatoes Rating":31,"Title":"High Crimes"},{"IMDB Rating":7.6,"Production Budget":20000000,"Rotten Tomatoes Rating":92,"Title":"High Fidelity"},{"IMDB Rating":4.3,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Highlander: Endgame"},{"IMDB Rating":6.1,"Production Budget":10000000,"Rotten Tomatoes Rating":20,"Title":"High Heels and Low Lifes"},{"IMDB Rating":3.7,"Production Budget":11000000,"Rotten Tomatoes Rating":66,"Title":"High School Musical 3: Senior Year"},{"IMDB Rating":6.7,"Production Budget":3700000,"Rotten Tomatoes Rating":63,"Title":"The History Boys"},{"IMDB Rating":7.6,"Production Budget":32000000,"Rotten Tomatoes Rating":87,"Title":"A History of Violence"},{"IMDB Rating":5.7,"Production Budget":55000000,"Rotten Tomatoes Rating":69,"Title":"Hitch"},{"IMDB Rating":6.8,"Production Budget":17500000,"Rotten Tomatoes Rating":14,"Title":"Hitman"},{"IMDB Rating":6.7,"Production Budget":12000000,"Rotten Tomatoes Rating":54,"Title":"Harold & Kumar Escape from Guantanamo Bay"},{"IMDB Rating":7.2,"Production Budget":9000000,"Rotten Tomatoes Rating":74,"Title":"Harold & Kumar Go to White Castle"},{"IMDB Rating":4.7,"Production Budget":8000000,"Rotten Tomatoes Rating":17,"Title":"Held Up"},{"IMDB Rating":5,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"The Hills Have Eyes II"},{"IMDB Rating":6.5,"Production Budget":17000000,"Rotten Tomatoes Rating":49,"Title":"The Hills Have Eyes"},{"IMDB Rating":6.7,"Production Budget":28000000,"Rotten Tomatoes Rating":36,"Title":"How to Lose Friends & Alienate People"},{"IMDB Rating":4.1,"Production Budget":25000000,"Rotten Tomatoes Rating":2,"Title":"Half Past Dead"},{"IMDB Rating":3.9,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Halloween: Resurrection"},{"IMDB Rating":4.7,"Production Budget":60000000,"Rotten Tomatoes Rating":12,"Title":"Holy Man"},{"IMDB Rating":3.6,"Production Budget":20000000,"Rotten Tomatoes Rating":94,"Title":"Milk"},{"IMDB Rating":6.4,"Production Budget":9000000,"Rotten Tomatoes Rating":64,"Title":"Hamlet 2"},{"IMDB Rating":null,"Production Budget":6500000,"Rotten Tomatoes Rating":71,"Title":"Hannah Montana/Miley Cyrus: Best of Both Worlds Concert Tour"},{"IMDB Rating":5.4,"Production Budget":110000000,"Rotten Tomatoes Rating":54,"Title":"Home on the Range"},{"IMDB Rating":6,"Production Budget":50000000,"Rotten Tomatoes Rating":15,"Title":"Hannibal Rising"},{"IMDB Rating":7.9,"Production Budget":35000000,"Rotten Tomatoes Rating":78,"Title":"The Hangover"},{"IMDB Rating":4.3,"Production Budget":40000000,"Rotten Tomatoes Rating":12,"Title":"Hanging Up"},{"IMDB Rating":6.9,"Production Budget":25000000,"Rotten Tomatoes Rating":85,"Title":"The Hoax"},{"IMDB Rating":7.1,"Production Budget":20000000,"Rotten Tomatoes Rating":77,"Title":"Holes"},{"IMDB Rating":6.9,"Production Budget":85000000,"Rotten Tomatoes Rating":47,"Title":"The Holiday"},{"IMDB Rating":5.5,"Production Budget":90000000,"Rotten Tomatoes Rating":28,"Title":"Hollow Man"},{"IMDB Rating":4.7,"Production Budget":15000000,"Rotten Tomatoes Rating":31,"Title":"Home Fries"},{"IMDB Rating":4.6,"Production Budget":18000000,"Rotten Tomatoes Rating":20,"Title":"Honey"},{"IMDB Rating":2.6,"Production Budget":27000000,"Rotten Tomatoes Rating":14,"Title":"The Honeymooners"},{"IMDB Rating":5.3,"Production Budget":15000000,"Rotten Tomatoes Rating":26,"Title":"Hoot"},{"IMDB Rating":5.3,"Production Budget":30000000,"Rotten Tomatoes Rating":23,"Title":"Hope Floats"},{"IMDB Rating":7.2,"Production Budget":85000000,"Rotten Tomatoes Rating":null,"Title":"Horton Hears a Who"},{"IMDB Rating":5.4,"Production Budget":7500000,"Rotten Tomatoes Rating":45,"Title":"Hostel: Part II"},{"IMDB Rating":7.3,"Production Budget":75000000,"Rotten Tomatoes Rating":null,"Title":"Hostage"},{"IMDB Rating":5.7,"Production Budget":4800000,"Rotten Tomatoes Rating":null,"Title":"Hostel"},{"IMDB Rating":6.5,"Production Budget":25000000,"Rotten Tomatoes Rating":40,"Title":"Hot Rod"},{"IMDB Rating":7.6,"Production Budget":25000000,"Rotten Tomatoes Rating":80,"Title":"The Hours"},{"IMDB Rating":7.5,"Production Budget":18000000,"Rotten Tomatoes Rating":46,"Title":"Life as a House"},{"IMDB Rating":5.4,"Production Budget":20000000,"Rotten Tomatoes Rating":34,"Title":"Bringing Down the House"},{"IMDB Rating":5.4,"Production Budget":35000000,"Rotten Tomatoes Rating":25,"Title":"House of Wax"},{"IMDB Rating":5.4,"Production Budget":16000000,"Rotten Tomatoes Rating":29,"Title":"How to Deal"},{"IMDB Rating":5.5,"Production Budget":12000000,"Rotten Tomatoes Rating":27,"Title":"How High"},{"IMDB Rating":7.2,"Production Budget":100000000,"Rotten Tomatoes Rating":82,"Title":"Harry Potter and the Chamber of Secrets"},{"IMDB Rating":7.7,"Production Budget":130000000,"Rotten Tomatoes Rating":90,"Title":"Harry Potter and the Prisoner of Azkaban"},{"IMDB Rating":7.6,"Production Budget":150000000,"Rotten Tomatoes Rating":88,"Title":"Harry Potter and the Goblet of Fire"},{"IMDB Rating":7.4,"Production Budget":150000000,"Rotten Tomatoes Rating":78,"Title":"Harry Potter and the Order of the Phoenix"},{"IMDB Rating":7.3,"Production Budget":250000000,"Rotten Tomatoes Rating":83,"Title":"Harry Potter and the Half-Blood Prince"},{"IMDB Rating":7.2,"Production Budget":125000000,"Rotten Tomatoes Rating":null,"Title":"Harry Potter and the Sorcerer's Stone"},{"IMDB Rating":6.7,"Production Budget":85000000,"Rotten Tomatoes Rating":74,"Title":"Happy Feet"},{"IMDB Rating":6.8,"Production Budget":70000000,"Rotten Tomatoes Rating":84,"Title":"Hercules"},{"IMDB Rating":4.1,"Production Budget":21000000,"Rotten Tomatoes Rating":38,"Title":"Hardball"},{"IMDB Rating":5.6,"Production Budget":70000000,"Rotten Tomatoes Rating":26,"Title":"Hard Rain"},{"IMDB Rating":6.3,"Production Budget":60000000,"Rotten Tomatoes Rating":71,"Title":"The Horse Whisperer"},{"IMDB Rating":6.3,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"The Heart of Me"},{"IMDB Rating":7.5,"Production Budget":3750000,"Rotten Tomatoes Rating":null,"Title":"Casa de Areia"},{"IMDB Rating":5.1,"Production Budget":12500000,"Rotten Tomatoes Rating":22,"Title":"Sorority Row"},{"IMDB Rating":6.2,"Production Budget":70000000,"Rotten Tomatoes Rating":58,"Title":"Hart's War"},{"IMDB Rating":6.6,"Production Budget":45000000,"Rotten Tomatoes Rating":60,"Title":"The Hitchhiker's Guide to the Galaxy"},{"IMDB Rating":5.4,"Production Budget":2850000,"Rotten Tomatoes Rating":null,"Title":"High Tension"},{"IMDB Rating":8,"Production Budget":16000000,"Rotten Tomatoes Rating":91,"Title":"Hot Fuzz"},{"IMDB Rating":6.6,"Production Budget":3300000,"Rotten Tomatoes Rating":null,"Title":"Human Traffic"},{"IMDB Rating":8.2,"Production Budget":165000000,"Rotten Tomatoes Rating":98,"Title":"How to Train Your Dragon"},{"IMDB Rating":6.8,"Production Budget":22000000,"Rotten Tomatoes Rating":62,"Title":"I Heart Huckabees"},{"IMDB Rating":5.7,"Production Budget":137000000,"Rotten Tomatoes Rating":62,"Title":"Hulk"},{"IMDB Rating":7.1,"Production Budget":137500000,"Rotten Tomatoes Rating":66,"Title":"The Incredible Hulk"},{"IMDB Rating":6.5,"Production Budget":100000000,"Rotten Tomatoes Rating":73,"Title":"The Hunchback of Notre Dame"},{"IMDB Rating":5.8,"Production Budget":55000000,"Rotten Tomatoes Rating":31,"Title":"The Hunted"},{"IMDB Rating":7.8,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"The Hurt Locker"},{"IMDB Rating":7.5,"Production Budget":2800000,"Rotten Tomatoes Rating":null,"Title":"Hustle & Flow"},{"IMDB Rating":6.2,"Production Budget":60000000,"Rotten Tomatoes Rating":64,"Title":"Starsky & Hutch"},{"IMDB Rating":6.3,"Production Budget":16000000,"Rotten Tomatoes Rating":46,"Title":"Hollywood Ending"},{"IMDB Rating":5.2,"Production Budget":75000000,"Rotten Tomatoes Rating":30,"Title":"Hollywood Homicide"},{"IMDB Rating":5.2,"Production Budget":15000000,"Rotten Tomatoes Rating":16,"Title":"Whatever it Takes"},{"IMDB Rating":6.9,"Production Budget":75000000,"Rotten Tomatoes Rating":null,"Title":"Ice Age: The Meltdown"},{"IMDB Rating":7.1,"Production Budget":90000000,"Rotten Tomatoes Rating":null,"Title":"Ice Age: Dawn of the Dinosaurs"},{"IMDB Rating":7.4,"Production Budget":65000000,"Rotten Tomatoes Rating":77,"Title":"Ice Age"},{"IMDB Rating":6,"Production Budget":25000000,"Rotten Tomatoes Rating":52,"Title":"Ice Princess"},{"IMDB Rating":7.5,"Production Budget":18000000,"Rotten Tomatoes Rating":82,"Title":"The Ice Storm"},{"IMDB Rating":5.2,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"I Come with the Rain"},{"IMDB Rating":7.3,"Production Budget":28000000,"Rotten Tomatoes Rating":62,"Title":"Identity"},{"IMDB Rating":6.7,"Production Budget":10700000,"Rotten Tomatoes Rating":86,"Title":"An Ideal Husband"},{"IMDB Rating":5.8,"Production Budget":15000000,"Rotten Tomatoes Rating":47,"Title":"Idlewild"},{"IMDB Rating":7,"Production Budget":9000000,"Rotten Tomatoes Rating":76,"Title":"Igby Goes Down"},{"IMDB Rating":6,"Production Budget":30000000,"Rotten Tomatoes Rating":35,"Title":"Igor"},{"IMDB Rating":3.3,"Production Budget":3500000,"Rotten Tomatoes Rating":17,"Title":"I Got the Hook-Up!"},{"IMDB Rating":5.8,"Production Budget":15000000,"Rotten Tomatoes Rating":15,"Title":"Idle Hands"},{"IMDB Rating":7.2,"Production Budget":10000000,"Rotten Tomatoes Rating":35,"Title":"Imaginary Heroes"},{"IMDB Rating":4.1,"Production Budget":24000000,"Rotten Tomatoes Rating":8,"Title":"I Still Know What You Did Last Summer"},{"IMDB Rating":5.4,"Production Budget":17000000,"Rotten Tomatoes Rating":36,"Title":"I Know What You Did Last Summer"},{"IMDB Rating":5.9,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"I Love You, Beth Cooper"},{"IMDB Rating":7.7,"Production Budget":16500000,"Rotten Tomatoes Rating":74,"Title":"The Illusionist"},{"IMDB Rating":6.1,"Production Budget":1200000,"Rotten Tomatoes Rating":null,"Title":"But I'm a Cheerleader"},{"IMDB Rating":7.1,"Production Budget":30000000,"Rotten Tomatoes Rating":64,"Title":"The Imaginarium of Doctor Parnassus"},{"IMDB Rating":6.7,"Production Budget":7900000,"Rotten Tomatoes Rating":null,"Title":"Imagine Me & You"},{"IMDB Rating":5.4,"Production Budget":55000000,"Rotten Tomatoes Rating":38,"Title":"Imagine That"},{"IMDB Rating":6,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Impostor"},{"IMDB Rating":9.1,"Production Budget":160000000,"Rotten Tomatoes Rating":87,"Title":"Inception"},{"IMDB Rating":5.2,"Production Budget":12000000,"Rotten Tomatoes Rating":34,"Title":"In the Cut"},{"IMDB Rating":5.5,"Production Budget":7000000,"Rotten Tomatoes Rating":36,"Title":"In Too Deep"},{"IMDB Rating":7.2,"Production Budget":18900000,"Rotten Tomatoes Rating":null,"Title":"IndigËnes"},{"IMDB Rating":6.6,"Production Budget":185000000,"Rotten Tomatoes Rating":77,"Title":"Indiana Jones and the Kingdom of the Crystal Skull"},{"IMDB Rating":5.3,"Production Budget":30000000,"Rotten Tomatoes Rating":22,"Title":"In Dreams"},{"IMDB Rating":7.1,"Production Budget":13000000,"Rotten Tomatoes Rating":72,"Title":"Infamous"},{"IMDB Rating":6.2,"Production Budget":22000000,"Rotten Tomatoes Rating":null,"Title":"The Informant"},{"IMDB Rating":5.2,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"The Informers"},{"IMDB Rating":6.1,"Production Budget":60000000,"Rotten Tomatoes Rating":40,"Title":"Inkheart"},{"IMDB Rating":6.1,"Production Budget":35000000,"Rotten Tomatoes Rating":71,"Title":"In & Out"},{"IMDB Rating":6.1,"Production Budget":85000000,"Rotten Tomatoes Rating":14,"Title":"I Now Pronounce You Chuck and Larry"},{"IMDB Rating":7.7,"Production Budget":50000000,"Rotten Tomatoes Rating":86,"Title":"Inside Man"},{"IMDB Rating":8,"Production Budget":68000000,"Rotten Tomatoes Rating":96,"Title":"The Insider"},{"IMDB Rating":6.3,"Production Budget":46000000,"Rotten Tomatoes Rating":92,"Title":"Insomnia"},{"IMDB Rating":3.9,"Production Budget":75000000,"Rotten Tomatoes Rating":21,"Title":"Inspector Gadget"},{"IMDB Rating":6.2,"Production Budget":55000000,"Rotten Tomatoes Rating":27,"Title":"Instinct"},{"IMDB Rating":6.5,"Production Budget":18500000,"Rotten Tomatoes Rating":57,"Title":"The Invention of Lying"},{"IMDB Rating":6,"Production Budget":80000000,"Rotten Tomatoes Rating":19,"Title":"The Invasion"},{"IMDB Rating":6.3,"Production Budget":3500000,"Rotten Tomatoes Rating":null,"Title":"Ira and Abby"},{"IMDB Rating":null,"Production Budget":105000000,"Rotten Tomatoes Rating":58,"Title":"I, Robot"},{"IMDB Rating":7.3,"Production Budget":170000000,"Rotten Tomatoes Rating":74,"Title":"Iron Man 2"},{"IMDB Rating":7.9,"Production Budget":186000000,"Rotten Tomatoes Rating":94,"Title":"Iron Man"},{"IMDB Rating":7.9,"Production Budget":50000000,"Rotten Tomatoes Rating":97,"Title":"The Iron Giant"},{"IMDB Rating":7.4,"Production Budget":4900000,"Rotten Tomatoes Rating":null,"Title":"Obsluhoval jsem anglickÈho kr·le"},{"IMDB Rating":6.9,"Production Budget":120000000,"Rotten Tomatoes Rating":40,"Title":"The Island"},{"IMDB Rating":4.9,"Production Budget":36000000,"Rotten Tomatoes Rating":25,"Title":"Isn't She Great"},{"IMDB Rating":5.3,"Production Budget":70000000,"Rotten Tomatoes Rating":15,"Title":"I Spy"},{"IMDB Rating":6.9,"Production Budget":60000000,"Rotten Tomatoes Rating":73,"Title":"The Italian Job"},{"IMDB Rating":5.5,"Production Budget":14000000,"Rotten Tomatoes Rating":19,"Title":"I Think I Love My Wife"},{"IMDB Rating":4.6,"Production Budget":50000000,"Rotten Tomatoes Rating":15,"Title":"Jack Frost"},{"IMDB Rating":7.6,"Production Budget":12000000,"Rotten Tomatoes Rating":85,"Title":"Jackie Brown"},{"IMDB Rating":6,"Production Budget":60000000,"Rotten Tomatoes Rating":12,"Title":"The Jackal"},{"IMDB Rating":7.1,"Production Budget":28500000,"Rotten Tomatoes Rating":43,"Title":"The Jacket"},{"IMDB Rating":6.1,"Production Budget":15000000,"Rotten Tomatoes Rating":30,"Title":"Jakob the Liar"},{"IMDB Rating":7.2,"Production Budget":72000000,"Rotten Tomatoes Rating":61,"Title":"Jarhead"},{"IMDB Rating":4.8,"Production Budget":3000000,"Rotten Tomatoes Rating":7,"Title":"Jawbreaker"},{"IMDB Rating":6.3,"Production Budget":135000000,"Rotten Tomatoes Rating":51,"Title":"The World is Not Enough"},{"IMDB Rating":6,"Production Budget":142000000,"Rotten Tomatoes Rating":59,"Title":"Die Another Day"},{"IMDB Rating":8,"Production Budget":102000000,"Rotten Tomatoes Rating":94,"Title":"Casino Royale"},{"IMDB Rating":6.8,"Production Budget":230000000,"Rotten Tomatoes Rating":64,"Title":"Quantum of Solace"},{"IMDB Rating":5.3,"Production Budget":16000000,"Rotten Tomatoes Rating":42,"Title":"Jennifer's Body"},{"IMDB Rating":7.2,"Production Budget":11000000,"Rotten Tomatoes Rating":63,"Title":"Jackass: Number Two"},{"IMDB Rating":6.3,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Jackass: The Movie"},{"IMDB Rating":5.9,"Production Budget":45000000,"Rotten Tomatoes Rating":null,"Title":"Journey to the Center of the Earth"},{"IMDB Rating":5.4,"Production Budget":16000000,"Rotten Tomatoes Rating":11,"Title":"Joe Dirt"},{"IMDB Rating":6.7,"Production Budget":26000000,"Rotten Tomatoes Rating":45,"Title":"The Curse of the Jade Scorpion"},{"IMDB Rating":5.7,"Production Budget":10000000,"Rotten Tomatoes Rating":45,"Title":"Jeepers Creepers"},{"IMDB Rating":5.8,"Production Budget":45000000,"Rotten Tomatoes Rating":33,"Title":"Johnny English"},{"IMDB Rating":5.3,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Jeepers Creepers II"},{"IMDB Rating":7.7,"Production Budget":30000000,"Rotten Tomatoes Rating":75,"Title":"The Assassination of Jesse James by the Coward Robert Ford"},{"IMDB Rating":3.8,"Production Budget":12000000,"Rotten Tomatoes Rating":6,"Title":"Johnson Family Vacation"},{"IMDB Rating":6.2,"Production Budget":35000000,"Rotten Tomatoes Rating":40,"Title":"Jersey Girl"},{"IMDB Rating":5.1,"Production Budget":1000000,"Rotten Tomatoes Rating":40,"Title":"The Jimmy Show"},{"IMDB Rating":6.4,"Production Budget":10800000,"Rotten Tomatoes Rating":null,"Title":"Jindabyne"},{"IMDB Rating":5.7,"Production Budget":400000,"Rotten Tomatoes Rating":29,"Title":"Jackpot"},{"IMDB Rating":6.8,"Production Budget":58000000,"Rotten Tomatoes Rating":57,"Title":"Just Like Heaven"},{"IMDB Rating":5,"Production Budget":28000000,"Rotten Tomatoes Rating":13,"Title":"Just My Luck"},{"IMDB Rating":null,"Production Budget":50000000,"Rotten Tomatoes Rating":31,"Title":"The Messenger: The Story of Joan of Arc"},{"IMDB Rating":5.2,"Production Budget":20000000,"Rotten Tomatoes Rating":19,"Title":"The Jungle Book 2"},{"IMDB Rating":5.3,"Production Budget":38000000,"Rotten Tomatoes Rating":19,"Title":"Joe Somebody"},{"IMDB Rating":4.3,"Production Budget":47000000,"Rotten Tomatoes Rating":13,"Title":"Jonah Hex"},{"IMDB Rating":6.6,"Production Budget":36000000,"Rotten Tomatoes Rating":22,"Title":"John Q"},{"IMDB Rating":6.3,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"Jonah: A VeggieTales Movie"},{"IMDB Rating":6.6,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"The Joneses"},{"IMDB Rating":5.1,"Production Budget":22000000,"Rotten Tomatoes Rating":53,"Title":"Josie and the Pussycats"},{"IMDB Rating":5.4,"Production Budget":23000000,"Rotten Tomatoes Rating":null,"Title":"Joy Ride"},{"IMDB Rating":7.2,"Production Budget":50000000,"Rotten Tomatoes Rating":84,"Title":"Jerry Maguire"},{"IMDB Rating":6.8,"Production Budget":22000000,"Rotten Tomatoes Rating":53,"Title":"Jay and Silent Bob Strike Back"},{"IMDB Rating":6.7,"Production Budget":2500000,"Rotten Tomatoes Rating":null,"Title":"Jesus' Son"},{"IMDB Rating":7.1,"Production Budget":18000000,"Rotten Tomatoes Rating":76,"Title":"Being Julia"},{"IMDB Rating":7.2,"Production Budget":40000000,"Rotten Tomatoes Rating":75,"Title":"Julie & Julia"},{"IMDB Rating":5.9,"Production Budget":82500000,"Rotten Tomatoes Rating":17,"Title":"Jumper"},{"IMDB Rating":7.1,"Production Budget":1000000,"Rotten Tomatoes Rating":86,"Title":"Junebug"},{"IMDB Rating":7.9,"Production Budget":7000000,"Rotten Tomatoes Rating":93,"Title":"Juno"},{"IMDB Rating":7.9,"Production Budget":93000000,"Rotten Tomatoes Rating":null,"Title":"Jurassic Park 3"},{"IMDB Rating":6.3,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Just Looking"},{"IMDB Rating":5.1,"Production Budget":19000000,"Rotten Tomatoes Rating":20,"Title":"Just Married"},{"IMDB Rating":4.1,"Production Budget":15600000,"Rotten Tomatoes Rating":null,"Title":"Juwanna Man"},{"IMDB Rating":5.8,"Production Budget":25000000,"Rotten Tomatoes Rating":41,"Title":"Freddy vs. Jason"},{"IMDB Rating":6.5,"Production Budget":90000000,"Rotten Tomatoes Rating":61,"Title":"K-19: The Widowmaker"},{"IMDB Rating":6.2,"Production Budget":48000000,"Rotten Tomatoes Rating":null,"Title":"Kate and Leopold"},{"IMDB Rating":4.1,"Production Budget":60000000,"Rotten Tomatoes Rating":null,"Title":"Kangaroo Jack"},{"IMDB Rating":8.1,"Production Budget":28000000,"Rotten Tomatoes Rating":75,"Title":"Kick-Ass"},{"IMDB Rating":6.2,"Production Budget":3000000,"Rotten Tomatoes Rating":86,"Title":"The Original Kings of Comedy"},{"IMDB Rating":6.3,"Production Budget":25000000,"Rotten Tomatoes Rating":51,"Title":"Kiss of the Dragon"},{"IMDB Rating":null,"Production Budget":20000000,"Rotten Tomatoes Rating":89,"Title":"Kung Fu Hustle"},{"IMDB Rating":6.1,"Production Budget":40000000,"Rotten Tomatoes Rating":67,"Title":"The Karate Kid"},{"IMDB Rating":6.4,"Production Budget":600000,"Rotten Tomatoes Rating":77,"Title":"The Kentucky Fried Movie"},{"IMDB Rating":6.9,"Production Budget":45000000,"Rotten Tomatoes Rating":null,"Title":"Kicking and Screaming"},{"IMDB Rating":8,"Production Budget":55000000,"Rotten Tomatoes Rating":null,"Title":"Kill Bill: Volume 2"},{"IMDB Rating":8.2,"Production Budget":55000000,"Rotten Tomatoes Rating":85,"Title":"Kill Bill: Volume 1"},{"IMDB Rating":null,"Production Budget":7000000,"Rotten Tomatoes Rating":28,"Title":"Kingdom Come"},{"IMDB Rating":7.1,"Production Budget":110000000,"Rotten Tomatoes Rating":39,"Title":"Kingdom of Heaven"},{"IMDB Rating":7.2,"Production Budget":11000000,"Rotten Tomatoes Rating":90,"Title":"Kinsey"},{"IMDB Rating":6.8,"Production Budget":1500000,"Rotten Tomatoes Rating":null,"Title":"Kissing Jessica Stein"},{"IMDB Rating":6.4,"Production Budget":27000000,"Rotten Tomatoes Rating":32,"Title":"Kiss the Girls"},{"IMDB Rating":7.6,"Production Budget":207000000,"Rotten Tomatoes Rating":83,"Title":"King Kong"},{"IMDB Rating":7.5,"Production Budget":27500000,"Rotten Tomatoes Rating":90,"Title":"Knocked Up"},{"IMDB Rating":6.6,"Production Budget":117000000,"Rotten Tomatoes Rating":null,"Title":"Knight and Day"},{"IMDB Rating":7.1,"Production Budget":72500000,"Rotten Tomatoes Rating":51,"Title":"The Kingdom"},{"IMDB Rating":4.3,"Production Budget":35000000,"Rotten Tomatoes Rating":13,"Title":"Black Knight"},{"IMDB Rating":6,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Knockaround Guys"},{"IMDB Rating":6.4,"Production Budget":50000000,"Rotten Tomatoes Rating":32,"Title":"Knowing"},{"IMDB Rating":4.1,"Production Budget":35000000,"Rotten Tomatoes Rating":8,"Title":"Knock Off"},{"IMDB Rating":7.3,"Production Budget":48000000,"Rotten Tomatoes Rating":40,"Title":"K-PAX"},{"IMDB Rating":4.7,"Production Budget":50000000,"Rotten Tomatoes Rating":5,"Title":"Christmas with the Kranks"},{"IMDB Rating":3.5,"Production Budget":25000000,"Rotten Tomatoes Rating":2,"Title":"King's Ransom"},{"IMDB Rating":null,"Production Budget":15000000,"Rotten Tomatoes Rating":83,"Title":"Kiss Kiss, Bang Bang"},{"IMDB Rating":6.6,"Production Budget":41000000,"Rotten Tomatoes Rating":58,"Title":"A Knight's Tale"},{"IMDB Rating":7.8,"Production Budget":20000000,"Rotten Tomatoes Rating":66,"Title":"The Kite Runner"},{"IMDB Rating":7,"Production Budget":28000000,"Rotten Tomatoes Rating":76,"Title":"Kundun"},{"IMDB Rating":5.7,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Kung Pow: Enter the Fist"},{"IMDB Rating":8.4,"Production Budget":35000000,"Rotten Tomatoes Rating":99,"Title":"L.A. Confidential"},{"IMDB Rating":7.2,"Production Budget":53000000,"Rotten Tomatoes Rating":25,"Title":"Law Abiding Citizen"},{"IMDB Rating":6.5,"Production Budget":60000000,"Rotten Tomatoes Rating":40,"Title":"Ladder 49"},{"IMDB Rating":6.2,"Production Budget":35000000,"Rotten Tomatoes Rating":54,"Title":"The Ladykillers"},{"IMDB Rating":5.8,"Production Budget":75000000,"Rotten Tomatoes Rating":24,"Title":"Lady in the Water"},{"IMDB Rating":6.8,"Production Budget":40000000,"Rotten Tomatoes Rating":36,"Title":"The Lake House"},{"IMDB Rating":6.3,"Production Budget":20000000,"Rotten Tomatoes Rating":46,"Title":"Lakeview Terrace"},{"IMDB Rating":4.7,"Production Budget":11000000,"Rotten Tomatoes Rating":11,"Title":"The Ladies Man"},{"IMDB Rating":5.3,"Production Budget":100000000,"Rotten Tomatoes Rating":26,"Title":"Land of the Lost"},{"IMDB Rating":6.5,"Production Budget":45000000,"Rotten Tomatoes Rating":77,"Title":"Changing Lanes"},{"IMDB Rating":7.5,"Production Budget":12500000,"Rotten Tomatoes Rating":81,"Title":"Lars and the Real Girl"},{"IMDB Rating":7.3,"Production Budget":5900000,"Rotten Tomatoes Rating":null,"Title":"L'auberge espagnole"},{"IMDB Rating":5.7,"Production Budget":32000000,"Rotten Tomatoes Rating":18,"Title":"Laws of Attraction"},{"IMDB Rating":5.2,"Production Budget":30000000,"Rotten Tomatoes Rating":21,"Title":"Little Black Book"},{"IMDB Rating":7.4,"Production Budget":6500000,"Rotten Tomatoes Rating":null,"Title":"Layer Cake"},{"IMDB Rating":2.8,"Production Budget":17000000,"Rotten Tomatoes Rating":6,"Title":"Larry the Cable Guy: Health Inspector"},{"IMDB Rating":7.8,"Production Budget":14000000,"Rotten Tomatoes Rating":79,"Title":"Little Children"},{"IMDB Rating":5.9,"Production Budget":13000000,"Rotten Tomatoes Rating":53,"Title":"Save the Last Dance"},{"IMDB Rating":5,"Production Budget":18500000,"Rotten Tomatoes Rating":null,"Title":"Left Behind"},{"IMDB Rating":5,"Production Budget":26000000,"Rotten Tomatoes Rating":19,"Title":"Legion"},{"IMDB Rating":7.1,"Production Budget":150000000,"Rotten Tomatoes Rating":69,"Title":"I am Legend"},{"IMDB Rating":6.1,"Production Budget":58000000,"Rotten Tomatoes Rating":52,"Title":"Leatherheads"},{"IMDB Rating":8.1,"Production Budget":13000000,"Rotten Tomatoes Rating":91,"Title":"Letters from Iwo Jima"},{"IMDB Rating":6.3,"Production Budget":45000000,"Rotten Tomatoes Rating":54,"Title":"Last Holiday"},{"IMDB Rating":7.4,"Production Budget":38000000,"Rotten Tomatoes Rating":83,"Title":"The Hurricane"},{"IMDB Rating":6.7,"Production Budget":45000000,"Rotten Tomatoes Rating":82,"Title":"Liar Liar"},{"IMDB Rating":7.7,"Production Budget":20000000,"Rotten Tomatoes Rating":37,"Title":"Equilibrium"},{"IMDB Rating":5.8,"Production Budget":23000000,"Rotten Tomatoes Rating":19,"Title":"Chasing Liberty"},{"IMDB Rating":6.4,"Production Budget":22000000,"Rotten Tomatoes Rating":null,"Title":"The Libertine"},{"IMDB Rating":7.2,"Production Budget":700000,"Rotten Tomatoes Rating":83,"Title":"L.I.E."},{"IMDB Rating":7.2,"Production Budget":50000000,"Rotten Tomatoes Rating":53,"Title":"The Life Aquatic with Steve Zissou"},{"IMDB Rating":7.3,"Production Budget":50000000,"Rotten Tomatoes Rating":20,"Title":"The Life of David Gale"},{"IMDB Rating":5.3,"Production Budget":75000000,"Rotten Tomatoes Rating":50,"Title":"Life"},{"IMDB Rating":4.4,"Production Budget":30000000,"Rotten Tomatoes Rating":56,"Title":"Like Mike"},{"IMDB Rating":7.1,"Production Budget":80000000,"Rotten Tomatoes Rating":null,"Title":"Lilo & Stitch"},{"IMDB Rating":6.9,"Production Budget":8300000,"Rotten Tomatoes Rating":null,"Title":"Limbo"},{"IMDB Rating":5.4,"Production Budget":13000000,"Rotten Tomatoes Rating":38,"Title":"Light It Up"},{"IMDB Rating":6.5,"Production Budget":12000000,"Rotten Tomatoes Rating":58,"Title":"Living Out Loud"},{"IMDB Rating":4.7,"Production Budget":15000000,"Rotten Tomatoes Rating":40,"Title":"The Lizzie McGuire Movie"},{"IMDB Rating":6.3,"Production Budget":30000000,"Rotten Tomatoes Rating":42,"Title":"Letters to Juliet"},{"IMDB Rating":6.1,"Production Budget":6000000,"Rotten Tomatoes Rating":null,"Title":"Lucky Break"},{"IMDB Rating":7.8,"Production Budget":6000000,"Rotten Tomatoes Rating":87,"Title":"The Last King of Scotland"},{"IMDB Rating":6.7,"Production Budget":55000000,"Rotten Tomatoes Rating":null,"Title":"Lolita"},{"IMDB Rating":6.8,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Love Lisa"},{"IMDB Rating":8,"Production Budget":8000000,"Rotten Tomatoes Rating":91,"Title":"Little Miss Sunshine"},{"IMDB Rating":6.7,"Production Budget":10500000,"Rotten Tomatoes Rating":44,"Title":"In the Land of Women"},{"IMDB Rating":6.2,"Production Budget":35000000,"Rotten Tomatoes Rating":27,"Title":"Lions for Lambs"},{"IMDB Rating":7.7,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"London"},{"IMDB Rating":6.1,"Production Budget":50000000,"Rotten Tomatoes Rating":43,"Title":"How to Lose a Guy in 10 Days"},{"IMDB Rating":5,"Production Budget":20000000,"Rotten Tomatoes Rating":25,"Title":"Loser"},{"IMDB Rating":null,"Production Budget":25000000,"Rotten Tomatoes Rating":48,"Title":"The Losers"},{"IMDB Rating":6.6,"Production Budget":9600000,"Rotten Tomatoes Rating":null,"Title":"The Lost City"},{"IMDB Rating":4.8,"Production Budget":80000000,"Rotten Tomatoes Rating":26,"Title":"Lost In Space"},{"IMDB Rating":4.8,"Production Budget":14000000,"Rotten Tomatoes Rating":13,"Title":"Lost and Found"},{"IMDB Rating":null,"Production Budget":17000000,"Rotten Tomatoes Rating":32,"Title":"Lottery Ticket"},{"IMDB Rating":6.7,"Production Budget":15000000,"Rotten Tomatoes Rating":81,"Title":"Love and Basketball"},{"IMDB Rating":6.7,"Production Budget":10000000,"Rotten Tomatoes Rating":67,"Title":"Love Jones"},{"IMDB Rating":5.1,"Production Budget":15000000,"Rotten Tomatoes Rating":33,"Title":"The Love Letter"},{"IMDB Rating":6.8,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"Lovely and Amazing"},{"IMDB Rating":8.7,"Production Budget":94000000,"Rotten Tomatoes Rating":null,"Title":"The Lord of the Rings: The Two Towers"},{"IMDB Rating":8.8,"Production Budget":94000000,"Rotten Tomatoes Rating":null,"Title":"The Lord of the Rings: The Return of the King"},{"IMDB Rating":8.8,"Production Budget":109000000,"Rotten Tomatoes Rating":null,"Title":"The Lord of the Rings: The Fellowship of the Ring"},{"IMDB Rating":7.7,"Production Budget":42000000,"Rotten Tomatoes Rating":61,"Title":"Lord of War"},{"IMDB Rating":5.7,"Production Budget":40000000,"Rotten Tomatoes Rating":60,"Title":"The Last Shot"},{"IMDB Rating":6.7,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Lonesome Jim"},{"IMDB Rating":5.4,"Production Budget":67000000,"Rotten Tomatoes Rating":17,"Title":"The Last Legion"},{"IMDB Rating":7.8,"Production Budget":120000000,"Rotten Tomatoes Rating":65,"Title":"The Last Samurai"},{"IMDB Rating":5.7,"Production Budget":2200000,"Rotten Tomatoes Rating":19,"Title":"The Last Sin Eater"},{"IMDB Rating":3.9,"Production Budget":20000000,"Rotten Tomatoes Rating":19,"Title":"The Last Song"},{"IMDB Rating":5.3,"Production Budget":4000000,"Rotten Tomatoes Rating":19,"Title":"Love Stinks"},{"IMDB Rating":7.9,"Production Budget":4000000,"Rotten Tomatoes Rating":94,"Title":"Lost in Translation"},{"IMDB Rating":7,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Last Orders"},{"IMDB Rating":4.5,"Production Budget":28000000,"Rotten Tomatoes Rating":7,"Title":"Lost Souls"},{"IMDB Rating":7,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"The Last Station"},{"IMDB Rating":6,"Production Budget":75000000,"Rotten Tomatoes Rating":null,"Title":"The Lost World: Jurassic Park"},{"IMDB Rating":5.1,"Production Budget":35000000,"Rotten Tomatoes Rating":7,"Title":"License to Wed"},{"IMDB Rating":6,"Production Budget":80000000,"Rotten Tomatoes Rating":57,"Title":"Looney Tunes: Back in Action"},{"IMDB Rating":4.4,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Letters to God"},{"IMDB Rating":6.4,"Production Budget":140000000,"Rotten Tomatoes Rating":54,"Title":"Lethal Weapon 4"},{"IMDB Rating":5.7,"Production Budget":64000000,"Rotten Tomatoes Rating":12,"Title":"Little Man"},{"IMDB Rating":7.1,"Production Budget":14000000,"Rotten Tomatoes Rating":36,"Title":"The Lucky Ones"},{"IMDB Rating":5.9,"Production Budget":55000000,"Rotten Tomatoes Rating":28,"Title":"Lucky You"},{"IMDB Rating":4.3,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Luminarias"},{"IMDB Rating":7.6,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Se jie"},{"IMDB Rating":6.8,"Production Budget":35000000,"Rotten Tomatoes Rating":44,"Title":"Luther"},{"IMDB Rating":7.9,"Production Budget":45000000,"Rotten Tomatoes Rating":63,"Title":"Love Actually"},{"IMDB Rating":5.3,"Production Budget":22000000,"Rotten Tomatoes Rating":53,"Title":"The Little Vampire"},{"IMDB Rating":6.6,"Production Budget":65000000,"Rotten Tomatoes Rating":32,"Title":"The Lovely Bones"},{"IMDB Rating":4.7,"Production Budget":50000000,"Rotten Tomatoes Rating":42,"Title":"Herbie: Fully Loaded"},{"IMDB Rating":6.2,"Production Budget":50000000,"Rotten Tomatoes Rating":64,"Title":"For Love of the Game"},{"IMDB Rating":6.9,"Production Budget":9000000,"Rotten Tomatoes Rating":50,"Title":"Leaves of Grass"},{"IMDB Rating":5.5,"Production Budget":18000000,"Rotten Tomatoes Rating":17,"Title":"Love Happens"},{"IMDB Rating":5.6,"Production Budget":40000000,"Rotten Tomatoes Rating":33,"Title":"Just Visiting"},{"IMDB Rating":8.5,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Das Leben der Anderen"},{"IMDB Rating":5.6,"Production Budget":25000000,"Rotten Tomatoes Rating":13,"Title":"Love Ranch"},{"IMDB Rating":7.6,"Production Budget":15500000,"Rotten Tomatoes Rating":null,"Title":"La MÙme"},{"IMDB Rating":null,"Production Budget":180000000,"Rotten Tomatoes Rating":76,"Title":"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe"},{"IMDB Rating":6.2,"Production Budget":82000000,"Rotten Tomatoes Rating":31,"Title":"The Longest Yard"},{"IMDB Rating":6.1,"Production Budget":50000000,"Rotten Tomatoes Rating":37,"Title":"Mad City"},{"IMDB Rating":6.3,"Production Budget":5000000,"Rotten Tomatoes Rating":70,"Title":"Made"},{"IMDB Rating":6.8,"Production Budget":150000000,"Rotten Tomatoes Rating":64,"Title":"Madagascar: Escape 2 Africa"},{"IMDB Rating":6.6,"Production Budget":75000000,"Rotten Tomatoes Rating":55,"Title":"Madagascar"},{"IMDB Rating":7.4,"Production Budget":500000,"Rotten Tomatoes Rating":83,"Title":"Mad Hot Ballroom"},{"IMDB Rating":6.4,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"Madison"},{"IMDB Rating":5,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Jane Austen's Mafia"},{"IMDB Rating":5.3,"Production Budget":26000000,"Rotten Tomatoes Rating":35,"Title":"Paul Blart: Mall Cop"},{"IMDB Rating":5.7,"Production Budget":36000000,"Rotten Tomatoes Rating":11,"Title":"A Man Apart"},{"IMDB Rating":7.7,"Production Budget":60000000,"Rotten Tomatoes Rating":38,"Title":"Man on Fire"},{"IMDB Rating":4.2,"Production Budget":50000000,"Rotten Tomatoes Rating":8,"Title":"Man of the House"},{"IMDB Rating":7.4,"Production Budget":52000000,"Rotten Tomatoes Rating":62,"Title":"Man on the Moon"},{"IMDB Rating":6.3,"Production Budget":20000000,"Rotten Tomatoes Rating":40,"Title":"The Man Who Knew Too Little"},{"IMDB Rating":2.4,"Production Budget":20000000,"Rotten Tomatoes Rating":10,"Title":"Marci X"},{"IMDB Rating":6.4,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Married Life"},{"IMDB Rating":4.5,"Production Budget":15000000,"Rotten Tomatoes Rating":20,"Title":"The Marine"},{"IMDB Rating":2,"Production Budget":100000000,"Rotten Tomatoes Rating":6,"Title":"Son of the Mask"},{"IMDB Rating":6.9,"Production Budget":10000000,"Rotten Tomatoes Rating":76,"Title":"The Matador"},{"IMDB Rating":8.7,"Production Budget":65000000,"Rotten Tomatoes Rating":86,"Title":"The Matrix"},{"IMDB Rating":5.1,"Production Budget":12000000,"Rotten Tomatoes Rating":26,"Title":"Max Keeble's Big Move"},{"IMDB Rating":5.8,"Production Budget":1750000,"Rotten Tomatoes Rating":null,"Title":"May"},{"IMDB Rating":7.8,"Production Budget":350000,"Rotten Tomatoes Rating":98,"Title":"Murderball"},{"IMDB Rating":7.4,"Production Budget":16000000,"Rotten Tomatoes Rating":82,"Title":"Vicky Cristina Barcelona"},{"IMDB Rating":6.6,"Production Budget":5000000,"Rotten Tomatoes Rating":75,"Title":"My Big Fat Greek Wedding"},{"IMDB Rating":5.8,"Production Budget":20000000,"Rotten Tomatoes Rating":15,"Title":"My Best Friend's Girl"},{"IMDB Rating":4.5,"Production Budget":75000000,"Rotten Tomatoes Rating":20,"Title":"Monkeybone"},{"IMDB Rating":3.1,"Production Budget":20000000,"Rotten Tomatoes Rating":30,"Title":"Meet the Browns"},{"IMDB Rating":5.7,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"My Bloody Valentine"},{"IMDB Rating":5.6,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Wu ji"},{"IMDB Rating":3.9,"Production Budget":42000000,"Rotten Tomatoes Rating":3,"Title":"McHale's Navy"},{"IMDB Rating":6.7,"Production Budget":80000000,"Rotten Tomatoes Rating":81,"Title":"The Manchurian Candidate"},{"IMDB Rating":5.7,"Production Budget":40000000,"Rotten Tomatoes Rating":44,"Title":"Mickey Blue Eyes"},{"IMDB Rating":7.5,"Production Budget":21500000,"Rotten Tomatoes Rating":90,"Title":"Michael Clayton"},{"IMDB Rating":7.5,"Production Budget":135000000,"Rotten Tomatoes Rating":85,"Title":"Master and Commander: The Far Side of the World"},{"IMDB Rating":6.1,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"Nanny McPhee and the Big Bang"},{"IMDB Rating":6.7,"Production Budget":25000000,"Rotten Tomatoes Rating":73,"Title":"Nanny McPhee"},{"IMDB Rating":7.3,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Mean Creek"},{"IMDB Rating":4.7,"Production Budget":41000000,"Rotten Tomatoes Rating":18,"Title":"The Medallion"},{"IMDB Rating":4.8,"Production Budget":60000000,"Rotten Tomatoes Rating":19,"Title":"Meet Dave"},{"IMDB Rating":8.2,"Production Budget":30000000,"Rotten Tomatoes Rating":91,"Title":"Million Dollar Baby"},{"IMDB Rating":3.1,"Production Budget":17500000,"Rotten Tomatoes Rating":26,"Title":"Madea Goes To Jail"},{"IMDB Rating":5.5,"Production Budget":40000000,"Rotten Tomatoes Rating":14,"Title":"Made of Honor"},{"IMDB Rating":7,"Production Budget":18000000,"Rotten Tomatoes Rating":83,"Title":"Mean Girls"},{"IMDB Rating":6.3,"Production Budget":4500000,"Rotten Tomatoes Rating":null,"Title":"Mean Machine"},{"IMDB Rating":3.4,"Production Budget":24000000,"Rotten Tomatoes Rating":4,"Title":"Meet the Deedles"},{"IMDB Rating":6.9,"Production Budget":51000000,"Rotten Tomatoes Rating":48,"Title":"Me, Myself & Irene"},{"IMDB Rating":7.1,"Production Budget":85000000,"Rotten Tomatoes Rating":36,"Title":"Memoirs of a Geisha"},{"IMDB Rating":7,"Production Budget":90000000,"Rotten Tomatoes Rating":91,"Title":"Men in Black"},{"IMDB Rating":6.8,"Production Budget":32000000,"Rotten Tomatoes Rating":41,"Title":"Men of Honor"},{"IMDB Rating":8.7,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Memento"},{"IMDB Rating":5.8,"Production Budget":60000000,"Rotten Tomatoes Rating":17,"Title":"Mercury Rising"},{"IMDB Rating":4.9,"Production Budget":600000,"Rotten Tomatoes Rating":14,"Title":"Mercy Streets"},{"IMDB Rating":7.8,"Production Budget":22000000,"Rotten Tomatoes Rating":null,"Title":"Joyeux NoÎl"},{"IMDB Rating":5.6,"Production Budget":30000000,"Rotten Tomatoes Rating":31,"Title":"Message in a Bottle"},{"IMDB Rating":6.9,"Production Budget":85000000,"Rotten Tomatoes Rating":50,"Title":"Meet Joe Black"},{"IMDB Rating":7.6,"Production Budget":3200000,"Rotten Tomatoes Rating":null,"Title":"Maria Full of Grace"},{"IMDB Rating":null,"Production Budget":22000000,"Rotten Tomatoes Rating":11,"Title":"Megiddo: Omega Code 2"},{"IMDB Rating":8,"Production Budget":37000000,"Rotten Tomatoes Rating":83,"Title":"Magnolia"},{"IMDB Rating":6.4,"Production Budget":24000000,"Rotten Tomatoes Rating":53,"Title":"The Men Who Stare at Goats"},{"IMDB Rating":6.6,"Production Budget":2500000,"Rotten Tomatoes Rating":null,"Title":"Marilyn Hotchkiss' Ballroom Dancing and Charm School"},{"IMDB Rating":7.4,"Production Budget":140000000,"Rotten Tomatoes Rating":null,"Title":"Men in Black 2"},{"IMDB Rating":6.8,"Production Budget":10000000,"Rotten Tomatoes Rating":81,"Title":"The House of Mirth"},{"IMDB Rating":4.7,"Production Budget":60000000,"Rotten Tomatoes Rating":null,"Title":"Miss Congeniality 2: Armed and Fabulous"},{"IMDB Rating":6.9,"Production Budget":120000000,"Rotten Tomatoes Rating":null,"Title":"Mission: Impossible 2"},{"IMDB Rating":6.9,"Production Budget":150000000,"Rotten Tomatoes Rating":70,"Title":"Mission: Impossible III"},{"IMDB Rating":6.1,"Production Budget":45000000,"Rotten Tomatoes Rating":41,"Title":"Miss Congeniality"},{"IMDB Rating":7.4,"Production Budget":65000000,"Rotten Tomatoes Rating":59,"Title":"The Missing"},{"IMDB Rating":5.4,"Production Budget":80000000,"Rotten Tomatoes Rating":52,"Title":"Mighty Joe Young"},{"IMDB Rating":6.8,"Production Budget":72000000,"Rotten Tomatoes Rating":41,"Title":"The Majestic"},{"IMDB Rating":4.9,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Martin Lawrence Live: RunTelDat"},{"IMDB Rating":4.8,"Production Budget":15000000,"Rotten Tomatoes Rating":30,"Title":"Malibu's Most Wanted"},{"IMDB Rating":5.9,"Production Budget":35000000,"Rotten Tomatoes Rating":35,"Title":"Must Love Dogs"},{"IMDB Rating":7.6,"Production Budget":2500000,"Rotten Tomatoes Rating":64,"Title":"My Life Without Me"},{"IMDB Rating":5.1,"Production Budget":90000000,"Rotten Tomatoes Rating":24,"Title":"Mission to Mars"},{"IMDB Rating":7,"Production Budget":4000000,"Rotten Tomatoes Rating":53,"Title":"MirrorMask"},{"IMDB Rating":6.7,"Production Budget":28700000,"Rotten Tomatoes Rating":55,"Title":"Mumford"},{"IMDB Rating":6.2,"Production Budget":27000000,"Rotten Tomatoes Rating":26,"Title":"Mindhunters"},{"IMDB Rating":5.7,"Production Budget":57000000,"Rotten Tomatoes Rating":29,"Title":"Captain Corelli's Mandolin"},{"IMDB Rating":7.4,"Production Budget":14200000,"Rotten Tomatoes Rating":null,"Title":"Manderlay"},{"IMDB Rating":6.5,"Production Budget":35000000,"Rotten Tomatoes Rating":50,"Title":"Midnight in the Garden of Good and Evil"},{"IMDB Rating":7.2,"Production Budget":35000000,"Rotten Tomatoes Rating":31,"Title":"The Man in the Iron Mask"},{"IMDB Rating":5.1,"Production Budget":45000000,"Rotten Tomatoes Rating":16,"Title":"Monster-in-Law"},{"IMDB Rating":6.7,"Production Budget":21000000,"Rotten Tomatoes Rating":62,"Title":"Moonlight Mile"},{"IMDB Rating":6.1,"Production Budget":65000000,"Rotten Tomatoes Rating":35,"Title":"Mona Lisa Smile"},{"IMDB Rating":7.2,"Production Budget":4000000,"Rotten Tomatoes Rating":85,"Title":"Monster's Ball"},{"IMDB Rating":7.2,"Production Budget":21600000,"Rotten Tomatoes Rating":null,"Title":"MoliËre"},{"IMDB Rating":5.6,"Production Budget":21000000,"Rotten Tomatoes Rating":14,"Title":"Molly"},{"IMDB Rating":6.8,"Production Budget":75000000,"Rotten Tomatoes Rating":74,"Title":"Monster House"},{"IMDB Rating":8.3,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Mononoke-hime"},{"IMDB Rating":7.2,"Production Budget":1200000,"Rotten Tomatoes Rating":null,"Title":"Monsoon Wedding"},{"IMDB Rating":7.4,"Production Budget":5000000,"Rotten Tomatoes Rating":82,"Title":"Monster"},{"IMDB Rating":7.4,"Production Budget":115000000,"Rotten Tomatoes Rating":95,"Title":"Monsters, Inc."},{"IMDB Rating":5.7,"Production Budget":25000000,"Rotten Tomatoes Rating":17,"Title":"Money Talks"},{"IMDB Rating":8,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Moon"},{"IMDB Rating":5.2,"Production Budget":26000000,"Rotten Tomatoes Rating":13,"Title":"Welcome to Mooseport"},{"IMDB Rating":6.4,"Production Budget":6000000,"Rotten Tomatoes Rating":84,"Title":"Morvern Callar"},{"IMDB Rating":6.5,"Production Budget":42000000,"Rotten Tomatoes Rating":52,"Title":"The Mothman Prophecies"},{"IMDB Rating":7.3,"Production Budget":53000000,"Rotten Tomatoes Rating":null,"Title":"Moulin Rouge"},{"IMDB Rating":7.1,"Production Budget":25000000,"Rotten Tomatoes Rating":84,"Title":"Me and Orson Welles"},{"IMDB Rating":6.4,"Production Budget":60000000,"Rotten Tomatoes Rating":38,"Title":"Meet the Fockers"},{"IMDB Rating":7,"Production Budget":55000000,"Rotten Tomatoes Rating":84,"Title":"Meet the Parents"},{"IMDB Rating":5.6,"Production Budget":30000000,"Rotten Tomatoes Rating":55,"Title":"Mr. 3000"},{"IMDB Rating":6.1,"Production Budget":28000000,"Rotten Tomatoes Rating":null,"Title":"The Miracle"},{"IMDB Rating":7.7,"Production Budget":102000000,"Rotten Tomatoes Rating":91,"Title":"Minority Report"},{"IMDB Rating":5.2,"Production Budget":6000000,"Rotten Tomatoes Rating":null,"Title":"Mr. Nice Guy"},{"IMDB Rating":7.1,"Production Budget":20000000,"Rotten Tomatoes Rating":66,"Title":"Mrs. Henderson Presents"},{"IMDB Rating":3.2,"Production Budget":30000000,"Rotten Tomatoes Rating":7,"Title":"Mortal Kombat: Annihilation"},{"IMDB Rating":6.6,"Production Budget":23000000,"Rotten Tomatoes Rating":81,"Title":"Marvin's Room"},{"IMDB Rating":5.9,"Production Budget":45000000,"Rotten Tomatoes Rating":34,"Title":"Miracle at St. Anna"},{"IMDB Rating":6.1,"Production Budget":38000000,"Rotten Tomatoes Rating":null,"Title":"Mouse Hunt"},{"IMDB Rating":5.3,"Production Budget":7500000,"Rotten Tomatoes Rating":25,"Title":"Masked and Anonymous"},{"IMDB Rating":7.1,"Production Budget":30000000,"Rotten Tomatoes Rating":66,"Title":"Miss Potter"},{"IMDB Rating":6.1,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"The Missing Person"},{"IMDB Rating":2.4,"Production Budget":30000000,"Rotten Tomatoes Rating":2,"Title":"Meet the Spartans"},{"IMDB Rating":5.5,"Production Budget":28000000,"Rotten Tomatoes Rating":37,"Title":"Mystery, Alaska"},{"IMDB Rating":7.8,"Production Budget":15000000,"Rotten Tomatoes Rating":77,"Title":"Match Point"},{"IMDB Rating":7.2,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Mother and Child"},{"IMDB Rating":6.7,"Production Budget":15000000,"Rotten Tomatoes Rating":78,"Title":"A Mighty Heart"},{"IMDB Rating":7.1,"Production Budget":127000000,"Rotten Tomatoes Rating":73,"Title":"The Matrix Reloaded"},{"IMDB Rating":6.5,"Production Budget":110000000,"Rotten Tomatoes Rating":37,"Title":"The Matrix Revolutions"},{"IMDB Rating":7.1,"Production Budget":800000,"Rotten Tomatoes Rating":null,"Title":"The Mudge Boy"},{"IMDB Rating":7.2,"Production Budget":90000000,"Rotten Tomatoes Rating":86,"Title":"Mulan"},{"IMDB Rating":7.9,"Production Budget":15000000,"Rotten Tomatoes Rating":81,"Title":"Mulholland Drive"},{"IMDB Rating":6.8,"Production Budget":80000000,"Rotten Tomatoes Rating":54,"Title":"The Mummy"},{"IMDB Rating":6.2,"Production Budget":98000000,"Rotten Tomatoes Rating":47,"Title":"The Mummy Returns"},{"IMDB Rating":5.1,"Production Budget":175000000,"Rotten Tomatoes Rating":13,"Title":"The Mummy: Tomb of the Dragon Emperor"},{"IMDB Rating":7.8,"Production Budget":75000000,"Rotten Tomatoes Rating":78,"Title":"Munich"},{"IMDB Rating":6.1,"Production Budget":24000000,"Rotten Tomatoes Rating":62,"Title":"Muppets From Space"},{"IMDB Rating":5.9,"Production Budget":50000000,"Rotten Tomatoes Rating":31,"Title":"Murder by Numbers"},{"IMDB Rating":5.5,"Production Budget":15000000,"Rotten Tomatoes Rating":51,"Title":"The Muse"},{"IMDB Rating":6.4,"Production Budget":110000000,"Rotten Tomatoes Rating":43,"Title":"Night at the Museum"},{"IMDB Rating":4.4,"Production Budget":40000000,"Rotten Tomatoes Rating":10,"Title":"The Musketeer"},{"IMDB Rating":6.6,"Production Budget":40000000,"Rotten Tomatoes Rating":63,"Title":"Music and Lyrics"},{"IMDB Rating":7.1,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"The Merchant of Venice"},{"IMDB Rating":6,"Production Budget":135000000,"Rotten Tomatoes Rating":47,"Title":"Miami Vice"},{"IMDB Rating":6.8,"Production Budget":175000000,"Rotten Tomatoes Rating":72,"Title":"Monsters vs. Aliens"},{"IMDB Rating":7.2,"Production Budget":6000000,"Rotten Tomatoes Rating":88,"Title":"A Mighty Wind"},{"IMDB Rating":5.9,"Production Budget":40000000,"Rotten Tomatoes Rating":55,"Title":"The Mexican"},{"IMDB Rating":6.2,"Production Budget":46000000,"Rotten Tomatoes Rating":72,"Title":"My Best Friend's Wedding"},{"IMDB Rating":null,"Production Budget":14000000,"Rotten Tomatoes Rating":19,"Title":"Dude, Where's My Car?"},{"IMDB Rating":6.9,"Production Budget":7000000,"Rotten Tomatoes Rating":72,"Title":"My Dog Skip"},{"IMDB Rating":6.5,"Production Budget":1100,"Rotten Tomatoes Rating":null,"Title":"My Date With Drew"},{"IMDB Rating":7.4,"Production Budget":2000000,"Rotten Tomatoes Rating":82,"Title":"Me and You and Everyone We Know"},{"IMDB Rating":4.5,"Production Budget":60000000,"Rotten Tomatoes Rating":13,"Title":"My Favorite Martian"},{"IMDB Rating":6.3,"Production Budget":21500000,"Rotten Tomatoes Rating":50,"Title":"My Fellow Americans"},{"IMDB Rating":7.4,"Production Budget":27500000,"Rotten Tomatoes Rating":48,"Title":"My Sister's Keeper"},{"IMDB Rating":7,"Production Budget":1700000,"Rotten Tomatoes Rating":null,"Title":"My Summer of Love"},{"IMDB Rating":8,"Production Budget":30000000,"Rotten Tomatoes Rating":87,"Title":"Mystic River"},{"IMDB Rating":5.7,"Production Budget":32000000,"Rotten Tomatoes Rating":40,"Title":"Nacho Libre"},{"IMDB Rating":7.3,"Production Budget":7500000,"Rotten Tomatoes Rating":83,"Title":"Narc"},{"IMDB Rating":6.9,"Production Budget":225000000,"Rotten Tomatoes Rating":67,"Title":"The Chronicles of Narnia: Prince Caspian"},{"IMDB Rating":6.9,"Production Budget":100000000,"Rotten Tomatoes Rating":44,"Title":"National Treasure"},{"IMDB Rating":6.6,"Production Budget":35000000,"Rotten Tomatoes Rating":37,"Title":"The Nativity Story"},{"IMDB Rating":6.2,"Production Budget":21000000,"Rotten Tomatoes Rating":23,"Title":"Never Back Down"},{"IMDB Rating":5.7,"Production Budget":50000000,"Rotten Tomatoes Rating":21,"Title":"Into the Blue"},{"IMDB Rating":8.3,"Production Budget":25000000,"Rotten Tomatoes Rating":95,"Title":"No Country for Old Men"},{"IMDB Rating":8.1,"Production Budget":92000000,"Rotten Tomatoes Rating":97,"Title":"The Incredibles"},{"IMDB Rating":7.2,"Production Budget":50000000,"Rotten Tomatoes Rating":81,"Title":"The Negotiator"},{"IMDB Rating":5.3,"Production Budget":35000000,"Rotten Tomatoes Rating":13,"Title":"A Nightmare on Elm Street"},{"IMDB Rating":5.2,"Production Budget":5000000,"Rotten Tomatoes Rating":35,"Title":"Not Easily Broken"},{"IMDB Rating":5.4,"Production Budget":13000000,"Rotten Tomatoes Rating":7,"Title":"The New Guy"},{"IMDB Rating":5.7,"Production Budget":27000000,"Rotten Tomatoes Rating":61,"Title":"The Newton Boys"},{"IMDB Rating":4.4,"Production Budget":25000000,"Rotten Tomatoes Rating":19,"Title":"The Next Best Thing"},{"IMDB Rating":6.3,"Production Budget":1900000,"Rotten Tomatoes Rating":57,"Title":"Northfork"},{"IMDB Rating":6.8,"Production Budget":26000000,"Rotten Tomatoes Rating":84,"Title":"In Good Company"},{"IMDB Rating":6.9,"Production Budget":42000000,"Rotten Tomatoes Rating":82,"Title":"Notting Hill"},{"IMDB Rating":5,"Production Budget":80000000,"Rotten Tomatoes Rating":21,"Title":"Little Nicky"},{"IMDB Rating":7.3,"Production Budget":10000000,"Rotten Tomatoes Rating":77,"Title":"Nicholas Nickleby"},{"IMDB Rating":6,"Production Budget":37000000,"Rotten Tomatoes Rating":50,"Title":"Nim's Island"},{"IMDB Rating":6.3,"Production Budget":50000000,"Rotten Tomatoes Rating":25,"Title":"Ninja Assassin"},{"IMDB Rating":6.6,"Production Budget":38000000,"Rotten Tomatoes Rating":null,"Title":"The Ninth Gate"},{"IMDB Rating":7.3,"Production Budget":15000000,"Rotten Tomatoes Rating":62,"Title":"Never Let Me Go"},{"IMDB Rating":4.9,"Production Budget":65000000,"Rotten Tomatoes Rating":23,"Title":"Lucky Numbers"},{"IMDB Rating":5.9,"Production Budget":150000000,"Rotten Tomatoes Rating":null,"Title":"Night at the Museum: Battle of the Smithsonian"},{"IMDB Rating":6.8,"Production Budget":10000000,"Rotten Tomatoes Rating":73,"Title":"Nick and Norah's Infinite Playlist"},{"IMDB Rating":6.3,"Production Budget":19000000,"Rotten Tomatoes Rating":50,"Title":"Notorious"},{"IMDB Rating":8.3,"Production Budget":2000000,"Rotten Tomatoes Rating":94,"Title":"No End In Sight"},{"IMDB Rating":5.5,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Nomad"},{"IMDB Rating":8,"Production Budget":1000000,"Rotten Tomatoes Rating":93,"Title":"No Man's Land"},{"IMDB Rating":6.3,"Production Budget":28000000,"Rotten Tomatoes Rating":40,"Title":"No Reservations"},{"IMDB Rating":8,"Production Budget":30000000,"Rotten Tomatoes Rating":52,"Title":"The Notebook"},{"IMDB Rating":5.5,"Production Budget":250000,"Rotten Tomatoes Rating":null,"Title":"November"},{"IMDB Rating":5.8,"Production Budget":6000000,"Rotten Tomatoes Rating":37,"Title":"Novocaine"},{"IMDB Rating":6.9,"Production Budget":400000,"Rotten Tomatoes Rating":70,"Title":"Napoleon Dynamite"},{"IMDB Rating":7.2,"Production Budget":30000000,"Rotten Tomatoes Rating":69,"Title":"North Country"},{"IMDB Rating":7.5,"Production Budget":8500000,"Rotten Tomatoes Rating":null,"Title":"The Namesake"},{"IMDB Rating":6.9,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Inside Deep Throat"},{"IMDB Rating":6.4,"Production Budget":60000000,"Rotten Tomatoes Rating":75,"Title":"Intolerable Cruelty"},{"IMDB Rating":6.5,"Production Budget":90000000,"Rotten Tomatoes Rating":58,"Title":"The Interpreter"},{"IMDB Rating":5.9,"Production Budget":4000000,"Rotten Tomatoes Rating":40,"Title":"The Night Listener"},{"IMDB Rating":null,"Production Budget":50000000,"Rotten Tomatoes Rating":59,"Title":"The International"},{"IMDB Rating":6.2,"Production Budget":32000000,"Rotten Tomatoes Rating":8,"Title":"The Number 23"},{"IMDB Rating":6.4,"Production Budget":24000000,"Rotten Tomatoes Rating":84,"Title":"Nurse Betty"},{"IMDB Rating":5.9,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Jimmy Neutron: Boy Genius"},{"IMDB Rating":4.3,"Production Budget":84000000,"Rotten Tomatoes Rating":null,"Title":"Nutty Professor II: The Klumps"},{"IMDB Rating":5.8,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Never Again"},{"IMDB Rating":7.9,"Production Budget":25000000,"Rotten Tomatoes Rating":82,"Title":"Finding Neverland"},{"IMDB Rating":8.2,"Production Budget":20000000,"Rotten Tomatoes Rating":82,"Title":"Into the Wild"},{"IMDB Rating":6.9,"Production Budget":30000000,"Rotten Tomatoes Rating":60,"Title":"The New World"},{"IMDB Rating":6.5,"Production Budget":4200000,"Rotten Tomatoes Rating":null,"Title":"Nochnoy dozor"},{"IMDB Rating":null,"Production Budget":40000000,"Rotten Tomatoes Rating":11,"Title":"New York Minute"},{"IMDB Rating":5.9,"Production Budget":15000000,"Rotten Tomatoes Rating":50,"Title":"The Object of my Affection"},{"IMDB Rating":6.1,"Production Budget":18000000,"Rotten Tomatoes Rating":47,"Title":"Orange County"},{"IMDB Rating":7.6,"Production Budget":110000000,"Rotten Tomatoes Rating":81,"Title":"Ocean's Eleven"},{"IMDB Rating":6,"Production Budget":85000000,"Rotten Tomatoes Rating":55,"Title":"Ocean's Twelve"},{"IMDB Rating":6.9,"Production Budget":85000000,"Rotten Tomatoes Rating":70,"Title":"Ocean's Thirteen"},{"IMDB Rating":7.6,"Production Budget":80000000,"Rotten Tomatoes Rating":null,"Title":"Oceans"},{"IMDB Rating":7.9,"Production Budget":10000000,"Rotten Tomatoes Rating":80,"Title":"Office Space"},{"IMDB Rating":7,"Production Budget":16000000,"Rotten Tomatoes Rating":69,"Title":"White Oleander"},{"IMDB Rating":5.4,"Production Budget":25000000,"Rotten Tomatoes Rating":26,"Title":"The Omen"},{"IMDB Rating":6.6,"Production Budget":60000000,"Rotten Tomatoes Rating":49,"Title":"Any Given Sunday"},{"IMDB Rating":8,"Production Budget":150000,"Rotten Tomatoes Rating":97,"Title":"Once"},{"IMDB Rating":7.1,"Production Budget":1000000,"Rotten Tomatoes Rating":82,"Title":"Once in a Lifetime: the Extraordinary Story of the New York Cosmos"},{"IMDB Rating":7,"Production Budget":12000000,"Rotten Tomatoes Rating":81,"Title":"One Hour Photo"},{"IMDB Rating":6.9,"Production Budget":30000000,"Rotten Tomatoes Rating":88,"Title":"One True Thing"},{"IMDB Rating":4.7,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Ong-Bak 2"},{"IMDB Rating":3.4,"Production Budget":10000000,"Rotten Tomatoes Rating":18,"Title":"On the Line"},{"IMDB Rating":6,"Production Budget":20000000,"Rotten Tomatoes Rating":16,"Title":"One Night with the King"},{"IMDB Rating":6.5,"Production Budget":9000000,"Rotten Tomatoes Rating":null,"Title":"Opal Dreams"},{"IMDB Rating":6,"Production Budget":85000000,"Rotten Tomatoes Rating":47,"Title":"Open Season"},{"IMDB Rating":5.9,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Open Water"},{"IMDB Rating":7.5,"Production Budget":26000000,"Rotten Tomatoes Rating":79,"Title":"Open Range"},{"IMDB Rating":4.9,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"The Order"},{"IMDB Rating":6,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Orgazmo"},{"IMDB Rating":5.6,"Production Budget":26000000,"Rotten Tomatoes Rating":12,"Title":"Original Sin"},{"IMDB Rating":7.4,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Osama"},{"IMDB Rating":6.7,"Production Budget":12500000,"Rotten Tomatoes Rating":65,"Title":"Oscar and Lucinda"},{"IMDB Rating":7,"Production Budget":24000000,"Rotten Tomatoes Rating":60,"Title":"Old School"},{"IMDB Rating":6,"Production Budget":70000000,"Rotten Tomatoes Rating":54,"Title":"Osmosis Jones"},{"IMDB Rating":5.6,"Production Budget":35000000,"Rotten Tomatoes Rating":13,"Title":"American Outlaws"},{"IMDB Rating":7,"Production Budget":65000000,"Rotten Tomatoes Rating":59,"Title":"Oliver Twist"},{"IMDB Rating":5.8,"Production Budget":11000000,"Rotten Tomatoes Rating":8,"Title":"Out Cold"},{"IMDB Rating":6.4,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"Outlander"},{"IMDB Rating":7.1,"Production Budget":48000000,"Rotten Tomatoes Rating":93,"Title":"Out of Sight"},{"IMDB Rating":4.9,"Production Budget":50000000,"Rotten Tomatoes Rating":65,"Title":"Out of Time"},{"IMDB Rating":4.9,"Production Budget":40000000,"Rotten Tomatoes Rating":24,"Title":"The Out-of-Towners"},{"IMDB Rating":7,"Production Budget":10000000,"Rotten Tomatoes Rating":78,"Title":"Owning Mahowny"},{"IMDB Rating":5.3,"Production Budget":56000000,"Rotten Tomatoes Rating":20,"Title":"The Pacifier"},{"IMDB Rating":8.4,"Production Budget":16000000,"Rotten Tomatoes Rating":null,"Title":"El Laberinto del Fauno"},{"IMDB Rating":7.1,"Production Budget":25000000,"Rotten Tomatoes Rating":50,"Title":"The Passion of the Christ"},{"IMDB Rating":6.3,"Production Budget":50000000,"Rotten Tomatoes Rating":24,"Title":"Patch Adams"},{"IMDB Rating":5.8,"Production Budget":50000000,"Rotten Tomatoes Rating":51,"Title":"Payback"},{"IMDB Rating":6.1,"Production Budget":60000000,"Rotten Tomatoes Rating":28,"Title":"Paycheck"},{"IMDB Rating":5.4,"Production Budget":35000000,"Rotten Tomatoes Rating":17,"Title":"Max Payne"},{"IMDB Rating":5.3,"Production Budget":45000000,"Rotten Tomatoes Rating":null,"Title":"The Princess Diaries 2: Royal Engagement"},{"IMDB Rating":5.9,"Production Budget":30000000,"Rotten Tomatoes Rating":46,"Title":"The Princess Diaries"},{"IMDB Rating":5.8,"Production Budget":50000000,"Rotten Tomatoes Rating":45,"Title":"The Peacemaker"},{"IMDB Rating":7.1,"Production Budget":100000000,"Rotten Tomatoes Rating":76,"Title":"Peter Pan"},{"IMDB Rating":5.5,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"People I Know"},{"IMDB Rating":6.2,"Production Budget":6600000,"Rotten Tomatoes Rating":null,"Title":"Perrier's Bounty"},{"IMDB Rating":6.5,"Production Budget":14000000,"Rotten Tomatoes Rating":60,"Title":"A Perfect Getaway"},{"IMDB Rating":2.2,"Production Budget":3000000,"Rotten Tomatoes Rating":23,"Title":"Phat Girlz"},{"IMDB Rating":6.8,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Poolhall Junkies"},{"IMDB Rating":7.2,"Production Budget":55000000,"Rotten Tomatoes Rating":33,"Title":"The Phantom of the Opera"},{"IMDB Rating":7.2,"Production Budget":11000000,"Rotten Tomatoes Rating":71,"Title":"Phone Booth"},{"IMDB Rating":8.5,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"The Pianist"},{"IMDB Rating":5.1,"Production Budget":80000000,"Rotten Tomatoes Rating":22,"Title":"The Pink Panther"},{"IMDB Rating":8,"Production Budget":125000000,"Rotten Tomatoes Rating":null,"Title":"Pirates of the Caribbean: The Curse of the Black Pearl"},{"IMDB Rating":7.3,"Production Budget":225000000,"Rotten Tomatoes Rating":54,"Title":"Pirates of the Caribbean: Dead Man's Chest"},{"IMDB Rating":7,"Production Budget":300000000,"Rotten Tomatoes Rating":45,"Title":"Pirates of the Caribbean: At World's End"},{"IMDB Rating":6.4,"Production Budget":120000000,"Rotten Tomatoes Rating":29,"Title":"The Chronicles of Riddick"},{"IMDB Rating":7,"Production Budget":23000000,"Rotten Tomatoes Rating":55,"Title":"Pitch Black"},{"IMDB Rating":5.1,"Production Budget":24000000,"Rotten Tomatoes Rating":null,"Title":"Play it to the Bone"},{"IMDB Rating":5.1,"Production Budget":12000000,"Rotten Tomatoes Rating":13,"Title":"Screwed"},{"IMDB Rating":5.8,"Production Budget":95000000,"Rotten Tomatoes Rating":50,"Title":"Percy Jackson & the Olympians: The Lightning Thief"},{"IMDB Rating":6.6,"Production Budget":13000000,"Rotten Tomatoes Rating":null,"Title":"Paris, je t'aime"},{"IMDB Rating":5.3,"Production Budget":9000000,"Rotten Tomatoes Rating":null,"Title":"Princess Kaiulani"},{"IMDB Rating":5.3,"Production Budget":27000000,"Rotten Tomatoes Rating":38,"Title":"Lake Placid"},{"IMDB Rating":4.4,"Production Budget":35000000,"Rotten Tomatoes Rating":20,"Title":"The Back-up Plan"},{"IMDB Rating":6.9,"Production Budget":45000000,"Rotten Tomatoes Rating":77,"Title":"The Pledge"},{"IMDB Rating":6.1,"Production Budget":65000000,"Rotten Tomatoes Rating":39,"Title":"Proof of Life"},{"IMDB Rating":7.1,"Production Budget":6000000,"Rotten Tomatoes Rating":82,"Title":"Pollock"},{"IMDB Rating":5.5,"Production Budget":100000000,"Rotten Tomatoes Rating":44,"Title":"Planet of the Apes"},{"IMDB Rating":7.4,"Production Budget":3000000,"Rotten Tomatoes Rating":88,"Title":"Please Give"},{"IMDB Rating":6.1,"Production Budget":50000000,"Rotten Tomatoes Rating":22,"Title":"Planet 51"},{"IMDB Rating":3.7,"Production Budget":100000000,"Rotten Tomatoes Rating":6,"Title":"The Adventures of Pluto Nash"},{"IMDB Rating":4.8,"Production Budget":5000000,"Rotten Tomatoes Rating":27,"Title":"The Players Club"},{"IMDB Rating":6.7,"Production Budget":15000,"Rotten Tomatoes Rating":82,"Title":"Paranormal Activity"},{"IMDB Rating":3.5,"Production Budget":45000000,"Rotten Tomatoes Rating":null,"Title":"Pinocchio"},{"IMDB Rating":6.5,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Pandaemonium"},{"IMDB Rating":6.9,"Production Budget":40000000,"Rotten Tomatoes Rating":28,"Title":"Pandorum"},{"IMDB Rating":6.4,"Production Budget":33000000,"Rotten Tomatoes Rating":30,"Title":"The Punisher"},{"IMDB Rating":3.5,"Production Budget":3000000,"Rotten Tomatoes Rating":23,"Title":"Pokemon 3: The Movie"},{"IMDB Rating":6.7,"Production Budget":170000000,"Rotten Tomatoes Rating":56,"Title":"The Polar Express"},{"IMDB Rating":5.8,"Production Budget":42000000,"Rotten Tomatoes Rating":26,"Title":"Along Came Polly"},{"IMDB Rating":7.8,"Production Budget":34000000,"Rotten Tomatoes Rating":null,"Title":"Gake no ue no Ponyo"},{"IMDB Rating":4.5,"Production Budget":3500000,"Rotten Tomatoes Rating":27,"Title":"Pootie Tang"},{"IMDB Rating":5.6,"Production Budget":160000000,"Rotten Tomatoes Rating":33,"Title":"Poseidon"},{"IMDB Rating":6.4,"Production Budget":25000000,"Rotten Tomatoes Rating":64,"Title":"Possession"},{"IMDB Rating":null,"Production Budget":20000000,"Rotten Tomatoes Rating":46,"Title":"Peter Pan: Return to Neverland"},{"IMDB Rating":5.5,"Production Budget":60000000,"Rotten Tomatoes Rating":21,"Title":"Practical Magic"},{"IMDB Rating":6.8,"Production Budget":35000000,"Rotten Tomatoes Rating":75,"Title":"The Devil Wears Prada"},{"IMDB Rating":7.5,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"The Boat That Rocked"},{"IMDB Rating":5.7,"Production Budget":20000000,"Rotten Tomatoes Rating":18,"Title":"Paparazzi"},{"IMDB Rating":6.7,"Production Budget":65000000,"Rotten Tomatoes Rating":80,"Title":"Primary Colors"},{"IMDB Rating":7.5,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Precious (Based on the Novel Push by Sapphire)"},{"IMDB Rating":6.7,"Production Budget":30000000,"Rotten Tomatoes Rating":34,"Title":"Pride and Glory"},{"IMDB Rating":5.5,"Production Budget":28000000,"Rotten Tomatoes Rating":85,"Title":"Pride and Prejudice"},{"IMDB Rating":6.9,"Production Budget":40000000,"Rotten Tomatoes Rating":63,"Title":"Predators"},{"IMDB Rating":6.2,"Production Budget":8000000,"Rotten Tomatoes Rating":62,"Title":"Prefontaine"},{"IMDB Rating":7.5,"Production Budget":63700000,"Rotten Tomatoes Rating":58,"Title":"Perfume: The Story of a Murderer"},{"IMDB Rating":5.6,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"The Prince & Me"},{"IMDB Rating":5.1,"Production Budget":10000000,"Rotten Tomatoes Rating":5,"Title":"The Perfect Man"},{"IMDB Rating":7.8,"Production Budget":55000000,"Rotten Tomatoes Rating":66,"Title":"The Pursuit of Happyness"},{"IMDB Rating":6.9,"Production Budget":7000,"Rotten Tomatoes Rating":null,"Title":"Primer"},{"IMDB Rating":5.4,"Production Budget":151500000,"Rotten Tomatoes Rating":26,"Title":"Pearl Harbor"},{"IMDB Rating":null,"Production Budget":20000000,"Rotten Tomatoes Rating":8,"Title":"Premonition"},{"IMDB Rating":6.8,"Production Budget":60000000,"Rotten Tomatoes Rating":79,"Title":"The Prince of Egypt"},{"IMDB Rating":5.1,"Production Budget":18000000,"Rotten Tomatoes Rating":8,"Title":"Prom Night"},{"IMDB Rating":6.9,"Production Budget":20000000,"Rotten Tomatoes Rating":64,"Title":"Proof"},{"IMDB Rating":6.9,"Production Budget":48000000,"Rotten Tomatoes Rating":76,"Title":"Panic Room"},{"IMDB Rating":5.4,"Production Budget":40000000,"Rotten Tomatoes Rating":43,"Title":"The Proposal"},{"IMDB Rating":8.4,"Production Budget":40000000,"Rotten Tomatoes Rating":75,"Title":"The Prestige"},{"IMDB Rating":5.5,"Production Budget":80000000,"Rotten Tomatoes Rating":10,"Title":"The Postman"},{"IMDB Rating":6,"Production Budget":4000000,"Rotten Tomatoes Rating":55,"Title":"Psycho Beach Party"},{"IMDB Rating":4.5,"Production Budget":20000000,"Rotten Tomatoes Rating":35,"Title":"Psycho"},{"IMDB Rating":6.9,"Production Budget":110000000,"Rotten Tomatoes Rating":62,"Title":"The Patriot"},{"IMDB Rating":7.1,"Production Budget":102500000,"Rotten Tomatoes Rating":68,"Title":"Public Enemies"},{"IMDB Rating":5.9,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"The Powerpuff Girls"},{"IMDB Rating":5,"Production Budget":7500000,"Rotten Tomatoes Rating":11,"Title":"Pulse"},{"IMDB Rating":7.4,"Production Budget":25000000,"Rotten Tomatoes Rating":79,"Title":"Punch-Drunk Love"},{"IMDB Rating":6.1,"Production Budget":35000000,"Rotten Tomatoes Rating":26,"Title":"Punisher: War Zone"},{"IMDB Rating":6,"Production Budget":38000000,"Rotten Tomatoes Rating":23,"Title":"Push"},{"IMDB Rating":5.9,"Production Budget":33000000,"Rotten Tomatoes Rating":49,"Title":"Pushing Tin"},{"IMDB Rating":7.6,"Production Budget":19400000,"Rotten Tomatoes Rating":74,"Title":"The Painted Veil"},{"IMDB Rating":6.8,"Production Budget":40000000,"Rotten Tomatoes Rating":40,"Title":"Pay it Forward"},{"IMDB Rating":4.7,"Production Budget":35000000,"Rotten Tomatoes Rating":17,"Title":"Queen of the Damned"},{"IMDB Rating":7.2,"Production Budget":20000000,"Rotten Tomatoes Rating":87,"Title":"The Quiet American"},{"IMDB Rating":3.5,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"All the Queen's Men"},{"IMDB Rating":6.1,"Production Budget":12000000,"Rotten Tomatoes Rating":58,"Title":"Quarantine"},{"IMDB Rating":7.6,"Production Budget":15000000,"Rotten Tomatoes Rating":97,"Title":"The Queen"},{"IMDB Rating":5,"Production Budget":40000000,"Rotten Tomatoes Rating":33,"Title":"Quest for Camelot"},{"IMDB Rating":6.5,"Production Budget":900000,"Rotten Tomatoes Rating":null,"Title":"The Quiet"},{"IMDB Rating":7.1,"Production Budget":400000,"Rotten Tomatoes Rating":null,"Title":"Quinceanera"},{"IMDB Rating":7.6,"Production Budget":7000000,"Rotten Tomatoes Rating":87,"Title":"Rabbit-Proof Fence"},{"IMDB Rating":6.9,"Production Budget":35000000,"Rotten Tomatoes Rating":35,"Title":"Radio"},{"IMDB Rating":6.9,"Production Budget":40000000,"Rotten Tomatoes Rating":84,"Title":"The Rainmaker"},{"IMDB Rating":7.3,"Production Budget":47500000,"Rotten Tomatoes Rating":null,"Title":"Rambo"},{"IMDB Rating":4.8,"Production Budget":64000000,"Rotten Tomatoes Rating":15,"Title":"Random Hearts"},{"IMDB Rating":5,"Production Budget":25000000,"Rotten Tomatoes Rating":40,"Title":"Rugrats Go Wild"},{"IMDB Rating":8.1,"Production Budget":150000000,"Rotten Tomatoes Rating":96,"Title":"Ratatouille"},{"IMDB Rating":null,"Production Budget":40000000,"Rotten Tomatoes Rating":81,"Title":"Ray"},{"IMDB Rating":2.7,"Production Budget":25000000,"Rotten Tomatoes Rating":4,"Title":"BloodRayne"},{"IMDB Rating":2.8,"Production Budget":70000000,"Rotten Tomatoes Rating":3,"Title":"Rollerball"},{"IMDB Rating":6.9,"Production Budget":210000000,"Rotten Tomatoes Rating":43,"Title":"Robin Hood"},{"IMDB Rating":6.4,"Production Budget":80000000,"Rotten Tomatoes Rating":64,"Title":"Robots"},{"IMDB Rating":7.6,"Production Budget":5250000,"Rotten Tomatoes Rating":null,"Title":"A Room for Romeo Brass"},{"IMDB Rating":5.2,"Production Budget":70000000,"Rotten Tomatoes Rating":45,"Title":"Runaway Bride"},{"IMDB Rating":5.2,"Production Budget":30000000,"Rotten Tomatoes Rating":35,"Title":"Racing Stripes"},{"IMDB Rating":7.4,"Production Budget":24000000,"Rotten Tomatoes Rating":76,"Title":"Rocky Balboa"},{"IMDB Rating":6.4,"Production Budget":95000000,"Rotten Tomatoes Rating":49,"Title":"The Road to El Dorado"},{"IMDB Rating":7.7,"Production Budget":2600000,"Rotten Tomatoes Rating":93,"Title":"Riding Giants"},{"IMDB Rating":7.3,"Production Budget":78000000,"Rotten Tomatoes Rating":68,"Title":"Red Dragon"},{"IMDB Rating":7.7,"Production Budget":33000000,"Rotten Tomatoes Rating":61,"Title":"The Reader"},{"IMDB Rating":5.6,"Production Budget":40000000,"Rotten Tomatoes Rating":8,"Title":"The Reaping"},{"IMDB Rating":4.7,"Production Budget":45000000,"Rotten Tomatoes Rating":14,"Title":"Rebound"},{"IMDB Rating":6.2,"Production Budget":10000000,"Rotten Tomatoes Rating":62,"Title":"Recess: School's Out"},{"IMDB Rating":6.1,"Production Budget":5000000,"Rotten Tomatoes Rating":44,"Title":"Redacted"},{"IMDB Rating":6.5,"Production Budget":26000000,"Rotten Tomatoes Rating":null,"Title":"Red-Eye"},{"IMDB Rating":7.7,"Production Budget":20000000,"Rotten Tomatoes Rating":63,"Title":"Reign Over Me"},{"IMDB Rating":5.4,"Production Budget":60000000,"Rotten Tomatoes Rating":32,"Title":"The Relic"},{"IMDB Rating":7.8,"Production Budget":2500000,"Rotten Tomatoes Rating":69,"Title":"Religulous"},{"IMDB Rating":7,"Production Budget":16000000,"Rotten Tomatoes Rating":28,"Title":"Remember Me"},{"IMDB Rating":7,"Production Budget":6700000,"Rotten Tomatoes Rating":null,"Title":"Remember Me, My Love"},{"IMDB Rating":6.9,"Production Budget":40000000,"Rotten Tomatoes Rating":47,"Title":"Rent"},{"IMDB Rating":6.2,"Production Budget":50000000,"Rotten Tomatoes Rating":39,"Title":"The Replacements"},{"IMDB Rating":5.9,"Production Budget":30000000,"Rotten Tomatoes Rating":39,"Title":"The Replacement Killers"},{"IMDB Rating":5.8,"Production Budget":50000000,"Rotten Tomatoes Rating":null,"Title":"Resident Evil: Apocalypse"},{"IMDB Rating":6.2,"Production Budget":45000000,"Rotten Tomatoes Rating":22,"Title":"Resident Evil: Extinction"},{"IMDB Rating":6.4,"Production Budget":35000000,"Rotten Tomatoes Rating":34,"Title":"Resident Evil"},{"IMDB Rating":6.6,"Production Budget":24000000,"Rotten Tomatoes Rating":61,"Title":"Return to Me"},{"IMDB Rating":7.6,"Production Budget":35000000,"Rotten Tomatoes Rating":68,"Title":"Revolutionary Road"},{"IMDB Rating":6.6,"Production Budget":20000000,"Rotten Tomatoes Rating":65,"Title":"Be Kind Rewind"},{"IMDB Rating":5.9,"Production Budget":60000000,"Rotten Tomatoes Rating":40,"Title":"Reign of Fire"},{"IMDB Rating":5.5,"Production Budget":36000000,"Rotten Tomatoes Rating":null,"Title":"Reindeer Games"},{"IMDB Rating":6.9,"Production Budget":12000000,"Rotten Tomatoes Rating":86,"Title":"Rachel Getting Married"},{"IMDB Rating":5.4,"Production Budget":28000000,"Rotten Tomatoes Rating":57,"Title":"The Rugrats Movie"},{"IMDB Rating":6.2,"Production Budget":47000000,"Rotten Tomatoes Rating":48,"Title":"Riding in Cars with Boys"},{"IMDB Rating":6.4,"Production Budget":35000000,"Rotten Tomatoes Rating":63,"Title":"Ride With the Devil"},{"IMDB Rating":5.1,"Production Budget":50000000,"Rotten Tomatoes Rating":20,"Title":"The Ring Two"},{"IMDB Rating":6.8,"Production Budget":700000,"Rotten Tomatoes Rating":null,"Title":"Rize"},{"IMDB Rating":4.1,"Production Budget":76000000,"Rotten Tomatoes Rating":42,"Title":"The Adventures of Rocky & Bullwinkle"},{"IMDB Rating":7.1,"Production Budget":1000000,"Rotten Tomatoes Rating":71,"Title":"All the Real Girls"},{"IMDB Rating":7,"Production Budget":3000000,"Rotten Tomatoes Rating":83,"Title":"Real Women Have Curves"},{"IMDB Rating":6.2,"Production Budget":11000000,"Rotten Tomatoes Rating":null,"Title":"Romance and Cigarettes"},{"IMDB Rating":5.8,"Production Budget":10000000,"Rotten Tomatoes Rating":35,"Title":"Reno 911!: Miami"},{"IMDB Rating":7.3,"Production Budget":12000000,"Rotten Tomatoes Rating":64,"Title":"Rounders"},{"IMDB Rating":6.9,"Production Budget":27500000,"Rotten Tomatoes Rating":46,"Title":"Rendition"},{"IMDB Rating":6.3,"Production Budget":15000000,"Rotten Tomatoes Rating":40,"Title":"The Rocker"},{"IMDB Rating":5.8,"Production Budget":38000000,"Rotten Tomatoes Rating":52,"Title":"Rock Star"},{"IMDB Rating":5.5,"Production Budget":22000000,"Rotten Tomatoes Rating":82,"Title":"The Rookie"},{"IMDB Rating":5,"Production Budget":10000000,"Rotten Tomatoes Rating":64,"Title":"Roll Bounce"},{"IMDB Rating":5.9,"Production Budget":25000000,"Rotten Tomatoes Rating":33,"Title":"Romeo Must Die"},{"IMDB Rating":7.2,"Production Budget":55000000,"Rotten Tomatoes Rating":68,"Title":"Ronin"},{"IMDB Rating":6.8,"Production Budget":1500000,"Rotten Tomatoes Rating":null,"Title":"The Ballad of Jack and Rose"},{"IMDB Rating":5.3,"Production Budget":80000000,"Rotten Tomatoes Rating":12,"Title":"Red Planet"},{"IMDB Rating":8.5,"Production Budget":4500000,"Rotten Tomatoes Rating":78,"Title":"Requiem for a Dream"},{"IMDB Rating":6.4,"Production Budget":48000000,"Rotten Tomatoes Rating":43,"Title":"Rat Race"},{"IMDB Rating":7.5,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Rescue Dawn"},{"IMDB Rating":2.3,"Production Budget":4000000,"Rotten Tomatoes Rating":35,"Title":"The Real Cancun"},{"IMDB Rating":6.7,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Restless"},{"IMDB Rating":7.5,"Production Budget":30000000,"Rotten Tomatoes Rating":72,"Title":"Remember the Titans"},{"IMDB Rating":6,"Production Budget":60000000,"Rotten Tomatoes Rating":20,"Title":"Righteous Kill"},{"IMDB Rating":6.4,"Production Budget":16000000,"Rotten Tomatoes Rating":59,"Title":"Road Trip"},{"IMDB Rating":6,"Production Budget":25000000,"Rotten Tomatoes Rating":47,"Title":"The Ruins"},{"IMDB Rating":6.2,"Production Budget":60000000,"Rotten Tomatoes Rating":37,"Title":"Rules of Engagement"},{"IMDB Rating":6.6,"Production Budget":85000000,"Rotten Tomatoes Rating":null,"Title":"The Rundown"},{"IMDB Rating":7.5,"Production Budget":17000000,"Rotten Tomatoes Rating":40,"Title":"Running Scared"},{"IMDB Rating":6,"Production Budget":12000000,"Rotten Tomatoes Rating":30,"Title":"Running With Scissors"},{"IMDB Rating":6.4,"Production Budget":90000000,"Rotten Tomatoes Rating":51,"Title":"Rush Hour 2"},{"IMDB Rating":6,"Production Budget":180000000,"Rotten Tomatoes Rating":19,"Title":"Rush Hour 3"},{"IMDB Rating":6.8,"Production Budget":35000000,"Rotten Tomatoes Rating":60,"Title":"Rush Hour"},{"IMDB Rating":7.8,"Production Budget":10000000,"Rotten Tomatoes Rating":87,"Title":"Rushmore"},{"IMDB Rating":6.9,"Production Budget":12000000,"Rotten Tomatoes Rating":39,"Title":"Ravenous"},{"IMDB Rating":5.2,"Production Budget":15000000,"Rotten Tomatoes Rating":16,"Title":"Raise Your Voice"},{"IMDB Rating":8.3,"Production Budget":17500000,"Rotten Tomatoes Rating":90,"Title":"Hotel Rwanda"},{"IMDB Rating":5.9,"Production Budget":145000000,"Rotten Tomatoes Rating":39,"Title":"Sahara"},{"IMDB Rating":5.9,"Production Budget":90000000,"Rotten Tomatoes Rating":30,"Title":"The Saint"},{"IMDB Rating":3.5,"Production Budget":1500000,"Rotten Tomatoes Rating":12,"Title":"The Salon"},{"IMDB Rating":7.4,"Production Budget":22000000,"Rotten Tomatoes Rating":34,"Title":"I Am Sam"},{"IMDB Rating":7.1,"Production Budget":18000000,"Rotten Tomatoes Rating":63,"Title":"The Salton Sea"},{"IMDB Rating":3.9,"Production Budget":95000000,"Rotten Tomatoes Rating":15,"Title":"Sex and the City 2"},{"IMDB Rating":7,"Production Budget":5000000,"Rotten Tomatoes Rating":null,"Title":"Saved!"},{"IMDB Rating":5.6,"Production Budget":22000000,"Rotten Tomatoes Rating":null,"Title":"Saving Silverman"},{"IMDB Rating":7.7,"Production Budget":1200000,"Rotten Tomatoes Rating":48,"Title":"Saw"},{"IMDB Rating":6.8,"Production Budget":5000000,"Rotten Tomatoes Rating":36,"Title":"Saw II"},{"IMDB Rating":6.3,"Production Budget":10000000,"Rotten Tomatoes Rating":25,"Title":"Saw III"},{"IMDB Rating":6,"Production Budget":10000000,"Rotten Tomatoes Rating":17,"Title":"Saw IV"},{"IMDB Rating":5.7,"Production Budget":10800000,"Rotten Tomatoes Rating":13,"Title":"Saw V"},{"IMDB Rating":6.2,"Production Budget":11000000,"Rotten Tomatoes Rating":42,"Title":"Saw VI"},{"IMDB Rating":4.6,"Production Budget":25000000,"Rotten Tomatoes Rating":9,"Title":"Say It Isn't So"},{"IMDB Rating":5.7,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Say Uncle"},{"IMDB Rating":3.6,"Production Budget":50000000,"Rotten Tomatoes Rating":20,"Title":"The Adventures of Sharkboy and Lavagirl in 3-D"},{"IMDB Rating":7.4,"Production Budget":86000000,"Rotten Tomatoes Rating":77,"Title":"Seabiscuit"},{"IMDB Rating":7.2,"Production Budget":20000000,"Rotten Tomatoes Rating":68,"Title":"A Scanner Darkly"},{"IMDB Rating":4.7,"Production Budget":45000000,"Rotten Tomatoes Rating":14,"Title":"Scary Movie 2"},{"IMDB Rating":5.4,"Production Budget":45000000,"Rotten Tomatoes Rating":37,"Title":"Scary Movie 3"},{"IMDB Rating":5,"Production Budget":40000000,"Rotten Tomatoes Rating":37,"Title":"Scary Movie 4"},{"IMDB Rating":4.8,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Scooby-Doo 2: Monsters Unleashed"},{"IMDB Rating":4.7,"Production Budget":84000000,"Rotten Tomatoes Rating":28,"Title":"Scooby-Doo"},{"IMDB Rating":7.3,"Production Budget":30000000,"Rotten Tomatoes Rating":85,"Title":"About Schmidt"},{"IMDB Rating":7.2,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"The School of Rock"},{"IMDB Rating":6,"Production Budget":20000000,"Rotten Tomatoes Rating":26,"Title":"School for Scoundrels"},{"IMDB Rating":6.8,"Production Budget":4000000,"Rotten Tomatoes Rating":39,"Title":"Scoop"},{"IMDB Rating":6.8,"Production Budget":68000000,"Rotten Tomatoes Rating":74,"Title":"The Score"},{"IMDB Rating":2.9,"Production Budget":15000000,"Rotten Tomatoes Rating":81,"Title":"Scream"},{"IMDB Rating":5.9,"Production Budget":24000000,"Rotten Tomatoes Rating":80,"Title":"Scream 2"},{"IMDB Rating":5.3,"Production Budget":40000000,"Rotten Tomatoes Rating":38,"Title":"Scream 3"},{"IMDB Rating":5.3,"Production Budget":60000000,"Rotten Tomatoes Rating":40,"Title":"The Scorpion King"},{"IMDB Rating":7.9,"Production Budget":70000000,"Rotten Tomatoes Rating":76,"Title":"Stardust"},{"IMDB Rating":7.2,"Production Budget":13300000,"Rotten Tomatoes Rating":null,"Title":"Mar adentro"},{"IMDB Rating":6.3,"Production Budget":20000000,"Rotten Tomatoes Rating":63,"Title":"Selena"},{"IMDB Rating":6.1,"Production Budget":60000000,"Rotten Tomatoes Rating":33,"Title":"The Sentinel"},{"IMDB Rating":5.5,"Production Budget":10100000,"Rotten Tomatoes Rating":13,"Title":"September Dawn"},{"IMDB Rating":2.6,"Production Budget":8000000,"Rotten Tomatoes Rating":16,"Title":"You Got Served"},{"IMDB Rating":5,"Production Budget":29000000,"Rotten Tomatoes Rating":5,"Title":"Serving Sara"},{"IMDB Rating":6.8,"Production Budget":1500000,"Rotten Tomatoes Rating":60,"Title":"Session 9"},{"IMDB Rating":6.7,"Production Budget":70000000,"Rotten Tomatoes Rating":59,"Title":"Seven Years in Tibet"},{"IMDB Rating":5.4,"Production Budget":57500000,"Rotten Tomatoes Rating":49,"Title":"Sex and the City"},{"IMDB Rating":6.3,"Production Budget":80000000,"Rotten Tomatoes Rating":25,"Title":"Swordfish"},{"IMDB Rating":6.8,"Production Budget":80000000,"Rotten Tomatoes Rating":70,"Title":"Something's Gotta Give"},{"IMDB Rating":5.6,"Production Budget":250000,"Rotten Tomatoes Rating":67,"Title":"Sugar Town"},{"IMDB Rating":6.3,"Production Budget":6800000,"Rotten Tomatoes Rating":null,"Title":"Shade"},{"IMDB Rating":6.8,"Production Budget":8000000,"Rotten Tomatoes Rating":81,"Title":"Shadow of the Vampire"},{"IMDB Rating":5.9,"Production Budget":53012938,"Rotten Tomatoes Rating":68,"Title":"Shaft"},{"IMDB Rating":4.1,"Production Budget":60000000,"Rotten Tomatoes Rating":27,"Title":"The Shaggy Dog"},{"IMDB Rating":6,"Production Budget":19000000,"Rotten Tomatoes Rating":53,"Title":"Scary Movie"},{"IMDB Rating":8,"Production Budget":5000000,"Rotten Tomatoes Rating":91,"Title":"Shaun of the Dead"},{"IMDB Rating":6.7,"Production Budget":2000000,"Rotten Tomatoes Rating":66,"Title":"Shortbus"},{"IMDB Rating":5.4,"Production Budget":10000000,"Rotten Tomatoes Rating":38,"Title":"She's All That"},{"IMDB Rating":6.4,"Production Budget":25000000,"Rotten Tomatoes Rating":44,"Title":"She's the Man"},{"IMDB Rating":6.7,"Production Budget":2000000,"Rotten Tomatoes Rating":74,"Title":"Sherrybaby"},{"IMDB Rating":6,"Production Budget":40000000,"Rotten Tomatoes Rating":50,"Title":"Shallow Hal"},{"IMDB Rating":6.5,"Production Budget":50000000,"Rotten Tomatoes Rating":29,"Title":"Silent Hill"},{"IMDB Rating":8,"Production Budget":80000000,"Rotten Tomatoes Rating":67,"Title":"Shutter Island"},{"IMDB Rating":7.4,"Production Budget":26000000,"Rotten Tomatoes Rating":93,"Title":"Shakespeare in Love"},{"IMDB Rating":8,"Production Budget":2000000,"Rotten Tomatoes Rating":94,"Title":"In the Shadow of the Moon"},{"IMDB Rating":7.5,"Production Budget":80000000,"Rotten Tomatoes Rating":69,"Title":"Sherlock Holmes"},{"IMDB Rating":6.7,"Production Budget":20000000,"Rotten Tomatoes Rating":57,"Title":"She's Out of My League"},{"IMDB Rating":7.2,"Production Budget":60000000,"Rotten Tomatoes Rating":48,"Title":"Shooter"},{"IMDB Rating":8,"Production Budget":50000000,"Rotten Tomatoes Rating":89,"Title":"Shrek"},{"IMDB Rating":7.5,"Production Budget":70000000,"Rotten Tomatoes Rating":89,"Title":"Shrek 2"},{"IMDB Rating":6.1,"Production Budget":160000000,"Rotten Tomatoes Rating":41,"Title":"Shrek the Third"},{"IMDB Rating":6.7,"Production Budget":165000000,"Rotten Tomatoes Rating":null,"Title":"Shrek Forever After"},{"IMDB Rating":5.9,"Production Budget":75000000,"Rotten Tomatoes Rating":35,"Title":"Shark Tale"},{"IMDB Rating":7.4,"Production Budget":6000000,"Rotten Tomatoes Rating":91,"Title":"Shattered Glass"},{"IMDB Rating":4.7,"Production Budget":25000000,"Rotten Tomatoes Rating":8,"Title":"Stealing Harvard"},{"IMDB Rating":5.3,"Production Budget":85000000,"Rotten Tomatoes Rating":24,"Title":"Showtime"},{"IMDB Rating":8.2,"Production Budget":9000000,"Rotten Tomatoes Rating":93,"Title":"Sicko"},{"IMDB Rating":null,"Production Budget":70000000,"Rotten Tomatoes Rating":44,"Title":"The Siege"},{"IMDB Rating":6.9,"Production Budget":70702619,"Rotten Tomatoes Rating":74,"Title":"Signs"},{"IMDB Rating":6.7,"Production Budget":20000000,"Rotten Tomatoes Rating":44,"Title":"Simon Birch"},{"IMDB Rating":4.9,"Production Budget":28000000,"Rotten Tomatoes Rating":27,"Title":"A Simple Wish"},{"IMDB Rating":7.6,"Production Budget":72500000,"Rotten Tomatoes Rating":89,"Title":"The Simpsons Movie"},{"IMDB Rating":6.6,"Production Budget":60000000,"Rotten Tomatoes Rating":null,"Title":"Sinbad: Legend of the Seven Seas"},{"IMDB Rating":8.3,"Production Budget":40000000,"Rotten Tomatoes Rating":77,"Title":"Sin City"},{"IMDB Rating":5.6,"Production Budget":8000000,"Rotten Tomatoes Rating":38,"Title":"The Singing Detective"},{"IMDB Rating":8.2,"Production Budget":40000000,"Rotten Tomatoes Rating":85,"Title":"The Sixth Sense"},{"IMDB Rating":7.6,"Production Budget":65000,"Rotten Tomatoes Rating":null,"Title":"Super Size Me"},{"IMDB Rating":6.5,"Production Budget":40000000,"Rotten Tomatoes Rating":38,"Title":"The Skeleton Key"},{"IMDB Rating":5.3,"Production Budget":15000000,"Rotten Tomatoes Rating":8,"Title":"The Skulls"},{"IMDB Rating":6.6,"Production Budget":60000000,"Rotten Tomatoes Rating":73,"Title":"Sky High"},{"IMDB Rating":4.9,"Production Budget":11000000,"Rotten Tomatoes Rating":11,"Title":"Slackers"},{"IMDB Rating":null,"Production Budget":24000000,"Rotten Tomatoes Rating":25,"Title":"Ready to Rumble"},{"IMDB Rating":7.5,"Production Budget":70000000,"Rotten Tomatoes Rating":68,"Title":"Sleepy Hollow"},{"IMDB Rating":7.8,"Production Budget":27000000,"Rotten Tomatoes Rating":51,"Title":"Lucky Number Slevin"},{"IMDB Rating":7,"Production Budget":11000000,"Rotten Tomatoes Rating":57,"Title":"The Secret Life of Bees"},{"IMDB Rating":6.4,"Production Budget":87000000,"Rotten Tomatoes Rating":39,"Title":"Hannibal"},{"IMDB Rating":5.6,"Production Budget":17000000,"Rotten Tomatoes Rating":null,"Title":"Southland Tales"},{"IMDB Rating":5.9,"Production Budget":15500000,"Rotten Tomatoes Rating":12,"Title":"Slow Burn"},{"IMDB Rating":4.6,"Production Budget":10000000,"Rotten Tomatoes Rating":15,"Title":"Sleepover"},{"IMDB Rating":5,"Production Budget":24000000,"Rotten Tomatoes Rating":4,"Title":"The Bridge of San Luis Rey"},{"IMDB Rating":6.6,"Production Budget":15250000,"Rotten Tomatoes Rating":85,"Title":"Slither"},{"IMDB Rating":8.3,"Production Budget":14000000,"Rotten Tomatoes Rating":94,"Title":"Slumdog Millionaire"},{"IMDB Rating":6.4,"Production Budget":5000000,"Rotten Tomatoes Rating":79,"Title":"Slums of Beverly Hills"},{"IMDB Rating":5.9,"Production Budget":40000000,"Rotten Tomatoes Rating":46,"Title":"Small Soldiers"},{"IMDB Rating":4.7,"Production Budget":110000000,"Rotten Tomatoes Rating":null,"Title":"Mr. And Mrs. Smith"},{"IMDB Rating":6.6,"Production Budget":17000000,"Rotten Tomatoes Rating":28,"Title":"Smokin' Aces"},{"IMDB Rating":5.8,"Production Budget":23000000,"Rotten Tomatoes Rating":41,"Title":"Someone Like You"},{"IMDB Rating":6.2,"Production Budget":50000000,"Rotten Tomatoes Rating":42,"Title":"Death to Smoochy"},{"IMDB Rating":4.8,"Production Budget":6000000,"Rotten Tomatoes Rating":14,"Title":"Simply Irresistible"},{"IMDB Rating":4.6,"Production Budget":17000000,"Rotten Tomatoes Rating":7,"Title":"Summer Catch"},{"IMDB Rating":7.2,"Production Budget":22000000,"Rotten Tomatoes Rating":83,"Title":"There's Something About Mary"},{"IMDB Rating":5.8,"Production Budget":73000000,"Rotten Tomatoes Rating":41,"Title":"Snake Eyes"},{"IMDB Rating":6,"Production Budget":33000000,"Rotten Tomatoes Rating":68,"Title":"Snakes on a Plane"},{"IMDB Rating":6.9,"Production Budget":100000000,"Rotten Tomatoes Rating":71,"Title":"Lemony Snicket's A Series of Unfortunate Events"},{"IMDB Rating":7.8,"Production Budget":16500000,"Rotten Tomatoes Rating":75,"Title":"House of Sand and Fog"},{"IMDB Rating":4.1,"Production Budget":80000000,"Rotten Tomatoes Rating":6,"Title":"A Sound of Thunder"},{"IMDB Rating":5,"Production Budget":8000000,"Rotten Tomatoes Rating":9,"Title":"See No Evil"},{"IMDB Rating":6.7,"Production Budget":35000000,"Rotten Tomatoes Rating":55,"Title":"The Shipping News"},{"IMDB Rating":6.2,"Production Budget":50000000,"Rotten Tomatoes Rating":66,"Title":"Shanghai Knights"},{"IMDB Rating":6.6,"Production Budget":55000000,"Rotten Tomatoes Rating":78,"Title":"Shanghai Noon"},{"IMDB Rating":4.9,"Production Budget":32000000,"Rotten Tomatoes Rating":23,"Title":"Snow Dogs"},{"IMDB Rating":6.7,"Production Budget":36000000,"Rotten Tomatoes Rating":40,"Title":"Snow Falling on Cedars"},{"IMDB Rating":7.3,"Production Budget":40000000,"Rotten Tomatoes Rating":74,"Title":"Sunshine"},{"IMDB Rating":8.2,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Snatch"},{"IMDB Rating":4.4,"Production Budget":13000000,"Rotten Tomatoes Rating":26,"Title":"Snow Day"},{"IMDB Rating":5.1,"Production Budget":12000000,"Rotten Tomatoes Rating":13,"Title":"Sorority Boys"},{"IMDB Rating":6.2,"Production Budget":47000000,"Rotten Tomatoes Rating":65,"Title":"Solaris"},{"IMDB Rating":6.7,"Production Budget":12500000,"Rotten Tomatoes Rating":null,"Title":"Solitary Man"},{"IMDB Rating":6.7,"Production Budget":60000000,"Rotten Tomatoes Rating":null,"Title":"The Soloist"},{"IMDB Rating":6.9,"Production Budget":1800000,"Rotten Tomatoes Rating":null,"Title":"Songcatcher"},{"IMDB Rating":5.7,"Production Budget":4000000,"Rotten Tomatoes Rating":23,"Title":"Sonny"},{"IMDB Rating":7.5,"Production Budget":5000000,"Rotten Tomatoes Rating":80,"Title":"Standard Operating Procedure"},{"IMDB Rating":6.4,"Production Budget":160000000,"Rotten Tomatoes Rating":42,"Title":"The Sorcerer's Apprentice"},{"IMDB Rating":6.4,"Production Budget":7500000,"Rotten Tomatoes Rating":80,"Title":"Soul Food"},{"IMDB Rating":3.7,"Production Budget":16000000,"Rotten Tomatoes Rating":19,"Title":"Soul Plane"},{"IMDB Rating":null,"Production Budget":21000000,"Rotten Tomatoes Rating":80,"Title":"South Park: Bigger, Longer & Uncut"},{"IMDB Rating":5.6,"Production Budget":80000000,"Rotten Tomatoes Rating":36,"Title":"Space Jam"},{"IMDB Rating":6.7,"Production Budget":75000000,"Rotten Tomatoes Rating":52,"Title":"Spanglish"},{"IMDB Rating":4.8,"Production Budget":40000000,"Rotten Tomatoes Rating":20,"Title":"Spawn"},{"IMDB Rating":7.8,"Production Budget":17500000,"Rotten Tomatoes Rating":87,"Title":"Superbad"},{"IMDB Rating":4.5,"Production Budget":37000000,"Rotten Tomatoes Rating":36,"Title":"Space Chimps"},{"IMDB Rating":6.3,"Production Budget":65000000,"Rotten Tomatoes Rating":79,"Title":"Space Cowboys"},{"IMDB Rating":7.8,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Spider"},{"IMDB Rating":6.3,"Production Budget":120000000,"Rotten Tomatoes Rating":38,"Title":"Speed Racer"},{"IMDB Rating":6.8,"Production Budget":92500000,"Rotten Tomatoes Rating":79,"Title":"The Spiderwick Chronicles"},{"IMDB Rating":3.7,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Speedway Junky"},{"IMDB Rating":3.4,"Production Budget":110000000,"Rotten Tomatoes Rating":null,"Title":"Speed II: Cruise Control"},{"IMDB Rating":5.6,"Production Budget":73000000,"Rotten Tomatoes Rating":12,"Title":"Sphere"},{"IMDB Rating":2.9,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Spiceworld"},{"IMDB Rating":7.7,"Production Budget":200000000,"Rotten Tomatoes Rating":93,"Title":"Spider-Man 2"},{"IMDB Rating":6.4,"Production Budget":258000000,"Rotten Tomatoes Rating":63,"Title":"Spider-Man 3"},{"IMDB Rating":7.4,"Production Budget":139000000,"Rotten Tomatoes Rating":89,"Title":"Spider-Man"},{"IMDB Rating":8.1,"Production Budget":85000000,"Rotten Tomatoes Rating":81,"Title":"Scott Pilgrim vs. The World"},{"IMDB Rating":4.9,"Production Budget":16000000,"Rotten Tomatoes Rating":24,"Title":"See Spot Run"},{"IMDB Rating":6.6,"Production Budget":232000000,"Rotten Tomatoes Rating":76,"Title":"Superman Returns"},{"IMDB Rating":6.8,"Production Budget":60000000,"Rotten Tomatoes Rating":10,"Title":"Supernova"},{"IMDB Rating":6.6,"Production Budget":4500000,"Rotten Tomatoes Rating":null,"Title":"Spun"},{"IMDB Rating":6.9,"Production Budget":90000000,"Rotten Tomatoes Rating":65,"Title":"Spy Game"},{"IMDB Rating":null,"Production Budget":38000000,"Rotten Tomatoes Rating":75,"Title":"Spy Kids 2: The Island of Lost Dreams"},{"IMDB Rating":4.1,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Spy Kids 3-D: Game Over"},{"IMDB Rating":5.7,"Production Budget":35000000,"Rotten Tomatoes Rating":93,"Title":"Spy Kids"},{"IMDB Rating":6.8,"Production Budget":1900000,"Rotten Tomatoes Rating":null,"Title":"The Square"},{"IMDB Rating":7.6,"Production Budget":1500000,"Rotten Tomatoes Rating":93,"Title":"The Squid and the Whale"},{"IMDB Rating":6.6,"Production Budget":28000000,"Rotten Tomatoes Rating":58,"Title":"Serendipity"},{"IMDB Rating":7.5,"Production Budget":5200000,"Rotten Tomatoes Rating":null,"Title":"Saint Ralph"},{"IMDB Rating":null,"Production Budget":10000000,"Rotten Tomatoes Rating":91,"Title":"Shaolin Soccer"},{"IMDB Rating":6,"Production Budget":14000000,"Rotten Tomatoes Rating":33,"Title":"Superstar"},{"IMDB Rating":3.6,"Production Budget":14000000,"Rotten Tomatoes Rating":4,"Title":"Soul Survivors"},{"IMDB Rating":6.6,"Production Budget":80000000,"Rotten Tomatoes Rating":null,"Title":"Spirit: Stallion of the Cimarron"},{"IMDB Rating":7.1,"Production Budget":100000000,"Rotten Tomatoes Rating":60,"Title":"Starship Troopers"},{"IMDB Rating":7.8,"Production Budget":500000,"Rotten Tomatoes Rating":95,"Title":"The Station Agent"},{"IMDB Rating":4.5,"Production Budget":20000000,"Rotten Tomatoes Rating":9,"Title":"Stay Alive"},{"IMDB Rating":6.5,"Production Budget":18000000,"Rotten Tomatoes Rating":66,"Title":"Small Time Crooks"},{"IMDB Rating":2.7,"Production Budget":16000000,"Rotten Tomatoes Rating":12,"Title":"Steel"},{"IMDB Rating":5.1,"Production Budget":20000000,"Rotten Tomatoes Rating":49,"Title":"How Stella Got Her Groove Back"},{"IMDB Rating":5.1,"Production Budget":100000000,"Rotten Tomatoes Rating":26,"Title":"The Stepford Wives"},{"IMDB Rating":6.2,"Production Budget":50000000,"Rotten Tomatoes Rating":43,"Title":"Stepmom"},{"IMDB Rating":4.3,"Production Budget":14000000,"Rotten Tomatoes Rating":26,"Title":"Stomp the Yard"},{"IMDB Rating":7.8,"Production Budget":30000000,"Rotten Tomatoes Rating":72,"Title":"Stranger Than Fiction"},{"IMDB Rating":5.9,"Production Budget":20000000,"Rotten Tomatoes Rating":31,"Title":"Stick It"},{"IMDB Rating":6,"Production Budget":32000000,"Rotten Tomatoes Rating":22,"Title":"Stigmata"},{"IMDB Rating":7.1,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"A Stir of Echoes"},{"IMDB Rating":7,"Production Budget":20000000,"Rotten Tomatoes Rating":36,"Title":"Street Kings"},{"IMDB Rating":5.8,"Production Budget":105000000,"Rotten Tomatoes Rating":65,"Title":"Stuart Little"},{"IMDB Rating":5.6,"Production Budget":120000000,"Rotten Tomatoes Rating":83,"Title":"Stuart Little 2"},{"IMDB Rating":4.8,"Production Budget":138000000,"Rotten Tomatoes Rating":13,"Title":"Stealth"},{"IMDB Rating":6,"Production Budget":27000000,"Rotten Tomatoes Rating":23,"Title":"The Statement"},{"IMDB Rating":6.4,"Production Budget":1500000,"Rotten Tomatoes Rating":35,"Title":"Stolen Summer"},{"IMDB Rating":6.5,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Stop-Loss"},{"IMDB Rating":6.2,"Production Budget":120000000,"Rotten Tomatoes Rating":47,"Title":"The Perfect Storm"},{"IMDB Rating":5.6,"Production Budget":50000000,"Rotten Tomatoes Rating":28,"Title":"The Story of Us"},{"IMDB Rating":5.3,"Production Budget":20000000,"Rotten Tomatoes Rating":11,"Title":"The Stepfather"},{"IMDB Rating":7.3,"Production Budget":60000000,"Rotten Tomatoes Rating":84,"Title":"State of Play"},{"IMDB Rating":6.2,"Production Budget":27000000,"Rotten Tomatoes Rating":64,"Title":"The Sisterhood of the Traveling Pants 2"},{"IMDB Rating":6.1,"Production Budget":12000000,"Rotten Tomatoes Rating":19,"Title":"Step Up"},{"IMDB Rating":8,"Production Budget":10000000,"Rotten Tomatoes Rating":95,"Title":"The Straight Story"},{"IMDB Rating":7.6,"Production Budget":46000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek: First Contact"},{"IMDB Rating":6.4,"Production Budget":70000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek: Insurrection"},{"IMDB Rating":6.4,"Production Budget":60000000,"Rotten Tomatoes Rating":null,"Title":"Star Trek: Nemesis"},{"IMDB Rating":6,"Production Budget":9000000,"Rotten Tomatoes Rating":44,"Title":"The Strangers"},{"IMDB Rating":6.8,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Super Troopers"},{"IMDB Rating":5.9,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Strangers with Candy"},{"IMDB Rating":5.9,"Production Budget":55000000,"Rotten Tomatoes Rating":60,"Title":"Stuck On You"},{"IMDB Rating":5.6,"Production Budget":17500000,"Rotten Tomatoes Rating":25,"Title":"Step Up 2 the Streets"},{"IMDB Rating":6.3,"Production Budget":68000000,"Rotten Tomatoes Rating":59,"Title":"The Sum of All Fears"},{"IMDB Rating":6.8,"Production Budget":5600000,"Rotten Tomatoes Rating":80,"Title":"Sunshine State"},{"IMDB Rating":2.9,"Production Budget":30000000,"Rotten Tomatoes Rating":6,"Title":"Supercross"},{"IMDB Rating":7,"Production Budget":100000000,"Rotten Tomatoes Rating":77,"Title":"Surf's Up"},{"IMDB Rating":6.3,"Production Budget":80000000,"Rotten Tomatoes Rating":39,"Title":"Surrogates"},{"IMDB Rating":6.5,"Production Budget":22000000,"Rotten Tomatoes Rating":50,"Title":"Summer of Sam"},{"IMDB Rating":5.7,"Production Budget":4600000,"Rotten Tomatoes Rating":null,"Title":"Savage Grace"},{"IMDB Rating":8.5,"Production Budget":65000000,"Rotten Tomatoes Rating":91,"Title":"Saving Private Ryan"},{"IMDB Rating":5.9,"Production Budget":70000000,"Rotten Tomatoes Rating":48,"Title":"S.W.A.T."},{"IMDB Rating":7.8,"Production Budget":17000000,"Rotten Tomatoes Rating":97,"Title":"Sideways"},{"IMDB Rating":7.6,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Shall We Dance?"},{"IMDB Rating":6.5,"Production Budget":40000000,"Rotten Tomatoes Rating":46,"Title":"Secret Window"},{"IMDB Rating":3.4,"Production Budget":10000000,"Rotten Tomatoes Rating":5,"Title":"Swept Away"},{"IMDB Rating":6.8,"Production Budget":7800000,"Rotten Tomatoes Rating":84,"Title":"Swimming Pool"},{"IMDB Rating":4.6,"Production Budget":10000000,"Rotten Tomatoes Rating":15,"Title":"Swimfan"},{"IMDB Rating":6,"Production Budget":40000000,"Rotten Tomatoes Rating":16,"Title":"Sweet November"},{"IMDB Rating":6.2,"Production Budget":16500000,"Rotten Tomatoes Rating":37,"Title":"Sydney White"},{"IMDB Rating":6.1,"Production Budget":38000000,"Rotten Tomatoes Rating":32,"Title":"Switchback"},{"IMDB Rating":5.4,"Production Budget":8500000,"Rotten Tomatoes Rating":19,"Title":"Star Wars: The Clone Wars"},{"IMDB Rating":4.7,"Production Budget":43000000,"Rotten Tomatoes Rating":25,"Title":"The Sweetest Thing"},{"IMDB Rating":4.7,"Production Budget":80000000,"Rotten Tomatoes Rating":37,"Title":"Six Days, Seven Nights"},{"IMDB Rating":6.8,"Production Budget":19000000,"Rotten Tomatoes Rating":46,"Title":"Sex Drive"},{"IMDB Rating":7.1,"Production Budget":4300000,"Rotten Tomatoes Rating":null,"Title":"Sexy Beast"},{"IMDB Rating":7.7,"Production Budget":4500000,"Rotten Tomatoes Rating":null,"Title":"Chinjeolhan geumjassi"},{"IMDB Rating":null,"Production Budget":20000000,"Rotten Tomatoes Rating":67,"Title":"Synecdoche, New York"},{"IMDB Rating":7.1,"Production Budget":50000000,"Rotten Tomatoes Rating":72,"Title":"Syriana"},{"IMDB Rating":5.8,"Production Budget":27000000,"Rotten Tomatoes Rating":18,"Title":"Suspect Zero"},{"IMDB Rating":6.1,"Production Budget":150000,"Rotten Tomatoes Rating":78,"Title":"Tadpole"},{"IMDB Rating":4.8,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Taken"},{"IMDB Rating":6.5,"Production Budget":30000000,"Rotten Tomatoes Rating":44,"Title":"Take the Lead"},{"IMDB Rating":6.4,"Production Budget":73000000,"Rotten Tomatoes Rating":72,"Title":"Talladega Nights: The Ballad of Ricky Bobby"},{"IMDB Rating":7.2,"Production Budget":40000000,"Rotten Tomatoes Rating":82,"Title":"The Talented Mr. Ripley"},{"IMDB Rating":7.1,"Production Budget":218,"Rotten Tomatoes Rating":null,"Title":"Tarnation"},{"IMDB Rating":6.8,"Production Budget":3500000,"Rotten Tomatoes Rating":null,"Title":"Taxman"},{"IMDB Rating":4,"Production Budget":55000000,"Rotten Tomatoes Rating":19,"Title":"Thunderbirds"},{"IMDB Rating":6.1,"Production Budget":9000000,"Rotten Tomatoes Rating":71,"Title":"The Best Man"},{"IMDB Rating":4,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"Book of Shadows: Blair Witch 2"},{"IMDB Rating":4.8,"Production Budget":30000000,"Rotten Tomatoes Rating":12,"Title":"The Cave"},{"IMDB Rating":5.4,"Production Budget":13000000,"Rotten Tomatoes Rating":55,"Title":"This Christmas"},{"IMDB Rating":5.3,"Production Budget":85000000,"Rotten Tomatoes Rating":42,"Title":"The Core"},{"IMDB Rating":6.7,"Production Budget":48000000,"Rotten Tomatoes Rating":67,"Title":"The Thomas Crown Affair"},{"IMDB Rating":7.5,"Production Budget":6400000,"Rotten Tomatoes Rating":94,"Title":"The Damned United"},{"IMDB Rating":6.1,"Production Budget":60000000,"Rotten Tomatoes Rating":55,"Title":"The Tale of Despereaux"},{"IMDB Rating":7.3,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Team America: World Police"},{"IMDB Rating":6.7,"Production Budget":14000000,"Rotten Tomatoes Rating":67,"Title":"Tea with Mussolini"},{"IMDB Rating":6.4,"Production Budget":75000000,"Rotten Tomatoes Rating":34,"Title":"Tears of the Sun"},{"IMDB Rating":6.1,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"The Big Tease"},{"IMDB Rating":5.5,"Production Budget":15000000,"Rotten Tomatoes Rating":28,"Title":"Not Another Teen Movie"},{"IMDB Rating":5.5,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Teeth"},{"IMDB Rating":7.4,"Production Budget":25000000,"Rotten Tomatoes Rating":85,"Title":"Bridge to Terabithia"},{"IMDB Rating":6.6,"Production Budget":170000000,"Rotten Tomatoes Rating":null,"Title":"Terminator 3: Rise of the Machines"},{"IMDB Rating":7.3,"Production Budget":151000000,"Rotten Tomatoes Rating":57,"Title":"Transformers"},{"IMDB Rating":6,"Production Budget":210000000,"Rotten Tomatoes Rating":20,"Title":"Transformers: Revenge of the Fallen"},{"IMDB Rating":null,"Production Budget":10000000,"Rotten Tomatoes Rating":26,"Title":"The Goods: Live Hard, Sell Hard"},{"IMDB Rating":7.3,"Production Budget":25000000,"Rotten Tomatoes Rating":62,"Title":"The Greatest Game Ever Played"},{"IMDB Rating":7.6,"Production Budget":45000000,"Rotten Tomatoes Rating":84,"Title":"The Ghost Writer"},{"IMDB Rating":7.4,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Joheunnom nabbeunnom isanghannom"},{"IMDB Rating":4.5,"Production Budget":50000000,"Rotten Tomatoes Rating":19,"Title":"The Beach"},{"IMDB Rating":6.8,"Production Budget":25000000,"Rotten Tomatoes Rating":45,"Title":"The Box"},{"IMDB Rating":6.7,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"The Wild Thornberrys"},{"IMDB Rating":6,"Production Budget":4000000,"Rotten Tomatoes Rating":null,"Title":"Bug"},{"IMDB Rating":4.6,"Production Budget":17000000,"Rotten Tomatoes Rating":37,"Title":"They"},{"IMDB Rating":5.3,"Production Budget":12000000,"Rotten Tomatoes Rating":22,"Title":"The Eye"},{"IMDB Rating":3.3,"Production Budget":18000000,"Rotten Tomatoes Rating":5,"Title":"The Fog"},{"IMDB Rating":7.5,"Production Budget":52000000,"Rotten Tomatoes Rating":78,"Title":"The Thin Red Line"},{"IMDB Rating":7.3,"Production Budget":80000000,"Rotten Tomatoes Rating":82,"Title":"Thirteen Days"},{"IMDB Rating":5.9,"Production Budget":65000000,"Rotten Tomatoes Rating":49,"Title":"The Kid"},{"IMDB Rating":5.4,"Production Budget":20000000,"Rotten Tomatoes Rating":11,"Title":"The Man"},{"IMDB Rating":5.2,"Production Budget":19000000,"Rotten Tomatoes Rating":25,"Title":"House on Haunted Hill"},{"IMDB Rating":5.6,"Production Budget":49000000,"Rotten Tomatoes Rating":13,"Title":"The One"},{"IMDB Rating":7.1,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"Gwoemul"},{"IMDB Rating":5,"Production Budget":2400000,"Rotten Tomatoes Rating":5,"Title":"Thr3e"},{"IMDB Rating":5.8,"Production Budget":20000000,"Rotten Tomatoes Rating":28,"Title":"Three to Tango"},{"IMDB Rating":6.7,"Production Budget":16000000,"Rotten Tomatoes Rating":28,"Title":"The Thirteenth Floor"},{"IMDB Rating":6.3,"Production Budget":125000000,"Rotten Tomatoes Rating":33,"Title":"The 13th Warrior"},{"IMDB Rating":5,"Production Budget":60000000,"Rotten Tomatoes Rating":22,"Title":"The Tuxedo"},{"IMDB Rating":6,"Production Budget":20000000,"Rotten Tomatoes Rating":61,"Title":"The Tigger Movie"},{"IMDB Rating":5.3,"Production Budget":80000000,"Rotten Tomatoes Rating":11,"Title":"Timeline"},{"IMDB Rating":7,"Production Budget":2000000,"Rotten Tomatoes Rating":null,"Title":"Thirteen"},{"IMDB Rating":6.4,"Production Budget":75000000,"Rotten Tomatoes Rating":51,"Title":"Titan A.E."},{"IMDB Rating":7.4,"Production Budget":200000000,"Rotten Tomatoes Rating":82,"Title":"Titanic"},{"IMDB Rating":7.8,"Production Budget":4000000,"Rotten Tomatoes Rating":96,"Title":"The Kids Are All Right"},{"IMDB Rating":5.5,"Production Budget":78000000,"Rotten Tomatoes Rating":17,"Title":"The League of Extraordinary Gentlemen"},{"IMDB Rating":5.6,"Production Budget":80000000,"Rotten Tomatoes Rating":28,"Title":"The Time Machine"},{"IMDB Rating":4.9,"Production Budget":11000000,"Rotten Tomatoes Rating":15,"Title":"Tomcats"},{"IMDB Rating":7.4,"Production Budget":13000000,"Rotten Tomatoes Rating":73,"Title":"The Mist"},{"IMDB Rating":6.6,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"TMNT"},{"IMDB Rating":6.4,"Production Budget":110000000,"Rotten Tomatoes Rating":55,"Title":"Tomorrow Never Dies"},{"IMDB Rating":7.6,"Production Budget":28000000,"Rotten Tomatoes Rating":79,"Title":"The Royal Tenenbaums"},{"IMDB Rating":5.2,"Production Budget":90000000,"Rotten Tomatoes Rating":null,"Title":"Lara Croft: Tomb Raider: The Cradle of Life"},{"IMDB Rating":5.4,"Production Budget":94000000,"Rotten Tomatoes Rating":null,"Title":"Lara Croft: Tomb Raider"},{"IMDB Rating":6.3,"Production Budget":125000000,"Rotten Tomatoes Rating":46,"Title":"The Day After Tomorrow"},{"IMDB Rating":7.1,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"Topsy Turvy"},{"IMDB Rating":3.5,"Production Budget":40000000,"Rotten Tomatoes Rating":23,"Title":"Torque"},{"IMDB Rating":7.8,"Production Budget":17000000,"Rotten Tomatoes Rating":84,"Title":"The Others"},{"IMDB Rating":8.7,"Production Budget":37000000,"Rotten Tomatoes Rating":84,"Title":"The Town"},{"IMDB Rating":8,"Production Budget":90000000,"Rotten Tomatoes Rating":100,"Title":"Toy Story 2"},{"IMDB Rating":8.9,"Production Budget":200000000,"Rotten Tomatoes Rating":99,"Title":"Toy Story 3"},{"IMDB Rating":6.5,"Production Budget":110000000,"Rotten Tomatoes Rating":null,"Title":"The Taking of Pelham 123"},{"IMDB Rating":6.6,"Production Budget":100000000,"Rotten Tomatoes Rating":69,"Title":"Treasure Planet"},{"IMDB Rating":7.8,"Production Budget":48000000,"Rotten Tomatoes Rating":91,"Title":"Traffic"},{"IMDB Rating":2.7,"Production Budget":19000000,"Rotten Tomatoes Rating":19,"Title":"Thomas and the Magic Railroad"},{"IMDB Rating":7.6,"Production Budget":45000000,"Rotten Tomatoes Rating":72,"Title":"Training Day"},{"IMDB Rating":7.1,"Production Budget":22000000,"Rotten Tomatoes Rating":61,"Title":"Traitor"},{"IMDB Rating":6,"Production Budget":30000000,"Rotten Tomatoes Rating":18,"Title":"Trapped"},{"IMDB Rating":5.5,"Production Budget":48000000,"Rotten Tomatoes Rating":71,"Title":"The Ring"},{"IMDB Rating":4.6,"Production Budget":3000000,"Rotten Tomatoes Rating":8,"Title":"Trippin'"},{"IMDB Rating":8.2,"Production Budget":140000000,"Rotten Tomatoes Rating":94,"Title":"Star Trek"},{"IMDB Rating":7.1,"Production Budget":75000000,"Rotten Tomatoes Rating":60,"Title":"The Terminal"},{"IMDB Rating":7.6,"Production Budget":1000000,"Rotten Tomatoes Rating":76,"Title":"Transamerica"},{"IMDB Rating":6.6,"Production Budget":32000000,"Rotten Tomatoes Rating":null,"Title":"The Transporter 2"},{"IMDB Rating":6.6,"Production Budget":21000000,"Rotten Tomatoes Rating":53,"Title":"The Transporter"},{"IMDB Rating":7.5,"Production Budget":25000000,"Rotten Tomatoes Rating":75,"Title":"The Road"},{"IMDB Rating":7.2,"Production Budget":90000000,"Rotten Tomatoes Rating":83,"Title":"Tropic Thunder"},{"IMDB Rating":7,"Production Budget":150000000,"Rotten Tomatoes Rating":54,"Title":"Troy"},{"IMDB Rating":5.5,"Production Budget":70000000,"Rotten Tomatoes Rating":48,"Title":"xXx"},{"IMDB Rating":5.1,"Production Budget":7400000,"Rotten Tomatoes Rating":67,"Title":"Ta Ra Rum Pum"},{"IMDB Rating":8,"Production Budget":60000000,"Rotten Tomatoes Rating":95,"Title":"The Truman Show"},{"IMDB Rating":5.8,"Production Budget":9000000,"Rotten Tomatoes Rating":27,"Title":"Trust the Man"},{"IMDB Rating":6.6,"Production Budget":25000000,"Rotten Tomatoes Rating":41,"Title":"Where the Truth Lies"},{"IMDB Rating":6.9,"Production Budget":145000000,"Rotten Tomatoes Rating":88,"Title":"Tarzan"},{"IMDB Rating":7.4,"Production Budget":3000000,"Rotten Tomatoes Rating":null,"Title":"Tsotsi"},{"IMDB Rating":7.1,"Production Budget":39000000,"Rotten Tomatoes Rating":37,"Title":"The Time Traveler's Wife"},{"IMDB Rating":4.5,"Production Budget":20000000,"Rotten Tomatoes Rating":null,"Title":"The Touch"},{"IMDB Rating":6.5,"Production Budget":15000000,"Rotten Tomatoes Rating":61,"Title":"Tuck Everlasting"},{"IMDB Rating":6.7,"Production Budget":4000000,"Rotten Tomatoes Rating":70,"Title":"Thumbsucker"},{"IMDB Rating":4.5,"Production Budget":55000000,"Rotten Tomatoes Rating":17,"Title":"Turbulence"},{"IMDB Rating":6.9,"Production Budget":10000000,"Rotten Tomatoes Rating":null,"Title":"Turistas"},{"IMDB Rating":3.6,"Production Budget":4000000,"Rotten Tomatoes Rating":8,"Title":"The Wash"},{"IMDB Rating":5.6,"Production Budget":1000000,"Rotten Tomatoes Rating":null,"Title":"Two Girls and a Guy"},{"IMDB Rating":5.4,"Production Budget":80000000,"Rotten Tomatoes Rating":19,"Title":"The Wild"},{"IMDB Rating":6.1,"Production Budget":20000000,"Rotten Tomatoes Rating":60,"Title":"Twilight"},{"IMDB Rating":4.8,"Production Budget":50000000,"Rotten Tomatoes Rating":2,"Title":"Twisted"},{"IMDB Rating":null,"Production Budget":50000000,"Rotten Tomatoes Rating":28,"Title":"The Twilight Saga: New Moon"},{"IMDB Rating":null,"Production Budget":68000000,"Rotten Tomatoes Rating":51,"Title":"The Twilight Saga: Eclipse"},{"IMDB Rating":6.1,"Production Budget":37000000,"Rotten Tomatoes Rating":50,"Title":"Twilight"},{"IMDB Rating":4.4,"Production Budget":105000000,"Rotten Tomatoes Rating":13,"Title":"Town & Country"},{"IMDB Rating":5.4,"Production Budget":6000000,"Rotten Tomatoes Rating":30,"Title":"200 Cigarettes"},{"IMDB Rating":5.8,"Production Budget":16000000,"Rotten Tomatoes Rating":null,"Title":"The Texas Chainsaw Massacre: The Beginning"},{"IMDB Rating":6.1,"Production Budget":9000000,"Rotten Tomatoes Rating":36,"Title":"The Texas Chainsaw Massacre"},{"IMDB Rating":5,"Production Budget":38000000,"Rotten Tomatoes Rating":null,"Title":"Texas Rangers"},{"IMDB Rating":6.9,"Production Budget":5700000,"Rotten Tomatoes Rating":null,"Title":"Tom yum goong"},{"IMDB Rating":7.8,"Production Budget":7500000,"Rotten Tomatoes Rating":null,"Title":"Thank You For Smoking"},{"IMDB Rating":8.3,"Production Budget":15000000,"Rotten Tomatoes Rating":null,"Title":"U2 3D"},{"IMDB Rating":6.4,"Production Budget":62000000,"Rotten Tomatoes Rating":68,"Title":"U-571"},{"IMDB Rating":5.7,"Production Budget":25000000,"Rotten Tomatoes Rating":76,"Title":"Undercover Brother"},{"IMDB Rating":3.3,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Underclassman"},{"IMDB Rating":6.6,"Production Budget":30000000,"Rotten Tomatoes Rating":null,"Title":"Dodgeball: A True Underdog Story"},{"IMDB Rating":6.4,"Production Budget":38000000,"Rotten Tomatoes Rating":14,"Title":"The Ugly Truth"},{"IMDB Rating":4,"Production Budget":30000000,"Rotten Tomatoes Rating":9,"Title":"Ultraviolet"},{"IMDB Rating":3.7,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"Unaccompanied Minors"},{"IMDB Rating":7.3,"Production Budget":73243106,"Rotten Tomatoes Rating":68,"Title":"Unbreakable"},{"IMDB Rating":4.5,"Production Budget":16000000,"Rotten Tomatoes Rating":11,"Title":"The Unborn"},{"IMDB Rating":5.6,"Production Budget":750000,"Rotten Tomatoes Rating":null,"Title":"Undead"},{"IMDB Rating":6.7,"Production Budget":22000000,"Rotten Tomatoes Rating":30,"Title":"Underworld"},{"IMDB Rating":3.7,"Production Budget":9000000,"Rotten Tomatoes Rating":8,"Title":"Undiscovered"},{"IMDB Rating":5.8,"Production Budget":20000000,"Rotten Tomatoes Rating":49,"Title":"Undisputed"},{"IMDB Rating":6.6,"Production Budget":45000000,"Rotten Tomatoes Rating":15,"Title":"Underworld: Evolution"},{"IMDB Rating":7.1,"Production Budget":30000000,"Rotten Tomatoes Rating":53,"Title":"An Unfinished Life"},{"IMDB Rating":6.6,"Production Budget":50000000,"Rotten Tomatoes Rating":48,"Title":"Unfaithful"},{"IMDB Rating":3.4,"Production Budget":40000000,"Rotten Tomatoes Rating":null,"Title":"Universal Soldier II: The Return"},{"IMDB Rating":6.6,"Production Budget":3700000,"Rotten Tomatoes Rating":39,"Title":null},{"IMDB Rating":7.1,"Production Budget":43000000,"Rotten Tomatoes Rating":null,"Title":"Danny the Dog"},{"IMDB Rating":6.1,"Production Budget":35000000,"Rotten Tomatoes Rating":15,"Title":"Untraceable"},{"IMDB Rating":8.4,"Production Budget":175000000,"Rotten Tomatoes Rating":98,"Title":"Up"},{"IMDB Rating":null,"Production Budget":30000000,"Rotten Tomatoes Rating":90,"Title":"Up in the Air"},{"IMDB Rating":7,"Production Budget":12000000,"Rotten Tomatoes Rating":null,"Title":"The Upside of Anger"},{"IMDB Rating":5.2,"Production Budget":14000000,"Rotten Tomatoes Rating":21,"Title":"Urban Legend"},{"IMDB Rating":3.7,"Production Budget":15000000,"Rotten Tomatoes Rating":9,"Title":"Urban Legends: Final Cut"},{"IMDB Rating":6.7,"Production Budget":225000,"Rotten Tomatoes Rating":73,"Title":"Urbania"},{"IMDB Rating":7.3,"Production Budget":75000000,"Rotten Tomatoes Rating":61,"Title":"Valkyrie"},{"IMDB Rating":5.6,"Production Budget":35000000,"Rotten Tomatoes Rating":30,"Title":"Valiant"},{"IMDB Rating":4.3,"Production Budget":10000000,"Rotten Tomatoes Rating":9,"Title":"Valentine"},{"IMDB Rating":6.1,"Production Budget":40000000,"Rotten Tomatoes Rating":37,"Title":"Cirque du Freak: The Vampire's Assistant"},{"IMDB Rating":6.4,"Production Budget":60000000,"Rotten Tomatoes Rating":43,"Title":"The Legend of Bagger Vance"},{"IMDB Rating":7.1,"Production Budget":800000,"Rotten Tomatoes Rating":null,"Title":"Raising Victor Vargas"},{"IMDB Rating":7.4,"Production Budget":23000000,"Rotten Tomatoes Rating":73,"Title":"In the Valley of Elah"},{"IMDB Rating":4.6,"Production Budget":25000000,"Rotten Tomatoes Rating":10,"Title":"Venom"},{"IMDB Rating":null,"Production Budget":6000000,"Rotten Tomatoes Rating":89,"Title":"Venus"},{"IMDB Rating":6.2,"Production Budget":23000000,"Rotten Tomatoes Rating":50,"Title":"Vanity Fair"},{"IMDB Rating":8.2,"Production Budget":50000000,"Rotten Tomatoes Rating":73,"Title":"V for Vendetta"},{"IMDB Rating":5.5,"Production Budget":170000000,"Rotten Tomatoes Rating":22,"Title":"Van Helsing"},{"IMDB Rating":6.6,"Production Budget":71682975,"Rotten Tomatoes Rating":42,"Title":"The Village"},{"IMDB Rating":7.2,"Production Budget":6000000,"Rotten Tomatoes Rating":null,"Title":"The Virgin Suicides"},{"IMDB Rating":4.5,"Production Budget":75000000,"Rotten Tomatoes Rating":9,"Title":"Virus"},{"IMDB Rating":6.8,"Production Budget":4000000,"Rotten Tomatoes Rating":90,"Title":"The Visitor"},{"IMDB Rating":5.6,"Production Budget":75000000,"Rotten Tomatoes Rating":47,"Title":"Vertical Limit"},{"IMDB Rating":6.8,"Production Budget":20000000,"Rotten Tomatoes Rating":33,"Title":"Vampires"},{"IMDB Rating":6.9,"Production Budget":70000000,"Rotten Tomatoes Rating":39,"Title":"Vanilla Sky"},{"IMDB Rating":5.2,"Production Budget":90000000,"Rotten Tomatoes Rating":42,"Title":"Volcano"},{"IMDB Rating":4.4,"Production Budget":9400000,"Rotten Tomatoes Rating":92,"Title":"Volver"},{"IMDB Rating":5.7,"Production Budget":8300000,"Rotten Tomatoes Rating":null,"Title":"Kurtlar vadisi - Irak"},{"IMDB Rating":3.3,"Production Budget":58000000,"Rotten Tomatoes Rating":24,"Title":"The Flintstones in Viva Rock Vegas"},{"IMDB Rating":6,"Production Budget":16000000,"Rotten Tomatoes Rating":39,"Title":"Varsity Blues"},{"IMDB Rating":5.7,"Production Budget":52000000,"Rotten Tomatoes Rating":17,"Title":"Valentine's Day"},{"IMDB Rating":7.1,"Production Budget":6000000,"Rotten Tomatoes Rating":69,"Title":"The Wackness"},{"IMDB Rating":7,"Production Budget":15000000,"Rotten Tomatoes Rating":84,"Title":"Wag the Dog"},{"IMDB Rating":6.8,"Production Budget":7000000,"Rotten Tomatoes Rating":null,"Title":"Wah-Wah"},{"IMDB Rating":null,"Production Budget":1125000,"Rotten Tomatoes Rating":30,"Title":"Waiting..."},{"IMDB Rating":null,"Production Budget":3000000,"Rotten Tomatoes Rating":82,"Title":"Waking Ned Devine"},{"IMDB Rating":8.5,"Production Budget":180000000,"Rotten Tomatoes Rating":96,"Title":"WALL-E"},{"IMDB Rating":6.2,"Production Budget":25000000,"Rotten Tomatoes Rating":null,"Title":"War"},{"IMDB Rating":null,"Production Budget":10000000,"Rotten Tomatoes Rating":29,"Title":"War, Inc."},{"IMDB Rating":7.2,"Production Budget":132000000,"Rotten Tomatoes Rating":null,"Title":"The War of the Worlds"},{"IMDB Rating":7.8,"Production Budget":138000000,"Rotten Tomatoes Rating":64,"Title":"Watchmen"},{"IMDB Rating":7.2,"Production Budget":1500000,"Rotten Tomatoes Rating":89,"Title":"Waitress"},{"IMDB Rating":5.5,"Production Budget":8000000,"Rotten Tomatoes Rating":null,"Title":"The Wendell Baker Story"},{"IMDB Rating":8.2,"Production Budget":2000000,"Rotten Tomatoes Rating":95,"Title":"Winter's Bone"},{"IMDB Rating":7.5,"Production Budget":35000000,"Rotten Tomatoes Rating":81,"Title":"Wonder Boys"},{"IMDB Rating":5,"Production Budget":20000000,"Rotten Tomatoes Rating":15,"Title":"White Chicks"},{"IMDB Rating":6.3,"Production Budget":1100000,"Rotten Tomatoes Rating":null,"Title":"Wolf Creek"},{"IMDB Rating":4.8,"Production Budget":28000000,"Rotten Tomatoes Rating":16,"Title":"The Wedding Planner"},{"IMDB Rating":6.6,"Production Budget":5500000,"Rotten Tomatoes Rating":35,"Title":"Wonderland"},{"IMDB Rating":6.8,"Production Budget":29000000,"Rotten Tomatoes Rating":48,"Title":"Taking Woodstock"},{"IMDB Rating":5.5,"Production Budget":15000000,"Rotten Tomatoes Rating":10,"Title":"The Wedding Date"},{"IMDB Rating":6.4,"Production Budget":312000,"Rotten Tomatoes Rating":84,"Title":"Tumbleweeds"},{"IMDB Rating":7,"Production Budget":28000000,"Rotten Tomatoes Rating":56,"Title":"We Own the Night"},{"IMDB Rating":6.9,"Production Budget":70000000,"Rotten Tomatoes Rating":62,"Title":"We Were Soldiers"},{"IMDB Rating":7.9,"Production Budget":25000000,"Rotten Tomatoes Rating":82,"Title":"The World's Fastest Indian"},{"IMDB Rating":6.7,"Production Budget":14000000,"Rotten Tomatoes Rating":null,"Title":"Les herbes folles"},{"IMDB Rating":5.7,"Production Budget":25000000,"Rotten Tomatoes Rating":34,"Title":"What a Girl Wants"},{"IMDB Rating":7.7,"Production Budget":4300000,"Rotten Tomatoes Rating":90,"Title":"Whale Rider"},{"IMDB Rating":6.7,"Production Budget":35000000,"Rotten Tomatoes Rating":74,"Title":"Walk Hard: The Dewey Cox Story"},{"IMDB Rating":6.4,"Production Budget":15000000,"Rotten Tomatoes Rating":34,"Title":"Where the Heart Is"},{"IMDB Rating":4.2,"Production Budget":3000000,"Rotten Tomatoes Rating":13,"Title":"Whipped"},{"IMDB Rating":7.1,"Production Budget":15000000,"Rotten Tomatoes Rating":84,"Title":"Whip It"},{"IMDB Rating":4.5,"Production Budget":27500000,"Rotten Tomatoes Rating":23,"Title":"Welcome Home Roscoe Jenkins"},{"IMDB Rating":4.7,"Production Budget":15000000,"Rotten Tomatoes Rating":9,"Title":"When a Stranger Calls"},{"IMDB Rating":6.6,"Production Budget":80000000,"Rotten Tomatoes Rating":55,"Title":"What Dreams May Come"},{"IMDB Rating":6.5,"Production Budget":16000000,"Rotten Tomatoes Rating":51,"Title":"The White Countess"},{"IMDB Rating":6.9,"Production Budget":30000000,"Rotten Tomatoes Rating":24,"Title":"Wicker Park"},{"IMDB Rating":7.2,"Production Budget":100000000,"Rotten Tomatoes Rating":73,"Title":"Where the Wild Things Are"},{"IMDB Rating":6.6,"Production Budget":20000000,"Rotten Tomatoes Rating":64,"Title":"Wild Things"},{"IMDB Rating":6.3,"Production Budget":35000000,"Rotten Tomatoes Rating":60,"Title":"Wimbledon"},{"IMDB Rating":5.8,"Production Budget":115000000,"Rotten Tomatoes Rating":32,"Title":"Windtalkers"},{"IMDB Rating":6.1,"Production Budget":15000000,"Rotten Tomatoes Rating":53,"Title":"Because of Winn-Dixie"},{"IMDB Rating":3.7,"Production Budget":30000000,"Rotten Tomatoes Rating":11,"Title":"Wing Commander"},{"IMDB Rating":6.9,"Production Budget":25000000,"Rotten Tomatoes Rating":78,"Title":"Without Limits"},{"IMDB Rating":5.9,"Production Budget":27000000,"Rotten Tomatoes Rating":null,"Title":"What Just Happened"},{"IMDB Rating":6.5,"Production Budget":90000000,"Rotten Tomatoes Rating":45,"Title":"What Lies Beneath"},{"IMDB Rating":7.9,"Production Budget":29000000,"Rotten Tomatoes Rating":82,"Title":"Walk the Line"},{"IMDB Rating":7.1,"Production Budget":11000000,"Rotten Tomatoes Rating":28,"Title":"A Walk to Remember"},{"IMDB Rating":6.2,"Production Budget":20000000,"Rotten Tomatoes Rating":65,"Title":"Willard"},{"IMDB Rating":4.3,"Production Budget":175000000,"Rotten Tomatoes Rating":21,"Title":"Wild Wild West"},{"IMDB Rating":5.9,"Production Budget":10000000,"Rotten Tomatoes Rating":86,"Title":"White Noise 2: The Light"},{"IMDB Rating":null,"Production Budget":10000000,"Rotten Tomatoes Rating":9,"Title":"White Noise"},{"IMDB Rating":6.4,"Production Budget":75000000,"Rotten Tomatoes Rating":71,"Title":"Wanted"},{"IMDB Rating":4.9,"Production Budget":8000000,"Rotten Tomatoes Rating":35,"Title":"Woman on Top"},{"IMDB Rating":7.4,"Production Budget":150000000,"Rotten Tomatoes Rating":null,"Title":"The Wolf Man"},{"IMDB Rating":6.7,"Production Budget":150000000,"Rotten Tomatoes Rating":null,"Title":"X-Men Origins: Wolverine"},{"IMDB Rating":7.9,"Production Budget":16000000,"Rotten Tomatoes Rating":13,"Title":"The Women"},{"IMDB Rating":3.4,"Production Budget":13000000,"Rotten Tomatoes Rating":5,"Title":"Woo"},{"IMDB Rating":6.1,"Production Budget":6000000,"Rotten Tomatoes Rating":61,"Title":"The Wood"},{"IMDB Rating":5.7,"Production Budget":30000000,"Rotten Tomatoes Rating":15,"Title":"Without a Paddle"},{"IMDB Rating":5,"Production Budget":30000000,"Rotten Tomatoes Rating":10,"Title":"What's the Worst That Could Happen?"},{"IMDB Rating":6.4,"Production Budget":3500000,"Rotten Tomatoes Rating":40,"Title":"Winter Passing"},{"IMDB Rating":5.4,"Production Budget":50000000,"Rotten Tomatoes Rating":42,"Title":"What Planet Are You From?"},{"IMDB Rating":7.4,"Production Budget":500000,"Rotten Tomatoes Rating":null,"Title":"Wordplay"},{"IMDB Rating":8.2,"Production Budget":6000000,"Rotten Tomatoes Rating":98,"Title":"The Wrestler"},{"IMDB Rating":6,"Production Budget":56000000,"Rotten Tomatoes Rating":25,"Title":"Walking Tall"},{"IMDB Rating":6.2,"Production Budget":65000000,"Rotten Tomatoes Rating":69,"Title":"World Trade Center"},{"IMDB Rating":3.7,"Production Budget":33000000,"Rotten Tomatoes Rating":10,"Title":"The Watcher"},{"IMDB Rating":6.9,"Production Budget":20000000,"Rotten Tomatoes Rating":58,"Title":"The Weather Man"},{"IMDB Rating":6.3,"Production Budget":70000000,"Rotten Tomatoes Rating":72,"Title":"Sky Captain and the World of Tomorrow"},{"IMDB Rating":5.3,"Production Budget":35000000,"Rotten Tomatoes Rating":7,"Title":"Whiteout"},{"IMDB Rating":5.7,"Production Budget":23000000,"Rotten Tomatoes Rating":32,"Title":"The Waterboy"},{"IMDB Rating":5.8,"Production Budget":10000000,"Rotten Tomatoes Rating":40,"Title":"Wrong Turn"},{"IMDB Rating":6.3,"Production Budget":65000000,"Rotten Tomatoes Rating":53,"Title":"What Women Want"},{"IMDB Rating":6.5,"Production Budget":9000000,"Rotten Tomatoes Rating":48,"Title":"The Way of the Gun"},{"IMDB Rating":5.9,"Production Budget":35000000,"Rotten Tomatoes Rating":null,"Title":"The X-Files: I Want to Believe"},{"IMDB Rating":6.4,"Production Budget":31000000,"Rotten Tomatoes Rating":27,"Title":"Extraordinary Measures"},{"IMDB Rating":7.4,"Production Budget":75000000,"Rotten Tomatoes Rating":82,"Title":"X-Men"},{"IMDB Rating":7.8,"Production Budget":125000000,"Rotten Tomatoes Rating":null,"Title":"X2"},{"IMDB Rating":6.9,"Production Budget":150000000,"Rotten Tomatoes Rating":57,"Title":"X-Men: The Last Stand"},{"IMDB Rating":6.2,"Production Budget":40000,"Rotten Tomatoes Rating":null,"Title":"The Exploding Girl"},{"IMDB Rating":7.1,"Production Budget":82000000,"Rotten Tomatoes Rating":40,"Title":"The Expendables"},{"IMDB Rating":4.1,"Production Budget":60000000,"Rotten Tomatoes Rating":null,"Title":"XXX: State of the Union"},{"IMDB Rating":6.3,"Production Budget":20000000,"Rotten Tomatoes Rating":64,"Title":"The Yards"},{"IMDB Rating":7.7,"Production Budget":1200000,"Rotten Tomatoes Rating":95,"Title":"You Can Count on Me"},{"IMDB Rating":5,"Production Budget":60000000,"Rotten Tomatoes Rating":14,"Title":"Year One"},{"IMDB Rating":7,"Production Budget":50000000,"Rotten Tomatoes Rating":43,"Title":"Yes Man"},{"IMDB Rating":6.7,"Production Budget":4000000,"Rotten Tomatoes Rating":78,"Title":"You Kill Me"},{"IMDB Rating":7.6,"Production Budget":45000000,"Rotten Tomatoes Rating":null,"Title":"Yours, Mine and Ours"},{"IMDB Rating":6.2,"Production Budget":65000000,"Rotten Tomatoes Rating":68,"Title":"You've Got Mail"},{"IMDB Rating":6.7,"Production Budget":18000000,"Rotten Tomatoes Rating":null,"Title":"Youth in Revolt"},{"IMDB Rating":4.5,"Production Budget":800000,"Rotten Tomatoes Rating":null,"Title":"The Young Unknowns"},{"IMDB Rating":7.2,"Production Budget":35000000,"Rotten Tomatoes Rating":76,"Title":"The Young Victoria"},{"IMDB Rating":null,"Production Budget":65000000,"Rotten Tomatoes Rating":75,"Title":"Zathura"},{"IMDB Rating":6.8,"Production Budget":5000000,"Rotten Tomatoes Rating":66,"Title":"Zero Effect"},{"IMDB Rating":6.4,"Production Budget":28000000,"Rotten Tomatoes Rating":62,"Title":"Zoolander"},{"IMDB Rating":7.8,"Production Budget":23600000,"Rotten Tomatoes Rating":89,"Title":"Zombieland"},{"IMDB Rating":7,"Production Budget":24000000,"Rotten Tomatoes Rating":65,"Title":"Zack and Miri Make a Porno"},{"IMDB Rating":null,"Production Budget":85000000,"Rotten Tomatoes Rating":89,"Title":"Zodiac"},{"IMDB Rating":3.4,"Production Budget":35000000,"Rotten Tomatoes Rating":3,"Title":"Zoom"},{"IMDB Rating":5.7,"Production Budget":80000000,"Rotten Tomatoes Rating":26,"Title":"The Legend of Zorro"},{"IMDB Rating":6.7,"Production Budget":65000000,"Rotten Tomatoes Rating":82,"Title":"The Mask of Zorro"}],"metadata":{"IMDB Rating":{"type":"number","semanticType":"Number"},"Production Budget":{"type":"number","semanticType":"Number"},"Rotten Tomatoes Rating":{"type":"number","semanticType":"Number"},"Title":{"type":"string","semanticType":"Name"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n","source":["movies"],"dialog":[{"content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 15442818.0, 17031573.0, 33619971.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.4, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 237477.0, 417703.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nDo higher production budgets correlate with better ratings?","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"The user wants to analyze the correlation between production budgets and movie ratings to understand if higher budgets lead to better ratings.\",\n \"display_instruction\": \"Show correlation between **Production Budget** and **ratings**\",\n \"recommendation\": \"Create a scatter plot visualization to show the relationship between Production Budget and ratings. Since there are two rating systems (Rotten Tomatoes and IMDB), we'll analyze both and include them as separate dimensions in the output data.\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Rotten Tomatoes Rating\", \"IMDB Rating\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"movies","sourceTableIds":["movies"],"instruction":"Do higher production budgets correlate with better ratings?","displayInstruction":"Show correlation between **Production Budget** and **ratings**","chart":{"id":"chart-1760744462348","chartType":"Auto","encodingMap":{},"tableRef":"movies","saved":false,"source":"trigger","unread":true},"resultTableId":"table-456490"},"explanation":{"agent":"CodeExplanationAgent","code":"- Select key fields from the movies dataset: **Title**, **Production Budget**, **Rotten Tomatoes Rating**, and **IMDB Rating**\n- Filter out movies with missing **Production Budget** values to ensure all movies have known budget information\n- Retain only movies that have at least one rating available (either **Rotten Tomatoes Rating** or **IMDB Rating**), ensuring each movie has some form of critical assessment\n- Return a cleaned dataset containing only movies with complete budget information and at least one rating metric","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., nan, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: nan, 853973.0, 13180936.0, ..., nan, 46260220.0, 124058348.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 229156.0, 237477.0, 417703.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Select key fields from the movies dataset: **Title**, **Production Budget**, **Rotten Tomatoes Rating**, and **IMDB Rating**\n- Filter out movies with missing **Production Budget** values to ensure all movies have known budget information\n- Retain only movies that have at least one rating available (either **Rotten Tomatoes Rating** or **IMDB Rating**), ensuring each movie has some form of critical assessment\n- Return a cleaned dataset containing only movies with complete budget information and at least one rating metric\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-37","displayId":"movie-budget-ratings","names":["Number of Movies","Production Budget Bin","Rotten Tomatoes Rating Bin"],"rows":[{"Number of Movies":6,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"0-20"},{"Number of Movies":9,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"21-40"},{"Number of Movies":12,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"41-60"},{"Number of Movies":19,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"61-80"},{"Number of Movies":54,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"81-100"},{"Number of Movies":61,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"0-20"},{"Number of Movies":72,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"21-40"},{"Number of Movies":58,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"41-60"},{"Number of Movies":104,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"61-80"},{"Number of Movies":219,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"81-100"},{"Number of Movies":229,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"0-20"},{"Number of Movies":257,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"21-40"},{"Number of Movies":241,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"41-60"},{"Number of Movies":245,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"61-80"},{"Number of Movies":210,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"81-100"},{"Number of Movies":62,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"0-20"},{"Number of Movies":99,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"21-40"},{"Number of Movies":98,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"41-60"},{"Number of Movies":95,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"61-80"},{"Number of Movies":54,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"81-100"},{"Number of Movies":9,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"0-20"},{"Number of Movies":24,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"21-40"},{"Number of Movies":26,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"41-60"},{"Number of Movies":26,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"61-80"},{"Number of Movies":31,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"81-100"}],"metadata":{"Number of Movies":{"type":"number","semanticType":"Number"},"Production Budget Bin":{"type":"string","semanticType":"Range","levels":["<$1M","$1M-$10M","$10M-$50M","$50M-$100M",">$100M"]},"Rotten Tomatoes Rating Bin":{"type":"string","semanticType":"Range","levels":["0-20","21-40","41-60","61-80","81-100"]}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna())\n ]\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Count movies in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n ).size().reset_index(name='Number of Movies')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n","source":["movies"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 15442818.0, 17031573.0, 33619971.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.4, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 237477.0, 417703.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nDo higher production budgets correlate with better ratings?","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"The user wants to analyze the correlation between production budgets and movie ratings to understand if higher budgets lead to better ratings.\",\n \"display_instruction\": \"Show correlation between **Production Budget** and **ratings**\",\n \"recommendation\": \"Create a scatter plot visualization to show the relationship between Production Budget and ratings. Since there are two rating systems (Rotten Tomatoes and IMDB), we'll analyze both and include them as separate dimensions in the output data.\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Rotten Tomatoes Rating\", \"IMDB Rating\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n IMDB Rating Production Budget Rotten Tomatoes Rating Title\n0 6.1 8000000 NaN The Land Girls\n1 6.9 300000 NaN First Love, Last Rites\n2 6.8 250000 NaN I Married a Strange Person\n3 NaN 300000 13.0 Let's Talk About Sex\n4 3.4 1000000 62.0 Slam\n5 7.7 6000 NaN Following\n6 3.8 1600000 NaN Foolish\n7 5.8 40000000 25.0 Pirates\n8 7.0 6000000 86.0 Duel in the Sun\n9 7.0 1000000 81.0 Tom Jones\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"bin rt rating and budget into bins to show number of movies in each range\",\n \"chart_type\": \"Scatter Plot\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Bin the Production Budget and Rotten Tomatoes Rating into categorical ranges, then count the number of movies that fall into each combination of budget and rating bins to create a heatmap-style aggregation.\",\n \"display_instruction\": \"Show **number of movies** in each **Production Budget** and **Rotten Tomatoes Rating** bin\",\n \"output_fields\": [\"Production Budget Bin\", \"Rotten Tomatoes Rating Bin\", \"Number of Movies\"],\n \"chart_encodings\": {\n \"x\": \"Production Budget Bin\",\n \"y\": \"Rotten Tomatoes Rating Bin\",\n \"color\": \"Number of Movies\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n },\n \"reason\": \"The user wants to bin both Production Budget and Rotten Tomatoes Rating into ranges and count movies in each combination. This requires creating categorical bins for both dimensions and aggregating counts. A heatmap visualization (using color encoding for count) would be more appropriate than a scatter plot for showing binned data.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna())\n ]\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Count movies in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n ).size().reset_index(name='Number of Movies')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-456490","sourceTableIds":["movies"],"instruction":"bin rt rating and budget into bins to show number of movies in each range","displayInstruction":"Show **number of movies** in each **Production Budget** and **Rotten Tomatoes Rating** bin","chart":{"id":"chart-1760744514854","chartType":"Scatter Plot","encodingMap":{"x":{"fieldID":"original--movies--Production Budget"},"y":{"fieldID":"original--movies--Rotten Tomatoes Rating"},"color":{"channel":"color","bin":false},"size":{"channel":"size","bin":false},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-456490","saved":false,"source":"trigger","unread":false},"resultTableId":"table-37"},"explanation":{"agent":"CodeExplanationAgent","code":"- Filter the dataset to include only movies with both **Production Budget** and **Rotten Tomatoes Rating** values available\n- Create **budget categories** by grouping Production Budget into five bins: **<$1M**, **$1M-$10M**, **$10M-$50M**, **$50M-$100M**, and **>$100M**\n- Create **rating categories** by grouping Rotten Tomatoes Rating into five bins: **0-20**, **21-40**, **41-60**, **61-80**, and **81-100**\n- **Count** the number of movies that fall into each combination of budget category and rating category\n- Return a summary table showing the distribution of movies across budget and rating bins","concepts":[{"explanation":"Categorical bins created through discretization of continuous variables. Production Budget is divided into 5 ranges based on million-dollar thresholds, while Rotten Tomatoes Rating is divided into 5 equal-width intervals of 20 points each. This binning approach enables analysis of the relationship between production investment levels and critical reception patterns.","field":"Production Budget Bin, Rotten Tomatoes Rating Bin"},{"explanation":"This analysis employs a **two-dimensional frequency distribution** (contingency table approach) to explore the relationship between production budget and critical reception. The transformation creates a discrete joint distribution by binning two continuous variables and counting occurrences in each cell. This approach is useful for identifying patterns such as whether higher-budget films tend to receive better or worse critical ratings. **Alternative modeling approaches** could include: (1) correlation analysis between raw budget and rating values, (2) regression modeling to predict ratings from budget while controlling for other factors, (3) chi-square tests of independence to formally test whether budget and rating categories are associated, or (4) visualization through heatmaps to reveal concentration patterns across the budget-rating space.","field":"Statistical Analysis"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 402111870.0, 441226247.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 618454.0, 853973.0, 1877732.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: nan, 1.5, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 57313.0, nan, 73720.0, 212985.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna())\n ]\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Count movies in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n ).size().reset_index(name='Number of Movies')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Filter the dataset to include only movies with both **Production Budget** and **Rotten Tomatoes Rating** values available\n- Create **budget categories** by grouping Production Budget into five bins: **<$1M**, **$1M-$10M**, **$10M-$50M**, **$50M-$100M**, and **>$100M**\n- Create **rating categories** by grouping Rotten Tomatoes Rating into five bins: **0-20**, **21-40**, **41-60**, **61-80**, and **81-100**\n- **Count** the number of movies that fall into each combination of budget category and rating category\n- Return a summary table showing the distribution of movies across budget and rating bins\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Production Budget Bin, Rotten Tomatoes Rating Bin\",\n \"explanation\": \"Categorical bins created through discretization of continuous variables. Production Budget is divided into 5 ranges based on million-dollar thresholds, while Rotten Tomatoes Rating is divided into 5 equal-width intervals of 20 points each. This binning approach enables analysis of the relationship between production investment levels and critical reception patterns.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis employs a **two-dimensional frequency distribution** (contingency table approach) to explore the relationship between production budget and critical reception. The transformation creates a discrete joint distribution by binning two continuous variables and counting occurrences in each cell. This approach is useful for identifying patterns such as whether higher-budget films tend to receive better or worse critical ratings. **Alternative modeling approaches** could include: (1) correlation analysis between raw budget and rating values, (2) regression modeling to predict ratings from budget while controlling for other factors, (3) chi-square tests of independence to formally test whether budget and rating categories are associated, or (4) visualization through heatmaps to reveal concentration patterns across the budget-rating space.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-54","displayId":"film-profit-analysis","names":["Average Profit","Production Budget Bin","Rotten Tomatoes Rating Bin"],"rows":[{"Average Profit":1265816.3333333333,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"0-20"},{"Average Profit":6494134,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"21-40"},{"Average Profit":7866065.833333333,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"41-60"},{"Average Profit":6749073.2105263155,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"61-80"},{"Average Profit":20121581.403846152,"Production Budget Bin":"<$1M","Rotten Tomatoes Rating Bin":"81-100"},{"Average Profit":9285520.68852459,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"0-20"},{"Average Profit":17386269.305555556,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"21-40"},{"Average Profit":13840988.827586208,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"41-60"},{"Average Profit":20654143.125,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"61-80"},{"Average Profit":37024663.62962963,"Production Budget Bin":"$1M-$10M","Rotten Tomatoes Rating Bin":"81-100"},{"Average Profit":11168889.11790393,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"0-20"},{"Average Profit":32529317.311284047,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"21-40"},{"Average Profit":36640084.60165975,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"41-60"},{"Average Profit":49506279.571428575,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"61-80"},{"Average Profit":93010923.90476191,"Production Budget Bin":"$10M-$50M","Rotten Tomatoes Rating Bin":"81-100"},{"Average Profit":11584648.806451613,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"0-20"},{"Average Profit":59680849.09090909,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"21-40"},{"Average Profit":104106140.86734694,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"41-60"},{"Average Profit":121416300.37894736,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"61-80"},{"Average Profit":226983168.4814815,"Production Budget Bin":"$50M-$100M","Rotten Tomatoes Rating Bin":"81-100"},{"Average Profit":132877326,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"0-20"},{"Average Profit":148619038.95833334,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"21-40"},{"Average Profit":297717419.34615386,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"41-60"},{"Average Profit":289246367.34615386,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"61-80"},{"Average Profit":515989525.483871,"Production Budget Bin":">$100M","Rotten Tomatoes Rating Bin":"81-100"}],"metadata":{"Average Profit":{"type":"number","semanticType":"Number"},"Production Budget Bin":{"type":"string","semanticType":"Range","levels":["<$1M","$1M-$10M","$10M-$50M","$50M-$100M",">$100M"]},"Rotten Tomatoes Rating Bin":{"type":"string","semanticType":"Range","levels":["0-20","21-40","41-60","61-80","81-100"]}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating', 'Worldwide Gross']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna()) &\n (df_filtered['Worldwide Gross'].notna())\n ]\n \n # Calculate profit\n df_filtered['Profit'] = df_filtered['Worldwide Gross'] - df_filtered['Production Budget']\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Calculate average profit in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n )['Profit'].mean().reset_index(name='Average Profit')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n","source":["movies"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 15442818.0, 17031573.0, 33619971.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.4, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 237477.0, 417703.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nDo higher production budgets correlate with better ratings?","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"The user wants to analyze the correlation between production budgets and movie ratings to understand if higher budgets lead to better ratings.\",\n \"display_instruction\": \"Show correlation between **Production Budget** and **ratings**\",\n \"recommendation\": \"Create a scatter plot visualization to show the relationship between Production Budget and ratings. Since there are two rating systems (Rotten Tomatoes and IMDB), we'll analyze both and include them as separate dimensions in the output data.\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Rotten Tomatoes Rating\", \"IMDB Rating\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n IMDB Rating Production Budget Rotten Tomatoes Rating Title\n0 6.1 8000000 NaN The Land Girls\n1 6.9 300000 NaN First Love, Last Rites\n2 6.8 250000 NaN I Married a Strange Person\n3 NaN 300000 13.0 Let's Talk About Sex\n4 3.4 1000000 62.0 Slam\n5 7.7 6000 NaN Following\n6 3.8 1600000 NaN Foolish\n7 5.8 40000000 25.0 Pirates\n8 7.0 6000000 86.0 Duel in the Sun\n9 7.0 1000000 81.0 Tom Jones\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"bin rt rating and budget into bins to show number of movies in each range\",\n \"chart_type\": \"Scatter Plot\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Bin the Production Budget and Rotten Tomatoes Rating into categorical ranges, then count the number of movies that fall into each combination of budget and rating bins to create a heatmap-style aggregation.\",\n \"display_instruction\": \"Show **number of movies** in each **Production Budget** and **Rotten Tomatoes Rating** bin\",\n \"output_fields\": [\"Production Budget Bin\", \"Rotten Tomatoes Rating Bin\", \"Number of Movies\"],\n \"chart_encodings\": {\n \"x\": \"Production Budget Bin\",\n \"y\": \"Rotten Tomatoes Rating Bin\",\n \"color\": \"Number of Movies\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n },\n \"reason\": \"The user wants to bin both Production Budget and Rotten Tomatoes Rating into ranges and count movies in each combination. This requires creating categorical bins for both dimensions and aggregating counts. A heatmap visualization (using color encoding for count) would be more appropriate than a scatter plot for showing binned data.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna())\n ]\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Count movies in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n ).size().reset_index(name='Number of Movies')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n Number of Movies Production Budget Bin Rotten Tomatoes Rating Bin\n0 6 <$1M 0-20\n1 9 <$1M 21-40\n2 12 <$1M 41-60\n3 19 <$1M 61-80\n4 54 <$1M 81-100\n5 61 $1M-$10M 0-20\n6 72 $1M-$10M 21-40\n7 58 $1M-$10M 41-60\n8 104 $1M-$10M 61-80\n9 219 $1M-$10M 81-100\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show profit relation to budget ratings bin\",\n \"chart_type\": \"Heatmap\",\n \"chart_encodings\": {\n \"x\": \"Rotten Tomatoes Rating Bin\",\n \"y\": \"Production Budget Bin\",\n \"color\": \"Number of Movies\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Calculate profit (Worldwide Gross minus Production Budget) for movies, then bin the Production Budget and Rotten Tomatoes Rating into categorical ranges, and compute the average profit for movies in each combination of budget and rating bins.\",\n \"display_instruction\": \"Show **average profit** in each **Production Budget** and **Rotten Tomatoes Rating** bin\",\n \"output_fields\": [\"Production Budget Bin\", \"Rotten Tomatoes Rating Bin\", \"Average Profit\"],\n \"chart_encodings\": {\n \"x\": \"Rotten Tomatoes Rating Bin\",\n \"y\": \"Production Budget Bin\",\n \"color\": \"Average Profit\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n },\n \"reason\": \"The user wants to analyze the relationship between profit and the budget/rating bins. This requires calculating profit (Worldwide Gross - Production Budget) and then aggregating it by the budget and rating bins. The chart encodings are swapped to match the user's preference (x=Rating, y=Budget).\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating', 'Worldwide Gross']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna()) &\n (df_filtered['Worldwide Gross'].notna())\n ]\n \n # Calculate profit\n df_filtered['Profit'] = df_filtered['Worldwide Gross'] - df_filtered['Production Budget']\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Calculate average profit in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n )['Profit'].mean().reset_index(name='Average Profit')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-37","sourceTableIds":["movies"],"instruction":"show profit relation to budget ratings bin","displayInstruction":"Show **average profit** in each **Production Budget** and **Rotten Tomatoes Rating** bin","chart":{"id":"chart-1760744581372","chartType":"Heatmap","encodingMap":{"x":{"fieldID":"concept-Rotten Tomatoes Rating Bin-1760744520448","sortBy":"[\"0-20\",\"21-40\",\"41-60\",\"61-80\",\"81-100\"]"},"y":{"fieldID":"concept-Production Budget Bin-1760744338462","sortBy":"[\"<$1M\",\"$1M-$10M\",\"$10M-$50M\",\"$50M-$100M\",\">$100M\"]"},"color":{"fieldID":"concept-Number of Movies-1760744520448"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-37","saved":false,"source":"trigger","unread":false},"resultTableId":"table-54"},"explanation":{"agent":"CodeExplanationAgent","code":"This code analyzes the relationship between movie **production budgets**, **critical ratings**, and **profitability**:\n\n- Filters the dataset to include only movies with complete data for **Production Budget**, **Rotten Tomatoes Rating**, and **Worldwide Gross**\n- Calculates **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Creates **Production Budget Bins** to categorize movies into five budget ranges: **<$1M**, **$1M-$10M**, **$10M-$50M**, **$50M-$100M**, and **>$100M**\n- Creates **Rotten Tomatoes Rating Bins** to categorize movies into five rating ranges: **0-20**, **21-40**, **41-60**, **61-80**, and **81-100**\n- Groups movies by their **budget bin** and **rating bin** combinations\n- Calculates the **Average Profit** for each budget-rating combination to reveal profitability patterns across different production scales and critical reception levels","concepts":[{"explanation":"The net financial return of a movie, calculated as: \\[ \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\] This represents the total revenue minus the initial investment, indicating whether a movie was financially successful.","field":"Profit"},{"explanation":"This analysis uses a **two-dimensional binning approach** to examine how movie profitability varies across production budget levels and critical reception scores. The model segments movies into categorical bins based on **Production Budget** (five budget tiers from under $1M to over $100M) and **Rotten Tomatoes Rating** (five quality tiers from 0-100), then calculates **Average Profit** within each budget-rating combination. This binning strategy helps identify optimal investment strategies by revealing which budget-quality combinations yield the highest returns. Alternative modeling approaches could include: **multiple linear regression** to model profit as a continuous function of budget and rating, **polynomial regression** to capture non-linear relationships, **interaction effect models** to test whether budget impact varies by rating level, or **quantile regression** to analyze profitability patterns at different profit percentiles rather than just averages.","field":"Statistical Analysis"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 673.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 13180936.0, 33619971.0, 140689412.0, ..., nan, nan, 46260220.0, 83571732.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 237477.0, 417703.0, nan, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating', 'Worldwide Gross']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna()) &\n (df_filtered['Worldwide Gross'].notna())\n ]\n \n # Calculate profit\n df_filtered['Profit'] = df_filtered['Worldwide Gross'] - df_filtered['Production Budget']\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Calculate average profit in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n )['Profit'].mean().reset_index(name='Average Profit')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\nThis code analyzes the relationship between movie **production budgets**, **critical ratings**, and **profitability**:\n\n- Filters the dataset to include only movies with complete data for **Production Budget**, **Rotten Tomatoes Rating**, and **Worldwide Gross**\n- Calculates **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Creates **Production Budget Bins** to categorize movies into five budget ranges: **<$1M**, **$1M-$10M**, **$10M-$50M**, **$50M-$100M**, and **>$100M**\n- Creates **Rotten Tomatoes Rating Bins** to categorize movies into five rating ranges: **0-20**, **21-40**, **41-60**, **61-80**, and **81-100**\n- Groups movies by their **budget bin** and **rating bin** combinations\n- Calculates the **Average Profit** for each budget-rating combination to reveal profitability patterns across different production scales and critical reception levels\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"The net financial return of a movie, calculated as: \\\\[ \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\] This represents the total revenue minus the initial investment, indicating whether a movie was financially successful.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis uses a **two-dimensional binning approach** to examine how movie profitability varies across production budget levels and critical reception scores. The model segments movies into categorical bins based on **Production Budget** (five budget tiers from under $1M to over $100M) and **Rotten Tomatoes Rating** (five quality tiers from 0-100), then calculates **Average Profit** within each budget-rating combination. This binning strategy helps identify optimal investment strategies by revealing which budget-quality combinations yield the highest returns. Alternative modeling approaches could include: **multiple linear regression** to model profit as a continuous function of budget and rating, **polynomial regression** to capture non-linear relationships, **interaction effect models** to test whether budget impact varies by rating level, or **quantile regression** to analyze profitability patterns at different profit percentiles rather than just averages.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""}],"charts":[{"id":"chart-1760744573683","chartType":"Heatmap","encodingMap":{"x":{"fieldID":"concept-Rotten Tomatoes Rating Bin-1760744520448","sortBy":"[\"0-20\",\"21-40\",\"41-60\",\"61-80\",\"81-100\"]"},"y":{"fieldID":"concept-Production Budget Bin-1760744338462","sortBy":"[\"<$1M\",\"$1M-$10M\",\"$10M-$50M\",\"$50M-$100M\",\">$100M\"]"},"color":{"fieldID":"concept-Average Profit-1760744582466"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-54","saved":false,"source":"user","unread":false},{"id":"chart-1760744520082","chartType":"Heatmap","encodingMap":{"x":{"fieldID":"concept-Rotten Tomatoes Rating Bin-1760744520448","sortBy":"[\"0-20\",\"21-40\",\"41-60\",\"61-80\",\"81-100\"]"},"y":{"fieldID":"concept-Production Budget Bin-1760744338462","sortBy":"[\"<$1M\",\"$1M-$10M\",\"$10M-$50M\",\"$50M-$100M\",\">$100M\"]"},"color":{"fieldID":"concept-Number of Movies-1760744520448"},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-37","saved":false,"source":"user","unread":false},{"id":"chart-1760744464684","chartType":"Scatter Plot","encodingMap":{"x":{"fieldID":"original--movies--Production Budget"},"y":{"fieldID":"original--movies--Rotten Tomatoes Rating"},"color":{"channel":"color","bin":false},"size":{"channel":"size","bin":false},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-456490","saved":false,"source":"user","unread":false},{"id":"chart-1760743804092","chartType":"Bar Chart","encodingMap":{"x":{"fieldID":"original--movies--Director"},"y":{"fieldID":"concept-Genre_Profit-1760743809438"},"color":{"fieldID":"original--movies--Major Genre"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-89","saved":false,"source":"user","unread":false},{"id":"chart-1760743768741","chartType":"Bar Chart","encodingMap":{"x":{"fieldID":"original--movies--Director"},"y":{"fieldID":"concept-Profit-1760742653681"},"color":{"fieldID":"original--movies--Title"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-770727","saved":false,"source":"user","unread":false},{"id":"chart-1760743347871","chartType":"Bar Chart","encodingMap":{"x":{"fieldID":"original--movies--Title"},"y":{"fieldID":"concept-Profit-1760742653681"},"color":{"fieldID":"original--movies--Major Genre"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-77","saved":false,"source":"user","unread":false},{"id":"chart-1760743154847","chartType":"Bar Chart","encodingMap":{"x":{"fieldID":"original--movies--Title"},"y":{"fieldID":"concept-Profit-1760742653681"},"color":{},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-78","saved":false,"source":"user","unread":false},{"id":"chart-1760742454293","chartType":"Scatter Plot","encodingMap":{"x":{"fieldID":"original--movies--Production Budget"},"y":{"fieldID":"original--movies--Worldwide Gross"},"color":{"fieldID":"original--movies--Title"},"size":{"channel":"size","bin":false},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"movies","saved":false,"source":"user","unread":false}],"conceptShelfItems":[{"id":"concept-Average Profit-1760744582466","name":"Average Profit","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-Number of Movies-1760744520448","name":"Number of Movies","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-Rotten Tomatoes Rating Bin-1760744520448","name":"Rotten Tomatoes Rating Bin","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-Production Budget Bin-1760744338462","name":"Production Budget Bin","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-Genre_Profit-1760743809438","name":"Genre_Profit","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-Total_Director_Profit-1760743773495","name":"Total_Director_Profit","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-Profit-1760742653681","name":"Profit","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"original--movies--Title","name":"Title","type":"string","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--US Gross","name":"US Gross","type":"integer","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Worldwide Gross","name":"Worldwide Gross","type":"number","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--US DVD Sales","name":"US DVD Sales","type":"integer","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Production Budget","name":"Production Budget","type":"integer","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Release Date","name":"Release Date","type":"date","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--MPAA Rating","name":"MPAA Rating","type":"string","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Running Time min","name":"Running Time min","type":"integer","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Distributor","name":"Distributor","type":"string","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Source","name":"Source","type":"string","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Major Genre","name":"Major Genre","type":"string","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Creative Type","name":"Creative Type","type":"string","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Director","name":"Director","type":"string","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--Rotten Tomatoes Rating","name":"Rotten Tomatoes Rating","type":"integer","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--IMDB Rating","name":"IMDB Rating","type":"date","source":"original","description":"","tableRef":"movies"},{"id":"original--movies--IMDB Votes","name":"IMDB Votes","type":"integer","source":"original","description":"","tableRef":"movies"}],"messages":[{"timestamp":1760831191070,"type":"success","component":"data formulator","value":"Successfully loaded Movies"}],"displayedMessageIdx":0,"focusedTableId":"table-89","focusedChartId":"chart-1760743804092","viewMode":"report","chartSynthesisInProgress":[],"config":{"formulateTimeoutSeconds":60,"maxRepairAttempts":1,"defaultChartWidth":300,"defaultChartHeight":300},"agentActions":[],"dataCleanBlocks":[],"cleanInProgress":false,"generatedReports":[{"id":"report-1760831318093-4967","content":"# Bigger Budgets Win with Great Reviews\n\nLow-budget films struggle regardless of reviews, averaging just $1.3M profit even with poor ratings. The real story emerges with blockbusters: films budgeted over $100M earn an average of $516M profit when they achieve 81-100% on Rotten Tomatoes—a staggering return that dwarfs all other categories.\n\n[IMAGE(chart-1760744573683)]\n\nMid-budget films ($10M-$50M) show steady but modest profits across all rating tiers, rarely exceeding $30M in average returns. The data reveals a clear pattern: critical acclaim matters most when paired with substantial production investment.\n\n**In summary**, the film industry's most profitable strategy combines massive budgets with quality execution—blockbusters that earn top critic scores generate extraordinary returns, while smaller productions face profit ceilings regardless of critical reception.","style":"short note","selectedChartIds":["chart-1760744573683"],"createdAt":1760831325401},{"id":"report-1760831241705-9562","content":"# Top Directors Dominate with Action & Adventure Films\n\nSteven Spielberg leads all directors with over $7 billion in total profit, driven primarily by action ($2.3B) and drama ($2.2B) films. James Cameron follows at $5.1B, focusing almost exclusively on action blockbusters.\n\n[IMAGE(chart-1760743804092)]\n\nAdventure films emerge as the most profitable genre across multiple directors—Chris Columbus, George Lucas, and Peter Jackson each generated $3B+ primarily from adventure franchises. Meanwhile, directors like Michael Bay and Gore Verbinski found success mixing action with adventure content.\n\n**In summary**, the most profitable directors concentrate on action and adventure genres, with Spielberg's genre diversity being the exception among top earners. This suggests blockbuster franchises in these genres offer the most reliable path to commercial success.","style":"short note","selectedChartIds":["chart-1760743804092"],"createdAt":1760831249446},{"id":"report-1760831215537-1231","content":"# Movie Magic: When Big Budgets Pay Off (and When They Don't)\n\nEver wonder if spending more money guarantees box office gold? The data tells a fascinating story about Hollywood's biggest gambles.\n\n[IMAGE(chart-1760742454293)]\n\nLooking at the relationship between production budgets and worldwide gross, there's a clear trend: **bigger budgets *can* lead to bigger returns**, but it's far from guaranteed. The sweet spot appears to be around $200-250M, where blockbusters like *Avatar* ($2.77B worldwide) dominate. However, the chart reveals something crucial—**most films cluster in the lower-left corner**, suggesting that moderate budgets between $25-100M are the industry standard, though they rarely break the billion-dollar barrier.\n\n[IMAGE(chart-1760743347871)]\n\nWhen we examine the **top performers by genre**, the winners become crystal clear. *Avatar* leads the pack with an astounding $2.53B profit, followed by adventure franchises like *Jurassic Park* and *The Lord of the Rings*. Action and adventure films dominate profitability, while genres like comedy, horror, and romantic comedies show more modest—but still impressive—returns in the $300-450M range. Musicals like *The Sound of Music* prove timeless appeal still pays dividends.\n\n**In summary**, while throwing money at a film doesn't guarantee success, the blockbuster strategy works when executed well—particularly for action and adventure franchises. The real question: *Are mid-budget films becoming an endangered species in modern Hollywood?*","style":"social post","selectedChartIds":["chart-1760743347871","chart-1760742454293"],"createdAt":1760831228624}],"currentReport":{"id":"report-1760750575650-2619","content":"# Hollywood's Billion-Dollar Hitmakers\n\n*Avatar* stands alone—earning over $2.5B in profit, dwarfing all competition. Action and Adventure films dominate the most profitable titles, with franchises like *Jurassic Park*, *The Dark Knight*, and *Lord of the Rings* proving blockbuster formulas work.\n\n\"Chart\"\n\nSteven Spielberg leads all directors with $7.2B in total profit across his career, showcasing remarkable consistency with hits spanning decades—from *Jurassic Park* to *E.T.* His nearest competitors trail by billions, underlining his unmatched commercial impact.\n\n\"Chart\"\n\n**In summary**, mega-budget Action and Adventure films generate extraordinary returns when they succeed, and a handful of elite directors—led by Spielberg—have mastered the formula for sustained box office dominance.","style":"short note","selectedChartIds":["chart-1760743347871","chart-1760743768741"],"chartImages":{},"createdAt":1760750584189,"title":"Report - 10/17/2025"},"activeChallenges":[],"agentWorkInProgress":[],"_persist":{"version":-1,"rehydrated":true}} \ No newline at end of file +{"tables": [{"kind": "table", "id": "movies", "displayId": "movies", "names": ["Title", "US Gross", "Worldwide Gross", "US DVD Sales", "Production Budget", "Release Date", "MPAA Rating", "Running Time min", "Distributor", "Source", "Major Genre", "Creative Type", "Director", "Rotten Tomatoes Rating", "IMDB Rating", "IMDB Votes"], "metadata": {"Title": {"type": "string", "semanticType": "Name"}, "US Gross": {"type": "number", "semanticType": "Number"}, "Worldwide Gross": {"type": "number", "semanticType": "Number"}, "US DVD Sales": {"type": "number", "semanticType": "Number"}, "Production Budget": {"type": "number", "semanticType": "Number"}, "Release Date": {"type": "date", "semanticType": "Date"}, "MPAA Rating": {"type": "string", "semanticType": "String", "levels": ["G", "PG", "PG-13", "R", "NC-17", "Not Rated", "Open"]}, "Running Time min": {"type": "number", "semanticType": "Duration"}, "Distributor": {"type": "string", "semanticType": "Name"}, "Source": {"type": "string", "semanticType": "String"}, "Major Genre": {"type": "string", "semanticType": "String"}, "Creative Type": {"type": "string", "semanticType": "String"}, "Director": {"type": "string", "semanticType": "Name"}, "Rotten Tomatoes Rating": {"type": "number", "semanticType": "Number"}, "IMDB Rating": {"type": "number", "semanticType": "Number"}, "IMDB Votes": {"type": "number", "semanticType": "Number"}}, "rows": [{"Title": "The Land Girls", "US Gross": 146083, "Worldwide Gross": 146083, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Jun 12 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 1071}, {"Title": "First Love, Last Rites", "US Gross": 10876, "Worldwide Gross": 10876, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Aug 07 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Strand", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 207}, {"Title": "I Married a Strange Person", "US Gross": 203134, "Worldwide Gross": 203134, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Aug 28 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": "Lionsgate", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 865}, {"Title": "Let's Talk About Sex", "US Gross": 373615, "Worldwide Gross": 373615, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Sep 11 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": "Fine Line", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Slam", "US Gross": 1009819, "Worldwide Gross": 1087521, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Oct 09 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Trimark", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 62, "IMDB Rating": 3.4, "IMDB Votes": 165}, {"Title": "Mississippi Mermaid", "US Gross": 24551, "Worldwide Gross": 2624551, "US DVD Sales": null, "Production Budget": 1600000, "Release Date": "Jan 15 1999", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Following", "US Gross": 44705, "Worldwide Gross": 44705, "US DVD Sales": null, "Production Budget": 6000, "Release Date": "Apr 04 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Zeitgeist", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Christopher Nolan", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 15133}, {"Title": "Foolish", "US Gross": 6026908, "Worldwide Gross": 6026908, "US DVD Sales": null, "Production Budget": 1600000, "Release Date": "Apr 09 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.8, "IMDB Votes": 353}, {"Title": "Pirates", "US Gross": 1641825, "Worldwide Gross": 6341825, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 01 1986", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Roman Polanski", "Rotten Tomatoes Rating": 25, "IMDB Rating": 5.8, "IMDB Votes": 3275}, {"Title": "Duel in the Sun", "US Gross": 20400000, "Worldwide Gross": 20400000, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Dec 31 2046", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 86, "IMDB Rating": 7, "IMDB Votes": 2906}, {"Title": "Tom Jones", "US Gross": 37600000, "Worldwide Gross": 37600000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Oct 07 1963", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 7, "IMDB Votes": 4035}, {"Title": "Oliver!", "US Gross": 37402877, "Worldwide Gross": 37402877, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 11 1968", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": "Musical", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.5, "IMDB Votes": 9111}, {"Title": "To Kill A Mockingbird", "US Gross": 13129846, "Worldwide Gross": 13129846, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 25 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.4, "IMDB Votes": 82786}, {"Title": "Tora, Tora, Tora", "US Gross": 29548291, "Worldwide Gross": 29548291, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Sep 23 1970", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Richard Fleischer", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Hollywood Shuffle", "US Gross": 5228617, "Worldwide Gross": 5228617, "US DVD Sales": null, "Production Budget": 100000, "Release Date": "Mar 01 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 87, "IMDB Rating": 6.8, "IMDB Votes": 1532}, {"Title": "Over the Hill to the Poorhouse", "US Gross": 3000000, "Worldwide Gross": 3000000, "US DVD Sales": null, "Production Budget": 100000, "Release Date": "Sep 17 2020", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Wilson", "US Gross": 2000000, "Worldwide Gross": 2000000, "US DVD Sales": null, "Production Budget": 5200000, "Release Date": "Aug 01 2044", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 451}, {"Title": "Darling Lili", "US Gross": 5000000, "Worldwide Gross": 5000000, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Jan 01 1970", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Blake Edwards", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 858}, {"Title": "The Ten Commandments", "US Gross": 80000000, "Worldwide Gross": 80000000, "US DVD Sales": null, "Production Budget": 13500000, "Release Date": "Oct 05 1956", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 90, "IMDB Rating": 2.5, "IMDB Votes": 1677}, {"Title": "12 Angry Men", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 340000, "Release Date": "Apr 13 1957", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": "Sidney Lumet", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.9, "IMDB Votes": 119101}, {"Title": "Twelve Monkeys", "US Gross": 57141459, "Worldwide Gross": 168841459, "US DVD Sales": null, "Production Budget": 29000000, "Release Date": "Dec 27 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Short Film", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Terry Gilliam", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.1, "IMDB Votes": 169858}, {"Title": 1776, "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Nov 09 1972", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 57, "IMDB Rating": 7, "IMDB Votes": 4099}, {"Title": 1941, "US Gross": 34175000, "Worldwide Gross": 94875000, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Dec 14 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.6, "IMDB Votes": 13364}, {"Title": "Chacun sa nuit", "US Gross": 18435, "Worldwide Gross": 18435, "US DVD Sales": null, "Production Budget": 1900000, "Release Date": "Jun 29 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Strand", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 365}, {"Title": "2001: A Space Odyssey", "US Gross": 56700000, "Worldwide Gross": 68700000, "US DVD Sales": null, "Production Budget": 10500000, "Release Date": "Apr 02 1968", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": null, "Creative Type": "Science Fiction", "Director": "Stanley Kubrick", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.4, "IMDB Votes": 160342}, {"Title": "20,000 Leagues Under the Sea", "US Gross": 28200000, "Worldwide Gross": 28200000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Dec 23 1954", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": null, "Director": "Richard Fleischer", "Rotten Tomatoes Rating": 92, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "20,000 Leagues Under the Sea", "US Gross": 8000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Dec 24 2016", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "24 7: Twenty Four Seven", "US Gross": 72544, "Worldwide Gross": 72544, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Apr 15 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "October Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Shane Meadows", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 1417}, {"Title": "Twin Falls Idaho", "US Gross": 985341, "Worldwide Gross": 1027228, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jul 30 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Michael Polish", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.1, "IMDB Votes": 2810}, {"Title": "Three Kingdoms: Resurrection of the Dragon", "US Gross": 0, "Worldwide Gross": 22139590, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Apr 03 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "3 Men and a Baby", "US Gross": 167780960, "Worldwide Gross": 167780960, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Nov 25 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Leonard Nimoy", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 16764}, {"Title": "3 Ninjas Kick Back", "US Gross": 11744960, "Worldwide Gross": 11744960, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "May 06 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 3.2, "IMDB Votes": 3107}, {"Title": "Forty Shades of Blue", "US Gross": 75828, "Worldwide Gross": 172569, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Sep 28 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Vitagraph Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 873}, {"Title": "42nd Street", "US Gross": 2300000, "Worldwide Gross": 2300000, "US DVD Sales": null, "Production Budget": 439000, "Release Date": "Mar 09 2033", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.7, "IMDB Votes": 4263}, {"Title": "Four Rooms", "US Gross": 4301000, "Worldwide Gross": 4301000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 25 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 14, "IMDB Rating": 6.4, "IMDB Votes": 34328}, {"Title": "The Four Seasons", "US Gross": 42488161, "Worldwide Gross": 42488161, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "May 22 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Alan Alda", "Rotten Tomatoes Rating": 71, "IMDB Rating": 7, "IMDB Votes": 1814}, {"Title": "Four Weddings and a Funeral", "US Gross": 52700832, "Worldwide Gross": 242895809, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Mar 09 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mike Newell", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.1, "IMDB Votes": 39003}, {"Title": "51 Birch Street", "US Gross": 84689, "Worldwide Gross": 84689, "US DVD Sales": null, "Production Budget": 350000, "Release Date": "Oct 18 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Truly Indie", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.4, "IMDB Votes": 439}, {"Title": "55 Days at Peking", "US Gross": 10000000, "Worldwide Gross": 10000000, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Dec 31 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.8, "IMDB Votes": 2104}, {"Title": "Nine 1/2 Weeks", "US Gross": 6734844, "Worldwide Gross": 6734844, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Feb 21 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Adrian Lyne", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 12731}, {"Title": "AstÈrix aux Jeux Olympiques", "US Gross": 999811, "Worldwide Gross": 132999811, "US DVD Sales": null, "Production Budget": 113500000, "Release Date": "Jul 04 2008", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Alliance", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 5620}, {"Title": "The Abyss", "US Gross": 54243125, "Worldwide Gross": 54243125, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Aug 09 1989", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "James Cameron", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.6, "IMDB Votes": 51018}, {"Title": "Action Jackson", "US Gross": 20257000, "Worldwide Gross": 20257000, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Feb 12 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Lorimar Motion Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 4.6, "IMDB Votes": 3856}, {"Title": "Ace Ventura: Pet Detective", "US Gross": 72217396, "Worldwide Gross": 107217396, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Feb 04 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tom Shadyac", "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.6, "IMDB Votes": 63543}, {"Title": "Ace Ventura: When Nature Calls", "US Gross": 108360063, "Worldwide Gross": 212400000, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Nov 10 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steve Oedekerk", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 51275}, {"Title": "April Fool's Day", "US Gross": 12947763, "Worldwide Gross": 12947763, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Mar 27 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 31, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Among Giants", "US Gross": 64359, "Worldwide Gross": 64359, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Mar 26 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 546}, {"Title": "Annie Get Your Gun", "US Gross": 8000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 3768785, "Release Date": "May 17 1950", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.1, "IMDB Votes": 1326}, {"Title": "Alice in Wonderland", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Jul 28 1951", "MPAA Rating": null, "Running Time min": null, "Distributor": "RKO Radio Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 6.7, "IMDB Votes": 63458}, {"Title": "The Princess and the Cobbler", "US Gross": 669276, "Worldwide Gross": 669276, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Aug 25 1995", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 893}, {"Title": "The Alamo", "US Gross": 7900000, "Worldwide Gross": 7900000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Oct 24 1960", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "John Wayne", "Rotten Tomatoes Rating": 54, "IMDB Rating": 5.9, "IMDB Votes": 10063}, {"Title": "Alexander's Ragtime Band", "US Gross": 4000000, "Worldwide Gross": 4000000, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 31 1937", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Alive", "US Gross": 36299670, "Worldwide Gross": 36299670, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Jan 15 1993", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Dramatization", "Director": "Frank Marshall", "Rotten Tomatoes Rating": 71, "IMDB Rating": 3.2, "IMDB Votes": 124}, {"Title": "Amen", "US Gross": 274299, "Worldwide Gross": 274299, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Jan 24 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Kino International", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": null, "Director": "Costa-Gavras", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 5416}, {"Title": "American Graffiti", "US Gross": 115000000, "Worldwide Gross": 140000000, "US DVD Sales": null, "Production Budget": 777000, "Release Date": "Aug 11 1973", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "George Lucas", "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.6, "IMDB Votes": 30952}, {"Title": "American Ninja 2: The Confrontation", "US Gross": 4000000, "Worldwide Gross": 4000000, "US DVD Sales": null, "Production Budget": 350000, "Release Date": "Dec 31 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": null, "Director": "Sam Firstenberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.7, "IMDB Votes": 2495}, {"Title": "The American President", "US Gross": 60022813, "Worldwide Gross": 107822813, "US DVD Sales": null, "Production Budget": 62000000, "Release Date": "Nov 17 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Rob Reiner", "Rotten Tomatoes Rating": 90, "IMDB Rating": 6.8, "IMDB Votes": 22780}, {"Title": "Annie Hall", "US Gross": 38251425, "Worldwide Gross": 38251425, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Apr 20 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Woody Allen", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.2, "IMDB Votes": 65406}, {"Title": "Anatomie", "US Gross": 9598, "Worldwide Gross": 9598, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Sep 08 2000", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 6266}, {"Title": "The Adventures of Huck Finn", "US Gross": 24103594, "Worldwide Gross": 24103594, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "Apr 02 1993", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Stephen Sommers", "Rotten Tomatoes Rating": 62, "IMDB Rating": 5.8, "IMDB Votes": 3095}, {"Title": "The Apartment", "US Gross": 18600000, "Worldwide Gross": 24600000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Dec 31 1959", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": null, "Director": "Billy Wilder", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.4, "IMDB Votes": 36485}, {"Title": "Apocalypse Now", "US Gross": 78800000, "Worldwide Gross": 78800000, "US DVD Sales": 3479242, "Production Budget": 31500000, "Release Date": "Aug 15 1979", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.6, "IMDB Votes": 173141}, {"Title": "Arachnophobia", "US Gross": 53208180, "Worldwide Gross": 53208180, "US DVD Sales": null, "Production Budget": 31000000, "Release Date": "Jul 18 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Frank Marshall", "Rotten Tomatoes Rating": 85, "IMDB Rating": 6.2, "IMDB Votes": 20528}, {"Title": "Arn - Tempelriddaren", "US Gross": 0, "Worldwide Gross": 14900000, "US DVD Sales": null, "Production Budget": 16500000, "Release Date": "Dec 25 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 6251}, {"Title": "Arnolds Park", "US Gross": 23616, "Worldwide Gross": 23616, "US DVD Sales": null, "Production Budget": 600000, "Release Date": "Oct 19 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "The Movie Partners", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 77}, {"Title": "Sweet Sweetback's Baad Asssss Song", "US Gross": 15200000, "Worldwide Gross": 15200000, "US DVD Sales": null, "Production Budget": 150000, "Release Date": "Jan 01 1971", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 1769}, {"Title": "And Then Came Love", "US Gross": 8158, "Worldwide Gross": 8158, "US DVD Sales": null, "Production Budget": 989000, "Release Date": "Jun 01 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Fox Meadow", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.4, "IMDB Votes": 200}, {"Title": "Around the World in 80 Days", "US Gross": 42000000, "Worldwide Gross": 42000000, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Oct 17 1956", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "United Artists", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 73, "IMDB Rating": 5.6, "IMDB Votes": 21516}, {"Title": "Barbarella", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Oct 10 1968", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 74, "IMDB Rating": 5.7, "IMDB Votes": 10794}, {"Title": "Barry Lyndon", "US Gross": 20000000, "Worldwide Gross": 20000000, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Dec 31 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": "Stanley Kubrick", "Rotten Tomatoes Rating": 94, "IMDB Rating": 8.1, "IMDB Votes": 39909}, {"Title": "Barbarians, The", "US Gross": 800000, "Worldwide Gross": 800000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Mar 01 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 236}, {"Title": "Babe", "US Gross": 63658910, "Worldwide Gross": 246100000, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 04 1995", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Chris Noonan", "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.3, "IMDB Votes": 35644}, {"Title": "Boynton Beach Club", "US Gross": 3127472, "Worldwide Gross": 3127472, "US DVD Sales": null, "Production Budget": 2900000, "Release Date": "Mar 24 2006", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "Wingate Distribution", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Baby's Day Out", "US Gross": 16581575, "Worldwide Gross": 16581575, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jul 01 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Patrick Read Johnson", "Rotten Tomatoes Rating": 21, "IMDB Rating": 5, "IMDB Votes": 8332}, {"Title": "Bound by Honor", "US Gross": 4496583, "Worldwide Gross": 4496583, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Apr 16 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": null, "Creative Type": null, "Director": "Taylor Hackford", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 10142}, {"Title": "Bon Cop, Bad Cop", "US Gross": 12671300, "Worldwide Gross": 12671300, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Aug 04 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Alliance", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.9, "IMDB Votes": 151}, {"Title": "Back to the Future", "US Gross": 210609762, "Worldwide Gross": 381109762, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Jul 03 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.4, "IMDB Votes": 201598}, {"Title": "Back to the Future Part II", "US Gross": 118450002, "Worldwide Gross": 332000000, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Nov 22 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 64, "IMDB Rating": 7.5, "IMDB Votes": 87341}, {"Title": "Back to the Future Part III", "US Gross": 87666629, "Worldwide Gross": 243700000, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "May 24 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.1, "IMDB Votes": 77541}, {"Title": "Butch Cassidy and the Sundance Kid", "US Gross": 102308900, "Worldwide Gross": 102308900, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Oct 24 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": null, "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "George Roy Hill", "Rotten Tomatoes Rating": 90, "IMDB Rating": 8.2, "IMDB Votes": 57602}, {"Title": "Bad Boys", "US Gross": 65647413, "Worldwide Gross": 141247413, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Apr 07 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Michael Bay", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.6, "IMDB Votes": 53929}, {"Title": "Body Double", "US Gross": 8801940, "Worldwide Gross": 8801940, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 26 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.4, "IMDB Votes": 9738}, {"Title": "The Beast from 20,000 Fathoms", "US Gross": 5000000, "Worldwide Gross": 5000000, "US DVD Sales": null, "Production Budget": 210000, "Release Date": "Jun 13 1953", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 90, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Beastmaster 2: Through the Portal of Time", "US Gross": 773490, "Worldwide Gross": 773490, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Aug 30 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": null, "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 3.3, "IMDB Votes": 1327}, {"Title": "The Beastmaster", "US Gross": 10751126, "Worldwide Gross": 10751126, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Aug 20 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.7, "IMDB Votes": 5734}, {"Title": "Ben-Hur", "US Gross": 9000000, "Worldwide Gross": 9000000, "US DVD Sales": null, "Production Budget": 3900000, "Release Date": "Dec 30 2025", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8.2, "IMDB Votes": 58510}, {"Title": "Ben-Hur", "US Gross": 73000000, "Worldwide Gross": 73000000, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Nov 18 1959", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": null, "Director": "William Wyler", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.2, "IMDB Votes": 58510}, {"Title": "Benji", "US Gross": 31559560, "Worldwide Gross": 31559560, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Nov 15 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 5.8, "IMDB Votes": 1801}, {"Title": "Before Sunrise", "US Gross": 5274005, "Worldwide Gross": 5274005, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Jan 27 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Richard Linklater", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8, "IMDB Votes": 39705}, {"Title": "Beauty and the Beast", "US Gross": 171340294, "Worldwide Gross": 403476931, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Nov 13 1991", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": "Fantasy", "Director": "Gary Trousdale", "Rotten Tomatoes Rating": 93, "IMDB Rating": 3.4, "IMDB Votes": 354}, {"Title": "The Best Years of Our Lives", "US Gross": 23600000, "Worldwide Gross": 23600000, "US DVD Sales": null, "Production Budget": 2100000, "Release Date": "Nov 21 2046", "MPAA Rating": null, "Running Time min": null, "Distributor": "RKO Radio Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": "William Wyler", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.2, "IMDB Votes": 17338}, {"Title": "The Ballad of Gregorio Cortez", "US Gross": 909000, "Worldwide Gross": 909000, "US DVD Sales": null, "Production Budget": 1305000, "Release Date": "Aug 19 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Embassy", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "My Big Fat Independent Movie", "US Gross": 4655, "Worldwide Gross": 4655, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Sep 30 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Big Fat Movies", "Source": null, "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 3.2, "IMDB Votes": 1119}, {"Title": "Battle for the Planet of the Apes", "US Gross": 8800000, "Worldwide Gross": 8800000, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Dec 31 1972", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": null, "Major Genre": null, "Creative Type": "Science Fiction", "Director": "Jack Lee Thompson", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5, "IMDB Votes": 6094}, {"Title": "Big Things", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 50000, "Release Date": "Dec 31 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Bogus", "US Gross": 4357406, "Worldwide Gross": 4357406, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Sep 06 1996", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Norman Jewison", "Rotten Tomatoes Rating": 40, "IMDB Rating": 4.8, "IMDB Votes": 2742}, {"Title": "Beverly Hills Cop", "US Gross": 234760478, "Worldwide Gross": 316300000, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 05 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Martin Brest", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.3, "IMDB Votes": 45065}, {"Title": "Beverly Hills Cop II", "US Gross": 153665036, "Worldwide Gross": 276665036, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "May 20 1987", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.1, "IMDB Votes": 29712}, {"Title": "Beverly Hills Cop III", "US Gross": 42586861, "Worldwide Gross": 119180938, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "May 25 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Landis", "Rotten Tomatoes Rating": 10, "IMDB Rating": 5, "IMDB Votes": 21199}, {"Title": "The Black Hole", "US Gross": 35841901, "Worldwide Gross": 35841901, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 21 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": null, "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.6, "IMDB Votes": 7810}, {"Title": "Bathory", "US Gross": 0, "Worldwide Gross": 3436763, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jul 10 2008", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 1446}, {"Title": "Big", "US Gross": 114968774, "Worldwide Gross": 151668774, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jun 03 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Penny Marshall", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.2, "IMDB Votes": 49256}, {"Title": "The Big Parade", "US Gross": 11000000, "Worldwide Gross": 22000000, "US DVD Sales": null, "Production Budget": 245000, "Release Date": "Jan 01 2025", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": null, "Director": "King Vidor", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.4, "IMDB Votes": 2600}, {"Title": "Boyz n the Hood", "US Gross": 56190094, "Worldwide Gross": 56190094, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "Jul 12 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Singleton", "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.8, "IMDB Votes": 30299}, {"Title": "The Book of Mormon Movie, Volume 1: The Journey", "US Gross": 1660865, "Worldwide Gross": 1660865, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Sep 12 2003", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Distributor Unknown", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Return to the Blue Lagoon", "US Gross": 2000000, "Worldwide Gross": 2000000, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Dec 31 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.3, "IMDB Votes": 4632}, {"Title": "Bright Lights, Big City", "US Gross": 16118077, "Worldwide Gross": 16118077, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 01 1988", "MPAA Rating": "R", "Running Time min": null, "Distributor": "United Artists", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.8, "IMDB Votes": 11929}, {"Title": "The Blue Bird", "US Gross": 887000, "Worldwide Gross": 887000, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Dec 31 1975", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Play", "Major Genre": null, "Creative Type": "Fantasy", "Director": "George Cukor", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 359}, {"Title": "The Blue Butterfly", "US Gross": 1610194, "Worldwide Gross": 1610194, "US DVD Sales": null, "Production Budget": 10400000, "Release Date": "Feb 20 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Alliance", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.2, "IMDB Votes": 817}, {"Title": "Blade Runner", "US Gross": 32656328, "Worldwide Gross": 33139618, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Jun 25 1982", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 92, "IMDB Rating": 8.3, "IMDB Votes": 185546}, {"Title": "Bloodsport", "US Gross": 11806119, "Worldwide Gross": 11806119, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Feb 26 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Cannon", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 19816}, {"Title": "The Blues Brothers", "US Gross": 57229890, "Worldwide Gross": 57229890, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Jun 20 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": "John Landis", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.9, "IMDB Votes": 62941}, {"Title": "Blow Out", "US Gross": 13747234, "Worldwide Gross": 13747234, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jul 24 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Filmways Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.1, "IMDB Votes": 10239}, {"Title": "De battre mon coeur s'est arrÍtÈ", "US Gross": 1023424, "Worldwide Gross": 8589831, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Jul 01 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "WellSpring", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 7295}, {"Title": "The Broadway Melody", "US Gross": 2800000, "Worldwide Gross": 4358000, "US DVD Sales": null, "Production Budget": 379000, "Release Date": "Dec 31 1928", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 6.7, "IMDB Votes": 2017}, {"Title": "Boom Town", "US Gross": 9172000, "Worldwide Gross": 9172000, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 31 1939", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 1115}, {"Title": "Bound", "US Gross": 3802260, "Worldwide Gross": 6300000, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Oct 04 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Andy Wachowski", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.4, "IMDB Votes": 23564}, {"Title": "Bang", "US Gross": 527, "Worldwide Gross": 527, "US DVD Sales": null, "Production Budget": 10000, "Release Date": "Apr 01 1996", "MPAA Rating": null, "Running Time min": null, "Distributor": "JeTi Films", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Jeff \"\"King Jeff\"\" Hollins", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 369}, {"Title": "Bananas", "US Gross": null, "Worldwide Gross": null, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Apr 28 1971", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Woody Allen", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.1, "IMDB Votes": 12415}, {"Title": "Bill & Ted's Bogus Journey", "US Gross": 37537675, "Worldwide Gross": 37537675, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jul 19 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Peter Hewitt", "Rotten Tomatoes Rating": 58, "IMDB Rating": 5.8, "IMDB Votes": 20188}, {"Title": "The Birth of a Nation", "US Gross": 10000000, "Worldwide Gross": 11000000, "US DVD Sales": null, "Production Budget": 110000, "Release Date": "Feb 08 2015", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.1, "IMDB Votes": 8901}, {"Title": "The Ballad of Cable Hogue", "US Gross": 3500000, "Worldwide Gross": 5000000, "US DVD Sales": null, "Production Budget": 3716946, "Release Date": "May 13 1970", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Sam Peckinpah", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.3, "IMDB Votes": 3125}, {"Title": "The Blood of Heroes", "US Gross": 882290, "Worldwide Gross": 882290, "US DVD Sales": null, "Production Budget": 7700000, "Release Date": "Feb 23 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 2523}, {"Title": "The Blood of My Brother: A Story of Death in Iraq", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 120000, "Release Date": "Jun 30 2006", "MPAA Rating": null, "Running Time min": null, "Distributor": "Lifesize Entertainment", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.6, "IMDB Votes": 90}, {"Title": "Boomerang", "US Gross": 70052444, "Worldwide Gross": 131052444, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Jul 01 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 37, "IMDB Rating": 5.9, "IMDB Votes": 202}, {"Title": "The Bridge on the River Kwai", "US Gross": 33300000, "Worldwide Gross": 33300000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Dec 18 1957", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": "David Lean", "Rotten Tomatoes Rating": 95, "IMDB Rating": 8.4, "IMDB Votes": 58641}, {"Title": "Born on the Fourth of July", "US Gross": 70001698, "Worldwide Gross": 70001698, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Dec 20 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.2, "IMDB Votes": 32108}, {"Title": "Basquiat", "US Gross": 2962051, "Worldwide Gross": 2962051, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 09 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Julian Schnabel", "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.7, "IMDB Votes": 7935}, {"Title": "Black Rain", "US Gross": 45892212, "Worldwide Gross": 45892212, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 22 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 57, "IMDB Rating": 4.1, "IMDB Votes": 137}, {"Title": "Bottle Rocket", "US Gross": 407488, "Worldwide Gross": 407488, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Feb 21 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Short Film", "Major Genre": "Adventure", "Creative Type": null, "Director": "Wes Anderson", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.2, "IMDB Votes": 21980}, {"Title": "Braindead", "US Gross": 242623, "Worldwide Gross": 242623, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Feb 12 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Trimark", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": null, "Director": "Peter Jackson", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 32827}, {"Title": "The Bridges of Madison County", "US Gross": 71516617, "Worldwide Gross": 175516617, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Jun 02 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.2, "IMDB Votes": 21923}, {"Title": "The Brothers McMullen", "US Gross": 10426506, "Worldwide Gross": 10426506, "US DVD Sales": null, "Production Budget": 25000, "Release Date": "Aug 09 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Edward Burns", "Rotten Tomatoes Rating": 91, "IMDB Rating": 6.4, "IMDB Votes": 4365}, {"Title": "Dracula", "US Gross": 82522790, "Worldwide Gross": 215862692, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Nov 13 1992", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 136}, {"Title": "Broken Arrow", "US Gross": 70645997, "Worldwide Gross": 148345997, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Feb 09 1996", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Woo", "Rotten Tomatoes Rating": 55, "IMDB Rating": 5.8, "IMDB Votes": 33584}, {"Title": "Brainstorm", "US Gross": 8921050, "Worldwide Gross": 8921050, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Sep 30 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.3, "IMDB Votes": 4410}, {"Title": "Braveheart", "US Gross": 75545647, "Worldwide Gross": 209000000, "US DVD Sales": null, "Production Budget": 72000000, "Release Date": "May 24 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Mel Gibson", "Rotten Tomatoes Rating": 77, "IMDB Rating": 8.4, "IMDB Votes": 240642}, {"Title": "Les BronzÈs 3: amis pour la vie", "US Gross": 0, "Worldwide Gross": 83833602, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Feb 01 2006", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.4, "IMDB Votes": 1254}, {"Title": "Brazil", "US Gross": 9929135, "Worldwide Gross": 9929135, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 18 1985", "MPAA Rating": "R", "Running Time min": 136, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Fantasy", "Director": "Terry Gilliam", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8, "IMDB Votes": 76635}, {"Title": "Blazing Saddles", "US Gross": 119500000, "Worldwide Gross": 119500000, "US DVD Sales": null, "Production Budget": 2600000, "Release Date": "Jan 01 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Mel Brooks", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.8, "IMDB Votes": 45771}, {"Title": "The Basket", "US Gross": 609042, "Worldwide Gross": 609042, "US DVD Sales": null, "Production Budget": 1300000, "Release Date": "May 05 2000", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 343}, {"Title": "Bathing Beauty", "US Gross": 3500000, "Worldwide Gross": 3500000, "US DVD Sales": null, "Production Budget": 2361000, "Release Date": "Dec 31 1943", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 487}, {"Title": "Bill & Ted's Excellent Adventure", "US Gross": 39916091, "Worldwide Gross": 39916091, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 17 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Stephen Herek", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.7, "IMDB Votes": 30341}, {"Title": "A Bridge Too Far", "US Gross": 50800000, "Worldwide Gross": 50800000, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Jun 15 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": "Sir Richard Attenborough", "Rotten Tomatoes Rating": 67, "IMDB Rating": 7.3, "IMDB Votes": 16882}, {"Title": "Beetle Juice", "US Gross": 73326666, "Worldwide Gross": 73326666, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Mar 30 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Tim Burton", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 61197}, {"Title": "Batman Returns", "US Gross": 162831698, "Worldwide Gross": 266822354, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 18 1992", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Tim Burton", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.9, "IMDB Votes": 78673}, {"Title": "Batman Forever", "US Gross": 184031112, "Worldwide Gross": 336529144, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Jun 16 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 43, "IMDB Rating": 5.4, "IMDB Votes": 76218}, {"Title": "Batman - The Movie", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 1377800, "Release Date": "Aug 21 2001", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Batman", "US Gross": 251188924, "Worldwide Gross": 411348924, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Jun 23 1989", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Tim Burton", "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.6, "IMDB Votes": 111464}, {"Title": "Buffy the Vampire Slayer", "US Gross": 14231669, "Worldwide Gross": 14231669, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jul 31 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": 5.3, "IMDB Votes": 16056}, {"Title": "Bienvenue chez les Ch'tis", "US Gross": 1470856, "Worldwide Gross": 243470856, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Jul 25 2008", "MPAA Rating": "Not Rated", "Running Time min": 109, "Distributor": "Link Productions Ltd.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 7129}, {"Title": "Beyond the Valley of the Dolls", "US Gross": 9000000, "Worldwide Gross": 9000000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Jan 01 1970", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 68, "IMDB Rating": 5.7, "IMDB Votes": 4626}, {"Title": "Broken Vessels", "US Gross": 15030, "Worldwide Gross": 85343, "US DVD Sales": null, "Production Budget": 600000, "Release Date": "Jul 02 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 399}, {"Title": "The Boys from Brazil", "US Gross": 19000000, "Worldwide Gross": 19000000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 31 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": "Franklin J. Schaffner", "Rotten Tomatoes Rating": 65, "IMDB Rating": 7, "IMDB Votes": 8741}, {"Title": "The Business of Fancy Dancing", "US Gross": 174682, "Worldwide Gross": 174682, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "May 10 2002", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Outrider Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 355}, {"Title": "Caddyshack", "US Gross": 39846344, "Worldwide Gross": 39846344, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Jul 25 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Harold Ramis", "Rotten Tomatoes Rating": 75, "IMDB Rating": 7.3, "IMDB Votes": 35436}, {"Title": "Cape Fear", "US Gross": 79091969, "Worldwide Gross": 182291969, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 15 1991", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.3, "IMDB Votes": 47196}, {"Title": "Clear and Present Danger", "US Gross": 122012656, "Worldwide Gross": 207500000, "US DVD Sales": null, "Production Budget": 62000000, "Release Date": "Aug 03 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Phillip Noyce", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.8, "IMDB Votes": 29612}, {"Title": "Carrie", "US Gross": 25878153, "Worldwide Gross": 25878153, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Nov 16 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.4, "IMDB Votes": 38767}, {"Title": "Casino Royale", "US Gross": 22744718, "Worldwide Gross": 41744718, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Apr 28 1967", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Huston", "Rotten Tomatoes Rating": 30, "IMDB Rating": 8, "IMDB Votes": 172936}, {"Title": "Camping Sauvage", "US Gross": 3479302, "Worldwide Gross": 3479302, "US DVD Sales": null, "Production Budget": 4600000, "Release Date": "Jul 16 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Alliance", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 378}, {"Title": "The Cotton Club", "US Gross": 25928721, "Worldwide Gross": 25928721, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Dec 14 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.3, "IMDB Votes": 6940}, {"Title": "Crop Circles: Quest for Truth", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 600000, "Release Date": "Aug 23 2002", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.1, "IMDB Votes": 153}, {"Title": "Close Encounters of the Third Kind", "US Gross": 166000000, "Worldwide Gross": 337700000, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Nov 16 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.8, "IMDB Votes": 59049}, {"Title": "The Cable Guy", "US Gross": 60240295, "Worldwide Gross": 102825796, "US DVD Sales": null, "Production Budget": 47000000, "Release Date": "Jun 14 1996", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ben Stiller", "Rotten Tomatoes Rating": 52, "IMDB Rating": 5.8, "IMDB Votes": 51109}, {"Title": "Chocolate: Deep Dark Secrets", "US Gross": 49000, "Worldwide Gross": 1549000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 16 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Eros Entertainment", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 527}, {"Title": "Child's Play", "US Gross": 33244684, "Worldwide Gross": 44196684, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Nov 09 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.3, "IMDB Votes": 16165}, {"Title": "Child's Play 2", "US Gross": 26904572, "Worldwide Gross": 34166572, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Nov 09 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.1, "IMDB Votes": 8666}, {"Title": "Chain Reaction", "US Gross": 21226204, "Worldwide Gross": 60209334, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Aug 02 1996", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Andrew Davis", "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.2, "IMDB Votes": 15817}, {"Title": "Charly", "US Gross": 814666, "Worldwide Gross": 814666, "US DVD Sales": null, "Production Budget": 950000, "Release Date": "Sep 27 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Excel Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 60}, {"Title": "Chariots of Fire", "US Gross": 57159946, "Worldwide Gross": 57159946, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Sep 25 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Hugh Hudson", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.3, "IMDB Votes": 16138}, {"Title": "A Christmas Story", "US Gross": 19294144, "Worldwide Gross": 19294144, "US DVD Sales": null, "Production Budget": 3250000, "Release Date": "Nov 18 1983", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 88, "IMDB Rating": 8, "IMDB Votes": 51757}, {"Title": "Cat on a Hot Tin Roof", "US Gross": 17570324, "Worldwide Gross": 17570324, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Sep 20 1958", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Richard Brooks", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8, "IMDB Votes": 14540}, {"Title": "C.H.U.D.", "US Gross": 4700000, "Worldwide Gross": 4700000, "US DVD Sales": null, "Production Budget": 1250000, "Release Date": "Aug 31 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "New World", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 2806}, {"Title": "Charge of the Light Brigade, The", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Oct 20 2036", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Michael Curtiz", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Crooklyn", "US Gross": 13024170, "Worldwide Gross": 13024170, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "May 13 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.5, "IMDB Votes": 3137}, {"Title": "Festen", "US Gross": 1647780, "Worldwide Gross": 1647780, "US DVD Sales": null, "Production Budget": 1300000, "Release Date": "Oct 09 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "October Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Thomas Vinterberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.1, "IMDB Votes": 26607}, {"Title": "Cleopatra", "US Gross": 48000000, "Worldwide Gross": 62000000, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Jun 12 1963", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.8, "IMDB Votes": 7870}, {"Title": "Cliffhanger", "US Gross": 84049211, "Worldwide Gross": 255000000, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "May 28 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": 82, "IMDB Rating": 6.2, "IMDB Votes": 34447}, {"Title": "The Californians", "US Gross": 4134, "Worldwide Gross": 4134, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Oct 21 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Fabrication Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 226}, {"Title": "The Client", "US Gross": 92115211, "Worldwide Gross": 117615211, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jul 20 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 80, "IMDB Rating": 6.5, "IMDB Votes": 19299}, {"Title": "The Calling", "US Gross": 32092, "Worldwide Gross": 32092, "US DVD Sales": null, "Production Budget": 160000, "Release Date": "Mar 01 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Testimony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Michael C. Brown", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.4, "IMDB Votes": 1113}, {"Title": "Clueless", "US Gross": 56598476, "Worldwide Gross": 56598476, "US DVD Sales": null, "Production Budget": 13700000, "Release Date": "Jul 01 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Amy Heckerling", "Rotten Tomatoes Rating": 83, "IMDB Rating": 6.7, "IMDB Votes": 39055}, {"Title": "The Color Purple", "US Gross": 93589701, "Worldwide Gross": 93589701, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 18 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.7, "IMDB Votes": 26962}, {"Title": "Clerks", "US Gross": 3073428, "Worldwide Gross": 3073428, "US DVD Sales": null, "Production Budget": 27000, "Release Date": "Oct 19 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.9, "IMDB Votes": 89991}, {"Title": "Central do Brasil", "US Gross": 5969553, "Worldwide Gross": 17006158, "US DVD Sales": null, "Production Budget": 2900000, "Release Date": "Nov 20 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Walter Salles", "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 17343}, {"Title": "Clash of the Titans", "US Gross": 30000000, "Worldwide Gross": 30000000, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jun 12 1981", "MPAA Rating": null, "Running Time min": 108, "Distributor": "MGM", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 65, "IMDB Rating": 5.9, "IMDB Votes": 45773}, {"Title": "Clockwatchers", "US Gross": 444354, "Worldwide Gross": 444354, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "May 15 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Artistic License", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 3171}, {"Title": "Commando", "US Gross": 35073978, "Worldwide Gross": 35073978, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 04 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": 4.5, "IMDB Votes": 49}, {"Title": "The Color of Money", "US Gross": 52293000, "Worldwide Gross": 52293000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 17 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": null, "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 91, "IMDB Rating": 6.9, "IMDB Votes": 25824}, {"Title": "Cinderella", "US Gross": 85000000, "Worldwide Gross": 85000000, "US DVD Sales": null, "Production Budget": 2900000, "Release Date": "Feb 15 1950", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 92, "IMDB Rating": 5.1, "IMDB Votes": 373}, {"Title": "Congo", "US Gross": 81022333, "Worldwide Gross": 152022333, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 09 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Frank Marshall", "Rotten Tomatoes Rating": 21, "IMDB Rating": 4.6, "IMDB Votes": 17954}, {"Title": "Conan the Barbarian", "US Gross": 38264085, "Worldwide Gross": 38264085, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "May 14 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "John Milius", "Rotten Tomatoes Rating": 76, "IMDB Rating": 6.8, "IMDB Votes": 38886}, {"Title": "Conan the Destroyer", "US Gross": 26400000, "Worldwide Gross": 26400000, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jun 29 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Richard Fleischer", "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.4, "IMDB Votes": 20368}, {"Title": "Class of 1984", "US Gross": 6965361, "Worldwide Gross": 6965361, "US DVD Sales": null, "Production Budget": 3250000, "Release Date": "Aug 20 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Film Distribution Co.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 2945}, {"Title": "The Clan of the Cave Bear", "US Gross": 1953732, "Worldwide Gross": 1953732, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jan 17 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.9, "IMDB Votes": 2763}, {"Title": "The Case of the Grinning Cat", "US Gross": 7033, "Worldwide Gross": 7033, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Jul 21 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "First Run/Icarus", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Bacheha-Ye aseman", "US Gross": 925402, "Worldwide Gross": 925402, "US DVD Sales": null, "Production Budget": 180000, "Release Date": "Jan 22 1999", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 6657}, {"Title": "Coming Home", "US Gross": 32653000, "Worldwide Gross": 32653000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Dec 31 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Hal Ashby", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.3, "IMDB Votes": 4410}, {"Title": "Nanjing! Nanjing!", "US Gross": 0, "Worldwide Gross": 20000000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Nov 17 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "National Geographic Entertainment", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 1725}, {"Title": "Cool Runnings", "US Gross": 68856263, "Worldwide Gross": 155056263, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Oct 01 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jon Turteltaub", "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.5, "IMDB Votes": 24533}, {"Title": "Conquest of the Planet of the Apes", "US Gross": 9700000, "Worldwide Gross": 9700000, "US DVD Sales": null, "Production Budget": 1700000, "Release Date": "Dec 31 1971", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Jack Lee Thompson", "Rotten Tomatoes Rating": 44, "IMDB Rating": 5.8, "IMDB Votes": 6188}, {"Title": "Cure", "US Gross": 94596, "Worldwide Gross": 94596, "US DVD Sales": null, "Production Budget": 10000, "Release Date": "Jul 06 2001", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 2724}, {"Title": "Crocodile Dundee", "US Gross": 174803506, "Worldwide Gross": 328000000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Sep 26 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 88, "IMDB Rating": 6.5, "IMDB Votes": 27277}, {"Title": "Dayereh", "US Gross": 673780, "Worldwide Gross": 673780, "US DVD Sales": null, "Production Budget": 10000, "Release Date": "Mar 09 2001", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "WinStar Cinema", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 1851}, {"Title": "Karakter", "US Gross": 713413, "Worldwide Gross": 713413, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Mar 27 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 5531}, {"Title": "Creepshow", "US Gross": 20036244, "Worldwide Gross": 20036244, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Nov 10 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "George A. Romero", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.5, "IMDB Votes": 12530}, {"Title": "Creepshow 2", "US Gross": 14000000, "Worldwide Gross": 14000000, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "May 01 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "New World", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.4, "IMDB Votes": 5910}, {"Title": "The Crying Game", "US Gross": 62546695, "Worldwide Gross": 62546695, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Nov 25 1992", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Neil Jordan", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.3, "IMDB Votes": 21195}, {"Title": "Crimson Tide", "US Gross": 91387195, "Worldwide Gross": 159387195, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "May 12 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.2, "IMDB Votes": 33354}, {"Title": "Caravans", "US Gross": 1000000, "Worldwide Gross": 1000000, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Dec 31 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 173}, {"Title": "Crying With Laughter", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 820000, "Release Date": "Dec 31 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Fengkuang de Shitou", "US Gross": 0, "Worldwide Gross": 3000000, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jun 30 2006", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 1209}, {"Title": "Casablanca", "US Gross": 10462500, "Worldwide Gross": 10462500, "US DVD Sales": null, "Production Budget": 950000, "Release Date": "Dec 31 1941", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Michael Curtiz", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.8, "IMDB Votes": 167939}, {"Title": "Casino", "US Gross": 42438300, "Worldwide Gross": 110400000, "US DVD Sales": null, "Production Budget": 52000000, "Release Date": "Nov 22 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 81, "IMDB Rating": 8.1, "IMDB Votes": 108634}, {"Title": "Casper", "US Gross": 100328194, "Worldwide Gross": 282300000, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "May 26 1995", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Brad Silberling", "Rotten Tomatoes Rating": 41, "IMDB Rating": 5.7, "IMDB Votes": 26121}, {"Title": "Can't Stop the Music", "US Gross": 2000000, "Worldwide Gross": 2000000, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 31 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.5, "IMDB Votes": 2146}, {"Title": "Catch-22", "US Gross": 24911670, "Worldwide Gross": 24911670, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jun 24 1970", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Mike Nichols", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.1, "IMDB Votes": 9671}, {"Title": "City Hall", "US Gross": 20278055, "Worldwide Gross": 20278055, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Feb 16 1996", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Harold Becker", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.1, "IMDB Votes": 9908}, {"Title": "Cutthroat Island", "US Gross": 10017322, "Worldwide Gross": 10017322, "US DVD Sales": null, "Production Budget": 92000000, "Release Date": "Dec 22 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.3, "IMDB Votes": 10346}, {"Title": "La femme de chambre du Titanic", "US Gross": 244465, "Worldwide Gross": 244465, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 14 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 822}, {"Title": "Cat People", "US Gross": 4000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 134000, "Release Date": "Nov 16 2042", "MPAA Rating": null, "Running Time min": null, "Distributor": "RKO Radio Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 91, "IMDB Rating": 5.9, "IMDB Votes": 6791}, {"Title": "Courage Under Fire", "US Gross": 59003384, "Worldwide Gross": 100833145, "US DVD Sales": null, "Production Budget": 46000000, "Release Date": "Jul 12 1996", "MPAA Rating": "R", "Running Time min": 115, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Edward Zwick", "Rotten Tomatoes Rating": 85, "IMDB Rating": 6.6, "IMDB Votes": 19682}, {"Title": "C'era una volta il West", "US Gross": 5321508, "Worldwide Gross": 5321508, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "May 28 1969", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Sergio Leone", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.8, "IMDB Votes": 74184}, {"Title": "The Conversation", "US Gross": 4420000, "Worldwide Gross": 4420000, "US DVD Sales": null, "Production Budget": 1600000, "Release Date": "Apr 07 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.1, "IMDB Votes": 33005}, {"Title": "Cavite", "US Gross": 70071, "Worldwide Gross": 71644, "US DVD Sales": null, "Production Budget": 7000, "Release Date": "May 26 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Truly Indie", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 487}, {"Title": "Copycat", "US Gross": 32051917, "Worldwide Gross": 32051917, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 27 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Jon Amiel", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.5, "IMDB Votes": 17182}, {"Title": "Dark Angel", "US Gross": 4372561, "Worldwide Gross": 4372561, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Sep 28 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Triumph Releasing", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.3, "IMDB Votes": 3396}, {"Title": "Boot, Das", "US Gross": 11487676, "Worldwide Gross": 84970337, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Feb 10 1982", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Wolfgang Petersen", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.3, "IMDB Votes": 2184}, {"Title": "Desperado", "US Gross": 25532388, "Worldwide Gross": 25532388, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Aug 25 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 61, "IMDB Rating": 7, "IMDB Votes": 51515}, {"Title": "Dumb & Dumber", "US Gross": 127175374, "Worldwide Gross": 246400000, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Dec 16 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Bobby Farrelly", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 88093}, {"Title": "Diamonds Are Forever", "US Gross": 43800000, "Worldwide Gross": 116000000, "US DVD Sales": null, "Production Budget": 7200000, "Release Date": "Dec 17 1971", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": "Guy Hamilton", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.7, "IMDB Votes": 25354}, {"Title": "The Dark Half", "US Gross": 9579068, "Worldwide Gross": 9579068, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 23 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "George A. Romero", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 5488}, {"Title": "The Dark Hours", "US Gross": 423, "Worldwide Gross": 423, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "Oct 13 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Freestyle Releasing", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 2804}, {"Title": "Dante's Peak", "US Gross": 67163857, "Worldwide Gross": 178200000, "US DVD Sales": null, "Production Budget": 115000000, "Release Date": "Feb 07 1997", "MPAA Rating": "PG-13", "Running Time min": 108, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Roger Donaldson", "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.6, "IMDB Votes": 23472}, {"Title": "Daylight", "US Gross": 32908290, "Worldwide Gross": 158908290, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Dec 06 1996", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Rob Cohen", "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.4, "IMDB Votes": 20052}, {"Title": "Dick Tracy", "US Gross": 103738726, "Worldwide Gross": 162738726, "US DVD Sales": null, "Production Budget": 47000000, "Release Date": "Jun 15 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Warren Beatty", "Rotten Tomatoes Rating": 65, "IMDB Rating": 5.9, "IMDB Votes": 25364}, {"Title": "Decoys", "US Gross": 84733, "Worldwide Gross": 84733, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Feb 27 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.4, "IMDB Votes": 2486}, {"Title": "Dawn of the Dead", "US Gross": 5100000, "Worldwide Gross": 55000000, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Apr 20 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Film Distribution Co.", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 73875}, {"Title": "The Addams Family", "US Gross": 113502246, "Worldwide Gross": 191502246, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Nov 22 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Barry Sonnenfeld", "Rotten Tomatoes Rating": 59, "IMDB Rating": 6.6, "IMDB Votes": 28907}, {"Title": "Death Becomes Her", "US Gross": 58422650, "Worldwide Gross": 149022650, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jul 31 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6, "IMDB Votes": 27681}, {"Title": "Def-Con 4", "US Gross": 210904, "Worldwide Gross": 210904, "US DVD Sales": null, "Production Budget": 1300000, "Release Date": "Mar 15 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "New World", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.8, "IMDB Votes": 639}, {"Title": "Dead Poets' Society", "US Gross": 95860116, "Worldwide Gross": 239500000, "US DVD Sales": null, "Production Budget": 16400000, "Release Date": "Jun 02 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Peter Weir", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.8, "IMDB Votes": 89662}, {"Title": "The Day the Earth Stood Still", "US Gross": 3700000, "Worldwide Gross": 3700000, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Mar 04 2003", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 5.5, "IMDB Votes": 51517}, {"Title": "Deep Throat", "US Gross": 45000000, "Worldwide Gross": 45000000, "US DVD Sales": null, "Production Budget": 25000, "Release Date": "Jun 30 1972", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 3075}, {"Title": "The Dead Zone", "US Gross": 20766000, "Worldwide Gross": 20766000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 21 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "David Cronenberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 19485}, {"Title": "Die Hard 2", "US Gross": 117323878, "Worldwide Gross": 239814025, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Jul 03 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 79636}, {"Title": "Die Hard: With a Vengeance", "US Gross": 100012499, "Worldwide Gross": 364480746, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "May 19 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John McTiernan", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 87437}, {"Title": "Dragonheart", "US Gross": 51364680, "Worldwide Gross": 104364680, "US DVD Sales": null, "Production Budget": 57000000, "Release Date": "May 31 1996", "MPAA Rating": "PG-13", "Running Time min": 108, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Rob Cohen", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.2, "IMDB Votes": 26309}, {"Title": "Die Hard", "US Gross": 81350242, "Worldwide Gross": 139109346, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Jul 15 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John McTiernan", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.3, "IMDB Votes": 237}, {"Title": "Diner", "US Gross": 12592907, "Worldwide Gross": 12592907, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Apr 02 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.1, "IMDB Votes": 7803}, {"Title": "Dil Jo Bhi Kahey...", "US Gross": 129319, "Worldwide Gross": 129319, "US DVD Sales": null, "Production Budget": 1600000, "Release Date": "Sep 23 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Eros Entertainment", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 159}, {"Title": "Don Juan DeMarco", "US Gross": 22032635, "Worldwide Gross": 22032635, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 07 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.6, "IMDB Votes": 20386}, {"Title": "Tales from the Crypt: Demon Knight", "US Gross": 21089146, "Worldwide Gross": 21089146, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jan 13 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 6430}, {"Title": "Damnation Alley", "US Gross": null, "Worldwide Gross": null, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Oct 21 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 1655}, {"Title": "Dead Man Walking", "US Gross": 39387284, "Worldwide Gross": 83088295, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Dec 29 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Tim Robbins", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.6, "IMDB Votes": 32159}, {"Title": "Dances with Wolves", "US Gross": 184208842, "Worldwide Gross": 424200000, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Nov 09 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Kevin Costner", "Rotten Tomatoes Rating": 76, "IMDB Rating": 8, "IMDB Votes": 71399}, {"Title": "Dangerous Liaisons", "US Gross": 34700000, "Worldwide Gross": 34700000, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Dec 21 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Stephen Frears", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.7, "IMDB Votes": 25761}, {"Title": "Donovan's Reef", "US Gross": 6600000, "Worldwide Gross": 6600000, "US DVD Sales": null, "Production Budget": 2686000, "Release Date": "Dec 31 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Ford", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.6, "IMDB Votes": 2907}, {"Title": "Due occhi diabolici", "US Gross": 349618, "Worldwide Gross": 349618, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Oct 25 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 2059}, {"Title": "Double Impact", "US Gross": 29090445, "Worldwide Gross": 29090445, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Aug 09 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Sheldon Lettich", "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.7, "IMDB Votes": 10426}, {"Title": "The Doors", "US Gross": 34167219, "Worldwide Gross": 34167219, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Mar 01 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 57, "IMDB Rating": 7, "IMDB Votes": 29750}, {"Title": "Day of the Dead", "US Gross": 5804262, "Worldwide Gross": 34004262, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Jul 03 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Film Distribution Co.", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": "George A. Romero", "Rotten Tomatoes Rating": 78, "IMDB Rating": 4.5, "IMDB Votes": 8395}, {"Title": "Days of Thunder", "US Gross": 82670733, "Worldwide Gross": 157670733, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jun 27 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.4, "IMDB Votes": 25395}, {"Title": "Dracula: Pages from a Virgin's Diary", "US Gross": 39659, "Worldwide Gross": 84788, "US DVD Sales": null, "Production Budget": 1100000, "Release Date": "May 14 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 1013}, {"Title": "Dolphin", "US Gross": 14000, "Worldwide Gross": 14000, "US DVD Sales": null, "Production Budget": 170000, "Release Date": "Jun 01 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 134}, {"Title": "Death Race 2000", "US Gross": null, "Worldwide Gross": null, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Apr 01 1975", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": null, "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.1, "IMDB Votes": 10015}, {"Title": "Drei", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 7200000, "Release Date": "Dec 31 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Tom Tykwer", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Dress", "US Gross": 16556, "Worldwide Gross": 16556, "US DVD Sales": null, "Production Budget": 2650000, "Release Date": "Jan 16 1998", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Attitude Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 1844}, {"Title": "The Deer Hunter", "US Gross": 50000000, "Worldwide Gross": 50000000, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 31 1978", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": "Michael Cimino", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.2, "IMDB Votes": 88095}, {"Title": "Dragonslayer", "US Gross": 6000000, "Worldwide Gross": 6000000, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jun 26 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 82, "IMDB Rating": 6.8, "IMDB Votes": 4945}, {"Title": "Driving Miss Daisy", "US Gross": 106593296, "Worldwide Gross": 106593296, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Dec 13 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Bruce Beresford", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.5, "IMDB Votes": 22566}, {"Title": "Dressed to Kill", "US Gross": 31899000, "Worldwide Gross": 31899000, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "Jan 01 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Brian De Palma", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.1, "IMDB Votes": 9556}, {"Title": "Do the Right Thing", "US Gross": 26004026, "Worldwide Gross": 26004026, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Jun 30 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.9, "IMDB Votes": 26877}, {"Title": "Dune", "US Gross": 27447471, "Worldwide Gross": 27447471, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Dec 14 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "David Lynch", "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.5, "IMDB Votes": 38489}, {"Title": "Dolphins and Whales Tribes of the Ocean 3D", "US Gross": 7714996, "Worldwide Gross": 17252287, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Feb 15 2008", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "3D Entertainment", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Down & Out with the Dolls", "US Gross": 58936, "Worldwide Gross": 58936, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Mar 21 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Indican Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 75}, {"Title": "Dream With The Fishes", "US Gross": 542909, "Worldwide Gross": 542909, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Jun 20 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.6, "IMDB Votes": 1188}, {"Title": "Doctor Zhivago", "US Gross": 111721000, "Worldwide Gross": 111721000, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Dec 22 1965", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "David Lean", "Rotten Tomatoes Rating": 84, "IMDB Rating": 8, "IMDB Votes": 27671}, {"Title": "The Evil Dead", "US Gross": 2400000, "Worldwide Gross": 29400000, "US DVD Sales": null, "Production Budget": 375000, "Release Date": "Apr 15 1983", "MPAA Rating": "NC-17", "Running Time min": null, "Distributor": "New Line", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": "Sam Raimi", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 45030}, {"Title": "Evil Dead II", "US Gross": 5923044, "Worldwide Gross": 5923044, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Mar 13 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Rosebud Releasing", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Sam Raimi", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.9, "IMDB Votes": 44214}, {"Title": "Army of Darkness", "US Gross": 11502976, "Worldwide Gross": 21502976, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Feb 19 1993", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Sam Raimi", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 55671}, {"Title": "Ed and his Dead Mother", "US Gross": 673, "Worldwide Gross": 673, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Dec 31 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.6, "IMDB Votes": 829}, {"Title": "Edward Scissorhands", "US Gross": 53976987, "Worldwide Gross": 53976987, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 07 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Tim Burton", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8, "IMDB Votes": 102485}, {"Title": "Ed Wood", "US Gross": 5828466, "Worldwide Gross": 5828466, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Sep 30 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Dramatization", "Director": "Tim Burton", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.1, "IMDB Votes": 74171}, {"Title": "The Egyptian", "US Gross": 15000000, "Worldwide Gross": 15000000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Dec 31 1953", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Michael Curtiz", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 1097}, {"Title": "Everyone Says I Love You", "US Gross": 9725847, "Worldwide Gross": 34600000, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 06 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 80, "IMDB Rating": 6.8, "IMDB Votes": 16481}, {"Title": "The Elephant Man", "US Gross": 26010864, "Worldwide Gross": 26010864, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Oct 03 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "David Lynch", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.4, "IMDB Votes": 58194}, {"Title": "Emma", "US Gross": 22231658, "Worldwide Gross": 37831658, "US DVD Sales": null, "Production Budget": 5900000, "Release Date": "Aug 02 1996", "MPAA Rating": "PG", "Running Time min": 111, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 13798}, {"Title": "Star Wars Ep. V: The Empire Strikes Back", "US Gross": 290271960, "Worldwide Gross": 534171960, "US DVD Sales": 10027926, "Production Budget": 23000000, "Release Date": "May 21 1980", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Escape from New York", "US Gross": 25244700, "Worldwide Gross": 25244700, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Jul 10 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Avco Embassy", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "John Carpenter", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.1, "IMDB Votes": 34497}, {"Title": "Escape from L.A.", "US Gross": 25426861, "Worldwide Gross": 25426861, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Aug 09 1996", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "John Carpenter", "Rotten Tomatoes Rating": 56, "IMDB Rating": 5.3, "IMDB Votes": 23262}, {"Title": "Escape from the Planet of the Apes", "US Gross": 12300000, "Worldwide Gross": 12300000, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Dec 31 1970", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.1, "IMDB Votes": 7686}, {"Title": "Eraser", "US Gross": 101295562, "Worldwide Gross": 234400000, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Jun 21 1996", "MPAA Rating": "R", "Running Time min": 115, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Chuck Russell", "Rotten Tomatoes Rating": 34, "IMDB Rating": 5.9, "IMDB Votes": 37287}, {"Title": "Eraserhead", "US Gross": 7000000, "Worldwide Gross": 7000000, "US DVD Sales": null, "Production Budget": 100000, "Release Date": "Dec 31 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "David Lynch", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.4, "IMDB Votes": 26595}, {"Title": "Everything You Always Wanted to Know", "US Gross": 18016290, "Worldwide Gross": 18016290, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Aug 11 1972", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": null, "Director": "Woody Allen", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "ET: The Extra-Terrestrial", "US Gross": 435110554, "Worldwide Gross": 792910554, "US DVD Sales": null, "Production Budget": 10500000, "Release Date": "Jun 11 1982", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.9, "IMDB Votes": 105028}, {"Title": "Excessive Force", "US Gross": 1152117, "Worldwide Gross": 1152117, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "May 14 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 537}, {"Title": "Exorcist II: The Heretic", "US Gross": 25011000, "Worldwide Gross": 25011000, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Jun 17 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": "John Boorman", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.5, "IMDB Votes": 7849}, {"Title": "Exotica", "US Gross": 5046118, "Worldwide Gross": 5046118, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Sep 23 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Atom Egoyan", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.1, "IMDB Votes": 8402}, {"Title": "Force 10 from Navarone", "US Gross": 7100000, "Worldwide Gross": 7100000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Dec 22 1978", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": null, "Major Genre": "Action", "Creative Type": null, "Director": "Guy Hamilton", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6, "IMDB Votes": 5917}, {"Title": "A Farewell To Arms", "US Gross": 11000000, "Worldwide Gross": 11000000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Dec 31 1956", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Huston", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 1655}, {"Title": "Fatal Attraction", "US Gross": 156645693, "Worldwide Gross": 320100000, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Sep 18 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Adrian Lyne", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.8, "IMDB Votes": 22328}, {"Title": "Family Plot", "US Gross": 13200000, "Worldwide Gross": 13200000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Apr 09 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 95, "IMDB Rating": 6.8, "IMDB Votes": 7290}, {"Title": "Fabled", "US Gross": 31425, "Worldwide Gross": 31425, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "Dec 10 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Indican Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": null, "Director": "Ari S. Kirschenbaum", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 146}, {"Title": "Fetching Cody", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Mar 17 2006", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 535}, {"Title": "The French Connection", "US Gross": 41158757, "Worldwide Gross": 41158757, "US DVD Sales": null, "Production Budget": 2200000, "Release Date": "Oct 09 1971", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "William Friedkin", "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.9, "IMDB Votes": 33674}, {"Title": "From Dusk Till Dawn", "US Gross": 25728961, "Worldwide Gross": 25728961, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jan 19 1996", "MPAA Rating": "R", "Running Time min": 107, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 63, "IMDB Rating": 7.1, "IMDB Votes": 80234}, {"Title": "Friday the 13th", "US Gross": 39754601, "Worldwide Gross": 59754601, "US DVD Sales": null, "Production Budget": 550000, "Release Date": "May 09 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 5.6, "IMDB Votes": 26798}, {"Title": "Friday the 13th Part 3", "US Gross": 36690067, "Worldwide Gross": 36690067, "US DVD Sales": null, "Production Budget": 2250000, "Release Date": "Aug 13 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Steve Miner", "Rotten Tomatoes Rating": 14, "IMDB Rating": 5.5, "IMDB Votes": 13395}, {"Title": "Friday the 13th Part IV: The Final Chapter", "US Gross": 32980880, "Worldwide Gross": 32980880, "US DVD Sales": null, "Production Budget": 2600000, "Release Date": "Apr 13 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Friday the 13th Part V: A New Beginning", "US Gross": 21930418, "Worldwide Gross": 21930418, "US DVD Sales": null, "Production Budget": 2200000, "Release Date": "Mar 22 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Friday the 13th Part VI: Jason Lives", "US Gross": 19472057, "Worldwide Gross": 19472057, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 01 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Friday the 13th Part VII: The New Blood", "US Gross": 19170001, "Worldwide Gross": 19170001, "US DVD Sales": null, "Production Budget": 2800000, "Release Date": "May 13 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 8916}, {"Title": "Friday the 13th Part VIII: Jason Takes Manhattan", "US Gross": 14343976, "Worldwide Gross": 14343976, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jul 28 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.9, "IMDB Votes": 10113}, {"Title": "Jason Goes to Hell: The Final Friday", "US Gross": 15935068, "Worldwide Gross": 15935068, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 13 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.1, "IMDB Votes": 8733}, {"Title": "Per qualche dollaro in pi˘", "US Gross": 4300000, "Worldwide Gross": 4300000, "US DVD Sales": null, "Production Budget": 600000, "Release Date": "May 10 1967", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Sergio Leone", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.2, "IMDB Votes": 44204}, {"Title": "Per un pugno di dollari", "US Gross": 3500000, "Worldwide Gross": 3500000, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Jan 18 1967", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Remake", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Sergio Leone", "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 39929}, {"Title": "The Fall of the Roman Empire", "US Gross": 4750000, "Worldwide Gross": 4750000, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Jan 01 1964", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 6.6, "IMDB Votes": 3184}, {"Title": "Friday the 13th Part 2", "US Gross": 21722776, "Worldwide Gross": 21722776, "US DVD Sales": null, "Production Budget": 1250000, "Release Date": "Apr 30 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": "Steve Miner", "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.5, "IMDB Votes": 13395}, {"Title": "Faithful", "US Gross": 2104439, "Worldwide Gross": 2104439, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Apr 05 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Play", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Paul Mazursky", "Rotten Tomatoes Rating": 7, "IMDB Rating": 5.7, "IMDB Votes": 989}, {"Title": "Fair Game", "US Gross": 11497497, "Worldwide Gross": 11497497, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Nov 03 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 6.6, "IMDB Votes": 194}, {"Title": "A Few Good Men", "US Gross": 141340178, "Worldwide Gross": 236500000, "US DVD Sales": null, "Production Budget": 33000000, "Release Date": "Dec 11 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Rob Reiner", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.6, "IMDB Votes": 63541}, {"Title": "The Fugitive", "US Gross": 183875760, "Worldwide Gross": 368900000, "US DVD Sales": null, "Production Budget": 44000000, "Release Date": "Aug 06 1993", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Andrew Davis", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.8, "IMDB Votes": 96914}, {"Title": "From Here to Eternity", "US Gross": 30500000, "Worldwide Gross": 30500000, "US DVD Sales": null, "Production Budget": 1650000, "Release Date": "Aug 05 1953", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Fred Zinnemann", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.9, "IMDB Votes": 15115}, {"Title": "First Morning", "US Gross": 87264, "Worldwide Gross": 87264, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Jul 15 2005", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "Illuminare", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Shooting Fish", "US Gross": 302204, "Worldwide Gross": 302204, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "May 01 1998", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 4849}, {"Title": "F.I.S.T", "US Gross": 20388920, "Worldwide Gross": 20388920, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Apr 13 1978", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Norman Jewison", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 2737}, {"Title": "Flashdance", "US Gross": 90463574, "Worldwide Gross": 201463574, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Apr 15 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Adrian Lyne", "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.6, "IMDB Votes": 12485}, {"Title": "Fled", "US Gross": 17192205, "Worldwide Gross": 19892205, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jul 19 1996", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 4.9, "IMDB Votes": 4215}, {"Title": "Flash Gordon", "US Gross": 27107960, "Worldwide Gross": 27107960, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 05 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.2, "IMDB Votes": 14894}, {"Title": "The Flintstones", "US Gross": 130531208, "Worldwide Gross": 358500000, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "May 27 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Brian Levant", "Rotten Tomatoes Rating": 20, "IMDB Rating": 4.6, "IMDB Votes": 26521}, {"Title": "Flight of the Intruder", "US Gross": 14471440, "Worldwide Gross": 14471440, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Jan 18 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "John Milius", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.3, "IMDB Votes": 2592}, {"Title": "Flatliners", "US Gross": 61308153, "Worldwide Gross": 61308153, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Aug 10 1990", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.4, "IMDB Votes": 23295}, {"Title": "The Flower of Evil", "US Gross": 181798, "Worldwide Gross": 181798, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Oct 10 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Funny Ha Ha", "US Gross": 77070, "Worldwide Gross": 77070, "US DVD Sales": null, "Production Budget": 30000, "Release Date": "Apr 29 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Goodbye Cruel Releasing", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 1138}, {"Title": "The Funeral", "US Gross": 1212799, "Worldwide Gross": 1412799, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Nov 01 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "October Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Abel Ferrara", "Rotten Tomatoes Rating": 83, "IMDB Rating": 6.4, "IMDB Votes": 4084}, {"Title": "Fantasia", "US Gross": 83320000, "Worldwide Gross": 83320000, "US DVD Sales": null, "Production Budget": 2280000, "Release Date": "Nov 13 2040", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Compilation", "Major Genre": "Musical", "Creative Type": "Multiple Creative Types", "Director": null, "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.8, "IMDB Votes": 29914}, {"Title": "Fantasia 2000 (IMAX)", "US Gross": 60507228, "Worldwide Gross": 60507228, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jan 01 2000", "MPAA Rating": "G", "Running Time min": 75, "Distributor": "Walt Disney Pictures", "Source": "Compilation", "Major Genre": "Musical", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Fog", "US Gross": 21378361, "Worldwide Gross": 21378361, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Feb 01 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Avco Embassy", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": "John Carpenter", "Rotten Tomatoes Rating": 69, "IMDB Rating": 3.3, "IMDB Votes": 15760}, {"Title": "Forrest Gump", "US Gross": 329694499, "Worldwide Gross": 679400525, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jul 06 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 70, "IMDB Rating": 8.6, "IMDB Votes": 300455}, {"Title": "Fortress", "US Gross": 6730578, "Worldwide Gross": 46730578, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Sep 03 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 5.5, "IMDB Votes": 7026}, {"Title": "Fiddler on the Roof", "US Gross": 80500000, "Worldwide Gross": 80500000, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Jan 01 1971", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Norman Jewison", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.7, "IMDB Votes": 14260}, {"Title": "The Front Page", "US Gross": 15000000, "Worldwide Gross": 15000000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 17 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Billy Wilder", "Rotten Tomatoes Rating": 67, "IMDB Rating": 7.2, "IMDB Votes": 3875}, {"Title": "First Blood", "US Gross": 47212904, "Worldwide Gross": 125212904, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Oct 22 1982", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Ted Kotcheff", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 56369}, {"Title": "Friday", "US Gross": 27467564, "Worldwide Gross": 27936778, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Apr 26 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "F. Gary Gray", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7, "IMDB Votes": 21623}, {"Title": "Freeze Frame", "US Gross": 0, "Worldwide Gross": 91062, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 10 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "First Look", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 6.3, "IMDB Votes": 1723}, {"Title": "Firefox", "US Gross": 45785720, "Worldwide Gross": 45785720, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Jun 18 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.6, "IMDB Votes": 9348}, {"Title": "Fargo", "US Gross": 24567751, "Worldwide Gross": 51204567, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Mar 08 1996", "MPAA Rating": "R", "Running Time min": 87, "Distributor": "Gramercy", "Source": "Based on Real Life Events", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Joel Coen", "Rotten Tomatoes Rating": 94, "IMDB Rating": 8.3, "IMDB Votes": 165159}, {"Title": "First Knight", "US Gross": 37361412, "Worldwide Gross": 127361412, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jul 07 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Jerry Zucker", "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.6, "IMDB Votes": 20928}, {"Title": "From Russia With Love", "US Gross": 24800000, "Worldwide Gross": 78900000, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Apr 08 1964", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 32541}, {"Title": "The Firm", "US Gross": 158340892, "Worldwide Gross": 270340892, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Jun 30 1993", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Sydney Pollack", "Rotten Tomatoes Rating": 76, "IMDB Rating": 5.5, "IMDB Votes": 957}, {"Title": "Frenzy", "US Gross": 12600000, "Worldwide Gross": 12600000, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Jun 21 1972", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.5, "IMDB Votes": 13093}, {"Title": "Footloose", "US Gross": 80000000, "Worldwide Gross": 80000000, "US DVD Sales": null, "Production Budget": 8200000, "Release Date": "Feb 17 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": "Herbert Ross", "Rotten Tomatoes Rating": 56, "IMDB Rating": 6, "IMDB Votes": 15626}, {"Title": "Fast Times at Ridgemont High", "US Gross": 27092880, "Worldwide Gross": 27092880, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Aug 13 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Amy Heckerling", "Rotten Tomatoes Rating": 80, "IMDB Rating": 7.2, "IMDB Votes": 31362}, {"Title": "Fighting Tommy Riley", "US Gross": 10514, "Worldwide Gross": 10514, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "May 06 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Freestyle Releasing", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 499}, {"Title": "The First Wives Club", "US Gross": 105489203, "Worldwide Gross": 181489203, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 20 1996", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Hugh Wilson", "Rotten Tomatoes Rating": 41, "IMDB Rating": 5.6, "IMDB Votes": 14682}, {"Title": "Flirting with Disaster", "US Gross": 14853474, "Worldwide Gross": 14853474, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Mar 22 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "David O. Russell", "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.7, "IMDB Votes": 8474}, {"Title": "For Your Eyes Only", "US Gross": 54800000, "Worldwide Gross": 195300000, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Jun 26 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Glen", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.8, "IMDB Votes": 23527}, {"Title": "Fiza", "US Gross": 623791, "Worldwide Gross": 1179462, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 08 2000", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Video Sound", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 749}, {"Title": "Grip: A Criminal's Story", "US Gross": 1336, "Worldwide Gross": 1336, "US DVD Sales": null, "Production Budget": 12000, "Release Date": "Apr 28 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "JeTi Films", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Ghost and the Darkness", "US Gross": 38564422, "Worldwide Gross": 38564422, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Oct 11 1996", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Stephen Hopkins", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.6, "IMDB Votes": 19735}, {"Title": "Gallipoli", "US Gross": 5732587, "Worldwide Gross": 5732587, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 28 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Peter Weir", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.7, "IMDB Votes": 14139}, {"Title": "Gabriela", "US Gross": 2335352, "Worldwide Gross": 2335352, "US DVD Sales": null, "Production Budget": 50000, "Release Date": "Mar 16 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Power Point Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 1399}, {"Title": "Il buono, il brutto, il cattivo", "US Gross": 6100000, "Worldwide Gross": 6100000, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Dec 29 1967", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Sergio Leone", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 104}, {"Title": "Graduation Day", "US Gross": 23894000, "Worldwide Gross": 23894000, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "May 01 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3, "IMDB Votes": 836}, {"Title": "The Godfather: Part II", "US Gross": 57300000, "Worldwide Gross": 57300000, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Dec 11 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": null, "Creative Type": "Historical Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": null, "IMDB Rating": 9, "IMDB Votes": 245271}, {"Title": "The Godfather: Part III", "US Gross": 66520529, "Worldwide Gross": 66520529, "US DVD Sales": null, "Production Budget": 54000000, "Release Date": "Dec 25 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 82977}, {"Title": "Goodfellas", "US Gross": 46743809, "Worldwide Gross": 46743809, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Sep 19 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.8, "IMDB Votes": 229156}, {"Title": "The Godfather", "US Gross": 134966411, "Worldwide Gross": 268500000, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Mar 15 1972", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": null, "Creative Type": "Historical Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 100, "IMDB Rating": 9.2, "IMDB Votes": 411088}, {"Title": "God's Army", "US Gross": 2637726, "Worldwide Gross": 2652515, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Mar 10 2000", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Excel Entertainment", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.8, "IMDB Votes": 638}, {"Title": "The Great Escape", "US Gross": 11744471, "Worldwide Gross": 11744471, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Aug 08 1963", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Sturges", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.4, "IMDB Votes": 62074}, {"Title": "Gory Gory Hallelujah", "US Gross": 12604, "Worldwide Gross": 12604, "US DVD Sales": null, "Production Budget": 425000, "Release Date": "Jan 21 2005", "MPAA Rating": "Not Rated", "Running Time min": 100, "Distributor": "Indican Pictures", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": null, "Director": "Sue Corcoran", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 134}, {"Title": "Ghost", "US Gross": 217631306, "Worldwide Gross": 517600000, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Jul 13 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Jerry Zucker", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.9, "IMDB Votes": 51125}, {"Title": "Ghostbusters", "US Gross": 238632124, "Worldwide Gross": 291632124, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 08 1984", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Ivan Reitman", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 358}, {"Title": "Girl 6", "US Gross": 4880941, "Worldwide Gross": 4880941, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Mar 22 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 34, "IMDB Rating": 4.9, "IMDB Votes": 3348}, {"Title": "Goldeneye", "US Gross": 106429941, "Worldwide Gross": 356429941, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Nov 17 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Martin Campbell", "Rotten Tomatoes Rating": 80, "IMDB Rating": 7.2, "IMDB Votes": 69199}, {"Title": "The Glimmer Man", "US Gross": 20404841, "Worldwide Gross": 36404841, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Oct 04 1996", "MPAA Rating": "R", "Running Time min": 92, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.9, "IMDB Votes": 7230}, {"Title": "Glory", "US Gross": 26593580, "Worldwide Gross": 26593580, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Dec 14 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Edward Zwick", "Rotten Tomatoes Rating": 93, "IMDB Rating": 8, "IMDB Votes": 56427}, {"Title": "The Gambler", "US Gross": 51773, "Worldwide Gross": 101773, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 04 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 199}, {"Title": "Good Morning Vietnam", "US Gross": 123922370, "Worldwide Gross": 123922370, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Dec 23 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 32609}, {"Title": "Gandhi", "US Gross": 52767889, "Worldwide Gross": 52767889, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Dec 08 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Sir Richard Attenborough", "Rotten Tomatoes Rating": 85, "IMDB Rating": 8.2, "IMDB Votes": 50881}, {"Title": "A Guy Named Joe", "US Gross": 5363000, "Worldwide Gross": 5363000, "US DVD Sales": null, "Production Budget": 2627000, "Release Date": "Dec 24 2043", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 869}, {"Title": "Gentleman's Agreement", "US Gross": 7800000, "Worldwide Gross": 7800000, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 31 1946", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Elia Kazan", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.4, "IMDB Votes": 4637}, {"Title": "Goodbye Bafana", "US Gross": 0, "Worldwide Gross": 2717302, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 14 2007", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Bille August", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 3631}, {"Title": "Get on the Bus", "US Gross": 5691854, "Worldwide Gross": 5691854, "US DVD Sales": null, "Production Budget": 2400000, "Release Date": "Oct 16 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 87, "IMDB Rating": 6.7, "IMDB Votes": 2701}, {"Title": "The Golden Child", "US Gross": 79817937, "Worldwide Gross": 79817937, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 12 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Michael Ritchie", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.4, "IMDB Votes": 14471}, {"Title": "Good Dick", "US Gross": 28835, "Worldwide Gross": 28835, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Oct 10 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Present Pictures/Morning Knight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 3004}, {"Title": "Goldfinger", "US Gross": 51100000, "Worldwide Gross": 124900000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Dec 22 1964", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": "Guy Hamilton", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.9, "IMDB Votes": 47095}, {"Title": "Groundhog Day", "US Gross": 70906973, "Worldwide Gross": 70906973, "US DVD Sales": null, "Production Budget": 14600000, "Release Date": "Feb 12 1993", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Harold Ramis", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.2, "IMDB Votes": 134964}, {"Title": "Gremlins", "US Gross": 148168459, "Worldwide Gross": 148168459, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Jun 08 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Joe Dante", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7, "IMDB Votes": 42163}, {"Title": "Get Real", "US Gross": 1152411, "Worldwide Gross": 1152411, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Apr 30 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 6026}, {"Title": "Gremlins 2: The New Batch", "US Gross": 41476097, "Worldwide Gross": 41476097, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 15 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Joe Dante", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 22712}, {"Title": "The Greatest Story Ever Told", "US Gross": 15473333, "Worldwide Gross": 15473333, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Feb 15 1965", "MPAA Rating": "G", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": "David Lean", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.3, "IMDB Votes": 3300}, {"Title": "The Gospel of John", "US Gross": 4068087, "Worldwide Gross": 4068087, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Sep 26 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Greatest Show on Earth", "US Gross": 36000000, "Worldwide Gross": 36000000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jan 10 1952", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.8, "IMDB Votes": 4264}, {"Title": "The First Great Train Robbery", "US Gross": 391942, "Worldwide Gross": 391942, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Feb 02 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": "Michael Crichton", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 5141}, {"Title": "Get Shorty", "US Gross": 72021008, "Worldwide Gross": 115021008, "US DVD Sales": null, "Production Budget": 30250000, "Release Date": "Oct 20 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Barry Sonnenfeld", "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.9, "IMDB Votes": 33364}, {"Title": "Gettysburg", "US Gross": 10731997, "Worldwide Gross": 10731997, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Oct 08 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.6, "IMDB Votes": 11215}, {"Title": "Guiana 1838", "US Gross": 227241, "Worldwide Gross": 227241, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 24 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "RBC Radio", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Gone with the Wind", "US Gross": 198680470, "Worldwide Gross": 390525192, "US DVD Sales": null, "Production Budget": 3900000, "Release Date": "Dec 15 2039", "MPAA Rating": "G", "Running Time min": 222, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "George Cukor", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.2, "IMDB Votes": 78947}, {"Title": "Happiness", "US Gross": 2746453, "Worldwide Gross": 5746453, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Oct 16 1998", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Good Machine Releasing", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Todd Solondz", "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.5, "IMDB Votes": 64}, {"Title": "Harley Davidson and the Marlboro Man", "US Gross": 7018525, "Worldwide Gross": 7018525, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Aug 23 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Simon Wincer", "Rotten Tomatoes Rating": 27, "IMDB Rating": 5.3, "IMDB Votes": 6995}, {"Title": "Heavy Metal", "US Gross": 19571091, "Worldwide Gross": 19571091, "US DVD Sales": null, "Production Budget": 9300000, "Release Date": "Aug 07 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 6, "IMDB Votes": 45}, {"Title": "Hell's Angels", "US Gross": null, "Worldwide Gross": null, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 31 1929", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.9, "IMDB Votes": 2050}, {"Title": "Heartbeeps", "US Gross": 6000000, "Worldwide Gross": 6000000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 18 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.1, "IMDB Votes": 620}, {"Title": "The Helix... Loaded", "US Gross": 3700, "Worldwide Gross": 3700, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Mar 18 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Romar", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 1.5, "IMDB Votes": 486}, {"Title": "Hang 'em High", "US Gross": 6800000, "Worldwide Gross": 6800000, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Aug 03 1968", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 93, "IMDB Rating": 6.9, "IMDB Votes": 10292}, {"Title": "Hellraiser", "US Gross": 14564000, "Worldwide Gross": 14564000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 18 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "New World", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 7, "IMDB Votes": 22442}, {"Title": "Hero", "US Gross": 19487173, "Worldwide Gross": 66787173, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Oct 02 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Stephen Frears", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 323}, {"Title": "Highlander III: The Sorcerer", "US Gross": 13738574, "Worldwide Gross": 13738574, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Jan 27 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.8, "IMDB Votes": 7763}, {"Title": "Highlander", "US Gross": 5900000, "Worldwide Gross": 12900000, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Mar 07 1986", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Russell Mulcahy", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.2, "IMDB Votes": 40802}, {"Title": "How Green Was My Valley", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 1250000, "Release Date": "Oct 28 2041", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": null, "Creative Type": null, "Director": "John Ford", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.9, "IMDB Votes": 7420}, {"Title": "High Noon", "US Gross": 8000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 730000, "Release Date": "Dec 31 1951", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Fred Zinnemann", "Rotten Tomatoes Rating": 95, "IMDB Rating": 8.3, "IMDB Votes": 34163}, {"Title": "History of the World: Part I", "US Gross": 31672000, "Worldwide Gross": 31672000, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Jun 12 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Mel Brooks", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 16691}, {"Title": "Hello, Dolly", "US Gross": 33208099, "Worldwide Gross": 33208099, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Dec 16 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.4, "IMDB Votes": 254}, {"Title": "Halloween II", "US Gross": 25533818, "Worldwide Gross": 25533818, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Oct 30 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Rick Rosenthal", "Rotten Tomatoes Rating": 27, "IMDB Rating": 4.9, "IMDB Votes": 12197}, {"Title": "Halloween 3: Season of the Witch", "US Gross": 14400000, "Worldwide Gross": 14400000, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Oct 22 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.8, "IMDB Votes": 12644}, {"Title": "Halloween 4: The Return of Michael Myers", "US Gross": 17768757, "Worldwide Gross": 17768757, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Oct 01 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Dwight H. Little", "Rotten Tomatoes Rating": 23, "IMDB Rating": 5.6, "IMDB Votes": 11079}, {"Title": "Halloween 5: The Revenge of Michael Myers", "US Gross": 11642254, "Worldwide Gross": 11642254, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Oct 13 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Galaxy International Releasing", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Halloween: The Curse of Michael Myers", "US Gross": 15126948, "Worldwide Gross": 15126948, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Sep 29 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.4, "IMDB Votes": 8576}, {"Title": "Halloween", "US Gross": 47000000, "Worldwide Gross": 70000000, "US DVD Sales": null, "Production Budget": 325000, "Release Date": "Oct 17 1978", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": "John Carpenter", "Rotten Tomatoes Rating": 93, "IMDB Rating": 6, "IMDB Votes": 39866}, {"Title": "Home Alone 2: Lost in New York", "US Gross": 173585516, "Worldwide Gross": 358994850, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Nov 20 1992", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Chris Columbus", "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.8, "IMDB Votes": 51408}, {"Title": "Home Alone", "US Gross": 285761243, "Worldwide Gross": 476684675, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Nov 16 1990", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Chris Columbus", "Rotten Tomatoes Rating": 47, "IMDB Rating": 7, "IMDB Votes": 79080}, {"Title": "Home Movies", "US Gross": 89134, "Worldwide Gross": 89134, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "May 16 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.3, "IMDB Votes": 291}, {"Title": "Hum to Mohabbt Karega", "US Gross": 121807, "Worldwide Gross": 121807, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "May 26 2000", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.6, "IMDB Votes": 74}, {"Title": "The Hotel New Hampshire", "US Gross": 5142858, "Worldwide Gross": 5142858, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Mar 09 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 5.8, "IMDB Votes": 4387}, {"Title": "Henry V", "US Gross": 10161099, "Worldwide Gross": 10161099, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Nov 08 1989", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Goldwyn Entertainment", "Source": "Based on Play", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Kenneth Branagh", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.9, "IMDB Votes": 14499}, {"Title": "Housefull", "US Gross": 1183658, "Worldwide Gross": 14883658, "US DVD Sales": null, "Production Budget": 10100000, "Release Date": "Apr 30 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": "Eros Entertainment", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 687}, {"Title": "Hook", "US Gross": 119654823, "Worldwide Gross": 300854823, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Dec 11 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 24, "IMDB Rating": 6.2, "IMDB Votes": 60159}, {"Title": "House Party 2", "US Gross": 19438638, "Worldwide Gross": 19438638, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Oct 23 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 25, "IMDB Rating": 4.3, "IMDB Votes": 1596}, {"Title": "Hocus Pocus", "US Gross": 39360491, "Worldwide Gross": 39360491, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Jul 16 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 6, "IMDB Votes": 15893}, {"Title": "The Howling", "US Gross": 17985000, "Worldwide Gross": 17985000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Apr 10 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Joe Dante", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.5, "IMDB Votes": 8731}, {"Title": "High Plains Drifter", "US Gross": 15700000, "Worldwide Gross": 15700000, "US DVD Sales": null, "Production Budget": 15700000, "Release Date": "Jan 01 1972", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 15718}, {"Title": "Hoop Dreams", "US Gross": 7768371, "Worldwide Gross": 11768371, "US DVD Sales": null, "Production Budget": 700000, "Release Date": "Oct 14 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 98, "IMDB Rating": 8, "IMDB Votes": 9492}, {"Title": "Happy Gilmore", "US Gross": 38623460, "Worldwide Gross": 38623460, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 16 1996", "MPAA Rating": "PG-13", "Running Time min": 92, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Dennis Dugan", "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.9, "IMDB Votes": 54111}, {"Title": "The Hudsucker Proxy", "US Gross": 2816518, "Worldwide Gross": 14938149, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Mar 11 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Joel Coen", "Rotten Tomatoes Rating": 58, "IMDB Rating": 7.4, "IMDB Votes": 32344}, {"Title": "A Hard Day's Night", "US Gross": 12299668, "Worldwide Gross": 12299668, "US DVD Sales": null, "Production Budget": 560000, "Release Date": "Aug 11 1964", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.6, "IMDB Votes": 15291}, {"Title": "Heroes", "US Gross": 655538, "Worldwide Gross": 655538, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "Oct 24 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Eros Entertainment", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 505}, {"Title": "The Hunt for Red October", "US Gross": 120709866, "Worldwide Gross": 200500000, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Mar 02 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "John McTiernan", "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.6, "IMDB Votes": 55202}, {"Title": "Harper", "US Gross": 12000000, "Worldwide Gross": 12000000, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Feb 23 1966", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 2395}, {"Title": "Harriet the Spy", "US Gross": 26570048, "Worldwide Gross": 26570048, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Jul 10 1996", "MPAA Rating": "PG", "Running Time min": 101, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.8, "IMDB Votes": 2963}, {"Title": "Le hussard sur le toit", "US Gross": 1320043, "Worldwide Gross": 1320043, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Apr 19 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 3083}, {"Title": "The Hustler", "US Gross": 7600000, "Worldwide Gross": 7600000, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Sep 25 1961", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.1, "IMDB Votes": 25385}, {"Title": "Hud", "US Gross": 10000000, "Worldwide Gross": 10000000, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "May 29 1963", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Martin Ritt", "Rotten Tomatoes Rating": 79, "IMDB Rating": 3.4, "IMDB Votes": 93}, {"Title": "Hudson Hawk", "US Gross": 17218916, "Worldwide Gross": 17218916, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "May 24 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Michael Lehmann", "Rotten Tomatoes Rating": 20, "IMDB Rating": 5.3, "IMDB Votes": 21920}, {"Title": "Heaven's Gate", "US Gross": 3484331, "Worldwide Gross": 3484331, "US DVD Sales": null, "Production Budget": 44000000, "Release Date": "Nov 19 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Michael Cimino", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 4649}, {"Title": "Hav Plenty", "US Gross": 2301777, "Worldwide Gross": 2301777, "US DVD Sales": null, "Production Budget": 650000, "Release Date": "Jun 19 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 580}, {"Title": "House of Wax", "US Gross": 23800000, "Worldwide Gross": 23800000, "US DVD Sales": null, "Production Budget": 658000, "Release Date": "Apr 10 1953", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 5.4, "IMDB Votes": 32159}, {"Title": "Hawaii", "US Gross": 34562222, "Worldwide Gross": 34562222, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 10 1966", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "George Roy Hill", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 1153}, {"Title": "Howard the Duck", "US Gross": 16295774, "Worldwide Gross": 16295774, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 01 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 4.1, "IMDB Votes": 16051}, {"Title": "High Anxiety", "US Gross": 31063038, "Worldwide Gross": 31063038, "US DVD Sales": null, "Production Budget": 3400000, "Release Date": "Dec 23 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Mel Brooks", "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.5, "IMDB Votes": 7025}, {"Title": "Hybrid", "US Gross": 162605, "Worldwide Gross": 162605, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "May 10 2002", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Indican Pictures", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.2, "IMDB Votes": 380}, {"Title": "It's a Wonderful Life", "US Gross": 6600000, "Worldwide Gross": 6600000, "US DVD Sales": 19339789, "Production Budget": 3180000, "Release Date": "Dec 31 1945", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Frank Capra", "Rotten Tomatoes Rating": 94, "IMDB Rating": 8.7, "IMDB Votes": 101499}, {"Title": "The Ice Pirates", "US Gross": 13075390, "Worldwide Gross": 13075390, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Mar 16 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM/UA Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.1, "IMDB Votes": 3600}, {"Title": "Independence Day", "US Gross": 306169255, "Worldwide Gross": 817400878, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jul 02 1996", "MPAA Rating": "PG-13", "Running Time min": 145, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Roland Emmerich", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.5, "IMDB Votes": 149493}, {"Title": "The Island of Dr. Moreau", "US Gross": 27682712, "Worldwide Gross": 27682712, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 23 1996", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "John Frankenheimer", "Rotten Tomatoes Rating": 23, "IMDB Rating": 4.1, "IMDB Votes": 13770}, {"Title": "Iraq for Sale: The War Profiteers", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 775000, "Release Date": "Sep 08 2006", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.8, "IMDB Votes": 854}, {"Title": "In Her Line of Fire", "US Gross": 884, "Worldwide Gross": 884, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Apr 21 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Regent Releasing", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.5, "IMDB Votes": 337}, {"Title": "The Indian in the Cupboard", "US Gross": 35627222, "Worldwide Gross": 35627222, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jul 14 1995", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Frank Oz", "Rotten Tomatoes Rating": 68, "IMDB Rating": 5.7, "IMDB Votes": 4836}, {"Title": "I Love You Ö Don't Touch Me!", "US Gross": 33598, "Worldwide Gross": 33598, "US DVD Sales": null, "Production Budget": 68000, "Release Date": "Feb 20 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 298}, {"Title": "Illuminata", "US Gross": 836641, "Worldwide Gross": 836641, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 06 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 1100}, {"Title": "In Cold Blood", "US Gross": 13000000, "Worldwide Gross": 13000000, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Dec 31 1966", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Richard Brooks", "Rotten Tomatoes Rating": 88, "IMDB Rating": 8.1, "IMDB Votes": 10562}, {"Title": "In the Company of Men", "US Gross": 2883661, "Worldwide Gross": 2883661, "US DVD Sales": null, "Production Budget": 25000, "Release Date": "Aug 01 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Neil LaBute", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.2, "IMDB Votes": 7601}, {"Title": "The Inkwell", "US Gross": 8864699, "Worldwide Gross": 8864699, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Apr 22 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.7, "IMDB Votes": 542}, {"Title": "Invaders from Mars", "US Gross": 4884663, "Worldwide Gross": 4984663, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jun 06 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Cannon", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Tobe Hooper", "Rotten Tomatoes Rating": 27, "IMDB Rating": 5, "IMDB Votes": 1933}, {"Title": "L'incomparable mademoiselle C.", "US Gross": 493905, "Worldwide Gross": 493905, "US DVD Sales": null, "Production Budget": 3400000, "Release Date": "Apr 23 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 66}, {"Title": "Intolerance", "US Gross": null, "Worldwide Gross": null, "US DVD Sales": null, "Production Budget": 385907, "Release Date": "Sep 05 2016", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 96, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Island", "US Gross": 15716828, "Worldwide Gross": 15716828, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Jun 13 1980", "MPAA Rating": "PG-13", "Running Time min": 138, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Michael Ritchie", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 82601}, {"Title": "Eye See You", "US Gross": 79161, "Worldwide Gross": 1807990, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Sep 20 2002", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 397}, {"Title": "In the Heat of the Night", "US Gross": 24379978, "Worldwide Gross": 24379978, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Aug 02 1967", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Norman Jewison", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.1, "IMDB Votes": 22429}, {"Title": "Jack", "US Gross": 58617334, "Worldwide Gross": 58617334, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Aug 09 1996", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.3, "IMDB Votes": 17267}, {"Title": "Jade", "US Gross": 9812870, "Worldwide Gross": 9812870, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Oct 13 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "William Friedkin", "Rotten Tomatoes Rating": 16, "IMDB Rating": 4.8, "IMDB Votes": 5279}, {"Title": "Jingle All the Way", "US Gross": 60592389, "Worldwide Gross": 129832389, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Nov 22 1996", "MPAA Rating": "PG", "Running Time min": 89, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Brian Levant", "Rotten Tomatoes Rating": 16, "IMDB Rating": 4.9, "IMDB Votes": 22928}, {"Title": "Dr. No", "US Gross": 16067035, "Worldwide Gross": 59567035, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "May 08 1963", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 36019}, {"Title": "The Jungle Book", "US Gross": 44342956, "Worldwide Gross": 44342956, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Dec 25 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Stephen Sommers", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 5564}, {"Title": "Judge Dredd", "US Gross": 34687912, "Worldwide Gross": 113487912, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Jun 30 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.9, "IMDB Votes": 30736}, {"Title": "The Jerky Boys", "US Gross": 7555256, "Worldwide Gross": 7555256, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Feb 03 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 3.9, "IMDB Votes": 1481}, {"Title": "Jefferson in Paris", "US Gross": 2461628, "Worldwide Gross": 2461628, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Mar 31 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "James Ivory", "Rotten Tomatoes Rating": 36, "IMDB Rating": 5.6, "IMDB Votes": 1464}, {"Title": "JFK", "US Gross": 70405498, "Worldwide Gross": 205400000, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Dec 20 1991", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 83, "IMDB Rating": 8, "IMDB Votes": 59684}, {"Title": "Journey from the Fall", "US Gross": 635305, "Worldwide Gross": 635305, "US DVD Sales": null, "Production Budget": 1300000, "Release Date": "Mar 23 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Imaginasian", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.2, "IMDB Votes": 586}, {"Title": "Jekyll and Hyde... Together Again", "US Gross": 3707583, "Worldwide Gross": 3707583, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Aug 27 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 486}, {"Title": "Jumanji", "US Gross": 100458310, "Worldwide Gross": 262758310, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Dec 15 1995", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Joe Johnston", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.4, "IMDB Votes": 54973}, {"Title": "The Juror", "US Gross": 22730924, "Worldwide Gross": 22730924, "US DVD Sales": null, "Production Budget": 44000000, "Release Date": "Feb 02 1996", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 5.3, "IMDB Votes": 6482}, {"Title": "Jerusalema", "US Gross": 7294, "Worldwide Gross": 7294, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jun 11 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Anchor Bay Entertainment", "Source": "Original Screenplay", "Major Genre": null, "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.9, "IMDB Votes": 6777}, {"Title": "Jurassic Park", "US Gross": 357067947, "Worldwide Gross": 923067947, "US DVD Sales": null, "Production Budget": 63000000, "Release Date": "Jun 10 1993", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.9, "IMDB Votes": 151365}, {"Title": "Johnny Suede", "US Gross": 55000, "Worldwide Gross": 55000, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Dec 31 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 1587}, {"Title": "Jaws", "US Gross": 260000000, "Worldwide Gross": 470700000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jun 20 1975", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.3, "IMDB Votes": 138017}, {"Title": "Jaws 2", "US Gross": 102922376, "Worldwide Gross": 208900376, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jun 16 1978", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 56, "IMDB Rating": 5.6, "IMDB Votes": 18793}, {"Title": "Jaws 4: The Revenge", "US Gross": 15728335, "Worldwide Gross": 15728335, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Jul 17 1987", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.6, "IMDB Votes": 15632}, {"Title": "Kabhi Alvida Naa Kehna", "US Gross": 3275443, "Worldwide Gross": 32575443, "US DVD Sales": null, "Production Budget": 10750000, "Release Date": "Aug 11 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Yash Raj Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 5.6, "IMDB Votes": 4128}, {"Title": "Kickboxer", "US Gross": 14533681, "Worldwide Gross": 14533681, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Sep 08 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Cannon", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Mark DiSalle", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 11692}, {"Title": "Kids", "US Gross": 7412216, "Worldwide Gross": 20412216, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Jul 21 1995", "MPAA Rating": "Not Rated", "Running Time min": 90, "Distributor": "Shining Excalibur", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.7, "IMDB Votes": 26122}, {"Title": "Kingpin", "US Gross": 25023424, "Worldwide Gross": 32223424, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jul 26 1996", "MPAA Rating": "R", "Running Time min": 113, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Bobby Farrelly", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.7, "IMDB Votes": 28404}, {"Title": "Kindergarten Cop", "US Gross": 91457688, "Worldwide Gross": 202000000, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Dec 21 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ivan Reitman", "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.8, "IMDB Votes": 40433}, {"Title": "King Kong (1933)", "US Gross": 10000000, "Worldwide Gross": 10000000, "US DVD Sales": null, "Production Budget": 670000, "Release Date": "Apr 07 2033", "MPAA Rating": null, "Running Time min": 100, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "King Kong", "US Gross": 52614445, "Worldwide Gross": 90614445, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Dec 17 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Guillermin", "Rotten Tomatoes Rating": 46, "IMDB Rating": 7.6, "IMDB Votes": 132720}, {"Title": "Kiss of Death", "US Gross": 14942422, "Worldwide Gross": 14942422, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Apr 21 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Barbet Schroeder", "Rotten Tomatoes Rating": 67, "IMDB Rating": 7.6, "IMDB Votes": 2374}, {"Title": "The Kings of Appletown", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Dec 12 2008", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Koltchak", "US Gross": 0, "Worldwide Gross": 38585047, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 10 2008", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Kingdom of the Spiders", "US Gross": 17000000, "Worldwide Gross": 17000000, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Dec 31 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 5.7, "IMDB Votes": 1463}, {"Title": "Keeping it Real: The Adventures of Greg Walloch", "US Gross": 1358, "Worldwide Gross": 1358, "US DVD Sales": null, "Production Budget": 100000, "Release Date": "Nov 09 2001", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Avatar", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Akira", "US Gross": 19585, "Worldwide Gross": 19585, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Apr 27 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.9, "IMDB Votes": 39948}, {"Title": "Krush Groove", "US Gross": 11052713, "Worldwide Gross": 11052713, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Oct 25 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 588}, {"Title": "Krrish", "US Gross": 1430721, "Worldwide Gross": 32430721, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jun 23 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "AdLab Films", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 6.1, "IMDB Votes": 2735}, {"Title": "Kansas City", "US Gross": 1353824, "Worldwide Gross": 1353824, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Aug 16 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Robert Altman", "Rotten Tomatoes Rating": 58, "IMDB Rating": 6, "IMDB Votes": 2397}, {"Title": "The Last Emperor", "US Gross": 43984000, "Worldwide Gross": 43984000, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Nov 20 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Bernardo Bertolucci", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.9, "IMDB Votes": 24262}, {"Title": "Last Action Hero", "US Gross": 50016394, "Worldwide Gross": 137298489, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Jun 18 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "John McTiernan", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.9, "IMDB Votes": 43171}, {"Title": "Live and Let Die", "US Gross": 35400000, "Worldwide Gross": 161800000, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jun 27 1973", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": "Guy Hamilton", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.8, "IMDB Votes": 24044}, {"Title": "Lage Raho Munnabhai", "US Gross": 2217561, "Worldwide Gross": 31517561, "US DVD Sales": null, "Production Budget": 2700000, "Release Date": "Sep 01 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Eros Entertainment", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 5236}, {"Title": "The Last Waltz", "US Gross": 321952, "Worldwide Gross": 321952, "US DVD Sales": null, "Production Budget": 35000, "Release Date": "Apr 05 2002", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 6893}, {"Title": "The Last Big Thing", "US Gross": 22434, "Worldwide Gross": 22434, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 25 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Stratosphere Entertainment", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 139}, {"Title": "The Land Before Time", "US Gross": 48092846, "Worldwide Gross": 81972846, "US DVD Sales": null, "Production Budget": 12300000, "Release Date": "Nov 18 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Don Bluth", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.9, "IMDB Votes": 14017}, {"Title": "The Longest Day", "US Gross": 39100000, "Worldwide Gross": 50100000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 04 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Real Life Events", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.8, "IMDB Votes": 17712}, {"Title": "The Living Daylights", "US Gross": 51185000, "Worldwide Gross": 191200000, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 31 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Glen", "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.7, "IMDB Votes": 23735}, {"Title": "Aladdin", "US Gross": 217350219, "Worldwide Gross": 504050219, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Nov 11 1992", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 69090}, {"Title": "A Low Down Dirty Shame", "US Gross": 29317886, "Worldwide Gross": 29317886, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Nov 23 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Keenen Ivory Wayans", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 1847}, {"Title": "Love and Death on Long Island", "US Gross": 2542264, "Worldwide Gross": 2542264, "US DVD Sales": null, "Production Budget": 4030000, "Release Date": "Mar 06 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 2506}, {"Title": "Ladyhawke", "US Gross": 18400000, "Worldwide Gross": 18400000, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Apr 12 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Richard Donner", "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.7, "IMDB Votes": 15260}, {"Title": "Nikita", "US Gross": 5017971, "Worldwide Gross": 5017971, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Mar 08 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Goldwyn Entertainment", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Luc Besson", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 24872}, {"Title": "Lion of the Desert", "US Gross": 1500000, "Worldwide Gross": 1500000, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 31 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Film Distribution Co.", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 2659}, {"Title": "Legal Eagles", "US Gross": 49851591, "Worldwide Gross": 49851591, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jun 18 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ivan Reitman", "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.6, "IMDB Votes": 4471}, {"Title": "Legend", "US Gross": 15502112, "Worldwide Gross": 15502112, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 18 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Ridley Scott", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 20734}, {"Title": "The Last House on the Left", "US Gross": 3100000, "Worldwide Gross": 3100000, "US DVD Sales": null, "Production Budget": 87000, "Release Date": "Aug 30 1972", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.7, "IMDB Votes": 22141}, {"Title": "Lifeforce", "US Gross": 11603545, "Worldwide Gross": 11603545, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jun 21 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/TriStar", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Tobe Hooper", "Rotten Tomatoes Rating": 57, "IMDB Rating": 5.8, "IMDB Votes": 5727}, {"Title": "Lady in White", "US Gross": 1705139, "Worldwide Gross": 1705139, "US DVD Sales": null, "Production Budget": 4700000, "Release Date": "Apr 22 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Century Vista Film Company", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.6, "IMDB Votes": 2221}, {"Title": "The Long Kiss Goodnight", "US Gross": 33447612, "Worldwide Gross": 33447612, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Oct 11 1996", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.6, "IMDB Votes": 28257}, {"Title": "Lake of Fire", "US Gross": 25317, "Worldwide Gross": 25317, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Oct 03 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8.4, "IMDB Votes": 1027}, {"Title": "Elling", "US Gross": 313436, "Worldwide Gross": 313436, "US DVD Sales": null, "Production Budget": 2100000, "Release Date": "May 29 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 7114}, {"Title": "Lolita (1962)", "US Gross": 9250000, "Worldwide Gross": 9250000, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jan 01 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": "Stanley Kubrick", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Elmer Gantry", "US Gross": 10400000, "Worldwide Gross": 10400000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Dec 31 1959", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Richard Brooks", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.8, "IMDB Votes": 4185}, {"Title": "El Mariachi", "US Gross": 2040920, "Worldwide Gross": 2040920, "US DVD Sales": null, "Production Budget": 7000, "Release Date": "Feb 26 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": null, "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 19668}, {"Title": "Last Man Standing", "US Gross": 18115927, "Worldwide Gross": 18115927, "US DVD Sales": null, "Production Budget": 67000000, "Release Date": "Sep 20 1996", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Walter Hill", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Aliens", "US Gross": 85160248, "Worldwide Gross": 183316455, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Jul 18 1986", "MPAA Rating": "R", "Running Time min": 137, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "James Cameron", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.5, "IMDB Votes": 84}, {"Title": "Alien³", "US Gross": 54927174, "Worldwide Gross": 158500000, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "May 22 1992", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "David Fincher", "Rotten Tomatoes Rating": 37, "IMDB Rating": 6.3, "IMDB Votes": 78860}, {"Title": "The Lion King", "US Gross": 328539505, "Worldwide Gross": 783839505, "US DVD Sales": null, "Production Budget": 79300000, "Release Date": "Jun 15 1994", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Rob Minkoff", "Rotten Tomatoes Rating": 92, "IMDB Rating": 8.2, "IMDB Votes": 136503}, {"Title": "Love and Death", "US Gross": 20123742, "Worldwide Gross": 20123742, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Jun 10 1975", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Woody Allen", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.6, "IMDB Votes": 12111}, {"Title": "Love and Other Catastrophes", "US Gross": 212285, "Worldwide Gross": 743216, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Mar 28 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 1406}, {"Title": "Love Letters", "US Gross": 5269990, "Worldwide Gross": 5269990, "US DVD Sales": null, "Production Budget": 550000, "Release Date": "Apr 27 1984", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New World", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 477}, {"Title": "The Legend of the Lone Ranger", "US Gross": 13400000, "Worldwide Gross": 13400000, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "May 22 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 755}, {"Title": "The Last of the Mohicans", "US Gross": 72455275, "Worldwide Gross": 72455275, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Sep 25 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Michael Mann", "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.8, "IMDB Votes": 45410}, {"Title": "Love Me Tender", "US Gross": 9000000, "Worldwide Gross": 9000000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Dec 31 1955", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.9, "IMDB Votes": 1301}, {"Title": "The Long Riders", "US Gross": 15198912, "Worldwide Gross": 15198912, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "May 16 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Walter Hill", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.1, "IMDB Votes": 3791}, {"Title": "Losin' It", "US Gross": 1246141, "Worldwide Gross": 1246141, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Apr 08 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 1668}, {"Title": "The Loss of Sexual Innocence", "US Gross": 399793, "Worldwide Gross": 399793, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "May 28 1999", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Mike Figgis", "Rotten Tomatoes Rating": 45, "IMDB Rating": 4.9, "IMDB Votes": 2263}, {"Title": "Legends of the Fall", "US Gross": 66502573, "Worldwide Gross": 66502573, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 23 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Edward Zwick", "Rotten Tomatoes Rating": 63, "IMDB Rating": 7.1, "IMDB Votes": 39815}, {"Title": "A League of Their Own", "US Gross": 107533925, "Worldwide Gross": 132440066, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 01 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Penny Marshall", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.9, "IMDB Votes": 33426}, {"Title": "Loaded Weapon 1", "US Gross": 27979399, "Worldwide Gross": 27979399, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Feb 05 1993", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 17637}, {"Title": "The Lost Weekend", "US Gross": 11000000, "Worldwide Gross": 11000000, "US DVD Sales": null, "Production Budget": 1250000, "Release Date": "Dec 31 1944", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Billy Wilder", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.2, "IMDB Votes": 11864}, {"Title": "Le petit Nicolas", "US Gross": 201857, "Worldwide Gross": 52339566, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Feb 19 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 1505}, {"Title": "Logan's Run", "US Gross": 25000000, "Worldwide Gross": 25000000, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Dec 31 1975", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.7, "IMDB Votes": 14947}, {"Title": "Betty Fisher et autres histoires", "US Gross": 206400, "Worldwide Gross": 206400, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Sep 13 2002", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "WellSpring", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 1054}, {"Title": "Light Sleeper", "US Gross": 1050861, "Worldwide Gross": 1050861, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Sep 21 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 6.7, "IMDB Votes": 1986}, {"Title": "Little Shop of Horrors", "US Gross": 38747385, "Worldwide Gross": 38747385, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 19 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Musical", "Creative Type": "Fantasy", "Director": "Frank Oz", "Rotten Tomatoes Rating": 91, "IMDB Rating": 6.6, "IMDB Votes": 21521}, {"Title": "Lone Star", "US Gross": 12961389, "Worldwide Gross": 12961389, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jun 21 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Sayles", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.6, "IMDB Votes": 14599}, {"Title": "Latter Days", "US Gross": 833118, "Worldwide Gross": 833118, "US DVD Sales": null, "Production Budget": 850000, "Release Date": "Jan 30 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "TLA Releasing", "Source": null, "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 7157}, {"Title": "Lethal Weapon", "US Gross": 65192350, "Worldwide Gross": 120192350, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Mar 06 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Richard Donner", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.6, "IMDB Votes": 54994}, {"Title": "Lethal Weapon 3", "US Gross": 144731527, "Worldwide Gross": 319700000, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "May 15 1992", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Richard Donner", "Rotten Tomatoes Rating": 56, "IMDB Rating": 6.5, "IMDB Votes": 39735}, {"Title": "The Last Time I Committed Suicide", "US Gross": 12836, "Worldwide Gross": 12836, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jun 20 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Roxie Releasing", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 1181}, {"Title": "Little Voice", "US Gross": 4595000, "Worldwide Gross": 4595000, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Dec 04 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 6.9, "IMDB Votes": 8453}, {"Title": "The Last Temptation of Christ", "US Gross": 8373585, "Worldwide Gross": 8373585, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Aug 12 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.5, "IMDB Votes": 20934}, {"Title": "License to Kill", "US Gross": 34667015, "Worldwide Gross": 156167015, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Jul 14 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Glen", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 24558}, {"Title": "Cama adentro", "US Gross": 200433, "Worldwide Gross": 200433, "US DVD Sales": null, "Production Budget": 800000, "Release Date": "Jul 18 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Film Sales Company", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 466}, {"Title": "Leaving Las Vegas", "US Gross": 31983777, "Worldwide Gross": 49800000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Oct 27 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Mike Figgis", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.6, "IMDB Votes": 42131}, {"Title": "The Lawnmower Man", "US Gross": 32100816, "Worldwide Gross": 32100816, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Mar 06 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 5.1, "IMDB Votes": 12607}, {"Title": "Lone Wolf McQuade", "US Gross": 12232628, "Worldwide Gross": 12232628, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Apr 15 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 2917}, {"Title": "Little Women", "US Gross": 50003303, "Worldwide Gross": 50003303, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 21 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.1, "IMDB Votes": 16514}, {"Title": "Lawrence of Arabia", "US Gross": 37495385, "Worldwide Gross": 69995385, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 16 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Dramatization", "Director": "David Lean", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.6, "IMDB Votes": 79421}, {"Title": "Menace II Society", "US Gross": 27731527, "Worldwide Gross": 27731527, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "May 26 1993", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Albert Hughes", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.4, "IMDB Votes": 14807}, {"Title": "Much Ado About Nothing", "US Gross": 22549338, "Worldwide Gross": 22549338, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "May 07 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Goldwyn Entertainment", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Kenneth Branagh", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.4, "IMDB Votes": 22470}, {"Title": "Major Dundee", "US Gross": 14873, "Worldwide Gross": 14873, "US DVD Sales": null, "Production Budget": 3800000, "Release Date": "Apr 07 1965", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 97, "IMDB Rating": 6.7, "IMDB Votes": 2588}, {"Title": "The Magic Flute", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Dec 31 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": "Here Films", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Kenneth Branagh", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 499}, {"Title": "Mata Hari", "US Gross": 900000, "Worldwide Gross": 900000, "US DVD Sales": null, "Production Budget": 558000, "Release Date": "Dec 31 1930", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.2, "IMDB Votes": 376}, {"Title": "Malcolm X", "US Gross": 48169910, "Worldwide Gross": 48169910, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 18 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Spike Lee", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.7, "IMDB Votes": 23062}, {"Title": "Maniac", "US Gross": 10000000, "Worldwide Gross": 10000000, "US DVD Sales": null, "Production Budget": 350000, "Release Date": "Dec 31 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 3281}, {"Title": "Mary Poppins", "US Gross": 102300000, "Worldwide Gross": 102300000, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Aug 26 1964", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Musical", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.7, "IMDB Votes": 34302}, {"Title": "Mary Reilly", "US Gross": 5707094, "Worldwide Gross": 6370115, "US DVD Sales": null, "Production Budget": 47000000, "Release Date": "Feb 23 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Stephen Frears", "Rotten Tomatoes Rating": 27, "IMDB Rating": 5.5, "IMDB Votes": 6864}, {"Title": "Maximum Risk", "US Gross": 14102929, "Worldwide Gross": 51702929, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Sep 13 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 4.9, "IMDB Votes": 7064}, {"Title": "M*A*S*H", "US Gross": 81600000, "Worldwide Gross": 81600000, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Jan 01 1970", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Robert Altman", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.6, "IMDB Votes": 8043}, {"Title": "The Mask", "US Gross": 119920129, "Worldwide Gross": 343900000, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jul 29 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Chuck Russell", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.6, "IMDB Votes": 72981}, {"Title": "Mars Attacks!", "US Gross": 37771017, "Worldwide Gross": 101371017, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Dec 13 1996", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Tim Burton", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.3, "IMDB Votes": 76396}, {"Title": "Mo' Better Blues", "US Gross": 16153000, "Worldwide Gross": 16153000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 03 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 72, "IMDB Rating": 6.3, "IMDB Votes": 4210}, {"Title": "Moby Dick", "US Gross": 10400000, "Worldwide Gross": 10400000, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Dec 31 1955", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "John Huston", "Rotten Tomatoes Rating": 67, "IMDB Rating": 7.4, "IMDB Votes": 5969}, {"Title": "My Beautiful Laundrette", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "Apr 01 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Classics", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Stephen Frears", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 5381}, {"Title": "Michael Jordan to the MAX", "US Gross": 18642318, "Worldwide Gross": 18642318, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "May 05 2000", "MPAA Rating": "Not Rated", "Running Time min": 46, "Distributor": "Giant Screen Films", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": 7.2, "IMDB Votes": 746}, {"Title": "Michael Collins", "US Gross": 11092559, "Worldwide Gross": 27572844, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Oct 11 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Neil Jordan", "Rotten Tomatoes Rating": 77, "IMDB Rating": 6.9, "IMDB Votes": 11805}, {"Title": "My Cousin Vinny", "US Gross": 52929168, "Worldwide Gross": 52929168, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Mar 13 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.3, "IMDB Votes": 30524}, {"Title": "Medicine Man", "US Gross": 44948240, "Worldwide Gross": 44948240, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Feb 07 1992", "MPAA Rating": null, "Running Time min": 87, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John McTiernan", "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.7, "IMDB Votes": 9307}, {"Title": "Madadayo", "US Gross": 48856, "Worldwide Gross": 48856, "US DVD Sales": null, "Production Budget": 11900000, "Release Date": "Mar 20 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": "WinStar Cinema", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Akira Kurosawa", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 1748}, {"Title": "Modern Problems", "US Gross": 24474312, "Worldwide Gross": 24474312, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Dec 25 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.5, "IMDB Votes": 2144}, {"Title": "Amadeus", "US Gross": 51973029, "Worldwide Gross": 51973029, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Sep 19 1984", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Milos Forman", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.4, "IMDB Votes": 96997}, {"Title": "Modern Times", "US Gross": 163245, "Worldwide Gross": 163245, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Feb 05 2036", "MPAA Rating": null, "Running Time min": null, "Distributor": "Kino International", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.5, "IMDB Votes": 35773}, {"Title": "The Mighty Ducks", "US Gross": 50752337, "Worldwide Gross": 50752337, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 02 1992", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Stephen Herek", "Rotten Tomatoes Rating": 8, "IMDB Rating": 5.9, "IMDB Votes": 15479}, {"Title": "A Man for All Seasons", "US Gross": 28350000, "Worldwide Gross": 28350000, "US DVD Sales": null, "Production Budget": 3900000, "Release Date": "Dec 12 1966", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Fred Zinnemann", "Rotten Tomatoes Rating": 85, "IMDB Rating": 8.1, "IMDB Votes": 12460}, {"Title": "Megaforce", "US Gross": 5675599, "Worldwide Gross": 5675599, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jun 25 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Hal Needham", "Rotten Tomatoes Rating": null, "IMDB Rating": 2.5, "IMDB Votes": 1446}, {"Title": "The Mirror Has Two Faces", "US Gross": 41267469, "Worldwide Gross": 41267469, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Nov 15 1996", "MPAA Rating": "PG-13", "Running Time min": 127, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Barbra Streisand", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6, "IMDB Votes": 6055}, {"Title": "Midnight Cowboy", "US Gross": 44785053, "Worldwide Gross": 44785053, "US DVD Sales": null, "Production Budget": 3600000, "Release Date": "May 25 1969", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Schlesinger", "Rotten Tomatoes Rating": 90, "IMDB Rating": 8, "IMDB Votes": 34053}, {"Title": "Midnight Run", "US Gross": 38413606, "Worldwide Gross": 81613606, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jul 20 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Martin Brest", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.5, "IMDB Votes": 24104}, {"Title": "Major League", "US Gross": 49793054, "Worldwide Gross": 49793054, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Apr 07 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.9, "IMDB Votes": 20798}, {"Title": "The Molly Maguires", "US Gross": 2200000, "Worldwide Gross": 2200000, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Dec 31 1969", "MPAA Rating": "PG", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Martin Ritt", "Rotten Tomatoes Rating": 89, "IMDB Rating": 6.8, "IMDB Votes": 1304}, {"Title": "Malevolence", "US Gross": 126021, "Worldwide Gross": 257516, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Sep 10 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Painted Zebra Releasing", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 31, "IMDB Rating": 5, "IMDB Votes": 248}, {"Title": "Mad Max 2: The Road Warrior", "US Gross": 24600832, "Worldwide Gross": 24600832, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "May 21 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": null, "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "George Miller", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "It's a Mad Mad Mad Mad World", "US Gross": 46300000, "Worldwide Gross": 60000000, "US DVD Sales": null, "Production Budget": 9400000, "Release Date": "Nov 07 1963", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 14460}, {"Title": "Mad Max", "US Gross": 8750000, "Worldwide Gross": 99750000, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Mar 21 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "George Miller", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 36548}, {"Title": "Mad Max Beyond Thunderdome", "US Gross": 36230219, "Worldwide Gross": 36230219, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jul 10 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": null, "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "George Miller", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 24273}, {"Title": "The Man From Snowy River", "US Gross": 20659423, "Worldwide Gross": 20659423, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Nov 03 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "George Miller", "Rotten Tomatoes Rating": 80, "IMDB Rating": 7, "IMDB Votes": 3101}, {"Title": "Men of War", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Dec 19 1995", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 1435}, {"Title": "Monty Python and the Holy Grail", "US Gross": 3427696, "Worldwide Gross": 5028948, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "May 10 1975", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8.4, "IMDB Votes": 155049}, {"Title": "Men with Brooms", "US Gross": 4239767, "Worldwide Gross": 4239767, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Mar 08 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 5.8, "IMDB Votes": 2559}, {"Title": "Mutiny on The Bounty", "US Gross": 13680000, "Worldwide Gross": 13680000, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Nov 08 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.9, "IMDB Votes": 7608}, {"Title": "Mommie Dearest", "US Gross": 19032000, "Worldwide Gross": 25032000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Sep 18 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Frank Perry", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.3, "IMDB Votes": 4905}, {"Title": "March or Die", "US Gross": 1000000, "Worldwide Gross": 1000000, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Aug 05 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 1233}, {"Title": "Memoirs of an Invisible Man", "US Gross": 14358033, "Worldwide Gross": 14358033, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Feb 28 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "John Carpenter", "Rotten Tomatoes Rating": 24, "IMDB Rating": 5.8, "IMDB Votes": 8522}, {"Title": "The Mongol King", "US Gross": 900, "Worldwide Gross": 900, "US DVD Sales": null, "Production Budget": 7000, "Release Date": "Dec 31 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "My Own Private Idaho", "US Gross": 6401336, "Worldwide Gross": 6401336, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Sep 29 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Gus Van Sant", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7, "IMDB Votes": 17604}, {"Title": "Moonraker", "US Gross": 70300000, "Worldwide Gross": 210300000, "US DVD Sales": null, "Production Budget": 31000000, "Release Date": "Jun 29 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.1, "IMDB Votes": 26760}, {"Title": "Money Train", "US Gross": 35324232, "Worldwide Gross": 77224232, "US DVD Sales": null, "Production Budget": 68000000, "Release Date": "Nov 22 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Joseph Ruben", "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.2, "IMDB Votes": 13972}, {"Title": "Metropolitan", "US Gross": 2938000, "Worldwide Gross": 2938000, "US DVD Sales": null, "Production Budget": 430000, "Release Date": "Aug 03 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Whit Stillman", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.2, "IMDB Votes": 3355}, {"Title": "The Life of Brian", "US Gross": 20008693, "Worldwide Gross": 20008693, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Aug 17 1979", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Rainbow Releasing", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Mallrats", "US Gross": 2108367, "Worldwide Gross": 2108367, "US DVD Sales": null, "Production Budget": 6100000, "Release Date": "Oct 20 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 53, "IMDB Rating": 7.1, "IMDB Votes": 52807}, {"Title": "American Desi", "US Gross": 902835, "Worldwide Gross": 1366235, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Mar 16 2001", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Eros Entertainment", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.7, "IMDB Votes": 1047}, {"Title": "Mrs. Winterbourne", "US Gross": 10039566, "Worldwide Gross": 10039566, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 19 1996", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Richard Benjamin", "Rotten Tomatoes Rating": 7, "IMDB Rating": 5.8, "IMDB Votes": 2987}, {"Title": "Mrs. Doubtfire", "US Gross": 219195051, "Worldwide Gross": 441286003, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Nov 24 1993", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Chris Columbus", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.6, "IMDB Votes": 56917}, {"Title": "Mr. Smith Goes To Washington", "US Gross": 9000000, "Worldwide Gross": 9000000, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Dec 31 1938", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": "Frank Capra", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.2, "IMDB Votes": 33315}, {"Title": "Mortal Kombat", "US Gross": 70433227, "Worldwide Gross": 122133227, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Aug 18 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Paul Anderson", "Rotten Tomatoes Rating": 35, "IMDB Rating": 5.4, "IMDB Votes": 29605}, {"Title": "Frankenstein", "US Gross": 22006296, "Worldwide Gross": 112006296, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Nov 04 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": null, "Director": "Kenneth Branagh", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 19913}, {"Title": "The Misfits", "US Gross": 8200000, "Worldwide Gross": 8200000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 31 1960", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Huston", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.4, "IMDB Votes": 6351}, {"Title": "My Stepmother Is an Alien", "US Gross": 13854000, "Worldwide Gross": 13854000, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Dec 09 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Richard Benjamin", "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.8, "IMDB Votes": 9073}, {"Title": "The Man Who Shot Liberty Valance", "US Gross": 8000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 3200000, "Release Date": "Jan 01 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Ford", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.1, "IMDB Votes": 22681}, {"Title": "Mission: Impossible", "US Gross": 180981886, "Worldwide Gross": 456481886, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "May 21 1996", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 86222}, {"Title": "Meteor", "US Gross": 8400000, "Worldwide Gross": 8400000, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Dec 31 1978", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Ronald Neame", "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.7, "IMDB Votes": 2969}, {"Title": "Multiplicity", "US Gross": 20133326, "Worldwide Gross": 20133326, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jul 17 1996", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Harold Ramis", "Rotten Tomatoes Rating": 44, "IMDB Rating": 5.7, "IMDB Votes": 11935}, {"Title": "Mutual Appreciation", "US Gross": 103509, "Worldwide Gross": 103509, "US DVD Sales": null, "Production Budget": 30000, "Release Date": "Sep 01 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Goodbye Cruel Releasing", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 1102}, {"Title": "The Muppet Christmas Carol", "US Gross": 27281507, "Worldwide Gross": 27281507, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 11 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 7.5, "IMDB Votes": 10853}, {"Title": "The Man with the Golden Gun", "US Gross": 21000000, "Worldwide Gross": 97600000, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Dec 20 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": "Guy Hamilton", "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.7, "IMDB Votes": 22431}, {"Title": "My Fair Lady", "US Gross": 72000000, "Worldwide Gross": 72000000, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Oct 22 1964", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "George Cukor", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.9, "IMDB Votes": 28039}, {"Title": "Mystic Pizza", "US Gross": 12793213, "Worldwide Gross": 12793213, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Oct 21 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Samuel Goldwyn Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Donald Petrie", "Rotten Tomatoes Rating": 82, "IMDB Rating": 5.9, "IMDB Votes": 8413}, {"Title": "Namastey London", "US Gross": 1207007, "Worldwide Gross": 6831069, "US DVD Sales": null, "Production Budget": 8400000, "Release Date": "Mar 23 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Eros Entertainment", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 1511}, {"Title": "Naturally Native", "US Gross": 10508, "Worldwide Gross": 10508, "US DVD Sales": null, "Production Budget": 700000, "Release Date": "Oct 08 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 91}, {"Title": "Inchon", "US Gross": 4408636, "Worldwide Gross": 4408636, "US DVD Sales": null, "Production Budget": 46000000, "Release Date": "Sep 17 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3, "IMDB Votes": 326}, {"Title": "Indiana Jones and the Temple of Doom", "US Gross": 179880271, "Worldwide Gross": 333080271, "US DVD Sales": 18998388, "Production Budget": 28000000, "Release Date": "May 23 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.5, "IMDB Votes": 110761}, {"Title": "Indiana Jones and the Last Crusade", "US Gross": 197171806, "Worldwide Gross": 474171806, "US DVD Sales": 18740425, "Production Budget": 48000000, "Release Date": "May 24 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 89, "IMDB Rating": 8.3, "IMDB Votes": 171572}, {"Title": "Neal n' Nikki", "US Gross": 100358, "Worldwide Gross": 329621, "US DVD Sales": null, "Production Budget": 1300000, "Release Date": "Dec 09 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Yash Raj Films", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.5, "IMDB Votes": 494}, {"Title": "A Nightmare on Elm Street 4: The Dream Master", "US Gross": 49369899, "Worldwide Gross": 49369899, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Aug 19 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Renny Harlin", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 13310}, {"Title": "Next Stop, Wonderland", "US Gross": 3386698, "Worldwide Gross": 3456820, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Aug 21 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Brad Anderson", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Nighthawks", "US Gross": 14600000, "Worldwide Gross": 19600000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Apr 10 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.3, "IMDB Votes": 5649}, {"Title": "The English Patient", "US Gross": 78716374, "Worldwide Gross": 231716374, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 15 1996", "MPAA Rating": "R", "Running Time min": 160, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Anthony Minghella", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.3, "IMDB Votes": 54484}, {"Title": "Niagara", "US Gross": 2500000, "Worldwide Gross": 2500000, "US DVD Sales": null, "Production Budget": 1250000, "Release Date": "Jan 21 1953", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 4698}, {"Title": "The Naked Gun 2Ω: The Smell of Fear", "US Gross": 86930411, "Worldwide Gross": 86930411, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Jun 28 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "David Zucker", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 26384}, {"Title": "Naked Gun 33 1/3: The Final Insult", "US Gross": 51041856, "Worldwide Gross": 51041856, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Mar 18 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Segal", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 24904}, {"Title": "National Lampoon's Animal House", "US Gross": 141600000, "Worldwide Gross": 141600000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Jul 28 1978", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Landis", "Rotten Tomatoes Rating": 90, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Night of the Living Dead", "US Gross": 12000000, "Worldwide Gross": 30000000, "US DVD Sales": null, "Production Budget": 114000, "Release Date": "Oct 01 1968", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Walter Reade Organization", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 96, "IMDB Rating": 6.6, "IMDB Votes": 10083}, {"Title": "No Looking Back", "US Gross": 143273, "Worldwide Gross": 143273, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Mar 27 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Edward Burns", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.7, "IMDB Votes": 1145}, {"Title": "The Nun's Story", "US Gross": 12800000, "Worldwide Gross": 12800000, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Dec 31 1958", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Fred Zinnemann", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.5, "IMDB Votes": 3313}, {"Title": "A Nightmare on Elm Street", "US Gross": 25504513, "Worldwide Gross": 25504513, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Nov 09 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Wes Craven", "Rotten Tomatoes Rating": 95, "IMDB Rating": 5.3, "IMDB Votes": 12554}, {"Title": "A Nightmare On Elm Street Part 2: Freddy's Revenge", "US Gross": 21163999, "Worldwide Gross": 21163999, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Nov 01 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 16222}, {"Title": "A Nightmare On Elm Street 3: Dream Warriors", "US Gross": 44793222, "Worldwide Gross": 44793222, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Feb 27 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Chuck Russell", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 17354}, {"Title": "A Nightmare On Elm Street: The Dream Child", "US Gross": 22168359, "Worldwide Gross": 22168359, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Aug 11 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Stephen Hopkins", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 10849}, {"Title": "Freddy's Dead: The Final Nightmare", "US Gross": 34872033, "Worldwide Gross": 34872033, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Sep 13 1991", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.5, "IMDB Votes": 12779}, {"Title": "Wes Craven's New Nightmare", "US Gross": 18090181, "Worldwide Gross": 18090181, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Oct 14 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Wes Craven", "Rotten Tomatoes Rating": 81, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Night of the Living Dead", "US Gross": 5835247, "Worldwide Gross": 5835247, "US DVD Sales": null, "Production Budget": 4200000, "Release Date": "Oct 19 1990", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.6, "IMDB Votes": 10083}, {"Title": "Notorious", "US Gross": 24464742, "Worldwide Gross": 24464742, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 31 1945", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 97, "IMDB Rating": 6.3, "IMDB Votes": 9811}, {"Title": "Never Say Never Again", "US Gross": 55500000, "Worldwide Gross": 160000000, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Oct 07 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 65, "IMDB Rating": 6, "IMDB Votes": 21247}, {"Title": "The Nutcracker", "US Gross": 2119994, "Worldwide Gross": 2119994, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Dec 31 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Emile Ardolino", "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.2, "IMDB Votes": 561}, {"Title": "Nowhere to Run", "US Gross": 22189039, "Worldwide Gross": 52189039, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jan 15 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5, "IMDB Votes": 6746}, {"Title": "Interview with the Vampire: The Vampire Chronicles", "US Gross": 105264608, "Worldwide Gross": 223564608, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Nov 11 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Neil Jordan", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 78953}, {"Title": "The Nutty Professor", "US Gross": 128814019, "Worldwide Gross": 273814019, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jun 28 1996", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Tom Shadyac", "Rotten Tomatoes Rating": 67, "IMDB Rating": 5.6, "IMDB Votes": 32234}, {"Title": "Die Unendliche Geschichte", "US Gross": 21300000, "Worldwide Gross": 21300000, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Jul 20 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Wolfgang Petersen", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 25704}, {"Title": "Interview with the Assassin", "US Gross": 47329, "Worldwide Gross": 47329, "US DVD Sales": null, "Production Budget": 750000, "Release Date": "Nov 15 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.6, "IMDB Votes": 1107}, {"Title": "Nixon", "US Gross": 13668249, "Worldwide Gross": 34668249, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Dec 20 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 75, "IMDB Rating": 7.1, "IMDB Votes": 13761}, {"Title": "New York, New York", "US Gross": 13800000, "Worldwide Gross": 13800000, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Jun 22 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": null, "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.7, "IMDB Votes": 1692}, {"Title": "New York Stories", "US Gross": 10763469, "Worldwide Gross": 10763469, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Mar 01 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.1, "IMDB Votes": 6906}, {"Title": "Obitaemyy ostrov", "US Gross": 0, "Worldwide Gross": 15000000, "US DVD Sales": null, "Production Budget": 36500000, "Release Date": "Jan 01 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 2229}, {"Title": "Octopussy", "US Gross": 67900000, "Worldwide Gross": 187500000, "US DVD Sales": null, "Production Budget": 27500000, "Release Date": "Jun 10 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Glen", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.6, "IMDB Votes": 23167}, {"Title": "On Deadly Ground", "US Gross": 38590458, "Worldwide Gross": 38590458, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 18 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Steven Seagal", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.8, "IMDB Votes": 9579}, {"Title": "One Flew Over the Cuckoo's Nest", "US Gross": 108981275, "Worldwide Gross": 108981275, "US DVD Sales": null, "Production Budget": 4400000, "Release Date": "Nov 19 1975", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": null, "Creative Type": null, "Director": "Milos Forman", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.9, "IMDB Votes": 214457}, {"Title": "The Offspring", "US Gross": 1355728, "Worldwide Gross": 1355728, "US DVD Sales": null, "Production Budget": 1100000, "Release Date": "Sep 04 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Moviestore Entertainment", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Jeff Burr", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 424}, {"Title": "On Her Majesty's Secret Service", "US Gross": 22800000, "Worldwide Gross": 82000000, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Dec 18 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.9, "IMDB Votes": 23159}, {"Title": "The Omen", "US Gross": 48570885, "Worldwide Gross": 48570885, "US DVD Sales": null, "Production Budget": 2800000, "Release Date": "Jun 25 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": null, "Director": "Richard Donner", "Rotten Tomatoes Rating": 84, "IMDB Rating": 5.4, "IMDB Votes": 24523}, {"Title": "The Omega Code", "US Gross": 12610552, "Worldwide Gross": 12678312, "US DVD Sales": null, "Production Budget": 7200000, "Release Date": "Oct 15 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Providence Entertainment", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 3.3, "IMDB Votes": 3814}, {"Title": "Out of Africa", "US Gross": 79096868, "Worldwide Gross": 258210860, "US DVD Sales": null, "Production Budget": 31000000, "Release Date": "Dec 18 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Sydney Pollack", "Rotten Tomatoes Rating": 63, "IMDB Rating": 7, "IMDB Votes": 19638}, {"Title": "Out of the Dark", "US Gross": 419428, "Worldwide Gross": 419428, "US DVD Sales": null, "Production Budget": 1600000, "Release Date": "Mar 11 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 230}, {"Title": "Ordinary People", "US Gross": 52302978, "Worldwide Gross": 52302978, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Sep 19 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Robert Redford", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7, "IMDB Votes": 138}, {"Title": "The Other Side of Heaven", "US Gross": 4720371, "Worldwide Gross": 4720371, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Dec 14 2001", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Excel Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 1670}, {"Title": "On the Down Low", "US Gross": 1987, "Worldwide Gross": 1987, "US DVD Sales": null, "Production Budget": 10000, "Release Date": "May 28 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Cinema Con Sabor", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 113}, {"Title": "Othello", "US Gross": 2844379, "Worldwide Gross": 2844379, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Dec 14 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 68, "IMDB Rating": 6.9, "IMDB Votes": 4289}, {"Title": "On the Outs", "US Gross": 49772, "Worldwide Gross": 49772, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Jul 15 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fader Films", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 445}, {"Title": "On the Waterfront", "US Gross": 9600000, "Worldwide Gross": 9600000, "US DVD Sales": null, "Production Budget": 910000, "Release Date": "Jul 28 1954", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Elia Kazan", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.4, "IMDB Votes": 41162}, {"Title": "Outbreak", "US Gross": 67823573, "Worldwide Gross": 67823573, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Mar 10 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Wolfgang Petersen", "Rotten Tomatoes Rating": 59, "IMDB Rating": 6.4, "IMDB Votes": 33192}, {"Title": "The Outsiders", "US Gross": 25697647, "Worldwide Gross": 25697647, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Mar 25 1983", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 65, "IMDB Rating": 7, "IMDB Votes": 23607}, {"Title": "The Oxford Murders", "US Gross": 3607, "Worldwide Gross": 8667348, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 06 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 6.1, "IMDB Votes": 8066}, {"Title": "Police Academy", "US Gross": 81198894, "Worldwide Gross": 81198894, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Mar 23 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Hugh Wilson", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.3, "IMDB Votes": 23192}, {"Title": "Police Academy 7: Mission to Moscow", "US Gross": 126247, "Worldwide Gross": 126247, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 26 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.5, "IMDB Votes": 13121}, {"Title": "Paa", "US Gross": 199228, "Worldwide Gross": 9791282, "US DVD Sales": null, "Production Budget": 4300000, "Release Date": "Dec 04 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": "Reliance Big Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.3, "IMDB Votes": 1059}, {"Title": "Pale Rider", "US Gross": 41410568, "Worldwide Gross": 41410568, "US DVD Sales": null, "Production Budget": 6900000, "Release Date": "Jun 28 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.1, "IMDB Votes": 15352}, {"Title": "Patriot Games", "US Gross": 83287363, "Worldwide Gross": 178100000, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jun 05 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Phillip Noyce", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.9, "IMDB Votes": 29544}, {"Title": "The Pallbearer", "US Gross": 5656388, "Worldwide Gross": 5656388, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "May 03 1996", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Matt Reeves", "Rotten Tomatoes Rating": 39, "IMDB Rating": 4.7, "IMDB Votes": 4166}, {"Title": "Pocahontas", "US Gross": 141579773, "Worldwide Gross": 347100000, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jun 10 1995", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 6, "IMDB Votes": 26690}, {"Title": "Pocketful of Miracles", "US Gross": 5000000, "Worldwide Gross": 5000000, "US DVD Sales": null, "Production Budget": 2900000, "Release Date": "Dec 31 1960", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Frank Capra", "Rotten Tomatoes Rating": 63, "IMDB Rating": 7.2, "IMDB Votes": 2365}, {"Title": "PCU", "US Gross": 4333569, "Worldwide Gross": 4333569, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Apr 29 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 6, "IMDB Votes": 6967}, {"Title": "Pete's Dragon", "US Gross": 36000000, "Worldwide Gross": 36000000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Nov 03 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 6, "IMDB Votes": 4620}, {"Title": "Pat Garrett and Billy the Kid", "US Gross": 8000000, "Worldwide Gross": 11000000, "US DVD Sales": null, "Production Budget": 4638783, "Release Date": "May 23 1973", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Sam Peckinpah", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 6374}, {"Title": "Poltergeist", "US Gross": 74706019, "Worldwide Gross": 121706019, "US DVD Sales": null, "Production Budget": 10700000, "Release Date": "Jun 04 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Tobe Hooper", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.4, "IMDB Votes": 32817}, {"Title": "Poltergeist III", "US Gross": 14114000, "Worldwide Gross": 14114000, "US DVD Sales": null, "Production Budget": 9500000, "Release Date": "Jun 10 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 3.8, "IMDB Votes": 5387}, {"Title": "Phantasm II", "US Gross": 7000000, "Worldwide Gross": 7000000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Jul 08 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 6.3, "IMDB Votes": 3781}, {"Title": "Phenomenon", "US Gross": 104636382, "Worldwide Gross": 142836382, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Jul 05 1996", "MPAA Rating": "PG", "Running Time min": 124, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Jon Turteltaub", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.3, "IMDB Votes": 26823}, {"Title": "Philadelphia", "US Gross": 77324422, "Worldwide Gross": 201324422, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Dec 22 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/TriStar", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Jonathan Demme", "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.6, "IMDB Votes": 53283}, {"Title": "The Phantom", "US Gross": 17220599, "Worldwide Gross": 17220599, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jun 07 1996", "MPAA Rating": "PG", "Running Time min": 100, "Distributor": "Paramount Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Simon Wincer", "Rotten Tomatoes Rating": 43, "IMDB Rating": 4.8, "IMDB Votes": 9477}, {"Title": "Pi", "US Gross": 3221152, "Worldwide Gross": 4678513, "US DVD Sales": null, "Production Budget": 68000, "Release Date": "Jul 10 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Live Entertainment", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Darren Aronofsky", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.5, "IMDB Votes": 53699}, {"Title": "Pink Flamingos", "US Gross": 413802, "Worldwide Gross": 413802, "US DVD Sales": null, "Production Budget": 12000, "Release Date": "Apr 11 1997", "MPAA Rating": "NC-17", "Running Time min": null, "Distributor": "Fine Line", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Waters", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 7947}, {"Title": "The Pirate", "US Gross": 2956000, "Worldwide Gross": 2956000, "US DVD Sales": null, "Production Budget": 3700000, "Release Date": "Dec 31 1947", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Vincente Minnelli", "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.1, "IMDB Votes": 1635}, {"Title": "The Planet of the Apes", "US Gross": 33395426, "Worldwide Gross": 33395426, "US DVD Sales": null, "Production Budget": 5800000, "Release Date": "Feb 08 1968", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Franklin J. Schaffner", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Player", "US Gross": 21706101, "Worldwide Gross": 28876702, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Apr 10 1992", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Robert Altman", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 24451}, {"Title": "Apollo 13", "US Gross": 172070496, "Worldwide Gross": 334100000, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Jun 30 1995", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ron Howard", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 87605}, {"Title": "Platoon", "US Gross": 137963328, "Worldwide Gross": 137963328, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Dec 19 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 86, "IMDB Rating": 8.2, "IMDB Votes": 108641}, {"Title": "Panic", "US Gross": 779137, "Worldwide Gross": 889279, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Dec 01 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Roxie Releasing", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 92, "IMDB Rating": 2.7, "IMDB Votes": 473}, {"Title": "The Adventures of Pinocchio", "US Gross": 15382170, "Worldwide Gross": 36682170, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jul 26 1996", "MPAA Rating": "G", "Running Time min": 94, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Steve Barron", "Rotten Tomatoes Rating": 27, "IMDB Rating": 5.3, "IMDB Votes": 1734}, {"Title": "Pandora's Box", "US Gross": 881950, "Worldwide Gross": 881950, "US DVD Sales": null, "Production Budget": 800000, "Release Date": "Aug 09 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Kino International", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 386}, {"Title": "Pink Narcissus", "US Gross": 8231, "Worldwide Gross": 8231, "US DVD Sales": null, "Production Budget": 27000, "Release Date": "Dec 24 1999", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 384}, {"Title": "Penitentiary", "US Gross": 287000, "Worldwide Gross": 287000, "US DVD Sales": null, "Production Budget": 100000, "Release Date": "May 10 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 233}, {"Title": "The Pursuit of D.B. Cooper", "US Gross": 2104164, "Worldwide Gross": 2104164, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Nov 13 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Roger Spottiswoode", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 442}, {"Title": "Poetic Justice", "US Gross": 27450453, "Worldwide Gross": 27450453, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Jul 23 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Singleton", "Rotten Tomatoes Rating": 36, "IMDB Rating": 5.1, "IMDB Votes": 3689}, {"Title": "Porky's", "US Gross": 109492484, "Worldwide Gross": 109492484, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Mar 19 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 15861}, {"Title": "Peace, Propaganda and the Promised Land", "US Gross": 4930, "Worldwide Gross": 4930, "US DVD Sales": null, "Production Budget": 70000, "Release Date": "Jan 28 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Arab Film Distribution", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3, "IMDB Votes": 75}, {"Title": "Popeye", "US Gross": 49823037, "Worldwide Gross": 49823037, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 12 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Robert Altman", "Rotten Tomatoes Rating": 56, "IMDB Rating": 4.9, "IMDB Votes": 11433}, {"Title": "Predator 2", "US Gross": 28317513, "Worldwide Gross": 54768418, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 21 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Stephen Hopkins", "Rotten Tomatoes Rating": 23, "IMDB Rating": 6, "IMDB Votes": 35411}, {"Title": "Predator", "US Gross": 59735548, "Worldwide Gross": 98267558, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jun 12 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "John McTiernan", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.8, "IMDB Votes": 88522}, {"Title": "The Princess Bride", "US Gross": 30857000, "Worldwide Gross": 30857000, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Sep 25 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Rob Reiner", "Rotten Tomatoes Rating": 95, "IMDB Rating": 8.1, "IMDB Votes": 123571}, {"Title": "Prison", "US Gross": 354704, "Worldwide Gross": 354704, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Mar 04 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Empire Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": null, "Director": "Renny Harlin", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 1154}, {"Title": "LÈon", "US Gross": 19284974, "Worldwide Gross": 45284974, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Nov 18 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Luc Besson", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.6, "IMDB Votes": 199762}, {"Title": "Prophecy", "US Gross": 21000000, "Worldwide Gross": 21000000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jun 15 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Frankenheimer", "Rotten Tomatoes Rating": 25, "IMDB Rating": 4.7, "IMDB Votes": 1381}, {"Title": "The Prince of Tides", "US Gross": 74787599, "Worldwide Gross": 74787599, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 25 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Barbra Streisand", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.4, "IMDB Votes": 6829}, {"Title": "Proud", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 23 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Castle Hill Productions", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 161}, {"Title": "Pretty Woman", "US Gross": 178406268, "Worldwide Gross": 463400000, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Mar 23 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Garry Marshall", "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.7, "IMDB Votes": 60742}, {"Title": "Partition", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 02 2007", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.6, "IMDB Votes": 1275}, {"Title": "The Postman Always Rings Twice", "US Gross": 12200000, "Worldwide Gross": 44200000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Mar 20 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Bob Rafelson", "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.4, "IMDB Votes": 6886}, {"Title": "Peggy Sue Got Married", "US Gross": 41382841, "Worldwide Gross": 41382841, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Oct 10 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/TriStar", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 88, "IMDB Rating": 6.3, "IMDB Votes": 12457}, {"Title": "Peter Pan", "US Gross": 87400000, "Worldwide Gross": 87400000, "US DVD Sales": 90536550, "Production Budget": 4000000, "Release Date": "Feb 05 1953", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "RKO Radio Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.1, "IMDB Votes": 16894}, {"Title": "Pet Sematary", "US Gross": 57469179, "Worldwide Gross": 57469179, "US DVD Sales": null, "Production Budget": 11500000, "Release Date": "Apr 21 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.3, "IMDB Votes": 19257}, {"Title": "Patton", "US Gross": 62500000, "Worldwide Gross": 62500000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jan 01 1970", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Franklin J. Schaffner", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.1, "IMDB Votes": 39570}, {"Title": "The Puffy Chair", "US Gross": 194523, "Worldwide Gross": 194523, "US DVD Sales": null, "Production Budget": 15000, "Release Date": "Jun 02 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IDP/Goldwyn/Roadside", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 1701}, {"Title": "Pulp Fiction", "US Gross": 107928762, "Worldwide Gross": 212928762, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Oct 14 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Quentin Tarantino", "Rotten Tomatoes Rating": 94, "IMDB Rating": 8.9, "IMDB Votes": 417703}, {"Title": "Paint Your Wagon", "US Gross": 31678778, "Worldwide Gross": 31678778, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 15 1969", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Play", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 6.5, "IMDB Votes": 5037}, {"Title": "The Prisoner of Zenda", "US Gross": 7000000, "Worldwide Gross": 7000000, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "May 25 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 406}, {"Title": "The Perez Family", "US Gross": 2794056, "Worldwide Gross": 2794056, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "May 12 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Goldwyn Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Mira Nair", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6, "IMDB Votes": 1177}, {"Title": "Q", "US Gross": 255000, "Worldwide Gross": 255000, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Nov 19 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Film Distribution Co.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 1899}, {"Title": "The Quick and the Dead", "US Gross": 18552460, "Worldwide Gross": 18552460, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Feb 10 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Sam Raimi", "Rotten Tomatoes Rating": 56, "IMDB Rating": 6.3, "IMDB Votes": 27352}, {"Title": "Quigley Down Under", "US Gross": 21413105, "Worldwide Gross": 21413105, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 19 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Simon Wincer", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.5, "IMDB Votes": 6001}, {"Title": "La Guerre du feu", "US Gross": 20959585, "Worldwide Gross": 20959585, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Feb 12 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Jean-Jacques Annaud", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 6198}, {"Title": "Quo Vadis?", "US Gross": 30000000, "Worldwide Gross": 30000000, "US DVD Sales": null, "Production Budget": 8250000, "Release Date": "Feb 23 1951", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 88, "IMDB Rating": 5.8, "IMDB Votes": 898}, {"Title": "Rang De Basanti", "US Gross": 2197694, "Worldwide Gross": 29197694, "US DVD Sales": null, "Production Budget": 5300000, "Release Date": "Jan 27 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "UTV Communications", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8.1, "IMDB Votes": 12116}, {"Title": "Robin and Marian", "US Gross": 8000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Mar 11 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 68, "IMDB Rating": 6.5, "IMDB Votes": 4800}, {"Title": "Ransom", "US Gross": 136492681, "Worldwide Gross": 308700000, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Nov 08 1996", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Ron Howard", "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.6, "IMDB Votes": 38524}, {"Title": "Rosemary's Baby", "US Gross": 33395426, "Worldwide Gross": 33395426, "US DVD Sales": null, "Production Budget": 3200000, "Release Date": "Jun 12 1968", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Roman Polanski", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.1, "IMDB Votes": 50860}, {"Title": "Rebecca", "US Gross": 6000000, "Worldwide Gross": 6000000, "US DVD Sales": null, "Production Budget": 1288000, "Release Date": "Dec 31 1939", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.4, "IMDB Votes": 35429}, {"Title": "Robin Hood: Prince of Thieves", "US Gross": 165493908, "Worldwide Gross": 390500000, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 14 1991", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Kevin Reynolds", "Rotten Tomatoes Rating": 56, "IMDB Rating": 6.7, "IMDB Votes": 54480}, {"Title": "Rumble in the Bronx", "US Gross": 32281907, "Worldwide Gross": 36238752, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Feb 23 1996", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Rob Roy", "US Gross": 31390587, "Worldwide Gross": 31390587, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Apr 07 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Michael Caton-Jones", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.8, "IMDB Votes": 15630}, {"Title": "Raging Bull", "US Gross": 23380203, "Worldwide Gross": 23380203, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Nov 14 1980", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.4, "IMDB Votes": 90015}, {"Title": "Richard III", "US Gross": 2684904, "Worldwide Gross": 4204857, "US DVD Sales": null, "Production Budget": 9200000, "Release Date": "Dec 29 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.5, "IMDB Votes": 6625}, {"Title": "Raising Cain", "US Gross": 21171695, "Worldwide Gross": 21171695, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Aug 07 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 53, "IMDB Rating": 5.7, "IMDB Votes": 5135}, {"Title": "RoboCop", "US Gross": 53424681, "Worldwide Gross": 53424681, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Jul 17 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Paul Verhoeven", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.6, "IMDB Votes": 52898}, {"Title": "RoboCop 3", "US Gross": 10696210, "Worldwide Gross": 10696210, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Nov 05 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.4, "IMDB Votes": 13310}, {"Title": "Ri¢hie Ri¢h", "US Gross": 38087756, "Worldwide Gross": 38087756, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Dec 21 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Donald Petrie", "Rotten Tomatoes Rating": 25, "IMDB Rating": 4.7, "IMDB Votes": 12687}, {"Title": "Radio Days", "US Gross": 14792779, "Worldwide Gross": 14792779, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Jan 30 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.5, "IMDB Votes": 10839}, {"Title": "Radio Flyer", "US Gross": 4651977, "Worldwide Gross": 4651977, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Feb 21 1992", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Richard Donner", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.5, "IMDB Votes": 6210}, {"Title": "Reservoir Dogs", "US Gross": 2832029, "Worldwide Gross": 2832029, "US DVD Sales": 18806836, "Production Budget": 1200000, "Release Date": "Oct 23 1992", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Quentin Tarantino", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.4, "IMDB Votes": 212985}, {"Title": "Raiders of the Lost Ark", "US Gross": 245034358, "Worldwide Gross": 386800358, "US DVD Sales": 19608618, "Production Budget": 20000000, "Release Date": "Jun 12 1981", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.7, "IMDB Votes": 242661}, {"Title": "Red River", "US Gross": 9012000, "Worldwide Gross": 9012000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Dec 31 1947", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Howard Hawks", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.8, "IMDB Votes": 10629}, {"Title": "Reds", "US Gross": 50000000, "Worldwide Gross": 50000000, "US DVD Sales": null, "Production Budget": 33500000, "Release Date": "Dec 04 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Warren Beatty", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.4, "IMDB Votes": 8455}, {"Title": "Le Violon rouge", "US Gross": 10019109, "Worldwide Gross": 10019109, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jun 11 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 14545}, {"Title": "Red Sonja", "US Gross": 6905861, "Worldwide Gross": 6905861, "US DVD Sales": null, "Production Budget": 17900000, "Release Date": "Jun 28 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Richard Fleischer", "Rotten Tomatoes Rating": 20, "IMDB Rating": 4.4, "IMDB Votes": 11896}, {"Title": "Star Wars Ep. VI: Return of the Jedi", "US Gross": 309205079, "Worldwide Gross": 572700000, "US DVD Sales": 12356425, "Production Budget": 32500000, "Release Date": "May 25 1983", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Richard Marquand", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Return", "US Gross": 501752, "Worldwide Gross": 2658490, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Feb 06 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Kino International", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.3, "IMDB Votes": 236}, {"Title": "The Rise and Fall of Miss Thang", "US Gross": 401, "Worldwide Gross": 401, "US DVD Sales": null, "Production Budget": 10000, "Release Date": "Aug 14 2008", "MPAA Rating": "Not Rated", "Running Time min": 87, "Distributor": "Lavender House Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Roger & Me", "US Gross": 6706368, "Worldwide Gross": 6706368, "US DVD Sales": null, "Production Budget": 140000, "Release Date": "Dec 20 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Michael Moore", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.5, "IMDB Votes": 14883}, {"Title": "The Right Stuff", "US Gross": 21500000, "Worldwide Gross": 21500000, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Oct 21 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Philip Kaufman", "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.9, "IMDB Votes": 24275}, {"Title": "The Rocky Horror Picture Show", "US Gross": 139876417, "Worldwide Gross": 139876417, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Sep 26 1975", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": null, "Major Genre": "Musical", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.1, "IMDB Votes": 41265}, {"Title": "Road House", "US Gross": 30050028, "Worldwide Gross": 30050028, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "May 19 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 5.8, "IMDB Votes": 14085}, {"Title": "Romeo Is Bleeding", "US Gross": 3275585, "Worldwide Gross": 3275585, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 04 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 24, "IMDB Rating": 6.3, "IMDB Votes": 6537}, {"Title": "Rockaway", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jul 07 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Off-Hollywood Distribution", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.2, "IMDB Votes": 232}, {"Title": "Rocky", "US Gross": 117235147, "Worldwide Gross": 225000000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Nov 21 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John G. Avildsen", "Rotten Tomatoes Rating": null, "IMDB Rating": 4, "IMDB Votes": 84}, {"Title": "Return of the Living Dead Part II", "US Gross": 9205924, "Worldwide Gross": 9205924, "US DVD Sales": null, "Production Budget": 6200000, "Release Date": "Jan 15 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Lorimar Motion Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 4661}, {"Title": "The R.M.", "US Gross": 1111615, "Worldwide Gross": 1111615, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jan 31 2003", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Halestone", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": 5.5, "IMDB Votes": 449}, {"Title": "Renaissance Man", "US Gross": 24172899, "Worldwide Gross": 24172899, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jun 03 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Penny Marshall", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 7650}, {"Title": "Rambo: First Blood Part II", "US Gross": 150415432, "Worldwide Gross": 300400000, "US DVD Sales": null, "Production Budget": 44000000, "Release Date": "May 22 1985", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/TriStar", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "George P. Cosmatos", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.8, "IMDB Votes": 38548}, {"Title": "Rambo III", "US Gross": 53715611, "Worldwide Gross": 188715611, "US DVD Sales": null, "Production Budget": 58000000, "Release Date": "May 25 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/TriStar", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 4.9, "IMDB Votes": 31551}, {"Title": "Romeo+Juliet", "US Gross": 46338728, "Worldwide Gross": 147542381, "US DVD Sales": null, "Production Budget": 14500000, "Release Date": "Nov 01 1996", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "20th Century Fox", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Baz Luhrmann", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 78}, {"Title": "Ramanujan", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 31 2007", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Stephen Fry", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Rain Man", "US Gross": 172825435, "Worldwide Gross": 412800000, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Dec 16 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": 87, "IMDB Rating": 8, "IMDB Votes": 106163}, {"Title": "Rapa Nui", "US Gross": 305070, "Worldwide Gross": 305070, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Sep 11 1994", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Kevin Reynolds", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 2081}, {"Title": "Roar", "US Gross": 2000000, "Worldwide Gross": 2000000, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Dec 31 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 228}, {"Title": "The Robe", "US Gross": 36000000, "Worldwide Gross": 36000000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Sep 16 1953", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 6.7, "IMDB Votes": 2913}, {"Title": "The Rock", "US Gross": 134069511, "Worldwide Gross": 336069511, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jun 07 1996", "MPAA Rating": "R", "Running Time min": 136, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Michael Bay", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.2, "IMDB Votes": 108324}, {"Title": "The Remains of the Day", "US Gross": 22954968, "Worldwide Gross": 63954968, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Nov 05 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "James Ivory", "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.9, "IMDB Votes": 21736}, {"Title": "Airplane!", "US Gross": 83453539, "Worldwide Gross": 83453539, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Jul 04 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Jerry Zucker", "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.8, "IMDB Votes": 57000}, {"Title": "Repo Man", "US Gross": 2300000, "Worldwide Gross": 2300000, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Mar 02 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 97, "IMDB Rating": 6.7, "IMDB Votes": 12438}, {"Title": "Rocket Singh: Salesman of the Year", "US Gross": 164649, "Worldwide Gross": 5348767, "US DVD Sales": null, "Production Budget": 1070000, "Release Date": "Dec 11 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": "Yash Raj Films", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 1436}, {"Title": "Raise the Titanic", "US Gross": 7000000, "Worldwide Gross": 7000000, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 01 1980", "MPAA Rating": "PG", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 3.9, "IMDB Votes": 1757}, {"Title": "Restoration", "US Gross": 4100000, "Worldwide Gross": 4100000, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Dec 29 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 4024}, {"Title": "The Return of the Living Dead", "US Gross": 14237880, "Worldwide Gross": 14237880, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Aug 16 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.1, "IMDB Votes": 13621}, {"Title": "Rejsen til Saturn", "US Gross": 0, "Worldwide Gross": 2783634, "US DVD Sales": null, "Production Budget": 2700000, "Release Date": "Sep 26 2008", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 849}, {"Title": "Return to the Land of Wonders", "US Gross": 1338, "Worldwide Gross": 1338, "US DVD Sales": null, "Production Budget": 5000, "Release Date": "Jul 13 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Arab Film Distribution", "Source": null, "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8.5, "IMDB Votes": 35}, {"Title": "Return to Oz", "US Gross": 10618813, "Worldwide Gross": 10618813, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Jun 21 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.7, "IMDB Votes": 7491}, {"Title": "The Running Man", "US Gross": 38122000, "Worldwide Gross": 38122000, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Nov 13 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/TriStar", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Paul Michael Glaser", "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.4, "IMDB Votes": 36308}, {"Title": "Run Lola Run", "US Gross": 7267324, "Worldwide Gross": 14533173, "US DVD Sales": null, "Production Budget": 1750000, "Release Date": "Jun 18 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Tom Tykwer", "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 91}, {"Title": "Revolution#9", "US Gross": 9118, "Worldwide Gross": 9118, "US DVD Sales": null, "Production Budget": 350000, "Release Date": "Nov 15 2002", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 252}, {"Title": "The River Wild", "US Gross": 46815000, "Worldwide Gross": 94215000, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Sep 30 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Curtis Hanson", "Rotten Tomatoes Rating": 56, "IMDB Rating": 6.2, "IMDB Votes": 14285}, {"Title": "Se7en", "US Gross": 100125643, "Worldwide Gross": 328125643, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 22 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "David Fincher", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.7, "IMDB Votes": 278918}, {"Title": "Safe Men", "US Gross": 21210, "Worldwide Gross": 21210, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Aug 07 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "October Films", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 58, "IMDB Rating": 5.9, "IMDB Votes": 1743}, {"Title": "Secrets & Lies", "US Gross": 13417292, "Worldwide Gross": 13417292, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Sep 28 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "October Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Mike Leigh", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.9, "IMDB Votes": 14364}, {"Title": "Sgt. Bilko", "US Gross": 30356589, "Worldwide Gross": 37956589, "US DVD Sales": null, "Production Budget": 39000000, "Release Date": "Mar 29 1996", "MPAA Rating": "PG", "Running Time min": 93, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.2, "IMDB Votes": 9693}, {"Title": "Sabrina", "US Gross": 53458319, "Worldwide Gross": 87100000, "US DVD Sales": null, "Production Budget": 58000000, "Release Date": "Dec 15 1995", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Sydney Pollack", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6, "IMDB Votes": 15749}, {"Title": "Subway", "US Gross": 390659, "Worldwide Gross": 1663296, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Nov 06 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Island/Alive", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Luc Besson", "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.2, "IMDB Votes": 5904}, {"Title": "School Daze", "US Gross": 14545844, "Worldwide Gross": 14545844, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Feb 12 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 58, "IMDB Rating": 5.3, "IMDB Votes": 2667}, {"Title": "Scarface", "US Gross": 44942821, "Worldwide Gross": 44942821, "US DVD Sales": 15386092, "Production Budget": 25000000, "Release Date": "Dec 09 1983", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 88, "IMDB Rating": 8.2, "IMDB Votes": 152262}, {"Title": "Schindler's List", "US Gross": 96067179, "Worldwide Gross": 321200000, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Dec 15 1993", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.9, "IMDB Votes": 276283}, {"Title": "A Streetcar Named Desire", "US Gross": 8000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Sep 18 1951", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Play", "Major Genre": null, "Creative Type": null, "Director": "Elia Kazan", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.1, "IMDB Votes": 33781}, {"Title": "Shadow Conspiracy", "US Gross": 2154540, "Worldwide Gross": 2154540, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jan 31 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "George P. Cosmatos", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 2427}, {"Title": "Short Cut to Nirvana: Kumbh Mela", "US Gross": 381225, "Worldwide Gross": 439651, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Oct 22 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Mela Films", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.9, "IMDB Votes": 105}, {"Title": "Spartacus", "US Gross": 30000000, "Worldwide Gross": 60000000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Oct 07 1960", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Stanley Kubrick", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8, "IMDB Votes": 50856}, {"Title": "Sunday", "US Gross": 410919, "Worldwide Gross": 450349, "US DVD Sales": null, "Production Budget": 450000, "Release Date": "Aug 22 1997", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 79, "IMDB Rating": 6.9, "IMDB Votes": 436}, {"Title": "She Done Him Wrong", "US Gross": 2000000, "Worldwide Gross": 2000000, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Feb 09 2033", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 6.7, "IMDB Votes": 1795}, {"Title": "Secret, The", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": 65505095, "Production Budget": 3500000, "Release Date": "Nov 07 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Documentary", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Sea Rex 3D: Journey to a Prehistoric World", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Dec 31 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": "3D Entertainment", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "State Fair", "US Gross": 3500000, "Worldwide Gross": 3500000, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Mar 09 1962", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 5.7, "IMDB Votes": 436}, {"Title": "Sticky Fingers of Time", "US Gross": 18195, "Worldwide Gross": 20628, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Jan 08 1999", "MPAA Rating": null, "Running Time min": null, "Distributor": "Strand", "Source": null, "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Stargate - The Ark of Truth", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": 8962832, "Production Budget": 7000000, "Release Date": "Mar 11 2008", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "She's Gotta Have It", "US Gross": 7137502, "Worldwide Gross": 7137502, "US DVD Sales": null, "Production Budget": 175000, "Release Date": "Aug 08 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Island", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 93, "IMDB Rating": 6.2, "IMDB Votes": 2594}, {"Title": "Stargate", "US Gross": 71565669, "Worldwide Gross": 196565669, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Oct 28 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Roland Emmerich", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.7, "IMDB Votes": 47174}, {"Title": "The Shadow", "US Gross": 31835600, "Worldwide Gross": 31835600, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 01 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Russell Mulcahy", "Rotten Tomatoes Rating": 34, "IMDB Rating": 5.6, "IMDB Votes": 9530}, {"Title": "Show Boat", "US Gross": 11000000, "Worldwide Gross": 11000000, "US DVD Sales": null, "Production Budget": 2300000, "Release Date": "Sep 24 1951", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 89, "IMDB Rating": 6.9, "IMDB Votes": 1788}, {"Title": "Shadowlands", "US Gross": 25842377, "Worldwide Gross": 25842377, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Dec 29 1993", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Savoy", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Sir Richard Attenborough", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.4, "IMDB Votes": 7689}, {"Title": "Shanghai Surprise", "US Gross": 2315000, "Worldwide Gross": 2315000, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Aug 29 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 2.6, "IMDB Votes": 2591}, {"Title": "Shalako", "US Gross": 2620000, "Worldwide Gross": 2620000, "US DVD Sales": null, "Production Budget": 1455000, "Release Date": "Dec 31 1967", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.3, "IMDB Votes": 1090}, {"Title": "Sheena", "US Gross": 5778353, "Worldwide Gross": 5778353, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Aug 17 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "John Guillermin", "Rotten Tomatoes Rating": 38, "IMDB Rating": 4.3, "IMDB Votes": 1598}, {"Title": "Shine", "US Gross": 35811509, "Worldwide Gross": 35811509, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Nov 22 1996", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Fine Line", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Scott Hicks", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.6, "IMDB Votes": 22439}, {"Title": "The Shining", "US Gross": 44017374, "Worldwide Gross": 44017374, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "May 23 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Stanley Kubrick", "Rotten Tomatoes Rating": 87, "IMDB Rating": 8.5, "IMDB Votes": 177762}, {"Title": "Haakon Haakonsen", "US Gross": 15024232, "Worldwide Gross": 15024232, "US DVD Sales": null, "Production Budget": 8500000, "Release Date": "Mar 01 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 1125}, {"Title": "Ishtar", "US Gross": 14375181, "Worldwide Gross": 14375181, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "May 15 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 3.7, "IMDB Votes": 6094}, {"Title": "Showgirls", "US Gross": 20254932, "Worldwide Gross": 20254932, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Sep 22 1995", "MPAA Rating": "NC-17", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Paul Verhoeven", "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.1, "IMDB Votes": 27004}, {"Title": "The Shawshank Redemption", "US Gross": 28241469, "Worldwide Gross": 28241469, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Sep 23 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Frank Darabont", "Rotten Tomatoes Rating": 88, "IMDB Rating": 9.2, "IMDB Votes": 519541}, {"Title": "Silver Bullet", "US Gross": 10803211, "Worldwide Gross": 10803211, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Oct 11 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.9, "IMDB Votes": 6387}, {"Title": "Side Effects", "US Gross": 44701, "Worldwide Gross": 44701, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Sep 09 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sky Island", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Set It Off", "US Gross": 36049108, "Worldwide Gross": 36049108, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Nov 06 1996", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "F. Gary Gray", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.3, "IMDB Votes": 4570}, {"Title": "The Silence of the Lambs", "US Gross": 130726716, "Worldwide Gross": 275726716, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Feb 14 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Jonathan Demme", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.7, "IMDB Votes": 244856}, {"Title": "Silver Medalist", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 2600000, "Release Date": "Feb 29 2008", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Silent Trigger", "US Gross": 76382, "Worldwide Gross": 76382, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jun 26 1996", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Russell Mulcahy", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 1364}, {"Title": "Thinner", "US Gross": 15171475, "Worldwide Gross": 15171475, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Oct 25 1996", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 18, "IMDB Rating": 5.3, "IMDB Votes": 7888}, {"Title": "Sling Blade", "US Gross": 24475416, "Worldwide Gross": 34175000, "US DVD Sales": null, "Production Budget": 4833610, "Release Date": "Nov 20 1996", "MPAA Rating": "R", "Running Time min": 133, "Distributor": "Miramax", "Source": "Based on Short Film", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 96, "IMDB Rating": 8, "IMDB Votes": 41785}, {"Title": "Slacker", "US Gross": 1227508, "Worldwide Gross": 1227508, "US DVD Sales": null, "Production Budget": 23000, "Release Date": "Aug 01 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Richard Linklater", "Rotten Tomatoes Rating": 83, "IMDB Rating": 6.9, "IMDB Votes": 5907}, {"Title": "Some Like it Hot", "US Gross": 25000000, "Worldwide Gross": 25000000, "US DVD Sales": null, "Production Budget": 2883848, "Release Date": "Mar 29 1959", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Billy Wilder", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.3, "IMDB Votes": 67157}, {"Title": "The Scarlet Letter", "US Gross": 10359006, "Worldwide Gross": 10359006, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Oct 13 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Roland Joffe", "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.6, "IMDB Votes": 6155}, {"Title": "Silmido", "US Gross": 298347, "Worldwide Gross": 30298347, "US DVD Sales": null, "Production Budget": 8500000, "Release Date": "Apr 23 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Cinema Service", "Source": null, "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 1724}, {"Title": "Sleeper", "US Gross": 18344729, "Worldwide Gross": 18344729, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 17 1973", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Woody Allen", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.3, "IMDB Votes": 15466}, {"Title": "Sleepers", "US Gross": 53300852, "Worldwide Gross": 165600852, "US DVD Sales": null, "Production Budget": 44000000, "Release Date": "Oct 18 1996", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Barry Levinson", "Rotten Tomatoes Rating": 73, "IMDB Rating": 7.3, "IMDB Votes": 51874}, {"Title": "The Slaughter Rule", "US Gross": 13134, "Worldwide Gross": 13134, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jan 10 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 1136}, {"Title": "Solomon and Sheba", "US Gross": 11000000, "Worldwide Gross": 11000000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jan 01 1959", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "King Vidor", "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 915}, {"Title": "Sur Le Seuil", "US Gross": 2013052, "Worldwide Gross": 2013052, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Oct 03 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Alliance", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 585}, {"Title": "The Usual Suspects", "US Gross": 23341568, "Worldwide Gross": 23341568, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Aug 16 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Bryan Singer", "Rotten Tomatoes Rating": 87, "IMDB Rating": 8.7, "IMDB Votes": 266890}, {"Title": "Silverado", "US Gross": 33200000, "Worldwide Gross": 33200000, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Jul 10 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Lawrence Kasdan", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7, "IMDB Votes": 14243}, {"Title": "Salvador", "US Gross": 1500000, "Worldwide Gross": 1500000, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Apr 23 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Hemdale", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.5, "IMDB Votes": 7797}, {"Title": "Sex, Lies, and Videotape", "US Gross": 24741667, "Worldwide Gross": 36741667, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Aug 04 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 97, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Show Me", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "Nov 04 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Wolfe Releasing", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 288}, {"Title": "Simon", "US Gross": 4055, "Worldwide Gross": 4055, "US DVD Sales": null, "Production Budget": 1300000, "Release Date": "Apr 07 2006", "MPAA Rating": null, "Running Time min": null, "Distributor": "Strand", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 4873}, {"Title": "Super Mario Bros.", "US Gross": 20844907, "Worldwide Gross": 20844907, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "May 28 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.8, "IMDB Votes": 17281}, {"Title": "Somewhere in Time", "US Gross": 9709597, "Worldwide Gross": 9709597, "US DVD Sales": null, "Production Budget": 5100000, "Release Date": "Oct 03 1980", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 7, "IMDB Votes": 8787}, {"Title": "Smoke Signals", "US Gross": 6719300, "Worldwide Gross": 7756617, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jun 26 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.9, "IMDB Votes": 5058}, {"Title": "Serial Mom", "US Gross": 7881335, "Worldwide Gross": 7881335, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Apr 13 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Savoy", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Waters", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.4, "IMDB Votes": 10999}, {"Title": "Sommersturm", "US Gross": 95204, "Worldwide Gross": 95204, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Mar 17 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Regent Releasing", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 5251}, {"Title": "Silent Movie", "US Gross": 36145695, "Worldwide Gross": 36145695, "US DVD Sales": null, "Production Budget": 4400000, "Release Date": "Jun 25 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Mel Brooks", "Rotten Tomatoes Rating": 89, "IMDB Rating": 6.4, "IMDB Votes": 6248}, {"Title": "The Santa Clause", "US Gross": 144833357, "Worldwide Gross": 189800000, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Nov 11 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "John Pasquin", "Rotten Tomatoes Rating": 79, "IMDB Rating": 6.1, "IMDB Votes": 17773}, {"Title": "The Singles Ward", "US Gross": 1250798, "Worldwide Gross": 1250798, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Feb 01 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Halestorm Entertainment", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.7, "IMDB Votes": 736}, {"Title": "Sense and Sensibility", "US Gross": 42993774, "Worldwide Gross": 134993774, "US DVD Sales": null, "Production Budget": 16500000, "Release Date": "Dec 11 1995", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Ang Lee", "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.7, "IMDB Votes": 31279}, {"Title": "Singin' in the Rain", "US Gross": 3600000, "Worldwide Gross": 3600000, "US DVD Sales": null, "Production Budget": 2540000, "Release Date": "Apr 10 1952", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Stanley Donen", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.4, "IMDB Votes": 55352}, {"Title": "Solitude", "US Gross": 6260, "Worldwide Gross": 6260, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Jan 07 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Indican Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.8, "IMDB Votes": 82}, {"Title": "The Sound of Music", "US Gross": 163214286, "Worldwide Gross": 286214286, "US DVD Sales": null, "Production Budget": 8200000, "Release Date": "Apr 01 1965", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Robert Wise", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.3, "IMDB Votes": 45}, {"Title": "She's the One", "US Gross": 9482579, "Worldwide Gross": 13795053, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Aug 23 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Edward Burns", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6, "IMDB Votes": 8159}, {"Title": "Straight out of Brooklyn", "US Gross": 2712293, "Worldwide Gross": 2712293, "US DVD Sales": null, "Production Budget": 450000, "Release Date": "Dec 31 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 5.6, "IMDB Votes": 263}, {"Title": "Spaceballs", "US Gross": 38119483, "Worldwide Gross": 38119483, "US DVD Sales": null, "Production Budget": 22700000, "Release Date": "Jun 24 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Mel Brooks", "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.9, "IMDB Votes": 52434}, {"Title": "Speed", "US Gross": 121248145, "Worldwide Gross": 283200000, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 10 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Jan De Bont", "Rotten Tomatoes Rating": 90, "IMDB Rating": 2.6, "IMDB Votes": 4175}, {"Title": "Species", "US Gross": 60054449, "Worldwide Gross": 113354449, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Jul 07 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Roger Donaldson", "Rotten Tomatoes Rating": 39, "IMDB Rating": 5.6, "IMDB Votes": 21917}, {"Title": "Sphinx", "US Gross": 2000000, "Worldwide Gross": 11400000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 11 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Franklin J. Schaffner", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 478}, {"Title": "Spaced Invaders", "US Gross": 15000000, "Worldwide Gross": 15000000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Apr 27 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Patrick Read Johnson", "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.8, "IMDB Votes": 1464}, {"Title": "Spellbound", "US Gross": 7000000, "Worldwide Gross": 7000000, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Dec 31 1944", "MPAA Rating": "G", "Running Time min": null, "Distributor": "ThinkFilm", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.7, "IMDB Votes": 14665}, {"Title": "Splash", "US Gross": 62599495, "Worldwide Gross": 62599495, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Mar 09 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Ron Howard", "Rotten Tomatoes Rating": 91, "IMDB Rating": 6.2, "IMDB Votes": 21732}, {"Title": "Superman IV: The Quest for Peace", "US Gross": 11227824, "Worldwide Gross": 11227824, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Jul 24 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Sidney J. Furie", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.4, "IMDB Votes": 15164}, {"Title": "Superman II", "US Gross": 108185706, "Worldwide Gross": 108185706, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 19 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Richard Donner", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 29512}, {"Title": "Superman III", "US Gross": 59950623, "Worldwide Gross": 59950623, "US DVD Sales": null, "Production Budget": 39000000, "Release Date": "Jun 17 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 4.7, "IMDB Votes": 18070}, {"Title": "Sparkler", "US Gross": 5494, "Worldwide Gross": 5494, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Mar 19 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Strand", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.5, "IMDB Votes": 320}, {"Title": "Superman", "US Gross": 134218018, "Worldwide Gross": 300200000, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Dec 15 1978", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Richard Donner", "Rotten Tomatoes Rating": 94, "IMDB Rating": 4.9, "IMDB Votes": 129}, {"Title": "The Specialist", "US Gross": 57362581, "Worldwide Gross": 57362581, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Oct 07 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 4, "IMDB Rating": 4.9, "IMDB Votes": 18749}, {"Title": "The Sorcerer", "US Gross": 12000000, "Worldwide Gross": 12000000, "US DVD Sales": null, "Production Budget": 21600000, "Release Date": "Jun 24 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "William Friedkin", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 563}, {"Title": "Sisters in Law", "US Gross": 33312, "Worldwide Gross": 33312, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Apr 12 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Women Make Movies", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 203}, {"Title": "Smilla's Sense of Snow", "US Gross": 2221994, "Worldwide Gross": 2221994, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Feb 28 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Bille August", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6.1, "IMDB Votes": 7280}, {"Title": "Assassins", "US Gross": 30306268, "Worldwide Gross": 83306268, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Oct 06 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Richard Donner", "Rotten Tomatoes Rating": 9, "IMDB Rating": 5.9, "IMDB Votes": 23370}, {"Title": "Star Trek: The Motion Picture", "US Gross": 82258456, "Worldwide Gross": 139000000, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 07 1979", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Robert Wise", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.2, "IMDB Votes": 25454}, {"Title": "Star Trek III: The Search for Spock", "US Gross": 76471046, "Worldwide Gross": 87000000, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jun 01 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Leonard Nimoy", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 22261}, {"Title": "Star Trek IV: The Voyage Home", "US Gross": 109713132, "Worldwide Gross": 133000000, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Nov 26 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Leonard Nimoy", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 26207}, {"Title": "Stand by Me", "US Gross": 52287414, "Worldwide Gross": 52287414, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Aug 08 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Rob Reiner", "Rotten Tomatoes Rating": 94, "IMDB Rating": 8.2, "IMDB Votes": 90143}, {"Title": "Stone Cold", "US Gross": 9286314, "Worldwide Gross": 9286314, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "May 17 1991", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 4.6, "IMDB Votes": 52}, {"Title": "The Stewardesses", "US Gross": 13500000, "Worldwide Gross": 25000000, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Jul 25 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.3, "IMDB Votes": 86}, {"Title": "Street Fighter", "US Gross": 33423000, "Worldwide Gross": 99423000, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 23 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 3.3, "IMDB Votes": 25407}, {"Title": "Star Trek II: The Wrath of Khan", "US Gross": 79912963, "Worldwide Gross": 96800000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jun 04 1982", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 36131}, {"Title": "Steal (Canadian Release)", "US Gross": 220944, "Worldwide Gross": 220944, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 25 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Sting", "US Gross": 159616327, "Worldwide Gross": 159616327, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Dec 25 1973", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": null, "Creative Type": "Historical Fiction", "Director": "George Roy Hill", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.4, "IMDB Votes": 65866}, {"Title": "Stonewall", "US Gross": 304602, "Worldwide Gross": 304602, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jul 26 1996", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Strand", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 741}, {"Title": "Star Trek V: The Final Frontier", "US Gross": 52210049, "Worldwide Gross": 70200000, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 09 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 20600}, {"Title": "Star Trek VI: The Undiscovered Country", "US Gross": 74888996, "Worldwide Gross": 96900000, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Dec 06 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 23546}, {"Title": "Star Trek: Generations", "US Gross": 75671262, "Worldwide Gross": 120000000, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Nov 18 1994", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 26465}, {"Title": "Stripes", "US Gross": 85300000, "Worldwide Gross": 85300000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jun 26 1981", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ivan Reitman", "Rotten Tomatoes Rating": 88, "IMDB Rating": 6.8, "IMDB Votes": 19618}, {"Title": "Striptease", "US Gross": 32773011, "Worldwide Gross": 32773011, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 28 1996", "MPAA Rating": "R", "Running Time min": 115, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Andrew Bergman", "Rotten Tomatoes Rating": 12, "IMDB Rating": 3.9, "IMDB Votes": 18012}, {"Title": "Star Wars Ep. IV: A New Hope", "US Gross": 460998007, "Worldwide Gross": 797900000, "US DVD Sales": 11182540, "Production Budget": 11000000, "Release Date": "May 25 1977", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "George Lucas", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Saints and Soldiers", "US Gross": 1310470, "Worldwide Gross": 1310470, "US DVD Sales": null, "Production Budget": 780000, "Release Date": "Aug 06 2004", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "Excel Entertainment", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ryan Little", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 7581}, {"Title": "Steppin: The Movie", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Dec 31 2007", "MPAA Rating": null, "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.3, "IMDB Votes": 108}, {"Title": "Strangers on a Train", "US Gross": 7000000, "Worldwide Gross": 7000000, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Jul 03 1951", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.3, "IMDB Votes": 34284}, {"Title": "Sugar Hill", "US Gross": 18272447, "Worldwide Gross": 18272447, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 25 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.3, "IMDB Votes": 1627}, {"Title": "Stiff Upper Lips", "US Gross": 69582, "Worldwide Gross": 69582, "US DVD Sales": null, "Production Budget": 5700000, "Release Date": "Aug 27 1999", "MPAA Rating": null, "Running Time min": null, "Distributor": "Cowboy Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 6.1, "IMDB Votes": 543}, {"Title": "Shichinin no samurai", "US Gross": 271736, "Worldwide Gross": 271736, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Nov 19 1956", "MPAA Rating": null, "Running Time min": null, "Distributor": "Cowboy Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Akira Kurosawa", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.8, "IMDB Votes": 96698}, {"Title": "Sweet Charity", "US Gross": 8000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 31 1968", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Bob Fosse", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 1691}, {"Title": "Sands of Iwo Jima", "US Gross": 7800000, "Worldwide Gross": 7800000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Dec 31 1948", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.1, "IMDB Votes": 4160}, {"Title": "The Spy Who Loved Me", "US Gross": 46800000, "Worldwide Gross": 185400000, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Jul 13 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.1, "IMDB Votes": 24938}, {"Title": "The Swindle", "US Gross": 245359, "Worldwide Gross": 5045359, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 25 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Yorker", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 1417}, {"Title": "Swingers", "US Gross": 4505922, "Worldwide Gross": 6542637, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Oct 18 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Doug Liman", "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.2, "IMDB Votes": 431}, {"Title": "Snow White and the Seven Dwarfs", "US Gross": 184925485, "Worldwide Gross": 184925485, "US DVD Sales": null, "Production Budget": 1488000, "Release Date": "Dec 21 2037", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Musical", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.8, "IMDB Votes": 38141}, {"Title": "The Sweet Hereafter", "US Gross": 4306697, "Worldwide Gross": 4306697, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Oct 10 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Atom Egoyan", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.8, "IMDB Votes": 16280}, {"Title": "She Wore a Yellow Ribbon", "US Gross": 5400000, "Worldwide Gross": 5400000, "US DVD Sales": null, "Production Budget": 1600000, "Release Date": "Dec 31 1948", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Ford", "Rotten Tomatoes Rating": 100, "IMDB Rating": 7.3, "IMDB Votes": 5825}, {"Title": "Sex with Strangers", "US Gross": 247740, "Worldwide Gross": 247740, "US DVD Sales": null, "Production Budget": 1100000, "Release Date": "Feb 22 2002", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 39, "IMDB Rating": 5, "IMDB Votes": 151}, {"Title": "Spy Hard", "US Gross": 26936265, "Worldwide Gross": 26936265, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "May 24 1996", "MPAA Rating": "PG-13", "Running Time min": 81, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 7, "IMDB Rating": 4.7, "IMDB Votes": 12682}, {"Title": "Shi Yue Wei Cheng", "US Gross": 0, "Worldwide Gross": 44195779, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Dec 18 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 1795}, {"Title": "Tango", "US Gross": 1687311, "Worldwide Gross": 1687311, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Feb 12 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 1490}, {"Title": "The Age of Innocence", "US Gross": 32014993, "Worldwide Gross": 32014993, "US DVD Sales": null, "Production Budget": 34000000, "Release Date": "Sep 17 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.1, "IMDB Votes": 16000}, {"Title": "Talk Radio", "US Gross": 3468572, "Worldwide Gross": 3468572, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 01 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 80, "IMDB Rating": 7, "IMDB Votes": 5659}, {"Title": "The Texas Chainsaw Massacre", "US Gross": 26572439, "Worldwide Gross": 26572439, "US DVD Sales": null, "Production Budget": 140000, "Release Date": "Oct 18 1974", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": "Tobe Hooper", "Rotten Tomatoes Rating": 90, "IMDB Rating": 6.1, "IMDB Votes": 39172}, {"Title": "The Texas Chainsaw Massacre 2", "US Gross": 8025872, "Worldwide Gross": 8025872, "US DVD Sales": null, "Production Budget": 4700000, "Release Date": "Aug 22 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Cannon", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Tobe Hooper", "Rotten Tomatoes Rating": 43, "IMDB Rating": 5.1, "IMDB Votes": 7702}, {"Title": "Timecop", "US Gross": 44853581, "Worldwide Gross": 102053581, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Sep 16 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Peter Hyams", "Rotten Tomatoes Rating": 47, "IMDB Rating": 5.5, "IMDB Votes": 16570}, {"Title": "Tin Cup", "US Gross": 53854588, "Worldwide Gross": 75854588, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Aug 16 1996", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ron Shelton", "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.1, "IMDB Votes": 17274}, {"Title": "Torn Curtain", "US Gross": 13000000, "Worldwide Gross": 13000000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Jul 16 1966", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.6, "IMDB Votes": 8670}, {"Title": "To Die For", "US Gross": 21284514, "Worldwide Gross": 27688744, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Sep 27 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Gus Van Sant", "Rotten Tomatoes Rating": 87, "IMDB Rating": 6.8, "IMDB Votes": 18459}, {"Title": "Terror Train", "US Gross": 8000000, "Worldwide Gross": 8000000, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Dec 31 1979", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Roger Spottiswoode", "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.5, "IMDB Votes": 2479}, {"Title": "Teen Wolf Too", "US Gross": 7888000, "Worldwide Gross": 7888000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Nov 20 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Atlantic", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 2.8, "IMDB Votes": 5207}, {"Title": "The Fan", "US Gross": 18582965, "Worldwide Gross": 18582965, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Aug 16 1996", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.6, "IMDB Votes": 20640}, {"Title": "Timber Falls", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 2600000, "Release Date": "Dec 07 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Slowhand Cinema", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.3, "IMDB Votes": 2213}, {"Title": "Tae Guik Gi: The Brotherhood of War", "US Gross": 1110186, "Worldwide Gross": 69826708, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Sep 03 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IDP Distribution", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Incredibly True Adventure of Two Girls in Love", "US Gross": 2210408, "Worldwide Gross": 2477155, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Jun 16 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 1795}, {"Title": "There Goes My Baby", "US Gross": 125169, "Worldwide Gross": 125169, "US DVD Sales": null, "Production Budget": 10500000, "Release Date": "Sep 02 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 507}, {"Title": "Tank Girl", "US Gross": 4064333, "Worldwide Gross": 4064333, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 01 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 4.7, "IMDB Votes": 10772}, {"Title": "Top Gun", "US Gross": 176786701, "Worldwide Gross": 353786701, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "May 16 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 45, "IMDB Rating": 6.5, "IMDB Votes": 80013}, {"Title": "Thunderball", "US Gross": 63600000, "Worldwide Gross": 141200000, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Dec 29 1965", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 91, "IMDB Rating": 7, "IMDB Votes": 27245}, {"Title": "The Calling", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Dec 31 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.4, "IMDB Votes": 1113}, {"Title": "The Craft", "US Gross": 24769466, "Worldwide Gross": 55669466, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "May 03 1996", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": "Andrew Fleming", "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.9, "IMDB Votes": 21130}, {"Title": "It Happened One Night", "US Gross": 2500000, "Worldwide Gross": 2500000, "US DVD Sales": null, "Production Budget": 325000, "Release Date": "Dec 31 1933", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Romantic Comedy", "Creative Type": null, "Director": "Frank Capra", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.3, "IMDB Votes": 25074}, {"Title": "The Net", "US Gross": 50621733, "Worldwide Gross": 110521733, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Jul 28 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.6, "IMDB Votes": 24363}, {"Title": "La otra conquista", "US Gross": 886410, "Worldwide Gross": 886410, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Apr 19 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Hombre de Oro", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 584}, {"Title": "The Journey", "US Gross": 19800, "Worldwide Gross": 19800, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jul 11 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.4, "IMDB Votes": 74}, {"Title": "They Live", "US Gross": 13000000, "Worldwide Gross": 13000000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Nov 04 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "John Carpenter", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7, "IMDB Votes": 20995}, {"Title": "Tales from the Hood", "US Gross": 11784569, "Worldwide Gross": 11784569, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "May 24 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Savoy", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.8, "IMDB Votes": 1860}, {"Title": "Time Bandits", "US Gross": 37400000, "Worldwide Gross": 37400000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Nov 06 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Avco Embassy", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Terry Gilliam", "Rotten Tomatoes Rating": 94, "IMDB Rating": 6.9, "IMDB Votes": 22719}, {"Title": "Tombstone", "US Gross": 56505000, "Worldwide Gross": 56505000, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Dec 25 1993", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Western", "Creative Type": "Dramatization", "Director": "George P. Cosmatos", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.7, "IMDB Votes": 43688}, {"Title": "Time Changer", "US Gross": 1500711, "Worldwide Gross": 1500711, "US DVD Sales": null, "Production Budget": 825000, "Release Date": "Oct 25 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Five & Two Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 5, "IMDB Votes": 1029}, {"Title": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze", "US Gross": 78656813, "Worldwide Gross": 78656813, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 22 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.3, "IMDB Votes": 12742}, {"Title": "Teenage Mutant Ninja Turtles III", "US Gross": 42273609, "Worldwide Gross": 42273609, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Mar 19 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 4.3, "IMDB Votes": 9064}, {"Title": "Tango & Cash", "US Gross": 63408614, "Worldwide Gross": 63408614, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Dec 22 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Andrei Konchalovsky", "Rotten Tomatoes Rating": 39, "IMDB Rating": 5.8, "IMDB Votes": 25248}, {"Title": "Teenage Mutant Ninja Turtles", "US Gross": 135265915, "Worldwide Gross": 202000000, "US DVD Sales": null, "Production Budget": 13500000, "Release Date": "Mar 30 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "New Line", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Steve Barron", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 25867}, {"Title": "Topaz", "US Gross": 6000000, "Worldwide Gross": 6000000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 19 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.2, "IMDB Votes": 6389}, {"Title": "Taps", "US Gross": 35856053, "Worldwide Gross": 35856053, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Dec 09 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Harold Becker", "Rotten Tomatoes Rating": 79, "IMDB Rating": 6.5, "IMDB Votes": 6515}, {"Title": "Trainspotting", "US Gross": 16501785, "Worldwide Gross": 24000785, "US DVD Sales": null, "Production Budget": 3100000, "Release Date": "Jul 19 1996", "MPAA Rating": "R", "Running Time min": 94, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Danny Boyle", "Rotten Tomatoes Rating": 89, "IMDB Rating": 8.2, "IMDB Votes": 150483}, {"Title": "The Train", "US Gross": 6800000, "Worldwide Gross": 6800000, "US DVD Sales": null, "Production Budget": 5800000, "Release Date": "Mar 07 1965", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Frankenheimer", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.8, "IMDB Votes": 4692}, {"Title": "Troop Beverly Hills", "US Gross": 7190505, "Worldwide Gross": 7190505, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Mar 22 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.7, "IMDB Votes": 3427}, {"Title": "Trekkies", "US Gross": 617172, "Worldwide Gross": 617172, "US DVD Sales": null, "Production Budget": 375000, "Release Date": "May 21 1999", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 3004}, {"Title": "True Lies", "US Gross": 146282411, "Worldwide Gross": 365300000, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Jul 15 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "James Cameron", "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.2, "IMDB Votes": 80581}, {"Title": "Terminator 2: Judgment Day", "US Gross": 204859496, "Worldwide Gross": 516816151, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Jul 02 1991", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "James Cameron", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.5, "IMDB Votes": 237477}, {"Title": "Travellers and Magicians", "US Gross": 506793, "Worldwide Gross": 1058893, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Jan 07 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Zeitgeist", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 1069}, {"Title": "The Terminator", "US Gross": 38019031, "Worldwide Gross": 78019031, "US DVD Sales": null, "Production Budget": 6400000, "Release Date": "Oct 26 1984", "MPAA Rating": null, "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "James Cameron", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.1, "IMDB Votes": 179606}, {"Title": "Tremors", "US Gross": 16667084, "Worldwide Gross": 16667084, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jan 19 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.2, "IMDB Votes": 29840}, {"Title": "True Romance", "US Gross": 12281000, "Worldwide Gross": 12281000, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Sep 10 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.9, "IMDB Votes": 73829}, {"Title": "Tron", "US Gross": 26918576, "Worldwide Gross": 26918576, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Jul 09 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 68, "IMDB Rating": 2.9, "IMDB Votes": 923}, {"Title": "Trapeze", "US Gross": 14400000, "Worldwide Gross": 14400000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 31 1955", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.7, "IMDB Votes": 1570}, {"Title": "The Terrorist", "US Gross": 195043, "Worldwide Gross": 195043, "US DVD Sales": null, "Production Budget": 25000, "Release Date": "Jan 14 2000", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Phaedra Cinema", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 50}, {"Title": "Trois", "US Gross": 1161843, "Worldwide Gross": 1161843, "US DVD Sales": null, "Production Budget": 200000, "Release Date": "Feb 11 2000", "MPAA Rating": "NC-17", "Running Time min": null, "Distributor": "Rainforest Productions", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.3, "IMDB Votes": 360}, {"Title": "Things to Do in Denver when You're Dead", "US Gross": 529766, "Worldwide Gross": 529766, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 01 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 6.6, "IMDB Votes": 12789}, {"Title": "A Time to Kill", "US Gross": 108766007, "Worldwide Gross": 152266007, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 24 1996", "MPAA Rating": "R", "Running Time min": 150, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.1, "IMDB Votes": 38577}, {"Title": "Total Recall", "US Gross": 119394839, "Worldwide Gross": 261400000, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Jun 01 1990", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Paul Verhoeven", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.4, "IMDB Votes": 70355}, {"Title": "This Thing of Ours", "US Gross": 37227, "Worldwide Gross": 37227, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jul 18 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 316}, {"Title": "Tootsie", "US Gross": 177200000, "Worldwide Gross": 177200000, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 17 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Sydney Pollack", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.4, "IMDB Votes": 31669}, {"Title": "That Thing You Do!", "US Gross": 25857416, "Worldwide Gross": 31748615, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Oct 04 1996", "MPAA Rating": "PG", "Running Time min": 110, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Tom Hanks", "Rotten Tomatoes Rating": 92, "IMDB Rating": 6.7, "IMDB Votes": 25916}, {"Title": "The Trouble With Harry", "US Gross": 7000000, "Worldwide Gross": 7000000, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Oct 03 1955", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.2, "IMDB Votes": 11580}, {"Title": "Twins", "US Gross": 111936388, "Worldwide Gross": 216600000, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 09 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ivan Reitman", "Rotten Tomatoes Rating": 33, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Twister", "US Gross": 241888385, "Worldwide Gross": 495900000, "US DVD Sales": null, "Production Budget": 88000000, "Release Date": "May 10 1996", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Jan De Bont", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6, "IMDB Votes": 61665}, {"Title": "Towering Inferno", "US Gross": 116000000, "Worldwide Gross": 139700000, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Dec 17 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "John Guillermin", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Taxi Driver", "US Gross": 21100000, "Worldwide Gross": 21100000, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Feb 08 1976", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.6, "IMDB Votes": 155774}, {"Title": "Tycoon", "US Gross": 121016, "Worldwide Gross": 121016, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jun 13 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 456}, {"Title": "Toy Story", "US Gross": 191796233, "Worldwide Gross": 361948825, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Nov 22 1995", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "John Lasseter", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8.2, "IMDB Votes": 151143}, {"Title": "Twilight Zone: The Movie", "US Gross": 29500000, "Worldwide Gross": 29500000, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jun 24 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.3, "IMDB Votes": 12054}, {"Title": "Unforgettable", "US Gross": 2483790, "Worldwide Gross": 2483790, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Feb 23 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "John Dahl", "Rotten Tomatoes Rating": 23, "IMDB Rating": 5.7, "IMDB Votes": 2284}, {"Title": "UHF", "US Gross": 6157157, "Worldwide Gross": 6157157, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jul 21 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.6, "IMDB Votes": 12676}, {"Title": "Ulee's Gold", "US Gross": 9054736, "Worldwide Gross": 15600000, "US DVD Sales": null, "Production Budget": 2700000, "Release Date": "Jun 13 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 7, "IMDB Votes": 4041}, {"Title": "Under Siege 2: Dark Territory", "US Gross": 50024083, "Worldwide Gross": 104324083, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jul 14 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 34, "IMDB Rating": 5.1, "IMDB Votes": 15218}, {"Title": "The Untouchables", "US Gross": 76270454, "Worldwide Gross": 76270454, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jun 03 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 81, "IMDB Rating": 8, "IMDB Votes": 86097}, {"Title": "Under the Rainbow", "US Gross": 18826490, "Worldwide Gross": 18826490, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jul 31 1981", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 1263}, {"Title": "Veer-Zaara", "US Gross": 2938532, "Worldwide Gross": 7017859, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Nov 12 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Yash Raj Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 4155}, {"Title": "Videodrome", "US Gross": 2120439, "Worldwide Gross": 2120439, "US DVD Sales": null, "Production Budget": 5952000, "Release Date": "Feb 04 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "David Cronenberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 20080}, {"Title": "Les Visiteurs", "US Gross": 659000, "Worldwide Gross": 98754000, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jul 12 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 7393}, {"Title": "Couloirs du temps: Les visiteurs 2, Les", "US Gross": 146072, "Worldwide Gross": 26146072, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 27 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Valley of Decision", "US Gross": 9132000, "Worldwide Gross": 9132000, "US DVD Sales": null, "Production Budget": 2160000, "Release Date": "Dec 31 1944", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 682}, {"Title": "Vampire in Brooklyn", "US Gross": 19637147, "Worldwide Gross": 19637147, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Oct 27 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Wes Craven", "Rotten Tomatoes Rating": 11, "IMDB Rating": 4.3, "IMDB Votes": 8200}, {"Title": "The Verdict", "US Gross": 53977250, "Worldwide Gross": 53977250, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Dec 08 1982", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sidney Lumet", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.7, "IMDB Votes": 10864}, {"Title": "Virtuosity", "US Gross": 23998226, "Worldwide Gross": 23998226, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 04 1995", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 34, "IMDB Rating": 5.3, "IMDB Votes": 11079}, {"Title": "Everything Put Together", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Nov 02 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 418}, {"Title": "A View to a Kill", "US Gross": 50327960, "Worldwide Gross": 152627960, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "May 24 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Glen", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.1, "IMDB Votes": 23770}, {"Title": "The Work and the Glory: American Zion", "US Gross": 2025032, "Worldwide Gross": 2025032, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "Oct 21 2005", "MPAA Rating": "PG-13", "Running Time min": 100, "Distributor": "Vineyard Distribution", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 365}, {"Title": "A Walk on the Moon", "US Gross": 4741987, "Worldwide Gross": 4741987, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Mar 26 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Tony Goldwyn", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.4, "IMDB Votes": 4125}, {"Title": "The Work and the Glory", "US Gross": 3347647, "Worldwide Gross": 3347647, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Nov 24 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Excel Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 6, "IMDB Votes": 531}, {"Title": "The Work and the Story", "US Gross": 16137, "Worldwide Gross": 16137, "US DVD Sales": null, "Production Budget": 103000, "Release Date": "Oct 03 2003", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Off-Hollywood Distribution", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 82}, {"Title": "What the #$'! Do We Know", "US Gross": 10941801, "Worldwide Gross": 10941801, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Feb 06 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Captured Light", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Waiting for Guffman", "US Gross": 2922988, "Worldwide Gross": 2922988, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jan 31 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Christopher Guest", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 14880}, {"Title": "Who Framed Roger Rabbit?", "US Gross": 154112492, "Worldwide Gross": 351500000, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Jun 22 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.6, "IMDB Votes": 53541}, {"Title": "White Fang", "US Gross": 34729091, "Worldwide Gross": 34729091, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Jan 18 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Randal Kleiser", "Rotten Tomatoes Rating": 67, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "White Squall", "US Gross": 10229300, "Worldwide Gross": 10229300, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Feb 02 1996", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Adventure", "Creative Type": "Dramatization", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.4, "IMDB Votes": 8385}, {"Title": "What's Eating Gilbert Grape", "US Gross": 9170214, "Worldwide Gross": 9170214, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Dec 25 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": "Lasse Hallstrom", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.8, "IMDB Votes": 51219}, {"Title": "Witchboard", "US Gross": 7369373, "Worldwide Gross": 7369373, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 31 1986", "MPAA Rating": null, "Running Time min": null, "Distributor": "Cinema Guild", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 1666}, {"Title": "The Wiz", "US Gross": 13000000, "Worldwide Gross": 13000000, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Oct 24 1978", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Musical", "Creative Type": null, "Director": "Sidney Lumet", "Rotten Tomatoes Rating": 37, "IMDB Rating": 4.5, "IMDB Votes": 4896}, {"Title": "Walking and Talking", "US Gross": 1287480, "Worldwide Gross": 1615787, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Jul 17 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.5, "IMDB Votes": 1756}, {"Title": "The Wild Bunch", "US Gross": 509424, "Worldwide Gross": 509424, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Jun 18 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Sam Peckinpah", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.2, "IMDB Votes": 31196}, {"Title": "Wall Street", "US Gross": 43848100, "Worldwide Gross": 43848100, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 11 1987", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.3, "IMDB Votes": 35454}, {"Title": "Waterloo", "US Gross": null, "Worldwide Gross": null, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jan 01 1970", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Wrong Man", "US Gross": 2000000, "Worldwide Gross": 2000000, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Dec 23 1956", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Alfred Hitchcock", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.5, "IMDB Votes": 7531}, {"Title": "Woman Chaser", "US Gross": 110719, "Worldwide Gross": 110719, "US DVD Sales": null, "Production Budget": 150000, "Release Date": "Jun 23 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Wings", "US Gross": null, "Worldwide Gross": null, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Aug 12 2027", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.9, "IMDB Votes": 3035}, {"Title": "We're No Angels", "US Gross": 10555348, "Worldwide Gross": 10555348, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 15 1989", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Neil Jordan", "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.6, "IMDB Votes": 7839}, {"Title": "Wolf", "US Gross": 65011757, "Worldwide Gross": 131011757, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Jun 17 1994", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": "Mike Nichols", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6, "IMDB Votes": 20035}, {"Title": "Warriors of Virtue", "US Gross": 6448817, "Worldwide Gross": 6448817, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "May 02 1997", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Ronny Yu", "Rotten Tomatoes Rating": 10, "IMDB Rating": 4, "IMDB Votes": 1202}, {"Title": "War Games", "US Gross": 74433837, "Worldwide Gross": 74433837, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jun 03 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "John Badham", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 88}, {"Title": "Warlock", "US Gross": 8824553, "Worldwide Gross": 8824553, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jan 10 1991", "MPAA Rating": null, "Running Time min": null, "Distributor": "Trimark", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Steve Miner", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 4921}, {"Title": "War and Peace", "US Gross": 12500000, "Worldwide Gross": 12500000, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Dec 31 1955", "MPAA Rating": "PG", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "King Vidor", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.8, "IMDB Votes": 2923}, {"Title": "Warlock: The Armageddon", "US Gross": 3902679, "Worldwide Gross": 3902679, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Sep 24 1993", "MPAA Rating": null, "Running Time min": null, "Distributor": "Trimark", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 1888}, {"Title": "Wasabi", "US Gross": 81525, "Worldwide Gross": 7000000, "US DVD Sales": null, "Production Budget": 15300000, "Release Date": "Sep 27 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 11647}, {"Title": "West Side Story", "US Gross": 43700000, "Worldwide Gross": 43700000, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Oct 18 1961", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Robert Wise", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.7, "IMDB Votes": 29488}, {"Title": "When The Cat's Away", "US Gross": 1652472, "Worldwide Gross": 2525984, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Sep 20 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Welcome to the Dollhouse", "US Gross": 4198137, "Worldwide Gross": 4726732, "US DVD Sales": null, "Production Budget": 800000, "Release Date": "May 10 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Todd Solondz", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 13469}, {"Title": "Witness", "US Gross": 65532576, "Worldwide Gross": 65532576, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Feb 08 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Peter Weir", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.6, "IMDB Votes": 30460}, {"Title": "Waterworld", "US Gross": 88246220, "Worldwide Gross": 264246220, "US DVD Sales": null, "Production Budget": 175000000, "Release Date": "Jul 28 1995", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Kevin Reynolds", "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.7, "IMDB Votes": 54126}, {"Title": "Willy Wonka & the Chocolate Factory", "US Gross": 4000000, "Worldwide Gross": 4000000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Jun 30 1971", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.8, "IMDB Votes": 46824}, {"Title": "Wayne's World", "US Gross": 121697323, "Worldwide Gross": 183097323, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Feb 14 1992", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Penelope Spheeris", "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.9, "IMDB Votes": 42570}, {"Title": "Wyatt Earp", "US Gross": 25052000, "Worldwide Gross": 25052000, "US DVD Sales": null, "Production Budget": 63000000, "Release Date": "Jun 24 1994", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Western", "Creative Type": "Dramatization", "Director": "Lawrence Kasdan", "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.4, "IMDB Votes": 15614}, {"Title": "The Wizard of Oz", "US Gross": 28202232, "Worldwide Gross": 28202232, "US DVD Sales": null, "Production Budget": 2777000, "Release Date": "Aug 25 2039", "MPAA Rating": "G", "Running Time min": 103, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": "Fantasy", "Director": "King Vidor", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.3, "IMDB Votes": 102795}, {"Title": "Executive Decision", "US Gross": 56679192, "Worldwide Gross": 122079192, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Mar 15 1996", "MPAA Rating": "R", "Running Time min": 132, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.3, "IMDB Votes": 18569}, {"Title": "Exodus", "US Gross": 21750000, "Worldwide Gross": 21750000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jan 01 1960", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.8, "IMDB Votes": 3546}, {"Title": "The Exorcist", "US Gross": 204632868, "Worldwide Gross": 402500000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 26 1973", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "William Friedkin", "Rotten Tomatoes Rating": 84, "IMDB Rating": 8.1, "IMDB Votes": 103131}, {"Title": "Extreme Measures", "US Gross": 17378193, "Worldwide Gross": 17378193, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Sep 27 1996", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Michael Apted", "Rotten Tomatoes Rating": 55, "IMDB Rating": 5.9, "IMDB Votes": 8038}, {"Title": "You Can't Take It With You", "US Gross": 4000000, "Worldwide Gross": 4000000, "US DVD Sales": null, "Production Budget": 1644000, "Release Date": "Dec 31 1937", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Frank Capra", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8, "IMDB Votes": 8597}, {"Title": "Eye for an Eye", "US Gross": 26792700, "Worldwide Gross": 26792700, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jan 12 1996", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Schlesinger", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 4837}, {"Title": "Young Guns", "US Gross": 44726644, "Worldwide Gross": 44726644, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Aug 12 1988", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.6, "IMDB Votes": 21404}, {"Title": "Young Frankenstein", "US Gross": 86300000, "Worldwide Gross": 86300000, "US DVD Sales": 15500333, "Production Budget": 2800000, "Release Date": "Dec 15 1974", "MPAA Rating": null, "Running Time min": null, "Distributor": "20th Century Fox", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Mel Brooks", "Rotten Tomatoes Rating": 93, "IMDB Rating": 8, "IMDB Votes": 57106}, {"Title": "Yentl", "US Gross": 39012241, "Worldwide Gross": 39012241, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Nov 18 1983", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM/UA Classics", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": null, "Director": "Barbra Streisand", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.2, "IMDB Votes": 4952}, {"Title": "You Only Live Twice", "US Gross": 43100000, "Worldwide Gross": 111600000, "US DVD Sales": null, "Production Budget": 9500000, "Release Date": "Jun 13 1967", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 70, "IMDB Rating": 7, "IMDB Votes": 24701}, {"Title": "Ayurveda: Art of Being", "US Gross": 16892, "Worldwide Gross": 2066892, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Jul 19 2002", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Kino International", "Source": null, "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 181}, {"Title": "Young Sherlock Holmes", "US Gross": 19739000, "Worldwide Gross": 19739000, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Dec 04 1985", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.5, "IMDB Votes": 7293}, {"Title": "102 Dalmatians", "US Gross": 66941559, "Worldwide Gross": 66941559, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Nov 22 2000", "MPAA Rating": "G", "Running Time min": 100, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Kevin Lima", "Rotten Tomatoes Rating": 30, "IMDB Rating": 4.4, "IMDB Votes": 7147}, {"Title": "Ten Things I Hate About You", "US Gross": 38177966, "Worldwide Gross": 38177966, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Mar 31 1999", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Walt Disney Pictures", "Source": "Based on Play", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 61910}, {"Title": "10,000 B.C.", "US Gross": 94784201, "Worldwide Gross": 269065678, "US DVD Sales": 27044045, "Production Budget": 105000000, "Release Date": "Mar 07 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Roland Emmerich", "Rotten Tomatoes Rating": 9, "IMDB Rating": 5.8, "IMDB Votes": 134}, {"Title": "10th & Wolf", "US Gross": 54702, "Worldwide Gross": 54702, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Aug 18 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Robert Moresco", "Rotten Tomatoes Rating": 19, "IMDB Rating": 6.3, "IMDB Votes": 3655}, {"Title": "11:14", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Aug 12 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 18261}, {"Title": "Cloverfield", "US Gross": 80048433, "Worldwide Gross": 170764033, "US DVD Sales": 29180398, "Production Budget": 25000000, "Release Date": "Jan 18 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Matt Reeves", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.4, "IMDB Votes": 136068}, {"Title": "12 Rounds", "US Gross": 12234694, "Worldwide Gross": 18184083, "US DVD Sales": 8283859, "Production Budget": 20000000, "Release Date": "Mar 27 2009", "MPAA Rating": "PG-13", "Running Time min": 108, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.4, "IMDB Votes": 8914}, {"Title": "Thirteen Conversations About One Thing", "US Gross": 3287435, "Worldwide Gross": 3705923, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "May 24 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 6188}, {"Title": "13 Going On 30", "US Gross": 57139723, "Worldwide Gross": 96439723, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Apr 23 2004", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Gary Winick", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 32634}, {"Title": "Thirteen Ghosts", "US Gross": 41867960, "Worldwide Gross": 68467960, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Oct 26 2001", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 23243}, {"Title": 1408, "US Gross": 71985628, "Worldwide Gross": 128529299, "US DVD Sales": 49668544, "Production Budget": 22500000, "Release Date": "Jun 22 2007", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.9, "IMDB Votes": 72913}, {"Title": "15 Minutes", "US Gross": 24375436, "Worldwide Gross": 56331864, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Mar 09 2001", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": 6.1, "IMDB Votes": 25566}, {"Title": "16 to Life", "US Gross": 10744, "Worldwide Gross": 10744, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 03 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": "Waterdog Films", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "16 Blocks", "US Gross": 36895141, "Worldwide Gross": 65595141, "US DVD Sales": 17523555, "Production Budget": 45000000, "Release Date": "Mar 03 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Richard Donner", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.7, "IMDB Votes": 41207}, {"Title": "One Man's Hero", "US Gross": 229311, "Worldwide Gross": 229311, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Sep 24 1999", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 627}, {"Title": "First Daughter", "US Gross": 9055010, "Worldwide Gross": 10419084, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 24 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Forest Whitaker", "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.7, "IMDB Votes": 6839}, {"Title": 2012, "US Gross": 166112167, "Worldwide Gross": 766812167, "US DVD Sales": 50736023, "Production Budget": 200000000, "Release Date": "Nov 13 2009", "MPAA Rating": "PG-13", "Running Time min": 158, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Roland Emmerich", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.2, "IMDB Votes": 396}, {"Title": 2046, "US Gross": 1442338, "Worldwide Gross": 19202856, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Aug 05 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Wong Kar-wai", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 19431}, {"Title": "20 Dates", "US Gross": 541636, "Worldwide Gross": 541636, "US DVD Sales": null, "Production Budget": 66000, "Release Date": "Feb 26 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 1423}, {"Title": 21, "US Gross": 81159365, "Worldwide Gross": 157852532, "US DVD Sales": 25789928, "Production Budget": 35000000, "Release Date": "Mar 21 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Robert Luketic", "Rotten Tomatoes Rating": 35, "IMDB Rating": 6.7, "IMDB Votes": 60918}, {"Title": "21 Grams", "US Gross": 16248701, "Worldwide Gross": 60448701, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Nov 21 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Alejandro Gonzalez Inarritu", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.9, "IMDB Votes": 77910}, {"Title": "25th Hour", "US Gross": 13084595, "Worldwide Gross": 23928503, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Dec 19 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.9, "IMDB Votes": 58781}, {"Title": "28 Days", "US Gross": 37035515, "Worldwide Gross": 62063972, "US DVD Sales": null, "Production Budget": 43000000, "Release Date": "Apr 14 2000", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Betty Thomas", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.8, "IMDB Votes": 17937}, {"Title": "28 Days Later...", "US Gross": 45064915, "Worldwide Gross": 82719885, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jun 27 2003", "MPAA Rating": "R", "Running Time min": 113, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Danny Boyle", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.6, "IMDB Votes": 103525}, {"Title": "28 Weeks Later", "US Gross": 28638916, "Worldwide Gross": 64238440, "US DVD Sales": 24422887, "Production Budget": 15000000, "Release Date": "May 11 2007", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 69558}, {"Title": "Two Brothers", "US Gross": 18947630, "Worldwide Gross": 39925603, "US DVD Sales": null, "Production Budget": 72000000, "Release Date": "Jun 25 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Kids Fiction", "Director": "Jean-Jacques Annaud", "Rotten Tomatoes Rating": 77, "IMDB Rating": 6, "IMDB Votes": 127}, {"Title": "Cop Out", "US Gross": 44875481, "Worldwide Gross": 44875481, "US DVD Sales": 11433110, "Production Budget": 37000000, "Release Date": "Feb 26 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.7, "IMDB Votes": 16520}, {"Title": "Two Lovers", "US Gross": 3149034, "Worldwide Gross": 11549034, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Feb 13 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "James Gray", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 10325}, {"Title": "2 For the Money", "US Gross": 22991379, "Worldwide Gross": 27848418, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 07 2005", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "D.J. Caruso", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Secondhand Lions", "US Gross": 42023715, "Worldwide Gross": 47855342, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 19 2003", "MPAA Rating": "PG", "Running Time min": 111, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.5, "IMDB Votes": 19040}, {"Title": "Two Can Play That Game", "US Gross": 22235901, "Worldwide Gross": 22391450, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Sep 07 2001", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 43, "IMDB Rating": 5.6, "IMDB Votes": 2370}, {"Title": "Two Weeks Notice", "US Gross": 93354918, "Worldwide Gross": 199043309, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 20 2002", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.8, "IMDB Votes": 35515}, {"Title": 300, "US Gross": 210614939, "Worldwide Gross": 456068181, "US DVD Sales": 261252400, "Production Budget": 60000000, "Release Date": "Mar 09 2007", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Zack Snyder", "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.8, "IMDB Votes": 235508}, {"Title": "30 Days of Night", "US Gross": 39568996, "Worldwide Gross": 75066323, "US DVD Sales": 26908243, "Production Budget": 30000000, "Release Date": "Oct 19 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.6, "IMDB Votes": 52518}, {"Title": "Three Kings", "US Gross": 60652036, "Worldwide Gross": 107752036, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Oct 01 1999", "MPAA Rating": "R", "Running Time min": 115, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "David O. Russell", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.3, "IMDB Votes": 68726}, {"Title": "3000 Miles to Graceland", "US Gross": 15738632, "Worldwide Gross": 18708848, "US DVD Sales": null, "Production Budget": 62000000, "Release Date": "Feb 23 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 5.6, "IMDB Votes": 20094}, {"Title": "3 Strikes", "US Gross": 9821335, "Worldwide Gross": 9821335, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Mar 01 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.9, "IMDB Votes": 905}, {"Title": "3:10 to Yuma", "US Gross": 53606916, "Worldwide Gross": 69791889, "US DVD Sales": 51359371, "Production Budget": 48000000, "Release Date": "Sep 02 2007", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "Lionsgate", "Source": "Remake", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "James Mangold", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.9, "IMDB Votes": 98355}, {"Title": "40 Days and 40 Nights", "US Gross": 37939782, "Worldwide Gross": 95092667, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Mar 01 2002", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Michael Lehmann", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.4, "IMDB Votes": 27912}, {"Title": "The 40 Year-old Virgin", "US Gross": 109449237, "Worldwide Gross": 177339049, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Aug 19 2005", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Judd Apatow", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 94557}, {"Title": "Four Brothers", "US Gross": 74494381, "Worldwide Gross": 92494381, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 12 2005", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Singleton", "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.8, "IMDB Votes": 38311}, {"Title": "Four Christmases", "US Gross": 120146040, "Worldwide Gross": 163546040, "US DVD Sales": 26029004, "Production Budget": 80000000, "Release Date": "Nov 26 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Seth Gordon", "Rotten Tomatoes Rating": 25, "IMDB Rating": 5.7, "IMDB Votes": 14690}, {"Title": "The Four Feathers", "US Gross": 18306166, "Worldwide Gross": 29882645, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 20 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Shekhar Kapur", "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.3, "IMDB Votes": 13204}, {"Title": "The Fourth Kind", "US Gross": 26218170, "Worldwide Gross": 41826604, "US DVD Sales": 6244985, "Production Budget": 10000000, "Release Date": "Nov 06 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 6, "IMDB Votes": 16107}, {"Title": "4 luni, 3 saptamani si 2 zile", "US Gross": 1196321, "Worldwide Gross": 4723542, "US DVD Sales": null, "Production Budget": 900000, "Release Date": "Jan 25 2008", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "50 First Dates", "US Gross": 120776832, "Worldwide Gross": 196376832, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Feb 13 2004", "MPAA Rating": "PG-13", "Running Time min": 99, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Segal", "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.8, "IMDB Votes": 64701}, {"Title": "Six-String Samurai", "US Gross": 134624, "Worldwide Gross": 134624, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Sep 18 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Palm Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.4, "IMDB Votes": 3462}, {"Title": "The 6th Day", "US Gross": 34543701, "Worldwide Gross": 96024898, "US DVD Sales": null, "Production Budget": 82000000, "Release Date": "Nov 17 2000", "MPAA Rating": "PG-13", "Running Time min": 123, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Roger Spottiswoode", "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.8, "IMDB Votes": 32606}, {"Title": "Seven Pounds", "US Gross": 69951824, "Worldwide Gross": 166617328, "US DVD Sales": 27601737, "Production Budget": 54000000, "Release Date": "Dec 19 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Gabriele Muccino", "Rotten Tomatoes Rating": 27, "IMDB Rating": 7.6, "IMDB Votes": 62718}, {"Title": "88 Minutes", "US Gross": 16930884, "Worldwide Gross": 32955399, "US DVD Sales": 11385055, "Production Budget": 30000000, "Release Date": "Apr 18 2008", "MPAA Rating": "R", "Running Time min": 106, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Jon Avnet", "Rotten Tomatoes Rating": 5, "IMDB Rating": 5.9, "IMDB Votes": 31205}, {"Title": "Eight Below", "US Gross": 81612565, "Worldwide Gross": 120612565, "US DVD Sales": 104578578, "Production Budget": 40000000, "Release Date": "Feb 17 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Frank Marshall", "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.3, "IMDB Votes": 17717}, {"Title": "Eight Legged Freaks", "US Gross": 17266505, "Worldwide Gross": 17266505, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jul 17 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 5.4, "IMDB Votes": 18173}, {"Title": "8 Mile", "US Gross": 116724075, "Worldwide Gross": 242924075, "US DVD Sales": null, "Production Budget": 41000000, "Release Date": "Nov 08 2002", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Curtis Hanson", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.7, "IMDB Votes": 55877}, {"Title": "8 femmes", "US Gross": 3076425, "Worldwide Gross": 42376425, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Sep 20 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Based on Play", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 13631}, {"Title": 9, "US Gross": 31749894, "Worldwide Gross": 46603791, "US DVD Sales": 8655698, "Production Budget": 30000000, "Release Date": "Sep 09 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Shane Acker", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 1488}, {"Title": "Nine Queens", "US Gross": 1222889, "Worldwide Gross": 12412889, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Apr 19 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Whole Ten Yards", "US Gross": 16323969, "Worldwide Gross": 26323969, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Apr 09 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Howard Deutch", "Rotten Tomatoes Rating": 4, "IMDB Rating": 5.1, "IMDB Votes": 20807}, {"Title": "The Whole Nine Yards", "US Gross": 57262492, "Worldwide Gross": 85262492, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Feb 18 2000", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 45, "IMDB Rating": 6.6, "IMDB Votes": 42928}, {"Title": "About a Boy", "US Gross": 40803000, "Worldwide Gross": 129949664, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "May 17 2002", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Paul Weitz", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.4, "IMDB Votes": 48875}, {"Title": "A Bug's Life", "US Gross": 162798565, "Worldwide Gross": 363109485, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Nov 20 1998", "MPAA Rating": "G", "Running Time min": 96, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "John Lasseter", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.3, "IMDB Votes": 56866}, {"Title": "Abandon", "US Gross": 10719367, "Worldwide Gross": 12219367, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Oct 18 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.8, "IMDB Votes": 5361}, {"Title": "Absolute Power", "US Gross": 50068310, "Worldwide Gross": 50068310, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 14 1997", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.5, "IMDB Votes": 20154}, {"Title": "Tristram Shandy: A Cock and Bull Story", "US Gross": 1253413, "Worldwide Gross": 3061763, "US DVD Sales": null, "Production Budget": 4750000, "Release Date": "Jan 27 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Picturehouse", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Michael Winterbottom", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Adoration", "US Gross": 294244, "Worldwide Gross": 294244, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "May 08 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Atom Egoyan", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 1437}, {"Title": "Adaptation", "US Gross": 22498520, "Worldwide Gross": 22498520, "US DVD Sales": null, "Production Budget": 18500000, "Release Date": "Dec 06 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Spike Jonze", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.9, "IMDB Votes": 67135}, {"Title": "Anything Else", "US Gross": 3203044, "Worldwide Gross": 13203044, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Sep 19 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.4, "IMDB Votes": 13010}, {"Title": "Antwone Fisher", "US Gross": 21078145, "Worldwide Gross": 23367586, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Dec 19 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Denzel Washington", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.3, "IMDB Votes": 13258}, {"Title": "Aeon Flux", "US Gross": 25857987, "Worldwide Gross": 47953341, "US DVD Sales": 21927972, "Production Budget": 55000000, "Release Date": "Dec 02 2005", "MPAA Rating": "PG-13", "Running Time min": 88, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 8.1, "IMDB Votes": 1193}, {"Title": "After the Sunset", "US Gross": 28328132, "Worldwide Gross": 38329114, "US DVD Sales": null, "Production Budget": 57000000, "Release Date": "Nov 12 2004", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Brett Ratner", "Rotten Tomatoes Rating": 18, "IMDB Rating": 6.2, "IMDB Votes": 19793}, {"Title": "A Good Year", "US Gross": 7459300, "Worldwide Gross": 42064105, "US DVD Sales": 7342760, "Production Budget": 35000000, "Release Date": "Nov 10 2006", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 24, "IMDB Rating": 6.8, "IMDB Votes": 23149}, {"Title": "Agora", "US Gross": 599903, "Worldwide Gross": 32912303, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "May 28 2010", "MPAA Rating": "R", "Running Time min": 141, "Distributor": "Newmarket Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 10054}, {"Title": "Air Bud", "US Gross": 24646936, "Worldwide Gross": 27555061, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 01 1997", "MPAA Rating": "PG", "Running Time min": 97, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Charles Martin Smith", "Rotten Tomatoes Rating": 45, "IMDB Rating": 4.6, "IMDB Votes": 4698}, {"Title": "Air Force One", "US Gross": 172956409, "Worldwide Gross": 315268353, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Jul 25 1997", "MPAA Rating": "R", "Running Time min": 124, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Wolfgang Petersen", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.3, "IMDB Votes": 61394}, {"Title": "Akeelah and the Bee", "US Gross": 18848430, "Worldwide Gross": 18948425, "US DVD Sales": 25684049, "Production Budget": 8000000, "Release Date": "Apr 28 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.6, "IMDB Votes": 8245}, {"Title": "All the King's Men", "US Gross": 7221458, "Worldwide Gross": 9521458, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Sep 22 2006", "MPAA Rating": "PG-13", "Running Time min": 128, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Steven Zaillian", "Rotten Tomatoes Rating": 11, "IMDB Rating": 6, "IMDB Votes": 11994}, {"Title": "The Alamo", "US Gross": 22406362, "Worldwide Gross": 23911362, "US DVD Sales": null, "Production Budget": 92000000, "Release Date": "Apr 09 2004", "MPAA Rating": "PG-13", "Running Time min": 137, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Western", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.9, "IMDB Votes": 10063}, {"Title": "All About the Benjamins", "US Gross": 25482931, "Worldwide Gross": 25873145, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Mar 08 2002", "MPAA Rating": "R", "Running Time min": 95, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Bray", "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.3, "IMDB Votes": 4366}, {"Title": "Albino Alligator", "US Gross": 353480, "Worldwide Gross": 353480, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jan 17 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": "Kevin Spacey", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 4377}, {"Title": "Sweet Home Alabama", "US Gross": 127214072, "Worldwide Gross": 163379330, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Sep 27 2002", "MPAA Rating": "PG-13", "Running Time min": 109, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Andy Tennant", "Rotten Tomatoes Rating": 37, "IMDB Rating": 5.8, "IMDB Votes": 29891}, {"Title": "Fat Albert", "US Gross": 48114556, "Worldwide Gross": 48563556, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Dec 25 2004", "MPAA Rating": "PG", "Running Time min": 93, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Joel Zwick", "Rotten Tomatoes Rating": 21, "IMDB Rating": 4, "IMDB Votes": 4801}, {"Title": "Alice in Wonderland", "US Gross": 334191110, "Worldwide Gross": 1023291110, "US DVD Sales": 70909558, "Production Budget": 200000000, "Release Date": "Mar 05 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Tim Burton", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.7, "IMDB Votes": 63458}, {"Title": "Alfie", "US Gross": 13395939, "Worldwide Gross": 35195939, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Nov 05 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Charles Shyer", "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.1, "IMDB Votes": 20769}, {"Title": "It's All Gone Pete Tong", "US Gross": 120620, "Worldwide Gross": 1470620, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Apr 15 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Matson", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 7631}, {"Title": "Ali", "US Gross": 58183966, "Worldwide Gross": 84383966, "US DVD Sales": null, "Production Budget": 109000000, "Release Date": "Dec 25 2001", "MPAA Rating": "R", "Running Time min": 159, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Michael Mann", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.6, "IMDB Votes": 31785}, {"Title": "Alien: Resurrection", "US Gross": 47795018, "Worldwide Gross": 160700000, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Nov 26 1997", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Jean-Pierre Jeunet", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 66141}, {"Title": "Alien", "US Gross": 80930630, "Worldwide Gross": 203630630, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "May 25 1979", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.5, "IMDB Votes": 180387}, {"Title": "A Lot Like Love", "US Gross": 21835784, "Worldwide Gross": 47835784, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 22 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.4, "IMDB Votes": 17929}, {"Title": "All the Pretty Horses", "US Gross": 15527125, "Worldwide Gross": 18120267, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Dec 25 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Billy Bob Thornton", "Rotten Tomatoes Rating": 32, "IMDB Rating": 5.7, "IMDB Votes": 6511}, {"Title": "Almost Famous", "US Gross": 32522352, "Worldwide Gross": 47371191, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Sep 15 2000", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Dramatization", "Director": "Cameron Crowe", "Rotten Tomatoes Rating": 88, "IMDB Rating": 8, "IMDB Votes": 94424}, {"Title": "Evan Almighty", "US Gross": 100289690, "Worldwide Gross": 173219280, "US DVD Sales": 38038256, "Production Budget": 175000000, "Release Date": "Jun 22 2007", "MPAA Rating": "PG", "Running Time min": 78, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Tom Shadyac", "Rotten Tomatoes Rating": 23, "IMDB Rating": 5.5, "IMDB Votes": 43164}, {"Title": "Bruce Almighty", "US Gross": 242704995, "Worldwide Gross": 485004995, "US DVD Sales": null, "Production Budget": 81000000, "Release Date": "May 23 2003", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Tom Shadyac", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.6, "IMDB Votes": 92494}, {"Title": "All or Nothing", "US Gross": 184255, "Worldwide Gross": 184255, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Oct 25 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": "Mike Leigh", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Alone in the Dark", "US Gross": 5178569, "Worldwide Gross": 8178569, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jan 28 2005", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Lionsgate", "Source": "Based on Game", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Uwe Boll", "Rotten Tomatoes Rating": 1, "IMDB Rating": 2.3, "IMDB Votes": 26028}, {"Title": "Alpha and Omega 3D", "US Gross": 10115431, "Worldwide Gross": 10115431, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Sep 17 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 83}, {"Title": "Along Came a Spider", "US Gross": 74058698, "Worldwide Gross": 105159085, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Apr 06 2001", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Lee Tamahori", "Rotten Tomatoes Rating": 32, "IMDB Rating": 6.1, "IMDB Votes": 22994}, {"Title": "The Dangerous Lives of Altar Boys", "US Gross": 1779284, "Worldwide Gross": 1779284, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jun 14 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 77, "IMDB Rating": 6.9, "IMDB Votes": 7943}, {"Title": "Alatriste", "US Gross": 0, "Worldwide Gross": 22860477, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Dec 31 2007", "MPAA Rating": null, "Running Time min": 135, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 4944}, {"Title": "Alvin and the Chipmunks", "US Gross": 217326974, "Worldwide Gross": 360578644, "US DVD Sales": 137516182, "Production Budget": 55000000, "Release Date": "Dec 14 2007", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Tim Hill", "Rotten Tomatoes Rating": 27, "IMDB Rating": 5.5, "IMDB Votes": 19200}, {"Title": "Alex & Emma", "US Gross": 14208384, "Worldwide Gross": 15358583, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 20 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Rob Reiner", "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.4, "IMDB Votes": 6539}, {"Title": "Alexander", "US Gross": 34297191, "Worldwide Gross": 167297191, "US DVD Sales": null, "Production Budget": 155000000, "Release Date": "Nov 24 2004", "MPAA Rating": "R", "Running Time min": 175, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Adventure", "Creative Type": "Dramatization", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 16, "IMDB Rating": 5.4, "IMDB Votes": 59498}, {"Title": "El Crimen de Padre", "US Gross": 5719000, "Worldwide Gross": 5719000, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Nov 15 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Goldwyn Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "American Beauty", "US Gross": 130058047, "Worldwide Gross": 356258047, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Sep 15 1999", "MPAA Rating": "R", "Running Time min": 118, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sam Mendes", "Rotten Tomatoes Rating": 89, "IMDB Rating": 8.6, "IMDB Votes": 292562}, {"Title": "An American Carol", "US Gross": 7013191, "Worldwide Gross": 7013191, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 03 2008", "MPAA Rating": "PG-13", "Running Time min": 84, "Distributor": "Vivendi Entertainment", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "David Zucker", "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.5, "IMDB Votes": 6000}, {"Title": "American Dreamz", "US Gross": 7314027, "Worldwide Gross": 16510971, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Apr 21 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Paul Weitz", "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.7, "IMDB Votes": 15097}, {"Title": "Amelia", "US Gross": 14246488, "Worldwide Gross": 19722782, "US DVD Sales": 5763807, "Production Budget": 40000000, "Release Date": "Oct 23 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Mira Nair", "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.7, "IMDB Votes": 3238}, {"Title": "Le Fabuleux destin d'AmÈlie Poulain", "US Gross": 33201661, "Worldwide Gross": 174201661, "US DVD Sales": null, "Production Budget": 10350000, "Release Date": "Nov 02 2001", "MPAA Rating": "R", "Running Time min": 122, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jean-Pierre Jeunet", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.5, "IMDB Votes": 181085}, {"Title": "American History X", "US Gross": 6719864, "Worldwide Gross": 6719864, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 30 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 8.6, "IMDB Votes": 224857}, {"Title": "American Gangster", "US Gross": 130164645, "Worldwide Gross": 265697825, "US DVD Sales": 72653959, "Production Budget": 100000000, "Release Date": "Nov 02 2007", "MPAA Rating": "R", "Running Time min": 157, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.9, "IMDB Votes": 114060}, {"Title": "An American Haunting", "US Gross": 16298046, "Worldwide Gross": 27844063, "US DVD Sales": 9905802, "Production Budget": 14000000, "Release Date": "May 05 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Freestyle Releasing", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.9, "IMDB Votes": 13510}, {"Title": "Amistad", "US Gross": 44212592, "Worldwide Gross": 44212592, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Dec 12 1997", "MPAA Rating": "R", "Running Time min": 152, "Distributor": "Dreamworks SKG", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.1, "IMDB Votes": 28477}, {"Title": "AimÈe & Jaguar", "US Gross": 927107, "Worldwide Gross": 927107, "US DVD Sales": null, "Production Budget": 6800000, "Release Date": "Aug 11 2000", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Zeitgeist", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 2974}, {"Title": "Amores Perros", "US Gross": 5383834, "Worldwide Gross": 20883834, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Mar 30 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Alejandro Gonzalez Inarritu", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.1, "IMDB Votes": 61083}, {"Title": "American Pie 2", "US Gross": 145096820, "Worldwide Gross": 286500000, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 10 2001", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.2, "IMDB Votes": 66751}, {"Title": "American Wedding", "US Gross": 104354205, "Worldwide Gross": 126425115, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Aug 01 2003", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 56, "IMDB Rating": 6.1, "IMDB Votes": 52210}, {"Title": "American Pie", "US Gross": 101800948, "Worldwide Gross": 234800000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jul 09 1999", "MPAA Rating": "R", "Running Time min": 95, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Paul Weitz", "Rotten Tomatoes Rating": 59, "IMDB Rating": 6.9, "IMDB Votes": 106624}, {"Title": "American Psycho", "US Gross": 15070285, "Worldwide Gross": 28674417, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Apr 14 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Historical Fiction", "Director": "Mary Harron", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.4, "IMDB Votes": 99424}, {"Title": "American Splendor", "US Gross": 6003587, "Worldwide Gross": 7978681, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Aug 15 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.6, "IMDB Votes": 23686}, {"Title": "America's Sweethearts", "US Gross": 93607673, "Worldwide Gross": 157627733, "US DVD Sales": null, "Production Budget": 46000000, "Release Date": "Jul 20 2001", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": 5.7, "IMDB Votes": 26899}, {"Title": "The Amityville Horror", "US Gross": 65233369, "Worldwide Gross": 108047131, "US DVD Sales": null, "Production Budget": 18500000, "Release Date": "Apr 15 2005", "MPAA Rating": "R", "Running Time min": 89, "Distributor": "MGM", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 24, "IMDB Rating": 5.8, "IMDB Votes": 26303}, {"Title": "Anacondas: The Hunt for the Blood Orchid", "US Gross": 31526393, "Worldwide Gross": 70326393, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Aug 27 2004", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Dwight H. Little", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.3, "IMDB Votes": 9565}, {"Title": "Anaconda", "US Gross": 65598907, "Worldwide Gross": 136998907, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Apr 11 1997", "MPAA Rating": "PG-13", "Running Time min": 89, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 4.2, "IMDB Votes": 29430}, {"Title": "Anastasia", "US Gross": 58403409, "Worldwide Gross": 139801410, "US DVD Sales": null, "Production Budget": 53000000, "Release Date": "Nov 14 1997", "MPAA Rating": "G", "Running Time min": 94, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": "Factual", "Director": "Don Bluth", "Rotten Tomatoes Rating": 85, "IMDB Rating": 6.6, "IMDB Votes": 16513}, {"Title": "Anchorman: The Legend of Ron Burgundy", "US Gross": 84136909, "Worldwide Gross": 89366354, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jul 09 2004", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Adam McKay", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 78249}, {"Title": "Angels & Demons", "US Gross": 133375846, "Worldwide Gross": 485975846, "US DVD Sales": 32746864, "Production Budget": 150000000, "Release Date": "May 15 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Ron Howard", "Rotten Tomatoes Rating": 35, "IMDB Rating": 6.7, "IMDB Votes": 60114}, {"Title": "Angela's Ashes", "US Gross": 13038660, "Worldwide Gross": 13038660, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Dec 24 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Alan Parker", "Rotten Tomatoes Rating": 52, "IMDB Rating": 7, "IMDB Votes": 10185}, {"Title": "Angel Eyes", "US Gross": 24044532, "Worldwide Gross": 24044532, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "May 18 2001", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": 5.5, "IMDB Votes": 11089}, {"Title": "Anger Management", "US Gross": 135560942, "Worldwide Gross": 195660942, "US DVD Sales": null, "Production Budget": 56000000, "Release Date": "Apr 11 2003", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Segal", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.1, "IMDB Votes": 57088}, {"Title": "A Night at the Roxbury", "US Gross": 30331165, "Worldwide Gross": 30331165, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Oct 02 1998", "MPAA Rating": "PG-13", "Running Time min": 81, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.7, "IMDB Votes": 23259}, {"Title": "The Animal", "US Gross": 55762229, "Worldwide Gross": 55762229, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Jun 01 2001", "MPAA Rating": "PG-13", "Running Time min": 83, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Luke Greenfield", "Rotten Tomatoes Rating": 30, "IMDB Rating": 4.6, "IMDB Votes": 18601}, {"Title": "Anna and the King", "US Gross": 39251128, "Worldwide Gross": 39251128, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Dec 17 1999", "MPAA Rating": "PG-13", "Running Time min": 147, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Andy Tennant", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.5, "IMDB Votes": 14881}, {"Title": "Analyze That", "US Gross": 32122249, "Worldwide Gross": 54994757, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 06 2002", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Harold Ramis", "Rotten Tomatoes Rating": 27, "IMDB Rating": 5.6, "IMDB Votes": 24090}, {"Title": "Analyze This", "US Gross": 106885658, "Worldwide Gross": 176885658, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Mar 05 1999", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Harold Ramis", "Rotten Tomatoes Rating": 68, "IMDB Rating": 6.6, "IMDB Votes": 52894}, {"Title": "The Ant Bully", "US Gross": 28142535, "Worldwide Gross": 55181129, "US DVD Sales": 28562108, "Production Budget": 45000000, "Release Date": "Jul 28 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.2, "IMDB Votes": 7766}, {"Title": "Antitrust", "US Gross": 10965209, "Worldwide Gross": 10965209, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jan 12 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 25, "IMDB Rating": 6, "IMDB Votes": 16263}, {"Title": "Marie Antoinette", "US Gross": 15962471, "Worldwide Gross": 60862471, "US DVD Sales": 16636006, "Production Budget": 40000000, "Release Date": "Oct 20 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Sofia Coppola", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.4, "IMDB Votes": 31877}, {"Title": "Antz", "US Gross": 90757863, "Worldwide Gross": 152457863, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Oct 02 1998", "MPAA Rating": "PG", "Running Time min": 83, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Tim Johnson", "Rotten Tomatoes Rating": 95, "IMDB Rating": 6.8, "IMDB Votes": 37343}, {"Title": "Anywhere But Here", "US Gross": 18653615, "Worldwide Gross": 18653615, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Nov 12 1999", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Wayne Wang", "Rotten Tomatoes Rating": 64, "IMDB Rating": 5.9, "IMDB Votes": 8514}, {"Title": "Appaloosa", "US Gross": 20211394, "Worldwide Gross": 26111394, "US DVD Sales": 10698987, "Production Budget": 20000000, "Release Date": "Sep 19 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Ed Harris", "Rotten Tomatoes Rating": 76, "IMDB Rating": 6.8, "IMDB Votes": 22836}, {"Title": "Apocalypto", "US Gross": 50866635, "Worldwide Gross": 117785051, "US DVD Sales": 43318599, "Production Budget": 40000000, "Release Date": "Dec 08 2006", "MPAA Rating": "R", "Running Time min": 136, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Mel Gibson", "Rotten Tomatoes Rating": 64, "IMDB Rating": 7.9, "IMDB Votes": 82162}, {"Title": "Pieces of April", "US Gross": 2528664, "Worldwide Gross": 3284124, "US DVD Sales": null, "Production Budget": 300000, "Release Date": "Oct 17 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.2, "IMDB Votes": 12153}, {"Title": "The Apostle", "US Gross": 20733485, "Worldwide Gross": 21277770, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Dec 17 1997", "MPAA Rating": "PG-13", "Running Time min": 148, "Distributor": "October Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Robert Duvall", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.1, "IMDB Votes": 7757}, {"Title": "Aquamarine", "US Gross": 18597342, "Worldwide Gross": 22978953, "US DVD Sales": 29637202, "Production Budget": 17000000, "Release Date": "Mar 03 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 52, "IMDB Rating": 4.6, "IMDB Votes": 9116}, {"Title": "Ararat", "US Gross": 1693000, "Worldwide Gross": 1693000, "US DVD Sales": null, "Production Budget": 15500000, "Release Date": "Nov 15 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Atom Egoyan", "Rotten Tomatoes Rating": 56, "IMDB Rating": 6.6, "IMDB Votes": 6763}, {"Title": "Are We There Yet?", "US Gross": 82674398, "Worldwide Gross": 97918663, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jan 21 2005", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Kids Fiction", "Director": "Brian Levant", "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.2, "IMDB Votes": 8740}, {"Title": "Arlington Road", "US Gross": 24419219, "Worldwide Gross": 24419219, "US DVD Sales": null, "Production Budget": 21500000, "Release Date": "Jul 09 1999", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.2, "IMDB Votes": 36051}, {"Title": "Armageddon", "US Gross": 201578182, "Worldwide Gross": 554600000, "US DVD Sales": null, "Production Budget": 140000000, "Release Date": "Jul 01 1998", "MPAA Rating": "PG-13", "Running Time min": 150, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Michael Bay", "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.1, "IMDB Votes": 194}, {"Title": "Hey Arnold! The Movie", "US Gross": 13684949, "Worldwide Gross": 13684949, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jun 28 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.3, "IMDB Votes": 1629}, {"Title": "Against the Ropes", "US Gross": 5881504, "Worldwide Gross": 6429865, "US DVD Sales": null, "Production Budget": 39000000, "Release Date": "Feb 20 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Charles S. Dutton", "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.2, "IMDB Votes": 3547}, {"Title": "King Arthur", "US Gross": 51877963, "Worldwide Gross": 203877963, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jul 07 2004", "MPAA Rating": "PG-13", "Running Time min": 126, "Distributor": "Walt Disney Pictures", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Antoine Fuqua", "Rotten Tomatoes Rating": 31, "IMDB Rating": 6.2, "IMDB Votes": 53106}, {"Title": "Arthur et les Minimoys", "US Gross": 15132763, "Worldwide Gross": 110102340, "US DVD Sales": 13012362, "Production Budget": 80000000, "Release Date": "Dec 15 2006", "MPAA Rating": "PG", "Running Time min": 122, "Distributor": "Weinstein Co.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Luc Besson", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 7626}, {"Title": "Artificial Intelligence: AI", "US Gross": 78616689, "Worldwide Gross": 235900000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jun 29 2001", "MPAA Rating": "PG-13", "Running Time min": 146, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 91901}, {"Title": "The Art of War", "US Gross": 30199105, "Worldwide Gross": 30199105, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 25 2000", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Christian Duguay", "Rotten Tomatoes Rating": 16, "IMDB Rating": 5.5, "IMDB Votes": 12484}, {"Title": "Astro Boy", "US Gross": 19551067, "Worldwide Gross": 44093014, "US DVD Sales": 7166365, "Production Budget": 65000000, "Release Date": "Oct 23 2009", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "Summit Entertainment", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "David Bowers", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 5265}, {"Title": "A Serious Man", "US Gross": 9228788, "Worldwide Gross": 30710147, "US DVD Sales": 3614635, "Production Budget": 7000000, "Release Date": "Oct 02 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Joel Coen", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.2, "IMDB Votes": 32396}, {"Title": "The Astronaut Farmer", "US Gross": 11003643, "Worldwide Gross": 11003643, "US DVD Sales": 13774930, "Production Budget": 13000000, "Release Date": "Feb 23 2007", "MPAA Rating": "PG", "Running Time min": 109, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Michael Polish", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 10506}, {"Title": "As Good as it Gets", "US Gross": 148478011, "Worldwide Gross": 314111923, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Dec 24 1997", "MPAA Rating": "PG-13", "Running Time min": 138, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "James L. Brooks", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.8, "IMDB Votes": 92240}, {"Title": "A Single Man", "US Gross": 9176000, "Worldwide Gross": 19112672, "US DVD Sales": 2010869, "Production Budget": 7000000, "Release Date": "Dec 11 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.6, "IMDB Votes": 14548}, {"Title": "A Simple Plan", "US Gross": 16316273, "Worldwide Gross": 16316273, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Dec 11 1998", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sam Raimi", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.6, "IMDB Votes": 29095}, {"Title": "Assault On Precinct 13", "US Gross": 20040895, "Worldwide Gross": 36040895, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jan 19 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus/Rogue Pictures", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.4, "IMDB Votes": 13456}, {"Title": "The Astronaut's Wife", "US Gross": 10672566, "Worldwide Gross": 10672566, "US DVD Sales": null, "Production Budget": 34000000, "Release Date": "Aug 27 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 4.9, "IMDB Votes": 20259}, {"Title": "The A-Team", "US Gross": 77222099, "Worldwide Gross": 176047914, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Jun 11 2010", "MPAA Rating": "PG-13", "Running Time min": 119, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": null, "Director": "Joe Carnahan", "Rotten Tomatoes Rating": 47, "IMDB Rating": 7.2, "IMDB Votes": 29886}, {"Title": "At First Sight", "US Gross": 22365133, "Worldwide Gross": 22365133, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jan 15 1999", "MPAA Rating": "PG-13", "Running Time min": 128, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.6, "IMDB Votes": 6872}, {"Title": "Aqua Teen Hunger Force: The Movie", "US Gross": 5520368, "Worldwide Gross": 5520368, "US DVD Sales": 12134593, "Production Budget": 750000, "Release Date": "Apr 13 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "First Look", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "ATL", "US Gross": 21170563, "Worldwide Gross": 21170563, "US DVD Sales": 29368071, "Production Budget": 17000000, "Release Date": "Mar 31 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 4.7, "IMDB Votes": 5480}, {"Title": "Atlantis: The Lost Empire", "US Gross": 84052762, "Worldwide Gross": 186049020, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jun 08 2001", "MPAA Rating": "PG", "Running Time min": 96, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Gary Trousdale", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 15552}, {"Title": "Hearts in Atlantis", "US Gross": 24185781, "Worldwide Gross": 30885781, "US DVD Sales": null, "Production Budget": 31000000, "Release Date": "Sep 28 2001", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.8, "IMDB Votes": 16336}, {"Title": "Autumn in New York", "US Gross": 37752931, "Worldwide Gross": 90717684, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 11 2000", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Joan Chen", "Rotten Tomatoes Rating": 21, "IMDB Rating": 4.8, "IMDB Votes": 9309}, {"Title": "Atonement", "US Gross": 50980159, "Worldwide Gross": 129425746, "US DVD Sales": 15678677, "Production Budget": 30000000, "Release Date": "Dec 07 2007", "MPAA Rating": "R", "Running Time min": 130, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Joe Wright", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.9, "IMDB Votes": 75491}, {"Title": "The Rules of Attraction", "US Gross": 6525762, "Worldwide Gross": 11799060, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Oct 11 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.7, "IMDB Votes": 26634}, {"Title": "August Rush", "US Gross": 31664162, "Worldwide Gross": 65627510, "US DVD Sales": 22082092, "Production Budget": 25000000, "Release Date": "Nov 17 2007", "MPAA Rating": "PG", "Running Time min": 113, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 37, "IMDB Rating": 7.5, "IMDB Votes": 28650}, {"Title": "Across the Universe", "US Gross": 24343673, "Worldwide Gross": 29367143, "US DVD Sales": 25759408, "Production Budget": 45000000, "Release Date": "Sep 14 2007", "MPAA Rating": "PG-13", "Running Time min": 133, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 53, "IMDB Rating": 7.5, "IMDB Votes": 45611}, {"Title": "Austin Powers: The Spy Who Shagged Me", "US Gross": 206040085, "Worldwide Gross": 309600000, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Jun 10 1999", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Jay Roach", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 81005}, {"Title": "Austin Powers in Goldmember", "US Gross": 213117789, "Worldwide Gross": 292738626, "US DVD Sales": null, "Production Budget": 63000000, "Release Date": "Jul 25 2002", "MPAA Rating": "PG-13", "Running Time min": 94, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Jay Roach", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.2, "IMDB Votes": 69140}, {"Title": "Austin Powers: International Man of Mystery", "US Gross": 53883989, "Worldwide Gross": 67683989, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "May 02 1997", "MPAA Rating": "PG-13", "Running Time min": 89, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jay Roach", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 74487}, {"Title": "Australia", "US Gross": 49551662, "Worldwide Gross": 207482792, "US DVD Sales": 28789275, "Production Budget": 78000000, "Release Date": "Nov 26 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Baz Luhrmann", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.8, "IMDB Votes": 38089}, {"Title": "Auto Focus", "US Gross": 2062066, "Worldwide Gross": 2703821, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Oct 18 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Paul Schrader", "Rotten Tomatoes Rating": 72, "IMDB Rating": 6.6, "IMDB Votes": 7236}, {"Title": "Avatar", "US Gross": 760167650, "Worldwide Gross": 2767891499, "US DVD Sales": 146153933, "Production Budget": 237000000, "Release Date": "Dec 18 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "James Cameron", "Rotten Tomatoes Rating": 83, "IMDB Rating": 8.3, "IMDB Votes": 261439}, {"Title": "The Avengers", "US Gross": 23385416, "Worldwide Gross": 48585416, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Aug 14 1998", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 3.4, "IMDB Votes": 21432}, {"Title": "The Aviator", "US Gross": 102608827, "Worldwide Gross": 214608827, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Dec 17 2004", "MPAA Rating": "PG-13", "Running Time min": 170, "Distributor": "Miramax", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.6, "IMDB Votes": 85740}, {"Title": "AVP: Alien Vs. Predator", "US Gross": 80281096, "Worldwide Gross": 172543519, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Aug 13 2004", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "20th Century Fox", "Source": "Spin-Off", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Paul Anderson", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 63019}, {"Title": "Around the World in 80 Days", "US Gross": 24004159, "Worldwide Gross": 72004159, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Jun 16 2004", "MPAA Rating": "PG", "Running Time min": 120, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Frank Coraci", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.6, "IMDB Votes": 21516}, {"Title": "Awake", "US Gross": 14373825, "Worldwide Gross": 30757745, "US DVD Sales": 13038208, "Production Budget": 8600000, "Release Date": "Nov 30 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 24, "IMDB Rating": 6.5, "IMDB Votes": 26076}, {"Title": "And When Did You Last See Your Father?", "US Gross": 1071240, "Worldwide Gross": 2476491, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Jun 06 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 1798}, {"Title": "Away We Go", "US Gross": 9451946, "Worldwide Gross": 10108016, "US DVD Sales": 3788940, "Production Budget": 21000000, "Release Date": "Jun 05 2009", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Sam Mendes", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.3, "IMDB Votes": 14929}, {"Title": "Don't Say a Word", "US Gross": 54997476, "Worldwide Gross": 104488383, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Sep 28 2001", "MPAA Rating": "R", "Running Time min": 113, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 6.1, "IMDB Votes": 22157}, {"Title": "Babe: Pig in the City", "US Gross": 18319860, "Worldwide Gross": 69131860, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Nov 25 1998", "MPAA Rating": "G", "Running Time min": 75, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "George Miller", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.1, "IMDB Votes": 9918}, {"Title": "Babel", "US Gross": 34302837, "Worldwide Gross": 135302837, "US DVD Sales": 31459208, "Production Budget": 20000000, "Release Date": "Oct 27 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Alejandro Gonzalez Inarritu", "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.6, "IMDB Votes": 95122}, {"Title": "Babylon A.D.", "US Gross": 22532572, "Worldwide Gross": 70216497, "US DVD Sales": 16787309, "Production Budget": 45000000, "Release Date": "Aug 29 2008", "MPAA Rating": "PG-13", "Running Time min": 100, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Mathieu Kassovitz", "Rotten Tomatoes Rating": 7, "IMDB Rating": 5.3, "IMDB Votes": 27189}, {"Title": "My Baby's Daddy", "US Gross": 17321573, "Worldwide Gross": 17322212, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jan 09 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4, "IMDB Votes": 2010}, {"Title": "Super Babies: Baby Geniuses 2", "US Gross": 9109322, "Worldwide Gross": 9109322, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Aug 27 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 1.4, "IMDB Votes": 10886}, {"Title": "Baby Geniuses", "US Gross": 27151490, "Worldwide Gross": 27151490, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Mar 12 1999", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 2, "IMDB Rating": 2.2, "IMDB Votes": 9038}, {"Title": "Bad Boys II", "US Gross": 138540870, "Worldwide Gross": 272940870, "US DVD Sales": null, "Production Budget": 130000000, "Release Date": "Jul 18 2003", "MPAA Rating": "R", "Running Time min": 147, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Michael Bay", "Rotten Tomatoes Rating": 24, "IMDB Rating": 6.2, "IMDB Votes": 58002}, {"Title": "Bad Company", "US Gross": 30157016, "Worldwide Gross": 69157016, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Jun 07 2002", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 10, "IMDB Rating": 5.3, "IMDB Votes": 17901}, {"Title": "La mala educaciÛn", "US Gross": 5211842, "Worldwide Gross": 40311842, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Nov 19 2004", "MPAA Rating": "NC-17", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Pedro Almodovar", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 21756}, {"Title": "Bad Lieutenant: Port of Call New Orleans", "US Gross": 1702112, "Worldwide Gross": 8162545, "US DVD Sales": 3902817, "Production Budget": 25000000, "Release Date": "Nov 20 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "First Look", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Werner Herzog", "Rotten Tomatoes Rating": 87, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Bad News Bears", "US Gross": 32868349, "Worldwide Gross": 33500620, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Jul 22 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Richard Linklater", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 7749}, {"Title": "Burn After Reading", "US Gross": 60355347, "Worldwide Gross": 163415735, "US DVD Sales": 19163475, "Production Budget": 37000000, "Release Date": "Sep 12 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Joel Coen", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.2, "IMDB Votes": 92553}, {"Title": "Bait", "US Gross": 15325127, "Worldwide Gross": 15471969, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 15 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Antoine Fuqua", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.6, "IMDB Votes": 5143}, {"Title": "Boys and Girls", "US Gross": 21799652, "Worldwide Gross": 21799652, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Jun 16 2000", "MPAA Rating": "PG-13", "Running Time min": 94, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 4.9, "IMDB Votes": 7779}, {"Title": "Black and White", "US Gross": 5241315, "Worldwide Gross": 5241315, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Apr 05 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "James Toback", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 452}, {"Title": "Bangkok Dangerous", "US Gross": 15298133, "Worldwide Gross": 46598133, "US DVD Sales": 15494886, "Production Budget": 45000000, "Release Date": "Sep 05 2008", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "Lionsgate", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Oxide Pang Chun", "Rotten Tomatoes Rating": 9, "IMDB Rating": 5.4, "IMDB Votes": 20931}, {"Title": "The Banger Sisters", "US Gross": 30306281, "Worldwide Gross": 38067218, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Sep 20 2002", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 5.5, "IMDB Votes": 7435}, {"Title": "Les invasions barbares", "US Gross": 8460000, "Worldwide Gross": 8460000, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "May 09 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 14322}, {"Title": "Barney's Great Adventure", "US Gross": 11156471, "Worldwide Gross": 11156471, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 03 1998", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Polygram", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.1, "IMDB Votes": 1456}, {"Title": "Basic Instinct 2", "US Gross": 5946136, "Worldwide Gross": 35417162, "US DVD Sales": 6188980, "Production Budget": 70000000, "Release Date": "Mar 31 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Michael Caton-Jones", "Rotten Tomatoes Rating": 7, "IMDB Rating": 3.9, "IMDB Votes": 16784}, {"Title": "Basic", "US Gross": 26599248, "Worldwide Gross": 42598498, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Mar 28 2003", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "John McTiernan", "Rotten Tomatoes Rating": 21, "IMDB Rating": 6.3, "IMDB Votes": 25960}, {"Title": "Batman Begins", "US Gross": 205343774, "Worldwide Gross": 372353017, "US DVD Sales": null, "Production Budget": 150000000, "Release Date": "Jun 15 2005", "MPAA Rating": "PG-13", "Running Time min": 140, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Christopher Nolan", "Rotten Tomatoes Rating": 84, "IMDB Rating": 8.3, "IMDB Votes": 270641}, {"Title": "Battlefield Earth: A Saga of the Year 3000", "US Gross": 21471685, "Worldwide Gross": 29725663, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "May 12 2000", "MPAA Rating": "PG-13", "Running Time min": 121, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.3, "IMDB Votes": 39316}, {"Title": "The Dark Knight", "US Gross": 533345358, "Worldwide Gross": 1022345358, "US DVD Sales": 234119058, "Production Budget": 185000000, "Release Date": "Jul 18 2008", "MPAA Rating": "PG-13", "Running Time min": 152, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Christopher Nolan", "Rotten Tomatoes Rating": 93, "IMDB Rating": 8.9, "IMDB Votes": 465000}, {"Title": "Bats", "US Gross": 10155691, "Worldwide Gross": 10155691, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "Oct 22 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 3.3, "IMDB Votes": 5565}, {"Title": "The Battle of Shaker Heights", "US Gross": 280351, "Worldwide Gross": 280351, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Aug 22 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.1, "IMDB Votes": 2524}, {"Title": "Baby Boy", "US Gross": 28734552, "Worldwide Gross": 28734552, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Jun 27 2001", "MPAA Rating": "R", "Running Time min": 130, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Singleton", "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.1, "IMDB Votes": 4485}, {"Title": "The Curious Case of Benjamin Button", "US Gross": 127509326, "Worldwide Gross": 329809326, "US DVD Sales": 42850598, "Production Budget": 160000000, "Release Date": "Dec 25 2008", "MPAA Rating": "PG-13", "Running Time min": 167, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "David Fincher", "Rotten Tomatoes Rating": 72, "IMDB Rating": 8, "IMDB Votes": 137120}, {"Title": "Baby Mama", "US Gross": 60494212, "Worldwide Gross": 64391484, "US DVD Sales": 24304275, "Production Budget": null, "Release Date": "Apr 25 2008", "MPAA Rating": "PG-13", "Running Time min": 99, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.1, "IMDB Votes": 16128}, {"Title": "Bless the Child", "US Gross": 29374178, "Worldwide Gross": 40435694, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 11 2000", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": "Chuck Russell", "Rotten Tomatoes Rating": 3, "IMDB Rating": 4.8, "IMDB Votes": 7765}, {"Title": "The Bachelor", "US Gross": 21731001, "Worldwide Gross": 36882378, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Nov 05 1999", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "New Line", "Source": "Remake", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.8, "IMDB Votes": 9030}, {"Title": "The Broken Hearts Club: A Romantic Comedy", "US Gross": 1744858, "Worldwide Gross": 2022442, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 29 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 3731}, {"Title": "Be Cool", "US Gross": 55849401, "Worldwide Gross": 94849401, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Mar 04 2005", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "F. Gary Gray", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.6, "IMDB Votes": 32082}, {"Title": "Big Daddy", "US Gross": 163479795, "Worldwide Gross": 234779795, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 25 1999", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Dennis Dugan", "Rotten Tomatoes Rating": 40, "IMDB Rating": 4.7, "IMDB Votes": 48}, {"Title": "Bedazzled", "US Gross": 37879996, "Worldwide Gross": 90376224, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Oct 20 2000", "MPAA Rating": "PG-13", "Running Time min": 93, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Harold Ramis", "Rotten Tomatoes Rating": 49, "IMDB Rating": 5.9, "IMDB Votes": 30946}, {"Title": "Body of Lies", "US Gross": 39394666, "Worldwide Gross": 108394666, "US DVD Sales": 22024703, "Production Budget": 67500000, "Release Date": "Oct 10 2008", "MPAA Rating": "R", "Running Time min": 129, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 52, "IMDB Rating": 7.2, "IMDB Votes": 53921}, {"Title": "Blood Diamond", "US Gross": 57377916, "Worldwide Gross": 171377916, "US DVD Sales": 62588936, "Production Budget": 100000000, "Release Date": "Dec 08 2006", "MPAA Rating": "R", "Running Time min": 143, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Edward Zwick", "Rotten Tomatoes Rating": 62, "IMDB Rating": 8, "IMDB Votes": 118925}, {"Title": "Mr. Bean's Holiday", "US Gross": 33302167, "Worldwide Gross": 229736344, "US DVD Sales": 28248145, "Production Budget": 25000000, "Release Date": "Aug 24 2007", "MPAA Rating": "G", "Running Time min": 88, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 6, "IMDB Votes": 28950}, {"Title": "Beautiful", "US Gross": 3134509, "Worldwide Gross": 3134509, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Sep 29 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Destination Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sally Field", "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.4, "IMDB Votes": 2238}, {"Title": "Beavis and Butt-head Do America", "US Gross": 63118386, "Worldwide Gross": 63118386, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 20 1996", "MPAA Rating": "PG-13", "Running Time min": 80, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mike Judge", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.6, "IMDB Votes": 22918}, {"Title": "Bend it Like Beckham", "US Gross": 32543449, "Worldwide Gross": 76583333, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Mar 12 2003", "MPAA Rating": "PG-13", "Running Time min": 112, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Gurinder Chadha", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 41052}, {"Title": "In the Bedroom", "US Gross": 35930604, "Worldwide Gross": 43430604, "US DVD Sales": null, "Production Budget": 1700000, "Release Date": "Nov 23 2001", "MPAA Rating": "R", "Running Time min": 130, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Todd Field", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.5, "IMDB Votes": 20888}, {"Title": "Bee Movie", "US Gross": 126631277, "Worldwide Gross": 287594577, "US DVD Sales": 79628881, "Production Budget": 150000000, "Release Date": "Nov 02 2007", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Steve Hickner", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.3, "IMDB Votes": 30575}, {"Title": "Artie Lange's Beer League", "US Gross": 475000, "Worldwide Gross": 475000, "US DVD Sales": null, "Production Budget": 2800000, "Release Date": "Sep 15 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Freestyle Releasing", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Being John Malkovich", "US Gross": 22858926, "Worldwide Gross": 32382381, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Oct 29 1999", "MPAA Rating": "R", "Running Time min": 112, "Distributor": "USA Films", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Fantasy", "Director": "Spike Jonze", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.9, "IMDB Votes": 113568}, {"Title": "Behind Enemy Lines", "US Gross": 58855732, "Worldwide Gross": 58855732, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Nov 30 2001", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 6.1, "IMDB Votes": 32575}, {"Title": "Bella", "US Gross": 8093373, "Worldwide Gross": 9220041, "US DVD Sales": 5935632, "Production Budget": 3300000, "Release Date": "Oct 26 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Roadside Attractions", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 6562}, {"Title": "Beloved", "US Gross": 22852487, "Worldwide Gross": 22852487, "US DVD Sales": null, "Production Budget": 53000000, "Release Date": "Oct 16 1998", "MPAA Rating": "R", "Running Time min": 172, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Jonathan Demme", "Rotten Tomatoes Rating": 77, "IMDB Rating": 5.3, "IMDB Votes": 102}, {"Title": "Les Triplettes de Belleville", "US Gross": 7301288, "Worldwide Gross": 14440113, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Nov 26 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 19761}, {"Title": "Beyond the Mat", "US Gross": 2047570, "Worldwide Gross": 2047570, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Oct 22 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.2, "IMDB Votes": 4067}, {"Title": "The Benchwarmers", "US Gross": 59843754, "Worldwide Gross": 64843754, "US DVD Sales": 32764806, "Production Budget": 35000000, "Release Date": "Apr 07 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Dennis Dugan", "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.4, "IMDB Votes": 17824}, {"Title": "The Last Airbender", "US Gross": 131591957, "Worldwide Gross": 290191957, "US DVD Sales": null, "Production Budget": 150000000, "Release Date": "Jul 01 2010", "MPAA Rating": null, "Running Time min": 103, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "M. Night Shyamalan", "Rotten Tomatoes Rating": 7, "IMDB Rating": 4.4, "IMDB Votes": 16600}, {"Title": "Beowulf", "US Gross": 82195215, "Worldwide Gross": 194995215, "US DVD Sales": 35961910, "Production Budget": 150000000, "Release Date": "Nov 16 2007", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.6, "IMDB Votes": 62513}, {"Title": "The Importance of Being Earnest", "US Gross": 8378141, "Worldwide Gross": 8378141, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "May 22 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.7, "IMDB Votes": 9345}, {"Title": "Beauty Shop", "US Gross": 36351350, "Worldwide Gross": 38351350, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 30 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Spin-Off", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Bille Woodruff", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.3, "IMDB Votes": 5468}, {"Title": "Better Luck Tomorrow", "US Gross": 3802390, "Worldwide Gross": 3809226, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Apr 11 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Justin Lin", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 5959}, {"Title": "Big Fat Liar", "US Gross": 47811275, "Worldwide Gross": 52375275, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Feb 08 2002", "MPAA Rating": "PG", "Running Time min": 88, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Shawn Levy", "Rotten Tomatoes Rating": 43, "IMDB Rating": 5.2, "IMDB Votes": 9877}, {"Title": "Big Fish", "US Gross": 66432867, "Worldwide Gross": 123432867, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Dec 10 2003", "MPAA Rating": "PG-13", "Running Time min": 125, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Tim Burton", "Rotten Tomatoes Rating": 77, "IMDB Rating": 8.1, "IMDB Votes": 141099}, {"Title": "Before Sunset", "US Gross": 5792822, "Worldwide Gross": 11293790, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jul 02 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Independent", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Richard Linklater", "Rotten Tomatoes Rating": 95, "IMDB Rating": 8, "IMDB Votes": 45535}, {"Title": "The Big Hit", "US Gross": 27066941, "Worldwide Gross": 27066941, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Apr 24 1998", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 41, "IMDB Rating": 5.8, "IMDB Votes": 14157}, {"Title": "Birthday Girl", "US Gross": 4919896, "Worldwide Gross": 8130727, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Feb 01 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 13366}, {"Title": "The Big Lebowski", "US Gross": 17498804, "Worldwide Gross": 46189568, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Mar 06 1998", "MPAA Rating": "R", "Running Time min": 127, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Joel Coen", "Rotten Tomatoes Rating": 78, "IMDB Rating": 8.2, "IMDB Votes": 177960}, {"Title": "Big Momma's House", "US Gross": 117559438, "Worldwide Gross": 173559438, "US DVD Sales": null, "Production Budget": 33000000, "Release Date": "Jun 02 2000", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Raja Gosnell", "Rotten Tomatoes Rating": 30, "IMDB Rating": 4.7, "IMDB Votes": 21318}, {"Title": "Black Hawk Down", "US Gross": 108638745, "Worldwide Gross": 173638745, "US DVD Sales": 970318, "Production Budget": 95000000, "Release Date": "Dec 28 2001", "MPAA Rating": "R", "Running Time min": 144, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.7, "IMDB Votes": 98653}, {"Title": "Eye of the Beholder", "US Gross": 16500786, "Worldwide Gross": 18260865, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jan 28 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Destination Films", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 9992}, {"Title": "The Big Bounce", "US Gross": 6471394, "Worldwide Gross": 6626115, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jan 30 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.8, "IMDB Votes": 9195}, {"Title": "Big Trouble", "US Gross": 7262288, "Worldwide Gross": 8488871, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Apr 05 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Barry Sonnenfeld", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.3, "IMDB Votes": 11610}, {"Title": "Billy Elliot", "US Gross": 21995263, "Worldwide Gross": 109280263, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Oct 13 2000", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Stephen Daldry", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.7, "IMDB Votes": 38403}, {"Title": "Bicentennial Man", "US Gross": 58220776, "Worldwide Gross": 87420776, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Dec 17 1999", "MPAA Rating": "PG", "Running Time min": 132, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Chris Columbus", "Rotten Tomatoes Rating": 38, "IMDB Rating": 6.4, "IMDB Votes": 28827}, {"Title": "Birth", "US Gross": 5005899, "Worldwide Gross": 14603001, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 29 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.3, "IMDB Votes": 25}, {"Title": "Becoming Jane", "US Gross": 18663911, "Worldwide Gross": 37304637, "US DVD Sales": 8061456, "Production Budget": 16500000, "Release Date": "Aug 03 2007", "MPAA Rating": "PG", "Running Time min": 120, "Distributor": "Miramax", "Source": "Based on Real Life Events", "Major Genre": "Romantic Comedy", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 58, "IMDB Rating": 7, "IMDB Votes": 15167}, {"Title": "Bridget Jones: The Edge Of Reason", "US Gross": 40203020, "Worldwide Gross": 263894551, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Nov 12 2004", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 26325}, {"Title": "Bridget Jones's Diary", "US Gross": 71500556, "Worldwide Gross": 281527158, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 13 2001", "MPAA Rating": "R", "Running Time min": 97, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 80, "IMDB Rating": 6.8, "IMDB Votes": 58213}, {"Title": "The Bank Job", "US Gross": 30060660, "Worldwide Gross": 63060660, "US DVD Sales": 17254299, "Production Budget": 20000000, "Release Date": "Mar 07 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Thriller/Suspense", "Creative Type": "Dramatization", "Director": "Roger Donaldson", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.5, "IMDB Votes": 50848}, {"Title": "Blade", "US Gross": 70141876, "Worldwide Gross": 131237688, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Aug 21 1998", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Stephen Norrington", "Rotten Tomatoes Rating": 55, "IMDB Rating": 7, "IMDB Votes": 64896}, {"Title": "The Blair Witch Project", "US Gross": 140539099, "Worldwide Gross": 248300000, "US DVD Sales": null, "Production Budget": 600000, "Release Date": "Jul 14 1999", "MPAA Rating": "R", "Running Time min": 87, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 85, "IMDB Rating": 6.2, "IMDB Votes": 87629}, {"Title": "Blast from the Past", "US Gross": 26613620, "Worldwide Gross": 26613620, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Feb 12 1999", "MPAA Rating": "PG-13", "Running Time min": 111, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Hugh Wilson", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.4, "IMDB Votes": 23243}, {"Title": "Blade 2", "US Gross": 81676888, "Worldwide Gross": 154338601, "US DVD Sales": null, "Production Budget": 54000000, "Release Date": "Mar 22 2002", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Guillermo Del Toro", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 90}, {"Title": "Blade: Trinity", "US Gross": 52397389, "Worldwide Gross": 132397389, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Dec 08 2004", "MPAA Rating": "R", "Running Time min": 113, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "David Goyer", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 42477}, {"Title": "Blades of Glory", "US Gross": 118594548, "Worldwide Gross": 145594548, "US DVD Sales": 49219041, "Production Budget": 61000000, "Release Date": "Mar 30 2007", "MPAA Rating": "PG-13", "Running Time min": 94, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.5, "IMDB Votes": 51929}, {"Title": "The Blind Side", "US Gross": 255959475, "Worldwide Gross": 301759475, "US DVD Sales": 86139819, "Production Budget": 35000000, "Release Date": "Nov 20 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Factual Book/Article", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.7, "IMDB Votes": 42320}, {"Title": "Blood Work", "US Gross": 26199517, "Worldwide Gross": 26199517, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Aug 09 2002", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.3, "IMDB Votes": 16751}, {"Title": "Zwartboek", "US Gross": 4398392, "Worldwide Gross": 4398392, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Apr 06 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "Paul Verhoeven", "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 27288}, {"Title": "Black Christmas", "US Gross": 16235738, "Worldwide Gross": 16235738, "US DVD Sales": 28729107, "Production Budget": 9000000, "Release Date": "Dec 25 2006", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "MGM", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.3, "IMDB Votes": 10424}, {"Title": "Black Snake Moan", "US Gross": 9396870, "Worldwide Gross": 9396870, "US DVD Sales": 12540785, "Production Budget": 15000000, "Release Date": "Mar 02 2007", "MPAA Rating": "R", "Running Time min": 115, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.1, "IMDB Votes": 28145}, {"Title": "Black Water Transit", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 31 2008", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Blindness", "US Gross": 3073392, "Worldwide Gross": 14542658, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Oct 03 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Fernando Meirelles", "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.6, "IMDB Votes": 25508}, {"Title": "Legally Blonde 2: Red, White & Blonde", "US Gross": 90639088, "Worldwide Gross": 125339088, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jul 02 2003", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Legally Blonde", "US Gross": 96493426, "Worldwide Gross": 141743426, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jul 13 2001", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Robert Luketic", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.2, "IMDB Votes": 44128}, {"Title": "Blood and Wine", "US Gross": 1083350, "Worldwide Gross": 1083350, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Feb 21 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Bob Rafelson", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.1, "IMDB Votes": 4761}, {"Title": "Blow", "US Gross": 52990775, "Worldwide Gross": 83282296, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Apr 06 2001", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ted Demme", "Rotten Tomatoes Rating": 54, "IMDB Rating": 7.4, "IMDB Votes": 70218}, {"Title": "Ballistic: Ecks vs. Sever", "US Gross": 14294842, "Worldwide Gross": 14294842, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Sep 20 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.4, "IMDB Votes": 11112}, {"Title": "Blue Crush", "US Gross": 40118420, "Worldwide Gross": 51327420, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 16 2002", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Universal", "Source": "Based on Magazine Article", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 62, "IMDB Rating": 5.5, "IMDB Votes": 11699}, {"Title": "Bamboozled", "US Gross": 2185266, "Worldwide Gross": 2373937, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 06 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.3, "IMDB Votes": 5958}, {"Title": "A Beautiful Mind", "US Gross": 170708996, "Worldwide Gross": 316708996, "US DVD Sales": null, "Production Budget": 78000000, "Release Date": "Dec 21 2001", "MPAA Rating": "PG-13", "Running Time min": 135, "Distributor": "Universal", "Source": "Based on Magazine Article", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ron Howard", "Rotten Tomatoes Rating": 78, "IMDB Rating": 8, "IMDB Votes": 126067}, {"Title": "Big Momma's House 2", "US Gross": 70165972, "Worldwide Gross": 137047376, "US DVD Sales": 21234176, "Production Budget": 40000000, "Release Date": "Jan 27 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 6, "IMDB Rating": 4, "IMDB Votes": 11368}, {"Title": "Story of Bonnie and Clyde, The", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 31 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Boondock Saints", "US Gross": 30471, "Worldwide Gross": 250000, "US DVD Sales": 7468574, "Production Budget": 7000000, "Release Date": "Jan 21 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Indican Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 7.8, "IMDB Votes": 86172}, {"Title": "Bandidas", "US Gross": 0, "Worldwide Gross": 10496317, "US DVD Sales": 7921142, "Production Budget": 35000000, "Release Date": "Sep 22 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 62, "IMDB Rating": 5.6, "IMDB Votes": 12103}, {"Title": "Bandits", "US Gross": 41523271, "Worldwide Gross": 71523271, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Oct 12 2001", "MPAA Rating": "PG-13", "Running Time min": 123, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.5, "IMDB Votes": 30732}, {"Title": "Bobby", "US Gross": 11242801, "Worldwide Gross": 20597806, "US DVD Sales": 12345494, "Production Budget": 14000000, "Release Date": "Nov 17 2006", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Emilio Estevez", "Rotten Tomatoes Rating": 46, "IMDB Rating": 7.1, "IMDB Votes": 23262}, {"Title": "The Book of Eli", "US Gross": 94835059, "Worldwide Gross": 146452390, "US DVD Sales": 36862324, "Production Budget": 80000000, "Release Date": "Jan 15 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.9, "IMDB Votes": 47733}, {"Title": "Boogeyman", "US Gross": 46752382, "Worldwide Gross": 67192859, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Feb 04 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 3.9, "IMDB Votes": 13901}, {"Title": "Bolt", "US Gross": 114053579, "Worldwide Gross": 313953579, "US DVD Sales": 82600642, "Production Budget": 150000000, "Release Date": "Nov 21 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.4, "IMDB Votes": 32473}, {"Title": "The Other Boleyn Girl", "US Gross": 26814957, "Worldwide Gross": 72944278, "US DVD Sales": 8245298, "Production Budget": 40000000, "Release Date": "Feb 29 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.7, "IMDB Votes": 26198}, {"Title": "The Bone Collector", "US Gross": 66488090, "Worldwide Gross": 151463090, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Nov 05 1999", "MPAA Rating": "R", "Running Time min": 118, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Phillip Noyce", "Rotten Tomatoes Rating": 27, "IMDB Rating": 6.3, "IMDB Votes": 46961}, {"Title": "Bones", "US Gross": 7316658, "Worldwide Gross": 8378853, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 24 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 3.9, "IMDB Votes": 3524}, {"Title": "Bon Voyage", "US Gross": 2353728, "Worldwide Gross": 8361736, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 19 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 76, "IMDB Rating": 6.5, "IMDB Votes": 622}, {"Title": "Boogie Nights", "US Gross": 26410771, "Worldwide Gross": 43111725, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 10 1997", "MPAA Rating": "R", "Running Time min": 152, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Paul Thomas Anderson", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.9, "IMDB Votes": 70962}, {"Title": "Borat", "US Gross": 128505958, "Worldwide Gross": 261572744, "US DVD Sales": 62661576, "Production Budget": 18000000, "Release Date": "Nov 03 2006", "MPAA Rating": "R", "Running Time min": 83, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Larry Charles", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 3612}, {"Title": "The Bourne Identity", "US Gross": 121468960, "Worldwide Gross": 213300000, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jun 14 2002", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Doug Liman", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.7, "IMDB Votes": 122597}, {"Title": "The Bourne Supremacy", "US Gross": 176087450, "Worldwide Gross": 288587450, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Jul 23 2004", "MPAA Rating": "PG-13", "Running Time min": 108, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Paul Greengrass", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.6, "IMDB Votes": 104614}, {"Title": "The Bourne Ultimatum", "US Gross": 227471070, "Worldwide Gross": 442161562, "US DVD Sales": 123314592, "Production Budget": 130000000, "Release Date": "Aug 03 2007", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Paul Greengrass", "Rotten Tomatoes Rating": 93, "IMDB Rating": 8.2, "IMDB Votes": 146025}, {"Title": "The Borrowers", "US Gross": 22619589, "Worldwide Gross": 54045832, "US DVD Sales": null, "Production Budget": 29000000, "Release Date": "Feb 13 1998", "MPAA Rating": "PG", "Running Time min": 83, "Distributor": "Polygram", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Peter Hewitt", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 4340}, {"Title": "My Boss's Daughter", "US Gross": 15549702, "Worldwide Gross": 15549702, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Aug 22 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "David Zucker", "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.3, "IMDB Votes": 10919}, {"Title": "Bounce", "US Gross": 36779296, "Worldwide Gross": 53399300, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 17 2000", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 51, "IMDB Rating": 5.5, "IMDB Votes": 10702}, {"Title": "Bowling for Columbine", "US Gross": 21576018, "Worldwide Gross": 58576018, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Oct 11 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Michael Moore", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.2, "IMDB Votes": 76928}, {"Title": "Boys Don't Cry", "US Gross": 11540607, "Worldwide Gross": 20741000, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Oct 08 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Kimberly Peirce", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.6, "IMDB Votes": 34435}, {"Title": "The Boy in the Striped Pyjamas", "US Gross": 9030581, "Worldwide Gross": 39830581, "US DVD Sales": 9647546, "Production Budget": 12500000, "Release Date": "Nov 07 2008", "MPAA Rating": "PG-13", "Running Time min": 94, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 21683}, {"Title": "Bulletproof Monk", "US Gross": 23010607, "Worldwide Gross": 23010607, "US DVD Sales": null, "Production Budget": 52000000, "Release Date": "Apr 16 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.2, "IMDB Votes": 17130}, {"Title": "Heartbreakers", "US Gross": 40334024, "Worldwide Gross": 57753825, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Mar 23 2001", "MPAA Rating": "PG-13", "Running Time min": 124, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.2, "IMDB Votes": 20962}, {"Title": "Bride & Prejudice", "US Gross": 6601079, "Worldwide Gross": 22064531, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Feb 11 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": "Gurinder Chadha", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 9442}, {"Title": "Beyond Borders", "US Gross": 4426297, "Worldwide Gross": 11427090, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Oct 24 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Martin Campbell", "Rotten Tomatoes Rating": 14, "IMDB Rating": 6.2, "IMDB Votes": 9575}, {"Title": "Bride Wars", "US Gross": 58715510, "Worldwide Gross": 115150424, "US DVD Sales": 29943338, "Production Budget": 30000000, "Release Date": "Jan 09 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 5, "IMDB Votes": 15762}, {"Title": "Breakfast of Champions", "US Gross": 178287, "Worldwide Gross": 178287, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Sep 17 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": null, "Director": "Alan Rudolph", "Rotten Tomatoes Rating": 25, "IMDB Rating": 4.3, "IMDB Votes": 5033}, {"Title": "Brigham City", "US Gross": 852206, "Worldwide Gross": 852206, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Apr 06 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Excel Entertainment", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.1, "IMDB Votes": 758}, {"Title": "Brick", "US Gross": 2075743, "Worldwide Gross": 3918941, "US DVD Sales": 5013655, "Production Budget": 450000, "Release Date": "Mar 31 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus/Rogue Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 37204}, {"Title": "Bringing Out The Dead", "US Gross": 16640210, "Worldwide Gross": 16640210, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Oct 22 1999", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.8, "IMDB Votes": 31079}, {"Title": "Breakdown", "US Gross": 50159144, "Worldwide Gross": 50159144, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "May 02 1997", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Jonathan Mostow", "Rotten Tomatoes Rating": 79, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Brooklyn's Finest", "US Gross": 27163593, "Worldwide Gross": 28319627, "US DVD Sales": 9300674, "Production Budget": 25000000, "Release Date": "Mar 05 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Overture Films", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Antoine Fuqua", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 14034}, {"Title": "Brokeback Mountain", "US Gross": 83043761, "Worldwide Gross": 180343761, "US DVD Sales": 31338042, "Production Budget": 13900000, "Release Date": "Dec 09 2005", "MPAA Rating": "R", "Running Time min": 134, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Ang Lee", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.8, "IMDB Votes": 115951}, {"Title": "Breakin' All the Rules", "US Gross": 12232382, "Worldwide Gross": 12512317, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "May 14 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.3, "IMDB Votes": 2643}, {"Title": "The Break Up", "US Gross": 118806699, "Worldwide Gross": 202944203, "US DVD Sales": 52707367, "Production Budget": 52000000, "Release Date": "Jun 02 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peyton Reed", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 38285}, {"Title": "An Alan Smithee Film: Burn Hollywood Burn", "US Gross": 45779, "Worldwide Gross": 45779, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 27 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Arthur Hiller", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.5, "IMDB Votes": 2152}, {"Title": "Barney's Version", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 31 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Brooklyn Rules", "US Gross": 458232, "Worldwide Gross": 458232, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "May 18 2007", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 2797}, {"Title": "Boiler Room", "US Gross": 16963963, "Worldwide Gross": 28773637, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Feb 18 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.9, "IMDB Votes": 22979}, {"Title": "The Brothers Solomon", "US Gross": 900926, "Worldwide Gross": 900926, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Sep 07 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 5.2, "IMDB Votes": 6044}, {"Title": "The Brothers", "US Gross": 27457409, "Worldwide Gross": 27958191, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Mar 23 2001", "MPAA Rating": "R", "Running Time min": 102, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 2.8, "IMDB Votes": 153}, {"Title": "Brown Sugar", "US Gross": 27362712, "Worldwide Gross": 28315272, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Oct 11 2002", "MPAA Rating": "PG-13", "Running Time min": 109, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": 6, "IMDB Votes": 2745}, {"Title": "Bright Star", "US Gross": 4444637, "Worldwide Gross": 9469105, "US DVD Sales": null, "Production Budget": 8500000, "Release Date": "Jan 26 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Apparition", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Jane Campion", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 5957}, {"Title": "Brother", "US Gross": 450594, "Worldwide Gross": 450594, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jul 20 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 10831}, {"Title": "In Bruges", "US Gross": 7800825, "Worldwide Gross": 30782621, "US DVD Sales": 3467377, "Production Budget": 15000000, "Release Date": "Feb 08 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 80, "IMDB Rating": 8.1, "IMDB Votes": 97876}, {"Title": "The Brown Bunny", "US Gross": 366301, "Worldwide Gross": 630427, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 27 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "WellSpring", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Vincent Gallo", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 7465}, {"Title": "Barbershop 2: Back in Business", "US Gross": 65070412, "Worldwide Gross": 65842412, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Feb 06 2004", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 4848}, {"Title": "Barbershop", "US Gross": 75781642, "Worldwide Gross": 77081642, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Sep 13 2002", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tim Story", "Rotten Tomatoes Rating": 82, "IMDB Rating": 6.2, "IMDB Votes": 11164}, {"Title": "Best in Show", "US Gross": 18621249, "Worldwide Gross": 20695413, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Sep 27 2000", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Christopher Guest", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.4, "IMDB Votes": 24484}, {"Title": "Bad Santa", "US Gross": 60060328, "Worldwide Gross": 60063017, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Nov 26 2003", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Terry Zwigoff", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.3, "IMDB Votes": 45022}, {"Title": "Inglourious Basterds", "US Gross": 120831050, "Worldwide Gross": 320389438, "US DVD Sales": 58414604, "Production Budget": 70000000, "Release Date": "Aug 21 2009", "MPAA Rating": "R", "Running Time min": 152, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Quentin Tarantino", "Rotten Tomatoes Rating": 88, "IMDB Rating": 8.4, "IMDB Votes": 178742}, {"Title": "Blue Streak", "US Gross": 68208190, "Worldwide Gross": 117448157, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Sep 17 1999", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Les Mayfield", "Rotten Tomatoes Rating": 35, "IMDB Rating": 5.9, "IMDB Votes": 23545}, {"Title": "The Butterfly Effect", "US Gross": 57924679, "Worldwide Gross": 96046844, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Jan 23 2004", "MPAA Rating": "R", "Running Time min": 113, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 7.8, "IMDB Votes": 102982}, {"Title": "O Brother, Where Art Thou", "US Gross": 45506619, "Worldwide Gross": 65976782, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Dec 22 2000", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "Walt Disney Pictures", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Joel Coen", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Batman & Robin", "US Gross": 107325195, "Worldwide Gross": 238317814, "US DVD Sales": null, "Production Budget": 125000000, "Release Date": "Jun 20 1997", "MPAA Rating": "PG-13", "Running Time min": 130, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 11, "IMDB Rating": 3.5, "IMDB Votes": 81283}, {"Title": "Boat Trip", "US Gross": 8586376, "Worldwide Gross": 14933713, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Mar 21 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 7, "IMDB Rating": 4.7, "IMDB Votes": 13258}, {"Title": "Bubba Ho-Tep", "US Gross": 1239183, "Worldwide Gross": 1239183, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 19 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Vitagraph Films", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 23110}, {"Title": "Bubble", "US Gross": 145382, "Worldwide Gross": 145382, "US DVD Sales": null, "Production Budget": 1600000, "Release Date": "Jan 27 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 101}, {"Title": "Bubble Boy", "US Gross": 5002310, "Worldwide Gross": 5002310, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Aug 24 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.4, "IMDB Votes": 11073}, {"Title": "Buffalo '66", "US Gross": 2380606, "Worldwide Gross": 2380606, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Jun 26 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Vincent Gallo", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.3, "IMDB Votes": 17762}, {"Title": "Buffalo Soldiers", "US Gross": 353743, "Worldwide Gross": 353743, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jul 25 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 13510}, {"Title": "Bulworth", "US Gross": 26528684, "Worldwide Gross": 29203383, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "May 15 1998", "MPAA Rating": "R", "Running Time min": 107, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Warren Beatty", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.8, "IMDB Votes": 15486}, {"Title": "W.", "US Gross": 25534493, "Worldwide Gross": 28575778, "US DVD Sales": 7871296, "Production Budget": 25100000, "Release Date": "Oct 17 2008", "MPAA Rating": "PG-13", "Running Time min": 131, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 60, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Bowfinger", "US Gross": 66458769, "Worldwide Gross": 98699769, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Aug 13 1999", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Frank Oz", "Rotten Tomatoes Rating": 79, "IMDB Rating": 6.4, "IMDB Votes": 33389}, {"Title": "Bewitched", "US Gross": 63313159, "Worldwide Gross": 131413159, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 24 2005", "MPAA Rating": "PG-13", "Running Time min": 100, "Distributor": "Sony Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Nora Ephron", "Rotten Tomatoes Rating": 24, "IMDB Rating": 4.8, "IMDB Votes": 26834}, {"Title": "Barnyard: The Original Party Animals", "US Gross": 72779000, "Worldwide Gross": 116618084, "US DVD Sales": 65043181, "Production Budget": 51000000, "Release Date": "Aug 04 2006", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Steve Oedekerk", "Rotten Tomatoes Rating": 23, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Beyond the Sea", "US Gross": 6144806, "Worldwide Gross": 7061637, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Dec 17 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Kevin Spacey", "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.6, "IMDB Votes": 8002}, {"Title": "Cabin Fever", "US Gross": 21158188, "Worldwide Gross": 30553394, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Sep 12 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Eli Roth", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 28417}, {"Title": "CachÈ", "US Gross": 3647381, "Worldwide Gross": 17147381, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Dec 23 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 26}, {"Title": "Cadillac Records", "US Gross": 8138000, "Worldwide Gross": 8138000, "US DVD Sales": 10049741, "Production Budget": 12000000, "Release Date": "Dec 05 2008", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.7, "IMDB Votes": 5026}, {"Title": "Can't Hardly Wait", "US Gross": 25358996, "Worldwide Gross": 25358996, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jun 12 1998", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.2, "IMDB Votes": 19470}, {"Title": "Capote", "US Gross": 28750530, "Worldwide Gross": 46309352, "US DVD Sales": 17031573, "Production Budget": 7000000, "Release Date": "Sep 30 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Bennett Miller", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.6, "IMDB Votes": 41472}, {"Title": "Sukkar banat", "US Gross": 1060591, "Worldwide Gross": 14253760, "US DVD Sales": null, "Production Budget": 1600000, "Release Date": "Feb 01 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Roadside Attractions", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 3799}, {"Title": "Disney's A Christmas Carol", "US Gross": 137855863, "Worldwide Gross": 323743744, "US DVD Sales": null, "Production Budget": 190000000, "Release Date": "Nov 06 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 53, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Rage: Carrie 2", "US Gross": 17760244, "Worldwide Gross": 17760244, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Mar 12 1999", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 4.3, "IMDB Votes": 7235}, {"Title": "Cars", "US Gross": 244082982, "Worldwide Gross": 461923762, "US DVD Sales": 246114559, "Production Budget": 70000000, "Release Date": "Jun 09 2006", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "John Lasseter", "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.5, "IMDB Votes": 66809}, {"Title": "Cast Away", "US Gross": 233632142, "Worldwide Gross": 427230516, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Dec 22 2000", "MPAA Rating": "PG-13", "Running Time min": 144, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.5, "IMDB Votes": 102936}, {"Title": "Catch Me if You Can", "US Gross": 164606800, "Worldwide Gross": 351106800, "US DVD Sales": null, "Production Budget": 52000000, "Release Date": "Dec 25 2002", "MPAA Rating": "PG-13", "Running Time min": 141, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 96, "IMDB Rating": 5.7, "IMDB Votes": 224}, {"Title": "The Cat in the Hat", "US Gross": 101018283, "Worldwide Gross": 133818283, "US DVD Sales": null, "Production Budget": 109000000, "Release Date": "Nov 21 2003", "MPAA Rating": "PG", "Running Time min": 82, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.4, "IMDB Votes": 15318}, {"Title": "Cats Don't Dance", "US Gross": 3588602, "Worldwide Gross": 3588602, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Mar 26 1997", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Fantasy", "Director": "Mark Dindal", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.9, "IMDB Votes": 1663}, {"Title": "Catwoman", "US Gross": 40202379, "Worldwide Gross": 82102379, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Jul 23 2004", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 3.2, "IMDB Votes": 34651}, {"Title": "Cecil B. Demented", "US Gross": 1276984, "Worldwide Gross": 1953882, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 11 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Waters", "Rotten Tomatoes Rating": 51, "IMDB Rating": 5.9, "IMDB Votes": 7565}, {"Title": "The Country Bears", "US Gross": 16988996, "Worldwide Gross": 16988996, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jul 26 2002", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Disney Ride", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 27, "IMDB Rating": 3.8, "IMDB Votes": 2021}, {"Title": "Center Stage", "US Gross": 17200925, "Worldwide Gross": 17200925, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "May 12 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.2, "IMDB Votes": 7968}, {"Title": "The Corpse Bride", "US Gross": 53359111, "Worldwide Gross": 117359111, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 16 2005", "MPAA Rating": "PG", "Running Time min": 77, "Distributor": "Warner Bros.", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Tim Burton", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Critical Care", "US Gross": 220175, "Worldwide Gross": 220175, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Oct 31 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Sidney Lumet", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6, "IMDB Votes": 895}, {"Title": "Connie & Carla", "US Gross": 8047525, "Worldwide Gross": 8047525, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Apr 16 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Michael Lembeck", "Rotten Tomatoes Rating": 44, "IMDB Rating": 6, "IMDB Votes": 4359}, {"Title": "Collateral Damage", "US Gross": 40048332, "Worldwide Gross": 78353508, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Feb 08 2002", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Andrew Davis", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 24358}, {"Title": "Crocodile Dundee in Los Angeles", "US Gross": 25590119, "Worldwide Gross": 39393111, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 20 2001", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Simon Wincer", "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.6, "IMDB Votes": 7082}, {"Title": "Celebrity", "US Gross": 5078660, "Worldwide Gross": 6200000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Nov 20 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.1, "IMDB Votes": 10978}, {"Title": "The Cell", "US Gross": 61280963, "Worldwide Gross": 61280963, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Aug 18 2000", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.2, "IMDB Votes": 36961}, {"Title": "Cellular", "US Gross": 32003620, "Worldwide Gross": 45261739, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Sep 10 2004", "MPAA Rating": "PG-13", "Running Time min": 94, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "David R. Ellis", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.5, "IMDB Votes": 32534}, {"Title": "City of Ember", "US Gross": 7871693, "Worldwide Gross": 11817059, "US DVD Sales": 6086988, "Production Budget": 38000000, "Release Date": "Oct 10 2008", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Gil Kenan", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6.4, "IMDB Votes": 14905}, {"Title": "Charlie and the Chocolate Factory", "US Gross": 206459076, "Worldwide Gross": 474459076, "US DVD Sales": null, "Production Budget": 150000000, "Release Date": "Jul 15 2005", "MPAA Rating": "PG", "Running Time min": 115, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Tim Burton", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.1, "IMDB Votes": 102437}, {"Title": "Catch a Fire", "US Gross": 4299773, "Worldwide Gross": 5699773, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Oct 27 2006", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Focus Features", "Source": "Based on Real Life Events", "Major Genre": "Thriller/Suspense", "Creative Type": "Dramatization", "Director": "Phillip Noyce", "Rotten Tomatoes Rating": 76, "IMDB Rating": 6.8, "IMDB Votes": 5959}, {"Title": "Charlie's Angels: Full Throttle", "US Gross": 100814328, "Worldwide Gross": 227200000, "US DVD Sales": null, "Production Budget": 120000000, "Release Date": "Jun 27 2003", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "Sony Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Joseph McGinty Nichol", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 43942}, {"Title": "Charlie's Angels", "US Gross": 125305545, "Worldwide Gross": 263200000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Nov 03 2000", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Sony Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Joseph McGinty Nichol", "Rotten Tomatoes Rating": 67, "IMDB Rating": 5.5, "IMDB Votes": 60791}, {"Title": "Chasing Amy", "US Gross": 12006514, "Worldwide Gross": 15155095, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Apr 04 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.5, "IMDB Votes": 63591}, {"Title": "Chicago", "US Gross": 170687518, "Worldwide Gross": 307687518, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 27 2002", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Miramax", "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Rob Marshall", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.2, "IMDB Votes": 82650}, {"Title": "Chicken Little", "US Gross": 135386665, "Worldwide Gross": 314432738, "US DVD Sales": 142108745, "Production Budget": 60000000, "Release Date": "Nov 04 2005", "MPAA Rating": "G", "Running Time min": 80, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Mark Dindal", "Rotten Tomatoes Rating": 36, "IMDB Rating": 5.8, "IMDB Votes": 17415}, {"Title": "Chicken Run", "US Gross": 106793915, "Worldwide Gross": 227793915, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Jun 21 2000", "MPAA Rating": "G", "Running Time min": 84, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Nick Park", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.3, "IMDB Votes": 48307}, {"Title": "Cheaper by the Dozen", "US Gross": 138614544, "Worldwide Gross": 189714544, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Dec 25 2003", "MPAA Rating": "PG", "Running Time min": 98, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Shawn Levy", "Rotten Tomatoes Rating": 24, "IMDB Rating": 5.6, "IMDB Votes": 24283}, {"Title": "Cheaper by the Dozen 2", "US Gross": 82571173, "Worldwide Gross": 135015330, "US DVD Sales": 26537982, "Production Budget": 60000000, "Release Date": "Dec 21 2005", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Adam Shankman", "Rotten Tomatoes Rating": 7, "IMDB Rating": 5.2, "IMDB Votes": 11858}, {"Title": "Cheri", "US Gross": 2715657, "Worldwide Gross": 2715657, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Jun 26 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Stephen Frears", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.1, "IMDB Votes": 3307}, {"Title": "Chill Factor", "US Gross": 11263966, "Worldwide Gross": 11263966, "US DVD Sales": null, "Production Budget": 34000000, "Release Date": "Sep 01 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 7, "IMDB Rating": 4.9, "IMDB Votes": 5374}, {"Title": "Bride of Chucky", "US Gross": 32404188, "Worldwide Gross": 50692188, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Oct 16 1998", "MPAA Rating": "R", "Running Time min": 89, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Ronny Yu", "Rotten Tomatoes Rating": 43, "IMDB Rating": 5.3, "IMDB Votes": 13735}, {"Title": "Seed of Chucky", "US Gross": 17016190, "Worldwide Gross": 24716190, "US DVD Sales": null, "Production Budget": 29000000, "Release Date": "Nov 12 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus/Rogue Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": 5.1, "IMDB Votes": 9897}, {"Title": "Children of Men", "US Gross": 35552383, "Worldwide Gross": 69450202, "US DVD Sales": 25345271, "Production Budget": 76000000, "Release Date": "Dec 25 2006", "MPAA Rating": "R", "Running Time min": 114, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Alfonso Cuaron", "Rotten Tomatoes Rating": 93, "IMDB Rating": 8.1, "IMDB Votes": 158125}, {"Title": "Chloe", "US Gross": 3075255, "Worldwide Gross": 9675172, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Mar 26 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Atom Egoyan", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 8772}, {"Title": "Love in the Time of Cholera", "US Gross": 4617608, "Worldwide Gross": 31077418, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Nov 16 2007", "MPAA Rating": "R", "Running Time min": 139, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Mike Newell", "Rotten Tomatoes Rating": 27, "IMDB Rating": 6.2, "IMDB Votes": 8580}, {"Title": "Chocolat", "US Gross": 71309760, "Worldwide Gross": 152500343, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Dec 15 2000", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Lasse Hallstrom", "Rotten Tomatoes Rating": 62, "IMDB Rating": 7.3, "IMDB Votes": 56176}, {"Title": "The Children of Huang Shi", "US Gross": 1031872, "Worldwide Gross": 5527507, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "May 23 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 31, "IMDB Rating": 6.9, "IMDB Votes": 4100}, {"Title": "Les Choristes", "US Gross": 3629758, "Worldwide Gross": 83529758, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Nov 26 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 16391}, {"Title": "Chairman of the Board", "US Gross": 306715, "Worldwide Gross": 306715, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Mar 13 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Trimark", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 2.1, "IMDB Votes": 3164}, {"Title": "Chuck&Buck", "US Gross": 1055671, "Worldwide Gross": 1157672, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Jul 14 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Chris Weitz", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 3455}, {"Title": "The Chumscrubber", "US Gross": 49526, "Worldwide Gross": 49526, "US DVD Sales": null, "Production Budget": 6800000, "Release Date": "Aug 05 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Picturehouse", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 34, "IMDB Rating": 7, "IMDB Votes": 10449}, {"Title": "Charlotte's Web", "US Gross": 82985708, "Worldwide Gross": 143985708, "US DVD Sales": 83571732, "Production Budget": 82500000, "Release Date": "Dec 15 2006", "MPAA Rating": "G", "Running Time min": 98, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Gary Winick", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.7, "IMDB Votes": 8028}, {"Title": "Cinderella Man", "US Gross": 61649911, "Worldwide Gross": 108539911, "US DVD Sales": null, "Production Budget": 88000000, "Release Date": "Jun 03 2005", "MPAA Rating": "PG-13", "Running Time min": 144, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ron Howard", "Rotten Tomatoes Rating": 80, "IMDB Rating": 8, "IMDB Votes": 63111}, {"Title": "A Cinderella Story", "US Gross": 51438175, "Worldwide Gross": 70067909, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Jul 16 2004", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "Warner Bros.", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 5.4, "IMDB Votes": 14904}, {"Title": "City of Angels", "US Gross": 78750909, "Worldwide Gross": 198750909, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Apr 10 1998", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Brad Silberling", "Rotten Tomatoes Rating": 59, "IMDB Rating": 6.4, "IMDB Votes": 40053}, {"Title": "A Civil Action", "US Gross": 56709981, "Worldwide Gross": 56709981, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 25 1998", "MPAA Rating": "PG-13", "Running Time min": 112, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Steven Zaillian", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.4, "IMDB Votes": 14244}, {"Title": "CJ7", "US Gross": 206678, "Worldwide Gross": 47300771, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 07 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Stephen Chow", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Cookout", "US Gross": 11540112, "Worldwide Gross": 11540112, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Sep 03 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 3.2, "IMDB Votes": 1659}, {"Title": "The Claim", "US Gross": 622023, "Worldwide Gross": 622023, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Dec 29 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.5, "IMDB Votes": 3681}, {"Title": "The Santa Clause 2", "US Gross": 139225854, "Worldwide Gross": 172825854, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Nov 01 2002", "MPAA Rating": "G", "Running Time min": 104, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Michael Lembeck", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 9061}, {"Title": "Cold Mountain", "US Gross": 95632614, "Worldwide Gross": 161632614, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Dec 25 2003", "MPAA Rating": "R", "Running Time min": 152, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Anthony Minghella", "Rotten Tomatoes Rating": 70, "IMDB Rating": 7.3, "IMDB Votes": 51083}, {"Title": "Clean", "US Gross": 138711, "Worldwide Gross": 138711, "US DVD Sales": null, "Production Budget": 10000, "Release Date": "Apr 28 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Palm Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Click", "US Gross": 137355633, "Worldwide Gross": 237555633, "US DVD Sales": 81244755, "Production Budget": 82500000, "Release Date": "Jun 23 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Frank Coraci", "Rotten Tomatoes Rating": 32, "IMDB Rating": 5, "IMDB Votes": 133}, {"Title": "Code Name: The Cleaner", "US Gross": 8135024, "Worldwide Gross": 8135024, "US DVD Sales": 4492233, "Production Budget": 20000000, "Release Date": "Jan 05 2007", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Les Mayfield", "Rotten Tomatoes Rating": 4, "IMDB Rating": 4, "IMDB Votes": 5277}, {"Title": "Welcome to Collinwood", "US Gross": 378650, "Worldwide Gross": 378650, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Oct 04 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 53, "IMDB Rating": 6.2, "IMDB Votes": 7887}, {"Title": "Closer", "US Gross": 33987757, "Worldwide Gross": 115987757, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 03 2004", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "Sony Pictures", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Mike Nichols", "Rotten Tomatoes Rating": 68, "IMDB Rating": 2.9, "IMDB Votes": 212}, {"Title": "Clerks II", "US Gross": 24148068, "Worldwide Gross": 25894473, "US DVD Sales": 26411041, "Production Budget": 5000000, "Release Date": "Jul 21 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 63, "IMDB Rating": 7.7, "IMDB Votes": 56668}, {"Title": "Maid in Manhattan", "US Gross": 93932896, "Worldwide Gross": 154832896, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Dec 13 2002", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Wayne Wang", "Rotten Tomatoes Rating": 39, "IMDB Rating": 4.6, "IMDB Votes": 30370}, {"Title": "It's Complicated", "US Gross": 112735375, "Worldwide Gross": 224614744, "US DVD Sales": 29195673, "Production Budget": 75000000, "Release Date": "Dec 25 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Nancy Meyers", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.7, "IMDB Votes": 17748}, {"Title": "The Company", "US Gross": 2281585, "Worldwide Gross": 3396508, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 25 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Robert Altman", "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.2, "IMDB Votes": 3649}, {"Title": "Constantine", "US Gross": 75976178, "Worldwide Gross": 230884728, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Feb 18 2005", "MPAA Rating": "R", "Running Time min": 122, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Francis Lawrence", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.7, "IMDB Votes": 78705}, {"Title": "The Contender", "US Gross": 17804273, "Worldwide Gross": 17804273, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Oct 13 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Rod Lurie", "Rotten Tomatoes Rating": 76, "IMDB Rating": 6.9, "IMDB Votes": 13709}, {"Title": "Die F‰lscher", "US Gross": 5488570, "Worldwide Gross": 19416495, "US DVD Sales": null, "Production Budget": 6250000, "Release Date": "Feb 22 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 16525}, {"Title": "Control", "US Gross": 871577, "Worldwide Gross": 5645350, "US DVD Sales": null, "Production Budget": 6400000, "Release Date": "Oct 10 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.8, "IMDB Votes": 19466}, {"Title": "Centurion", "US Gross": 119621, "Worldwide Gross": 119621, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Aug 27 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.5, "IMDB Votes": 8997}, {"Title": "Coach Carter", "US Gross": 67264877, "Worldwide Gross": 76669806, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jan 14 2005", "MPAA Rating": "PG-13", "Running Time min": 136, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 65, "IMDB Rating": 7.1, "IMDB Votes": 23526}, {"Title": "Confessions of a Dangerous Mind", "US Gross": 16007718, "Worldwide Gross": 33013805, "US DVD Sales": null, "Production Budget": 29000000, "Release Date": "Dec 31 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "George Clooney", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.1, "IMDB Votes": 36258}, {"Title": "Coco avant Chanel", "US Gross": 6113834, "Worldwide Gross": 48846765, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Sep 25 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 6720}, {"Title": "Code 46", "US Gross": 197148, "Worldwide Gross": 197148, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Aug 06 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": "Science Fiction", "Director": "Michael Winterbottom", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 9608}, {"Title": "Agent Cody Banks 2: Destination London", "US Gross": 23514247, "Worldwide Gross": 28703083, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Mar 12 2004", "MPAA Rating": "PG", "Running Time min": 100, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.1, "IMDB Votes": 4063}, {"Title": "Agent Cody Banks", "US Gross": 47545060, "Worldwide Gross": 58240458, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 14 2003", "MPAA Rating": "PG", "Running Time min": 102, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.1, "IMDB Votes": 9527}, {"Title": "Collateral", "US Gross": 100170152, "Worldwide Gross": 217670152, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Aug 06 2004", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Michael Mann", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.8, "IMDB Votes": 105362}, {"Title": "College", "US Gross": 4694491, "Worldwide Gross": 5629618, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Aug 29 2008", "MPAA Rating": "R", "Running Time min": 94, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 4.3, "IMDB Votes": 6496}, {"Title": "Company Man", "US Gross": 146028, "Worldwide Gross": 146028, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Mar 09 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 1305}, {"Title": "Come Early Morning", "US Gross": 119452, "Worldwide Gross": 119452, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Nov 10 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IDP/Goldwyn/Roadside", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Joey Lauren Adams", "Rotten Tomatoes Rating": 83, "IMDB Rating": 6.2, "IMDB Votes": 1511}, {"Title": "Con Air", "US Gross": 101117573, "Worldwide Gross": 224117573, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 06 1997", "MPAA Rating": "R", "Running Time min": 115, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Simon West", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.6, "IMDB Votes": 76052}, {"Title": "Confidence", "US Gross": 12212417, "Worldwide Gross": 12212417, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 25 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "James Foley", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.8, "IMDB Votes": 17111}, {"Title": "Conspiracy Theory", "US Gross": 76118990, "Worldwide Gross": 137118990, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Aug 08 1997", "MPAA Rating": "R", "Running Time min": 135, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Richard Donner", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.5, "IMDB Votes": 35719}, {"Title": "Contact", "US Gross": 100920329, "Worldwide Gross": 165900000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jul 11 1997", "MPAA Rating": "PG", "Running Time min": 150, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 67, "IMDB Rating": 7.3, "IMDB Votes": 73684}, {"Title": "The Cooler", "US Gross": 8291572, "Worldwide Gross": 10464788, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Nov 26 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 77, "IMDB Rating": 7, "IMDB Votes": 19072}, {"Title": "Copying Beethoven", "US Gross": 355968, "Worldwide Gross": 355968, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Nov 10 2006", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 5017}, {"Title": "Corky Romano", "US Gross": 23978402, "Worldwide Gross": 23978402, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Oct 12 2001", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 4.2, "IMDB Votes": 6739}, {"Title": "Coraline", "US Gross": 75286229, "Worldwide Gross": 124062750, "US DVD Sales": 46101073, "Production Budget": 60000000, "Release Date": "Feb 06 2009", "MPAA Rating": "PG", "Running Time min": 100, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.8, "IMDB Votes": 38464}, {"Title": "Confessions of a Teenage Drama Queen", "US Gross": 29331068, "Worldwide Gross": 33051296, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Feb 20 2004", "MPAA Rating": "PG", "Running Time min": 89, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.3, "IMDB Votes": 9976}, {"Title": "The Covenant", "US Gross": 23364784, "Worldwide Gross": 38164784, "US DVD Sales": 26360430, "Production Budget": 20000000, "Release Date": "Sep 08 2006", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Sony/Screen Gems", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": 3, "IMDB Rating": 4.8, "IMDB Votes": 17736}, {"Title": "Cop Land", "US Gross": 44906632, "Worldwide Gross": 63706632, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Aug 15 1997", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "James Mangold", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.9, "IMDB Votes": 35192}, {"Title": "Couples Retreat", "US Gross": 109205660, "Worldwide Gross": 172450423, "US DVD Sales": 34715888, "Production Budget": 60000000, "Release Date": "Oct 09 2009", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Billingsley", "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.5, "IMDB Votes": 18332}, {"Title": "Cradle Will Rock", "US Gross": 2899970, "Worldwide Gross": 2899970, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Dec 08 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Tim Robbins", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.7, "IMDB Votes": 6127}, {"Title": "Crank", "US Gross": 27838408, "Worldwide Gross": 33824696, "US DVD Sales": 28776986, "Production Budget": 12000000, "Release Date": "Sep 01 2006", "MPAA Rating": "R", "Running Time min": 88, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 61, "IMDB Rating": 7.1, "IMDB Votes": 71094}, {"Title": "Crash", "US Gross": 3357324, "Worldwide Gross": 3357324, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 04 1996", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "David Cronenberg", "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.1, "IMDB Votes": 20886}, {"Title": "The Crazies", "US Gross": 39123589, "Worldwide Gross": 43027734, "US DVD Sales": 8835872, "Production Budget": 20000000, "Release Date": "Feb 26 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Overture Films", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.7, "IMDB Votes": 21135}, {"Title": "Crazy in Alabama", "US Gross": 1954202, "Worldwide Gross": 1954202, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 22 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Antonio Banderas", "Rotten Tomatoes Rating": 31, "IMDB Rating": 5.7, "IMDB Votes": 3991}, {"Title": "The Crew", "US Gross": 13019253, "Worldwide Gross": 13019253, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Aug 25 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 6, "IMDB Votes": 1307}, {"Title": "Cradle 2 the Grave", "US Gross": 34657731, "Worldwide Gross": 56434942, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Feb 28 2003", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Andrzej Bartkowiak", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.4, "IMDB Votes": 14834}, {"Title": "Crocodile Hunter: Collision Course", "US Gross": 28436931, "Worldwide Gross": 33436931, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Jul 12 2002", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "MGM", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The In Crowd", "US Gross": 5217498, "Worldwide Gross": 5217498, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jul 19 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 2, "IMDB Rating": 4.2, "IMDB Votes": 2720}, {"Title": "The Corruptor", "US Gross": 15164492, "Worldwide Gross": 15164492, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Mar 12 1999", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "James Foley", "Rotten Tomatoes Rating": 48, "IMDB Rating": 5.8, "IMDB Votes": 9008}, {"Title": "Man cheng jin dai huang jin jia", "US Gross": 6566773, "Worldwide Gross": 75566773, "US DVD Sales": 10581873, "Production Budget": 45000000, "Release Date": "Dec 21 2006", "MPAA Rating": "R", "Running Time min": 113, "Distributor": "Sony Pictures Classics", "Source": "Based on Play", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Yimou Zhang", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 17975}, {"Title": "Crash", "US Gross": 54557348, "Worldwide Gross": 98387109, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "May 06 2005", "MPAA Rating": "R", "Running Time min": 107, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Paul Haggis", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.1, "IMDB Votes": 20886}, {"Title": "Crossover", "US Gross": 7009668, "Worldwide Gross": 7009668, "US DVD Sales": 2177636, "Production Budget": 5600000, "Release Date": "Sep 01 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 3, "IMDB Rating": 1.7, "IMDB Votes": 7466}, {"Title": "Crossroads", "US Gross": 37188667, "Worldwide Gross": 57000000, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Feb 15 2002", "MPAA Rating": "PG-13", "Running Time min": 93, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 6.6, "IMDB Votes": 4894}, {"Title": "The Count of Monte Cristo", "US Gross": 54228104, "Worldwide Gross": 54228104, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jan 25 2002", "MPAA Rating": "PG-13", "Running Time min": 131, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Kevin Reynolds", "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.6, "IMDB Votes": 40605}, {"Title": "Cruel Intentions", "US Gross": 38230075, "Worldwide Gross": 75803716, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Mar 05 1999", "MPAA Rating": "R", "Running Time min": 95, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Roger Kumble", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.7, "IMDB Votes": 66861}, {"Title": "The Cry of the Owl", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 11500000, "Release Date": "Nov 27 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 6.2, "IMDB Votes": 1244}, {"Title": "Cry Wolf", "US Gross": 10047674, "Worldwide Gross": 15585495, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Sep 16 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Focus/Rogue Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 24, "IMDB Rating": 6.4, "IMDB Votes": 372}, {"Title": "Crazy Heart", "US Gross": 39462438, "Worldwide Gross": 47163756, "US DVD Sales": 13929671, "Production Budget": 8500000, "Release Date": "Dec 16 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.4, "IMDB Votes": 17255}, {"Title": "crazy/beautiful", "US Gross": 16929123, "Worldwide Gross": 19929123, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Jun 29 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 12102}, {"Title": "The Last Castle", "US Gross": 18208078, "Worldwide Gross": 20541668, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Oct 19 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Rod Lurie", "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.5, "IMDB Votes": 21621}, {"Title": "Clockstoppers", "US Gross": 36985501, "Worldwide Gross": 38788828, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Mar 29 2002", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Jonathan Frakes", "Rotten Tomatoes Rating": 28, "IMDB Rating": 5, "IMDB Votes": 6392}, {"Title": "Catch That Kid", "US Gross": 16703799, "Worldwide Gross": 16930762, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Feb 06 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 3038}, {"Title": "Cats & Dogs", "US Gross": 93375151, "Worldwide Gross": 200700000, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jul 04 2001", "MPAA Rating": "PG", "Running Time min": 91, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 53, "IMDB Rating": 5.2, "IMDB Votes": 16912}, {"Title": "The City of Your Final Destination", "US Gross": 493296, "Worldwide Gross": 493296, "US DVD Sales": null, "Production Budget": 8300000, "Release Date": "Apr 16 2010", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "Hyde Park Films", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "James Ivory", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.6, "IMDB Votes": 430}, {"Title": "Cidade de Deus", "US Gross": 7563397, "Worldwide Gross": 28763397, "US DVD Sales": null, "Production Budget": 3300000, "Release Date": "Jan 17 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Katia Lund", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.8, "IMDB Votes": 166897}, {"Title": "City of Ghosts", "US Gross": 325491, "Worldwide Gross": 325491, "US DVD Sales": null, "Production Budget": 17500000, "Release Date": "Apr 25 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Matt Dillon", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 2880}, {"Title": "City by the Sea", "US Gross": 22433915, "Worldwide Gross": 22433915, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Sep 06 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Magazine Article", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Michael Caton-Jones", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.1, "IMDB Votes": 13487}, {"Title": "The Cube", "US Gross": 489220, "Worldwide Gross": 489220, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Sep 11 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 202}, {"Title": "Coyote Ugly", "US Gross": 60786269, "Worldwide Gross": 115786269, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Aug 04 2000", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.3, "IMDB Votes": 33808}, {"Title": "Curious George", "US Gross": 58640119, "Worldwide Gross": 70114174, "US DVD Sales": 47809786, "Production Budget": 50000000, "Release Date": "Feb 10 2006", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.7, "IMDB Votes": 5393}, {"Title": "Cursed", "US Gross": 19294901, "Worldwide Gross": 25114901, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Feb 25 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Wes Craven", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.8, "IMDB Votes": 14425}, {"Title": "Civil Brand", "US Gross": 254293, "Worldwide Gross": 254293, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Aug 29 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 340}, {"Title": "Cloudy with a Chance of Meatballs", "US Gross": 124870275, "Worldwide Gross": 139525862, "US DVD Sales": 42574228, "Production Budget": 100000000, "Release Date": "Sep 18 2009", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Phil Lord", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.2, "IMDB Votes": 19913}, {"Title": "Charlie Wilson's War", "US Gross": 66661095, "Worldwide Gross": 118661095, "US DVD Sales": 17517037, "Production Budget": 75000000, "Release Date": "Dec 21 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Mike Nichols", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.3, "IMDB Votes": 43168}, {"Title": "Cyrus", "US Gross": 7426671, "Worldwide Gross": 8514729, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jun 18 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Mark Duplass", "Rotten Tomatoes Rating": 81, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Daddy Day Camp", "US Gross": 13235267, "Worldwide Gross": 18197398, "US DVD Sales": 5405521, "Production Budget": 76000000, "Release Date": "Aug 08 2007", "MPAA Rating": "PG", "Running Time min": 85, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 1, "IMDB Rating": 2.4, "IMDB Votes": 6809}, {"Title": "Daddy Day Care", "US Gross": 104148781, "Worldwide Gross": 164285587, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "May 09 2003", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steve Carr", "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.5, "IMDB Votes": 14944}, {"Title": "The Black Dahlia", "US Gross": 22672813, "Worldwide Gross": 46672813, "US DVD Sales": 12350794, "Production Budget": 60000000, "Release Date": "Sep 15 2006", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.6, "IMDB Votes": 35210}, {"Title": "Diary of a Mad Black Woman", "US Gross": 50406346, "Worldwide Gross": 50425450, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Feb 25 2005", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Lionsgate", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 4.9, "IMDB Votes": 5565}, {"Title": "Dance Flick", "US Gross": 25662155, "Worldwide Gross": 32092761, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "May 22 2009", "MPAA Rating": "PG-13", "Running Time min": 83, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Damien Wayans", "Rotten Tomatoes Rating": 17, "IMDB Rating": 3.4, "IMDB Votes": 5002}, {"Title": "Dancer, Texas Pop. 81", "US Gross": 574838, "Worldwide Gross": 574838, "US DVD Sales": null, "Production Budget": 2300000, "Release Date": "May 01 1998", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 80, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Daredevil", "US Gross": 102543518, "Worldwide Gross": 179179718, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Feb 14 2003", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Mark Steven Johnson", "Rotten Tomatoes Rating": 44, "IMDB Rating": 5.5, "IMDB Votes": 63574}, {"Title": "Dark City", "US Gross": 14435076, "Worldwide Gross": 27257061, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Feb 27 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": "Alex Proyas", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.8, "IMDB Votes": 62991}, {"Title": "His Dark Materials: The Golden Compass", "US Gross": 70107728, "Worldwide Gross": 372234864, "US DVD Sales": 41772382, "Production Budget": 205000000, "Release Date": "Dec 01 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Chris Weitz", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Donnie Darko", "US Gross": 1270522, "Worldwide Gross": 4116307, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Oct 26 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Newmarket Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Richard Kelly", "Rotten Tomatoes Rating": 84, "IMDB Rating": 8.3, "IMDB Votes": 210713}, {"Title": "Dark Water", "US Gross": 25473093, "Worldwide Gross": 49473093, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jul 08 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": "Walter Salles", "Rotten Tomatoes Rating": 46, "IMDB Rating": 5.6, "IMDB Votes": 19652}, {"Title": "Win a Date with Tad Hamilton!", "US Gross": 16980098, "Worldwide Gross": 16980098, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Jan 23 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Robert Luketic", "Rotten Tomatoes Rating": 52, "IMDB Rating": 5.7, "IMDB Votes": 10366}, {"Title": "Date Movie", "US Gross": 48548426, "Worldwide Gross": 84548426, "US DVD Sales": 18840886, "Production Budget": 20000000, "Release Date": "Feb 17 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jason Friedberg", "Rotten Tomatoes Rating": 6, "IMDB Rating": 2.6, "IMDB Votes": 31821}, {"Title": "Date Night", "US Gross": 98711404, "Worldwide Gross": 152253432, "US DVD Sales": 19432795, "Production Budget": 55000000, "Release Date": "Apr 09 2010", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Shawn Levy", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.5, "IMDB Votes": 22925}, {"Title": "Dawn of the Dead", "US Gross": 58990765, "Worldwide Gross": 102290765, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Mar 19 2004", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Zack Snyder", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.4, "IMDB Votes": 73875}, {"Title": "Daybreakers", "US Gross": 30101577, "Worldwide Gross": 48969954, "US DVD Sales": 11463099, "Production Budget": 20000000, "Release Date": "Jan 08 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Michael Spierig", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 28241}, {"Title": "Day of the Dead", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Apr 08 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Steve Miner", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.5, "IMDB Votes": 8395}, {"Title": "The Great Debaters", "US Gross": 30226144, "Worldwide Gross": 30226144, "US DVD Sales": 24133037, "Production Budget": 15000000, "Release Date": "Dec 25 2007", "MPAA Rating": "PG-13", "Running Time min": 130, "Distributor": "Weinstein Co.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Denzel Washington", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.6, "IMDB Votes": 14530}, {"Title": "Double Jeopardy", "US Gross": 116735231, "Worldwide Gross": 177835231, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Sep 24 1999", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Bruce Beresford", "Rotten Tomatoes Rating": 25, "IMDB Rating": 6, "IMDB Votes": 28887}, {"Title": "Der Baader Meinhof Komplex", "US Gross": 476270, "Worldwide Gross": 16498827, "US DVD Sales": null, "Production Budget": 19700000, "Release Date": "Aug 21 2009", "MPAA Rating": "R", "Running Time min": 149, "Distributor": "Vitagraph Films", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 10383}, {"Title": "Deep Blue Sea", "US Gross": 73648228, "Worldwide Gross": 165048228, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jul 28 1999", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": 57, "IMDB Rating": 5.6, "IMDB Votes": 44191}, {"Title": "Drive Me Crazy", "US Gross": 17843379, "Worldwide Gross": 22591451, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Oct 01 1999", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Schultz", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.1, "IMDB Votes": 6968}, {"Title": "Dave Chappelle's Block Party", "US Gross": 11718595, "Worldwide Gross": 12051924, "US DVD Sales": 18713941, "Production Budget": 3000000, "Release Date": "Mar 03 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Michel Gondry", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Dancer in the Dark", "US Gross": 4157491, "Worldwide Gross": 45557491, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Sep 22 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.8, "IMDB Votes": 36542}, {"Title": "Diary of the Dead", "US Gross": 952620, "Worldwide Gross": 4726656, "US DVD Sales": 4653193, "Production Budget": 2750000, "Release Date": "Feb 15 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "George A. Romero", "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 20792}, {"Title": "Dear John", "US Gross": 80014842, "Worldwide Gross": 112014842, "US DVD Sales": 19179552, "Production Budget": 25000000, "Release Date": "Feb 05 2010", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Lasse Hallstrom", "Rotten Tomatoes Rating": 28, "IMDB Rating": 7, "IMDB Votes": 246}, {"Title": "Dear Wendy", "US Gross": 23106, "Worldwide Gross": 446438, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Sep 23 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "WellSpring", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": "Thomas Vinterberg", "Rotten Tomatoes Rating": 37, "IMDB Rating": 6.6, "IMDB Votes": 5574}, {"Title": "D.E.B.S.", "US Gross": 96793, "Worldwide Gross": 96793, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Mar 25 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Samuel Goldwyn Films", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": null, "Director": "Angela Robinson", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 6675}, {"Title": "Deconstructing Harry", "US Gross": 10686841, "Worldwide Gross": 10686841, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 12 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 70, "IMDB Rating": 7.2, "IMDB Votes": 16820}, {"Title": "Mr. Deeds", "US Gross": 126293452, "Worldwide Gross": 171269535, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 28 2002", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.5, "IMDB Votes": 39756}, {"Title": "The Deep End of the Ocean", "US Gross": 13508635, "Worldwide Gross": 13508635, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Mar 12 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 6, "IMDB Votes": 5790}, {"Title": "Deep Rising", "US Gross": 11203026, "Worldwide Gross": 11203026, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jan 30 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Stephen Sommers", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.7, "IMDB Votes": 12484}, {"Title": "Definitely, Maybe", "US Gross": 32241649, "Worldwide Gross": 55534224, "US DVD Sales": 12928344, "Production Budget": 7000000, "Release Date": "Feb 14 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Death at a Funeral", "US Gross": 42739347, "Worldwide Gross": 42739347, "US DVD Sales": 9750680, "Production Budget": 21000000, "Release Date": "Apr 16 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Neil LaBute", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.1, "IMDB Votes": 6628}, {"Title": "DÈj‡ Vu", "US Gross": 64038616, "Worldwide Gross": 181038616, "US DVD Sales": 40502497, "Production Budget": 80000000, "Release Date": "Nov 22 2006", "MPAA Rating": "PG-13", "Running Time min": 126, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 66106}, {"Title": "Delgo", "US Gross": 915840, "Worldwide Gross": 915840, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Dec 12 2008", "MPAA Rating": "PG", "Running Time min": 88, "Distributor": "Freestyle Releasing", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.4, "IMDB Votes": 1177}, {"Title": "Despicable Me", "US Gross": 244885070, "Worldwide Gross": 333572855, "US DVD Sales": null, "Production Budget": 69000000, "Release Date": "Jul 09 2010", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "Universal", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 80, "IMDB Rating": 7.7, "IMDB Votes": 10529}, {"Title": "Deuce Bigalow: European Gigolo", "US Gross": 22400154, "Worldwide Gross": 44400154, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Aug 12 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 4.3, "IMDB Votes": 18228}, {"Title": "Deuce Bigalow: Male Gigolo", "US Gross": 65535067, "Worldwide Gross": 92935067, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Dec 10 1999", "MPAA Rating": "R", "Running Time min": 88, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 5.6, "IMDB Votes": 25397}, {"Title": "The Devil's Own", "US Gross": 42885593, "Worldwide Gross": 140900000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Mar 26 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Alan J. Pakula", "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.8, "IMDB Votes": 21331}, {"Title": "Darkness Falls", "US Gross": 32539681, "Worldwide Gross": 32539681, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jan 24 2003", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.6, "IMDB Votes": 12771}, {"Title": "Defiance", "US Gross": 28644813, "Worldwide Gross": 42268745, "US DVD Sales": 13421577, "Production Budget": 50000000, "Release Date": "Dec 31 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Edward Zwick", "Rotten Tomatoes Rating": 56, "IMDB Rating": 5.9, "IMDB Votes": 362}, {"Title": "A Dog of Flanders", "US Gross": 2165637, "Worldwide Gross": 2165637, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Aug 27 1999", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.9, "IMDB Votes": 482}, {"Title": "Dragonfly", "US Gross": 30063805, "Worldwide Gross": 30063805, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Feb 22 2002", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Tom Shadyac", "Rotten Tomatoes Rating": 7, "IMDB Rating": 5.8, "IMDB Votes": 14098}, {"Title": "The Dead Girl", "US Gross": 19875, "Worldwide Gross": 19875, "US DVD Sales": null, "Production Budget": 3300000, "Release Date": "Dec 29 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "First Look", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.8, "IMDB Votes": 7122}, {"Title": "The Lords of Dogtown", "US Gross": 11273517, "Worldwide Gross": 11354893, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jun 03 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/TriStar", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Catherine Hardwicke", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Dick", "US Gross": 6276869, "Worldwide Gross": 6276869, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Aug 04 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Andrew Fleming", "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.1, "IMDB Votes": 10451}, {"Title": "Live Free or Die Hard", "US Gross": 134529403, "Worldwide Gross": 383531464, "US DVD Sales": 100774964, "Production Budget": 110000000, "Release Date": "Jun 27 2007", "MPAA Rating": "PG-13", "Running Time min": 128, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Len Wiseman", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.5, "IMDB Votes": 130559}, {"Title": "Digimon: The Movie", "US Gross": 9628751, "Worldwide Gross": 16628751, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Oct 06 2000", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.6, "IMDB Votes": 1727}, {"Title": "Dirty Work", "US Gross": 10020081, "Worldwide Gross": 10020081, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Jun 12 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.8, "IMDB Votes": 207}, {"Title": "Banlieue 13", "US Gross": 1200216, "Worldwide Gross": 11208291, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jun 02 2006", "MPAA Rating": "R", "Running Time min": 85, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Pierre Morel", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 21427}, {"Title": "Disaster Movie", "US Gross": 14190901, "Worldwide Gross": 34690901, "US DVD Sales": 9859088, "Production Budget": 20000000, "Release Date": "Aug 29 2008", "MPAA Rating": "PG-13", "Running Time min": 88, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jason Friedberg", "Rotten Tomatoes Rating": 2, "IMDB Rating": 1.7, "IMDB Votes": 34928}, {"Title": "District 9", "US Gross": 115646235, "Worldwide Gross": 206552113, "US DVD Sales": 30058184, "Production Budget": 30000000, "Release Date": "Aug 14 2009", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Neill Blomkamp", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.3, "IMDB Votes": 151742}, {"Title": "Disturbing Behavior", "US Gross": 17507368, "Worldwide Gross": 17507368, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jul 24 1998", "MPAA Rating": "R", "Running Time min": 83, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.2, "IMDB Votes": 9394}, {"Title": "Le Scaphandre et le Papillon", "US Gross": 5990075, "Worldwide Gross": 19689095, "US DVD Sales": 2354497, "Production Budget": 14000000, "Release Date": "Nov 30 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Julian Schnabel", "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 31172}, {"Title": "Dark Blue", "US Gross": 9237470, "Worldwide Gross": 11933396, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Feb 21 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Ron Shelton", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.6, "IMDB Votes": 10881}, {"Title": "Dreaming of Joseph Lees", "US Gross": 7680, "Worldwide Gross": 7680, "US DVD Sales": null, "Production Budget": 3250000, "Release Date": "Oct 29 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 520}, {"Title": "De-Lovely", "US Gross": 13337299, "Worldwide Gross": 18396382, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jun 25 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.5, "IMDB Votes": 6086}, {"Title": "Madea's Family Reunion", "US Gross": 63257940, "Worldwide Gross": 63308879, "US DVD Sales": 26508859, "Production Budget": 10000000, "Release Date": "Feb 24 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tyler Perry", "Rotten Tomatoes Rating": 26, "IMDB Rating": 3.9, "IMDB Votes": 5369}, {"Title": "Dead Man on Campus", "US Gross": 15064948, "Worldwide Gross": 15064948, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Aug 21 1998", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 5.6, "IMDB Votes": 7109}, {"Title": "Drowning Mona", "US Gross": 15427192, "Worldwide Gross": 15427192, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Mar 03 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Destination Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.3, "IMDB Votes": 7606}, {"Title": "Diamonds", "US Gross": 81897, "Worldwide Gross": 81897, "US DVD Sales": null, "Production Budget": 11900000, "Release Date": "Dec 10 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.3, "IMDB Votes": 976}, {"Title": "Doomsday", "US Gross": 11008770, "Worldwide Gross": 21621188, "US DVD Sales": 8666480, "Production Budget": 33000000, "Release Date": "Mar 14 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 48, "IMDB Rating": 6, "IMDB Votes": 34035}, {"Title": "Donkey Punch", "US Gross": 19367, "Worldwide Gross": 19367, "US DVD Sales": null, "Production Budget": 750000, "Release Date": "Jan 23 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 4551}, {"Title": "Dinosaur", "US Gross": 137748063, "Worldwide Gross": 356148063, "US DVD Sales": null, "Production Budget": 127500000, "Release Date": "May 19 2000", "MPAA Rating": "PG", "Running Time min": 82, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.2, "IMDB Votes": 13962}, {"Title": "DOA: Dead or Alive", "US Gross": 480314, "Worldwide Gross": 2670860, "US DVD Sales": 1370874, "Production Budget": 30000000, "Release Date": "Jun 15 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Weinstein/Dimension", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Corey Yuen", "Rotten Tomatoes Rating": 34, "IMDB Rating": 4.9, "IMDB Votes": 16646}, {"Title": "Doogal", "US Gross": 7578946, "Worldwide Gross": 26942802, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 31 2005", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.5, "IMDB Votes": 2709}, {"Title": "Dogma", "US Gross": 30651422, "Worldwide Gross": 43948865, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Nov 12 1999", "MPAA Rating": "R", "Running Time min": 135, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.3, "IMDB Votes": 100476}, {"Title": "Domestic Disturbance", "US Gross": 45207112, "Worldwide Gross": 45207112, "US DVD Sales": null, "Production Budget": 53000000, "Release Date": "Nov 02 2001", "MPAA Rating": "PG-13", "Running Time min": 89, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Harold Becker", "Rotten Tomatoes Rating": 24, "IMDB Rating": 5.3, "IMDB Votes": 10778}, {"Title": "Domino", "US Gross": 10169202, "Worldwide Gross": 17759202, "US DVD Sales": 15573570, "Production Budget": 50000000, "Release Date": "Oct 14 2005", "MPAA Rating": "R", "Running Time min": 133, "Distributor": "New Line", "Source": "Based on Real Life Events", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Tony Scott", "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.9, "IMDB Votes": 32560}, {"Title": "Donnie Brasco", "US Gross": 41954997, "Worldwide Gross": 55954997, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Feb 28 1997", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Mike Newell", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.7, "IMDB Votes": 65462}, {"Title": "Doom", "US Gross": 28212337, "Worldwide Gross": 54612337, "US DVD Sales": 28563264, "Production Budget": 70000000, "Release Date": "Oct 21 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Game", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Andrzej Bartkowiak", "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.2, "IMDB Votes": 39473}, {"Title": "Doubt", "US Gross": 33422556, "Worldwide Gross": 50923043, "US DVD Sales": 12876746, "Production Budget": 20000000, "Release Date": "Dec 12 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 78, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Doug's 1st Movie", "US Gross": 19421271, "Worldwide Gross": 19421271, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Mar 26 1999", "MPAA Rating": "G", "Running Time min": 77, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.8, "IMDB Votes": 920}, {"Title": "Downfall", "US Gross": 5501940, "Worldwide Gross": 92101940, "US DVD Sales": null, "Production Budget": 13500000, "Release Date": "Feb 18 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Newmarket Films", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 404}, {"Title": "The Deep End", "US Gross": 8823109, "Worldwide Gross": 8823109, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 08 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.6, "IMDB Votes": 6734}, {"Title": "Deep Impact", "US Gross": 140464664, "Worldwide Gross": 349464664, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "May 08 1998", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Mimi Leder", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6, "IMDB Votes": 54160}, {"Title": "The Departed", "US Gross": 133311000, "Worldwide Gross": 290539042, "US DVD Sales": 140689412, "Production Budget": 90000000, "Release Date": "Oct 06 2006", "MPAA Rating": "R", "Running Time min": 152, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 93, "IMDB Rating": 8.5, "IMDB Votes": 264148}, {"Title": "Dracula 2000", "US Gross": 33000377, "Worldwide Gross": 33000377, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Dec 22 2000", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.8, "IMDB Votes": 14077}, {"Title": "Death Race", "US Gross": 36316032, "Worldwide Gross": 72516819, "US DVD Sales": 24667330, "Production Budget": 65000000, "Release Date": "Aug 22 2008", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Paul Anderson", "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.6, "IMDB Votes": 40611}, {"Title": "Drag Me To Hell", "US Gross": 42100625, "Worldwide Gross": 85724728, "US DVD Sales": 13123388, "Production Budget": 30000000, "Release Date": "May 29 2009", "MPAA Rating": "PG-13", "Running Time min": 99, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Sam Raimi", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.1, "IMDB Votes": 51343}, {"Title": "Crouching Tiger, Hidden Dragon", "US Gross": 128067808, "Worldwide Gross": 213200000, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 08 2000", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Ang Lee", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Derailed", "US Gross": 36020063, "Worldwide Gross": 54962616, "US DVD Sales": 27718572, "Production Budget": 22000000, "Release Date": "Nov 11 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 3.4, "IMDB Votes": 3317}, {"Title": "Doctor Dolittle 2", "US Gross": 112950721, "Worldwide Gross": 176101721, "US DVD Sales": null, "Production Budget": 72000000, "Release Date": "Jun 22 2001", "MPAA Rating": "PG", "Running Time min": 87, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Steve Carr", "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 2993}, {"Title": "Doctor Dolittle", "US Gross": 144156605, "Worldwide Gross": 294156605, "US DVD Sales": null, "Production Budget": 71500000, "Release Date": "Jun 26 1998", "MPAA Rating": "PG-13", "Running Time min": 85, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Betty Thomas", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 25648}, {"Title": "Dickie Roberts: Former Child Star", "US Gross": 22734486, "Worldwide Gross": 23734486, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Sep 05 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 6949}, {"Title": "Drillbit Taylor", "US Gross": 32862104, "Worldwide Gross": 49686263, "US DVD Sales": 12040874, "Production Budget": 40000000, "Release Date": "Mar 21 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.9, "IMDB Votes": 19388}, {"Title": "Driving Lessons", "US Gross": 239962, "Worldwide Gross": 239962, "US DVD Sales": null, "Production Budget": 4700000, "Release Date": "Oct 13 2006", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.7, "IMDB Votes": 5380}, {"Title": "Driven", "US Gross": 32616869, "Worldwide Gross": 54616869, "US DVD Sales": null, "Production Budget": 72000000, "Release Date": "Apr 27 2001", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.2, "IMDB Votes": 18795}, {"Title": "Darkness", "US Gross": 22163442, "Worldwide Gross": 34409206, "US DVD Sales": null, "Production Budget": 10600000, "Release Date": "Dec 25 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 4, "IMDB Rating": 5.3, "IMDB Votes": 9979}, {"Title": "I Dreamed of Africa", "US Gross": 6543194, "Worldwide Gross": 6543194, "US DVD Sales": null, "Production Budget": 34000000, "Release Date": "May 05 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Hugh Hudson", "Rotten Tomatoes Rating": 9, "IMDB Rating": 5.2, "IMDB Votes": 2298}, {"Title": "Dreamcatcher", "US Gross": 33685268, "Worldwide Gross": 75685268, "US DVD Sales": null, "Production Budget": 68000000, "Release Date": "Mar 21 2003", "MPAA Rating": "R", "Running Time min": 136, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Lawrence Kasdan", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.3, "IMDB Votes": 34141}, {"Title": "Dreamgirls", "US Gross": 103365956, "Worldwide Gross": 154965956, "US DVD Sales": 53674555, "Production Budget": 75000000, "Release Date": "Dec 15 2006", "MPAA Rating": "PG-13", "Running Time min": 130, "Distributor": "Paramount Pictures", "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Bill Condon", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.6, "IMDB Votes": 28016}, {"Title": "Detroit Rock City", "US Gross": 4217115, "Worldwide Gross": 4217115, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Aug 13 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.4, "IMDB Votes": 15092}, {"Title": "Drop Dead Gorgeous", "US Gross": 10571408, "Worldwide Gross": 10571408, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jul 23 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 45, "IMDB Rating": 6.2, "IMDB Votes": 16344}, {"Title": "Drumline", "US Gross": 56398162, "Worldwide Gross": 56398162, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 13 2002", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 5.2, "IMDB Votes": 18165}, {"Title": "The Legend of Drunken Master", "US Gross": 11546543, "Worldwide Gross": 11546543, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Oct 20 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Dinner Rush", "US Gross": 638227, "Worldwide Gross": 1075504, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Sep 28 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Access Motion Picture Group", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 2991}, {"Title": "The Descent", "US Gross": 26024456, "Worldwide Gross": 57029609, "US DVD Sales": 22484444, "Production Budget": 7000000, "Release Date": "Aug 04 2006", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 58176}, {"Title": "DysFunkTional Family", "US Gross": 2255000, "Worldwide Gross": 2255000, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Apr 04 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Concert/Performance", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 43, "IMDB Rating": 5.9, "IMDB Votes": 501}, {"Title": "The Master of Disguise", "US Gross": 40363530, "Worldwide Gross": 40363530, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Aug 02 2002", "MPAA Rating": "PG", "Running Time min": 80, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 2, "IMDB Rating": 3, "IMDB Votes": 10050}, {"Title": "Desert Blue", "US Gross": 99147, "Worldwide Gross": 99147, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jun 04 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Goldwyn Entertainment", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 1412}, {"Title": "Disturbia", "US Gross": 80209692, "Worldwide Gross": 117573043, "US DVD Sales": 34508128, "Production Budget": 20000000, "Release Date": "Apr 13 2007", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "D.J. Caruso", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7, "IMDB Votes": 72231}, {"Title": "Double Take", "US Gross": 29823162, "Worldwide Gross": 29823162, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Jan 12 2001", "MPAA Rating": "PG-13", "Running Time min": 88, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 6.8, "IMDB Votes": 162}, {"Title": "Death at a Funeral", "US Gross": 8580428, "Worldwide Gross": 34743644, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Aug 17 2007", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Frank Oz", "Rotten Tomatoes Rating": 61, "IMDB Rating": 5.1, "IMDB Votes": 6628}, {"Title": "Deterrence", "US Gross": 144583, "Worldwide Gross": 371647, "US DVD Sales": null, "Production Budget": 800000, "Release Date": "Mar 10 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 45, "IMDB Rating": 6.3, "IMDB Votes": 1776}, {"Title": "Dirty Pretty Things", "US Gross": 8112414, "Worldwide Gross": 13904766, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jul 18 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Stephen Frears", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 18554}, {"Title": "Dudley Do-Right", "US Gross": 9818792, "Worldwide Gross": 9818792, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Aug 27 1999", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Hugh Wilson", "Rotten Tomatoes Rating": 14, "IMDB Rating": 3.6, "IMDB Votes": 4628}, {"Title": "Duets", "US Gross": 4734235, "Worldwide Gross": 4734235, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Sep 15 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.7, "IMDB Votes": 5340}, {"Title": "The Dukes of Hazzard", "US Gross": 80270227, "Worldwide Gross": 110570227, "US DVD Sales": null, "Production Budget": 53000000, "Release Date": "Aug 05 2005", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jay Chandrasekhar", "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.7, "IMDB Votes": 27016}, {"Title": "Duma", "US Gross": 870067, "Worldwide Gross": 994790, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Sep 30 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.2, "IMDB Votes": 2966}, {"Title": "Dumb and Dumberer: When Harry Met Lloyd", "US Gross": 26214846, "Worldwide Gross": 26214846, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 13 2003", "MPAA Rating": "PG-13", "Running Time min": 85, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 3.3, "IMDB Votes": 14813}, {"Title": "Dungeons & Dragons 2: The Elemental Might", "US Gross": 0, "Worldwide Gross": 909822, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 08 2005", "MPAA Rating": null, "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Game", "Major Genre": null, "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Dungeons and Dragons", "US Gross": 15185241, "Worldwide Gross": 33771965, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 08 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Game", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.6, "IMDB Votes": 16954}, {"Title": "Duplex", "US Gross": 9652000, "Worldwide Gross": 10070651, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Sep 26 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Danny De Vito", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 19238}, {"Title": "You, Me and Dupree", "US Gross": 75802010, "Worldwide Gross": 130402010, "US DVD Sales": 41651251, "Production Budget": 54000000, "Release Date": "Jul 14 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 6.1, "IMDB Votes": 164}, {"Title": "Devil's Advocate", "US Gross": 61007424, "Worldwide Gross": 153007424, "US DVD Sales": null, "Production Budget": 57000000, "Release Date": "Oct 17 1997", "MPAA Rating": "R", "Running Time min": 144, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Taylor Hackford", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Da Vinci Code", "US Gross": 217536138, "Worldwide Gross": 757236138, "US DVD Sales": 100178981, "Production Budget": 125000000, "Release Date": "May 19 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Ron Howard", "Rotten Tomatoes Rating": 25, "IMDB Rating": 6.4, "IMDB Votes": 116903}, {"Title": "D-War", "US Gross": 10977721, "Worldwide Gross": 79915361, "US DVD Sales": 7614486, "Production Budget": 32000000, "Release Date": "Sep 14 2007", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "Freestyle Releasing", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.8, "IMDB Votes": 14081}, {"Title": "Deuces Wild", "US Gross": 6044618, "Worldwide Gross": 6044618, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "May 03 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 3, "IMDB Rating": 5.3, "IMDB Votes": 4010}, {"Title": "Down to Earth", "US Gross": 64172251, "Worldwide Gross": 71172251, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Feb 16 2001", "MPAA Rating": "PG-13", "Running Time min": 87, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Paul Weitz", "Rotten Tomatoes Rating": 19, "IMDB Rating": 5, "IMDB Votes": 9193}, {"Title": "Down to You", "US Gross": 20035310, "Worldwide Gross": 20035310, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Jan 21 2000", "MPAA Rating": "PG-13", "Running Time min": 92, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 3, "IMDB Rating": 4.4, "IMDB Votes": 7095}, {"Title": "I'm Not There", "US Gross": 4017609, "Worldwide Gross": 11498547, "US DVD Sales": 6017494, "Production Budget": 20000000, "Release Date": "Nov 21 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Todd Haynes", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.1, "IMDB Votes": 23078}, {"Title": "Easy A", "US Gross": 21056221, "Worldwide Gross": 22156221, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Sep 17 2010", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 80, "IMDB Rating": 7.7, "IMDB Votes": 483}, {"Title": "The Eclipse", "US Gross": 133411, "Worldwide Gross": 133411, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Feb 26 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 790}, {"Title": "Edge of Darkness", "US Gross": 43313890, "Worldwide Gross": 78739628, "US DVD Sales": 12665512, "Production Budget": 60000000, "Release Date": "Jan 29 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Martin Campbell", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.7, "IMDB Votes": 24174}, {"Title": "EDtv", "US Gross": 22508689, "Worldwide Gross": 35319689, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Mar 26 1999", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ron Howard", "Rotten Tomatoes Rating": 62, "IMDB Rating": 6, "IMDB Votes": 21734}, {"Title": "An Education", "US Gross": 12574914, "Worldwide Gross": 14134502, "US DVD Sales": 1765115, "Production Budget": 7500000, "Release Date": "Oct 09 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Factual Book/Article", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.5, "IMDB Votes": 22855}, {"Title": "East is East", "US Gross": 4170647, "Worldwide Gross": 4170647, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Apr 14 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 8351}, {"Title": "8 Heads in a Duffel Bag", "US Gross": 3602884, "Worldwide Gross": 4002884, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Apr 18 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Orion Pictures", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 4.8, "IMDB Votes": 5127}, {"Title": "Eagle Eye", "US Gross": 101440743, "Worldwide Gross": 178066569, "US DVD Sales": 38374936, "Production Budget": 80000000, "Release Date": "Sep 26 2008", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "D.J. Caruso", "Rotten Tomatoes Rating": 27, "IMDB Rating": 6.6, "IMDB Votes": 52336}, {"Title": "8MM", "US Gross": 36443442, "Worldwide Gross": 96398826, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Feb 26 1999", "MPAA Rating": "R", "Running Time min": 119, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 22, "IMDB Rating": 6.3, "IMDB Votes": 47753}, {"Title": "Iris", "US Gross": 5580479, "Worldwide Gross": 15035827, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Dec 14 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 79, "IMDB Rating": 5.8, "IMDB Votes": 44}, {"Title": "Election", "US Gross": 14943582, "Worldwide Gross": 14943582, "US DVD Sales": null, "Production Budget": 8500000, "Release Date": "Apr 23 1999", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Alexander Payne", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.4, "IMDB Votes": 37454}, {"Title": "Elektra", "US Gross": 24409722, "Worldwide Gross": 56409722, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Jan 14 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Spin-Off", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 4.9, "IMDB Votes": 27283}, {"Title": "Elf", "US Gross": 173398518, "Worldwide Gross": 220443451, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Nov 07 2003", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Jon Favreau", "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.8, "IMDB Votes": 42123}, {"Title": "Elizabeth", "US Gross": 30082699, "Worldwide Gross": 82150642, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Nov 06 1998", "MPAA Rating": "R", "Running Time min": 124, "Distributor": "Gramercy", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Shekhar Kapur", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.6, "IMDB Votes": 33773}, {"Title": "Ella Enchanted", "US Gross": 22913677, "Worldwide Gross": 22913677, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Apr 09 2004", "MPAA Rating": "PG", "Running Time min": 96, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.3, "IMDB Votes": 12020}, {"Title": "Once Upon a Time in Mexico", "US Gross": 56330657, "Worldwide Gross": 98156459, "US DVD Sales": null, "Production Budget": 29000000, "Release Date": "Sep 12 2003", "MPAA Rating": "R", "Running Time min": 102, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 68, "IMDB Rating": 6.2, "IMDB Votes": 54413}, {"Title": "The Adventures of Elmo in Grouchland", "US Gross": 11634458, "Worldwide Gross": 11634458, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Oct 01 1999", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 76, "IMDB Rating": 5.4, "IMDB Votes": 1059}, {"Title": "The Emperor's Club", "US Gross": 14060950, "Worldwide Gross": 16124074, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Nov 22 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.7, "IMDB Votes": 8165}, {"Title": "Empire", "US Gross": 17504595, "Worldwide Gross": 18495444, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Dec 06 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 6.5, "IMDB Votes": 63}, {"Title": "La marche de l'empereur", "US Gross": 77437223, "Worldwide Gross": 129437223, "US DVD Sales": null, "Production Budget": 3400000, "Release Date": "Jun 24 2005", "MPAA Rating": "G", "Running Time min": 80, "Distributor": "Warner Independent", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 23674}, {"Title": "Employee of the Month", "US Gross": 28444855, "Worldwide Gross": 38117718, "US DVD Sales": 21177885, "Production Budget": 10000000, "Release Date": "Oct 06 2006", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 5.4, "IMDB Votes": 17845}, {"Title": "The Emperor's New Groove", "US Gross": 89296573, "Worldwide Gross": 169296573, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Dec 15 2000", "MPAA Rating": "G", "Running Time min": 78, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Mark Dindal", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.4, "IMDB Votes": 23355}, {"Title": "Enchanted", "US Gross": 127706877, "Worldwide Gross": 340384141, "US DVD Sales": 87698079, "Production Budget": 85000000, "Release Date": "Nov 21 2007", "MPAA Rating": "PG", "Running Time min": 108, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Fantasy", "Director": "Kevin Lima", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.5, "IMDB Votes": 55697}, {"Title": "The End of the Affair", "US Gross": 10660147, "Worldwide Gross": 10660147, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Dec 03 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Neil Jordan", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.9, "IMDB Votes": 9969}, {"Title": "End of Days", "US Gross": 66889043, "Worldwide Gross": 212026975, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Nov 24 1999", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Peter Hyams", "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.4, "IMDB Votes": 43513}, {"Title": "End of the Spear", "US Gross": 11748661, "Worldwide Gross": 11748661, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jan 20 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "M Power Releasing", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 2884}, {"Title": "Enemy at the Gates", "US Gross": 51396781, "Worldwide Gross": 96971293, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Mar 16 2001", "MPAA Rating": "R", "Running Time min": 131, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Jean-Jacques Annaud", "Rotten Tomatoes Rating": 53, "IMDB Rating": 7.4, "IMDB Votes": 59916}, {"Title": "Enemy of the State", "US Gross": 111549836, "Worldwide Gross": 250649836, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Nov 20 1998", "MPAA Rating": "R", "Running Time min": 127, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 70, "IMDB Rating": 7.2, "IMDB Votes": 66700}, {"Title": "Entrapment", "US Gross": 87707396, "Worldwide Gross": 211700000, "US DVD Sales": null, "Production Budget": 66000000, "Release Date": "Apr 30 1999", "MPAA Rating": "PG-13", "Running Time min": 112, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Jon Amiel", "Rotten Tomatoes Rating": 38, "IMDB Rating": 6.1, "IMDB Votes": 40764}, {"Title": "Enough", "US Gross": 39177215, "Worldwide Gross": 39177215, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "May 24 2002", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Michael Apted", "Rotten Tomatoes Rating": 21, "IMDB Rating": 6.5, "IMDB Votes": 92}, {"Title": "Envy", "US Gross": 13548322, "Worldwide Gross": 14566246, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Apr 30 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": 7, "IMDB Rating": 4.6, "IMDB Votes": 15655}, {"Title": "Epic Movie", "US Gross": 39739367, "Worldwide Gross": 86858578, "US DVD Sales": 16839362, "Production Budget": 20000000, "Release Date": "Jan 26 2007", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jason Friedberg", "Rotten Tomatoes Rating": 2, "IMDB Rating": 2.2, "IMDB Votes": 48975}, {"Title": "Eragon", "US Gross": 75030163, "Worldwide Gross": 249488115, "US DVD Sales": 87700229, "Production Budget": 100000000, "Release Date": "Dec 15 2006", "MPAA Rating": "PG", "Running Time min": 102, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 5, "IMDB Votes": 43555}, {"Title": "Erin Brockovich", "US Gross": 125548685, "Worldwide Gross": 258400000, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Mar 17 2000", "MPAA Rating": "R", "Running Time min": 133, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.2, "IMDB Votes": 54977}, {"Title": "Elizabethtown", "US Gross": 26850426, "Worldwide Gross": 50719373, "US DVD Sales": 15854391, "Production Budget": 54000000, "Release Date": "Oct 14 2005", "MPAA Rating": "PG-13", "Running Time min": 133, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Cameron Crowe", "Rotten Tomatoes Rating": 28, "IMDB Rating": 6.4, "IMDB Votes": 31775}, {"Title": "Eat Pray Love", "US Gross": 78146373, "Worldwide Gross": 81846373, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Aug 13 2010", "MPAA Rating": "R", "Running Time min": 143, "Distributor": "Sony Pictures", "Source": "Based on Magazine Article", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 37, "IMDB Rating": 4.7, "IMDB Votes": 3019}, {"Title": "Eternal Sunshine of the Spotless Mind", "US Gross": 34366518, "Worldwide Gross": 47066518, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 19 2004", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Michel Gondry", "Rotten Tomatoes Rating": 93, "IMDB Rating": 8.5, "IMDB Votes": 219986}, {"Title": "Eulogy", "US Gross": 70527, "Worldwide Gross": 70527, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 15 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": 6.6, "IMDB Votes": 5205}, {"Title": "Eureka", "US Gross": 49388, "Worldwide Gross": 76654, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "May 04 2001", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.9, "IMDB Votes": 1391}, {"Title": "Eurotrip", "US Gross": 17718223, "Worldwide Gross": 20718223, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Feb 20 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.5, "IMDB Votes": 52548}, {"Title": "Eve's Bayou", "US Gross": 14843425, "Worldwide Gross": 14843425, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Nov 07 1997", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Trimark", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Kasi Lemmons", "Rotten Tomatoes Rating": 80, "IMDB Rating": 7, "IMDB Votes": 4509}, {"Title": "Event Horizon", "US Gross": 26673242, "Worldwide Gross": 26673242, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Aug 15 1997", "MPAA Rating": "R", "Running Time min": 95, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Paul Anderson", "Rotten Tomatoes Rating": 21, "IMDB Rating": 6.3, "IMDB Votes": 44671}, {"Title": "Ever After: A Cinderella Story", "US Gross": 65705772, "Worldwide Gross": 65705772, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Jul 31 1998", "MPAA Rating": "PG", "Running Time min": 122, "Distributor": "20th Century Fox", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Andy Tennant", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Evita", "US Gross": 50047179, "Worldwide Gross": 151947179, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Dec 25 1996", "MPAA Rating": "PG", "Running Time min": 134, "Distributor": "Walt Disney Pictures", "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Dramatization", "Director": "Alan Parker", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.1, "IMDB Votes": 16769}, {"Title": "Evolution", "US Gross": 38311134, "Worldwide Gross": 98341932, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 08 2001", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ivan Reitman", "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.9, "IMDB Votes": 39590}, {"Title": "An Everlasting Piece", "US Gross": 75078, "Worldwide Gross": 75078, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 25 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Barry Levinson", "Rotten Tomatoes Rating": 49, "IMDB Rating": 6, "IMDB Votes": 1097}, {"Title": "Fong juk", "US Gross": 51957, "Worldwide Gross": 51957, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Aug 31 2007", "MPAA Rating": "Not Rated", "Running Time min": 100, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 3699}, {"Title": "Exit Wounds", "US Gross": 51758599, "Worldwide Gross": 79958599, "US DVD Sales": null, "Production Budget": 33000000, "Release Date": "Mar 16 2001", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Andrzej Bartkowiak", "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.2, "IMDB Votes": 14528}, {"Title": "The Exorcism of Emily Rose", "US Gross": 75072454, "Worldwide Gross": 144216468, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Sep 09 2005", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "Sony/Screen Gems", "Source": "Based on Real Life Events", "Major Genre": "Thriller/Suspense", "Creative Type": "Dramatization", "Director": "Scott Derrickson", "Rotten Tomatoes Rating": 45, "IMDB Rating": 6.8, "IMDB Votes": 32425}, {"Title": "Exorcist: The Beginning", "US Gross": 41814863, "Worldwide Gross": 43957541, "US DVD Sales": null, "Production Budget": 78000000, "Release Date": "Aug 20 2004", "MPAA Rating": "R", "Running Time min": 114, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 15901}, {"Title": "The Express", "US Gross": 9793406, "Worldwide Gross": 9808102, "US DVD Sales": 6580715, "Production Budget": 37500000, "Release Date": "Oct 04 2008", "MPAA Rating": "PG", "Running Time min": 129, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 61, "IMDB Rating": 7.1, "IMDB Votes": 4749}, {"Title": "eXistenZ", "US Gross": 2840417, "Worldwide Gross": 2840417, "US DVD Sales": null, "Production Budget": 20700000, "Release Date": "Apr 23 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "David Cronenberg", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.8, "IMDB Votes": 35788}, {"Title": "Extract", "US Gross": 10823158, "Worldwide Gross": 10849158, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Sep 04 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mike Judge", "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.4, "IMDB Votes": 12371}, {"Title": "Extreme Ops", "US Gross": 4835968, "Worldwide Gross": 12624471, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Nov 27 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Christian Duguay", "Rotten Tomatoes Rating": 6, "IMDB Rating": 4.1, "IMDB Votes": 3195}, {"Title": "Eyes Wide Shut", "US Gross": 55691208, "Worldwide Gross": 86257553, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Jul 16 1999", "MPAA Rating": "R", "Running Time min": 159, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Stanley Kubrick", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.2, "IMDB Votes": 93880}, {"Title": "The Faculty", "US Gross": 40283321, "Worldwide Gross": 40283321, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 25 1998", "MPAA Rating": "R", "Running Time min": 102, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.3, "IMDB Votes": 36139}, {"Title": "Failure to Launch", "US Gross": 88715192, "Worldwide Gross": 128402901, "US DVD Sales": 41348843, "Production Budget": 50000000, "Release Date": "Mar 10 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tom Dey", "Rotten Tomatoes Rating": 25, "IMDB Rating": 5.6, "IMDB Votes": 20324}, {"Title": "Keeping the Faith", "US Gross": 37036404, "Worldwide Gross": 45336404, "US DVD Sales": null, "Production Budget": 29000000, "Release Date": "Apr 14 2000", "MPAA Rating": "PG-13", "Running Time min": 129, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 68, "IMDB Rating": 6.5, "IMDB Votes": 25485}, {"Title": "Fame", "US Gross": 22455510, "Worldwide Gross": 77956957, "US DVD Sales": 4950732, "Production Budget": 18000000, "Release Date": "Sep 25 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "MGM", "Source": "Remake", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 25, "IMDB Rating": 4.5, "IMDB Votes": 4973}, {"Title": "The Family Stone", "US Gross": 60062868, "Worldwide Gross": 91762868, "US DVD Sales": 23961409, "Production Budget": 18000000, "Release Date": "Dec 16 2005", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.3, "IMDB Votes": 24434}, {"Title": "Lisa Picard is Famous", "US Gross": 113433, "Worldwide Gross": 113433, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Aug 22 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": "Griffin Dunne", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Fantasia 2000 (Theatrical Release)", "US Gross": 9103630, "Worldwide Gross": 9103630, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 16 2000", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Compilation", "Major Genre": "Musical", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Far From Heaven", "US Gross": 15901849, "Worldwide Gross": 29027914, "US DVD Sales": null, "Production Budget": 13500000, "Release Date": "Nov 08 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Todd Haynes", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.5, "IMDB Votes": 20239}, {"Title": "Fascination", "US Gross": 16670, "Worldwide Gross": 83356, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jan 28 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.5, "IMDB Votes": 1016}, {"Title": "Father's Day", "US Gross": 28681080, "Worldwide Gross": 35681080, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "May 09 1997", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ivan Reitman", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.8, "IMDB Votes": 6654}, {"Title": "Facing the Giants", "US Gross": 10178331, "Worldwide Gross": 10178331, "US DVD Sales": 20091582, "Production Budget": 100000, "Release Date": "Sep 29 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "IDP/Goldwyn/Roadside", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Alex Kendrick", "Rotten Tomatoes Rating": 9, "IMDB Rating": 6, "IMDB Votes": 4901}, {"Title": "Face/Off", "US Gross": 112276146, "Worldwide Gross": 241200000, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 27 1997", "MPAA Rating": "R", "Running Time min": 138, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Woo", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.3, "IMDB Votes": 102001}, {"Title": "Final Destination 2", "US Gross": 46896664, "Worldwide Gross": 89626226, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Jan 31 2003", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "David R. Ellis", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.4, "IMDB Votes": 35737}, {"Title": "Final Destination 3", "US Gross": 54098051, "Worldwide Gross": 112798051, "US DVD Sales": 18646884, "Production Budget": 25000000, "Release Date": "Feb 10 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "James Wong", "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.9, "IMDB Votes": 32263}, {"Title": "The Final Destination", "US Gross": 66477700, "Worldwide Gross": 185777700, "US DVD Sales": 10148305, "Production Budget": 40000000, "Release Date": "Aug 28 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "David R. Ellis", "Rotten Tomatoes Rating": 27, "IMDB Rating": 4.9, "IMDB Votes": 20319}, {"Title": "FearDotCom", "US Gross": 13208023, "Worldwide Gross": 13208023, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 30 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "William Malone", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.1, "IMDB Votes": 11438}, {"Title": "Fear and Loathing in Las Vegas", "US Gross": 10680275, "Worldwide Gross": 13711903, "US DVD Sales": null, "Production Budget": 18500000, "Release Date": "May 22 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Dramatization", "Director": "Terry Gilliam", "Rotten Tomatoes Rating": 47, "IMDB Rating": 7.6, "IMDB Votes": 81560}, {"Title": "Feast", "US Gross": 56131, "Worldwide Gross": 341808, "US DVD Sales": 3570398, "Production Budget": 3200000, "Release Date": "Sep 22 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein/Dimension", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.4, "IMDB Votes": 12023}, {"Title": "The Fifth Element", "US Gross": 63570862, "Worldwide Gross": 263900000, "US DVD Sales": null, "Production Budget": 95000000, "Release Date": "May 09 1997", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Luc Besson", "Rotten Tomatoes Rating": 72, "IMDB Rating": 7.4, "IMDB Votes": 131252}, {"Title": "Femme Fatale", "US Gross": 6592103, "Worldwide Gross": 6592103, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 06 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.3, "IMDB Votes": 16693}, {"Title": "Bring it On", "US Gross": 68353550, "Worldwide Gross": 90453550, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 25 2000", "MPAA Rating": "PG-13", "Running Time min": 99, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peyton Reed", "Rotten Tomatoes Rating": 63, "IMDB Rating": 5.9, "IMDB Votes": 30309}, {"Title": "Fantastic Four", "US Gross": 154696080, "Worldwide Gross": 330579719, "US DVD Sales": 4702358, "Production Budget": 87500000, "Release Date": "Jul 08 2005", "MPAA Rating": "PG-13", "Running Time min": 123, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Tim Story", "Rotten Tomatoes Rating": 27, "IMDB Rating": 5.7, "IMDB Votes": 71675}, {"Title": 54, "US Gross": 16757163, "Worldwide Gross": 16757163, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Aug 28 1998", "MPAA Rating": "R", "Running Time min": 92, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.6, "IMDB Votes": 15023}, {"Title": "2 Fast 2 Furious", "US Gross": 127120058, "Worldwide Gross": 236220058, "US DVD Sales": null, "Production Budget": 76000000, "Release Date": "Jun 06 2003", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Universal", "Source": "Based on Magazine Article", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Singleton", "Rotten Tomatoes Rating": 36, "IMDB Rating": 5.1, "IMDB Votes": 44151}, {"Title": "The Fast and the Furious", "US Gross": 144512310, "Worldwide Gross": 206512310, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Jun 22 2001", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Universal", "Source": "Based on Magazine Article", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Rob Cohen", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6, "IMDB Votes": 67939}, {"Title": "Fool's Gold", "US Gross": 70231041, "Worldwide Gross": 109362966, "US DVD Sales": 20620930, "Production Budget": 72500000, "Release Date": "Feb 08 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Andy Tennant", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 93}, {"Title": "Fahrenheit 9/11", "US Gross": 119114517, "Worldwide Gross": 222414517, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Jun 23 2004", "MPAA Rating": "R", "Running Time min": 122, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Michael Moore", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.6, "IMDB Votes": 74424}, {"Title": "Capitalism: A Love Story", "US Gross": 14363397, "Worldwide Gross": 14678228, "US DVD Sales": 2987505, "Production Budget": 20000000, "Release Date": "Sep 23 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Overture Films", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Michael Moore", "Rotten Tomatoes Rating": 75, "IMDB Rating": 7.3, "IMDB Votes": 11829}, {"Title": "From Hell", "US Gross": 31598308, "Worldwide Gross": 31598308, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Oct 19 2001", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "Albert Hughes", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.8, "IMDB Votes": 53477}, {"Title": "Fido", "US Gross": 298110, "Worldwide Gross": 419801, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Jun 15 2007", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 11683}, {"Title": "Fight Club", "US Gross": 37030102, "Worldwide Gross": 100853753, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Oct 15 1999", "MPAA Rating": "R", "Running Time min": 139, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "David Fincher", "Rotten Tomatoes Rating": 81, "IMDB Rating": 8.8, "IMDB Votes": 382470}, {"Title": "Final Fantasy: The Spirits Within", "US Gross": 32131830, "Worldwide Gross": 85131830, "US DVD Sales": null, "Production Budget": 137000000, "Release Date": "Jul 11 2001", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "Sony Pictures", "Source": "Based on Game", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 36227}, {"Title": "Finding Forrester", "US Gross": 51768623, "Worldwide Gross": 80013623, "US DVD Sales": null, "Production Budget": 43000000, "Release Date": "Dec 19 2000", "MPAA Rating": "PG-13", "Running Time min": 137, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Gus Van Sant", "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.2, "IMDB Votes": 35966}, {"Title": "Freddy Got Fingered", "US Gross": 14249005, "Worldwide Gross": 14249005, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 20 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 4, "IMDB Votes": 25033}, {"Title": "Firestorm", "US Gross": 8123860, "Worldwide Gross": 8123860, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Jan 09 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.4, "IMDB Votes": 2118}, {"Title": "Fish Tank", "US Gross": 374675, "Worldwide Gross": 374675, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Jan 15 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 5940}, {"Title": "Felicia's Journey", "US Gross": 824295, "Worldwide Gross": 1970268, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Nov 12 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Artisan", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Atom Egoyan", "Rotten Tomatoes Rating": 88, "IMDB Rating": 6.9, "IMDB Votes": 4790}, {"Title": "From Justin to Kelly", "US Gross": 4922166, "Worldwide Gross": 4922166, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jun 20 2003", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 1.6, "IMDB Votes": 17596}, {"Title": "Final Destination", "US Gross": 53302314, "Worldwide Gross": 112802314, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Mar 17 2000", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "James Wong", "Rotten Tomatoes Rating": 31, "IMDB Rating": 6.8, "IMDB Votes": 52618}, {"Title": "Flags of Our Fathers", "US Gross": 33602376, "Worldwide Gross": 61902376, "US DVD Sales": 45105366, "Production Budget": 53000000, "Release Date": "Oct 20 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 73, "IMDB Rating": 7.2, "IMDB Votes": 42788}, {"Title": "Flawless", "US Gross": 4485485, "Worldwide Gross": 4485485, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Nov 24 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.7, "IMDB Votes": 8125}, {"Title": "Flammen og Citronen", "US Gross": 148089, "Worldwide Gross": 1635241, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Jul 31 2009", "MPAA Rating": null, "Running Time min": 132, "Distributor": "IFC Films", "Source": null, "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 4182}, {"Title": "Flicka", "US Gross": 21000147, "Worldwide Gross": 21893591, "US DVD Sales": 49974754, "Production Budget": 15000000, "Release Date": "Oct 20 2006", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 54, "IMDB Rating": 5.7, "IMDB Votes": 2832}, {"Title": "Flight of the Phoenix", "US Gross": 21009180, "Worldwide Gross": 34009180, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Dec 17 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 6, "IMDB Votes": 18568}, {"Title": "United 93", "US Gross": 31567134, "Worldwide Gross": 76366864, "US DVD Sales": 17832230, "Production Budget": 18000000, "Release Date": "Apr 28 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Paul Greengrass", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.8, "IMDB Votes": 46691}, {"Title": "Flubber", "US Gross": 92993801, "Worldwide Gross": 177993801, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Nov 26 1997", "MPAA Rating": "PG", "Running Time min": 93, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Les Mayfield", "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.6, "IMDB Votes": 18890}, {"Title": "Flushed Away", "US Gross": 64665672, "Worldwide Gross": 177665672, "US DVD Sales": 71025931, "Production Budget": 149000000, "Release Date": "Nov 03 2006", "MPAA Rating": "PG", "Running Time min": 85, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Sam Fell", "Rotten Tomatoes Rating": 72, "IMDB Rating": 7, "IMDB Votes": 21334}, {"Title": "Flyboys", "US Gross": 13090630, "Worldwide Gross": 14816379, "US DVD Sales": 23631077, "Production Budget": 60000000, "Release Date": "Sep 22 2006", "MPAA Rating": "PG-13", "Running Time min": 139, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Tony Bill", "Rotten Tomatoes Rating": 33, "IMDB Rating": 6.5, "IMDB Votes": 13934}, {"Title": "Fly Me To the Moon", "US Gross": 14543943, "Worldwide Gross": 40098231, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Aug 15 2008", "MPAA Rating": "G", "Running Time min": 89, "Distributor": "Summit Entertainment", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.7, "IMDB Votes": 1653}, {"Title": "Find Me Guilty", "US Gross": 1173673, "Worldwide Gross": 1788077, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Mar 17 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Freestyle Releasing", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Sidney Lumet", "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.1, "IMDB Votes": 12800}, {"Title": "The Family Man", "US Gross": 75764085, "Worldwide Gross": 124715863, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 22 2000", "MPAA Rating": "PG-13", "Running Time min": 126, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Brett Ratner", "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.6, "IMDB Votes": 34090}, {"Title": "Friends with Money", "US Gross": 13368437, "Worldwide Gross": 15328368, "US DVD Sales": 7822762, "Production Budget": 6500000, "Release Date": "Apr 07 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.1, "IMDB Votes": 11087}, {"Title": "Finding Nemo", "US Gross": 339714978, "Worldwide Gross": 867894287, "US DVD Sales": null, "Production Budget": 94000000, "Release Date": "May 30 2003", "MPAA Rating": "G", "Running Time min": 100, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Andrew Stanton", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.2, "IMDB Votes": 165006}, {"Title": "Finishing the Game", "US Gross": 52850, "Worldwide Gross": 52850, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Oct 05 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "IFC First Take", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Justin Lin", "Rotten Tomatoes Rating": 35, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Foodfight!", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Dec 31 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Formula 51", "US Gross": 5204007, "Worldwide Gross": 5204007, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Oct 18 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Screen Media Films", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Fountain", "US Gross": 10144010, "Worldwide Gross": 15461638, "US DVD Sales": 8752844, "Production Budget": 35000000, "Release Date": "Nov 22 2006", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Darren Aronofsky", "Rotten Tomatoes Rating": 51, "IMDB Rating": 7.4, "IMDB Votes": 72562}, {"Title": "Fantastic Four: Rise of the Silver Surfer", "US Gross": 131921738, "Worldwide Gross": 288215319, "US DVD Sales": 62277740, "Production Budget": 120000000, "Release Date": "Jun 15 2007", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Tim Story", "Rotten Tomatoes Rating": 36, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Farce of the Penguins", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": 1619183, "Production Budget": 5000000, "Release Date": "Jan 30 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.1, "IMDB Votes": 3186}, {"Title": "Flightplan", "US Gross": 89706988, "Worldwide Gross": 225706988, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Sep 23 2005", "MPAA Rating": "PG-13", "Running Time min": 93, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 6.2, "IMDB Votes": 45305}, {"Title": "Frailty", "US Gross": 13110448, "Worldwide Gross": 17423030, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Apr 12 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.3, "IMDB Votes": 27629}, {"Title": "The Forbidden Kingdom", "US Gross": 52075270, "Worldwide Gross": 129075270, "US DVD Sales": 23318686, "Production Budget": 55000000, "Release Date": "Apr 18 2008", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Rob Minkoff", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.7, "IMDB Votes": 36548}, {"Title": "Freedom Writers", "US Gross": 36605602, "Worldwide Gross": 43090741, "US DVD Sales": 20532539, "Production Budget": 21000000, "Release Date": "Jan 05 2007", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Richard LaGravenese", "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.5, "IMDB Votes": 18065}, {"Title": "Next Friday", "US Gross": 57176582, "Worldwide Gross": 59675307, "US DVD Sales": null, "Production Budget": 9500000, "Release Date": "Jan 12 2000", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steve Carr", "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.3, "IMDB Votes": 10176}, {"Title": "Freaky Friday", "US Gross": 110222438, "Worldwide Gross": 160822438, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Aug 06 2003", "MPAA Rating": "PG", "Running Time min": 97, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mark Waters", "Rotten Tomatoes Rating": 88, "IMDB Rating": 6.5, "IMDB Votes": 29137}, {"Title": "Frequency", "US Gross": 44983704, "Worldwide Gross": 68079671, "US DVD Sales": null, "Production Budget": 31000000, "Release Date": "Apr 28 2000", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.3, "IMDB Votes": 35968}, {"Title": "Serenity", "US Gross": 25514517, "Worldwide Gross": 38514517, "US DVD Sales": null, "Production Budget": 39000000, "Release Date": "Sep 30 2005", "MPAA Rating": "PG-13", "Running Time min": 119, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Joss Whedon", "Rotten Tomatoes Rating": 81, "IMDB Rating": 8, "IMDB Votes": 106648}, {"Title": "The Forgotton", "US Gross": 66711892, "Worldwide Gross": 111311892, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Sep 24 2004", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Joseph Ruben", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 1169}, {"Title": "Jason X", "US Gross": 13121555, "Worldwide Gross": 16951798, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Apr 26 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": null, "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 4.4, "IMDB Votes": 17964}, {"Title": "Friday the 13th", "US Gross": 65002019, "Worldwide Gross": 91700771, "US DVD Sales": 9566980, "Production Budget": 17000000, "Release Date": "Feb 13 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.6, "IMDB Votes": 26798}, {"Title": "Friday After Next", "US Gross": 33253609, "Worldwide Gross": 33526835, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Nov 22 2002", "MPAA Rating": "R", "Running Time min": 85, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 25, "IMDB Rating": 5.3, "IMDB Votes": 6742}, {"Title": "Frida", "US Gross": 25885000, "Worldwide Gross": 56298474, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Oct 25 2002", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "Miramax", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.3, "IMDB Votes": 26243}, {"Title": "Friday Night Lights", "US Gross": 61255921, "Worldwide Gross": 61950770, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Oct 08 2004", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Peter Berg", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.2, "IMDB Votes": 20868}, {"Title": "Frozen River", "US Gross": 2503902, "Worldwide Gross": 5281776, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Aug 01 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.2, "IMDB Votes": 10447}, {"Title": "The Princess and the Frog", "US Gross": 104374107, "Worldwide Gross": 263467382, "US DVD Sales": 68101150, "Production Budget": 105000000, "Release Date": "Nov 25 2009", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "John Musker", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.4, "IMDB Votes": 16232}, {"Title": "Full Frontal", "US Gross": 2512846, "Worldwide Gross": 3438804, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Aug 02 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 37, "IMDB Rating": 4.8, "IMDB Votes": 6660}, {"Title": "Fireproof", "US Gross": 33451479, "Worldwide Gross": 33451479, "US DVD Sales": 31898934, "Production Budget": 500000, "Release Date": "Sep 26 2008", "MPAA Rating": "PG", "Running Time min": 122, "Distributor": "Samuel Goldwyn Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Alex Kendrick", "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.6, "IMDB Votes": 5498}, {"Title": "The Forsaken", "US Gross": 6755271, "Worldwide Gross": 6755271, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Apr 27 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 5.1, "IMDB Votes": 4679}, {"Title": "Frost/Nixon", "US Gross": 18622031, "Worldwide Gross": 28144586, "US DVD Sales": 6677601, "Production Budget": 29000000, "Release Date": "Dec 05 2008", "MPAA Rating": "R", "Running Time min": 122, "Distributor": "Universal", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ron Howard", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.9, "IMDB Votes": 36366}, {"Title": "Factory Girl", "US Gross": 1661464, "Worldwide Gross": 1661464, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Dec 29 2006", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 6.1, "IMDB Votes": 8680}, {"Title": "Fateless", "US Gross": 196857, "Worldwide Gross": 196857, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Jan 06 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 462}, {"Title": "The Full Monty", "US Gross": 45950122, "Worldwide Gross": 257938649, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Aug 13 1997", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Cattaneo", "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.2, "IMDB Votes": 40877}, {"Title": "Fun With Dick And Jane", "US Gross": 110550000, "Worldwide Gross": 202250000, "US DVD Sales": 29638269, "Production Budget": 140000000, "Release Date": "Dec 21 2005", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 6.3, "IMDB Votes": 1788}, {"Title": "Funny People", "US Gross": 51855045, "Worldwide Gross": 71880305, "US DVD Sales": 13721109, "Production Budget": 70000000, "Release Date": "Jul 31 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Judd Apatow", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.8, "IMDB Votes": 37791}, {"Title": "Fur", "US Gross": 223202, "Worldwide Gross": 2281089, "US DVD Sales": null, "Production Budget": 16800000, "Release Date": "Nov 10 2006", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Picturehouse", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Furry Vengeance", "US Gross": 17630465, "Worldwide Gross": 21630465, "US DVD Sales": 4335991, "Production Budget": 35000000, "Release Date": "Apr 30 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Summit Entertainment", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Roger Kumble", "Rotten Tomatoes Rating": 8, "IMDB Rating": 2.6, "IMDB Votes": 3458}, {"Title": "Fever Pitch", "US Gross": 42071069, "Worldwide Gross": 50071069, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Apr 08 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Bobby Farrelly", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 16736}, {"Title": "For Your Consideration", "US Gross": 5549923, "Worldwide Gross": 5549923, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Nov 17 2006", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "Warner Independent", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Christopher Guest", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.2, "IMDB Votes": 7780}, {"Title": "The Game", "US Gross": 48265581, "Worldwide Gross": 48265581, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Sep 12 1997", "MPAA Rating": "R", "Running Time min": 128, "Distributor": "Polygram", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "David Fincher", "Rotten Tomatoes Rating": 80, "IMDB Rating": 7.7, "IMDB Votes": 74136}, {"Title": "Gangs of New York", "US Gross": 77730500, "Worldwide Gross": 190400000, "US DVD Sales": null, "Production Budget": 97000000, "Release Date": "Dec 20 2002", "MPAA Rating": "R", "Running Time min": 168, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 75, "IMDB Rating": 7.4, "IMDB Votes": 113378}, {"Title": "Garfield", "US Gross": 75367693, "Worldwide Gross": 200802638, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 11 2004", "MPAA Rating": "PG", "Running Time min": 80, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Hewitt", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.8, "IMDB Votes": 19870}, {"Title": "Georgia Rule", "US Gross": 18882880, "Worldwide Gross": 20819601, "US DVD Sales": 19382312, "Production Budget": 20000000, "Release Date": "May 11 2007", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Garry Marshall", "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.8, "IMDB Votes": 10902}, {"Title": "Gattaca", "US Gross": 12532777, "Worldwide Gross": 12532777, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Oct 24 1997", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Andrew Niccol", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.8, "IMDB Votes": 70906}, {"Title": "Gone, Baby, Gone", "US Gross": 20300218, "Worldwide Gross": 34619699, "US DVD Sales": 11406490, "Production Budget": 19000000, "Release Date": "Oct 19 2007", "MPAA Rating": "R", "Running Time min": 114, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Ben Affleck", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Goodbye, Lenin!", "US Gross": 4063859, "Worldwide Gross": 79316616, "US DVD Sales": null, "Production Budget": 6400000, "Release Date": "Feb 27 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.3, "IMDB Votes": 198}, {"Title": "Good Boy!", "US Gross": 37667746, "Worldwide Gross": 45312217, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Oct 10 2003", "MPAA Rating": "PG", "Running Time min": 87, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 45, "IMDB Rating": 5, "IMDB Votes": 1961}, {"Title": "Gods and Generals", "US Gross": 12882934, "Worldwide Gross": 12923936, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Feb 21 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": null, "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 6, "IMDB Votes": 7437}, {"Title": "The Good German", "US Gross": 1308696, "Worldwide Gross": 1308696, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Dec 15 2006", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 32, "IMDB Rating": 6.1, "IMDB Votes": 13007}, {"Title": "Gods and Monsters", "US Gross": 6451628, "Worldwide Gross": 6451628, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Nov 06 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Bill Condon", "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.5, "IMDB Votes": 15946}, {"Title": "The Good Night", "US Gross": 22441, "Worldwide Gross": 22441, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 05 2007", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 6, "IMDB Votes": 4332}, {"Title": "The Good Thief", "US Gross": 3517797, "Worldwide Gross": 3517797, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Apr 02 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Neil Jordan", "Rotten Tomatoes Rating": 78, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "George and the Dragon", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Dec 31 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 1762}, {"Title": "Gerry", "US Gross": 254683, "Worldwide Gross": 254683, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Feb 14 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "ThinkFilm", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": "Gus Van Sant", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 8583}, {"Title": "G-Force", "US Gross": 119436770, "Worldwide Gross": 287389685, "US DVD Sales": 44145849, "Production Budget": 82500000, "Release Date": "Jul 24 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 5, "IMDB Votes": 9633}, {"Title": "Gridiron Gang", "US Gross": 38432823, "Worldwide Gross": 41480851, "US DVD Sales": 34066576, "Production Budget": 30000000, "Release Date": "Sep 15 2006", "MPAA Rating": "PG-13", "Running Time min": 126, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Phil Joanou", "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.8, "IMDB Votes": 12400}, {"Title": "The Good Girl", "US Gross": 14018296, "Worldwide Gross": 15976468, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Aug 07 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.6, "IMDB Votes": 21460}, {"Title": "Ghost Ship", "US Gross": 30113491, "Worldwide Gross": 68349884, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 25 2002", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.3, "IMDB Votes": 25891}, {"Title": "Ghosts of Mississippi", "US Gross": 13052741, "Worldwide Gross": 13052741, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Dec 20 1996", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Rob Reiner", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.4, "IMDB Votes": 5276}, {"Title": "The Glass House", "US Gross": 17951431, "Worldwide Gross": 22861785, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Sep 14 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.6, "IMDB Votes": 10629}, {"Title": "Ghost Rider", "US Gross": 115802596, "Worldwide Gross": 237702596, "US DVD Sales": 103730683, "Production Budget": 120000000, "Release Date": "Feb 16 2007", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Mark Steven Johnson", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.2, "IMDB Votes": 63235}, {"Title": "Ghost Town", "US Gross": 13252641, "Worldwide Gross": 26612350, "US DVD Sales": 7574314, "Production Budget": 20000000, "Release Date": "Sep 19 2008", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Fantasy", "Director": "David Koepp", "Rotten Tomatoes Rating": 85, "IMDB Rating": 4.7, "IMDB Votes": 310}, {"Title": "The Gift", "US Gross": 12008642, "Worldwide Gross": 44567606, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 19 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Sam Raimi", "Rotten Tomatoes Rating": 56, "IMDB Rating": 6.7, "IMDB Votes": 28488}, {"Title": "Gigli", "US Gross": 6087542, "Worldwide Gross": 7266209, "US DVD Sales": null, "Production Budget": 54000000, "Release Date": "Aug 01 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Martin Brest", "Rotten Tomatoes Rating": 6, "IMDB Rating": 2.4, "IMDB Votes": 29031}, {"Title": "G.I.Jane", "US Gross": 48169156, "Worldwide Gross": 48169156, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Aug 22 1997", "MPAA Rating": "R", "Running Time min": 124, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 23807}, {"Title": "G.I. Joe: The Rise of Cobra", "US Gross": 150201498, "Worldwide Gross": 302469019, "US DVD Sales": 69866155, "Production Budget": 175000000, "Release Date": "Aug 07 2009", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "Paramount Pictures", "Source": "Based on Toy", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Stephen Sommers", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 47052}, {"Title": "Girl, Interrupted", "US Gross": 28871190, "Worldwide Gross": 28871190, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Dec 21 1999", "MPAA Rating": "R", "Running Time min": 127, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "James Mangold", "Rotten Tomatoes Rating": 53, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Gladiator", "US Gross": 187683805, "Worldwide Gross": 457683805, "US DVD Sales": null, "Production Budget": 103000000, "Release Date": "May 05 2000", "MPAA Rating": "R", "Running Time min": 150, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 77, "IMDB Rating": 8.3, "IMDB Votes": 279512}, {"Title": "Glitter", "US Gross": 4273372, "Worldwide Gross": 4273372, "US DVD Sales": null, "Production Budget": 8500000, "Release Date": "Sep 21 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": "Vondie Curtis-Hall", "Rotten Tomatoes Rating": 7, "IMDB Rating": 2, "IMDB Votes": 13778}, {"Title": "Gloria", "US Gross": 4167493, "Worldwide Gross": 4967493, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jan 22 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sidney Lumet", "Rotten Tomatoes Rating": 19, "IMDB Rating": 4.7, "IMDB Votes": 2726}, {"Title": "Good Luck Chuck", "US Gross": 35017297, "Worldwide Gross": 59183821, "US DVD Sales": 26234476, "Production Budget": 25000000, "Release Date": "Sep 21 2007", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 5.6, "IMDB Votes": 29013}, {"Title": "John Carpenter's Ghosts of Mars", "US Gross": 8434601, "Worldwide Gross": 8434601, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Aug 24 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Screen Media Films", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "John Carpenter", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Green Mile", "US Gross": 136801374, "Worldwide Gross": 286601374, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 10 1999", "MPAA Rating": "R", "Running Time min": 187, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Frank Darabont", "Rotten Tomatoes Rating": 77, "IMDB Rating": 8.4, "IMDB Votes": 198916}, {"Title": "The Game of Their Lives", "US Gross": 375474, "Worldwide Gross": 375474, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Apr 22 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "IFC Films", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 25, "IMDB Rating": 6, "IMDB Votes": 1443}, {"Title": "Gandhi, My Father", "US Gross": 240425, "Worldwide Gross": 1375194, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Aug 03 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Eros Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 8.1, "IMDB Votes": 50881}, {"Title": "Good Night and Good Luck", "US Gross": 31501218, "Worldwide Gross": 54601218, "US DVD Sales": 20967273, "Production Budget": 7000000, "Release Date": "Oct 07 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Independent", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "George Clooney", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 42797}, {"Title": "The General's Daughter", "US Gross": 102705852, "Worldwide Gross": 149705852, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jun 18 1999", "MPAA Rating": "R", "Running Time min": 116, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Simon West", "Rotten Tomatoes Rating": 22, "IMDB Rating": 6.1, "IMDB Votes": 23570}, {"Title": "Gun Shy", "US Gross": 1638202, "Worldwide Gross": 1638202, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 04 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 24, "IMDB Rating": 5.4, "IMDB Votes": 3607}, {"Title": "Go!", "US Gross": 16875273, "Worldwide Gross": 28383441, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "Apr 09 1999", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Doug Liman", "Rotten Tomatoes Rating": 92, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Goal!", "US Gross": 4283255, "Worldwide Gross": 27610873, "US DVD Sales": 12616824, "Production Budget": 33000000, "Release Date": "May 12 2006", "MPAA Rating": "PG", "Running Time min": 121, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 16809}, {"Title": "Godzilla 2000", "US Gross": 10037390, "Worldwide Gross": 10037390, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Aug 18 2000", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Godsend", "US Gross": 14334645, "Worldwide Gross": 16910708, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Apr 30 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 4, "IMDB Rating": 4.7, "IMDB Votes": 13866}, {"Title": "Godzilla", "US Gross": 136314294, "Worldwide Gross": 376000000, "US DVD Sales": null, "Production Budget": 125000000, "Release Date": "May 19 1998", "MPAA Rating": "PG-13", "Running Time min": 139, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Roland Emmerich", "Rotten Tomatoes Rating": 25, "IMDB Rating": 4.8, "IMDB Votes": 59455}, {"Title": "Smiling Fish and Goat on Fire", "US Gross": 277233, "Worldwide Gross": 277233, "US DVD Sales": null, "Production Budget": 40000, "Release Date": "Aug 25 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Gone in 60 Seconds", "US Gross": 101643008, "Worldwide Gross": 232643008, "US DVD Sales": null, "Production Budget": 103300000, "Release Date": "Jun 09 2000", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 2940}, {"Title": "Good", "US Gross": 27276, "Worldwide Gross": 27276, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Dec 31 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 34, "IMDB Rating": 6.2, "IMDB Votes": 1926}, {"Title": "Good Will Hunting", "US Gross": 138433435, "Worldwide Gross": 225933435, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 20 1987", "MPAA Rating": "R", "Running Time min": 126, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Gus Van Sant", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.1, "IMDB Votes": 150415}, {"Title": "Gosford Park", "US Gross": 41300105, "Worldwide Gross": 41300105, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Dec 26 2001", "MPAA Rating": "R", "Running Time min": 137, "Distributor": "USA Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Robert Altman", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.3, "IMDB Votes": 36648}, {"Title": "Gossip", "US Gross": 5108820, "Worldwide Gross": 12591270, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Apr 21 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 28, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Game Plan", "US Gross": 90648202, "Worldwide Gross": 147914546, "US DVD Sales": 50113315, "Production Budget": 22000000, "Release Date": "Sep 22 2007", "MPAA Rating": "PG", "Running Time min": 110, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Andy Fickman", "Rotten Tomatoes Rating": 27, "IMDB Rating": 6.3, "IMDB Votes": 14984}, {"Title": "Girl with a Pearl Earring", "US Gross": 11634362, "Worldwide Gross": 22106210, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 12 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Peter Webber", "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.1, "IMDB Votes": 23493}, {"Title": "Galaxy Quest", "US Gross": 71423726, "Worldwide Gross": 90523726, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Dec 25 1999", "MPAA Rating": "PG", "Running Time min": 104, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.2, "IMDB Votes": 52507}, {"Title": "Saving Grace", "US Gross": 12178602, "Worldwide Gross": 24325623, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Aug 04 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.8, "IMDB Votes": 8543}, {"Title": "Gracie", "US Gross": 2956339, "Worldwide Gross": 3036736, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Jun 01 2007", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Picturehouse", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 59, "IMDB Rating": 6.2, "IMDB Votes": 2084}, {"Title": "The Great Raid", "US Gross": 10166502, "Worldwide Gross": 10597070, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Aug 12 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "John Dahl", "Rotten Tomatoes Rating": 36, "IMDB Rating": 6.8, "IMDB Votes": 8894}, {"Title": "The Grand", "US Gross": 115879, "Worldwide Gross": 115879, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Mar 21 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Anchor Bay Entertainment", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Zak Penn", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 3346}, {"Title": "The Constant Gardener", "US Gross": 33579798, "Worldwide Gross": 81079798, "US DVD Sales": null, "Production Budget": 25500000, "Release Date": "Aug 31 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Fernando Meirelles", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.6, "IMDB Votes": 50763}, {"Title": "Garden State", "US Gross": 26782316, "Worldwide Gross": 32381151, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Jul 28 2004", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Zach Braff", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.9, "IMDB Votes": 92594}, {"Title": "Grease", "US Gross": 305260, "Worldwide Gross": 206005260, "US DVD Sales": 21249794, "Production Budget": 6000000, "Release Date": "Jun 16 1978", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Randal Kleiser", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7, "IMDB Votes": 60146}, {"Title": "Green Zone", "US Gross": 35053660, "Worldwide Gross": 84788541, "US DVD Sales": 14424476, "Production Budget": 100000000, "Release Date": "Mar 12 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Factual Book/Article", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Paul Greengrass", "Rotten Tomatoes Rating": 55, "IMDB Rating": 7.1, "IMDB Votes": 26759}, {"Title": "George Of The Jungle", "US Gross": 105263257, "Worldwide Gross": 174463257, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jul 16 1997", "MPAA Rating": "PG", "Running Time min": 91, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 54, "IMDB Rating": 5.3, "IMDB Votes": 19685}, {"Title": "The Brothers Grimm", "US Gross": 37899638, "Worldwide Gross": 105299638, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Aug 26 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Terry Gilliam", "Rotten Tomatoes Rating": 37, "IMDB Rating": 5.9, "IMDB Votes": 43532}, {"Title": "The Girl Next Door", "US Gross": 14589444, "Worldwide Gross": 18589444, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 09 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Luke Greenfield", "Rotten Tomatoes Rating": 56, "IMDB Rating": 7, "IMDB Votes": 5614}, {"Title": "How the Grinch Stole Christmas", "US Gross": 260044825, "Worldwide Gross": 345141403, "US DVD Sales": null, "Production Budget": 123000000, "Release Date": "Nov 17 2000", "MPAA Rating": "PG", "Running Time min": 104, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Ron Howard", "Rotten Tomatoes Rating": 53, "IMDB Rating": 5.7, "IMDB Votes": 40310}, {"Title": "Grindhouse", "US Gross": 25031037, "Worldwide Gross": 50187789, "US DVD Sales": 31070911, "Production Budget": 53000000, "Release Date": "Apr 06 2007", "MPAA Rating": "R", "Running Time min": 191, "Distributor": "Weinstein/Dimension", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.9, "IMDB Votes": 82770}, {"Title": "Get Rich or Die Tryin'", "US Gross": 30981850, "Worldwide Gross": 46437122, "US DVD Sales": 9906347, "Production Budget": 40000000, "Release Date": "Nov 09 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Jim Sheridan", "Rotten Tomatoes Rating": 16, "IMDB Rating": 4, "IMDB Votes": 18126}, {"Title": "Wallace & Gromit: The Curse of the Were-Rabbit", "US Gross": 56068547, "Worldwide Gross": 185724838, "US DVD Sales": 35069986, "Production Budget": 30000000, "Release Date": "Oct 05 2005", "MPAA Rating": "G", "Running Time min": 85, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Nick Park", "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.9, "IMDB Votes": 38158}, {"Title": "Groove", "US Gross": 1115313, "Worldwide Gross": 1167524, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jun 09 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 56, "IMDB Rating": 5.8, "IMDB Votes": 2486}, {"Title": "Grosse Point Blank", "US Gross": 28084357, "Worldwide Gross": 28084357, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 11 1997", "MPAA Rating": "R", "Running Time min": 106, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 41523}, {"Title": "The Grudge 2", "US Gross": 39143839, "Worldwide Gross": 68643839, "US DVD Sales": 8293678, "Production Budget": 20000000, "Release Date": "Oct 13 2006", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 4.6, "IMDB Votes": 16024}, {"Title": "The Grudge", "US Gross": 110359362, "Worldwide Gross": 187281115, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 22 2004", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 39, "IMDB Rating": 5.7, "IMDB Votes": 43218}, {"Title": "Grown Ups", "US Gross": 161094625, "Worldwide Gross": 250294625, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jun 25 2010", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 5.8, "IMDB Votes": 13488}, {"Title": "Ghost Dog: Way of the Samurai", "US Gross": 3330230, "Worldwide Gross": 6030230, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Mar 03 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Jim Jarmusch", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Guess Who", "US Gross": 68915888, "Worldwide Gross": 102115888, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Mar 25 2005", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 43, "IMDB Rating": 5.7, "IMDB Votes": 15789}, {"Title": "Get Carter", "US Gross": 14967182, "Worldwide Gross": 19417182, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Oct 06 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.8, "IMDB Votes": 14196}, {"Title": "Get Over It", "US Gross": 11560259, "Worldwide Gross": 11560259, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Mar 09 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.5, "IMDB Votes": 9350}, {"Title": "Veronica Guerin", "US Gross": 1569918, "Worldwide Gross": 9438074, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Oct 17 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.8, "IMDB Votes": 8778}, {"Title": "The Guru", "US Gross": 3051221, "Worldwide Gross": 23788368, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Jan 31 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 9239}, {"Title": "A Guy Thing", "US Gross": 15543862, "Worldwide Gross": 17430594, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jan 17 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 8147}, {"Title": "Ghost World", "US Gross": 6217849, "Worldwide Gross": 8764007, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Jul 20 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Terry Zwigoff", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.7, "IMDB Votes": 42973}, {"Title": "Halloween 2", "US Gross": 33392973, "Worldwide Gross": 38512850, "US DVD Sales": 6646073, "Production Budget": 15000000, "Release Date": "Aug 28 2009", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Weinstein/Dimension", "Source": null, "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Rob Zombie", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.5, "IMDB Votes": 9284}, {"Title": "Hairspray", "US Gross": 118823091, "Worldwide Gross": 202823091, "US DVD Sales": 104104829, "Production Budget": 75000000, "Release Date": "Jul 20 2007", "MPAA Rating": "PG", "Running Time min": 117, "Distributor": "New Line", "Source": "Remake", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Adam Shankman", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.2, "IMDB Votes": 41511}, {"Title": "Half Baked", "US Gross": 17394881, "Worldwide Gross": 17394881, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Jan 16 1998", "MPAA Rating": "R", "Running Time min": 84, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 6.3, "IMDB Votes": 18791}, {"Title": "Hamlet", "US Gross": 4501094, "Worldwide Gross": 7129670, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Dec 25 1996", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 6, "IMDB Votes": 5147}, {"Title": "Hamlet", "US Gross": 1577287, "Worldwide Gross": 2288841, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "May 12 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": 6, "IMDB Votes": 5147}, {"Title": "Hannibal the Conqueror", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Dec 31 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": null, "Creative Type": "Dramatization", "Director": "Vin Diesel", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Hancock", "US Gross": 227946274, "Worldwide Gross": 624346274, "US DVD Sales": 89352567, "Production Budget": 150000000, "Release Date": "Jul 02 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Peter Berg", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.5, "IMDB Votes": 100822}, {"Title": "Happily N'Ever After", "US Gross": 15849032, "Worldwide Gross": 38344430, "US DVD Sales": 16559473, "Production Budget": 47000000, "Release Date": "Jan 05 2007", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.9, "IMDB Votes": 4678}, {"Title": "The Happening", "US Gross": 64506874, "Worldwide Gross": 163403799, "US DVD Sales": 21432877, "Production Budget": 60000000, "Release Date": "Jun 13 2008", "MPAA Rating": "R", "Running Time min": 89, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "M. Night Shyamalan", "Rotten Tomatoes Rating": 18, "IMDB Rating": 5.2, "IMDB Votes": 72259}, {"Title": "Happy, Texas", "US Gross": 2039192, "Worldwide Gross": 2039192, "US DVD Sales": null, "Production Budget": 1700000, "Release Date": "Oct 01 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.5, "IMDB Votes": 198}, {"Title": "Hard Candy", "US Gross": 1024640, "Worldwide Gross": 1881243, "US DVD Sales": null, "Production Budget": 950000, "Release Date": "Apr 14 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 45791}, {"Title": "Harsh Times", "US Gross": 3337931, "Worldwide Gross": 5963961, "US DVD Sales": 2638319, "Production Budget": 2000000, "Release Date": "Nov 10 2006", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 48, "IMDB Rating": 7, "IMDB Votes": 26347}, {"Title": "Harvard Man", "US Gross": 56653, "Worldwide Gross": 56653, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "May 17 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 2758}, {"Title": "Harry Brown", "US Gross": 1818681, "Worldwide Gross": 6294140, "US DVD Sales": null, "Production Budget": 7300000, "Release Date": "Apr 30 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Samuel Goldwyn Films", "Source": null, "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 14297}, {"Title": "The House Bunny", "US Gross": 48237389, "Worldwide Gross": 70237389, "US DVD Sales": 15442818, "Production Budget": 25000000, "Release Date": "Aug 22 2008", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Fred Wolf", "Rotten Tomatoes Rating": 39, "IMDB Rating": 5.5, "IMDB Votes": 18964}, {"Title": "The Devil's Rejects", "US Gross": 17044981, "Worldwide Gross": 20940428, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jul 22 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Rob Zombie", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.9, "IMDB Votes": 36082}, {"Title": "House of 1,000 Corpses", "US Gross": 12634962, "Worldwide Gross": 16829545, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Apr 11 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Rob Zombie", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 3311}, {"Title": "The House of the Dead", "US Gross": 10199354, "Worldwide Gross": 13767816, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Oct 10 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Based on Game", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Uwe Boll", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 5541}, {"Title": "Hidalgo", "US Gross": 67286731, "Worldwide Gross": 107336658, "US DVD Sales": null, "Production Budget": 78000000, "Release Date": "Mar 05 2004", "MPAA Rating": "PG-13", "Running Time min": 136, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Joe Johnston", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.6, "IMDB Votes": 23604}, {"Title": "Hide and Seek", "US Gross": 51100486, "Worldwide Gross": 123100486, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jan 28 2005", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.6, "IMDB Votes": 30891}, {"Title": "Hoodwinked", "US Gross": 51386611, "Worldwide Gross": 110011106, "US DVD Sales": 31171440, "Production Budget": 17500000, "Release Date": "Dec 16 2005", "MPAA Rating": "PG", "Running Time min": 80, "Distributor": "Weinstein Co.", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 20461}, {"Title": "How Do You Know?", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Dec 17 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Head of State", "US Gross": 37788228, "Worldwide Gross": 38283765, "US DVD Sales": null, "Production Budget": 35200000, "Release Date": "Mar 28 2003", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Chris Rock", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.1, "IMDB Votes": 8447}, {"Title": "Hedwig and the Angry Inch", "US Gross": 3067312, "Worldwide Gross": 3643900, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Jul 20 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.6, "IMDB Votes": 14766}, {"Title": "Pooh's Heffalump Movie", "US Gross": 18098433, "Worldwide Gross": 52858433, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Feb 11 2005", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 80, "IMDB Rating": 6.3, "IMDB Votes": 1605}, {"Title": "He Got Game", "US Gross": 21567853, "Worldwide Gross": 21567853, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "May 01 1998", "MPAA Rating": "R", "Running Time min": 134, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 80, "IMDB Rating": 6.8, "IMDB Votes": 14494}, {"Title": "Heist", "US Gross": 23483357, "Worldwide Gross": 28483168, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 09 2001", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "David Mamet", "Rotten Tomatoes Rating": 66, "IMDB Rating": 3.2, "IMDB Votes": 77}, {"Title": "Hellboy 2: The Golden Army", "US Gross": 75986503, "Worldwide Gross": 160388063, "US DVD Sales": 43689202, "Production Budget": 82500000, "Release Date": "Jul 11 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Guillermo Del Toro", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 61902}, {"Title": "Hellboy", "US Gross": 59623958, "Worldwide Gross": 99823958, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Apr 02 2004", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Guillermo Del Toro", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.8, "IMDB Votes": 67763}, {"Title": "Raising Helen", "US Gross": 37485528, "Worldwide Gross": 43340302, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "May 28 2004", "MPAA Rating": "PG-13", "Running Time min": 119, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Garry Marshall", "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.7, "IMDB Votes": 10526}, {"Title": "A Home at the End of the World", "US Gross": 1029017, "Worldwide Gross": 1033810, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "Jul 23 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Independent", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.7, "IMDB Votes": 7180}, {"Title": "Jet Li's Hero", "US Gross": 53652140, "Worldwide Gross": 177352140, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Aug 27 2004", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Yimou Zhang", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Here on Earth", "US Gross": 10494147, "Worldwide Gross": 10845127, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Mar 24 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 18, "IMDB Rating": 4.6, "IMDB Votes": 4929}, {"Title": "House of Flying Daggers", "US Gross": 11050094, "Worldwide Gross": 92863945, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 03 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Yimou Zhang", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Head Over Heels", "US Gross": 10397365, "Worldwide Gross": 10397365, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Feb 02 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mark Waters", "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.8, "IMDB Votes": 6574}, {"Title": "The Haunting", "US Gross": 91188905, "Worldwide Gross": 180188905, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jul 23 1999", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Jan De Bont", "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.6, "IMDB Votes": 31808}, {"Title": "High Crimes", "US Gross": 41543207, "Worldwide Gross": 63781100, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Apr 05 2002", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Carl Franklin", "Rotten Tomatoes Rating": 31, "IMDB Rating": 6.1, "IMDB Votes": 14428}, {"Title": "High Fidelity", "US Gross": 27277055, "Worldwide Gross": 47881663, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 31 2000", "MPAA Rating": "R", "Running Time min": 114, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Stephen Frears", "Rotten Tomatoes Rating": 92, "IMDB Rating": 7.6, "IMDB Votes": 69740}, {"Title": "Highlander: Endgame", "US Gross": 12801190, "Worldwide Gross": 12801190, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Sep 01 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.3, "IMDB Votes": 8421}, {"Title": "High Heels and Low Lifes", "US Gross": 226792, "Worldwide Gross": 226792, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 26 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 6.1, "IMDB Votes": 2205}, {"Title": "High School Musical 3: Senior Year", "US Gross": 90556401, "Worldwide Gross": 251056401, "US DVD Sales": 59373004, "Production Budget": 11000000, "Release Date": "Oct 24 2008", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 66, "IMDB Rating": 3.7, "IMDB Votes": 18587}, {"Title": "The History Boys", "US Gross": 2730296, "Worldwide Gross": 13425589, "US DVD Sales": null, "Production Budget": 3700000, "Release Date": "Nov 21 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.7, "IMDB Votes": 10293}, {"Title": "A History of Violence", "US Gross": 31493782, "Worldwide Gross": 59993782, "US DVD Sales": 38659936, "Production Budget": 32000000, "Release Date": "Sep 23 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "David Cronenberg", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.6, "IMDB Votes": 79738}, {"Title": "Hitch", "US Gross": 177784257, "Worldwide Gross": 366784257, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Feb 11 2005", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Andy Tennant", "Rotten Tomatoes Rating": 69, "IMDB Rating": 5.7, "IMDB Votes": 89}, {"Title": "Hitman", "US Gross": 39687694, "Worldwide Gross": 99965792, "US DVD Sales": 28077100, "Production Budget": 17500000, "Release Date": "Nov 21 2007", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 6.8, "IMDB Votes": 520}, {"Title": "Harold & Kumar Escape from Guantanamo Bay", "US Gross": 38108728, "Worldwide Gross": 43231984, "US DVD Sales": 24609630, "Production Budget": 12000000, "Release Date": "Apr 25 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.7, "IMDB Votes": 42358}, {"Title": "Harold & Kumar Go to White Castle", "US Gross": 18225165, "Worldwide Gross": 18225165, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Jul 30 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.2, "IMDB Votes": 56030}, {"Title": "Held Up", "US Gross": 4714090, "Worldwide Gross": 4714090, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "May 12 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Trimark", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.7, "IMDB Votes": 1840}, {"Title": "The Hills Have Eyes II", "US Gross": 20804166, "Worldwide Gross": 37466538, "US DVD Sales": 30512461, "Production Budget": 15000000, "Release Date": "Mar 23 2007", "MPAA Rating": "R", "Running Time min": 88, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 17948}, {"Title": "The Hills Have Eyes", "US Gross": 41778863, "Worldwide Gross": 69623713, "US DVD Sales": 20576805, "Production Budget": 17000000, "Release Date": "Mar 10 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Alexandre Aja", "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.5, "IMDB Votes": 43747}, {"Title": "How to Lose Friends & Alienate People", "US Gross": 2775593, "Worldwide Gross": 12031443, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Oct 03 2008", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 6.7, "IMDB Votes": 25756}, {"Title": "Half Past Dead", "US Gross": 15567860, "Worldwide Gross": 19233280, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Nov 15 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 2, "IMDB Rating": 4.1, "IMDB Votes": 6909}, {"Title": "Halloween: H2O", "US Gross": 55041738, "Worldwide Gross": 55041738, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Aug 05 1998", "MPAA Rating": "R", "Running Time min": 85, "Distributor": "Miramax", "Source": null, "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Steve Miner", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Halloween: Resurrection", "US Gross": 30259652, "Worldwide Gross": 37659652, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jul 12 2002", "MPAA Rating": "R", "Running Time min": 89, "Distributor": "Miramax/Dimension", "Source": null, "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Rick Rosenthal", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.9, "IMDB Votes": 13181}, {"Title": "Holy Man", "US Gross": 12069719, "Worldwide Gross": 12069719, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Oct 09 1998", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Stephen Herek", "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.7, "IMDB Votes": 9105}, {"Title": "Milk", "US Gross": 31841299, "Worldwide Gross": 50164027, "US DVD Sales": 11075466, "Production Budget": 20000000, "Release Date": "Nov 26 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Gus Van Sant", "Rotten Tomatoes Rating": 94, "IMDB Rating": 3.6, "IMDB Votes": 479}, {"Title": "Hamlet 2", "US Gross": 4886216, "Worldwide Gross": 4898285, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Aug 22 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Andrew Fleming", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.4, "IMDB Votes": 9017}, {"Title": "Hannah Montana/Miley Cyrus: Best of Both Worlds Concert Tour", "US Gross": 65281781, "Worldwide Gross": 71281781, "US DVD Sales": 18154740, "Production Budget": 6500000, "Release Date": "Feb 01 2008", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Concert/Performance", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 71, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Home on the Range", "US Gross": 50026353, "Worldwide Gross": 76482461, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Apr 02 2004", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 54, "IMDB Rating": 5.4, "IMDB Votes": 4772}, {"Title": "Hannibal Rising", "US Gross": 27669725, "Worldwide Gross": 80583311, "US DVD Sales": 23365803, "Production Budget": 50000000, "Release Date": "Feb 09 2007", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Weinstein Co.", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "Peter Webber", "Rotten Tomatoes Rating": 15, "IMDB Rating": 6, "IMDB Votes": 28690}, {"Title": "The Hangover", "US Gross": 277322503, "Worldwide Gross": 465132119, "US DVD Sales": 165916727, "Production Budget": 35000000, "Release Date": "Jun 05 2009", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Todd Phillips", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.9, "IMDB Votes": 127634}, {"Title": "Hanging Up", "US Gross": 36037909, "Worldwide Gross": 51867723, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Feb 18 2000", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.3, "IMDB Votes": 6098}, {"Title": "The Hoax", "US Gross": 7164995, "Worldwide Gross": 7164995, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 06 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Lasse Hallstrom", "Rotten Tomatoes Rating": 85, "IMDB Rating": 6.9, "IMDB Votes": 9171}, {"Title": "Holes", "US Gross": 67383924, "Worldwide Gross": 72383924, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Apr 18 2003", "MPAA Rating": "PG", "Running Time min": 117, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Andrew Davis", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.1, "IMDB Votes": 19388}, {"Title": "The Holiday", "US Gross": 63280000, "Worldwide Gross": 205190324, "US DVD Sales": 71449071, "Production Budget": 85000000, "Release Date": "Dec 08 2006", "MPAA Rating": "PG-13", "Running Time min": 131, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Nancy Meyers", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.9, "IMDB Votes": 48215}, {"Title": "Hollow Man", "US Gross": 73209340, "Worldwide Gross": 191200000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Aug 04 2000", "MPAA Rating": "R", "Running Time min": 112, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Paul Verhoeven", "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.5, "IMDB Votes": 41499}, {"Title": "Holy Girl", "US Gross": 304124, "Worldwide Gross": 1261792, "US DVD Sales": null, "Production Budget": 1400000, "Release Date": "Apr 29 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fine Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Home Fries", "US Gross": 10513979, "Worldwide Gross": 10513979, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Nov 25 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 31, "IMDB Rating": 4.7, "IMDB Votes": 4806}, {"Title": "Honey", "US Gross": 30272254, "Worldwide Gross": 62192232, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Dec 05 2003", "MPAA Rating": "PG-13", "Running Time min": 94, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Bille Woodruff", "Rotten Tomatoes Rating": 20, "IMDB Rating": 4.6, "IMDB Votes": 13026}, {"Title": "The Honeymooners", "US Gross": 12834849, "Worldwide Gross": 13174426, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Jun 10 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Schultz", "Rotten Tomatoes Rating": 14, "IMDB Rating": 2.6, "IMDB Votes": 5012}, {"Title": "Hoot", "US Gross": 8117637, "Worldwide Gross": 8224998, "US DVD Sales": 11095119, "Production Budget": 15000000, "Release Date": "May 05 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.3, "IMDB Votes": 2830}, {"Title": "Hope Floats", "US Gross": 60110313, "Worldwide Gross": 81529000, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "May 29 1998", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Forest Whitaker", "Rotten Tomatoes Rating": 23, "IMDB Rating": 5.3, "IMDB Votes": 9168}, {"Title": "Horton Hears a Who", "US Gross": 154529439, "Worldwide Gross": 297133947, "US DVD Sales": 73524948, "Production Budget": 85000000, "Release Date": "Mar 14 2008", "MPAA Rating": "G", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 31323}, {"Title": "Hostel: Part II", "US Gross": 17544812, "Worldwide Gross": 33606409, "US DVD Sales": 16230816, "Production Budget": 7500000, "Release Date": "Jun 08 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Eli Roth", "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.4, "IMDB Votes": 31511}, {"Title": "Hostage", "US Gross": 34636443, "Worldwide Gross": 77636443, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Mar 11 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 3070}, {"Title": "Hostel", "US Gross": 47326473, "Worldwide Gross": 80578934, "US DVD Sales": 23835218, "Production Budget": 4800000, "Release Date": "Jan 06 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Eli Roth", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 64642}, {"Title": "Hot Rod", "US Gross": 13938332, "Worldwide Gross": 14334401, "US DVD Sales": 24152720, "Production Budget": 25000000, "Release Date": "Aug 03 2007", "MPAA Rating": "PG-13", "Running Time min": 83, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.5, "IMDB Votes": 22250}, {"Title": "The Hours", "US Gross": 41675994, "Worldwide Gross": 108775994, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Dec 27 2002", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Stephen Daldry", "Rotten Tomatoes Rating": 80, "IMDB Rating": 7.6, "IMDB Votes": 44618}, {"Title": "Life as a House", "US Gross": 15652637, "Worldwide Gross": 23889158, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Oct 26 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 46, "IMDB Rating": 7.5, "IMDB Votes": 19308}, {"Title": "Bringing Down the House", "US Gross": 132675402, "Worldwide Gross": 164675402, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 07 2003", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Adam Shankman", "Rotten Tomatoes Rating": 34, "IMDB Rating": 5.4, "IMDB Votes": 16242}, {"Title": "House of Wax", "US Gross": 32064800, "Worldwide Gross": 70064800, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "May 06 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 25, "IMDB Rating": 5.4, "IMDB Votes": 32159}, {"Title": "How to Deal", "US Gross": 14108518, "Worldwide Gross": 14108518, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Jul 18 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.4, "IMDB Votes": 5292}, {"Title": "How High", "US Gross": 31155435, "Worldwide Gross": 31260435, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 21 2001", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 27, "IMDB Rating": 5.5, "IMDB Votes": 14470}, {"Title": "Def Jam's How To Be a Player", "US Gross": 14010363, "Worldwide Gross": 14010363, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Aug 06 1997", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Harry Potter and the Chamber of Secrets", "US Gross": 261987880, "Worldwide Gross": 878987880, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Nov 15 2002", "MPAA Rating": "PG", "Running Time min": 161, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Chris Columbus", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.2, "IMDB Votes": 120063}, {"Title": "Harry Potter and the Prisoner of Azkaban", "US Gross": 249538952, "Worldwide Gross": 795538952, "US DVD Sales": null, "Production Budget": 130000000, "Release Date": "Jun 04 2004", "MPAA Rating": "PG", "Running Time min": 141, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Alfonso Cuaron", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.7, "IMDB Votes": 108928}, {"Title": "Harry Potter and the Goblet of Fire", "US Gross": 290013036, "Worldwide Gross": 896013036, "US DVD Sales": 215701005, "Production Budget": 150000000, "Release Date": "Nov 18 2005", "MPAA Rating": "PG-13", "Running Time min": 157, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Mike Newell", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.6, "IMDB Votes": 111946}, {"Title": "Harry Potter and the Order of the Phoenix", "US Gross": 292004738, "Worldwide Gross": 938468864, "US DVD Sales": 220867077, "Production Budget": 150000000, "Release Date": "Jul 11 2007", "MPAA Rating": "PG-13", "Running Time min": 138, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "David Yates", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.4, "IMDB Votes": 104074}, {"Title": "Harry Potter and the Half-Blood Prince", "US Gross": 301959197, "Worldwide Gross": 937499905, "US DVD Sales": 103574938, "Production Budget": 250000000, "Release Date": "Jul 15 2009", "MPAA Rating": "PG", "Running Time min": 153, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "David Yates", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.3, "IMDB Votes": 73720}, {"Title": "Harry Potter and the Sorcerer's Stone", "US Gross": 317557891, "Worldwide Gross": 976457891, "US DVD Sales": null, "Production Budget": 125000000, "Release Date": "Nov 16 2001", "MPAA Rating": "PG", "Running Time min": 152, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Chris Columbus", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 132238}, {"Title": "Happy Feet", "US Gross": 198000317, "Worldwide Gross": 385000317, "US DVD Sales": 203263968, "Production Budget": 85000000, "Release Date": "Nov 17 2006", "MPAA Rating": "PG", "Running Time min": 108, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "George Miller", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.7, "IMDB Votes": 42369}, {"Title": "Hercules", "US Gross": 99112101, "Worldwide Gross": 250700000, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Jun 15 1997", "MPAA Rating": "G", "Running Time min": 92, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.8, "IMDB Votes": 21902}, {"Title": "Hardball", "US Gross": 40222729, "Worldwide Gross": 44102389, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Sep 14 2001", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Brian Robbins", "Rotten Tomatoes Rating": 38, "IMDB Rating": 4.1, "IMDB Votes": 165}, {"Title": "Hard Rain", "US Gross": 19870567, "Worldwide Gross": 19870567, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Jan 16 1998", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.6, "IMDB Votes": 14375}, {"Title": "The Horse Whisperer", "US Gross": 75383563, "Worldwide Gross": 75383563, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "May 15 1998", "MPAA Rating": "PG-13", "Running Time min": 168, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Robert Redford", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.3, "IMDB Votes": 15831}, {"Title": "The Heart of Me", "US Gross": 196067, "Worldwide Gross": 196067, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jun 13 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 1342}, {"Title": "Casa de Areia", "US Gross": 539285, "Worldwide Gross": 1178175, "US DVD Sales": null, "Production Budget": 3750000, "Release Date": "Aug 11 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 1519}, {"Title": "Sorority Row", "US Gross": 11965282, "Worldwide Gross": 26735797, "US DVD Sales": 1350584, "Production Budget": 12500000, "Release Date": "Sep 11 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Summit Entertainment", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.1, "IMDB Votes": 7097}, {"Title": "Hart's War", "US Gross": 19076815, "Worldwide Gross": 33076815, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Feb 15 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.2, "IMDB Votes": 19541}, {"Title": "The Hitchhiker's Guide to the Galaxy", "US Gross": 51019112, "Worldwide Gross": 104019112, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Apr 29 2005", "MPAA Rating": "PG", "Running Time min": 103, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.6, "IMDB Votes": 61513}, {"Title": "High Tension", "US Gross": 3681066, "Worldwide Gross": 5208449, "US DVD Sales": null, "Production Budget": 2850000, "Release Date": "Jun 10 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 165}, {"Title": "Hot Fuzz", "US Gross": 23618786, "Worldwide Gross": 79197493, "US DVD Sales": 33391776, "Production Budget": 16000000, "Release Date": "Apr 20 2007", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Edgar Wright", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8, "IMDB Votes": 129779}, {"Title": "Human Traffic", "US Gross": 104257, "Worldwide Gross": 5422740, "US DVD Sales": null, "Production Budget": 3300000, "Release Date": "May 05 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 9455}, {"Title": "How to Train Your Dragon", "US Gross": 217581231, "Worldwide Gross": 491581231, "US DVD Sales": null, "Production Budget": 165000000, "Release Date": "Mar 26 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.2, "IMDB Votes": 28556}, {"Title": "I Heart Huckabees", "US Gross": 12784713, "Worldwide Gross": 14584713, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Oct 01 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.8, "IMDB Votes": 35878}, {"Title": "Hulk", "US Gross": 132177234, "Worldwide Gross": 245360480, "US DVD Sales": null, "Production Budget": 137000000, "Release Date": "Jun 20 2003", "MPAA Rating": "PG-13", "Running Time min": 138, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Ang Lee", "Rotten Tomatoes Rating": 62, "IMDB Rating": 5.7, "IMDB Votes": 70844}, {"Title": "The Incredible Hulk", "US Gross": 134806913, "Worldwide Gross": 263349257, "US DVD Sales": 58503066, "Production Budget": 137500000, "Release Date": "Jun 13 2008", "MPAA Rating": "PG-13", "Running Time min": 112, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Louis Leterrier", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.1, "IMDB Votes": 82419}, {"Title": "The Hunchback of Notre Dame", "US Gross": 100138851, "Worldwide Gross": 325500000, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Jun 21 1996", "MPAA Rating": "G", "Running Time min": 86, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Gary Trousdale", "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.5, "IMDB Votes": 19479}, {"Title": "The Hunted", "US Gross": 34234008, "Worldwide Gross": 45016494, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Mar 14 2003", "MPAA Rating": "R", "Running Time min": 94, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "William Friedkin", "Rotten Tomatoes Rating": 31, "IMDB Rating": 5.8, "IMDB Votes": 18941}, {"Title": "Hurricane Streets", "US Gross": 334041, "Worldwide Gross": 367582, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Feb 13 1998", "MPAA Rating": null, "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Hurt Locker", "US Gross": 14700000, "Worldwide Gross": 44468574, "US DVD Sales": 31304710, "Production Budget": 15000000, "Release Date": "Jun 26 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Summit Entertainment", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Kathryn Bigelow", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 83679}, {"Title": "Hustle & Flow", "US Gross": 22202809, "Worldwide Gross": 23563727, "US DVD Sales": null, "Production Budget": 2800000, "Release Date": "Jul 22 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 18688}, {"Title": "Starsky & Hutch", "US Gross": 88200225, "Worldwide Gross": 170200225, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Mar 05 2004", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Todd Phillips", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.2, "IMDB Votes": 48935}, {"Title": "Hollywood Ending", "US Gross": 4839383, "Worldwide Gross": 14839383, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "May 03 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.3, "IMDB Votes": 10486}, {"Title": "Hollywood Homicide", "US Gross": 30207785, "Worldwide Gross": 51107785, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jun 13 2003", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Sony/Columbia", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Ron Shelton", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.2, "IMDB Votes": 16452}, {"Title": "Whatever it Takes", "US Gross": 8735529, "Worldwide Gross": 8735529, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Mar 24 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 5.2, "IMDB Votes": 4192}, {"Title": "Ice Age: The Meltdown", "US Gross": 195330621, "Worldwide Gross": 651899282, "US DVD Sales": 131919814, "Production Budget": 75000000, "Release Date": "Mar 31 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Carlos Saldanha", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 50981}, {"Title": "Ice Age: Dawn of the Dinosaurs", "US Gross": 196573705, "Worldwide Gross": 886685941, "US DVD Sales": 87544387, "Production Budget": 90000000, "Release Date": "Jul 01 2009", "MPAA Rating": "PG", "Running Time min": 93, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Carlos Saldanha", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 33289}, {"Title": "Ice Age", "US Gross": 176387405, "Worldwide Gross": 383257136, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Mar 15 2002", "MPAA Rating": "PG", "Running Time min": 81, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Chris Wedge", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.4, "IMDB Votes": 75552}, {"Title": "Ice Princess", "US Gross": 24381334, "Worldwide Gross": 25732334, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 18 2005", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 52, "IMDB Rating": 6, "IMDB Votes": 7106}, {"Title": "The Ice Storm", "US Gross": 8038061, "Worldwide Gross": 16011975, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Sep 27 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Ang Lee", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.5, "IMDB Votes": 27544}, {"Title": "I Come with the Rain", "US Gross": 0, "Worldwide Gross": 627422, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Dec 31 1969", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 618}, {"Title": "Identity", "US Gross": 52131264, "Worldwide Gross": 90231264, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Apr 25 2003", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "James Mangold", "Rotten Tomatoes Rating": 62, "IMDB Rating": 7.3, "IMDB Votes": 57909}, {"Title": "An Ideal Husband", "US Gross": 18542974, "Worldwide Gross": 18542974, "US DVD Sales": null, "Production Budget": 10700000, "Release Date": "Jun 18 1999", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.7, "IMDB Votes": 8078}, {"Title": "Idlewild", "US Gross": 12669914, "Worldwide Gross": 12669914, "US DVD Sales": 3120029, "Production Budget": 15000000, "Release Date": "Aug 25 2006", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 5.8, "IMDB Votes": 3056}, {"Title": "Igby Goes Down", "US Gross": 4777465, "Worldwide Gross": 4777465, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Sep 13 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 76, "IMDB Rating": 7, "IMDB Votes": 19050}, {"Title": "Igor", "US Gross": 19528188, "Worldwide Gross": 26608350, "US DVD Sales": 12361783, "Production Budget": 30000000, "Release Date": "Sep 19 2008", "MPAA Rating": "PG", "Running Time min": 86, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 6, "IMDB Votes": 6614}, {"Title": "I Got the Hook-Up!", "US Gross": 10317779, "Worldwide Gross": 10317779, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "May 27 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 3.3, "IMDB Votes": 985}, {"Title": "Idle Hands", "US Gross": 4023741, "Worldwide Gross": 4023741, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 30 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 5.8, "IMDB Votes": 16157}, {"Title": "Imaginary Heroes", "US Gross": 228524, "Worldwide Gross": 290875, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 17 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 7.2, "IMDB Votes": 6057}, {"Title": "I Still Know What You Did Last Summer", "US Gross": 40020622, "Worldwide Gross": 40020622, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Nov 13 1998", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.1, "IMDB Votes": 23268}, {"Title": "I Know What You Did Last Summer", "US Gross": 72250091, "Worldwide Gross": 125250091, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Oct 17 1997", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 5.4, "IMDB Votes": 36807}, {"Title": "I Love You, Beth Cooper", "US Gross": 14800725, "Worldwide Gross": 16382538, "US DVD Sales": 5475072, "Production Budget": 18000000, "Release Date": "Jul 10 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Chris Columbus", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 179}, {"Title": "The Illusionist", "US Gross": 39868642, "Worldwide Gross": 84276175, "US DVD Sales": 38200717, "Production Budget": 16500000, "Release Date": "Aug 18 2006", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Yari Film Group Releasing", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.7, "IMDB Votes": 92040}, {"Title": "But I'm a Cheerleader", "US Gross": 2205627, "Worldwide Gross": 2595216, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Jul 07 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 10073}, {"Title": "The Imaginarium of Doctor Parnassus", "US Gross": 7689458, "Worldwide Gross": 58692979, "US DVD Sales": 5387124, "Production Budget": 30000000, "Release Date": "Dec 25 2009", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Terry Gilliam", "Rotten Tomatoes Rating": 64, "IMDB Rating": 7.1, "IMDB Votes": 33374}, {"Title": "Imagine Me & You", "US Gross": 672243, "Worldwide Gross": 972243, "US DVD Sales": null, "Production Budget": 7900000, "Release Date": "Jan 27 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 9534}, {"Title": "Imagine That", "US Gross": 16123323, "Worldwide Gross": 16123323, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jun 12 2009", "MPAA Rating": "PG", "Running Time min": 107, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Karey Kirkpatrick", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.4, "IMDB Votes": 3092}, {"Title": "Impostor", "US Gross": 6114237, "Worldwide Gross": 6114237, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jan 04 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 9020}, {"Title": "Inception", "US Gross": 285630280, "Worldwide Gross": 753830280, "US DVD Sales": null, "Production Budget": 160000000, "Release Date": "Jul 16 2010", "MPAA Rating": "PG-13", "Running Time min": 147, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Christopher Nolan", "Rotten Tomatoes Rating": 87, "IMDB Rating": 9.1, "IMDB Votes": 188247}, {"Title": "In the Cut", "US Gross": 4717455, "Worldwide Gross": 23693646, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Oct 22 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Jane Campion", "Rotten Tomatoes Rating": 34, "IMDB Rating": 5.2, "IMDB Votes": 11590}, {"Title": "In Too Deep", "US Gross": 14026509, "Worldwide Gross": 14026509, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Aug 25 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 5.5, "IMDB Votes": 2529}, {"Title": "IndigËnes", "US Gross": 320700, "Worldwide Gross": 6877936, "US DVD Sales": null, "Production Budget": 18900000, "Release Date": "Dec 15 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 5775}, {"Title": "Indiana Jones and the Kingdom of the Crystal Skull", "US Gross": 317023851, "Worldwide Gross": 786558145, "US DVD Sales": 109654917, "Production Budget": 185000000, "Release Date": "May 22 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 77, "IMDB Rating": 6.6, "IMDB Votes": 135071}, {"Title": "In Dreams", "US Gross": 12017369, "Worldwide Gross": 12017369, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jan 15 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Neil Jordan", "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.3, "IMDB Votes": 7138}, {"Title": "Infamous", "US Gross": 1151330, "Worldwide Gross": 2613717, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Oct 13 2006", "MPAA Rating": "R", "Running Time min": 118, "Distributor": "Warner Independent", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 72, "IMDB Rating": 7.1, "IMDB Votes": 6917}, {"Title": "The Informant", "US Gross": 33316821, "Worldwide Gross": 41771168, "US DVD Sales": 6212437, "Production Budget": 22000000, "Release Date": "Sep 18 2009", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Warner Bros.", "Source": "Based on Factual Book/Article", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 380}, {"Title": "The Informers", "US Gross": 315000, "Worldwide Gross": 315000, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Apr 24 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Senator Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 7595}, {"Title": "Inkheart", "US Gross": 17303424, "Worldwide Gross": 58051454, "US DVD Sales": 8342886, "Production Budget": 60000000, "Release Date": "Jan 23 2009", "MPAA Rating": "PG", "Running Time min": 105, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Iain Softley", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.1, "IMDB Votes": 14157}, {"Title": "In & Out", "US Gross": 63826569, "Worldwide Gross": 83226569, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 19 1997", "MPAA Rating": "PG-13", "Running Time min": 92, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Frank Oz", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.1, "IMDB Votes": 18773}, {"Title": "I Now Pronounce You Chuck and Larry", "US Gross": 119725280, "Worldwide Gross": 185708462, "US DVD Sales": 69334335, "Production Budget": 85000000, "Release Date": "Jul 20 2007", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Dennis Dugan", "Rotten Tomatoes Rating": 14, "IMDB Rating": 6.1, "IMDB Votes": 46347}, {"Title": "Inside Man", "US Gross": 88634237, "Worldwide Gross": 184634237, "US DVD Sales": 37712869, "Production Budget": 50000000, "Release Date": "Mar 24 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.7, "IMDB Votes": 86229}, {"Title": "The Insider", "US Gross": 28965197, "Worldwide Gross": 60265197, "US DVD Sales": null, "Production Budget": 68000000, "Release Date": "Nov 05 1999", "MPAA Rating": "R", "Running Time min": 157, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Michael Mann", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8, "IMDB Votes": 68747}, {"Title": "Insomnia", "US Gross": 67263182, "Worldwide Gross": 113622499, "US DVD Sales": null, "Production Budget": 46000000, "Release Date": "May 24 2002", "MPAA Rating": "R", "Running Time min": 118, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Christopher Nolan", "Rotten Tomatoes Rating": 92, "IMDB Rating": 6.3, "IMDB Votes": 33}, {"Title": "Inspector Gadget", "US Gross": 97387965, "Worldwide Gross": 97387965, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jul 23 1999", "MPAA Rating": "PG", "Running Time min": 77, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 3.9, "IMDB Votes": 13881}, {"Title": "Instinct", "US Gross": 34105207, "Worldwide Gross": 34105207, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jun 04 1999", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Jon Turteltaub", "Rotten Tomatoes Rating": 27, "IMDB Rating": 6.2, "IMDB Votes": 15388}, {"Title": "The Invention of Lying", "US Gross": 18451251, "Worldwide Gross": 32679264, "US DVD Sales": 4548709, "Production Budget": 18500000, "Release Date": "Oct 02 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Ricky Gervais", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.5, "IMDB Votes": 24578}, {"Title": "The Invasion", "US Gross": 15074191, "Worldwide Gross": 40147042, "US DVD Sales": 4845943, "Production Budget": 80000000, "Release Date": "Aug 17 2007", "MPAA Rating": "PG-13", "Running Time min": 99, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 6, "IMDB Votes": 28605}, {"Title": "Ira and Abby", "US Gross": 221096, "Worldwide Gross": 221096, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Sep 14 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 855}, {"Title": "I, Robot", "US Gross": 144801023, "Worldwide Gross": 348601023, "US DVD Sales": null, "Production Budget": 105000000, "Release Date": "Jul 16 2004", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Alex Proyas", "Rotten Tomatoes Rating": 58, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Iron Man 2", "US Gross": 312128345, "Worldwide Gross": 622128345, "US DVD Sales": null, "Production Budget": 170000000, "Release Date": "May 07 2010", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Jon Favreau", "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.3, "IMDB Votes": 61256}, {"Title": "Iron Man", "US Gross": 318604126, "Worldwide Gross": 582604126, "US DVD Sales": 169251757, "Production Budget": 186000000, "Release Date": "May 02 2008", "MPAA Rating": "PG-13", "Running Time min": 126, "Distributor": "Paramount Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Jon Favreau", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.9, "IMDB Votes": 174040}, {"Title": "The Iron Giant", "US Gross": 23159305, "Worldwide Gross": 31333917, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Aug 04 1999", "MPAA Rating": "PG", "Running Time min": 86, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Brad Bird", "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.9, "IMDB Votes": 38791}, {"Title": "Obsluhoval jsem anglickÈho kr·le", "US Gross": 617228, "Worldwide Gross": 7174984, "US DVD Sales": null, "Production Budget": 4900000, "Release Date": "Aug 29 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 3048}, {"Title": "The Island", "US Gross": 35818913, "Worldwide Gross": 163018913, "US DVD Sales": null, "Production Budget": 120000000, "Release Date": "Jul 22 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Michael Bay", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.9, "IMDB Votes": 82601}, {"Title": "Isn't She Great", "US Gross": 2954405, "Worldwide Gross": 2954405, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Jan 28 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Magazine Article", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Andrew Bergman", "Rotten Tomatoes Rating": 25, "IMDB Rating": 4.9, "IMDB Votes": 1426}, {"Title": "I Spy", "US Gross": 33561137, "Worldwide Gross": 33561137, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Nov 01 2002", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Sony Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Betty Thomas", "Rotten Tomatoes Rating": 15, "IMDB Rating": 5.3, "IMDB Votes": 18061}, {"Title": "The Italian Job", "US Gross": 106126012, "Worldwide Gross": 175826012, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "May 30 2003", "MPAA Rating": "PG-13", "Running Time min": 111, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "F. Gary Gray", "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.9, "IMDB Votes": 76835}, {"Title": "I Think I Love My Wife", "US Gross": 12559771, "Worldwide Gross": 13205411, "US DVD Sales": 13566229, "Production Budget": 14000000, "Release Date": "Mar 16 2007", "MPAA Rating": "R", "Running Time min": 94, "Distributor": "Fox Searchlight", "Source": "Remake", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Chris Rock", "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.5, "IMDB Votes": 8643}, {"Title": "Jack Frost", "US Gross": 34645374, "Worldwide Gross": 34645374, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Dec 11 1998", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.6, "IMDB Votes": 6932}, {"Title": "Jackie Brown", "US Gross": 39673162, "Worldwide Gross": 72673162, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Dec 25 1997", "MPAA Rating": "R", "Running Time min": 154, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Quentin Tarantino", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.6, "IMDB Votes": 84068}, {"Title": "The Jackal", "US Gross": 54956941, "Worldwide Gross": 159356941, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Nov 14 1997", "MPAA Rating": "R", "Running Time min": 124, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Michael Caton-Jones", "Rotten Tomatoes Rating": 12, "IMDB Rating": 6, "IMDB Votes": 35540}, {"Title": "The Jacket", "US Gross": 6301131, "Worldwide Gross": 15452978, "US DVD Sales": null, "Production Budget": 28500000, "Release Date": "Mar 04 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Independent", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 43, "IMDB Rating": 7.1, "IMDB Votes": 35932}, {"Title": "Jakob the Liar", "US Gross": 4956401, "Worldwide Gross": 4956401, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Sep 24 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 6.1, "IMDB Votes": 6636}, {"Title": "Jarhead", "US Gross": 62647540, "Worldwide Gross": 96947540, "US DVD Sales": 52209103, "Production Budget": 72000000, "Release Date": "Nov 04 2005", "MPAA Rating": "R", "Running Time min": 115, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Sam Mendes", "Rotten Tomatoes Rating": 61, "IMDB Rating": 7.2, "IMDB Votes": 60650}, {"Title": "Jawbreaker", "US Gross": 3076820, "Worldwide Gross": 3076820, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Feb 19 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 7, "IMDB Rating": 4.8, "IMDB Votes": 9329}, {"Title": "The World is Not Enough", "US Gross": 126930660, "Worldwide Gross": 361730660, "US DVD Sales": null, "Production Budget": 135000000, "Release Date": "Nov 19 1999", "MPAA Rating": "PG-13", "Running Time min": 125, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Michael Apted", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.3, "IMDB Votes": 59406}, {"Title": "Die Another Day", "US Gross": 160942139, "Worldwide Gross": 431942139, "US DVD Sales": null, "Production Budget": 142000000, "Release Date": "Nov 22 2002", "MPAA Rating": "PG-13", "Running Time min": 133, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Lee Tamahori", "Rotten Tomatoes Rating": 59, "IMDB Rating": 6, "IMDB Votes": 67476}, {"Title": "Casino Royale", "US Gross": 167365000, "Worldwide Gross": 596365000, "US DVD Sales": 79681613, "Production Budget": 102000000, "Release Date": "Nov 17 2006", "MPAA Rating": "PG-13", "Running Time min": 144, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Martin Campbell", "Rotten Tomatoes Rating": 94, "IMDB Rating": 8, "IMDB Votes": 172936}, {"Title": "Quantum of Solace", "US Gross": 169368427, "Worldwide Gross": 576368427, "US DVD Sales": 44912115, "Production Budget": 230000000, "Release Date": "Nov 14 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Marc Forster", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.8, "IMDB Votes": 93596}, {"Title": "Jennifer's Body", "US Gross": 16204793, "Worldwide Gross": 32832166, "US DVD Sales": 4998385, "Production Budget": 16000000, "Release Date": "Sep 18 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.3, "IMDB Votes": 24265}, {"Title": "Jackass: Number Two", "US Gross": 72778712, "Worldwide Gross": 83578712, "US DVD Sales": 49050925, "Production Budget": 11000000, "Release Date": "Sep 22 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 7.2, "IMDB Votes": 24434}, {"Title": "Jackass: The Movie", "US Gross": 64282312, "Worldwide Gross": 75466905, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Oct 25 2002", "MPAA Rating": "R", "Running Time min": 92, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 27454}, {"Title": "Journey to the Center of the Earth", "US Gross": 101704370, "Worldwide Gross": 240904370, "US DVD Sales": 26253886, "Production Budget": 45000000, "Release Date": "Jul 11 2008", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 23756}, {"Title": "Joe Dirt", "US Gross": 27087695, "Worldwide Gross": 30987695, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Apr 11 2001", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Dennie Gordon", "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.4, "IMDB Votes": 18666}, {"Title": "The Curse of the Jade Scorpion", "US Gross": 7496522, "Worldwide Gross": 18496522, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Aug 24 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 45, "IMDB Rating": 6.7, "IMDB Votes": 15897}, {"Title": "Jeepers Creepers", "US Gross": 37904175, "Worldwide Gross": 55026845, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 31 2001", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.7, "IMDB Votes": 30610}, {"Title": "Johnny English", "US Gross": 28013509, "Worldwide Gross": 160323929, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jul 18 2003", "MPAA Rating": "PG", "Running Time min": 87, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.8, "IMDB Votes": 29246}, {"Title": "Jeepers Creepers II", "US Gross": 35623801, "Worldwide Gross": 35623801, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Aug 29 2003", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.3, "IMDB Votes": 15975}, {"Title": "The Assassination of Jesse James by the Coward Robert Ford", "US Gross": 3909149, "Worldwide Gross": 15001776, "US DVD Sales": 9871881, "Production Budget": 30000000, "Release Date": "Sep 21 2007", "MPAA Rating": "R", "Running Time min": 160, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 75, "IMDB Rating": 7.7, "IMDB Votes": 57465}, {"Title": "Johnson Family Vacation", "US Gross": 31203964, "Worldwide Gross": 31462753, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Apr 07 2004", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 6, "IMDB Rating": 3.8, "IMDB Votes": 3278}, {"Title": "Jersey Girl", "US Gross": 25266129, "Worldwide Gross": 37066129, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Mar 26 2004", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.2, "IMDB Votes": 27370}, {"Title": "The Jimmy Show", "US Gross": 703, "Worldwide Gross": 703, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Dec 13 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.1, "IMDB Votes": 358}, {"Title": "Jindabyne", "US Gross": 399879, "Worldwide Gross": 2862544, "US DVD Sales": null, "Production Budget": 10800000, "Release Date": "Apr 27 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 3920}, {"Title": "Jackpot", "US Gross": 44452, "Worldwide Gross": 44452, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "Jul 27 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": "Michael Polish", "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.7, "IMDB Votes": 408}, {"Title": "Just Like Heaven", "US Gross": 48318130, "Worldwide Gross": 100687083, "US DVD Sales": 37588463, "Production Budget": 58000000, "Release Date": "Sep 16 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mark Waters", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.8, "IMDB Votes": 29457}, {"Title": "Just My Luck", "US Gross": 17326650, "Worldwide Gross": 38326650, "US DVD Sales": 11051609, "Production Budget": 28000000, "Release Date": "May 12 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Donald Petrie", "Rotten Tomatoes Rating": 13, "IMDB Rating": 5, "IMDB Votes": 13368}, {"Title": "The Messenger: The Story of Joan of Arc", "US Gross": 14271297, "Worldwide Gross": 14271297, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Nov 12 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Luc Besson", "Rotten Tomatoes Rating": 31, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Jungle Book 2", "US Gross": 47901582, "Worldwide Gross": 135703599, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Feb 14 2003", "MPAA Rating": "G", "Running Time min": 72, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.2, "IMDB Votes": 2740}, {"Title": "Joe Somebody", "US Gross": 22770864, "Worldwide Gross": 24515990, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Dec 21 2001", "MPAA Rating": "PG", "Running Time min": 98, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Pasquin", "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.3, "IMDB Votes": 5313}, {"Title": "Jonah Hex", "US Gross": 10547117, "Worldwide Gross": 10547117, "US DVD Sales": null, "Production Budget": 47000000, "Release Date": "Jun 18 2010", "MPAA Rating": "PG-13", "Running Time min": 81, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.3, "IMDB Votes": 2316}, {"Title": "John Q", "US Gross": 71026631, "Worldwide Gross": 102226631, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Feb 15 2002", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Nick Cassavetes", "Rotten Tomatoes Rating": 22, "IMDB Rating": 6.6, "IMDB Votes": 32338}, {"Title": "Jonah: A VeggieTales Movie", "US Gross": 25571351, "Worldwide Gross": 25606175, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Oct 04 2002", "MPAA Rating": "G", "Running Time min": 82, "Distributor": "Artisan", "Source": "Based on Short Film", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 1704}, {"Title": "The Joneses", "US Gross": 1475746, "Worldwide Gross": 1475746, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Apr 16 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Roadside Attractions", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 4345}, {"Title": "Josie and the Pussycats", "US Gross": 14252830, "Worldwide Gross": 14252830, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Apr 11 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 53, "IMDB Rating": 5.1, "IMDB Votes": 11284}, {"Title": "Joy Ride", "US Gross": 21973182, "Worldwide Gross": 21973182, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Oct 05 2001", "MPAA Rating": "R", "Running Time min": 97, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "John Dahl", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 118}, {"Title": "Jerry Maguire", "US Gross": 153952592, "Worldwide Gross": 274000000, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Dec 13 1996", "MPAA Rating": "R", "Running Time min": 138, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Cameron Crowe", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.2, "IMDB Votes": 78603}, {"Title": "Jay and Silent Bob Strike Back", "US Gross": 30059386, "Worldwide Gross": 33762400, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Aug 24 2001", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "Miramax/Dimension", "Source": "Spin-Off", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6.8, "IMDB Votes": 62692}, {"Title": "Jesus' Son", "US Gross": 1282084, "Worldwide Gross": 1687548, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Jun 16 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 4620}, {"Title": "Being Julia", "US Gross": 7739049, "Worldwide Gross": 11039049, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Oct 15 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.1, "IMDB Votes": 7067}, {"Title": "Julie & Julia", "US Gross": 94125426, "Worldwide Gross": 126646119, "US DVD Sales": 40846498, "Production Budget": 40000000, "Release Date": "Aug 07 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Nora Ephron", "Rotten Tomatoes Rating": 75, "IMDB Rating": 7.2, "IMDB Votes": 22269}, {"Title": "Jumper", "US Gross": 80172128, "Worldwide Gross": 222117068, "US DVD Sales": 33679094, "Production Budget": 82500000, "Release Date": "Feb 14 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Doug Liman", "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.9, "IMDB Votes": 69161}, {"Title": "Junebug", "US Gross": 2678010, "Worldwide Gross": 2678010, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Aug 03 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.1, "IMDB Votes": 11457}, {"Title": "Juno", "US Gross": 143495265, "Worldwide Gross": 230327671, "US DVD Sales": 57612374, "Production Budget": 7000000, "Release Date": "Dec 05 2007", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jason Reitman", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.9, "IMDB Votes": 149855}, {"Title": "Jurassic Park 3", "US Gross": 181166115, "Worldwide Gross": 365900000, "US DVD Sales": null, "Production Budget": 93000000, "Release Date": "Jul 18 2001", "MPAA Rating": "PG-13", "Running Time min": 92, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Joe Johnston", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.9, "IMDB Votes": 151365}, {"Title": "Just Looking", "US Gross": 39852, "Worldwide Gross": 39852, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Oct 13 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Jason Alexander", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 949}, {"Title": "Just Married", "US Gross": 56127162, "Worldwide Gross": 56127162, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Jan 10 2003", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Shawn Levy", "Rotten Tomatoes Rating": 20, "IMDB Rating": 5.1, "IMDB Votes": 19508}, {"Title": "Juwanna Man", "US Gross": 13571817, "Worldwide Gross": 13771817, "US DVD Sales": null, "Production Budget": 15600000, "Release Date": "Jun 21 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.1, "IMDB Votes": 3062}, {"Title": "Freddy vs. Jason", "US Gross": 82622655, "Worldwide Gross": 114326122, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Aug 15 2003", "MPAA Rating": "R", "Running Time min": 97, "Distributor": "New Line", "Source": "Spin-Off", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Ronny Yu", "Rotten Tomatoes Rating": 41, "IMDB Rating": 5.8, "IMDB Votes": 39182}, {"Title": "K-19: The Widowmaker", "US Gross": 35168966, "Worldwide Gross": 65716126, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jul 19 2002", "MPAA Rating": "PG-13", "Running Time min": 138, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Kathryn Bigelow", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.5, "IMDB Votes": 22288}, {"Title": "Kate and Leopold", "US Gross": 47095453, "Worldwide Gross": 70937778, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Dec 25 2001", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Fantasy", "Director": "James Mangold", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 23600}, {"Title": "Kama Sutra", "US Gross": 4109095, "Worldwide Gross": 4109095, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Feb 28 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Trimark", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Mira Nair", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Kangaroo Jack", "US Gross": 66723216, "Worldwide Gross": 90723216, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jan 17 2003", "MPAA Rating": "PG", "Running Time min": 89, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.1, "IMDB Votes": 9994}, {"Title": "Kick-Ass", "US Gross": 48071303, "Worldwide Gross": 76252166, "US DVD Sales": 18666874, "Production Budget": 28000000, "Release Date": "Apr 16 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Matthew Vaughn", "Rotten Tomatoes Rating": 75, "IMDB Rating": 8.1, "IMDB Votes": 86990}, {"Title": "The Original Kings of Comedy", "US Gross": 38168022, "Worldwide Gross": 38236338, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 18 2000", "MPAA Rating": "R", "Running Time min": 116, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Concert/Performance", "Creative Type": "Factual", "Director": "Spike Lee", "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.2, "IMDB Votes": 3258}, {"Title": "Kiss of the Dragon", "US Gross": 36833473, "Worldwide Gross": 36833473, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jul 06 2001", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Chris Nahon", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.3, "IMDB Votes": 22087}, {"Title": "Kung Fu Hustle", "US Gross": 17104669, "Worldwide Gross": 101004669, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Apr 08 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Stephen Chow", "Rotten Tomatoes Rating": 89, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Karate Kid", "US Gross": 176591618, "Worldwide Gross": 350591618, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jun 11 2010", "MPAA Rating": "PG", "Running Time min": 140, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.1, "IMDB Votes": 20039}, {"Title": "The Kentucky Fried Movie", "US Gross": 15000000, "Worldwide Gross": 20000000, "US DVD Sales": null, "Production Budget": 600000, "Release Date": "Aug 10 1977", "MPAA Rating": null, "Running Time min": null, "Distributor": "United Film Distribution Co.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "John Landis", "Rotten Tomatoes Rating": 77, "IMDB Rating": 6.4, "IMDB Votes": 8342}, {"Title": "Kicking and Screaming", "US Gross": 52842724, "Worldwide Gross": 55842724, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "May 13 2005", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 3841}, {"Title": "Kill Bill: Volume 2", "US Gross": 66207920, "Worldwide Gross": 150907920, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Apr 16 2004", "MPAA Rating": "R", "Running Time min": 136, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Quentin Tarantino", "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 182834}, {"Title": "Kill Bill: Volume 1", "US Gross": 70098138, "Worldwide Gross": 180098138, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Oct 10 2003", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Quentin Tarantino", "Rotten Tomatoes Rating": 85, "IMDB Rating": 8.2, "IMDB Votes": 231761}, {"Title": "Kingdom Come", "US Gross": 23247539, "Worldwide Gross": 23393939, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Apr 11 2001", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "Fox Searchlight", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 28, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Kingdom of Heaven", "US Gross": 47398413, "Worldwide Gross": 211398413, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "May 06 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 39, "IMDB Rating": 7.1, "IMDB Votes": 83189}, {"Title": "Kinsey", "US Gross": 10214647, "Worldwide Gross": 13000959, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Nov 12 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Bill Condon", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.2, "IMDB Votes": 20135}, {"Title": "Kissing Jessica Stein", "US Gross": 7025722, "Worldwide Gross": 8915268, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Mar 13 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Play", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 8291}, {"Title": "Kiss the Girls", "US Gross": 60527873, "Worldwide Gross": 60527873, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Oct 03 1997", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": 6.4, "IMDB Votes": 20932}, {"Title": "King Kong", "US Gross": 218080025, "Worldwide Gross": 550517357, "US DVD Sales": 140752353, "Production Budget": 207000000, "Release Date": "Dec 14 2005", "MPAA Rating": "PG-13", "Running Time min": 187, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Peter Jackson", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.6, "IMDB Votes": 132720}, {"Title": "Knocked Up", "US Gross": 148761765, "Worldwide Gross": 218994109, "US DVD Sales": 117601397, "Production Budget": 27500000, "Release Date": "Jun 01 2007", "MPAA Rating": "R", "Running Time min": 132, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Judd Apatow", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.5, "IMDB Votes": 111192}, {"Title": "Knight and Day", "US Gross": 76373029, "Worldwide Gross": 228937227, "US DVD Sales": null, "Production Budget": 117000000, "Release Date": "Jun 23 2010", "MPAA Rating": "PG-13", "Running Time min": 109, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "James Mangold", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 13887}, {"Title": "The Kingdom", "US Gross": 47467250, "Worldwide Gross": 86509602, "US DVD Sales": 34065220, "Production Budget": 72500000, "Release Date": "Sep 28 2007", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Peter Berg", "Rotten Tomatoes Rating": 51, "IMDB Rating": 7.1, "IMDB Votes": 47200}, {"Title": "Black Knight", "US Gross": 33422806, "Worldwide Gross": 33422806, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 21 2001", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.3, "IMDB Votes": 12747}, {"Title": "Knockaround Guys", "US Gross": 11660180, "Worldwide Gross": 12419700, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 11 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 11019}, {"Title": "Knowing", "US Gross": 79957634, "Worldwide Gross": 187858642, "US DVD Sales": 23450931, "Production Budget": 50000000, "Release Date": "Mar 20 2009", "MPAA Rating": "PG-13", "Running Time min": 121, "Distributor": "Summit Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Alex Proyas", "Rotten Tomatoes Rating": 32, "IMDB Rating": 6.4, "IMDB Votes": 58138}, {"Title": "Knock Off", "US Gross": 10319915, "Worldwide Gross": 10319915, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 04 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.1, "IMDB Votes": 5852}, {"Title": "K-PAX", "US Gross": 50315140, "Worldwide Gross": 50315140, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Oct 26 2001", "MPAA Rating": "PG-13", "Running Time min": 121, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Iain Softley", "Rotten Tomatoes Rating": 40, "IMDB Rating": 7.3, "IMDB Votes": 50475}, {"Title": "Christmas with the Kranks", "US Gross": 73701902, "Worldwide Gross": 96501902, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Nov 24 2004", "MPAA Rating": "PG", "Running Time min": 98, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 4.7, "IMDB Votes": 9126}, {"Title": "King's Ransom", "US Gross": 4008527, "Worldwide Gross": 4049527, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 22 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jeffrey W. Byrd", "Rotten Tomatoes Rating": 2, "IMDB Rating": 3.5, "IMDB Votes": 2251}, {"Title": "Kiss Kiss, Bang Bang", "US Gross": 4235837, "Worldwide Gross": 13105837, "US DVD Sales": 6863163, "Production Budget": 15000000, "Release Date": "Oct 21 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "A Knight's Tale", "US Gross": 56083966, "Worldwide Gross": 56083966, "US DVD Sales": null, "Production Budget": 41000000, "Release Date": "May 11 2001", "MPAA Rating": "PG-13", "Running Time min": 132, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.6, "IMDB Votes": 47609}, {"Title": "The Kite Runner", "US Gross": 15800078, "Worldwide Gross": 73222245, "US DVD Sales": 6563936, "Production Budget": 20000000, "Release Date": "Dec 14 2007", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Paramount Vantage", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Marc Forster", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.8, "IMDB Votes": 26816}, {"Title": "Kundun", "US Gross": 5686694, "Worldwide Gross": 5686694, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Dec 25 1997", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7, "IMDB Votes": 10248}, {"Title": "Kung Pow: Enter the Fist", "US Gross": 16033556, "Worldwide Gross": 16033556, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jan 25 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steve Oedekerk", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 19348}, {"Title": "L.A. Confidential", "US Gross": 64604977, "Worldwide Gross": 110604977, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 19 1997", "MPAA Rating": "R", "Running Time min": 137, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Curtis Hanson", "Rotten Tomatoes Rating": 99, "IMDB Rating": 8.4, "IMDB Votes": 165161}, {"Title": "Law Abiding Citizen", "US Gross": 73357727, "Worldwide Gross": 113190972, "US DVD Sales": 20038881, "Production Budget": 53000000, "Release Date": "Oct 16 2009", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Overture Films", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "F. Gary Gray", "Rotten Tomatoes Rating": 25, "IMDB Rating": 7.2, "IMDB Votes": 45577}, {"Title": "Ladder 49", "US Gross": 74541707, "Worldwide Gross": 102332848, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Oct 01 2004", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Jay Russell", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.5, "IMDB Votes": 23369}, {"Title": "The Ladykillers", "US Gross": 39692139, "Worldwide Gross": 77692139, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Mar 26 2004", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Joel Coen", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.2, "IMDB Votes": 39242}, {"Title": "Lady in the Water", "US Gross": 42285169, "Worldwide Gross": 72785169, "US DVD Sales": 12440849, "Production Budget": 75000000, "Release Date": "Jul 21 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "M. Night Shyamalan", "Rotten Tomatoes Rating": 24, "IMDB Rating": 5.8, "IMDB Votes": 47535}, {"Title": "The Lake House", "US Gross": 52330111, "Worldwide Gross": 114830111, "US DVD Sales": 39758509, "Production Budget": 40000000, "Release Date": "Jun 16 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 6.8, "IMDB Votes": 36613}, {"Title": "Lakeview Terrace", "US Gross": 39263506, "Worldwide Gross": 44263506, "US DVD Sales": 21455006, "Production Budget": 20000000, "Release Date": "Sep 19 2008", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Neil LaBute", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.3, "IMDB Votes": 18547}, {"Title": "The Ladies Man", "US Gross": 13592872, "Worldwide Gross": 13719474, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Oct 13 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 4.7, "IMDB Votes": 6556}, {"Title": "Land of the Lost", "US Gross": 49438370, "Worldwide Gross": 69548641, "US DVD Sales": 18953806, "Production Budget": 100000000, "Release Date": "Jun 05 2009", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Brad Silberling", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.3, "IMDB Votes": 16830}, {"Title": "Changing Lanes", "US Gross": 66790248, "Worldwide Gross": 66790248, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Apr 12 2002", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 77, "IMDB Rating": 6.5, "IMDB Votes": 29222}, {"Title": "Lars and the Real Girl", "US Gross": 5956480, "Worldwide Gross": 10553442, "US DVD Sales": 2560922, "Production Budget": 12500000, "Release Date": "Oct 12 2007", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.5, "IMDB Votes": 32423}, {"Title": "L'auberge espagnole", "US Gross": 3895664, "Worldwide Gross": 3895664, "US DVD Sales": null, "Production Budget": 5900000, "Release Date": "May 16 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 15696}, {"Title": "Laws of Attraction", "US Gross": 17848322, "Worldwide Gross": 29948322, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Apr 30 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 18, "IMDB Rating": 5.7, "IMDB Votes": 9266}, {"Title": "Little Black Book", "US Gross": 20422207, "Worldwide Gross": 21758371, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 06 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.2, "IMDB Votes": 7625}, {"Title": "Layer Cake", "US Gross": 2339957, "Worldwide Gross": 11850214, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "May 13 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Matthew Vaughn", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 39857}, {"Title": "Larry the Cable Guy: Health Inspector", "US Gross": 15680099, "Worldwide Gross": 15680099, "US DVD Sales": 13180936, "Production Budget": 17000000, "Release Date": "Mar 24 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 6, "IMDB Rating": 2.8, "IMDB Votes": 7547}, {"Title": "Little Children", "US Gross": 5463019, "Worldwide Gross": 14763019, "US DVD Sales": 3657245, "Production Budget": 14000000, "Release Date": "Oct 06 2006", "MPAA Rating": "R", "Running Time min": 136, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Todd Field", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.8, "IMDB Votes": 37162}, {"Title": "Save the Last Dance", "US Gross": 91038276, "Worldwide Gross": 131638276, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Jan 12 2001", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 53, "IMDB Rating": 5.9, "IMDB Votes": 20355}, {"Title": "George A. Romero's Land of the Dead", "US Gross": 20700082, "Worldwide Gross": 45900082, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jun 24 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "George A. Romero", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Left Behind", "US Gross": 4221341, "Worldwide Gross": 4221341, "US DVD Sales": null, "Production Budget": 18500000, "Release Date": "Feb 02 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Cloud Ten Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 43}, {"Title": "Legion", "US Gross": 40122938, "Worldwide Gross": 64622938, "US DVD Sales": 16715657, "Production Budget": 26000000, "Release Date": "Jan 22 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 5, "IMDB Votes": 19962}, {"Title": "I am Legend", "US Gross": 256393010, "Worldwide Gross": 585055701, "US DVD Sales": 129742540, "Production Budget": 150000000, "Release Date": "Dec 14 2007", "MPAA Rating": "PG-13", "Running Time min": 100, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Francis Lawrence", "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.1, "IMDB Votes": 153631}, {"Title": "Leatherheads", "US Gross": 31373938, "Worldwide Gross": 40830862, "US DVD Sales": 8871266, "Production Budget": 58000000, "Release Date": "Apr 04 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Historical Fiction", "Director": "George Clooney", "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.1, "IMDB Votes": 14504}, {"Title": "Life Before Her Eyes", "US Gross": 303439, "Worldwide Gross": 303439, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Apr 18 2008", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "Magnolia Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Letters from Iwo Jima", "US Gross": 13756082, "Worldwide Gross": 68756082, "US DVD Sales": 13625847, "Production Budget": 13000000, "Release Date": "Dec 20 2006", "MPAA Rating": "R", "Running Time min": 141, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.1, "IMDB Votes": 56872}, {"Title": "Life, or Something Like It", "US Gross": 14448589, "Worldwide Gross": 14448589, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Apr 26 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Stephen Herek", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Last Holiday", "US Gross": 38399961, "Worldwide Gross": 43343247, "US DVD Sales": 29881643, "Production Budget": 45000000, "Release Date": "Jan 13 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Wayne Wang", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.3, "IMDB Votes": 8060}, {"Title": "The Hurricane", "US Gross": 50699241, "Worldwide Gross": 73956241, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Dec 29 1999", "MPAA Rating": "R", "Running Time min": 125, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Norman Jewison", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.4, "IMDB Votes": 32172}, {"Title": "Liar Liar", "US Gross": 181410615, "Worldwide Gross": 302710615, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Mar 21 1997", "MPAA Rating": "PG-13", "Running Time min": 87, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tom Shadyac", "Rotten Tomatoes Rating": 82, "IMDB Rating": 6.7, "IMDB Votes": 67798}, {"Title": "Equilibrium", "US Gross": 1190018, "Worldwide Gross": 5345869, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 06 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 37, "IMDB Rating": 7.7, "IMDB Votes": 86428}, {"Title": "Chasing Liberty", "US Gross": 12189514, "Worldwide Gross": 12291975, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Jan 09 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.8, "IMDB Votes": 7855}, {"Title": "The Libertine", "US Gross": 4835065, "Worldwide Gross": 9448623, "US DVD Sales": 2836487, "Production Budget": 22000000, "Release Date": "Nov 23 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 16266}, {"Title": "L.I.E.", "US Gross": 1138836, "Worldwide Gross": 1138836, "US DVD Sales": null, "Production Budget": 700000, "Release Date": "Sep 07 2001", "MPAA Rating": "Open", "Running Time min": null, "Distributor": "Lot 47 Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.2, "IMDB Votes": 5122}, {"Title": "The Life Aquatic with Steve Zissou", "US Gross": 24006726, "Worldwide Gross": 34806726, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Dec 10 2004", "MPAA Rating": "R", "Running Time min": 118, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Wes Anderson", "Rotten Tomatoes Rating": 53, "IMDB Rating": 7.2, "IMDB Votes": 57889}, {"Title": "The Life of David Gale", "US Gross": 19694635, "Worldwide Gross": 28920188, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 21 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Alan Parker", "Rotten Tomatoes Rating": 20, "IMDB Rating": 7.3, "IMDB Votes": 37628}, {"Title": "Life", "US Gross": 64062587, "Worldwide Gross": 73521587, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Apr 16 1999", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ted Demme", "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.3, "IMDB Votes": 99}, {"Title": "Like Mike", "US Gross": 51432423, "Worldwide Gross": 62432423, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jul 03 2002", "MPAA Rating": "PG", "Running Time min": 99, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "John Schultz", "Rotten Tomatoes Rating": 56, "IMDB Rating": 4.4, "IMDB Votes": 4870}, {"Title": "Lilo & Stitch", "US Gross": 145771527, "Worldwide Gross": 245800000, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 21 2002", "MPAA Rating": "PG", "Running Time min": 85, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 25611}, {"Title": "Limbo", "US Gross": 2016687, "Worldwide Gross": 2016687, "US DVD Sales": null, "Production Budget": 8300000, "Release Date": "Jun 04 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Sayles", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 3855}, {"Title": "Light It Up", "US Gross": 5871603, "Worldwide Gross": 5871603, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Nov 10 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.4, "IMDB Votes": 2257}, {"Title": "Living Out Loud", "US Gross": 12905901, "Worldwide Gross": 12905901, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Oct 30 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Richard LaGravenese", "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.5, "IMDB Votes": 3040}, {"Title": "The Lizzie McGuire Movie", "US Gross": 42734455, "Worldwide Gross": 55534455, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "May 02 2003", "MPAA Rating": "PG", "Running Time min": 94, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 4.7, "IMDB Votes": 10199}, {"Title": "Letters to Juliet", "US Gross": 53032453, "Worldwide Gross": 68332453, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "May 14 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Summit Entertainment", "Source": "Based on Factual Book/Article", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.3, "IMDB Votes": 4576}, {"Title": "Lucky Break", "US Gross": 54606, "Worldwide Gross": 54606, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Apr 05 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Peter Cattaneo", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 1482}, {"Title": "The Last King of Scotland", "US Gross": 17606684, "Worldwide Gross": 48363516, "US DVD Sales": 16836991, "Production Budget": 6000000, "Release Date": "Sep 27 2006", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Kevin MacDonald", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.8, "IMDB Votes": 54022}, {"Title": "Lolita", "US Gross": 1147784, "Worldwide Gross": 1147784, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jul 22 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Adrian Lyne", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 15197}, {"Title": "Love Lisa", "US Gross": 211724, "Worldwide Gross": 211724, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Dec 30 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 4126}, {"Title": "Little Miss Sunshine", "US Gross": 59891098, "Worldwide Gross": 100523181, "US DVD Sales": 55501748, "Production Budget": 8000000, "Release Date": "Jul 26 2006", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 91, "IMDB Rating": 8, "IMDB Votes": 151013}, {"Title": "In the Land of Women", "US Gross": 11052958, "Worldwide Gross": 14140402, "US DVD Sales": 9876018, "Production Budget": 10500000, "Release Date": "Apr 20 2007", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.7, "IMDB Votes": 13550}, {"Title": "Lions for Lambs", "US Gross": 14998070, "Worldwide Gross": 63211088, "US DVD Sales": 9203604, "Production Budget": 35000000, "Release Date": "Nov 09 2007", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "United Artists", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Robert Redford", "Rotten Tomatoes Rating": 27, "IMDB Rating": 6.2, "IMDB Votes": 22264}, {"Title": "London", "US Gross": 12667, "Worldwide Gross": 12667, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Feb 10 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IDP/Goldwyn/Roadside", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 181}, {"Title": "How to Lose a Guy in 10 Days", "US Gross": 105807520, "Worldwide Gross": 177079973, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 07 2003", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Donald Petrie", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.1, "IMDB Votes": 33866}, {"Title": "Loser", "US Gross": 15464026, "Worldwide Gross": 18250106, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jul 21 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Amy Heckerling", "Rotten Tomatoes Rating": 25, "IMDB Rating": 5, "IMDB Votes": 12877}, {"Title": "The Losers", "US Gross": 23591432, "Worldwide Gross": 23591432, "US DVD Sales": 7360965, "Production Budget": 25000000, "Release Date": "Apr 23 2010", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Sylvain White", "Rotten Tomatoes Rating": 48, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Lost City", "US Gross": 2484186, "Worldwide Gross": 3650302, "US DVD Sales": null, "Production Budget": 9600000, "Release Date": "Apr 28 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Andy Garcia", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 5790}, {"Title": "Lost In Space", "US Gross": 69117629, "Worldwide Gross": 136117629, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Apr 03 1998", "MPAA Rating": "PG-13", "Running Time min": 131, "Distributor": "New Line", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Stephen Hopkins", "Rotten Tomatoes Rating": 26, "IMDB Rating": 4.8, "IMDB Votes": 31611}, {"Title": "Lost and Found", "US Gross": 6552255, "Worldwide Gross": 6552255, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Apr 23 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.8, "IMDB Votes": 118}, {"Title": "Lottery Ticket", "US Gross": 23602581, "Worldwide Gross": 23602581, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Aug 20 2010", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Love and Basketball", "US Gross": 27441122, "Worldwide Gross": 27709625, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 21 2000", "MPAA Rating": "PG-13", "Running Time min": 125, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Gina Prince-Bythewood", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.7, "IMDB Votes": 5835}, {"Title": "Love Jones", "US Gross": 12554569, "Worldwide Gross": 12554569, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Mar 14 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.7, "IMDB Votes": 1165}, {"Title": "The Love Letter", "US Gross": 8322608, "Worldwide Gross": 8322608, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "May 21 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.1, "IMDB Votes": 2446}, {"Title": "Lovely and Amazing", "US Gross": 4210379, "Worldwide Gross": 4695781, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Jun 28 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 3936}, {"Title": "The Lord of the Rings: The Two Towers", "US Gross": 341784377, "Worldwide Gross": 926284377, "US DVD Sales": null, "Production Budget": 94000000, "Release Date": "Dec 18 2002", "MPAA Rating": "PG-13", "Running Time min": 179, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Peter Jackson", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.7, "IMDB Votes": 326950}, {"Title": "The Lord of the Rings: The Return of the King", "US Gross": 377027325, "Worldwide Gross": 1133027325, "US DVD Sales": null, "Production Budget": 94000000, "Release Date": "Dec 17 2003", "MPAA Rating": "PG-13", "Running Time min": 201, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Peter Jackson", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.8, "IMDB Votes": 364077}, {"Title": "The Lord of the Rings: The Fellowship of the Ring", "US Gross": 314776170, "Worldwide Gross": 868621686, "US DVD Sales": null, "Production Budget": 109000000, "Release Date": "Dec 19 2001", "MPAA Rating": "PG-13", "Running Time min": 178, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Peter Jackson", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.8, "IMDB Votes": 387438}, {"Title": "Lord of War", "US Gross": 24149632, "Worldwide Gross": 62142629, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Sep 16 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Andrew Niccol", "Rotten Tomatoes Rating": 61, "IMDB Rating": 7.7, "IMDB Votes": 80124}, {"Title": "Lock, Stock and Two Smoking Barrels", "US Gross": 3897569, "Worldwide Gross": 25297569, "US DVD Sales": null, "Production Budget": 1350000, "Release Date": "Mar 05 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gramercy", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Guy Ritchie", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Last Shot", "US Gross": 463730, "Worldwide Gross": 463730, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Sep 24 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Comedy", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 5.7, "IMDB Votes": 2711}, {"Title": "Lonesome Jim", "US Gross": 154187, "Worldwide Gross": 154187, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Mar 24 2006", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steve Buscemi", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 4585}, {"Title": "The Last Legion", "US Gross": 5932060, "Worldwide Gross": 21439015, "US DVD Sales": null, "Production Budget": 67000000, "Release Date": "Aug 17 2007", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Weinstein/Dimension", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.4, "IMDB Votes": 12250}, {"Title": "The Last Samurai", "US Gross": 111110575, "Worldwide Gross": 456810575, "US DVD Sales": null, "Production Budget": 120000000, "Release Date": "Dec 05 2003", "MPAA Rating": "R", "Running Time min": 154, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Edward Zwick", "Rotten Tomatoes Rating": 65, "IMDB Rating": 7.8, "IMDB Votes": 106002}, {"Title": "The Last Sin Eater", "US Gross": 388390, "Worldwide Gross": 388390, "US DVD Sales": null, "Production Budget": 2200000, "Release Date": "Feb 09 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.7, "IMDB Votes": 1012}, {"Title": "The Last Song", "US Gross": 62950384, "Worldwide Gross": 75850384, "US DVD Sales": 20035017, "Production Budget": 20000000, "Release Date": "Mar 31 2010", "MPAA Rating": "PG", "Running Time min": 108, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 3.9, "IMDB Votes": 7210}, {"Title": "Love Stinks", "US Gross": 2793776, "Worldwide Gross": 2793776, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Sep 10 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Independent Artists", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.3, "IMDB Votes": 3228}, {"Title": "Lost in Translation", "US Gross": 44585453, "Worldwide Gross": 106454000, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Sep 12 2003", "MPAA Rating": "R", "Running Time min": 102, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sofia Coppola", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.9, "IMDB Votes": 130998}, {"Title": "Last Orders", "US Gross": 2326407, "Worldwide Gross": 2326407, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Feb 15 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Fred Schepisi", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 3463}, {"Title": "Lost Souls", "US Gross": 16779636, "Worldwide Gross": 31320293, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Oct 13 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 7, "IMDB Rating": 4.5, "IMDB Votes": 6639}, {"Title": "The Last Station", "US Gross": 6616974, "Worldwide Gross": 6616974, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jan 15 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 3465}, {"Title": "The Lost World: Jurassic Park", "US Gross": 229086679, "Worldwide Gross": 786686679, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "May 22 1997", "MPAA Rating": "PG-13", "Running Time min": 134, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 77124}, {"Title": "License to Wed", "US Gross": 43799818, "Worldwide Gross": 70799818, "US DVD Sales": 22782913, "Production Budget": 35000000, "Release Date": "Jul 03 2007", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ken Kwapis", "Rotten Tomatoes Rating": 7, "IMDB Rating": 5.1, "IMDB Votes": 15422}, {"Title": "Looney Tunes: Back in Action", "US Gross": 20950820, "Worldwide Gross": 54540662, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Nov 14 2003", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Short Film", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Joe Dante", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6, "IMDB Votes": 8604}, {"Title": "Letters to God", "US Gross": 2848587, "Worldwide Gross": 2848587, "US DVD Sales": 3346596, "Production Budget": 3000000, "Release Date": "Apr 09 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Vivendi Entertainment", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.4, "IMDB Votes": 839}, {"Title": "Lethal Weapon 4", "US Gross": 130444603, "Worldwide Gross": 285400000, "US DVD Sales": null, "Production Budget": 140000000, "Release Date": "Jul 10 1998", "MPAA Rating": "R", "Running Time min": 127, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Richard Donner", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.4, "IMDB Votes": 47846}, {"Title": "Little Man", "US Gross": 58636047, "Worldwide Gross": 101636047, "US DVD Sales": 32799301, "Production Budget": 64000000, "Release Date": "Jul 14 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Keenen Ivory Wayans", "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.7, "IMDB Votes": 97}, {"Title": "The Lucky Ones", "US Gross": 266967, "Worldwide Gross": 266967, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Sep 26 2008", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 7.1, "IMDB Votes": 4719}, {"Title": "Lucky You", "US Gross": 5755286, "Worldwide Gross": 6521829, "US DVD Sales": 853973, "Production Budget": 55000000, "Release Date": "May 04 2007", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Curtis Hanson", "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.9, "IMDB Votes": 9870}, {"Title": "Luminarias", "US Gross": 428535, "Worldwide Gross": 428535, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "May 05 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.3, "IMDB Votes": 467}, {"Title": "Se jie", "US Gross": 4604982, "Worldwide Gross": 65696051, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Sep 28 2007", "MPAA Rating": "NC-17", "Running Time min": 156, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Ang Lee", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 15440}, {"Title": "Luther", "US Gross": 5781086, "Worldwide Gross": 29465190, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 26 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "RS Entertainment", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.8, "IMDB Votes": 5909}, {"Title": "Love Actually", "US Gross": 59472278, "Worldwide Gross": 247967903, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Nov 07 2003", "MPAA Rating": "R", "Running Time min": 135, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 7.9, "IMDB Votes": 97921}, {"Title": "The Little Vampire", "US Gross": 13555988, "Worldwide Gross": 13555988, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Oct 27 2000", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 53, "IMDB Rating": 5.3, "IMDB Votes": 2202}, {"Title": "The Lovely Bones", "US Gross": 44028238, "Worldwide Gross": 94702568, "US DVD Sales": 8474087, "Production Budget": 65000000, "Release Date": "Dec 11 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Peter Jackson", "Rotten Tomatoes Rating": 32, "IMDB Rating": 6.6, "IMDB Votes": 32049}, {"Title": "Herbie: Fully Loaded", "US Gross": 66010682, "Worldwide Gross": 144110682, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 22 2005", "MPAA Rating": "G", "Running Time min": 95, "Distributor": "Walt Disney Pictures", "Source": null, "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Angela Robinson", "Rotten Tomatoes Rating": 42, "IMDB Rating": 4.7, "IMDB Votes": 14178}, {"Title": "For Love of the Game", "US Gross": 35188640, "Worldwide Gross": 46112640, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Sep 17 1999", "MPAA Rating": "PG-13", "Running Time min": 137, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sam Raimi", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.2, "IMDB Votes": 13612}, {"Title": "Leaves of Grass", "US Gross": 20987, "Worldwide Gross": 20987, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Apr 02 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tim Blake Nelson", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.9, "IMDB Votes": 4541}, {"Title": "Love Happens", "US Gross": 22965110, "Worldwide Gross": 30206355, "US DVD Sales": 7174988, "Production Budget": 18000000, "Release Date": "Sep 18 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.5, "IMDB Votes": 6111}, {"Title": "Just Visiting", "US Gross": 4777007, "Worldwide Gross": 16172200, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Apr 06 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.6, "IMDB Votes": 6923}, {"Title": "Das Leben der Anderen", "US Gross": 11284657, "Worldwide Gross": 75284657, "US DVD Sales": 4225830, "Production Budget": 2000000, "Release Date": "Feb 09 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8.5, "IMDB Votes": 75070}, {"Title": "Love Ranch", "US Gross": 134904, "Worldwide Gross": 134904, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jun 30 2010", "MPAA Rating": "R", "Running Time min": 117, "Distributor": null, "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Taylor Hackford", "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.6, "IMDB Votes": 163}, {"Title": "La MÙme", "US Gross": 10299782, "Worldwide Gross": 83499782, "US DVD Sales": null, "Production Budget": 15500000, "Release Date": "Jun 08 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Picturehouse", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 21412}, {"Title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", "US Gross": 291710957, "Worldwide Gross": 748806957, "US DVD Sales": 352582053, "Production Budget": 180000000, "Release Date": "Dec 09 2005", "MPAA Rating": "PG", "Running Time min": 140, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Andrew Adamson", "Rotten Tomatoes Rating": 76, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Longest Yard", "US Gross": 158119460, "Worldwide Gross": 190320568, "US DVD Sales": null, "Production Budget": 82000000, "Release Date": "May 27 2005", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Segal", "Rotten Tomatoes Rating": 31, "IMDB Rating": 6.2, "IMDB Votes": 39752}, {"Title": "Mad City", "US Gross": 10561038, "Worldwide Gross": 10561038, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Nov 07 1997", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Costa-Gavras", "Rotten Tomatoes Rating": 37, "IMDB Rating": 6.1, "IMDB Votes": 9611}, {"Title": "Made", "US Gross": 5308707, "Worldwide Gross": 5476060, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jul 13 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.3, "IMDB Votes": 9720}, {"Title": "Madagascar: Escape 2 Africa", "US Gross": 180010950, "Worldwide Gross": 599516844, "US DVD Sales": 108725804, "Production Budget": 150000000, "Release Date": "Nov 07 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Eric Darnell", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.8, "IMDB Votes": 30285}, {"Title": "Madagascar", "US Gross": 193595521, "Worldwide Gross": 532680671, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "May 27 2005", "MPAA Rating": "PG", "Running Time min": 83, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Eric Darnell", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.6, "IMDB Votes": 56480}, {"Title": "Mad Hot Ballroom", "US Gross": 8117961, "Worldwide Gross": 9079042, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "May 13 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.4, "IMDB Votes": 2562}, {"Title": "Madison", "US Gross": 517262, "Worldwide Gross": 517262, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Apr 22 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 536}, {"Title": "Jane Austen's Mafia", "US Gross": 19843795, "Worldwide Gross": 30143795, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jul 24 1998", "MPAA Rating": "PG-13", "Running Time min": 83, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jim Abrahams", "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 7706}, {"Title": "Paul Blart: Mall Cop", "US Gross": 146336178, "Worldwide Gross": 180449670, "US DVD Sales": 53105030, "Production Budget": 26000000, "Release Date": "Jan 16 2009", "MPAA Rating": "PG", "Running Time min": 91, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steve Carr", "Rotten Tomatoes Rating": 35, "IMDB Rating": 5.3, "IMDB Votes": 23753}, {"Title": "A Man Apart", "US Gross": 26500000, "Worldwide Gross": 44114828, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Apr 04 2003", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "F. Gary Gray", "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.7, "IMDB Votes": 14953}, {"Title": "Man on Fire", "US Gross": 77906816, "Worldwide Gross": 118706816, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Apr 23 2004", "MPAA Rating": "R", "Running Time min": 146, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 38, "IMDB Rating": 7.7, "IMDB Votes": 75256}, {"Title": "Man of the House", "US Gross": 19699706, "Worldwide Gross": 22099706, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 25 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Stephen Herek", "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.2, "IMDB Votes": 3432}, {"Title": "Man on the Moon", "US Gross": 34580635, "Worldwide Gross": 47407635, "US DVD Sales": null, "Production Budget": 52000000, "Release Date": "Dec 22 1999", "MPAA Rating": "R", "Running Time min": 118, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Milos Forman", "Rotten Tomatoes Rating": 62, "IMDB Rating": 7.4, "IMDB Votes": 49481}, {"Title": "The Man Who Knew Too Little", "US Gross": 13801755, "Worldwide Gross": 13801755, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Nov 14 1997", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jon Amiel", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.3, "IMDB Votes": 11307}, {"Title": "Marci X", "US Gross": 1646664, "Worldwide Gross": 1646664, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Aug 22 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Richard Benjamin", "Rotten Tomatoes Rating": 10, "IMDB Rating": 2.4, "IMDB Votes": 3449}, {"Title": "Married Life", "US Gross": 1506998, "Worldwide Gross": 1506998, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Mar 07 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 4358}, {"Title": "The Marine", "US Gross": 18844784, "Worldwide Gross": 22165608, "US DVD Sales": 26786370, "Production Budget": 15000000, "Release Date": "Oct 13 2006", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 4.5, "IMDB Votes": 13157}, {"Title": "Son of the Mask", "US Gross": 17018422, "Worldwide Gross": 59918422, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Feb 18 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 6, "IMDB Rating": 2, "IMDB Votes": 15800}, {"Title": "The Matador", "US Gross": 12578537, "Worldwide Gross": 17290120, "US DVD Sales": 5309636, "Production Budget": 10000000, "Release Date": "Dec 30 2005", "MPAA Rating": "R", "Running Time min": 74, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 76, "IMDB Rating": 6.9, "IMDB Votes": 25035}, {"Title": "The Matrix", "US Gross": 171479930, "Worldwide Gross": 460279930, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Mar 31 1999", "MPAA Rating": "R", "Running Time min": 136, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Andy Wachowski", "Rotten Tomatoes Rating": 86, "IMDB Rating": 8.7, "IMDB Votes": 380934}, {"Title": "Max Keeble's Big Move", "US Gross": 17292381, "Worldwide Gross": 17292381, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Oct 05 2001", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Tim Hill", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.1, "IMDB Votes": 2490}, {"Title": "May", "US Gross": 145540, "Worldwide Gross": 145540, "US DVD Sales": null, "Production Budget": 1750000, "Release Date": "Feb 07 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 41}, {"Title": "Murderball", "US Gross": 1531154, "Worldwide Gross": 1722277, "US DVD Sales": null, "Production Budget": 350000, "Release Date": "Jul 08 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 98, "IMDB Rating": 7.8, "IMDB Votes": 5699}, {"Title": "Vicky Cristina Barcelona", "US Gross": 23213577, "Worldwide Gross": 77213577, "US DVD Sales": 8276490, "Production Budget": 16000000, "Release Date": "Aug 15 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.4, "IMDB Votes": 51760}, {"Title": "My Big Fat Greek Wedding", "US Gross": 241438208, "Worldwide Gross": 368744044, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Apr 19 2002", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "IFC Films", "Source": "Based on Play", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Joel Zwick", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.6, "IMDB Votes": 46548}, {"Title": "My Best Friend's Girl", "US Gross": 19219250, "Worldwide Gross": 34787111, "US DVD Sales": 18449619, "Production Budget": 20000000, "Release Date": "Sep 19 2008", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Howard Deutch", "Rotten Tomatoes Rating": 15, "IMDB Rating": 5.8, "IMDB Votes": 14617}, {"Title": "Monkeybone", "US Gross": 5409517, "Worldwide Gross": 5409517, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Feb 23 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 4.5, "IMDB Votes": 8211}, {"Title": "Meet the Browns", "US Gross": 41975388, "Worldwide Gross": 41975388, "US DVD Sales": 18271961, "Production Budget": 20000000, "Release Date": "Mar 21 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tyler Perry", "Rotten Tomatoes Rating": 30, "IMDB Rating": 3.1, "IMDB Votes": 3362}, {"Title": "My Bloody Valentine", "US Gross": 51545952, "Worldwide Gross": 98817028, "US DVD Sales": 20831900, "Production Budget": 14000000, "Release Date": "Jan 16 2009", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Lionsgate", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 18037}, {"Title": "Wu ji", "US Gross": 669625, "Worldwide Gross": 35869934, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "May 05 2006", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Warner Independent", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 5733}, {"Title": "McHale's Navy", "US Gross": 4408420, "Worldwide Gross": 4408420, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Apr 18 1997", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 3, "IMDB Rating": 3.9, "IMDB Votes": 3466}, {"Title": "The Martian Child", "US Gross": 7500310, "Worldwide Gross": 9076823, "US DVD Sales": 7705880, "Production Budget": 27000000, "Release Date": "Nov 02 2007", "MPAA Rating": "PG", "Running Time min": 107, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Manchurian Candidate", "US Gross": 65948711, "Worldwide Gross": 96148711, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jul 30 2004", "MPAA Rating": "R", "Running Time min": 129, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "Jonathan Demme", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.7, "IMDB Votes": 36553}, {"Title": "Mickey Blue Eyes", "US Gross": 33864342, "Worldwide Gross": 53864342, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 20 1999", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 5.7, "IMDB Votes": 16646}, {"Title": "Michael Clayton", "US Gross": 49033882, "Worldwide Gross": 92987651, "US DVD Sales": 18802372, "Production Budget": 21500000, "Release Date": "Oct 05 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Tony Gilroy", "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.5, "IMDB Votes": 59493}, {"Title": "Master and Commander: The Far Side of the World", "US Gross": 93926386, "Worldwide Gross": 209486484, "US DVD Sales": null, "Production Budget": 135000000, "Release Date": "Nov 14 2003", "MPAA Rating": "PG-13", "Running Time min": 138, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Peter Weir", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.5, "IMDB Votes": 63632}, {"Title": "Nanny McPhee and the Big Bang", "US Gross": 27776620, "Worldwide Gross": 90676620, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Aug 20 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 2326}, {"Title": "Nanny McPhee", "US Gross": 47279279, "Worldwide Gross": 122540909, "US DVD Sales": 42041450, "Production Budget": 25000000, "Release Date": "Jan 27 2006", "MPAA Rating": "PG", "Running Time min": 91, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.7, "IMDB Votes": 13391}, {"Title": "Mean Creek", "US Gross": 603951, "Worldwide Gross": 967749, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Aug 20 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 14472}, {"Title": "The Medallion", "US Gross": 22108977, "Worldwide Gross": 22108977, "US DVD Sales": null, "Production Budget": 41000000, "Release Date": "Aug 22 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 18, "IMDB Rating": 4.7, "IMDB Votes": 10121}, {"Title": "Meet Dave", "US Gross": 11803254, "Worldwide Gross": 50648806, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jul 11 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Brian Robbins", "Rotten Tomatoes Rating": 19, "IMDB Rating": 4.8, "IMDB Votes": 13381}, {"Title": "Million Dollar Baby", "US Gross": 100492203, "Worldwide Gross": 216763646, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 15 2004", "MPAA Rating": "PG-13", "Running Time min": 132, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.2, "IMDB Votes": 141212}, {"Title": "Madea Goes To Jail", "US Gross": 90508336, "Worldwide Gross": 90508336, "US DVD Sales": 27100919, "Production Budget": 17500000, "Release Date": "Feb 20 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tyler Perry", "Rotten Tomatoes Rating": 26, "IMDB Rating": 3.1, "IMDB Votes": 5468}, {"Title": "Made of Honor", "US Gross": 46012734, "Worldwide Gross": 105508112, "US DVD Sales": 14330761, "Production Budget": 40000000, "Release Date": "May 02 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Paul Weiland", "Rotten Tomatoes Rating": 14, "IMDB Rating": 5.5, "IMDB Votes": 15260}, {"Title": "Mean Girls", "US Gross": 86047227, "Worldwide Gross": 128947227, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Apr 30 2004", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mark Waters", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7, "IMDB Votes": 63607}, {"Title": "Mean Machine", "US Gross": 92723, "Worldwide Gross": 92723, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Feb 22 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 12754}, {"Title": "Meet the Deedles", "US Gross": 4356126, "Worldwide Gross": 4356126, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Mar 27 1998", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 4, "IMDB Rating": 3.4, "IMDB Votes": 1379}, {"Title": "Me, Myself & Irene", "US Gross": 90570999, "Worldwide Gross": 149270999, "US DVD Sales": null, "Production Budget": 51000000, "Release Date": "Jun 23 2000", "MPAA Rating": "R", "Running Time min": 116, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Bobby Farrelly", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.9, "IMDB Votes": 215}, {"Title": "Memoirs of a Geisha", "US Gross": 57010853, "Worldwide Gross": 161510853, "US DVD Sales": 32837435, "Production Budget": 85000000, "Release Date": "Dec 09 2005", "MPAA Rating": "PG-13", "Running Time min": 145, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Rob Marshall", "Rotten Tomatoes Rating": 36, "IMDB Rating": 7.1, "IMDB Votes": 38695}, {"Title": "Men in Black", "US Gross": 250690539, "Worldwide Gross": 587790539, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jul 01 1997", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Barry Sonnenfeld", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7, "IMDB Votes": 119704}, {"Title": "Men of Honor", "US Gross": 48814909, "Worldwide Gross": 82339483, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Nov 10 2000", "MPAA Rating": "R", "Running Time min": 128, "Distributor": "20th Century Fox", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.8, "IMDB Votes": 30630}, {"Title": "Memento", "US Gross": 25544867, "Worldwide Gross": 39665950, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Mar 16 2001", "MPAA Rating": "R", "Running Time min": 113, "Distributor": "Newmarket Films", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Christopher Nolan", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.7, "IMDB Votes": 274524}, {"Title": "Mercury Rising", "US Gross": 32983332, "Worldwide Gross": 32983332, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Apr 03 1998", "MPAA Rating": "R", "Running Time min": 112, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Harold Becker", "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.8, "IMDB Votes": 21449}, {"Title": "Mercy Streets", "US Gross": 173599, "Worldwide Gross": 173599, "US DVD Sales": null, "Production Budget": 600000, "Release Date": "Oct 31 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 4.9, "IMDB Votes": 307}, {"Title": "Joyeux NoÎl", "US Gross": 1054361, "Worldwide Gross": 1054361, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Mar 03 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 9363}, {"Title": "Message in a Bottle", "US Gross": 52880016, "Worldwide Gross": 52880016, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Feb 12 1999", "MPAA Rating": "PG-13", "Running Time min": 132, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 31, "IMDB Rating": 5.6, "IMDB Votes": 13108}, {"Title": "Meet Joe Black", "US Gross": 44650003, "Worldwide Gross": 44650003, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Nov 13 1998", "MPAA Rating": "PG-13", "Running Time min": 154, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Martin Brest", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.9, "IMDB Votes": 56067}, {"Title": "Maria Full of Grace", "US Gross": 6529624, "Worldwide Gross": 9892434, "US DVD Sales": null, "Production Budget": 3200000, "Release Date": "Jul 16 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 16134}, {"Title": "Megiddo: Omega Code 2", "US Gross": 6047691, "Worldwide Gross": 6047691, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Sep 21 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "8X Entertainment", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Magnolia", "US Gross": 22450975, "Worldwide Gross": 48446802, "US DVD Sales": null, "Production Budget": 37000000, "Release Date": "Dec 17 1999", "MPAA Rating": "R", "Running Time min": 188, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Paul Thomas Anderson", "Rotten Tomatoes Rating": 83, "IMDB Rating": 8, "IMDB Votes": 121540}, {"Title": "The Men Who Stare at Goats", "US Gross": 32428195, "Worldwide Gross": 67348218, "US DVD Sales": 8155901, "Production Budget": 24000000, "Release Date": "Nov 06 2009", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Overture Films", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Grant Heslov", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6.4, "IMDB Votes": 33763}, {"Title": "Marilyn Hotchkiss' Ballroom Dancing and Charm School", "US Gross": 349132, "Worldwide Gross": 399114, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Mar 31 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "IDP/Goldwyn/Roadside", "Source": "Remake", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 1351}, {"Title": "Men in Black 2", "US Gross": 190418803, "Worldwide Gross": 441818803, "US DVD Sales": null, "Production Budget": 140000000, "Release Date": "Jul 03 2002", "MPAA Rating": "PG-13", "Running Time min": 88, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Barry Sonnenfeld", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 467}, {"Title": "Micmacs", "US Gross": 1237269, "Worldwide Gross": 11734498, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "May 28 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Jean-Pierre Jeunet", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The House of Mirth", "US Gross": 3041803, "Worldwide Gross": 3041803, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 22 2000", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.8, "IMDB Votes": 4489}, {"Title": "Miss Congeniality 2: Armed and Fabulous", "US Gross": 48478006, "Worldwide Gross": 101382396, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Mar 24 2005", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Pasquin", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 14297}, {"Title": "Mission: Impossible 2", "US Gross": 215409889, "Worldwide Gross": 546209889, "US DVD Sales": null, "Production Budget": 120000000, "Release Date": "May 24 2000", "MPAA Rating": "PG-13", "Running Time min": 124, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Woo", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 86222}, {"Title": "Mission: Impossible III", "US Gross": 133501348, "Worldwide Gross": 397501348, "US DVD Sales": 49824367, "Production Budget": 150000000, "Release Date": "May 05 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "J.J. Abrams", "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.9, "IMDB Votes": 74174}, {"Title": "Miss Congeniality", "US Gross": 106807667, "Worldwide Gross": 212100000, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Dec 22 2000", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Donald Petrie", "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.1, "IMDB Votes": 42323}, {"Title": "The Missing", "US Gross": 26900336, "Worldwide Gross": 38253433, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Nov 26 2003", "MPAA Rating": "R", "Running Time min": 137, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Ron Howard", "Rotten Tomatoes Rating": 59, "IMDB Rating": 7.4, "IMDB Votes": 19068}, {"Title": "Mighty Joe Young", "US Gross": 50632037, "Worldwide Gross": 50632037, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Dec 25 1998", "MPAA Rating": "PG", "Running Time min": 114, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 52, "IMDB Rating": 5.4, "IMDB Votes": 9187}, {"Title": "The Majestic", "US Gross": 27796042, "Worldwide Gross": 37306334, "US DVD Sales": null, "Production Budget": 72000000, "Release Date": "Dec 21 2001", "MPAA Rating": "PG", "Running Time min": 153, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Frank Darabont", "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.8, "IMDB Votes": 24809}, {"Title": "Martin Lawrence Live: RunTelDat", "US Gross": 19184820, "Worldwide Gross": 19184820, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Aug 02 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Concert/Performance", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 1166}, {"Title": "Malibu's Most Wanted", "US Gross": 34308901, "Worldwide Gross": 34499204, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 18 2003", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 4.8, "IMDB Votes": 8159}, {"Title": "Must Love Dogs", "US Gross": 43894863, "Worldwide Gross": 58894863, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Jul 29 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 5.9, "IMDB Votes": 13491}, {"Title": "My Life Without Me", "US Gross": 432360, "Worldwide Gross": 9476113, "US DVD Sales": null, "Production Budget": 2500000, "Release Date": "Sep 26 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": 7.6, "IMDB Votes": 11022}, {"Title": "Mission to Mars", "US Gross": 60874615, "Worldwide Gross": 106000000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Mar 10 2000", "MPAA Rating": "PG", "Running Time min": 116, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 24, "IMDB Rating": 5.1, "IMDB Votes": 32449}, {"Title": "MirrorMask", "US Gross": 864959, "Worldwide Gross": 864959, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Sep 30 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Samuel Goldwyn Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 53, "IMDB Rating": 7, "IMDB Votes": 10398}, {"Title": "Mumford", "US Gross": 4559569, "Worldwide Gross": 4559569, "US DVD Sales": null, "Production Budget": 28700000, "Release Date": "Sep 24 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Lawrence Kasdan", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.7, "IMDB Votes": 6303}, {"Title": "Mindhunters", "US Gross": 4476235, "Worldwide Gross": 16566235, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "May 13 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Renny Harlin", "Rotten Tomatoes Rating": 26, "IMDB Rating": 6.2, "IMDB Votes": 23357}, {"Title": "Captain Corelli's Mandolin", "US Gross": 25528495, "Worldwide Gross": 62097495, "US DVD Sales": null, "Production Budget": 57000000, "Release Date": "Aug 17 2001", "MPAA Rating": "R", "Running Time min": 129, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "John Madden", "Rotten Tomatoes Rating": 29, "IMDB Rating": 5.7, "IMDB Votes": 14706}, {"Title": "Manderlay", "US Gross": 74205, "Worldwide Gross": 543306, "US DVD Sales": null, "Production Budget": 14200000, "Release Date": "Jan 27 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Lars Von Trier", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 8986}, {"Title": "Midnight in the Garden of Good and Evil", "US Gross": 25078937, "Worldwide Gross": 25078937, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 21 1997", "MPAA Rating": "R", "Running Time min": 155, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.5, "IMDB Votes": 18960}, {"Title": "The Man in the Iron Mask", "US Gross": 56968169, "Worldwide Gross": 56968169, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Mar 13 1998", "MPAA Rating": "PG-13", "Running Time min": 132, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 31, "IMDB Rating": 7.2, "IMDB Votes": 561}, {"Title": "Monster-in-Law", "US Gross": 82931301, "Worldwide Gross": 155931301, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "May 13 2005", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Robert Luketic", "Rotten Tomatoes Rating": 16, "IMDB Rating": 5.1, "IMDB Votes": 16320}, {"Title": "Moonlight Mile", "US Gross": 6830957, "Worldwide Gross": 6830957, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Sep 27 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Brad Silberling", "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.7, "IMDB Votes": 8346}, {"Title": "Mona Lisa Smile", "US Gross": 63803100, "Worldwide Gross": 121598309, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Dec 19 2003", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Mike Newell", "Rotten Tomatoes Rating": 35, "IMDB Rating": 6.1, "IMDB Votes": 23657}, {"Title": "Monster's Ball", "US Gross": 31273922, "Worldwide Gross": 44873922, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 26 2001", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Marc Forster", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.2, "IMDB Votes": 38023}, {"Title": "MoliËre", "US Gross": 635733, "Worldwide Gross": 791154, "US DVD Sales": null, "Production Budget": 21600000, "Release Date": "Jul 27 2007", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": "Comedy", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 265}, {"Title": "Molly", "US Gross": 17396, "Worldwide Gross": 17396, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Oct 22 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 5.6, "IMDB Votes": 1563}, {"Title": "Monster House", "US Gross": 73661010, "Worldwide Gross": 140161010, "US DVD Sales": 71719512, "Production Budget": 75000000, "Release Date": "Jul 21 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Gil Kenan", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.8, "IMDB Votes": 20689}, {"Title": "Mononoke-hime", "US Gross": 2374107, "Worldwide Gross": 150350000, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 29 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Hayao Miyazaki", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.3, "IMDB Votes": 65773}, {"Title": "Monsoon Wedding", "US Gross": 13876974, "Worldwide Gross": 13876974, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Feb 22 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "USA Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mira Nair", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 11314}, {"Title": "Monster", "US Gross": 34469210, "Worldwide Gross": 58003694, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Dec 24 2003", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Newmarket Films", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.4, "IMDB Votes": 39908}, {"Title": "Monsters, Inc.", "US Gross": 255870172, "Worldwide Gross": 526864330, "US DVD Sales": null, "Production Budget": 115000000, "Release Date": "Nov 02 2001", "MPAA Rating": "G", "Running Time min": 95, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "David Silverman", "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.4, "IMDB Votes": 39908}, {"Title": "Mondays in the Sun", "US Gross": 146402, "Worldwide Gross": 146402, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jul 25 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Money Talks", "US Gross": 41076865, "Worldwide Gross": 41076865, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Aug 22 1997", "MPAA Rating": "R", "Running Time min": 95, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Brett Ratner", "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.7, "IMDB Votes": 8640}, {"Title": "Moon", "US Gross": 5010163, "Worldwide Gross": 6934829, "US DVD Sales": 1978111, "Production Budget": 5000000, "Release Date": "Jun 12 2009", "MPAA Rating": "R", "Running Time min": 97, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 55251}, {"Title": "Welcome to Mooseport", "US Gross": 14469428, "Worldwide Gross": 14469428, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Feb 20 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Donald Petrie", "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.2, "IMDB Votes": 6907}, {"Title": "Morvern Callar", "US Gross": 267194, "Worldwide Gross": 267194, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Dec 20 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.4, "IMDB Votes": 3831}, {"Title": "The Mothman Prophecies", "US Gross": 35228696, "Worldwide Gross": 54639865, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Jan 25 2002", "MPAA Rating": "PG-13", "Running Time min": 119, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.5, "IMDB Votes": 26948}, {"Title": "Moulin Rouge", "US Gross": 57386369, "Worldwide Gross": 179213196, "US DVD Sales": null, "Production Budget": 53000000, "Release Date": "May 18 2001", "MPAA Rating": "PG-13", "Running Time min": 123, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Baz Luhrmann", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 2105}, {"Title": "Me and Orson Welles", "US Gross": 1190003, "Worldwide Gross": 1190003, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Nov 25 2009", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Freestyle Releasing", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Richard Linklater", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.1, "IMDB Votes": 2417}, {"Title": "Meet the Fockers", "US Gross": 279167575, "Worldwide Gross": 516567575, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 22 2004", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jay Roach", "Rotten Tomatoes Rating": 38, "IMDB Rating": 6.4, "IMDB Votes": 69613}, {"Title": "Meet the Parents", "US Gross": 166225040, "Worldwide Gross": 301500000, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Oct 06 2000", "MPAA Rating": "PG-13", "Running Time min": 108, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jay Roach", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7, "IMDB Votes": 84924}, {"Title": "Mr. 3000", "US Gross": 21800302, "Worldwide Gross": 21827296, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 17 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 5.6, "IMDB Votes": 6202}, {"Title": "The Miracle", "US Gross": 64378093, "Worldwide Gross": 64445708, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Feb 06 2004", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 126}, {"Title": "Minority Report", "US Gross": 132024714, "Worldwide Gross": 358824714, "US DVD Sales": null, "Production Budget": 102000000, "Release Date": "Jun 21 2002", "MPAA Rating": "PG-13", "Running Time min": 145, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.7, "IMDB Votes": 135142}, {"Title": "The Fantastic Mr. Fox", "US Gross": 20999103, "Worldwide Gross": 46467231, "US DVD Sales": 7571489, "Production Budget": 40000000, "Release Date": "Nov 13 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Wes Anderson", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Mr. Nice Guy", "US Gross": 12716953, "Worldwide Gross": 31716953, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Mar 20 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Sammo Hung Kam-Bo", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 174}, {"Title": "Mrs. Henderson Presents", "US Gross": 11036366, "Worldwide Gross": 14466366, "US DVD Sales": 5796061, "Production Budget": 20000000, "Release Date": "Dec 09 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Stephen Frears", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.1, "IMDB Votes": 8831}, {"Title": "Mortal Kombat: Annihilation", "US Gross": 35927406, "Worldwide Gross": 51327406, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Nov 21 1997", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "New Line", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 7, "IMDB Rating": 3.2, "IMDB Votes": 16672}, {"Title": "Marvin's Room", "US Gross": 12803305, "Worldwide Gross": 12803305, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Dec 20 1996", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.6, "IMDB Votes": 9684}, {"Title": "Miracle at St. Anna", "US Gross": 7916887, "Worldwide Gross": 9110458, "US DVD Sales": 9178061, "Production Budget": 45000000, "Release Date": "Sep 26 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 34, "IMDB Rating": 5.9, "IMDB Votes": 8559}, {"Title": "Mouse Hunt", "US Gross": 61894591, "Worldwide Gross": 61894591, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Dec 19 1997", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Gore Verbinski", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 14934}, {"Title": "Masked and Anonymous", "US Gross": 533344, "Worldwide Gross": 533344, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Jul 24 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": "Larry Charles", "Rotten Tomatoes Rating": 25, "IMDB Rating": 5.3, "IMDB Votes": 2762}, {"Title": "Miss Potter", "US Gross": 3005605, "Worldwide Gross": 35025861, "US DVD Sales": 7821056, "Production Budget": 30000000, "Release Date": "Dec 29 2006", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Chris Noonan", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.1, "IMDB Votes": 10236}, {"Title": "The Missing Person", "US Gross": 17896, "Worldwide Gross": 17896, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Nov 20 2009", "MPAA Rating": null, "Running Time min": null, "Distributor": "Strand", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 416}, {"Title": "Meet the Spartans", "US Gross": 38233676, "Worldwide Gross": 84646831, "US DVD Sales": 12248893, "Production Budget": 30000000, "Release Date": "Jan 25 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Jason Friedberg", "Rotten Tomatoes Rating": 2, "IMDB Rating": 2.4, "IMDB Votes": 47281}, {"Title": "Mystery, Alaska", "US Gross": 8891623, "Worldwide Gross": 8891623, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Oct 01 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jay Roach", "Rotten Tomatoes Rating": 37, "IMDB Rating": 5.5, "IMDB Votes": 1338}, {"Title": "Match Point", "US Gross": 23089926, "Worldwide Gross": 87989926, "US DVD Sales": 7210408, "Production Budget": 15000000, "Release Date": "Dec 28 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.8, "IMDB Votes": 65704}, {"Title": "Mother and Child", "US Gross": 1105266, "Worldwide Gross": 1105266, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "May 07 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 900}, {"Title": "A Mighty Heart", "US Gross": 9176787, "Worldwide Gross": 18932117, "US DVD Sales": 5455645, "Production Budget": 15000000, "Release Date": "Jun 22 2007", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Paramount Vantage", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Michael Winterbottom", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.7, "IMDB Votes": 13881}, {"Title": "Metropolis (2002)", "US Gross": 673414, "Worldwide Gross": 673414, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jan 25 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Matrix Reloaded", "US Gross": 281553689, "Worldwide Gross": 738576929, "US DVD Sales": null, "Production Budget": 127000000, "Release Date": "May 15 2003", "MPAA Rating": "R", "Running Time min": 138, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Andy Wachowski", "Rotten Tomatoes Rating": 73, "IMDB Rating": 7.1, "IMDB Votes": 148874}, {"Title": "The Matrix Revolutions", "US Gross": 139259759, "Worldwide Gross": 424259759, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Nov 05 2003", "MPAA Rating": "R", "Running Time min": 129, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Andy Wachowski", "Rotten Tomatoes Rating": 37, "IMDB Rating": 6.5, "IMDB Votes": 123347}, {"Title": "The Mudge Boy", "US Gross": 62544, "Worldwide Gross": 62544, "US DVD Sales": null, "Production Budget": 800000, "Release Date": "May 07 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Strand", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 1576}, {"Title": "Mulan", "US Gross": 120620254, "Worldwide Gross": 303500000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jun 19 1998", "MPAA Rating": "G", "Running Time min": 88, "Distributor": "Walt Disney Pictures", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Adventure", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 86, "IMDB Rating": 7.2, "IMDB Votes": 34256}, {"Title": "Mulholland Drive", "US Gross": 7219578, "Worldwide Gross": 11919578, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 08 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "David Lynch", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.9, "IMDB Votes": 103026}, {"Title": "The Mummy", "US Gross": 155385488, "Worldwide Gross": 416385488, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "May 07 1999", "MPAA Rating": "PG-13", "Running Time min": 124, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Stephen Sommers", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6.8, "IMDB Votes": 95658}, {"Title": "The Mummy Returns", "US Gross": 202007640, "Worldwide Gross": 433007640, "US DVD Sales": null, "Production Budget": 98000000, "Release Date": "May 04 2001", "MPAA Rating": "PG-13", "Running Time min": 129, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Stephen Sommers", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.2, "IMDB Votes": 68084}, {"Title": "The Mummy: Tomb of the Dragon Emperor", "US Gross": 102491776, "Worldwide Gross": 397912118, "US DVD Sales": 43147886, "Production Budget": 175000000, "Release Date": "Aug 01 2008", "MPAA Rating": "PG-13", "Running Time min": 111, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Rob Cohen", "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.1, "IMDB Votes": 41570}, {"Title": "Munich", "US Gross": 47379090, "Worldwide Gross": 130279090, "US DVD Sales": 33113440, "Production Budget": 75000000, "Release Date": "Dec 23 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.8, "IMDB Votes": 79529}, {"Title": "Muppets From Space", "US Gross": 16304786, "Worldwide Gross": 16304786, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Jul 14 1999", "MPAA Rating": "G", "Running Time min": 88, "Distributor": "Sony Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Tim Hill", "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.1, "IMDB Votes": 5945}, {"Title": "Murder by Numbers", "US Gross": 31874869, "Worldwide Gross": 56643267, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Apr 19 2002", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Barbet Schroeder", "Rotten Tomatoes Rating": 31, "IMDB Rating": 5.9, "IMDB Votes": 22318}, {"Title": "The Muse", "US Gross": 11614954, "Worldwide Gross": 11614954, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Aug 27 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "October Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Albert Brooks", "Rotten Tomatoes Rating": 51, "IMDB Rating": 5.5, "IMDB Votes": 6507}, {"Title": "Night at the Museum", "US Gross": 250863268, "Worldwide Gross": 574480841, "US DVD Sales": 153389976, "Production Budget": 110000000, "Release Date": "Dec 22 2006", "MPAA Rating": "PG", "Running Time min": 108, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Shawn Levy", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.4, "IMDB Votes": 67133}, {"Title": "The Musketeer", "US Gross": 27053815, "Worldwide Gross": 27053815, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Sep 07 2001", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Peter Hyams", "Rotten Tomatoes Rating": 10, "IMDB Rating": 4.4, "IMDB Votes": 7812}, {"Title": "Music and Lyrics", "US Gross": 50572589, "Worldwide Gross": 145556146, "US DVD Sales": 21145518, "Production Budget": 40000000, "Release Date": "Feb 14 2007", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.6, "IMDB Votes": 32307}, {"Title": "The Merchant of Venice", "US Gross": 3765585, "Worldwide Gross": 18765585, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 29 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Michael Radford", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 14021}, {"Title": "Miami Vice", "US Gross": 63478838, "Worldwide Gross": 163818556, "US DVD Sales": 37652030, "Production Budget": 135000000, "Release Date": "Jul 28 2006", "MPAA Rating": "R", "Running Time min": 132, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Michael Mann", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6, "IMDB Votes": 51921}, {"Title": "Monsters vs. Aliens", "US Gross": 198351526, "Worldwide Gross": 381687380, "US DVD Sales": 83851943, "Production Budget": 175000000, "Release Date": "Mar 27 2009", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "Paramount Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Rob Letterman", "Rotten Tomatoes Rating": 72, "IMDB Rating": 6.8, "IMDB Votes": 26582}, {"Title": "A Mighty Wind", "US Gross": 17583468, "Worldwide Gross": 18552708, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Apr 16 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Christopher Guest", "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.2, "IMDB Votes": 13602}, {"Title": "The Mexican", "US Gross": 66808615, "Worldwide Gross": 147808615, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Mar 02 2001", "MPAA Rating": "R", "Running Time min": 124, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Gore Verbinski", "Rotten Tomatoes Rating": 55, "IMDB Rating": 5.9, "IMDB Votes": 37696}, {"Title": "My Best Friend's Wedding", "US Gross": 126813153, "Worldwide Gross": 287200000, "US DVD Sales": null, "Production Budget": 46000000, "Release Date": "Jun 20 1997", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "P.J. Hogan", "Rotten Tomatoes Rating": 72, "IMDB Rating": 6.2, "IMDB Votes": 37287}, {"Title": "Dude, Where's My Car?", "US Gross": 46729374, "Worldwide Gross": 73180297, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Dec 15 2000", "MPAA Rating": "PG-13", "Running Time min": 83, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "My Dog Skip", "US Gross": 34099640, "Worldwide Gross": 35512760, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Jan 12 2000", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Kids Fiction", "Director": "Jay Russell", "Rotten Tomatoes Rating": 72, "IMDB Rating": 6.9, "IMDB Votes": 9029}, {"Title": "My Date With Drew", "US Gross": 181041, "Worldwide Gross": 181041, "US DVD Sales": null, "Production Budget": 1100, "Release Date": "Aug 05 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "DEJ Productions", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 2961}, {"Title": "Me and You and Everyone We Know", "US Gross": 3885134, "Worldwide Gross": 5409058, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jun 17 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.4, "IMDB Votes": 17135}, {"Title": "My Favorite Martian", "US Gross": 36850101, "Worldwide Gross": 36850101, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Feb 12 1999", "MPAA Rating": "PG", "Running Time min": 93, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": "Donald Petrie", "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.5, "IMDB Votes": 4918}, {"Title": "My Fellow Americans", "US Gross": 22331846, "Worldwide Gross": 22331846, "US DVD Sales": null, "Production Budget": 21500000, "Release Date": "Dec 20 1996", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Segal", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.3, "IMDB Votes": 6366}, {"Title": "My Sister's Keeper", "US Gross": 49200230, "Worldwide Gross": 89053995, "US DVD Sales": 21467223, "Production Budget": 27500000, "Release Date": "Jun 26 2009", "MPAA Rating": "PG-13", "Running Time min": 108, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Nick Cassavetes", "Rotten Tomatoes Rating": 48, "IMDB Rating": 7.4, "IMDB Votes": 13839}, {"Title": "My Summer of Love", "US Gross": 1000915, "Worldwide Gross": 3800915, "US DVD Sales": null, "Production Budget": 1700000, "Release Date": "Jun 17 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 7242}, {"Title": "The Mystery Men", "US Gross": 29762011, "Worldwide Gross": 29762011, "US DVD Sales": null, "Production Budget": 68000000, "Release Date": "Aug 06 1999", "MPAA Rating": "PG", "Running Time min": 120, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Comedy", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Mystic River", "US Gross": 90135191, "Worldwide Gross": 156835191, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Oct 08 2003", "MPAA Rating": "R", "Running Time min": 137, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 87, "IMDB Rating": 8, "IMDB Votes": 119484}, {"Title": "Nacho Libre", "US Gross": 80197993, "Worldwide Gross": 99197993, "US DVD Sales": 46582125, "Production Budget": 32000000, "Release Date": "Jun 16 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jared Hess", "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.7, "IMDB Votes": 31455}, {"Title": "Narc", "US Gross": 10465659, "Worldwide Gross": 10465659, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Dec 20 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Joe Carnahan", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.3, "IMDB Votes": 19248}, {"Title": "The Chronicles of Narnia: Prince Caspian", "US Gross": 141621490, "Worldwide Gross": 419490286, "US DVD Sales": 77773230, "Production Budget": 225000000, "Release Date": "May 16 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Andrew Adamson", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.9, "IMDB Votes": 46608}, {"Title": "National Treasure", "US Gross": 173005002, "Worldwide Gross": 347405002, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Nov 19 2004", "MPAA Rating": "PG", "Running Time min": 131, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Jon Turteltaub", "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.9, "IMDB Votes": 83989}, {"Title": "The Nativity Story", "US Gross": 37629831, "Worldwide Gross": 46432264, "US DVD Sales": 26142500, "Production Budget": 35000000, "Release Date": "Dec 01 2006", "MPAA Rating": "PG", "Running Time min": 102, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Catherine Hardwicke", "Rotten Tomatoes Rating": 37, "IMDB Rating": 6.6, "IMDB Votes": 4701}, {"Title": "Never Back Down", "US Gross": 24850922, "Worldwide Gross": 39319801, "US DVD Sales": 18692319, "Production Budget": 21000000, "Release Date": "Mar 14 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Summit Entertainment", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 6.2, "IMDB Votes": 21708}, {"Title": "Into the Blue", "US Gross": 18782227, "Worldwide Gross": 41982227, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Sep 30 2005", "MPAA Rating": "PG-13", "Running Time min": 109, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.7, "IMDB Votes": 22859}, {"Title": "Shinjuku Incident", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Feb 05 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "No Country for Old Men", "US Gross": 74273505, "Worldwide Gross": 162103209, "US DVD Sales": 45877844, "Production Budget": 25000000, "Release Date": "Nov 09 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Joel Coen", "Rotten Tomatoes Rating": 95, "IMDB Rating": 8.3, "IMDB Votes": 197898}, {"Title": "The Incredibles", "US Gross": 261441092, "Worldwide Gross": 632882184, "US DVD Sales": null, "Production Budget": 92000000, "Release Date": "Nov 05 2004", "MPAA Rating": "PG", "Running Time min": 121, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Brad Bird", "Rotten Tomatoes Rating": 97, "IMDB Rating": 8.1, "IMDB Votes": 159123}, {"Title": "The Negotiator", "US Gross": 44705766, "Worldwide Gross": 49105766, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jul 29 1998", "MPAA Rating": "R", "Running Time min": 138, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "F. Gary Gray", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.2, "IMDB Votes": 46511}, {"Title": "A Nightmare on Elm Street", "US Gross": 63075011, "Worldwide Gross": 105175011, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Apr 30 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.3, "IMDB Votes": 12554}, {"Title": "Not Easily Broken", "US Gross": 10572742, "Worldwide Gross": 10572742, "US DVD Sales": 13828911, "Production Budget": 5000000, "Release Date": "Jan 09 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Bill Duke", "Rotten Tomatoes Rating": 35, "IMDB Rating": 5.2, "IMDB Votes": 1010}, {"Title": "The New Guy", "US Gross": 28972187, "Worldwide Gross": 28972187, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "May 10 2002", "MPAA Rating": "PG-13", "Running Time min": 88, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 7, "IMDB Rating": 5.4, "IMDB Votes": 14268}, {"Title": "The Newton Boys", "US Gross": 10341093, "Worldwide Gross": 10341093, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Mar 27 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Richard Linklater", "Rotten Tomatoes Rating": 61, "IMDB Rating": 5.7, "IMDB Votes": 4443}, {"Title": "The Next Best Thing", "US Gross": 14983572, "Worldwide Gross": 24355762, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 03 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Schlesinger", "Rotten Tomatoes Rating": 19, "IMDB Rating": 4.4, "IMDB Votes": 6104}, {"Title": "Northfork", "US Gross": 1420578, "Worldwide Gross": 1445140, "US DVD Sales": null, "Production Budget": 1900000, "Release Date": "Jul 11 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Michael Polish", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.3, "IMDB Votes": 3776}, {"Title": "In Good Company", "US Gross": 45489752, "Worldwide Gross": 63489752, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Dec 29 2004", "MPAA Rating": "PG-13", "Running Time min": 109, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Paul Weitz", "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.8, "IMDB Votes": 25695}, {"Title": "Notting Hill", "US Gross": 116089678, "Worldwide Gross": 363728226, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "May 28 1999", "MPAA Rating": "PG-13", "Running Time min": 123, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 82, "IMDB Rating": 6.9, "IMDB Votes": 66362}, {"Title": "Little Nicky", "US Gross": 39442871, "Worldwide Gross": 58270391, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Nov 10 2000", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 5, "IMDB Votes": 35082}, {"Title": "Nicholas Nickleby", "US Gross": 1562800, "Worldwide Gross": 1562800, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 27 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "United Artists", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.3, "IMDB Votes": 4968}, {"Title": "Nim's Island", "US Gross": 48006762, "Worldwide Gross": 94081683, "US DVD Sales": 18322434, "Production Budget": 37000000, "Release Date": "Apr 04 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 6, "IMDB Votes": 10391}, {"Title": "Ninja Assassin", "US Gross": 38122883, "Worldwide Gross": 57422883, "US DVD Sales": 14085314, "Production Budget": 50000000, "Release Date": "Nov 25 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "James McTeigue", "Rotten Tomatoes Rating": 25, "IMDB Rating": 6.3, "IMDB Votes": 20078}, {"Title": "The Ninth Gate", "US Gross": 18653746, "Worldwide Gross": 58394308, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Mar 10 2000", "MPAA Rating": "R", "Running Time min": 133, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": "Roman Polanski", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 50510}, {"Title": "Never Let Me Go", "US Gross": 186830, "Worldwide Gross": 186830, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Sep 15 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 62, "IMDB Rating": 7.3, "IMDB Votes": 252}, {"Title": "Lucky Numbers", "US Gross": 10014234, "Worldwide Gross": 10014234, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Oct 27 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Nora Ephron", "Rotten Tomatoes Rating": 23, "IMDB Rating": 4.9, "IMDB Votes": 5461}, {"Title": "Night at the Museum: Battle of the Smithsonian", "US Gross": 177243721, "Worldwide Gross": 413054631, "US DVD Sales": 48547729, "Production Budget": 150000000, "Release Date": "May 22 2009", "MPAA Rating": "PG", "Running Time min": 104, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Shawn Levy", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 25631}, {"Title": "Nick and Norah's Infinite Playlist", "US Gross": 31487293, "Worldwide Gross": 31487293, "US DVD Sales": 10327750, "Production Budget": 10000000, "Release Date": "Oct 03 2008", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Peter Sollett", "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.8, "IMDB Votes": 24021}, {"Title": "Notorious", "US Gross": 36842118, "Worldwide Gross": 44473591, "US DVD Sales": 21503929, "Production Budget": 19000000, "Release Date": "Jan 16 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.3, "IMDB Votes": 9811}, {"Title": "No End In Sight", "US Gross": 1433319, "Worldwide Gross": 1433319, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jul 27 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 8.3, "IMDB Votes": 4086}, {"Title": "Nomad", "US Gross": 79123, "Worldwide Gross": 79123, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Mar 16 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 1224}, {"Title": "No Man's Land", "US Gross": 1067481, "Worldwide Gross": 2684207, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Dec 07 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 93, "IMDB Rating": 8, "IMDB Votes": 19600}, {"Title": "No Reservations", "US Gross": 43107979, "Worldwide Gross": 92107979, "US DVD Sales": 27029295, "Production Budget": 28000000, "Release Date": "Jul 27 2007", "MPAA Rating": "PG", "Running Time min": 103, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.3, "IMDB Votes": 16952}, {"Title": "The Notebook", "US Gross": 81001787, "Worldwide Gross": 102276787, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 25 2004", "MPAA Rating": "PG-13", "Running Time min": 123, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Nick Cassavetes", "Rotten Tomatoes Rating": 52, "IMDB Rating": 8, "IMDB Votes": 95850}, {"Title": "November", "US Gross": 191862, "Worldwide Gross": 191862, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Jul 22 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 2189}, {"Title": "Novocaine", "US Gross": 2025238, "Worldwide Gross": 2522928, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Nov 16 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 37, "IMDB Rating": 5.8, "IMDB Votes": 6233}, {"Title": "Nowhere in Africa", "US Gross": 6173485, "Worldwide Gross": 6173485, "US DVD Sales": null, "Production Budget": 6500000, "Release Date": "Mar 07 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Zeitgeist", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Napoleon Dynamite", "US Gross": 44540956, "Worldwide Gross": 46140956, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "Jun 11 2004", "MPAA Rating": "PG", "Running Time min": 82, "Distributor": "Fox Searchlight", "Source": "Based on Short Film", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jared Hess", "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.9, "IMDB Votes": 76557}, {"Title": "North Country", "US Gross": 18324242, "Worldwide Gross": 23624242, "US DVD Sales": 14349786, "Production Budget": 30000000, "Release Date": "Oct 21 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.2, "IMDB Votes": 16497}, {"Title": "The Namesake", "US Gross": 13610521, "Worldwide Gross": 20180109, "US DVD Sales": 9364773, "Production Budget": 8500000, "Release Date": "Mar 09 2007", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Mira Nair", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 9700}, {"Title": "Inside Deep Throat", "US Gross": 691880, "Worldwide Gross": 691880, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Feb 11 2005", "MPAA Rating": "NC-17", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 3264}, {"Title": "Intolerable Cruelty", "US Gross": 35327628, "Worldwide Gross": 121327628, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Oct 10 2003", "MPAA Rating": "PG-13", "Running Time min": 100, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Joel Coen", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.4, "IMDB Votes": 36323}, {"Title": "The Interpreter", "US Gross": 72708161, "Worldwide Gross": 163954076, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Apr 22 2005", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Sydney Pollack", "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.5, "IMDB Votes": 38227}, {"Title": "The Night Listener", "US Gross": 7836393, "Worldwide Gross": 10547755, "US DVD Sales": 8927227, "Production Budget": 4000000, "Release Date": "Aug 04 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.9, "IMDB Votes": 8437}, {"Title": "The International", "US Gross": 25450527, "Worldwide Gross": 53850527, "US DVD Sales": 7276738, "Production Budget": 50000000, "Release Date": "Feb 13 2009", "MPAA Rating": "R", "Running Time min": 118, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Tom Tykwer", "Rotten Tomatoes Rating": 59, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Number 23", "US Gross": 35193167, "Worldwide Gross": 76593167, "US DVD Sales": 27576238, "Production Budget": 32000000, "Release Date": "Feb 23 2007", "MPAA Rating": "R", "Running Time min": 95, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 8, "IMDB Rating": 6.2, "IMDB Votes": 59174}, {"Title": "Nurse Betty", "US Gross": 25170054, "Worldwide Gross": 27732366, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Sep 08 2000", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "USA Films", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Neil LaBute", "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.4, "IMDB Votes": 20354}, {"Title": "Jimmy Neutron: Boy Genius", "US Gross": 80936232, "Worldwide Gross": 102992536, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Dec 21 2001", "MPAA Rating": "G", "Running Time min": 83, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 5379}, {"Title": "Nutty Professor II: The Klumps", "US Gross": 123307945, "Worldwide Gross": 161600000, "US DVD Sales": null, "Production Budget": 84000000, "Release Date": "Jul 28 2000", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Segal", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.3, "IMDB Votes": 17075}, {"Title": "Never Again", "US Gross": 307631, "Worldwide Gross": 307631, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jul 12 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Romantic Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 511}, {"Title": "Finding Neverland", "US Gross": 51676606, "Worldwide Gross": 118676606, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Nov 12 2004", "MPAA Rating": "PG", "Running Time min": 106, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Marc Forster", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.9, "IMDB Votes": 86828}, {"Title": "Into the Wild", "US Gross": 18354356, "Worldwide Gross": 53813837, "US DVD Sales": 15272435, "Production Budget": 20000000, "Release Date": "Sep 21 2007", "MPAA Rating": "R", "Running Time min": 147, "Distributor": "Paramount Vantage", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sean Penn", "Rotten Tomatoes Rating": 82, "IMDB Rating": 8.2, "IMDB Votes": 99464}, {"Title": "The New World", "US Gross": 12712093, "Worldwide Gross": 26184400, "US DVD Sales": 8200002, "Production Budget": 30000000, "Release Date": "Dec 25 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Terrence Malick", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.9, "IMDB Votes": 33248}, {"Title": "Nochnoy dozor", "US Gross": 1502188, "Worldwide Gross": 33923550, "US DVD Sales": 7476421, "Production Budget": 4200000, "Release Date": "Feb 17 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Timur Bekmambetov", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 25136}, {"Title": "New York Minute", "US Gross": 14018364, "Worldwide Gross": 21215882, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "May 07 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Dennie Gordon", "Rotten Tomatoes Rating": 11, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Object of my Affection", "US Gross": 29145924, "Worldwide Gross": 29145924, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 17 1998", "MPAA Rating": "R", "Running Time min": 112, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.9, "IMDB Votes": 8492}, {"Title": "Orange County", "US Gross": 41059716, "Worldwide Gross": 43308707, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Jan 11 2002", "MPAA Rating": "PG-13", "Running Time min": 82, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.1, "IMDB Votes": 23742}, {"Title": "Ocean's Eleven", "US Gross": 183417150, "Worldwide Gross": 450728529, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Dec 07 2001", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.6, "IMDB Votes": 139034}, {"Title": "Ocean's Twelve", "US Gross": 125531634, "Worldwide Gross": 363531634, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Dec 10 2004", "MPAA Rating": "PG-13", "Running Time min": 125, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6, "IMDB Votes": 89861}, {"Title": "Ocean's Thirteen", "US Gross": 117144465, "Worldwide Gross": 311744465, "US DVD Sales": 48258805, "Production Budget": 85000000, "Release Date": "Jun 08 2007", "MPAA Rating": "PG-13", "Running Time min": 122, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.9, "IMDB Votes": 76884}, {"Title": "Oceans", "US Gross": 19422319, "Worldwide Gross": 72965951, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Apr 22 2010", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 1429}, {"Title": "Office Space", "US Gross": 10827813, "Worldwide Gross": 12827813, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 19 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Short Film", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mike Judge", "Rotten Tomatoes Rating": 80, "IMDB Rating": 7.9, "IMDB Votes": 80972}, {"Title": "White Oleander", "US Gross": 16357770, "Worldwide Gross": 21657770, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Oct 11 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 7, "IMDB Votes": 13755}, {"Title": "The Omen", "US Gross": 54607383, "Worldwide Gross": 119607383, "US DVD Sales": 10468933, "Production Budget": 25000000, "Release Date": "Jun 06 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.4, "IMDB Votes": 24523}, {"Title": "Any Given Sunday", "US Gross": 75530832, "Worldwide Gross": 100230832, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 22 1999", "MPAA Rating": "R", "Running Time min": 162, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.6, "IMDB Votes": 48477}, {"Title": "Once", "US Gross": 9445857, "Worldwide Gross": 18997174, "US DVD Sales": null, "Production Budget": 150000, "Release Date": "Jun 16 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 97, "IMDB Rating": 8, "IMDB Votes": 34348}, {"Title": "Once in a Lifetime: the Extraordinary Story of the New York Cosmos", "US Gross": 144601, "Worldwide Gross": 206351, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Jul 07 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Matt Dillon", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.1, "IMDB Votes": 643}, {"Title": "One Hour Photo", "US Gross": 31597131, "Worldwide Gross": 52223306, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Aug 21 2002", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 81, "IMDB Rating": 7, "IMDB Votes": 42134}, {"Title": "One True Thing", "US Gross": 23337196, "Worldwide Gross": 26708196, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 18 1998", "MPAA Rating": "R", "Running Time min": 127, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Carl Franklin", "Rotten Tomatoes Rating": 88, "IMDB Rating": 6.9, "IMDB Votes": 5591}, {"Title": "Ong-Bak 2", "US Gross": 102458, "Worldwide Gross": 7583050, "US DVD Sales": 1238181, "Production Budget": 15000000, "Release Date": "Sep 25 2009", "MPAA Rating": "R", "Running Time min": 97, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 887}, {"Title": "On the Line", "US Gross": 4356743, "Worldwide Gross": 4356743, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 26 2001", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 18, "IMDB Rating": 3.4, "IMDB Votes": 2617}, {"Title": "One Night with the King", "US Gross": 13395961, "Worldwide Gross": 13395961, "US DVD Sales": 20554010, "Production Budget": 20000000, "Release Date": "Oct 13 2006", "MPAA Rating": "PG", "Running Time min": 124, "Distributor": "Rocky Mountain Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Michael O. Sajbel", "Rotten Tomatoes Rating": 16, "IMDB Rating": 6, "IMDB Votes": 2993}, {"Title": "Opal Dreams", "US Gross": 14443, "Worldwide Gross": 14443, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Nov 22 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Strand", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 468}, {"Title": "Open Season", "US Gross": 85105259, "Worldwide Gross": 189901703, "US DVD Sales": 96622855, "Production Budget": 85000000, "Release Date": "Sep 29 2006", "MPAA Rating": "PG", "Running Time min": 87, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 6, "IMDB Votes": 52}, {"Title": "Open Water", "US Gross": 30500882, "Worldwide Gross": 52100882, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Aug 06 2004", "MPAA Rating": "R", "Running Time min": 79, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 23667}, {"Title": "Open Range", "US Gross": 58328680, "Worldwide Gross": 68293719, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Aug 15 2003", "MPAA Rating": "R", "Running Time min": 139, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Kevin Costner", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.5, "IMDB Votes": 26438}, {"Title": "The Order", "US Gross": 7659747, "Worldwide Gross": 11559747, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 05 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.9, "IMDB Votes": 9119}, {"Title": "Orgazmo", "US Gross": 582024, "Worldwide Gross": 627287, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Oct 23 1998", "MPAA Rating": "NC-17", "Running Time min": null, "Distributor": "October Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Trey Parker", "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 15592}, {"Title": "Original Sin", "US Gross": 16521410, "Worldwide Gross": 16521410, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Aug 03 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.6, "IMDB Votes": 15939}, {"Title": "Osama", "US Gross": 1127331, "Worldwide Gross": 1971479, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jan 30 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 4737}, {"Title": "Oscar and Lucinda", "US Gross": 1612957, "Worldwide Gross": 1612957, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "Dec 31 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.7, "IMDB Votes": 3782}, {"Title": "Old School", "US Gross": 75155000, "Worldwide Gross": 86325829, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Feb 21 2003", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Todd Phillips", "Rotten Tomatoes Rating": 60, "IMDB Rating": 7, "IMDB Votes": 60477}, {"Title": "Osmosis Jones", "US Gross": 13596911, "Worldwide Gross": 13596911, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Aug 10 2001", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Bobby Farrelly", "Rotten Tomatoes Rating": 54, "IMDB Rating": 6, "IMDB Votes": 10959}, {"Title": "American Outlaws", "US Gross": 13264986, "Worldwide Gross": 13264986, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Aug 17 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Les Mayfield", "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.6, "IMDB Votes": 7396}, {"Title": "Oliver Twist", "US Gross": 2070920, "Worldwide Gross": 26670920, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Sep 23 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/TriStar", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Roman Polanski", "Rotten Tomatoes Rating": 59, "IMDB Rating": 7, "IMDB Votes": 10748}, {"Title": "Out Cold", "US Gross": 13906394, "Worldwide Gross": 13906394, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Nov 21 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 5.8, "IMDB Votes": 7153}, {"Title": "Outlander", "US Gross": 166003, "Worldwide Gross": 1250617, "US DVD Sales": 1757108, "Production Budget": 50000000, "Release Date": "Jan 23 2009", "MPAA Rating": "R", "Running Time min": 115, "Distributor": "Third Rail", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 18299}, {"Title": "Out of Sight", "US Gross": 37562568, "Worldwide Gross": 37562568, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Jun 26 1998", "MPAA Rating": "R", "Running Time min": 129, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.1, "IMDB Votes": 38263}, {"Title": "Out of Time", "US Gross": 41083108, "Worldwide Gross": 55489826, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Oct 03 2003", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Carl Franklin", "Rotten Tomatoes Rating": 65, "IMDB Rating": 4.9, "IMDB Votes": 151}, {"Title": "The Out-of-Towners", "US Gross": 28544120, "Worldwide Gross": 28544120, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Apr 02 1999", "MPAA Rating": "PG-13", "Running Time min": 92, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 24, "IMDB Rating": 4.9, "IMDB Votes": 6338}, {"Title": "Owning Mahowny", "US Gross": 1011054, "Worldwide Gross": 1011054, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "May 02 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 78, "IMDB Rating": 7, "IMDB Votes": 5789}, {"Title": "The Pacifier", "US Gross": 113006880, "Worldwide Gross": 198006880, "US DVD Sales": null, "Production Budget": 56000000, "Release Date": "Mar 04 2005", "MPAA Rating": "PG", "Running Time min": 97, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Adam Shankman", "Rotten Tomatoes Rating": 20, "IMDB Rating": 5.3, "IMDB Votes": 22590}, {"Title": "El Laberinto del Fauno", "US Gross": 37634615, "Worldwide Gross": 83234615, "US DVD Sales": 40776265, "Production Budget": 16000000, "Release Date": "Dec 29 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Picturehouse", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": "Guillermo Del Toro", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.4, "IMDB Votes": 153762}, {"Title": "The Passion of the Christ", "US Gross": 370782930, "Worldwide Gross": 611899420, "US DVD Sales": 618454, "Production Budget": 25000000, "Release Date": "Feb 25 2004", "MPAA Rating": "R", "Running Time min": 127, "Distributor": "Newmarket Films", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Mel Gibson", "Rotten Tomatoes Rating": 50, "IMDB Rating": 7.1, "IMDB Votes": 87326}, {"Title": "Patch Adams", "US Gross": 135041968, "Worldwide Gross": 202200000, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Dec 25 1998", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tom Shadyac", "Rotten Tomatoes Rating": 24, "IMDB Rating": 6.3, "IMDB Votes": 31481}, {"Title": "Payback", "US Gross": 81526121, "Worldwide Gross": 161626121, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 05 1999", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 51, "IMDB Rating": 5.8, "IMDB Votes": 304}, {"Title": "Paycheck", "US Gross": 53789313, "Worldwide Gross": 89350576, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 25 2003", "MPAA Rating": "PG-13", "Running Time min": 119, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "John Woo", "Rotten Tomatoes Rating": 28, "IMDB Rating": 6.1, "IMDB Votes": 35660}, {"Title": "Max Payne", "US Gross": 40687294, "Worldwide Gross": 85761789, "US DVD Sales": 25346362, "Production Budget": 35000000, "Release Date": "Oct 17 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.4, "IMDB Votes": 47541}, {"Title": "The Princess Diaries 2: Royal Engagement", "US Gross": 95149435, "Worldwide Gross": 122071435, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Aug 11 2004", "MPAA Rating": "G", "Running Time min": 115, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Garry Marshall", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.3, "IMDB Votes": 12439}, {"Title": "The Princess Diaries", "US Gross": 108244774, "Worldwide Gross": 165334774, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 03 2001", "MPAA Rating": "G", "Running Time min": 115, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Garry Marshall", "Rotten Tomatoes Rating": 46, "IMDB Rating": 5.9, "IMDB Votes": 23486}, {"Title": "The Peacemaker", "US Gross": 41263140, "Worldwide Gross": 62967368, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Sep 26 1997", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "Dreamworks SKG", "Source": "Based on Magazine Article", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Mimi Leder", "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.8, "IMDB Votes": 21524}, {"Title": "Peter Pan", "US Gross": 48417850, "Worldwide Gross": 95255485, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Dec 25 2003", "MPAA Rating": "PG", "Running Time min": 113, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "P.J. Hogan", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.1, "IMDB Votes": 16894}, {"Title": "People I Know", "US Gross": 121972, "Worldwide Gross": 121972, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Apr 25 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 6305}, {"Title": "Perrier's Bounty", "US Gross": 828, "Worldwide Gross": 828, "US DVD Sales": null, "Production Budget": 6600000, "Release Date": "May 21 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 808}, {"Title": "A Perfect Getaway", "US Gross": 15515460, "Worldwide Gross": 20613298, "US DVD Sales": 3994342, "Production Budget": 14000000, "Release Date": "Aug 07 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "David Twohy", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.5, "IMDB Votes": 16324}, {"Title": "Phat Girlz", "US Gross": 7061128, "Worldwide Gross": 7271305, "US DVD Sales": 18090044, "Production Budget": 3000000, "Release Date": "Apr 07 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 2.2, "IMDB Votes": 6343}, {"Title": "Poolhall Junkies", "US Gross": 563711, "Worldwide Gross": 563711, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Feb 28 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Gold Circle Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 5233}, {"Title": "The Phantom of the Opera", "US Gross": 51225796, "Worldwide Gross": 158225796, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Dec 22 2004", "MPAA Rating": "PG-13", "Running Time min": 143, "Distributor": "Warner Bros.", "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 33, "IMDB Rating": 7.2, "IMDB Votes": 42832}, {"Title": "Phone Booth", "US Gross": 46566212, "Worldwide Gross": 97837138, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Apr 04 2003", "MPAA Rating": "R", "Running Time min": 81, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Joel Schumacher", "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.2, "IMDB Votes": 68874}, {"Title": "The Pianist", "US Gross": 32519322, "Worldwide Gross": 120000000, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 27 2002", "MPAA Rating": "R", "Running Time min": 149, "Distributor": "Focus Features", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Roman Polanski", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.5, "IMDB Votes": 134516}, {"Title": "The Pink Panther", "US Gross": 82226474, "Worldwide Gross": 158926474, "US DVD Sales": 23182695, "Production Budget": 80000000, "Release Date": "Feb 10 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Shawn Levy", "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.1, "IMDB Votes": 28456}, {"Title": "Pirates of the Caribbean: The Curse of the Black Pearl", "US Gross": 305411224, "Worldwide Gross": 655011224, "US DVD Sales": null, "Production Budget": 125000000, "Release Date": "Jul 09 2003", "MPAA Rating": "PG-13", "Running Time min": 143, "Distributor": "Walt Disney Pictures", "Source": "Disney Ride", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Gore Verbinski", "Rotten Tomatoes Rating": null, "IMDB Rating": 8, "IMDB Votes": 232719}, {"Title": "Pirates of the Caribbean: Dead Man's Chest", "US Gross": 423315812, "Worldwide Gross": 1065659812, "US DVD Sales": 320830925, "Production Budget": 225000000, "Release Date": "Jul 07 2006", "MPAA Rating": "PG-13", "Running Time min": 151, "Distributor": "Walt Disney Pictures", "Source": "Disney Ride", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Gore Verbinski", "Rotten Tomatoes Rating": 54, "IMDB Rating": 7.3, "IMDB Votes": 150446}, {"Title": "Pirates of the Caribbean: At World's End", "US Gross": 309420425, "Worldwide Gross": 960996492, "US DVD Sales": 296060575, "Production Budget": 300000000, "Release Date": "May 25 2007", "MPAA Rating": "PG-13", "Running Time min": 167, "Distributor": "Walt Disney Pictures", "Source": "Disney Ride", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Gore Verbinski", "Rotten Tomatoes Rating": 45, "IMDB Rating": 7, "IMDB Votes": 133241}, {"Title": "The Chronicles of Riddick", "US Gross": 57712751, "Worldwide Gross": 107212751, "US DVD Sales": null, "Production Budget": 120000000, "Release Date": "Jun 11 2004", "MPAA Rating": "PG-13", "Running Time min": 119, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "David Twohy", "Rotten Tomatoes Rating": 29, "IMDB Rating": 6.4, "IMDB Votes": 49383}, {"Title": "Pitch Black", "US Gross": 39235088, "Worldwide Gross": 53182088, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Feb 18 2000", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "USA Films", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "David Twohy", "Rotten Tomatoes Rating": 55, "IMDB Rating": 7, "IMDB Votes": 55217}, {"Title": "Play it to the Bone", "US Gross": 8427204, "Worldwide Gross": 8427204, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Dec 24 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ron Shelton", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.1, "IMDB Votes": 6039}, {"Title": "Screwed", "US Gross": 6982680, "Worldwide Gross": 6982680, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "May 12 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.1, "IMDB Votes": 4411}, {"Title": "Percy Jackson & the Olympians: The Lightning Thief", "US Gross": 88761720, "Worldwide Gross": 226435277, "US DVD Sales": 30795712, "Production Budget": 95000000, "Release Date": "Feb 12 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Chris Columbus", "Rotten Tomatoes Rating": 50, "IMDB Rating": 5.8, "IMDB Votes": 20451}, {"Title": "Paris, je t'aime", "US Gross": 4857374, "Worldwide Gross": 4857374, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "May 04 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "First Look", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Gurinder Chadha", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 175}, {"Title": "Princess Kaiulani", "US Gross": 883454, "Worldwide Gross": 883454, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "May 14 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Roadside Attractions", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.3, "IMDB Votes": 224}, {"Title": "Lake Placid", "US Gross": 31770413, "Worldwide Gross": 31770413, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Jul 16 1999", "MPAA Rating": "R", "Running Time min": 82, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Steve Miner", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.3, "IMDB Votes": 19382}, {"Title": "The Back-up Plan", "US Gross": 37490007, "Worldwide Gross": 77090007, "US DVD Sales": 7571152, "Production Budget": 35000000, "Release Date": "Apr 23 2010", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "CBS Films", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 4.4, "IMDB Votes": 6981}, {"Title": "The Pledge", "US Gross": 19719930, "Worldwide Gross": 29406132, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jan 19 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sean Penn", "Rotten Tomatoes Rating": 77, "IMDB Rating": 6.9, "IMDB Votes": 22609}, {"Title": "Proof of Life", "US Gross": 32598931, "Worldwide Gross": 62761005, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Dec 08 2000", "MPAA Rating": "R", "Running Time min": 135, "Distributor": "Warner Bros.", "Source": "Based on Magazine Article", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Taylor Hackford", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.1, "IMDB Votes": 23099}, {"Title": "Pollock", "US Gross": 8596914, "Worldwide Gross": 10557291, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Dec 15 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ed Harris", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.1, "IMDB Votes": 9669}, {"Title": "Planet of the Apes", "US Gross": 180011740, "Worldwide Gross": 362211740, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Jul 27 2001", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Tim Burton", "Rotten Tomatoes Rating": 44, "IMDB Rating": 5.5, "IMDB Votes": 72763}, {"Title": "Please Give", "US Gross": 4028339, "Worldwide Gross": 4028339, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Apr 30 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 88, "IMDB Rating": 7.4, "IMDB Votes": 1023}, {"Title": "Planet 51", "US Gross": 42194060, "Worldwide Gross": 108005745, "US DVD Sales": 15341764, "Production Budget": 50000000, "Release Date": "Nov 20 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 6.1, "IMDB Votes": 9645}, {"Title": "The Adventures of Pluto Nash", "US Gross": 4411102, "Worldwide Gross": 7094995, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Aug 16 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 6, "IMDB Rating": 3.7, "IMDB Votes": 9207}, {"Title": "The Players Club", "US Gross": 23047939, "Worldwide Gross": 23047939, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Apr 08 1998", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 27, "IMDB Rating": 4.8, "IMDB Votes": 2072}, {"Title": "Paranormal Activity", "US Gross": 107918810, "Worldwide Gross": 193770453, "US DVD Sales": 14051496, "Production Budget": 15000, "Release Date": "Sep 25 2009", "MPAA Rating": "R", "Running Time min": 85, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Oren Peli", "Rotten Tomatoes Rating": 82, "IMDB Rating": 6.7, "IMDB Votes": 53455}, {"Title": "The Pineapple Express", "US Gross": 87341380, "Worldwide Gross": 100941380, "US DVD Sales": 45217362, "Production Budget": 26000000, "Release Date": "Aug 06 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "David Gordon Green", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Pinocchio", "US Gross": 3681811, "Worldwide Gross": 31681811, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Dec 25 2002", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Roberto Benigni", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.5, "IMDB Votes": 3215}, {"Title": "Pandaemonium", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jun 29 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 496}, {"Title": "Pandorum", "US Gross": 10330853, "Worldwide Gross": 17033431, "US DVD Sales": 4018696, "Production Budget": 40000000, "Release Date": "Sep 25 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Overture Films", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 28, "IMDB Rating": 6.9, "IMDB Votes": 29428}, {"Title": "The Punisher", "US Gross": 33664370, "Worldwide Gross": 54664370, "US DVD Sales": null, "Production Budget": 33000000, "Release Date": "Apr 16 2004", "MPAA Rating": "R", "Running Time min": 124, "Distributor": "Lionsgate", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 6.4, "IMDB Votes": 50482}, {"Title": "Pokemon 2000", "US Gross": 43746923, "Worldwide Gross": 133946923, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jul 21 2000", "MPAA Rating": "G", "Running Time min": 99, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Pokemon 3: The Movie", "US Gross": 17052128, "Worldwide Gross": 68452128, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Apr 06 2001", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 3.5, "IMDB Votes": 2577}, {"Title": "The Polar Express", "US Gross": 181320597, "Worldwide Gross": 305420597, "US DVD Sales": null, "Production Budget": 170000000, "Release Date": "Nov 10 2004", "MPAA Rating": "G", "Running Time min": 99, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 56, "IMDB Rating": 6.7, "IMDB Votes": 28550}, {"Title": "Along Came Polly", "US Gross": 88073507, "Worldwide Gross": 170360435, "US DVD Sales": null, "Production Budget": 42000000, "Release Date": "Jan 16 2004", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.8, "IMDB Votes": 38276}, {"Title": "Gake no ue no Ponyo", "US Gross": 15090399, "Worldwide Gross": 199090399, "US DVD Sales": 12626319, "Production Budget": 34000000, "Release Date": "Aug 14 2009", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 13821}, {"Title": "Pootie Tang", "US Gross": 3293258, "Worldwide Gross": 3293258, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Jun 29 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 27, "IMDB Rating": 4.5, "IMDB Votes": 6183}, {"Title": "Poseidon", "US Gross": 60674817, "Worldwide Gross": 181674817, "US DVD Sales": 19732418, "Production Budget": 160000000, "Release Date": "May 12 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Wolfgang Petersen", "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.6, "IMDB Votes": 35930}, {"Title": "Possession", "US Gross": 10103647, "Worldwide Gross": 14805812, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Aug 16 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Neil LaBute", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.4, "IMDB Votes": 6789}, {"Title": "Peter Pan: Return to Neverland", "US Gross": 48430258, "Worldwide Gross": 109862682, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Feb 15 2002", "MPAA Rating": "G", "Running Time min": 72, "Distributor": "Walt Disney Pictures", "Source": "Based on Play", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 46, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Practical Magic", "US Gross": 46850558, "Worldwide Gross": 68336997, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Oct 16 1998", "MPAA Rating": "PG-13", "Running Time min": 105, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Griffin Dunne", "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.5, "IMDB Votes": 20196}, {"Title": "The Devil Wears Prada", "US Gross": 124740460, "Worldwide Gross": 326551094, "US DVD Sales": 95856827, "Production Budget": 35000000, "Release Date": "Jun 30 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "David Frankel", "Rotten Tomatoes Rating": 75, "IMDB Rating": 6.8, "IMDB Votes": 66627}, {"Title": "The Boat That Rocked", "US Gross": 8017467, "Worldwide Gross": 37472651, "US DVD Sales": 1374953, "Production Budget": 50000000, "Release Date": "Nov 13 2009", "MPAA Rating": "R", "Running Time min": 134, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 25415}, {"Title": "Paparazzi", "US Gross": 15712072, "Worldwide Gross": 16612072, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Sep 03 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 18, "IMDB Rating": 5.7, "IMDB Votes": 9058}, {"Title": "Primary Colors", "US Gross": 39017984, "Worldwide Gross": 39017984, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Mar 20 1998", "MPAA Rating": "R", "Running Time min": 143, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Dramatization", "Director": "Mike Nichols", "Rotten Tomatoes Rating": 80, "IMDB Rating": 6.7, "IMDB Votes": 15340}, {"Title": "Precious (Based on the Novel Push by Sapphire)", "US Gross": 47566524, "Worldwide Gross": 63471431, "US DVD Sales": 20130576, "Production Budget": 10000000, "Release Date": "Nov 06 2009", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Lee Daniels", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 24504}, {"Title": "Pride and Glory", "US Gross": 15740721, "Worldwide Gross": 43440721, "US DVD Sales": 11495577, "Production Budget": 30000000, "Release Date": "Oct 24 2008", "MPAA Rating": "R", "Running Time min": 129, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 34, "IMDB Rating": 6.7, "IMDB Votes": 24596}, {"Title": "Pride and Prejudice", "US Gross": 38372662, "Worldwide Gross": 120918508, "US DVD Sales": 53281347, "Production Budget": 28000000, "Release Date": "Nov 11 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Joe Wright", "Rotten Tomatoes Rating": 85, "IMDB Rating": 5.5, "IMDB Votes": 1230}, {"Title": "The Road to Perdition", "US Gross": 104054514, "Worldwide Gross": 181054514, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jul 12 2002", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "Dreamworks SKG", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Sam Mendes", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Predators", "US Gross": 51920690, "Worldwide Gross": 124549380, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 09 2010", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.9, "IMDB Votes": 22257}, {"Title": "Prefontaine", "US Gross": 590817, "Worldwide Gross": 590817, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Jan 24 1997", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.2, "IMDB Votes": 2580}, {"Title": "Perfume: The Story of a Murderer", "US Gross": 2223293, "Worldwide Gross": 132180323, "US DVD Sales": 7529604, "Production Budget": 63700000, "Release Date": "Dec 27 2006", "MPAA Rating": "R", "Running Time min": 147, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Tom Tykwer", "Rotten Tomatoes Rating": 58, "IMDB Rating": 7.5, "IMDB Votes": 51704}, {"Title": "The Prince & Me", "US Gross": 28165882, "Worldwide Gross": 29356757, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Apr 02 2004", "MPAA Rating": "PG", "Running Time min": 111, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Martha Coolidge", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 9547}, {"Title": "The Perfect Man", "US Gross": 16535005, "Worldwide Gross": 19535005, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jun 17 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 5.1, "IMDB Votes": 7278}, {"Title": "The Pursuit of Happyness", "US Gross": 162586036, "Worldwide Gross": 306086036, "US DVD Sales": 90857430, "Production Budget": 55000000, "Release Date": "Dec 15 2006", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Gabriele Muccino", "Rotten Tomatoes Rating": 66, "IMDB Rating": 7.8, "IMDB Votes": 77939}, {"Title": "Primer", "US Gross": 424760, "Worldwide Gross": 565846, "US DVD Sales": null, "Production Budget": 7000, "Release Date": "Oct 08 2004", "MPAA Rating": "PG-13", "Running Time min": 80, "Distributor": "ThinkFilm", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 17454}, {"Title": "Pearl Harbor", "US Gross": 198539855, "Worldwide Gross": 449239855, "US DVD Sales": null, "Production Budget": 151500000, "Release Date": "May 25 2001", "MPAA Rating": "PG-13", "Running Time min": 183, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "Michael Bay", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.4, "IMDB Votes": 96186}, {"Title": "Premonition", "US Gross": 47852604, "Worldwide Gross": 81461343, "US DVD Sales": 33241945, "Production Budget": 20000000, "Release Date": "Mar 16 2007", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Prince of Egypt", "US Gross": 101413188, "Worldwide Gross": 218600000, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 18 1998", "MPAA Rating": "PG", "Running Time min": 97, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Dramatization", "Director": "Steve Hickner", "Rotten Tomatoes Rating": 79, "IMDB Rating": 6.8, "IMDB Votes": 24569}, {"Title": "The Producers: The Movie Musical", "US Gross": 19398532, "Worldwide Gross": 32952995, "US DVD Sales": 5338452, "Production Budget": 45000000, "Release Date": "Dec 16 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Prom Night", "US Gross": 43869350, "Worldwide Gross": 57109687, "US DVD Sales": 8497205, "Production Budget": 18000000, "Release Date": "Apr 11 2008", "MPAA Rating": "PG-13", "Running Time min": 85, "Distributor": "Sony/Screen Gems", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 5.1, "IMDB Votes": 4263}, {"Title": "Proof", "US Gross": 7535331, "Worldwide Gross": 8284331, "US DVD Sales": 9239421, "Production Budget": 20000000, "Release Date": "Sep 16 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Madden", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.9, "IMDB Votes": 18622}, {"Title": "Panic Room", "US Gross": 95308367, "Worldwide Gross": 196308367, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Mar 29 2002", "MPAA Rating": "R", "Running Time min": 112, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "David Fincher", "Rotten Tomatoes Rating": 76, "IMDB Rating": 6.9, "IMDB Votes": 68737}, {"Title": "The Proposal", "US Gross": 163958031, "Worldwide Gross": 317358031, "US DVD Sales": 83691948, "Production Budget": 40000000, "Release Date": "Jun 19 2009", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Anne Fletcher", "Rotten Tomatoes Rating": 43, "IMDB Rating": 5.4, "IMDB Votes": 397}, {"Title": "Prince of Persia: Sands of Time", "US Gross": 90755643, "Worldwide Gross": 335055643, "US DVD Sales": null, "Production Budget": 200000000, "Release Date": "May 28 2010", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Walt Disney Pictures", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Mike Newell", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Prestige", "US Gross": 53089891, "Worldwide Gross": 107896006, "US DVD Sales": 45394364, "Production Budget": 40000000, "Release Date": "Oct 20 2006", "MPAA Rating": "PG-13", "Running Time min": 131, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "Christopher Nolan", "Rotten Tomatoes Rating": 75, "IMDB Rating": 8.4, "IMDB Votes": 207322}, {"Title": "The Party's Over", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Oct 24 2003", "MPAA Rating": null, "Running Time min": null, "Distributor": "Film Movement", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Postman", "US Gross": 17650704, "Worldwide Gross": 17650704, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Dec 25 1997", "MPAA Rating": "R", "Running Time min": 177, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Kevin Costner", "Rotten Tomatoes Rating": 10, "IMDB Rating": 5.5, "IMDB Votes": 24045}, {"Title": "Psycho Beach Party", "US Gross": 267972, "Worldwide Gross": 267972, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Aug 04 2000", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 6, "IMDB Votes": 3085}, {"Title": "Psycho", "US Gross": 21541218, "Worldwide Gross": 37226218, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 04 1998", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Gus Van Sant", "Rotten Tomatoes Rating": 35, "IMDB Rating": 4.5, "IMDB Votes": 19769}, {"Title": "The Patriot", "US Gross": 113330342, "Worldwide Gross": 215300000, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Jun 28 2000", "MPAA Rating": "R", "Running Time min": 165, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Roland Emmerich", "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.9, "IMDB Votes": 78302}, {"Title": "Public Enemies", "US Gross": 97104620, "Worldwide Gross": 210379983, "US DVD Sales": 35026854, "Production Budget": 102500000, "Release Date": "Jul 01 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Michael Mann", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.1, "IMDB Votes": 71323}, {"Title": "The Powerpuff Girls", "US Gross": 11411644, "Worldwide Gross": 16425701, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jul 03 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 3234}, {"Title": "Pulse", "US Gross": 20264436, "Worldwide Gross": 29771485, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Aug 11 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein/Dimension", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 5, "IMDB Votes": 846}, {"Title": "Punch-Drunk Love", "US Gross": 17791031, "Worldwide Gross": 24591031, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Oct 11 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Paul Thomas Anderson", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.4, "IMDB Votes": 49786}, {"Title": "Punisher: War Zone", "US Gross": 8050977, "Worldwide Gross": 8199130, "US DVD Sales": 10872355, "Production Budget": 35000000, "Release Date": "Dec 05 2008", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Lionsgate", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 6.1, "IMDB Votes": 20865}, {"Title": "Push", "US Gross": 31811527, "Worldwide Gross": 44411527, "US DVD Sales": 16118548, "Production Budget": 38000000, "Release Date": "Feb 06 2009", "MPAA Rating": "PG-13", "Running Time min": 111, "Distributor": "Summit Entertainment", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 6, "IMDB Votes": 26623}, {"Title": "Pushing Tin", "US Gross": 8408835, "Worldwide Gross": 8408835, "US DVD Sales": null, "Production Budget": 33000000, "Release Date": "Apr 23 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Magazine Article", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mike Newell", "Rotten Tomatoes Rating": 49, "IMDB Rating": 5.9, "IMDB Votes": 16160}, {"Title": "The Painted Veil", "US Gross": 8060487, "Worldwide Gross": 15118795, "US DVD Sales": 7574035, "Production Budget": 19400000, "Release Date": "Dec 20 2006", "MPAA Rating": "PG-13", "Running Time min": 125, "Distributor": "Warner Independent", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.6, "IMDB Votes": 26331}, {"Title": "Pay it Forward", "US Gross": 33508922, "Worldwide Gross": 33508922, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Oct 20 2000", "MPAA Rating": "PG-13", "Running Time min": 123, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Mimi Leder", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.8, "IMDB Votes": 36762}, {"Title": "Queen of the Damned", "US Gross": 30307804, "Worldwide Gross": 30307804, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Feb 22 2002", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.7, "IMDB Votes": 20268}, {"Title": "The Quiet American", "US Gross": 12987647, "Worldwide Gross": 12987647, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Nov 22 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Phillip Noyce", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.2, "IMDB Votes": 14285}, {"Title": "All the Queen's Men", "US Gross": 22723, "Worldwide Gross": 22723, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 25 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Strand", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.5, "IMDB Votes": 1591}, {"Title": "Quarantine", "US Gross": 31691811, "Worldwide Gross": 36091811, "US DVD Sales": 13657408, "Production Budget": 12000000, "Release Date": "Oct 10 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "John Erick Dowdle", "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.1, "IMDB Votes": 21939}, {"Title": "The Queen", "US Gross": 56441711, "Worldwide Gross": 122840603, "US DVD Sales": 29161789, "Production Budget": 15000000, "Release Date": "Sep 30 2006", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Miramax", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Stephen Frears", "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.6, "IMDB Votes": 34785}, {"Title": "Quest for Camelot", "US Gross": 22772500, "Worldwide Gross": 38172500, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "May 15 1998", "MPAA Rating": "G", "Running Time min": 85, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 5, "IMDB Votes": 3053}, {"Title": "The Quiet", "US Gross": 381420, "Worldwide Gross": 381420, "US DVD Sales": null, "Production Budget": 900000, "Release Date": "Aug 25 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 7689}, {"Title": "Quinceanera", "US Gross": 1692693, "Worldwide Gross": 2522787, "US DVD Sales": null, "Production Budget": 400000, "Release Date": "Aug 02 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 2577}, {"Title": "Rabbit-Proof Fence", "US Gross": 6199600, "Worldwide Gross": 16199600, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "Nov 29 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Phillip Noyce", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.6, "IMDB Votes": 13241}, {"Title": "Radio", "US Gross": 52333738, "Worldwide Gross": 53293628, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Oct 24 2003", "MPAA Rating": "PG", "Running Time min": 109, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 6.9, "IMDB Votes": 12070}, {"Title": "The Rainmaker", "US Gross": 45916769, "Worldwide Gross": 45916769, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Nov 21 1997", "MPAA Rating": "PG-13", "Running Time min": 135, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.9, "IMDB Votes": 20514}, {"Title": "Rambo", "US Gross": 42754105, "Worldwide Gross": 116754105, "US DVD Sales": 38751777, "Production Budget": 47500000, "Release Date": "Jan 25 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Sylvester Stallone", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 82600}, {"Title": "Random Hearts", "US Gross": 31054924, "Worldwide Gross": 63200000, "US DVD Sales": null, "Production Budget": 64000000, "Release Date": "Oct 08 1999", "MPAA Rating": "R", "Running Time min": 133, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sydney Pollack", "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.8, "IMDB Votes": 11100}, {"Title": "Rugrats in Paris", "US Gross": 76501438, "Worldwide Gross": 103284813, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Nov 17 2000", "MPAA Rating": "G", "Running Time min": 79, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Rugrats Go Wild", "US Gross": 39402572, "Worldwide Gross": 55443032, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jun 13 2003", "MPAA Rating": "PG", "Running Time min": 84, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 5, "IMDB Votes": 1847}, {"Title": "Ratatouille", "US Gross": 206445654, "Worldwide Gross": 620495432, "US DVD Sales": 189134287, "Production Budget": 150000000, "Release Date": "Jun 29 2007", "MPAA Rating": "G", "Running Time min": 111, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Brad Bird", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.1, "IMDB Votes": 131929}, {"Title": "Ray", "US Gross": 75305995, "Worldwide Gross": 125305995, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Oct 29 2004", "MPAA Rating": "PG-13", "Running Time min": 152, "Distributor": "Universal", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Taylor Hackford", "Rotten Tomatoes Rating": 81, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "BloodRayne", "US Gross": 2405420, "Worldwide Gross": 2405420, "US DVD Sales": 10828222, "Production Budget": 25000000, "Release Date": "Jan 06 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Romar", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Uwe Boll", "Rotten Tomatoes Rating": 4, "IMDB Rating": 2.7, "IMDB Votes": 20137}, {"Title": "Rollerball", "US Gross": 18990542, "Worldwide Gross": 25852508, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Feb 08 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "John McTiernan", "Rotten Tomatoes Rating": 3, "IMDB Rating": 2.8, "IMDB Votes": 13827}, {"Title": "Robin Hood", "US Gross": 105269730, "Worldwide Gross": 310885538, "US DVD Sales": null, "Production Budget": 210000000, "Release Date": "May 14 2010", "MPAA Rating": "PG-13", "Running Time min": 140, "Distributor": "Universal", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.9, "IMDB Votes": 34501}, {"Title": "Robots", "US Gross": 128200012, "Worldwide Gross": 260700012, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Mar 11 2005", "MPAA Rating": "PG", "Running Time min": 89, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Chris Wedge", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.4, "IMDB Votes": 27361}, {"Title": "A Room for Romeo Brass", "US Gross": 20097, "Worldwide Gross": 20097, "US DVD Sales": null, "Production Budget": 5250000, "Release Date": "Oct 27 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Shane Meadows", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 2393}, {"Title": "Runaway Bride", "US Gross": 152257509, "Worldwide Gross": 308007919, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Jul 30 1999", "MPAA Rating": "PG", "Running Time min": 116, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Garry Marshall", "Rotten Tomatoes Rating": 45, "IMDB Rating": 5.2, "IMDB Votes": 28497}, {"Title": "Racing Stripes", "US Gross": 49772522, "Worldwide Gross": 93772522, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jan 14 2005", "MPAA Rating": "PG", "Running Time min": 110, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 5.2, "IMDB Votes": 5086}, {"Title": "Rocky Balboa", "US Gross": 70269899, "Worldwide Gross": 155720088, "US DVD Sales": 34669384, "Production Budget": 24000000, "Release Date": "Dec 20 2006", "MPAA Rating": "PG", "Running Time min": 102, "Distributor": "MGM", "Source": null, "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Sylvester Stallone", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.4, "IMDB Votes": 63717}, {"Title": "The Road to El Dorado", "US Gross": 50802661, "Worldwide Gross": 65700000, "US DVD Sales": null, "Production Budget": 95000000, "Release Date": "Mar 31 2000", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "David Silverman", "Rotten Tomatoes Rating": 49, "IMDB Rating": 6.4, "IMDB Votes": 8876}, {"Title": "Riding Giants", "US Gross": 2276368, "Worldwide Gross": 3216111, "US DVD Sales": null, "Production Budget": 2600000, "Release Date": "Jul 09 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.7, "IMDB Votes": 2193}, {"Title": "Red Dragon", "US Gross": 92955420, "Worldwide Gross": 206455420, "US DVD Sales": null, "Production Budget": 78000000, "Release Date": "Oct 04 2002", "MPAA Rating": "R", "Running Time min": 125, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Brett Ratner", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.3, "IMDB Votes": 66386}, {"Title": "The Reader", "US Gross": 34192652, "Worldwide Gross": 106107610, "US DVD Sales": 12359754, "Production Budget": 33000000, "Release Date": "Dec 10 2008", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "Weinstein Co.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Stephen Daldry", "Rotten Tomatoes Rating": 61, "IMDB Rating": 7.7, "IMDB Votes": 46984}, {"Title": "The Reaping", "US Gross": 25126214, "Worldwide Gross": 62226214, "US DVD Sales": 19812272, "Production Budget": 40000000, "Release Date": "Apr 05 2007", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Stephen Hopkins", "Rotten Tomatoes Rating": 8, "IMDB Rating": 5.6, "IMDB Votes": 19881}, {"Title": "Rebound", "US Gross": 16809014, "Worldwide Gross": 17492014, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jul 01 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Steve Carr", "Rotten Tomatoes Rating": 14, "IMDB Rating": 4.7, "IMDB Votes": 4485}, {"Title": "Recess: School's Out", "US Gross": 36696761, "Worldwide Gross": 44451470, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 16 2001", "MPAA Rating": "G", "Running Time min": 83, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.2, "IMDB Votes": 2176}, {"Title": "Redacted", "US Gross": 65388, "Worldwide Gross": 65388, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Nov 16 2007", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "Magnolia Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.1, "IMDB Votes": 5759}, {"Title": "Red-Eye", "US Gross": 57891803, "Worldwide Gross": 95891803, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Aug 19 2005", "MPAA Rating": "PG-13", "Running Time min": 85, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Wes Craven", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 42489}, {"Title": "Reign Over Me", "US Gross": 19661987, "Worldwide Gross": 20081987, "US DVD Sales": 16021076, "Production Budget": 20000000, "Release Date": "Mar 23 2007", "MPAA Rating": "R", "Running Time min": 128, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Mike Binder", "Rotten Tomatoes Rating": 63, "IMDB Rating": 7.7, "IMDB Votes": 39234}, {"Title": "The Relic", "US Gross": 33956608, "Worldwide Gross": 33956608, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jan 10 1997", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Peter Hyams", "Rotten Tomatoes Rating": 32, "IMDB Rating": 5.4, "IMDB Votes": 10249}, {"Title": "Religulous", "US Gross": 13011160, "Worldwide Gross": 13136074, "US DVD Sales": 7486708, "Production Budget": 2500000, "Release Date": "Oct 01 2008", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Larry Charles", "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.8, "IMDB Votes": 23094}, {"Title": "Remember Me", "US Gross": 19068240, "Worldwide Gross": 55343435, "US DVD Sales": 9952465, "Production Budget": 16000000, "Release Date": "Mar 12 2010", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Summit Entertainment", "Source": null, "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 28, "IMDB Rating": 7, "IMDB Votes": 16319}, {"Title": "Remember Me, My Love", "US Gross": 223878, "Worldwide Gross": 223878, "US DVD Sales": null, "Production Budget": 6700000, "Release Date": "Sep 03 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "IDP Distribution", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Gabriele Muccino", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 16319}, {"Title": "Rent", "US Gross": 29077547, "Worldwide Gross": 31670620, "US DVD Sales": 31412380, "Production Budget": 40000000, "Release Date": "Nov 23 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Musical/Opera", "Major Genre": "Musical", "Creative Type": "Historical Fiction", "Director": "Chris Columbus", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.9, "IMDB Votes": 22605}, {"Title": "The Replacements", "US Gross": 44737059, "Worldwide Gross": 50054511, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Aug 11 2000", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Howard Deutch", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.2, "IMDB Votes": 21542}, {"Title": "The Replacement Killers", "US Gross": 19035741, "Worldwide Gross": 19035741, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Feb 06 1998", "MPAA Rating": "R", "Running Time min": 86, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Antoine Fuqua", "Rotten Tomatoes Rating": 39, "IMDB Rating": 5.9, "IMDB Votes": 13905}, {"Title": "Resident Evil: Apocalypse", "US Gross": 50740078, "Worldwide Gross": 128940078, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Sep 10 2004", "MPAA Rating": "R", "Running Time min": 94, "Distributor": "Sony Pictures", "Source": "Based on Game", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 52753}, {"Title": "Resident Evil: Extinction", "US Gross": 50648679, "Worldwide Gross": 146162920, "US DVD Sales": 34217549, "Production Budget": 45000000, "Release Date": "Sep 21 2007", "MPAA Rating": "R", "Running Time min": 95, "Distributor": "Sony/Screen Gems", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Russell Mulcahy", "Rotten Tomatoes Rating": 22, "IMDB Rating": 6.2, "IMDB Votes": 49502}, {"Title": "Resident Evil: Afterlife 3D", "US Gross": 46368993, "Worldwide Gross": 149568993, "US DVD Sales": null, "Production Budget": 57500000, "Release Date": "Sep 10 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Based on Game", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Paul Anderson", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Resident Evil", "US Gross": 40119709, "Worldwide Gross": 103787401, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Mar 15 2002", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Sony Pictures", "Source": "Based on Game", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Paul Anderson", "Rotten Tomatoes Rating": 34, "IMDB Rating": 6.4, "IMDB Votes": 68342}, {"Title": "Return to Me", "US Gross": 32662299, "Worldwide Gross": 32662299, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Apr 07 2000", "MPAA Rating": "PG", "Running Time min": 116, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.6, "IMDB Votes": 9565}, {"Title": "Revolutionary Road", "US Gross": 22911480, "Worldwide Gross": 76989671, "US DVD Sales": 7642600, "Production Budget": 35000000, "Release Date": "Dec 26 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Sam Mendes", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.6, "IMDB Votes": 45887}, {"Title": "Be Kind Rewind", "US Gross": 11175164, "Worldwide Gross": 28505302, "US DVD Sales": 5162454, "Production Budget": 20000000, "Release Date": "Feb 22 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Michel Gondry", "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.6, "IMDB Votes": 42470}, {"Title": "Reign of Fire", "US Gross": 43061982, "Worldwide Gross": 82150183, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Feb 19 2002", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.9, "IMDB Votes": 38414}, {"Title": "Reindeer Games", "US Gross": 23360779, "Worldwide Gross": 23360779, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Feb 25 2000", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Frankenheimer", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 16822}, {"Title": "Rachel Getting Married", "US Gross": 12796277, "Worldwide Gross": 13326280, "US DVD Sales": 6635346, "Production Budget": 12000000, "Release Date": "Oct 03 2008", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Jonathan Demme", "Rotten Tomatoes Rating": 86, "IMDB Rating": 6.9, "IMDB Votes": 20451}, {"Title": "The Rugrats Movie", "US Gross": 100494685, "Worldwide Gross": 140894685, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Nov 20 1998", "MPAA Rating": "G", "Running Time min": 79, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 57, "IMDB Rating": 5.4, "IMDB Votes": 4857}, {"Title": "Riding in Cars with Boys", "US Gross": 29781453, "Worldwide Gross": 29781453, "US DVD Sales": null, "Production Budget": 47000000, "Release Date": "Oct 19 2001", "MPAA Rating": "PG-13", "Running Time min": 131, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Penny Marshall", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.2, "IMDB Votes": 11895}, {"Title": "Ride With the Devil", "US Gross": 630779, "Worldwide Gross": 630779, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Nov 24 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "USA Films", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Ang Lee", "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.4, "IMDB Votes": 1873}, {"Title": "The Ring Two", "US Gross": 75941727, "Worldwide Gross": 161941727, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Mar 18 2005", "MPAA Rating": "PG-13", "Running Time min": 111, "Distributor": "Dreamworks SKG", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 5.1, "IMDB Votes": 28408}, {"Title": "Rize", "US Gross": 3278611, "Worldwide Gross": 4462763, "US DVD Sales": null, "Production Budget": 700000, "Release Date": "Jun 24 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 2052}, {"Title": "The Adventures of Rocky & Bullwinkle", "US Gross": 26000610, "Worldwide Gross": 35129610, "US DVD Sales": null, "Production Budget": 76000000, "Release Date": "Jun 30 2000", "MPAA Rating": "PG", "Running Time min": 91, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 4.1, "IMDB Votes": 10320}, {"Title": "All the Real Girls", "US Gross": 549666, "Worldwide Gross": 703020, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Feb 14 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": "David Gordon Green", "Rotten Tomatoes Rating": 71, "IMDB Rating": 7.1, "IMDB Votes": 5632}, {"Title": "Real Women Have Curves", "US Gross": 5853194, "Worldwide Gross": 5853194, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Oct 18 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Newmarket Films", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 83, "IMDB Rating": 7, "IMDB Votes": 4396}, {"Title": "Son of Rambow: A Home Movie", "US Gross": 1785505, "Worldwide Gross": 10573083, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "May 02 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Romance and Cigarettes", "US Gross": 551002, "Worldwide Gross": 3231251, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Sep 07 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Borotoro", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Turturro", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 5362}, {"Title": "Reno 911!: Miami", "US Gross": 20342161, "Worldwide Gross": 20342161, "US DVD Sales": 16323972, "Production Budget": 10000000, "Release Date": "Feb 23 2007", "MPAA Rating": "R", "Running Time min": 81, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 5.8, "IMDB Votes": 15684}, {"Title": "Rounders", "US Gross": 22921898, "Worldwide Gross": 22921898, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Sep 11 1998", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Dahl", "Rotten Tomatoes Rating": 64, "IMDB Rating": 7.3, "IMDB Votes": 45439}, {"Title": "Rendition", "US Gross": 9736045, "Worldwide Gross": 20437142, "US DVD Sales": 6007008, "Production Budget": 27500000, "Release Date": "Oct 19 2007", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Gavin Hood", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.9, "IMDB Votes": 23223}, {"Title": "The Rocker", "US Gross": 6409528, "Worldwide Gross": 8767338, "US DVD Sales": 7970409, "Production Budget": 15000000, "Release Date": "Aug 20 2008", "MPAA Rating": "PG-13", "Running Time min": 102, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Cattaneo", "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.3, "IMDB Votes": 11859}, {"Title": "Rock Star", "US Gross": 16991902, "Worldwide Gross": 19317765, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Sep 07 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Stephen Herek", "Rotten Tomatoes Rating": 52, "IMDB Rating": 5.8, "IMDB Votes": 15806}, {"Title": "The Rookie", "US Gross": 75600072, "Worldwide Gross": 80693537, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Mar 29 2002", "MPAA Rating": "G", "Running Time min": 128, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 82, "IMDB Rating": 5.5, "IMDB Votes": 8453}, {"Title": "Roll Bounce", "US Gross": 17380866, "Worldwide Gross": 17500866, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Sep 23 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Malcolm D. Lee", "Rotten Tomatoes Rating": 64, "IMDB Rating": 5, "IMDB Votes": 3167}, {"Title": "Romeo Must Die", "US Gross": 55973336, "Worldwide Gross": 91036760, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 22 2000", "MPAA Rating": "R", "Running Time min": 114, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Andrzej Bartkowiak", "Rotten Tomatoes Rating": 33, "IMDB Rating": 5.9, "IMDB Votes": 25309}, {"Title": "Ronin", "US Gross": 41610884, "Worldwide Gross": 41610884, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Sep 25 1998", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Frankenheimer", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.2, "IMDB Votes": 57484}, {"Title": "The Ballad of Jack and Rose", "US Gross": 712294, "Worldwide Gross": 712294, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Mar 25 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 5223}, {"Title": "Red Planet", "US Gross": 17480890, "Worldwide Gross": 33463969, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Nov 10 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.3, "IMDB Votes": 20989}, {"Title": "Requiem for a Dream", "US Gross": 3635482, "Worldwide Gross": 7390108, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Oct 06 2000", "MPAA Rating": "Open", "Running Time min": null, "Distributor": "Artisan", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Darren Aronofsky", "Rotten Tomatoes Rating": 78, "IMDB Rating": 8.5, "IMDB Votes": 185226}, {"Title": "Rat Race", "US Gross": 56607223, "Worldwide Gross": 86607223, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Aug 17 2001", "MPAA Rating": "PG-13", "Running Time min": 112, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jerry Zucker", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.4, "IMDB Votes": 40087}, {"Title": "Rescue Dawn", "US Gross": 5490423, "Worldwide Gross": 7037886, "US DVD Sales": 24745520, "Production Budget": 10000000, "Release Date": "Jul 04 2007", "MPAA Rating": "PG-13", "Running Time min": 125, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Werner Herzog", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 37764}, {"Title": "The Real Cancun", "US Gross": 3816594, "Worldwide Gross": 3816594, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Apr 25 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Based on TV", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 2.3, "IMDB Votes": 3211}, {"Title": "Restless", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jan 28 2011", "MPAA Rating": null, "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 300}, {"Title": "Remember the Titans", "US Gross": 115654751, "Worldwide Gross": 136706683, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 29 2000", "MPAA Rating": "PG", "Running Time min": 113, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Boaz Yakin", "Rotten Tomatoes Rating": 72, "IMDB Rating": 7.5, "IMDB Votes": 49844}, {"Title": "Righteous Kill", "US Gross": 40081410, "Worldwide Gross": 76781410, "US DVD Sales": 16209689, "Production Budget": 60000000, "Release Date": "Sep 12 2008", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Overture Films", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Jon Avnet", "Rotten Tomatoes Rating": 20, "IMDB Rating": 6, "IMDB Votes": 34641}, {"Title": "Road Trip", "US Gross": 68525609, "Worldwide Gross": 119739110, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "May 19 2000", "MPAA Rating": "R", "Running Time min": 94, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Todd Phillips", "Rotten Tomatoes Rating": 59, "IMDB Rating": 6.4, "IMDB Votes": 44702}, {"Title": "The Ruins", "US Gross": 17432844, "Worldwide Gross": 22177122, "US DVD Sales": 10610865, "Production Budget": 25000000, "Release Date": "Apr 04 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 47, "IMDB Rating": 6, "IMDB Votes": 23752}, {"Title": "Rules of Engagement", "US Gross": 61322858, "Worldwide Gross": 71719931, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Apr 07 2000", "MPAA Rating": "R", "Running Time min": 127, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "William Friedkin", "Rotten Tomatoes Rating": 37, "IMDB Rating": 6.2, "IMDB Votes": 18462}, {"Title": "The Rundown", "US Gross": 47641743, "Worldwide Gross": 80831893, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Sep 26 2003", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Peter Berg", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 30855}, {"Title": "Running Scared", "US Gross": 6855137, "Worldwide Gross": 8345277, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Feb 24 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 7.5, "IMDB Votes": 39447}, {"Title": "Running With Scissors", "US Gross": 6775659, "Worldwide Gross": 7213629, "US DVD Sales": 1877732, "Production Budget": 12000000, "Release Date": "Oct 20 2006", "MPAA Rating": "R", "Running Time min": 116, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 6, "IMDB Votes": 12926}, {"Title": "Rush Hour 2", "US Gross": 226164286, "Worldwide Gross": 347425832, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Aug 03 2001", "MPAA Rating": "PG-13", "Running Time min": 90, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Brett Ratner", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.4, "IMDB Votes": 52049}, {"Title": "Rush Hour 3", "US Gross": 140125968, "Worldwide Gross": 253025968, "US DVD Sales": 40854922, "Production Budget": 180000000, "Release Date": "Aug 10 2007", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Brett Ratner", "Rotten Tomatoes Rating": 19, "IMDB Rating": 6, "IMDB Votes": 39312}, {"Title": "Rush Hour", "US Gross": 141186864, "Worldwide Gross": 245300000, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 18 1998", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Brett Ratner", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.8, "IMDB Votes": 55248}, {"Title": "Rushmore", "US Gross": 17105219, "Worldwide Gross": 19080435, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 11 1998", "MPAA Rating": "R", "Running Time min": 89, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Wes Anderson", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.8, "IMDB Votes": 53192}, {"Title": "R.V.", "US Gross": 71724497, "Worldwide Gross": 87524497, "US DVD Sales": 32041099, "Production Budget": 55000000, "Release Date": "Apr 28 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Barry Sonnenfeld", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Ravenous", "US Gross": 2062406, "Worldwide Gross": 2062406, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Mar 19 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.9, "IMDB Votes": 15804}, {"Title": "Raise Your Voice", "US Gross": 10411980, "Worldwide Gross": 14811980, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 08 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 5.2, "IMDB Votes": 8634}, {"Title": "Hotel Rwanda", "US Gross": 23519128, "Worldwide Gross": 33919128, "US DVD Sales": null, "Production Budget": 17500000, "Release Date": "Dec 22 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 90, "IMDB Rating": 8.3, "IMDB Votes": 92106}, {"Title": "Sahara", "US Gross": 68671925, "Worldwide Gross": 121671925, "US DVD Sales": null, "Production Budget": 145000000, "Release Date": "Apr 08 2005", "MPAA Rating": "PG-13", "Running Time min": 123, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 39, "IMDB Rating": 5.9, "IMDB Votes": 30739}, {"Title": "The Saint", "US Gross": 61363304, "Worldwide Gross": 169400000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Apr 04 1997", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Phillip Noyce", "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.9, "IMDB Votes": 27413}, {"Title": "The Salon", "US Gross": 139084, "Worldwide Gross": 139084, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "May 11 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Freestyle Releasing", "Source": "Based on Play", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 3.5, "IMDB Votes": 308}, {"Title": "I Am Sam", "US Gross": 40270895, "Worldwide Gross": 40270895, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Dec 28 2001", "MPAA Rating": "PG-13", "Running Time min": 132, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 34, "IMDB Rating": 7.4, "IMDB Votes": 36448}, {"Title": "The Salton Sea", "US Gross": 676698, "Worldwide Gross": 676698, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Apr 26 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "D.J. Caruso", "Rotten Tomatoes Rating": 63, "IMDB Rating": 7.1, "IMDB Votes": 16415}, {"Title": "Sex and the City 2", "US Gross": 95347692, "Worldwide Gross": 288347692, "US DVD Sales": null, "Production Budget": 95000000, "Release Date": "May 27 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 3.9, "IMDB Votes": 13796}, {"Title": "Saved!", "US Gross": 8886160, "Worldwide Gross": 10102511, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "May 28 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 22784}, {"Title": "Saving Silverman", "US Gross": 19351569, "Worldwide Gross": 19351569, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Feb 09 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Dennis Dugan", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 18748}, {"Title": "Saw", "US Gross": 55185045, "Worldwide Gross": 103096345, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Oct 29 2004", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 48, "IMDB Rating": 7.7, "IMDB Votes": 112785}, {"Title": "Saw II", "US Gross": 87025093, "Worldwide Gross": 152925093, "US DVD Sales": 44699720, "Production Budget": 5000000, "Release Date": "Oct 28 2005", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Darren Lynn Bousman", "Rotten Tomatoes Rating": 36, "IMDB Rating": 6.8, "IMDB Votes": 76530}, {"Title": "Saw III", "US Gross": 80238724, "Worldwide Gross": 163876815, "US DVD Sales": 47153811, "Production Budget": 10000000, "Release Date": "Oct 27 2006", "MPAA Rating": "R", "Running Time min": 107, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Darren Lynn Bousman", "Rotten Tomatoes Rating": 25, "IMDB Rating": 6.3, "IMDB Votes": 60784}, {"Title": "Saw IV", "US Gross": 63300095, "Worldwide Gross": 134528909, "US DVD Sales": 31998452, "Production Budget": 10000000, "Release Date": "Oct 26 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Darren Lynn Bousman", "Rotten Tomatoes Rating": 17, "IMDB Rating": 6, "IMDB Votes": 44730}, {"Title": "Saw V", "US Gross": 56746769, "Worldwide Gross": 113146769, "US DVD Sales": 26535833, "Production Budget": 10800000, "Release Date": "Oct 24 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.7, "IMDB Votes": 31219}, {"Title": "Saw VI", "US Gross": 27693292, "Worldwide Gross": 61259697, "US DVD Sales": 8308717, "Production Budget": 11000000, "Release Date": "Oct 23 2009", "MPAA Rating": "R", "Running Time min": 91, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Kevin Greutert", "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.2, "IMDB Votes": 18091}, {"Title": "Say It Isn't So", "US Gross": 5516708, "Worldwide Gross": 5516708, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 23 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.6, "IMDB Votes": 7736}, {"Title": "Say Uncle", "US Gross": 5361, "Worldwide Gross": 5361, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jun 23 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "TLA Releasing", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 431}, {"Title": "The Adventures of Sharkboy and Lavagirl in 3-D", "US Gross": 39177684, "Worldwide Gross": 69425966, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Jun 10 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 20, "IMDB Rating": 3.6, "IMDB Votes": 5619}, {"Title": "Seabiscuit", "US Gross": 120277854, "Worldwide Gross": 148336445, "US DVD Sales": null, "Production Budget": 86000000, "Release Date": "Jul 25 2003", "MPAA Rating": "PG-13", "Running Time min": 141, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Gary Ross", "Rotten Tomatoes Rating": 77, "IMDB Rating": 7.4, "IMDB Votes": 31033}, {"Title": "A Scanner Darkly", "US Gross": 5501616, "Worldwide Gross": 7405084, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jul 07 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Independent", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Richard Linklater", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.2, "IMDB Votes": 41928}, {"Title": "Scary Movie 2", "US Gross": 71277420, "Worldwide Gross": 141189101, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Jul 04 2001", "MPAA Rating": "R", "Running Time min": 82, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Keenen Ivory Wayans", "Rotten Tomatoes Rating": 14, "IMDB Rating": 4.7, "IMDB Votes": 43941}, {"Title": "Scary Movie 3", "US Gross": 110000082, "Worldwide Gross": 155200000, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Oct 24 2003", "MPAA Rating": "PG-13", "Running Time min": 84, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "David Zucker", "Rotten Tomatoes Rating": 37, "IMDB Rating": 5.4, "IMDB Votes": 42829}, {"Title": "Scary Movie 4", "US Gross": 90710620, "Worldwide Gross": 178710620, "US DVD Sales": 22401247, "Production Budget": 40000000, "Release Date": "Apr 14 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Weinstein/Dimension", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "David Zucker", "Rotten Tomatoes Rating": 37, "IMDB Rating": 5, "IMDB Votes": 39542}, {"Title": "Scooby-Doo 2: Monsters Unleashed", "US Gross": 84185387, "Worldwide Gross": 181185387, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Mar 26 2004", "MPAA Rating": "PG", "Running Time min": 93, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Raja Gosnell", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.8, "IMDB Votes": 10749}, {"Title": "Scooby-Doo", "US Gross": 153294164, "Worldwide Gross": 276294164, "US DVD Sales": null, "Production Budget": 84000000, "Release Date": "Jun 14 2002", "MPAA Rating": "PG", "Running Time min": 86, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Raja Gosnell", "Rotten Tomatoes Rating": 28, "IMDB Rating": 4.7, "IMDB Votes": 26018}, {"Title": "About Schmidt", "US Gross": 65005217, "Worldwide Gross": 105823486, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Dec 13 2002", "MPAA Rating": "R", "Running Time min": 125, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Alexander Payne", "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.3, "IMDB Votes": 53760}, {"Title": "The School of Rock", "US Gross": 81261177, "Worldwide Gross": 131161177, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 03 2003", "MPAA Rating": "PG-13", "Running Time min": 108, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Richard Linklater", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 63188}, {"Title": "School for Scoundrels", "US Gross": 17807569, "Worldwide Gross": 17807569, "US DVD Sales": 13739501, "Production Budget": 20000000, "Release Date": "Sep 29 2006", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "MGM", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Todd Phillips", "Rotten Tomatoes Rating": 26, "IMDB Rating": 6, "IMDB Votes": 15536}, {"Title": "Scoop", "US Gross": 10525717, "Worldwide Gross": 39125717, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jul 28 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Focus/Rogue Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.8, "IMDB Votes": 30336}, {"Title": "The Score", "US Gross": 71069884, "Worldwide Gross": 113542091, "US DVD Sales": null, "Production Budget": 68000000, "Release Date": "Jul 13 2001", "MPAA Rating": "R", "Running Time min": 124, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Frank Oz", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.8, "IMDB Votes": 42616}, {"Title": "Scream", "US Gross": 103046663, "Worldwide Gross": 173046663, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 20 1996", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Wes Craven", "Rotten Tomatoes Rating": 81, "IMDB Rating": 2.9, "IMDB Votes": 217}, {"Title": "Scream 2", "US Gross": 101363301, "Worldwide Gross": 101363301, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Dec 12 1997", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Wes Craven", "Rotten Tomatoes Rating": 80, "IMDB Rating": 5.9, "IMDB Votes": 48196}, {"Title": "Scream 3", "US Gross": 89138076, "Worldwide Gross": 161838076, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Feb 04 2000", "MPAA Rating": "R", "Running Time min": 118, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Wes Craven", "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.3, "IMDB Votes": 38230}, {"Title": "The Scorpion King", "US Gross": 90580000, "Worldwide Gross": 164529000, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Apr 19 2002", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "Universal", "Source": "Spin-Off", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Chuck Russell", "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.3, "IMDB Votes": 30359}, {"Title": "George A. Romero's Survival of the Dead", "US Gross": 101740, "Worldwide Gross": 101740, "US DVD Sales": 943385, "Production Budget": 4200000, "Release Date": "May 28 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": null, "Major Genre": "Horror", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Stardust", "US Gross": 38634938, "Worldwide Gross": 135556675, "US DVD Sales": 25129402, "Production Budget": 70000000, "Release Date": "Aug 10 2007", "MPAA Rating": "PG-13", "Running Time min": 128, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Matthew Vaughn", "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.9, "IMDB Votes": 87883}, {"Title": "Mar adentro", "US Gross": 2086345, "Worldwide Gross": 39686345, "US DVD Sales": null, "Production Budget": 13300000, "Release Date": "Dec 17 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 466}, {"Title": "Selena", "US Gross": 35450113, "Worldwide Gross": 35450113, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 21 1997", "MPAA Rating": "PG", "Running Time min": 127, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.3, "IMDB Votes": 7996}, {"Title": "The Sentinel", "US Gross": 36280697, "Worldwide Gross": 77280697, "US DVD Sales": 17497571, "Production Budget": 60000000, "Release Date": "Apr 21 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 6.1, "IMDB Votes": 23567}, {"Title": "September Dawn", "US Gross": 901857, "Worldwide Gross": 901857, "US DVD Sales": null, "Production Budget": 10100000, "Release Date": "Aug 24 2007", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Black Diamond Pictures", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.5, "IMDB Votes": 1823}, {"Title": "You Got Served", "US Gross": 40066497, "Worldwide Gross": 48066497, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Jan 30 2004", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 2.6, "IMDB Votes": 17830}, {"Title": "Serving Sara", "US Gross": 16930185, "Worldwide Gross": 20146150, "US DVD Sales": null, "Production Budget": 29000000, "Release Date": "Aug 23 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 5, "IMDB Votes": 7973}, {"Title": "Session 9", "US Gross": 378176, "Worldwide Gross": 1619602, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Aug 10 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Brad Anderson", "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.8, "IMDB Votes": 14685}, {"Title": "Seven Years in Tibet", "US Gross": 37945884, "Worldwide Gross": 131445884, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Oct 10 1997", "MPAA Rating": "PG-13", "Running Time min": 139, "Distributor": "Sony Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Jean-Jacques Annaud", "Rotten Tomatoes Rating": 59, "IMDB Rating": 6.7, "IMDB Votes": 29020}, {"Title": "Sex and the City", "US Gross": 152647258, "Worldwide Gross": 416047258, "US DVD Sales": 85061666, "Production Budget": 57500000, "Release Date": "May 30 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 49, "IMDB Rating": 5.4, "IMDB Votes": 46837}, {"Title": "Swordfish", "US Gross": 69772969, "Worldwide Gross": 147080413, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 08 2001", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Dominic Sena", "Rotten Tomatoes Rating": 25, "IMDB Rating": 6.3, "IMDB Votes": 57952}, {"Title": "Something's Gotta Give", "US Gross": 124685242, "Worldwide Gross": 266685242, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Dec 12 2003", "MPAA Rating": "PG-13", "Running Time min": 128, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Nancy Meyers", "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.8, "IMDB Votes": 36303}, {"Title": "Sugar Town", "US Gross": 178095, "Worldwide Gross": 178095, "US DVD Sales": null, "Production Budget": 250000, "Release Date": "Sep 17 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "October Films", "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 5.6, "IMDB Votes": 566}, {"Title": "Shade", "US Gross": 22183, "Worldwide Gross": 22183, "US DVD Sales": null, "Production Budget": 6800000, "Release Date": "Apr 09 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 950}, {"Title": "Shadow of the Vampire", "US Gross": 8279017, "Worldwide Gross": 8279017, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Dec 29 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "E. Elias Merhige", "Rotten Tomatoes Rating": 81, "IMDB Rating": 6.8, "IMDB Votes": 18221}, {"Title": "Shaft", "US Gross": 70327868, "Worldwide Gross": 107190108, "US DVD Sales": null, "Production Budget": 53012938, "Release Date": "Jun 16 2000", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "John Singleton", "Rotten Tomatoes Rating": 68, "IMDB Rating": 5.9, "IMDB Votes": 32881}, {"Title": "The Shaggy Dog", "US Gross": 61123569, "Worldwide Gross": 87123569, "US DVD Sales": 28587103, "Production Budget": 60000000, "Release Date": "Mar 10 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Brian Robbins", "Rotten Tomatoes Rating": 27, "IMDB Rating": 4.1, "IMDB Votes": 6116}, {"Title": "Scary Movie", "US Gross": 157019771, "Worldwide Gross": 277200000, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Jul 07 2000", "MPAA Rating": "R", "Running Time min": 88, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Keenen Ivory Wayans", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6, "IMDB Votes": 68541}, {"Title": "Shaun of the Dead", "US Gross": 13542874, "Worldwide Gross": 29629128, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Sep 24 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus/Rogue Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Edgar Wright", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8, "IMDB Votes": 134693}, {"Title": "Shortbus", "US Gross": 1985292, "Worldwide Gross": 1985292, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Oct 04 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 66, "IMDB Rating": 6.7, "IMDB Votes": 14276}, {"Title": "She's All That", "US Gross": 63465522, "Worldwide Gross": 63465522, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jan 29 1999", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.4, "IMDB Votes": 28498}, {"Title": "She's the Man", "US Gross": 33889159, "Worldwide Gross": 56889159, "US DVD Sales": 33340509, "Production Budget": 25000000, "Release Date": "Mar 17 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Play", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Andy Fickman", "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.4, "IMDB Votes": 26513}, {"Title": "Sherrybaby", "US Gross": 199176, "Worldwide Gross": 622806, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Sep 08 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.7, "IMDB Votes": 6372}, {"Title": "Shallow Hal", "US Gross": 70836296, "Worldwide Gross": 70836296, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Nov 09 2001", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Bobby Farrelly", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6, "IMDB Votes": 35878}, {"Title": "Silent Hill", "US Gross": 46982632, "Worldwide Gross": 99982632, "US DVD Sales": 22104517, "Production Budget": 50000000, "Release Date": "Apr 21 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Game", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Christophe Gans", "Rotten Tomatoes Rating": 29, "IMDB Rating": 6.5, "IMDB Votes": 65485}, {"Title": "Shutter Island", "US Gross": 128012934, "Worldwide Gross": 294512934, "US DVD Sales": 22083616, "Production Budget": 80000000, "Release Date": "Feb 19 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "Martin Scorsese", "Rotten Tomatoes Rating": 67, "IMDB Rating": 8, "IMDB Votes": 105706}, {"Title": "Shakespeare in Love", "US Gross": 100317794, "Worldwide Gross": 279500000, "US DVD Sales": null, "Production Budget": 26000000, "Release Date": "Dec 11 1998", "MPAA Rating": "R", "Running Time min": 122, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Historical Fiction", "Director": "John Madden", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.4, "IMDB Votes": 77911}, {"Title": "In the Shadow of the Moon", "US Gross": 1134358, "Worldwide Gross": 1134358, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Sep 07 2007", "MPAA Rating": "PG", "Running Time min": 100, "Distributor": "ThinkFilm", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 94, "IMDB Rating": 8, "IMDB Votes": 2974}, {"Title": "Sherlock Holmes", "US Gross": 209028679, "Worldwide Gross": 518249844, "US DVD Sales": 42276167, "Production Budget": 80000000, "Release Date": "Dec 25 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Guy Ritchie", "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.5, "IMDB Votes": 91555}, {"Title": "She's Out of My League", "US Gross": 31628317, "Worldwide Gross": 49219151, "US DVD Sales": 7889235, "Production Budget": 20000000, "Release Date": "Mar 12 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.7, "IMDB Votes": 17449}, {"Title": "Shooter", "US Gross": 47003582, "Worldwide Gross": 95203582, "US DVD Sales": 57333255, "Production Budget": 60000000, "Release Date": "Mar 23 2007", "MPAA Rating": "R", "Running Time min": 125, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Antoine Fuqua", "Rotten Tomatoes Rating": 48, "IMDB Rating": 7.2, "IMDB Votes": 149}, {"Title": "Shrek", "US Gross": 267655011, "Worldwide Gross": 484399218, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "May 18 2001", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Andrew Adamson", "Rotten Tomatoes Rating": 89, "IMDB Rating": 8, "IMDB Votes": 163855}, {"Title": "Shrek 2", "US Gross": 441226247, "Worldwide Gross": 919838758, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "May 19 2004", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Andrew Adamson", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.5, "IMDB Votes": 95658}, {"Title": "Shrek the Third", "US Gross": 322719944, "Worldwide Gross": 798958162, "US DVD Sales": 176400340, "Production Budget": 160000000, "Release Date": "May 18 2007", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.1, "IMDB Votes": 59778}, {"Title": "Shrek Forever After", "US Gross": 238395990, "Worldwide Gross": 729395990, "US DVD Sales": null, "Production Budget": 165000000, "Release Date": "May 21 2010", "MPAA Rating": "PG", "Running Time min": 93, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 12193}, {"Title": "Shark Tale", "US Gross": 160861908, "Worldwide Gross": 367275019, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Oct 01 2004", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Rob Letterman", "Rotten Tomatoes Rating": 35, "IMDB Rating": 5.9, "IMDB Votes": 40019}, {"Title": "Shattered Glass", "US Gross": 2207975, "Worldwide Gross": 2932719, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Oct 31 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.4, "IMDB Votes": 14575}, {"Title": "Stealing Harvard", "US Gross": 13973532, "Worldwide Gross": 13973532, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Sep 13 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.7, "IMDB Votes": 6899}, {"Title": "Showtime", "US Gross": 37948765, "Worldwide Gross": 78948765, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Mar 15 2002", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tom Dey", "Rotten Tomatoes Rating": 24, "IMDB Rating": 5.3, "IMDB Votes": 22128}, {"Title": "Sicko", "US Gross": 24538513, "Worldwide Gross": 33538513, "US DVD Sales": 17438209, "Production Budget": 9000000, "Release Date": "Jun 22 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Michael Moore", "Rotten Tomatoes Rating": 93, "IMDB Rating": 8.2, "IMDB Votes": 40886}, {"Title": "The Siege", "US Gross": 40934175, "Worldwide Gross": 116625798, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Nov 06 1998", "MPAA Rating": "R", "Running Time min": 116, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Edward Zwick", "Rotten Tomatoes Rating": 44, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Signs", "US Gross": 227965690, "Worldwide Gross": 408265690, "US DVD Sales": null, "Production Budget": 70702619, "Release Date": "Aug 02 2002", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "M. Night Shyamalan", "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.9, "IMDB Votes": 111561}, {"Title": "Simon Birch", "US Gross": 18253415, "Worldwide Gross": 18253415, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Sep 11 1998", "MPAA Rating": "PG", "Running Time min": 110, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Mark Steven Johnson", "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.7, "IMDB Votes": 11371}, {"Title": "A Simple Wish", "US Gross": 8165213, "Worldwide Gross": 8165213, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Jul 11 1997", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Michael Ritchie", "Rotten Tomatoes Rating": 27, "IMDB Rating": 4.9, "IMDB Votes": 1545}, {"Title": "The Simpsons Movie", "US Gross": 183135014, "Worldwide Gross": 527071022, "US DVD Sales": 96359085, "Production Budget": 72500000, "Release Date": "Jul 27 2007", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "David Silverman", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.6, "IMDB Votes": 117656}, {"Title": "Sinbad: Legend of the Seven Seas", "US Gross": 26483452, "Worldwide Gross": 80767884, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jul 02 2003", "MPAA Rating": "PG", "Running Time min": 86, "Distributor": "Dreamworks SKG", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Tim Johnson", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 7895}, {"Title": "Sin City", "US Gross": 74103820, "Worldwide Gross": 158753820, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Apr 01 2005", "MPAA Rating": "R", "Running Time min": 126, "Distributor": "Miramax/Dimension", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 77, "IMDB Rating": 8.3, "IMDB Votes": 255814}, {"Title": "The Singing Detective", "US Gross": 336456, "Worldwide Gross": 524747, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Oct 24 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 38, "IMDB Rating": 5.6, "IMDB Votes": 4441}, {"Title": "The Sixth Sense", "US Gross": 293506292, "Worldwide Gross": 672806292, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 06 1999", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "M. Night Shyamalan", "Rotten Tomatoes Rating": 85, "IMDB Rating": 8.2, "IMDB Votes": 238745}, {"Title": "Super Size Me", "US Gross": 11529368, "Worldwide Gross": 29529368, "US DVD Sales": null, "Production Budget": 65000, "Release Date": "May 07 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "IDP Distribution", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": "Morgan Spurlock", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 33805}, {"Title": "The Skeleton Key", "US Gross": 47907715, "Worldwide Gross": 92907715, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 12 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Iain Softley", "Rotten Tomatoes Rating": 38, "IMDB Rating": 6.5, "IMDB Votes": 29810}, {"Title": "The Skulls", "US Gross": 35007180, "Worldwide Gross": 35007180, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Mar 31 2000", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Rob Cohen", "Rotten Tomatoes Rating": 8, "IMDB Rating": 5.3, "IMDB Votes": 14903}, {"Title": "Sky High", "US Gross": 63939454, "Worldwide Gross": 81627454, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jul 29 2005", "MPAA Rating": "PG", "Running Time min": 102, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.6, "IMDB Votes": 20923}, {"Title": "Slackers", "US Gross": 4814244, "Worldwide Gross": 4814244, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Feb 01 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 4.9, "IMDB Votes": 7934}, {"Title": "Ready to Rumble", "US Gross": 12372410, "Worldwide Gross": 12372410, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Apr 07 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Brian Robbins", "Rotten Tomatoes Rating": 25, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Soldier", "US Gross": 14623082, "Worldwide Gross": 14623082, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Oct 23 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Paul Anderson", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Sleepy Hollow", "US Gross": 101068340, "Worldwide Gross": 207068340, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Nov 19 1999", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": "Tim Burton", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.5, "IMDB Votes": 107511}, {"Title": "Lucky Number Slevin", "US Gross": 22495466, "Worldwide Gross": 55495466, "US DVD Sales": 26858545, "Production Budget": 27000000, "Release Date": "Apr 07 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Paul McGuigan", "Rotten Tomatoes Rating": 51, "IMDB Rating": 7.8, "IMDB Votes": 91145}, {"Title": "The Secret Life of Bees", "US Gross": 37766350, "Worldwide Gross": 39612166, "US DVD Sales": 17077991, "Production Budget": 11000000, "Release Date": "Oct 17 2008", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 57, "IMDB Rating": 7, "IMDB Votes": 7077}, {"Title": "Hannibal", "US Gross": 165092266, "Worldwide Gross": 350100280, "US DVD Sales": null, "Production Budget": 87000000, "Release Date": "Feb 09 2001", "MPAA Rating": "R", "Running Time min": 131, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Ridley Scott", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.4, "IMDB Votes": 74862}, {"Title": "Southland Tales", "US Gross": 275380, "Worldwide Gross": 364607, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Nov 14 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Samuel Goldwyn Films", "Source": "Original Screenplay", "Major Genre": "Musical", "Creative Type": "Contemporary Fiction", "Director": "Richard Kelly", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 20172}, {"Title": "Slow Burn", "US Gross": 1237615, "Worldwide Gross": 1237615, "US DVD Sales": 893953, "Production Budget": 15500000, "Release Date": "Apr 13 2007", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.9, "IMDB Votes": 2318}, {"Title": "Sleepover", "US Gross": 9408183, "Worldwide Gross": 9408183, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jul 09 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.6, "IMDB Votes": 4774}, {"Title": "The Bridge of San Luis Rey", "US Gross": 49981, "Worldwide Gross": 1696765, "US DVD Sales": null, "Production Budget": 24000000, "Release Date": "Jun 10 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 4, "IMDB Rating": 5, "IMDB Votes": 1913}, {"Title": "Slither", "US Gross": 7802450, "Worldwide Gross": 12834936, "US DVD Sales": 7475776, "Production Budget": 15250000, "Release Date": "Mar 31 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 85, "IMDB Rating": 6.6, "IMDB Votes": 26101}, {"Title": "Slumdog Millionaire", "US Gross": 141319928, "Worldwide Gross": 365257315, "US DVD Sales": 31952272, "Production Budget": 14000000, "Release Date": "Nov 12 2008", "MPAA Rating": "R", "Running Time min": 116, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Danny Boyle", "Rotten Tomatoes Rating": 94, "IMDB Rating": 8.3, "IMDB Votes": 176325}, {"Title": "Slums of Beverly Hills", "US Gross": 5502773, "Worldwide Gross": 5502773, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Aug 14 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Real Life Events", "Major Genre": "Comedy", "Creative Type": "Dramatization", "Director": "Tamara Jenkins", "Rotten Tomatoes Rating": 79, "IMDB Rating": 6.4, "IMDB Votes": 5821}, {"Title": "Small Soldiers", "US Gross": 55143823, "Worldwide Gross": 71743823, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 10 1998", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Joe Dante", "Rotten Tomatoes Rating": 46, "IMDB Rating": 5.9, "IMDB Votes": 20571}, {"Title": "Mr. And Mrs. Smith", "US Gross": 186336279, "Worldwide Gross": 478336279, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Jun 10 2005", "MPAA Rating": "PG-13", "Running Time min": 112, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Doug Liman", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.7, "IMDB Votes": 189}, {"Title": "Smokin' Aces", "US Gross": 35662731, "Worldwide Gross": 56047261, "US DVD Sales": 35817034, "Production Budget": 17000000, "Release Date": "Jan 26 2007", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Joe Carnahan", "Rotten Tomatoes Rating": 28, "IMDB Rating": 6.6, "IMDB Votes": 57313}, {"Title": "Someone Like You", "US Gross": 27338033, "Worldwide Gross": 38684906, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Mar 30 2001", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Tony Goldwyn", "Rotten Tomatoes Rating": 41, "IMDB Rating": 5.8, "IMDB Votes": 10073}, {"Title": "Death to Smoochy", "US Gross": 8355815, "Worldwide Gross": 8374062, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Mar 29 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Danny De Vito", "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.2, "IMDB Votes": 22379}, {"Title": "Simply Irresistible", "US Gross": 4398989, "Worldwide Gross": 4398989, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Feb 05 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 14, "IMDB Rating": 4.8, "IMDB Votes": 6927}, {"Title": "Summer Catch", "US Gross": 19693891, "Worldwide Gross": 19693891, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Aug 24 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 7, "IMDB Rating": 4.6, "IMDB Votes": 6848}, {"Title": "There's Something About Mary", "US Gross": 176484651, "Worldwide Gross": 360099999, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Jul 15 1998", "MPAA Rating": "R", "Running Time min": 119, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Bobby Farrelly", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.2, "IMDB Votes": 96443}, {"Title": "Snake Eyes", "US Gross": 55591409, "Worldwide Gross": 103891409, "US DVD Sales": null, "Production Budget": 73000000, "Release Date": "Aug 07 1998", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Brian De Palma", "Rotten Tomatoes Rating": 41, "IMDB Rating": 5.8, "IMDB Votes": 29321}, {"Title": "Snakes on a Plane", "US Gross": 34020814, "Worldwide Gross": 62020814, "US DVD Sales": 23704179, "Production Budget": 33000000, "Release Date": "Aug 18 2006", "MPAA Rating": "R", "Running Time min": 105, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "David R. Ellis", "Rotten Tomatoes Rating": 68, "IMDB Rating": 6, "IMDB Votes": 65841}, {"Title": "Lemony Snicket's A Series of Unfortunate Events", "US Gross": 118627117, "Worldwide Gross": 201627117, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Dec 17 2004", "MPAA Rating": "PG", "Running Time min": 108, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Brad Silberling", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.9, "IMDB Votes": 51614}, {"Title": "House of Sand and Fog", "US Gross": 13005485, "Worldwide Gross": 16157923, "US DVD Sales": null, "Production Budget": 16500000, "Release Date": "Dec 19 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 75, "IMDB Rating": 7.8, "IMDB Votes": 29777}, {"Title": "A Sound of Thunder", "US Gross": 1900451, "Worldwide Gross": 6300451, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Sep 02 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Peter Hyams", "Rotten Tomatoes Rating": 6, "IMDB Rating": 4.1, "IMDB Votes": 9915}, {"Title": "See No Evil", "US Gross": 15032800, "Worldwide Gross": 15387513, "US DVD Sales": 45391536, "Production Budget": 8000000, "Release Date": "May 19 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 5, "IMDB Votes": 10035}, {"Title": "The Shipping News", "US Gross": 11405825, "Worldwide Gross": 24405825, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Dec 25 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Lasse Hallstrom", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.7, "IMDB Votes": 17338}, {"Title": "Shanghai Knights", "US Gross": 60470220, "Worldwide Gross": 60470220, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 07 2003", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "David Dobkin", "Rotten Tomatoes Rating": 66, "IMDB Rating": 6.2, "IMDB Votes": 24893}, {"Title": "Shanghai Noon", "US Gross": 56932305, "Worldwide Gross": 71189835, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "May 26 2000", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Tom Dey", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.6, "IMDB Votes": 32446}, {"Title": "Snow Dogs", "US Gross": 81150692, "Worldwide Gross": 115010692, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Jan 18 2002", "MPAA Rating": "PG", "Running Time min": 99, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Brian Levant", "Rotten Tomatoes Rating": 23, "IMDB Rating": 4.9, "IMDB Votes": 7561}, {"Title": "Snow Falling on Cedars", "US Gross": 14378353, "Worldwide Gross": 14378353, "US DVD Sales": null, "Production Budget": 36000000, "Release Date": "Dec 24 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.7, "IMDB Votes": 8444}, {"Title": "Sunshine", "US Gross": 3688560, "Worldwide Gross": 32030610, "US DVD Sales": 6342481, "Production Budget": 40000000, "Release Date": "Jul 20 2007", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": "Danny Boyle", "Rotten Tomatoes Rating": 74, "IMDB Rating": 7.3, "IMDB Votes": 74535}, {"Title": "Snatch", "US Gross": 30093107, "Worldwide Gross": 83593107, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Dec 08 2000", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Guy Ritchie", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.2, "IMDB Votes": 173919}, {"Title": "Snow Day", "US Gross": 60008303, "Worldwide Gross": 62452927, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Feb 11 2000", "MPAA Rating": "PG", "Running Time min": 89, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 4.4, "IMDB Votes": 4611}, {"Title": "Sorority Boys", "US Gross": 10198766, "Worldwide Gross": 12516222, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Mar 22 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.1, "IMDB Votes": 7392}, {"Title": "Solaris", "US Gross": 14970038, "Worldwide Gross": 14970038, "US DVD Sales": null, "Production Budget": 47000000, "Release Date": "Nov 27 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.2, "IMDB Votes": 33151}, {"Title": "Solitary Man", "US Gross": 4354546, "Worldwide Gross": 4354546, "US DVD Sales": null, "Production Budget": 12500000, "Release Date": "May 21 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Anchor Bay Entertainment", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 1936}, {"Title": "The Soloist", "US Gross": 31720158, "Worldwide Gross": 38286958, "US DVD Sales": 10310814, "Production Budget": 60000000, "Release Date": "Apr 24 2009", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Joe Wright", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 14257}, {"Title": "Songcatcher", "US Gross": 3050934, "Worldwide Gross": 3050934, "US DVD Sales": null, "Production Budget": 1800000, "Release Date": "Jun 15 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 1997}, {"Title": "Sonny", "US Gross": 17639, "Worldwide Gross": 17639, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Dec 27 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 5.7, "IMDB Votes": 1941}, {"Title": "Standard Operating Procedure", "US Gross": 228830, "Worldwide Gross": 228830, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Apr 25 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": 80, "IMDB Rating": 7.5, "IMDB Votes": 1640}, {"Title": "The Sorcerer's Apprentice", "US Gross": 62492818, "Worldwide Gross": 200092818, "US DVD Sales": null, "Production Budget": 160000000, "Release Date": "Jul 14 2010", "MPAA Rating": "PG", "Running Time min": 110, "Distributor": "Walt Disney Pictures", "Source": "Based on Short Film", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.4, "IMDB Votes": 9108}, {"Title": "Soul Food", "US Gross": 43492389, "Worldwide Gross": 43492389, "US DVD Sales": null, "Production Budget": 7500000, "Release Date": "Sep 26 1997", "MPAA Rating": "R", "Running Time min": 114, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 80, "IMDB Rating": 6.4, "IMDB Votes": 2636}, {"Title": "Soul Plane", "US Gross": 13922211, "Worldwide Gross": 14553807, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "May 28 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 3.7, "IMDB Votes": 9143}, {"Title": "South Park: Bigger, Longer & Uncut", "US Gross": 52037603, "Worldwide Gross": 52037603, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Jun 30 1999", "MPAA Rating": "R", "Running Time min": 80, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Trey Parker", "Rotten Tomatoes Rating": 80, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Space Jam", "US Gross": 90463534, "Worldwide Gross": 250200000, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Nov 15 1996", "MPAA Rating": "PG", "Running Time min": 87, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Joe Pytka", "Rotten Tomatoes Rating": 36, "IMDB Rating": 5.6, "IMDB Votes": 29293}, {"Title": "Spanglish", "US Gross": 42044321, "Worldwide Gross": 54344321, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Dec 17 2004", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "James L. Brooks", "Rotten Tomatoes Rating": 52, "IMDB Rating": 6.7, "IMDB Votes": 30660}, {"Title": "Spawn", "US Gross": 54979992, "Worldwide Gross": 87949859, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 31 1997", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "New Line", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 20, "IMDB Rating": 4.8, "IMDB Votes": 21366}, {"Title": "Superbad", "US Gross": 121463226, "Worldwide Gross": 169863226, "US DVD Sales": 134555373, "Production Budget": 17500000, "Release Date": "Aug 17 2007", "MPAA Rating": "R", "Running Time min": 112, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Greg Mottola", "Rotten Tomatoes Rating": 87, "IMDB Rating": 7.8, "IMDB Votes": 134212}, {"Title": "SpongeBob SquarePants", "US Gross": 85416609, "Worldwide Gross": 140416609, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Nov 19 2004", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Space Chimps", "US Gross": 30105968, "Worldwide Gross": 59517784, "US DVD Sales": 13349286, "Production Budget": 37000000, "Release Date": "Jul 18 2008", "MPAA Rating": "G", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 4.5, "IMDB Votes": 4324}, {"Title": "Space Cowboys", "US Gross": 90454043, "Worldwide Gross": 128874043, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Aug 04 2000", "MPAA Rating": "PG-13", "Running Time min": 130, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Clint Eastwood", "Rotten Tomatoes Rating": 79, "IMDB Rating": 6.3, "IMDB Votes": 29983}, {"Title": "Spider", "US Gross": 1641788, "Worldwide Gross": 1641788, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 28 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "David Cronenberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 560}, {"Title": "Speed Racer", "US Gross": 43945766, "Worldwide Gross": 93394462, "US DVD Sales": 14217924, "Production Budget": 120000000, "Release Date": "May 09 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Andy Wachowski", "Rotten Tomatoes Rating": 38, "IMDB Rating": 6.3, "IMDB Votes": 32672}, {"Title": "The Spiderwick Chronicles", "US Gross": 71195053, "Worldwide Gross": 162839667, "US DVD Sales": 27525903, "Production Budget": 92500000, "Release Date": "Feb 14 2008", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Mark Waters", "Rotten Tomatoes Rating": 79, "IMDB Rating": 6.8, "IMDB Votes": 18715}, {"Title": "Speedway Junky", "US Gross": 17127, "Worldwide Gross": 17127, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Aug 31 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.7, "IMDB Votes": 1205}, {"Title": "Speed II: Cruise Control", "US Gross": 48097081, "Worldwide Gross": 150468000, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Jun 13 1997", "MPAA Rating": "PG-13", "Running Time min": 125, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Jan De Bont", "Rotten Tomatoes Rating": null, "IMDB Rating": 3.4, "IMDB Votes": 30896}, {"Title": "Sphere", "US Gross": 37068294, "Worldwide Gross": 50168294, "US DVD Sales": null, "Production Budget": 73000000, "Release Date": "Feb 13 1998", "MPAA Rating": "PG-13", "Running Time min": 132, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": 12, "IMDB Rating": 5.6, "IMDB Votes": 31461}, {"Title": "Spiceworld", "US Gross": 29342592, "Worldwide Gross": 56042592, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jan 23 1998", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "Sony Pictures", "Source": "Musical Group Movie", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 2.9, "IMDB Votes": 18010}, {"Title": "Spider-Man 2", "US Gross": 373524485, "Worldwide Gross": 783705001, "US DVD Sales": 4196484, "Production Budget": 200000000, "Release Date": "Jun 30 2004", "MPAA Rating": "PG-13", "Running Time min": 127, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Sam Raimi", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.7, "IMDB Votes": 141940}, {"Title": "Spider-Man 3", "US Gross": 336530303, "Worldwide Gross": 890871626, "US DVD Sales": 124058348, "Production Budget": 258000000, "Release Date": "May 04 2007", "MPAA Rating": "PG-13", "Running Time min": 139, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Sam Raimi", "Rotten Tomatoes Rating": 63, "IMDB Rating": 6.4, "IMDB Votes": 141513}, {"Title": "Spider-Man", "US Gross": 403706375, "Worldwide Gross": 821708551, "US DVD Sales": null, "Production Budget": 139000000, "Release Date": "May 03 2002", "MPAA Rating": "PG-13", "Running Time min": 121, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Sam Raimi", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.4, "IMDB Votes": 167524}, {"Title": "Scott Pilgrim vs. The World", "US Gross": 31167395, "Worldwide Gross": 43149143, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Aug 13 2010", "MPAA Rating": "PG-13", "Running Time min": 112, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Edgar Wright", "Rotten Tomatoes Rating": 81, "IMDB Rating": 8.1, "IMDB Votes": 17461}, {"Title": "See Spot Run", "US Gross": 33357476, "Worldwide Gross": 43057552, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Mar 02 2001", "MPAA Rating": "PG", "Running Time min": 97, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 24, "IMDB Rating": 4.9, "IMDB Votes": 3673}, {"Title": "Superman Returns", "US Gross": 200120000, "Worldwide Gross": 391120000, "US DVD Sales": 81580739, "Production Budget": 232000000, "Release Date": "Jun 28 2006", "MPAA Rating": "PG-13", "Running Time min": 157, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Bryan Singer", "Rotten Tomatoes Rating": 76, "IMDB Rating": 6.6, "IMDB Votes": 102751}, {"Title": "Supernova", "US Gross": 14218868, "Worldwide Gross": 14218868, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jan 14 2000", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Francis Ford Coppola", "Rotten Tomatoes Rating": 10, "IMDB Rating": 6.8, "IMDB Votes": 127}, {"Title": "Spirited Away", "US Gross": 10049886, "Worldwide Gross": 274949886, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Sep 20 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Hayao Miyazaki", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Spun", "US Gross": 410241, "Worldwide Gross": 1022649, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "Mar 14 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 16011}, {"Title": "Spy Game", "US Gross": 62362560, "Worldwide Gross": 143049560, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Nov 21 2001", "MPAA Rating": "R", "Running Time min": 126, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.9, "IMDB Votes": 44850}, {"Title": "Spy Kids 2: The Island of Lost Dreams", "US Gross": 85846296, "Worldwide Gross": 119721296, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Aug 07 2002", "MPAA Rating": "PG", "Running Time min": 100, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 75, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Spy Kids 3-D: Game Over", "US Gross": 111760631, "Worldwide Gross": 167851995, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 25 2003", "MPAA Rating": "PG", "Running Time min": 84, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.1, "IMDB Votes": 12352}, {"Title": "Spy Kids", "US Gross": 112692062, "Worldwide Gross": 197692062, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Mar 30 2001", "MPAA Rating": "PG", "Running Time min": 88, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Robert Rodriguez", "Rotten Tomatoes Rating": 93, "IMDB Rating": 5.7, "IMDB Votes": 23479}, {"Title": "The Square", "US Gross": 406216, "Worldwide Gross": 406216, "US DVD Sales": null, "Production Budget": 1900000, "Release Date": "Apr 09 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Apparition", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 1303}, {"Title": "The Squid and the Whale", "US Gross": 7372734, "Worldwide Gross": 11098131, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Oct 05 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IDP/Goldwyn/Roadside", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Noah Baumbach", "Rotten Tomatoes Rating": 93, "IMDB Rating": 7.6, "IMDB Votes": 23521}, {"Title": "Serendipity", "US Gross": 50255310, "Worldwide Gross": 75294136, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Oct 05 2001", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Chelsom", "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.6, "IMDB Votes": 32014}, {"Title": "Saint Ralph", "US Gross": 795126, "Worldwide Gross": 795126, "US DVD Sales": null, "Production Budget": 5200000, "Release Date": "Aug 05 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Samuel Goldwyn Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.5, "IMDB Votes": 3492}, {"Title": "Shaolin Soccer", "US Gross": 488872, "Worldwide Gross": 42776032, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Apr 02 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": "Stephen Chow", "Rotten Tomatoes Rating": 91, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Superstar", "US Gross": 30628981, "Worldwide Gross": 30628981, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Oct 08 1999", "MPAA Rating": "PG-13", "Running Time min": 82, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 33, "IMDB Rating": 6, "IMDB Votes": 103}, {"Title": "Soul Survivors", "US Gross": 3100650, "Worldwide Gross": 4288246, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Sep 07 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 4, "IMDB Rating": 3.6, "IMDB Votes": 5116}, {"Title": "Spirit: Stallion of the Cimarron", "US Gross": 73215310, "Worldwide Gross": 106515310, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "May 24 2002", "MPAA Rating": "G", "Running Time min": 84, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Kelly Asbury", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 8622}, {"Title": "Star Wars Ep. II: Attack of the Clones", "US Gross": 310676740, "Worldwide Gross": 656695615, "US DVD Sales": null, "Production Budget": 115000000, "Release Date": "May 16 2002", "MPAA Rating": "PG", "Running Time min": 142, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "George Lucas", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Star Wars Ep. III: Revenge of the Sith", "US Gross": 380270577, "Worldwide Gross": 848998877, "US DVD Sales": null, "Production Budget": 115000000, "Release Date": "May 19 2005", "MPAA Rating": "PG-13", "Running Time min": 140, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "George Lucas", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Starship Troopers", "US Gross": 54768952, "Worldwide Gross": 121100000, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Nov 07 1997", "MPAA Rating": "R", "Running Time min": 129, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Paul Verhoeven", "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.1, "IMDB Votes": 83516}, {"Title": "The Station Agent", "US Gross": 5801558, "Worldwide Gross": 7773824, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Oct 03 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.8, "IMDB Votes": 22274}, {"Title": "Stay Alive", "US Gross": 23086480, "Worldwide Gross": 23187506, "US DVD Sales": 13333591, "Production Budget": 20000000, "Release Date": "Mar 24 2006", "MPAA Rating": "PG-13", "Running Time min": 91, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.5, "IMDB Votes": 13658}, {"Title": "Small Time Crooks", "US Gross": 17266359, "Worldwide Gross": 29934477, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "May 19 2000", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Woody Allen", "Rotten Tomatoes Rating": 66, "IMDB Rating": 6.5, "IMDB Votes": 15636}, {"Title": "Steel", "US Gross": 1686429, "Worldwide Gross": 1686429, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Aug 15 1997", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 2.7, "IMDB Votes": 4409}, {"Title": "How Stella Got Her Groove Back", "US Gross": 37672944, "Worldwide Gross": 37672944, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Aug 14 1998", "MPAA Rating": "R", "Running Time min": 124, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 49, "IMDB Rating": 5.1, "IMDB Votes": 3080}, {"Title": "The Stepford Wives", "US Gross": 59475623, "Worldwide Gross": 96221971, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Jun 11 2004", "MPAA Rating": "PG-13", "Running Time min": 93, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Frank Oz", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.1, "IMDB Votes": 26712}, {"Title": "Stepmom", "US Gross": 91137662, "Worldwide Gross": 119709917, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Dec 25 1998", "MPAA Rating": "PG-13", "Running Time min": 127, "Distributor": "Sony/TriStar", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Chris Columbus", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.2, "IMDB Votes": 18505}, {"Title": "Stomp the Yard", "US Gross": 61356221, "Worldwide Gross": 76356221, "US DVD Sales": 33252252, "Production Budget": 14000000, "Release Date": "Jan 12 2007", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 26, "IMDB Rating": 4.3, "IMDB Votes": 13737}, {"Title": "Stranger Than Fiction", "US Gross": 40435190, "Worldwide Gross": 45235190, "US DVD Sales": 30936711, "Production Budget": 30000000, "Release Date": "Nov 10 2006", "MPAA Rating": "PG-13", "Running Time min": 112, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Marc Forster", "Rotten Tomatoes Rating": 72, "IMDB Rating": 7.8, "IMDB Votes": 74218}, {"Title": "The Legend of Suriyothai", "US Gross": 454255, "Worldwide Gross": 454255, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Jun 20 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Stick It", "US Gross": 26910736, "Worldwide Gross": 30399714, "US DVD Sales": 27642935, "Production Budget": 20000000, "Release Date": "Apr 28 2006", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 31, "IMDB Rating": 5.9, "IMDB Votes": 9556}, {"Title": "Stigmata", "US Gross": 50041732, "Worldwide Gross": 89441732, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Sep 10 1999", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Rupert Wainwright", "Rotten Tomatoes Rating": 22, "IMDB Rating": 6, "IMDB Votes": 29411}, {"Title": "A Stir of Echoes", "US Gross": 21133087, "Worldwide Gross": 21133087, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Sep 10 1999", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Artisan", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "David Koepp", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 26752}, {"Title": "Street Kings", "US Gross": 26415649, "Worldwide Gross": 65589243, "US DVD Sales": 13420759, "Production Budget": 20000000, "Release Date": "Apr 11 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 7, "IMDB Votes": 40291}, {"Title": "Stuart Little", "US Gross": 140015224, "Worldwide Gross": 298800000, "US DVD Sales": null, "Production Budget": 105000000, "Release Date": "Dec 17 1999", "MPAA Rating": "PG", "Running Time min": 92, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Rob Minkoff", "Rotten Tomatoes Rating": 65, "IMDB Rating": 5.8, "IMDB Votes": 23226}, {"Title": "Stuart Little 2", "US Gross": 64956806, "Worldwide Gross": 166000000, "US DVD Sales": null, "Production Budget": 120000000, "Release Date": "Jul 19 2002", "MPAA Rating": "PG", "Running Time min": 78, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Rob Minkoff", "Rotten Tomatoes Rating": 83, "IMDB Rating": 5.6, "IMDB Votes": 7534}, {"Title": "Stealth", "US Gross": 32116746, "Worldwide Gross": 76416746, "US DVD Sales": null, "Production Budget": 138000000, "Release Date": "Jul 29 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Rob Cohen", "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.8, "IMDB Votes": 21664}, {"Title": "Steamboy", "US Gross": 468867, "Worldwide Gross": 10468867, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 18 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Statement", "US Gross": 765637, "Worldwide Gross": 1545064, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Dec 12 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": "Norman Jewison", "Rotten Tomatoes Rating": 23, "IMDB Rating": 6, "IMDB Votes": 2735}, {"Title": "Stolen Summer", "US Gross": 119841, "Worldwide Gross": 119841, "US DVD Sales": null, "Production Budget": 1500000, "Release Date": "Mar 22 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 6.4, "IMDB Votes": 1733}, {"Title": "Stop-Loss", "US Gross": 10915744, "Worldwide Gross": 11179472, "US DVD Sales": 4736139, "Production Budget": 25000000, "Release Date": "Mar 28 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Kimberly Peirce", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 9268}, {"Title": "The Perfect Storm", "US Gross": 182618434, "Worldwide Gross": 328711434, "US DVD Sales": null, "Production Budget": 120000000, "Release Date": "Jun 30 2000", "MPAA Rating": "PG-13", "Running Time min": 130, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Wolfgang Petersen", "Rotten Tomatoes Rating": 47, "IMDB Rating": 6.2, "IMDB Votes": 55716}, {"Title": "The Story of Us", "US Gross": 27100030, "Worldwide Gross": 27100030, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Oct 15 1999", "MPAA Rating": "R", "Running Time min": 74, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Rob Reiner", "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.6, "IMDB Votes": 10720}, {"Title": "The Stepfather", "US Gross": 29062561, "Worldwide Gross": 29227561, "US DVD Sales": 6587798, "Production Budget": 20000000, "Release Date": "Oct 16 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.3, "IMDB Votes": 6263}, {"Title": "State of Play", "US Gross": 37017955, "Worldwide Gross": 91445389, "US DVD Sales": 13578224, "Production Budget": 60000000, "Release Date": "Apr 17 2009", "MPAA Rating": "PG-13", "Running Time min": 127, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Kevin MacDonald", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.3, "IMDB Votes": 34067}, {"Title": "The Sisterhood of the Traveling Pants 2", "US Gross": 44089964, "Worldwide Gross": 44154645, "US DVD Sales": 15266725, "Production Budget": 27000000, "Release Date": "Aug 06 2008", "MPAA Rating": "PG-13", "Running Time min": 111, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.2, "IMDB Votes": 6557}, {"Title": "Sisterhood of the Traveling Pants", "US Gross": 39053061, "Worldwide Gross": 41560117, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Jun 01 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Ken Kwapis", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Step Up", "US Gross": 65328121, "Worldwide Gross": 115328121, "US DVD Sales": 51317604, "Production Budget": 12000000, "Release Date": "Aug 11 2006", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Anne Fletcher", "Rotten Tomatoes Rating": 19, "IMDB Rating": 6.1, "IMDB Votes": 21691}, {"Title": "The Straight Story", "US Gross": 6197866, "Worldwide Gross": 6197866, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 15 1999", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "David Lynch", "Rotten Tomatoes Rating": 95, "IMDB Rating": 8, "IMDB Votes": 36265}, {"Title": "Star Trek: First Contact", "US Gross": 92027888, "Worldwide Gross": 150000000, "US DVD Sales": null, "Production Budget": 46000000, "Release Date": "Nov 22 1996", "MPAA Rating": "PG-13", "Running Time min": 111, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Jonathan Frakes", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 45106}, {"Title": "Star Trek: Insurrection", "US Gross": 70187658, "Worldwide Gross": 117800000, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Dec 11 1998", "MPAA Rating": "PG", "Running Time min": 100, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Jonathan Frakes", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 26559}, {"Title": "Star Trek: Nemesis", "US Gross": 43254409, "Worldwide Gross": 67312826, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Dec 13 2002", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.4, "IMDB Votes": 28449}, {"Title": "Alex Rider: Operation Stormbreaker", "US Gross": 659210, "Worldwide Gross": 9351567, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Oct 13 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Strangers", "US Gross": 52597610, "Worldwide Gross": 80597610, "US DVD Sales": 15789825, "Production Budget": 9000000, "Release Date": "May 30 2008", "MPAA Rating": "R", "Running Time min": 85, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 6, "IMDB Votes": 35078}, {"Title": "Super Troopers", "US Gross": 18492362, "Worldwide Gross": 23046142, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Feb 15 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jay Chandrasekhar", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 29514}, {"Title": "Strangers with Candy", "US Gross": 2072645, "Worldwide Gross": 2077844, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jun 28 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 4941}, {"Title": "Star Wars Ep. I: The Phantom Menace", "US Gross": 431088297, "Worldwide Gross": 924288297, "US DVD Sales": null, "Production Budget": 115000000, "Release Date": "May 19 1999", "MPAA Rating": "PG", "Running Time min": 133, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "George Lucas", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Stuck On You", "US Gross": 33832741, "Worldwide Gross": 63537164, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Dec 12 2003", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Bobby Farrelly", "Rotten Tomatoes Rating": 60, "IMDB Rating": 5.9, "IMDB Votes": 23196}, {"Title": "Step Up 2 the Streets", "US Gross": 58017783, "Worldwide Gross": 150017783, "US DVD Sales": 21801408, "Production Budget": 17500000, "Release Date": "Feb 14 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 25, "IMDB Rating": 5.6, "IMDB Votes": 20345}, {"Title": "The Sum of All Fears", "US Gross": 118471320, "Worldwide Gross": 193500000, "US DVD Sales": null, "Production Budget": 68000000, "Release Date": "May 31 2002", "MPAA Rating": "PG-13", "Running Time min": 124, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Phil Alden Robinson", "Rotten Tomatoes Rating": 59, "IMDB Rating": 6.3, "IMDB Votes": 38586}, {"Title": "Sunshine State", "US Gross": 3064356, "Worldwide Gross": 3064356, "US DVD Sales": null, "Production Budget": 5600000, "Release Date": "Jun 21 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John Sayles", "Rotten Tomatoes Rating": 80, "IMDB Rating": 6.8, "IMDB Votes": 2769}, {"Title": "Supercross", "US Gross": 3102550, "Worldwide Gross": 3252550, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 17 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 6, "IMDB Rating": 2.9, "IMDB Votes": 2514}, {"Title": "Surf's Up", "US Gross": 58867694, "Worldwide Gross": 145395745, "US DVD Sales": 46260220, "Production Budget": 100000000, "Release Date": "Jun 08 2007", "MPAA Rating": "PG", "Running Time min": 86, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 77, "IMDB Rating": 7, "IMDB Votes": 20974}, {"Title": "Surrogates", "US Gross": 38577772, "Worldwide Gross": 119668350, "US DVD Sales": 11099238, "Production Budget": 80000000, "Release Date": "Sep 25 2009", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Walt Disney Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Jonathan Mostow", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.3, "IMDB Votes": 36940}, {"Title": "Summer of Sam", "US Gross": 19288130, "Worldwide Gross": 19288130, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Jul 02 1999", "MPAA Rating": "R", "Running Time min": 142, "Distributor": "Walt Disney Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Spike Lee", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.5, "IMDB Votes": 18431}, {"Title": "Savage Grace", "US Gross": 434417, "Worldwide Gross": 968805, "US DVD Sales": null, "Production Budget": 4600000, "Release Date": "May 28 2008", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "IFC Films", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 3838}, {"Title": "Saving Private Ryan", "US Gross": 216335085, "Worldwide Gross": 481635085, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Jul 24 1998", "MPAA Rating": "R", "Running Time min": 169, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 91, "IMDB Rating": 8.5, "IMDB Votes": 270540}, {"Title": "S.W.A.T.", "US Gross": 116877597, "Worldwide Gross": 198100000, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Aug 08 2003", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Sony Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 48, "IMDB Rating": 5.9, "IMDB Votes": 43260}, {"Title": "Sideways", "US Gross": 71502303, "Worldwide Gross": 109705641, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Oct 22 2004", "MPAA Rating": "R", "Running Time min": 125, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Alexander Payne", "Rotten Tomatoes Rating": 97, "IMDB Rating": 7.8, "IMDB Votes": 69778}, {"Title": "Shall We Dance?", "US Gross": 57887882, "Worldwide Gross": 118097882, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Oct 15 2004", "MPAA Rating": "PG-13", "Running Time min": 106, "Distributor": "Miramax", "Source": "Remake", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Chelsom", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 2192}, {"Title": "Secret Window", "US Gross": 47958031, "Worldwide Gross": 92958031, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Mar 12 2004", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": "David Koepp", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.5, "IMDB Votes": 53868}, {"Title": "Swept Away", "US Gross": 598645, "Worldwide Gross": 598645, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Oct 11 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Guy Ritchie", "Rotten Tomatoes Rating": 5, "IMDB Rating": 3.4, "IMDB Votes": 7665}, {"Title": "Swimming Pool", "US Gross": 10130108, "Worldwide Gross": 22441323, "US DVD Sales": null, "Production Budget": 7800000, "Release Date": "Jul 04 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.8, "IMDB Votes": 19992}, {"Title": "The Sidewalks of New York", "US Gross": 2402459, "Worldwide Gross": 3100834, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Nov 21 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Edward Burns", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Swimfan", "US Gross": 28563926, "Worldwide Gross": 28563926, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Sep 06 2002", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.6, "IMDB Votes": 9577}, {"Title": "Sweet November", "US Gross": 25288103, "Worldwide Gross": 65754228, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Feb 16 2001", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 16, "IMDB Rating": 6, "IMDB Votes": 20891}, {"Title": "Sydney White", "US Gross": 11892415, "Worldwide Gross": 12778631, "US DVD Sales": 6828112, "Production Budget": 16500000, "Release Date": "Sep 21 2007", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Universal", "Source": "Traditional/Legend/Fairytale", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 37, "IMDB Rating": 6.2, "IMDB Votes": 9309}, {"Title": "Switchback", "US Gross": 6504442, "Worldwide Gross": 6504442, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Oct 31 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 32, "IMDB Rating": 6.1, "IMDB Votes": 5141}, {"Title": "Star Wars: The Clone Wars", "US Gross": 35161554, "Worldwide Gross": 68161554, "US DVD Sales": 22831563, "Production Budget": 8500000, "Release Date": "Aug 15 2008", "MPAA Rating": "PG", "Running Time min": 98, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.4, "IMDB Votes": 17513}, {"Title": "The Sweetest Thing", "US Gross": 24430272, "Worldwide Gross": 44633441, "US DVD Sales": null, "Production Budget": 43000000, "Release Date": "Apr 12 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Roger Kumble", "Rotten Tomatoes Rating": 25, "IMDB Rating": 4.7, "IMDB Votes": 23378}, {"Title": "Six Days, Seven Nights", "US Gross": 74339294, "Worldwide Gross": 164800000, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Jun 12 1998", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ivan Reitman", "Rotten Tomatoes Rating": 37, "IMDB Rating": 4.7, "IMDB Votes": 48}, {"Title": "Sex Drive", "US Gross": 8402485, "Worldwide Gross": 10412485, "US DVD Sales": 10245880, "Production Budget": 19000000, "Release Date": "Oct 17 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Summit Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.8, "IMDB Votes": 26920}, {"Title": "Sexy Beast", "US Gross": 6946056, "Worldwide Gross": 6946056, "US DVD Sales": null, "Production Budget": 4300000, "Release Date": "Jun 13 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 20916}, {"Title": "Chinjeolhan geumjassi", "US Gross": 211667, "Worldwide Gross": 23471871, "US DVD Sales": null, "Production Budget": 4500000, "Release Date": "May 05 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Tartan Films", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": null, "Director": "Chan-wook Park", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.7, "IMDB Votes": 19341}, {"Title": "Synecdoche, New York", "US Gross": 3081925, "Worldwide Gross": 3081925, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 24 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Syriana", "US Gross": 50824620, "Worldwide Gross": 95024620, "US DVD Sales": 15415665, "Production Budget": 50000000, "Release Date": "Nov 23 2005", "MPAA Rating": "R", "Running Time min": 126, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 72, "IMDB Rating": 7.1, "IMDB Votes": 53265}, {"Title": "Suspect Zero", "US Gross": 8712564, "Worldwide Gross": 8712564, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Aug 27 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "E. Elias Merhige", "Rotten Tomatoes Rating": 18, "IMDB Rating": 5.8, "IMDB Votes": 9804}, {"Title": "Tadpole", "US Gross": 2891288, "Worldwide Gross": 3200241, "US DVD Sales": null, "Production Budget": 150000, "Release Date": "Jul 19 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Gary Winick", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.1, "IMDB Votes": 3800}, {"Title": "Tailor of Panama", "US Gross": 13491653, "Worldwide Gross": 27491653, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Mar 30 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "John Boorman", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Taken", "US Gross": 145000989, "Worldwide Gross": 225461461, "US DVD Sales": 67315399, "Production Budget": 25000000, "Release Date": "Jan 30 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Pierre Morel", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.8, "IMDB Votes": 1125}, {"Title": "Take the Lead", "US Gross": 34742066, "Worldwide Gross": 65742066, "US DVD Sales": 21100670, "Production Budget": 30000000, "Release Date": "Apr 01 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 44, "IMDB Rating": 6.5, "IMDB Votes": 10015}, {"Title": "Talladega Nights: The Ballad of Ricky Bobby", "US Gross": 148213377, "Worldwide Gross": 163013377, "US DVD Sales": 84838372, "Production Budget": 73000000, "Release Date": "Aug 04 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Adam McKay", "Rotten Tomatoes Rating": 72, "IMDB Rating": 6.4, "IMDB Votes": 50407}, {"Title": "The Talented Mr. Ripley", "US Gross": 81292135, "Worldwide Gross": 81292135, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Dec 25 1999", "MPAA Rating": "R", "Running Time min": 139, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Anthony Minghella", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.2, "IMDB Votes": 63319}, {"Title": "Tarnation", "US Gross": 592014, "Worldwide Gross": 1162014, "US DVD Sales": null, "Production Budget": 218, "Release Date": "Oct 06 2004", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "WellSpring", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 3847}, {"Title": "Taxman", "US Gross": 9871, "Worldwide Gross": 9871, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Sep 17 1999", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": null, "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 520}, {"Title": "Thunderbirds", "US Gross": 6768055, "Worldwide Gross": 28231444, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jul 30 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Jonathan Frakes", "Rotten Tomatoes Rating": 19, "IMDB Rating": 4, "IMDB Votes": 5397}, {"Title": "The Best Man", "US Gross": 34102780, "Worldwide Gross": 34572780, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Oct 22 1999", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Malcolm D. Lee", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.1, "IMDB Votes": 2019}, {"Title": "Book of Shadows: Blair Witch 2", "US Gross": 26421314, "Worldwide Gross": 47721314, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 27 2000", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4, "IMDB Votes": 16122}, {"Title": "The Cave", "US Gross": 15007991, "Worldwide Gross": 27147991, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 26 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 12, "IMDB Rating": 4.8, "IMDB Votes": 13025}, {"Title": "This Christmas", "US Gross": 49121934, "Worldwide Gross": 49778552, "US DVD Sales": 17922664, "Production Budget": 13000000, "Release Date": "Nov 21 2007", "MPAA Rating": "PG-13", "Running Time min": 118, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 5.4, "IMDB Votes": 3351}, {"Title": "The Core", "US Gross": 31111260, "Worldwide Gross": 74132631, "US DVD Sales": null, "Production Budget": 85000000, "Release Date": "Mar 28 2003", "MPAA Rating": "PG-13", "Running Time min": 133, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Jon Amiel", "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.3, "IMDB Votes": 27375}, {"Title": "The Thomas Crown Affair", "US Gross": 69304264, "Worldwide Gross": 124304264, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Aug 06 1999", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "MGM", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "John McTiernan", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.7, "IMDB Votes": 37692}, {"Title": "The Damned United", "US Gross": 449865, "Worldwide Gross": 4054204, "US DVD Sales": null, "Production Budget": 6400000, "Release Date": "Oct 09 2009", "MPAA Rating": "R", "Running Time min": 97, "Distributor": "Sony Pictures Classics", "Source": "Based on Factual Book/Article", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Tom Hooper", "Rotten Tomatoes Rating": 94, "IMDB Rating": 7.5, "IMDB Votes": 7560}, {"Title": "The Tale of Despereaux", "US Gross": 50877145, "Worldwide Gross": 88717945, "US DVD Sales": 26233404, "Production Budget": 60000000, "Release Date": "Dec 19 2008", "MPAA Rating": "G", "Running Time min": 93, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Sam Fell", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.1, "IMDB Votes": 7460}, {"Title": "Team America: World Police", "US Gross": 32774834, "Worldwide Gross": 50274834, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 15 2004", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Trey Parker", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.3, "IMDB Votes": 58763}, {"Title": "Tea with Mussolini", "US Gross": 14395874, "Worldwide Gross": 14395874, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "May 14 1999", "MPAA Rating": "PG", "Running Time min": 116, "Distributor": "MGM", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Franco Zeffirelli", "Rotten Tomatoes Rating": 67, "IMDB Rating": 6.7, "IMDB Votes": 5435}, {"Title": "Tears of the Sun", "US Gross": 43632458, "Worldwide Gross": 85632458, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Mar 07 2003", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Antoine Fuqua", "Rotten Tomatoes Rating": 34, "IMDB Rating": 6.4, "IMDB Votes": 34304}, {"Title": "The Big Tease", "US Gross": 185577, "Worldwide Gross": 185577, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jan 28 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.1, "IMDB Votes": 1610}, {"Title": "Not Another Teen Movie", "US Gross": 37882551, "Worldwide Gross": 62401343, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 14 2001", "MPAA Rating": "R", "Running Time min": 89, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.5, "IMDB Votes": 36678}, {"Title": "Teeth", "US Gross": 347578, "Worldwide Gross": 2300349, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jan 18 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Roadside Attractions", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 18}, {"Title": "Bridge to Terabithia", "US Gross": 82234139, "Worldwide Gross": 136934139, "US DVD Sales": 41383048, "Production Budget": 25000000, "Release Date": "Feb 16 2007", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 85, "IMDB Rating": 7.4, "IMDB Votes": 34482}, {"Title": "Terminator 3: Rise of the Machines", "US Gross": 150358296, "Worldwide Gross": 433058296, "US DVD Sales": null, "Production Budget": 170000000, "Release Date": "Jul 01 2003", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Jonathan Mostow", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 107667}, {"Title": "Terminator Salvation: The Future Begins", "US Gross": 125322469, "Worldwide Gross": 371628539, "US DVD Sales": 28434778, "Production Budget": 200000000, "Release Date": "May 21 2009", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Joseph McGinty Nichol", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Transformers", "US Gross": 319246193, "Worldwide Gross": 708272592, "US DVD Sales": 290787166, "Production Budget": 151000000, "Release Date": "Jul 03 2007", "MPAA Rating": "PG-13", "Running Time min": 140, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Michael Bay", "Rotten Tomatoes Rating": 57, "IMDB Rating": 7.3, "IMDB Votes": 197131}, {"Title": "Transformers: Revenge of the Fallen", "US Gross": 402111870, "Worldwide Gross": 836303693, "US DVD Sales": 217509899, "Production Budget": 210000000, "Release Date": "Jun 24 2009", "MPAA Rating": "PG-13", "Running Time min": 149, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Michael Bay", "Rotten Tomatoes Rating": 20, "IMDB Rating": 6, "IMDB Votes": 95786}, {"Title": "The Goods: Live Hard, Sell Hard", "US Gross": 15122676, "Worldwide Gross": 15122676, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Aug 14 2009", "MPAA Rating": "R", "Running Time min": 89, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Neal Brennan", "Rotten Tomatoes Rating": 26, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Greatest Game Ever Played", "US Gross": 15331289, "Worldwide Gross": 15425073, "US DVD Sales": 37687804, "Production Budget": 25000000, "Release Date": "Sep 30 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Bill Paxton", "Rotten Tomatoes Rating": 62, "IMDB Rating": 7.3, "IMDB Votes": 7876}, {"Title": "The Ghost Writer", "US Gross": 15541549, "Worldwide Gross": 63241549, "US DVD Sales": 3354366, "Production Budget": 45000000, "Release Date": "Feb 19 2010", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Summit Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Roman Polanski", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.6, "IMDB Votes": 22875}, {"Title": "Joheunnom nabbeunnom isanghannom", "US Gross": 128486, "Worldwide Gross": 42226657, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Apr 23 2010", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 5548}, {"Title": "The Beach", "US Gross": 39778599, "Worldwide Gross": 39778599, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 11 2000", "MPAA Rating": "R", "Running Time min": 119, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Danny Boyle", "Rotten Tomatoes Rating": 19, "IMDB Rating": 4.5, "IMDB Votes": 229}, {"Title": "The Box", "US Gross": 15051977, "Worldwide Gross": 26341896, "US DVD Sales": 3907625, "Production Budget": 25000000, "Release Date": "Nov 06 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": "Richard Kelly", "Rotten Tomatoes Rating": 45, "IMDB Rating": 6.8, "IMDB Votes": 418}, {"Title": "The Wild Thornberrys", "US Gross": 40108697, "Worldwide Gross": 60694737, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Dec 20 2002", "MPAA Rating": "PG", "Running Time min": 85, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 1104}, {"Title": "Bug", "US Gross": 7006708, "Worldwide Gross": 7006708, "US DVD Sales": 1251654, "Production Budget": 4000000, "Release Date": "May 25 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "William Friedkin", "Rotten Tomatoes Rating": null, "IMDB Rating": 6, "IMDB Votes": 14164}, {"Title": "They", "US Gross": 12840842, "Worldwide Gross": 12840842, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Nov 27 2002", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 37, "IMDB Rating": 4.6, "IMDB Votes": 6550}, {"Title": "The Eye", "US Gross": 31418697, "Worldwide Gross": 56706727, "US DVD Sales": 12319404, "Production Budget": 12000000, "Release Date": "Feb 01 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.3, "IMDB Votes": 17304}, {"Title": "The Fog", "US Gross": 29511112, "Worldwide Gross": 37048526, "US DVD Sales": null, "Production Budget": 18000000, "Release Date": "Oct 14 2005", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Rupert Wainwright", "Rotten Tomatoes Rating": 5, "IMDB Rating": 3.3, "IMDB Votes": 15760}, {"Title": "The Thin Red Line", "US Gross": 36400491, "Worldwide Gross": 36400491, "US DVD Sales": null, "Production Budget": 52000000, "Release Date": "Dec 23 1998", "MPAA Rating": "R", "Running Time min": 166, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Terrence Malick", "Rotten Tomatoes Rating": 78, "IMDB Rating": 7.5, "IMDB Votes": 60966}, {"Title": "Thirteen Days", "US Gross": 34566746, "Worldwide Gross": 66554547, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Dec 25 2000", "MPAA Rating": "PG-13", "Running Time min": 145, "Distributor": "New Line", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Roger Donaldson", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.3, "IMDB Votes": 23578}, {"Title": "The Kid", "US Gross": 69688384, "Worldwide Gross": 69688384, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Jul 07 2000", "MPAA Rating": "PG", "Running Time min": 104, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jon Turteltaub", "Rotten Tomatoes Rating": 49, "IMDB Rating": 5.9, "IMDB Votes": 14927}, {"Title": "The Man", "US Gross": 8330720, "Worldwide Gross": 10393696, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Sep 09 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Les Mayfield", "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.4, "IMDB Votes": 9356}, {"Title": "House on Haunted Hill", "US Gross": 40846082, "Worldwide Gross": 40846082, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Oct 29 1999", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "William Malone", "Rotten Tomatoes Rating": 25, "IMDB Rating": 5.2, "IMDB Votes": 22795}, {"Title": "The One", "US Gross": 43905746, "Worldwide Gross": 43905746, "US DVD Sales": null, "Production Budget": 49000000, "Release Date": "Nov 02 2001", "MPAA Rating": "PG-13", "Running Time min": 87, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "James Wong", "Rotten Tomatoes Rating": 13, "IMDB Rating": 5.6, "IMDB Votes": 24416}, {"Title": "Gwoemul", "US Gross": 2201923, "Worldwide Gross": 89006691, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Mar 09 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 26783}, {"Title": "Thr3e", "US Gross": 1008849, "Worldwide Gross": 1060418, "US DVD Sales": null, "Production Budget": 2400000, "Release Date": "Jan 05 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "The Bigger Picture", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 5, "IMDB Votes": 2825}, {"Title": "Three to Tango", "US Gross": 10570375, "Worldwide Gross": 10570375, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 22 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.8, "IMDB Votes": 11148}, {"Title": "The Thirteenth Floor", "US Gross": 11810854, "Worldwide Gross": 11810854, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "May 28 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 28, "IMDB Rating": 6.7, "IMDB Votes": 19939}, {"Title": "The 13th Warrior", "US Gross": 32698899, "Worldwide Gross": 61698899, "US DVD Sales": null, "Production Budget": 125000000, "Release Date": "Aug 27 1999", "MPAA Rating": "R", "Running Time min": 103, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "John McTiernan", "Rotten Tomatoes Rating": 33, "IMDB Rating": 6.3, "IMDB Votes": 36151}, {"Title": "The Tuxedo", "US Gross": 50586000, "Worldwide Gross": 50586000, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Sep 27 2002", "MPAA Rating": "PG-13", "Running Time min": 99, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 22, "IMDB Rating": 5, "IMDB Votes": 19370}, {"Title": "The Tigger Movie", "US Gross": 4554533, "Worldwide Gross": 55159800, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Feb 11 2000", "MPAA Rating": "G", "Running Time min": 77, "Distributor": "Walt Disney Pictures", "Source": "Spin-Off", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 61, "IMDB Rating": 6, "IMDB Votes": 2986}, {"Title": "Timeline", "US Gross": 19480739, "Worldwide Gross": 26703184, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Nov 26 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Richard Donner", "Rotten Tomatoes Rating": 11, "IMDB Rating": 5.3, "IMDB Votes": 19318}, {"Title": "The Adventures of Tintin: Secret of the Unicorn", "US Gross": 0, "Worldwide Gross": 0, "US DVD Sales": null, "Production Budget": 130000000, "Release Date": "Dec 23 2011", "MPAA Rating": null, "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Thirteen", "US Gross": 4601043, "Worldwide Gross": 6302406, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Aug 20 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Catherine Hardwicke", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 31482}, {"Title": "Titan A.E.", "US Gross": 22751979, "Worldwide Gross": 36751979, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jun 16 2000", "MPAA Rating": "PG", "Running Time min": 95, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Don Bluth", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.4, "IMDB Votes": 22286}, {"Title": "Titanic", "US Gross": 600788188, "Worldwide Gross": 1842879955, "US DVD Sales": null, "Production Budget": 200000000, "Release Date": "Dec 19 1997", "MPAA Rating": "PG-13", "Running Time min": 194, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Historical Fiction", "Director": "James Cameron", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.4, "IMDB Votes": 240732}, {"Title": "The Kids Are All Right", "US Gross": 20553799, "Worldwide Gross": 20553799, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jul 09 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 96, "IMDB Rating": 7.8, "IMDB Votes": 3093}, {"Title": "The League of Extraordinary Gentlemen", "US Gross": 66465204, "Worldwide Gross": 179265204, "US DVD Sales": null, "Production Budget": 78000000, "Release Date": "Jul 11 2003", "MPAA Rating": "PG-13", "Running Time min": 110, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Stephen Norrington", "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.5, "IMDB Votes": 50710}, {"Title": "The Time Machine", "US Gross": 56684819, "Worldwide Gross": 98983590, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Mar 08 2002", "MPAA Rating": "PG-13", "Running Time min": 96, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 28, "IMDB Rating": 5.6, "IMDB Votes": 32465}, {"Title": "Tomcats", "US Gross": 13558739, "Worldwide Gross": 13558739, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Mar 30 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 4.9, "IMDB Votes": 9505}, {"Title": "The Mist", "US Gross": 25593755, "Worldwide Gross": 54777490, "US DVD Sales": 29059367, "Production Budget": 13000000, "Release Date": "Nov 21 2007", "MPAA Rating": "R", "Running Time min": 127, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Science Fiction", "Director": "Frank Darabont", "Rotten Tomatoes Rating": 73, "IMDB Rating": 7.4, "IMDB Votes": 76830}, {"Title": "TMNT", "US Gross": 54149098, "Worldwide Gross": 95009888, "US DVD Sales": 30836109, "Production Budget": 35000000, "Release Date": "Mar 23 2007", "MPAA Rating": "PG", "Running Time min": 88, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 26178}, {"Title": "Tomorrow Never Dies", "US Gross": 125304276, "Worldwide Gross": 339504276, "US DVD Sales": null, "Production Budget": 110000000, "Release Date": "Dec 19 1997", "MPAA Rating": "PG-13", "Running Time min": 119, "Distributor": "MGM", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Roger Spottiswoode", "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.4, "IMDB Votes": 46650}, {"Title": "The Royal Tenenbaums", "US Gross": 52353636, "Worldwide Gross": 71430876, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Dec 14 2001", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Wes Anderson", "Rotten Tomatoes Rating": 79, "IMDB Rating": 7.6, "IMDB Votes": 82349}, {"Title": "Lara Croft: Tomb Raider: The Cradle of Life", "US Gross": 65653758, "Worldwide Gross": 156453758, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jul 25 2003", "MPAA Rating": "PG-13", "Running Time min": 117, "Distributor": "Paramount Pictures", "Source": "Based on Game", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Jan De Bont", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.2, "IMDB Votes": 32832}, {"Title": "Lara Croft: Tomb Raider", "US Gross": 131144183, "Worldwide Gross": 274644183, "US DVD Sales": null, "Production Budget": 94000000, "Release Date": "Jun 15 2001", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Paramount Pictures", "Source": "Based on Game", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": "Simon West", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.4, "IMDB Votes": 55582}, {"Title": "The Day After Tomorrow", "US Gross": 186740799, "Worldwide Gross": 544272402, "US DVD Sales": null, "Production Budget": 125000000, "Release Date": "May 28 2004", "MPAA Rating": "PG-13", "Running Time min": 124, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "Roland Emmerich", "Rotten Tomatoes Rating": 46, "IMDB Rating": 6.3, "IMDB Votes": 92241}, {"Title": "Topsy Turvy", "US Gross": 6201757, "Worldwide Gross": 6201757, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Dec 17 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "USA Films", "Source": "Based on Real Life Events", "Major Genre": "Musical", "Creative Type": "Dramatization", "Director": "Mike Leigh", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 6215}, {"Title": "Torque", "US Gross": 21176322, "Worldwide Gross": 46176322, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jan 16 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 23, "IMDB Rating": 3.5, "IMDB Votes": 12986}, {"Title": "The Others", "US Gross": 96522687, "Worldwide Gross": 209947037, "US DVD Sales": null, "Production Budget": 17000000, "Release Date": "Aug 10 2001", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.8, "IMDB Votes": 86091}, {"Title": "The Town", "US Gross": 30980607, "Worldwide Gross": 33180607, "US DVD Sales": null, "Production Budget": 37000000, "Release Date": "Sep 17 2010", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Ben Affleck", "Rotten Tomatoes Rating": 84, "IMDB Rating": 8.7, "IMDB Votes": 493}, {"Title": "Toy Story 2", "US Gross": 245852179, "Worldwide Gross": 484966906, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Nov 19 1999", "MPAA Rating": "G", "Running Time min": 92, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "John Lasseter", "Rotten Tomatoes Rating": 100, "IMDB Rating": 8, "IMDB Votes": 119357}, {"Title": "Toy Story 3", "US Gross": 410640665, "Worldwide Gross": 1046340665, "US DVD Sales": null, "Production Budget": 200000000, "Release Date": "Jun 18 2010", "MPAA Rating": "G", "Running Time min": 102, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 99, "IMDB Rating": 8.9, "IMDB Votes": 67380}, {"Title": "The Taking of Pelham 123", "US Gross": 65452312, "Worldwide Gross": 148989667, "US DVD Sales": 23048229, "Production Budget": 110000000, "Release Date": "Jun 12 2009", "MPAA Rating": "R", "Running Time min": 106, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Tony Scott", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.5, "IMDB Votes": 33452}, {"Title": "Treasure Planet", "US Gross": 38120554, "Worldwide Gross": 91800000, "US DVD Sales": null, "Production Budget": 100000000, "Release Date": "Nov 27 2002", "MPAA Rating": "PG", "Running Time min": 96, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.6, "IMDB Votes": 12099}, {"Title": "Traffic", "US Gross": 124107476, "Worldwide Gross": 208300000, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Dec 27 2000", "MPAA Rating": "R", "Running Time min": 147, "Distributor": "USA Films", "Source": "Based on TV", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Steven Soderbergh", "Rotten Tomatoes Rating": 91, "IMDB Rating": 7.8, "IMDB Votes": 85759}, {"Title": "Thomas and the Magic Railroad", "US Gross": 15911332, "Worldwide Gross": 15911332, "US DVD Sales": null, "Production Budget": 19000000, "Release Date": "Jul 26 2000", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Destination Films", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 2.7, "IMDB Votes": 1613}, {"Title": "Training Day", "US Gross": 76261036, "Worldwide Gross": 104505362, "US DVD Sales": null, "Production Budget": 45000000, "Release Date": "Oct 05 2001", "MPAA Rating": "R", "Running Time min": 122, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Antoine Fuqua", "Rotten Tomatoes Rating": 72, "IMDB Rating": 7.6, "IMDB Votes": 82057}, {"Title": "Traitor", "US Gross": 23530831, "Worldwide Gross": 27664173, "US DVD Sales": 13547082, "Production Budget": 22000000, "Release Date": "Aug 27 2008", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Overture Films", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 61, "IMDB Rating": 7.1, "IMDB Votes": 22468}, {"Title": "Trapped", "US Gross": 6916869, "Worldwide Gross": 6916869, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 20 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 18, "IMDB Rating": 6, "IMDB Votes": 10685}, {"Title": "The Ring", "US Gross": 129094024, "Worldwide Gross": 249094024, "US DVD Sales": null, "Production Budget": 48000000, "Release Date": "Oct 18 2002", "MPAA Rating": "PG-13", "Running Time min": 115, "Distributor": "Dreamworks SKG", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Gore Verbinski", "Rotten Tomatoes Rating": 71, "IMDB Rating": 5.5, "IMDB Votes": 589}, {"Title": "Trippin'", "US Gross": 9017070, "Worldwide Gross": 9017070, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "May 12 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "October Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 4.6, "IMDB Votes": 673}, {"Title": "Star Trek", "US Gross": 257730019, "Worldwide Gross": 385680447, "US DVD Sales": 98317480, "Production Budget": 140000000, "Release Date": "May 08 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": "J.J. Abrams", "Rotten Tomatoes Rating": 94, "IMDB Rating": 8.2, "IMDB Votes": 134187}, {"Title": "The Terminal", "US Gross": 77073959, "Worldwide Gross": 218673959, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jun 18 2004", "MPAA Rating": "PG-13", "Running Time min": 128, "Distributor": "Dreamworks SKG", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": 60, "IMDB Rating": 7.1, "IMDB Votes": 79803}, {"Title": "Transamerica", "US Gross": 9015303, "Worldwide Gross": 15151744, "US DVD Sales": 3927958, "Production Budget": 1000000, "Release Date": "Dec 02 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.6, "IMDB Votes": 19343}, {"Title": "The Transporter 2", "US Gross": 43095856, "Worldwide Gross": 85095856, "US DVD Sales": null, "Production Budget": 32000000, "Release Date": "Sep 02 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Louis Leterrier", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 51005}, {"Title": "The Transporter", "US Gross": 25296447, "Worldwide Gross": 43928932, "US DVD Sales": null, "Production Budget": 21000000, "Release Date": "Oct 11 2002", "MPAA Rating": "PG-13", "Running Time min": 92, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Corey Yuen", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6.6, "IMDB Votes": 51005}, {"Title": "The Road", "US Gross": 8114270, "Worldwide Gross": 23914270, "US DVD Sales": 6599387, "Production Budget": 25000000, "Release Date": "Nov 25 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 75, "IMDB Rating": 7.5, "IMDB Votes": 39124}, {"Title": "Tropic Thunder", "US Gross": 110461307, "Worldwide Gross": 188163455, "US DVD Sales": 50387300, "Production Budget": 90000000, "Release Date": "Aug 13 2008", "MPAA Rating": "R", "Running Time min": 106, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ben Stiller", "Rotten Tomatoes Rating": 83, "IMDB Rating": 7.2, "IMDB Votes": 104839}, {"Title": "Troy", "US Gross": 133298577, "Worldwide Gross": 497398577, "US DVD Sales": null, "Production Budget": 150000000, "Release Date": "May 14 2004", "MPAA Rating": "R", "Running Time min": 163, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Wolfgang Petersen", "Rotten Tomatoes Rating": 54, "IMDB Rating": 7, "IMDB Votes": 129575}, {"Title": "xXx", "US Gross": 141930000, "Worldwide Gross": 267200000, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Aug 09 2002", "MPAA Rating": "PG-13", "Running Time min": 124, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Rob Cohen", "Rotten Tomatoes Rating": 48, "IMDB Rating": 5.5, "IMDB Votes": 52636}, {"Title": "Ta Ra Rum Pum", "US Gross": 872643, "Worldwide Gross": 9443864, "US DVD Sales": null, "Production Budget": 7400000, "Release Date": "Apr 27 2007", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "Yash Raj Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 67, "IMDB Rating": 5.1, "IMDB Votes": 1051}, {"Title": "The Truman Show", "US Gross": 125618201, "Worldwide Gross": 248400000, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Jun 05 1998", "MPAA Rating": "PG", "Running Time min": 102, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Peter Weir", "Rotten Tomatoes Rating": 95, "IMDB Rating": 8, "IMDB Votes": 156346}, {"Title": "Trust the Man", "US Gross": 1530535, "Worldwide Gross": 2548378, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Aug 18 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 27, "IMDB Rating": 5.8, "IMDB Votes": 5262}, {"Title": "Where the Truth Lies", "US Gross": 872142, "Worldwide Gross": 1415656, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Oct 14 2005", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": null, "Director": "Atom Egoyan", "Rotten Tomatoes Rating": 41, "IMDB Rating": 6.6, "IMDB Votes": 8951}, {"Title": "Tarzan", "US Gross": 171091819, "Worldwide Gross": 448191819, "US DVD Sales": null, "Production Budget": 145000000, "Release Date": "Jun 16 1999", "MPAA Rating": "G", "Running Time min": 88, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Kevin Lima", "Rotten Tomatoes Rating": 88, "IMDB Rating": 6.9, "IMDB Votes": 26871}, {"Title": "The Secret in Their Eyes", "US Gross": 6374789, "Worldwide Gross": 6374789, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Apr 16 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Tsotsi", "US Gross": 2912606, "Worldwide Gross": 9879971, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Feb 24 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Gavin Hood", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 13167}, {"Title": "Teacher's Pet: The Movie", "US Gross": 6491969, "Worldwide Gross": 6491969, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jan 16 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Time Traveler's Wife", "US Gross": 63414846, "Worldwide Gross": 98666635, "US DVD Sales": 19814283, "Production Budget": 39000000, "Release Date": "Aug 14 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 37, "IMDB Rating": 7.1, "IMDB Votes": 23908}, {"Title": "The Touch", "US Gross": 0, "Worldwide Gross": 5918742, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 31 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.5, "IMDB Votes": 1031}, {"Title": "Tuck Everlasting", "US Gross": 19161999, "Worldwide Gross": 19344615, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Oct 11 2002", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Kids Fiction", "Director": "Jay Russell", "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.5, "IMDB Votes": 6639}, {"Title": "Thumbsucker", "US Gross": 1328679, "Worldwide Gross": 1919197, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Sep 16 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 70, "IMDB Rating": 6.7, "IMDB Votes": 12109}, {"Title": "Turbulence", "US Gross": 11532774, "Worldwide Gross": 11532774, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Jan 10 1997", "MPAA Rating": "R", "Running Time min": null, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 17, "IMDB Rating": 4.5, "IMDB Votes": 5147}, {"Title": "Turistas", "US Gross": 7027762, "Worldwide Gross": 14321070, "US DVD Sales": 3507046, "Production Budget": 10000000, "Release Date": "Dec 01 2006", "MPAA Rating": "R", "Running Time min": 89, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 83}, {"Title": "The Wash", "US Gross": 10097096, "Worldwide Gross": 10097096, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Nov 14 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 3.6, "IMDB Votes": 3095}, {"Title": "Two Girls and a Guy", "US Gross": 2057193, "Worldwide Gross": 2315026, "US DVD Sales": null, "Production Budget": 1000000, "Release Date": "Apr 24 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "James Toback", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 3722}, {"Title": "The Wild", "US Gross": 37384046, "Worldwide Gross": 99384046, "US DVD Sales": 43063958, "Production Budget": 80000000, "Release Date": "Apr 14 2006", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 19, "IMDB Rating": 5.4, "IMDB Votes": 8498}, {"Title": "Twilight", "US Gross": 15055091, "Worldwide Gross": 15055091, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 06 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.1, "IMDB Votes": 4840}, {"Title": "Twisted", "US Gross": 25195050, "Worldwide Gross": 40119848, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Feb 27 2004", "MPAA Rating": "R", "Running Time min": 97, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Philip Kaufman", "Rotten Tomatoes Rating": 2, "IMDB Rating": 4.8, "IMDB Votes": 83}, {"Title": "The Twilight Saga: New Moon", "US Gross": 296623634, "Worldwide Gross": 702623634, "US DVD Sales": 162665819, "Production Budget": 50000000, "Release Date": "Nov 20 2009", "MPAA Rating": "PG-13", "Running Time min": 130, "Distributor": "Summit Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Chris Weitz", "Rotten Tomatoes Rating": 28, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Twilight Saga: Eclipse", "US Gross": 300155447, "Worldwide Gross": 688155447, "US DVD Sales": null, "Production Budget": 68000000, "Release Date": "Jun 30 2010", "MPAA Rating": "PG-13", "Running Time min": 124, "Distributor": "Summit Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "David Slade", "Rotten Tomatoes Rating": 51, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Twilight", "US Gross": 192769854, "Worldwide Gross": 396439854, "US DVD Sales": 193591463, "Production Budget": 37000000, "Release Date": "Nov 21 2008", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "Summit Entertainment", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": "Catherine Hardwicke", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.1, "IMDB Votes": 4840}, {"Title": "Town & Country", "US Gross": 6712451, "Worldwide Gross": 10364769, "US DVD Sales": null, "Production Budget": 105000000, "Release Date": "Apr 27 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peter Chelsom", "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.4, "IMDB Votes": 2889}, {"Title": "200 Cigarettes", "US Gross": 6852450, "Worldwide Gross": 6852450, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Feb 26 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.4, "IMDB Votes": 8645}, {"Title": "The Texas Chainsaw Massacre: The Beginning", "US Gross": 39517763, "Worldwide Gross": 50517763, "US DVD Sales": 15943146, "Production Budget": 16000000, "Release Date": "Oct 06 2006", "MPAA Rating": "R", "Running Time min": 90, "Distributor": "New Line", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.8, "IMDB Votes": 20196}, {"Title": "The Texas Chainsaw Massacre", "US Gross": 80571655, "Worldwide Gross": 107071655, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Oct 17 2003", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "New Line", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 36, "IMDB Rating": 6.1, "IMDB Votes": 39172}, {"Title": "Texas Rangers", "US Gross": 623374, "Worldwide Gross": 623374, "US DVD Sales": null, "Production Budget": 38000000, "Release Date": "Nov 30 2001", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Based on Book/Short Story", "Major Genre": "Western", "Creative Type": "Historical Fiction", "Director": "Steve Miner", "Rotten Tomatoes Rating": null, "IMDB Rating": 5, "IMDB Votes": 2645}, {"Title": "Tom yum goong", "US Gross": 12044087, "Worldwide Gross": 43044087, "US DVD Sales": 13125985, "Production Budget": 5700000, "Release Date": "Sep 08 2006", "MPAA Rating": "R", "Running Time min": 82, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.9, "IMDB Votes": 13929}, {"Title": "Thank You For Smoking", "US Gross": 24793509, "Worldwide Gross": 39232211, "US DVD Sales": 16660404, "Production Budget": 7500000, "Release Date": "Mar 17 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Jason Reitman", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 65340}, {"Title": "U2 3D", "US Gross": 10363341, "Worldwide Gross": 22664070, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Jan 23 2008", "MPAA Rating": "G", "Running Time min": 85, "Distributor": "National Geographic Entertainment", "Source": "Based on Real Life Events", "Major Genre": "Concert/Performance", "Creative Type": "Factual", "Director": "Catherine Owens", "Rotten Tomatoes Rating": null, "IMDB Rating": 8.3, "IMDB Votes": 2090}, {"Title": "U-571", "US Gross": 77086030, "Worldwide Gross": 127630030, "US DVD Sales": null, "Production Budget": 62000000, "Release Date": "Apr 21 2000", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Jonathan Mostow", "Rotten Tomatoes Rating": 68, "IMDB Rating": 6.4, "IMDB Votes": 32528}, {"Title": "Undercover Brother", "US Gross": 38230435, "Worldwide Gross": 38230435, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "May 31 2002", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Malcolm D. Lee", "Rotten Tomatoes Rating": 76, "IMDB Rating": 5.7, "IMDB Votes": 14237}, {"Title": "Underclassman", "US Gross": 5654777, "Worldwide Gross": 5654777, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Sep 02 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.3, "IMDB Votes": 3249}, {"Title": "Dodgeball: A True Underdog Story", "US Gross": 114326736, "Worldwide Gross": 167726736, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 18 2004", "MPAA Rating": "PG-13", "Running Time min": 92, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.6, "IMDB Votes": 65329}, {"Title": "The Ugly Truth", "US Gross": 88915214, "Worldwide Gross": 203115214, "US DVD Sales": 33619971, "Production Budget": 38000000, "Release Date": "Jul 24 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Robert Luketic", "Rotten Tomatoes Rating": 14, "IMDB Rating": 6.4, "IMDB Votes": 27888}, {"Title": "Ultraviolet", "US Gross": 18522064, "Worldwide Gross": 20722064, "US DVD Sales": 14141779, "Production Budget": 30000000, "Release Date": "Mar 03 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 4, "IMDB Votes": 28547}, {"Title": "Unaccompanied Minors", "US Gross": 16655224, "Worldwide Gross": 21949214, "US DVD Sales": 7060674, "Production Budget": 25000000, "Release Date": "Dec 08 2006", "MPAA Rating": "PG", "Running Time min": 87, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.7, "IMDB Votes": 4133}, {"Title": "Unbreakable", "US Gross": 94999143, "Worldwide Gross": 248099143, "US DVD Sales": null, "Production Budget": 73243106, "Release Date": "Nov 22 2000", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Super Hero", "Director": "M. Night Shyamalan", "Rotten Tomatoes Rating": 68, "IMDB Rating": 7.3, "IMDB Votes": 97324}, {"Title": "The Unborn", "US Gross": 42670410, "Worldwide Gross": 77208315, "US DVD Sales": 11045109, "Production Budget": 16000000, "Release Date": "Jan 09 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "David Goyer", "Rotten Tomatoes Rating": 11, "IMDB Rating": 4.5, "IMDB Votes": 15331}, {"Title": "Undead", "US Gross": 41196, "Worldwide Gross": 187847, "US DVD Sales": null, "Production Budget": 750000, "Release Date": "Jul 01 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.6, "IMDB Votes": 6957}, {"Title": "Underworld", "US Gross": 51970690, "Worldwide Gross": 95708457, "US DVD Sales": null, "Production Budget": 22000000, "Release Date": "Sep 19 2003", "MPAA Rating": "R", "Running Time min": 121, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Len Wiseman", "Rotten Tomatoes Rating": 30, "IMDB Rating": 6.7, "IMDB Votes": 65690}, {"Title": "Undiscovered", "US Gross": 1069318, "Worldwide Gross": 1069318, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Aug 26 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 8, "IMDB Rating": 3.7, "IMDB Votes": 1981}, {"Title": "Undisputed", "US Gross": 12398628, "Worldwide Gross": 12398628, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Aug 23 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Walter Hill", "Rotten Tomatoes Rating": 49, "IMDB Rating": 5.8, "IMDB Votes": 6837}, {"Title": "Underworld: Evolution", "US Gross": 62318875, "Worldwide Gross": 111318875, "US DVD Sales": 47003121, "Production Budget": 45000000, "Release Date": "Jan 20 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Len Wiseman", "Rotten Tomatoes Rating": 15, "IMDB Rating": 6.6, "IMDB Votes": 48551}, {"Title": "An Unfinished Life", "US Gross": 8535575, "Worldwide Gross": 18535575, "US DVD Sales": 21172686, "Production Budget": 30000000, "Release Date": "Sep 09 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Lasse Hallstrom", "Rotten Tomatoes Rating": 53, "IMDB Rating": 7.1, "IMDB Votes": 11770}, {"Title": "Unfaithful", "US Gross": 52752475, "Worldwide Gross": 119114494, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "May 08 2002", "MPAA Rating": "R", "Running Time min": 123, "Distributor": "20th Century Fox", "Source": "Remake", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Adrian Lyne", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.6, "IMDB Votes": 23998}, {"Title": "Universal Soldier II: The Return", "US Gross": 10447421, "Worldwide Gross": 10717421, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Aug 20 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 3.4, "IMDB Votes": 10233}, {"Title": null, "US Gross": 26403, "Worldwide Gross": 3080493, "US DVD Sales": null, "Production Budget": 3700000, "Release Date": "Nov 03 2006", "MPAA Rating": "Not Rated", "Running Time min": 85, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.6, "IMDB Votes": 11986}, {"Title": "Danny the Dog", "US Gross": 24537621, "Worldwide Gross": 49037621, "US DVD Sales": null, "Production Budget": 43000000, "Release Date": "May 13 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus/Rogue Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Louis Leterrier", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 36119}, {"Title": "Untraceable", "US Gross": 28687835, "Worldwide Gross": 52649951, "US DVD Sales": 19710582, "Production Budget": 35000000, "Release Date": "Jan 25 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 6.1, "IMDB Votes": 21922}, {"Title": "Up", "US Gross": 293004164, "Worldwide Gross": 731304609, "US DVD Sales": 178459329, "Production Budget": 175000000, "Release Date": "May 29 2009", "MPAA Rating": "PG", "Running Time min": 96, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": "Pete Docter", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.4, "IMDB Votes": 110491}, {"Title": "Up in the Air", "US Gross": 83823381, "Worldwide Gross": 166077420, "US DVD Sales": 17124041, "Production Budget": 30000000, "Release Date": "Dec 04 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Jason Reitman", "Rotten Tomatoes Rating": 90, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Upside of Anger", "US Gross": 18761993, "Worldwide Gross": 27361993, "US DVD Sales": null, "Production Budget": 12000000, "Release Date": "Mar 11 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Mike Binder", "Rotten Tomatoes Rating": null, "IMDB Rating": 7, "IMDB Votes": 12317}, {"Title": "Urban Legend", "US Gross": 38116707, "Worldwide Gross": 72571864, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Sep 25 1998", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 21, "IMDB Rating": 5.2, "IMDB Votes": 19113}, {"Title": "Urban Legends: Final Cut", "US Gross": 21468807, "Worldwide Gross": 38574362, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Sep 22 2000", "MPAA Rating": "R", "Running Time min": 98, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 3.7, "IMDB Votes": 7609}, {"Title": "Urbania", "US Gross": 1032075, "Worldwide Gross": 1032075, "US DVD Sales": null, "Production Budget": 225000, "Release Date": "Sep 15 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 73, "IMDB Rating": 6.7, "IMDB Votes": 2218}, {"Title": "Valkyrie", "US Gross": 83077470, "Worldwide Gross": 198686497, "US DVD Sales": 26715008, "Production Budget": 75000000, "Release Date": "Dec 25 2008", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "United Artists", "Source": "Based on Real Life Events", "Major Genre": "Thriller/Suspense", "Creative Type": "Dramatization", "Director": "Bryan Singer", "Rotten Tomatoes Rating": 61, "IMDB Rating": 7.3, "IMDB Votes": 54343}, {"Title": "Valiant", "US Gross": 19478106, "Worldwide Gross": 61746888, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Aug 19 2005", "MPAA Rating": "G", "Running Time min": null, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": 5.6, "IMDB Votes": 7158}, {"Title": "Valentine", "US Gross": 20384136, "Worldwide Gross": 20384136, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Feb 02 2001", "MPAA Rating": "R", "Running Time min": 96, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.3, "IMDB Votes": 11435}, {"Title": "Cirque du Freak: The Vampire's Assistant", "US Gross": 14046595, "Worldwide Gross": 34372469, "US DVD Sales": 6377527, "Production Budget": 40000000, "Release Date": "Oct 23 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Action", "Creative Type": "Fantasy", "Director": "Paul Weitz", "Rotten Tomatoes Rating": 37, "IMDB Rating": 6.1, "IMDB Votes": 9539}, {"Title": "The Legend of Bagger Vance", "US Gross": 30695227, "Worldwide Gross": 39235486, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Nov 03 2000", "MPAA Rating": "PG-13", "Running Time min": 126, "Distributor": "Dreamworks SKG", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Robert Redford", "Rotten Tomatoes Rating": 43, "IMDB Rating": 6.4, "IMDB Votes": 21995}, {"Title": "Raising Victor Vargas", "US Gross": 2073984, "Worldwide Gross": 2811439, "US DVD Sales": null, "Production Budget": 800000, "Release Date": "Mar 28 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Samuel Goldwyn Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Peter Sollett", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.1, "IMDB Votes": 3719}, {"Title": "In the Valley of Elah", "US Gross": 6777741, "Worldwide Gross": 24489150, "US DVD Sales": 3182650, "Production Budget": 23000000, "Release Date": "Sep 14 2007", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Paul Haggis", "Rotten Tomatoes Rating": 73, "IMDB Rating": 7.4, "IMDB Votes": 27529}, {"Title": "Venom", "US Gross": 881745, "Worldwide Gross": 881745, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Sep 16 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax/Dimension", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 4.6, "IMDB Votes": 4220}, {"Title": "Venus", "US Gross": 3347411, "Worldwide Gross": 4022411, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Dec 21 2006", "MPAA Rating": "R", "Running Time min": 95, "Distributor": "Miramax", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 89, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Vanity Fair", "US Gross": 16123851, "Worldwide Gross": 19123851, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Sep 01 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Mira Nair", "Rotten Tomatoes Rating": 50, "IMDB Rating": 6.2, "IMDB Votes": 9343}, {"Title": "V for Vendetta", "US Gross": 70511035, "Worldwide Gross": 132511035, "US DVD Sales": 58723721, "Production Budget": 50000000, "Release Date": "Mar 17 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "James McTeigue", "Rotten Tomatoes Rating": 73, "IMDB Rating": 8.2, "IMDB Votes": 224636}, {"Title": "The Velocity of Gary", "US Gross": 34145, "Worldwide Gross": 34145, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jul 16 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Van Helsing", "US Gross": 120150546, "Worldwide Gross": 300150546, "US DVD Sales": null, "Production Budget": 170000000, "Release Date": "May 07 2004", "MPAA Rating": "PG-13", "Running Time min": 132, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "Stephen Sommers", "Rotten Tomatoes Rating": 22, "IMDB Rating": 5.5, "IMDB Votes": 68846}, {"Title": "The Village", "US Gross": 114197520, "Worldwide Gross": 260197520, "US DVD Sales": null, "Production Budget": 71682975, "Release Date": "Jul 30 2004", "MPAA Rating": "PG-13", "Running Time min": 108, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "M. Night Shyamalan", "Rotten Tomatoes Rating": 42, "IMDB Rating": 6.6, "IMDB Votes": 88928}, {"Title": "The Virgin Suicides", "US Gross": 4859475, "Worldwide Gross": 4859475, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Apr 21 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Based on Book/Short Story", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "Sofia Coppola", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 49110}, {"Title": "Virus", "US Gross": 14010690, "Worldwide Gross": 30626690, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jan 15 1999", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.5, "IMDB Votes": 10487}, {"Title": "The Visitor", "US Gross": 9427026, "Worldwide Gross": 16194905, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Apr 11 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Overture Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 90, "IMDB Rating": 6.8, "IMDB Votes": 318}, {"Title": "A Very Long Engagement", "US Gross": 6167817, "Worldwide Gross": 59606587, "US DVD Sales": null, "Production Budget": 55000000, "Release Date": "Nov 26 2004", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Jean-Pierre Jeunet", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Vertical Limit", "US Gross": 68473360, "Worldwide Gross": 213500000, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Dec 08 2000", "MPAA Rating": "PG-13", "Running Time min": 124, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Martin Campbell", "Rotten Tomatoes Rating": 47, "IMDB Rating": 5.6, "IMDB Votes": 24294}, {"Title": "Vampires", "US Gross": 20268825, "Worldwide Gross": 20268825, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 30 1998", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "John Carpenter", "Rotten Tomatoes Rating": 33, "IMDB Rating": 6.8, "IMDB Votes": 54}, {"Title": "Vanilla Sky", "US Gross": 100614858, "Worldwide Gross": 202726605, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Dec 14 2001", "MPAA Rating": "R", "Running Time min": 136, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Cameron Crowe", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6.9, "IMDB Votes": 87820}, {"Title": "Volcano", "US Gross": 47546796, "Worldwide Gross": 120100000, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Apr 25 1997", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Mick Jackson", "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.2, "IMDB Votes": 21313}, {"Title": "Volver", "US Gross": 12899867, "Worldwide Gross": 85599867, "US DVD Sales": null, "Production Budget": 9400000, "Release Date": "Nov 03 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Pedro Almodovar", "Rotten Tomatoes Rating": 92, "IMDB Rating": 4.4, "IMDB Votes": 288}, {"Title": "Kurtlar vadisi - Irak", "US Gross": 0, "Worldwide Gross": 24906717, "US DVD Sales": null, "Production Budget": 8300000, "Release Date": "Nov 24 2006", "MPAA Rating": null, "Running Time min": null, "Distributor": null, "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.7, "IMDB Votes": 7936}, {"Title": "The Flintstones in Viva Rock Vegas", "US Gross": 35231365, "Worldwide Gross": 59431365, "US DVD Sales": null, "Production Budget": 58000000, "Release Date": "Apr 28 2000", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Universal", "Source": "Based on TV", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Brian Levant", "Rotten Tomatoes Rating": 24, "IMDB Rating": 3.3, "IMDB Votes": 5491}, {"Title": "Varsity Blues", "US Gross": 52894169, "Worldwide Gross": 54294169, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Jan 15 1999", "MPAA Rating": "R", "Running Time min": 104, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Brian Robbins", "Rotten Tomatoes Rating": 39, "IMDB Rating": 6, "IMDB Votes": 18066}, {"Title": "Valentine's Day", "US Gross": 110485654, "Worldwide Gross": 215771698, "US DVD Sales": 17250458, "Production Budget": 52000000, "Release Date": "Feb 12 2010", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Garry Marshall", "Rotten Tomatoes Rating": 17, "IMDB Rating": 5.7, "IMDB Votes": 17599}, {"Title": "National Lampoon's Van Wilder", "US Gross": 21005329, "Worldwide Gross": 37975553, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Apr 05 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Wackness", "US Gross": 2077046, "Worldwide Gross": 2635650, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Jul 03 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 69, "IMDB Rating": 7.1, "IMDB Votes": 13257}, {"Title": "Wag the Dog", "US Gross": 43057470, "Worldwide Gross": 64252038, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Dec 25 1997", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "New Line", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7, "IMDB Votes": 36092}, {"Title": "Wah-Wah", "US Gross": 234750, "Worldwide Gross": 463039, "US DVD Sales": null, "Production Budget": 7000000, "Release Date": "May 12 2006", "MPAA Rating": "Not Rated", "Running Time min": null, "Distributor": "IDP/Goldwyn/Roadside", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Richard E. Grant", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.8, "IMDB Votes": 1889}, {"Title": "Waiting...", "US Gross": 16124543, "Worldwide Gross": 16285543, "US DVD Sales": 37517657, "Production Budget": 1125000, "Release Date": "Oct 07 2005", "MPAA Rating": "R", "Running Time min": 93, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 30, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Waking Ned Devine", "US Gross": 24793251, "Worldwide Gross": 55193251, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Nov 20 1998", "MPAA Rating": "PG", "Running Time min": 91, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 82, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "WALL-E", "US Gross": 223808164, "Worldwide Gross": 532743103, "US DVD Sales": 142201722, "Production Budget": 180000000, "Release Date": "Jun 27 2008", "MPAA Rating": "G", "Running Time min": 97, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Kids Fiction", "Director": "Andrew Stanton", "Rotten Tomatoes Rating": 96, "IMDB Rating": 8.5, "IMDB Votes": 182257}, {"Title": "War", "US Gross": 22466994, "Worldwide Gross": 40666994, "US DVD Sales": 27148376, "Production Budget": 25000000, "Release Date": "Aug 24 2007", "MPAA Rating": "R", "Running Time min": 99, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 28771}, {"Title": "War, Inc.", "US Gross": 580862, "Worldwide Gross": 1296184, "US DVD Sales": 910568, "Production Budget": 10000000, "Release Date": "May 23 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "First Look", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 29, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Red Cliff", "US Gross": 627047, "Worldwide Gross": 119627047, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Nov 20 2009", "MPAA Rating": "R", "Running Time min": 131, "Distributor": "Magnolia Pictures", "Source": "Based on Real Life Events", "Major Genre": "Action", "Creative Type": "Dramatization", "Director": "John Woo", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The War of the Worlds", "US Gross": 234280354, "Worldwide Gross": 591745532, "US DVD Sales": null, "Production Budget": 132000000, "Release Date": "Jun 29 2005", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Steven Spielberg", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.2, "IMDB Votes": 12074}, {"Title": "Watchmen", "US Gross": 107509799, "Worldwide Gross": 184068357, "US DVD Sales": 52112827, "Production Budget": 138000000, "Release Date": "Mar 06 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Zack Snyder", "Rotten Tomatoes Rating": 64, "IMDB Rating": 7.8, "IMDB Votes": 132250}, {"Title": "Water", "US Gross": 5529144, "Worldwide Gross": 8119205, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Apr 28 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "Deepa Mehta", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Waitress", "US Gross": 19097550, "Worldwide Gross": 22202180, "US DVD Sales": 23127549, "Production Budget": 1500000, "Release Date": "May 02 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Adrienne Shelly", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.2, "IMDB Votes": 20384}, {"Title": "The Wendell Baker Story", "US Gross": 127188, "Worldwide Gross": 127188, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "May 18 2007", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "ThinkFilm", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Luke Wilson", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.5, "IMDB Votes": 3535}, {"Title": "Winter's Bone", "US Gross": 5951693, "Worldwide Gross": 5951693, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Jun 11 2010", "MPAA Rating": "R", "Running Time min": 100, "Distributor": "Roadside Attractions", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": 95, "IMDB Rating": 8.2, "IMDB Votes": 1704}, {"Title": "Wonder Boys", "US Gross": 19389454, "Worldwide Gross": 33422485, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Feb 23 2000", "MPAA Rating": "R", "Running Time min": 111, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Curtis Hanson", "Rotten Tomatoes Rating": 81, "IMDB Rating": 7.5, "IMDB Votes": 31572}, {"Title": "Waltz with Bashir", "US Gross": 2283849, "Worldwide Gross": 11125664, "US DVD Sales": null, "Production Budget": 2000000, "Release Date": "Dec 25 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "White Chicks", "US Gross": 69148997, "Worldwide Gross": 111448997, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Jun 23 2004", "MPAA Rating": "PG-13", "Running Time min": 109, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Keenen Ivory Wayans", "Rotten Tomatoes Rating": 15, "IMDB Rating": 5, "IMDB Votes": 25970}, {"Title": "Wolf Creek", "US Gross": 16186348, "Worldwide Gross": 27649774, "US DVD Sales": 8898756, "Production Budget": 1100000, "Release Date": "Dec 25 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein Co.", "Source": "Based on Real Life Events", "Major Genre": "Horror", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.3, "IMDB Votes": 22594}, {"Title": "The Wedding Planner", "US Gross": 60400856, "Worldwide Gross": 94728529, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Jan 26 2001", "MPAA Rating": "PG-13", "Running Time min": 103, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Adam Shankman", "Rotten Tomatoes Rating": 16, "IMDB Rating": 4.8, "IMDB Votes": 18717}, {"Title": "Wonderland", "US Gross": 1060512, "Worldwide Gross": 1060512, "US DVD Sales": null, "Production Budget": 5500000, "Release Date": "Oct 03 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 6.6, "IMDB Votes": 11966}, {"Title": "Taking Woodstock", "US Gross": 7460204, "Worldwide Gross": 10061080, "US DVD Sales": null, "Production Budget": 29000000, "Release Date": "Aug 26 2009", "MPAA Rating": "R", "Running Time min": 120, "Distributor": "Focus Features", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Ang Lee", "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.8, "IMDB Votes": 8778}, {"Title": "The Widow of St. Pierre", "US Gross": 3058380, "Worldwide Gross": 3058380, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "Mar 02 2001", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Lionsgate", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Wedding Crashers", "US Gross": 209218368, "Worldwide Gross": 283218368, "US DVD Sales": null, "Production Budget": 40000000, "Release Date": "Jul 15 2005", "MPAA Rating": "R", "Running Time min": 113, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "David Dobkin", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Wedding Date", "US Gross": 31726995, "Worldwide Gross": 47175038, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Feb 04 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Based on Book/Short Story", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 5.5, "IMDB Votes": 12205}, {"Title": "Tumbleweeds", "US Gross": 1350248, "Worldwide Gross": 1788168, "US DVD Sales": null, "Production Budget": 312000, "Release Date": "Nov 24 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fine Line", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 84, "IMDB Rating": 6.4, "IMDB Votes": 2152}, {"Title": "We Own the Night", "US Gross": 28563179, "Worldwide Gross": 54700285, "US DVD Sales": 22557036, "Production Budget": 28000000, "Release Date": "Oct 12 2007", "MPAA Rating": "R", "Running Time min": 117, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "James Gray", "Rotten Tomatoes Rating": 56, "IMDB Rating": 7, "IMDB Votes": 38163}, {"Title": "We Were Soldiers", "US Gross": 78120196, "Worldwide Gross": 114658262, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Mar 01 2002", "MPAA Rating": "R", "Running Time min": 138, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.9, "IMDB Votes": 42580}, {"Title": "The World's Fastest Indian", "US Gross": 5128124, "Worldwide Gross": 16509706, "US DVD Sales": 7272519, "Production Budget": 25000000, "Release Date": "Dec 07 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Roger Donaldson", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.9, "IMDB Votes": 19687}, {"Title": "Les herbes folles", "US Gross": 377556, "Worldwide Gross": 1877556, "US DVD Sales": null, "Production Budget": 14000000, "Release Date": "Jun 25 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 915}, {"Title": "What a Girl Wants", "US Gross": 35990505, "Worldwide Gross": 35990505, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Apr 04 2003", "MPAA Rating": "PG", "Running Time min": 105, "Distributor": "Warner Bros.", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Dennie Gordon", "Rotten Tomatoes Rating": 34, "IMDB Rating": 5.7, "IMDB Votes": 12561}, {"Title": "Whale Rider", "US Gross": 20779666, "Worldwide Gross": 38833352, "US DVD Sales": null, "Production Budget": 4300000, "Release Date": "Jun 06 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Palm Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 90, "IMDB Rating": 7.7, "IMDB Votes": 21814}, {"Title": "Walk Hard: The Dewey Cox Story", "US Gross": 18317151, "Worldwide Gross": 20575121, "US DVD Sales": 15734125, "Production Budget": 35000000, "Release Date": "Dec 21 2007", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": null, "Rotten Tomatoes Rating": 74, "IMDB Rating": 6.7, "IMDB Votes": 28032}, {"Title": "Where the Heart Is", "US Gross": 33771174, "Worldwide Gross": 40862054, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Apr 28 2000", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 34, "IMDB Rating": 6.4, "IMDB Votes": 13302}, {"Title": "Whipped", "US Gross": 4142507, "Worldwide Gross": 4142507, "US DVD Sales": null, "Production Budget": 3000000, "Release Date": "Sep 01 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Destination Films", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 4.2, "IMDB Votes": 2973}, {"Title": "Whip It", "US Gross": 13043363, "Worldwide Gross": 13043363, "US DVD Sales": 6310163, "Production Budget": 15000000, "Release Date": "Oct 02 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Drew Barrymore", "Rotten Tomatoes Rating": 84, "IMDB Rating": 7.1, "IMDB Votes": 14068}, {"Title": "Welcome Home Roscoe Jenkins", "US Gross": 42436517, "Worldwide Gross": 43607627, "US DVD Sales": 17066717, "Production Budget": 27500000, "Release Date": "Feb 08 2008", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Malcolm D. Lee", "Rotten Tomatoes Rating": 23, "IMDB Rating": 4.5, "IMDB Votes": 5700}, {"Title": "When a Stranger Calls", "US Gross": 47860214, "Worldwide Gross": 66966987, "US DVD Sales": 13084600, "Production Budget": 15000000, "Release Date": "Feb 03 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony/Screen Gems", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": "Simon West", "Rotten Tomatoes Rating": 9, "IMDB Rating": 4.7, "IMDB Votes": 16505}, {"Title": "What Dreams May Come", "US Gross": 55485043, "Worldwide Gross": 71485043, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Oct 02 1998", "MPAA Rating": "PG-13", "Running Time min": 113, "Distributor": "Polygram", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 55, "IMDB Rating": 6.6, "IMDB Votes": 30486}, {"Title": "The White Countess", "US Gross": 1669971, "Worldwide Gross": 2814566, "US DVD Sales": null, "Production Budget": 16000000, "Release Date": "Dec 21 2005", "MPAA Rating": "PG-13", "Running Time min": 135, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Historical Fiction", "Director": "James Ivory", "Rotten Tomatoes Rating": 51, "IMDB Rating": 6.5, "IMDB Votes": 2855}, {"Title": "Wicker Park", "US Gross": 12831121, "Worldwide Gross": 13400080, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Sep 03 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "MGM", "Source": "Remake", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Paul McGuigan", "Rotten Tomatoes Rating": 24, "IMDB Rating": 6.9, "IMDB Votes": 18987}, {"Title": "Where the Wild Things Are", "US Gross": 77233467, "Worldwide Gross": 99123656, "US DVD Sales": 27984751, "Production Budget": 100000000, "Release Date": "Oct 16 2009", "MPAA Rating": "PG", "Running Time min": 100, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Spike Jonze", "Rotten Tomatoes Rating": 73, "IMDB Rating": 7.2, "IMDB Votes": 30669}, {"Title": "Wild Things", "US Gross": 29795299, "Worldwide Gross": 55576699, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 20 1998", "MPAA Rating": "R", "Running Time min": 108, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.6, "IMDB Votes": 40110}, {"Title": "Wimbledon", "US Gross": 16862585, "Worldwide Gross": 41862585, "US DVD Sales": null, "Production Budget": 35000000, "Release Date": "Sep 17 2004", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 60, "IMDB Rating": 6.3, "IMDB Votes": 21996}, {"Title": "Windtalkers", "US Gross": 40914068, "Worldwide Gross": 77628265, "US DVD Sales": null, "Production Budget": 115000000, "Release Date": "Jun 14 2002", "MPAA Rating": "R", "Running Time min": 134, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Historical Fiction", "Director": "John Woo", "Rotten Tomatoes Rating": 32, "IMDB Rating": 5.8, "IMDB Votes": 26421}, {"Title": "Because of Winn-Dixie", "US Gross": 32647042, "Worldwide Gross": 33589427, "US DVD Sales": null, "Production Budget": 15000000, "Release Date": "Feb 18 2005", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Wayne Wang", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6.1, "IMDB Votes": 3720}, {"Title": "Wing Commander", "US Gross": 11578022, "Worldwide Gross": 11578022, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Mar 12 1999", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Game", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 11, "IMDB Rating": 3.7, "IMDB Votes": 9460}, {"Title": "Without Limits", "US Gross": 780326, "Worldwide Gross": 780326, "US DVD Sales": null, "Production Budget": 25000000, "Release Date": "Sep 11 1998", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.9, "IMDB Votes": 3369}, {"Title": "What Just Happened", "US Gross": 1090947, "Worldwide Gross": 2412123, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Oct 17 2008", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Magnolia Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Barry Levinson", "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 12537}, {"Title": "What Lies Beneath", "US Gross": 155464351, "Worldwide Gross": 288693989, "US DVD Sales": null, "Production Budget": 90000000, "Release Date": "Jul 21 2000", "MPAA Rating": "PG-13", "Running Time min": 130, "Distributor": "Dreamworks SKG", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Robert Zemeckis", "Rotten Tomatoes Rating": 45, "IMDB Rating": 6.5, "IMDB Votes": 45633}, {"Title": "Walk the Line", "US Gross": 119519402, "Worldwide Gross": 184319402, "US DVD Sales": 123216687, "Production Budget": 29000000, "Release Date": "Nov 18 2005", "MPAA Rating": "PG-13", "Running Time min": 80, "Distributor": "20th Century Fox", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "James Mangold", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.9, "IMDB Votes": 85235}, {"Title": "A Walk to Remember", "US Gross": 41227069, "Worldwide Gross": 46060915, "US DVD Sales": null, "Production Budget": 11000000, "Release Date": "Jan 25 2002", "MPAA Rating": "PG", "Running Time min": 102, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Adam Shankman", "Rotten Tomatoes Rating": 28, "IMDB Rating": 7.1, "IMDB Votes": 38045}, {"Title": "Willard", "US Gross": 6882696, "Worldwide Gross": 6882696, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Mar 14 2003", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "New Line", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 65, "IMDB Rating": 6.2, "IMDB Votes": 7702}, {"Title": "Wild Wild West", "US Gross": 113805681, "Worldwide Gross": 222105681, "US DVD Sales": null, "Production Budget": 175000000, "Release Date": "Jun 30 1999", "MPAA Rating": "PG-13", "Running Time min": 107, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Barry Sonnenfeld", "Rotten Tomatoes Rating": 21, "IMDB Rating": 4.3, "IMDB Votes": 54183}, {"Title": "White Noise 2: The Light", "US Gross": 0, "Worldwide Gross": 8243567, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jan 08 2008", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": null, "Rotten Tomatoes Rating": 86, "IMDB Rating": 5.9, "IMDB Votes": 5647}, {"Title": "White Noise", "US Gross": 56094360, "Worldwide Gross": 92094360, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "Jan 07 2005", "MPAA Rating": "PG-13", "Running Time min": 101, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 9, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Wanted", "US Gross": 134508551, "Worldwide Gross": 340934768, "US DVD Sales": 71092823, "Production Budget": 75000000, "Release Date": "Jun 27 2008", "MPAA Rating": "R", "Running Time min": 110, "Distributor": "Universal", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": "Timur Bekmambetov", "Rotten Tomatoes Rating": 71, "IMDB Rating": 6.4, "IMDB Votes": 1089}, {"Title": "Woman on Top", "US Gross": 5018450, "Worldwide Gross": 10192613, "US DVD Sales": null, "Production Budget": 8000000, "Release Date": "Sep 22 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 35, "IMDB Rating": 4.9, "IMDB Votes": 4743}, {"Title": "The Wolf Man", "US Gross": 61979680, "Worldwide Gross": 142422252, "US DVD Sales": 18568140, "Production Budget": 150000000, "Release Date": "Feb 12 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Universal", "Source": "Remake", "Major Genre": "Horror", "Creative Type": "Fantasy", "Director": "Joe Johnston", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 6099}, {"Title": "X-Men Origins: Wolverine", "US Gross": 179883157, "Worldwide Gross": 374825760, "US DVD Sales": 73930122, "Production Budget": 150000000, "Release Date": "May 01 2009", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Spin-Off", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Gavin Hood", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 79499}, {"Title": "The Women", "US Gross": 26902075, "Worldwide Gross": 50042410, "US DVD Sales": 10057074, "Production Budget": 16000000, "Release Date": "Sep 12 2008", "MPAA Rating": "PG-13", "Running Time min": 114, "Distributor": "Picturehouse", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 13, "IMDB Rating": 7.9, "IMDB Votes": 5519}, {"Title": "Woo", "US Gross": 8064972, "Worldwide Gross": 8064972, "US DVD Sales": null, "Production Budget": 13000000, "Release Date": "May 08 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "New Line", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 5, "IMDB Rating": 3.4, "IMDB Votes": 982}, {"Title": "The Wood", "US Gross": 25059640, "Worldwide Gross": 25059640, "US DVD Sales": null, "Production Budget": 6000000, "Release Date": "Jul 16 1999", "MPAA Rating": "R", "Running Time min": 106, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 61, "IMDB Rating": 6.1, "IMDB Votes": 3224}, {"Title": "Without a Paddle", "US Gross": 58156435, "Worldwide Gross": 65121280, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Aug 20 2004", "MPAA Rating": "PG-13", "Running Time min": 95, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 15, "IMDB Rating": 5.7, "IMDB Votes": 17207}, {"Title": "What's the Worst That Could Happen?", "US Gross": 32267774, "Worldwide Gross": 38462071, "US DVD Sales": null, "Production Budget": 30000000, "Release Date": "Jun 01 2001", "MPAA Rating": "PG-13", "Running Time min": 98, "Distributor": "MGM", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 5, "IMDB Votes": 6727}, {"Title": "Winter Passing", "US Gross": 107492, "Worldwide Gross": 113783, "US DVD Sales": null, "Production Budget": 3500000, "Release Date": "Feb 17 2006", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Focus Features", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 6.4, "IMDB Votes": 4360}, {"Title": "What Planet Are You From?", "US Gross": 6291602, "Worldwide Gross": 6291602, "US DVD Sales": null, "Production Budget": 50000000, "Release Date": "Mar 03 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Mike Nichols", "Rotten Tomatoes Rating": 42, "IMDB Rating": 5.4, "IMDB Votes": 5304}, {"Title": "Wordplay", "US Gross": 3121270, "Worldwide Gross": 3177636, "US DVD Sales": null, "Production Budget": 500000, "Release Date": "Jun 16 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "IFC Films", "Source": "Based on Real Life Events", "Major Genre": "Documentary", "Creative Type": "Factual", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 7.4, "IMDB Votes": 2222}, {"Title": "The Wrestler", "US Gross": 26236603, "Worldwide Gross": 43236603, "US DVD Sales": 11912450, "Production Budget": 6000000, "Release Date": "Dec 17 2008", "MPAA Rating": "R", "Running Time min": 109, "Distributor": "Fox Searchlight", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Darren Aronofsky", "Rotten Tomatoes Rating": 98, "IMDB Rating": 8.2, "IMDB Votes": 93301}, {"Title": "Walking Tall", "US Gross": 46213824, "Worldwide Gross": 47313824, "US DVD Sales": null, "Production Budget": 56000000, "Release Date": "Apr 02 2004", "MPAA Rating": "PG-13", "Running Time min": 87, "Distributor": "MGM", "Source": "Remake", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Kevin Bray", "Rotten Tomatoes Rating": 25, "IMDB Rating": 6, "IMDB Votes": 20517}, {"Title": "World Trade Center", "US Gross": 70278893, "Worldwide Gross": 163278893, "US DVD Sales": 36877248, "Production Budget": 65000000, "Release Date": "Aug 09 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Oliver Stone", "Rotten Tomatoes Rating": 69, "IMDB Rating": 6.2, "IMDB Votes": 34341}, {"Title": "The Watcher", "US Gross": 28946615, "Worldwide Gross": 47267829, "US DVD Sales": null, "Production Budget": 33000000, "Release Date": "Sep 08 2000", "MPAA Rating": "R", "Running Time min": 97, "Distributor": "Universal", "Source": "Original Screenplay", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 10, "IMDB Rating": 3.7, "IMDB Votes": 959}, {"Title": "The Weather Man", "US Gross": 12482775, "Worldwide Gross": 15466961, "US DVD Sales": 16632857, "Production Budget": 20000000, "Release Date": "Oct 28 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Gore Verbinski", "Rotten Tomatoes Rating": 58, "IMDB Rating": 6.9, "IMDB Votes": 35394}, {"Title": "Sky Captain and the World of Tomorrow", "US Gross": 37760080, "Worldwide Gross": 49730854, "US DVD Sales": null, "Production Budget": 70000000, "Release Date": "Sep 17 2004", "MPAA Rating": "PG", "Running Time min": 106, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Adventure", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": 72, "IMDB Rating": 6.3, "IMDB Votes": 40281}, {"Title": "Whiteout", "US Gross": 10275638, "Worldwide Gross": 12254746, "US DVD Sales": 3231673, "Production Budget": 35000000, "Release Date": "Sep 11 2009", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Thriller/Suspense", "Creative Type": "Contemporary Fiction", "Director": "Dominic Sena", "Rotten Tomatoes Rating": 7, "IMDB Rating": 5.3, "IMDB Votes": 10044}, {"Title": "The Waterboy", "US Gross": 161491646, "Worldwide Gross": 190191646, "US DVD Sales": null, "Production Budget": 23000000, "Release Date": "Nov 06 1998", "MPAA Rating": "PG-13", "Running Time min": 86, "Distributor": "Walt Disney Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Frank Coraci", "Rotten Tomatoes Rating": 32, "IMDB Rating": 5.7, "IMDB Votes": 43251}, {"Title": "Wrong Turn", "US Gross": 15417771, "Worldwide Gross": 28649556, "US DVD Sales": null, "Production Budget": 10000000, "Release Date": "May 30 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Original Screenplay", "Major Genre": "Horror", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 40, "IMDB Rating": 5.8, "IMDB Votes": 119}, {"Title": "What Women Want", "US Gross": 182805123, "Worldwide Gross": 372100000, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Dec 15 2000", "MPAA Rating": "PG-13", "Running Time min": 127, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Romantic Comedy", "Creative Type": "Contemporary Fiction", "Director": "Nancy Meyers", "Rotten Tomatoes Rating": 53, "IMDB Rating": 6.3, "IMDB Votes": 54525}, {"Title": "The Way of the Gun", "US Gross": 6047856, "Worldwide Gross": 13061935, "US DVD Sales": null, "Production Budget": 9000000, "Release Date": "Sep 08 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Artisan", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 48, "IMDB Rating": 6.5, "IMDB Votes": 17513}, {"Title": "The X-Files: I Want to Believe", "US Gross": 20982478, "Worldwide Gross": 68369434, "US DVD Sales": 16034958, "Production Budget": 35000000, "Release Date": "Jul 25 2008", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 5.9, "IMDB Votes": 35433}, {"Title": "The X Files: Fight the Future", "US Gross": 83898313, "Worldwide Gross": 189176423, "US DVD Sales": null, "Production Budget": 66000000, "Release Date": "Jun 19 1998", "MPAA Rating": "PG-13", "Running Time min": 120, "Distributor": "20th Century Fox", "Source": "Based on TV", "Major Genre": "Action", "Creative Type": "Science Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Extraordinary Measures", "US Gross": 12482741, "Worldwide Gross": 12697741, "US DVD Sales": 5267433, "Production Budget": 31000000, "Release Date": "Jan 22 2010", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "CBS Films", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": "Tom Vaughan", "Rotten Tomatoes Rating": 27, "IMDB Rating": 6.4, "IMDB Votes": 3770}, {"Title": "X-Men", "US Gross": 157299717, "Worldwide Gross": 334627820, "US DVD Sales": null, "Production Budget": 75000000, "Release Date": "Jul 14 2000", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Bryan Singer", "Rotten Tomatoes Rating": 82, "IMDB Rating": 7.4, "IMDB Votes": 120706}, {"Title": "X2", "US Gross": 214949694, "Worldwide Gross": 407711549, "US DVD Sales": null, "Production Budget": 125000000, "Release Date": "May 02 2003", "MPAA Rating": "PG-13", "Running Time min": 133, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Bryan Singer", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.8, "IMDB Votes": 112320}, {"Title": "X-Men: The Last Stand", "US Gross": 234362462, "Worldwide Gross": 459359555, "US DVD Sales": 103555667, "Production Budget": 150000000, "Release Date": "May 26 2006", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "20th Century Fox", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Action", "Creative Type": "Super Hero", "Director": "Brett Ratner", "Rotten Tomatoes Rating": 57, "IMDB Rating": 6.9, "IMDB Votes": 109125}, {"Title": "The Exploding Girl", "US Gross": 25572, "Worldwide Gross": 25572, "US DVD Sales": null, "Production Budget": 40000, "Release Date": "Mar 12 2010", "MPAA Rating": null, "Running Time min": 79, "Distributor": "Oscilloscope Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": "Bradley Rust Grey", "Rotten Tomatoes Rating": null, "IMDB Rating": 6.2, "IMDB Votes": 260}, {"Title": "The Expendables", "US Gross": 101384023, "Worldwide Gross": 240484023, "US DVD Sales": null, "Production Budget": 82000000, "Release Date": "Aug 13 2010", "MPAA Rating": null, "Running Time min": 103, "Distributor": "Lionsgate", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Sylvester Stallone", "Rotten Tomatoes Rating": 40, "IMDB Rating": 7.1, "IMDB Votes": 42427}, {"Title": "XXX: State of the Union", "US Gross": 26873932, "Worldwide Gross": 71073932, "US DVD Sales": null, "Production Budget": 60000000, "Release Date": "Apr 29 2005", "MPAA Rating": "PG-13", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Action", "Creative Type": "Contemporary Fiction", "Director": "Lee Tamahori", "Rotten Tomatoes Rating": null, "IMDB Rating": 4.1, "IMDB Votes": 19527}, {"Title": "The Yards", "US Gross": 882710, "Worldwide Gross": 2282710, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Oct 20 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Miramax", "Source": null, "Major Genre": "Drama", "Creative Type": null, "Director": "James Gray", "Rotten Tomatoes Rating": 64, "IMDB Rating": 6.3, "IMDB Votes": 8784}, {"Title": "The Divine Secrets of the Ya-Ya Sisterhood", "US Gross": 69586544, "Worldwide Gross": 73826768, "US DVD Sales": null, "Production Budget": 27000000, "Release Date": "Jun 07 2002", "MPAA Rating": "PG-13", "Running Time min": 116, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "You Can Count on Me", "US Gross": 9180275, "Worldwide Gross": 11005992, "US DVD Sales": null, "Production Budget": 1200000, "Release Date": "Nov 10 2000", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Paramount Vantage", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 95, "IMDB Rating": 7.7, "IMDB Votes": 14261}, {"Title": "Year One", "US Gross": 43337279, "Worldwide Gross": 57604723, "US DVD Sales": 14813995, "Production Budget": 60000000, "Release Date": "Jun 19 2009", "MPAA Rating": "PG-13", "Running Time min": 97, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Historical Fiction", "Director": "Harold Ramis", "Rotten Tomatoes Rating": 14, "IMDB Rating": 5, "IMDB Votes": 23091}, {"Title": "Yes", "US Gross": 396035, "Worldwide Gross": 661221, "US DVD Sales": null, "Production Budget": 1700000, "Release Date": "Jun 24 2005", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures Classics", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Yes Man", "US Gross": 97690976, "Worldwide Gross": 225990976, "US DVD Sales": 26601131, "Production Budget": 50000000, "Release Date": "Dec 19 2008", "MPAA Rating": "PG-13", "Running Time min": 104, "Distributor": "Warner Bros.", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Peyton Reed", "Rotten Tomatoes Rating": 43, "IMDB Rating": 7, "IMDB Votes": 62150}, {"Title": "You Kill Me", "US Gross": 2426851, "Worldwide Gross": 2426851, "US DVD Sales": null, "Production Budget": 4000000, "Release Date": "Jun 22 2007", "MPAA Rating": "R", "Running Time min": 92, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Black Comedy", "Creative Type": "Contemporary Fiction", "Director": "John Dahl", "Rotten Tomatoes Rating": 78, "IMDB Rating": 6.7, "IMDB Votes": 9498}, {"Title": "Yours, Mine and Ours", "US Gross": 53359917, "Worldwide Gross": 72359917, "US DVD Sales": 26979166, "Production Budget": 45000000, "Release Date": "Nov 23 2005", "MPAA Rating": "PG", "Running Time min": 90, "Distributor": "Paramount Pictures", "Source": "Remake", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Raja Gosnell", "Rotten Tomatoes Rating": null, "IMDB Rating": 7.6, "IMDB Votes": 259}, {"Title": "You've Got Mail", "US Gross": 115821495, "Worldwide Gross": 250800000, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Dec 18 1998", "MPAA Rating": "PG", "Running Time min": 119, "Distributor": "Warner Bros.", "Source": "Based on Play", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Nora Ephron", "Rotten Tomatoes Rating": 68, "IMDB Rating": 6.2, "IMDB Votes": 52587}, {"Title": "Youth in Revolt", "US Gross": 15285588, "Worldwide Gross": 17585588, "US DVD Sales": 3654607, "Production Budget": 18000000, "Release Date": "Jan 08 2010", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Weinstein/Dimension", "Source": "Based on Book/Short Story", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 6.7, "IMDB Votes": 14670}, {"Title": "Y Tu Mama Tambien (And Your Mother Too)", "US Gross": 13649881, "Worldwide Gross": 33649881, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Mar 15 2002", "MPAA Rating": "R", "Running Time min": null, "Distributor": "IFC Films", "Source": "Original Screenplay", "Major Genre": "Drama", "Creative Type": "Contemporary Fiction", "Director": "Alfonso Cuaron", "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Yu-Gi-Oh", "US Gross": 19762690, "Worldwide Gross": 28762690, "US DVD Sales": null, "Production Budget": 20000000, "Release Date": "Aug 13 2004", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Warner Bros.", "Source": "Based on TV", "Major Genre": "Adventure", "Creative Type": "Kids Fiction", "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "The Young Unknowns", "US Gross": 58163, "Worldwide Gross": 58163, "US DVD Sales": null, "Production Budget": 800000, "Release Date": "Apr 11 2003", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Indican Pictures", "Source": null, "Major Genre": null, "Creative Type": null, "Director": null, "Rotten Tomatoes Rating": null, "IMDB Rating": 4.5, "IMDB Votes": 98}, {"Title": "The Young Victoria", "US Gross": 11001272, "Worldwide Gross": 11001272, "US DVD Sales": 3273039, "Production Budget": 35000000, "Release Date": "Dec 18 2009", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Apparition", "Source": "Based on Real Life Events", "Major Genre": "Drama", "Creative Type": "Dramatization", "Director": null, "Rotten Tomatoes Rating": 76, "IMDB Rating": 7.2, "IMDB Votes": 8408}, {"Title": "Zathura", "US Gross": 28045540, "Worldwide Gross": 58545540, "US DVD Sales": 22025352, "Production Budget": 65000000, "Release Date": "Nov 11 2005", "MPAA Rating": "PG", "Running Time min": 113, "Distributor": "Sony Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Adventure", "Creative Type": "Fantasy", "Director": "Jon Favreau", "Rotten Tomatoes Rating": 75, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Zero Effect", "US Gross": 2080693, "Worldwide Gross": 2080693, "US DVD Sales": null, "Production Budget": 5000000, "Release Date": "Jan 30 1998", "MPAA Rating": "R", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": null, "Rotten Tomatoes Rating": 66, "IMDB Rating": 6.8, "IMDB Votes": 8489}, {"Title": "Zoolander", "US Gross": 45172250, "Worldwide Gross": 60780981, "US DVD Sales": null, "Production Budget": 28000000, "Release Date": "Sep 28 2001", "MPAA Rating": "PG-13", "Running Time min": 89, "Distributor": "Paramount Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Ben Stiller", "Rotten Tomatoes Rating": 62, "IMDB Rating": 6.4, "IMDB Votes": 69296}, {"Title": "Zombieland", "US Gross": 75590286, "Worldwide Gross": 98690286, "US DVD Sales": 28281155, "Production Budget": 23600000, "Release Date": "Oct 02 2009", "MPAA Rating": "R", "Running Time min": 87, "Distributor": "Sony Pictures", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Fantasy", "Director": "Ruben Fleischer", "Rotten Tomatoes Rating": 89, "IMDB Rating": 7.8, "IMDB Votes": 81629}, {"Title": "Zack and Miri Make a Porno", "US Gross": 31452765, "Worldwide Gross": 36851125, "US DVD Sales": 21240321, "Production Budget": 24000000, "Release Date": "Oct 31 2008", "MPAA Rating": "R", "Running Time min": 101, "Distributor": "Weinstein Co.", "Source": "Original Screenplay", "Major Genre": "Comedy", "Creative Type": "Contemporary Fiction", "Director": "Kevin Smith", "Rotten Tomatoes Rating": 65, "IMDB Rating": 7, "IMDB Votes": 55687}, {"Title": "Zodiac", "US Gross": 33080084, "Worldwide Gross": 83080084, "US DVD Sales": 20983030, "Production Budget": 85000000, "Release Date": "Mar 02 2007", "MPAA Rating": "R", "Running Time min": 157, "Distributor": "Paramount Pictures", "Source": "Based on Book/Short Story", "Major Genre": "Thriller/Suspense", "Creative Type": "Dramatization", "Director": "David Fincher", "Rotten Tomatoes Rating": 89, "IMDB Rating": null, "IMDB Votes": null}, {"Title": "Zoom", "US Gross": 11989328, "Worldwide Gross": 12506188, "US DVD Sales": 6679409, "Production Budget": 35000000, "Release Date": "Aug 11 2006", "MPAA Rating": "PG", "Running Time min": null, "Distributor": "Sony Pictures", "Source": "Based on Comic/Graphic Novel", "Major Genre": "Adventure", "Creative Type": "Super Hero", "Director": "Peter Hewitt", "Rotten Tomatoes Rating": 3, "IMDB Rating": 3.4, "IMDB Votes": 7424}, {"Title": "The Legend of Zorro", "US Gross": 45575336, "Worldwide Gross": 141475336, "US DVD Sales": null, "Production Budget": 80000000, "Release Date": "Oct 28 2005", "MPAA Rating": "PG", "Running Time min": 129, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Martin Campbell", "Rotten Tomatoes Rating": 26, "IMDB Rating": 5.7, "IMDB Votes": 21161}, {"Title": "The Mask of Zorro", "US Gross": 93828745, "Worldwide Gross": 233700000, "US DVD Sales": null, "Production Budget": 65000000, "Release Date": "Jul 17 1998", "MPAA Rating": "PG-13", "Running Time min": 136, "Distributor": "Sony Pictures", "Source": "Remake", "Major Genre": "Adventure", "Creative Type": "Historical Fiction", "Director": "Martin Campbell", "Rotten Tomatoes Rating": 82, "IMDB Rating": 6.7, "IMDB Votes": 4789}], "anchored": true, "attachedMetadata": ""}, {"kind": "table", "id": "table-78", "displayId": "movie-profits", "names": ["Production Budget", "Profit", "Title", "Worldwide Gross"], "rows": [{"Production Budget": 237000000, "Profit": 2530891499, "Title": "Avatar", "Worldwide Gross": 2767891499}, {"Production Budget": 200000000, "Profit": 1642879955, "Title": "Titanic", "Worldwide Gross": 1842879955}, {"Production Budget": 94000000, "Profit": 1039027325, "Title": "The Lord of the Rings: The Return of the King", "Worldwide Gross": 1133027325}, {"Production Budget": 63000000, "Profit": 860067947, "Title": "Jurassic Park", "Worldwide Gross": 923067947}, {"Production Budget": 125000000, "Profit": 851457891, "Title": "Harry Potter and the Sorcerer's Stone", "Worldwide Gross": 976457891}, {"Production Budget": 70000000, "Profit": 849838758, "Title": "Shrek 2", "Worldwide Gross": 919838758}, {"Production Budget": 200000000, "Profit": 846340665, "Title": "Toy Story 3", "Worldwide Gross": 1046340665}, {"Production Budget": 225000000, "Profit": 840659812, "Title": "Pirates of the Caribbean: Dead Man's Chest", "Worldwide Gross": 1065659812}, {"Production Budget": 185000000, "Profit": 837345358, "Title": "The Dark Knight", "Worldwide Gross": 1022345358}, {"Production Budget": 94000000, "Profit": 832284377, "Title": "The Lord of the Rings: The Two Towers", "Worldwide Gross": 926284377}, {"Production Budget": 200000000, "Profit": 823291110, "Title": "Alice in Wonderland", "Worldwide Gross": 1023291110}, {"Production Budget": 115000000, "Profit": 809288297, "Title": "Star Wars Ep. I: The Phantom Menace", "Worldwide Gross": 924288297}, {"Production Budget": 90000000, "Profit": 796685941, "Title": "Ice Age: Dawn of the Dinosaurs", "Worldwide Gross": 886685941}, {"Production Budget": 150000000, "Profit": 788468864, "Title": "Harry Potter and the Order of the Phoenix", "Worldwide Gross": 938468864}, {"Production Budget": 11000000, "Profit": 786900000, "Title": "Star Wars Ep. IV: A New Hope", "Worldwide Gross": 797900000}, {"Production Budget": 10500000, "Profit": 782410554, "Title": "ET: The Extra-Terrestrial", "Worldwide Gross": 792910554}, {"Production Budget": 100000000, "Profit": 778987880, "Title": "Harry Potter and the Chamber of Secrets", "Worldwide Gross": 878987880}, {"Production Budget": 94000000, "Profit": 773894287, "Title": "Finding Nemo", "Worldwide Gross": 867894287}, {"Production Budget": 109000000, "Profit": 759621686, "Title": "The Lord of the Rings: The Fellowship of the Ring", "Worldwide Gross": 868621686}, {"Production Budget": 150000000, "Profit": 746013036, "Title": "Harry Potter and the Goblet of Fire", "Worldwide Gross": 896013036}, {"Production Budget": 75000000, "Profit": 742400878, "Title": "Independence Day", "Worldwide Gross": 817400878}, {"Production Budget": 115000000, "Profit": 733998877, "Title": "Star Wars Ep. III: Revenge of the Sith", "Worldwide Gross": 848998877}, {"Production Budget": 75000000, "Profit": 711686679, "Title": "The Lost World: Jurassic Park", "Worldwide Gross": 786686679}, {"Production Budget": 79300000, "Profit": 704539505, "Title": "The Lion King", "Worldwide Gross": 783839505}, {"Production Budget": 250000000, "Profit": 687499905, "Title": "Harry Potter and the Half-Blood Prince", "Worldwide Gross": 937499905}, {"Production Budget": 139000000, "Profit": 682708551, "Title": "Spider-Man", "Worldwide Gross": 821708551}, {"Production Budget": 130000000, "Profit": 665538952, "Title": "Harry Potter and the Prisoner of Azkaban", "Worldwide Gross": 795538952}, {"Production Budget": 300000000, "Profit": 660996492, "Title": "Pirates of the Caribbean: At World's End", "Worldwide Gross": 960996492}, {"Production Budget": 50000000, "Profit": 652623634, "Title": "The Twilight Saga: New Moon", "Worldwide Gross": 702623634}, {"Production Budget": 160000000, "Profit": 638958162, "Title": "Shrek the Third", "Worldwide Gross": 798958162}], "metadata": {"Production Budget": {"type": "number", "semanticType": "Number"}, "Profit": {"type": "number", "semanticType": "Number"}, "Title": {"type": "string", "semanticType": "Name"}, "Worldwide Gross": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title'])\n \n # Sort by profit in descending order and select top 30\n df_top30 = df_filtered.nlargest(30, 'Profit')\n \n # Select only the required output fields\n transformed_df = df_top30[['Title', 'Production Budget', 'Worldwide Gross', 'Profit']].reset_index(drop=True)\n \n return transformed_df\n", "source": ["movies"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 380270577.0, 402111870.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 33619971.0, 140689412.0, nan, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 237477.0, 417703.0, 519541.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"show top 30 movies based on their profit\",\n \"chart_type\": \"Scatter Plot\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Worldwide Gross\",\n \"color\": \"Title\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the profit for each movie (Worldwide Gross minus Production Budget), then select the top 30 movies with the highest profit. Display these movies with their Production Budget, Worldwide Gross, and Title to visualize the relationship between budget and revenue for the most profitable films.\",\n \"display_instruction\": \"Show top 30 movies by **profit** with their **Production Budget** and **Worldwide Gross**\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Worldwide Gross\", \"Profit\"],\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Worldwide Gross\",\n \"color\": \"Title\"\n },\n \"reason\": \"The user wants to show top 30 movies based on profit, which requires calculating profit as the difference between Worldwide Gross and Production Budget. The chart encodings provided are sufficient to visualize the most profitable movies, showing the relationship between their budget and gross revenue. An intermediate field 'Profit' is added to output_fields to enable the top 30 selection, though it won't be directly visualized in the chart.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title'])\n \n # Sort by profit in descending order and select top 30\n df_top30 = df_filtered.nlargest(30, 'Profit')\n \n # Select only the required output fields\n transformed_df = df_top30[['Title', 'Production Budget', 'Worldwide Gross', 'Profit']].reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "movies", "resultTableId": "table-78", "chart": {"id": "chart-1760743154092", "chartType": "Scatter Plot", "encodingMap": {"x": {"fieldID": "original--movies--Production Budget"}, "y": {"fieldID": "original--movies--Worldwide Gross"}, "color": {"fieldID": "original--movies--Title"}, "size": {"channel": "size", "bin": false}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "movies", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show top 30 movies based on their profit", "displayContent": "Show top 30 movies by **profit** with their **Production Budget** and **Worldwide Gross**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "The code identifies the most financially successful movies by analyzing their profitability:\n\n- Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Filter out movies with missing values in **Profit**, **Production Budget**, **Worldwide Gross**, or **Title** fields\n- Sort all movies by **Profit** in descending order and select the **top 30** most profitable movies\n- Return a simplified dataset containing only **Title**, **Production Budget**, **Worldwide Gross**, and **Profit** for these top performers", "concepts": [{"explanation": "The net financial gain from a movie, calculated as the difference between worldwide box office revenue and production costs: \\( \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\). This metric represents the pure theatrical profitability before accounting for marketing costs, distribution fees, or ancillary revenue streams like DVD sales.", "field": "Profit"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 441226247.0, 533345358.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 1065659812.0, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 2638319.0, 3907625.0, 4653193.0, ..., 124058348.0, 153389976.0, 234119058.0, 320830925.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: 46.0, 72.0, 74.0, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 261439.0, 292562.0, 417703.0, 519541.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title'])\n \n # Sort by profit in descending order and select top 30\n df_top30 = df_filtered.nlargest(30, 'Profit')\n \n # Select only the required output fields\n transformed_df = df_top30[['Title', 'Production Budget', 'Worldwide Gross', 'Profit']].reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThe code identifies the most financially successful movies by analyzing their profitability:\n\n- Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Filter out movies with missing values in **Profit**, **Production Budget**, **Worldwide Gross**, or **Title** fields\n- Sort all movies by **Profit** in descending order and select the **top 30** most profitable movies\n- Return a simplified dataset containing only **Title**, **Production Budget**, **Worldwide Gross**, and **Profit** for these top performers\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"The net financial gain from a movie, calculated as the difference between worldwide box office revenue and production costs: \\\\( \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\). This metric represents the pure theatrical profitability before accounting for marketing costs, distribution fees, or ancillary revenue streams like DVD sales.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-77", "displayId": "movie-profits1", "names": ["Major Genre", "Production Budget", "Profit", "Title", "Worldwide Gross"], "rows": [{"Major Genre": "Action", "Production Budget": 237000000, "Profit": 2530891499, "Title": "Avatar", "Worldwide Gross": 2767891499}, {"Major Genre": "Action", "Production Budget": 63000000, "Profit": 860067947, "Title": "Jurassic Park", "Worldwide Gross": 923067947}, {"Major Genre": "Action", "Production Budget": 185000000, "Profit": 837345358, "Title": "The Dark Knight", "Worldwide Gross": 1022345358}, {"Major Genre": "Adventure", "Production Budget": 94000000, "Profit": 1039027325, "Title": "The Lord of the Rings: The Return of the King", "Worldwide Gross": 1133027325}, {"Major Genre": "Adventure", "Production Budget": 125000000, "Profit": 851457891, "Title": "Harry Potter and the Sorcerer's Stone", "Worldwide Gross": 976457891}, {"Major Genre": "Adventure", "Production Budget": 70000000, "Profit": 849838758, "Title": "Shrek 2", "Worldwide Gross": 919838758}, {"Major Genre": "Black Comedy", "Production Budget": 37000000, "Profit": 126415735, "Title": "Burn After Reading", "Worldwide Gross": 163415735}, {"Major Genre": "Black Comedy", "Production Budget": 10000000, "Profit": 73593107, "Title": "Snatch", "Worldwide Gross": 83593107}, {"Major Genre": "Black Comedy", "Production Budget": 28000000, "Profit": 43430876, "Title": "The Royal Tenenbaums", "Worldwide Gross": 71430876}, {"Major Genre": "Comedy", "Production Budget": 28000000, "Profit": 476050219, "Title": "Aladdin", "Worldwide Gross": 504050219}, {"Major Genre": "Comedy", "Production Budget": 150000000, "Profit": 470495432, "Title": "Ratatouille", "Worldwide Gross": 620495432}, {"Major Genre": "Comedy", "Production Budget": 110000000, "Profit": 464480841, "Title": "Night at the Museum", "Worldwide Gross": 574480841}, {"Major Genre": "Concert/Performance", "Production Budget": 6500000, "Profit": 64781781, "Title": "Hannah Montana/Miley Cyrus: Best of Both Worlds Concert Tour", "Worldwide Gross": 71281781}, {"Major Genre": "Concert/Performance", "Production Budget": 3000000, "Profit": 35236338, "Title": "The Original Kings of Comedy", "Worldwide Gross": 38236338}, {"Major Genre": "Concert/Performance", "Production Budget": 3000000, "Profit": 16184820, "Title": "Martin Lawrence Live: RunTelDat", "Worldwide Gross": 19184820}, {"Major Genre": "Documentary", "Production Budget": 6000000, "Profit": 216414517, "Title": "Fahrenheit 9/11", "Worldwide Gross": 222414517}, {"Major Genre": "Documentary", "Production Budget": 3400000, "Profit": 126037223, "Title": "La marche de l'empereur", "Worldwide Gross": 129437223}, {"Major Genre": "Documentary", "Production Budget": 3000000, "Profit": 55576018, "Title": "Bowling for Columbine", "Worldwide Gross": 58576018}, {"Major Genre": "Drama", "Production Budget": 10500000, "Profit": 782410554, "Title": "ET: The Extra-Terrestrial", "Worldwide Gross": 792910554}, {"Major Genre": "Drama", "Production Budget": 50000000, "Profit": 652623634, "Title": "The Twilight Saga: New Moon", "Worldwide Gross": 702623634}, {"Major Genre": "Drama", "Production Budget": 55000000, "Profit": 624400525, "Title": "Forrest Gump", "Worldwide Gross": 679400525}, {"Major Genre": "Horror", "Production Budget": 12000000, "Profit": 458700000, "Title": "Jaws", "Worldwide Gross": 470700000}, {"Major Genre": "Horror", "Production Budget": 150000000, "Profit": 435055701, "Title": "I am Legend", "Worldwide Gross": 585055701}, {"Major Genre": "Horror", "Production Budget": 12000000, "Profit": 390500000, "Title": "The Exorcist", "Worldwide Gross": 402500000}, {"Major Genre": "Musical", "Production Budget": 20000000, "Profit": 383476931, "Title": "Beauty and the Beast", "Worldwide Gross": 403476931}, {"Major Genre": "Musical", "Production Budget": 8200000, "Profit": 278014286, "Title": "The Sound of Music", "Worldwide Gross": 286214286}, {"Major Genre": "Musical", "Production Budget": 30000000, "Profit": 277687518, "Title": "Chicago", "Worldwide Gross": 307687518}, {"Major Genre": "Romantic Comedy", "Production Budget": 14000000, "Profit": 449400000, "Title": "Pretty Woman", "Worldwide Gross": 463400000}, {"Major Genre": "Romantic Comedy", "Production Budget": 5000000, "Profit": 363744044, "Title": "My Big Fat Greek Wedding", "Worldwide Gross": 368744044}, {"Major Genre": "Romantic Comedy", "Production Budget": 22000000, "Profit": 338099999, "Title": "There's Something About Mary", "Worldwide Gross": 360099999}, {"Major Genre": "Thriller/Suspense", "Production Budget": 200000000, "Profit": 1642879955, "Title": "Titanic", "Worldwide Gross": 1842879955}, {"Major Genre": "Thriller/Suspense", "Production Budget": 40000000, "Profit": 632806292, "Title": "The Sixth Sense", "Worldwide Gross": 672806292}, {"Major Genre": "Thriller/Suspense", "Production Budget": 125000000, "Profit": 632236138, "Title": "The Da Vinci Code", "Worldwide Gross": 757236138}, {"Major Genre": "Western", "Production Budget": 19000000, "Profit": 405200000, "Title": "Dances with Wolves", "Worldwide Gross": 424200000}, {"Major Genre": "Western", "Production Budget": 6000000, "Profit": 96308900, "Title": "Butch Cassidy and the Sundance Kid", "Worldwide Gross": 102308900}, {"Major Genre": "Western", "Production Budget": 26000000, "Profit": 42293719, "Title": "Open Range", "Worldwide Gross": 68293719}], "metadata": {"Major Genre": {"type": "string", "semanticType": "String"}, "Production Budget": {"type": "number", "semanticType": "Number"}, "Profit": {"type": "number", "semanticType": "Number"}, "Title": {"type": "string", "semanticType": "Name"}, "Worldwide Gross": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title', 'Major Genre'])\n \n # Group by Major Genre and select top 3 most profitable movies from each genre\n transformed_df = df_filtered.groupby('Major Genre', group_keys=False).apply(\n lambda x: x.nlargest(3, 'Profit')\n ).reset_index(drop=True)\n \n # Select only the required output fields\n transformed_df = transformed_df[['Title', 'Major Genre', 'Profit', 'Production Budget', 'Worldwide Gross']]\n \n return transformed_df\n", "source": ["movies"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 380270577.0, 402111870.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 33619971.0, 140689412.0, nan, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 237477.0, 417703.0, 519541.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\n{\n \"instruction\": \"show top 30 movies based on their profit\",\n \"chart_type\": \"Scatter Plot\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Worldwide Gross\",\n \"color\": \"Title\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the profit for each movie (Worldwide Gross minus Production Budget), then select the top 30 movies with the highest profit. Display these movies with their Production Budget, Worldwide Gross, and Title to visualize the relationship between budget and revenue for the most profitable films.\",\n \"display_instruction\": \"Show top 30 movies by **profit** with their **Production Budget** and **Worldwide Gross**\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Worldwide Gross\", \"Profit\"],\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Worldwide Gross\",\n \"color\": \"Title\"\n },\n \"reason\": \"The user wants to show top 30 movies based on profit, which requires calculating profit as the difference between Worldwide Gross and Production Budget. The chart encodings provided are sufficient to visualize the most profitable movies, showing the relationship between their budget and gross revenue. An intermediate field 'Profit' is added to output_fields to enable the top 30 selection, though it won't be directly visualized in the chart.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title'])\n \n # Sort by profit in descending order and select top 30\n df_top30 = df_filtered.nlargest(30, 'Profit')\n \n # Select only the required output fields\n transformed_df = df_top30[['Title', 'Production Budget', 'Worldwide Gross', 'Profit']].reset_index(drop=True)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Production Budget Profit Title Worldwide Gross\n0 237000000 2530891499 Avatar 2767891499\n1 200000000 1642879955 Titanic 1842879955\n2 94000000 1039027325 The Lord of the Rings: The Return of the King 1133027325\n3 63000000 860067947 Jurassic Park 923067947\n4 125000000 851457891 Harry Potter and the Sorcerer's Stone 976457891\n5 70000000 849838758 Shrek 2 919838758\n6 200000000 846340665 Toy Story 3 1046340665\n7 225000000 840659812 Pirates of the Caribbean: Dead Man's Chest 1065659812\n8 185000000 837345358 The Dark Knight 1022345358\n9 94000000 832284377 The Lord of the Rings: The Two Towers 926284377\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show the top 3 most profitable movies from each genre\",\n \"chart_type\": \"Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Title\",\n \"y\": \"Profit\",\n \"color\": \"Production Budget\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate the profit for each movie (Worldwide Gross minus Production Budget), then group movies by their Major Genre and select the top 3 most profitable movies from each genre. Display these movies with their Title, Profit, Production Budget, Major Genre, and Worldwide Gross.\",\n \"display_instruction\": \"Show top 3 most profitable movies from each **Major Genre**\",\n \"output_fields\": [\"Title\", \"Major Genre\", \"Profit\", \"Production Budget\", \"Worldwide Gross\"],\n \"chart_encodings\": {\n \"x\": \"Title\",\n \"y\": \"Profit\",\n \"color\": \"Major Genre\"\n },\n \"reason\": \"The user wants to see the top 3 most profitable movies from each genre, which builds upon the previous profit calculation. The chart encodings are updated to use 'Major Genre' for color instead of 'Production Budget' because when showing top movies by genre, it's more meaningful to distinguish them by genre in the visualization. The Major Genre field is added to output_fields to enable grouping and visualization by genre.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title', 'Major Genre'])\n \n # Group by Major Genre and select top 3 most profitable movies from each genre\n transformed_df = df_filtered.groupby('Major Genre', group_keys=False).apply(\n lambda x: x.nlargest(3, 'Profit')\n ).reset_index(drop=True)\n \n # Select only the required output fields\n transformed_df = transformed_df[['Title', 'Major Genre', 'Profit', 'Production Budget', 'Worldwide Gross']]\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-78", "resultTableId": "table-77", "chart": {"id": "chart-1760743349594", "chartType": "Bar Chart", "encodingMap": {"x": {"fieldID": "original--movies--Title"}, "y": {"fieldID": "concept-Profit-1760742653681"}, "color": {"fieldID": "original--movies--Production Budget"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-78", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show the top 3 most profitable movies from each genre", "displayContent": "Show top 3 most profitable movies from each **Major Genre**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "This code performs a profitability analysis to identify the most successful movies in each genre:\n\n- **Calculate Profit**: Computes the **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- **Filter Data**: Removes movies with missing values in **Profit**, **Production Budget**, **Worldwide Gross**, **Title**, or **Major Genre** to ensure complete data for analysis\n- **Group by Genre**: Groups all movies by their **Major Genre** (e.g., Action, Comedy, Drama)\n- **Select Top Performers**: Within each genre, identifies the **top 3** movies with the highest **Profit**\n- **Format Output**: Returns a focused dataset containing only **Title**, **Major Genre**, **Profit**, **Production Budget**, and **Worldwide Gross** for these top-performing movies", "concepts": [{"explanation": "The net financial gain from a movie's theatrical release, calculated as the difference between worldwide box office revenue and production costs: \\( \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\). This metric indicates the commercial success of a film before accounting for marketing costs and revenue sharing.", "field": "Profit"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: nan, 140689412.0, nan, ..., 44145849.0, nan, nan, 46260220.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 237477.0, 417703.0, nan, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df_movies['Profit'] = df_movies['Worldwide Gross'] - df_movies['Production Budget']\n \n # Remove rows with missing values in required columns\n df_filtered = df_movies.dropna(subset=['Profit', 'Production Budget', 'Worldwide Gross', 'Title', 'Major Genre'])\n \n # Group by Major Genre and select top 3 most profitable movies from each genre\n transformed_df = df_filtered.groupby('Major Genre', group_keys=False).apply(\n lambda x: x.nlargest(3, 'Profit')\n ).reset_index(drop=True)\n \n # Select only the required output fields\n transformed_df = transformed_df[['Title', 'Major Genre', 'Profit', 'Production Budget', 'Worldwide Gross']]\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThis code performs a profitability analysis to identify the most successful movies in each genre:\n\n- **Calculate Profit**: Computes the **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- **Filter Data**: Removes movies with missing values in **Profit**, **Production Budget**, **Worldwide Gross**, **Title**, or **Major Genre** to ensure complete data for analysis\n- **Group by Genre**: Groups all movies by their **Major Genre** (e.g., Action, Comedy, Drama)\n- **Select Top Performers**: Within each genre, identifies the **top 3** movies with the highest **Profit**\n- **Format Output**: Returns a focused dataset containing only **Title**, **Major Genre**, **Profit**, **Production Budget**, and **Worldwide Gross** for these top-performing movies\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"The net financial gain from a movie's theatrical release, calculated as the difference between worldwide box office revenue and production costs: \\\\( \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\). This metric indicates the commercial success of a film before accounting for marketing costs and revenue sharing.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-770727", "displayId": "director-profit", "names": ["Director", "Profit", "Title", "Total_Director_Profit"], "rows": [{"Director": "Steven Spielberg", "Profit": 860067947, "Title": "Jurassic Park", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 782410554, "Title": "ET: The Extra-Terrestrial", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 711686679, "Title": "The Lost World: Jurassic Park", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 601558145, "Title": "Indiana Jones and the Kingdom of the Crystal Skull", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 459745532, "Title": "The War of the Worlds", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 458700000, "Title": "Jaws", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 426171806, "Title": "Indiana Jones and the Last Crusade", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 416635085, "Title": "Saving Private Ryan", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 366800358, "Title": "Raiders of the Lost Ark", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 317700000, "Title": "Close Encounters of the Third Kind", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 305080271, "Title": "Indiana Jones and the Temple of Doom", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 299106800, "Title": "Catch Me if You Can", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 296200000, "Title": "Schindler's List", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 256824714, "Title": "Minority Report", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 230854823, "Title": "Hook", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 145900000, "Title": "Artificial Intelligence: AI", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 143673959, "Title": "The Terminal", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 78589701, "Title": "The Color Purple", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 62875000, "Title": 1941, "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 55279090, "Title": "Munich", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 19500000, "Title": "Twilight Zone: The Movie", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": 4212592, "Title": "Amistad", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Profit": -130000000, "Title": "The Adventures of Tintin: Secret of the Unicorn", "Total_Director_Profit": 7169573056}, {"Director": "James Cameron", "Profit": 2530891499, "Title": "Avatar", "Total_Director_Profit": 5078066216}, {"Director": "James Cameron", "Profit": 1642879955, "Title": "Titanic", "Total_Director_Profit": 5078066216}, {"Director": "James Cameron", "Profit": 416816151, "Title": "Terminator 2: Judgment Day", "Total_Director_Profit": 5078066216}, {"Director": "James Cameron", "Profit": 265300000, "Title": "True Lies", "Total_Director_Profit": 5078066216}, {"Director": "James Cameron", "Profit": 166316455, "Title": "Aliens", "Total_Director_Profit": 5078066216}, {"Director": "James Cameron", "Profit": 71619031, "Title": "The Terminator", "Total_Director_Profit": 5078066216}, {"Director": "James Cameron", "Profit": -15756875, "Title": "The Abyss", "Total_Director_Profit": 5078066216}, {"Director": "Chris Columbus", "Profit": 851457891, "Title": "Harry Potter and the Sorcerer's Stone", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": 778987880, "Title": "Harry Potter and the Chamber of Secrets", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": 461684675, "Title": "Home Alone", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": 416286003, "Title": "Mrs. Doubtfire", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": 338994850, "Title": "Home Alone 2: Lost in New York", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": 131435277, "Title": "Percy Jackson & the Olympians: The Lightning Thief", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": 69709917, "Title": "Stepmom", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": -1617462, "Title": "I Love You, Beth Cooper", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": -2579224, "Title": "Bicentennial Man", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Profit": -8329380, "Title": "Rent", "Total_Director_Profit": 3036030427}, {"Director": "George Lucas", "Profit": 809288297, "Title": "Star Wars Ep. I: The Phantom Menace", "Total_Director_Profit": 3011105789}, {"Director": "George Lucas", "Profit": 786900000, "Title": "Star Wars Ep. IV: A New Hope", "Total_Director_Profit": 3011105789}, {"Director": "George Lucas", "Profit": 733998877, "Title": "Star Wars Ep. III: Revenge of the Sith", "Total_Director_Profit": 3011105789}, {"Director": "George Lucas", "Profit": 541695615, "Title": "Star Wars Ep. II: Attack of the Clones", "Total_Director_Profit": 3011105789}, {"Director": "George Lucas", "Profit": 139223000, "Title": "American Graffiti", "Total_Director_Profit": 3011105789}, {"Director": "Peter Jackson", "Profit": 1039027325, "Title": "The Lord of the Rings: The Return of the King", "Total_Director_Profit": 3001395936}, {"Director": "Peter Jackson", "Profit": 832284377, "Title": "The Lord of the Rings: The Two Towers", "Total_Director_Profit": 3001395936}, {"Director": "Peter Jackson", "Profit": 759621686, "Title": "The Lord of the Rings: The Fellowship of the Ring", "Total_Director_Profit": 3001395936}, {"Director": "Peter Jackson", "Profit": 343517357, "Title": "King Kong", "Total_Director_Profit": 3001395936}, {"Director": "Peter Jackson", "Profit": 29702568, "Title": "The Lovely Bones", "Total_Director_Profit": 3001395936}, {"Director": "Peter Jackson", "Profit": -2757377, "Title": "Braindead", "Total_Director_Profit": 3001395936}, {"Director": "Robert Zemeckis", "Profit": 624400525, "Title": "Forrest Gump", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 362109762, "Title": "Back to the Future", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 342230516, "Title": "Cast Away", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 292000000, "Title": "Back to the Future Part II", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 281500000, "Title": "Who Framed Roger Rabbit?", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 203700000, "Title": "Back to the Future Part III", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 198693989, "Title": "What Lies Beneath", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 135420597, "Title": "The Polar Express", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 133743744, "Title": "Disney's A Christmas Carol", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 94022650, "Title": "Death Becomes Her", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 75900000, "Title": "Contact", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Profit": 44995215, "Title": "Beowulf", "Total_Director_Profit": 2788716998}, {"Director": "Michael Bay", "Profit": 626303693, "Title": "Transformers: Revenge of the Fallen", "Total_Director_Profit": 2461192847}, {"Director": "Michael Bay", "Profit": 557272592, "Title": "Transformers", "Total_Director_Profit": 2461192847}, {"Director": "Michael Bay", "Profit": 414600000, "Title": "Armageddon", "Total_Director_Profit": 2461192847}, {"Director": "Michael Bay", "Profit": 297739855, "Title": "Pearl Harbor", "Total_Director_Profit": 2461192847}, {"Director": "Michael Bay", "Profit": 261069511, "Title": "The Rock", "Total_Director_Profit": 2461192847}, {"Director": "Michael Bay", "Profit": 142940870, "Title": "Bad Boys II", "Total_Director_Profit": 2461192847}, {"Director": "Michael Bay", "Profit": 118247413, "Title": "Bad Boys", "Total_Director_Profit": 2461192847}, {"Director": "Michael Bay", "Profit": 43018913, "Title": "The Island", "Total_Director_Profit": 2461192847}, {"Director": "Roland Emmerich", "Profit": 742400878, "Title": "Independence Day", "Total_Director_Profit": 2390416794}, {"Director": "Roland Emmerich", "Profit": 566812167, "Title": 2012, "Total_Director_Profit": 2390416794}, {"Director": "Roland Emmerich", "Profit": 419272402, "Title": "The Day After Tomorrow", "Total_Director_Profit": 2390416794}, {"Director": "Roland Emmerich", "Profit": 251000000, "Title": "Godzilla", "Total_Director_Profit": 2390416794}, {"Director": "Roland Emmerich", "Profit": 164065678, "Title": "10,000 B.C.", "Total_Director_Profit": 2390416794}, {"Director": "Roland Emmerich", "Profit": 141565669, "Title": "Stargate", "Total_Director_Profit": 2390416794}, {"Director": "Roland Emmerich", "Profit": 105300000, "Title": "The Patriot", "Total_Director_Profit": 2390416794}, {"Director": "Gore Verbinski", "Profit": 840659812, "Title": "Pirates of the Caribbean: Dead Man's Chest", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Profit": 660996492, "Title": "Pirates of the Caribbean: At World's End", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Profit": 530011224, "Title": "Pirates of the Caribbean: The Curse of the Black Pearl", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Profit": 201094024, "Title": "The Ring", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Profit": 107808615, "Title": "The Mexican", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Profit": 23894591, "Title": "Mouse Hunt", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Profit": -4533039, "Title": "The Weather Man", "Total_Director_Profit": 2359931719}, {"Director": "Tim Burton", "Profit": 823291110, "Title": "Alice in Wonderland", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 376348924, "Title": "Batman", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 324459076, "Title": "Charlie and the Chocolate Factory", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 262211740, "Title": "Planet of the Apes", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 186822354, "Title": "Batman Returns", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 137068340, "Title": "Sleepy Hollow", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 87359111, "Title": "The Corpse Bride", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 58326666, "Title": "Beetle Juice", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 53432867, "Title": "Big Fish", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 33976987, "Title": "Edward Scissorhands", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": 21371017, "Title": "Mars Attacks!", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Profit": -12171534, "Title": "Ed Wood", "Total_Director_Profit": 2352496658}, {"Director": "Andrew Adamson", "Profit": 849838758, "Title": "Shrek 2", "Total_Director_Profit": 2047535219}, {"Director": "Andrew Adamson", "Profit": 568806957, "Title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", "Total_Director_Profit": 2047535219}, {"Director": "Andrew Adamson", "Profit": 434399218, "Title": "Shrek", "Total_Director_Profit": 2047535219}, {"Director": "Andrew Adamson", "Profit": 194490286, "Title": "The Chronicles of Narnia: Prince Caspian", "Total_Director_Profit": 2047535219}, {"Director": "Sam Raimi", "Profit": 682708551, "Title": "Spider-Man", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": 632871626, "Title": "Spider-Man 3", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": 583705001, "Title": "Spider-Man 2", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": 55724728, "Title": "Drag Me To Hell", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": 34567606, "Title": "The Gift", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": 29025000, "Title": "The Evil Dead", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": 10502976, "Title": "Army of Darkness", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": 2423044, "Title": "Evil Dead II", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": -683727, "Title": "A Simple Plan", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": -3887360, "Title": "For Love of the Game", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Profit": -13447540, "Title": "The Quick and the Dead", "Total_Director_Profit": 2013509905}, {"Director": "Ron Howard", "Profit": 632236138, "Title": "The Da Vinci Code", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": 335975846, "Title": "Angels & Demons", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": 269100000, "Title": "Apollo 13", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": 238708996, "Title": "A Beautiful Mind", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": 238700000, "Title": "Ransom", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": 222141403, "Title": "How the Grinch Stole Christmas", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": 54599495, "Title": "Splash", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": 20539911, "Title": "Cinderella Man", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": -855414, "Title": "Frost/Nixon", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": -24680311, "Title": "EDtv", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Profit": -26746567, "Title": "The Missing", "Total_Director_Profit": 1959719497}, {"Director": "Christopher Nolan", "Profit": 837345358, "Title": "The Dark Knight", "Total_Director_Profit": 1823751815}, {"Director": "Christopher Nolan", "Profit": 593830280, "Title": "Inception", "Total_Director_Profit": 1823751815}, {"Director": "Christopher Nolan", "Profit": 222353017, "Title": "Batman Begins", "Total_Director_Profit": 1823751815}, {"Director": "Christopher Nolan", "Profit": 67896006, "Title": "The Prestige", "Total_Director_Profit": 1823751815}, {"Director": "Christopher Nolan", "Profit": 67622499, "Title": "Insomnia", "Total_Director_Profit": 1823751815}, {"Director": "Christopher Nolan", "Profit": 34665950, "Title": "Memento", "Total_Director_Profit": 1823751815}, {"Director": "Christopher Nolan", "Profit": 38705, "Title": "Following", "Total_Director_Profit": 1823751815}, {"Director": "M. Night Shyamalan", "Profit": 632806292, "Title": "The Sixth Sense", "Total_Director_Profit": 1575120870}, {"Director": "M. Night Shyamalan", "Profit": 337563071, "Title": "Signs", "Total_Director_Profit": 1575120870}, {"Director": "M. Night Shyamalan", "Profit": 188514545, "Title": "The Village", "Total_Director_Profit": 1575120870}, {"Director": "M. Night Shyamalan", "Profit": 174856037, "Title": "Unbreakable", "Total_Director_Profit": 1575120870}, {"Director": "M. Night Shyamalan", "Profit": 140191957, "Title": "The Last Airbender", "Total_Director_Profit": 1575120870}, {"Director": "M. Night Shyamalan", "Profit": 103403799, "Title": "The Happening", "Total_Director_Profit": 1575120870}, {"Director": "M. Night Shyamalan", "Profit": -2214831, "Title": "Lady in the Water", "Total_Director_Profit": 1575120870}, {"Director": "David Yates", "Profit": 788468864, "Title": "Harry Potter and the Order of the Phoenix", "Total_Director_Profit": 1475968769}, {"Director": "David Yates", "Profit": 687499905, "Title": "Harry Potter and the Half-Blood Prince", "Total_Director_Profit": 1475968769}, {"Director": "John Lasseter", "Profit": 394966906, "Title": "Toy Story 2", "Total_Director_Profit": 1436948978}, {"Director": "John Lasseter", "Profit": 391923762, "Title": "Cars", "Total_Director_Profit": 1436948978}, {"Director": "John Lasseter", "Profit": 331948825, "Title": "Toy Story", "Total_Director_Profit": 1436948978}, {"Director": "John Lasseter", "Profit": 318109485, "Title": "A Bug's Life", "Total_Director_Profit": 1436948978}, {"Director": "Carlos Saldanha", "Profit": 796685941, "Title": "Ice Age: Dawn of the Dinosaurs", "Total_Director_Profit": 1373585223}, {"Director": "Carlos Saldanha", "Profit": 576899282, "Title": "Ice Age: The Meltdown", "Total_Director_Profit": 1373585223}, {"Director": "Andy Wachowski", "Profit": 611576929, "Title": "The Matrix Reloaded", "Total_Director_Profit": 1296311080}, {"Director": "Andy Wachowski", "Profit": 395279930, "Title": "The Matrix", "Total_Director_Profit": 1296311080}, {"Director": "Andy Wachowski", "Profit": 314259759, "Title": "The Matrix Revolutions", "Total_Director_Profit": 1296311080}, {"Director": "Andy Wachowski", "Profit": 1800000, "Title": "Bound", "Total_Director_Profit": 1296311080}, {"Director": "Andy Wachowski", "Profit": -26605538, "Title": "Speed Racer", "Total_Director_Profit": 1296311080}, {"Director": "Ridley Scott", "Profit": 354683805, "Title": "Gladiator", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 263100280, "Title": "Hannibal", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 194630630, "Title": "Alien", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 165697825, "Title": "American Gangster", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 101398413, "Title": "Kingdom of Heaven", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 100885538, "Title": "Robin Hood", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 78638745, "Title": "Black Hawk Down", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 40894666, "Title": "Body of Lies", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 15892212, "Title": "Black Rain", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 7064105, "Title": "A Good Year", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": 5139618, "Title": "Blade Runner", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": -1830844, "Title": "G.I.Jane", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": -9497888, "Title": "Legend", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Profit": -27770700, "Title": "White Squall", "Total_Director_Profit": 1288926405}], "metadata": {"Director": {"type": "string", "semanticType": "Name"}, "Profit": {"type": "number", "semanticType": "Number"}, "Title": {"type": "string", "semanticType": "Name"}, "Total_Director_Profit": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director or Profit values\n df = df.dropna(subset=['Director', 'Profit'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Add total director profit to each movie row\n df_filtered = df_filtered.merge(director_profit, on='Director', how='left')\n \n # Select and order columns\n transformed_df = df_filtered[['Director', 'Title', 'Profit', 'Total_Director_Profit']].copy()\n \n # Sort by total director profit (descending) and then by movie profit (descending)\n transformed_df = transformed_df.sort_values(['Total_Director_Profit', 'Profit'], ascending=[False, False])\n \n return transformed_df\n", "source": ["movies"], "dialog": [{"content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 441226247.0, 533345358.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: nan, 1978111.0, 140689412.0, ..., 100178981.0, 104578578.0, 234119058.0, 320830925.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 15000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 245271.0, 261439.0, 326950.0, 417703.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nshow top 20 directories based on profit breakdown by their movies", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Show top 20 directors based on total profit, with a breakdown of profit by their individual movies\",\n \"display_instruction\": \"Show top 20 **directors** by total **profit** with movie breakdown\",\n \"recommendation\": \"Calculate profit (Worldwide Gross - Production Budget) for each movie, then aggregate by director to find top 20 directors by total profit. Display individual movie profits for each director to show the breakdown.\",\n \"output_fields\": [\"Director\", \"Title\", \"Profit\", \"Total_Director_Profit\"],\n \"chart_type\": \"group_bar\",\n \"chart_encodings\": {\n \"x\": \"Director\",\n \"y\": \"Profit\",\n \"color\": \"Title\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director or Profit values\n df = df.dropna(subset=['Director', 'Profit'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Add total director profit to each movie row\n df_filtered = df_filtered.merge(director_profit, on='Director', how='left')\n \n # Select and order columns\n transformed_df = df_filtered[['Director', 'Title', 'Profit', 'Total_Director_Profit']].copy()\n \n # Sort by total director profit (descending) and then by movie profit (descending)\n transformed_df = transformed_df.sort_values(['Total_Director_Profit', 'Profit'], ascending=[False, False])\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "movies", "resultTableId": "table-770727", "chart": {"id": "chart-1760743765735", "chartType": "Auto", "encodingMap": {}, "tableRef": "movies", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show top 20 directories based on profit breakdown by their movies", "displayContent": "Show top 20 **directors** by total **profit** with movie breakdown"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "This code performs a director profitability analysis:\n\n1. Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n\n2. Remove movies with missing **Director** or **Profit** information to ensure clean analysis\n\n3. Aggregate movies by **Director** to compute **Total_Director_Profit** (sum of all profits from their movies)\n\n4. Identify the **top 20 directors** ranked by their total profit across all films\n\n5. Filter the dataset to include only movies directed by these **top 20 directors**\n\n6. Enrich each movie record with its director's **Total_Director_Profit** for comparison context\n\n7. Sort results first by **Total_Director_Profit** (descending) to group directors by overall success, then by individual movie **Profit** (descending) to rank films within each director's portfolio", "concepts": [{"explanation": "Net financial return for each movie, calculated as: \\( \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\). Positive values indicate profitable films, while negative values represent financial losses.", "field": "Profit"}, {"explanation": "Cumulative profit generated by a director across all their films in the dataset, computed as: \\( \\text{Total\\_Director\\_Profit} = \\sum \\text{Profit}_{\\text{all movies by director}} \\). This metric measures a director's overall commercial track record and financial value to studios.", "field": "Total_Director_Profit"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 402111870.0, 403706375.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 893953.0, 2638319.0, 3507046.0, ..., 104578578.0, 124058348.0, 234119058.0, 320830925.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: 46.0, 72.0, 74.0, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: nan, 1.5, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 237477.0, 417703.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director or Profit values\n df = df.dropna(subset=['Director', 'Profit'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Add total director profit to each movie row\n df_filtered = df_filtered.merge(director_profit, on='Director', how='left')\n \n # Select and order columns\n transformed_df = df_filtered[['Director', 'Title', 'Profit', 'Total_Director_Profit']].copy()\n \n # Sort by total director profit (descending) and then by movie profit (descending)\n transformed_df = transformed_df.sort_values(['Total_Director_Profit', 'Profit'], ascending=[False, False])\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThis code performs a director profitability analysis:\n\n1. Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n\n2. Remove movies with missing **Director** or **Profit** information to ensure clean analysis\n\n3. Aggregate movies by **Director** to compute **Total_Director_Profit** (sum of all profits from their movies)\n\n4. Identify the **top 20 directors** ranked by their total profit across all films\n\n5. Filter the dataset to include only movies directed by these **top 20 directors**\n\n6. Enrich each movie record with its director's **Total_Director_Profit** for comparison context\n\n7. Sort results first by **Total_Director_Profit** (descending) to group directors by overall success, then by individual movie **Profit** (descending) to rank films within each director's portfolio\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"Net financial return for each movie, calculated as: \\\\( \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\). Positive values indicate profitable films, while negative values represent financial losses.\"\n },\n {\n \"field\": \"Total_Director_Profit\",\n \"explanation\": \"Cumulative profit generated by a director across all their films in the dataset, computed as: \\\\( \\\\text{Total\\\\_Director\\\\_Profit} = \\\\sum \\\\text{Profit}_{\\\\text{all movies by director}} \\\\). This metric measures a director's overall commercial track record and financial value to studios.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-89", "displayId": "director-genre-profit", "names": ["Director", "Genre_Profit", "Major Genre", "Total_Director_Profit"], "rows": [{"Director": "Steven Spielberg", "Genre_Profit": 2288324872, "Major Genre": "Action", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Genre_Profit": 2222007781, "Major Genre": "Drama", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Genre_Profit": 2118165403, "Major Genre": "Adventure", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Genre_Profit": 478200000, "Major Genre": "Horror", "Total_Director_Profit": 7169573056}, {"Director": "Steven Spielberg", "Genre_Profit": 62875000, "Major Genre": "Comedy", "Total_Director_Profit": 7169573056}, {"Director": "James Cameron", "Genre_Profit": 3435186261, "Major Genre": "Action", "Total_Director_Profit": 5078066216}, {"Director": "James Cameron", "Genre_Profit": 1642879955, "Major Genre": "Thriller/Suspense", "Total_Director_Profit": 5078066216}, {"Director": "Chris Columbus", "Genre_Profit": 1761881048, "Major Genre": "Adventure", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Genre_Profit": 1215348066, "Major Genre": "Comedy", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Genre_Profit": 67130693, "Major Genre": "Drama", "Total_Director_Profit": 3036030427}, {"Director": "Chris Columbus", "Genre_Profit": -8329380, "Major Genre": "Musical", "Total_Director_Profit": 3036030427}, {"Director": "George Lucas", "Genre_Profit": 2871882789, "Major Genre": "Adventure", "Total_Director_Profit": 3011105789}, {"Director": "George Lucas", "Genre_Profit": 139223000, "Major Genre": "Comedy", "Total_Director_Profit": 3011105789}, {"Director": "Peter Jackson", "Genre_Profit": 2974450745, "Major Genre": "Adventure", "Total_Director_Profit": 3001395936}, {"Director": "Peter Jackson", "Genre_Profit": 29702568, "Major Genre": "Drama", "Total_Director_Profit": 3001395936}, {"Director": "Peter Jackson", "Genre_Profit": -2757377, "Major Genre": "Horror", "Total_Director_Profit": 3001395936}, {"Director": "Robert Zemeckis", "Genre_Profit": 1176274785, "Major Genre": "Drama", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Genre_Profit": 1038225574, "Major Genre": "Adventure", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Genre_Profit": 375522650, "Major Genre": "Comedy", "Total_Director_Profit": 2788716998}, {"Director": "Robert Zemeckis", "Genre_Profit": 198693989, "Major Genre": "Thriller/Suspense", "Total_Director_Profit": 2788716998}, {"Director": "Michael Bay", "Genre_Profit": 2046592847, "Major Genre": "Action", "Total_Director_Profit": 2461192847}, {"Director": "Michael Bay", "Genre_Profit": 414600000, "Major Genre": "Adventure", "Total_Director_Profit": 2461192847}, {"Director": "Roland Emmerich", "Genre_Profit": 1325738958, "Major Genre": "Adventure", "Total_Director_Profit": 2390416794}, {"Director": "Roland Emmerich", "Genre_Profit": 959377836, "Major Genre": "Action", "Total_Director_Profit": 2390416794}, {"Director": "Roland Emmerich", "Genre_Profit": 105300000, "Major Genre": "Drama", "Total_Director_Profit": 2390416794}, {"Director": "Gore Verbinski", "Genre_Profit": 2031667528, "Major Genre": "Adventure", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Genre_Profit": 201094024, "Major Genre": "Horror", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Genre_Profit": 107808615, "Major Genre": "Action", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Genre_Profit": 23894591, "Major Genre": "Comedy", "Total_Director_Profit": 2359931719}, {"Director": "Gore Verbinski", "Genre_Profit": -4533039, "Major Genre": "Drama", "Total_Director_Profit": 2359931719}, {"Director": "Tim Burton", "Genre_Profit": 1172861961, "Major Genre": "Adventure", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Genre_Profit": 563171278, "Major Genre": "Action", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Genre_Profit": 425962212, "Major Genre": "Comedy", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Genre_Profit": 137068340, "Major Genre": "Horror", "Total_Director_Profit": 2352496658}, {"Director": "Tim Burton", "Genre_Profit": 53432867, "Major Genre": "Drama", "Total_Director_Profit": 2352496658}, {"Director": "Andrew Adamson", "Genre_Profit": 2047535219, "Major Genre": "Adventure", "Total_Director_Profit": 2047535219}, {"Director": "Sam Raimi", "Genre_Profit": 1899285178, "Major Genre": "Adventure", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Genre_Profit": 97675748, "Major Genre": "Horror", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Genre_Profit": 34567606, "Major Genre": "Thriller/Suspense", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Genre_Profit": -4571087, "Major Genre": "Drama", "Total_Director_Profit": 2013509905}, {"Director": "Sam Raimi", "Genre_Profit": -13447540, "Major Genre": "Western", "Total_Director_Profit": 2013509905}, {"Director": "Ron Howard", "Genre_Profit": 968211984, "Major Genre": "Thriller/Suspense", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Genre_Profit": 527493493, "Major Genre": "Drama", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Genre_Profit": 252060587, "Major Genre": "Comedy", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Genre_Profit": 238700000, "Major Genre": "Action", "Total_Director_Profit": 1959719497}, {"Director": "Ron Howard", "Genre_Profit": -26746567, "Major Genre": "Western", "Total_Director_Profit": 1959719497}, {"Director": "Christopher Nolan", "Genre_Profit": 1059698375, "Major Genre": "Action", "Total_Director_Profit": 1823713110}, {"Director": "Christopher Nolan", "Genre_Profit": 729348785, "Major Genre": "Thriller/Suspense", "Total_Director_Profit": 1823713110}, {"Director": "Christopher Nolan", "Genre_Profit": 34665950, "Major Genre": "Drama", "Total_Director_Profit": 1823713110}, {"Director": "M. Night Shyamalan", "Genre_Profit": 1437143744, "Major Genre": "Thriller/Suspense", "Total_Director_Profit": 1575120870}, {"Director": "M. Night Shyamalan", "Genre_Profit": 140191957, "Major Genre": "Adventure", "Total_Director_Profit": 1575120870}, {"Director": "M. Night Shyamalan", "Genre_Profit": -2214831, "Major Genre": "Drama", "Total_Director_Profit": 1575120870}, {"Director": "David Yates", "Genre_Profit": 1475968769, "Major Genre": "Adventure", "Total_Director_Profit": 1475968769}, {"Director": "John Lasseter", "Genre_Profit": 1045025216, "Major Genre": "Adventure", "Total_Director_Profit": 1436948978}, {"Director": "John Lasseter", "Genre_Profit": 391923762, "Major Genre": "Comedy", "Total_Director_Profit": 1436948978}, {"Director": "Carlos Saldanha", "Genre_Profit": 1373585223, "Major Genre": "Adventure", "Total_Director_Profit": 1373585223}, {"Director": "Andy Wachowski", "Genre_Profit": 1294511080, "Major Genre": "Action", "Total_Director_Profit": 1296311080}, {"Director": "Andy Wachowski", "Genre_Profit": 1800000, "Major Genre": "Thriller/Suspense", "Total_Director_Profit": 1296311080}, {"Director": "Ridley Scott", "Genre_Profit": 534208088, "Major Genre": "Action", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Genre_Profit": 457730910, "Major Genre": "Horror", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Genre_Profit": 170931086, "Major Genre": "Drama", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Genre_Profit": 64129825, "Major Genre": "Adventure", "Total_Director_Profit": 1288926405}, {"Director": "Ridley Scott", "Genre_Profit": 61926496, "Major Genre": "Thriller/Suspense", "Total_Director_Profit": 1288926405}], "metadata": {"Director": {"type": "string", "semanticType": "Name"}, "Genre_Profit": {"type": "number", "semanticType": "Number"}, "Major Genre": {"type": "string", "semanticType": "String"}, "Total_Director_Profit": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director, Profit, or Major Genre values\n df = df.dropna(subset=['Director', 'Profit', 'Major Genre'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Aggregate profit by Director and Major Genre\n genre_breakdown = df_filtered.groupby(['Director', 'Major Genre'])['Profit'].sum().reset_index()\n genre_breakdown.columns = ['Director', 'Major Genre', 'Genre_Profit']\n \n # Add total director profit to each row\n genre_breakdown = genre_breakdown.merge(director_profit, on='Director', how='left')\n \n # Sort by total director profit (descending) and then by genre profit (descending)\n transformed_df = genre_breakdown.sort_values(['Total_Director_Profit', 'Genre_Profit'], ascending=[False, False])\n \n return transformed_df\n", "source": ["movies"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 441226247.0, 533345358.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: nan, 1978111.0, 140689412.0, ..., 100178981.0, 104578578.0, 234119058.0, 320830925.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 15000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 245271.0, 261439.0, 326950.0, 417703.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nshow top 20 directories based on profit breakdown by their movies", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Show top 20 directors based on total profit, with a breakdown of profit by their individual movies\",\n \"display_instruction\": \"Show top 20 **directors** by total **profit** with movie breakdown\",\n \"recommendation\": \"Calculate profit (Worldwide Gross - Production Budget) for each movie, then aggregate by director to find top 20 directors by total profit. Display individual movie profits for each director to show the breakdown.\",\n \"output_fields\": [\"Director\", \"Title\", \"Profit\", \"Total_Director_Profit\"],\n \"chart_type\": \"group_bar\",\n \"chart_encodings\": {\n \"x\": \"Director\",\n \"y\": \"Profit\",\n \"color\": \"Title\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director or Profit values\n df = df.dropna(subset=['Director', 'Profit'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Add total director profit to each movie row\n df_filtered = df_filtered.merge(director_profit, on='Director', how='left')\n \n # Select and order columns\n transformed_df = df_filtered[['Director', 'Title', 'Profit', 'Total_Director_Profit']].copy()\n \n # Sort by total director profit (descending) and then by movie profit (descending)\n transformed_df = transformed_df.sort_values(['Total_Director_Profit', 'Profit'], ascending=[False, False])\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Director Profit Title Total_Director_Profit\n0 Steven Spielberg 860067947 Jurassic Park 7169573056\n1 Steven Spielberg 782410554 ET: The Extra-Terrestrial 7169573056\n2 Steven Spielberg 711686679 The Lost World: Jurassic Park 7169573056\n3 Steven Spielberg 601558145 Indiana Jones and the Kingdom of the Crystal Skull 7169573056\n4 Steven Spielberg 459745532 The War of the Worlds 7169573056\n5 Steven Spielberg 458700000 Jaws 7169573056\n6 Steven Spielberg 426171806 Indiana Jones and the Last Crusade 7169573056\n7 Steven Spielberg 416635085 Saving Private Ryan 7169573056\n8 Steven Spielberg 366800358 Raiders of the Lost Ark 7169573056\n9 Steven Spielberg 317700000 Close Encounters of the Third Kind 7169573056\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"break down by movie genre instead\",\n \"chart_type\": \"Bar Chart\",\n \"chart_encodings\": {\n \"x\": \"Director\",\n \"y\": \"Profit\",\n \"color\": \"Title\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Show top 20 directors based on total profit, with a breakdown by the major genre of their movies instead of individual movie titles. This will show how each director's profit is distributed across different genres.\",\n \"display_instruction\": \"Show top 20 **directors** by total **profit** with **genre** breakdown\",\n \"output_fields\": [\"Director\", \"Major Genre\", \"Genre_Profit\", \"Total_Director_Profit\"],\n \"chart_encodings\": {\n \"x\": \"Director\",\n \"y\": \"Genre_Profit\",\n \"color\": \"Major Genre\"\n },\n \"reason\": \"The user wants to change the breakdown from individual movies to movie genres. Instead of showing profit by Title, we now aggregate profit by Major Genre for each director. The chart_encodings are updated to use 'Major Genre' for color instead of 'Title', and y-axis now shows 'Genre_Profit' (aggregated by genre) instead of individual movie profit.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director, Profit, or Major Genre values\n df = df.dropna(subset=['Director', 'Profit', 'Major Genre'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Aggregate profit by Director and Major Genre\n genre_breakdown = df_filtered.groupby(['Director', 'Major Genre'])['Profit'].sum().reset_index()\n genre_breakdown.columns = ['Director', 'Major Genre', 'Genre_Profit']\n \n # Add total director profit to each row\n genre_breakdown = genre_breakdown.merge(director_profit, on='Director', how='left')\n \n # Sort by total director profit (descending) and then by genre profit (descending)\n transformed_df = genre_breakdown.sort_values(['Total_Director_Profit', 'Genre_Profit'], ascending=[False, False])\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-770727", "resultTableId": "table-89", "chart": {"id": "chart-1760743802354", "chartType": "Bar Chart", "encodingMap": {"x": {"fieldID": "original--movies--Director"}, "y": {"fieldID": "concept-Profit-1760742653681"}, "color": {"fieldID": "original--movies--Title"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-770727", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "break down by movie genre instead", "displayContent": "Show top 20 **directors** by total **profit** with **genre** breakdown"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Remove movies with missing **Director**, **Profit**, or **Major Genre** information\n- Aggregate the **Profit** for each **Director** to calculate their **Total_Director_Profit**\n- Identify the **top 20 directors** based on their **Total_Director_Profit**\n- Filter the dataset to include only movies made by these **top 20 directors**\n- Group the filtered movies by **Director** and **Major Genre**, summing the **Profit** for each combination to create **Genre_Profit**\n- Merge the **Total_Director_Profit** back into the genre breakdown data\n- Sort the results first by **Total_Director_Profit** (highest to lowest), then by **Genre_Profit** (highest to lowest) within each director", "concepts": [{"explanation": "The financial return of a movie, calculated as \\( \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\). This represents the net revenue after accounting for production costs.", "field": "Profit"}, {"explanation": "The cumulative profit generated by all movies directed by a specific director. This metric aggregates the Profit across all films in their portfolio to measure overall financial success.", "field": "Total_Director_Profit"}, {"explanation": "The total profit generated by a director within a specific Major Genre. This breaks down a director's Total_Director_Profit by genre category, showing which genres contribute most to their financial success.", "field": "Genre_Profit"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., nan, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 7166365.0, 33619971.0, 140689412.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 15000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.5, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., nan, nan, 212985.0, 411088.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Calculate profit for each movie\n df = df_movies.copy()\n df['Profit'] = df['Worldwide Gross'] - df['Production Budget']\n \n # Remove rows with missing Director, Profit, or Major Genre values\n df = df.dropna(subset=['Director', 'Profit', 'Major Genre'])\n \n # Calculate total profit per director\n director_profit = df.groupby('Director')['Profit'].sum().reset_index()\n director_profit.columns = ['Director', 'Total_Director_Profit']\n \n # Get top 20 directors by total profit\n top_20_directors = director_profit.nlargest(20, 'Total_Director_Profit')['Director'].tolist()\n \n # Filter movies by top 20 directors\n df_filtered = df[df['Director'].isin(top_20_directors)].copy()\n \n # Aggregate profit by Director and Major Genre\n genre_breakdown = df_filtered.groupby(['Director', 'Major Genre'])['Profit'].sum().reset_index()\n genre_breakdown.columns = ['Director', 'Major Genre', 'Genre_Profit']\n \n # Add total director profit to each row\n genre_breakdown = genre_breakdown.merge(director_profit, on='Director', how='left')\n \n # Sort by total director profit (descending) and then by genre profit (descending)\n transformed_df = genre_breakdown.sort_values(['Total_Director_Profit', 'Genre_Profit'], ascending=[False, False])\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Calculate **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Remove movies with missing **Director**, **Profit**, or **Major Genre** information\n- Aggregate the **Profit** for each **Director** to calculate their **Total_Director_Profit**\n- Identify the **top 20 directors** based on their **Total_Director_Profit**\n- Filter the dataset to include only movies made by these **top 20 directors**\n- Group the filtered movies by **Director** and **Major Genre**, summing the **Profit** for each combination to create **Genre_Profit**\n- Merge the **Total_Director_Profit** back into the genre breakdown data\n- Sort the results first by **Total_Director_Profit** (highest to lowest), then by **Genre_Profit** (highest to lowest) within each director\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"The financial return of a movie, calculated as \\\\( \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\). This represents the net revenue after accounting for production costs.\"\n },\n {\n \"field\": \"Total_Director_Profit\",\n \"explanation\": \"The cumulative profit generated by all movies directed by a specific director. This metric aggregates the Profit across all films in their portfolio to measure overall financial success.\"\n },\n {\n \"field\": \"Genre_Profit\",\n \"explanation\": \"The total profit generated by a director within a specific Major Genre. This breaks down a director's Total_Director_Profit by genre category, showing which genres contribute most to their financial success.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-456490", "displayId": "movie-ratings", "names": ["IMDB Rating", "Production Budget", "Rotten Tomatoes Rating", "Title"], "rows": [{"IMDB Rating": 6.1, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "The Land Girls"}, {"IMDB Rating": 6.9, "Production Budget": 300000, "Rotten Tomatoes Rating": null, "Title": "First Love, Last Rites"}, {"IMDB Rating": 6.8, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "I Married a Strange Person"}, {"IMDB Rating": null, "Production Budget": 300000, "Rotten Tomatoes Rating": 13, "Title": "Let's Talk About Sex"}, {"IMDB Rating": 3.4, "Production Budget": 1000000, "Rotten Tomatoes Rating": 62, "Title": "Slam"}, {"IMDB Rating": 7.7, "Production Budget": 6000, "Rotten Tomatoes Rating": null, "Title": "Following"}, {"IMDB Rating": 3.8, "Production Budget": 1600000, "Rotten Tomatoes Rating": null, "Title": "Foolish"}, {"IMDB Rating": 5.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 25, "Title": "Pirates"}, {"IMDB Rating": 7, "Production Budget": 6000000, "Rotten Tomatoes Rating": 86, "Title": "Duel in the Sun"}, {"IMDB Rating": 7, "Production Budget": 1000000, "Rotten Tomatoes Rating": 81, "Title": "Tom Jones"}, {"IMDB Rating": 7.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": 84, "Title": "Oliver!"}, {"IMDB Rating": 8.4, "Production Budget": 2000000, "Rotten Tomatoes Rating": 97, "Title": "To Kill A Mockingbird"}, {"IMDB Rating": 6.8, "Production Budget": 100000, "Rotten Tomatoes Rating": 87, "Title": "Hollywood Shuffle"}, {"IMDB Rating": 7, "Production Budget": 5200000, "Rotten Tomatoes Rating": null, "Title": "Wilson"}, {"IMDB Rating": 6.1, "Production Budget": 22000000, "Rotten Tomatoes Rating": null, "Title": "Darling Lili"}, {"IMDB Rating": 2.5, "Production Budget": 13500000, "Rotten Tomatoes Rating": 90, "Title": "The Ten Commandments"}, {"IMDB Rating": 8.9, "Production Budget": 340000, "Rotten Tomatoes Rating": null, "Title": "12 Angry Men"}, {"IMDB Rating": 8.1, "Production Budget": 29000000, "Rotten Tomatoes Rating": null, "Title": "Twelve Monkeys"}, {"IMDB Rating": 7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 57, "Title": 1776}, {"IMDB Rating": 5.6, "Production Budget": 32000000, "Rotten Tomatoes Rating": 33, "Title": 1941}, {"IMDB Rating": 6.3, "Production Budget": 1900000, "Rotten Tomatoes Rating": null, "Title": "Chacun sa nuit"}, {"IMDB Rating": 8.4, "Production Budget": 10500000, "Rotten Tomatoes Rating": 96, "Title": "2001: A Space Odyssey"}, {"IMDB Rating": null, "Production Budget": 5000000, "Rotten Tomatoes Rating": 92, "Title": "20,000 Leagues Under the Sea"}, {"IMDB Rating": 6.9, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "24 7: Twenty Four Seven"}, {"IMDB Rating": 7.1, "Production Budget": 500000, "Rotten Tomatoes Rating": 77, "Title": "Twin Falls Idaho"}, {"IMDB Rating": 5.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "3 Men and a Baby"}, {"IMDB Rating": 3.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 17, "Title": "3 Ninjas Kick Back"}, {"IMDB Rating": 6, "Production Budget": 1500000, "Rotten Tomatoes Rating": null, "Title": "Forty Shades of Blue"}, {"IMDB Rating": 7.7, "Production Budget": 439000, "Rotten Tomatoes Rating": 95, "Title": "42nd Street"}, {"IMDB Rating": 6.4, "Production Budget": 4000000, "Rotten Tomatoes Rating": 14, "Title": "Four Rooms"}, {"IMDB Rating": 7, "Production Budget": 6500000, "Rotten Tomatoes Rating": 71, "Title": "The Four Seasons"}, {"IMDB Rating": 7.1, "Production Budget": 4500000, "Rotten Tomatoes Rating": 96, "Title": "Four Weddings and a Funeral"}, {"IMDB Rating": 7.4, "Production Budget": 350000, "Rotten Tomatoes Rating": 97, "Title": "51 Birch Street"}, {"IMDB Rating": 6.8, "Production Budget": 17000000, "Rotten Tomatoes Rating": 57, "Title": "55 Days at Peking"}, {"IMDB Rating": 5.4, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Nine 1/2 Weeks"}, {"IMDB Rating": 4.9, "Production Budget": 113500000, "Rotten Tomatoes Rating": null, "Title": "AstÈrix aux Jeux Olympiques"}, {"IMDB Rating": 7.6, "Production Budget": 70000000, "Rotten Tomatoes Rating": 88, "Title": "The Abyss"}, {"IMDB Rating": 4.6, "Production Budget": 7000000, "Rotten Tomatoes Rating": 10, "Title": "Action Jackson"}, {"IMDB Rating": 6.6, "Production Budget": 12000000, "Rotten Tomatoes Rating": 49, "Title": "Ace Ventura: Pet Detective"}, {"IMDB Rating": 5.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Ace Ventura: When Nature Calls"}, {"IMDB Rating": null, "Production Budget": 5000000, "Rotten Tomatoes Rating": 31, "Title": "April Fool's Day"}, {"IMDB Rating": 5.7, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Among Giants"}, {"IMDB Rating": 7.1, "Production Budget": 3768785, "Rotten Tomatoes Rating": 100, "Title": "Annie Get Your Gun"}, {"IMDB Rating": 6.7, "Production Budget": 3000000, "Rotten Tomatoes Rating": 20, "Title": "Alice in Wonderland"}, {"IMDB Rating": 7.3, "Production Budget": 24000000, "Rotten Tomatoes Rating": null, "Title": "The Princess and the Cobbler"}, {"IMDB Rating": 5.9, "Production Budget": 12000000, "Rotten Tomatoes Rating": 54, "Title": "The Alamo"}, {"IMDB Rating": 3.2, "Production Budget": 32000000, "Rotten Tomatoes Rating": 71, "Title": "Alive"}, {"IMDB Rating": 7.4, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "Amen"}, {"IMDB Rating": 7.6, "Production Budget": 777000, "Rotten Tomatoes Rating": 97, "Title": "American Graffiti"}, {"IMDB Rating": 3.7, "Production Budget": 350000, "Rotten Tomatoes Rating": null, "Title": "American Ninja 2: The Confrontation"}, {"IMDB Rating": 6.8, "Production Budget": 62000000, "Rotten Tomatoes Rating": 90, "Title": "The American President"}, {"IMDB Rating": 8.2, "Production Budget": 4000000, "Rotten Tomatoes Rating": 98, "Title": "Annie Hall"}, {"IMDB Rating": 6.1, "Production Budget": 2500000, "Rotten Tomatoes Rating": null, "Title": "Anatomie"}, {"IMDB Rating": 5.8, "Production Budget": 6500000, "Rotten Tomatoes Rating": 62, "Title": "The Adventures of Huck Finn"}, {"IMDB Rating": 8.4, "Production Budget": 3000000, "Rotten Tomatoes Rating": 91, "Title": "The Apartment"}, {"IMDB Rating": 8.6, "Production Budget": 31500000, "Rotten Tomatoes Rating": 98, "Title": "Apocalypse Now"}, {"IMDB Rating": 6.2, "Production Budget": 31000000, "Rotten Tomatoes Rating": 85, "Title": "Arachnophobia"}, {"IMDB Rating": 6.4, "Production Budget": 16500000, "Rotten Tomatoes Rating": null, "Title": "Arn - Tempelriddaren"}, {"IMDB Rating": 5.1, "Production Budget": 600000, "Rotten Tomatoes Rating": null, "Title": "Arnolds Park"}, {"IMDB Rating": 5.6, "Production Budget": 150000, "Rotten Tomatoes Rating": null, "Title": "Sweet Sweetback's Baad Asssss Song"}, {"IMDB Rating": 4.4, "Production Budget": 989000, "Rotten Tomatoes Rating": 17, "Title": "And Then Came Love"}, {"IMDB Rating": 5.6, "Production Budget": 6000000, "Rotten Tomatoes Rating": 73, "Title": "Around the World in 80 Days"}, {"IMDB Rating": 5.7, "Production Budget": 9000000, "Rotten Tomatoes Rating": 74, "Title": "Barbarella"}, {"IMDB Rating": 8.1, "Production Budget": 11000000, "Rotten Tomatoes Rating": 94, "Title": "Barry Lyndon"}, {"IMDB Rating": 5.4, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Barbarians, The"}, {"IMDB Rating": 7.3, "Production Budget": 30000000, "Rotten Tomatoes Rating": 98, "Title": "Babe"}, {"IMDB Rating": 5, "Production Budget": 50000000, "Rotten Tomatoes Rating": 21, "Title": "Baby's Day Out"}, {"IMDB Rating": 7.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "Bound by Honor"}, {"IMDB Rating": 6.9, "Production Budget": 8000000, "Rotten Tomatoes Rating": 67, "Title": "Bon Cop, Bad Cop"}, {"IMDB Rating": 8.4, "Production Budget": 19000000, "Rotten Tomatoes Rating": 96, "Title": "Back to the Future"}, {"IMDB Rating": 7.5, "Production Budget": 40000000, "Rotten Tomatoes Rating": 64, "Title": "Back to the Future Part II"}, {"IMDB Rating": 7.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 71, "Title": "Back to the Future Part III"}, {"IMDB Rating": 8.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": 90, "Title": "Butch Cassidy and the Sundance Kid"}, {"IMDB Rating": 6.6, "Production Budget": 23000000, "Rotten Tomatoes Rating": 39, "Title": "Bad Boys"}, {"IMDB Rating": 6.4, "Production Budget": 10000000, "Rotten Tomatoes Rating": 84, "Title": "Body Double"}, {"IMDB Rating": null, "Production Budget": 210000, "Rotten Tomatoes Rating": 90, "Title": "The Beast from 20,000 Fathoms"}, {"IMDB Rating": 3.3, "Production Budget": 6000000, "Rotten Tomatoes Rating": 17, "Title": "Beastmaster 2: Through the Portal of Time"}, {"IMDB Rating": 5.7, "Production Budget": 5000000, "Rotten Tomatoes Rating": 50, "Title": "The Beastmaster"}, {"IMDB Rating": 8.2, "Production Budget": 3900000, "Rotten Tomatoes Rating": null, "Title": "Ben-Hur"}, {"IMDB Rating": 8.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": 91, "Title": "Ben-Hur"}, {"IMDB Rating": 5.8, "Production Budget": 500000, "Rotten Tomatoes Rating": 83, "Title": "Benji"}, {"IMDB Rating": 8, "Production Budget": 2500000, "Rotten Tomatoes Rating": 100, "Title": "Before Sunrise"}, {"IMDB Rating": 3.4, "Production Budget": 20000000, "Rotten Tomatoes Rating": 93, "Title": "Beauty and the Beast"}, {"IMDB Rating": 8.2, "Production Budget": 2100000, "Rotten Tomatoes Rating": 97, "Title": "The Best Years of Our Lives"}, {"IMDB Rating": 3.2, "Production Budget": 3000000, "Rotten Tomatoes Rating": 23, "Title": "My Big Fat Independent Movie"}, {"IMDB Rating": 5, "Production Budget": 1800000, "Rotten Tomatoes Rating": 38, "Title": "Battle for the Planet of the Apes"}, {"IMDB Rating": 4.8, "Production Budget": 32000000, "Rotten Tomatoes Rating": 40, "Title": "Bogus"}, {"IMDB Rating": 7.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 83, "Title": "Beverly Hills Cop"}, {"IMDB Rating": 6.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 46, "Title": "Beverly Hills Cop II"}, {"IMDB Rating": 5, "Production Budget": 50000000, "Rotten Tomatoes Rating": 10, "Title": "Beverly Hills Cop III"}, {"IMDB Rating": 5.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 42, "Title": "The Black Hole"}, {"IMDB Rating": 6.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Bathory"}, {"IMDB Rating": 7.2, "Production Budget": 18000000, "Rotten Tomatoes Rating": 96, "Title": "Big"}, {"IMDB Rating": 8.4, "Production Budget": 245000, "Rotten Tomatoes Rating": 100, "Title": "The Big Parade"}, {"IMDB Rating": 7.8, "Production Budget": 6500000, "Rotten Tomatoes Rating": 98, "Title": "Boyz n the Hood"}, {"IMDB Rating": 4.3, "Production Budget": 11000000, "Rotten Tomatoes Rating": null, "Title": "Return to the Blue Lagoon"}, {"IMDB Rating": 6.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 61, "Title": "Bright Lights, Big City"}, {"IMDB Rating": 4.9, "Production Budget": 1200000, "Rotten Tomatoes Rating": null, "Title": "The Blue Bird"}, {"IMDB Rating": 6.2, "Production Budget": 10400000, "Rotten Tomatoes Rating": 44, "Title": "The Blue Butterfly"}, {"IMDB Rating": 8.3, "Production Budget": 28000000, "Rotten Tomatoes Rating": 92, "Title": "Blade Runner"}, {"IMDB Rating": 6.2, "Production Budget": 1500000, "Rotten Tomatoes Rating": null, "Title": "Bloodsport"}, {"IMDB Rating": 7.9, "Production Budget": 27000000, "Rotten Tomatoes Rating": 84, "Title": "The Blues Brothers"}, {"IMDB Rating": 7.1, "Production Budget": 18000000, "Rotten Tomatoes Rating": 89, "Title": "Blow Out"}, {"IMDB Rating": 7.3, "Production Budget": 5500000, "Rotten Tomatoes Rating": null, "Title": "De battre mon coeur s'est arrÍtÈ"}, {"IMDB Rating": 6.7, "Production Budget": 379000, "Rotten Tomatoes Rating": 38, "Title": "The Broadway Melody"}, {"IMDB Rating": 7.1, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Boom Town"}, {"IMDB Rating": 7.4, "Production Budget": 4500000, "Rotten Tomatoes Rating": 88, "Title": "Bound"}, {"IMDB Rating": 6.3, "Production Budget": 10000, "Rotten Tomatoes Rating": null, "Title": "Bang"}, {"IMDB Rating": 7.1, "Production Budget": 2000000, "Rotten Tomatoes Rating": 89, "Title": "Bananas"}, {"IMDB Rating": 5.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 58, "Title": "Bill & Ted's Bogus Journey"}, {"IMDB Rating": 7.1, "Production Budget": 110000, "Rotten Tomatoes Rating": 100, "Title": "The Birth of a Nation"}, {"IMDB Rating": 7.3, "Production Budget": 3716946, "Rotten Tomatoes Rating": 92, "Title": "The Ballad of Cable Hogue"}, {"IMDB Rating": 6.2, "Production Budget": 7700000, "Rotten Tomatoes Rating": null, "Title": "The Blood of Heroes"}, {"IMDB Rating": 7.6, "Production Budget": 120000, "Rotten Tomatoes Rating": 71, "Title": "The Blood of My Brother: A Story of Death in Iraq"}, {"IMDB Rating": 5.9, "Production Budget": 42000000, "Rotten Tomatoes Rating": 37, "Title": "Boomerang"}, {"IMDB Rating": 8.4, "Production Budget": 3000000, "Rotten Tomatoes Rating": 95, "Title": "The Bridge on the River Kwai"}, {"IMDB Rating": 7.2, "Production Budget": 14000000, "Rotten Tomatoes Rating": 89, "Title": "Born on the Fourth of July"}, {"IMDB Rating": 6.7, "Production Budget": 3000000, "Rotten Tomatoes Rating": 69, "Title": "Basquiat"}, {"IMDB Rating": 4.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 57, "Title": "Black Rain"}, {"IMDB Rating": 7.2, "Production Budget": 5000000, "Rotten Tomatoes Rating": 79, "Title": "Bottle Rocket"}, {"IMDB Rating": 7.6, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Braindead"}, {"IMDB Rating": 7.2, "Production Budget": 22000000, "Rotten Tomatoes Rating": 90, "Title": "The Bridges of Madison County"}, {"IMDB Rating": 6.4, "Production Budget": 25000, "Rotten Tomatoes Rating": 91, "Title": "The Brothers McMullen"}, {"IMDB Rating": 6.4, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Dracula"}, {"IMDB Rating": 5.8, "Production Budget": 65000000, "Rotten Tomatoes Rating": 55, "Title": "Broken Arrow"}, {"IMDB Rating": 6.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 64, "Title": "Brainstorm"}, {"IMDB Rating": 8.4, "Production Budget": 72000000, "Rotten Tomatoes Rating": 77, "Title": "Braveheart"}, {"IMDB Rating": 4.4, "Production Budget": 42000000, "Rotten Tomatoes Rating": null, "Title": "Les BronzÈs 3: amis pour la vie"}, {"IMDB Rating": 8, "Production Budget": 15000000, "Rotten Tomatoes Rating": 98, "Title": "Brazil"}, {"IMDB Rating": 7.8, "Production Budget": 2600000, "Rotten Tomatoes Rating": 89, "Title": "Blazing Saddles"}, {"IMDB Rating": 6.3, "Production Budget": 1300000, "Rotten Tomatoes Rating": null, "Title": "The Basket"}, {"IMDB Rating": 6.2, "Production Budget": 2361000, "Rotten Tomatoes Rating": null, "Title": "Bathing Beauty"}, {"IMDB Rating": 6.7, "Production Budget": 10000000, "Rotten Tomatoes Rating": 81, "Title": "Bill & Ted's Excellent Adventure"}, {"IMDB Rating": 7.3, "Production Budget": 26000000, "Rotten Tomatoes Rating": 67, "Title": "A Bridge Too Far"}, {"IMDB Rating": 7.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Beetle Juice"}, {"IMDB Rating": 6.9, "Production Budget": 80000000, "Rotten Tomatoes Rating": 78, "Title": "Batman Returns"}, {"IMDB Rating": 5.4, "Production Budget": 100000000, "Rotten Tomatoes Rating": 43, "Title": "Batman Forever"}, {"IMDB Rating": 7.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 71, "Title": "Batman"}, {"IMDB Rating": 5.3, "Production Budget": 7000000, "Rotten Tomatoes Rating": 32, "Title": "Buffy the Vampire Slayer"}, {"IMDB Rating": 7, "Production Budget": 16000000, "Rotten Tomatoes Rating": null, "Title": "Bienvenue chez les Ch'tis"}, {"IMDB Rating": 5.7, "Production Budget": 1000000, "Rotten Tomatoes Rating": 68, "Title": "Beyond the Valley of the Dolls"}, {"IMDB Rating": 6.4, "Production Budget": 600000, "Rotten Tomatoes Rating": null, "Title": "Broken Vessels"}, {"IMDB Rating": 7, "Production Budget": 12000000, "Rotten Tomatoes Rating": 65, "Title": "The Boys from Brazil"}, {"IMDB Rating": 7, "Production Budget": 200000, "Rotten Tomatoes Rating": null, "Title": "The Business of Fancy Dancing"}, {"IMDB Rating": 7.3, "Production Budget": 6000000, "Rotten Tomatoes Rating": 75, "Title": "Caddyshack"}, {"IMDB Rating": 7.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 76, "Title": "Cape Fear"}, {"IMDB Rating": 6.8, "Production Budget": 62000000, "Rotten Tomatoes Rating": 78, "Title": "Clear and Present Danger"}, {"IMDB Rating": 7.4, "Production Budget": 1800000, "Rotten Tomatoes Rating": 90, "Title": "Carrie"}, {"IMDB Rating": 8, "Production Budget": 12000000, "Rotten Tomatoes Rating": 30, "Title": "Casino Royale"}, {"IMDB Rating": 6, "Production Budget": 4600000, "Rotten Tomatoes Rating": null, "Title": "Camping Sauvage"}, {"IMDB Rating": 6.3, "Production Budget": 48000000, "Rotten Tomatoes Rating": 74, "Title": "The Cotton Club"}, {"IMDB Rating": 7.1, "Production Budget": 600000, "Rotten Tomatoes Rating": 60, "Title": "Crop Circles: Quest for Truth"}, {"IMDB Rating": 7.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 95, "Title": "Close Encounters of the Third Kind"}, {"IMDB Rating": 5.8, "Production Budget": 47000000, "Rotten Tomatoes Rating": 52, "Title": "The Cable Guy"}, {"IMDB Rating": 4.6, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Chocolate: Deep Dark Secrets"}, {"IMDB Rating": 6.3, "Production Budget": 9000000, "Rotten Tomatoes Rating": 70, "Title": "Child's Play"}, {"IMDB Rating": 5.1, "Production Budget": 13000000, "Rotten Tomatoes Rating": 38, "Title": "Child's Play 2"}, {"IMDB Rating": 5.2, "Production Budget": 55000000, "Rotten Tomatoes Rating": 13, "Title": "Chain Reaction"}, {"IMDB Rating": 5.8, "Production Budget": 950000, "Rotten Tomatoes Rating": null, "Title": "Charly"}, {"IMDB Rating": 7.3, "Production Budget": 5500000, "Rotten Tomatoes Rating": 86, "Title": "Chariots of Fire"}, {"IMDB Rating": 8, "Production Budget": 3250000, "Rotten Tomatoes Rating": 88, "Title": "A Christmas Story"}, {"IMDB Rating": 8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 100, "Title": "Cat on a Hot Tin Roof"}, {"IMDB Rating": 5, "Production Budget": 1250000, "Rotten Tomatoes Rating": null, "Title": "C.H.U.D."}, {"IMDB Rating": 6.5, "Production Budget": 14000000, "Rotten Tomatoes Rating": 75, "Title": "Crooklyn"}, {"IMDB Rating": 8.1, "Production Budget": 1300000, "Rotten Tomatoes Rating": null, "Title": "Festen"}, {"IMDB Rating": 6.8, "Production Budget": 36000000, "Rotten Tomatoes Rating": 40, "Title": "Cleopatra"}, {"IMDB Rating": 6.2, "Production Budget": 65000000, "Rotten Tomatoes Rating": 82, "Title": "Cliffhanger"}, {"IMDB Rating": 5.1, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "The Californians"}, {"IMDB Rating": 6.5, "Production Budget": 45000000, "Rotten Tomatoes Rating": 80, "Title": "The Client"}, {"IMDB Rating": 3.4, "Production Budget": 160000, "Rotten Tomatoes Rating": null, "Title": "The Calling"}, {"IMDB Rating": 6.7, "Production Budget": 13700000, "Rotten Tomatoes Rating": 83, "Title": "Clueless"}, {"IMDB Rating": 7.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 88, "Title": "The Color Purple"}, {"IMDB Rating": 7.9, "Production Budget": 27000, "Rotten Tomatoes Rating": 88, "Title": "Clerks"}, {"IMDB Rating": 8, "Production Budget": 2900000, "Rotten Tomatoes Rating": null, "Title": "Central do Brasil"}, {"IMDB Rating": 5.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 65, "Title": "Clash of the Titans"}, {"IMDB Rating": 5.9, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Clockwatchers"}, {"IMDB Rating": 4.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": 71, "Title": "Commando"}, {"IMDB Rating": 6.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 91, "Title": "The Color of Money"}, {"IMDB Rating": 5.1, "Production Budget": 2900000, "Rotten Tomatoes Rating": 92, "Title": "Cinderella"}, {"IMDB Rating": 4.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 21, "Title": "Congo"}, {"IMDB Rating": 6.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 76, "Title": "Conan the Barbarian"}, {"IMDB Rating": 5.4, "Production Budget": 18000000, "Rotten Tomatoes Rating": 29, "Title": "Conan the Destroyer"}, {"IMDB Rating": 6.3, "Production Budget": 3250000, "Rotten Tomatoes Rating": null, "Title": "Class of 1984"}, {"IMDB Rating": 4.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 13, "Title": "The Clan of the Cave Bear"}, {"IMDB Rating": 8, "Production Budget": 180000, "Rotten Tomatoes Rating": null, "Title": "Bacheha-Ye aseman"}, {"IMDB Rating": 7.3, "Production Budget": 3000000, "Rotten Tomatoes Rating": 81, "Title": "Coming Home"}, {"IMDB Rating": 7.6, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Nanjing! Nanjing!"}, {"IMDB Rating": 6.5, "Production Budget": 14000000, "Rotten Tomatoes Rating": 73, "Title": "Cool Runnings"}, {"IMDB Rating": 5.8, "Production Budget": 1700000, "Rotten Tomatoes Rating": 44, "Title": "Conquest of the Planet of the Apes"}, {"IMDB Rating": 7.4, "Production Budget": 10000, "Rotten Tomatoes Rating": null, "Title": "Cure"}, {"IMDB Rating": 6.5, "Production Budget": 5000000, "Rotten Tomatoes Rating": 88, "Title": "Crocodile Dundee"}, {"IMDB Rating": 7.3, "Production Budget": 10000, "Rotten Tomatoes Rating": null, "Title": "Dayereh"}, {"IMDB Rating": 7.8, "Production Budget": 4500000, "Rotten Tomatoes Rating": null, "Title": "Karakter"}, {"IMDB Rating": 6.5, "Production Budget": 8000000, "Rotten Tomatoes Rating": 67, "Title": "Creepshow"}, {"IMDB Rating": 5.4, "Production Budget": 3500000, "Rotten Tomatoes Rating": 26, "Title": "Creepshow 2"}, {"IMDB Rating": 7.3, "Production Budget": 4000000, "Rotten Tomatoes Rating": 100, "Title": "The Crying Game"}, {"IMDB Rating": 7.2, "Production Budget": 55000000, "Rotten Tomatoes Rating": 86, "Title": "Crimson Tide"}, {"IMDB Rating": 5.8, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "Caravans"}, {"IMDB Rating": 7.6, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Fengkuang de Shitou"}, {"IMDB Rating": 8.8, "Production Budget": 950000, "Rotten Tomatoes Rating": 97, "Title": "Casablanca"}, {"IMDB Rating": 8.1, "Production Budget": 52000000, "Rotten Tomatoes Rating": 81, "Title": "Casino"}, {"IMDB Rating": 5.7, "Production Budget": 55000000, "Rotten Tomatoes Rating": 41, "Title": "Casper"}, {"IMDB Rating": 3.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Can't Stop the Music"}, {"IMDB Rating": 7.1, "Production Budget": 18000000, "Rotten Tomatoes Rating": 87, "Title": "Catch-22"}, {"IMDB Rating": 6.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 55, "Title": "City Hall"}, {"IMDB Rating": 5.3, "Production Budget": 92000000, "Rotten Tomatoes Rating": 45, "Title": "Cutthroat Island"}, {"IMDB Rating": 6.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "La femme de chambre du Titanic"}, {"IMDB Rating": 5.9, "Production Budget": 134000, "Rotten Tomatoes Rating": 91, "Title": "Cat People"}, {"IMDB Rating": 6.6, "Production Budget": 46000000, "Rotten Tomatoes Rating": 85, "Title": "Courage Under Fire"}, {"IMDB Rating": 8.8, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "C'era una volta il West"}, {"IMDB Rating": 8.1, "Production Budget": 1600000, "Rotten Tomatoes Rating": 98, "Title": "The Conversation"}, {"IMDB Rating": 6, "Production Budget": 7000, "Rotten Tomatoes Rating": null, "Title": "Cavite"}, {"IMDB Rating": 6.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 75, "Title": "Copycat"}, {"IMDB Rating": 5.3, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Dark Angel"}, {"IMDB Rating": 4.3, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Boot, Das"}, {"IMDB Rating": 7, "Production Budget": 7000000, "Rotten Tomatoes Rating": 61, "Title": "Desperado"}, {"IMDB Rating": 7.2, "Production Budget": 16000000, "Rotten Tomatoes Rating": null, "Title": "Dumb & Dumber"}, {"IMDB Rating": 6.7, "Production Budget": 7200000, "Rotten Tomatoes Rating": 67, "Title": "Diamonds Are Forever"}, {"IMDB Rating": 5.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "The Dark Half"}, {"IMDB Rating": 6.3, "Production Budget": 400000, "Rotten Tomatoes Rating": null, "Title": "The Dark Hours"}, {"IMDB Rating": 5.6, "Production Budget": 115000000, "Rotten Tomatoes Rating": 28, "Title": "Dante's Peak"}, {"IMDB Rating": 5.4, "Production Budget": 80000000, "Rotten Tomatoes Rating": 22, "Title": "Daylight"}, {"IMDB Rating": 5.9, "Production Budget": 47000000, "Rotten Tomatoes Rating": 65, "Title": "Dick Tracy"}, {"IMDB Rating": 4.4, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Decoys"}, {"IMDB Rating": 7.4, "Production Budget": 1500000, "Rotten Tomatoes Rating": null, "Title": "Dawn of the Dead"}, {"IMDB Rating": 6.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 59, "Title": "The Addams Family"}, {"IMDB Rating": 6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 53, "Title": "Death Becomes Her"}, {"IMDB Rating": 3.8, "Production Budget": 1300000, "Rotten Tomatoes Rating": null, "Title": "Def-Con 4"}, {"IMDB Rating": 7.8, "Production Budget": 16400000, "Rotten Tomatoes Rating": 86, "Title": "Dead Poets' Society"}, {"IMDB Rating": 5.5, "Production Budget": 1200000, "Rotten Tomatoes Rating": 94, "Title": "The Day the Earth Stood Still"}, {"IMDB Rating": 5.2, "Production Budget": 25000, "Rotten Tomatoes Rating": null, "Title": "Deep Throat"}, {"IMDB Rating": 7.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "The Dead Zone"}, {"IMDB Rating": 7, "Production Budget": 70000000, "Rotten Tomatoes Rating": null, "Title": "Die Hard 2"}, {"IMDB Rating": 7.4, "Production Budget": 90000000, "Rotten Tomatoes Rating": null, "Title": "Die Hard: With a Vengeance"}, {"IMDB Rating": 6.2, "Production Budget": 57000000, "Rotten Tomatoes Rating": 50, "Title": "Dragonheart"}, {"IMDB Rating": 7.3, "Production Budget": 28000000, "Rotten Tomatoes Rating": 94, "Title": "Die Hard"}, {"IMDB Rating": 7.1, "Production Budget": 5000000, "Rotten Tomatoes Rating": 96, "Title": "Diner"}, {"IMDB Rating": 5, "Production Budget": 1600000, "Rotten Tomatoes Rating": null, "Title": "Dil Jo Bhi Kahey..."}, {"IMDB Rating": 6.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 73, "Title": "Don Juan DeMarco"}, {"IMDB Rating": 6.4, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Tales from the Crypt: Demon Knight"}, {"IMDB Rating": 4.7, "Production Budget": 17000000, "Rotten Tomatoes Rating": null, "Title": "Damnation Alley"}, {"IMDB Rating": 7.6, "Production Budget": 11000000, "Rotten Tomatoes Rating": 94, "Title": "Dead Man Walking"}, {"IMDB Rating": 8, "Production Budget": 19000000, "Rotten Tomatoes Rating": 76, "Title": "Dances with Wolves"}, {"IMDB Rating": 7.7, "Production Budget": 14000000, "Rotten Tomatoes Rating": 93, "Title": "Dangerous Liaisons"}, {"IMDB Rating": 6.6, "Production Budget": 2686000, "Rotten Tomatoes Rating": 60, "Title": "Donovan's Reef"}, {"IMDB Rating": 5.9, "Production Budget": 9000000, "Rotten Tomatoes Rating": null, "Title": "Due occhi diabolici"}, {"IMDB Rating": 4.7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 8, "Title": "Double Impact"}, {"IMDB Rating": 7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 57, "Title": "The Doors"}, {"IMDB Rating": 4.5, "Production Budget": 3500000, "Rotten Tomatoes Rating": 78, "Title": "Day of the Dead"}, {"IMDB Rating": 5.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": 40, "Title": "Days of Thunder"}, {"IMDB Rating": 7, "Production Budget": 1100000, "Rotten Tomatoes Rating": null, "Title": "Dracula: Pages from a Virgin's Diary"}, {"IMDB Rating": 5.8, "Production Budget": 170000, "Rotten Tomatoes Rating": null, "Title": "Dolphin"}, {"IMDB Rating": 6.1, "Production Budget": 300000, "Rotten Tomatoes Rating": 84, "Title": "Death Race 2000"}, {"IMDB Rating": 7.6, "Production Budget": 2650000, "Rotten Tomatoes Rating": null, "Title": "The Dress"}, {"IMDB Rating": 8.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "The Deer Hunter"}, {"IMDB Rating": 6.8, "Production Budget": 18000000, "Rotten Tomatoes Rating": 82, "Title": "Dragonslayer"}, {"IMDB Rating": 7.5, "Production Budget": 7500000, "Rotten Tomatoes Rating": 78, "Title": "Driving Miss Daisy"}, {"IMDB Rating": 7.1, "Production Budget": 6500000, "Rotten Tomatoes Rating": 84, "Title": "Dressed to Kill"}, {"IMDB Rating": 7.9, "Production Budget": 6000000, "Rotten Tomatoes Rating": 98, "Title": "Do the Right Thing"}, {"IMDB Rating": 6.5, "Production Budget": 45000000, "Rotten Tomatoes Rating": 62, "Title": "Dune"}, {"IMDB Rating": 5.8, "Production Budget": 1200000, "Rotten Tomatoes Rating": null, "Title": "Down & Out with the Dolls"}, {"IMDB Rating": 6.6, "Production Budget": 1000000, "Rotten Tomatoes Rating": 58, "Title": "Dream With The Fishes"}, {"IMDB Rating": 8, "Production Budget": 11000000, "Rotten Tomatoes Rating": 84, "Title": "Doctor Zhivago"}, {"IMDB Rating": 7.6, "Production Budget": 375000, "Rotten Tomatoes Rating": null, "Title": "The Evil Dead"}, {"IMDB Rating": 7.9, "Production Budget": 3500000, "Rotten Tomatoes Rating": null, "Title": "Evil Dead II"}, {"IMDB Rating": 7.6, "Production Budget": 11000000, "Rotten Tomatoes Rating": null, "Title": "Army of Darkness"}, {"IMDB Rating": 5.6, "Production Budget": 1800000, "Rotten Tomatoes Rating": 50, "Title": "Ed and his Dead Mother"}, {"IMDB Rating": 8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 91, "Title": "Edward Scissorhands"}, {"IMDB Rating": 8.1, "Production Budget": 18000000, "Rotten Tomatoes Rating": 91, "Title": "Ed Wood"}, {"IMDB Rating": 6.2, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "The Egyptian"}, {"IMDB Rating": 6.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 80, "Title": "Everyone Says I Love You"}, {"IMDB Rating": 8.4, "Production Budget": 5000000, "Rotten Tomatoes Rating": 91, "Title": "The Elephant Man"}, {"IMDB Rating": 6.8, "Production Budget": 5900000, "Rotten Tomatoes Rating": null, "Title": "Emma"}, {"IMDB Rating": 7.1, "Production Budget": 6000000, "Rotten Tomatoes Rating": 82, "Title": "Escape from New York"}, {"IMDB Rating": 5.3, "Production Budget": 50000000, "Rotten Tomatoes Rating": 56, "Title": "Escape from L.A."}, {"IMDB Rating": 6.1, "Production Budget": 2500000, "Rotten Tomatoes Rating": 78, "Title": "Escape from the Planet of the Apes"}, {"IMDB Rating": 5.9, "Production Budget": 100000000, "Rotten Tomatoes Rating": 34, "Title": "Eraser"}, {"IMDB Rating": 7.4, "Production Budget": 100000, "Rotten Tomatoes Rating": 90, "Title": "Eraserhead"}, {"IMDB Rating": 7.9, "Production Budget": 10500000, "Rotten Tomatoes Rating": null, "Title": "ET: The Extra-Terrestrial"}, {"IMDB Rating": 4.7, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "Excessive Force"}, {"IMDB Rating": 3.5, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "Exorcist II: The Heretic"}, {"IMDB Rating": 7.1, "Production Budget": 1500000, "Rotten Tomatoes Rating": 96, "Title": "Exotica"}, {"IMDB Rating": 6, "Production Budget": 5000000, "Rotten Tomatoes Rating": 64, "Title": "Force 10 from Navarone"}, {"IMDB Rating": 6.6, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "A Farewell To Arms"}, {"IMDB Rating": 6.8, "Production Budget": 14000000, "Rotten Tomatoes Rating": 81, "Title": "Fatal Attraction"}, {"IMDB Rating": 6.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 95, "Title": "Family Plot"}, {"IMDB Rating": 5.4, "Production Budget": 400000, "Rotten Tomatoes Rating": null, "Title": "Fabled"}, {"IMDB Rating": 6.7, "Production Budget": 1500000, "Rotten Tomatoes Rating": null, "Title": "Fetching Cody"}, {"IMDB Rating": 7.9, "Production Budget": 2200000, "Rotten Tomatoes Rating": 98, "Title": "The French Connection"}, {"IMDB Rating": 7.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 63, "Title": "From Dusk Till Dawn"}, {"IMDB Rating": 5.6, "Production Budget": 550000, "Rotten Tomatoes Rating": 60, "Title": "Friday the 13th"}, {"IMDB Rating": 5.5, "Production Budget": 2250000, "Rotten Tomatoes Rating": 14, "Title": "Friday the 13th Part 3"}, {"IMDB Rating": 4.6, "Production Budget": 2800000, "Rotten Tomatoes Rating": null, "Title": "Friday the 13th Part VII: The New Blood"}, {"IMDB Rating": 3.9, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Friday the 13th Part VIII: Jason Takes Manhattan"}, {"IMDB Rating": 4.1, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Jason Goes to Hell: The Final Friday"}, {"IMDB Rating": 8.2, "Production Budget": 600000, "Rotten Tomatoes Rating": null, "Title": "Per qualche dollaro in pi˘"}, {"IMDB Rating": 8, "Production Budget": 200000, "Rotten Tomatoes Rating": null, "Title": "Per un pugno di dollari"}, {"IMDB Rating": 6.6, "Production Budget": 19000000, "Rotten Tomatoes Rating": 100, "Title": "The Fall of the Roman Empire"}, {"IMDB Rating": 5.5, "Production Budget": 1250000, "Rotten Tomatoes Rating": 33, "Title": "Friday the 13th Part 2"}, {"IMDB Rating": 5.7, "Production Budget": 13000000, "Rotten Tomatoes Rating": 7, "Title": "Faithful"}, {"IMDB Rating": 6.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 13, "Title": "Fair Game"}, {"IMDB Rating": 7.6, "Production Budget": 33000000, "Rotten Tomatoes Rating": 83, "Title": "A Few Good Men"}, {"IMDB Rating": 7.8, "Production Budget": 44000000, "Rotten Tomatoes Rating": 94, "Title": "The Fugitive"}, {"IMDB Rating": 7.9, "Production Budget": 1650000, "Rotten Tomatoes Rating": 86, "Title": "From Here to Eternity"}, {"IMDB Rating": 6.4, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Shooting Fish"}, {"IMDB Rating": 6.2, "Production Budget": 11000000, "Rotten Tomatoes Rating": null, "Title": "F.I.S.T"}, {"IMDB Rating": 5.6, "Production Budget": 7000000, "Rotten Tomatoes Rating": 29, "Title": "Flashdance"}, {"IMDB Rating": 4.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 14, "Title": "Fled"}, {"IMDB Rating": 6.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 81, "Title": "Flash Gordon"}, {"IMDB Rating": 4.6, "Production Budget": 45000000, "Rotten Tomatoes Rating": 20, "Title": "The Flintstones"}, {"IMDB Rating": 5.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "Flight of the Intruder"}, {"IMDB Rating": 6.4, "Production Budget": 26000000, "Rotten Tomatoes Rating": 52, "Title": "Flatliners"}, {"IMDB Rating": null, "Production Budget": 6000000, "Rotten Tomatoes Rating": 64, "Title": "The Flower of Evil"}, {"IMDB Rating": 6.1, "Production Budget": 30000, "Rotten Tomatoes Rating": null, "Title": "Funny Ha Ha"}, {"IMDB Rating": 6.4, "Production Budget": 12500000, "Rotten Tomatoes Rating": 83, "Title": "The Funeral"}, {"IMDB Rating": 7.8, "Production Budget": 2280000, "Rotten Tomatoes Rating": 98, "Title": "Fantasia"}, {"IMDB Rating": 3.3, "Production Budget": 1000000, "Rotten Tomatoes Rating": 69, "Title": "The Fog"}, {"IMDB Rating": 8.6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 70, "Title": "Forrest Gump"}, {"IMDB Rating": 5.5, "Production Budget": 12000000, "Rotten Tomatoes Rating": 36, "Title": "Fortress"}, {"IMDB Rating": 7.7, "Production Budget": 9000000, "Rotten Tomatoes Rating": 88, "Title": "Fiddler on the Roof"}, {"IMDB Rating": 7.2, "Production Budget": 4000000, "Rotten Tomatoes Rating": 67, "Title": "The Front Page"}, {"IMDB Rating": 7.4, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "First Blood"}, {"IMDB Rating": 7, "Production Budget": 3500000, "Rotten Tomatoes Rating": 77, "Title": "Friday"}, {"IMDB Rating": 6.3, "Production Budget": 2000000, "Rotten Tomatoes Rating": 83, "Title": "Freeze Frame"}, {"IMDB Rating": 5.6, "Production Budget": 21000000, "Rotten Tomatoes Rating": 42, "Title": "Firefox"}, {"IMDB Rating": 8.3, "Production Budget": 7000000, "Rotten Tomatoes Rating": 94, "Title": "Fargo"}, {"IMDB Rating": 5.6, "Production Budget": 75000000, "Rotten Tomatoes Rating": 45, "Title": "First Knight"}, {"IMDB Rating": 7.5, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "From Russia With Love"}, {"IMDB Rating": 5.5, "Production Budget": 42000000, "Rotten Tomatoes Rating": 76, "Title": "The Firm"}, {"IMDB Rating": 7.5, "Production Budget": 3500000, "Rotten Tomatoes Rating": 87, "Title": "Frenzy"}, {"IMDB Rating": 6, "Production Budget": 8200000, "Rotten Tomatoes Rating": 56, "Title": "Footloose"}, {"IMDB Rating": 7.2, "Production Budget": 4500000, "Rotten Tomatoes Rating": 80, "Title": "Fast Times at Ridgemont High"}, {"IMDB Rating": 6.6, "Production Budget": 300000, "Rotten Tomatoes Rating": null, "Title": "Fighting Tommy Riley"}, {"IMDB Rating": 5.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 41, "Title": "The First Wives Club"}, {"IMDB Rating": 6.7, "Production Budget": 7000000, "Rotten Tomatoes Rating": 86, "Title": "Flirting with Disaster"}, {"IMDB Rating": 6.8, "Production Budget": 28000000, "Rotten Tomatoes Rating": 71, "Title": "For Your Eyes Only"}, {"IMDB Rating": 6.5, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Fiza"}, {"IMDB Rating": 6.6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 51, "Title": "The Ghost and the Darkness"}, {"IMDB Rating": 7.7, "Production Budget": 3000000, "Rotten Tomatoes Rating": 86, "Title": "Gallipoli"}, {"IMDB Rating": 5.5, "Production Budget": 50000, "Rotten Tomatoes Rating": null, "Title": "Gabriela"}, {"IMDB Rating": 6.8, "Production Budget": 1200000, "Rotten Tomatoes Rating": null, "Title": "Il buono, il brutto, il cattivo"}, {"IMDB Rating": 3, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "Graduation Day"}, {"IMDB Rating": 9, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "The Godfather: Part II"}, {"IMDB Rating": 7.6, "Production Budget": 54000000, "Rotten Tomatoes Rating": null, "Title": "The Godfather: Part III"}, {"IMDB Rating": 8.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 97, "Title": "Goodfellas"}, {"IMDB Rating": 9.2, "Production Budget": 7000000, "Rotten Tomatoes Rating": 100, "Title": "The Godfather"}, {"IMDB Rating": 6.8, "Production Budget": 300000, "Rotten Tomatoes Rating": 50, "Title": "God's Army"}, {"IMDB Rating": 8.4, "Production Budget": 4000000, "Rotten Tomatoes Rating": 91, "Title": "The Great Escape"}, {"IMDB Rating": 5.2, "Production Budget": 425000, "Rotten Tomatoes Rating": null, "Title": "Gory Gory Hallelujah"}, {"IMDB Rating": 6.9, "Production Budget": 22000000, "Rotten Tomatoes Rating": 81, "Title": "Ghost"}, {"IMDB Rating": 6.8, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Ghostbusters"}, {"IMDB Rating": 4.9, "Production Budget": 12000000, "Rotten Tomatoes Rating": 34, "Title": "Girl 6"}, {"IMDB Rating": 7.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": 80, "Title": "Goldeneye"}, {"IMDB Rating": 4.9, "Production Budget": 45000000, "Rotten Tomatoes Rating": 13, "Title": "The Glimmer Man"}, {"IMDB Rating": 8, "Production Budget": 18000000, "Rotten Tomatoes Rating": 93, "Title": "Glory"}, {"IMDB Rating": 6.1, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "The Gambler"}, {"IMDB Rating": 7.2, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "Good Morning Vietnam"}, {"IMDB Rating": 8.2, "Production Budget": 22000000, "Rotten Tomatoes Rating": 85, "Title": "Gandhi"}, {"IMDB Rating": 6.9, "Production Budget": 2627000, "Rotten Tomatoes Rating": null, "Title": "A Guy Named Joe"}, {"IMDB Rating": 7.4, "Production Budget": 2000000, "Rotten Tomatoes Rating": 83, "Title": "Gentleman's Agreement"}, {"IMDB Rating": 7, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Goodbye Bafana"}, {"IMDB Rating": 6.7, "Production Budget": 2400000, "Rotten Tomatoes Rating": 87, "Title": "Get on the Bus"}, {"IMDB Rating": 5.4, "Production Budget": 12000000, "Rotten Tomatoes Rating": 26, "Title": "The Golden Child"}, {"IMDB Rating": 6.4, "Production Budget": 200000, "Rotten Tomatoes Rating": null, "Title": "Good Dick"}, {"IMDB Rating": 7.9, "Production Budget": 3000000, "Rotten Tomatoes Rating": 96, "Title": "Goldfinger"}, {"IMDB Rating": 8.2, "Production Budget": 14600000, "Rotten Tomatoes Rating": 96, "Title": "Groundhog Day"}, {"IMDB Rating": 7, "Production Budget": 11000000, "Rotten Tomatoes Rating": 78, "Title": "Gremlins"}, {"IMDB Rating": 7.5, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Get Real"}, {"IMDB Rating": 6.1, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "Gremlins 2: The New Batch"}, {"IMDB Rating": 6.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 39, "Title": "The Greatest Story Ever Told"}, {"IMDB Rating": 6.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": 41, "Title": "The Greatest Show on Earth"}, {"IMDB Rating": 6.9, "Production Budget": 6000000, "Rotten Tomatoes Rating": null, "Title": "The First Great Train Robbery"}, {"IMDB Rating": 6.9, "Production Budget": 30250000, "Rotten Tomatoes Rating": 86, "Title": "Get Shorty"}, {"IMDB Rating": 7.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 87, "Title": "Gettysburg"}, {"IMDB Rating": 8.2, "Production Budget": 3900000, "Rotten Tomatoes Rating": 97, "Title": "Gone with the Wind"}, {"IMDB Rating": 6.5, "Production Budget": 3000000, "Rotten Tomatoes Rating": 84, "Title": "Happiness"}, {"IMDB Rating": 5.3, "Production Budget": 23000000, "Rotten Tomatoes Rating": 27, "Title": "Harley Davidson and the Marlboro Man"}, {"IMDB Rating": 6, "Production Budget": 9300000, "Rotten Tomatoes Rating": 60, "Title": "Heavy Metal"}, {"IMDB Rating": 7.9, "Production Budget": 4000000, "Rotten Tomatoes Rating": 90, "Title": "Hell's Angels"}, {"IMDB Rating": 4.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Heartbeeps"}, {"IMDB Rating": 1.5, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "The Helix... Loaded"}, {"IMDB Rating": 6.9, "Production Budget": 1800000, "Rotten Tomatoes Rating": 93, "Title": "Hang 'em High"}, {"IMDB Rating": 7, "Production Budget": 1000000, "Rotten Tomatoes Rating": 63, "Title": "Hellraiser"}, {"IMDB Rating": 6.4, "Production Budget": 42000000, "Rotten Tomatoes Rating": null, "Title": "Hero"}, {"IMDB Rating": 3.8, "Production Budget": 26000000, "Rotten Tomatoes Rating": null, "Title": "Highlander III: The Sorcerer"}, {"IMDB Rating": 7.2, "Production Budget": 16000000, "Rotten Tomatoes Rating": 66, "Title": "Highlander"}, {"IMDB Rating": 7.9, "Production Budget": 1250000, "Rotten Tomatoes Rating": 88, "Title": "How Green Was My Valley"}, {"IMDB Rating": 8.3, "Production Budget": 730000, "Rotten Tomatoes Rating": 95, "Title": "High Noon"}, {"IMDB Rating": 6.5, "Production Budget": 11000000, "Rotten Tomatoes Rating": null, "Title": "History of the World: Part I"}, {"IMDB Rating": 4.4, "Production Budget": 24000000, "Rotten Tomatoes Rating": null, "Title": "Hello, Dolly"}, {"IMDB Rating": 4.9, "Production Budget": 2500000, "Rotten Tomatoes Rating": 27, "Title": "Halloween II"}, {"IMDB Rating": 3.8, "Production Budget": 2500000, "Rotten Tomatoes Rating": null, "Title": "Halloween 3: Season of the Witch"}, {"IMDB Rating": 5.6, "Production Budget": 5000000, "Rotten Tomatoes Rating": 23, "Title": "Halloween 4: The Return of Michael Myers"}, {"IMDB Rating": null, "Production Budget": 6000000, "Rotten Tomatoes Rating": 14, "Title": "Halloween 5: The Revenge of Michael Myers"}, {"IMDB Rating": 4.4, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Halloween: The Curse of Michael Myers"}, {"IMDB Rating": 6, "Production Budget": 325000, "Rotten Tomatoes Rating": 93, "Title": "Halloween"}, {"IMDB Rating": 5.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 21, "Title": "Home Alone 2: Lost in New York"}, {"IMDB Rating": 7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 47, "Title": "Home Alone"}, {"IMDB Rating": 5.3, "Production Budget": 400000, "Rotten Tomatoes Rating": null, "Title": "Home Movies"}, {"IMDB Rating": 3.6, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Hum to Mohabbt Karega"}, {"IMDB Rating": 5.8, "Production Budget": 7500000, "Rotten Tomatoes Rating": 69, "Title": "The Hotel New Hampshire"}, {"IMDB Rating": 7.9, "Production Budget": 9000000, "Rotten Tomatoes Rating": 100, "Title": "Henry V"}, {"IMDB Rating": 4.6, "Production Budget": 10100000, "Rotten Tomatoes Rating": null, "Title": "Housefull"}, {"IMDB Rating": 6.2, "Production Budget": 70000000, "Rotten Tomatoes Rating": 24, "Title": "Hook"}, {"IMDB Rating": 4.3, "Production Budget": 5000000, "Rotten Tomatoes Rating": 25, "Title": "House Party 2"}, {"IMDB Rating": 6, "Production Budget": 28000000, "Rotten Tomatoes Rating": 29, "Title": "Hocus Pocus"}, {"IMDB Rating": 6.5, "Production Budget": 1000000, "Rotten Tomatoes Rating": 60, "Title": "The Howling"}, {"IMDB Rating": 7.6, "Production Budget": 15700000, "Rotten Tomatoes Rating": null, "Title": "High Plains Drifter"}, {"IMDB Rating": 8, "Production Budget": 700000, "Rotten Tomatoes Rating": 98, "Title": "Hoop Dreams"}, {"IMDB Rating": 6.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 58, "Title": "Happy Gilmore"}, {"IMDB Rating": 7.4, "Production Budget": 40000000, "Rotten Tomatoes Rating": 58, "Title": "The Hudsucker Proxy"}, {"IMDB Rating": 7.6, "Production Budget": 560000, "Rotten Tomatoes Rating": 100, "Title": "A Hard Day's Night"}, {"IMDB Rating": 6.1, "Production Budget": 400000, "Rotten Tomatoes Rating": null, "Title": "Heroes"}, {"IMDB Rating": 7.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 95, "Title": "The Hunt for Red October"}, {"IMDB Rating": 7, "Production Budget": 3500000, "Rotten Tomatoes Rating": null, "Title": "Harper"}, {"IMDB Rating": 5.8, "Production Budget": 13000000, "Rotten Tomatoes Rating": 45, "Title": "Harriet the Spy"}, {"IMDB Rating": 6.9, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "Le hussard sur le toit"}, {"IMDB Rating": 8.1, "Production Budget": 2000000, "Rotten Tomatoes Rating": 97, "Title": "The Hustler"}, {"IMDB Rating": 3.4, "Production Budget": 2500000, "Rotten Tomatoes Rating": 79, "Title": "Hud"}, {"IMDB Rating": 5.3, "Production Budget": 65000000, "Rotten Tomatoes Rating": 20, "Title": "Hudson Hawk"}, {"IMDB Rating": 6.5, "Production Budget": 44000000, "Rotten Tomatoes Rating": null, "Title": "Heaven's Gate"}, {"IMDB Rating": 5.6, "Production Budget": 650000, "Rotten Tomatoes Rating": null, "Title": "Hav Plenty"}, {"IMDB Rating": 5.4, "Production Budget": 658000, "Rotten Tomatoes Rating": 94, "Title": "House of Wax"}, {"IMDB Rating": 6.4, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Hawaii"}, {"IMDB Rating": 4.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 16, "Title": "Howard the Duck"}, {"IMDB Rating": 6.5, "Production Budget": 3400000, "Rotten Tomatoes Rating": 73, "Title": "High Anxiety"}, {"IMDB Rating": 2.2, "Production Budget": 200000, "Rotten Tomatoes Rating": null, "Title": "Hybrid"}, {"IMDB Rating": 8.7, "Production Budget": 3180000, "Rotten Tomatoes Rating": 94, "Title": "It's a Wonderful Life"}, {"IMDB Rating": 5.1, "Production Budget": 9000000, "Rotten Tomatoes Rating": 11, "Title": "The Ice Pirates"}, {"IMDB Rating": 6.5, "Production Budget": 75000000, "Rotten Tomatoes Rating": 61, "Title": "Independence Day"}, {"IMDB Rating": 4.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 23, "Title": "The Island of Dr. Moreau"}, {"IMDB Rating": 7.8, "Production Budget": 775000, "Rotten Tomatoes Rating": 100, "Title": "Iraq for Sale: The War Profiteers"}, {"IMDB Rating": 3.5, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "In Her Line of Fire"}, {"IMDB Rating": 5.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 68, "Title": "The Indian in the Cupboard"}, {"IMDB Rating": 5.6, "Production Budget": 68000, "Rotten Tomatoes Rating": null, "Title": "I Love You Ö Don't Touch Me!"}, {"IMDB Rating": 6.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Illuminata"}, {"IMDB Rating": 8.1, "Production Budget": 3500000, "Rotten Tomatoes Rating": 88, "Title": "In Cold Blood"}, {"IMDB Rating": 7.2, "Production Budget": 25000, "Rotten Tomatoes Rating": 89, "Title": "In the Company of Men"}, {"IMDB Rating": 5.7, "Production Budget": 8000000, "Rotten Tomatoes Rating": 29, "Title": "The Inkwell"}, {"IMDB Rating": 5, "Production Budget": 12000000, "Rotten Tomatoes Rating": 27, "Title": "Invaders from Mars"}, {"IMDB Rating": 6.1, "Production Budget": 3400000, "Rotten Tomatoes Rating": null, "Title": "L'incomparable mademoiselle C."}, {"IMDB Rating": null, "Production Budget": 385907, "Rotten Tomatoes Rating": 96, "Title": "Intolerance"}, {"IMDB Rating": 6.9, "Production Budget": 22000000, "Rotten Tomatoes Rating": null, "Title": "The Island"}, {"IMDB Rating": 5.1, "Production Budget": 55000000, "Rotten Tomatoes Rating": null, "Title": "Eye See You"}, {"IMDB Rating": 8.1, "Production Budget": 2000000, "Rotten Tomatoes Rating": 96, "Title": "In the Heat of the Night"}, {"IMDB Rating": 5.3, "Production Budget": 45000000, "Rotten Tomatoes Rating": 17, "Title": "Jack"}, {"IMDB Rating": 4.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": 16, "Title": "Jade"}, {"IMDB Rating": 4.9, "Production Budget": 60000000, "Rotten Tomatoes Rating": 16, "Title": "Jingle All the Way"}, {"IMDB Rating": 7.3, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Dr. No"}, {"IMDB Rating": 5.8, "Production Budget": 27000000, "Rotten Tomatoes Rating": null, "Title": "The Jungle Book"}, {"IMDB Rating": 4.9, "Production Budget": 85000000, "Rotten Tomatoes Rating": 15, "Title": "Judge Dredd"}, {"IMDB Rating": 3.9, "Production Budget": 4000000, "Rotten Tomatoes Rating": 10, "Title": "The Jerky Boys"}, {"IMDB Rating": 5.6, "Production Budget": 14000000, "Rotten Tomatoes Rating": 36, "Title": "Jefferson in Paris"}, {"IMDB Rating": 8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 83, "Title": "JFK"}, {"IMDB Rating": 7.2, "Production Budget": 1300000, "Rotten Tomatoes Rating": 92, "Title": "Journey from the Fall"}, {"IMDB Rating": 5.5, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Jekyll and Hyde... Together Again"}, {"IMDB Rating": 6.4, "Production Budget": 65000000, "Rotten Tomatoes Rating": 48, "Title": "Jumanji"}, {"IMDB Rating": 5.3, "Production Budget": 44000000, "Rotten Tomatoes Rating": 16, "Title": "The Juror"}, {"IMDB Rating": 7.9, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Jerusalema"}, {"IMDB Rating": 7.9, "Production Budget": 63000000, "Rotten Tomatoes Rating": 87, "Title": "Jurassic Park"}, {"IMDB Rating": 5.8, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Johnny Suede"}, {"IMDB Rating": 8.3, "Production Budget": 12000000, "Rotten Tomatoes Rating": 100, "Title": "Jaws"}, {"IMDB Rating": 5.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 56, "Title": "Jaws 2"}, {"IMDB Rating": 2.6, "Production Budget": 23000000, "Rotten Tomatoes Rating": null, "Title": "Jaws 4: The Revenge"}, {"IMDB Rating": 5.6, "Production Budget": 10750000, "Rotten Tomatoes Rating": 67, "Title": "Kabhi Alvida Naa Kehna"}, {"IMDB Rating": 5.5, "Production Budget": 1500000, "Rotten Tomatoes Rating": null, "Title": "Kickboxer"}, {"IMDB Rating": 6.7, "Production Budget": 1500000, "Rotten Tomatoes Rating": 50, "Title": "Kids"}, {"IMDB Rating": 6.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 51, "Title": "Kingpin"}, {"IMDB Rating": 5.8, "Production Budget": 26000000, "Rotten Tomatoes Rating": 50, "Title": "Kindergarten Cop"}, {"IMDB Rating": 7.6, "Production Budget": 23000000, "Rotten Tomatoes Rating": 46, "Title": "King Kong"}, {"IMDB Rating": 7.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 67, "Title": "Kiss of Death"}, {"IMDB Rating": 5.7, "Production Budget": 500000, "Rotten Tomatoes Rating": 44, "Title": "Kingdom of the Spiders"}, {"IMDB Rating": 7.9, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "Akira"}, {"IMDB Rating": 5.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Krush Groove"}, {"IMDB Rating": 6.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": 100, "Title": "Krrish"}, {"IMDB Rating": 6, "Production Budget": 19000000, "Rotten Tomatoes Rating": 58, "Title": "Kansas City"}, {"IMDB Rating": 7.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 91, "Title": "The Last Emperor"}, {"IMDB Rating": 5.9, "Production Budget": 85000000, "Rotten Tomatoes Rating": 38, "Title": "Last Action Hero"}, {"IMDB Rating": 6.8, "Production Budget": 7000000, "Rotten Tomatoes Rating": 64, "Title": "Live and Let Die"}, {"IMDB Rating": 7.8, "Production Budget": 2700000, "Rotten Tomatoes Rating": null, "Title": "Lage Raho Munnabhai"}, {"IMDB Rating": 8, "Production Budget": 35000, "Rotten Tomatoes Rating": null, "Title": "The Last Waltz"}, {"IMDB Rating": 6, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "The Last Big Thing"}, {"IMDB Rating": 6.9, "Production Budget": 12300000, "Rotten Tomatoes Rating": 71, "Title": "The Land Before Time"}, {"IMDB Rating": 7.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 92, "Title": "The Longest Day"}, {"IMDB Rating": 6.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 73, "Title": "The Living Daylights"}, {"IMDB Rating": 7.8, "Production Budget": 28000000, "Rotten Tomatoes Rating": null, "Title": "Aladdin"}, {"IMDB Rating": 5.4, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "A Low Down Dirty Shame"}, {"IMDB Rating": 6.9, "Production Budget": 4030000, "Rotten Tomatoes Rating": null, "Title": "Love and Death on Long Island"}, {"IMDB Rating": 6.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 63, "Title": "Ladyhawke"}, {"IMDB Rating": 7.5, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Nikita"}, {"IMDB Rating": 7.8, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "Lion of the Desert"}, {"IMDB Rating": 5.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 50, "Title": "Legal Eagles"}, {"IMDB Rating": 6.1, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Legend"}, {"IMDB Rating": 6.7, "Production Budget": 87000, "Rotten Tomatoes Rating": 63, "Title": "The Last House on the Left"}, {"IMDB Rating": 5.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 57, "Title": "Lifeforce"}, {"IMDB Rating": 6.6, "Production Budget": 4700000, "Rotten Tomatoes Rating": 73, "Title": "Lady in White"}, {"IMDB Rating": 6.6, "Production Budget": 65000000, "Rotten Tomatoes Rating": 69, "Title": "The Long Kiss Goodnight"}, {"IMDB Rating": 8.4, "Production Budget": 6000000, "Rotten Tomatoes Rating": null, "Title": "Lake of Fire"}, {"IMDB Rating": 7.5, "Production Budget": 2100000, "Rotten Tomatoes Rating": null, "Title": "Elling"}, {"IMDB Rating": 7.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 96, "Title": "Elmer Gantry"}, {"IMDB Rating": 7, "Production Budget": 7000, "Rotten Tomatoes Rating": null, "Title": "El Mariachi"}, {"IMDB Rating": 7.5, "Production Budget": 17000000, "Rotten Tomatoes Rating": 100, "Title": "Aliens"}, {"IMDB Rating": 6.3, "Production Budget": 55000000, "Rotten Tomatoes Rating": 37, "Title": "Alien³"}, {"IMDB Rating": 8.2, "Production Budget": 79300000, "Rotten Tomatoes Rating": 92, "Title": "The Lion King"}, {"IMDB Rating": 7.6, "Production Budget": 3000000, "Rotten Tomatoes Rating": 100, "Title": "Love and Death"}, {"IMDB Rating": 5.7, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "Love and Other Catastrophes"}, {"IMDB Rating": 7.3, "Production Budget": 550000, "Rotten Tomatoes Rating": null, "Title": "Love Letters"}, {"IMDB Rating": 4.6, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "The Legend of the Lone Ranger"}, {"IMDB Rating": 7.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 97, "Title": "The Last of the Mohicans"}, {"IMDB Rating": 5.9, "Production Budget": 1000000, "Rotten Tomatoes Rating": 38, "Title": "Love Me Tender"}, {"IMDB Rating": 7.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": 79, "Title": "The Long Riders"}, {"IMDB Rating": 4.6, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Losin' It"}, {"IMDB Rating": 4.9, "Production Budget": 4000000, "Rotten Tomatoes Rating": 45, "Title": "The Loss of Sexual Innocence"}, {"IMDB Rating": 7.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 63, "Title": "Legends of the Fall"}, {"IMDB Rating": 6.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 81, "Title": "A League of Their Own"}, {"IMDB Rating": 5.7, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "Loaded Weapon 1"}, {"IMDB Rating": 8.2, "Production Budget": 1250000, "Rotten Tomatoes Rating": 100, "Title": "The Lost Weekend"}, {"IMDB Rating": 6.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Le petit Nicolas"}, {"IMDB Rating": 6.7, "Production Budget": 7000000, "Rotten Tomatoes Rating": 70, "Title": "Logan's Run"}, {"IMDB Rating": 6.9, "Production Budget": 7500000, "Rotten Tomatoes Rating": null, "Title": "Betty Fisher et autres histoires"}, {"IMDB Rating": 6.7, "Production Budget": 5000000, "Rotten Tomatoes Rating": 94, "Title": "Light Sleeper"}, {"IMDB Rating": 6.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 91, "Title": "Little Shop of Horrors"}, {"IMDB Rating": 7.6, "Production Budget": 5000000, "Rotten Tomatoes Rating": 92, "Title": "Lone Star"}, {"IMDB Rating": 7.4, "Production Budget": 850000, "Rotten Tomatoes Rating": null, "Title": "Latter Days"}, {"IMDB Rating": 7.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 90, "Title": "Lethal Weapon"}, {"IMDB Rating": 6.5, "Production Budget": 35000000, "Rotten Tomatoes Rating": 56, "Title": "Lethal Weapon 3"}, {"IMDB Rating": 5.7, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "The Last Time I Committed Suicide"}, {"IMDB Rating": 6.9, "Production Budget": 6000000, "Rotten Tomatoes Rating": 83, "Title": "Little Voice"}, {"IMDB Rating": 7.5, "Production Budget": 7000000, "Rotten Tomatoes Rating": 83, "Title": "The Last Temptation of Christ"}, {"IMDB Rating": 6.5, "Production Budget": 42000000, "Rotten Tomatoes Rating": null, "Title": "License to Kill"}, {"IMDB Rating": 7.2, "Production Budget": 800000, "Rotten Tomatoes Rating": null, "Title": "Cama adentro"}, {"IMDB Rating": 7.6, "Production Budget": 4000000, "Rotten Tomatoes Rating": 89, "Title": "Leaving Las Vegas"}, {"IMDB Rating": 5.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": 47, "Title": "The Lawnmower Man"}, {"IMDB Rating": 5.8, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Lone Wolf McQuade"}, {"IMDB Rating": 7.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 89, "Title": "Little Women"}, {"IMDB Rating": 8.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 98, "Title": "Lawrence of Arabia"}, {"IMDB Rating": 7.4, "Production Budget": 3500000, "Rotten Tomatoes Rating": 85, "Title": "Menace II Society"}, {"IMDB Rating": 7.4, "Production Budget": 8000000, "Rotten Tomatoes Rating": 90, "Title": "Much Ado About Nothing"}, {"IMDB Rating": 6.7, "Production Budget": 3800000, "Rotten Tomatoes Rating": 97, "Title": "Major Dundee"}, {"IMDB Rating": 6.4, "Production Budget": 27000000, "Rotten Tomatoes Rating": null, "Title": "The Magic Flute"}, {"IMDB Rating": 2.2, "Production Budget": 558000, "Rotten Tomatoes Rating": null, "Title": "Mata Hari"}, {"IMDB Rating": 7.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 90, "Title": "Malcolm X"}, {"IMDB Rating": 6.2, "Production Budget": 350000, "Rotten Tomatoes Rating": null, "Title": "Maniac"}, {"IMDB Rating": 7.7, "Production Budget": 6000000, "Rotten Tomatoes Rating": 100, "Title": "Mary Poppins"}, {"IMDB Rating": 5.5, "Production Budget": 47000000, "Rotten Tomatoes Rating": 27, "Title": "Mary Reilly"}, {"IMDB Rating": 4.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 29, "Title": "Maximum Risk"}, {"IMDB Rating": 8.6, "Production Budget": 3500000, "Rotten Tomatoes Rating": null, "Title": "M*A*S*H"}, {"IMDB Rating": 6.6, "Production Budget": 18000000, "Rotten Tomatoes Rating": 75, "Title": "The Mask"}, {"IMDB Rating": 6.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": 50, "Title": "Mars Attacks!"}, {"IMDB Rating": 6.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 72, "Title": "Mo' Better Blues"}, {"IMDB Rating": 7.4, "Production Budget": 4500000, "Rotten Tomatoes Rating": 67, "Title": "Moby Dick"}, {"IMDB Rating": 6.9, "Production Budget": 400000, "Rotten Tomatoes Rating": null, "Title": "My Beautiful Laundrette"}, {"IMDB Rating": 7.2, "Production Budget": 7000000, "Rotten Tomatoes Rating": 64, "Title": "Michael Jordan to the MAX"}, {"IMDB Rating": 6.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 77, "Title": "Michael Collins"}, {"IMDB Rating": 7.3, "Production Budget": 11000000, "Rotten Tomatoes Rating": 86, "Title": "My Cousin Vinny"}, {"IMDB Rating": 5.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 22, "Title": "Medicine Man"}, {"IMDB Rating": 7.4, "Production Budget": 11900000, "Rotten Tomatoes Rating": null, "Title": "Madadayo"}, {"IMDB Rating": 4.5, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "Modern Problems"}, {"IMDB Rating": 8.4, "Production Budget": 18000000, "Rotten Tomatoes Rating": 96, "Title": "Amadeus"}, {"IMDB Rating": 8.5, "Production Budget": 1500000, "Rotten Tomatoes Rating": 100, "Title": "Modern Times"}, {"IMDB Rating": 5.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 8, "Title": "The Mighty Ducks"}, {"IMDB Rating": 8.1, "Production Budget": 3900000, "Rotten Tomatoes Rating": 85, "Title": "A Man for All Seasons"}, {"IMDB Rating": 2.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Megaforce"}, {"IMDB Rating": 6, "Production Budget": 42000000, "Rotten Tomatoes Rating": 54, "Title": "The Mirror Has Two Faces"}, {"IMDB Rating": 8, "Production Budget": 3600000, "Rotten Tomatoes Rating": 90, "Title": "Midnight Cowboy"}, {"IMDB Rating": 7.5, "Production Budget": 30000000, "Rotten Tomatoes Rating": 96, "Title": "Midnight Run"}, {"IMDB Rating": 6.9, "Production Budget": 11000000, "Rotten Tomatoes Rating": 84, "Title": "Major League"}, {"IMDB Rating": 6.8, "Production Budget": 11000000, "Rotten Tomatoes Rating": 89, "Title": "The Molly Maguires"}, {"IMDB Rating": 5, "Production Budget": 200000, "Rotten Tomatoes Rating": 31, "Title": "Malevolence"}, {"IMDB Rating": 7.5, "Production Budget": 9400000, "Rotten Tomatoes Rating": null, "Title": "It's a Mad Mad Mad Mad World"}, {"IMDB Rating": 6.9, "Production Budget": 200000, "Rotten Tomatoes Rating": null, "Title": "Mad Max"}, {"IMDB Rating": 5.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Mad Max Beyond Thunderdome"}, {"IMDB Rating": 7, "Production Budget": 5000000, "Rotten Tomatoes Rating": 80, "Title": "The Man From Snowy River"}, {"IMDB Rating": 5.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": null, "Title": "Men of War"}, {"IMDB Rating": 8.4, "Production Budget": 400000, "Rotten Tomatoes Rating": null, "Title": "Monty Python and the Holy Grail"}, {"IMDB Rating": 5.8, "Production Budget": 7500000, "Rotten Tomatoes Rating": 63, "Title": "Men with Brooms"}, {"IMDB Rating": 7.9, "Production Budget": 19000000, "Rotten Tomatoes Rating": 69, "Title": "Mutiny on The Bounty"}, {"IMDB Rating": 6.3, "Production Budget": 5000000, "Rotten Tomatoes Rating": 57, "Title": "Mommie Dearest"}, {"IMDB Rating": 6.1, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "March or Die"}, {"IMDB Rating": 5.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 24, "Title": "Memoirs of an Invisible Man"}, {"IMDB Rating": 7, "Production Budget": 2500000, "Rotten Tomatoes Rating": 84, "Title": "My Own Private Idaho"}, {"IMDB Rating": 6.1, "Production Budget": 31000000, "Rotten Tomatoes Rating": 64, "Title": "Moonraker"}, {"IMDB Rating": 5.2, "Production Budget": 68000000, "Rotten Tomatoes Rating": 17, "Title": "Money Train"}, {"IMDB Rating": 7.2, "Production Budget": 430000, "Rotten Tomatoes Rating": 88, "Title": "Metropolitan"}, {"IMDB Rating": 7.1, "Production Budget": 6100000, "Rotten Tomatoes Rating": 53, "Title": "Mallrats"}, {"IMDB Rating": 6.7, "Production Budget": 250000, "Rotten Tomatoes Rating": 42, "Title": "American Desi"}, {"IMDB Rating": 5.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 7, "Title": "Mrs. Winterbourne"}, {"IMDB Rating": 6.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 64, "Title": "Mrs. Doubtfire"}, {"IMDB Rating": 8.2, "Production Budget": 1500000, "Rotten Tomatoes Rating": 97, "Title": "Mr. Smith Goes To Washington"}, {"IMDB Rating": 5.4, "Production Budget": 20000000, "Rotten Tomatoes Rating": 35, "Title": "Mortal Kombat"}, {"IMDB Rating": 6.2, "Production Budget": 45000000, "Rotten Tomatoes Rating": null, "Title": "Frankenstein"}, {"IMDB Rating": 7.4, "Production Budget": 4000000, "Rotten Tomatoes Rating": 100, "Title": "The Misfits"}, {"IMDB Rating": 4.8, "Production Budget": 16000000, "Rotten Tomatoes Rating": 13, "Title": "My Stepmother Is an Alien"}, {"IMDB Rating": 8.1, "Production Budget": 3200000, "Rotten Tomatoes Rating": 97, "Title": "The Man Who Shot Liberty Valance"}, {"IMDB Rating": 6.9, "Production Budget": 80000000, "Rotten Tomatoes Rating": null, "Title": "Mission: Impossible"}, {"IMDB Rating": 4.7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 9, "Title": "Meteor"}, {"IMDB Rating": 5.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 44, "Title": "Multiplicity"}, {"IMDB Rating": 7, "Production Budget": 30000, "Rotten Tomatoes Rating": null, "Title": "Mutual Appreciation"}, {"IMDB Rating": 7.5, "Production Budget": 12000000, "Rotten Tomatoes Rating": 67, "Title": "The Muppet Christmas Carol"}, {"IMDB Rating": 6.7, "Production Budget": 7000000, "Rotten Tomatoes Rating": 52, "Title": "The Man with the Golden Gun"}, {"IMDB Rating": 7.9, "Production Budget": 17000000, "Rotten Tomatoes Rating": 94, "Title": "My Fair Lady"}, {"IMDB Rating": 5.9, "Production Budget": 6000000, "Rotten Tomatoes Rating": 82, "Title": "Mystic Pizza"}, {"IMDB Rating": 6.7, "Production Budget": 8400000, "Rotten Tomatoes Rating": null, "Title": "Namastey London"}, {"IMDB Rating": 6.8, "Production Budget": 700000, "Rotten Tomatoes Rating": null, "Title": "Naturally Native"}, {"IMDB Rating": 3, "Production Budget": 46000000, "Rotten Tomatoes Rating": null, "Title": "Inchon"}, {"IMDB Rating": 7.5, "Production Budget": 28000000, "Rotten Tomatoes Rating": 85, "Title": "Indiana Jones and the Temple of Doom"}, {"IMDB Rating": 8.3, "Production Budget": 48000000, "Rotten Tomatoes Rating": 89, "Title": "Indiana Jones and the Last Crusade"}, {"IMDB Rating": 3.5, "Production Budget": 1300000, "Rotten Tomatoes Rating": null, "Title": "Neal n' Nikki"}, {"IMDB Rating": 5.2, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "A Nightmare on Elm Street 4: The Dream Master"}, {"IMDB Rating": 6.3, "Production Budget": 5000000, "Rotten Tomatoes Rating": 71, "Title": "Nighthawks"}, {"IMDB Rating": 7.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 83, "Title": "The English Patient"}, {"IMDB Rating": 7, "Production Budget": 1250000, "Rotten Tomatoes Rating": null, "Title": "Niagara"}, {"IMDB Rating": 6.6, "Production Budget": 23000000, "Rotten Tomatoes Rating": null, "Title": "The Naked Gun 2Ω: The Smell of Fear"}, {"IMDB Rating": 6.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Naked Gun 33 1/3: The Final Insult"}, {"IMDB Rating": null, "Production Budget": 3000000, "Rotten Tomatoes Rating": 90, "Title": "National Lampoon's Animal House"}, {"IMDB Rating": 6.6, "Production Budget": 114000, "Rotten Tomatoes Rating": 96, "Title": "Night of the Living Dead"}, {"IMDB Rating": 5.7, "Production Budget": 5000000, "Rotten Tomatoes Rating": 38, "Title": "No Looking Back"}, {"IMDB Rating": 7.5, "Production Budget": 3500000, "Rotten Tomatoes Rating": 93, "Title": "The Nun's Story"}, {"IMDB Rating": 5.3, "Production Budget": 1800000, "Rotten Tomatoes Rating": 95, "Title": "A Nightmare on Elm Street"}, {"IMDB Rating": 4.9, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "A Nightmare On Elm Street Part 2: Freddy's Revenge"}, {"IMDB Rating": 6.2, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "A Nightmare On Elm Street 3: Dream Warriors"}, {"IMDB Rating": 4.7, "Production Budget": 6000000, "Rotten Tomatoes Rating": null, "Title": "A Nightmare On Elm Street: The Dream Child"}, {"IMDB Rating": 4.5, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Freddy's Dead: The Final Nightmare"}, {"IMDB Rating": null, "Production Budget": 8000000, "Rotten Tomatoes Rating": 81, "Title": "Wes Craven's New Nightmare"}, {"IMDB Rating": 6.6, "Production Budget": 4200000, "Rotten Tomatoes Rating": 67, "Title": "Night of the Living Dead"}, {"IMDB Rating": 6.3, "Production Budget": 2000000, "Rotten Tomatoes Rating": 97, "Title": "Notorious"}, {"IMDB Rating": 6, "Production Budget": 36000000, "Rotten Tomatoes Rating": 65, "Title": "Never Say Never Again"}, {"IMDB Rating": 5.2, "Production Budget": 19000000, "Rotten Tomatoes Rating": 50, "Title": "The Nutcracker"}, {"IMDB Rating": 5, "Production Budget": 15000000, "Rotten Tomatoes Rating": 26, "Title": "Nowhere to Run"}, {"IMDB Rating": 7.4, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "Interview with the Vampire: The Vampire Chronicles"}, {"IMDB Rating": 5.6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 67, "Title": "The Nutty Professor"}, {"IMDB Rating": 7.4, "Production Budget": 27000000, "Rotten Tomatoes Rating": null, "Title": "Die Unendliche Geschichte"}, {"IMDB Rating": 6.6, "Production Budget": 750000, "Rotten Tomatoes Rating": 67, "Title": "Interview with the Assassin"}, {"IMDB Rating": 7.1, "Production Budget": 45000000, "Rotten Tomatoes Rating": 75, "Title": "Nixon"}, {"IMDB Rating": 6.7, "Production Budget": 14000000, "Rotten Tomatoes Rating": 63, "Title": "New York, New York"}, {"IMDB Rating": 6.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 74, "Title": "New York Stories"}, {"IMDB Rating": 5.5, "Production Budget": 36500000, "Rotten Tomatoes Rating": null, "Title": "Obitaemyy ostrov"}, {"IMDB Rating": 6.6, "Production Budget": 27500000, "Rotten Tomatoes Rating": 47, "Title": "Octopussy"}, {"IMDB Rating": 3.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "On Deadly Ground"}, {"IMDB Rating": 8.9, "Production Budget": 4400000, "Rotten Tomatoes Rating": 96, "Title": "One Flew Over the Cuckoo's Nest"}, {"IMDB Rating": 5.6, "Production Budget": 1100000, "Rotten Tomatoes Rating": null, "Title": "The Offspring"}, {"IMDB Rating": 6.9, "Production Budget": 8000000, "Rotten Tomatoes Rating": 81, "Title": "On Her Majesty's Secret Service"}, {"IMDB Rating": 5.4, "Production Budget": 2800000, "Rotten Tomatoes Rating": 84, "Title": "The Omen"}, {"IMDB Rating": 3.3, "Production Budget": 7200000, "Rotten Tomatoes Rating": 8, "Title": "The Omega Code"}, {"IMDB Rating": 7, "Production Budget": 31000000, "Rotten Tomatoes Rating": 63, "Title": "Out of Africa"}, {"IMDB Rating": 5.1, "Production Budget": 1600000, "Rotten Tomatoes Rating": null, "Title": "Out of the Dark"}, {"IMDB Rating": 7, "Production Budget": 6000000, "Rotten Tomatoes Rating": 91, "Title": "Ordinary People"}, {"IMDB Rating": 6.3, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "The Other Side of Heaven"}, {"IMDB Rating": 6.3, "Production Budget": 10000, "Rotten Tomatoes Rating": null, "Title": "On the Down Low"}, {"IMDB Rating": 6.9, "Production Budget": 11000000, "Rotten Tomatoes Rating": 68, "Title": "Othello"}, {"IMDB Rating": 6.5, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "On the Outs"}, {"IMDB Rating": 8.4, "Production Budget": 910000, "Rotten Tomatoes Rating": 100, "Title": "On the Waterfront"}, {"IMDB Rating": 6.4, "Production Budget": 50000000, "Rotten Tomatoes Rating": 59, "Title": "Outbreak"}, {"IMDB Rating": 7, "Production Budget": 10000000, "Rotten Tomatoes Rating": 65, "Title": "The Outsiders"}, {"IMDB Rating": 6.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": 10, "Title": "The Oxford Murders"}, {"IMDB Rating": 6.3, "Production Budget": 4500000, "Rotten Tomatoes Rating": 47, "Title": "Police Academy"}, {"IMDB Rating": 2.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Police Academy 7: Mission to Moscow"}, {"IMDB Rating": 7.3, "Production Budget": 4300000, "Rotten Tomatoes Rating": 60, "Title": "Paa"}, {"IMDB Rating": 7.1, "Production Budget": 6900000, "Rotten Tomatoes Rating": 92, "Title": "Pale Rider"}, {"IMDB Rating": 6.9, "Production Budget": 45000000, "Rotten Tomatoes Rating": 75, "Title": "Patriot Games"}, {"IMDB Rating": 4.7, "Production Budget": 8000000, "Rotten Tomatoes Rating": 39, "Title": "The Pallbearer"}, {"IMDB Rating": 6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 55, "Title": "Pocahontas"}, {"IMDB Rating": 7.2, "Production Budget": 2900000, "Rotten Tomatoes Rating": 63, "Title": "Pocketful of Miracles"}, {"IMDB Rating": 6, "Production Budget": 9000000, "Rotten Tomatoes Rating": 47, "Title": "PCU"}, {"IMDB Rating": 6, "Production Budget": 10000000, "Rotten Tomatoes Rating": 50, "Title": "Pete's Dragon"}, {"IMDB Rating": 7.3, "Production Budget": 4638783, "Rotten Tomatoes Rating": null, "Title": "Pat Garrett and Billy the Kid"}, {"IMDB Rating": 7.4, "Production Budget": 10700000, "Rotten Tomatoes Rating": 86, "Title": "Poltergeist"}, {"IMDB Rating": 3.8, "Production Budget": 9500000, "Rotten Tomatoes Rating": 14, "Title": "Poltergeist III"}, {"IMDB Rating": 6.3, "Production Budget": 3000000, "Rotten Tomatoes Rating": 29, "Title": "Phantasm II"}, {"IMDB Rating": 6.3, "Production Budget": 32000000, "Rotten Tomatoes Rating": 50, "Title": "Phenomenon"}, {"IMDB Rating": 7.6, "Production Budget": 26000000, "Rotten Tomatoes Rating": 74, "Title": "Philadelphia"}, {"IMDB Rating": 4.8, "Production Budget": 45000000, "Rotten Tomatoes Rating": 43, "Title": "The Phantom"}, {"IMDB Rating": 7.5, "Production Budget": 68000, "Rotten Tomatoes Rating": 86, "Title": "Pi"}, {"IMDB Rating": 5.8, "Production Budget": 12000, "Rotten Tomatoes Rating": null, "Title": "Pink Flamingos"}, {"IMDB Rating": 7.1, "Production Budget": 3700000, "Rotten Tomatoes Rating": 71, "Title": "The Pirate"}, {"IMDB Rating": 7.7, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "The Player"}, {"IMDB Rating": 7.5, "Production Budget": 65000000, "Rotten Tomatoes Rating": null, "Title": "Apollo 13"}, {"IMDB Rating": 8.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": 86, "Title": "Platoon"}, {"IMDB Rating": 2.7, "Production Budget": 1000000, "Rotten Tomatoes Rating": 92, "Title": "Panic"}, {"IMDB Rating": 5.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": 27, "Title": "The Adventures of Pinocchio"}, {"IMDB Rating": 4.6, "Production Budget": 800000, "Rotten Tomatoes Rating": null, "Title": "Pandora's Box"}, {"IMDB Rating": 6, "Production Budget": 27000, "Rotten Tomatoes Rating": null, "Title": "Pink Narcissus"}, {"IMDB Rating": 5.5, "Production Budget": 100000, "Rotten Tomatoes Rating": null, "Title": "Penitentiary"}, {"IMDB Rating": 5.8, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "The Pursuit of D.B. Cooper"}, {"IMDB Rating": 5.1, "Production Budget": 14000000, "Rotten Tomatoes Rating": 36, "Title": "Poetic Justice"}, {"IMDB Rating": 5.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Porky's"}, {"IMDB Rating": 3, "Production Budget": 70000, "Rotten Tomatoes Rating": null, "Title": "Peace, Propaganda and the Promised Land"}, {"IMDB Rating": 4.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 56, "Title": "Popeye"}, {"IMDB Rating": 6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 23, "Title": "Predator 2"}, {"IMDB Rating": 7.8, "Production Budget": 18000000, "Rotten Tomatoes Rating": 76, "Title": "Predator"}, {"IMDB Rating": 8.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 95, "Title": "The Princess Bride"}, {"IMDB Rating": 5.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Prison"}, {"IMDB Rating": 8.6, "Production Budget": 16000000, "Rotten Tomatoes Rating": null, "Title": "LÈon"}, {"IMDB Rating": 4.7, "Production Budget": 12000000, "Rotten Tomatoes Rating": 25, "Title": "Prophecy"}, {"IMDB Rating": 6.4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 74, "Title": "The Prince of Tides"}, {"IMDB Rating": 5.7, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Proud"}, {"IMDB Rating": 6.7, "Production Budget": 14000000, "Rotten Tomatoes Rating": 62, "Title": "Pretty Woman"}, {"IMDB Rating": 6.6, "Production Budget": 10000000, "Rotten Tomatoes Rating": 40, "Title": "Partition"}, {"IMDB Rating": 6.4, "Production Budget": 12000000, "Rotten Tomatoes Rating": 70, "Title": "The Postman Always Rings Twice"}, {"IMDB Rating": 6.3, "Production Budget": 18000000, "Rotten Tomatoes Rating": 88, "Title": "Peggy Sue Got Married"}, {"IMDB Rating": 7.1, "Production Budget": 4000000, "Rotten Tomatoes Rating": 83, "Title": "Peter Pan"}, {"IMDB Rating": 6.3, "Production Budget": 11500000, "Rotten Tomatoes Rating": 50, "Title": "Pet Sematary"}, {"IMDB Rating": 8.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 97, "Title": "Patton"}, {"IMDB Rating": 6.4, "Production Budget": 15000, "Rotten Tomatoes Rating": null, "Title": "The Puffy Chair"}, {"IMDB Rating": 8.9, "Production Budget": 8000000, "Rotten Tomatoes Rating": 94, "Title": "Pulp Fiction"}, {"IMDB Rating": 6.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 23, "Title": "Paint Your Wagon"}, {"IMDB Rating": 4.6, "Production Budget": 12500000, "Rotten Tomatoes Rating": null, "Title": "The Prisoner of Zenda"}, {"IMDB Rating": 6, "Production Budget": 11000000, "Rotten Tomatoes Rating": 67, "Title": "The Perez Family"}, {"IMDB Rating": 6.1, "Production Budget": 1200000, "Rotten Tomatoes Rating": null, "Title": "Q"}, {"IMDB Rating": 6.3, "Production Budget": 32000000, "Rotten Tomatoes Rating": 56, "Title": "The Quick and the Dead"}, {"IMDB Rating": 6.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 60, "Title": "Quigley Down Under"}, {"IMDB Rating": 7.4, "Production Budget": 12500000, "Rotten Tomatoes Rating": null, "Title": "La Guerre du feu"}, {"IMDB Rating": 5.8, "Production Budget": 8250000, "Rotten Tomatoes Rating": 88, "Title": "Quo Vadis?"}, {"IMDB Rating": 8.1, "Production Budget": 5300000, "Rotten Tomatoes Rating": null, "Title": "Rang De Basanti"}, {"IMDB Rating": 6.5, "Production Budget": 5000000, "Rotten Tomatoes Rating": 68, "Title": "Robin and Marian"}, {"IMDB Rating": 6.6, "Production Budget": 70000000, "Rotten Tomatoes Rating": 70, "Title": "Ransom"}, {"IMDB Rating": 8.1, "Production Budget": 3200000, "Rotten Tomatoes Rating": 98, "Title": "Rosemary's Baby"}, {"IMDB Rating": 8.4, "Production Budget": 1288000, "Rotten Tomatoes Rating": 100, "Title": "Rebecca"}, {"IMDB Rating": 6.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 56, "Title": "Robin Hood: Prince of Thieves"}, {"IMDB Rating": 6.8, "Production Budget": 28000000, "Rotten Tomatoes Rating": 71, "Title": "Rob Roy"}, {"IMDB Rating": 8.4, "Production Budget": 18000000, "Rotten Tomatoes Rating": 98, "Title": "Raging Bull"}, {"IMDB Rating": 7.5, "Production Budget": 9200000, "Rotten Tomatoes Rating": 95, "Title": "Richard III"}, {"IMDB Rating": 5.7, "Production Budget": 11000000, "Rotten Tomatoes Rating": 53, "Title": "Raising Cain"}, {"IMDB Rating": 7.6, "Production Budget": 13000000, "Rotten Tomatoes Rating": 88, "Title": "RoboCop"}, {"IMDB Rating": 3.4, "Production Budget": 22000000, "Rotten Tomatoes Rating": null, "Title": "RoboCop 3"}, {"IMDB Rating": 4.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 25, "Title": "Ri¢hie Ri¢h"}, {"IMDB Rating": 7.5, "Production Budget": 16000000, "Rotten Tomatoes Rating": 95, "Title": "Radio Days"}, {"IMDB Rating": 6.5, "Production Budget": 35000000, "Rotten Tomatoes Rating": 43, "Title": "Radio Flyer"}, {"IMDB Rating": 8.4, "Production Budget": 1200000, "Rotten Tomatoes Rating": 96, "Title": "Reservoir Dogs"}, {"IMDB Rating": 8.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Raiders of the Lost Ark"}, {"IMDB Rating": 7.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 100, "Title": "Red River"}, {"IMDB Rating": 7.4, "Production Budget": 33500000, "Rotten Tomatoes Rating": 94, "Title": "Reds"}, {"IMDB Rating": 7.7, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Le Violon rouge"}, {"IMDB Rating": 4.4, "Production Budget": 17900000, "Rotten Tomatoes Rating": 20, "Title": "Red Sonja"}, {"IMDB Rating": 2.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "The Return"}, {"IMDB Rating": 7.5, "Production Budget": 140000, "Rotten Tomatoes Rating": 100, "Title": "Roger & Me"}, {"IMDB Rating": 7.9, "Production Budget": 27000000, "Rotten Tomatoes Rating": 97, "Title": "The Right Stuff"}, {"IMDB Rating": 7.1, "Production Budget": 1200000, "Rotten Tomatoes Rating": 77, "Title": "The Rocky Horror Picture Show"}, {"IMDB Rating": 5.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 44, "Title": "Road House"}, {"IMDB Rating": 6.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 24, "Title": "Romeo Is Bleeding"}, {"IMDB Rating": 4.2, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Rockaway"}, {"IMDB Rating": 4, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Rocky"}, {"IMDB Rating": 5.1, "Production Budget": 6200000, "Rotten Tomatoes Rating": null, "Title": "Return of the Living Dead Part II"}, {"IMDB Rating": 5.5, "Production Budget": 500000, "Rotten Tomatoes Rating": 64, "Title": "The R.M."}, {"IMDB Rating": 5.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Renaissance Man"}, {"IMDB Rating": 5.8, "Production Budget": 44000000, "Rotten Tomatoes Rating": 30, "Title": "Rambo: First Blood Part II"}, {"IMDB Rating": 4.9, "Production Budget": 58000000, "Rotten Tomatoes Rating": 36, "Title": "Rambo III"}, {"IMDB Rating": 6.5, "Production Budget": 14500000, "Rotten Tomatoes Rating": null, "Title": "Romeo+Juliet"}, {"IMDB Rating": 8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 87, "Title": "Rain Man"}, {"IMDB Rating": 6.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Rapa Nui"}, {"IMDB Rating": 5.9, "Production Budget": 17000000, "Rotten Tomatoes Rating": null, "Title": "Roar"}, {"IMDB Rating": 6.7, "Production Budget": 5000000, "Rotten Tomatoes Rating": 38, "Title": "The Robe"}, {"IMDB Rating": 7.2, "Production Budget": 75000000, "Rotten Tomatoes Rating": 66, "Title": "The Rock"}, {"IMDB Rating": 7.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 97, "Title": "The Remains of the Day"}, {"IMDB Rating": 7.8, "Production Budget": 3500000, "Rotten Tomatoes Rating": 98, "Title": "Airplane!"}, {"IMDB Rating": 6.7, "Production Budget": 1500000, "Rotten Tomatoes Rating": 97, "Title": "Repo Man"}, {"IMDB Rating": 7.5, "Production Budget": 1070000, "Rotten Tomatoes Rating": null, "Title": "Rocket Singh: Salesman of the Year"}, {"IMDB Rating": 3.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 60, "Title": "Raise the Titanic"}, {"IMDB Rating": 6.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Restoration"}, {"IMDB Rating": 7.1, "Production Budget": 4000000, "Rotten Tomatoes Rating": 88, "Title": "The Return of the Living Dead"}, {"IMDB Rating": 5.9, "Production Budget": 2700000, "Rotten Tomatoes Rating": null, "Title": "Rejsen til Saturn"}, {"IMDB Rating": 8.5, "Production Budget": 5000, "Rotten Tomatoes Rating": null, "Title": "Return to the Land of Wonders"}, {"IMDB Rating": 6.7, "Production Budget": 27000000, "Rotten Tomatoes Rating": 55, "Title": "Return to Oz"}, {"IMDB Rating": 6.4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 63, "Title": "The Running Man"}, {"IMDB Rating": 6, "Production Budget": 1750000, "Rotten Tomatoes Rating": null, "Title": "Run Lola Run"}, {"IMDB Rating": 7.3, "Production Budget": 350000, "Rotten Tomatoes Rating": null, "Title": "Revolution#9"}, {"IMDB Rating": 6.2, "Production Budget": 45000000, "Rotten Tomatoes Rating": 56, "Title": "The River Wild"}, {"IMDB Rating": 8.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Se7en"}, {"IMDB Rating": 5.9, "Production Budget": 1000000, "Rotten Tomatoes Rating": 58, "Title": "Safe Men"}, {"IMDB Rating": 7.9, "Production Budget": 4500000, "Rotten Tomatoes Rating": 94, "Title": "Secrets & Lies"}, {"IMDB Rating": 5.2, "Production Budget": 39000000, "Rotten Tomatoes Rating": 33, "Title": "Sgt. Bilko"}, {"IMDB Rating": 6, "Production Budget": 58000000, "Rotten Tomatoes Rating": 61, "Title": "Sabrina"}, {"IMDB Rating": 6.2, "Production Budget": 2000000, "Rotten Tomatoes Rating": 86, "Title": "Subway"}, {"IMDB Rating": 5.3, "Production Budget": 6000000, "Rotten Tomatoes Rating": 58, "Title": "School Daze"}, {"IMDB Rating": 8.2, "Production Budget": 25000000, "Rotten Tomatoes Rating": 88, "Title": "Scarface"}, {"IMDB Rating": 8.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 97, "Title": "Schindler's List"}, {"IMDB Rating": 8.1, "Production Budget": 1800000, "Rotten Tomatoes Rating": null, "Title": "A Streetcar Named Desire"}, {"IMDB Rating": 4.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": null, "Title": "Shadow Conspiracy"}, {"IMDB Rating": 6.9, "Production Budget": 200000, "Rotten Tomatoes Rating": 75, "Title": "Short Cut to Nirvana: Kumbh Mela"}, {"IMDB Rating": 8, "Production Budget": 12000000, "Rotten Tomatoes Rating": 96, "Title": "Spartacus"}, {"IMDB Rating": 6.9, "Production Budget": 450000, "Rotten Tomatoes Rating": 79, "Title": "Sunday"}, {"IMDB Rating": 6.7, "Production Budget": 200000, "Rotten Tomatoes Rating": 100, "Title": "She Done Him Wrong"}, {"IMDB Rating": 5.7, "Production Budget": 4500000, "Rotten Tomatoes Rating": 14, "Title": "State Fair"}, {"IMDB Rating": 6.2, "Production Budget": 175000, "Rotten Tomatoes Rating": 93, "Title": "She's Gotta Have It"}, {"IMDB Rating": 6.7, "Production Budget": 55000000, "Rotten Tomatoes Rating": 46, "Title": "Stargate"}, {"IMDB Rating": 5.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 34, "Title": "The Shadow"}, {"IMDB Rating": 6.9, "Production Budget": 2300000, "Rotten Tomatoes Rating": 89, "Title": "Show Boat"}, {"IMDB Rating": 7.4, "Production Budget": 22000000, "Rotten Tomatoes Rating": 96, "Title": "Shadowlands"}, {"IMDB Rating": 2.6, "Production Budget": 17000000, "Rotten Tomatoes Rating": 14, "Title": "Shanghai Surprise"}, {"IMDB Rating": 5.3, "Production Budget": 1455000, "Rotten Tomatoes Rating": null, "Title": "Shalako"}, {"IMDB Rating": 4.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": 38, "Title": "Sheena"}, {"IMDB Rating": 7.6, "Production Budget": 5500000, "Rotten Tomatoes Rating": 90, "Title": "Shine"}, {"IMDB Rating": 8.5, "Production Budget": 19000000, "Rotten Tomatoes Rating": 87, "Title": "The Shining"}, {"IMDB Rating": 6.4, "Production Budget": 8500000, "Rotten Tomatoes Rating": null, "Title": "Haakon Haakonsen"}, {"IMDB Rating": 3.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 19, "Title": "Ishtar"}, {"IMDB Rating": 4.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 12, "Title": "Showgirls"}, {"IMDB Rating": 9.2, "Production Budget": 25000000, "Rotten Tomatoes Rating": 88, "Title": "The Shawshank Redemption"}, {"IMDB Rating": 5.9, "Production Budget": 7000000, "Rotten Tomatoes Rating": 50, "Title": "Silver Bullet"}, {"IMDB Rating": null, "Production Budget": 200000, "Rotten Tomatoes Rating": 11, "Title": "Side Effects"}, {"IMDB Rating": 6.3, "Production Budget": 9000000, "Rotten Tomatoes Rating": 61, "Title": "Set It Off"}, {"IMDB Rating": 8.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 96, "Title": "The Silence of the Lambs"}, {"IMDB Rating": 5.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Silent Trigger"}, {"IMDB Rating": 5.3, "Production Budget": 14000000, "Rotten Tomatoes Rating": 18, "Title": "Thinner"}, {"IMDB Rating": 8, "Production Budget": 4833610, "Rotten Tomatoes Rating": 96, "Title": "Sling Blade"}, {"IMDB Rating": 6.9, "Production Budget": 23000, "Rotten Tomatoes Rating": 83, "Title": "Slacker"}, {"IMDB Rating": 8.3, "Production Budget": 2883848, "Rotten Tomatoes Rating": 97, "Title": "Some Like it Hot"}, {"IMDB Rating": 4.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 15, "Title": "The Scarlet Letter"}, {"IMDB Rating": 7.1, "Production Budget": 8500000, "Rotten Tomatoes Rating": null, "Title": "Silmido"}, {"IMDB Rating": 7.3, "Production Budget": 2000000, "Rotten Tomatoes Rating": 100, "Title": "Sleeper"}, {"IMDB Rating": 7.3, "Production Budget": 44000000, "Rotten Tomatoes Rating": 73, "Title": "Sleepers"}, {"IMDB Rating": 6, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "The Slaughter Rule"}, {"IMDB Rating": 6, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Solomon and Sheba"}, {"IMDB Rating": 6.7, "Production Budget": 2500000, "Rotten Tomatoes Rating": null, "Title": "Sur Le Seuil"}, {"IMDB Rating": 8.7, "Production Budget": 6000000, "Rotten Tomatoes Rating": 87, "Title": "The Usual Suspects"}, {"IMDB Rating": 7, "Production Budget": 26000000, "Rotten Tomatoes Rating": 76, "Title": "Silverado"}, {"IMDB Rating": 7.5, "Production Budget": 4500000, "Rotten Tomatoes Rating": 91, "Title": "Salvador"}, {"IMDB Rating": null, "Production Budget": 1200000, "Rotten Tomatoes Rating": 97, "Title": "Sex, Lies, and Videotape"}, {"IMDB Rating": 5.9, "Production Budget": 400000, "Rotten Tomatoes Rating": null, "Title": "Show Me"}, {"IMDB Rating": 8, "Production Budget": 1300000, "Rotten Tomatoes Rating": null, "Title": "Simon"}, {"IMDB Rating": 3.8, "Production Budget": 42000000, "Rotten Tomatoes Rating": null, "Title": "Super Mario Bros."}, {"IMDB Rating": 7, "Production Budget": 5100000, "Rotten Tomatoes Rating": 63, "Title": "Somewhere in Time"}, {"IMDB Rating": 6.9, "Production Budget": 2000000, "Rotten Tomatoes Rating": 86, "Title": "Smoke Signals"}, {"IMDB Rating": 6.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": 61, "Title": "Serial Mom"}, {"IMDB Rating": 7.6, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Sommersturm"}, {"IMDB Rating": 6.4, "Production Budget": 4400000, "Rotten Tomatoes Rating": 89, "Title": "Silent Movie"}, {"IMDB Rating": 6.1, "Production Budget": 22000000, "Rotten Tomatoes Rating": 79, "Title": "The Santa Clause"}, {"IMDB Rating": 5.7, "Production Budget": 500000, "Rotten Tomatoes Rating": 50, "Title": "The Singles Ward"}, {"IMDB Rating": 7.7, "Production Budget": 16500000, "Rotten Tomatoes Rating": 98, "Title": "Sense and Sensibility"}, {"IMDB Rating": 8.4, "Production Budget": 2540000, "Rotten Tomatoes Rating": 100, "Title": "Singin' in the Rain"}, {"IMDB Rating": 4.8, "Production Budget": 200000, "Rotten Tomatoes Rating": null, "Title": "Solitude"}, {"IMDB Rating": 6.3, "Production Budget": 8200000, "Rotten Tomatoes Rating": 81, "Title": "The Sound of Music"}, {"IMDB Rating": 6, "Production Budget": 3500000, "Rotten Tomatoes Rating": 60, "Title": "She's the One"}, {"IMDB Rating": 5.6, "Production Budget": 450000, "Rotten Tomatoes Rating": 100, "Title": "Straight out of Brooklyn"}, {"IMDB Rating": 6.9, "Production Budget": 22700000, "Rotten Tomatoes Rating": 65, "Title": "Spaceballs"}, {"IMDB Rating": 2.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 90, "Title": "Speed"}, {"IMDB Rating": 5.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 39, "Title": "Species"}, {"IMDB Rating": 4.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Sphinx"}, {"IMDB Rating": 4.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 9, "Title": "Spaced Invaders"}, {"IMDB Rating": 7.7, "Production Budget": 1500000, "Rotten Tomatoes Rating": 87, "Title": "Spellbound"}, {"IMDB Rating": 6.2, "Production Budget": 8000000, "Rotten Tomatoes Rating": 91, "Title": "Splash"}, {"IMDB Rating": 3.4, "Production Budget": 17000000, "Rotten Tomatoes Rating": null, "Title": "Superman IV: The Quest for Peace"}, {"IMDB Rating": 6.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "Superman II"}, {"IMDB Rating": 4.7, "Production Budget": 39000000, "Rotten Tomatoes Rating": 23, "Title": "Superman III"}, {"IMDB Rating": 5.5, "Production Budget": 1000000, "Rotten Tomatoes Rating": 17, "Title": "Sparkler"}, {"IMDB Rating": 4.9, "Production Budget": 55000000, "Rotten Tomatoes Rating": 94, "Title": "Superman"}, {"IMDB Rating": 4.9, "Production Budget": 45000000, "Rotten Tomatoes Rating": 4, "Title": "The Specialist"}, {"IMDB Rating": 6.8, "Production Budget": 21600000, "Rotten Tomatoes Rating": null, "Title": "The Sorcerer"}, {"IMDB Rating": 6.7, "Production Budget": 300000, "Rotten Tomatoes Rating": null, "Title": "Sisters in Law"}, {"IMDB Rating": 6.1, "Production Budget": 35000000, "Rotten Tomatoes Rating": 53, "Title": "Smilla's Sense of Snow"}, {"IMDB Rating": 5.9, "Production Budget": 50000000, "Rotten Tomatoes Rating": 9, "Title": "Assassins"}, {"IMDB Rating": 6.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 48, "Title": "Star Trek: The Motion Picture"}, {"IMDB Rating": 6.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek III: The Search for Spock"}, {"IMDB Rating": 7.3, "Production Budget": 24000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek IV: The Voyage Home"}, {"IMDB Rating": 8.2, "Production Budget": 8000000, "Rotten Tomatoes Rating": 94, "Title": "Stand by Me"}, {"IMDB Rating": 4.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 29, "Title": "Stone Cold"}, {"IMDB Rating": 4.3, "Production Budget": 200000, "Rotten Tomatoes Rating": null, "Title": "The Stewardesses"}, {"IMDB Rating": 3.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 13, "Title": "Street Fighter"}, {"IMDB Rating": 7.8, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek II: The Wrath of Khan"}, {"IMDB Rating": 8.4, "Production Budget": 5500000, "Rotten Tomatoes Rating": 91, "Title": "The Sting"}, {"IMDB Rating": 7, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Stonewall"}, {"IMDB Rating": 5, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek V: The Final Frontier"}, {"IMDB Rating": 7.2, "Production Budget": 27000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek VI: The Undiscovered Country"}, {"IMDB Rating": 6.5, "Production Budget": 38000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek: Generations"}, {"IMDB Rating": 6.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 88, "Title": "Stripes"}, {"IMDB Rating": 3.9, "Production Budget": 50000000, "Rotten Tomatoes Rating": 12, "Title": "Striptease"}, {"IMDB Rating": 7, "Production Budget": 780000, "Rotten Tomatoes Rating": null, "Title": "Saints and Soldiers"}, {"IMDB Rating": 3.3, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Steppin: The Movie"}, {"IMDB Rating": 8.3, "Production Budget": 1200000, "Rotten Tomatoes Rating": 98, "Title": "Strangers on a Train"}, {"IMDB Rating": 5.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 22, "Title": "Sugar Hill"}, {"IMDB Rating": 6.1, "Production Budget": 5700000, "Rotten Tomatoes Rating": 29, "Title": "Stiff Upper Lips"}, {"IMDB Rating": 8.8, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Shichinin no samurai"}, {"IMDB Rating": 7, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Sweet Charity"}, {"IMDB Rating": 7.1, "Production Budget": 1000000, "Rotten Tomatoes Rating": 100, "Title": "Sands of Iwo Jima"}, {"IMDB Rating": 7.1, "Production Budget": 14000000, "Rotten Tomatoes Rating": 78, "Title": "The Spy Who Loved Me"}, {"IMDB Rating": 5.2, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "The Swindle"}, {"IMDB Rating": 6.2, "Production Budget": 200000, "Rotten Tomatoes Rating": 86, "Title": "Swingers"}, {"IMDB Rating": 7.8, "Production Budget": 1488000, "Rotten Tomatoes Rating": 97, "Title": "Snow White and the Seven Dwarfs"}, {"IMDB Rating": 7.8, "Production Budget": 5000000, "Rotten Tomatoes Rating": 100, "Title": "The Sweet Hereafter"}, {"IMDB Rating": 7.3, "Production Budget": 1600000, "Rotten Tomatoes Rating": 100, "Title": "She Wore a Yellow Ribbon"}, {"IMDB Rating": 5, "Production Budget": 1100000, "Rotten Tomatoes Rating": 39, "Title": "Sex with Strangers"}, {"IMDB Rating": 4.7, "Production Budget": 18000000, "Rotten Tomatoes Rating": 7, "Title": "Spy Hard"}, {"IMDB Rating": 6.9, "Production Budget": 23000000, "Rotten Tomatoes Rating": null, "Title": "Shi Yue Wei Cheng"}, {"IMDB Rating": 6.9, "Production Budget": 4500000, "Rotten Tomatoes Rating": null, "Title": "Tango"}, {"IMDB Rating": 7.1, "Production Budget": 34000000, "Rotten Tomatoes Rating": 81, "Title": "The Age of Innocence"}, {"IMDB Rating": 7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 80, "Title": "Talk Radio"}, {"IMDB Rating": 6.1, "Production Budget": 140000, "Rotten Tomatoes Rating": 90, "Title": "The Texas Chainsaw Massacre"}, {"IMDB Rating": 5.1, "Production Budget": 4700000, "Rotten Tomatoes Rating": 43, "Title": "The Texas Chainsaw Massacre 2"}, {"IMDB Rating": 5.5, "Production Budget": 28000000, "Rotten Tomatoes Rating": 47, "Title": "Timecop"}, {"IMDB Rating": 6.1, "Production Budget": 45000000, "Rotten Tomatoes Rating": 69, "Title": "Tin Cup"}, {"IMDB Rating": 6.6, "Production Budget": 3000000, "Rotten Tomatoes Rating": 81, "Title": "Torn Curtain"}, {"IMDB Rating": 6.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 87, "Title": "To Die For"}, {"IMDB Rating": 5.5, "Production Budget": 3500000, "Rotten Tomatoes Rating": 33, "Title": "Terror Train"}, {"IMDB Rating": 2.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 14, "Title": "Teen Wolf Too"}, {"IMDB Rating": 5.6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 40, "Title": "The Fan"}, {"IMDB Rating": 5.3, "Production Budget": 2600000, "Rotten Tomatoes Rating": 38, "Title": "Timber Falls"}, {"IMDB Rating": 5.8, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "The Incredibly True Adventure of Two Girls in Love"}, {"IMDB Rating": 6.3, "Production Budget": 10500000, "Rotten Tomatoes Rating": null, "Title": "There Goes My Baby"}, {"IMDB Rating": 4.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 42, "Title": "Tank Girl"}, {"IMDB Rating": 6.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": 45, "Title": "Top Gun"}, {"IMDB Rating": 7, "Production Budget": 9000000, "Rotten Tomatoes Rating": 91, "Title": "Thunderball"}, {"IMDB Rating": 3.4, "Production Budget": 2500000, "Rotten Tomatoes Rating": null, "Title": "The Calling"}, {"IMDB Rating": 5.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 45, "Title": "The Craft"}, {"IMDB Rating": 8.3, "Production Budget": 325000, "Rotten Tomatoes Rating": 97, "Title": "It Happened One Night"}, {"IMDB Rating": 5.6, "Production Budget": 22000000, "Rotten Tomatoes Rating": 33, "Title": "The Net"}, {"IMDB Rating": 6.1, "Production Budget": 3500000, "Rotten Tomatoes Rating": null, "Title": "La otra conquista"}, {"IMDB Rating": 4.4, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "The Journey"}, {"IMDB Rating": 7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 88, "Title": "They Live"}, {"IMDB Rating": 5.8, "Production Budget": 6000000, "Rotten Tomatoes Rating": 33, "Title": "Tales from the Hood"}, {"IMDB Rating": 6.9, "Production Budget": 12000000, "Rotten Tomatoes Rating": 94, "Title": "Time Bandits"}, {"IMDB Rating": 7.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 77, "Title": "Tombstone"}, {"IMDB Rating": 5, "Production Budget": 825000, "Rotten Tomatoes Rating": 22, "Title": "Time Changer"}, {"IMDB Rating": 5.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze"}, {"IMDB Rating": 4.3, "Production Budget": 21000000, "Rotten Tomatoes Rating": 30, "Title": "Teenage Mutant Ninja Turtles III"}, {"IMDB Rating": 5.8, "Production Budget": 55000000, "Rotten Tomatoes Rating": 39, "Title": "Tango & Cash"}, {"IMDB Rating": 6.4, "Production Budget": 13500000, "Rotten Tomatoes Rating": null, "Title": "Teenage Mutant Ninja Turtles"}, {"IMDB Rating": 6.2, "Production Budget": 4000000, "Rotten Tomatoes Rating": 71, "Title": "Topaz"}, {"IMDB Rating": 6.5, "Production Budget": 14000000, "Rotten Tomatoes Rating": 79, "Title": "Taps"}, {"IMDB Rating": 8.2, "Production Budget": 3100000, "Rotten Tomatoes Rating": 89, "Title": "Trainspotting"}, {"IMDB Rating": 7.8, "Production Budget": 5800000, "Rotten Tomatoes Rating": 83, "Title": "The Train"}, {"IMDB Rating": 4.7, "Production Budget": 18000000, "Rotten Tomatoes Rating": 8, "Title": "Troop Beverly Hills"}, {"IMDB Rating": 6.9, "Production Budget": 375000, "Rotten Tomatoes Rating": null, "Title": "Trekkies"}, {"IMDB Rating": 7.2, "Production Budget": 100000000, "Rotten Tomatoes Rating": 69, "Title": "True Lies"}, {"IMDB Rating": 8.5, "Production Budget": 100000000, "Rotten Tomatoes Rating": 98, "Title": "Terminator 2: Judgment Day"}, {"IMDB Rating": 7.4, "Production Budget": 1800000, "Rotten Tomatoes Rating": null, "Title": "Travellers and Magicians"}, {"IMDB Rating": 8.1, "Production Budget": 6400000, "Rotten Tomatoes Rating": 100, "Title": "The Terminator"}, {"IMDB Rating": 7.2, "Production Budget": 10000000, "Rotten Tomatoes Rating": 88, "Title": "Tremors"}, {"IMDB Rating": 7.9, "Production Budget": 12500000, "Rotten Tomatoes Rating": 91, "Title": "True Romance"}, {"IMDB Rating": 2.9, "Production Budget": 17000000, "Rotten Tomatoes Rating": 68, "Title": "Tron"}, {"IMDB Rating": 6.7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 60, "Title": "Trapeze"}, {"IMDB Rating": 5.5, "Production Budget": 25000, "Rotten Tomatoes Rating": null, "Title": "The Terrorist"}, {"IMDB Rating": 3.3, "Production Budget": 200000, "Rotten Tomatoes Rating": null, "Title": "Trois"}, {"IMDB Rating": 6.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 33, "Title": "Things to Do in Denver when You're Dead"}, {"IMDB Rating": 7.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 68, "Title": "A Time to Kill"}, {"IMDB Rating": 7.4, "Production Budget": 65000000, "Rotten Tomatoes Rating": 81, "Title": "Total Recall"}, {"IMDB Rating": 5.2, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "This Thing of Ours"}, {"IMDB Rating": 7.4, "Production Budget": 15000000, "Rotten Tomatoes Rating": 87, "Title": "Tootsie"}, {"IMDB Rating": 6.7, "Production Budget": 2500000, "Rotten Tomatoes Rating": 92, "Title": "That Thing You Do!"}, {"IMDB Rating": 7.2, "Production Budget": 1200000, "Rotten Tomatoes Rating": 89, "Title": "The Trouble With Harry"}, {"IMDB Rating": null, "Production Budget": 15000000, "Rotten Tomatoes Rating": 33, "Title": "Twins"}, {"IMDB Rating": 6, "Production Budget": 88000000, "Rotten Tomatoes Rating": 57, "Title": "Twister"}, {"IMDB Rating": 8.6, "Production Budget": 1000000, "Rotten Tomatoes Rating": 98, "Title": "Taxi Driver"}, {"IMDB Rating": 6, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Tycoon"}, {"IMDB Rating": 8.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 100, "Title": "Toy Story"}, {"IMDB Rating": 6.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 67, "Title": "Twilight Zone: The Movie"}, {"IMDB Rating": 5.7, "Production Budget": 18000000, "Rotten Tomatoes Rating": 23, "Title": "Unforgettable"}, {"IMDB Rating": 6.6, "Production Budget": 5000000, "Rotten Tomatoes Rating": 55, "Title": "UHF"}, {"IMDB Rating": 7, "Production Budget": 2700000, "Rotten Tomatoes Rating": 94, "Title": "Ulee's Gold"}, {"IMDB Rating": 5.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": 34, "Title": "Under Siege 2: Dark Territory"}, {"IMDB Rating": 8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 81, "Title": "The Untouchables"}, {"IMDB Rating": 4.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Under the Rainbow"}, {"IMDB Rating": 7.3, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Veer-Zaara"}, {"IMDB Rating": 7.3, "Production Budget": 5952000, "Rotten Tomatoes Rating": null, "Title": "Videodrome"}, {"IMDB Rating": 6.7, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Les Visiteurs"}, {"IMDB Rating": 7.3, "Production Budget": 2160000, "Rotten Tomatoes Rating": null, "Title": "The Valley of Decision"}, {"IMDB Rating": 4.3, "Production Budget": 14000000, "Rotten Tomatoes Rating": 11, "Title": "Vampire in Brooklyn"}, {"IMDB Rating": 7.7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 96, "Title": "The Verdict"}, {"IMDB Rating": 5.3, "Production Budget": 30000000, "Rotten Tomatoes Rating": 34, "Title": "Virtuosity"}, {"IMDB Rating": 6.7, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Everything Put Together"}, {"IMDB Rating": 6.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 39, "Title": "A View to a Kill"}, {"IMDB Rating": 5.6, "Production Budget": 6500000, "Rotten Tomatoes Rating": null, "Title": "The Work and the Glory: American Zion"}, {"IMDB Rating": 6.4, "Production Budget": 14000000, "Rotten Tomatoes Rating": 74, "Title": "A Walk on the Moon"}, {"IMDB Rating": 6, "Production Budget": 7500000, "Rotten Tomatoes Rating": 17, "Title": "The Work and the Glory"}, {"IMDB Rating": 5.1, "Production Budget": 103000, "Rotten Tomatoes Rating": null, "Title": "The Work and the Story"}, {"IMDB Rating": 7.4, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Waiting for Guffman"}, {"IMDB Rating": 7.6, "Production Budget": 70000000, "Rotten Tomatoes Rating": 98, "Title": "Who Framed Roger Rabbit?"}, {"IMDB Rating": null, "Production Budget": 14000000, "Rotten Tomatoes Rating": 67, "Title": "White Fang"}, {"IMDB Rating": 6.4, "Production Budget": 38000000, "Rotten Tomatoes Rating": 63, "Title": "White Squall"}, {"IMDB Rating": 7.8, "Production Budget": 11000000, "Rotten Tomatoes Rating": 88, "Title": "What's Eating Gilbert Grape"}, {"IMDB Rating": 5.2, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Witchboard"}, {"IMDB Rating": 4.5, "Production Budget": 24000000, "Rotten Tomatoes Rating": 37, "Title": "The Wiz"}, {"IMDB Rating": 6.5, "Production Budget": 1000000, "Rotten Tomatoes Rating": 86, "Title": "Walking and Talking"}, {"IMDB Rating": 8.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": 97, "Title": "The Wild Bunch"}, {"IMDB Rating": 7.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 78, "Title": "Wall Street"}, {"IMDB Rating": 7.5, "Production Budget": 1200000, "Rotten Tomatoes Rating": 89, "Title": "The Wrong Man"}, {"IMDB Rating": 7.9, "Production Budget": 2000000, "Rotten Tomatoes Rating": 96, "Title": "Wings"}, {"IMDB Rating": 5.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 50, "Title": "We're No Angels"}, {"IMDB Rating": 6, "Production Budget": 70000000, "Rotten Tomatoes Rating": 60, "Title": "Wolf"}, {"IMDB Rating": 4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 10, "Title": "Warriors of Virtue"}, {"IMDB Rating": 6.4, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "War Games"}, {"IMDB Rating": 5.9, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Warlock"}, {"IMDB Rating": 6.8, "Production Budget": 6000000, "Rotten Tomatoes Rating": 50, "Title": "War and Peace"}, {"IMDB Rating": 4.9, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Warlock: The Armageddon"}, {"IMDB Rating": 6.5, "Production Budget": 15300000, "Rotten Tomatoes Rating": null, "Title": "Wasabi"}, {"IMDB Rating": 7.7, "Production Budget": 6000000, "Rotten Tomatoes Rating": 92, "Title": "West Side Story"}, {"IMDB Rating": 7.3, "Production Budget": 800000, "Rotten Tomatoes Rating": null, "Title": "Welcome to the Dollhouse"}, {"IMDB Rating": 7.6, "Production Budget": 12000000, "Rotten Tomatoes Rating": 94, "Title": "Witness"}, {"IMDB Rating": 5.7, "Production Budget": 175000000, "Rotten Tomatoes Rating": 42, "Title": "Waterworld"}, {"IMDB Rating": 7.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 90, "Title": "Willy Wonka & the Chocolate Factory"}, {"IMDB Rating": 6.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 84, "Title": "Wayne's World"}, {"IMDB Rating": 6.4, "Production Budget": 63000000, "Rotten Tomatoes Rating": 42, "Title": "Wyatt Earp"}, {"IMDB Rating": 8.3, "Production Budget": 2777000, "Rotten Tomatoes Rating": null, "Title": "The Wizard of Oz"}, {"IMDB Rating": 6.3, "Production Budget": 55000000, "Rotten Tomatoes Rating": 65, "Title": "Executive Decision"}, {"IMDB Rating": 6.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": 67, "Title": "Exodus"}, {"IMDB Rating": 8.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 84, "Title": "The Exorcist"}, {"IMDB Rating": 5.9, "Production Budget": 38000000, "Rotten Tomatoes Rating": 55, "Title": "Extreme Measures"}, {"IMDB Rating": 8, "Production Budget": 1644000, "Rotten Tomatoes Rating": 96, "Title": "You Can't Take It With You"}, {"IMDB Rating": 5.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Eye for an Eye"}, {"IMDB Rating": 6.6, "Production Budget": 13000000, "Rotten Tomatoes Rating": 40, "Title": "Young Guns"}, {"IMDB Rating": 8, "Production Budget": 2800000, "Rotten Tomatoes Rating": 93, "Title": "Young Frankenstein"}, {"IMDB Rating": 6.2, "Production Budget": 12000000, "Rotten Tomatoes Rating": 71, "Title": "Yentl"}, {"IMDB Rating": 7, "Production Budget": 9500000, "Rotten Tomatoes Rating": 70, "Title": "You Only Live Twice"}, {"IMDB Rating": 7.3, "Production Budget": 300000, "Rotten Tomatoes Rating": null, "Title": "Ayurveda: Art of Being"}, {"IMDB Rating": 6.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": 63, "Title": "Young Sherlock Holmes"}, {"IMDB Rating": 4.4, "Production Budget": 85000000, "Rotten Tomatoes Rating": 30, "Title": "102 Dalmatians"}, {"IMDB Rating": 6.9, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "Ten Things I Hate About You"}, {"IMDB Rating": 5.8, "Production Budget": 105000000, "Rotten Tomatoes Rating": 9, "Title": "10,000 B.C."}, {"IMDB Rating": 6.3, "Production Budget": 8000000, "Rotten Tomatoes Rating": 19, "Title": "10th & Wolf"}, {"IMDB Rating": 7.3, "Production Budget": 6000000, "Rotten Tomatoes Rating": null, "Title": "11:14"}, {"IMDB Rating": 7.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 76, "Title": "Cloverfield"}, {"IMDB Rating": 5.4, "Production Budget": 20000000, "Rotten Tomatoes Rating": 28, "Title": "12 Rounds"}, {"IMDB Rating": 7.1, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Thirteen Conversations About One Thing"}, {"IMDB Rating": 6.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "13 Going On 30"}, {"IMDB Rating": 5.1, "Production Budget": 19000000, "Rotten Tomatoes Rating": null, "Title": "Thirteen Ghosts"}, {"IMDB Rating": 6.9, "Production Budget": 22500000, "Rotten Tomatoes Rating": 78, "Title": 1408}, {"IMDB Rating": 6.1, "Production Budget": 42000000, "Rotten Tomatoes Rating": 32, "Title": "15 Minutes"}, {"IMDB Rating": 6.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 55, "Title": "16 Blocks"}, {"IMDB Rating": 5.7, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "One Man's Hero"}, {"IMDB Rating": 4.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": 8, "Title": "First Daughter"}, {"IMDB Rating": 6.2, "Production Budget": 200000000, "Rotten Tomatoes Rating": 39, "Title": 2012}, {"IMDB Rating": 7.5, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": 2046}, {"IMDB Rating": 4.9, "Production Budget": 66000, "Rotten Tomatoes Rating": null, "Title": "20 Dates"}, {"IMDB Rating": 6.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 35, "Title": 21}, {"IMDB Rating": 7.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 81, "Title": "21 Grams"}, {"IMDB Rating": 7.9, "Production Budget": 4500000, "Rotten Tomatoes Rating": 78, "Title": "25th Hour"}, {"IMDB Rating": 5.8, "Production Budget": 43000000, "Rotten Tomatoes Rating": 30, "Title": "28 Days"}, {"IMDB Rating": 7.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 89, "Title": "28 Days Later..."}, {"IMDB Rating": 7.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "28 Weeks Later"}, {"IMDB Rating": 6, "Production Budget": 72000000, "Rotten Tomatoes Rating": 77, "Title": "Two Brothers"}, {"IMDB Rating": 5.7, "Production Budget": 37000000, "Rotten Tomatoes Rating": 19, "Title": "Cop Out"}, {"IMDB Rating": 7.3, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Two Lovers"}, {"IMDB Rating": 7.5, "Production Budget": 30000000, "Rotten Tomatoes Rating": 60, "Title": "Secondhand Lions"}, {"IMDB Rating": 5.6, "Production Budget": 13000000, "Rotten Tomatoes Rating": 43, "Title": "Two Can Play That Game"}, {"IMDB Rating": 5.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 42, "Title": "Two Weeks Notice"}, {"IMDB Rating": 7.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 60, "Title": 300}, {"IMDB Rating": 6.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 49, "Title": "30 Days of Night"}, {"IMDB Rating": 7.3, "Production Budget": 48000000, "Rotten Tomatoes Rating": 94, "Title": "Three Kings"}, {"IMDB Rating": 5.6, "Production Budget": 62000000, "Rotten Tomatoes Rating": 14, "Title": "3000 Miles to Graceland"}, {"IMDB Rating": 2.9, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "3 Strikes"}, {"IMDB Rating": 7.9, "Production Budget": 48000000, "Rotten Tomatoes Rating": 89, "Title": "3:10 to Yuma"}, {"IMDB Rating": 5.4, "Production Budget": 17000000, "Rotten Tomatoes Rating": 38, "Title": "40 Days and 40 Nights"}, {"IMDB Rating": 7.5, "Production Budget": 26000000, "Rotten Tomatoes Rating": null, "Title": "The 40 Year-old Virgin"}, {"IMDB Rating": 6.8, "Production Budget": 30000000, "Rotten Tomatoes Rating": 52, "Title": "Four Brothers"}, {"IMDB Rating": 5.7, "Production Budget": 80000000, "Rotten Tomatoes Rating": 25, "Title": "Four Christmases"}, {"IMDB Rating": 6.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 41, "Title": "The Four Feathers"}, {"IMDB Rating": 6, "Production Budget": 10000000, "Rotten Tomatoes Rating": 17, "Title": "The Fourth Kind"}, {"IMDB Rating": 6.8, "Production Budget": 75000000, "Rotten Tomatoes Rating": 44, "Title": "50 First Dates"}, {"IMDB Rating": 6.4, "Production Budget": 2000000, "Rotten Tomatoes Rating": 60, "Title": "Six-String Samurai"}, {"IMDB Rating": 5.8, "Production Budget": 82000000, "Rotten Tomatoes Rating": 40, "Title": "The 6th Day"}, {"IMDB Rating": 7.6, "Production Budget": 54000000, "Rotten Tomatoes Rating": 27, "Title": "Seven Pounds"}, {"IMDB Rating": 5.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 5, "Title": "88 Minutes"}, {"IMDB Rating": 7.3, "Production Budget": 40000000, "Rotten Tomatoes Rating": 71, "Title": "Eight Below"}, {"IMDB Rating": 5.4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 47, "Title": "Eight Legged Freaks"}, {"IMDB Rating": 6.7, "Production Budget": 41000000, "Rotten Tomatoes Rating": 74, "Title": "8 Mile"}, {"IMDB Rating": 7, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "8 femmes"}, {"IMDB Rating": 7.8, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": 9}, {"IMDB Rating": 5.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 4, "Title": "The Whole Ten Yards"}, {"IMDB Rating": 6.6, "Production Budget": 24000000, "Rotten Tomatoes Rating": 45, "Title": "The Whole Nine Yards"}, {"IMDB Rating": 7.4, "Production Budget": 27000000, "Rotten Tomatoes Rating": 93, "Title": "About a Boy"}, {"IMDB Rating": 7.3, "Production Budget": 45000000, "Rotten Tomatoes Rating": 91, "Title": "A Bug's Life"}, {"IMDB Rating": 4.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 17, "Title": "Abandon"}, {"IMDB Rating": 6.5, "Production Budget": 50000000, "Rotten Tomatoes Rating": 46, "Title": "Absolute Power"}, {"IMDB Rating": 6.3, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Adoration"}, {"IMDB Rating": 7.9, "Production Budget": 18500000, "Rotten Tomatoes Rating": 91, "Title": "Adaptation"}, {"IMDB Rating": 6.4, "Production Budget": 18000000, "Rotten Tomatoes Rating": 40, "Title": "Anything Else"}, {"IMDB Rating": 7.3, "Production Budget": 12500000, "Rotten Tomatoes Rating": 79, "Title": "Antwone Fisher"}, {"IMDB Rating": 8.1, "Production Budget": 55000000, "Rotten Tomatoes Rating": 10, "Title": "Aeon Flux"}, {"IMDB Rating": 6.2, "Production Budget": 57000000, "Rotten Tomatoes Rating": 18, "Title": "After the Sunset"}, {"IMDB Rating": 6.8, "Production Budget": 35000000, "Rotten Tomatoes Rating": 24, "Title": "A Good Year"}, {"IMDB Rating": 7.3, "Production Budget": 70000000, "Rotten Tomatoes Rating": null, "Title": "Agora"}, {"IMDB Rating": 4.6, "Production Budget": 3000000, "Rotten Tomatoes Rating": 45, "Title": "Air Bud"}, {"IMDB Rating": 6.3, "Production Budget": 85000000, "Rotten Tomatoes Rating": 78, "Title": "Air Force One"}, {"IMDB Rating": 7.6, "Production Budget": 8000000, "Rotten Tomatoes Rating": 83, "Title": "Akeelah and the Bee"}, {"IMDB Rating": 6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 11, "Title": "All the King's Men"}, {"IMDB Rating": 5.9, "Production Budget": 92000000, "Rotten Tomatoes Rating": 30, "Title": "The Alamo"}, {"IMDB Rating": 5.3, "Production Budget": 14000000, "Rotten Tomatoes Rating": 29, "Title": "All About the Benjamins"}, {"IMDB Rating": 5.9, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Albino Alligator"}, {"IMDB Rating": 5.8, "Production Budget": 38000000, "Rotten Tomatoes Rating": 37, "Title": "Sweet Home Alabama"}, {"IMDB Rating": 4, "Production Budget": 45000000, "Rotten Tomatoes Rating": 21, "Title": "Fat Albert"}, {"IMDB Rating": 6.7, "Production Budget": 200000000, "Rotten Tomatoes Rating": 51, "Title": "Alice in Wonderland"}, {"IMDB Rating": 6.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 49, "Title": "Alfie"}, {"IMDB Rating": 7.3, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "It's All Gone Pete Tong"}, {"IMDB Rating": 6.6, "Production Budget": 109000000, "Rotten Tomatoes Rating": 67, "Title": "Ali"}, {"IMDB Rating": 6.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": null, "Title": "Alien: Resurrection"}, {"IMDB Rating": 8.5, "Production Budget": 9000000, "Rotten Tomatoes Rating": 97, "Title": "Alien"}, {"IMDB Rating": 6.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 41, "Title": "A Lot Like Love"}, {"IMDB Rating": 5.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 32, "Title": "All the Pretty Horses"}, {"IMDB Rating": 8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 88, "Title": "Almost Famous"}, {"IMDB Rating": 5.5, "Production Budget": 175000000, "Rotten Tomatoes Rating": 23, "Title": "Evan Almighty"}, {"IMDB Rating": 6.6, "Production Budget": 81000000, "Rotten Tomatoes Rating": 48, "Title": "Bruce Almighty"}, {"IMDB Rating": 2.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 1, "Title": "Alone in the Dark"}, {"IMDB Rating": 6.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Alpha and Omega 3D"}, {"IMDB Rating": 6.1, "Production Budget": 28000000, "Rotten Tomatoes Rating": 32, "Title": "Along Came a Spider"}, {"IMDB Rating": 6.9, "Production Budget": 12000000, "Rotten Tomatoes Rating": 77, "Title": "The Dangerous Lives of Altar Boys"}, {"IMDB Rating": 5.9, "Production Budget": 28000000, "Rotten Tomatoes Rating": null, "Title": "Alatriste"}, {"IMDB Rating": 5.5, "Production Budget": 55000000, "Rotten Tomatoes Rating": 27, "Title": "Alvin and the Chipmunks"}, {"IMDB Rating": 5.4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 11, "Title": "Alex & Emma"}, {"IMDB Rating": 5.4, "Production Budget": 155000000, "Rotten Tomatoes Rating": 16, "Title": "Alexander"}, {"IMDB Rating": 8.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 89, "Title": "American Beauty"}, {"IMDB Rating": 4.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 12, "Title": "An American Carol"}, {"IMDB Rating": 5.7, "Production Budget": 17000000, "Rotten Tomatoes Rating": 40, "Title": "American Dreamz"}, {"IMDB Rating": 5.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 21, "Title": "Amelia"}, {"IMDB Rating": 8.5, "Production Budget": 10350000, "Rotten Tomatoes Rating": null, "Title": "Le Fabuleux destin d'AmÈlie Poulain"}, {"IMDB Rating": 8.6, "Production Budget": 10000000, "Rotten Tomatoes Rating": 83, "Title": "American History X"}, {"IMDB Rating": 7.9, "Production Budget": 100000000, "Rotten Tomatoes Rating": 79, "Title": "American Gangster"}, {"IMDB Rating": 4.9, "Production Budget": 14000000, "Rotten Tomatoes Rating": 12, "Title": "An American Haunting"}, {"IMDB Rating": 7.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 77, "Title": "Amistad"}, {"IMDB Rating": 7.2, "Production Budget": 6800000, "Rotten Tomatoes Rating": null, "Title": "AimÈe & Jaguar"}, {"IMDB Rating": 8.1, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Amores Perros"}, {"IMDB Rating": 6.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 52, "Title": "American Pie 2"}, {"IMDB Rating": 6.1, "Production Budget": 55000000, "Rotten Tomatoes Rating": 56, "Title": "American Wedding"}, {"IMDB Rating": 6.9, "Production Budget": 12000000, "Rotten Tomatoes Rating": 59, "Title": "American Pie"}, {"IMDB Rating": 7.4, "Production Budget": 8000000, "Rotten Tomatoes Rating": 66, "Title": "American Psycho"}, {"IMDB Rating": 7.6, "Production Budget": 2000000, "Rotten Tomatoes Rating": 94, "Title": "American Splendor"}, {"IMDB Rating": 5.7, "Production Budget": 46000000, "Rotten Tomatoes Rating": 32, "Title": "America's Sweethearts"}, {"IMDB Rating": 5.8, "Production Budget": 18500000, "Rotten Tomatoes Rating": 24, "Title": "The Amityville Horror"}, {"IMDB Rating": 4.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Anacondas: The Hunt for the Blood Orchid"}, {"IMDB Rating": 4.2, "Production Budget": 45000000, "Rotten Tomatoes Rating": 38, "Title": "Anaconda"}, {"IMDB Rating": 6.6, "Production Budget": 53000000, "Rotten Tomatoes Rating": 85, "Title": "Anastasia"}, {"IMDB Rating": 7, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Anchorman: The Legend of Ron Burgundy"}, {"IMDB Rating": 6.7, "Production Budget": 150000000, "Rotten Tomatoes Rating": 35, "Title": "Angels & Demons"}, {"IMDB Rating": 7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 52, "Title": "Angela's Ashes"}, {"IMDB Rating": 5.5, "Production Budget": 38000000, "Rotten Tomatoes Rating": 32, "Title": "Angel Eyes"}, {"IMDB Rating": 6.1, "Production Budget": 56000000, "Rotten Tomatoes Rating": 43, "Title": "Anger Management"}, {"IMDB Rating": 5.7, "Production Budget": 17000000, "Rotten Tomatoes Rating": 11, "Title": "A Night at the Roxbury"}, {"IMDB Rating": 4.6, "Production Budget": 22000000, "Rotten Tomatoes Rating": 30, "Title": "The Animal"}, {"IMDB Rating": 6.5, "Production Budget": 75000000, "Rotten Tomatoes Rating": 51, "Title": "Anna and the King"}, {"IMDB Rating": 5.6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 27, "Title": "Analyze That"}, {"IMDB Rating": 6.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 68, "Title": "Analyze This"}, {"IMDB Rating": 6.2, "Production Budget": 45000000, "Rotten Tomatoes Rating": 63, "Title": "The Ant Bully"}, {"IMDB Rating": 6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 25, "Title": "Antitrust"}, {"IMDB Rating": 6.4, "Production Budget": 40000000, "Rotten Tomatoes Rating": 55, "Title": "Marie Antoinette"}, {"IMDB Rating": 6.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 95, "Title": "Antz"}, {"IMDB Rating": 5.9, "Production Budget": 23000000, "Rotten Tomatoes Rating": 64, "Title": "Anywhere But Here"}, {"IMDB Rating": 6.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 76, "Title": "Appaloosa"}, {"IMDB Rating": 7.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 64, "Title": "Apocalypto"}, {"IMDB Rating": 7.2, "Production Budget": 300000, "Rotten Tomatoes Rating": 85, "Title": "Pieces of April"}, {"IMDB Rating": 7.1, "Production Budget": 5000000, "Rotten Tomatoes Rating": 91, "Title": "The Apostle"}, {"IMDB Rating": 4.6, "Production Budget": 17000000, "Rotten Tomatoes Rating": 52, "Title": "Aquamarine"}, {"IMDB Rating": 6.6, "Production Budget": 15500000, "Rotten Tomatoes Rating": 56, "Title": "Ararat"}, {"IMDB Rating": 4.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 12, "Title": "Are We There Yet?"}, {"IMDB Rating": 7.2, "Production Budget": 21500000, "Rotten Tomatoes Rating": 60, "Title": "Arlington Road"}, {"IMDB Rating": 6.1, "Production Budget": 140000000, "Rotten Tomatoes Rating": 42, "Title": "Armageddon"}, {"IMDB Rating": 5.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 30, "Title": "Hey Arnold! The Movie"}, {"IMDB Rating": 5.2, "Production Budget": 39000000, "Rotten Tomatoes Rating": 12, "Title": "Against the Ropes"}, {"IMDB Rating": 6.2, "Production Budget": 90000000, "Rotten Tomatoes Rating": 31, "Title": "King Arthur"}, {"IMDB Rating": 5.9, "Production Budget": 80000000, "Rotten Tomatoes Rating": null, "Title": "Arthur et les Minimoys"}, {"IMDB Rating": 6.9, "Production Budget": 90000000, "Rotten Tomatoes Rating": null, "Title": "Artificial Intelligence: AI"}, {"IMDB Rating": 5.5, "Production Budget": 40000000, "Rotten Tomatoes Rating": 16, "Title": "The Art of War"}, {"IMDB Rating": 6.4, "Production Budget": 65000000, "Rotten Tomatoes Rating": null, "Title": "Astro Boy"}, {"IMDB Rating": 7.2, "Production Budget": 7000000, "Rotten Tomatoes Rating": 88, "Title": "A Serious Man"}, {"IMDB Rating": 6.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "The Astronaut Farmer"}, {"IMDB Rating": 7.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": 85, "Title": "As Good as it Gets"}, {"IMDB Rating": 7.6, "Production Budget": 7000000, "Rotten Tomatoes Rating": 85, "Title": "A Single Man"}, {"IMDB Rating": 7.6, "Production Budget": 17000000, "Rotten Tomatoes Rating": 90, "Title": "A Simple Plan"}, {"IMDB Rating": 7.4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 60, "Title": "Assault On Precinct 13"}, {"IMDB Rating": 4.9, "Production Budget": 34000000, "Rotten Tomatoes Rating": 16, "Title": "The Astronaut's Wife"}, {"IMDB Rating": 7.2, "Production Budget": 110000000, "Rotten Tomatoes Rating": 47, "Title": "The A-Team"}, {"IMDB Rating": 5.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 33, "Title": "At First Sight"}, {"IMDB Rating": 4.7, "Production Budget": 17000000, "Rotten Tomatoes Rating": 63, "Title": "ATL"}, {"IMDB Rating": 6.4, "Production Budget": 90000000, "Rotten Tomatoes Rating": null, "Title": "Atlantis: The Lost Empire"}, {"IMDB Rating": 6.8, "Production Budget": 31000000, "Rotten Tomatoes Rating": 49, "Title": "Hearts in Atlantis"}, {"IMDB Rating": 4.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 21, "Title": "Autumn in New York"}, {"IMDB Rating": 7.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 83, "Title": "Atonement"}, {"IMDB Rating": 6.7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 44, "Title": "The Rules of Attraction"}, {"IMDB Rating": 7.5, "Production Budget": 25000000, "Rotten Tomatoes Rating": 37, "Title": "August Rush"}, {"IMDB Rating": 7.5, "Production Budget": 45000000, "Rotten Tomatoes Rating": 53, "Title": "Across the Universe"}, {"IMDB Rating": 6.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "Austin Powers: The Spy Who Shagged Me"}, {"IMDB Rating": 6.2, "Production Budget": 63000000, "Rotten Tomatoes Rating": 54, "Title": "Austin Powers in Goldmember"}, {"IMDB Rating": 7.1, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Austin Powers: International Man of Mystery"}, {"IMDB Rating": 6.8, "Production Budget": 78000000, "Rotten Tomatoes Rating": 54, "Title": "Australia"}, {"IMDB Rating": 6.6, "Production Budget": 7000000, "Rotten Tomatoes Rating": 72, "Title": "Auto Focus"}, {"IMDB Rating": 8.3, "Production Budget": 237000000, "Rotten Tomatoes Rating": 83, "Title": "Avatar"}, {"IMDB Rating": 3.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": 15, "Title": "The Avengers"}, {"IMDB Rating": 7.6, "Production Budget": 110000000, "Rotten Tomatoes Rating": 88, "Title": "The Aviator"}, {"IMDB Rating": 5.4, "Production Budget": 70000000, "Rotten Tomatoes Rating": null, "Title": "AVP: Alien Vs. Predator"}, {"IMDB Rating": 5.6, "Production Budget": 110000000, "Rotten Tomatoes Rating": 30, "Title": "Around the World in 80 Days"}, {"IMDB Rating": 6.5, "Production Budget": 8600000, "Rotten Tomatoes Rating": 24, "Title": "Awake"}, {"IMDB Rating": 6.8, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "And When Did You Last See Your Father?"}, {"IMDB Rating": 7.3, "Production Budget": 21000000, "Rotten Tomatoes Rating": 66, "Title": "Away We Go"}, {"IMDB Rating": 6.1, "Production Budget": 50000000, "Rotten Tomatoes Rating": 23, "Title": "Don't Say a Word"}, {"IMDB Rating": 6.1, "Production Budget": 80000000, "Rotten Tomatoes Rating": 61, "Title": "Babe: Pig in the City"}, {"IMDB Rating": 7.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 69, "Title": "Babel"}, {"IMDB Rating": 5.3, "Production Budget": 45000000, "Rotten Tomatoes Rating": 7, "Title": "Babylon A.D."}, {"IMDB Rating": 4, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "My Baby's Daddy"}, {"IMDB Rating": 1.4, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Super Babies: Baby Geniuses 2"}, {"IMDB Rating": 2.2, "Production Budget": 13000000, "Rotten Tomatoes Rating": 2, "Title": "Baby Geniuses"}, {"IMDB Rating": 6.2, "Production Budget": 130000000, "Rotten Tomatoes Rating": 24, "Title": "Bad Boys II"}, {"IMDB Rating": 5.3, "Production Budget": 70000000, "Rotten Tomatoes Rating": 10, "Title": "Bad Company"}, {"IMDB Rating": 7.5, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "La mala educaciÛn"}, {"IMDB Rating": null, "Production Budget": 25000000, "Rotten Tomatoes Rating": 87, "Title": "Bad Lieutenant: Port of Call New Orleans"}, {"IMDB Rating": 7.1, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "The Bad News Bears"}, {"IMDB Rating": 7.2, "Production Budget": 37000000, "Rotten Tomatoes Rating": 78, "Title": "Burn After Reading"}, {"IMDB Rating": 5.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 26, "Title": "Bait"}, {"IMDB Rating": 4.9, "Production Budget": 16000000, "Rotten Tomatoes Rating": 11, "Title": "Boys and Girls"}, {"IMDB Rating": 6.6, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Black and White"}, {"IMDB Rating": 5.4, "Production Budget": 45000000, "Rotten Tomatoes Rating": 9, "Title": "Bangkok Dangerous"}, {"IMDB Rating": 5.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": 47, "Title": "The Banger Sisters"}, {"IMDB Rating": 7.8, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Les invasions barbares"}, {"IMDB Rating": 2.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Barney's Great Adventure"}, {"IMDB Rating": 3.9, "Production Budget": 70000000, "Rotten Tomatoes Rating": 7, "Title": "Basic Instinct 2"}, {"IMDB Rating": 6.3, "Production Budget": 50000000, "Rotten Tomatoes Rating": 21, "Title": "Basic"}, {"IMDB Rating": 8.3, "Production Budget": 150000000, "Rotten Tomatoes Rating": 84, "Title": "Batman Begins"}, {"IMDB Rating": 2.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": null, "Title": "Battlefield Earth: A Saga of the Year 3000"}, {"IMDB Rating": 8.9, "Production Budget": 185000000, "Rotten Tomatoes Rating": 93, "Title": "The Dark Knight"}, {"IMDB Rating": 3.3, "Production Budget": 6500000, "Rotten Tomatoes Rating": 17, "Title": "Bats"}, {"IMDB Rating": 6.1, "Production Budget": 1000000, "Rotten Tomatoes Rating": 43, "Title": "The Battle of Shaker Heights"}, {"IMDB Rating": 6.1, "Production Budget": 16000000, "Rotten Tomatoes Rating": 69, "Title": "Baby Boy"}, {"IMDB Rating": 8, "Production Budget": 160000000, "Rotten Tomatoes Rating": 72, "Title": "The Curious Case of Benjamin Button"}, {"IMDB Rating": 4.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 3, "Title": "Bless the Child"}, {"IMDB Rating": 4.8, "Production Budget": 21000000, "Rotten Tomatoes Rating": 9, "Title": "The Bachelor"}, {"IMDB Rating": 6.6, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "The Broken Hearts Club: A Romantic Comedy"}, {"IMDB Rating": 5.6, "Production Budget": 75000000, "Rotten Tomatoes Rating": 30, "Title": "Be Cool"}, {"IMDB Rating": 4.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": 40, "Title": "Big Daddy"}, {"IMDB Rating": 5.9, "Production Budget": 48000000, "Rotten Tomatoes Rating": 49, "Title": "Bedazzled"}, {"IMDB Rating": 7.2, "Production Budget": 67500000, "Rotten Tomatoes Rating": 52, "Title": "Body of Lies"}, {"IMDB Rating": 8, "Production Budget": 100000000, "Rotten Tomatoes Rating": 62, "Title": "Blood Diamond"}, {"IMDB Rating": 6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 50, "Title": "Mr. Bean's Holiday"}, {"IMDB Rating": 4.4, "Production Budget": 9000000, "Rotten Tomatoes Rating": 15, "Title": "Beautiful"}, {"IMDB Rating": 6.6, "Production Budget": 12000000, "Rotten Tomatoes Rating": 71, "Title": "Beavis and Butt-head Do America"}, {"IMDB Rating": 6.9, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Bend it Like Beckham"}, {"IMDB Rating": 7.5, "Production Budget": 1700000, "Rotten Tomatoes Rating": 93, "Title": "In the Bedroom"}, {"IMDB Rating": 6.3, "Production Budget": 150000000, "Rotten Tomatoes Rating": 51, "Title": "Bee Movie"}, {"IMDB Rating": 7.9, "Production Budget": 13000000, "Rotten Tomatoes Rating": 92, "Title": "Being John Malkovich"}, {"IMDB Rating": 6.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 36, "Title": "Behind Enemy Lines"}, {"IMDB Rating": 7.3, "Production Budget": 3300000, "Rotten Tomatoes Rating": null, "Title": "Bella"}, {"IMDB Rating": 5.3, "Production Budget": 53000000, "Rotten Tomatoes Rating": 77, "Title": "Beloved"}, {"IMDB Rating": 7.7, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Les Triplettes de Belleville"}, {"IMDB Rating": 7.2, "Production Budget": 500000, "Rotten Tomatoes Rating": 82, "Title": "Beyond the Mat"}, {"IMDB Rating": 5.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 12, "Title": "The Benchwarmers"}, {"IMDB Rating": 4.4, "Production Budget": 150000000, "Rotten Tomatoes Rating": 7, "Title": "The Last Airbender"}, {"IMDB Rating": 6.6, "Production Budget": 150000000, "Rotten Tomatoes Rating": 70, "Title": "Beowulf"}, {"IMDB Rating": 6.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 58, "Title": "The Importance of Being Earnest"}, {"IMDB Rating": 5.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": 38, "Title": "Beauty Shop"}, {"IMDB Rating": 7.1, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "Better Luck Tomorrow"}, {"IMDB Rating": 5.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": 43, "Title": "Big Fat Liar"}, {"IMDB Rating": 8.1, "Production Budget": 70000000, "Rotten Tomatoes Rating": 77, "Title": "Big Fish"}, {"IMDB Rating": 8, "Production Budget": 2000000, "Rotten Tomatoes Rating": 95, "Title": "Before Sunset"}, {"IMDB Rating": 5.8, "Production Budget": 13000000, "Rotten Tomatoes Rating": 41, "Title": "The Big Hit"}, {"IMDB Rating": 6, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "Birthday Girl"}, {"IMDB Rating": 8.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": 78, "Title": "The Big Lebowski"}, {"IMDB Rating": 4.7, "Production Budget": 33000000, "Rotten Tomatoes Rating": 30, "Title": "Big Momma's House"}, {"IMDB Rating": 7.7, "Production Budget": 95000000, "Rotten Tomatoes Rating": 76, "Title": "Black Hawk Down"}, {"IMDB Rating": 4.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Eye of the Beholder"}, {"IMDB Rating": 4.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "The Big Bounce"}, {"IMDB Rating": 6.3, "Production Budget": 45000000, "Rotten Tomatoes Rating": 48, "Title": "Big Trouble"}, {"IMDB Rating": 7.7, "Production Budget": 5000000, "Rotten Tomatoes Rating": 85, "Title": "Billy Elliot"}, {"IMDB Rating": 6.4, "Production Budget": 90000000, "Rotten Tomatoes Rating": 38, "Title": "Bicentennial Man"}, {"IMDB Rating": 6.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 39, "Title": "Birth"}, {"IMDB Rating": 7, "Production Budget": 16500000, "Rotten Tomatoes Rating": 58, "Title": "Becoming Jane"}, {"IMDB Rating": 5.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "Bridget Jones: The Edge Of Reason"}, {"IMDB Rating": 6.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 80, "Title": "Bridget Jones's Diary"}, {"IMDB Rating": 7.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 79, "Title": "The Bank Job"}, {"IMDB Rating": 7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 55, "Title": "Blade"}, {"IMDB Rating": 6.2, "Production Budget": 600000, "Rotten Tomatoes Rating": 85, "Title": "The Blair Witch Project"}, {"IMDB Rating": 6.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 60, "Title": "Blast from the Past"}, {"IMDB Rating": 5.5, "Production Budget": 54000000, "Rotten Tomatoes Rating": null, "Title": "Blade 2"}, {"IMDB Rating": 5.7, "Production Budget": 65000000, "Rotten Tomatoes Rating": null, "Title": "Blade: Trinity"}, {"IMDB Rating": 6.5, "Production Budget": 61000000, "Rotten Tomatoes Rating": 69, "Title": "Blades of Glory"}, {"IMDB Rating": 7.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 66, "Title": "The Blind Side"}, {"IMDB Rating": 6.3, "Production Budget": 50000000, "Rotten Tomatoes Rating": 54, "Title": "Blood Work"}, {"IMDB Rating": 8, "Production Budget": 22000000, "Rotten Tomatoes Rating": null, "Title": "Zwartboek"}, {"IMDB Rating": 4.3, "Production Budget": 9000000, "Rotten Tomatoes Rating": 15, "Title": "Black Christmas"}, {"IMDB Rating": 7.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 66, "Title": "Black Snake Moan"}, {"IMDB Rating": 6.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 42, "Title": "Blindness"}, {"IMDB Rating": 6.2, "Production Budget": 18000000, "Rotten Tomatoes Rating": 67, "Title": "Legally Blonde"}, {"IMDB Rating": 6.1, "Production Budget": 26000000, "Rotten Tomatoes Rating": 61, "Title": "Blood and Wine"}, {"IMDB Rating": 7.4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 54, "Title": "Blow"}, {"IMDB Rating": 3.4, "Production Budget": 70000000, "Rotten Tomatoes Rating": null, "Title": "Ballistic: Ecks vs. Sever"}, {"IMDB Rating": 5.5, "Production Budget": 30000000, "Rotten Tomatoes Rating": 62, "Title": "Blue Crush"}, {"IMDB Rating": 6.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 47, "Title": "Bamboozled"}, {"IMDB Rating": 8, "Production Budget": 78000000, "Rotten Tomatoes Rating": 78, "Title": "A Beautiful Mind"}, {"IMDB Rating": 4, "Production Budget": 40000000, "Rotten Tomatoes Rating": 6, "Title": "Big Momma's House 2"}, {"IMDB Rating": 7.8, "Production Budget": 7000000, "Rotten Tomatoes Rating": 19, "Title": "The Boondock Saints"}, {"IMDB Rating": 5.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 62, "Title": "Bandidas"}, {"IMDB Rating": 6.5, "Production Budget": 75000000, "Rotten Tomatoes Rating": 63, "Title": "Bandits"}, {"IMDB Rating": 7.1, "Production Budget": 14000000, "Rotten Tomatoes Rating": 46, "Title": "Bobby"}, {"IMDB Rating": 6.9, "Production Budget": 80000000, "Rotten Tomatoes Rating": 47, "Title": "The Book of Eli"}, {"IMDB Rating": 3.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 13, "Title": "Boogeyman"}, {"IMDB Rating": 7.4, "Production Budget": 150000000, "Rotten Tomatoes Rating": 88, "Title": "Bolt"}, {"IMDB Rating": 6.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 41, "Title": "The Other Boleyn Girl"}, {"IMDB Rating": 6.3, "Production Budget": 48000000, "Rotten Tomatoes Rating": 27, "Title": "The Bone Collector"}, {"IMDB Rating": 3.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 22, "Title": "Bones"}, {"IMDB Rating": 6.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 76, "Title": "Bon Voyage"}, {"IMDB Rating": 7.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 92, "Title": "Boogie Nights"}, {"IMDB Rating": 7.7, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Borat"}, {"IMDB Rating": 7.7, "Production Budget": 60000000, "Rotten Tomatoes Rating": 82, "Title": "The Bourne Identity"}, {"IMDB Rating": 7.6, "Production Budget": 85000000, "Rotten Tomatoes Rating": 81, "Title": "The Bourne Supremacy"}, {"IMDB Rating": 8.2, "Production Budget": 130000000, "Rotten Tomatoes Rating": 93, "Title": "The Bourne Ultimatum"}, {"IMDB Rating": 5.6, "Production Budget": 29000000, "Rotten Tomatoes Rating": null, "Title": "The Borrowers"}, {"IMDB Rating": 4.3, "Production Budget": 14000000, "Rotten Tomatoes Rating": 9, "Title": "My Boss's Daughter"}, {"IMDB Rating": 5.5, "Production Budget": 35000000, "Rotten Tomatoes Rating": 51, "Title": "Bounce"}, {"IMDB Rating": 8.2, "Production Budget": 3000000, "Rotten Tomatoes Rating": 96, "Title": "Bowling for Columbine"}, {"IMDB Rating": 7.6, "Production Budget": 2000000, "Rotten Tomatoes Rating": 88, "Title": "Boys Don't Cry"}, {"IMDB Rating": 7.8, "Production Budget": 12500000, "Rotten Tomatoes Rating": null, "Title": "The Boy in the Striped Pyjamas"}, {"IMDB Rating": 5.2, "Production Budget": 52000000, "Rotten Tomatoes Rating": 22, "Title": "Bulletproof Monk"}, {"IMDB Rating": 6.2, "Production Budget": 38000000, "Rotten Tomatoes Rating": 52, "Title": "Heartbreakers"}, {"IMDB Rating": 6.2, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Bride & Prejudice"}, {"IMDB Rating": 6.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": 14, "Title": "Beyond Borders"}, {"IMDB Rating": 5, "Production Budget": 30000000, "Rotten Tomatoes Rating": 12, "Title": "Bride Wars"}, {"IMDB Rating": 4.3, "Production Budget": 12000000, "Rotten Tomatoes Rating": 25, "Title": "Breakfast of Champions"}, {"IMDB Rating": 7.1, "Production Budget": 1000000, "Rotten Tomatoes Rating": 71, "Title": "Brigham City"}, {"IMDB Rating": 7.5, "Production Budget": 450000, "Rotten Tomatoes Rating": null, "Title": "Brick"}, {"IMDB Rating": 6.8, "Production Budget": 32000000, "Rotten Tomatoes Rating": 71, "Title": "Bringing Out The Dead"}, {"IMDB Rating": null, "Production Budget": 36000000, "Rotten Tomatoes Rating": 79, "Title": "Breakdown"}, {"IMDB Rating": 6.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Brooklyn's Finest"}, {"IMDB Rating": 7.8, "Production Budget": 13900000, "Rotten Tomatoes Rating": 87, "Title": "Brokeback Mountain"}, {"IMDB Rating": 5.3, "Production Budget": 9000000, "Rotten Tomatoes Rating": 33, "Title": "Breakin' All the Rules"}, {"IMDB Rating": 5.9, "Production Budget": 52000000, "Rotten Tomatoes Rating": null, "Title": "The Break Up"}, {"IMDB Rating": 3.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "An Alan Smithee Film: Burn Hollywood Burn"}, {"IMDB Rating": 6.4, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "Brooklyn Rules"}, {"IMDB Rating": 6.9, "Production Budget": 9000000, "Rotten Tomatoes Rating": 67, "Title": "Boiler Room"}, {"IMDB Rating": 5.2, "Production Budget": 10000000, "Rotten Tomatoes Rating": 15, "Title": "The Brothers Solomon"}, {"IMDB Rating": 2.8, "Production Budget": 6000000, "Rotten Tomatoes Rating": 63, "Title": "The Brothers"}, {"IMDB Rating": 6, "Production Budget": 8000000, "Rotten Tomatoes Rating": 64, "Title": "Brown Sugar"}, {"IMDB Rating": 7.1, "Production Budget": 8500000, "Rotten Tomatoes Rating": null, "Title": "Bright Star"}, {"IMDB Rating": 7.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Brother"}, {"IMDB Rating": 8.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 80, "Title": "In Bruges"}, {"IMDB Rating": 4.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "The Brown Bunny"}, {"IMDB Rating": 5.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Barbershop 2: Back in Business"}, {"IMDB Rating": 6.2, "Production Budget": 12000000, "Rotten Tomatoes Rating": 82, "Title": "Barbershop"}, {"IMDB Rating": 7.4, "Production Budget": 6000000, "Rotten Tomatoes Rating": 94, "Title": "Best in Show"}, {"IMDB Rating": 7.3, "Production Budget": 18000000, "Rotten Tomatoes Rating": 77, "Title": "Bad Santa"}, {"IMDB Rating": 8.4, "Production Budget": 70000000, "Rotten Tomatoes Rating": 88, "Title": "Inglourious Basterds"}, {"IMDB Rating": 5.9, "Production Budget": 36000000, "Rotten Tomatoes Rating": 35, "Title": "Blue Streak"}, {"IMDB Rating": 7.8, "Production Budget": 13000000, "Rotten Tomatoes Rating": 33, "Title": "The Butterfly Effect"}, {"IMDB Rating": 3.5, "Production Budget": 125000000, "Rotten Tomatoes Rating": 11, "Title": "Batman & Robin"}, {"IMDB Rating": 4.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 7, "Title": "Boat Trip"}, {"IMDB Rating": 7.3, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Bubba Ho-Tep"}, {"IMDB Rating": 4.6, "Production Budget": 1600000, "Rotten Tomatoes Rating": null, "Title": "Bubble"}, {"IMDB Rating": 5.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": 30, "Title": "Bubble Boy"}, {"IMDB Rating": 7.3, "Production Budget": 1500000, "Rotten Tomatoes Rating": 78, "Title": "Buffalo '66"}, {"IMDB Rating": 6.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Buffalo Soldiers"}, {"IMDB Rating": 6.8, "Production Budget": 30000000, "Rotten Tomatoes Rating": 75, "Title": "Bulworth"}, {"IMDB Rating": null, "Production Budget": 25100000, "Rotten Tomatoes Rating": 60, "Title": "W."}, {"IMDB Rating": 6.4, "Production Budget": 55000000, "Rotten Tomatoes Rating": 79, "Title": "Bowfinger"}, {"IMDB Rating": 4.8, "Production Budget": 80000000, "Rotten Tomatoes Rating": 24, "Title": "Bewitched"}, {"IMDB Rating": null, "Production Budget": 51000000, "Rotten Tomatoes Rating": 23, "Title": "Barnyard: The Original Party Animals"}, {"IMDB Rating": 6.6, "Production Budget": 24000000, "Rotten Tomatoes Rating": 42, "Title": "Beyond the Sea"}, {"IMDB Rating": 5.4, "Production Budget": 1500000, "Rotten Tomatoes Rating": null, "Title": "Cabin Fever"}, {"IMDB Rating": 5.5, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "CachÈ"}, {"IMDB Rating": 6.7, "Production Budget": 12000000, "Rotten Tomatoes Rating": 67, "Title": "Cadillac Records"}, {"IMDB Rating": 6.2, "Production Budget": 10000000, "Rotten Tomatoes Rating": 44, "Title": "Can't Hardly Wait"}, {"IMDB Rating": 7.6, "Production Budget": 7000000, "Rotten Tomatoes Rating": 90, "Title": "Capote"}, {"IMDB Rating": 7, "Production Budget": 1600000, "Rotten Tomatoes Rating": null, "Title": "Sukkar banat"}, {"IMDB Rating": null, "Production Budget": 190000000, "Rotten Tomatoes Rating": 53, "Title": "Disney's A Christmas Carol"}, {"IMDB Rating": 4.3, "Production Budget": 21000000, "Rotten Tomatoes Rating": 16, "Title": "The Rage: Carrie 2"}, {"IMDB Rating": 7.5, "Production Budget": 70000000, "Rotten Tomatoes Rating": 74, "Title": "Cars"}, {"IMDB Rating": 7.5, "Production Budget": 85000000, "Rotten Tomatoes Rating": 89, "Title": "Cast Away"}, {"IMDB Rating": 5.7, "Production Budget": 52000000, "Rotten Tomatoes Rating": 96, "Title": "Catch Me if You Can"}, {"IMDB Rating": 3.4, "Production Budget": 109000000, "Rotten Tomatoes Rating": null, "Title": "The Cat in the Hat"}, {"IMDB Rating": 6.9, "Production Budget": 32000000, "Rotten Tomatoes Rating": 67, "Title": "Cats Don't Dance"}, {"IMDB Rating": 3.2, "Production Budget": 100000000, "Rotten Tomatoes Rating": 10, "Title": "Catwoman"}, {"IMDB Rating": 5.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 51, "Title": "Cecil B. Demented"}, {"IMDB Rating": 3.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 27, "Title": "The Country Bears"}, {"IMDB Rating": 6.2, "Production Budget": 18000000, "Rotten Tomatoes Rating": 42, "Title": "Center Stage"}, {"IMDB Rating": 6, "Production Budget": 12000000, "Rotten Tomatoes Rating": 53, "Title": "Critical Care"}, {"IMDB Rating": 6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 44, "Title": "Connie & Carla"}, {"IMDB Rating": 5.2, "Production Budget": 85000000, "Rotten Tomatoes Rating": null, "Title": "Collateral Damage"}, {"IMDB Rating": 4.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 12, "Title": "Crocodile Dundee in Los Angeles"}, {"IMDB Rating": 6.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 41, "Title": "Celebrity"}, {"IMDB Rating": 6.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 46, "Title": "The Cell"}, {"IMDB Rating": 6.5, "Production Budget": 45000000, "Rotten Tomatoes Rating": 54, "Title": "Cellular"}, {"IMDB Rating": 6.4, "Production Budget": 38000000, "Rotten Tomatoes Rating": 53, "Title": "City of Ember"}, {"IMDB Rating": 7.1, "Production Budget": 150000000, "Rotten Tomatoes Rating": 82, "Title": "Charlie and the Chocolate Factory"}, {"IMDB Rating": 6.8, "Production Budget": 14000000, "Rotten Tomatoes Rating": 76, "Title": "Catch a Fire"}, {"IMDB Rating": 4.7, "Production Budget": 120000000, "Rotten Tomatoes Rating": null, "Title": "Charlie's Angels: Full Throttle"}, {"IMDB Rating": 5.5, "Production Budget": 90000000, "Rotten Tomatoes Rating": 67, "Title": "Charlie's Angels"}, {"IMDB Rating": 7.5, "Production Budget": 250000, "Rotten Tomatoes Rating": 91, "Title": "Chasing Amy"}, {"IMDB Rating": 7.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 88, "Title": "Chicago"}, {"IMDB Rating": 5.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 36, "Title": "Chicken Little"}, {"IMDB Rating": 7.3, "Production Budget": 42000000, "Rotten Tomatoes Rating": 96, "Title": "Chicken Run"}, {"IMDB Rating": 5.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 24, "Title": "Cheaper by the Dozen"}, {"IMDB Rating": 5.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": 7, "Title": "Cheaper by the Dozen 2"}, {"IMDB Rating": 6.1, "Production Budget": 23000000, "Rotten Tomatoes Rating": 54, "Title": "Cheri"}, {"IMDB Rating": 4.9, "Production Budget": 34000000, "Rotten Tomatoes Rating": 7, "Title": "Chill Factor"}, {"IMDB Rating": 5.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": 43, "Title": "Bride of Chucky"}, {"IMDB Rating": 5.1, "Production Budget": 29000000, "Rotten Tomatoes Rating": 32, "Title": "Seed of Chucky"}, {"IMDB Rating": 8.1, "Production Budget": 76000000, "Rotten Tomatoes Rating": 93, "Title": "Children of Men"}, {"IMDB Rating": 6.5, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "Chloe"}, {"IMDB Rating": 6.2, "Production Budget": 45000000, "Rotten Tomatoes Rating": 27, "Title": "Love in the Time of Cholera"}, {"IMDB Rating": 7.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": 62, "Title": "Chocolat"}, {"IMDB Rating": 6.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 31, "Title": "The Children of Huang Shi"}, {"IMDB Rating": 7.8, "Production Budget": 5500000, "Rotten Tomatoes Rating": null, "Title": "Les Choristes"}, {"IMDB Rating": 2.1, "Production Budget": 7000000, "Rotten Tomatoes Rating": 14, "Title": "Chairman of the Board"}, {"IMDB Rating": 6.5, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "Chuck&Buck"}, {"IMDB Rating": 7, "Production Budget": 6800000, "Rotten Tomatoes Rating": 34, "Title": "The Chumscrubber"}, {"IMDB Rating": 6.7, "Production Budget": 82500000, "Rotten Tomatoes Rating": 78, "Title": "Charlotte's Web"}, {"IMDB Rating": 8, "Production Budget": 88000000, "Rotten Tomatoes Rating": 80, "Title": "Cinderella Man"}, {"IMDB Rating": 5.4, "Production Budget": 19000000, "Rotten Tomatoes Rating": 10, "Title": "A Cinderella Story"}, {"IMDB Rating": 6.4, "Production Budget": 55000000, "Rotten Tomatoes Rating": 59, "Title": "City of Angels"}, {"IMDB Rating": 6.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": 61, "Title": "A Civil Action"}, {"IMDB Rating": 3.2, "Production Budget": 16000000, "Rotten Tomatoes Rating": 5, "Title": "The Cookout"}, {"IMDB Rating": 6.5, "Production Budget": 13000000, "Rotten Tomatoes Rating": 63, "Title": "The Claim"}, {"IMDB Rating": 5.5, "Production Budget": 65000000, "Rotten Tomatoes Rating": null, "Title": "The Santa Clause 2"}, {"IMDB Rating": 7.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": 70, "Title": "Cold Mountain"}, {"IMDB Rating": 5, "Production Budget": 82500000, "Rotten Tomatoes Rating": 32, "Title": "Click"}, {"IMDB Rating": 4, "Production Budget": 20000000, "Rotten Tomatoes Rating": 4, "Title": "Code Name: The Cleaner"}, {"IMDB Rating": 6.2, "Production Budget": 12000000, "Rotten Tomatoes Rating": 53, "Title": "Welcome to Collinwood"}, {"IMDB Rating": 2.9, "Production Budget": 35000000, "Rotten Tomatoes Rating": 68, "Title": "Closer"}, {"IMDB Rating": 7.7, "Production Budget": 5000000, "Rotten Tomatoes Rating": 63, "Title": "Clerks II"}, {"IMDB Rating": 4.6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 39, "Title": "Maid in Manhattan"}, {"IMDB Rating": 6.7, "Production Budget": 75000000, "Rotten Tomatoes Rating": 57, "Title": "It's Complicated"}, {"IMDB Rating": 6.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": 69, "Title": "The Company"}, {"IMDB Rating": 6.7, "Production Budget": 75000000, "Rotten Tomatoes Rating": 46, "Title": "Constantine"}, {"IMDB Rating": 6.9, "Production Budget": 9000000, "Rotten Tomatoes Rating": 76, "Title": "The Contender"}, {"IMDB Rating": 7.6, "Production Budget": 6250000, "Rotten Tomatoes Rating": null, "Title": "Die F‰lscher"}, {"IMDB Rating": 7.8, "Production Budget": 6400000, "Rotten Tomatoes Rating": 87, "Title": "Control"}, {"IMDB Rating": 6.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": 55, "Title": "Centurion"}, {"IMDB Rating": 7.1, "Production Budget": 45000000, "Rotten Tomatoes Rating": 65, "Title": "Coach Carter"}, {"IMDB Rating": 7.1, "Production Budget": 29000000, "Rotten Tomatoes Rating": 79, "Title": "Confessions of a Dangerous Mind"}, {"IMDB Rating": 6.5, "Production Budget": 23000000, "Rotten Tomatoes Rating": null, "Title": "Coco avant Chanel"}, {"IMDB Rating": 6.3, "Production Budget": 7500000, "Rotten Tomatoes Rating": null, "Title": "Code 46"}, {"IMDB Rating": 4.1, "Production Budget": 26000000, "Rotten Tomatoes Rating": null, "Title": "Agent Cody Banks 2: Destination London"}, {"IMDB Rating": 5.1, "Production Budget": 25000000, "Rotten Tomatoes Rating": 38, "Title": "Agent Cody Banks"}, {"IMDB Rating": 7.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 86, "Title": "Collateral"}, {"IMDB Rating": 4.3, "Production Budget": 6000000, "Rotten Tomatoes Rating": 5, "Title": "College"}, {"IMDB Rating": 5, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Company Man"}, {"IMDB Rating": 6.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": 83, "Title": "Come Early Morning"}, {"IMDB Rating": 6.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 57, "Title": "Con Air"}, {"IMDB Rating": 6.8, "Production Budget": 15000000, "Rotten Tomatoes Rating": 71, "Title": "Confidence"}, {"IMDB Rating": 6.5, "Production Budget": 80000000, "Rotten Tomatoes Rating": 51, "Title": "Conspiracy Theory"}, {"IMDB Rating": 7.3, "Production Budget": 90000000, "Rotten Tomatoes Rating": 67, "Title": "Contact"}, {"IMDB Rating": 7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 77, "Title": "The Cooler"}, {"IMDB Rating": 6.8, "Production Budget": 11000000, "Rotten Tomatoes Rating": null, "Title": "Copying Beethoven"}, {"IMDB Rating": 4.2, "Production Budget": 11000000, "Rotten Tomatoes Rating": 5, "Title": "Corky Romano"}, {"IMDB Rating": 7.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 89, "Title": "Coraline"}, {"IMDB Rating": 4.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 13, "Title": "Confessions of a Teenage Drama Queen"}, {"IMDB Rating": 4.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 3, "Title": "The Covenant"}, {"IMDB Rating": 6.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 71, "Title": "Cop Land"}, {"IMDB Rating": 5.5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 12, "Title": "Couples Retreat"}, {"IMDB Rating": 6.7, "Production Budget": 32000000, "Rotten Tomatoes Rating": 64, "Title": "Cradle Will Rock"}, {"IMDB Rating": 7.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 61, "Title": "Crank"}, {"IMDB Rating": 6.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": 65, "Title": "Crash"}, {"IMDB Rating": 6.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 71, "Title": "The Crazies"}, {"IMDB Rating": 5.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 31, "Title": "Crazy in Alabama"}, {"IMDB Rating": 6, "Production Budget": 23000000, "Rotten Tomatoes Rating": 19, "Title": "The Crew"}, {"IMDB Rating": 5.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 26, "Title": "Cradle 2 the Grave"}, {"IMDB Rating": 4.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": 2, "Title": "The In Crowd"}, {"IMDB Rating": 5.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 48, "Title": "The Corruptor"}, {"IMDB Rating": 7, "Production Budget": 45000000, "Rotten Tomatoes Rating": null, "Title": "Man cheng jin dai huang jin jia"}, {"IMDB Rating": 6.1, "Production Budget": 6500000, "Rotten Tomatoes Rating": 75, "Title": "Crash"}, {"IMDB Rating": 1.7, "Production Budget": 5600000, "Rotten Tomatoes Rating": 3, "Title": "Crossover"}, {"IMDB Rating": 6.6, "Production Budget": 12000000, "Rotten Tomatoes Rating": 14, "Title": "Crossroads"}, {"IMDB Rating": 7.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 74, "Title": "The Count of Monte Cristo"}, {"IMDB Rating": 6.7, "Production Budget": 11000000, "Rotten Tomatoes Rating": 47, "Title": "Cruel Intentions"}, {"IMDB Rating": 6.2, "Production Budget": 11500000, "Rotten Tomatoes Rating": 14, "Title": "The Cry of the Owl"}, {"IMDB Rating": 6.4, "Production Budget": 1000000, "Rotten Tomatoes Rating": 24, "Title": "Cry Wolf"}, {"IMDB Rating": 7.4, "Production Budget": 8500000, "Rotten Tomatoes Rating": 92, "Title": "Crazy Heart"}, {"IMDB Rating": 6.3, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "crazy/beautiful"}, {"IMDB Rating": 6.5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 52, "Title": "The Last Castle"}, {"IMDB Rating": 5, "Production Budget": 26000000, "Rotten Tomatoes Rating": 28, "Title": "Clockstoppers"}, {"IMDB Rating": 4.7, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Catch That Kid"}, {"IMDB Rating": 5.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": 53, "Title": "Cats & Dogs"}, {"IMDB Rating": 6.6, "Production Budget": 8300000, "Rotten Tomatoes Rating": 40, "Title": "The City of Your Final Destination"}, {"IMDB Rating": 8.8, "Production Budget": 3300000, "Rotten Tomatoes Rating": null, "Title": "Cidade de Deus"}, {"IMDB Rating": 5.9, "Production Budget": 17500000, "Rotten Tomatoes Rating": null, "Title": "City of Ghosts"}, {"IMDB Rating": 6.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 48, "Title": "City by the Sea"}, {"IMDB Rating": 7.1, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "The Cube"}, {"IMDB Rating": 5.3, "Production Budget": 45000000, "Rotten Tomatoes Rating": 21, "Title": "Coyote Ugly"}, {"IMDB Rating": 6.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 69, "Title": "Curious George"}, {"IMDB Rating": 4.8, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "Cursed"}, {"IMDB Rating": 4.9, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Civil Brand"}, {"IMDB Rating": 7.2, "Production Budget": 100000000, "Rotten Tomatoes Rating": 86, "Title": "Cloudy with a Chance of Meatballs"}, {"IMDB Rating": 7.3, "Production Budget": 75000000, "Rotten Tomatoes Rating": 81, "Title": "Charlie Wilson's War"}, {"IMDB Rating": null, "Production Budget": 7000000, "Rotten Tomatoes Rating": 81, "Title": "Cyrus"}, {"IMDB Rating": 2.4, "Production Budget": 76000000, "Rotten Tomatoes Rating": 1, "Title": "Daddy Day Camp"}, {"IMDB Rating": 5.5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 28, "Title": "Daddy Day Care"}, {"IMDB Rating": 5.6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 33, "Title": "The Black Dahlia"}, {"IMDB Rating": 4.9, "Production Budget": 5500000, "Rotten Tomatoes Rating": 16, "Title": "Diary of a Mad Black Woman"}, {"IMDB Rating": 3.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 17, "Title": "Dance Flick"}, {"IMDB Rating": null, "Production Budget": 2300000, "Rotten Tomatoes Rating": 80, "Title": "Dancer, Texas Pop. 81"}, {"IMDB Rating": 5.5, "Production Budget": 80000000, "Rotten Tomatoes Rating": 44, "Title": "Daredevil"}, {"IMDB Rating": 7.8, "Production Budget": 27000000, "Rotten Tomatoes Rating": 77, "Title": "Dark City"}, {"IMDB Rating": 8.3, "Production Budget": 4500000, "Rotten Tomatoes Rating": 84, "Title": "Donnie Darko"}, {"IMDB Rating": 5.6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 46, "Title": "Dark Water"}, {"IMDB Rating": 5.7, "Production Budget": 24000000, "Rotten Tomatoes Rating": 52, "Title": "Win a Date with Tad Hamilton!"}, {"IMDB Rating": 2.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 6, "Title": "Date Movie"}, {"IMDB Rating": 6.5, "Production Budget": 55000000, "Rotten Tomatoes Rating": 67, "Title": "Date Night"}, {"IMDB Rating": 7.4, "Production Budget": 28000000, "Rotten Tomatoes Rating": 76, "Title": "Dawn of the Dead"}, {"IMDB Rating": 6.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Daybreakers"}, {"IMDB Rating": 4.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Day of the Dead"}, {"IMDB Rating": 7.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 79, "Title": "The Great Debaters"}, {"IMDB Rating": 6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 25, "Title": "Double Jeopardy"}, {"IMDB Rating": 7.4, "Production Budget": 19700000, "Rotten Tomatoes Rating": null, "Title": "Der Baader Meinhof Komplex"}, {"IMDB Rating": 5.6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 57, "Title": "Deep Blue Sea"}, {"IMDB Rating": 5.1, "Production Budget": 8000000, "Rotten Tomatoes Rating": 26, "Title": "Drive Me Crazy"}, {"IMDB Rating": 7.8, "Production Budget": 12500000, "Rotten Tomatoes Rating": 68, "Title": "Dancer in the Dark"}, {"IMDB Rating": 6, "Production Budget": 2750000, "Rotten Tomatoes Rating": null, "Title": "Diary of the Dead"}, {"IMDB Rating": 7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 28, "Title": "Dear John"}, {"IMDB Rating": 6.6, "Production Budget": 8000000, "Rotten Tomatoes Rating": 37, "Title": "Dear Wendy"}, {"IMDB Rating": 5.1, "Production Budget": 3500000, "Rotten Tomatoes Rating": null, "Title": "D.E.B.S."}, {"IMDB Rating": 7.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 70, "Title": "Deconstructing Harry"}, {"IMDB Rating": 5.5, "Production Budget": 50000000, "Rotten Tomatoes Rating": 22, "Title": "Mr. Deeds"}, {"IMDB Rating": 6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 42, "Title": "The Deep End of the Ocean"}, {"IMDB Rating": 5.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 30, "Title": "Deep Rising"}, {"IMDB Rating": null, "Production Budget": 7000000, "Rotten Tomatoes Rating": 71, "Title": "Definitely, Maybe"}, {"IMDB Rating": 5.1, "Production Budget": 21000000, "Rotten Tomatoes Rating": 38, "Title": "Death at a Funeral"}, {"IMDB Rating": 7, "Production Budget": 80000000, "Rotten Tomatoes Rating": null, "Title": "DÈj‡ Vu"}, {"IMDB Rating": 4.4, "Production Budget": 40000000, "Rotten Tomatoes Rating": 12, "Title": "Delgo"}, {"IMDB Rating": 7.7, "Production Budget": 69000000, "Rotten Tomatoes Rating": 80, "Title": "Despicable Me"}, {"IMDB Rating": 4.3, "Production Budget": 22000000, "Rotten Tomatoes Rating": 10, "Title": "Deuce Bigalow: European Gigolo"}, {"IMDB Rating": 5.6, "Production Budget": 18000000, "Rotten Tomatoes Rating": 23, "Title": "Deuce Bigalow: Male Gigolo"}, {"IMDB Rating": 5.8, "Production Budget": 90000000, "Rotten Tomatoes Rating": 29, "Title": "The Devil's Own"}, {"IMDB Rating": 4.6, "Production Budget": 7000000, "Rotten Tomatoes Rating": 8, "Title": "Darkness Falls"}, {"IMDB Rating": 5.9, "Production Budget": 50000000, "Rotten Tomatoes Rating": 56, "Title": "Defiance"}, {"IMDB Rating": 5.9, "Production Budget": 7000000, "Rotten Tomatoes Rating": 17, "Title": "A Dog of Flanders"}, {"IMDB Rating": 5.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 7, "Title": "Dragonfly"}, {"IMDB Rating": 6.8, "Production Budget": 3300000, "Rotten Tomatoes Rating": 73, "Title": "The Dead Girl"}, {"IMDB Rating": 6.1, "Production Budget": 13000000, "Rotten Tomatoes Rating": 70, "Title": "Dick"}, {"IMDB Rating": 7.5, "Production Budget": 110000000, "Rotten Tomatoes Rating": 82, "Title": "Live Free or Die Hard"}, {"IMDB Rating": 4.6, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Digimon: The Movie"}, {"IMDB Rating": 4.8, "Production Budget": 13000000, "Rotten Tomatoes Rating": 17, "Title": "Dirty Work"}, {"IMDB Rating": 7.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Banlieue 13"}, {"IMDB Rating": 1.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 2, "Title": "Disaster Movie"}, {"IMDB Rating": 8.3, "Production Budget": 30000000, "Rotten Tomatoes Rating": 91, "Title": "District 9"}, {"IMDB Rating": 5.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": 30, "Title": "Disturbing Behavior"}, {"IMDB Rating": 8, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "Le Scaphandre et le Papillon"}, {"IMDB Rating": 6.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 57, "Title": "Dark Blue"}, {"IMDB Rating": 5.8, "Production Budget": 3250000, "Rotten Tomatoes Rating": null, "Title": "Dreaming of Joseph Lees"}, {"IMDB Rating": 6.5, "Production Budget": 4000000, "Rotten Tomatoes Rating": 49, "Title": "De-Lovely"}, {"IMDB Rating": 3.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 26, "Title": "Madea's Family Reunion"}, {"IMDB Rating": 5.6, "Production Budget": 14000000, "Rotten Tomatoes Rating": 15, "Title": "Dead Man on Campus"}, {"IMDB Rating": 5.3, "Production Budget": 16000000, "Rotten Tomatoes Rating": 29, "Title": "Drowning Mona"}, {"IMDB Rating": 5.3, "Production Budget": 11900000, "Rotten Tomatoes Rating": 26, "Title": "Diamonds"}, {"IMDB Rating": 6, "Production Budget": 33000000, "Rotten Tomatoes Rating": 48, "Title": "Doomsday"}, {"IMDB Rating": 5.4, "Production Budget": 750000, "Rotten Tomatoes Rating": null, "Title": "Donkey Punch"}, {"IMDB Rating": 6.2, "Production Budget": 127500000, "Rotten Tomatoes Rating": 65, "Title": "Dinosaur"}, {"IMDB Rating": 4.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 34, "Title": "DOA: Dead or Alive"}, {"IMDB Rating": 2.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Doogal"}, {"IMDB Rating": 7.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 68, "Title": "Dogma"}, {"IMDB Rating": 5.3, "Production Budget": 53000000, "Rotten Tomatoes Rating": 24, "Title": "Domestic Disturbance"}, {"IMDB Rating": 5.9, "Production Budget": 50000000, "Rotten Tomatoes Rating": 19, "Title": "Domino"}, {"IMDB Rating": 7.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 87, "Title": "Donnie Brasco"}, {"IMDB Rating": 5.2, "Production Budget": 70000000, "Rotten Tomatoes Rating": 19, "Title": "Doom"}, {"IMDB Rating": null, "Production Budget": 20000000, "Rotten Tomatoes Rating": 78, "Title": "Doubt"}, {"IMDB Rating": 4.8, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Doug's 1st Movie"}, {"IMDB Rating": 6.1, "Production Budget": 13500000, "Rotten Tomatoes Rating": null, "Title": "Downfall"}, {"IMDB Rating": 6.6, "Production Budget": 3000000, "Rotten Tomatoes Rating": 81, "Title": "The Deep End"}, {"IMDB Rating": 6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 47, "Title": "Deep Impact"}, {"IMDB Rating": 8.5, "Production Budget": 90000000, "Rotten Tomatoes Rating": 93, "Title": "The Departed"}, {"IMDB Rating": 4.8, "Production Budget": 28000000, "Rotten Tomatoes Rating": 15, "Title": "Dracula 2000"}, {"IMDB Rating": 6.6, "Production Budget": 65000000, "Rotten Tomatoes Rating": 41, "Title": "Death Race"}, {"IMDB Rating": 7.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 92, "Title": "Drag Me To Hell"}, {"IMDB Rating": 3.4, "Production Budget": 22000000, "Rotten Tomatoes Rating": 20, "Title": "Derailed"}, {"IMDB Rating": 6, "Production Budget": 72000000, "Rotten Tomatoes Rating": null, "Title": "Doctor Dolittle 2"}, {"IMDB Rating": 5.2, "Production Budget": 71500000, "Rotten Tomatoes Rating": null, "Title": "Doctor Dolittle"}, {"IMDB Rating": 5.5, "Production Budget": 17000000, "Rotten Tomatoes Rating": null, "Title": "Dickie Roberts: Former Child Star"}, {"IMDB Rating": 5.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 26, "Title": "Drillbit Taylor"}, {"IMDB Rating": 6.7, "Production Budget": 4700000, "Rotten Tomatoes Rating": 48, "Title": "Driving Lessons"}, {"IMDB Rating": 4.2, "Production Budget": 72000000, "Rotten Tomatoes Rating": 13, "Title": "Driven"}, {"IMDB Rating": 5.3, "Production Budget": 10600000, "Rotten Tomatoes Rating": 4, "Title": "Darkness"}, {"IMDB Rating": 5.2, "Production Budget": 34000000, "Rotten Tomatoes Rating": 9, "Title": "I Dreamed of Africa"}, {"IMDB Rating": 5.3, "Production Budget": 68000000, "Rotten Tomatoes Rating": 30, "Title": "Dreamcatcher"}, {"IMDB Rating": 6.6, "Production Budget": 75000000, "Rotten Tomatoes Rating": 78, "Title": "Dreamgirls"}, {"IMDB Rating": 6.4, "Production Budget": 16000000, "Rotten Tomatoes Rating": 47, "Title": "Detroit Rock City"}, {"IMDB Rating": 6.2, "Production Budget": 10000000, "Rotten Tomatoes Rating": 45, "Title": "Drop Dead Gorgeous"}, {"IMDB Rating": 5.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 81, "Title": "Drumline"}, {"IMDB Rating": 7.2, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Dinner Rush"}, {"IMDB Rating": 7.4, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "The Descent"}, {"IMDB Rating": 5.9, "Production Budget": 3000000, "Rotten Tomatoes Rating": 43, "Title": "DysFunkTional Family"}, {"IMDB Rating": 3, "Production Budget": 16000000, "Rotten Tomatoes Rating": 2, "Title": "The Master of Disguise"}, {"IMDB Rating": 6, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Desert Blue"}, {"IMDB Rating": 7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 68, "Title": "Disturbia"}, {"IMDB Rating": 6.8, "Production Budget": 24000000, "Rotten Tomatoes Rating": 12, "Title": "Double Take"}, {"IMDB Rating": 5.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 61, "Title": "Death at a Funeral"}, {"IMDB Rating": 6.3, "Production Budget": 800000, "Rotten Tomatoes Rating": 45, "Title": "Deterrence"}, {"IMDB Rating": 7.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Dirty Pretty Things"}, {"IMDB Rating": 3.6, "Production Budget": 22000000, "Rotten Tomatoes Rating": 14, "Title": "Dudley Do-Right"}, {"IMDB Rating": 5.7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 21, "Title": "Duets"}, {"IMDB Rating": 4.7, "Production Budget": 53000000, "Rotten Tomatoes Rating": 13, "Title": "The Dukes of Hazzard"}, {"IMDB Rating": 7.2, "Production Budget": 12000000, "Rotten Tomatoes Rating": 93, "Title": "Duma"}, {"IMDB Rating": 3.3, "Production Budget": 30000000, "Rotten Tomatoes Rating": 10, "Title": "Dumb and Dumberer: When Harry Met Lloyd"}, {"IMDB Rating": 3.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "Dungeons and Dragons"}, {"IMDB Rating": 5.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Duplex"}, {"IMDB Rating": 6.1, "Production Budget": 54000000, "Rotten Tomatoes Rating": 21, "Title": "You, Me and Dupree"}, {"IMDB Rating": 6.4, "Production Budget": 125000000, "Rotten Tomatoes Rating": 25, "Title": "The Da Vinci Code"}, {"IMDB Rating": 3.8, "Production Budget": 32000000, "Rotten Tomatoes Rating": null, "Title": "D-War"}, {"IMDB Rating": 5.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 3, "Title": "Deuces Wild"}, {"IMDB Rating": 5, "Production Budget": 30000000, "Rotten Tomatoes Rating": 19, "Title": "Down to Earth"}, {"IMDB Rating": 4.4, "Production Budget": 9000000, "Rotten Tomatoes Rating": 3, "Title": "Down to You"}, {"IMDB Rating": 7.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 76, "Title": "I'm Not There"}, {"IMDB Rating": 7.7, "Production Budget": 8000000, "Rotten Tomatoes Rating": 80, "Title": "Easy A"}, {"IMDB Rating": 6.2, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "The Eclipse"}, {"IMDB Rating": 6.7, "Production Budget": 60000000, "Rotten Tomatoes Rating": 55, "Title": "Edge of Darkness"}, {"IMDB Rating": 6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 62, "Title": "EDtv"}, {"IMDB Rating": 7.5, "Production Budget": 7500000, "Rotten Tomatoes Rating": 94, "Title": "An Education"}, {"IMDB Rating": 6.7, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "East is East"}, {"IMDB Rating": 4.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 11, "Title": "8 Heads in a Duffel Bag"}, {"IMDB Rating": 6.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 27, "Title": "Eagle Eye"}, {"IMDB Rating": 6.3, "Production Budget": 40000000, "Rotten Tomatoes Rating": 22, "Title": "8MM"}, {"IMDB Rating": 5.8, "Production Budget": 5500000, "Rotten Tomatoes Rating": 79, "Title": "Iris"}, {"IMDB Rating": 7.4, "Production Budget": 8500000, "Rotten Tomatoes Rating": 92, "Title": "Election"}, {"IMDB Rating": 4.9, "Production Budget": 65000000, "Rotten Tomatoes Rating": 10, "Title": "Elektra"}, {"IMDB Rating": 6.8, "Production Budget": 32000000, "Rotten Tomatoes Rating": 84, "Title": "Elf"}, {"IMDB Rating": 7.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 81, "Title": "Elizabeth"}, {"IMDB Rating": 6.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 49, "Title": "Ella Enchanted"}, {"IMDB Rating": 6.2, "Production Budget": 29000000, "Rotten Tomatoes Rating": 68, "Title": "Once Upon a Time in Mexico"}, {"IMDB Rating": 5.4, "Production Budget": 17000000, "Rotten Tomatoes Rating": 76, "Title": "The Adventures of Elmo in Grouchland"}, {"IMDB Rating": 6.7, "Production Budget": 12500000, "Rotten Tomatoes Rating": 50, "Title": "The Emperor's Club"}, {"IMDB Rating": 6.5, "Production Budget": 3500000, "Rotten Tomatoes Rating": 21, "Title": "Empire"}, {"IMDB Rating": 7.8, "Production Budget": 3400000, "Rotten Tomatoes Rating": null, "Title": "La marche de l'empereur"}, {"IMDB Rating": 5.4, "Production Budget": 10000000, "Rotten Tomatoes Rating": 20, "Title": "Employee of the Month"}, {"IMDB Rating": 7.4, "Production Budget": 100000000, "Rotten Tomatoes Rating": 85, "Title": "The Emperor's New Groove"}, {"IMDB Rating": 7.5, "Production Budget": 85000000, "Rotten Tomatoes Rating": 92, "Title": "Enchanted"}, {"IMDB Rating": 6.9, "Production Budget": 23000000, "Rotten Tomatoes Rating": 67, "Title": "The End of the Affair"}, {"IMDB Rating": 5.4, "Production Budget": 100000000, "Rotten Tomatoes Rating": 11, "Title": "End of Days"}, {"IMDB Rating": 6.7, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "End of the Spear"}, {"IMDB Rating": 7.4, "Production Budget": 85000000, "Rotten Tomatoes Rating": 53, "Title": "Enemy at the Gates"}, {"IMDB Rating": 7.2, "Production Budget": 85000000, "Rotten Tomatoes Rating": 70, "Title": "Enemy of the State"}, {"IMDB Rating": 6.1, "Production Budget": 66000000, "Rotten Tomatoes Rating": 38, "Title": "Entrapment"}, {"IMDB Rating": 6.5, "Production Budget": 38000000, "Rotten Tomatoes Rating": 21, "Title": "Enough"}, {"IMDB Rating": 4.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 7, "Title": "Envy"}, {"IMDB Rating": 2.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 2, "Title": "Epic Movie"}, {"IMDB Rating": 5, "Production Budget": 100000000, "Rotten Tomatoes Rating": 16, "Title": "Eragon"}, {"IMDB Rating": 7.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 83, "Title": "Erin Brockovich"}, {"IMDB Rating": 6.4, "Production Budget": 54000000, "Rotten Tomatoes Rating": 28, "Title": "Elizabethtown"}, {"IMDB Rating": 4.7, "Production Budget": 60000000, "Rotten Tomatoes Rating": 37, "Title": "Eat Pray Love"}, {"IMDB Rating": 8.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 93, "Title": "Eternal Sunshine of the Spotless Mind"}, {"IMDB Rating": 6.6, "Production Budget": 10000000, "Rotten Tomatoes Rating": 32, "Title": "Eulogy"}, {"IMDB Rating": 7.9, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Eureka"}, {"IMDB Rating": 6.5, "Production Budget": 25000000, "Rotten Tomatoes Rating": 46, "Title": "Eurotrip"}, {"IMDB Rating": 7, "Production Budget": 5000000, "Rotten Tomatoes Rating": 80, "Title": "Eve's Bayou"}, {"IMDB Rating": 6.3, "Production Budget": 60000000, "Rotten Tomatoes Rating": 21, "Title": "Event Horizon"}, {"IMDB Rating": 6.1, "Production Budget": 55000000, "Rotten Tomatoes Rating": 61, "Title": "Evita"}, {"IMDB Rating": 5.9, "Production Budget": 80000000, "Rotten Tomatoes Rating": 42, "Title": "Evolution"}, {"IMDB Rating": 6, "Production Budget": 4000000, "Rotten Tomatoes Rating": 49, "Title": "An Everlasting Piece"}, {"IMDB Rating": 7.3, "Production Budget": 4500000, "Rotten Tomatoes Rating": null, "Title": "Fong juk"}, {"IMDB Rating": 5.2, "Production Budget": 33000000, "Rotten Tomatoes Rating": 33, "Title": "Exit Wounds"}, {"IMDB Rating": 6.8, "Production Budget": 18000000, "Rotten Tomatoes Rating": 45, "Title": "The Exorcism of Emily Rose"}, {"IMDB Rating": 5, "Production Budget": 78000000, "Rotten Tomatoes Rating": null, "Title": "Exorcist: The Beginning"}, {"IMDB Rating": 7.1, "Production Budget": 37500000, "Rotten Tomatoes Rating": 61, "Title": "The Express"}, {"IMDB Rating": 6.8, "Production Budget": 20700000, "Rotten Tomatoes Rating": 71, "Title": "eXistenZ"}, {"IMDB Rating": 6.4, "Production Budget": 7500000, "Rotten Tomatoes Rating": 62, "Title": "Extract"}, {"IMDB Rating": 4.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 6, "Title": "Extreme Ops"}, {"IMDB Rating": 7.2, "Production Budget": 65000000, "Rotten Tomatoes Rating": 78, "Title": "Eyes Wide Shut"}, {"IMDB Rating": 6.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 51, "Title": "The Faculty"}, {"IMDB Rating": 5.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 25, "Title": "Failure to Launch"}, {"IMDB Rating": 6.5, "Production Budget": 29000000, "Rotten Tomatoes Rating": 68, "Title": "Keeping the Faith"}, {"IMDB Rating": 4.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": 25, "Title": "Fame"}, {"IMDB Rating": 6.3, "Production Budget": 18000000, "Rotten Tomatoes Rating": 52, "Title": "The Family Stone"}, {"IMDB Rating": 7.5, "Production Budget": 13500000, "Rotten Tomatoes Rating": 89, "Title": "Far From Heaven"}, {"IMDB Rating": 2.5, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Fascination"}, {"IMDB Rating": 4.8, "Production Budget": 85000000, "Rotten Tomatoes Rating": null, "Title": "Father's Day"}, {"IMDB Rating": 6, "Production Budget": 100000, "Rotten Tomatoes Rating": 9, "Title": "Facing the Giants"}, {"IMDB Rating": 7.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": 93, "Title": "Face/Off"}, {"IMDB Rating": 6.4, "Production Budget": 26000000, "Rotten Tomatoes Rating": 47, "Title": "Final Destination 2"}, {"IMDB Rating": 5.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 45, "Title": "Final Destination 3"}, {"IMDB Rating": 4.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 27, "Title": "The Final Destination"}, {"IMDB Rating": 3.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "FearDotCom"}, {"IMDB Rating": 7.6, "Production Budget": 18500000, "Rotten Tomatoes Rating": 47, "Title": "Fear and Loathing in Las Vegas"}, {"IMDB Rating": 6.4, "Production Budget": 3200000, "Rotten Tomatoes Rating": 55, "Title": "Feast"}, {"IMDB Rating": 7.4, "Production Budget": 95000000, "Rotten Tomatoes Rating": 72, "Title": "The Fifth Element"}, {"IMDB Rating": 6.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 48, "Title": "Femme Fatale"}, {"IMDB Rating": 5.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 63, "Title": "Bring it On"}, {"IMDB Rating": 5.7, "Production Budget": 87500000, "Rotten Tomatoes Rating": 27, "Title": "Fantastic Four"}, {"IMDB Rating": 5.6, "Production Budget": 13000000, "Rotten Tomatoes Rating": 13, "Title": 54}, {"IMDB Rating": 5.1, "Production Budget": 76000000, "Rotten Tomatoes Rating": 36, "Title": "2 Fast 2 Furious"}, {"IMDB Rating": 6, "Production Budget": 38000000, "Rotten Tomatoes Rating": 53, "Title": "The Fast and the Furious"}, {"IMDB Rating": 7.6, "Production Budget": 72500000, "Rotten Tomatoes Rating": null, "Title": "Fool's Gold"}, {"IMDB Rating": 7.6, "Production Budget": 6000000, "Rotten Tomatoes Rating": 83, "Title": "Fahrenheit 9/11"}, {"IMDB Rating": 7.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 75, "Title": "Capitalism: A Love Story"}, {"IMDB Rating": 6.8, "Production Budget": 35000000, "Rotten Tomatoes Rating": 57, "Title": "From Hell"}, {"IMDB Rating": 6.9, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "Fido"}, {"IMDB Rating": 8.8, "Production Budget": 65000000, "Rotten Tomatoes Rating": 81, "Title": "Fight Club"}, {"IMDB Rating": 6.4, "Production Budget": 137000000, "Rotten Tomatoes Rating": null, "Title": "Final Fantasy: The Spirits Within"}, {"IMDB Rating": 7.2, "Production Budget": 43000000, "Rotten Tomatoes Rating": 74, "Title": "Finding Forrester"}, {"IMDB Rating": 4, "Production Budget": 15000000, "Rotten Tomatoes Rating": 11, "Title": "Freddy Got Fingered"}, {"IMDB Rating": 4.4, "Production Budget": 19000000, "Rotten Tomatoes Rating": null, "Title": "Firestorm"}, {"IMDB Rating": 7.5, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Fish Tank"}, {"IMDB Rating": 6.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 88, "Title": "Felicia's Journey"}, {"IMDB Rating": 1.6, "Production Budget": 12000000, "Rotten Tomatoes Rating": 8, "Title": "From Justin to Kelly"}, {"IMDB Rating": 6.8, "Production Budget": 23000000, "Rotten Tomatoes Rating": 31, "Title": "Final Destination"}, {"IMDB Rating": 7.2, "Production Budget": 53000000, "Rotten Tomatoes Rating": 73, "Title": "Flags of Our Fathers"}, {"IMDB Rating": 6.7, "Production Budget": 27000000, "Rotten Tomatoes Rating": 43, "Title": "Flawless"}, {"IMDB Rating": 7.2, "Production Budget": 9000000, "Rotten Tomatoes Rating": null, "Title": "Flammen og Citronen"}, {"IMDB Rating": 5.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 54, "Title": "Flicka"}, {"IMDB Rating": 6, "Production Budget": 75000000, "Rotten Tomatoes Rating": 30, "Title": "Flight of the Phoenix"}, {"IMDB Rating": 7.8, "Production Budget": 18000000, "Rotten Tomatoes Rating": 91, "Title": "United 93"}, {"IMDB Rating": 4.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 17, "Title": "Flubber"}, {"IMDB Rating": 7, "Production Budget": 149000000, "Rotten Tomatoes Rating": 72, "Title": "Flushed Away"}, {"IMDB Rating": 6.5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 33, "Title": "Flyboys"}, {"IMDB Rating": 4.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 17, "Title": "Fly Me To the Moon"}, {"IMDB Rating": 7.1, "Production Budget": 13000000, "Rotten Tomatoes Rating": 60, "Title": "Find Me Guilty"}, {"IMDB Rating": 6.6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 52, "Title": "The Family Man"}, {"IMDB Rating": 6.1, "Production Budget": 6500000, "Rotten Tomatoes Rating": 71, "Title": "Friends with Money"}, {"IMDB Rating": 8.2, "Production Budget": 94000000, "Rotten Tomatoes Rating": 98, "Title": "Finding Nemo"}, {"IMDB Rating": null, "Production Budget": 500000, "Rotten Tomatoes Rating": 35, "Title": "Finishing the Game"}, {"IMDB Rating": 7.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 51, "Title": "The Fountain"}, {"IMDB Rating": null, "Production Budget": 120000000, "Rotten Tomatoes Rating": 36, "Title": "Fantastic Four: Rise of the Silver Surfer"}, {"IMDB Rating": 4.1, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Farce of the Penguins"}, {"IMDB Rating": 6.2, "Production Budget": 55000000, "Rotten Tomatoes Rating": 38, "Title": "Flightplan"}, {"IMDB Rating": 7.3, "Production Budget": 11000000, "Rotten Tomatoes Rating": 74, "Title": "Frailty"}, {"IMDB Rating": 6.7, "Production Budget": 55000000, "Rotten Tomatoes Rating": 64, "Title": "The Forbidden Kingdom"}, {"IMDB Rating": 7.5, "Production Budget": 21000000, "Rotten Tomatoes Rating": 69, "Title": "Freedom Writers"}, {"IMDB Rating": 5.3, "Production Budget": 9500000, "Rotten Tomatoes Rating": 21, "Title": "Next Friday"}, {"IMDB Rating": 6.5, "Production Budget": 26000000, "Rotten Tomatoes Rating": 88, "Title": "Freaky Friday"}, {"IMDB Rating": 7.3, "Production Budget": 31000000, "Rotten Tomatoes Rating": 69, "Title": "Frequency"}, {"IMDB Rating": 8, "Production Budget": 39000000, "Rotten Tomatoes Rating": 81, "Title": "Serenity"}, {"IMDB Rating": 4.9, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "The Forgotton"}, {"IMDB Rating": 4.4, "Production Budget": 14000000, "Rotten Tomatoes Rating": 21, "Title": "Jason X"}, {"IMDB Rating": 5.6, "Production Budget": 17000000, "Rotten Tomatoes Rating": 26, "Title": "Friday the 13th"}, {"IMDB Rating": 5.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 25, "Title": "Friday After Next"}, {"IMDB Rating": 7.3, "Production Budget": 12000000, "Rotten Tomatoes Rating": 76, "Title": "Frida"}, {"IMDB Rating": 7.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 81, "Title": "Friday Night Lights"}, {"IMDB Rating": 7.2, "Production Budget": 1000000, "Rotten Tomatoes Rating": 87, "Title": "Frozen River"}, {"IMDB Rating": 7.4, "Production Budget": 105000000, "Rotten Tomatoes Rating": 84, "Title": "The Princess and the Frog"}, {"IMDB Rating": 4.8, "Production Budget": 2000000, "Rotten Tomatoes Rating": 37, "Title": "Full Frontal"}, {"IMDB Rating": 5.6, "Production Budget": 500000, "Rotten Tomatoes Rating": 40, "Title": "Fireproof"}, {"IMDB Rating": 5.1, "Production Budget": 5000000, "Rotten Tomatoes Rating": 8, "Title": "The Forsaken"}, {"IMDB Rating": 7.9, "Production Budget": 29000000, "Rotten Tomatoes Rating": 92, "Title": "Frost/Nixon"}, {"IMDB Rating": 6.1, "Production Budget": 7000000, "Rotten Tomatoes Rating": 19, "Title": "Factory Girl"}, {"IMDB Rating": 6, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Fateless"}, {"IMDB Rating": 7.2, "Production Budget": 3500000, "Rotten Tomatoes Rating": 95, "Title": "The Full Monty"}, {"IMDB Rating": 6.3, "Production Budget": 140000000, "Rotten Tomatoes Rating": 29, "Title": "Fun With Dick And Jane"}, {"IMDB Rating": 6.8, "Production Budget": 70000000, "Rotten Tomatoes Rating": 67, "Title": "Funny People"}, {"IMDB Rating": 2.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 8, "Title": "Furry Vengeance"}, {"IMDB Rating": 6.3, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Fever Pitch"}, {"IMDB Rating": 6.2, "Production Budget": 12000000, "Rotten Tomatoes Rating": 50, "Title": "For Your Consideration"}, {"IMDB Rating": 7.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 80, "Title": "The Game"}, {"IMDB Rating": 7.4, "Production Budget": 97000000, "Rotten Tomatoes Rating": 75, "Title": "Gangs of New York"}, {"IMDB Rating": 4.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "Garfield"}, {"IMDB Rating": 5.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 17, "Title": "Georgia Rule"}, {"IMDB Rating": 7.8, "Production Budget": 36000000, "Rotten Tomatoes Rating": 82, "Title": "Gattaca"}, {"IMDB Rating": 3.3, "Production Budget": 6400000, "Rotten Tomatoes Rating": null, "Title": "Goodbye, Lenin!"}, {"IMDB Rating": 5, "Production Budget": 17000000, "Rotten Tomatoes Rating": 45, "Title": "Good Boy!"}, {"IMDB Rating": 6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 8, "Title": "Gods and Generals"}, {"IMDB Rating": 6.1, "Production Budget": 32000000, "Rotten Tomatoes Rating": 32, "Title": "The Good German"}, {"IMDB Rating": 7.5, "Production Budget": 3500000, "Rotten Tomatoes Rating": 96, "Title": "Gods and Monsters"}, {"IMDB Rating": 6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 29, "Title": "The Good Night"}, {"IMDB Rating": null, "Production Budget": 30000000, "Rotten Tomatoes Rating": 78, "Title": "The Good Thief"}, {"IMDB Rating": 5.7, "Production Budget": 32000000, "Rotten Tomatoes Rating": null, "Title": "George and the Dragon"}, {"IMDB Rating": 6.2, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Gerry"}, {"IMDB Rating": 5, "Production Budget": 82500000, "Rotten Tomatoes Rating": 22, "Title": "G-Force"}, {"IMDB Rating": 6.8, "Production Budget": 30000000, "Rotten Tomatoes Rating": 41, "Title": "Gridiron Gang"}, {"IMDB Rating": 6.6, "Production Budget": 8000000, "Rotten Tomatoes Rating": 81, "Title": "The Good Girl"}, {"IMDB Rating": 5.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 13, "Title": "Ghost Ship"}, {"IMDB Rating": 6.4, "Production Budget": 36000000, "Rotten Tomatoes Rating": 50, "Title": "Ghosts of Mississippi"}, {"IMDB Rating": 5.6, "Production Budget": 22000000, "Rotten Tomatoes Rating": 21, "Title": "The Glass House"}, {"IMDB Rating": 5.2, "Production Budget": 120000000, "Rotten Tomatoes Rating": 26, "Title": "Ghost Rider"}, {"IMDB Rating": 4.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 85, "Title": "Ghost Town"}, {"IMDB Rating": 6.7, "Production Budget": 10000000, "Rotten Tomatoes Rating": 56, "Title": "The Gift"}, {"IMDB Rating": 2.4, "Production Budget": 54000000, "Rotten Tomatoes Rating": 6, "Title": "Gigli"}, {"IMDB Rating": 5.5, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "G.I.Jane"}, {"IMDB Rating": 5.8, "Production Budget": 175000000, "Rotten Tomatoes Rating": null, "Title": "G.I. Joe: The Rise of Cobra"}, {"IMDB Rating": null, "Production Budget": 24000000, "Rotten Tomatoes Rating": 53, "Title": "Girl, Interrupted"}, {"IMDB Rating": 8.3, "Production Budget": 103000000, "Rotten Tomatoes Rating": 77, "Title": "Gladiator"}, {"IMDB Rating": 2, "Production Budget": 8500000, "Rotten Tomatoes Rating": 7, "Title": "Glitter"}, {"IMDB Rating": 4.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": 19, "Title": "Gloria"}, {"IMDB Rating": 5.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 5, "Title": "Good Luck Chuck"}, {"IMDB Rating": 8.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": 77, "Title": "The Green Mile"}, {"IMDB Rating": 6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 25, "Title": "The Game of Their Lives"}, {"IMDB Rating": 8.1, "Production Budget": 5000000, "Rotten Tomatoes Rating": 40, "Title": "Gandhi, My Father"}, {"IMDB Rating": 7.7, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Good Night and Good Luck"}, {"IMDB Rating": 6.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": 22, "Title": "The General's Daughter"}, {"IMDB Rating": 5.4, "Production Budget": 10000000, "Rotten Tomatoes Rating": 24, "Title": "Gun Shy"}, {"IMDB Rating": null, "Production Budget": 6500000, "Rotten Tomatoes Rating": 92, "Title": "Go!"}, {"IMDB Rating": 6.9, "Production Budget": 33000000, "Rotten Tomatoes Rating": null, "Title": "Goal!"}, {"IMDB Rating": 4.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": 4, "Title": "Godsend"}, {"IMDB Rating": 4.8, "Production Budget": 125000000, "Rotten Tomatoes Rating": 25, "Title": "Godzilla"}, {"IMDB Rating": 6.4, "Production Budget": 103300000, "Rotten Tomatoes Rating": null, "Title": "Gone in 60 Seconds"}, {"IMDB Rating": 6.2, "Production Budget": 16000000, "Rotten Tomatoes Rating": 34, "Title": "Good"}, {"IMDB Rating": 8.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": 97, "Title": "Good Will Hunting"}, {"IMDB Rating": 7.3, "Production Budget": 18000000, "Rotten Tomatoes Rating": 86, "Title": "Gosford Park"}, {"IMDB Rating": null, "Production Budget": 14000000, "Rotten Tomatoes Rating": 28, "Title": "Gossip"}, {"IMDB Rating": 6.3, "Production Budget": 22000000, "Rotten Tomatoes Rating": 27, "Title": "The Game Plan"}, {"IMDB Rating": 7.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 71, "Title": "Girl with a Pearl Earring"}, {"IMDB Rating": 7.2, "Production Budget": 45000000, "Rotten Tomatoes Rating": 89, "Title": "Galaxy Quest"}, {"IMDB Rating": 6.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": 63, "Title": "Saving Grace"}, {"IMDB Rating": 6.2, "Production Budget": 9000000, "Rotten Tomatoes Rating": 59, "Title": "Gracie"}, {"IMDB Rating": 6.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 36, "Title": "The Great Raid"}, {"IMDB Rating": 6.1, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "The Grand"}, {"IMDB Rating": 7.6, "Production Budget": 25500000, "Rotten Tomatoes Rating": 83, "Title": "The Constant Gardener"}, {"IMDB Rating": 7.9, "Production Budget": 2500000, "Rotten Tomatoes Rating": 86, "Title": "Garden State"}, {"IMDB Rating": 7, "Production Budget": 6000000, "Rotten Tomatoes Rating": 83, "Title": "Grease"}, {"IMDB Rating": 7.1, "Production Budget": 100000000, "Rotten Tomatoes Rating": 55, "Title": "Green Zone"}, {"IMDB Rating": 5.3, "Production Budget": 55000000, "Rotten Tomatoes Rating": 54, "Title": "George Of The Jungle"}, {"IMDB Rating": 5.9, "Production Budget": 80000000, "Rotten Tomatoes Rating": 37, "Title": "The Brothers Grimm"}, {"IMDB Rating": 7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 56, "Title": "The Girl Next Door"}, {"IMDB Rating": 5.7, "Production Budget": 123000000, "Rotten Tomatoes Rating": 53, "Title": "How the Grinch Stole Christmas"}, {"IMDB Rating": 7.9, "Production Budget": 53000000, "Rotten Tomatoes Rating": null, "Title": "Grindhouse"}, {"IMDB Rating": 4, "Production Budget": 40000000, "Rotten Tomatoes Rating": 16, "Title": "Get Rich or Die Tryin'"}, {"IMDB Rating": 7.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 95, "Title": "Wallace & Gromit: The Curse of the Were-Rabbit"}, {"IMDB Rating": 5.8, "Production Budget": 500000, "Rotten Tomatoes Rating": 56, "Title": "Groove"}, {"IMDB Rating": 7.4, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Grosse Point Blank"}, {"IMDB Rating": 4.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 10, "Title": "The Grudge 2"}, {"IMDB Rating": 5.7, "Production Budget": 10000000, "Rotten Tomatoes Rating": 39, "Title": "The Grudge"}, {"IMDB Rating": 5.8, "Production Budget": 75000000, "Rotten Tomatoes Rating": 9, "Title": "Grown Ups"}, {"IMDB Rating": 5.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 43, "Title": "Guess Who"}, {"IMDB Rating": 4.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 12, "Title": "Get Carter"}, {"IMDB Rating": 5.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": 45, "Title": "Get Over It"}, {"IMDB Rating": 6.8, "Production Budget": 17000000, "Rotten Tomatoes Rating": 54, "Title": "Veronica Guerin"}, {"IMDB Rating": 5.5, "Production Budget": 11000000, "Rotten Tomatoes Rating": null, "Title": "The Guru"}, {"IMDB Rating": 5.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "A Guy Thing"}, {"IMDB Rating": 7.7, "Production Budget": 5500000, "Rotten Tomatoes Rating": 92, "Title": "Ghost World"}, {"IMDB Rating": 4.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Halloween 2"}, {"IMDB Rating": 7.2, "Production Budget": 75000000, "Rotten Tomatoes Rating": 91, "Title": "Hairspray"}, {"IMDB Rating": 6.3, "Production Budget": 8000000, "Rotten Tomatoes Rating": 29, "Title": "Half Baked"}, {"IMDB Rating": 6, "Production Budget": 18000000, "Rotten Tomatoes Rating": 94, "Title": "Hamlet"}, {"IMDB Rating": 6, "Production Budget": 2000000, "Rotten Tomatoes Rating": 71, "Title": "Hamlet"}, {"IMDB Rating": 6.5, "Production Budget": 150000000, "Rotten Tomatoes Rating": 40, "Title": "Hancock"}, {"IMDB Rating": 3.9, "Production Budget": 47000000, "Rotten Tomatoes Rating": null, "Title": "Happily N'Ever After"}, {"IMDB Rating": 5.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": 18, "Title": "The Happening"}, {"IMDB Rating": 7.5, "Production Budget": 1700000, "Rotten Tomatoes Rating": 82, "Title": "Happy, Texas"}, {"IMDB Rating": 7.2, "Production Budget": 950000, "Rotten Tomatoes Rating": null, "Title": "Hard Candy"}, {"IMDB Rating": 7, "Production Budget": 2000000, "Rotten Tomatoes Rating": 48, "Title": "Harsh Times"}, {"IMDB Rating": 4.9, "Production Budget": 5500000, "Rotten Tomatoes Rating": null, "Title": "Harvard Man"}, {"IMDB Rating": 7.4, "Production Budget": 7300000, "Rotten Tomatoes Rating": null, "Title": "Harry Brown"}, {"IMDB Rating": 5.5, "Production Budget": 25000000, "Rotten Tomatoes Rating": 39, "Title": "The House Bunny"}, {"IMDB Rating": 6.9, "Production Budget": 7000000, "Rotten Tomatoes Rating": 54, "Title": "The Devil's Rejects"}, {"IMDB Rating": 5.5, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "House of 1,000 Corpses"}, {"IMDB Rating": 6.5, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "The House of the Dead"}, {"IMDB Rating": 6.6, "Production Budget": 78000000, "Rotten Tomatoes Rating": 46, "Title": "Hidalgo"}, {"IMDB Rating": 5.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 12, "Title": "Hide and Seek"}, {"IMDB Rating": 6.7, "Production Budget": 17500000, "Rotten Tomatoes Rating": null, "Title": "Hoodwinked"}, {"IMDB Rating": 5.1, "Production Budget": 35200000, "Rotten Tomatoes Rating": 30, "Title": "Head of State"}, {"IMDB Rating": 7.6, "Production Budget": 6000000, "Rotten Tomatoes Rating": 92, "Title": "Hedwig and the Angry Inch"}, {"IMDB Rating": 6.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 80, "Title": "Pooh's Heffalump Movie"}, {"IMDB Rating": 6.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 80, "Title": "He Got Game"}, {"IMDB Rating": 3.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 66, "Title": "Heist"}, {"IMDB Rating": 7.3, "Production Budget": 82500000, "Rotten Tomatoes Rating": null, "Title": "Hellboy 2: The Golden Army"}, {"IMDB Rating": 6.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 81, "Title": "Hellboy"}, {"IMDB Rating": 5.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 22, "Title": "Raising Helen"}, {"IMDB Rating": 6.7, "Production Budget": 6500000, "Rotten Tomatoes Rating": 48, "Title": "A Home at the End of the World"}, {"IMDB Rating": 4.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 18, "Title": "Here on Earth"}, {"IMDB Rating": 4.8, "Production Budget": 14000000, "Rotten Tomatoes Rating": 9, "Title": "Head Over Heels"}, {"IMDB Rating": 4.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 17, "Title": "The Haunting"}, {"IMDB Rating": 6.1, "Production Budget": 42000000, "Rotten Tomatoes Rating": 31, "Title": "High Crimes"}, {"IMDB Rating": 7.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 92, "Title": "High Fidelity"}, {"IMDB Rating": 4.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Highlander: Endgame"}, {"IMDB Rating": 6.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": 20, "Title": "High Heels and Low Lifes"}, {"IMDB Rating": 3.7, "Production Budget": 11000000, "Rotten Tomatoes Rating": 66, "Title": "High School Musical 3: Senior Year"}, {"IMDB Rating": 6.7, "Production Budget": 3700000, "Rotten Tomatoes Rating": 63, "Title": "The History Boys"}, {"IMDB Rating": 7.6, "Production Budget": 32000000, "Rotten Tomatoes Rating": 87, "Title": "A History of Violence"}, {"IMDB Rating": 5.7, "Production Budget": 55000000, "Rotten Tomatoes Rating": 69, "Title": "Hitch"}, {"IMDB Rating": 6.8, "Production Budget": 17500000, "Rotten Tomatoes Rating": 14, "Title": "Hitman"}, {"IMDB Rating": 6.7, "Production Budget": 12000000, "Rotten Tomatoes Rating": 54, "Title": "Harold & Kumar Escape from Guantanamo Bay"}, {"IMDB Rating": 7.2, "Production Budget": 9000000, "Rotten Tomatoes Rating": 74, "Title": "Harold & Kumar Go to White Castle"}, {"IMDB Rating": 4.7, "Production Budget": 8000000, "Rotten Tomatoes Rating": 17, "Title": "Held Up"}, {"IMDB Rating": 5, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "The Hills Have Eyes II"}, {"IMDB Rating": 6.5, "Production Budget": 17000000, "Rotten Tomatoes Rating": 49, "Title": "The Hills Have Eyes"}, {"IMDB Rating": 6.7, "Production Budget": 28000000, "Rotten Tomatoes Rating": 36, "Title": "How to Lose Friends & Alienate People"}, {"IMDB Rating": 4.1, "Production Budget": 25000000, "Rotten Tomatoes Rating": 2, "Title": "Half Past Dead"}, {"IMDB Rating": 3.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Halloween: Resurrection"}, {"IMDB Rating": 4.7, "Production Budget": 60000000, "Rotten Tomatoes Rating": 12, "Title": "Holy Man"}, {"IMDB Rating": 3.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 94, "Title": "Milk"}, {"IMDB Rating": 6.4, "Production Budget": 9000000, "Rotten Tomatoes Rating": 64, "Title": "Hamlet 2"}, {"IMDB Rating": null, "Production Budget": 6500000, "Rotten Tomatoes Rating": 71, "Title": "Hannah Montana/Miley Cyrus: Best of Both Worlds Concert Tour"}, {"IMDB Rating": 5.4, "Production Budget": 110000000, "Rotten Tomatoes Rating": 54, "Title": "Home on the Range"}, {"IMDB Rating": 6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 15, "Title": "Hannibal Rising"}, {"IMDB Rating": 7.9, "Production Budget": 35000000, "Rotten Tomatoes Rating": 78, "Title": "The Hangover"}, {"IMDB Rating": 4.3, "Production Budget": 40000000, "Rotten Tomatoes Rating": 12, "Title": "Hanging Up"}, {"IMDB Rating": 6.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 85, "Title": "The Hoax"}, {"IMDB Rating": 7.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 77, "Title": "Holes"}, {"IMDB Rating": 6.9, "Production Budget": 85000000, "Rotten Tomatoes Rating": 47, "Title": "The Holiday"}, {"IMDB Rating": 5.5, "Production Budget": 90000000, "Rotten Tomatoes Rating": 28, "Title": "Hollow Man"}, {"IMDB Rating": 4.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 31, "Title": "Home Fries"}, {"IMDB Rating": 4.6, "Production Budget": 18000000, "Rotten Tomatoes Rating": 20, "Title": "Honey"}, {"IMDB Rating": 2.6, "Production Budget": 27000000, "Rotten Tomatoes Rating": 14, "Title": "The Honeymooners"}, {"IMDB Rating": 5.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 26, "Title": "Hoot"}, {"IMDB Rating": 5.3, "Production Budget": 30000000, "Rotten Tomatoes Rating": 23, "Title": "Hope Floats"}, {"IMDB Rating": 7.2, "Production Budget": 85000000, "Rotten Tomatoes Rating": null, "Title": "Horton Hears a Who"}, {"IMDB Rating": 5.4, "Production Budget": 7500000, "Rotten Tomatoes Rating": 45, "Title": "Hostel: Part II"}, {"IMDB Rating": 7.3, "Production Budget": 75000000, "Rotten Tomatoes Rating": null, "Title": "Hostage"}, {"IMDB Rating": 5.7, "Production Budget": 4800000, "Rotten Tomatoes Rating": null, "Title": "Hostel"}, {"IMDB Rating": 6.5, "Production Budget": 25000000, "Rotten Tomatoes Rating": 40, "Title": "Hot Rod"}, {"IMDB Rating": 7.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 80, "Title": "The Hours"}, {"IMDB Rating": 7.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": 46, "Title": "Life as a House"}, {"IMDB Rating": 5.4, "Production Budget": 20000000, "Rotten Tomatoes Rating": 34, "Title": "Bringing Down the House"}, {"IMDB Rating": 5.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 25, "Title": "House of Wax"}, {"IMDB Rating": 5.4, "Production Budget": 16000000, "Rotten Tomatoes Rating": 29, "Title": "How to Deal"}, {"IMDB Rating": 5.5, "Production Budget": 12000000, "Rotten Tomatoes Rating": 27, "Title": "How High"}, {"IMDB Rating": 7.2, "Production Budget": 100000000, "Rotten Tomatoes Rating": 82, "Title": "Harry Potter and the Chamber of Secrets"}, {"IMDB Rating": 7.7, "Production Budget": 130000000, "Rotten Tomatoes Rating": 90, "Title": "Harry Potter and the Prisoner of Azkaban"}, {"IMDB Rating": 7.6, "Production Budget": 150000000, "Rotten Tomatoes Rating": 88, "Title": "Harry Potter and the Goblet of Fire"}, {"IMDB Rating": 7.4, "Production Budget": 150000000, "Rotten Tomatoes Rating": 78, "Title": "Harry Potter and the Order of the Phoenix"}, {"IMDB Rating": 7.3, "Production Budget": 250000000, "Rotten Tomatoes Rating": 83, "Title": "Harry Potter and the Half-Blood Prince"}, {"IMDB Rating": 7.2, "Production Budget": 125000000, "Rotten Tomatoes Rating": null, "Title": "Harry Potter and the Sorcerer's Stone"}, {"IMDB Rating": 6.7, "Production Budget": 85000000, "Rotten Tomatoes Rating": 74, "Title": "Happy Feet"}, {"IMDB Rating": 6.8, "Production Budget": 70000000, "Rotten Tomatoes Rating": 84, "Title": "Hercules"}, {"IMDB Rating": 4.1, "Production Budget": 21000000, "Rotten Tomatoes Rating": 38, "Title": "Hardball"}, {"IMDB Rating": 5.6, "Production Budget": 70000000, "Rotten Tomatoes Rating": 26, "Title": "Hard Rain"}, {"IMDB Rating": 6.3, "Production Budget": 60000000, "Rotten Tomatoes Rating": 71, "Title": "The Horse Whisperer"}, {"IMDB Rating": 6.3, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "The Heart of Me"}, {"IMDB Rating": 7.5, "Production Budget": 3750000, "Rotten Tomatoes Rating": null, "Title": "Casa de Areia"}, {"IMDB Rating": 5.1, "Production Budget": 12500000, "Rotten Tomatoes Rating": 22, "Title": "Sorority Row"}, {"IMDB Rating": 6.2, "Production Budget": 70000000, "Rotten Tomatoes Rating": 58, "Title": "Hart's War"}, {"IMDB Rating": 6.6, "Production Budget": 45000000, "Rotten Tomatoes Rating": 60, "Title": "The Hitchhiker's Guide to the Galaxy"}, {"IMDB Rating": 5.4, "Production Budget": 2850000, "Rotten Tomatoes Rating": null, "Title": "High Tension"}, {"IMDB Rating": 8, "Production Budget": 16000000, "Rotten Tomatoes Rating": 91, "Title": "Hot Fuzz"}, {"IMDB Rating": 6.6, "Production Budget": 3300000, "Rotten Tomatoes Rating": null, "Title": "Human Traffic"}, {"IMDB Rating": 8.2, "Production Budget": 165000000, "Rotten Tomatoes Rating": 98, "Title": "How to Train Your Dragon"}, {"IMDB Rating": 6.8, "Production Budget": 22000000, "Rotten Tomatoes Rating": 62, "Title": "I Heart Huckabees"}, {"IMDB Rating": 5.7, "Production Budget": 137000000, "Rotten Tomatoes Rating": 62, "Title": "Hulk"}, {"IMDB Rating": 7.1, "Production Budget": 137500000, "Rotten Tomatoes Rating": 66, "Title": "The Incredible Hulk"}, {"IMDB Rating": 6.5, "Production Budget": 100000000, "Rotten Tomatoes Rating": 73, "Title": "The Hunchback of Notre Dame"}, {"IMDB Rating": 5.8, "Production Budget": 55000000, "Rotten Tomatoes Rating": 31, "Title": "The Hunted"}, {"IMDB Rating": 7.8, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "The Hurt Locker"}, {"IMDB Rating": 7.5, "Production Budget": 2800000, "Rotten Tomatoes Rating": null, "Title": "Hustle & Flow"}, {"IMDB Rating": 6.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": 64, "Title": "Starsky & Hutch"}, {"IMDB Rating": 6.3, "Production Budget": 16000000, "Rotten Tomatoes Rating": 46, "Title": "Hollywood Ending"}, {"IMDB Rating": 5.2, "Production Budget": 75000000, "Rotten Tomatoes Rating": 30, "Title": "Hollywood Homicide"}, {"IMDB Rating": 5.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": 16, "Title": "Whatever it Takes"}, {"IMDB Rating": 6.9, "Production Budget": 75000000, "Rotten Tomatoes Rating": null, "Title": "Ice Age: The Meltdown"}, {"IMDB Rating": 7.1, "Production Budget": 90000000, "Rotten Tomatoes Rating": null, "Title": "Ice Age: Dawn of the Dinosaurs"}, {"IMDB Rating": 7.4, "Production Budget": 65000000, "Rotten Tomatoes Rating": 77, "Title": "Ice Age"}, {"IMDB Rating": 6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 52, "Title": "Ice Princess"}, {"IMDB Rating": 7.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": 82, "Title": "The Ice Storm"}, {"IMDB Rating": 5.2, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "I Come with the Rain"}, {"IMDB Rating": 7.3, "Production Budget": 28000000, "Rotten Tomatoes Rating": 62, "Title": "Identity"}, {"IMDB Rating": 6.7, "Production Budget": 10700000, "Rotten Tomatoes Rating": 86, "Title": "An Ideal Husband"}, {"IMDB Rating": 5.8, "Production Budget": 15000000, "Rotten Tomatoes Rating": 47, "Title": "Idlewild"}, {"IMDB Rating": 7, "Production Budget": 9000000, "Rotten Tomatoes Rating": 76, "Title": "Igby Goes Down"}, {"IMDB Rating": 6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 35, "Title": "Igor"}, {"IMDB Rating": 3.3, "Production Budget": 3500000, "Rotten Tomatoes Rating": 17, "Title": "I Got the Hook-Up!"}, {"IMDB Rating": 5.8, "Production Budget": 15000000, "Rotten Tomatoes Rating": 15, "Title": "Idle Hands"}, {"IMDB Rating": 7.2, "Production Budget": 10000000, "Rotten Tomatoes Rating": 35, "Title": "Imaginary Heroes"}, {"IMDB Rating": 4.1, "Production Budget": 24000000, "Rotten Tomatoes Rating": 8, "Title": "I Still Know What You Did Last Summer"}, {"IMDB Rating": 5.4, "Production Budget": 17000000, "Rotten Tomatoes Rating": 36, "Title": "I Know What You Did Last Summer"}, {"IMDB Rating": 5.9, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "I Love You, Beth Cooper"}, {"IMDB Rating": 7.7, "Production Budget": 16500000, "Rotten Tomatoes Rating": 74, "Title": "The Illusionist"}, {"IMDB Rating": 6.1, "Production Budget": 1200000, "Rotten Tomatoes Rating": null, "Title": "But I'm a Cheerleader"}, {"IMDB Rating": 7.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 64, "Title": "The Imaginarium of Doctor Parnassus"}, {"IMDB Rating": 6.7, "Production Budget": 7900000, "Rotten Tomatoes Rating": null, "Title": "Imagine Me & You"}, {"IMDB Rating": 5.4, "Production Budget": 55000000, "Rotten Tomatoes Rating": 38, "Title": "Imagine That"}, {"IMDB Rating": 6, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Impostor"}, {"IMDB Rating": 9.1, "Production Budget": 160000000, "Rotten Tomatoes Rating": 87, "Title": "Inception"}, {"IMDB Rating": 5.2, "Production Budget": 12000000, "Rotten Tomatoes Rating": 34, "Title": "In the Cut"}, {"IMDB Rating": 5.5, "Production Budget": 7000000, "Rotten Tomatoes Rating": 36, "Title": "In Too Deep"}, {"IMDB Rating": 7.2, "Production Budget": 18900000, "Rotten Tomatoes Rating": null, "Title": "IndigËnes"}, {"IMDB Rating": 6.6, "Production Budget": 185000000, "Rotten Tomatoes Rating": 77, "Title": "Indiana Jones and the Kingdom of the Crystal Skull"}, {"IMDB Rating": 5.3, "Production Budget": 30000000, "Rotten Tomatoes Rating": 22, "Title": "In Dreams"}, {"IMDB Rating": 7.1, "Production Budget": 13000000, "Rotten Tomatoes Rating": 72, "Title": "Infamous"}, {"IMDB Rating": 6.2, "Production Budget": 22000000, "Rotten Tomatoes Rating": null, "Title": "The Informant"}, {"IMDB Rating": 5.2, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "The Informers"}, {"IMDB Rating": 6.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": 40, "Title": "Inkheart"}, {"IMDB Rating": 6.1, "Production Budget": 35000000, "Rotten Tomatoes Rating": 71, "Title": "In & Out"}, {"IMDB Rating": 6.1, "Production Budget": 85000000, "Rotten Tomatoes Rating": 14, "Title": "I Now Pronounce You Chuck and Larry"}, {"IMDB Rating": 7.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 86, "Title": "Inside Man"}, {"IMDB Rating": 8, "Production Budget": 68000000, "Rotten Tomatoes Rating": 96, "Title": "The Insider"}, {"IMDB Rating": 6.3, "Production Budget": 46000000, "Rotten Tomatoes Rating": 92, "Title": "Insomnia"}, {"IMDB Rating": 3.9, "Production Budget": 75000000, "Rotten Tomatoes Rating": 21, "Title": "Inspector Gadget"}, {"IMDB Rating": 6.2, "Production Budget": 55000000, "Rotten Tomatoes Rating": 27, "Title": "Instinct"}, {"IMDB Rating": 6.5, "Production Budget": 18500000, "Rotten Tomatoes Rating": 57, "Title": "The Invention of Lying"}, {"IMDB Rating": 6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 19, "Title": "The Invasion"}, {"IMDB Rating": 6.3, "Production Budget": 3500000, "Rotten Tomatoes Rating": null, "Title": "Ira and Abby"}, {"IMDB Rating": null, "Production Budget": 105000000, "Rotten Tomatoes Rating": 58, "Title": "I, Robot"}, {"IMDB Rating": 7.3, "Production Budget": 170000000, "Rotten Tomatoes Rating": 74, "Title": "Iron Man 2"}, {"IMDB Rating": 7.9, "Production Budget": 186000000, "Rotten Tomatoes Rating": 94, "Title": "Iron Man"}, {"IMDB Rating": 7.9, "Production Budget": 50000000, "Rotten Tomatoes Rating": 97, "Title": "The Iron Giant"}, {"IMDB Rating": 7.4, "Production Budget": 4900000, "Rotten Tomatoes Rating": null, "Title": "Obsluhoval jsem anglickÈho kr·le"}, {"IMDB Rating": 6.9, "Production Budget": 120000000, "Rotten Tomatoes Rating": 40, "Title": "The Island"}, {"IMDB Rating": 4.9, "Production Budget": 36000000, "Rotten Tomatoes Rating": 25, "Title": "Isn't She Great"}, {"IMDB Rating": 5.3, "Production Budget": 70000000, "Rotten Tomatoes Rating": 15, "Title": "I Spy"}, {"IMDB Rating": 6.9, "Production Budget": 60000000, "Rotten Tomatoes Rating": 73, "Title": "The Italian Job"}, {"IMDB Rating": 5.5, "Production Budget": 14000000, "Rotten Tomatoes Rating": 19, "Title": "I Think I Love My Wife"}, {"IMDB Rating": 4.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 15, "Title": "Jack Frost"}, {"IMDB Rating": 7.6, "Production Budget": 12000000, "Rotten Tomatoes Rating": 85, "Title": "Jackie Brown"}, {"IMDB Rating": 6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 12, "Title": "The Jackal"}, {"IMDB Rating": 7.1, "Production Budget": 28500000, "Rotten Tomatoes Rating": 43, "Title": "The Jacket"}, {"IMDB Rating": 6.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 30, "Title": "Jakob the Liar"}, {"IMDB Rating": 7.2, "Production Budget": 72000000, "Rotten Tomatoes Rating": 61, "Title": "Jarhead"}, {"IMDB Rating": 4.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": 7, "Title": "Jawbreaker"}, {"IMDB Rating": 6.3, "Production Budget": 135000000, "Rotten Tomatoes Rating": 51, "Title": "The World is Not Enough"}, {"IMDB Rating": 6, "Production Budget": 142000000, "Rotten Tomatoes Rating": 59, "Title": "Die Another Day"}, {"IMDB Rating": 8, "Production Budget": 102000000, "Rotten Tomatoes Rating": 94, "Title": "Casino Royale"}, {"IMDB Rating": 6.8, "Production Budget": 230000000, "Rotten Tomatoes Rating": 64, "Title": "Quantum of Solace"}, {"IMDB Rating": 5.3, "Production Budget": 16000000, "Rotten Tomatoes Rating": 42, "Title": "Jennifer's Body"}, {"IMDB Rating": 7.2, "Production Budget": 11000000, "Rotten Tomatoes Rating": 63, "Title": "Jackass: Number Two"}, {"IMDB Rating": 6.3, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Jackass: The Movie"}, {"IMDB Rating": 5.9, "Production Budget": 45000000, "Rotten Tomatoes Rating": null, "Title": "Journey to the Center of the Earth"}, {"IMDB Rating": 5.4, "Production Budget": 16000000, "Rotten Tomatoes Rating": 11, "Title": "Joe Dirt"}, {"IMDB Rating": 6.7, "Production Budget": 26000000, "Rotten Tomatoes Rating": 45, "Title": "The Curse of the Jade Scorpion"}, {"IMDB Rating": 5.7, "Production Budget": 10000000, "Rotten Tomatoes Rating": 45, "Title": "Jeepers Creepers"}, {"IMDB Rating": 5.8, "Production Budget": 45000000, "Rotten Tomatoes Rating": 33, "Title": "Johnny English"}, {"IMDB Rating": 5.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Jeepers Creepers II"}, {"IMDB Rating": 7.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": 75, "Title": "The Assassination of Jesse James by the Coward Robert Ford"}, {"IMDB Rating": 3.8, "Production Budget": 12000000, "Rotten Tomatoes Rating": 6, "Title": "Johnson Family Vacation"}, {"IMDB Rating": 6.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 40, "Title": "Jersey Girl"}, {"IMDB Rating": 5.1, "Production Budget": 1000000, "Rotten Tomatoes Rating": 40, "Title": "The Jimmy Show"}, {"IMDB Rating": 6.4, "Production Budget": 10800000, "Rotten Tomatoes Rating": null, "Title": "Jindabyne"}, {"IMDB Rating": 5.7, "Production Budget": 400000, "Rotten Tomatoes Rating": 29, "Title": "Jackpot"}, {"IMDB Rating": 6.8, "Production Budget": 58000000, "Rotten Tomatoes Rating": 57, "Title": "Just Like Heaven"}, {"IMDB Rating": 5, "Production Budget": 28000000, "Rotten Tomatoes Rating": 13, "Title": "Just My Luck"}, {"IMDB Rating": null, "Production Budget": 50000000, "Rotten Tomatoes Rating": 31, "Title": "The Messenger: The Story of Joan of Arc"}, {"IMDB Rating": 5.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 19, "Title": "The Jungle Book 2"}, {"IMDB Rating": 5.3, "Production Budget": 38000000, "Rotten Tomatoes Rating": 19, "Title": "Joe Somebody"}, {"IMDB Rating": 4.3, "Production Budget": 47000000, "Rotten Tomatoes Rating": 13, "Title": "Jonah Hex"}, {"IMDB Rating": 6.6, "Production Budget": 36000000, "Rotten Tomatoes Rating": 22, "Title": "John Q"}, {"IMDB Rating": 6.3, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "Jonah: A VeggieTales Movie"}, {"IMDB Rating": 6.6, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "The Joneses"}, {"IMDB Rating": 5.1, "Production Budget": 22000000, "Rotten Tomatoes Rating": 53, "Title": "Josie and the Pussycats"}, {"IMDB Rating": 5.4, "Production Budget": 23000000, "Rotten Tomatoes Rating": null, "Title": "Joy Ride"}, {"IMDB Rating": 7.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 84, "Title": "Jerry Maguire"}, {"IMDB Rating": 6.8, "Production Budget": 22000000, "Rotten Tomatoes Rating": 53, "Title": "Jay and Silent Bob Strike Back"}, {"IMDB Rating": 6.7, "Production Budget": 2500000, "Rotten Tomatoes Rating": null, "Title": "Jesus' Son"}, {"IMDB Rating": 7.1, "Production Budget": 18000000, "Rotten Tomatoes Rating": 76, "Title": "Being Julia"}, {"IMDB Rating": 7.2, "Production Budget": 40000000, "Rotten Tomatoes Rating": 75, "Title": "Julie & Julia"}, {"IMDB Rating": 5.9, "Production Budget": 82500000, "Rotten Tomatoes Rating": 17, "Title": "Jumper"}, {"IMDB Rating": 7.1, "Production Budget": 1000000, "Rotten Tomatoes Rating": 86, "Title": "Junebug"}, {"IMDB Rating": 7.9, "Production Budget": 7000000, "Rotten Tomatoes Rating": 93, "Title": "Juno"}, {"IMDB Rating": 7.9, "Production Budget": 93000000, "Rotten Tomatoes Rating": null, "Title": "Jurassic Park 3"}, {"IMDB Rating": 6.3, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Just Looking"}, {"IMDB Rating": 5.1, "Production Budget": 19000000, "Rotten Tomatoes Rating": 20, "Title": "Just Married"}, {"IMDB Rating": 4.1, "Production Budget": 15600000, "Rotten Tomatoes Rating": null, "Title": "Juwanna Man"}, {"IMDB Rating": 5.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 41, "Title": "Freddy vs. Jason"}, {"IMDB Rating": 6.5, "Production Budget": 90000000, "Rotten Tomatoes Rating": 61, "Title": "K-19: The Widowmaker"}, {"IMDB Rating": 6.2, "Production Budget": 48000000, "Rotten Tomatoes Rating": null, "Title": "Kate and Leopold"}, {"IMDB Rating": 4.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": null, "Title": "Kangaroo Jack"}, {"IMDB Rating": 8.1, "Production Budget": 28000000, "Rotten Tomatoes Rating": 75, "Title": "Kick-Ass"}, {"IMDB Rating": 6.2, "Production Budget": 3000000, "Rotten Tomatoes Rating": 86, "Title": "The Original Kings of Comedy"}, {"IMDB Rating": 6.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": 51, "Title": "Kiss of the Dragon"}, {"IMDB Rating": null, "Production Budget": 20000000, "Rotten Tomatoes Rating": 89, "Title": "Kung Fu Hustle"}, {"IMDB Rating": 6.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 67, "Title": "The Karate Kid"}, {"IMDB Rating": 6.4, "Production Budget": 600000, "Rotten Tomatoes Rating": 77, "Title": "The Kentucky Fried Movie"}, {"IMDB Rating": 6.9, "Production Budget": 45000000, "Rotten Tomatoes Rating": null, "Title": "Kicking and Screaming"}, {"IMDB Rating": 8, "Production Budget": 55000000, "Rotten Tomatoes Rating": null, "Title": "Kill Bill: Volume 2"}, {"IMDB Rating": 8.2, "Production Budget": 55000000, "Rotten Tomatoes Rating": 85, "Title": "Kill Bill: Volume 1"}, {"IMDB Rating": null, "Production Budget": 7000000, "Rotten Tomatoes Rating": 28, "Title": "Kingdom Come"}, {"IMDB Rating": 7.1, "Production Budget": 110000000, "Rotten Tomatoes Rating": 39, "Title": "Kingdom of Heaven"}, {"IMDB Rating": 7.2, "Production Budget": 11000000, "Rotten Tomatoes Rating": 90, "Title": "Kinsey"}, {"IMDB Rating": 6.8, "Production Budget": 1500000, "Rotten Tomatoes Rating": null, "Title": "Kissing Jessica Stein"}, {"IMDB Rating": 6.4, "Production Budget": 27000000, "Rotten Tomatoes Rating": 32, "Title": "Kiss the Girls"}, {"IMDB Rating": 7.6, "Production Budget": 207000000, "Rotten Tomatoes Rating": 83, "Title": "King Kong"}, {"IMDB Rating": 7.5, "Production Budget": 27500000, "Rotten Tomatoes Rating": 90, "Title": "Knocked Up"}, {"IMDB Rating": 6.6, "Production Budget": 117000000, "Rotten Tomatoes Rating": null, "Title": "Knight and Day"}, {"IMDB Rating": 7.1, "Production Budget": 72500000, "Rotten Tomatoes Rating": 51, "Title": "The Kingdom"}, {"IMDB Rating": 4.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 13, "Title": "Black Knight"}, {"IMDB Rating": 6, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Knockaround Guys"}, {"IMDB Rating": 6.4, "Production Budget": 50000000, "Rotten Tomatoes Rating": 32, "Title": "Knowing"}, {"IMDB Rating": 4.1, "Production Budget": 35000000, "Rotten Tomatoes Rating": 8, "Title": "Knock Off"}, {"IMDB Rating": 7.3, "Production Budget": 48000000, "Rotten Tomatoes Rating": 40, "Title": "K-PAX"}, {"IMDB Rating": 4.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 5, "Title": "Christmas with the Kranks"}, {"IMDB Rating": 3.5, "Production Budget": 25000000, "Rotten Tomatoes Rating": 2, "Title": "King's Ransom"}, {"IMDB Rating": null, "Production Budget": 15000000, "Rotten Tomatoes Rating": 83, "Title": "Kiss Kiss, Bang Bang"}, {"IMDB Rating": 6.6, "Production Budget": 41000000, "Rotten Tomatoes Rating": 58, "Title": "A Knight's Tale"}, {"IMDB Rating": 7.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 66, "Title": "The Kite Runner"}, {"IMDB Rating": 7, "Production Budget": 28000000, "Rotten Tomatoes Rating": 76, "Title": "Kundun"}, {"IMDB Rating": 5.7, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Kung Pow: Enter the Fist"}, {"IMDB Rating": 8.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 99, "Title": "L.A. Confidential"}, {"IMDB Rating": 7.2, "Production Budget": 53000000, "Rotten Tomatoes Rating": 25, "Title": "Law Abiding Citizen"}, {"IMDB Rating": 6.5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 40, "Title": "Ladder 49"}, {"IMDB Rating": 6.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 54, "Title": "The Ladykillers"}, {"IMDB Rating": 5.8, "Production Budget": 75000000, "Rotten Tomatoes Rating": 24, "Title": "Lady in the Water"}, {"IMDB Rating": 6.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 36, "Title": "The Lake House"}, {"IMDB Rating": 6.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 46, "Title": "Lakeview Terrace"}, {"IMDB Rating": 4.7, "Production Budget": 11000000, "Rotten Tomatoes Rating": 11, "Title": "The Ladies Man"}, {"IMDB Rating": 5.3, "Production Budget": 100000000, "Rotten Tomatoes Rating": 26, "Title": "Land of the Lost"}, {"IMDB Rating": 6.5, "Production Budget": 45000000, "Rotten Tomatoes Rating": 77, "Title": "Changing Lanes"}, {"IMDB Rating": 7.5, "Production Budget": 12500000, "Rotten Tomatoes Rating": 81, "Title": "Lars and the Real Girl"}, {"IMDB Rating": 7.3, "Production Budget": 5900000, "Rotten Tomatoes Rating": null, "Title": "L'auberge espagnole"}, {"IMDB Rating": 5.7, "Production Budget": 32000000, "Rotten Tomatoes Rating": 18, "Title": "Laws of Attraction"}, {"IMDB Rating": 5.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 21, "Title": "Little Black Book"}, {"IMDB Rating": 7.4, "Production Budget": 6500000, "Rotten Tomatoes Rating": null, "Title": "Layer Cake"}, {"IMDB Rating": 2.8, "Production Budget": 17000000, "Rotten Tomatoes Rating": 6, "Title": "Larry the Cable Guy: Health Inspector"}, {"IMDB Rating": 7.8, "Production Budget": 14000000, "Rotten Tomatoes Rating": 79, "Title": "Little Children"}, {"IMDB Rating": 5.9, "Production Budget": 13000000, "Rotten Tomatoes Rating": 53, "Title": "Save the Last Dance"}, {"IMDB Rating": 5, "Production Budget": 18500000, "Rotten Tomatoes Rating": null, "Title": "Left Behind"}, {"IMDB Rating": 5, "Production Budget": 26000000, "Rotten Tomatoes Rating": 19, "Title": "Legion"}, {"IMDB Rating": 7.1, "Production Budget": 150000000, "Rotten Tomatoes Rating": 69, "Title": "I am Legend"}, {"IMDB Rating": 6.1, "Production Budget": 58000000, "Rotten Tomatoes Rating": 52, "Title": "Leatherheads"}, {"IMDB Rating": 8.1, "Production Budget": 13000000, "Rotten Tomatoes Rating": 91, "Title": "Letters from Iwo Jima"}, {"IMDB Rating": 6.3, "Production Budget": 45000000, "Rotten Tomatoes Rating": 54, "Title": "Last Holiday"}, {"IMDB Rating": 7.4, "Production Budget": 38000000, "Rotten Tomatoes Rating": 83, "Title": "The Hurricane"}, {"IMDB Rating": 6.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 82, "Title": "Liar Liar"}, {"IMDB Rating": 7.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 37, "Title": "Equilibrium"}, {"IMDB Rating": 5.8, "Production Budget": 23000000, "Rotten Tomatoes Rating": 19, "Title": "Chasing Liberty"}, {"IMDB Rating": 6.4, "Production Budget": 22000000, "Rotten Tomatoes Rating": null, "Title": "The Libertine"}, {"IMDB Rating": 7.2, "Production Budget": 700000, "Rotten Tomatoes Rating": 83, "Title": "L.I.E."}, {"IMDB Rating": 7.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 53, "Title": "The Life Aquatic with Steve Zissou"}, {"IMDB Rating": 7.3, "Production Budget": 50000000, "Rotten Tomatoes Rating": 20, "Title": "The Life of David Gale"}, {"IMDB Rating": 5.3, "Production Budget": 75000000, "Rotten Tomatoes Rating": 50, "Title": "Life"}, {"IMDB Rating": 4.4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 56, "Title": "Like Mike"}, {"IMDB Rating": 7.1, "Production Budget": 80000000, "Rotten Tomatoes Rating": null, "Title": "Lilo & Stitch"}, {"IMDB Rating": 6.9, "Production Budget": 8300000, "Rotten Tomatoes Rating": null, "Title": "Limbo"}, {"IMDB Rating": 5.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": 38, "Title": "Light It Up"}, {"IMDB Rating": 6.5, "Production Budget": 12000000, "Rotten Tomatoes Rating": 58, "Title": "Living Out Loud"}, {"IMDB Rating": 4.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 40, "Title": "The Lizzie McGuire Movie"}, {"IMDB Rating": 6.3, "Production Budget": 30000000, "Rotten Tomatoes Rating": 42, "Title": "Letters to Juliet"}, {"IMDB Rating": 6.1, "Production Budget": 6000000, "Rotten Tomatoes Rating": null, "Title": "Lucky Break"}, {"IMDB Rating": 7.8, "Production Budget": 6000000, "Rotten Tomatoes Rating": 87, "Title": "The Last King of Scotland"}, {"IMDB Rating": 6.7, "Production Budget": 55000000, "Rotten Tomatoes Rating": null, "Title": "Lolita"}, {"IMDB Rating": 6.8, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Love Lisa"}, {"IMDB Rating": 8, "Production Budget": 8000000, "Rotten Tomatoes Rating": 91, "Title": "Little Miss Sunshine"}, {"IMDB Rating": 6.7, "Production Budget": 10500000, "Rotten Tomatoes Rating": 44, "Title": "In the Land of Women"}, {"IMDB Rating": 6.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 27, "Title": "Lions for Lambs"}, {"IMDB Rating": 7.7, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "London"}, {"IMDB Rating": 6.1, "Production Budget": 50000000, "Rotten Tomatoes Rating": 43, "Title": "How to Lose a Guy in 10 Days"}, {"IMDB Rating": 5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 25, "Title": "Loser"}, {"IMDB Rating": null, "Production Budget": 25000000, "Rotten Tomatoes Rating": 48, "Title": "The Losers"}, {"IMDB Rating": 6.6, "Production Budget": 9600000, "Rotten Tomatoes Rating": null, "Title": "The Lost City"}, {"IMDB Rating": 4.8, "Production Budget": 80000000, "Rotten Tomatoes Rating": 26, "Title": "Lost In Space"}, {"IMDB Rating": 4.8, "Production Budget": 14000000, "Rotten Tomatoes Rating": 13, "Title": "Lost and Found"}, {"IMDB Rating": null, "Production Budget": 17000000, "Rotten Tomatoes Rating": 32, "Title": "Lottery Ticket"}, {"IMDB Rating": 6.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 81, "Title": "Love and Basketball"}, {"IMDB Rating": 6.7, "Production Budget": 10000000, "Rotten Tomatoes Rating": 67, "Title": "Love Jones"}, {"IMDB Rating": 5.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 33, "Title": "The Love Letter"}, {"IMDB Rating": 6.8, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "Lovely and Amazing"}, {"IMDB Rating": 8.7, "Production Budget": 94000000, "Rotten Tomatoes Rating": null, "Title": "The Lord of the Rings: The Two Towers"}, {"IMDB Rating": 8.8, "Production Budget": 94000000, "Rotten Tomatoes Rating": null, "Title": "The Lord of the Rings: The Return of the King"}, {"IMDB Rating": 8.8, "Production Budget": 109000000, "Rotten Tomatoes Rating": null, "Title": "The Lord of the Rings: The Fellowship of the Ring"}, {"IMDB Rating": 7.7, "Production Budget": 42000000, "Rotten Tomatoes Rating": 61, "Title": "Lord of War"}, {"IMDB Rating": 5.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 60, "Title": "The Last Shot"}, {"IMDB Rating": 6.7, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Lonesome Jim"}, {"IMDB Rating": 5.4, "Production Budget": 67000000, "Rotten Tomatoes Rating": 17, "Title": "The Last Legion"}, {"IMDB Rating": 7.8, "Production Budget": 120000000, "Rotten Tomatoes Rating": 65, "Title": "The Last Samurai"}, {"IMDB Rating": 5.7, "Production Budget": 2200000, "Rotten Tomatoes Rating": 19, "Title": "The Last Sin Eater"}, {"IMDB Rating": 3.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 19, "Title": "The Last Song"}, {"IMDB Rating": 5.3, "Production Budget": 4000000, "Rotten Tomatoes Rating": 19, "Title": "Love Stinks"}, {"IMDB Rating": 7.9, "Production Budget": 4000000, "Rotten Tomatoes Rating": 94, "Title": "Lost in Translation"}, {"IMDB Rating": 7, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Last Orders"}, {"IMDB Rating": 4.5, "Production Budget": 28000000, "Rotten Tomatoes Rating": 7, "Title": "Lost Souls"}, {"IMDB Rating": 7, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "The Last Station"}, {"IMDB Rating": 6, "Production Budget": 75000000, "Rotten Tomatoes Rating": null, "Title": "The Lost World: Jurassic Park"}, {"IMDB Rating": 5.1, "Production Budget": 35000000, "Rotten Tomatoes Rating": 7, "Title": "License to Wed"}, {"IMDB Rating": 6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 57, "Title": "Looney Tunes: Back in Action"}, {"IMDB Rating": 4.4, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Letters to God"}, {"IMDB Rating": 6.4, "Production Budget": 140000000, "Rotten Tomatoes Rating": 54, "Title": "Lethal Weapon 4"}, {"IMDB Rating": 5.7, "Production Budget": 64000000, "Rotten Tomatoes Rating": 12, "Title": "Little Man"}, {"IMDB Rating": 7.1, "Production Budget": 14000000, "Rotten Tomatoes Rating": 36, "Title": "The Lucky Ones"}, {"IMDB Rating": 5.9, "Production Budget": 55000000, "Rotten Tomatoes Rating": 28, "Title": "Lucky You"}, {"IMDB Rating": 4.3, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Luminarias"}, {"IMDB Rating": 7.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Se jie"}, {"IMDB Rating": 6.8, "Production Budget": 35000000, "Rotten Tomatoes Rating": 44, "Title": "Luther"}, {"IMDB Rating": 7.9, "Production Budget": 45000000, "Rotten Tomatoes Rating": 63, "Title": "Love Actually"}, {"IMDB Rating": 5.3, "Production Budget": 22000000, "Rotten Tomatoes Rating": 53, "Title": "The Little Vampire"}, {"IMDB Rating": 6.6, "Production Budget": 65000000, "Rotten Tomatoes Rating": 32, "Title": "The Lovely Bones"}, {"IMDB Rating": 4.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 42, "Title": "Herbie: Fully Loaded"}, {"IMDB Rating": 6.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 64, "Title": "For Love of the Game"}, {"IMDB Rating": 6.9, "Production Budget": 9000000, "Rotten Tomatoes Rating": 50, "Title": "Leaves of Grass"}, {"IMDB Rating": 5.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": 17, "Title": "Love Happens"}, {"IMDB Rating": 5.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 33, "Title": "Just Visiting"}, {"IMDB Rating": 8.5, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Das Leben der Anderen"}, {"IMDB Rating": 5.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 13, "Title": "Love Ranch"}, {"IMDB Rating": 7.6, "Production Budget": 15500000, "Rotten Tomatoes Rating": null, "Title": "La MÙme"}, {"IMDB Rating": null, "Production Budget": 180000000, "Rotten Tomatoes Rating": 76, "Title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe"}, {"IMDB Rating": 6.2, "Production Budget": 82000000, "Rotten Tomatoes Rating": 31, "Title": "The Longest Yard"}, {"IMDB Rating": 6.1, "Production Budget": 50000000, "Rotten Tomatoes Rating": 37, "Title": "Mad City"}, {"IMDB Rating": 6.3, "Production Budget": 5000000, "Rotten Tomatoes Rating": 70, "Title": "Made"}, {"IMDB Rating": 6.8, "Production Budget": 150000000, "Rotten Tomatoes Rating": 64, "Title": "Madagascar: Escape 2 Africa"}, {"IMDB Rating": 6.6, "Production Budget": 75000000, "Rotten Tomatoes Rating": 55, "Title": "Madagascar"}, {"IMDB Rating": 7.4, "Production Budget": 500000, "Rotten Tomatoes Rating": 83, "Title": "Mad Hot Ballroom"}, {"IMDB Rating": 6.4, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "Madison"}, {"IMDB Rating": 5, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Jane Austen's Mafia"}, {"IMDB Rating": 5.3, "Production Budget": 26000000, "Rotten Tomatoes Rating": 35, "Title": "Paul Blart: Mall Cop"}, {"IMDB Rating": 5.7, "Production Budget": 36000000, "Rotten Tomatoes Rating": 11, "Title": "A Man Apart"}, {"IMDB Rating": 7.7, "Production Budget": 60000000, "Rotten Tomatoes Rating": 38, "Title": "Man on Fire"}, {"IMDB Rating": 4.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 8, "Title": "Man of the House"}, {"IMDB Rating": 7.4, "Production Budget": 52000000, "Rotten Tomatoes Rating": 62, "Title": "Man on the Moon"}, {"IMDB Rating": 6.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 40, "Title": "The Man Who Knew Too Little"}, {"IMDB Rating": 2.4, "Production Budget": 20000000, "Rotten Tomatoes Rating": 10, "Title": "Marci X"}, {"IMDB Rating": 6.4, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Married Life"}, {"IMDB Rating": 4.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": 20, "Title": "The Marine"}, {"IMDB Rating": 2, "Production Budget": 100000000, "Rotten Tomatoes Rating": 6, "Title": "Son of the Mask"}, {"IMDB Rating": 6.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 76, "Title": "The Matador"}, {"IMDB Rating": 8.7, "Production Budget": 65000000, "Rotten Tomatoes Rating": 86, "Title": "The Matrix"}, {"IMDB Rating": 5.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 26, "Title": "Max Keeble's Big Move"}, {"IMDB Rating": 5.8, "Production Budget": 1750000, "Rotten Tomatoes Rating": null, "Title": "May"}, {"IMDB Rating": 7.8, "Production Budget": 350000, "Rotten Tomatoes Rating": 98, "Title": "Murderball"}, {"IMDB Rating": 7.4, "Production Budget": 16000000, "Rotten Tomatoes Rating": 82, "Title": "Vicky Cristina Barcelona"}, {"IMDB Rating": 6.6, "Production Budget": 5000000, "Rotten Tomatoes Rating": 75, "Title": "My Big Fat Greek Wedding"}, {"IMDB Rating": 5.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 15, "Title": "My Best Friend's Girl"}, {"IMDB Rating": 4.5, "Production Budget": 75000000, "Rotten Tomatoes Rating": 20, "Title": "Monkeybone"}, {"IMDB Rating": 3.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 30, "Title": "Meet the Browns"}, {"IMDB Rating": 5.7, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "My Bloody Valentine"}, {"IMDB Rating": 5.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Wu ji"}, {"IMDB Rating": 3.9, "Production Budget": 42000000, "Rotten Tomatoes Rating": 3, "Title": "McHale's Navy"}, {"IMDB Rating": 6.7, "Production Budget": 80000000, "Rotten Tomatoes Rating": 81, "Title": "The Manchurian Candidate"}, {"IMDB Rating": 5.7, "Production Budget": 40000000, "Rotten Tomatoes Rating": 44, "Title": "Mickey Blue Eyes"}, {"IMDB Rating": 7.5, "Production Budget": 21500000, "Rotten Tomatoes Rating": 90, "Title": "Michael Clayton"}, {"IMDB Rating": 7.5, "Production Budget": 135000000, "Rotten Tomatoes Rating": 85, "Title": "Master and Commander: The Far Side of the World"}, {"IMDB Rating": 6.1, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "Nanny McPhee and the Big Bang"}, {"IMDB Rating": 6.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 73, "Title": "Nanny McPhee"}, {"IMDB Rating": 7.3, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Mean Creek"}, {"IMDB Rating": 4.7, "Production Budget": 41000000, "Rotten Tomatoes Rating": 18, "Title": "The Medallion"}, {"IMDB Rating": 4.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 19, "Title": "Meet Dave"}, {"IMDB Rating": 8.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 91, "Title": "Million Dollar Baby"}, {"IMDB Rating": 3.1, "Production Budget": 17500000, "Rotten Tomatoes Rating": 26, "Title": "Madea Goes To Jail"}, {"IMDB Rating": 5.5, "Production Budget": 40000000, "Rotten Tomatoes Rating": 14, "Title": "Made of Honor"}, {"IMDB Rating": 7, "Production Budget": 18000000, "Rotten Tomatoes Rating": 83, "Title": "Mean Girls"}, {"IMDB Rating": 6.3, "Production Budget": 4500000, "Rotten Tomatoes Rating": null, "Title": "Mean Machine"}, {"IMDB Rating": 3.4, "Production Budget": 24000000, "Rotten Tomatoes Rating": 4, "Title": "Meet the Deedles"}, {"IMDB Rating": 6.9, "Production Budget": 51000000, "Rotten Tomatoes Rating": 48, "Title": "Me, Myself & Irene"}, {"IMDB Rating": 7.1, "Production Budget": 85000000, "Rotten Tomatoes Rating": 36, "Title": "Memoirs of a Geisha"}, {"IMDB Rating": 7, "Production Budget": 90000000, "Rotten Tomatoes Rating": 91, "Title": "Men in Black"}, {"IMDB Rating": 6.8, "Production Budget": 32000000, "Rotten Tomatoes Rating": 41, "Title": "Men of Honor"}, {"IMDB Rating": 8.7, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Memento"}, {"IMDB Rating": 5.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 17, "Title": "Mercury Rising"}, {"IMDB Rating": 4.9, "Production Budget": 600000, "Rotten Tomatoes Rating": 14, "Title": "Mercy Streets"}, {"IMDB Rating": 7.8, "Production Budget": 22000000, "Rotten Tomatoes Rating": null, "Title": "Joyeux NoÎl"}, {"IMDB Rating": 5.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 31, "Title": "Message in a Bottle"}, {"IMDB Rating": 6.9, "Production Budget": 85000000, "Rotten Tomatoes Rating": 50, "Title": "Meet Joe Black"}, {"IMDB Rating": 7.6, "Production Budget": 3200000, "Rotten Tomatoes Rating": null, "Title": "Maria Full of Grace"}, {"IMDB Rating": null, "Production Budget": 22000000, "Rotten Tomatoes Rating": 11, "Title": "Megiddo: Omega Code 2"}, {"IMDB Rating": 8, "Production Budget": 37000000, "Rotten Tomatoes Rating": 83, "Title": "Magnolia"}, {"IMDB Rating": 6.4, "Production Budget": 24000000, "Rotten Tomatoes Rating": 53, "Title": "The Men Who Stare at Goats"}, {"IMDB Rating": 6.6, "Production Budget": 2500000, "Rotten Tomatoes Rating": null, "Title": "Marilyn Hotchkiss' Ballroom Dancing and Charm School"}, {"IMDB Rating": 7.4, "Production Budget": 140000000, "Rotten Tomatoes Rating": null, "Title": "Men in Black 2"}, {"IMDB Rating": 6.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 81, "Title": "The House of Mirth"}, {"IMDB Rating": 4.7, "Production Budget": 60000000, "Rotten Tomatoes Rating": null, "Title": "Miss Congeniality 2: Armed and Fabulous"}, {"IMDB Rating": 6.9, "Production Budget": 120000000, "Rotten Tomatoes Rating": null, "Title": "Mission: Impossible 2"}, {"IMDB Rating": 6.9, "Production Budget": 150000000, "Rotten Tomatoes Rating": 70, "Title": "Mission: Impossible III"}, {"IMDB Rating": 6.1, "Production Budget": 45000000, "Rotten Tomatoes Rating": 41, "Title": "Miss Congeniality"}, {"IMDB Rating": 7.4, "Production Budget": 65000000, "Rotten Tomatoes Rating": 59, "Title": "The Missing"}, {"IMDB Rating": 5.4, "Production Budget": 80000000, "Rotten Tomatoes Rating": 52, "Title": "Mighty Joe Young"}, {"IMDB Rating": 6.8, "Production Budget": 72000000, "Rotten Tomatoes Rating": 41, "Title": "The Majestic"}, {"IMDB Rating": 4.9, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Martin Lawrence Live: RunTelDat"}, {"IMDB Rating": 4.8, "Production Budget": 15000000, "Rotten Tomatoes Rating": 30, "Title": "Malibu's Most Wanted"}, {"IMDB Rating": 5.9, "Production Budget": 35000000, "Rotten Tomatoes Rating": 35, "Title": "Must Love Dogs"}, {"IMDB Rating": 7.6, "Production Budget": 2500000, "Rotten Tomatoes Rating": 64, "Title": "My Life Without Me"}, {"IMDB Rating": 5.1, "Production Budget": 90000000, "Rotten Tomatoes Rating": 24, "Title": "Mission to Mars"}, {"IMDB Rating": 7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 53, "Title": "MirrorMask"}, {"IMDB Rating": 6.7, "Production Budget": 28700000, "Rotten Tomatoes Rating": 55, "Title": "Mumford"}, {"IMDB Rating": 6.2, "Production Budget": 27000000, "Rotten Tomatoes Rating": 26, "Title": "Mindhunters"}, {"IMDB Rating": 5.7, "Production Budget": 57000000, "Rotten Tomatoes Rating": 29, "Title": "Captain Corelli's Mandolin"}, {"IMDB Rating": 7.4, "Production Budget": 14200000, "Rotten Tomatoes Rating": null, "Title": "Manderlay"}, {"IMDB Rating": 6.5, "Production Budget": 35000000, "Rotten Tomatoes Rating": 50, "Title": "Midnight in the Garden of Good and Evil"}, {"IMDB Rating": 7.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 31, "Title": "The Man in the Iron Mask"}, {"IMDB Rating": 5.1, "Production Budget": 45000000, "Rotten Tomatoes Rating": 16, "Title": "Monster-in-Law"}, {"IMDB Rating": 6.7, "Production Budget": 21000000, "Rotten Tomatoes Rating": 62, "Title": "Moonlight Mile"}, {"IMDB Rating": 6.1, "Production Budget": 65000000, "Rotten Tomatoes Rating": 35, "Title": "Mona Lisa Smile"}, {"IMDB Rating": 7.2, "Production Budget": 4000000, "Rotten Tomatoes Rating": 85, "Title": "Monster's Ball"}, {"IMDB Rating": 7.2, "Production Budget": 21600000, "Rotten Tomatoes Rating": null, "Title": "MoliËre"}, {"IMDB Rating": 5.6, "Production Budget": 21000000, "Rotten Tomatoes Rating": 14, "Title": "Molly"}, {"IMDB Rating": 6.8, "Production Budget": 75000000, "Rotten Tomatoes Rating": 74, "Title": "Monster House"}, {"IMDB Rating": 8.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Mononoke-hime"}, {"IMDB Rating": 7.2, "Production Budget": 1200000, "Rotten Tomatoes Rating": null, "Title": "Monsoon Wedding"}, {"IMDB Rating": 7.4, "Production Budget": 5000000, "Rotten Tomatoes Rating": 82, "Title": "Monster"}, {"IMDB Rating": 7.4, "Production Budget": 115000000, "Rotten Tomatoes Rating": 95, "Title": "Monsters, Inc."}, {"IMDB Rating": 5.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 17, "Title": "Money Talks"}, {"IMDB Rating": 8, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Moon"}, {"IMDB Rating": 5.2, "Production Budget": 26000000, "Rotten Tomatoes Rating": 13, "Title": "Welcome to Mooseport"}, {"IMDB Rating": 6.4, "Production Budget": 6000000, "Rotten Tomatoes Rating": 84, "Title": "Morvern Callar"}, {"IMDB Rating": 6.5, "Production Budget": 42000000, "Rotten Tomatoes Rating": 52, "Title": "The Mothman Prophecies"}, {"IMDB Rating": 7.3, "Production Budget": 53000000, "Rotten Tomatoes Rating": null, "Title": "Moulin Rouge"}, {"IMDB Rating": 7.1, "Production Budget": 25000000, "Rotten Tomatoes Rating": 84, "Title": "Me and Orson Welles"}, {"IMDB Rating": 6.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": 38, "Title": "Meet the Fockers"}, {"IMDB Rating": 7, "Production Budget": 55000000, "Rotten Tomatoes Rating": 84, "Title": "Meet the Parents"}, {"IMDB Rating": 5.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 55, "Title": "Mr. 3000"}, {"IMDB Rating": 6.1, "Production Budget": 28000000, "Rotten Tomatoes Rating": null, "Title": "The Miracle"}, {"IMDB Rating": 7.7, "Production Budget": 102000000, "Rotten Tomatoes Rating": 91, "Title": "Minority Report"}, {"IMDB Rating": 5.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": null, "Title": "Mr. Nice Guy"}, {"IMDB Rating": 7.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 66, "Title": "Mrs. Henderson Presents"}, {"IMDB Rating": 3.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 7, "Title": "Mortal Kombat: Annihilation"}, {"IMDB Rating": 6.6, "Production Budget": 23000000, "Rotten Tomatoes Rating": 81, "Title": "Marvin's Room"}, {"IMDB Rating": 5.9, "Production Budget": 45000000, "Rotten Tomatoes Rating": 34, "Title": "Miracle at St. Anna"}, {"IMDB Rating": 6.1, "Production Budget": 38000000, "Rotten Tomatoes Rating": null, "Title": "Mouse Hunt"}, {"IMDB Rating": 5.3, "Production Budget": 7500000, "Rotten Tomatoes Rating": 25, "Title": "Masked and Anonymous"}, {"IMDB Rating": 7.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 66, "Title": "Miss Potter"}, {"IMDB Rating": 6.1, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "The Missing Person"}, {"IMDB Rating": 2.4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 2, "Title": "Meet the Spartans"}, {"IMDB Rating": 5.5, "Production Budget": 28000000, "Rotten Tomatoes Rating": 37, "Title": "Mystery, Alaska"}, {"IMDB Rating": 7.8, "Production Budget": 15000000, "Rotten Tomatoes Rating": 77, "Title": "Match Point"}, {"IMDB Rating": 7.2, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Mother and Child"}, {"IMDB Rating": 6.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 78, "Title": "A Mighty Heart"}, {"IMDB Rating": 7.1, "Production Budget": 127000000, "Rotten Tomatoes Rating": 73, "Title": "The Matrix Reloaded"}, {"IMDB Rating": 6.5, "Production Budget": 110000000, "Rotten Tomatoes Rating": 37, "Title": "The Matrix Revolutions"}, {"IMDB Rating": 7.1, "Production Budget": 800000, "Rotten Tomatoes Rating": null, "Title": "The Mudge Boy"}, {"IMDB Rating": 7.2, "Production Budget": 90000000, "Rotten Tomatoes Rating": 86, "Title": "Mulan"}, {"IMDB Rating": 7.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 81, "Title": "Mulholland Drive"}, {"IMDB Rating": 6.8, "Production Budget": 80000000, "Rotten Tomatoes Rating": 54, "Title": "The Mummy"}, {"IMDB Rating": 6.2, "Production Budget": 98000000, "Rotten Tomatoes Rating": 47, "Title": "The Mummy Returns"}, {"IMDB Rating": 5.1, "Production Budget": 175000000, "Rotten Tomatoes Rating": 13, "Title": "The Mummy: Tomb of the Dragon Emperor"}, {"IMDB Rating": 7.8, "Production Budget": 75000000, "Rotten Tomatoes Rating": 78, "Title": "Munich"}, {"IMDB Rating": 6.1, "Production Budget": 24000000, "Rotten Tomatoes Rating": 62, "Title": "Muppets From Space"}, {"IMDB Rating": 5.9, "Production Budget": 50000000, "Rotten Tomatoes Rating": 31, "Title": "Murder by Numbers"}, {"IMDB Rating": 5.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": 51, "Title": "The Muse"}, {"IMDB Rating": 6.4, "Production Budget": 110000000, "Rotten Tomatoes Rating": 43, "Title": "Night at the Museum"}, {"IMDB Rating": 4.4, "Production Budget": 40000000, "Rotten Tomatoes Rating": 10, "Title": "The Musketeer"}, {"IMDB Rating": 6.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 63, "Title": "Music and Lyrics"}, {"IMDB Rating": 7.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "The Merchant of Venice"}, {"IMDB Rating": 6, "Production Budget": 135000000, "Rotten Tomatoes Rating": 47, "Title": "Miami Vice"}, {"IMDB Rating": 6.8, "Production Budget": 175000000, "Rotten Tomatoes Rating": 72, "Title": "Monsters vs. Aliens"}, {"IMDB Rating": 7.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": 88, "Title": "A Mighty Wind"}, {"IMDB Rating": 5.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 55, "Title": "The Mexican"}, {"IMDB Rating": 6.2, "Production Budget": 46000000, "Rotten Tomatoes Rating": 72, "Title": "My Best Friend's Wedding"}, {"IMDB Rating": null, "Production Budget": 14000000, "Rotten Tomatoes Rating": 19, "Title": "Dude, Where's My Car?"}, {"IMDB Rating": 6.9, "Production Budget": 7000000, "Rotten Tomatoes Rating": 72, "Title": "My Dog Skip"}, {"IMDB Rating": 6.5, "Production Budget": 1100, "Rotten Tomatoes Rating": null, "Title": "My Date With Drew"}, {"IMDB Rating": 7.4, "Production Budget": 2000000, "Rotten Tomatoes Rating": 82, "Title": "Me and You and Everyone We Know"}, {"IMDB Rating": 4.5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 13, "Title": "My Favorite Martian"}, {"IMDB Rating": 6.3, "Production Budget": 21500000, "Rotten Tomatoes Rating": 50, "Title": "My Fellow Americans"}, {"IMDB Rating": 7.4, "Production Budget": 27500000, "Rotten Tomatoes Rating": 48, "Title": "My Sister's Keeper"}, {"IMDB Rating": 7, "Production Budget": 1700000, "Rotten Tomatoes Rating": null, "Title": "My Summer of Love"}, {"IMDB Rating": 8, "Production Budget": 30000000, "Rotten Tomatoes Rating": 87, "Title": "Mystic River"}, {"IMDB Rating": 5.7, "Production Budget": 32000000, "Rotten Tomatoes Rating": 40, "Title": "Nacho Libre"}, {"IMDB Rating": 7.3, "Production Budget": 7500000, "Rotten Tomatoes Rating": 83, "Title": "Narc"}, {"IMDB Rating": 6.9, "Production Budget": 225000000, "Rotten Tomatoes Rating": 67, "Title": "The Chronicles of Narnia: Prince Caspian"}, {"IMDB Rating": 6.9, "Production Budget": 100000000, "Rotten Tomatoes Rating": 44, "Title": "National Treasure"}, {"IMDB Rating": 6.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 37, "Title": "The Nativity Story"}, {"IMDB Rating": 6.2, "Production Budget": 21000000, "Rotten Tomatoes Rating": 23, "Title": "Never Back Down"}, {"IMDB Rating": 5.7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 21, "Title": "Into the Blue"}, {"IMDB Rating": 8.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": 95, "Title": "No Country for Old Men"}, {"IMDB Rating": 8.1, "Production Budget": 92000000, "Rotten Tomatoes Rating": 97, "Title": "The Incredibles"}, {"IMDB Rating": 7.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 81, "Title": "The Negotiator"}, {"IMDB Rating": 5.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 13, "Title": "A Nightmare on Elm Street"}, {"IMDB Rating": 5.2, "Production Budget": 5000000, "Rotten Tomatoes Rating": 35, "Title": "Not Easily Broken"}, {"IMDB Rating": 5.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": 7, "Title": "The New Guy"}, {"IMDB Rating": 5.7, "Production Budget": 27000000, "Rotten Tomatoes Rating": 61, "Title": "The Newton Boys"}, {"IMDB Rating": 4.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 19, "Title": "The Next Best Thing"}, {"IMDB Rating": 6.3, "Production Budget": 1900000, "Rotten Tomatoes Rating": 57, "Title": "Northfork"}, {"IMDB Rating": 6.8, "Production Budget": 26000000, "Rotten Tomatoes Rating": 84, "Title": "In Good Company"}, {"IMDB Rating": 6.9, "Production Budget": 42000000, "Rotten Tomatoes Rating": 82, "Title": "Notting Hill"}, {"IMDB Rating": 5, "Production Budget": 80000000, "Rotten Tomatoes Rating": 21, "Title": "Little Nicky"}, {"IMDB Rating": 7.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 77, "Title": "Nicholas Nickleby"}, {"IMDB Rating": 6, "Production Budget": 37000000, "Rotten Tomatoes Rating": 50, "Title": "Nim's Island"}, {"IMDB Rating": 6.3, "Production Budget": 50000000, "Rotten Tomatoes Rating": 25, "Title": "Ninja Assassin"}, {"IMDB Rating": 6.6, "Production Budget": 38000000, "Rotten Tomatoes Rating": null, "Title": "The Ninth Gate"}, {"IMDB Rating": 7.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 62, "Title": "Never Let Me Go"}, {"IMDB Rating": 4.9, "Production Budget": 65000000, "Rotten Tomatoes Rating": 23, "Title": "Lucky Numbers"}, {"IMDB Rating": 5.9, "Production Budget": 150000000, "Rotten Tomatoes Rating": null, "Title": "Night at the Museum: Battle of the Smithsonian"}, {"IMDB Rating": 6.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 73, "Title": "Nick and Norah's Infinite Playlist"}, {"IMDB Rating": 6.3, "Production Budget": 19000000, "Rotten Tomatoes Rating": 50, "Title": "Notorious"}, {"IMDB Rating": 8.3, "Production Budget": 2000000, "Rotten Tomatoes Rating": 94, "Title": "No End In Sight"}, {"IMDB Rating": 5.5, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Nomad"}, {"IMDB Rating": 8, "Production Budget": 1000000, "Rotten Tomatoes Rating": 93, "Title": "No Man's Land"}, {"IMDB Rating": 6.3, "Production Budget": 28000000, "Rotten Tomatoes Rating": 40, "Title": "No Reservations"}, {"IMDB Rating": 8, "Production Budget": 30000000, "Rotten Tomatoes Rating": 52, "Title": "The Notebook"}, {"IMDB Rating": 5.5, "Production Budget": 250000, "Rotten Tomatoes Rating": null, "Title": "November"}, {"IMDB Rating": 5.8, "Production Budget": 6000000, "Rotten Tomatoes Rating": 37, "Title": "Novocaine"}, {"IMDB Rating": 6.9, "Production Budget": 400000, "Rotten Tomatoes Rating": 70, "Title": "Napoleon Dynamite"}, {"IMDB Rating": 7.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 69, "Title": "North Country"}, {"IMDB Rating": 7.5, "Production Budget": 8500000, "Rotten Tomatoes Rating": null, "Title": "The Namesake"}, {"IMDB Rating": 6.9, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Inside Deep Throat"}, {"IMDB Rating": 6.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": 75, "Title": "Intolerable Cruelty"}, {"IMDB Rating": 6.5, "Production Budget": 90000000, "Rotten Tomatoes Rating": 58, "Title": "The Interpreter"}, {"IMDB Rating": 5.9, "Production Budget": 4000000, "Rotten Tomatoes Rating": 40, "Title": "The Night Listener"}, {"IMDB Rating": null, "Production Budget": 50000000, "Rotten Tomatoes Rating": 59, "Title": "The International"}, {"IMDB Rating": 6.2, "Production Budget": 32000000, "Rotten Tomatoes Rating": 8, "Title": "The Number 23"}, {"IMDB Rating": 6.4, "Production Budget": 24000000, "Rotten Tomatoes Rating": 84, "Title": "Nurse Betty"}, {"IMDB Rating": 5.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Jimmy Neutron: Boy Genius"}, {"IMDB Rating": 4.3, "Production Budget": 84000000, "Rotten Tomatoes Rating": null, "Title": "Nutty Professor II: The Klumps"}, {"IMDB Rating": 5.8, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Never Again"}, {"IMDB Rating": 7.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 82, "Title": "Finding Neverland"}, {"IMDB Rating": 8.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 82, "Title": "Into the Wild"}, {"IMDB Rating": 6.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 60, "Title": "The New World"}, {"IMDB Rating": 6.5, "Production Budget": 4200000, "Rotten Tomatoes Rating": null, "Title": "Nochnoy dozor"}, {"IMDB Rating": null, "Production Budget": 40000000, "Rotten Tomatoes Rating": 11, "Title": "New York Minute"}, {"IMDB Rating": 5.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 50, "Title": "The Object of my Affection"}, {"IMDB Rating": 6.1, "Production Budget": 18000000, "Rotten Tomatoes Rating": 47, "Title": "Orange County"}, {"IMDB Rating": 7.6, "Production Budget": 110000000, "Rotten Tomatoes Rating": 81, "Title": "Ocean's Eleven"}, {"IMDB Rating": 6, "Production Budget": 85000000, "Rotten Tomatoes Rating": 55, "Title": "Ocean's Twelve"}, {"IMDB Rating": 6.9, "Production Budget": 85000000, "Rotten Tomatoes Rating": 70, "Title": "Ocean's Thirteen"}, {"IMDB Rating": 7.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": null, "Title": "Oceans"}, {"IMDB Rating": 7.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 80, "Title": "Office Space"}, {"IMDB Rating": 7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 69, "Title": "White Oleander"}, {"IMDB Rating": 5.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 26, "Title": "The Omen"}, {"IMDB Rating": 6.6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 49, "Title": "Any Given Sunday"}, {"IMDB Rating": 8, "Production Budget": 150000, "Rotten Tomatoes Rating": 97, "Title": "Once"}, {"IMDB Rating": 7.1, "Production Budget": 1000000, "Rotten Tomatoes Rating": 82, "Title": "Once in a Lifetime: the Extraordinary Story of the New York Cosmos"}, {"IMDB Rating": 7, "Production Budget": 12000000, "Rotten Tomatoes Rating": 81, "Title": "One Hour Photo"}, {"IMDB Rating": 6.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 88, "Title": "One True Thing"}, {"IMDB Rating": 4.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Ong-Bak 2"}, {"IMDB Rating": 3.4, "Production Budget": 10000000, "Rotten Tomatoes Rating": 18, "Title": "On the Line"}, {"IMDB Rating": 6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 16, "Title": "One Night with the King"}, {"IMDB Rating": 6.5, "Production Budget": 9000000, "Rotten Tomatoes Rating": null, "Title": "Opal Dreams"}, {"IMDB Rating": 6, "Production Budget": 85000000, "Rotten Tomatoes Rating": 47, "Title": "Open Season"}, {"IMDB Rating": 5.9, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Open Water"}, {"IMDB Rating": 7.5, "Production Budget": 26000000, "Rotten Tomatoes Rating": 79, "Title": "Open Range"}, {"IMDB Rating": 4.9, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "The Order"}, {"IMDB Rating": 6, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Orgazmo"}, {"IMDB Rating": 5.6, "Production Budget": 26000000, "Rotten Tomatoes Rating": 12, "Title": "Original Sin"}, {"IMDB Rating": 7.4, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Osama"}, {"IMDB Rating": 6.7, "Production Budget": 12500000, "Rotten Tomatoes Rating": 65, "Title": "Oscar and Lucinda"}, {"IMDB Rating": 7, "Production Budget": 24000000, "Rotten Tomatoes Rating": 60, "Title": "Old School"}, {"IMDB Rating": 6, "Production Budget": 70000000, "Rotten Tomatoes Rating": 54, "Title": "Osmosis Jones"}, {"IMDB Rating": 5.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 13, "Title": "American Outlaws"}, {"IMDB Rating": 7, "Production Budget": 65000000, "Rotten Tomatoes Rating": 59, "Title": "Oliver Twist"}, {"IMDB Rating": 5.8, "Production Budget": 11000000, "Rotten Tomatoes Rating": 8, "Title": "Out Cold"}, {"IMDB Rating": 6.4, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "Outlander"}, {"IMDB Rating": 7.1, "Production Budget": 48000000, "Rotten Tomatoes Rating": 93, "Title": "Out of Sight"}, {"IMDB Rating": 4.9, "Production Budget": 50000000, "Rotten Tomatoes Rating": 65, "Title": "Out of Time"}, {"IMDB Rating": 4.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 24, "Title": "The Out-of-Towners"}, {"IMDB Rating": 7, "Production Budget": 10000000, "Rotten Tomatoes Rating": 78, "Title": "Owning Mahowny"}, {"IMDB Rating": 5.3, "Production Budget": 56000000, "Rotten Tomatoes Rating": 20, "Title": "The Pacifier"}, {"IMDB Rating": 8.4, "Production Budget": 16000000, "Rotten Tomatoes Rating": null, "Title": "El Laberinto del Fauno"}, {"IMDB Rating": 7.1, "Production Budget": 25000000, "Rotten Tomatoes Rating": 50, "Title": "The Passion of the Christ"}, {"IMDB Rating": 6.3, "Production Budget": 50000000, "Rotten Tomatoes Rating": 24, "Title": "Patch Adams"}, {"IMDB Rating": 5.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": 51, "Title": "Payback"}, {"IMDB Rating": 6.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": 28, "Title": "Paycheck"}, {"IMDB Rating": 5.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 17, "Title": "Max Payne"}, {"IMDB Rating": 5.3, "Production Budget": 45000000, "Rotten Tomatoes Rating": null, "Title": "The Princess Diaries 2: Royal Engagement"}, {"IMDB Rating": 5.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 46, "Title": "The Princess Diaries"}, {"IMDB Rating": 5.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": 45, "Title": "The Peacemaker"}, {"IMDB Rating": 7.1, "Production Budget": 100000000, "Rotten Tomatoes Rating": 76, "Title": "Peter Pan"}, {"IMDB Rating": 5.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "People I Know"}, {"IMDB Rating": 6.2, "Production Budget": 6600000, "Rotten Tomatoes Rating": null, "Title": "Perrier's Bounty"}, {"IMDB Rating": 6.5, "Production Budget": 14000000, "Rotten Tomatoes Rating": 60, "Title": "A Perfect Getaway"}, {"IMDB Rating": 2.2, "Production Budget": 3000000, "Rotten Tomatoes Rating": 23, "Title": "Phat Girlz"}, {"IMDB Rating": 6.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Poolhall Junkies"}, {"IMDB Rating": 7.2, "Production Budget": 55000000, "Rotten Tomatoes Rating": 33, "Title": "The Phantom of the Opera"}, {"IMDB Rating": 7.2, "Production Budget": 11000000, "Rotten Tomatoes Rating": 71, "Title": "Phone Booth"}, {"IMDB Rating": 8.5, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "The Pianist"}, {"IMDB Rating": 5.1, "Production Budget": 80000000, "Rotten Tomatoes Rating": 22, "Title": "The Pink Panther"}, {"IMDB Rating": 8, "Production Budget": 125000000, "Rotten Tomatoes Rating": null, "Title": "Pirates of the Caribbean: The Curse of the Black Pearl"}, {"IMDB Rating": 7.3, "Production Budget": 225000000, "Rotten Tomatoes Rating": 54, "Title": "Pirates of the Caribbean: Dead Man's Chest"}, {"IMDB Rating": 7, "Production Budget": 300000000, "Rotten Tomatoes Rating": 45, "Title": "Pirates of the Caribbean: At World's End"}, {"IMDB Rating": 6.4, "Production Budget": 120000000, "Rotten Tomatoes Rating": 29, "Title": "The Chronicles of Riddick"}, {"IMDB Rating": 7, "Production Budget": 23000000, "Rotten Tomatoes Rating": 55, "Title": "Pitch Black"}, {"IMDB Rating": 5.1, "Production Budget": 24000000, "Rotten Tomatoes Rating": null, "Title": "Play it to the Bone"}, {"IMDB Rating": 5.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 13, "Title": "Screwed"}, {"IMDB Rating": 5.8, "Production Budget": 95000000, "Rotten Tomatoes Rating": 50, "Title": "Percy Jackson & the Olympians: The Lightning Thief"}, {"IMDB Rating": 6.6, "Production Budget": 13000000, "Rotten Tomatoes Rating": null, "Title": "Paris, je t'aime"}, {"IMDB Rating": 5.3, "Production Budget": 9000000, "Rotten Tomatoes Rating": null, "Title": "Princess Kaiulani"}, {"IMDB Rating": 5.3, "Production Budget": 27000000, "Rotten Tomatoes Rating": 38, "Title": "Lake Placid"}, {"IMDB Rating": 4.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 20, "Title": "The Back-up Plan"}, {"IMDB Rating": 6.9, "Production Budget": 45000000, "Rotten Tomatoes Rating": 77, "Title": "The Pledge"}, {"IMDB Rating": 6.1, "Production Budget": 65000000, "Rotten Tomatoes Rating": 39, "Title": "Proof of Life"}, {"IMDB Rating": 7.1, "Production Budget": 6000000, "Rotten Tomatoes Rating": 82, "Title": "Pollock"}, {"IMDB Rating": 5.5, "Production Budget": 100000000, "Rotten Tomatoes Rating": 44, "Title": "Planet of the Apes"}, {"IMDB Rating": 7.4, "Production Budget": 3000000, "Rotten Tomatoes Rating": 88, "Title": "Please Give"}, {"IMDB Rating": 6.1, "Production Budget": 50000000, "Rotten Tomatoes Rating": 22, "Title": "Planet 51"}, {"IMDB Rating": 3.7, "Production Budget": 100000000, "Rotten Tomatoes Rating": 6, "Title": "The Adventures of Pluto Nash"}, {"IMDB Rating": 4.8, "Production Budget": 5000000, "Rotten Tomatoes Rating": 27, "Title": "The Players Club"}, {"IMDB Rating": 6.7, "Production Budget": 15000, "Rotten Tomatoes Rating": 82, "Title": "Paranormal Activity"}, {"IMDB Rating": 3.5, "Production Budget": 45000000, "Rotten Tomatoes Rating": null, "Title": "Pinocchio"}, {"IMDB Rating": 6.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Pandaemonium"}, {"IMDB Rating": 6.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 28, "Title": "Pandorum"}, {"IMDB Rating": 6.4, "Production Budget": 33000000, "Rotten Tomatoes Rating": 30, "Title": "The Punisher"}, {"IMDB Rating": 3.5, "Production Budget": 3000000, "Rotten Tomatoes Rating": 23, "Title": "Pokemon 3: The Movie"}, {"IMDB Rating": 6.7, "Production Budget": 170000000, "Rotten Tomatoes Rating": 56, "Title": "The Polar Express"}, {"IMDB Rating": 5.8, "Production Budget": 42000000, "Rotten Tomatoes Rating": 26, "Title": "Along Came Polly"}, {"IMDB Rating": 7.8, "Production Budget": 34000000, "Rotten Tomatoes Rating": null, "Title": "Gake no ue no Ponyo"}, {"IMDB Rating": 4.5, "Production Budget": 3500000, "Rotten Tomatoes Rating": 27, "Title": "Pootie Tang"}, {"IMDB Rating": 5.6, "Production Budget": 160000000, "Rotten Tomatoes Rating": 33, "Title": "Poseidon"}, {"IMDB Rating": 6.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 64, "Title": "Possession"}, {"IMDB Rating": null, "Production Budget": 20000000, "Rotten Tomatoes Rating": 46, "Title": "Peter Pan: Return to Neverland"}, {"IMDB Rating": 5.5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 21, "Title": "Practical Magic"}, {"IMDB Rating": 6.8, "Production Budget": 35000000, "Rotten Tomatoes Rating": 75, "Title": "The Devil Wears Prada"}, {"IMDB Rating": 7.5, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "The Boat That Rocked"}, {"IMDB Rating": 5.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 18, "Title": "Paparazzi"}, {"IMDB Rating": 6.7, "Production Budget": 65000000, "Rotten Tomatoes Rating": 80, "Title": "Primary Colors"}, {"IMDB Rating": 7.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Precious (Based on the Novel Push by Sapphire)"}, {"IMDB Rating": 6.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": 34, "Title": "Pride and Glory"}, {"IMDB Rating": 5.5, "Production Budget": 28000000, "Rotten Tomatoes Rating": 85, "Title": "Pride and Prejudice"}, {"IMDB Rating": 6.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 63, "Title": "Predators"}, {"IMDB Rating": 6.2, "Production Budget": 8000000, "Rotten Tomatoes Rating": 62, "Title": "Prefontaine"}, {"IMDB Rating": 7.5, "Production Budget": 63700000, "Rotten Tomatoes Rating": 58, "Title": "Perfume: The Story of a Murderer"}, {"IMDB Rating": 5.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "The Prince & Me"}, {"IMDB Rating": 5.1, "Production Budget": 10000000, "Rotten Tomatoes Rating": 5, "Title": "The Perfect Man"}, {"IMDB Rating": 7.8, "Production Budget": 55000000, "Rotten Tomatoes Rating": 66, "Title": "The Pursuit of Happyness"}, {"IMDB Rating": 6.9, "Production Budget": 7000, "Rotten Tomatoes Rating": null, "Title": "Primer"}, {"IMDB Rating": 5.4, "Production Budget": 151500000, "Rotten Tomatoes Rating": 26, "Title": "Pearl Harbor"}, {"IMDB Rating": null, "Production Budget": 20000000, "Rotten Tomatoes Rating": 8, "Title": "Premonition"}, {"IMDB Rating": 6.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 79, "Title": "The Prince of Egypt"}, {"IMDB Rating": 5.1, "Production Budget": 18000000, "Rotten Tomatoes Rating": 8, "Title": "Prom Night"}, {"IMDB Rating": 6.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 64, "Title": "Proof"}, {"IMDB Rating": 6.9, "Production Budget": 48000000, "Rotten Tomatoes Rating": 76, "Title": "Panic Room"}, {"IMDB Rating": 5.4, "Production Budget": 40000000, "Rotten Tomatoes Rating": 43, "Title": "The Proposal"}, {"IMDB Rating": 8.4, "Production Budget": 40000000, "Rotten Tomatoes Rating": 75, "Title": "The Prestige"}, {"IMDB Rating": 5.5, "Production Budget": 80000000, "Rotten Tomatoes Rating": 10, "Title": "The Postman"}, {"IMDB Rating": 6, "Production Budget": 4000000, "Rotten Tomatoes Rating": 55, "Title": "Psycho Beach Party"}, {"IMDB Rating": 4.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 35, "Title": "Psycho"}, {"IMDB Rating": 6.9, "Production Budget": 110000000, "Rotten Tomatoes Rating": 62, "Title": "The Patriot"}, {"IMDB Rating": 7.1, "Production Budget": 102500000, "Rotten Tomatoes Rating": 68, "Title": "Public Enemies"}, {"IMDB Rating": 5.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "The Powerpuff Girls"}, {"IMDB Rating": 5, "Production Budget": 7500000, "Rotten Tomatoes Rating": 11, "Title": "Pulse"}, {"IMDB Rating": 7.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 79, "Title": "Punch-Drunk Love"}, {"IMDB Rating": 6.1, "Production Budget": 35000000, "Rotten Tomatoes Rating": 26, "Title": "Punisher: War Zone"}, {"IMDB Rating": 6, "Production Budget": 38000000, "Rotten Tomatoes Rating": 23, "Title": "Push"}, {"IMDB Rating": 5.9, "Production Budget": 33000000, "Rotten Tomatoes Rating": 49, "Title": "Pushing Tin"}, {"IMDB Rating": 7.6, "Production Budget": 19400000, "Rotten Tomatoes Rating": 74, "Title": "The Painted Veil"}, {"IMDB Rating": 6.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 40, "Title": "Pay it Forward"}, {"IMDB Rating": 4.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 17, "Title": "Queen of the Damned"}, {"IMDB Rating": 7.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 87, "Title": "The Quiet American"}, {"IMDB Rating": 3.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "All the Queen's Men"}, {"IMDB Rating": 6.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 58, "Title": "Quarantine"}, {"IMDB Rating": 7.6, "Production Budget": 15000000, "Rotten Tomatoes Rating": 97, "Title": "The Queen"}, {"IMDB Rating": 5, "Production Budget": 40000000, "Rotten Tomatoes Rating": 33, "Title": "Quest for Camelot"}, {"IMDB Rating": 6.5, "Production Budget": 900000, "Rotten Tomatoes Rating": null, "Title": "The Quiet"}, {"IMDB Rating": 7.1, "Production Budget": 400000, "Rotten Tomatoes Rating": null, "Title": "Quinceanera"}, {"IMDB Rating": 7.6, "Production Budget": 7000000, "Rotten Tomatoes Rating": 87, "Title": "Rabbit-Proof Fence"}, {"IMDB Rating": 6.9, "Production Budget": 35000000, "Rotten Tomatoes Rating": 35, "Title": "Radio"}, {"IMDB Rating": 6.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 84, "Title": "The Rainmaker"}, {"IMDB Rating": 7.3, "Production Budget": 47500000, "Rotten Tomatoes Rating": null, "Title": "Rambo"}, {"IMDB Rating": 4.8, "Production Budget": 64000000, "Rotten Tomatoes Rating": 15, "Title": "Random Hearts"}, {"IMDB Rating": 5, "Production Budget": 25000000, "Rotten Tomatoes Rating": 40, "Title": "Rugrats Go Wild"}, {"IMDB Rating": 8.1, "Production Budget": 150000000, "Rotten Tomatoes Rating": 96, "Title": "Ratatouille"}, {"IMDB Rating": null, "Production Budget": 40000000, "Rotten Tomatoes Rating": 81, "Title": "Ray"}, {"IMDB Rating": 2.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 4, "Title": "BloodRayne"}, {"IMDB Rating": 2.8, "Production Budget": 70000000, "Rotten Tomatoes Rating": 3, "Title": "Rollerball"}, {"IMDB Rating": 6.9, "Production Budget": 210000000, "Rotten Tomatoes Rating": 43, "Title": "Robin Hood"}, {"IMDB Rating": 6.4, "Production Budget": 80000000, "Rotten Tomatoes Rating": 64, "Title": "Robots"}, {"IMDB Rating": 7.6, "Production Budget": 5250000, "Rotten Tomatoes Rating": null, "Title": "A Room for Romeo Brass"}, {"IMDB Rating": 5.2, "Production Budget": 70000000, "Rotten Tomatoes Rating": 45, "Title": "Runaway Bride"}, {"IMDB Rating": 5.2, "Production Budget": 30000000, "Rotten Tomatoes Rating": 35, "Title": "Racing Stripes"}, {"IMDB Rating": 7.4, "Production Budget": 24000000, "Rotten Tomatoes Rating": 76, "Title": "Rocky Balboa"}, {"IMDB Rating": 6.4, "Production Budget": 95000000, "Rotten Tomatoes Rating": 49, "Title": "The Road to El Dorado"}, {"IMDB Rating": 7.7, "Production Budget": 2600000, "Rotten Tomatoes Rating": 93, "Title": "Riding Giants"}, {"IMDB Rating": 7.3, "Production Budget": 78000000, "Rotten Tomatoes Rating": 68, "Title": "Red Dragon"}, {"IMDB Rating": 7.7, "Production Budget": 33000000, "Rotten Tomatoes Rating": 61, "Title": "The Reader"}, {"IMDB Rating": 5.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 8, "Title": "The Reaping"}, {"IMDB Rating": 4.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 14, "Title": "Rebound"}, {"IMDB Rating": 6.2, "Production Budget": 10000000, "Rotten Tomatoes Rating": 62, "Title": "Recess: School's Out"}, {"IMDB Rating": 6.1, "Production Budget": 5000000, "Rotten Tomatoes Rating": 44, "Title": "Redacted"}, {"IMDB Rating": 6.5, "Production Budget": 26000000, "Rotten Tomatoes Rating": null, "Title": "Red-Eye"}, {"IMDB Rating": 7.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 63, "Title": "Reign Over Me"}, {"IMDB Rating": 5.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": 32, "Title": "The Relic"}, {"IMDB Rating": 7.8, "Production Budget": 2500000, "Rotten Tomatoes Rating": 69, "Title": "Religulous"}, {"IMDB Rating": 7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 28, "Title": "Remember Me"}, {"IMDB Rating": 7, "Production Budget": 6700000, "Rotten Tomatoes Rating": null, "Title": "Remember Me, My Love"}, {"IMDB Rating": 6.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 47, "Title": "Rent"}, {"IMDB Rating": 6.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 39, "Title": "The Replacements"}, {"IMDB Rating": 5.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 39, "Title": "The Replacement Killers"}, {"IMDB Rating": 5.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": null, "Title": "Resident Evil: Apocalypse"}, {"IMDB Rating": 6.2, "Production Budget": 45000000, "Rotten Tomatoes Rating": 22, "Title": "Resident Evil: Extinction"}, {"IMDB Rating": 6.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 34, "Title": "Resident Evil"}, {"IMDB Rating": 6.6, "Production Budget": 24000000, "Rotten Tomatoes Rating": 61, "Title": "Return to Me"}, {"IMDB Rating": 7.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 68, "Title": "Revolutionary Road"}, {"IMDB Rating": 6.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 65, "Title": "Be Kind Rewind"}, {"IMDB Rating": 5.9, "Production Budget": 60000000, "Rotten Tomatoes Rating": 40, "Title": "Reign of Fire"}, {"IMDB Rating": 5.5, "Production Budget": 36000000, "Rotten Tomatoes Rating": null, "Title": "Reindeer Games"}, {"IMDB Rating": 6.9, "Production Budget": 12000000, "Rotten Tomatoes Rating": 86, "Title": "Rachel Getting Married"}, {"IMDB Rating": 5.4, "Production Budget": 28000000, "Rotten Tomatoes Rating": 57, "Title": "The Rugrats Movie"}, {"IMDB Rating": 6.2, "Production Budget": 47000000, "Rotten Tomatoes Rating": 48, "Title": "Riding in Cars with Boys"}, {"IMDB Rating": 6.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 63, "Title": "Ride With the Devil"}, {"IMDB Rating": 5.1, "Production Budget": 50000000, "Rotten Tomatoes Rating": 20, "Title": "The Ring Two"}, {"IMDB Rating": 6.8, "Production Budget": 700000, "Rotten Tomatoes Rating": null, "Title": "Rize"}, {"IMDB Rating": 4.1, "Production Budget": 76000000, "Rotten Tomatoes Rating": 42, "Title": "The Adventures of Rocky & Bullwinkle"}, {"IMDB Rating": 7.1, "Production Budget": 1000000, "Rotten Tomatoes Rating": 71, "Title": "All the Real Girls"}, {"IMDB Rating": 7, "Production Budget": 3000000, "Rotten Tomatoes Rating": 83, "Title": "Real Women Have Curves"}, {"IMDB Rating": 6.2, "Production Budget": 11000000, "Rotten Tomatoes Rating": null, "Title": "Romance and Cigarettes"}, {"IMDB Rating": 5.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 35, "Title": "Reno 911!: Miami"}, {"IMDB Rating": 7.3, "Production Budget": 12000000, "Rotten Tomatoes Rating": 64, "Title": "Rounders"}, {"IMDB Rating": 6.9, "Production Budget": 27500000, "Rotten Tomatoes Rating": 46, "Title": "Rendition"}, {"IMDB Rating": 6.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 40, "Title": "The Rocker"}, {"IMDB Rating": 5.8, "Production Budget": 38000000, "Rotten Tomatoes Rating": 52, "Title": "Rock Star"}, {"IMDB Rating": 5.5, "Production Budget": 22000000, "Rotten Tomatoes Rating": 82, "Title": "The Rookie"}, {"IMDB Rating": 5, "Production Budget": 10000000, "Rotten Tomatoes Rating": 64, "Title": "Roll Bounce"}, {"IMDB Rating": 5.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 33, "Title": "Romeo Must Die"}, {"IMDB Rating": 7.2, "Production Budget": 55000000, "Rotten Tomatoes Rating": 68, "Title": "Ronin"}, {"IMDB Rating": 6.8, "Production Budget": 1500000, "Rotten Tomatoes Rating": null, "Title": "The Ballad of Jack and Rose"}, {"IMDB Rating": 5.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": 12, "Title": "Red Planet"}, {"IMDB Rating": 8.5, "Production Budget": 4500000, "Rotten Tomatoes Rating": 78, "Title": "Requiem for a Dream"}, {"IMDB Rating": 6.4, "Production Budget": 48000000, "Rotten Tomatoes Rating": 43, "Title": "Rat Race"}, {"IMDB Rating": 7.5, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Rescue Dawn"}, {"IMDB Rating": 2.3, "Production Budget": 4000000, "Rotten Tomatoes Rating": 35, "Title": "The Real Cancun"}, {"IMDB Rating": 6.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Restless"}, {"IMDB Rating": 7.5, "Production Budget": 30000000, "Rotten Tomatoes Rating": 72, "Title": "Remember the Titans"}, {"IMDB Rating": 6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 20, "Title": "Righteous Kill"}, {"IMDB Rating": 6.4, "Production Budget": 16000000, "Rotten Tomatoes Rating": 59, "Title": "Road Trip"}, {"IMDB Rating": 6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 47, "Title": "The Ruins"}, {"IMDB Rating": 6.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": 37, "Title": "Rules of Engagement"}, {"IMDB Rating": 6.6, "Production Budget": 85000000, "Rotten Tomatoes Rating": null, "Title": "The Rundown"}, {"IMDB Rating": 7.5, "Production Budget": 17000000, "Rotten Tomatoes Rating": 40, "Title": "Running Scared"}, {"IMDB Rating": 6, "Production Budget": 12000000, "Rotten Tomatoes Rating": 30, "Title": "Running With Scissors"}, {"IMDB Rating": 6.4, "Production Budget": 90000000, "Rotten Tomatoes Rating": 51, "Title": "Rush Hour 2"}, {"IMDB Rating": 6, "Production Budget": 180000000, "Rotten Tomatoes Rating": 19, "Title": "Rush Hour 3"}, {"IMDB Rating": 6.8, "Production Budget": 35000000, "Rotten Tomatoes Rating": 60, "Title": "Rush Hour"}, {"IMDB Rating": 7.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 87, "Title": "Rushmore"}, {"IMDB Rating": 6.9, "Production Budget": 12000000, "Rotten Tomatoes Rating": 39, "Title": "Ravenous"}, {"IMDB Rating": 5.2, "Production Budget": 15000000, "Rotten Tomatoes Rating": 16, "Title": "Raise Your Voice"}, {"IMDB Rating": 8.3, "Production Budget": 17500000, "Rotten Tomatoes Rating": 90, "Title": "Hotel Rwanda"}, {"IMDB Rating": 5.9, "Production Budget": 145000000, "Rotten Tomatoes Rating": 39, "Title": "Sahara"}, {"IMDB Rating": 5.9, "Production Budget": 90000000, "Rotten Tomatoes Rating": 30, "Title": "The Saint"}, {"IMDB Rating": 3.5, "Production Budget": 1500000, "Rotten Tomatoes Rating": 12, "Title": "The Salon"}, {"IMDB Rating": 7.4, "Production Budget": 22000000, "Rotten Tomatoes Rating": 34, "Title": "I Am Sam"}, {"IMDB Rating": 7.1, "Production Budget": 18000000, "Rotten Tomatoes Rating": 63, "Title": "The Salton Sea"}, {"IMDB Rating": 3.9, "Production Budget": 95000000, "Rotten Tomatoes Rating": 15, "Title": "Sex and the City 2"}, {"IMDB Rating": 7, "Production Budget": 5000000, "Rotten Tomatoes Rating": null, "Title": "Saved!"}, {"IMDB Rating": 5.6, "Production Budget": 22000000, "Rotten Tomatoes Rating": null, "Title": "Saving Silverman"}, {"IMDB Rating": 7.7, "Production Budget": 1200000, "Rotten Tomatoes Rating": 48, "Title": "Saw"}, {"IMDB Rating": 6.8, "Production Budget": 5000000, "Rotten Tomatoes Rating": 36, "Title": "Saw II"}, {"IMDB Rating": 6.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 25, "Title": "Saw III"}, {"IMDB Rating": 6, "Production Budget": 10000000, "Rotten Tomatoes Rating": 17, "Title": "Saw IV"}, {"IMDB Rating": 5.7, "Production Budget": 10800000, "Rotten Tomatoes Rating": 13, "Title": "Saw V"}, {"IMDB Rating": 6.2, "Production Budget": 11000000, "Rotten Tomatoes Rating": 42, "Title": "Saw VI"}, {"IMDB Rating": 4.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 9, "Title": "Say It Isn't So"}, {"IMDB Rating": 5.7, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Say Uncle"}, {"IMDB Rating": 3.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 20, "Title": "The Adventures of Sharkboy and Lavagirl in 3-D"}, {"IMDB Rating": 7.4, "Production Budget": 86000000, "Rotten Tomatoes Rating": 77, "Title": "Seabiscuit"}, {"IMDB Rating": 7.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 68, "Title": "A Scanner Darkly"}, {"IMDB Rating": 4.7, "Production Budget": 45000000, "Rotten Tomatoes Rating": 14, "Title": "Scary Movie 2"}, {"IMDB Rating": 5.4, "Production Budget": 45000000, "Rotten Tomatoes Rating": 37, "Title": "Scary Movie 3"}, {"IMDB Rating": 5, "Production Budget": 40000000, "Rotten Tomatoes Rating": 37, "Title": "Scary Movie 4"}, {"IMDB Rating": 4.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Scooby-Doo 2: Monsters Unleashed"}, {"IMDB Rating": 4.7, "Production Budget": 84000000, "Rotten Tomatoes Rating": 28, "Title": "Scooby-Doo"}, {"IMDB Rating": 7.3, "Production Budget": 30000000, "Rotten Tomatoes Rating": 85, "Title": "About Schmidt"}, {"IMDB Rating": 7.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "The School of Rock"}, {"IMDB Rating": 6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 26, "Title": "School for Scoundrels"}, {"IMDB Rating": 6.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": 39, "Title": "Scoop"}, {"IMDB Rating": 6.8, "Production Budget": 68000000, "Rotten Tomatoes Rating": 74, "Title": "The Score"}, {"IMDB Rating": 2.9, "Production Budget": 15000000, "Rotten Tomatoes Rating": 81, "Title": "Scream"}, {"IMDB Rating": 5.9, "Production Budget": 24000000, "Rotten Tomatoes Rating": 80, "Title": "Scream 2"}, {"IMDB Rating": 5.3, "Production Budget": 40000000, "Rotten Tomatoes Rating": 38, "Title": "Scream 3"}, {"IMDB Rating": 5.3, "Production Budget": 60000000, "Rotten Tomatoes Rating": 40, "Title": "The Scorpion King"}, {"IMDB Rating": 7.9, "Production Budget": 70000000, "Rotten Tomatoes Rating": 76, "Title": "Stardust"}, {"IMDB Rating": 7.2, "Production Budget": 13300000, "Rotten Tomatoes Rating": null, "Title": "Mar adentro"}, {"IMDB Rating": 6.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 63, "Title": "Selena"}, {"IMDB Rating": 6.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": 33, "Title": "The Sentinel"}, {"IMDB Rating": 5.5, "Production Budget": 10100000, "Rotten Tomatoes Rating": 13, "Title": "September Dawn"}, {"IMDB Rating": 2.6, "Production Budget": 8000000, "Rotten Tomatoes Rating": 16, "Title": "You Got Served"}, {"IMDB Rating": 5, "Production Budget": 29000000, "Rotten Tomatoes Rating": 5, "Title": "Serving Sara"}, {"IMDB Rating": 6.8, "Production Budget": 1500000, "Rotten Tomatoes Rating": 60, "Title": "Session 9"}, {"IMDB Rating": 6.7, "Production Budget": 70000000, "Rotten Tomatoes Rating": 59, "Title": "Seven Years in Tibet"}, {"IMDB Rating": 5.4, "Production Budget": 57500000, "Rotten Tomatoes Rating": 49, "Title": "Sex and the City"}, {"IMDB Rating": 6.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": 25, "Title": "Swordfish"}, {"IMDB Rating": 6.8, "Production Budget": 80000000, "Rotten Tomatoes Rating": 70, "Title": "Something's Gotta Give"}, {"IMDB Rating": 5.6, "Production Budget": 250000, "Rotten Tomatoes Rating": 67, "Title": "Sugar Town"}, {"IMDB Rating": 6.3, "Production Budget": 6800000, "Rotten Tomatoes Rating": null, "Title": "Shade"}, {"IMDB Rating": 6.8, "Production Budget": 8000000, "Rotten Tomatoes Rating": 81, "Title": "Shadow of the Vampire"}, {"IMDB Rating": 5.9, "Production Budget": 53012938, "Rotten Tomatoes Rating": 68, "Title": "Shaft"}, {"IMDB Rating": 4.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": 27, "Title": "The Shaggy Dog"}, {"IMDB Rating": 6, "Production Budget": 19000000, "Rotten Tomatoes Rating": 53, "Title": "Scary Movie"}, {"IMDB Rating": 8, "Production Budget": 5000000, "Rotten Tomatoes Rating": 91, "Title": "Shaun of the Dead"}, {"IMDB Rating": 6.7, "Production Budget": 2000000, "Rotten Tomatoes Rating": 66, "Title": "Shortbus"}, {"IMDB Rating": 5.4, "Production Budget": 10000000, "Rotten Tomatoes Rating": 38, "Title": "She's All That"}, {"IMDB Rating": 6.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 44, "Title": "She's the Man"}, {"IMDB Rating": 6.7, "Production Budget": 2000000, "Rotten Tomatoes Rating": 74, "Title": "Sherrybaby"}, {"IMDB Rating": 6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 50, "Title": "Shallow Hal"}, {"IMDB Rating": 6.5, "Production Budget": 50000000, "Rotten Tomatoes Rating": 29, "Title": "Silent Hill"}, {"IMDB Rating": 8, "Production Budget": 80000000, "Rotten Tomatoes Rating": 67, "Title": "Shutter Island"}, {"IMDB Rating": 7.4, "Production Budget": 26000000, "Rotten Tomatoes Rating": 93, "Title": "Shakespeare in Love"}, {"IMDB Rating": 8, "Production Budget": 2000000, "Rotten Tomatoes Rating": 94, "Title": "In the Shadow of the Moon"}, {"IMDB Rating": 7.5, "Production Budget": 80000000, "Rotten Tomatoes Rating": 69, "Title": "Sherlock Holmes"}, {"IMDB Rating": 6.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 57, "Title": "She's Out of My League"}, {"IMDB Rating": 7.2, "Production Budget": 60000000, "Rotten Tomatoes Rating": 48, "Title": "Shooter"}, {"IMDB Rating": 8, "Production Budget": 50000000, "Rotten Tomatoes Rating": 89, "Title": "Shrek"}, {"IMDB Rating": 7.5, "Production Budget": 70000000, "Rotten Tomatoes Rating": 89, "Title": "Shrek 2"}, {"IMDB Rating": 6.1, "Production Budget": 160000000, "Rotten Tomatoes Rating": 41, "Title": "Shrek the Third"}, {"IMDB Rating": 6.7, "Production Budget": 165000000, "Rotten Tomatoes Rating": null, "Title": "Shrek Forever After"}, {"IMDB Rating": 5.9, "Production Budget": 75000000, "Rotten Tomatoes Rating": 35, "Title": "Shark Tale"}, {"IMDB Rating": 7.4, "Production Budget": 6000000, "Rotten Tomatoes Rating": 91, "Title": "Shattered Glass"}, {"IMDB Rating": 4.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 8, "Title": "Stealing Harvard"}, {"IMDB Rating": 5.3, "Production Budget": 85000000, "Rotten Tomatoes Rating": 24, "Title": "Showtime"}, {"IMDB Rating": 8.2, "Production Budget": 9000000, "Rotten Tomatoes Rating": 93, "Title": "Sicko"}, {"IMDB Rating": null, "Production Budget": 70000000, "Rotten Tomatoes Rating": 44, "Title": "The Siege"}, {"IMDB Rating": 6.9, "Production Budget": 70702619, "Rotten Tomatoes Rating": 74, "Title": "Signs"}, {"IMDB Rating": 6.7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 44, "Title": "Simon Birch"}, {"IMDB Rating": 4.9, "Production Budget": 28000000, "Rotten Tomatoes Rating": 27, "Title": "A Simple Wish"}, {"IMDB Rating": 7.6, "Production Budget": 72500000, "Rotten Tomatoes Rating": 89, "Title": "The Simpsons Movie"}, {"IMDB Rating": 6.6, "Production Budget": 60000000, "Rotten Tomatoes Rating": null, "Title": "Sinbad: Legend of the Seven Seas"}, {"IMDB Rating": 8.3, "Production Budget": 40000000, "Rotten Tomatoes Rating": 77, "Title": "Sin City"}, {"IMDB Rating": 5.6, "Production Budget": 8000000, "Rotten Tomatoes Rating": 38, "Title": "The Singing Detective"}, {"IMDB Rating": 8.2, "Production Budget": 40000000, "Rotten Tomatoes Rating": 85, "Title": "The Sixth Sense"}, {"IMDB Rating": 7.6, "Production Budget": 65000, "Rotten Tomatoes Rating": null, "Title": "Super Size Me"}, {"IMDB Rating": 6.5, "Production Budget": 40000000, "Rotten Tomatoes Rating": 38, "Title": "The Skeleton Key"}, {"IMDB Rating": 5.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": 8, "Title": "The Skulls"}, {"IMDB Rating": 6.6, "Production Budget": 60000000, "Rotten Tomatoes Rating": 73, "Title": "Sky High"}, {"IMDB Rating": 4.9, "Production Budget": 11000000, "Rotten Tomatoes Rating": 11, "Title": "Slackers"}, {"IMDB Rating": null, "Production Budget": 24000000, "Rotten Tomatoes Rating": 25, "Title": "Ready to Rumble"}, {"IMDB Rating": 7.5, "Production Budget": 70000000, "Rotten Tomatoes Rating": 68, "Title": "Sleepy Hollow"}, {"IMDB Rating": 7.8, "Production Budget": 27000000, "Rotten Tomatoes Rating": 51, "Title": "Lucky Number Slevin"}, {"IMDB Rating": 7, "Production Budget": 11000000, "Rotten Tomatoes Rating": 57, "Title": "The Secret Life of Bees"}, {"IMDB Rating": 6.4, "Production Budget": 87000000, "Rotten Tomatoes Rating": 39, "Title": "Hannibal"}, {"IMDB Rating": 5.6, "Production Budget": 17000000, "Rotten Tomatoes Rating": null, "Title": "Southland Tales"}, {"IMDB Rating": 5.9, "Production Budget": 15500000, "Rotten Tomatoes Rating": 12, "Title": "Slow Burn"}, {"IMDB Rating": 4.6, "Production Budget": 10000000, "Rotten Tomatoes Rating": 15, "Title": "Sleepover"}, {"IMDB Rating": 5, "Production Budget": 24000000, "Rotten Tomatoes Rating": 4, "Title": "The Bridge of San Luis Rey"}, {"IMDB Rating": 6.6, "Production Budget": 15250000, "Rotten Tomatoes Rating": 85, "Title": "Slither"}, {"IMDB Rating": 8.3, "Production Budget": 14000000, "Rotten Tomatoes Rating": 94, "Title": "Slumdog Millionaire"}, {"IMDB Rating": 6.4, "Production Budget": 5000000, "Rotten Tomatoes Rating": 79, "Title": "Slums of Beverly Hills"}, {"IMDB Rating": 5.9, "Production Budget": 40000000, "Rotten Tomatoes Rating": 46, "Title": "Small Soldiers"}, {"IMDB Rating": 4.7, "Production Budget": 110000000, "Rotten Tomatoes Rating": null, "Title": "Mr. And Mrs. Smith"}, {"IMDB Rating": 6.6, "Production Budget": 17000000, "Rotten Tomatoes Rating": 28, "Title": "Smokin' Aces"}, {"IMDB Rating": 5.8, "Production Budget": 23000000, "Rotten Tomatoes Rating": 41, "Title": "Someone Like You"}, {"IMDB Rating": 6.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 42, "Title": "Death to Smoochy"}, {"IMDB Rating": 4.8, "Production Budget": 6000000, "Rotten Tomatoes Rating": 14, "Title": "Simply Irresistible"}, {"IMDB Rating": 4.6, "Production Budget": 17000000, "Rotten Tomatoes Rating": 7, "Title": "Summer Catch"}, {"IMDB Rating": 7.2, "Production Budget": 22000000, "Rotten Tomatoes Rating": 83, "Title": "There's Something About Mary"}, {"IMDB Rating": 5.8, "Production Budget": 73000000, "Rotten Tomatoes Rating": 41, "Title": "Snake Eyes"}, {"IMDB Rating": 6, "Production Budget": 33000000, "Rotten Tomatoes Rating": 68, "Title": "Snakes on a Plane"}, {"IMDB Rating": 6.9, "Production Budget": 100000000, "Rotten Tomatoes Rating": 71, "Title": "Lemony Snicket's A Series of Unfortunate Events"}, {"IMDB Rating": 7.8, "Production Budget": 16500000, "Rotten Tomatoes Rating": 75, "Title": "House of Sand and Fog"}, {"IMDB Rating": 4.1, "Production Budget": 80000000, "Rotten Tomatoes Rating": 6, "Title": "A Sound of Thunder"}, {"IMDB Rating": 5, "Production Budget": 8000000, "Rotten Tomatoes Rating": 9, "Title": "See No Evil"}, {"IMDB Rating": 6.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 55, "Title": "The Shipping News"}, {"IMDB Rating": 6.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 66, "Title": "Shanghai Knights"}, {"IMDB Rating": 6.6, "Production Budget": 55000000, "Rotten Tomatoes Rating": 78, "Title": "Shanghai Noon"}, {"IMDB Rating": 4.9, "Production Budget": 32000000, "Rotten Tomatoes Rating": 23, "Title": "Snow Dogs"}, {"IMDB Rating": 6.7, "Production Budget": 36000000, "Rotten Tomatoes Rating": 40, "Title": "Snow Falling on Cedars"}, {"IMDB Rating": 7.3, "Production Budget": 40000000, "Rotten Tomatoes Rating": 74, "Title": "Sunshine"}, {"IMDB Rating": 8.2, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Snatch"}, {"IMDB Rating": 4.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": 26, "Title": "Snow Day"}, {"IMDB Rating": 5.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 13, "Title": "Sorority Boys"}, {"IMDB Rating": 6.2, "Production Budget": 47000000, "Rotten Tomatoes Rating": 65, "Title": "Solaris"}, {"IMDB Rating": 6.7, "Production Budget": 12500000, "Rotten Tomatoes Rating": null, "Title": "Solitary Man"}, {"IMDB Rating": 6.7, "Production Budget": 60000000, "Rotten Tomatoes Rating": null, "Title": "The Soloist"}, {"IMDB Rating": 6.9, "Production Budget": 1800000, "Rotten Tomatoes Rating": null, "Title": "Songcatcher"}, {"IMDB Rating": 5.7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 23, "Title": "Sonny"}, {"IMDB Rating": 7.5, "Production Budget": 5000000, "Rotten Tomatoes Rating": 80, "Title": "Standard Operating Procedure"}, {"IMDB Rating": 6.4, "Production Budget": 160000000, "Rotten Tomatoes Rating": 42, "Title": "The Sorcerer's Apprentice"}, {"IMDB Rating": 6.4, "Production Budget": 7500000, "Rotten Tomatoes Rating": 80, "Title": "Soul Food"}, {"IMDB Rating": 3.7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 19, "Title": "Soul Plane"}, {"IMDB Rating": null, "Production Budget": 21000000, "Rotten Tomatoes Rating": 80, "Title": "South Park: Bigger, Longer & Uncut"}, {"IMDB Rating": 5.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 36, "Title": "Space Jam"}, {"IMDB Rating": 6.7, "Production Budget": 75000000, "Rotten Tomatoes Rating": 52, "Title": "Spanglish"}, {"IMDB Rating": 4.8, "Production Budget": 40000000, "Rotten Tomatoes Rating": 20, "Title": "Spawn"}, {"IMDB Rating": 7.8, "Production Budget": 17500000, "Rotten Tomatoes Rating": 87, "Title": "Superbad"}, {"IMDB Rating": 4.5, "Production Budget": 37000000, "Rotten Tomatoes Rating": 36, "Title": "Space Chimps"}, {"IMDB Rating": 6.3, "Production Budget": 65000000, "Rotten Tomatoes Rating": 79, "Title": "Space Cowboys"}, {"IMDB Rating": 7.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Spider"}, {"IMDB Rating": 6.3, "Production Budget": 120000000, "Rotten Tomatoes Rating": 38, "Title": "Speed Racer"}, {"IMDB Rating": 6.8, "Production Budget": 92500000, "Rotten Tomatoes Rating": 79, "Title": "The Spiderwick Chronicles"}, {"IMDB Rating": 3.7, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Speedway Junky"}, {"IMDB Rating": 3.4, "Production Budget": 110000000, "Rotten Tomatoes Rating": null, "Title": "Speed II: Cruise Control"}, {"IMDB Rating": 5.6, "Production Budget": 73000000, "Rotten Tomatoes Rating": 12, "Title": "Sphere"}, {"IMDB Rating": 2.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Spiceworld"}, {"IMDB Rating": 7.7, "Production Budget": 200000000, "Rotten Tomatoes Rating": 93, "Title": "Spider-Man 2"}, {"IMDB Rating": 6.4, "Production Budget": 258000000, "Rotten Tomatoes Rating": 63, "Title": "Spider-Man 3"}, {"IMDB Rating": 7.4, "Production Budget": 139000000, "Rotten Tomatoes Rating": 89, "Title": "Spider-Man"}, {"IMDB Rating": 8.1, "Production Budget": 85000000, "Rotten Tomatoes Rating": 81, "Title": "Scott Pilgrim vs. The World"}, {"IMDB Rating": 4.9, "Production Budget": 16000000, "Rotten Tomatoes Rating": 24, "Title": "See Spot Run"}, {"IMDB Rating": 6.6, "Production Budget": 232000000, "Rotten Tomatoes Rating": 76, "Title": "Superman Returns"}, {"IMDB Rating": 6.8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 10, "Title": "Supernova"}, {"IMDB Rating": 6.6, "Production Budget": 4500000, "Rotten Tomatoes Rating": null, "Title": "Spun"}, {"IMDB Rating": 6.9, "Production Budget": 90000000, "Rotten Tomatoes Rating": 65, "Title": "Spy Game"}, {"IMDB Rating": null, "Production Budget": 38000000, "Rotten Tomatoes Rating": 75, "Title": "Spy Kids 2: The Island of Lost Dreams"}, {"IMDB Rating": 4.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Spy Kids 3-D: Game Over"}, {"IMDB Rating": 5.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 93, "Title": "Spy Kids"}, {"IMDB Rating": 6.8, "Production Budget": 1900000, "Rotten Tomatoes Rating": null, "Title": "The Square"}, {"IMDB Rating": 7.6, "Production Budget": 1500000, "Rotten Tomatoes Rating": 93, "Title": "The Squid and the Whale"}, {"IMDB Rating": 6.6, "Production Budget": 28000000, "Rotten Tomatoes Rating": 58, "Title": "Serendipity"}, {"IMDB Rating": 7.5, "Production Budget": 5200000, "Rotten Tomatoes Rating": null, "Title": "Saint Ralph"}, {"IMDB Rating": null, "Production Budget": 10000000, "Rotten Tomatoes Rating": 91, "Title": "Shaolin Soccer"}, {"IMDB Rating": 6, "Production Budget": 14000000, "Rotten Tomatoes Rating": 33, "Title": "Superstar"}, {"IMDB Rating": 3.6, "Production Budget": 14000000, "Rotten Tomatoes Rating": 4, "Title": "Soul Survivors"}, {"IMDB Rating": 6.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": null, "Title": "Spirit: Stallion of the Cimarron"}, {"IMDB Rating": 7.1, "Production Budget": 100000000, "Rotten Tomatoes Rating": 60, "Title": "Starship Troopers"}, {"IMDB Rating": 7.8, "Production Budget": 500000, "Rotten Tomatoes Rating": 95, "Title": "The Station Agent"}, {"IMDB Rating": 4.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 9, "Title": "Stay Alive"}, {"IMDB Rating": 6.5, "Production Budget": 18000000, "Rotten Tomatoes Rating": 66, "Title": "Small Time Crooks"}, {"IMDB Rating": 2.7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 12, "Title": "Steel"}, {"IMDB Rating": 5.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 49, "Title": "How Stella Got Her Groove Back"}, {"IMDB Rating": 5.1, "Production Budget": 100000000, "Rotten Tomatoes Rating": 26, "Title": "The Stepford Wives"}, {"IMDB Rating": 6.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 43, "Title": "Stepmom"}, {"IMDB Rating": 4.3, "Production Budget": 14000000, "Rotten Tomatoes Rating": 26, "Title": "Stomp the Yard"}, {"IMDB Rating": 7.8, "Production Budget": 30000000, "Rotten Tomatoes Rating": 72, "Title": "Stranger Than Fiction"}, {"IMDB Rating": 5.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 31, "Title": "Stick It"}, {"IMDB Rating": 6, "Production Budget": 32000000, "Rotten Tomatoes Rating": 22, "Title": "Stigmata"}, {"IMDB Rating": 7.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "A Stir of Echoes"}, {"IMDB Rating": 7, "Production Budget": 20000000, "Rotten Tomatoes Rating": 36, "Title": "Street Kings"}, {"IMDB Rating": 5.8, "Production Budget": 105000000, "Rotten Tomatoes Rating": 65, "Title": "Stuart Little"}, {"IMDB Rating": 5.6, "Production Budget": 120000000, "Rotten Tomatoes Rating": 83, "Title": "Stuart Little 2"}, {"IMDB Rating": 4.8, "Production Budget": 138000000, "Rotten Tomatoes Rating": 13, "Title": "Stealth"}, {"IMDB Rating": 6, "Production Budget": 27000000, "Rotten Tomatoes Rating": 23, "Title": "The Statement"}, {"IMDB Rating": 6.4, "Production Budget": 1500000, "Rotten Tomatoes Rating": 35, "Title": "Stolen Summer"}, {"IMDB Rating": 6.5, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Stop-Loss"}, {"IMDB Rating": 6.2, "Production Budget": 120000000, "Rotten Tomatoes Rating": 47, "Title": "The Perfect Storm"}, {"IMDB Rating": 5.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 28, "Title": "The Story of Us"}, {"IMDB Rating": 5.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 11, "Title": "The Stepfather"}, {"IMDB Rating": 7.3, "Production Budget": 60000000, "Rotten Tomatoes Rating": 84, "Title": "State of Play"}, {"IMDB Rating": 6.2, "Production Budget": 27000000, "Rotten Tomatoes Rating": 64, "Title": "The Sisterhood of the Traveling Pants 2"}, {"IMDB Rating": 6.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": 19, "Title": "Step Up"}, {"IMDB Rating": 8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 95, "Title": "The Straight Story"}, {"IMDB Rating": 7.6, "Production Budget": 46000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek: First Contact"}, {"IMDB Rating": 6.4, "Production Budget": 70000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek: Insurrection"}, {"IMDB Rating": 6.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": null, "Title": "Star Trek: Nemesis"}, {"IMDB Rating": 6, "Production Budget": 9000000, "Rotten Tomatoes Rating": 44, "Title": "The Strangers"}, {"IMDB Rating": 6.8, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Super Troopers"}, {"IMDB Rating": 5.9, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Strangers with Candy"}, {"IMDB Rating": 5.9, "Production Budget": 55000000, "Rotten Tomatoes Rating": 60, "Title": "Stuck On You"}, {"IMDB Rating": 5.6, "Production Budget": 17500000, "Rotten Tomatoes Rating": 25, "Title": "Step Up 2 the Streets"}, {"IMDB Rating": 6.3, "Production Budget": 68000000, "Rotten Tomatoes Rating": 59, "Title": "The Sum of All Fears"}, {"IMDB Rating": 6.8, "Production Budget": 5600000, "Rotten Tomatoes Rating": 80, "Title": "Sunshine State"}, {"IMDB Rating": 2.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 6, "Title": "Supercross"}, {"IMDB Rating": 7, "Production Budget": 100000000, "Rotten Tomatoes Rating": 77, "Title": "Surf's Up"}, {"IMDB Rating": 6.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": 39, "Title": "Surrogates"}, {"IMDB Rating": 6.5, "Production Budget": 22000000, "Rotten Tomatoes Rating": 50, "Title": "Summer of Sam"}, {"IMDB Rating": 5.7, "Production Budget": 4600000, "Rotten Tomatoes Rating": null, "Title": "Savage Grace"}, {"IMDB Rating": 8.5, "Production Budget": 65000000, "Rotten Tomatoes Rating": 91, "Title": "Saving Private Ryan"}, {"IMDB Rating": 5.9, "Production Budget": 70000000, "Rotten Tomatoes Rating": 48, "Title": "S.W.A.T."}, {"IMDB Rating": 7.8, "Production Budget": 17000000, "Rotten Tomatoes Rating": 97, "Title": "Sideways"}, {"IMDB Rating": 7.6, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Shall We Dance?"}, {"IMDB Rating": 6.5, "Production Budget": 40000000, "Rotten Tomatoes Rating": 46, "Title": "Secret Window"}, {"IMDB Rating": 3.4, "Production Budget": 10000000, "Rotten Tomatoes Rating": 5, "Title": "Swept Away"}, {"IMDB Rating": 6.8, "Production Budget": 7800000, "Rotten Tomatoes Rating": 84, "Title": "Swimming Pool"}, {"IMDB Rating": 4.6, "Production Budget": 10000000, "Rotten Tomatoes Rating": 15, "Title": "Swimfan"}, {"IMDB Rating": 6, "Production Budget": 40000000, "Rotten Tomatoes Rating": 16, "Title": "Sweet November"}, {"IMDB Rating": 6.2, "Production Budget": 16500000, "Rotten Tomatoes Rating": 37, "Title": "Sydney White"}, {"IMDB Rating": 6.1, "Production Budget": 38000000, "Rotten Tomatoes Rating": 32, "Title": "Switchback"}, {"IMDB Rating": 5.4, "Production Budget": 8500000, "Rotten Tomatoes Rating": 19, "Title": "Star Wars: The Clone Wars"}, {"IMDB Rating": 4.7, "Production Budget": 43000000, "Rotten Tomatoes Rating": 25, "Title": "The Sweetest Thing"}, {"IMDB Rating": 4.7, "Production Budget": 80000000, "Rotten Tomatoes Rating": 37, "Title": "Six Days, Seven Nights"}, {"IMDB Rating": 6.8, "Production Budget": 19000000, "Rotten Tomatoes Rating": 46, "Title": "Sex Drive"}, {"IMDB Rating": 7.1, "Production Budget": 4300000, "Rotten Tomatoes Rating": null, "Title": "Sexy Beast"}, {"IMDB Rating": 7.7, "Production Budget": 4500000, "Rotten Tomatoes Rating": null, "Title": "Chinjeolhan geumjassi"}, {"IMDB Rating": null, "Production Budget": 20000000, "Rotten Tomatoes Rating": 67, "Title": "Synecdoche, New York"}, {"IMDB Rating": 7.1, "Production Budget": 50000000, "Rotten Tomatoes Rating": 72, "Title": "Syriana"}, {"IMDB Rating": 5.8, "Production Budget": 27000000, "Rotten Tomatoes Rating": 18, "Title": "Suspect Zero"}, {"IMDB Rating": 6.1, "Production Budget": 150000, "Rotten Tomatoes Rating": 78, "Title": "Tadpole"}, {"IMDB Rating": 4.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Taken"}, {"IMDB Rating": 6.5, "Production Budget": 30000000, "Rotten Tomatoes Rating": 44, "Title": "Take the Lead"}, {"IMDB Rating": 6.4, "Production Budget": 73000000, "Rotten Tomatoes Rating": 72, "Title": "Talladega Nights: The Ballad of Ricky Bobby"}, {"IMDB Rating": 7.2, "Production Budget": 40000000, "Rotten Tomatoes Rating": 82, "Title": "The Talented Mr. Ripley"}, {"IMDB Rating": 7.1, "Production Budget": 218, "Rotten Tomatoes Rating": null, "Title": "Tarnation"}, {"IMDB Rating": 6.8, "Production Budget": 3500000, "Rotten Tomatoes Rating": null, "Title": "Taxman"}, {"IMDB Rating": 4, "Production Budget": 55000000, "Rotten Tomatoes Rating": 19, "Title": "Thunderbirds"}, {"IMDB Rating": 6.1, "Production Budget": 9000000, "Rotten Tomatoes Rating": 71, "Title": "The Best Man"}, {"IMDB Rating": 4, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "Book of Shadows: Blair Witch 2"}, {"IMDB Rating": 4.8, "Production Budget": 30000000, "Rotten Tomatoes Rating": 12, "Title": "The Cave"}, {"IMDB Rating": 5.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": 55, "Title": "This Christmas"}, {"IMDB Rating": 5.3, "Production Budget": 85000000, "Rotten Tomatoes Rating": 42, "Title": "The Core"}, {"IMDB Rating": 6.7, "Production Budget": 48000000, "Rotten Tomatoes Rating": 67, "Title": "The Thomas Crown Affair"}, {"IMDB Rating": 7.5, "Production Budget": 6400000, "Rotten Tomatoes Rating": 94, "Title": "The Damned United"}, {"IMDB Rating": 6.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": 55, "Title": "The Tale of Despereaux"}, {"IMDB Rating": 7.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Team America: World Police"}, {"IMDB Rating": 6.7, "Production Budget": 14000000, "Rotten Tomatoes Rating": 67, "Title": "Tea with Mussolini"}, {"IMDB Rating": 6.4, "Production Budget": 75000000, "Rotten Tomatoes Rating": 34, "Title": "Tears of the Sun"}, {"IMDB Rating": 6.1, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "The Big Tease"}, {"IMDB Rating": 5.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": 28, "Title": "Not Another Teen Movie"}, {"IMDB Rating": 5.5, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Teeth"}, {"IMDB Rating": 7.4, "Production Budget": 25000000, "Rotten Tomatoes Rating": 85, "Title": "Bridge to Terabithia"}, {"IMDB Rating": 6.6, "Production Budget": 170000000, "Rotten Tomatoes Rating": null, "Title": "Terminator 3: Rise of the Machines"}, {"IMDB Rating": 7.3, "Production Budget": 151000000, "Rotten Tomatoes Rating": 57, "Title": "Transformers"}, {"IMDB Rating": 6, "Production Budget": 210000000, "Rotten Tomatoes Rating": 20, "Title": "Transformers: Revenge of the Fallen"}, {"IMDB Rating": null, "Production Budget": 10000000, "Rotten Tomatoes Rating": 26, "Title": "The Goods: Live Hard, Sell Hard"}, {"IMDB Rating": 7.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": 62, "Title": "The Greatest Game Ever Played"}, {"IMDB Rating": 7.6, "Production Budget": 45000000, "Rotten Tomatoes Rating": 84, "Title": "The Ghost Writer"}, {"IMDB Rating": 7.4, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Joheunnom nabbeunnom isanghannom"}, {"IMDB Rating": 4.5, "Production Budget": 50000000, "Rotten Tomatoes Rating": 19, "Title": "The Beach"}, {"IMDB Rating": 6.8, "Production Budget": 25000000, "Rotten Tomatoes Rating": 45, "Title": "The Box"}, {"IMDB Rating": 6.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "The Wild Thornberrys"}, {"IMDB Rating": 6, "Production Budget": 4000000, "Rotten Tomatoes Rating": null, "Title": "Bug"}, {"IMDB Rating": 4.6, "Production Budget": 17000000, "Rotten Tomatoes Rating": 37, "Title": "They"}, {"IMDB Rating": 5.3, "Production Budget": 12000000, "Rotten Tomatoes Rating": 22, "Title": "The Eye"}, {"IMDB Rating": 3.3, "Production Budget": 18000000, "Rotten Tomatoes Rating": 5, "Title": "The Fog"}, {"IMDB Rating": 7.5, "Production Budget": 52000000, "Rotten Tomatoes Rating": 78, "Title": "The Thin Red Line"}, {"IMDB Rating": 7.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": 82, "Title": "Thirteen Days"}, {"IMDB Rating": 5.9, "Production Budget": 65000000, "Rotten Tomatoes Rating": 49, "Title": "The Kid"}, {"IMDB Rating": 5.4, "Production Budget": 20000000, "Rotten Tomatoes Rating": 11, "Title": "The Man"}, {"IMDB Rating": 5.2, "Production Budget": 19000000, "Rotten Tomatoes Rating": 25, "Title": "House on Haunted Hill"}, {"IMDB Rating": 5.6, "Production Budget": 49000000, "Rotten Tomatoes Rating": 13, "Title": "The One"}, {"IMDB Rating": 7.1, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "Gwoemul"}, {"IMDB Rating": 5, "Production Budget": 2400000, "Rotten Tomatoes Rating": 5, "Title": "Thr3e"}, {"IMDB Rating": 5.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 28, "Title": "Three to Tango"}, {"IMDB Rating": 6.7, "Production Budget": 16000000, "Rotten Tomatoes Rating": 28, "Title": "The Thirteenth Floor"}, {"IMDB Rating": 6.3, "Production Budget": 125000000, "Rotten Tomatoes Rating": 33, "Title": "The 13th Warrior"}, {"IMDB Rating": 5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 22, "Title": "The Tuxedo"}, {"IMDB Rating": 6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 61, "Title": "The Tigger Movie"}, {"IMDB Rating": 5.3, "Production Budget": 80000000, "Rotten Tomatoes Rating": 11, "Title": "Timeline"}, {"IMDB Rating": 7, "Production Budget": 2000000, "Rotten Tomatoes Rating": null, "Title": "Thirteen"}, {"IMDB Rating": 6.4, "Production Budget": 75000000, "Rotten Tomatoes Rating": 51, "Title": "Titan A.E."}, {"IMDB Rating": 7.4, "Production Budget": 200000000, "Rotten Tomatoes Rating": 82, "Title": "Titanic"}, {"IMDB Rating": 7.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": 96, "Title": "The Kids Are All Right"}, {"IMDB Rating": 5.5, "Production Budget": 78000000, "Rotten Tomatoes Rating": 17, "Title": "The League of Extraordinary Gentlemen"}, {"IMDB Rating": 5.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 28, "Title": "The Time Machine"}, {"IMDB Rating": 4.9, "Production Budget": 11000000, "Rotten Tomatoes Rating": 15, "Title": "Tomcats"}, {"IMDB Rating": 7.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": 73, "Title": "The Mist"}, {"IMDB Rating": 6.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "TMNT"}, {"IMDB Rating": 6.4, "Production Budget": 110000000, "Rotten Tomatoes Rating": 55, "Title": "Tomorrow Never Dies"}, {"IMDB Rating": 7.6, "Production Budget": 28000000, "Rotten Tomatoes Rating": 79, "Title": "The Royal Tenenbaums"}, {"IMDB Rating": 5.2, "Production Budget": 90000000, "Rotten Tomatoes Rating": null, "Title": "Lara Croft: Tomb Raider: The Cradle of Life"}, {"IMDB Rating": 5.4, "Production Budget": 94000000, "Rotten Tomatoes Rating": null, "Title": "Lara Croft: Tomb Raider"}, {"IMDB Rating": 6.3, "Production Budget": 125000000, "Rotten Tomatoes Rating": 46, "Title": "The Day After Tomorrow"}, {"IMDB Rating": 7.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "Topsy Turvy"}, {"IMDB Rating": 3.5, "Production Budget": 40000000, "Rotten Tomatoes Rating": 23, "Title": "Torque"}, {"IMDB Rating": 7.8, "Production Budget": 17000000, "Rotten Tomatoes Rating": 84, "Title": "The Others"}, {"IMDB Rating": 8.7, "Production Budget": 37000000, "Rotten Tomatoes Rating": 84, "Title": "The Town"}, {"IMDB Rating": 8, "Production Budget": 90000000, "Rotten Tomatoes Rating": 100, "Title": "Toy Story 2"}, {"IMDB Rating": 8.9, "Production Budget": 200000000, "Rotten Tomatoes Rating": 99, "Title": "Toy Story 3"}, {"IMDB Rating": 6.5, "Production Budget": 110000000, "Rotten Tomatoes Rating": null, "Title": "The Taking of Pelham 123"}, {"IMDB Rating": 6.6, "Production Budget": 100000000, "Rotten Tomatoes Rating": 69, "Title": "Treasure Planet"}, {"IMDB Rating": 7.8, "Production Budget": 48000000, "Rotten Tomatoes Rating": 91, "Title": "Traffic"}, {"IMDB Rating": 2.7, "Production Budget": 19000000, "Rotten Tomatoes Rating": 19, "Title": "Thomas and the Magic Railroad"}, {"IMDB Rating": 7.6, "Production Budget": 45000000, "Rotten Tomatoes Rating": 72, "Title": "Training Day"}, {"IMDB Rating": 7.1, "Production Budget": 22000000, "Rotten Tomatoes Rating": 61, "Title": "Traitor"}, {"IMDB Rating": 6, "Production Budget": 30000000, "Rotten Tomatoes Rating": 18, "Title": "Trapped"}, {"IMDB Rating": 5.5, "Production Budget": 48000000, "Rotten Tomatoes Rating": 71, "Title": "The Ring"}, {"IMDB Rating": 4.6, "Production Budget": 3000000, "Rotten Tomatoes Rating": 8, "Title": "Trippin'"}, {"IMDB Rating": 8.2, "Production Budget": 140000000, "Rotten Tomatoes Rating": 94, "Title": "Star Trek"}, {"IMDB Rating": 7.1, "Production Budget": 75000000, "Rotten Tomatoes Rating": 60, "Title": "The Terminal"}, {"IMDB Rating": 7.6, "Production Budget": 1000000, "Rotten Tomatoes Rating": 76, "Title": "Transamerica"}, {"IMDB Rating": 6.6, "Production Budget": 32000000, "Rotten Tomatoes Rating": null, "Title": "The Transporter 2"}, {"IMDB Rating": 6.6, "Production Budget": 21000000, "Rotten Tomatoes Rating": 53, "Title": "The Transporter"}, {"IMDB Rating": 7.5, "Production Budget": 25000000, "Rotten Tomatoes Rating": 75, "Title": "The Road"}, {"IMDB Rating": 7.2, "Production Budget": 90000000, "Rotten Tomatoes Rating": 83, "Title": "Tropic Thunder"}, {"IMDB Rating": 7, "Production Budget": 150000000, "Rotten Tomatoes Rating": 54, "Title": "Troy"}, {"IMDB Rating": 5.5, "Production Budget": 70000000, "Rotten Tomatoes Rating": 48, "Title": "xXx"}, {"IMDB Rating": 5.1, "Production Budget": 7400000, "Rotten Tomatoes Rating": 67, "Title": "Ta Ra Rum Pum"}, {"IMDB Rating": 8, "Production Budget": 60000000, "Rotten Tomatoes Rating": 95, "Title": "The Truman Show"}, {"IMDB Rating": 5.8, "Production Budget": 9000000, "Rotten Tomatoes Rating": 27, "Title": "Trust the Man"}, {"IMDB Rating": 6.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 41, "Title": "Where the Truth Lies"}, {"IMDB Rating": 6.9, "Production Budget": 145000000, "Rotten Tomatoes Rating": 88, "Title": "Tarzan"}, {"IMDB Rating": 7.4, "Production Budget": 3000000, "Rotten Tomatoes Rating": null, "Title": "Tsotsi"}, {"IMDB Rating": 7.1, "Production Budget": 39000000, "Rotten Tomatoes Rating": 37, "Title": "The Time Traveler's Wife"}, {"IMDB Rating": 4.5, "Production Budget": 20000000, "Rotten Tomatoes Rating": null, "Title": "The Touch"}, {"IMDB Rating": 6.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": 61, "Title": "Tuck Everlasting"}, {"IMDB Rating": 6.7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 70, "Title": "Thumbsucker"}, {"IMDB Rating": 4.5, "Production Budget": 55000000, "Rotten Tomatoes Rating": 17, "Title": "Turbulence"}, {"IMDB Rating": 6.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": null, "Title": "Turistas"}, {"IMDB Rating": 3.6, "Production Budget": 4000000, "Rotten Tomatoes Rating": 8, "Title": "The Wash"}, {"IMDB Rating": 5.6, "Production Budget": 1000000, "Rotten Tomatoes Rating": null, "Title": "Two Girls and a Guy"}, {"IMDB Rating": 5.4, "Production Budget": 80000000, "Rotten Tomatoes Rating": 19, "Title": "The Wild"}, {"IMDB Rating": 6.1, "Production Budget": 20000000, "Rotten Tomatoes Rating": 60, "Title": "Twilight"}, {"IMDB Rating": 4.8, "Production Budget": 50000000, "Rotten Tomatoes Rating": 2, "Title": "Twisted"}, {"IMDB Rating": null, "Production Budget": 50000000, "Rotten Tomatoes Rating": 28, "Title": "The Twilight Saga: New Moon"}, {"IMDB Rating": null, "Production Budget": 68000000, "Rotten Tomatoes Rating": 51, "Title": "The Twilight Saga: Eclipse"}, {"IMDB Rating": 6.1, "Production Budget": 37000000, "Rotten Tomatoes Rating": 50, "Title": "Twilight"}, {"IMDB Rating": 4.4, "Production Budget": 105000000, "Rotten Tomatoes Rating": 13, "Title": "Town & Country"}, {"IMDB Rating": 5.4, "Production Budget": 6000000, "Rotten Tomatoes Rating": 30, "Title": "200 Cigarettes"}, {"IMDB Rating": 5.8, "Production Budget": 16000000, "Rotten Tomatoes Rating": null, "Title": "The Texas Chainsaw Massacre: The Beginning"}, {"IMDB Rating": 6.1, "Production Budget": 9000000, "Rotten Tomatoes Rating": 36, "Title": "The Texas Chainsaw Massacre"}, {"IMDB Rating": 5, "Production Budget": 38000000, "Rotten Tomatoes Rating": null, "Title": "Texas Rangers"}, {"IMDB Rating": 6.9, "Production Budget": 5700000, "Rotten Tomatoes Rating": null, "Title": "Tom yum goong"}, {"IMDB Rating": 7.8, "Production Budget": 7500000, "Rotten Tomatoes Rating": null, "Title": "Thank You For Smoking"}, {"IMDB Rating": 8.3, "Production Budget": 15000000, "Rotten Tomatoes Rating": null, "Title": "U2 3D"}, {"IMDB Rating": 6.4, "Production Budget": 62000000, "Rotten Tomatoes Rating": 68, "Title": "U-571"}, {"IMDB Rating": 5.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 76, "Title": "Undercover Brother"}, {"IMDB Rating": 3.3, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Underclassman"}, {"IMDB Rating": 6.6, "Production Budget": 30000000, "Rotten Tomatoes Rating": null, "Title": "Dodgeball: A True Underdog Story"}, {"IMDB Rating": 6.4, "Production Budget": 38000000, "Rotten Tomatoes Rating": 14, "Title": "The Ugly Truth"}, {"IMDB Rating": 4, "Production Budget": 30000000, "Rotten Tomatoes Rating": 9, "Title": "Ultraviolet"}, {"IMDB Rating": 3.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "Unaccompanied Minors"}, {"IMDB Rating": 7.3, "Production Budget": 73243106, "Rotten Tomatoes Rating": 68, "Title": "Unbreakable"}, {"IMDB Rating": 4.5, "Production Budget": 16000000, "Rotten Tomatoes Rating": 11, "Title": "The Unborn"}, {"IMDB Rating": 5.6, "Production Budget": 750000, "Rotten Tomatoes Rating": null, "Title": "Undead"}, {"IMDB Rating": 6.7, "Production Budget": 22000000, "Rotten Tomatoes Rating": 30, "Title": "Underworld"}, {"IMDB Rating": 3.7, "Production Budget": 9000000, "Rotten Tomatoes Rating": 8, "Title": "Undiscovered"}, {"IMDB Rating": 5.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 49, "Title": "Undisputed"}, {"IMDB Rating": 6.6, "Production Budget": 45000000, "Rotten Tomatoes Rating": 15, "Title": "Underworld: Evolution"}, {"IMDB Rating": 7.1, "Production Budget": 30000000, "Rotten Tomatoes Rating": 53, "Title": "An Unfinished Life"}, {"IMDB Rating": 6.6, "Production Budget": 50000000, "Rotten Tomatoes Rating": 48, "Title": "Unfaithful"}, {"IMDB Rating": 3.4, "Production Budget": 40000000, "Rotten Tomatoes Rating": null, "Title": "Universal Soldier II: The Return"}, {"IMDB Rating": 6.6, "Production Budget": 3700000, "Rotten Tomatoes Rating": 39, "Title": null}, {"IMDB Rating": 7.1, "Production Budget": 43000000, "Rotten Tomatoes Rating": null, "Title": "Danny the Dog"}, {"IMDB Rating": 6.1, "Production Budget": 35000000, "Rotten Tomatoes Rating": 15, "Title": "Untraceable"}, {"IMDB Rating": 8.4, "Production Budget": 175000000, "Rotten Tomatoes Rating": 98, "Title": "Up"}, {"IMDB Rating": null, "Production Budget": 30000000, "Rotten Tomatoes Rating": 90, "Title": "Up in the Air"}, {"IMDB Rating": 7, "Production Budget": 12000000, "Rotten Tomatoes Rating": null, "Title": "The Upside of Anger"}, {"IMDB Rating": 5.2, "Production Budget": 14000000, "Rotten Tomatoes Rating": 21, "Title": "Urban Legend"}, {"IMDB Rating": 3.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 9, "Title": "Urban Legends: Final Cut"}, {"IMDB Rating": 6.7, "Production Budget": 225000, "Rotten Tomatoes Rating": 73, "Title": "Urbania"}, {"IMDB Rating": 7.3, "Production Budget": 75000000, "Rotten Tomatoes Rating": 61, "Title": "Valkyrie"}, {"IMDB Rating": 5.6, "Production Budget": 35000000, "Rotten Tomatoes Rating": 30, "Title": "Valiant"}, {"IMDB Rating": 4.3, "Production Budget": 10000000, "Rotten Tomatoes Rating": 9, "Title": "Valentine"}, {"IMDB Rating": 6.1, "Production Budget": 40000000, "Rotten Tomatoes Rating": 37, "Title": "Cirque du Freak: The Vampire's Assistant"}, {"IMDB Rating": 6.4, "Production Budget": 60000000, "Rotten Tomatoes Rating": 43, "Title": "The Legend of Bagger Vance"}, {"IMDB Rating": 7.1, "Production Budget": 800000, "Rotten Tomatoes Rating": null, "Title": "Raising Victor Vargas"}, {"IMDB Rating": 7.4, "Production Budget": 23000000, "Rotten Tomatoes Rating": 73, "Title": "In the Valley of Elah"}, {"IMDB Rating": 4.6, "Production Budget": 25000000, "Rotten Tomatoes Rating": 10, "Title": "Venom"}, {"IMDB Rating": null, "Production Budget": 6000000, "Rotten Tomatoes Rating": 89, "Title": "Venus"}, {"IMDB Rating": 6.2, "Production Budget": 23000000, "Rotten Tomatoes Rating": 50, "Title": "Vanity Fair"}, {"IMDB Rating": 8.2, "Production Budget": 50000000, "Rotten Tomatoes Rating": 73, "Title": "V for Vendetta"}, {"IMDB Rating": 5.5, "Production Budget": 170000000, "Rotten Tomatoes Rating": 22, "Title": "Van Helsing"}, {"IMDB Rating": 6.6, "Production Budget": 71682975, "Rotten Tomatoes Rating": 42, "Title": "The Village"}, {"IMDB Rating": 7.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": null, "Title": "The Virgin Suicides"}, {"IMDB Rating": 4.5, "Production Budget": 75000000, "Rotten Tomatoes Rating": 9, "Title": "Virus"}, {"IMDB Rating": 6.8, "Production Budget": 4000000, "Rotten Tomatoes Rating": 90, "Title": "The Visitor"}, {"IMDB Rating": 5.6, "Production Budget": 75000000, "Rotten Tomatoes Rating": 47, "Title": "Vertical Limit"}, {"IMDB Rating": 6.8, "Production Budget": 20000000, "Rotten Tomatoes Rating": 33, "Title": "Vampires"}, {"IMDB Rating": 6.9, "Production Budget": 70000000, "Rotten Tomatoes Rating": 39, "Title": "Vanilla Sky"}, {"IMDB Rating": 5.2, "Production Budget": 90000000, "Rotten Tomatoes Rating": 42, "Title": "Volcano"}, {"IMDB Rating": 4.4, "Production Budget": 9400000, "Rotten Tomatoes Rating": 92, "Title": "Volver"}, {"IMDB Rating": 5.7, "Production Budget": 8300000, "Rotten Tomatoes Rating": null, "Title": "Kurtlar vadisi - Irak"}, {"IMDB Rating": 3.3, "Production Budget": 58000000, "Rotten Tomatoes Rating": 24, "Title": "The Flintstones in Viva Rock Vegas"}, {"IMDB Rating": 6, "Production Budget": 16000000, "Rotten Tomatoes Rating": 39, "Title": "Varsity Blues"}, {"IMDB Rating": 5.7, "Production Budget": 52000000, "Rotten Tomatoes Rating": 17, "Title": "Valentine's Day"}, {"IMDB Rating": 7.1, "Production Budget": 6000000, "Rotten Tomatoes Rating": 69, "Title": "The Wackness"}, {"IMDB Rating": 7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 84, "Title": "Wag the Dog"}, {"IMDB Rating": 6.8, "Production Budget": 7000000, "Rotten Tomatoes Rating": null, "Title": "Wah-Wah"}, {"IMDB Rating": null, "Production Budget": 1125000, "Rotten Tomatoes Rating": 30, "Title": "Waiting..."}, {"IMDB Rating": null, "Production Budget": 3000000, "Rotten Tomatoes Rating": 82, "Title": "Waking Ned Devine"}, {"IMDB Rating": 8.5, "Production Budget": 180000000, "Rotten Tomatoes Rating": 96, "Title": "WALL-E"}, {"IMDB Rating": 6.2, "Production Budget": 25000000, "Rotten Tomatoes Rating": null, "Title": "War"}, {"IMDB Rating": null, "Production Budget": 10000000, "Rotten Tomatoes Rating": 29, "Title": "War, Inc."}, {"IMDB Rating": 7.2, "Production Budget": 132000000, "Rotten Tomatoes Rating": null, "Title": "The War of the Worlds"}, {"IMDB Rating": 7.8, "Production Budget": 138000000, "Rotten Tomatoes Rating": 64, "Title": "Watchmen"}, {"IMDB Rating": 7.2, "Production Budget": 1500000, "Rotten Tomatoes Rating": 89, "Title": "Waitress"}, {"IMDB Rating": 5.5, "Production Budget": 8000000, "Rotten Tomatoes Rating": null, "Title": "The Wendell Baker Story"}, {"IMDB Rating": 8.2, "Production Budget": 2000000, "Rotten Tomatoes Rating": 95, "Title": "Winter's Bone"}, {"IMDB Rating": 7.5, "Production Budget": 35000000, "Rotten Tomatoes Rating": 81, "Title": "Wonder Boys"}, {"IMDB Rating": 5, "Production Budget": 20000000, "Rotten Tomatoes Rating": 15, "Title": "White Chicks"}, {"IMDB Rating": 6.3, "Production Budget": 1100000, "Rotten Tomatoes Rating": null, "Title": "Wolf Creek"}, {"IMDB Rating": 4.8, "Production Budget": 28000000, "Rotten Tomatoes Rating": 16, "Title": "The Wedding Planner"}, {"IMDB Rating": 6.6, "Production Budget": 5500000, "Rotten Tomatoes Rating": 35, "Title": "Wonderland"}, {"IMDB Rating": 6.8, "Production Budget": 29000000, "Rotten Tomatoes Rating": 48, "Title": "Taking Woodstock"}, {"IMDB Rating": 5.5, "Production Budget": 15000000, "Rotten Tomatoes Rating": 10, "Title": "The Wedding Date"}, {"IMDB Rating": 6.4, "Production Budget": 312000, "Rotten Tomatoes Rating": 84, "Title": "Tumbleweeds"}, {"IMDB Rating": 7, "Production Budget": 28000000, "Rotten Tomatoes Rating": 56, "Title": "We Own the Night"}, {"IMDB Rating": 6.9, "Production Budget": 70000000, "Rotten Tomatoes Rating": 62, "Title": "We Were Soldiers"}, {"IMDB Rating": 7.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 82, "Title": "The World's Fastest Indian"}, {"IMDB Rating": 6.7, "Production Budget": 14000000, "Rotten Tomatoes Rating": null, "Title": "Les herbes folles"}, {"IMDB Rating": 5.7, "Production Budget": 25000000, "Rotten Tomatoes Rating": 34, "Title": "What a Girl Wants"}, {"IMDB Rating": 7.7, "Production Budget": 4300000, "Rotten Tomatoes Rating": 90, "Title": "Whale Rider"}, {"IMDB Rating": 6.7, "Production Budget": 35000000, "Rotten Tomatoes Rating": 74, "Title": "Walk Hard: The Dewey Cox Story"}, {"IMDB Rating": 6.4, "Production Budget": 15000000, "Rotten Tomatoes Rating": 34, "Title": "Where the Heart Is"}, {"IMDB Rating": 4.2, "Production Budget": 3000000, "Rotten Tomatoes Rating": 13, "Title": "Whipped"}, {"IMDB Rating": 7.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 84, "Title": "Whip It"}, {"IMDB Rating": 4.5, "Production Budget": 27500000, "Rotten Tomatoes Rating": 23, "Title": "Welcome Home Roscoe Jenkins"}, {"IMDB Rating": 4.7, "Production Budget": 15000000, "Rotten Tomatoes Rating": 9, "Title": "When a Stranger Calls"}, {"IMDB Rating": 6.6, "Production Budget": 80000000, "Rotten Tomatoes Rating": 55, "Title": "What Dreams May Come"}, {"IMDB Rating": 6.5, "Production Budget": 16000000, "Rotten Tomatoes Rating": 51, "Title": "The White Countess"}, {"IMDB Rating": 6.9, "Production Budget": 30000000, "Rotten Tomatoes Rating": 24, "Title": "Wicker Park"}, {"IMDB Rating": 7.2, "Production Budget": 100000000, "Rotten Tomatoes Rating": 73, "Title": "Where the Wild Things Are"}, {"IMDB Rating": 6.6, "Production Budget": 20000000, "Rotten Tomatoes Rating": 64, "Title": "Wild Things"}, {"IMDB Rating": 6.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 60, "Title": "Wimbledon"}, {"IMDB Rating": 5.8, "Production Budget": 115000000, "Rotten Tomatoes Rating": 32, "Title": "Windtalkers"}, {"IMDB Rating": 6.1, "Production Budget": 15000000, "Rotten Tomatoes Rating": 53, "Title": "Because of Winn-Dixie"}, {"IMDB Rating": 3.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": 11, "Title": "Wing Commander"}, {"IMDB Rating": 6.9, "Production Budget": 25000000, "Rotten Tomatoes Rating": 78, "Title": "Without Limits"}, {"IMDB Rating": 5.9, "Production Budget": 27000000, "Rotten Tomatoes Rating": null, "Title": "What Just Happened"}, {"IMDB Rating": 6.5, "Production Budget": 90000000, "Rotten Tomatoes Rating": 45, "Title": "What Lies Beneath"}, {"IMDB Rating": 7.9, "Production Budget": 29000000, "Rotten Tomatoes Rating": 82, "Title": "Walk the Line"}, {"IMDB Rating": 7.1, "Production Budget": 11000000, "Rotten Tomatoes Rating": 28, "Title": "A Walk to Remember"}, {"IMDB Rating": 6.2, "Production Budget": 20000000, "Rotten Tomatoes Rating": 65, "Title": "Willard"}, {"IMDB Rating": 4.3, "Production Budget": 175000000, "Rotten Tomatoes Rating": 21, "Title": "Wild Wild West"}, {"IMDB Rating": 5.9, "Production Budget": 10000000, "Rotten Tomatoes Rating": 86, "Title": "White Noise 2: The Light"}, {"IMDB Rating": null, "Production Budget": 10000000, "Rotten Tomatoes Rating": 9, "Title": "White Noise"}, {"IMDB Rating": 6.4, "Production Budget": 75000000, "Rotten Tomatoes Rating": 71, "Title": "Wanted"}, {"IMDB Rating": 4.9, "Production Budget": 8000000, "Rotten Tomatoes Rating": 35, "Title": "Woman on Top"}, {"IMDB Rating": 7.4, "Production Budget": 150000000, "Rotten Tomatoes Rating": null, "Title": "The Wolf Man"}, {"IMDB Rating": 6.7, "Production Budget": 150000000, "Rotten Tomatoes Rating": null, "Title": "X-Men Origins: Wolverine"}, {"IMDB Rating": 7.9, "Production Budget": 16000000, "Rotten Tomatoes Rating": 13, "Title": "The Women"}, {"IMDB Rating": 3.4, "Production Budget": 13000000, "Rotten Tomatoes Rating": 5, "Title": "Woo"}, {"IMDB Rating": 6.1, "Production Budget": 6000000, "Rotten Tomatoes Rating": 61, "Title": "The Wood"}, {"IMDB Rating": 5.7, "Production Budget": 30000000, "Rotten Tomatoes Rating": 15, "Title": "Without a Paddle"}, {"IMDB Rating": 5, "Production Budget": 30000000, "Rotten Tomatoes Rating": 10, "Title": "What's the Worst That Could Happen?"}, {"IMDB Rating": 6.4, "Production Budget": 3500000, "Rotten Tomatoes Rating": 40, "Title": "Winter Passing"}, {"IMDB Rating": 5.4, "Production Budget": 50000000, "Rotten Tomatoes Rating": 42, "Title": "What Planet Are You From?"}, {"IMDB Rating": 7.4, "Production Budget": 500000, "Rotten Tomatoes Rating": null, "Title": "Wordplay"}, {"IMDB Rating": 8.2, "Production Budget": 6000000, "Rotten Tomatoes Rating": 98, "Title": "The Wrestler"}, {"IMDB Rating": 6, "Production Budget": 56000000, "Rotten Tomatoes Rating": 25, "Title": "Walking Tall"}, {"IMDB Rating": 6.2, "Production Budget": 65000000, "Rotten Tomatoes Rating": 69, "Title": "World Trade Center"}, {"IMDB Rating": 3.7, "Production Budget": 33000000, "Rotten Tomatoes Rating": 10, "Title": "The Watcher"}, {"IMDB Rating": 6.9, "Production Budget": 20000000, "Rotten Tomatoes Rating": 58, "Title": "The Weather Man"}, {"IMDB Rating": 6.3, "Production Budget": 70000000, "Rotten Tomatoes Rating": 72, "Title": "Sky Captain and the World of Tomorrow"}, {"IMDB Rating": 5.3, "Production Budget": 35000000, "Rotten Tomatoes Rating": 7, "Title": "Whiteout"}, {"IMDB Rating": 5.7, "Production Budget": 23000000, "Rotten Tomatoes Rating": 32, "Title": "The Waterboy"}, {"IMDB Rating": 5.8, "Production Budget": 10000000, "Rotten Tomatoes Rating": 40, "Title": "Wrong Turn"}, {"IMDB Rating": 6.3, "Production Budget": 65000000, "Rotten Tomatoes Rating": 53, "Title": "What Women Want"}, {"IMDB Rating": 6.5, "Production Budget": 9000000, "Rotten Tomatoes Rating": 48, "Title": "The Way of the Gun"}, {"IMDB Rating": 5.9, "Production Budget": 35000000, "Rotten Tomatoes Rating": null, "Title": "The X-Files: I Want to Believe"}, {"IMDB Rating": 6.4, "Production Budget": 31000000, "Rotten Tomatoes Rating": 27, "Title": "Extraordinary Measures"}, {"IMDB Rating": 7.4, "Production Budget": 75000000, "Rotten Tomatoes Rating": 82, "Title": "X-Men"}, {"IMDB Rating": 7.8, "Production Budget": 125000000, "Rotten Tomatoes Rating": null, "Title": "X2"}, {"IMDB Rating": 6.9, "Production Budget": 150000000, "Rotten Tomatoes Rating": 57, "Title": "X-Men: The Last Stand"}, {"IMDB Rating": 6.2, "Production Budget": 40000, "Rotten Tomatoes Rating": null, "Title": "The Exploding Girl"}, {"IMDB Rating": 7.1, "Production Budget": 82000000, "Rotten Tomatoes Rating": 40, "Title": "The Expendables"}, {"IMDB Rating": 4.1, "Production Budget": 60000000, "Rotten Tomatoes Rating": null, "Title": "XXX: State of the Union"}, {"IMDB Rating": 6.3, "Production Budget": 20000000, "Rotten Tomatoes Rating": 64, "Title": "The Yards"}, {"IMDB Rating": 7.7, "Production Budget": 1200000, "Rotten Tomatoes Rating": 95, "Title": "You Can Count on Me"}, {"IMDB Rating": 5, "Production Budget": 60000000, "Rotten Tomatoes Rating": 14, "Title": "Year One"}, {"IMDB Rating": 7, "Production Budget": 50000000, "Rotten Tomatoes Rating": 43, "Title": "Yes Man"}, {"IMDB Rating": 6.7, "Production Budget": 4000000, "Rotten Tomatoes Rating": 78, "Title": "You Kill Me"}, {"IMDB Rating": 7.6, "Production Budget": 45000000, "Rotten Tomatoes Rating": null, "Title": "Yours, Mine and Ours"}, {"IMDB Rating": 6.2, "Production Budget": 65000000, "Rotten Tomatoes Rating": 68, "Title": "You've Got Mail"}, {"IMDB Rating": 6.7, "Production Budget": 18000000, "Rotten Tomatoes Rating": null, "Title": "Youth in Revolt"}, {"IMDB Rating": 4.5, "Production Budget": 800000, "Rotten Tomatoes Rating": null, "Title": "The Young Unknowns"}, {"IMDB Rating": 7.2, "Production Budget": 35000000, "Rotten Tomatoes Rating": 76, "Title": "The Young Victoria"}, {"IMDB Rating": null, "Production Budget": 65000000, "Rotten Tomatoes Rating": 75, "Title": "Zathura"}, {"IMDB Rating": 6.8, "Production Budget": 5000000, "Rotten Tomatoes Rating": 66, "Title": "Zero Effect"}, {"IMDB Rating": 6.4, "Production Budget": 28000000, "Rotten Tomatoes Rating": 62, "Title": "Zoolander"}, {"IMDB Rating": 7.8, "Production Budget": 23600000, "Rotten Tomatoes Rating": 89, "Title": "Zombieland"}, {"IMDB Rating": 7, "Production Budget": 24000000, "Rotten Tomatoes Rating": 65, "Title": "Zack and Miri Make a Porno"}, {"IMDB Rating": null, "Production Budget": 85000000, "Rotten Tomatoes Rating": 89, "Title": "Zodiac"}, {"IMDB Rating": 3.4, "Production Budget": 35000000, "Rotten Tomatoes Rating": 3, "Title": "Zoom"}, {"IMDB Rating": 5.7, "Production Budget": 80000000, "Rotten Tomatoes Rating": 26, "Title": "The Legend of Zorro"}, {"IMDB Rating": 6.7, "Production Budget": 65000000, "Rotten Tomatoes Rating": 82, "Title": "The Mask of Zorro"}], "metadata": {"IMDB Rating": {"type": "number", "semanticType": "Number"}, "Production Budget": {"type": "number", "semanticType": "Number"}, "Rotten Tomatoes Rating": {"type": "number", "semanticType": "Number"}, "Title": {"type": "string", "semanticType": "Name"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n", "source": ["movies"], "dialog": [{"content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 15442818.0, 17031573.0, 33619971.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.4, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 237477.0, 417703.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nDo higher production budgets correlate with better ratings?", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"The user wants to analyze the correlation between production budgets and movie ratings to understand if higher budgets lead to better ratings.\",\n \"display_instruction\": \"Show correlation between **Production Budget** and **ratings**\",\n \"recommendation\": \"Create a scatter plot visualization to show the relationship between Production Budget and ratings. Since there are two rating systems (Rotten Tomatoes and IMDB), we'll analyze both and include them as separate dimensions in the output data.\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Rotten Tomatoes Rating\", \"IMDB Rating\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "movies", "resultTableId": "table-456490", "chart": {"id": "chart-1760744462348", "chartType": "Auto", "encodingMap": {}, "tableRef": "movies", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "Do higher production budgets correlate with better ratings?", "displayContent": "Show correlation between **Production Budget** and **ratings**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Select key fields from the movies dataset: **Title**, **Production Budget**, **Rotten Tomatoes Rating**, and **IMDB Rating**\n- Filter out movies with missing **Production Budget** values to ensure all movies have known budget information\n- Retain only movies that have at least one rating available (either **Rotten Tomatoes Rating** or **IMDB Rating**), ensuring each movie has some form of critical assessment\n- Return a cleaned dataset containing only movies with complete budget information and at least one rating metric", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., nan, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: nan, 853973.0, 13180936.0, ..., nan, 46260220.0, 124058348.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 229156.0, 237477.0, 417703.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Select key fields from the movies dataset: **Title**, **Production Budget**, **Rotten Tomatoes Rating**, and **IMDB Rating**\n- Filter out movies with missing **Production Budget** values to ensure all movies have known budget information\n- Retain only movies that have at least one rating available (either **Rotten Tomatoes Rating** or **IMDB Rating**), ensuring each movie has some form of critical assessment\n- Return a cleaned dataset containing only movies with complete budget information and at least one rating metric\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-37", "displayId": "movie-budget-ratings", "names": ["Number of Movies", "Production Budget Bin", "Rotten Tomatoes Rating Bin"], "rows": [{"Number of Movies": 6, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Number of Movies": 9, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Number of Movies": 12, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Number of Movies": 19, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Number of Movies": 54, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "81-100"}, {"Number of Movies": 61, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Number of Movies": 72, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Number of Movies": 58, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Number of Movies": 104, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Number of Movies": 219, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "81-100"}, {"Number of Movies": 229, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Number of Movies": 257, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Number of Movies": 241, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Number of Movies": 245, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Number of Movies": 210, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "81-100"}, {"Number of Movies": 62, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Number of Movies": 99, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Number of Movies": 98, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Number of Movies": 95, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Number of Movies": 54, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "81-100"}, {"Number of Movies": 9, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Number of Movies": 24, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Number of Movies": 26, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Number of Movies": 26, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Number of Movies": 31, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "81-100"}], "metadata": {"Number of Movies": {"type": "number", "semanticType": "Number"}, "Production Budget Bin": {"type": "string", "semanticType": "Range", "levels": ["<$1M", "$1M-$10M", "$10M-$50M", "$50M-$100M", ">$100M"]}, "Rotten Tomatoes Rating Bin": {"type": "string", "semanticType": "Range", "levels": ["0-20", "21-40", "41-60", "61-80", "81-100"]}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna())\n ]\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Count movies in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n ).size().reset_index(name='Number of Movies')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n", "source": ["movies"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 15442818.0, 17031573.0, 33619971.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.4, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 237477.0, 417703.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nDo higher production budgets correlate with better ratings?", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"The user wants to analyze the correlation between production budgets and movie ratings to understand if higher budgets lead to better ratings.\",\n \"display_instruction\": \"Show correlation between **Production Budget** and **ratings**\",\n \"recommendation\": \"Create a scatter plot visualization to show the relationship between Production Budget and ratings. Since there are two rating systems (Rotten Tomatoes and IMDB), we'll analyze both and include them as separate dimensions in the output data.\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Rotten Tomatoes Rating\", \"IMDB Rating\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n IMDB Rating Production Budget Rotten Tomatoes Rating Title\n0 6.1 8000000 NaN The Land Girls\n1 6.9 300000 NaN First Love, Last Rites\n2 6.8 250000 NaN I Married a Strange Person\n3 NaN 300000 13.0 Let's Talk About Sex\n4 3.4 1000000 62.0 Slam\n5 7.7 6000 NaN Following\n6 3.8 1600000 NaN Foolish\n7 5.8 40000000 25.0 Pirates\n8 7.0 6000000 86.0 Duel in the Sun\n9 7.0 1000000 81.0 Tom Jones\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"bin rt rating and budget into bins to show number of movies in each range\",\n \"chart_type\": \"Scatter Plot\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Bin the Production Budget and Rotten Tomatoes Rating into categorical ranges, then count the number of movies that fall into each combination of budget and rating bins to create a heatmap-style aggregation.\",\n \"display_instruction\": \"Show **number of movies** in each **Production Budget** and **Rotten Tomatoes Rating** bin\",\n \"output_fields\": [\"Production Budget Bin\", \"Rotten Tomatoes Rating Bin\", \"Number of Movies\"],\n \"chart_encodings\": {\n \"x\": \"Production Budget Bin\",\n \"y\": \"Rotten Tomatoes Rating Bin\",\n \"color\": \"Number of Movies\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n },\n \"reason\": \"The user wants to bin both Production Budget and Rotten Tomatoes Rating into ranges and count movies in each combination. This requires creating categorical bins for both dimensions and aggregating counts. A heatmap visualization (using color encoding for count) would be more appropriate than a scatter plot for showing binned data.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna())\n ]\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Count movies in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n ).size().reset_index(name='Number of Movies')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-456490", "resultTableId": "table-37", "chart": {"id": "chart-1760744514854", "chartType": "Scatter Plot", "encodingMap": {"x": {"fieldID": "original--movies--Production Budget"}, "y": {"fieldID": "original--movies--Rotten Tomatoes Rating"}, "color": {"channel": "color", "bin": false}, "size": {"channel": "size", "bin": false}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-456490", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "bin rt rating and budget into bins to show number of movies in each range", "displayContent": "Show **number of movies** in each **Production Budget** and **Rotten Tomatoes Rating** bin"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Filter the dataset to include only movies with both **Production Budget** and **Rotten Tomatoes Rating** values available\n- Create **budget categories** by grouping Production Budget into five bins: **<$1M**, **$1M-$10M**, **$10M-$50M**, **$50M-$100M**, and **>$100M**\n- Create **rating categories** by grouping Rotten Tomatoes Rating into five bins: **0-20**, **21-40**, **41-60**, **61-80**, and **81-100**\n- **Count** the number of movies that fall into each combination of budget category and rating category\n- Return a summary table showing the distribution of movies across budget and rating bins", "concepts": [{"explanation": "Categorical bins created through discretization of continuous variables. Production Budget is divided into 5 ranges based on million-dollar thresholds, while Rotten Tomatoes Rating is divided into 5 equal-width intervals of 20 points each. This binning approach enables analysis of the relationship between production investment levels and critical reception patterns.", "field": "Production Budget Bin, Rotten Tomatoes Rating Bin"}, {"explanation": "This analysis employs a **two-dimensional frequency distribution** (contingency table approach) to explore the relationship between production budget and critical reception. The transformation creates a discrete joint distribution by binning two continuous variables and counting occurrences in each cell. This approach is useful for identifying patterns such as whether higher-budget films tend to receive better or worse critical ratings. **Alternative modeling approaches** could include: (1) correlation analysis between raw budget and rating values, (2) regression modeling to predict ratings from budget while controlling for other factors, (3) chi-square tests of independence to formally test whether budget and rating categories are associated, or (4) visualization through heatmaps to reveal concentration patterns across the budget-rating space.", "field": "Statistical Analysis"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 402111870.0, 441226247.0, 600788188.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 1133027325.0, 1842879955.0, 2767891499.0\n\t*US DVD Sales -- type: float64, values: 618454.0, 853973.0, 1877732.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: nan, 1.5, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 57313.0, nan, 73720.0, 212985.0\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna())\n ]\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Count movies in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n ).size().reset_index(name='Number of Movies')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Filter the dataset to include only movies with both **Production Budget** and **Rotten Tomatoes Rating** values available\n- Create **budget categories** by grouping Production Budget into five bins: **<$1M**, **$1M-$10M**, **$10M-$50M**, **$50M-$100M**, and **>$100M**\n- Create **rating categories** by grouping Rotten Tomatoes Rating into five bins: **0-20**, **21-40**, **41-60**, **61-80**, and **81-100**\n- **Count** the number of movies that fall into each combination of budget category and rating category\n- Return a summary table showing the distribution of movies across budget and rating bins\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Production Budget Bin, Rotten Tomatoes Rating Bin\",\n \"explanation\": \"Categorical bins created through discretization of continuous variables. Production Budget is divided into 5 ranges based on million-dollar thresholds, while Rotten Tomatoes Rating is divided into 5 equal-width intervals of 20 points each. This binning approach enables analysis of the relationship between production investment levels and critical reception patterns.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis employs a **two-dimensional frequency distribution** (contingency table approach) to explore the relationship between production budget and critical reception. The transformation creates a discrete joint distribution by binning two continuous variables and counting occurrences in each cell. This approach is useful for identifying patterns such as whether higher-budget films tend to receive better or worse critical ratings. **Alternative modeling approaches** could include: (1) correlation analysis between raw budget and rating values, (2) regression modeling to predict ratings from budget while controlling for other factors, (3) chi-square tests of independence to formally test whether budget and rating categories are associated, or (4) visualization through heatmaps to reveal concentration patterns across the budget-rating space.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-54", "displayId": "film-profit-analysis", "names": ["Average Profit", "Production Budget Bin", "Rotten Tomatoes Rating Bin"], "rows": [{"Average Profit": 1265816.3333333333, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Average Profit": 6494134, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Average Profit": 7866065.833333333, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Average Profit": 6749073.2105263155, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Average Profit": 20121581.403846152, "Production Budget Bin": "<$1M", "Rotten Tomatoes Rating Bin": "81-100"}, {"Average Profit": 9285520.68852459, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Average Profit": 17386269.305555556, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Average Profit": 13840988.827586208, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Average Profit": 20654143.125, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Average Profit": 37024663.62962963, "Production Budget Bin": "$1M-$10M", "Rotten Tomatoes Rating Bin": "81-100"}, {"Average Profit": 11168889.11790393, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Average Profit": 32529317.311284047, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Average Profit": 36640084.60165975, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Average Profit": 49506279.571428575, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Average Profit": 93010923.90476191, "Production Budget Bin": "$10M-$50M", "Rotten Tomatoes Rating Bin": "81-100"}, {"Average Profit": 11584648.806451613, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Average Profit": 59680849.09090909, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Average Profit": 104106140.86734694, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Average Profit": 121416300.37894736, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Average Profit": 226983168.4814815, "Production Budget Bin": "$50M-$100M", "Rotten Tomatoes Rating Bin": "81-100"}, {"Average Profit": 132877326, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "0-20"}, {"Average Profit": 148619038.95833334, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "21-40"}, {"Average Profit": 297717419.34615386, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "41-60"}, {"Average Profit": 289246367.34615386, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "61-80"}, {"Average Profit": 515989525.483871, "Production Budget Bin": ">$100M", "Rotten Tomatoes Rating Bin": "81-100"}], "metadata": {"Average Profit": {"type": "number", "semanticType": "Number"}, "Production Budget Bin": {"type": "string", "semanticType": "Range", "levels": ["<$1M", "$1M-$10M", "$10M-$50M", "$50M-$100M", ">$100M"]}, "Rotten Tomatoes Rating Bin": {"type": "string", "semanticType": "Range", "levels": ["0-20", "21-40", "41-60", "61-80", "81-100"]}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating', 'Worldwide Gross']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna()) &\n (df_filtered['Worldwide Gross'].notna())\n ]\n \n # Calculate profit\n df_filtered['Profit'] = df_filtered['Worldwide Gross'] - df_filtered['Production Budget']\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Calculate average profit in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n )['Profit'].mean().reset_index(name='Average Profit')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n", "source": ["movies"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 15442818.0, 17031573.0, 33619971.0, ..., nan, nan, 46260220.0, nan\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 5000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, 3.0, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.4, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 212985.0, 237477.0, 417703.0, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[GOAL]\n\nDo higher production budgets correlate with better ratings?", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"The user wants to analyze the correlation between production budgets and movie ratings to understand if higher budgets lead to better ratings.\",\n \"display_instruction\": \"Show correlation between **Production Budget** and **ratings**\",\n \"recommendation\": \"Create a scatter plot visualization to show the relationship between Production Budget and ratings. Since there are two rating systems (Rotten Tomatoes and IMDB), we'll analyze both and include them as separate dimensions in the output data.\",\n \"output_fields\": [\"Title\", \"Production Budget\", \"Rotten Tomatoes Rating\", \"IMDB Rating\"],\n \"chart_type\": \"point\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values in key fields\n transformed_df = df_movies[['Title', 'Production Budget', 'Rotten Tomatoes Rating', 'IMDB Rating']].copy()\n \n # Remove rows where Production Budget is missing\n transformed_df = transformed_df[transformed_df['Production Budget'].notna()]\n \n # Keep rows where at least one rating is available\n transformed_df = transformed_df[\n (transformed_df['Rotten Tomatoes Rating'].notna()) | \n (transformed_df['IMDB Rating'].notna())\n ]\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n IMDB Rating Production Budget Rotten Tomatoes Rating Title\n0 6.1 8000000 NaN The Land Girls\n1 6.9 300000 NaN First Love, Last Rites\n2 6.8 250000 NaN I Married a Strange Person\n3 NaN 300000 13.0 Let's Talk About Sex\n4 3.4 1000000 62.0 Slam\n5 7.7 6000 NaN Following\n6 3.8 1600000 NaN Foolish\n7 5.8 40000000 25.0 Pirates\n8 7.0 6000000 86.0 Duel in the Sun\n9 7.0 1000000 81.0 Tom Jones\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"bin rt rating and budget into bins to show number of movies in each range\",\n \"chart_type\": \"Scatter Plot\",\n \"chart_encodings\": {\n \"x\": \"Production Budget\",\n \"y\": \"Rotten Tomatoes Rating\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Bin the Production Budget and Rotten Tomatoes Rating into categorical ranges, then count the number of movies that fall into each combination of budget and rating bins to create a heatmap-style aggregation.\",\n \"display_instruction\": \"Show **number of movies** in each **Production Budget** and **Rotten Tomatoes Rating** bin\",\n \"output_fields\": [\"Production Budget Bin\", \"Rotten Tomatoes Rating Bin\", \"Number of Movies\"],\n \"chart_encodings\": {\n \"x\": \"Production Budget Bin\",\n \"y\": \"Rotten Tomatoes Rating Bin\",\n \"color\": \"Number of Movies\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n },\n \"reason\": \"The user wants to bin both Production Budget and Rotten Tomatoes Rating into ranges and count movies in each combination. This requires creating categorical bins for both dimensions and aggregating counts. A heatmap visualization (using color encoding for count) would be more appropriate than a scatter plot for showing binned data.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna())\n ]\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Count movies in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n ).size().reset_index(name='Number of Movies')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n Number of Movies Production Budget Bin Rotten Tomatoes Rating Bin\n0 6 <$1M 0-20\n1 9 <$1M 21-40\n2 12 <$1M 41-60\n3 19 <$1M 61-80\n4 54 <$1M 81-100\n5 61 $1M-$10M 0-20\n6 72 $1M-$10M 21-40\n7 58 $1M-$10M 41-60\n8 104 $1M-$10M 61-80\n9 219 $1M-$10M 81-100\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show profit relation to budget ratings bin\",\n \"chart_type\": \"Heatmap\",\n \"chart_encodings\": {\n \"x\": \"Rotten Tomatoes Rating Bin\",\n \"y\": \"Production Budget Bin\",\n \"color\": \"Number of Movies\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Calculate profit (Worldwide Gross minus Production Budget) for movies, then bin the Production Budget and Rotten Tomatoes Rating into categorical ranges, and compute the average profit for movies in each combination of budget and rating bins.\",\n \"display_instruction\": \"Show **average profit** in each **Production Budget** and **Rotten Tomatoes Rating** bin\",\n \"output_fields\": [\"Production Budget Bin\", \"Rotten Tomatoes Rating Bin\", \"Average Profit\"],\n \"chart_encodings\": {\n \"x\": \"Rotten Tomatoes Rating Bin\",\n \"y\": \"Production Budget Bin\",\n \"color\": \"Average Profit\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n },\n \"reason\": \"The user wants to analyze the relationship between profit and the budget/rating bins. This requires calculating profit (Worldwide Gross - Production Budget) and then aggregating it by the budget and rating bins. The chart encodings are swapped to match the user's preference (x=Rating, y=Budget).\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating', 'Worldwide Gross']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna()) &\n (df_filtered['Worldwide Gross'].notna())\n ]\n \n # Calculate profit\n df_filtered['Profit'] = df_filtered['Worldwide Gross'] - df_filtered['Production Budget']\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Calculate average profit in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n )['Profit'].mean().reset_index(name='Average Profit')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-37", "resultTableId": "table-54", "chart": {"id": "chart-1760744581372", "chartType": "Heatmap", "encodingMap": {"x": {"fieldID": "concept-Rotten Tomatoes Rating Bin-1760744520448", "sortBy": "[\"0-20\",\"21-40\",\"41-60\",\"61-80\",\"81-100\"]"}, "y": {"fieldID": "concept-Production Budget Bin-1760744338462", "sortBy": "[\"<$1M\",\"$1M-$10M\",\"$10M-$50M\",\"$50M-$100M\",\">$100M\"]"}, "color": {"fieldID": "concept-Number of Movies-1760744520448"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-37", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show profit relation to budget ratings bin", "displayContent": "Show **average profit** in each **Production Budget** and **Rotten Tomatoes Rating** bin"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "This code analyzes the relationship between movie **production budgets**, **critical ratings**, and **profitability**:\n\n- Filters the dataset to include only movies with complete data for **Production Budget**, **Rotten Tomatoes Rating**, and **Worldwide Gross**\n- Calculates **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Creates **Production Budget Bins** to categorize movies into five budget ranges: **<$1M**, **$1M-$10M**, **$10M-$50M**, **$50M-$100M**, and **>$100M**\n- Creates **Rotten Tomatoes Rating Bins** to categorize movies into five rating ranges: **0-20**, **21-40**, **41-60**, **61-80**, and **81-100**\n- Groups movies by their **budget bin** and **rating bin** combinations\n- Calculates the **Average Profit** for each budget-rating combination to reveal profitability patterns across different production scales and critical reception levels", "concepts": [{"explanation": "The net financial return of a movie, calculated as: \\[ \\text{Profit} = \\text{Worldwide\\_Gross} - \\text{Production\\_Budget} \\] This represents the total revenue minus the initial investment, indicating whether a movie was financially successful.", "field": "Profit"}, {"explanation": "This analysis uses a **two-dimensional binning approach** to examine how movie profitability varies across production budget levels and critical reception scores. The model segments movies into categorical bins based on **Production Budget** (five budget tiers from under $1M to over $100M) and **Rotten Tomatoes Rating** (five quality tiers from 0-100), then calculates **Average Profit** within each budget-rating combination. This binning strategy helps identify optimal investment strategies by revealing which budget-quality combinations yield the highest returns. Alternative modeling approaches could include: **multiple linear regression** to model profit as a continuous function of budget and rating, **polynomial regression** to capture non-linear relationships, **interaction effect models** to test whether budget impact varies by rating level, or **quantile regression** to analyze profitability patterns at different profit percentiles rather than just averages.", "field": "Statistical Analysis"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (movies)\n\n## fields\n\t*Title -- type: object, values: Silent Movie, 9, Rapa Nui, ..., A Night at the Roxbury, Fighting Tommy Riley, Gridiron Gang, Journey from the Fall\n\t*US Gross -- type: float64, values: 0.0, 401.0, 673.0, ..., 403706375.0, 441226247.0, 533345358.0, 760167650.0\n\t*Worldwide Gross -- type: float64, values: 0.0, 401.0, 423.0, ..., 937499905.0, 976457891.0, 1133027325.0, 1842879955.0\n\t*US DVD Sales -- type: float64, values: 13180936.0, 33619971.0, 140689412.0, ..., nan, nan, 46260220.0, 83571732.0\n\t*Production Budget -- type: float64, values: 218.0, 1100.0, 23000.0, ..., 237000000.0, 250000000.0, 258000000.0, 300000000.0\n\t*Release Date -- type: object, values: Apr 01 1965, Apr 01 1975, Apr 01 1986, ..., Sep 30 1983, Sep 30 1994, Sep 30 2005, Sep 30 2006\n\t*MPAA Rating -- type: object, values: G, NC-17, Not Rated, Open, PG, PG-13, R\n\t*Running Time min -- type: float64, values: nan, nan, nan, ..., nan, nan, nan, nan\n\t*Distributor -- type: object, values: 20th Century Fox, 3D Entertainment, 8X Entertainment, ..., Women Make Movies, Yari Film Group Releasing, Yash Raj Films, Zeitgeist\n\t*Source -- type: object, values: Based on Book/Short Story, Based on Comic/Graphic Novel, Based on Factual Book/Article, ..., Original Screenplay, Remake, Spin-Off, Traditional/Legend/Fairytale\n\t*Major Genre -- type: object, values: Action, Adventure, Black Comedy, ..., Musical, Romantic Comedy, Thriller/Suspense, Western\n\t*Creative Type -- type: object, values: Contemporary Fiction, Dramatization, Factual, ..., Kids Fiction, Multiple Creative Types, Science Fiction, Super Hero\n\t*Director -- type: object, values: Abel Ferrara, Adam McKay, Adam Shankman, ..., Yimou Zhang, Zach Braff, Zack Snyder, Zak Penn\n\t*Rotten Tomatoes Rating -- type: float64, values: 1.0, 2.0, nan, ..., nan, nan, nan, nan\n\t*IMDB Rating -- type: float64, values: 1.5, 2.0, 2.5, ..., nan, nan, nan, nan\n\t*IMDB Votes -- type: float64, values: 18.0, 25.0, 26.0, ..., 237477.0, 417703.0, nan, nan\n\n## sample\n Title US Gross Worldwide Gross US DVD Sales Production Budget Release Date MPAA Rating Running Time min Distributor Source Major Genre Creative Type Director Rotten Tomatoes Rating IMDB Rating IMDB Votes\n0 The Land Girls 146083 146083 None 8000000 Jun 12 1998 R None Gramercy None None None None NaN 6.1 1071.0\n1 First Love, Last Rites 10876 10876 None 300000 Aug 07 1998 R None Strand None Drama None None NaN 6.9 207.0\n2 I Married a Strange Person 203134 203134 None 250000 Aug 28 1998 None None Lionsgate None Comedy None None NaN 6.8 865.0\n3 Let's Talk About Sex 373615 373615 None 300000 Sep 11 1998 None None Fine Line None Comedy None None 13.0 NaN NaN\n4 Slam 1009819 1087521 None 1000000 Oct 09 1998 R None Trimark Original Screenplay Drama Contemporary Fiction None 62.0 3.4 165.0\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_movies):\n # Select relevant columns and filter out rows with missing values\n df_filtered = df_movies[['Production Budget', 'Rotten Tomatoes Rating', 'Worldwide Gross']].copy()\n df_filtered = df_filtered[\n (df_filtered['Production Budget'].notna()) & \n (df_filtered['Rotten Tomatoes Rating'].notna()) &\n (df_filtered['Worldwide Gross'].notna())\n ]\n \n # Calculate profit\n df_filtered['Profit'] = df_filtered['Worldwide Gross'] - df_filtered['Production Budget']\n \n # Create budget bins (in millions for readability)\n budget_bins = [0, 1000000, 10000000, 50000000, 100000000, float('inf')]\n budget_labels = ['<$1M', '$1M-$10M', '$10M-$50M', '$50M-$100M', '>$100M']\n df_filtered['Production Budget Bin'] = pd.cut(\n df_filtered['Production Budget'], \n bins=budget_bins, \n labels=budget_labels,\n include_lowest=True\n )\n \n # Create rating bins\n rating_bins = [0, 20, 40, 60, 80, 100]\n rating_labels = ['0-20', '21-40', '41-60', '61-80', '81-100']\n df_filtered['Rotten Tomatoes Rating Bin'] = pd.cut(\n df_filtered['Rotten Tomatoes Rating'], \n bins=rating_bins, \n labels=rating_labels,\n include_lowest=True\n )\n \n # Calculate average profit in each bin combination\n transformed_df = df_filtered.groupby(\n ['Production Budget Bin', 'Rotten Tomatoes Rating Bin'], \n observed=True\n )['Profit'].mean().reset_index(name='Average Profit')\n \n # Convert categorical to string for better display\n transformed_df['Production Budget Bin'] = transformed_df['Production Budget Bin'].astype(str)\n transformed_df['Rotten Tomatoes Rating Bin'] = transformed_df['Rotten Tomatoes Rating Bin'].astype(str)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\nThis code analyzes the relationship between movie **production budgets**, **critical ratings**, and **profitability**:\n\n- Filters the dataset to include only movies with complete data for **Production Budget**, **Rotten Tomatoes Rating**, and **Worldwide Gross**\n- Calculates **Profit** for each movie by subtracting **Production Budget** from **Worldwide Gross**\n- Creates **Production Budget Bins** to categorize movies into five budget ranges: **<$1M**, **$1M-$10M**, **$10M-$50M**, **$50M-$100M**, and **>$100M**\n- Creates **Rotten Tomatoes Rating Bins** to categorize movies into five rating ranges: **0-20**, **21-40**, **41-60**, **61-80**, and **81-100**\n- Groups movies by their **budget bin** and **rating bin** combinations\n- Calculates the **Average Profit** for each budget-rating combination to reveal profitability patterns across different production scales and critical reception levels\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"Profit\",\n \"explanation\": \"The net financial return of a movie, calculated as: \\\\[ \\\\text{Profit} = \\\\text{Worldwide\\\\_Gross} - \\\\text{Production\\\\_Budget} \\\\] This represents the total revenue minus the initial investment, indicating whether a movie was financially successful.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"This analysis uses a **two-dimensional binning approach** to examine how movie profitability varies across production budget levels and critical reception scores. The model segments movies into categorical bins based on **Production Budget** (five budget tiers from under $1M to over $100M) and **Rotten Tomatoes Rating** (five quality tiers from 0-100), then calculates **Average Profit** within each budget-rating combination. This binning strategy helps identify optimal investment strategies by revealing which budget-quality combinations yield the highest returns. Alternative modeling approaches could include: **multiple linear regression** to model profit as a continuous function of budget and rating, **polynomial regression** to capture non-linear relationships, **interaction effect models** to test whether budget impact varies by rating level, or **quantile regression** to analyze profitability patterns at different profit percentiles rather than just averages.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}], "charts": [{"id": "chart-1760744573683", "chartType": "Heatmap", "encodingMap": {"x": {"fieldID": "concept-Rotten Tomatoes Rating Bin-1760744520448", "sortBy": "[\"0-20\",\"21-40\",\"41-60\",\"61-80\",\"81-100\"]"}, "y": {"fieldID": "concept-Production Budget Bin-1760744338462", "sortBy": "[\"<$1M\",\"$1M-$10M\",\"$10M-$50M\",\"$50M-$100M\",\">$100M\"]"}, "color": {"fieldID": "concept-Average Profit-1760744582466"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-54", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760744520082", "chartType": "Heatmap", "encodingMap": {"x": {"fieldID": "concept-Rotten Tomatoes Rating Bin-1760744520448", "sortBy": "[\"0-20\",\"21-40\",\"41-60\",\"61-80\",\"81-100\"]"}, "y": {"fieldID": "concept-Production Budget Bin-1760744338462", "sortBy": "[\"<$1M\",\"$1M-$10M\",\"$10M-$50M\",\"$50M-$100M\",\">$100M\"]"}, "color": {"fieldID": "concept-Number of Movies-1760744520448"}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-37", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760744464684", "chartType": "Scatter Plot", "encodingMap": {"x": {"fieldID": "original--movies--Production Budget"}, "y": {"fieldID": "original--movies--Rotten Tomatoes Rating"}, "color": {"channel": "color", "bin": false}, "size": {"channel": "size", "bin": false}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-456490", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760743804092", "chartType": "Bar Chart", "encodingMap": {"x": {"fieldID": "original--movies--Director"}, "y": {"fieldID": "concept-Genre_Profit-1760743809438"}, "color": {"fieldID": "original--movies--Major Genre"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-89", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760743768741", "chartType": "Bar Chart", "encodingMap": {"x": {"fieldID": "original--movies--Director"}, "y": {"fieldID": "concept-Profit-1760742653681"}, "color": {"fieldID": "original--movies--Title"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-770727", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760743347871", "chartType": "Bar Chart", "encodingMap": {"x": {"fieldID": "original--movies--Title"}, "y": {"fieldID": "concept-Profit-1760742653681"}, "color": {"fieldID": "original--movies--Major Genre"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-77", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760743154847", "chartType": "Bar Chart", "encodingMap": {"x": {"fieldID": "original--movies--Title"}, "y": {"fieldID": "concept-Profit-1760742653681"}, "color": {}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-78", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760742454293", "chartType": "Scatter Plot", "encodingMap": {"x": {"fieldID": "original--movies--Production Budget"}, "y": {"fieldID": "original--movies--Worldwide Gross"}, "color": {"fieldID": "original--movies--Title"}, "size": {"channel": "size", "bin": false}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "movies", "saved": false, "source": "user", "unread": false}], "conceptShelfItems": [{"id": "concept-Average Profit-1760744582466", "name": "Average Profit", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-Number of Movies-1760744520448", "name": "Number of Movies", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-Rotten Tomatoes Rating Bin-1760744520448", "name": "Rotten Tomatoes Rating Bin", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-Production Budget Bin-1760744338462", "name": "Production Budget Bin", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-Genre_Profit-1760743809438", "name": "Genre_Profit", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-Total_Director_Profit-1760743773495", "name": "Total_Director_Profit", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-Profit-1760742653681", "name": "Profit", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "original--movies--Title", "name": "Title", "type": "string", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--US Gross", "name": "US Gross", "type": "integer", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Worldwide Gross", "name": "Worldwide Gross", "type": "number", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--US DVD Sales", "name": "US DVD Sales", "type": "integer", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Production Budget", "name": "Production Budget", "type": "integer", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Release Date", "name": "Release Date", "type": "date", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--MPAA Rating", "name": "MPAA Rating", "type": "string", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Running Time min", "name": "Running Time min", "type": "integer", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Distributor", "name": "Distributor", "type": "string", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Source", "name": "Source", "type": "string", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Major Genre", "name": "Major Genre", "type": "string", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Creative Type", "name": "Creative Type", "type": "string", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Director", "name": "Director", "type": "string", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--Rotten Tomatoes Rating", "name": "Rotten Tomatoes Rating", "type": "integer", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--IMDB Rating", "name": "IMDB Rating", "type": "date", "source": "original", "description": "", "tableRef": "movies"}, {"id": "original--movies--IMDB Votes", "name": "IMDB Votes", "type": "integer", "source": "original", "description": "", "tableRef": "movies"}], "messages": [{"timestamp": 1760831191070, "type": "success", "component": "data formulator", "value": "Successfully loaded Movies"}], "displayedMessageIdx": 0, "viewMode": "report", "chartSynthesisInProgress": [], "config": {"formulateTimeoutSeconds": 60, "maxRepairAttempts": 1, "defaultChartWidth": 300, "defaultChartHeight": 300}, "dataCleanBlocks": [], "cleanInProgress": false, "generatedReports": [{"id": "report-1760831318093-4967", "content": "# Bigger Budgets Win with Great Reviews\n\nLow-budget films struggle regardless of reviews, averaging just $1.3M profit even with poor ratings. The real story emerges with blockbusters: films budgeted over $100M earn an average of $516M profit when they achieve 81-100% on Rotten Tomatoes—a staggering return that dwarfs all other categories.\n\n[IMAGE(chart-1760744573683)]\n\nMid-budget films ($10M-$50M) show steady but modest profits across all rating tiers, rarely exceeding $30M in average returns. The data reveals a clear pattern: critical acclaim matters most when paired with substantial production investment.\n\n**In summary**, the film industry's most profitable strategy combines massive budgets with quality execution—blockbusters that earn top critic scores generate extraordinary returns, while smaller productions face profit ceilings regardless of critical reception.", "style": "short note", "selectedChartIds": ["chart-1760744573683"], "createdAt": 1760831325401, "status": "completed", "title": "Bigger Budgets Win with Great Reviews", "anchorChartId": "chart-1760744573683"}, {"id": "report-1760831241705-9562", "content": "# Top Directors Dominate with Action & Adventure Films\n\nSteven Spielberg leads all directors with over $7 billion in total profit, driven primarily by action ($2.3B) and drama ($2.2B) films. James Cameron follows at $5.1B, focusing almost exclusively on action blockbusters.\n\n[IMAGE(chart-1760743804092)]\n\nAdventure films emerge as the most profitable genre across multiple directors—Chris Columbus, George Lucas, and Peter Jackson each generated $3B+ primarily from adventure franchises. Meanwhile, directors like Michael Bay and Gore Verbinski found success mixing action with adventure content.\n\n**In summary**, the most profitable directors concentrate on action and adventure genres, with Spielberg's genre diversity being the exception among top earners. This suggests blockbuster franchises in these genres offer the most reliable path to commercial success.", "style": "short note", "selectedChartIds": ["chart-1760743804092"], "createdAt": 1760831249446, "status": "completed", "title": "Top Directors Dominate with Action & Adventure Films", "anchorChartId": "chart-1760743804092"}, {"id": "report-1760831215537-1231", "content": "# Movie Magic: When Big Budgets Pay Off (and When They Don't)\n\nEver wonder if spending more money guarantees box office gold? The data tells a fascinating story about Hollywood's biggest gambles.\n\n[IMAGE(chart-1760742454293)]\n\nLooking at the relationship between production budgets and worldwide gross, there's a clear trend: **bigger budgets *can* lead to bigger returns**, but it's far from guaranteed. The sweet spot appears to be around $200-250M, where blockbusters like *Avatar* ($2.77B worldwide) dominate. However, the chart reveals something crucial—**most films cluster in the lower-left corner**, suggesting that moderate budgets between $25-100M are the industry standard, though they rarely break the billion-dollar barrier.\n\n[IMAGE(chart-1760743347871)]\n\nWhen we examine the **top performers by genre**, the winners become crystal clear. *Avatar* leads the pack with an astounding $2.53B profit, followed by adventure franchises like *Jurassic Park* and *The Lord of the Rings*. Action and adventure films dominate profitability, while genres like comedy, horror, and romantic comedies show more modest—but still impressive—returns in the $300-450M range. Musicals like *The Sound of Music* prove timeless appeal still pays dividends.\n\n**In summary**, while throwing money at a film doesn't guarantee success, the blockbuster strategy works when executed well—particularly for action and adventure franchises. The real question: *Are mid-budget films becoming an endangered species in modern Hollywood?*", "style": "social post", "selectedChartIds": ["chart-1760743347871", "chart-1760742454293"], "createdAt": 1760831228624, "status": "completed", "title": "Movie Magic: When Big Budgets Pay Off (and When They Don't)", "anchorChartId": "chart-1760743347871"}], "currentReport": {"id": "report-1760750575650-2619", "content": "# Hollywood's Billion-Dollar Hitmakers\n\n*Avatar* stands alone—earning over $2.5B in profit, dwarfing all competition. Action and Adventure films dominate the most profitable titles, with franchises like *Jurassic Park*, *The Dark Knight*, and *Lord of the Rings* proving blockbuster formulas work.\n\n\"Chart\"\n\nSteven Spielberg leads all directors with $7.2B in total profit across his career, showcasing remarkable consistency with hits spanning decades—from *Jurassic Park* to *E.T.* His nearest competitors trail by billions, underlining his unmatched commercial impact.\n\n\"Chart\"\n\n**In summary**, mega-budget Action and Adventure films generate extraordinary returns when they succeed, and a handful of elite directors—led by Spielberg—have mastered the formula for sustained box office dominance.", "style": "short note", "selectedChartIds": ["chart-1760743347871", "chart-1760743768741"], "chartImages": {}, "createdAt": 1760750584189, "title": "Report - 10/17/2025"}, "activeChallenges": [], "_persist": {"version": -1, "rehydrated": true}, "draftNodes": [], "focusedId": {"type": "report", "reportId": "report-1760831318093-4967"}} \ No newline at end of file diff --git a/public/df_stock_prices_live.json b/public/df_stock_prices_live.json index dd659cfd..dadb8a2c 100644 --- a/public/df_stock_prices_live.json +++ b/public/df_stock_prices_live.json @@ -1 +1 @@ -{"tables":[{"id":"history","displayId":"stock-hist","names":["symbol","date","open","high","low","close","volume","fetched_at"],"metadata":{"symbol":{"type":"string","semanticType":"String"},"date":{"type":"date","semanticType":"Date"},"open":{"type":"number","semanticType":"Number"},"high":{"type":"number","semanticType":"Number"},"low":{"type":"number","semanticType":"Number"},"close":{"type":"number","semanticType":"Number"},"volume":{"type":"integer","semanticType":"Number"},"fetched_at":{"type":"date","semanticType":"DateTime"}},"rows":[{"symbol":"AAPL","date":"2025-07-31","open":208.05,"high":209.4,"low":206.72,"close":207.13,"volume":80698400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-01","open":210.43,"high":213.13,"low":201.08,"close":201.95,"volume":104434500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-04","open":204.08,"high":207.44,"low":201.26,"close":202.92,"volume":75109300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-05","open":202.97,"high":204.91,"low":201.74,"close":202.49,"volume":44155100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-06","open":205.2,"high":214.93,"low":205.16,"close":212.8,"volume":108483100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-07","open":218.42,"high":220.39,"low":216.12,"close":219.57,"volume":90224800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-08","open":220.37,"high":230.51,"low":218.79,"close":228.87,"volume":113854000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-11","open":227.7,"high":229.34,"low":224.54,"close":226.96,"volume":61806100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-12","open":227.79,"high":230.58,"low":226.85,"close":229.43,"volume":55626200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-13","open":230.85,"high":234.77,"low":230.21,"close":233.1,"volume":69878500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-14","open":233.83,"high":234.89,"low":230.63,"close":232.55,"volume":51916300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-15","open":233.77,"high":234.05,"low":229.12,"close":231.37,"volume":56038700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-18","open":231.48,"high":232.89,"low":229.89,"close":230.67,"volume":37476200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-19","open":231.06,"high":232.64,"low":229.13,"close":230.34,"volume":39402600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-20","open":229.76,"high":230.25,"low":225.55,"close":225.79,"volume":42263900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-21","open":226.05,"high":226.3,"low":223.56,"close":224.68,"volume":30621200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-22","open":225.95,"high":228.87,"low":225.19,"close":227.54,"volume":42477800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-25","open":226.26,"high":229.08,"low":226.01,"close":226.94,"volume":30983100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-26","open":226.65,"high":229.27,"low":224.47,"close":229.09,"volume":54575100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-27","open":228.39,"high":230.68,"low":228.04,"close":230.27,"volume":31259500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-28","open":230.6,"high":233.18,"low":229.12,"close":232.33,"volume":38074700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-08-29","open":232.28,"high":233.15,"low":231.15,"close":231.92,"volume":39418400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-02","open":229.03,"high":230.63,"low":226.75,"close":229.5,"volume":44075600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-03","open":236.98,"high":238.62,"low":234.13,"close":238.24,"volume":66427800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-04","open":238.22,"high":239.67,"low":236.51,"close":239.55,"volume":47549400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-05","open":239.77,"high":241.09,"low":238.26,"close":239.46,"volume":54870400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-08","open":239.07,"high":239.92,"low":236.11,"close":237.65,"volume":48999500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-09","open":236.77,"high":238.55,"low":233.13,"close":234.12,"volume":66313900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-10","open":231.97,"high":232.19,"low":225.73,"close":226.57,"volume":83440800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-11","open":226.66,"high":230.23,"low":226.43,"close":229.81,"volume":50208600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-12","open":229,"high":234.28,"low":228.8,"close":233.84,"volume":55824200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-15","open":236.77,"high":237.96,"low":234.8,"close":236.47,"volume":42699500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-16","open":236.95,"high":240.99,"low":236.09,"close":237.92,"volume":63421100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-17","open":238.74,"high":239.87,"low":237.5,"close":238.76,"volume":46508000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-18","open":239.74,"high":240.97,"low":236.42,"close":237.65,"volume":44249600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-19","open":241,"high":246.06,"low":239.98,"close":245.26,"volume":163741300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-22","open":248.06,"high":256.39,"low":247.88,"close":255.83,"volume":105517400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-23","open":255.63,"high":257.09,"low":253.33,"close":254.18,"volume":60275200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-24","open":254.97,"high":255.49,"low":250.8,"close":252.07,"volume":42303700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-25","open":252.96,"high":256.92,"low":251.47,"close":256.62,"volume":55202100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-26","open":253.85,"high":257.35,"low":253.53,"close":255.21,"volume":46076300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-29","open":254.31,"high":254.75,"low":252.76,"close":254.18,"volume":40127700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-09-30","open":254.61,"high":255.67,"low":252.86,"close":254.38,"volume":37704300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-01","open":254.79,"high":258.54,"low":254.68,"close":255.2,"volume":48713900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-02","open":256.33,"high":257.93,"low":253.9,"close":256.88,"volume":42630200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-03","open":254.42,"high":258.99,"low":253.7,"close":257.77,"volume":49155600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-06","open":257.74,"high":258.82,"low":254.8,"close":256.44,"volume":44664100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-07","open":256.56,"high":257.15,"low":255.18,"close":256.23,"volume":31955800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-08","open":256.27,"high":258.27,"low":255.86,"close":257.81,"volume":36496900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-09","open":257.56,"high":257.75,"low":252.89,"close":253.79,"volume":38322000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-10","open":254.69,"high":256.13,"low":243.76,"close":245.03,"volume":61999100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-13","open":249.14,"high":249.45,"low":245.32,"close":247.42,"volume":38142900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-14","open":246.36,"high":248.61,"low":244.46,"close":247.53,"volume":35478000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-15","open":249.25,"high":251.58,"low":247.23,"close":249.1,"volume":33893600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-16","open":248.01,"high":248.8,"low":244.89,"close":247.21,"volume":39777000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-17","open":247.78,"high":253.13,"low":247.03,"close":252.05,"volume":49147000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-20","open":255.64,"high":264.12,"low":255.38,"close":261.99,"volume":90483000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-21","open":261.63,"high":265.03,"low":261.58,"close":262.52,"volume":46695900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-22","open":262.4,"high":262.6,"low":255.18,"close":258.2,"volume":45015300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-23","open":259.69,"high":260.37,"low":257.76,"close":259.33,"volume":32754900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-24","open":260.94,"high":263.87,"low":258.93,"close":262.57,"volume":38253700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-27","open":264.62,"high":268.86,"low":264.39,"close":268.55,"volume":44888200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-28","open":268.73,"high":269.63,"low":267.89,"close":268.74,"volume":41534800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-29","open":269.02,"high":271.15,"low":266.85,"close":269.44,"volume":51086700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-30","open":271.73,"high":273.87,"low":268.22,"close":271.14,"volume":69886500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-10-31","open":276.72,"high":277.05,"low":268.9,"close":270.11,"volume":86167100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-03","open":270.16,"high":270.59,"low":265.99,"close":268.79,"volume":50194600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-04","open":268.07,"high":271.23,"low":267.36,"close":269.78,"volume":49274800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-05","open":268.35,"high":271.44,"low":266.67,"close":269.88,"volume":43683100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-06","open":267.63,"high":273.14,"low":267.63,"close":269.51,"volume":51204000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-07","open":269.54,"high":272.03,"low":266.51,"close":268.21,"volume":48227400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-10","open":268.96,"high":273.73,"low":267.46,"close":269.43,"volume":41312400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-11","open":269.81,"high":275.91,"low":269.8,"close":275.25,"volume":46208300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-12","open":275,"high":275.73,"low":271.7,"close":273.47,"volume":48398000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-13","open":274.11,"high":276.7,"low":272.09,"close":272.95,"volume":49602800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-14","open":271.05,"high":275.96,"low":269.6,"close":272.41,"volume":47431300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-17","open":268.82,"high":270.49,"low":265.73,"close":267.46,"volume":45018300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-18","open":269.99,"high":270.71,"low":265.32,"close":267.44,"volume":45677300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-19","open":265.53,"high":272.21,"low":265.5,"close":268.56,"volume":40424500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-20","open":270.83,"high":275.43,"low":265.92,"close":266.25,"volume":45823600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-21","open":265.95,"high":273.33,"low":265.67,"close":271.49,"volume":59030800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-24","open":270.9,"high":277,"low":270.9,"close":275.92,"volume":65585800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-25","open":275.27,"high":280.38,"low":275.25,"close":276.97,"volume":46914200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-26","open":276.96,"high":279.53,"low":276.63,"close":277.55,"volume":33431400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-11-28","open":277.26,"high":279,"low":275.99,"close":278.85,"volume":20135600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-01","open":278.01,"high":283.42,"low":276.14,"close":283.1,"volume":46587700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-02","open":283,"high":287.4,"low":282.63,"close":286.19,"volume":53669500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-03","open":286.2,"high":288.62,"low":283.3,"close":284.15,"volume":43538700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-04","open":284.1,"high":284.73,"low":278.59,"close":280.7,"volume":43989100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-05","open":280.54,"high":281.14,"low":278.05,"close":278.78,"volume":47265800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-08","open":278.13,"high":279.67,"low":276.15,"close":277.89,"volume":38211800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-09","open":278.16,"high":280.03,"low":276.92,"close":277.18,"volume":32193300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-10","open":277.75,"high":279.75,"low":276.44,"close":278.78,"volume":33038300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-11","open":279.1,"high":279.59,"low":273.81,"close":278.03,"volume":33248000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-12","open":277.9,"high":279.22,"low":276.82,"close":278.28,"volume":39532900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-15","open":280.15,"high":280.15,"low":272.84,"close":274.11,"volume":50409100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-16","open":272.82,"high":275.5,"low":271.79,"close":274.61,"volume":37648600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-17","open":275.01,"high":276.16,"low":271.64,"close":271.84,"volume":50138700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-18","open":273.61,"high":273.63,"low":266.95,"close":272.19,"volume":51630700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-19","open":272.15,"high":274.6,"low":269.9,"close":273.67,"volume":144632000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-22","open":272.86,"high":273.88,"low":270.51,"close":270.97,"volume":36571800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-23","open":270.84,"high":272.5,"low":269.56,"close":272.36,"volume":29642000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-24","open":272.34,"high":275.43,"low":272.2,"close":273.81,"volume":17910600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-26","open":274.16,"high":275.37,"low":272.86,"close":273.4,"volume":21521800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-29","open":272.69,"high":274.36,"low":272.35,"close":273.76,"volume":23715200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-30","open":272.81,"high":274.08,"low":272.28,"close":273.08,"volume":22139600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2025-12-31","open":273.06,"high":273.68,"low":271.75,"close":271.86,"volume":27293600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-02","open":272.26,"high":277.84,"low":269,"close":271.01,"volume":37838100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-05","open":270.64,"high":271.51,"low":266.14,"close":267.26,"volume":45647200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-06","open":267,"high":267.55,"low":262.12,"close":262.36,"volume":52352100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-07","open":263.2,"high":263.68,"low":259.81,"close":260.33,"volume":48309800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-08","open":257.02,"high":259.29,"low":255.7,"close":259.04,"volume":50419300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-09","open":259.08,"high":260.21,"low":256.22,"close":259.37,"volume":39997000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-12","open":259.16,"high":261.3,"low":256.8,"close":260.25,"volume":45263800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-13","open":258.72,"high":261.81,"low":258.39,"close":261.05,"volume":45730800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-14","open":259.49,"high":261.82,"low":256.71,"close":259.96,"volume":40019400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-15","open":260.65,"high":261.04,"low":257.05,"close":258.21,"volume":39388600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-16","open":257.9,"high":258.9,"low":254.93,"close":255.53,"volume":72142800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-20","open":252.73,"high":254.79,"low":243.42,"close":246.7,"volume":80267500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-21","open":248.7,"high":251.56,"low":245.18,"close":247.65,"volume":54641700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-22","open":249.2,"high":251,"low":248.15,"close":248.35,"volume":39708300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-23","open":247.32,"high":249.41,"low":244.68,"close":248.04,"volume":41689000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AAPL","date":"2026-01-26","open":251.48,"high":256.56,"low":249.8,"close":255.41,"volume":55857900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-07-31","open":235.77,"high":236.53,"low":231.4,"close":234.11,"volume":104357300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-01","open":217.21,"high":220.44,"low":212.8,"close":214.75,"volume":122258800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-04","open":217.4,"high":217.44,"low":211.42,"close":211.65,"volume":77890100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-05","open":213.05,"high":216.3,"low":212.87,"close":213.75,"volume":51505100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-06","open":214.7,"high":222.65,"low":213.74,"close":222.31,"volume":54823000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-07","open":221,"high":226.22,"low":220.82,"close":223.13,"volume":40603500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-08","open":223.14,"high":223.8,"low":221.88,"close":222.69,"volume":32970500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-11","open":221.78,"high":223.05,"low":220.4,"close":221.3,"volume":31646200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-12","open":222.23,"high":223.5,"low":219.05,"close":221.47,"volume":37185800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-13","open":222,"high":224.92,"low":222,"close":224.56,"volume":36508300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-14","open":227.4,"high":233.11,"low":227.02,"close":230.98,"volume":61545800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-15","open":232.58,"high":234.08,"low":229.81,"close":231.03,"volume":39649200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-18","open":230.23,"high":231.91,"low":228.33,"close":231.49,"volume":25248900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-19","open":230.09,"high":230.53,"low":227.12,"close":228.01,"volume":29891000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-20","open":227.12,"high":227.27,"low":220.92,"close":223.81,"volume":36604300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-21","open":222.65,"high":222.78,"low":220.5,"close":221.95,"volume":32140500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-22","open":222.79,"high":229.14,"low":220.82,"close":228.84,"volume":37315300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-25","open":227.35,"high":229.6,"low":227.31,"close":227.94,"volume":22633700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-26","open":227.11,"high":229,"low":226.02,"close":228.71,"volume":26105400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-27","open":228.57,"high":229.87,"low":227.81,"close":229.12,"volume":21254500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-28","open":229.01,"high":232.71,"low":228.02,"close":231.6,"volume":33679600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-08-29","open":231.32,"high":231.81,"low":228.16,"close":229,"volume":26199200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-02","open":223.52,"high":226.17,"low":221.83,"close":225.34,"volume":38843900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-03","open":225.21,"high":227.17,"low":224.36,"close":225.99,"volume":29223100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-04","open":231.19,"high":235.77,"low":230.78,"close":235.68,"volume":59391800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-05","open":235.19,"high":236,"low":231.93,"close":232.33,"volume":36721800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-08","open":234.94,"high":237.6,"low":233.75,"close":235.84,"volume":33947100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-09","open":236.36,"high":238.85,"low":235.08,"close":238.24,"volume":27033800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-10","open":237.52,"high":237.68,"low":229.1,"close":230.33,"volume":60907700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-11","open":231.49,"high":231.53,"low":229.34,"close":229.95,"volume":37485600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-12","open":230.35,"high":230.79,"low":226.29,"close":228.15,"volume":38496200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-15","open":230.63,"high":233.73,"low":230.32,"close":231.43,"volume":33243300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-16","open":232.94,"high":235.9,"low":232.23,"close":234.05,"volume":38203900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-17","open":233.77,"high":234.3,"low":228.71,"close":231.62,"volume":42815200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-18","open":232.5,"high":233.48,"low":228.79,"close":231.23,"volume":37931700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-19","open":232.37,"high":234.16,"low":229.7,"close":231.48,"volume":97943200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-22","open":230.56,"high":230.57,"low":227.51,"close":227.63,"volume":45914500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-23","open":227.83,"high":227.86,"low":220.07,"close":220.71,"volume":70956200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-24","open":224.15,"high":224.56,"low":219.45,"close":220.21,"volume":49509000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-25","open":220.06,"high":220.67,"low":216.47,"close":218.15,"volume":52226300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-26","open":219.08,"high":221.05,"low":218.02,"close":219.78,"volume":41650100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-29","open":220.08,"high":222.6,"low":219.3,"close":222.17,"volume":44259200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-09-30","open":222.03,"high":222.24,"low":217.89,"close":219.57,"volume":48396400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-01","open":217.36,"high":222.15,"low":216.61,"close":220.63,"volume":43933800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-02","open":221.01,"high":222.81,"low":218.95,"close":222.41,"volume":41258600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-03","open":223.44,"high":224.2,"low":219.34,"close":219.51,"volume":43639000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-06","open":221,"high":221.73,"low":216.03,"close":220.9,"volume":43690900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-07","open":220.88,"high":222.89,"low":220.17,"close":221.78,"volume":31194700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-08","open":222.92,"high":226.73,"low":221.19,"close":225.22,"volume":46686000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-09","open":225,"high":228.21,"low":221.75,"close":227.74,"volume":46412100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-10","open":226.21,"high":228.25,"low":216,"close":216.37,"volume":72367500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-13","open":217.7,"high":220.68,"low":217.04,"close":220.07,"volume":37809700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-14","open":215.56,"high":219.32,"low":212.6,"close":216.39,"volume":45665600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-15","open":216.62,"high":217.71,"low":212.66,"close":215.57,"volume":45909500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-16","open":215.67,"high":218.59,"low":212.81,"close":214.47,"volume":42414600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-17","open":214.56,"high":214.8,"low":211.03,"close":213.04,"volume":45986900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-20","open":213.88,"high":216.69,"low":213.59,"close":216.48,"volume":38882800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-21","open":218.43,"high":223.32,"low":217.99,"close":222.03,"volume":50494600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-22","open":219.3,"high":220.01,"low":216.52,"close":217.95,"volume":44308500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-23","open":219,"high":221.3,"low":218.18,"close":221.09,"volume":31540000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-24","open":221.97,"high":225.4,"low":221.9,"close":224.21,"volume":38685100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-27","open":227.66,"high":228.4,"low":225.54,"close":226.97,"volume":38267000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-28","open":228.22,"high":231.49,"low":226.21,"close":229.25,"volume":47100000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-29","open":231.67,"high":232.82,"low":227.76,"close":230.3,"volume":52036200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-30","open":227.06,"high":228.44,"low":222.75,"close":222.86,"volume":102252900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-10-31","open":250.1,"high":250.5,"low":243.98,"close":244.22,"volume":166340800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-03","open":255.36,"high":258.6,"low":252.9,"close":254,"volume":95997800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-04","open":250.38,"high":257.01,"low":248.66,"close":249.32,"volume":51546300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-05","open":249.03,"high":251,"low":246.16,"close":250.2,"volume":40610700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-06","open":249.16,"high":250.38,"low":242.17,"close":243.04,"volume":46004200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-07","open":242.9,"high":244.9,"low":238.49,"close":244.41,"volume":46374300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-10","open":248.34,"high":251.75,"low":245.59,"close":248.4,"volume":36476500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-11","open":248.41,"high":249.75,"low":247.23,"close":249.1,"volume":23564100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-12","open":250.24,"high":250.37,"low":243.75,"close":244.2,"volume":31190100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-13","open":243.05,"high":243.75,"low":236.5,"close":237.58,"volume":41401700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-14","open":235.06,"high":238.73,"low":232.89,"close":234.69,"volume":38956700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-17","open":233.25,"high":234.6,"low":229.19,"close":232.87,"volume":59919000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-18","open":228.1,"high":230.2,"low":222.42,"close":222.55,"volume":60608400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-19","open":223.74,"high":223.74,"low":218.52,"close":222.69,"volume":58335600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-20","open":227.05,"high":227.41,"low":216.74,"close":217.14,"volume":50309000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-21","open":216.35,"high":222.21,"low":215.18,"close":220.69,"volume":68490500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-24","open":222.56,"high":227.33,"low":222.27,"close":226.28,"volume":54318400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-25","open":226.38,"high":230.52,"low":223.8,"close":229.67,"volume":39379300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-26","open":230.74,"high":231.75,"low":228.77,"close":229.16,"volume":38497900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-11-28","open":231.24,"high":233.29,"low":230.22,"close":233.22,"volume":20292300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-01","open":233.22,"high":235.8,"low":232.25,"close":233.88,"volume":42904000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-02","open":235.01,"high":238.97,"low":233.55,"close":234.42,"volume":45785400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-03","open":233.35,"high":233.38,"low":230.61,"close":232.38,"volume":35495100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-04","open":232.77,"high":233.5,"low":226.8,"close":229.11,"volume":45683200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-05","open":230.32,"high":231.24,"low":228.55,"close":229.53,"volume":33117400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-08","open":229.59,"high":230.83,"low":226.27,"close":226.89,"volume":35019200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-09","open":226.84,"high":228.57,"low":225.11,"close":227.92,"volume":25841700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-10","open":228.81,"high":232.42,"low":228.46,"close":231.78,"volume":38790700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-11","open":230.71,"high":232.11,"low":228.69,"close":230.28,"volume":28249600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-12","open":229.87,"high":230.08,"low":225.12,"close":226.19,"volume":35639100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-15","open":227.93,"high":227.93,"low":221.5,"close":222.54,"volume":47286100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-16","open":223.04,"high":223.66,"low":221.13,"close":222.56,"volume":39298900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-17","open":224.66,"high":225.19,"low":220.99,"close":221.27,"volume":44034400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-18","open":225.71,"high":229.23,"low":224.41,"close":226.76,"volume":50272400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-19","open":226.76,"high":229.13,"low":225.58,"close":227.35,"volume":85544400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-22","open":228.61,"high":229.48,"low":226.71,"close":228.43,"volume":32261300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-23","open":229.06,"high":232.45,"low":228.73,"close":232.14,"volume":29230200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-24","open":232.13,"high":232.95,"low":231.33,"close":232.38,"volume":11420500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-26","open":232.04,"high":232.99,"low":231.18,"close":232.52,"volume":15994700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-29","open":231.94,"high":232.6,"low":230.77,"close":232.07,"volume":19797900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-30","open":231.21,"high":232.77,"low":230.2,"close":232.53,"volume":21910500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2025-12-31","open":232.91,"high":232.99,"low":230.12,"close":230.82,"volume":24383700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-02","open":231.34,"high":235.46,"low":224.7,"close":226.5,"volume":51456200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-05","open":228.84,"high":234,"low":227.18,"close":233.06,"volume":49733300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-06","open":232.1,"high":243.18,"low":232.07,"close":240.93,"volume":53764700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-07","open":239.61,"high":245.29,"low":239.52,"close":241.56,"volume":42236500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-08","open":243.06,"high":246.41,"low":241.88,"close":246.29,"volume":39509800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-09","open":244.57,"high":247.86,"low":242.24,"close":247.38,"volume":34560000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-12","open":246.73,"high":248.94,"low":245.96,"close":246.47,"volume":35867800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-13","open":246.53,"high":247.66,"low":240.25,"close":242.6,"volume":38371800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-14","open":241.15,"high":241.28,"low":236.22,"close":236.65,"volume":41410600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-15","open":239.31,"high":240.65,"low":236.63,"close":238.18,"volume":43003600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-16","open":239.09,"high":239.57,"low":236.41,"close":239.12,"volume":45888300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-20","open":233.76,"high":235.09,"low":229.34,"close":231,"volume":47737900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-21","open":231.09,"high":232.3,"low":226.88,"close":231.31,"volume":47276100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-22","open":234.05,"high":235.72,"low":230.9,"close":234.34,"volume":31913300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-23","open":234.96,"high":240.45,"low":234.57,"close":239.16,"volume":33778500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"AMZN","date":"2026-01-26","open":239.98,"high":240.95,"low":237.54,"close":238.42,"volume":32764700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-07-31","open":195.41,"high":195.69,"low":190.79,"close":191.6,"volume":51329200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-01","open":188.74,"high":190.53,"low":187.53,"close":188.84,"volume":34832200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-04","open":190,"high":194.97,"low":189.83,"close":194.74,"volume":31547400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-05","open":194.41,"high":197.55,"low":193.59,"close":194.37,"volume":31602300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-06","open":194.2,"high":196.33,"low":193.37,"close":195.79,"volume":21562900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-07","open":196.76,"high":197.23,"low":194.03,"close":196.22,"volume":26321800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-08","open":196.91,"high":202.3,"low":196.87,"close":201.11,"volume":39161800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-11","open":200.63,"high":201.17,"low":198.76,"close":200.69,"volume":25832400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-12","open":201.06,"high":204.18,"low":200.28,"close":203.03,"volume":30397900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-13","open":203.81,"high":204.21,"low":197.2,"close":201.65,"volume":28342900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-14","open":201.19,"high":204.12,"low":200.92,"close":202.63,"volume":25230400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-15","open":203.53,"high":206.12,"low":200.97,"close":203.58,"volume":34931400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-18","open":203.88,"high":204.95,"low":202.18,"close":203.19,"volume":18526600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-19","open":202.72,"high":203.13,"low":199.65,"close":201.26,"volume":24240200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-20","open":200.42,"high":200.97,"low":196.3,"close":199.01,"volume":28955500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-21","open":199.44,"high":202.17,"low":199.12,"close":199.44,"volume":19774600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-22","open":202.42,"high":208.22,"low":200.99,"close":205.77,"volume":42827000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-25","open":206.11,"high":210.19,"low":204.96,"close":208.17,"volume":29928900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-26","open":207.19,"high":207.53,"low":205.38,"close":206.82,"volume":28464100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-27","open":205.38,"high":208.59,"low":205.33,"close":207.16,"volume":23022900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-28","open":206.93,"high":211.89,"low":206.58,"close":211.31,"volume":32339300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-08-29","open":210.18,"high":214.32,"low":209.87,"close":212.58,"volume":39728400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-02","open":208.12,"high":211.35,"low":205.88,"close":211.02,"volume":47523000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-03","open":225.86,"high":230.95,"low":224.44,"close":230.3,"volume":103336100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-04","open":229.29,"high":232.01,"low":225.76,"close":231.94,"volume":51684200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-05","open":231.84,"high":235.4,"low":231.54,"close":234.64,"volume":46588900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-08","open":235.32,"high":237.97,"low":233.52,"close":233.89,"volume":32474700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-09","open":234.02,"high":240.31,"low":233.08,"close":239.47,"volume":38061000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-10","open":238.74,"high":241.5,"low":237.69,"close":239.01,"volume":35141100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-11","open":239.72,"high":242.09,"low":236.1,"close":240.21,"volume":30599300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-12","open":240.21,"high":241.92,"low":237.84,"close":240.64,"volume":26771600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-15","open":244.5,"high":252.25,"low":244.5,"close":251.45,"volume":58383800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-16","open":251.92,"high":252.87,"low":249.31,"close":251,"volume":34109700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-17","open":251.06,"high":251.44,"low":246.12,"close":249.37,"volume":34108000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-18","open":251.52,"high":253.82,"low":249.64,"close":251.87,"volume":31239500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-19","open":253.08,"high":255.83,"low":251.65,"close":254.55,"volume":55571400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-22","open":254.26,"high":255.61,"low":250.14,"close":252.36,"volume":32290500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-23","open":252.87,"high":254.19,"low":250.32,"close":251.5,"volume":26628000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-24","open":251.5,"high":252.19,"low":246.28,"close":246.98,"volume":28201000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-25","open":244.24,"high":246.33,"low":240.58,"close":245.63,"volume":31020400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-26","open":246.91,"high":249.26,"low":245.81,"close":246.38,"volume":18503200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-29","open":247.69,"high":250.99,"low":242.61,"close":243.89,"volume":32505800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-09-30","open":242.65,"high":243.13,"low":239.09,"close":242.94,"volume":34724300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-01","open":240.59,"high":246.14,"low":238.45,"close":244.74,"volume":31658200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-02","open":244.99,"high":246.65,"low":242.14,"close":245.53,"volume":25483300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-03","open":244.33,"high":246.14,"low":241.5,"close":245.19,"volume":30249600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-06","open":244.62,"high":251.16,"low":244.42,"close":250.27,"volume":28894700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-07","open":248.11,"high":250.28,"low":245.36,"close":245.6,"volume":23181300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-08","open":244.8,"high":245.85,"low":243.66,"close":244.46,"volume":21307100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-09","open":244.31,"high":244.6,"low":238.99,"close":241.37,"volume":27892100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-10","open":241.27,"high":243.93,"low":235.69,"close":236.42,"volume":33180300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-13","open":240.05,"high":244.34,"low":239.55,"close":243.99,"volume":24995000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-14","open":241.07,"high":246.96,"low":240.35,"close":245.29,"volume":22111600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-15","open":247.09,"high":251.95,"low":245.83,"close":250.87,"volume":27007700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-16","open":251.61,"high":256.79,"low":249.94,"close":251.3,"volume":27997200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-17","open":250.6,"high":254.05,"low":247.65,"close":253.13,"volume":29671600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-20","open":254.52,"high":257.16,"low":254.06,"close":256.38,"volume":22350200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-21","open":254.57,"high":254.71,"low":243.99,"close":250.3,"volume":47312100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-22","open":254.2,"high":256.19,"low":249.13,"close":251.53,"volume":35029400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-23","open":252.81,"high":254.87,"low":251.69,"close":252.91,"volume":19901400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-24","open":256.41,"high":261.51,"low":255.15,"close":259.75,"volume":28655100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-27","open":264.65,"high":269.96,"low":264.11,"close":269.09,"volume":35235200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-28","open":269.51,"high":270.55,"low":266.33,"close":267.3,"volume":29738600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-29","open":267.57,"high":275.16,"low":267.5,"close":274.39,"volume":43580300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-30","open":291.4,"high":291.4,"low":279.88,"close":281.3,"volume":74876000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-10-31","open":283.02,"high":285.81,"low":276.85,"close":281.01,"volume":39267900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-03","open":282,"high":285.34,"low":279.62,"close":283.53,"volume":29786000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-04","open":276.57,"high":281.09,"low":276.08,"close":277.36,"volume":30078400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-05","open":278.69,"high":286.23,"low":277.16,"close":284.12,"volume":31010300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-06","open":285.14,"high":288.16,"low":280.96,"close":284.56,"volume":37173600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-07","open":283.02,"high":283.59,"low":275.01,"close":278.65,"volume":34479600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-10","open":284.23,"high":290.61,"low":282.68,"close":289.91,"volume":29557300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-11","open":287.56,"high":291.73,"low":287.13,"close":291.12,"volume":19842100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-12","open":291.49,"high":291.82,"low":283.5,"close":286.52,"volume":24829900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-13","open":282.16,"high":282.66,"low":277.06,"close":278.39,"volume":29494000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-14","open":271.23,"high":278.38,"low":270.52,"close":276.23,"volume":31647200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-17","open":285.59,"high":293.76,"low":283.38,"close":284.83,"volume":52670200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-18","open":287.73,"high":288.61,"low":278.02,"close":284.09,"volume":49158700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-19","open":286.97,"high":303.61,"low":286.44,"close":292.62,"volume":68198900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-20","open":304.34,"high":306.22,"low":288.48,"close":289.26,"volume":62025200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-21","open":296.23,"high":303.72,"low":293.66,"close":299.46,"volume":74137700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-24","open":310.93,"high":319.27,"low":309.4,"close":318.37,"volume":85165100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-25","open":326,"high":328.62,"low":317.44,"close":323.23,"volume":88632100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-26","open":320.47,"high":324.29,"low":316.58,"close":319.74,"volume":51373400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-11-28","open":323.16,"high":326.64,"low":316.58,"close":319.97,"volume":26018600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-01","open":317.49,"high":319.64,"low":313.68,"close":314.68,"volume":41183000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-02","open":316.53,"high":318.17,"low":313.7,"close":315.6,"volume":35854700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-03","open":315.68,"high":321.37,"low":313.89,"close":319.42,"volume":41838300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-04","open":322.02,"high":322.15,"low":314.49,"close":317.41,"volume":31240900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-05","open":319.28,"high":322.95,"low":318.96,"close":321.06,"volume":28851700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-08","open":320.05,"high":320.44,"low":311.22,"close":313.72,"volume":33909400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-09","open":312.37,"high":317.99,"low":311.9,"close":317.08,"volume":30194000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-10","open":315.83,"high":321.31,"low":314.68,"close":320.21,"volume":33428900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-11","open":320.08,"high":321.12,"low":308.6,"close":312.43,"volume":42353700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-12","open":313.7,"high":314.87,"low":305.56,"close":309.29,"volume":35940200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-15","open":311.32,"high":311.42,"low":304.88,"close":308.22,"volume":29151900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-16","open":304.95,"high":310.77,"low":302.59,"close":306.57,"volume":30585000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-17","open":308.01,"high":308.09,"low":296.12,"close":296.72,"volume":43930400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-18","open":301.72,"high":303.96,"low":299.23,"close":302.46,"volume":33518000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-19","open":301.73,"high":307.25,"low":300.97,"close":307.16,"volume":59943200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-22","open":309.88,"high":310.13,"low":305.3,"close":309.78,"volume":26429900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-23","open":309.63,"high":314.94,"low":309.32,"close":314.35,"volume":25478700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-24","open":314.77,"high":315.08,"low":311.92,"close":314.09,"volume":10097400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-26","open":314.48,"high":315.09,"low":312.28,"close":313.51,"volume":10899000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-29","open":311.37,"high":314.02,"low":310.62,"close":313.56,"volume":19621800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-30","open":312.5,"high":316.95,"low":312.46,"close":313.85,"volume":17380900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2025-12-31","open":312.85,"high":314.58,"low":311.44,"close":313,"volume":16377700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-02","open":316.9,"high":322.5,"low":310.33,"close":315.15,"volume":32009400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-05","open":317.66,"high":319.02,"low":314.63,"close":316.54,"volume":30195600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-06","open":316.4,"high":320.94,"low":311.78,"close":314.34,"volume":31212100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-07","open":314.36,"high":326.15,"low":314.19,"close":321.98,"volume":35104400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-08","open":328.97,"high":330.32,"low":321.5,"close":325.44,"volume":31896100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-09","open":327.09,"high":330.83,"low":325.8,"close":328.57,"volume":26214200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-12","open":325.8,"high":334.04,"low":325,"close":331.86,"volume":33923900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-13","open":334.95,"high":340.49,"low":333.62,"close":335.97,"volume":33517600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-14","open":335.06,"high":336.52,"low":330.48,"close":335.84,"volume":28525600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-15","open":337.65,"high":337.69,"low":330.74,"close":332.78,"volume":28442400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-16","open":334.41,"high":334.65,"low":327.7,"close":330,"volume":40341600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-20","open":320.87,"high":327.73,"low":320.43,"close":322,"volume":35361000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-21","open":320.92,"high":332.48,"low":319.35,"close":328.38,"volume":35386600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-22","open":334.45,"high":335.15,"low":328.75,"close":330.54,"volume":26253600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-23","open":332.49,"high":333.69,"low":327.45,"close":327.93,"volume":27280000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"GOOGL","date":"2026-01-26","open":327.81,"high":335.84,"low":327,"close":333.26,"volume":26011100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-07-31","open":774.05,"high":783.58,"low":764.37,"close":772.29,"volume":38831100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-01","open":759.6,"high":764.86,"low":744.2,"close":748.89,"volume":19028700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-04","open":758.87,"high":775.69,"low":757.28,"close":775.21,"volume":15801700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-05","open":775.29,"high":781.96,"low":761.86,"close":762.32,"volume":11640300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-06","open":768.85,"high":772.49,"low":759.33,"close":770.84,"volume":9733900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-07","open":772.34,"high":773.85,"low":758.42,"close":760.7,"volume":9019700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-08","open":761.61,"high":768.75,"low":757.45,"close":768.15,"volume":7320800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-11","open":768.93,"high":772.31,"low":763.53,"close":764.73,"volume":7612000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-12","open":771.85,"high":792.49,"low":771.28,"close":788.82,"volume":14563100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-13","open":789.97,"high":794.28,"low":777.07,"close":778.92,"volume":8811800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-14","open":776.72,"high":786.64,"low":771.36,"close":780.97,"volume":8116200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-15","open":782.98,"high":795.06,"low":779.66,"close":784.06,"volume":13375400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-18","open":773.94,"high":774.65,"low":755.43,"close":766.23,"volume":16513700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-19","open":765.98,"high":766.03,"low":748.24,"close":750.36,"volume":12286700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-20","open":746.46,"high":749.08,"low":729.91,"close":746.61,"volume":11898200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-21","open":743.6,"high":744.39,"low":732.02,"close":738,"volume":8876300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-22","open":738.13,"high":755.77,"low":733.3,"close":753.67,"volume":10612700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-25","open":753.7,"high":757.75,"low":749.01,"close":752.18,"volume":6861200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-26","open":749.68,"high":753.75,"low":746.83,"close":752.98,"volume":7601800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-27","open":751.18,"high":753.03,"low":741.73,"close":746.27,"volume":8315400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-28","open":742.89,"high":751.93,"low":739.7,"close":749.99,"volume":7468000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-08-29","open":744.17,"high":746.03,"low":734.26,"close":737.6,"volume":9070500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-02","open":724.96,"high":734.9,"low":720.66,"close":734.02,"volume":9350900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-03","open":734.9,"high":739.15,"low":732.9,"close":735.95,"volume":7699300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-04","open":747.46,"high":760.03,"low":744.71,"close":747.54,"volume":11439100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-05","open":751.5,"high":756.82,"low":743.92,"close":751.33,"volume":9663400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-08","open":754.87,"high":765.37,"low":750.9,"close":751.18,"volume":13087800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-09","open":756.36,"high":765.16,"low":752.31,"close":764.56,"volume":10999000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-10","open":763.99,"high":764.56,"low":749.88,"close":750.86,"volume":12478300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-11","open":753.53,"high":755.97,"low":747.26,"close":749.78,"volume":7923300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-12","open":747.62,"high":756.44,"low":742.65,"close":754.47,"volume":8248600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-15","open":756.34,"high":772.92,"low":750.87,"close":763.56,"volume":10533800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-16","open":765.86,"high":780.2,"low":763.96,"close":777.84,"volume":11782500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-17","open":778.83,"high":782.12,"low":765.17,"close":774.57,"volume":9400900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-18","open":779.59,"high":787.61,"low":772.21,"close":779.09,"volume":10955000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-19","open":785.25,"high":789.62,"low":768.04,"close":777.22,"volume":23696800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-22","open":781.21,"high":785.09,"low":763.85,"close":764.54,"volume":11706900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-23","open":768.62,"high":769.97,"low":750.46,"close":754.78,"volume":10872600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-24","open":756.88,"high":760.49,"low":751.92,"close":760.04,"volume":8828200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-25","open":752.84,"high":756.15,"low":743.94,"close":748.3,"volume":10591100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-26","open":749.39,"high":751.32,"low":736.75,"close":743.14,"volume":9696300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-29","open":748.11,"high":750.17,"low":738.55,"close":742.79,"volume":9246800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-09-30","open":741.65,"high":742.36,"low":725.71,"close":733.78,"volume":16226800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-01","open":720.9,"high":721.26,"low":709.62,"close":716.76,"volume":20419600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-02","open":721.99,"high":727.18,"low":717.55,"close":726.46,"volume":11415300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-03","open":729.04,"high":730.4,"low":709.6,"close":709.98,"volume":16154300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-06","open":704.62,"high":716.3,"low":689.95,"close":715.08,"volume":21654700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-07","open":717.14,"high":717.91,"low":705.17,"close":712.5,"volume":12062900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-08","open":712.87,"high":719.06,"low":707.23,"close":717.26,"volume":10790600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-09","open":717.69,"high":732.91,"low":711.86,"close":732.91,"volume":12717200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-10","open":730.32,"high":734.67,"low":703.94,"close":704.73,"volume":16980100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-13","open":712.43,"high":719.35,"low":707.06,"close":715.12,"volume":9251800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-14","open":707.2,"high":714.97,"low":698.76,"close":708.07,"volume":8829800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-15","open":716.48,"high":723.31,"low":708.93,"close":716.97,"volume":10246800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-16","open":716.97,"high":724.9,"low":703.31,"close":711.49,"volume":9017000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-17","open":706.5,"high":717.95,"low":705.54,"close":716.34,"volume":12232400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-20","open":720.6,"high":733.17,"low":719.59,"close":731.57,"volume":8900200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-21","open":735.42,"high":737.9,"low":728.16,"close":732.67,"volume":7647300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-22","open":733.23,"high":740,"low":723.44,"close":732.81,"volume":8734500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-23","open":734.1,"high":741.8,"low":732.5,"close":733.4,"volume":9856000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-24","open":736.19,"high":740.61,"low":730.55,"close":737.76,"volume":9151300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-27","open":749.12,"high":755.13,"low":747.4,"close":750.21,"volume":11321100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-28","open":752.02,"high":757.78,"low":744.91,"close":750.83,"volume":12193800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-29","open":754.13,"high":758.54,"low":741.9,"close":751.06,"volume":26818600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-30","open":668.6,"high":680.41,"low":649.64,"close":665.93,"volume":88440100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-10-31","open":673.96,"high":674.34,"low":645.04,"close":647.82,"volume":56953200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-03","open":655.47,"high":658.79,"low":635.66,"close":637.19,"volume":33003600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-04","open":627.53,"high":641.22,"low":625.5,"close":626.81,"volume":27356600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-05","open":631.79,"high":641.71,"low":626.03,"close":635.43,"volume":20219900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-06","open":635.33,"high":635.48,"low":617.5,"close":618.44,"volume":23628800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-07","open":615.99,"high":621.62,"low":600.71,"close":621.2,"volume":29946800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-10","open":630.58,"high":634.48,"low":617.61,"close":631.25,"volume":19245000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-11","open":627.49,"high":629.05,"low":618.89,"close":626.57,"volume":13302200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-12","open":627.62,"high":628.48,"low":607.27,"close":608.51,"volume":24493300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-13","open":612.57,"high":617.15,"low":602.51,"close":609.39,"volume":20973800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-14","open":601.3,"high":613.18,"low":594.71,"close":608.96,"volume":20724100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-17","open":608.54,"high":611.19,"low":594.91,"close":601.52,"volume":16501300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-18","open":591.12,"high":603.17,"low":583.3,"close":597.2,"volume":25500600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-19","open":593.24,"high":594.84,"low":580.78,"close":589.84,"volume":24744700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-20","open":603.01,"high":606.23,"low":582.87,"close":588.67,"volume":20603000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-21","open":588.02,"high":597.63,"low":581.39,"close":593.77,"volume":21052600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-24","open":598.23,"high":616.2,"low":597.14,"close":612.55,"volume":23554900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-25","open":623.49,"high":636.53,"low":617.8,"close":635.7,"volume":25213000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-26","open":637.17,"high":637.84,"low":631.12,"close":633.09,"volume":15209500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-11-28","open":635.56,"high":647.52,"low":634.98,"close":647.42,"volume":11033200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-01","open":639.03,"high":644.79,"low":637.24,"close":640.35,"volume":13029900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-02","open":641.82,"high":647.34,"low":637.55,"close":646.57,"volume":11640900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-03","open":643.88,"high":648.32,"low":637.03,"close":639.08,"volume":11134300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-04","open":675.45,"high":675.55,"low":659.51,"close":660.99,"volume":29874600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-05","open":663.46,"high":674.14,"low":661.85,"close":672.87,"volume":21207900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-08","open":668.79,"high":676.16,"low":664.53,"close":666.26,"volume":13161000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-09","open":663.23,"high":663.94,"low":652.81,"close":656.42,"volume":12997100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-10","open":649.42,"high":653.98,"low":642.88,"close":649.6,"volume":16910900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-11","open":642.77,"high":654.75,"low":640.28,"close":652.18,"volume":13056700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-12","open":649.27,"high":710.42,"low":638.09,"close":643.71,"volume":14016900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-15","open":645.7,"high":653,"low":638.7,"close":647.51,"volume":15549100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-16","open":643.5,"high":662.54,"low":643.2,"close":657.15,"volume":14309100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-17","open":655.61,"high":661.23,"low":649.2,"close":649.5,"volume":15598500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-18","open":657.03,"high":670.56,"low":656.46,"close":664.45,"volume":20260300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-19","open":666.42,"high":671,"low":658.18,"close":658.77,"volume":49977100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-22","open":661.65,"high":673.58,"low":656.65,"close":661.5,"volume":15659400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-23","open":660.05,"high":666,"low":658.25,"close":664.94,"volume":8486800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-24","open":662.53,"high":668.18,"low":662.2,"close":667.55,"volume":5627500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-26","open":668.06,"high":668.95,"low":661.32,"close":663.29,"volume":7133800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-29","open":658.01,"high":660.25,"low":654.39,"close":658.69,"volume":8506500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-30","open":658.69,"high":672.22,"low":657.84,"close":665.95,"volume":9187500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2025-12-31","open":664.75,"high":665,"low":659.44,"close":660.09,"volume":7940400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-02","open":662.73,"high":664.39,"low":643.5,"close":650.41,"volume":13726500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-05","open":651.01,"high":664.54,"low":647.75,"close":658.79,"volume":12213700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-06","open":659.57,"high":665.52,"low":651.9,"close":660.62,"volume":11074400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-07","open":655.64,"high":659.15,"low":644.81,"close":648.69,"volume":12846300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-08","open":645.88,"high":647.1,"low":635.72,"close":646.06,"volume":11921700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-09","open":645.44,"high":654.95,"low":642.85,"close":653.06,"volume":11634900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-12","open":652.53,"high":653.97,"low":641.23,"close":641.97,"volume":14797200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-13","open":642.27,"high":642.27,"low":624.1,"close":631.09,"volume":18030400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-14","open":626.5,"high":628.45,"low":614.82,"close":615.52,"volume":15527900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-15","open":618.48,"high":624.17,"low":614.23,"close":620.8,"volume":13076100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-16","open":624.18,"high":629.08,"low":620.08,"close":620.25,"volume":17012500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-20","open":607.88,"high":611.4,"low":600,"close":604.12,"volume":15169600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-21","open":606.74,"high":618.27,"low":600.08,"close":612.96,"volume":14494700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-22","open":629.35,"high":660.57,"low":626.55,"close":647.63,"volume":21394700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-23","open":644.77,"high":666.49,"low":644.45,"close":658.76,"volume":22797700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"META","date":"2026-01-26","open":665.13,"high":675.28,"low":661.29,"close":672.36,"volume":16293000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-07-31","open":553.28,"high":553.5,"low":530.04,"close":531.63,"volume":51617300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-01","open":533.12,"high":533.92,"low":519.03,"close":522.27,"volume":28977600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-04","open":526.42,"high":536.36,"low":526.28,"close":533.76,"volume":25349000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-05","open":535.3,"high":535.42,"low":525.39,"close":525.9,"volume":19171600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-06","open":529.04,"high":529.84,"low":522.19,"close":523.1,"volume":21355700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-07","open":524.95,"high":526.24,"low":515.74,"close":519.01,"volume":16079100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-08","open":520.77,"high":522.82,"low":517.59,"close":520.21,"volume":15531000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-11","open":520.47,"high":525.74,"low":517.9,"close":519.94,"volume":20194400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-12","open":521.91,"high":529.12,"low":520.87,"close":527.38,"volume":18667000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-13","open":530.24,"high":530.83,"low":517.55,"close":518.75,"volume":19619200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-14","open":520.73,"high":524.11,"low":518.32,"close":520.65,"volume":20269100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-15","open":520.94,"high":524.26,"low":517.26,"close":518.35,"volume":25213300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-18","open":519.76,"high":520.99,"low":512.22,"close":515.29,"volume":23760600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-19","open":513.19,"high":513.35,"low":506.77,"close":507.98,"volume":21481000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-20","open":508.08,"high":509.21,"low":502.67,"close":503.95,"volume":27723000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-21","open":502.75,"high":506.68,"low":501.78,"close":503.3,"volume":18443300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-22","open":503.31,"high":509.78,"low":501.47,"close":506.28,"volume":24324200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-25","open":505.68,"high":507.24,"low":503.18,"close":503.32,"volume":21638600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-26","open":503.42,"high":504.04,"low":497.58,"close":501.1,"volume":30835700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-27","open":501.06,"high":506.34,"low":498.97,"close":505.79,"volume":17277900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-28","open":506.14,"high":510.14,"low":504.56,"close":508.69,"volume":18015600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-08-29","open":507.71,"high":508.65,"low":503.55,"close":505.74,"volume":20961600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-02","open":499.54,"high":505.05,"low":495.88,"close":504.18,"volume":18128000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-03","open":502.85,"high":506.84,"low":501.38,"close":504.41,"volume":16345100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-04","open":503.36,"high":507.2,"low":502.21,"close":507.02,"volume":15509500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-05","open":508.12,"high":511.01,"low":491.45,"close":494.08,"volume":31994800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-08","open":497.18,"high":500.26,"low":494.11,"close":497.27,"volume":16771000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-09","open":500.49,"high":501.31,"low":496.77,"close":497.48,"volume":14410500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-10","open":502.04,"high":502.29,"low":495.79,"close":499.44,"volume":21611800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-11","open":501.31,"high":502.23,"low":496.95,"close":500.07,"volume":18881600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-12","open":505.7,"high":511.59,"low":502.91,"close":508.95,"volume":23624900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-15","open":507.84,"high":514.51,"low":506.05,"close":514.4,"volume":17143800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-16","open":515.91,"high":516.26,"low":507.65,"close":508.09,"volume":19711900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-17","open":509.67,"high":510.33,"low":504.98,"close":509.07,"volume":15816600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-18","open":510.53,"high":512.11,"low":506.71,"close":507.5,"volume":18913700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-19","open":509.61,"high":518.33,"low":509.36,"close":516.96,"volume":52474100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-22","open":514.63,"high":516.77,"low":511.58,"close":513.49,"volume":20009300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-23","open":512.84,"high":513.63,"low":506.36,"close":508.28,"volume":19799600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-24","open":509.43,"high":511.52,"low":505.97,"close":509.2,"volume":13533700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-25","open":507.35,"high":509.06,"low":504.1,"close":506.08,"volume":15786500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-26","open":509.11,"high":512.98,"low":505.67,"close":510.5,"volume":16213100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-29","open":510.54,"high":515.88,"low":507.93,"close":513.64,"volume":17617800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-09-30","open":512.28,"high":517.19,"low":508.71,"close":516.98,"volume":19728200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-01","open":513.84,"high":519.54,"low":510.73,"close":518.74,"volume":22632300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-02","open":516.67,"high":520.63,"low":509.73,"close":514.78,"volume":21222900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-03","open":516.13,"high":519.52,"low":514.04,"close":516.38,"volume":15112300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-06","open":517.64,"high":530.04,"low":517.23,"close":527.58,"volume":21388600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-07","open":527.3,"high":528.81,"low":520.47,"close":523,"volume":14615200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-08","open":522.3,"high":525.97,"low":522.11,"close":523.87,"volume":13363400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-09","open":521.36,"high":523.35,"low":516.43,"close":521.42,"volume":18343600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-10","open":518.67,"high":522.6,"low":508.68,"close":510.01,"volume":24133800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-13","open":515.45,"high":515.45,"low":510.72,"close":513.09,"volume":14284200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-14","open":509.28,"high":514.32,"low":505.05,"close":512.61,"volume":14684300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-15","open":514,"high":516.22,"low":509.05,"close":512.47,"volume":14694700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-16","open":511.62,"high":515.88,"low":507.18,"close":510.65,"volume":15559600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-17","open":508.09,"high":514.52,"low":506.36,"close":512.62,"volume":19867800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-20","open":513.65,"high":517.73,"low":512.47,"close":515.82,"volume":14665600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-21","open":516.53,"high":517.72,"low":512.08,"close":516.69,"volume":15586200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-22","open":520.18,"high":524.25,"low":516.74,"close":519.57,"volume":18962700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-23","open":521.48,"high":522.97,"low":517.64,"close":519.59,"volume":14023500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-24","open":521.81,"high":524.37,"low":519.74,"close":522.63,"volume":15532400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-27","open":530.79,"high":533.58,"low":528.02,"close":530.53,"volume":18734700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-28","open":548.97,"high":552.69,"low":539.76,"close":541.06,"volume":29986700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-29","open":543.92,"high":545.25,"low":535.73,"close":540.54,"volume":36023000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-30","open":529.49,"high":533.97,"low":521.14,"close":524.78,"volume":41023100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-10-31","open":527.89,"high":528.33,"low":514.14,"close":516.84,"volume":34006400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-03","open":518.84,"high":523.98,"low":513.63,"close":516.06,"volume":22374700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-04","open":510.8,"high":514.59,"low":506.89,"close":513.37,"volume":20958700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-05","open":512.34,"high":513.87,"low":505.63,"close":506.21,"volume":23024300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-06","open":504.72,"high":504.76,"low":494.88,"close":496.17,"volume":27406500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-07","open":496.02,"high":498.45,"low":492.33,"close":495.89,"volume":24019800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-10","open":499.11,"high":505.9,"low":497.87,"close":505.05,"volume":26101500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-11","open":503.86,"high":508.65,"low":501.41,"close":507.73,"volume":17980000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-12","open":508.41,"high":510.71,"low":498.19,"close":510.19,"volume":26574900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-13","open":509.36,"high":512.54,"low":500.35,"close":502.35,"volume":25273100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-14","open":497.3,"high":510.64,"low":496.51,"close":509.23,"volume":28505700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-17","open":507.5,"high":511.16,"low":503.97,"close":506.54,"volume":19092800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-18","open":494.44,"high":502.04,"low":485.87,"close":492.87,"volume":33815100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-19","open":489.18,"high":494.26,"low":481.93,"close":486.21,"volume":23245300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-20","open":492.71,"high":493.57,"low":475.5,"close":478.43,"volume":26802500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-21","open":478.5,"high":478.92,"low":468.27,"close":472.12,"volume":31769200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-24","open":475,"high":476.9,"low":468.02,"close":474,"volume":34421000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-25","open":474.07,"high":479.15,"low":464.89,"close":476.99,"volume":28019800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-26","open":486.31,"high":488.31,"low":481.2,"close":485.5,"volume":25709100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-11-28","open":487.6,"high":492.63,"low":486.65,"close":492.01,"volume":14386700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-01","open":488.44,"high":489.86,"low":484.65,"close":486.74,"volume":23964000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-02","open":486.72,"high":493.5,"low":486.32,"close":490,"volume":19562700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-03","open":476.32,"high":484.24,"low":475.2,"close":477.73,"volume":34615100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-04","open":479.76,"high":481.32,"low":476.49,"close":480.84,"volume":22318200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-05","open":482.52,"high":483.4,"low":478.88,"close":483.16,"volume":22608700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-08","open":484.89,"high":492.3,"low":484.38,"close":491.02,"volume":21965900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-09","open":489.1,"high":492.12,"low":488.5,"close":492.02,"volume":14696100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-10","open":484.03,"high":484.25,"low":475.08,"close":478.56,"volume":35756200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-11","open":476.63,"high":486.03,"low":475.86,"close":483.47,"volume":24669200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-12","open":479.82,"high":482.45,"low":476.34,"close":478.53,"volume":21248100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-15","open":480.1,"high":480.72,"low":472.52,"close":474.82,"volume":23727700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-16","open":471.91,"high":477.89,"low":470.88,"close":476.39,"volume":20705600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-17","open":476.91,"high":480,"low":475,"close":476.12,"volume":24527200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-18","open":478.19,"high":489.6,"low":477.89,"close":483.98,"volume":28573500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-19","open":487.36,"high":487.85,"low":482.49,"close":485.92,"volume":70836100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-22","open":486.12,"high":488.73,"low":482.69,"close":484.92,"volume":16963000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-23","open":484.98,"high":487.83,"low":484.74,"close":486.85,"volume":14683600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-24","open":485.68,"high":489.16,"low":484.83,"close":488.02,"volume":5855900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-26","open":486.71,"high":488.12,"low":485.96,"close":487.71,"volume":8842200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-29","open":484.86,"high":488.35,"low":484.18,"close":487.1,"volume":10893400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-30","open":485.93,"high":489.68,"low":485.5,"close":487.48,"volume":13944500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2025-12-31","open":487.84,"high":488.14,"low":483.3,"close":483.62,"volume":15601600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-02","open":484.39,"high":484.66,"low":470.16,"close":472.94,"volume":25571600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-05","open":474.06,"high":476.07,"low":469.5,"close":472.85,"volume":25250300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-06","open":473.8,"high":478.74,"low":469.75,"close":478.51,"volume":23037700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-07","open":479.76,"high":489.7,"low":477.95,"close":483.47,"volume":25564200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-08","open":481.24,"high":482.66,"low":475.86,"close":478.11,"volume":18162600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-09","open":474.06,"high":479.82,"low":472.2,"close":479.28,"volume":18491000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-12","open":476.67,"high":480.99,"low":475.68,"close":477.18,"volume":23519900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-13","open":474.68,"high":475.78,"low":465.95,"close":470.67,"volume":28545800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-14","open":466.46,"high":468.2,"low":457.17,"close":459.38,"volume":28184300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-15","open":464.12,"high":464.25,"low":455.9,"close":456.66,"volume":23225800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-16","open":457.83,"high":463.19,"low":456.48,"close":459.86,"volume":34246700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-20","open":451.22,"high":456.8,"low":449.28,"close":454.52,"volume":26130000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-21","open":452.6,"high":452.69,"low":438.68,"close":444.11,"volume":37980500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-22","open":447.62,"high":452.84,"low":444.7,"close":451.14,"volume":25349400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-23","open":451.87,"high":471.1,"low":450.53,"close":465.95,"volume":38000200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"MSFT","date":"2026-01-26","open":465.31,"high":474.25,"low":462,"close":470.28,"volume":29247100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-07-31","open":182.88,"high":183.28,"low":175.91,"close":177.85,"volume":221685400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-01","open":174.07,"high":176.52,"low":170.87,"close":173.7,"volume":204529000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-04","open":175.14,"high":180.18,"low":174.5,"close":179.98,"volume":148174600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-05","open":179.6,"high":180.24,"low":175.88,"close":178.24,"volume":156407600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-06","open":176.31,"high":179.88,"low":176.23,"close":179.4,"volume":137192300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-07","open":181.55,"high":183.86,"low":178.78,"close":180.75,"volume":151878400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-08","open":181.53,"high":183.28,"low":180.38,"close":182.68,"volume":123396700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-11","open":182.03,"high":183.82,"low":180.23,"close":182.04,"volume":138323200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-12","open":182.94,"high":184.46,"low":179.44,"close":183.14,"volume":145485700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-13","open":182.6,"high":183.95,"low":179.33,"close":181.57,"volume":179871700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-14","open":179.73,"high":183,"low":179.44,"close":182,"volume":129554000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-15","open":181.86,"high":181.88,"low":178.02,"close":180.43,"volume":156602200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-18","open":180.58,"high":182.92,"low":180.57,"close":181.99,"volume":132008000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-19","open":182.41,"high":182.48,"low":175.47,"close":175.62,"volume":185229200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-20","open":175.15,"high":175.98,"low":168.78,"close":175.38,"volume":215142700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-21","open":174.83,"high":176.88,"low":173.79,"close":174.96,"volume":140040900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-22","open":172.59,"high":178.57,"low":171.18,"close":177.97,"volume":172789400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-25","open":178.33,"high":181.89,"low":176.55,"close":179.79,"volume":163012800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-26","open":180.04,"high":182.37,"low":178.79,"close":181.75,"volume":168688200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-27","open":181.96,"high":182.47,"low":179.08,"close":181.58,"volume":235518900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-28","open":180.8,"high":184.45,"low":176.39,"close":180.15,"volume":281787800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-08-29","open":178.09,"high":178.13,"low":173.13,"close":174.16,"volume":243257900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-02","open":169.98,"high":172.36,"low":167.2,"close":170.76,"volume":231164900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-03","open":171.04,"high":172.39,"low":168.86,"close":170.6,"volume":164424900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-04","open":170.55,"high":171.84,"low":169.39,"close":171.64,"volume":141670100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-05","open":168.01,"high":169.01,"low":164.05,"close":167,"volume":224441400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-08","open":167.53,"high":170.94,"low":167.33,"close":168.29,"volume":163769100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-09","open":169.07,"high":170.96,"low":166.72,"close":170.74,"volume":157548400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-10","open":176.62,"high":179.27,"low":175.45,"close":177.31,"volume":226852000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-11","open":179.67,"high":180.27,"low":176.47,"close":177.16,"volume":151159300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-12","open":177.76,"high":178.59,"low":176.44,"close":177.81,"volume":124911000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-15","open":175.66,"high":178.84,"low":174.5,"close":177.74,"volume":147061600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-16","open":176.99,"high":177.49,"low":174.37,"close":174.87,"volume":140737800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-17","open":172.63,"high":173.19,"low":168.4,"close":170.28,"volume":211843800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-18","open":173.97,"high":177.09,"low":172.95,"close":176.23,"volume":191763300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-19","open":175.76,"high":178.07,"low":175.17,"close":176.66,"volume":237182100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-22","open":175.29,"high":184.54,"low":174.7,"close":183.6,"volume":269637000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-23","open":181.96,"high":182.41,"low":176.2,"close":178.42,"volume":192559600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-24","open":179.76,"high":179.77,"low":175.39,"close":176.96,"volume":143564100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-25","open":174.47,"high":180.25,"low":173.12,"close":177.68,"volume":191586700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-26","open":178.16,"high":179.76,"low":174.92,"close":178.18,"volume":148573700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-29","open":180.42,"high":183.99,"low":180.31,"close":181.84,"volume":193063500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-09-30","open":182.07,"high":187.34,"low":181.47,"close":186.57,"volume":236981000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-01","open":185.23,"high":188.13,"low":183.89,"close":187.23,"volume":173844900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-02","open":189.59,"high":191.04,"low":188.05,"close":188.88,"volume":136805800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-03","open":189.18,"high":190.35,"low":185.37,"close":187.61,"volume":137596900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-06","open":185.49,"high":187.22,"low":183.32,"close":185.53,"volume":157678100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-07","open":186.22,"high":189.05,"low":183.99,"close":185.03,"volume":140088000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-08","open":186.56,"high":189.59,"low":186.53,"close":189.1,"volume":130168900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-09","open":192.22,"high":195.29,"low":191.05,"close":192.56,"volume":182997200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-10","open":193.5,"high":195.61,"low":182.04,"close":183.15,"volume":268774400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-13","open":187.96,"high":190.1,"low":185.95,"close":188.31,"volume":153482800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-14","open":184.76,"high":184.79,"low":179.69,"close":180.02,"volume":205641400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-15","open":184.79,"high":184.86,"low":177.28,"close":179.82,"volume":214450500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-16","open":182.22,"high":183.27,"low":179.76,"close":181.8,"volume":179723300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-17","open":180.17,"high":184.09,"low":179.74,"close":183.21,"volume":173135200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-20","open":183.12,"high":185.19,"low":181.72,"close":182.63,"volume":128544700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-21","open":182.78,"high":182.78,"low":179.79,"close":181.15,"volume":124240200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-22","open":181.13,"high":183.43,"low":176.75,"close":180.27,"volume":162249600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-23","open":180.41,"high":183.02,"low":179.78,"close":182.15,"volume":111363700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-24","open":183.83,"high":187.46,"low":183.49,"close":186.25,"volume":131296700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-27","open":189.98,"high":191.99,"low":188.42,"close":191.48,"volume":153452700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-28","open":193.04,"high":203.14,"low":191.9,"close":201.02,"volume":297986200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-29","open":207.97,"high":212.18,"low":204.77,"close":207.03,"volume":308829600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-30","open":205.14,"high":206.15,"low":201.4,"close":202.88,"volume":178864400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-10-31","open":206.44,"high":207.96,"low":202.06,"close":202.48,"volume":179802200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-03","open":208.07,"high":211.33,"low":205.55,"close":206.87,"volume":180267300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-04","open":202.99,"high":203.96,"low":197.92,"close":198.68,"volume":188919300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-05","open":198.76,"high":202.91,"low":194.64,"close":195.2,"volume":171350300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-06","open":196.41,"high":197.61,"low":186.37,"close":188.07,"volume":223029800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-07","open":184.89,"high":188.31,"low":178.9,"close":188.14,"volume":264942300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-10","open":195.1,"high":199.93,"low":193.78,"close":199.04,"volume":198897100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-11","open":195.15,"high":195.41,"low":191.29,"close":193.15,"volume":176483300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-12","open":195.71,"high":195.88,"low":191.12,"close":193.79,"volume":154935300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-13","open":191.04,"high":191.43,"low":183.84,"close":186.85,"volume":207423100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-14","open":182.85,"high":191,"low":180.57,"close":190.16,"volume":186591900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-17","open":185.96,"high":188.99,"low":184.31,"close":186.59,"volume":173628900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-18","open":183.37,"high":184.79,"low":179.64,"close":181.35,"volume":213598900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-19","open":184.78,"high":187.85,"low":182.82,"close":186.51,"volume":247246400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-20","open":195.94,"high":195.99,"low":179.84,"close":180.63,"volume":343504800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-21","open":181.23,"high":184.55,"low":172.92,"close":178.87,"volume":346926200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-24","open":179.48,"high":183.49,"low":176.47,"close":182.54,"volume":256618300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-25","open":174.9,"high":178.15,"low":169.54,"close":177.81,"volume":320600300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-26","open":181.62,"high":182.9,"low":178.23,"close":180.25,"volume":183852000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-11-28","open":179,"high":179.28,"low":176.49,"close":176.99,"volume":121332800,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-01","open":174.75,"high":180.29,"low":173.67,"close":179.91,"volume":188131000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-02","open":181.75,"high":185.65,"low":179.99,"close":181.45,"volume":182632200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-03","open":181.07,"high":182.44,"low":179.1,"close":179.58,"volume":165138000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-04","open":181.62,"high":184.52,"low":179.96,"close":183.38,"volume":167364900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-05","open":183.89,"high":184.66,"low":180.91,"close":182.41,"volume":143971100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-08","open":182.64,"high":188,"low":182.4,"close":185.55,"volume":204378100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-09","open":185.56,"high":185.72,"low":183.32,"close":184.97,"volume":144719700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-10","open":184.97,"high":185.48,"low":182.04,"close":183.78,"volume":162785400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-11","open":180.28,"high":181.32,"low":176.62,"close":180.93,"volume":182136600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-12","open":181.11,"high":182.82,"low":174.62,"close":175.02,"volume":204274900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-15","open":177.94,"high":178.42,"low":175.03,"close":176.29,"volume":164775600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-16","open":176.26,"high":178.49,"low":174.9,"close":177.72,"volume":148588100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-17","open":176.1,"high":176.13,"low":170.31,"close":170.94,"volume":222775500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-18","open":174.53,"high":176.15,"low":171.82,"close":174.14,"volume":176096000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-19","open":176.67,"high":181.45,"low":176.34,"close":180.99,"volume":324925900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-22","open":183.92,"high":184.16,"low":182.35,"close":183.69,"volume":129064400,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-23","open":182.97,"high":189.33,"low":182.9,"close":189.21,"volume":174873600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-24","open":187.94,"high":188.91,"low":186.59,"close":188.61,"volume":65528500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-26","open":189.92,"high":192.69,"low":188,"close":190.53,"volume":139740300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-29","open":187.71,"high":188.76,"low":185.91,"close":188.22,"volume":120006100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-30","open":188.24,"high":188.99,"low":186.93,"close":187.54,"volume":97687300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2025-12-31","open":189.57,"high":190.56,"low":186.49,"close":186.5,"volume":120100500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-02","open":189.84,"high":192.93,"low":188.26,"close":188.85,"volume":148240500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-05","open":191.76,"high":193.63,"low":186.15,"close":188.12,"volume":183529700,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-06","open":190.52,"high":192.17,"low":186.82,"close":187.24,"volume":176862600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-07","open":188.57,"high":191.37,"low":186.56,"close":189.11,"volume":153543200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-08","open":189.11,"high":189.55,"low":183.71,"close":185.04,"volume":172457000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-09","open":185.08,"high":186.34,"low":183.67,"close":184.86,"volume":131327500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-12","open":183.22,"high":187.12,"low":183.02,"close":184.94,"volume":137968500,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-13","open":185,"high":188.11,"low":183.4,"close":185.81,"volume":160128900,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-14","open":184.32,"high":184.46,"low":180.8,"close":183.14,"volume":159586100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-15","open":186.5,"high":189.7,"low":186.33,"close":187.05,"volume":206188600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-16","open":189.08,"high":190.44,"low":186.08,"close":186.23,"volume":187967200,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-20","open":181.9,"high":182.38,"low":177.61,"close":178.07,"volume":223345300,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-21","open":179.05,"high":185.38,"low":178.4,"close":183.32,"volume":200381000,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-22","open":184.75,"high":186.17,"low":183.93,"close":184.84,"volume":139636600,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-23","open":187.5,"high":189.6,"low":186.82,"close":187.67,"volume":142748100,"fetched_at":"2026-01-27T17:30:40.847133Z"},{"symbol":"NVDA","date":"2026-01-26","open":187.16,"high":189.12,"low":185.99,"close":186.47,"volume":124489200,"fetched_at":"2026-01-27T17:30:40.847133Z"}],"anchored":true,"createdBy":"user","attachedMetadata":"","source":{"type":"stream","url":"/api/demo-stream/yfinance/history?symbols=AAPL,MSFT,GOOGL,AMZN,META,NVDA","autoRefresh":true,"refreshIntervalSeconds":86400,"lastRefreshed":1769535041338},"contentHash":"361b756d"},{"id":"table-233476","displayId":"stock-close","names":["date","symbol","close"],"rows":[{"date":"2025-07-31","symbol":"AAPL","close":207.13},{"date":"2025-08-01","symbol":"AAPL","close":201.95},{"date":"2025-08-04","symbol":"AAPL","close":202.92},{"date":"2025-08-05","symbol":"AAPL","close":202.49},{"date":"2025-08-06","symbol":"AAPL","close":212.8},{"date":"2025-08-07","symbol":"AAPL","close":219.57},{"date":"2025-08-08","symbol":"AAPL","close":228.87},{"date":"2025-08-11","symbol":"AAPL","close":226.96},{"date":"2025-08-12","symbol":"AAPL","close":229.43},{"date":"2025-08-13","symbol":"AAPL","close":233.1},{"date":"2025-08-14","symbol":"AAPL","close":232.55},{"date":"2025-08-15","symbol":"AAPL","close":231.37},{"date":"2025-08-18","symbol":"AAPL","close":230.67},{"date":"2025-08-19","symbol":"AAPL","close":230.34},{"date":"2025-08-20","symbol":"AAPL","close":225.79},{"date":"2025-08-21","symbol":"AAPL","close":224.68},{"date":"2025-08-22","symbol":"AAPL","close":227.54},{"date":"2025-08-25","symbol":"AAPL","close":226.94},{"date":"2025-08-26","symbol":"AAPL","close":229.09},{"date":"2025-08-27","symbol":"AAPL","close":230.27},{"date":"2025-08-28","symbol":"AAPL","close":232.33},{"date":"2025-08-29","symbol":"AAPL","close":231.92},{"date":"2025-09-02","symbol":"AAPL","close":229.5},{"date":"2025-09-03","symbol":"AAPL","close":238.24},{"date":"2025-09-04","symbol":"AAPL","close":239.55},{"date":"2025-09-05","symbol":"AAPL","close":239.46},{"date":"2025-09-08","symbol":"AAPL","close":237.65},{"date":"2025-09-09","symbol":"AAPL","close":234.12},{"date":"2025-09-10","symbol":"AAPL","close":226.57},{"date":"2025-09-11","symbol":"AAPL","close":229.81},{"date":"2025-09-12","symbol":"AAPL","close":233.84},{"date":"2025-09-15","symbol":"AAPL","close":236.47},{"date":"2025-09-16","symbol":"AAPL","close":237.92},{"date":"2025-09-17","symbol":"AAPL","close":238.76},{"date":"2025-09-18","symbol":"AAPL","close":237.65},{"date":"2025-09-19","symbol":"AAPL","close":245.26},{"date":"2025-09-22","symbol":"AAPL","close":255.83},{"date":"2025-09-23","symbol":"AAPL","close":254.18},{"date":"2025-09-24","symbol":"AAPL","close":252.07},{"date":"2025-09-25","symbol":"AAPL","close":256.62},{"date":"2025-09-26","symbol":"AAPL","close":255.21},{"date":"2025-09-29","symbol":"AAPL","close":254.18},{"date":"2025-09-30","symbol":"AAPL","close":254.38},{"date":"2025-10-01","symbol":"AAPL","close":255.2},{"date":"2025-10-02","symbol":"AAPL","close":256.88},{"date":"2025-10-03","symbol":"AAPL","close":257.77},{"date":"2025-10-06","symbol":"AAPL","close":256.44},{"date":"2025-10-07","symbol":"AAPL","close":256.23},{"date":"2025-10-08","symbol":"AAPL","close":257.81},{"date":"2025-10-09","symbol":"AAPL","close":253.79},{"date":"2025-10-10","symbol":"AAPL","close":245.03},{"date":"2025-10-13","symbol":"AAPL","close":247.42},{"date":"2025-10-14","symbol":"AAPL","close":247.53},{"date":"2025-10-15","symbol":"AAPL","close":249.1},{"date":"2025-10-16","symbol":"AAPL","close":247.21},{"date":"2025-10-17","symbol":"AAPL","close":252.05},{"date":"2025-10-20","symbol":"AAPL","close":261.99},{"date":"2025-10-21","symbol":"AAPL","close":262.52},{"date":"2025-10-22","symbol":"AAPL","close":258.2},{"date":"2025-10-23","symbol":"AAPL","close":259.33},{"date":"2025-10-24","symbol":"AAPL","close":262.57},{"date":"2025-10-27","symbol":"AAPL","close":268.55},{"date":"2025-10-28","symbol":"AAPL","close":268.74},{"date":"2025-10-29","symbol":"AAPL","close":269.44},{"date":"2025-10-30","symbol":"AAPL","close":271.14},{"date":"2025-10-31","symbol":"AAPL","close":270.11},{"date":"2025-11-03","symbol":"AAPL","close":268.79},{"date":"2025-11-04","symbol":"AAPL","close":269.78},{"date":"2025-11-05","symbol":"AAPL","close":269.88},{"date":"2025-11-06","symbol":"AAPL","close":269.51},{"date":"2025-11-07","symbol":"AAPL","close":268.21},{"date":"2025-11-10","symbol":"AAPL","close":269.43},{"date":"2025-11-11","symbol":"AAPL","close":275.25},{"date":"2025-11-12","symbol":"AAPL","close":273.47},{"date":"2025-11-13","symbol":"AAPL","close":272.95},{"date":"2025-11-14","symbol":"AAPL","close":272.41},{"date":"2025-11-17","symbol":"AAPL","close":267.46},{"date":"2025-11-18","symbol":"AAPL","close":267.44},{"date":"2025-11-19","symbol":"AAPL","close":268.56},{"date":"2025-11-20","symbol":"AAPL","close":266.25},{"date":"2025-11-21","symbol":"AAPL","close":271.49},{"date":"2025-11-24","symbol":"AAPL","close":275.92},{"date":"2025-11-25","symbol":"AAPL","close":276.97},{"date":"2025-11-26","symbol":"AAPL","close":277.55},{"date":"2025-11-28","symbol":"AAPL","close":278.85},{"date":"2025-12-01","symbol":"AAPL","close":283.1},{"date":"2025-12-02","symbol":"AAPL","close":286.19},{"date":"2025-12-03","symbol":"AAPL","close":284.15},{"date":"2025-12-04","symbol":"AAPL","close":280.7},{"date":"2025-12-05","symbol":"AAPL","close":278.78},{"date":"2025-12-08","symbol":"AAPL","close":277.89},{"date":"2025-12-09","symbol":"AAPL","close":277.18},{"date":"2025-12-10","symbol":"AAPL","close":278.78},{"date":"2025-12-11","symbol":"AAPL","close":278.03},{"date":"2025-12-12","symbol":"AAPL","close":278.28},{"date":"2025-12-15","symbol":"AAPL","close":274.11},{"date":"2025-12-16","symbol":"AAPL","close":274.61},{"date":"2025-12-17","symbol":"AAPL","close":271.84},{"date":"2025-12-18","symbol":"AAPL","close":272.19},{"date":"2025-12-19","symbol":"AAPL","close":273.67},{"date":"2025-12-22","symbol":"AAPL","close":270.97},{"date":"2025-12-23","symbol":"AAPL","close":272.36},{"date":"2025-12-24","symbol":"AAPL","close":273.81},{"date":"2025-12-26","symbol":"AAPL","close":273.4},{"date":"2025-12-29","symbol":"AAPL","close":273.76},{"date":"2025-12-30","symbol":"AAPL","close":273.08},{"date":"2025-12-31","symbol":"AAPL","close":271.86},{"date":"2026-01-02","symbol":"AAPL","close":271.01},{"date":"2026-01-05","symbol":"AAPL","close":267.26},{"date":"2026-01-06","symbol":"AAPL","close":262.36},{"date":"2026-01-07","symbol":"AAPL","close":260.33},{"date":"2026-01-08","symbol":"AAPL","close":259.04},{"date":"2026-01-09","symbol":"AAPL","close":259.37},{"date":"2026-01-12","symbol":"AAPL","close":260.25},{"date":"2026-01-13","symbol":"AAPL","close":261.05},{"date":"2026-01-14","symbol":"AAPL","close":259.96},{"date":"2026-01-15","symbol":"AAPL","close":258.21},{"date":"2026-01-16","symbol":"AAPL","close":255.53},{"date":"2026-01-20","symbol":"AAPL","close":246.7},{"date":"2026-01-21","symbol":"AAPL","close":247.65},{"date":"2026-01-22","symbol":"AAPL","close":248.35},{"date":"2026-01-23","symbol":"AAPL","close":248.04},{"date":"2026-01-26","symbol":"AAPL","close":255.41},{"date":"2025-07-31","symbol":"AMZN","close":234.11},{"date":"2025-08-01","symbol":"AMZN","close":214.75},{"date":"2025-08-04","symbol":"AMZN","close":211.65},{"date":"2025-08-05","symbol":"AMZN","close":213.75},{"date":"2025-08-06","symbol":"AMZN","close":222.31},{"date":"2025-08-07","symbol":"AMZN","close":223.13},{"date":"2025-08-08","symbol":"AMZN","close":222.69},{"date":"2025-08-11","symbol":"AMZN","close":221.3},{"date":"2025-08-12","symbol":"AMZN","close":221.47},{"date":"2025-08-13","symbol":"AMZN","close":224.56},{"date":"2025-08-14","symbol":"AMZN","close":230.98},{"date":"2025-08-15","symbol":"AMZN","close":231.03},{"date":"2025-08-18","symbol":"AMZN","close":231.49},{"date":"2025-08-19","symbol":"AMZN","close":228.01},{"date":"2025-08-20","symbol":"AMZN","close":223.81},{"date":"2025-08-21","symbol":"AMZN","close":221.95},{"date":"2025-08-22","symbol":"AMZN","close":228.84},{"date":"2025-08-25","symbol":"AMZN","close":227.94},{"date":"2025-08-26","symbol":"AMZN","close":228.71},{"date":"2025-08-27","symbol":"AMZN","close":229.12},{"date":"2025-08-28","symbol":"AMZN","close":231.6},{"date":"2025-08-29","symbol":"AMZN","close":229},{"date":"2025-09-02","symbol":"AMZN","close":225.34},{"date":"2025-09-03","symbol":"AMZN","close":225.99},{"date":"2025-09-04","symbol":"AMZN","close":235.68},{"date":"2025-09-05","symbol":"AMZN","close":232.33},{"date":"2025-09-08","symbol":"AMZN","close":235.84},{"date":"2025-09-09","symbol":"AMZN","close":238.24},{"date":"2025-09-10","symbol":"AMZN","close":230.33},{"date":"2025-09-11","symbol":"AMZN","close":229.95},{"date":"2025-09-12","symbol":"AMZN","close":228.15},{"date":"2025-09-15","symbol":"AMZN","close":231.43},{"date":"2025-09-16","symbol":"AMZN","close":234.05},{"date":"2025-09-17","symbol":"AMZN","close":231.62},{"date":"2025-09-18","symbol":"AMZN","close":231.23},{"date":"2025-09-19","symbol":"AMZN","close":231.48},{"date":"2025-09-22","symbol":"AMZN","close":227.63},{"date":"2025-09-23","symbol":"AMZN","close":220.71},{"date":"2025-09-24","symbol":"AMZN","close":220.21},{"date":"2025-09-25","symbol":"AMZN","close":218.15},{"date":"2025-09-26","symbol":"AMZN","close":219.78},{"date":"2025-09-29","symbol":"AMZN","close":222.17},{"date":"2025-09-30","symbol":"AMZN","close":219.57},{"date":"2025-10-01","symbol":"AMZN","close":220.63},{"date":"2025-10-02","symbol":"AMZN","close":222.41},{"date":"2025-10-03","symbol":"AMZN","close":219.51},{"date":"2025-10-06","symbol":"AMZN","close":220.9},{"date":"2025-10-07","symbol":"AMZN","close":221.78},{"date":"2025-10-08","symbol":"AMZN","close":225.22},{"date":"2025-10-09","symbol":"AMZN","close":227.74},{"date":"2025-10-10","symbol":"AMZN","close":216.37},{"date":"2025-10-13","symbol":"AMZN","close":220.07},{"date":"2025-10-14","symbol":"AMZN","close":216.39},{"date":"2025-10-15","symbol":"AMZN","close":215.57},{"date":"2025-10-16","symbol":"AMZN","close":214.47},{"date":"2025-10-17","symbol":"AMZN","close":213.04},{"date":"2025-10-20","symbol":"AMZN","close":216.48},{"date":"2025-10-21","symbol":"AMZN","close":222.03},{"date":"2025-10-22","symbol":"AMZN","close":217.95},{"date":"2025-10-23","symbol":"AMZN","close":221.09},{"date":"2025-10-24","symbol":"AMZN","close":224.21},{"date":"2025-10-27","symbol":"AMZN","close":226.97},{"date":"2025-10-28","symbol":"AMZN","close":229.25},{"date":"2025-10-29","symbol":"AMZN","close":230.3},{"date":"2025-10-30","symbol":"AMZN","close":222.86},{"date":"2025-10-31","symbol":"AMZN","close":244.22},{"date":"2025-11-03","symbol":"AMZN","close":254},{"date":"2025-11-04","symbol":"AMZN","close":249.32},{"date":"2025-11-05","symbol":"AMZN","close":250.2},{"date":"2025-11-06","symbol":"AMZN","close":243.04},{"date":"2025-11-07","symbol":"AMZN","close":244.41},{"date":"2025-11-10","symbol":"AMZN","close":248.4},{"date":"2025-11-11","symbol":"AMZN","close":249.1},{"date":"2025-11-12","symbol":"AMZN","close":244.2},{"date":"2025-11-13","symbol":"AMZN","close":237.58},{"date":"2025-11-14","symbol":"AMZN","close":234.69},{"date":"2025-11-17","symbol":"AMZN","close":232.87},{"date":"2025-11-18","symbol":"AMZN","close":222.55},{"date":"2025-11-19","symbol":"AMZN","close":222.69},{"date":"2025-11-20","symbol":"AMZN","close":217.14},{"date":"2025-11-21","symbol":"AMZN","close":220.69},{"date":"2025-11-24","symbol":"AMZN","close":226.28},{"date":"2025-11-25","symbol":"AMZN","close":229.67},{"date":"2025-11-26","symbol":"AMZN","close":229.16},{"date":"2025-11-28","symbol":"AMZN","close":233.22},{"date":"2025-12-01","symbol":"AMZN","close":233.88},{"date":"2025-12-02","symbol":"AMZN","close":234.42},{"date":"2025-12-03","symbol":"AMZN","close":232.38},{"date":"2025-12-04","symbol":"AMZN","close":229.11},{"date":"2025-12-05","symbol":"AMZN","close":229.53},{"date":"2025-12-08","symbol":"AMZN","close":226.89},{"date":"2025-12-09","symbol":"AMZN","close":227.92},{"date":"2025-12-10","symbol":"AMZN","close":231.78},{"date":"2025-12-11","symbol":"AMZN","close":230.28},{"date":"2025-12-12","symbol":"AMZN","close":226.19},{"date":"2025-12-15","symbol":"AMZN","close":222.54},{"date":"2025-12-16","symbol":"AMZN","close":222.56},{"date":"2025-12-17","symbol":"AMZN","close":221.27},{"date":"2025-12-18","symbol":"AMZN","close":226.76},{"date":"2025-12-19","symbol":"AMZN","close":227.35},{"date":"2025-12-22","symbol":"AMZN","close":228.43},{"date":"2025-12-23","symbol":"AMZN","close":232.14},{"date":"2025-12-24","symbol":"AMZN","close":232.38},{"date":"2025-12-26","symbol":"AMZN","close":232.52},{"date":"2025-12-29","symbol":"AMZN","close":232.07},{"date":"2025-12-30","symbol":"AMZN","close":232.53},{"date":"2025-12-31","symbol":"AMZN","close":230.82},{"date":"2026-01-02","symbol":"AMZN","close":226.5},{"date":"2026-01-05","symbol":"AMZN","close":233.06},{"date":"2026-01-06","symbol":"AMZN","close":240.93},{"date":"2026-01-07","symbol":"AMZN","close":241.56},{"date":"2026-01-08","symbol":"AMZN","close":246.29},{"date":"2026-01-09","symbol":"AMZN","close":247.38},{"date":"2026-01-12","symbol":"AMZN","close":246.47},{"date":"2026-01-13","symbol":"AMZN","close":242.6},{"date":"2026-01-14","symbol":"AMZN","close":236.65},{"date":"2026-01-15","symbol":"AMZN","close":238.18},{"date":"2026-01-16","symbol":"AMZN","close":239.12},{"date":"2026-01-20","symbol":"AMZN","close":231},{"date":"2026-01-21","symbol":"AMZN","close":231.31},{"date":"2026-01-22","symbol":"AMZN","close":234.34},{"date":"2026-01-23","symbol":"AMZN","close":239.16},{"date":"2026-01-26","symbol":"AMZN","close":238.42},{"date":"2025-07-31","symbol":"GOOGL","close":191.6},{"date":"2025-08-01","symbol":"GOOGL","close":188.84},{"date":"2025-08-04","symbol":"GOOGL","close":194.74},{"date":"2025-08-05","symbol":"GOOGL","close":194.37},{"date":"2025-08-06","symbol":"GOOGL","close":195.79},{"date":"2025-08-07","symbol":"GOOGL","close":196.22},{"date":"2025-08-08","symbol":"GOOGL","close":201.11},{"date":"2025-08-11","symbol":"GOOGL","close":200.69},{"date":"2025-08-12","symbol":"GOOGL","close":203.03},{"date":"2025-08-13","symbol":"GOOGL","close":201.65},{"date":"2025-08-14","symbol":"GOOGL","close":202.63},{"date":"2025-08-15","symbol":"GOOGL","close":203.58},{"date":"2025-08-18","symbol":"GOOGL","close":203.19},{"date":"2025-08-19","symbol":"GOOGL","close":201.26},{"date":"2025-08-20","symbol":"GOOGL","close":199.01},{"date":"2025-08-21","symbol":"GOOGL","close":199.44},{"date":"2025-08-22","symbol":"GOOGL","close":205.77},{"date":"2025-08-25","symbol":"GOOGL","close":208.17},{"date":"2025-08-26","symbol":"GOOGL","close":206.82},{"date":"2025-08-27","symbol":"GOOGL","close":207.16},{"date":"2025-08-28","symbol":"GOOGL","close":211.31},{"date":"2025-08-29","symbol":"GOOGL","close":212.58},{"date":"2025-09-02","symbol":"GOOGL","close":211.02},{"date":"2025-09-03","symbol":"GOOGL","close":230.3},{"date":"2025-09-04","symbol":"GOOGL","close":231.94},{"date":"2025-09-05","symbol":"GOOGL","close":234.64},{"date":"2025-09-08","symbol":"GOOGL","close":233.89},{"date":"2025-09-09","symbol":"GOOGL","close":239.47},{"date":"2025-09-10","symbol":"GOOGL","close":239.01},{"date":"2025-09-11","symbol":"GOOGL","close":240.21},{"date":"2025-09-12","symbol":"GOOGL","close":240.64},{"date":"2025-09-15","symbol":"GOOGL","close":251.45},{"date":"2025-09-16","symbol":"GOOGL","close":251},{"date":"2025-09-17","symbol":"GOOGL","close":249.37},{"date":"2025-09-18","symbol":"GOOGL","close":251.87},{"date":"2025-09-19","symbol":"GOOGL","close":254.55},{"date":"2025-09-22","symbol":"GOOGL","close":252.36},{"date":"2025-09-23","symbol":"GOOGL","close":251.5},{"date":"2025-09-24","symbol":"GOOGL","close":246.98},{"date":"2025-09-25","symbol":"GOOGL","close":245.63},{"date":"2025-09-26","symbol":"GOOGL","close":246.38},{"date":"2025-09-29","symbol":"GOOGL","close":243.89},{"date":"2025-09-30","symbol":"GOOGL","close":242.94},{"date":"2025-10-01","symbol":"GOOGL","close":244.74},{"date":"2025-10-02","symbol":"GOOGL","close":245.53},{"date":"2025-10-03","symbol":"GOOGL","close":245.19},{"date":"2025-10-06","symbol":"GOOGL","close":250.27},{"date":"2025-10-07","symbol":"GOOGL","close":245.6},{"date":"2025-10-08","symbol":"GOOGL","close":244.46},{"date":"2025-10-09","symbol":"GOOGL","close":241.37},{"date":"2025-10-10","symbol":"GOOGL","close":236.42},{"date":"2025-10-13","symbol":"GOOGL","close":243.99},{"date":"2025-10-14","symbol":"GOOGL","close":245.29},{"date":"2025-10-15","symbol":"GOOGL","close":250.87},{"date":"2025-10-16","symbol":"GOOGL","close":251.3},{"date":"2025-10-17","symbol":"GOOGL","close":253.13},{"date":"2025-10-20","symbol":"GOOGL","close":256.38},{"date":"2025-10-21","symbol":"GOOGL","close":250.3},{"date":"2025-10-22","symbol":"GOOGL","close":251.53},{"date":"2025-10-23","symbol":"GOOGL","close":252.91},{"date":"2025-10-24","symbol":"GOOGL","close":259.75},{"date":"2025-10-27","symbol":"GOOGL","close":269.09},{"date":"2025-10-28","symbol":"GOOGL","close":267.3},{"date":"2025-10-29","symbol":"GOOGL","close":274.39},{"date":"2025-10-30","symbol":"GOOGL","close":281.3},{"date":"2025-10-31","symbol":"GOOGL","close":281.01},{"date":"2025-11-03","symbol":"GOOGL","close":283.53},{"date":"2025-11-04","symbol":"GOOGL","close":277.36},{"date":"2025-11-05","symbol":"GOOGL","close":284.12},{"date":"2025-11-06","symbol":"GOOGL","close":284.56},{"date":"2025-11-07","symbol":"GOOGL","close":278.65},{"date":"2025-11-10","symbol":"GOOGL","close":289.91},{"date":"2025-11-11","symbol":"GOOGL","close":291.12},{"date":"2025-11-12","symbol":"GOOGL","close":286.52},{"date":"2025-11-13","symbol":"GOOGL","close":278.39},{"date":"2025-11-14","symbol":"GOOGL","close":276.23},{"date":"2025-11-17","symbol":"GOOGL","close":284.83},{"date":"2025-11-18","symbol":"GOOGL","close":284.09},{"date":"2025-11-19","symbol":"GOOGL","close":292.62},{"date":"2025-11-20","symbol":"GOOGL","close":289.26},{"date":"2025-11-21","symbol":"GOOGL","close":299.46},{"date":"2025-11-24","symbol":"GOOGL","close":318.37},{"date":"2025-11-25","symbol":"GOOGL","close":323.23},{"date":"2025-11-26","symbol":"GOOGL","close":319.74},{"date":"2025-11-28","symbol":"GOOGL","close":319.97},{"date":"2025-12-01","symbol":"GOOGL","close":314.68},{"date":"2025-12-02","symbol":"GOOGL","close":315.6},{"date":"2025-12-03","symbol":"GOOGL","close":319.42},{"date":"2025-12-04","symbol":"GOOGL","close":317.41},{"date":"2025-12-05","symbol":"GOOGL","close":321.06},{"date":"2025-12-08","symbol":"GOOGL","close":313.72},{"date":"2025-12-09","symbol":"GOOGL","close":317.08},{"date":"2025-12-10","symbol":"GOOGL","close":320.21},{"date":"2025-12-11","symbol":"GOOGL","close":312.43},{"date":"2025-12-12","symbol":"GOOGL","close":309.29},{"date":"2025-12-15","symbol":"GOOGL","close":308.22},{"date":"2025-12-16","symbol":"GOOGL","close":306.57},{"date":"2025-12-17","symbol":"GOOGL","close":296.72},{"date":"2025-12-18","symbol":"GOOGL","close":302.46},{"date":"2025-12-19","symbol":"GOOGL","close":307.16},{"date":"2025-12-22","symbol":"GOOGL","close":309.78},{"date":"2025-12-23","symbol":"GOOGL","close":314.35},{"date":"2025-12-24","symbol":"GOOGL","close":314.09},{"date":"2025-12-26","symbol":"GOOGL","close":313.51},{"date":"2025-12-29","symbol":"GOOGL","close":313.56},{"date":"2025-12-30","symbol":"GOOGL","close":313.85},{"date":"2025-12-31","symbol":"GOOGL","close":313},{"date":"2026-01-02","symbol":"GOOGL","close":315.15},{"date":"2026-01-05","symbol":"GOOGL","close":316.54},{"date":"2026-01-06","symbol":"GOOGL","close":314.34},{"date":"2026-01-07","symbol":"GOOGL","close":321.98},{"date":"2026-01-08","symbol":"GOOGL","close":325.44},{"date":"2026-01-09","symbol":"GOOGL","close":328.57},{"date":"2026-01-12","symbol":"GOOGL","close":331.86},{"date":"2026-01-13","symbol":"GOOGL","close":335.97},{"date":"2026-01-14","symbol":"GOOGL","close":335.84},{"date":"2026-01-15","symbol":"GOOGL","close":332.78},{"date":"2026-01-16","symbol":"GOOGL","close":330},{"date":"2026-01-20","symbol":"GOOGL","close":322},{"date":"2026-01-21","symbol":"GOOGL","close":328.38},{"date":"2026-01-22","symbol":"GOOGL","close":330.54},{"date":"2026-01-23","symbol":"GOOGL","close":327.93},{"date":"2026-01-26","symbol":"GOOGL","close":333.26},{"date":"2025-07-31","symbol":"META","close":772.29},{"date":"2025-08-01","symbol":"META","close":748.89},{"date":"2025-08-04","symbol":"META","close":775.21},{"date":"2025-08-05","symbol":"META","close":762.32},{"date":"2025-08-06","symbol":"META","close":770.84},{"date":"2025-08-07","symbol":"META","close":760.7},{"date":"2025-08-08","symbol":"META","close":768.15},{"date":"2025-08-11","symbol":"META","close":764.73},{"date":"2025-08-12","symbol":"META","close":788.82},{"date":"2025-08-13","symbol":"META","close":778.92},{"date":"2025-08-14","symbol":"META","close":780.97},{"date":"2025-08-15","symbol":"META","close":784.06},{"date":"2025-08-18","symbol":"META","close":766.23},{"date":"2025-08-19","symbol":"META","close":750.36},{"date":"2025-08-20","symbol":"META","close":746.61},{"date":"2025-08-21","symbol":"META","close":738},{"date":"2025-08-22","symbol":"META","close":753.67},{"date":"2025-08-25","symbol":"META","close":752.18},{"date":"2025-08-26","symbol":"META","close":752.98},{"date":"2025-08-27","symbol":"META","close":746.27},{"date":"2025-08-28","symbol":"META","close":749.99},{"date":"2025-08-29","symbol":"META","close":737.6},{"date":"2025-09-02","symbol":"META","close":734.02},{"date":"2025-09-03","symbol":"META","close":735.95},{"date":"2025-09-04","symbol":"META","close":747.54},{"date":"2025-09-05","symbol":"META","close":751.33},{"date":"2025-09-08","symbol":"META","close":751.18},{"date":"2025-09-09","symbol":"META","close":764.56},{"date":"2025-09-10","symbol":"META","close":750.86},{"date":"2025-09-11","symbol":"META","close":749.78},{"date":"2025-09-12","symbol":"META","close":754.47},{"date":"2025-09-15","symbol":"META","close":763.56},{"date":"2025-09-16","symbol":"META","close":777.84},{"date":"2025-09-17","symbol":"META","close":774.57},{"date":"2025-09-18","symbol":"META","close":779.09},{"date":"2025-09-19","symbol":"META","close":777.22},{"date":"2025-09-22","symbol":"META","close":764.54},{"date":"2025-09-23","symbol":"META","close":754.78},{"date":"2025-09-24","symbol":"META","close":760.04},{"date":"2025-09-25","symbol":"META","close":748.3},{"date":"2025-09-26","symbol":"META","close":743.14},{"date":"2025-09-29","symbol":"META","close":742.79},{"date":"2025-09-30","symbol":"META","close":733.78},{"date":"2025-10-01","symbol":"META","close":716.76},{"date":"2025-10-02","symbol":"META","close":726.46},{"date":"2025-10-03","symbol":"META","close":709.98},{"date":"2025-10-06","symbol":"META","close":715.08},{"date":"2025-10-07","symbol":"META","close":712.5},{"date":"2025-10-08","symbol":"META","close":717.26},{"date":"2025-10-09","symbol":"META","close":732.91},{"date":"2025-10-10","symbol":"META","close":704.73},{"date":"2025-10-13","symbol":"META","close":715.12},{"date":"2025-10-14","symbol":"META","close":708.07},{"date":"2025-10-15","symbol":"META","close":716.97},{"date":"2025-10-16","symbol":"META","close":711.49},{"date":"2025-10-17","symbol":"META","close":716.34},{"date":"2025-10-20","symbol":"META","close":731.57},{"date":"2025-10-21","symbol":"META","close":732.67},{"date":"2025-10-22","symbol":"META","close":732.81},{"date":"2025-10-23","symbol":"META","close":733.4},{"date":"2025-10-24","symbol":"META","close":737.76},{"date":"2025-10-27","symbol":"META","close":750.21},{"date":"2025-10-28","symbol":"META","close":750.83},{"date":"2025-10-29","symbol":"META","close":751.06},{"date":"2025-10-30","symbol":"META","close":665.93},{"date":"2025-10-31","symbol":"META","close":647.82},{"date":"2025-11-03","symbol":"META","close":637.19},{"date":"2025-11-04","symbol":"META","close":626.81},{"date":"2025-11-05","symbol":"META","close":635.43},{"date":"2025-11-06","symbol":"META","close":618.44},{"date":"2025-11-07","symbol":"META","close":621.2},{"date":"2025-11-10","symbol":"META","close":631.25},{"date":"2025-11-11","symbol":"META","close":626.57},{"date":"2025-11-12","symbol":"META","close":608.51},{"date":"2025-11-13","symbol":"META","close":609.39},{"date":"2025-11-14","symbol":"META","close":608.96},{"date":"2025-11-17","symbol":"META","close":601.52},{"date":"2025-11-18","symbol":"META","close":597.2},{"date":"2025-11-19","symbol":"META","close":589.84},{"date":"2025-11-20","symbol":"META","close":588.67},{"date":"2025-11-21","symbol":"META","close":593.77},{"date":"2025-11-24","symbol":"META","close":612.55},{"date":"2025-11-25","symbol":"META","close":635.7},{"date":"2025-11-26","symbol":"META","close":633.09},{"date":"2025-11-28","symbol":"META","close":647.42},{"date":"2025-12-01","symbol":"META","close":640.35},{"date":"2025-12-02","symbol":"META","close":646.57},{"date":"2025-12-03","symbol":"META","close":639.08},{"date":"2025-12-04","symbol":"META","close":660.99},{"date":"2025-12-05","symbol":"META","close":672.87},{"date":"2025-12-08","symbol":"META","close":666.26},{"date":"2025-12-09","symbol":"META","close":656.42},{"date":"2025-12-10","symbol":"META","close":649.6},{"date":"2025-12-11","symbol":"META","close":652.18},{"date":"2025-12-12","symbol":"META","close":643.71},{"date":"2025-12-15","symbol":"META","close":647.51},{"date":"2025-12-16","symbol":"META","close":657.15},{"date":"2025-12-17","symbol":"META","close":649.5},{"date":"2025-12-18","symbol":"META","close":664.45},{"date":"2025-12-19","symbol":"META","close":658.77},{"date":"2025-12-22","symbol":"META","close":661.5},{"date":"2025-12-23","symbol":"META","close":664.94},{"date":"2025-12-24","symbol":"META","close":667.55},{"date":"2025-12-26","symbol":"META","close":663.29},{"date":"2025-12-29","symbol":"META","close":658.69},{"date":"2025-12-30","symbol":"META","close":665.95},{"date":"2025-12-31","symbol":"META","close":660.09},{"date":"2026-01-02","symbol":"META","close":650.41},{"date":"2026-01-05","symbol":"META","close":658.79},{"date":"2026-01-06","symbol":"META","close":660.62},{"date":"2026-01-07","symbol":"META","close":648.69},{"date":"2026-01-08","symbol":"META","close":646.06},{"date":"2026-01-09","symbol":"META","close":653.06},{"date":"2026-01-12","symbol":"META","close":641.97},{"date":"2026-01-13","symbol":"META","close":631.09},{"date":"2026-01-14","symbol":"META","close":615.52},{"date":"2026-01-15","symbol":"META","close":620.8},{"date":"2026-01-16","symbol":"META","close":620.25},{"date":"2026-01-20","symbol":"META","close":604.12},{"date":"2026-01-21","symbol":"META","close":612.96},{"date":"2026-01-22","symbol":"META","close":647.63},{"date":"2026-01-23","symbol":"META","close":658.76},{"date":"2026-01-26","symbol":"META","close":672.36},{"date":"2025-07-31","symbol":"MSFT","close":531.63},{"date":"2025-08-01","symbol":"MSFT","close":522.27},{"date":"2025-08-04","symbol":"MSFT","close":533.76},{"date":"2025-08-05","symbol":"MSFT","close":525.9},{"date":"2025-08-06","symbol":"MSFT","close":523.1},{"date":"2025-08-07","symbol":"MSFT","close":519.01},{"date":"2025-08-08","symbol":"MSFT","close":520.21},{"date":"2025-08-11","symbol":"MSFT","close":519.94},{"date":"2025-08-12","symbol":"MSFT","close":527.38},{"date":"2025-08-13","symbol":"MSFT","close":518.75},{"date":"2025-08-14","symbol":"MSFT","close":520.65},{"date":"2025-08-15","symbol":"MSFT","close":518.35},{"date":"2025-08-18","symbol":"MSFT","close":515.29},{"date":"2025-08-19","symbol":"MSFT","close":507.98},{"date":"2025-08-20","symbol":"MSFT","close":503.95},{"date":"2025-08-21","symbol":"MSFT","close":503.3},{"date":"2025-08-22","symbol":"MSFT","close":506.28},{"date":"2025-08-25","symbol":"MSFT","close":503.32},{"date":"2025-08-26","symbol":"MSFT","close":501.1},{"date":"2025-08-27","symbol":"MSFT","close":505.79},{"date":"2025-08-28","symbol":"MSFT","close":508.69},{"date":"2025-08-29","symbol":"MSFT","close":505.74},{"date":"2025-09-02","symbol":"MSFT","close":504.18},{"date":"2025-09-03","symbol":"MSFT","close":504.41},{"date":"2025-09-04","symbol":"MSFT","close":507.02},{"date":"2025-09-05","symbol":"MSFT","close":494.08},{"date":"2025-09-08","symbol":"MSFT","close":497.27},{"date":"2025-09-09","symbol":"MSFT","close":497.48},{"date":"2025-09-10","symbol":"MSFT","close":499.44},{"date":"2025-09-11","symbol":"MSFT","close":500.07},{"date":"2025-09-12","symbol":"MSFT","close":508.95},{"date":"2025-09-15","symbol":"MSFT","close":514.4},{"date":"2025-09-16","symbol":"MSFT","close":508.09},{"date":"2025-09-17","symbol":"MSFT","close":509.07},{"date":"2025-09-18","symbol":"MSFT","close":507.5},{"date":"2025-09-19","symbol":"MSFT","close":516.96},{"date":"2025-09-22","symbol":"MSFT","close":513.49},{"date":"2025-09-23","symbol":"MSFT","close":508.28},{"date":"2025-09-24","symbol":"MSFT","close":509.2},{"date":"2025-09-25","symbol":"MSFT","close":506.08},{"date":"2025-09-26","symbol":"MSFT","close":510.5},{"date":"2025-09-29","symbol":"MSFT","close":513.64},{"date":"2025-09-30","symbol":"MSFT","close":516.98},{"date":"2025-10-01","symbol":"MSFT","close":518.74},{"date":"2025-10-02","symbol":"MSFT","close":514.78},{"date":"2025-10-03","symbol":"MSFT","close":516.38},{"date":"2025-10-06","symbol":"MSFT","close":527.58},{"date":"2025-10-07","symbol":"MSFT","close":523},{"date":"2025-10-08","symbol":"MSFT","close":523.87},{"date":"2025-10-09","symbol":"MSFT","close":521.42},{"date":"2025-10-10","symbol":"MSFT","close":510.01},{"date":"2025-10-13","symbol":"MSFT","close":513.09},{"date":"2025-10-14","symbol":"MSFT","close":512.61},{"date":"2025-10-15","symbol":"MSFT","close":512.47},{"date":"2025-10-16","symbol":"MSFT","close":510.65},{"date":"2025-10-17","symbol":"MSFT","close":512.62},{"date":"2025-10-20","symbol":"MSFT","close":515.82},{"date":"2025-10-21","symbol":"MSFT","close":516.69},{"date":"2025-10-22","symbol":"MSFT","close":519.57},{"date":"2025-10-23","symbol":"MSFT","close":519.59},{"date":"2025-10-24","symbol":"MSFT","close":522.63},{"date":"2025-10-27","symbol":"MSFT","close":530.53},{"date":"2025-10-28","symbol":"MSFT","close":541.06},{"date":"2025-10-29","symbol":"MSFT","close":540.54},{"date":"2025-10-30","symbol":"MSFT","close":524.78},{"date":"2025-10-31","symbol":"MSFT","close":516.84},{"date":"2025-11-03","symbol":"MSFT","close":516.06},{"date":"2025-11-04","symbol":"MSFT","close":513.37},{"date":"2025-11-05","symbol":"MSFT","close":506.21},{"date":"2025-11-06","symbol":"MSFT","close":496.17},{"date":"2025-11-07","symbol":"MSFT","close":495.89},{"date":"2025-11-10","symbol":"MSFT","close":505.05},{"date":"2025-11-11","symbol":"MSFT","close":507.73},{"date":"2025-11-12","symbol":"MSFT","close":510.19},{"date":"2025-11-13","symbol":"MSFT","close":502.35},{"date":"2025-11-14","symbol":"MSFT","close":509.23},{"date":"2025-11-17","symbol":"MSFT","close":506.54},{"date":"2025-11-18","symbol":"MSFT","close":492.87},{"date":"2025-11-19","symbol":"MSFT","close":486.21},{"date":"2025-11-20","symbol":"MSFT","close":478.43},{"date":"2025-11-21","symbol":"MSFT","close":472.12},{"date":"2025-11-24","symbol":"MSFT","close":474},{"date":"2025-11-25","symbol":"MSFT","close":476.99},{"date":"2025-11-26","symbol":"MSFT","close":485.5},{"date":"2025-11-28","symbol":"MSFT","close":492.01},{"date":"2025-12-01","symbol":"MSFT","close":486.74},{"date":"2025-12-02","symbol":"MSFT","close":490},{"date":"2025-12-03","symbol":"MSFT","close":477.73},{"date":"2025-12-04","symbol":"MSFT","close":480.84},{"date":"2025-12-05","symbol":"MSFT","close":483.16},{"date":"2025-12-08","symbol":"MSFT","close":491.02},{"date":"2025-12-09","symbol":"MSFT","close":492.02},{"date":"2025-12-10","symbol":"MSFT","close":478.56},{"date":"2025-12-11","symbol":"MSFT","close":483.47},{"date":"2025-12-12","symbol":"MSFT","close":478.53},{"date":"2025-12-15","symbol":"MSFT","close":474.82},{"date":"2025-12-16","symbol":"MSFT","close":476.39},{"date":"2025-12-17","symbol":"MSFT","close":476.12},{"date":"2025-12-18","symbol":"MSFT","close":483.98},{"date":"2025-12-19","symbol":"MSFT","close":485.92},{"date":"2025-12-22","symbol":"MSFT","close":484.92},{"date":"2025-12-23","symbol":"MSFT","close":486.85},{"date":"2025-12-24","symbol":"MSFT","close":488.02},{"date":"2025-12-26","symbol":"MSFT","close":487.71},{"date":"2025-12-29","symbol":"MSFT","close":487.1},{"date":"2025-12-30","symbol":"MSFT","close":487.48},{"date":"2025-12-31","symbol":"MSFT","close":483.62},{"date":"2026-01-02","symbol":"MSFT","close":472.94},{"date":"2026-01-05","symbol":"MSFT","close":472.85},{"date":"2026-01-06","symbol":"MSFT","close":478.51},{"date":"2026-01-07","symbol":"MSFT","close":483.47},{"date":"2026-01-08","symbol":"MSFT","close":478.11},{"date":"2026-01-09","symbol":"MSFT","close":479.28},{"date":"2026-01-12","symbol":"MSFT","close":477.18},{"date":"2026-01-13","symbol":"MSFT","close":470.67},{"date":"2026-01-14","symbol":"MSFT","close":459.38},{"date":"2026-01-15","symbol":"MSFT","close":456.66},{"date":"2026-01-16","symbol":"MSFT","close":459.86},{"date":"2026-01-20","symbol":"MSFT","close":454.52},{"date":"2026-01-21","symbol":"MSFT","close":444.11},{"date":"2026-01-22","symbol":"MSFT","close":451.14},{"date":"2026-01-23","symbol":"MSFT","close":465.95},{"date":"2026-01-26","symbol":"MSFT","close":470.28},{"date":"2025-07-31","symbol":"NVDA","close":177.85},{"date":"2025-08-01","symbol":"NVDA","close":173.7},{"date":"2025-08-04","symbol":"NVDA","close":179.98},{"date":"2025-08-05","symbol":"NVDA","close":178.24},{"date":"2025-08-06","symbol":"NVDA","close":179.4},{"date":"2025-08-07","symbol":"NVDA","close":180.75},{"date":"2025-08-08","symbol":"NVDA","close":182.68},{"date":"2025-08-11","symbol":"NVDA","close":182.04},{"date":"2025-08-12","symbol":"NVDA","close":183.14},{"date":"2025-08-13","symbol":"NVDA","close":181.57},{"date":"2025-08-14","symbol":"NVDA","close":182},{"date":"2025-08-15","symbol":"NVDA","close":180.43},{"date":"2025-08-18","symbol":"NVDA","close":181.99},{"date":"2025-08-19","symbol":"NVDA","close":175.62},{"date":"2025-08-20","symbol":"NVDA","close":175.38},{"date":"2025-08-21","symbol":"NVDA","close":174.96},{"date":"2025-08-22","symbol":"NVDA","close":177.97},{"date":"2025-08-25","symbol":"NVDA","close":179.79},{"date":"2025-08-26","symbol":"NVDA","close":181.75},{"date":"2025-08-27","symbol":"NVDA","close":181.58},{"date":"2025-08-28","symbol":"NVDA","close":180.15},{"date":"2025-08-29","symbol":"NVDA","close":174.16},{"date":"2025-09-02","symbol":"NVDA","close":170.76},{"date":"2025-09-03","symbol":"NVDA","close":170.6},{"date":"2025-09-04","symbol":"NVDA","close":171.64},{"date":"2025-09-05","symbol":"NVDA","close":167},{"date":"2025-09-08","symbol":"NVDA","close":168.29},{"date":"2025-09-09","symbol":"NVDA","close":170.74},{"date":"2025-09-10","symbol":"NVDA","close":177.31},{"date":"2025-09-11","symbol":"NVDA","close":177.16},{"date":"2025-09-12","symbol":"NVDA","close":177.81},{"date":"2025-09-15","symbol":"NVDA","close":177.74},{"date":"2025-09-16","symbol":"NVDA","close":174.87},{"date":"2025-09-17","symbol":"NVDA","close":170.28},{"date":"2025-09-18","symbol":"NVDA","close":176.23},{"date":"2025-09-19","symbol":"NVDA","close":176.66},{"date":"2025-09-22","symbol":"NVDA","close":183.6},{"date":"2025-09-23","symbol":"NVDA","close":178.42},{"date":"2025-09-24","symbol":"NVDA","close":176.96},{"date":"2025-09-25","symbol":"NVDA","close":177.68},{"date":"2025-09-26","symbol":"NVDA","close":178.18},{"date":"2025-09-29","symbol":"NVDA","close":181.84},{"date":"2025-09-30","symbol":"NVDA","close":186.57},{"date":"2025-10-01","symbol":"NVDA","close":187.23},{"date":"2025-10-02","symbol":"NVDA","close":188.88},{"date":"2025-10-03","symbol":"NVDA","close":187.61},{"date":"2025-10-06","symbol":"NVDA","close":185.53},{"date":"2025-10-07","symbol":"NVDA","close":185.03},{"date":"2025-10-08","symbol":"NVDA","close":189.1},{"date":"2025-10-09","symbol":"NVDA","close":192.56},{"date":"2025-10-10","symbol":"NVDA","close":183.15},{"date":"2025-10-13","symbol":"NVDA","close":188.31},{"date":"2025-10-14","symbol":"NVDA","close":180.02},{"date":"2025-10-15","symbol":"NVDA","close":179.82},{"date":"2025-10-16","symbol":"NVDA","close":181.8},{"date":"2025-10-17","symbol":"NVDA","close":183.21},{"date":"2025-10-20","symbol":"NVDA","close":182.63},{"date":"2025-10-21","symbol":"NVDA","close":181.15},{"date":"2025-10-22","symbol":"NVDA","close":180.27},{"date":"2025-10-23","symbol":"NVDA","close":182.15},{"date":"2025-10-24","symbol":"NVDA","close":186.25},{"date":"2025-10-27","symbol":"NVDA","close":191.48},{"date":"2025-10-28","symbol":"NVDA","close":201.02},{"date":"2025-10-29","symbol":"NVDA","close":207.03},{"date":"2025-10-30","symbol":"NVDA","close":202.88},{"date":"2025-10-31","symbol":"NVDA","close":202.48},{"date":"2025-11-03","symbol":"NVDA","close":206.87},{"date":"2025-11-04","symbol":"NVDA","close":198.68},{"date":"2025-11-05","symbol":"NVDA","close":195.2},{"date":"2025-11-06","symbol":"NVDA","close":188.07},{"date":"2025-11-07","symbol":"NVDA","close":188.14},{"date":"2025-11-10","symbol":"NVDA","close":199.04},{"date":"2025-11-11","symbol":"NVDA","close":193.15},{"date":"2025-11-12","symbol":"NVDA","close":193.79},{"date":"2025-11-13","symbol":"NVDA","close":186.85},{"date":"2025-11-14","symbol":"NVDA","close":190.16},{"date":"2025-11-17","symbol":"NVDA","close":186.59},{"date":"2025-11-18","symbol":"NVDA","close":181.35},{"date":"2025-11-19","symbol":"NVDA","close":186.51},{"date":"2025-11-20","symbol":"NVDA","close":180.63},{"date":"2025-11-21","symbol":"NVDA","close":178.87},{"date":"2025-11-24","symbol":"NVDA","close":182.54},{"date":"2025-11-25","symbol":"NVDA","close":177.81},{"date":"2025-11-26","symbol":"NVDA","close":180.25},{"date":"2025-11-28","symbol":"NVDA","close":176.99},{"date":"2025-12-01","symbol":"NVDA","close":179.91},{"date":"2025-12-02","symbol":"NVDA","close":181.45},{"date":"2025-12-03","symbol":"NVDA","close":179.58},{"date":"2025-12-04","symbol":"NVDA","close":183.38},{"date":"2025-12-05","symbol":"NVDA","close":182.41},{"date":"2025-12-08","symbol":"NVDA","close":185.55},{"date":"2025-12-09","symbol":"NVDA","close":184.97},{"date":"2025-12-10","symbol":"NVDA","close":183.78},{"date":"2025-12-11","symbol":"NVDA","close":180.93},{"date":"2025-12-12","symbol":"NVDA","close":175.02},{"date":"2025-12-15","symbol":"NVDA","close":176.29},{"date":"2025-12-16","symbol":"NVDA","close":177.72},{"date":"2025-12-17","symbol":"NVDA","close":170.94},{"date":"2025-12-18","symbol":"NVDA","close":174.14},{"date":"2025-12-19","symbol":"NVDA","close":180.99},{"date":"2025-12-22","symbol":"NVDA","close":183.69},{"date":"2025-12-23","symbol":"NVDA","close":189.21},{"date":"2025-12-24","symbol":"NVDA","close":188.61},{"date":"2025-12-26","symbol":"NVDA","close":190.53},{"date":"2025-12-29","symbol":"NVDA","close":188.22},{"date":"2025-12-30","symbol":"NVDA","close":187.54},{"date":"2025-12-31","symbol":"NVDA","close":186.5},{"date":"2026-01-02","symbol":"NVDA","close":188.85},{"date":"2026-01-05","symbol":"NVDA","close":188.12},{"date":"2026-01-06","symbol":"NVDA","close":187.24},{"date":"2026-01-07","symbol":"NVDA","close":189.11},{"date":"2026-01-08","symbol":"NVDA","close":185.04},{"date":"2026-01-09","symbol":"NVDA","close":184.86},{"date":"2026-01-12","symbol":"NVDA","close":184.94},{"date":"2026-01-13","symbol":"NVDA","close":185.81},{"date":"2026-01-14","symbol":"NVDA","close":183.14},{"date":"2026-01-15","symbol":"NVDA","close":187.05},{"date":"2026-01-16","symbol":"NVDA","close":186.23},{"date":"2026-01-20","symbol":"NVDA","close":178.07},{"date":"2026-01-21","symbol":"NVDA","close":183.32},{"date":"2026-01-22","symbol":"NVDA","close":184.84},{"date":"2026-01-23","symbol":"NVDA","close":187.67},{"date":"2026-01-26","symbol":"NVDA","close":186.47}],"metadata":{"date":{"type":"date","semanticType":"Date"},"symbol":{"type":"string","semanticType":"String"},"close":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n","source":["history"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"input_tables\": [...] // string[], describe names of the input tables that will be used in the transformation.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", 'boxplot'. \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"input_tables\", the names of a subset of input tables from [CONTEXT] section that will be used to achieve the user's goal.\n - **IMPORTANT** Note that the Table 1 in [CONTEXT] section is the table the user is currently viewing, it should take precedence if the user refers to insights about the \"current table\".\n - At the same time, leverage table information to determine which tables are relevant to the user's goal and should be used.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", \"boxplot\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - boxplot: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - (boxplot) Box plots: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical (optional for creating grouped boxplots), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the boxplot will be grouped automatically (items with the same x values will be grouped).\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE]. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n# from sklearn import ... # import from sklearn if you need it.\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- decide the function signature based on the number of tables you decided in the previous step \"input_tables\":\n - if you decide there will only be one input table, then function signature should be `def transform_data(df1)`\n - if you decided there will be k input tables, then function signature should be `def transform_data(df_1, df_2, ..., df_k)`.\n - instead of using generic names like df1, df2, ..., try to use intuitive table names for function arguments, for example, if you have input_tables: [\"City\", \"Weather\"]`, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes.\n - **VERY IMPORTANT** the number of arguments in the function signature must be the same as the number of tables provided in \"input_tables\", and the order of arguments must match the order of tables provided in \"input_tables\".\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[GOAL]\n\n1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compare overall closing price trends and volatility over time for each stock symbol on a single line chart.\",\n \"display_instruction\": \"Visualize **closing price** trends by **symbol** over **date**\",\n \"recommendation\": \"A line chart with time on the x-axis and closing price on the y-axis, colored by symbol, best shows comparative trajectories and volatility over time. The data only needs column selection, date normalization, and sorting to be visualization-ready.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"}],"trigger":{"tableId":"history","sourceTableIds":["history"],"instruction":"1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility.","displayInstruction":"Visualize **closing price** trends by **symbol** over **date**","chart":{"id":"chart-1769471233291","chartType":"Auto","encodingMap":{},"tableRef":"history","saved":false,"source":"trigger","unread":true},"resultTableId":"table-233476"},"explanation":{"status":"ok","concepts":[],"code":"- **Keep only the key fields**: selects the columns **`\"date\"`**, **`\"symbol\"`**, and **`\"close\"`** from the input data and **drops all other columns**.\n- **Standardize the date format**: converts **`date`** into a **string** in the **`\"YYYY-MM-DD\"`** format to ensure consistency (no time component, no different date formats).\n- **Order the data for time-series use**: **sorts** the rows first by **`symbol`** and then by **`date`** so that each stock’s closing prices are in **chronological order**, which is important for **line charts** or time-based analysis.\n- **Return the cleaned dataset**: outputs this **simplified and ordered** table as the final transformed data.","dialog":[{"role":"system","content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n"},{"role":"user","content":"[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n\n\n[EXPLANATION]\n"},{"role":"assistant","content":"[CODE EXPLANATION]\n\n- **Keep only the key fields**: selects the columns **`\"date\"`**, **`\"symbol\"`**, and **`\"close\"`** from the input data and **drops all other columns**.\n- **Standardize the date format**: converts **`date`** into a **string** in the **`\"YYYY-MM-DD\"`** format to ensure consistency (no time component, no different date formats).\n- **Order the data for time-series use**: **sorts** the rows first by **`symbol`** and then by **`date`** so that each stock’s closing prices are in **chronological order**, which is important for **line charts** or time-based analysis.\n- **Return the cleaned dataset**: outputs this **simplified and ordered** table as the final transformed data.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```"}],"agent":"CodeExplanationAgent"}},"anchored":false,"createdBy":"user","attachedMetadata":"","contentHash":"a2a0adc6"},{"id":"table-265247","displayId":"stock-ma","names":["date","symbol","close","value","ma_window"],"rows":[{"date":"2025-07-31","symbol":"AAPL","close":207.13,"value":207.13,"ma_window":20},{"date":"2025-08-01","symbol":"AAPL","close":201.95,"value":204.54,"ma_window":20},{"date":"2025-08-04","symbol":"AAPL","close":202.92,"value":204,"ma_window":20},{"date":"2025-08-05","symbol":"AAPL","close":202.49,"value":203.6225,"ma_window":20},{"date":"2025-08-06","symbol":"AAPL","close":212.8,"value":205.458,"ma_window":20},{"date":"2025-08-07","symbol":"AAPL","close":219.57,"value":207.81,"ma_window":20},{"date":"2025-08-08","symbol":"AAPL","close":228.87,"value":210.8185714286,"ma_window":20},{"date":"2025-08-11","symbol":"AAPL","close":226.96,"value":212.83625,"ma_window":20},{"date":"2025-08-12","symbol":"AAPL","close":229.43,"value":214.68,"ma_window":20},{"date":"2025-08-13","symbol":"AAPL","close":233.1,"value":216.522,"ma_window":20},{"date":"2025-08-14","symbol":"AAPL","close":232.55,"value":217.9790909091,"ma_window":20},{"date":"2025-08-15","symbol":"AAPL","close":231.37,"value":219.095,"ma_window":20},{"date":"2025-08-18","symbol":"AAPL","close":230.67,"value":219.9853846154,"ma_window":20},{"date":"2025-08-19","symbol":"AAPL","close":230.34,"value":220.725,"ma_window":20},{"date":"2025-08-20","symbol":"AAPL","close":225.79,"value":221.0626666667,"ma_window":20},{"date":"2025-08-21","symbol":"AAPL","close":224.68,"value":221.28875,"ma_window":20},{"date":"2025-08-22","symbol":"AAPL","close":227.54,"value":221.6564705882,"ma_window":20},{"date":"2025-08-25","symbol":"AAPL","close":226.94,"value":221.95,"ma_window":20},{"date":"2025-08-26","symbol":"AAPL","close":229.09,"value":222.3257894737,"ma_window":20},{"date":"2025-08-27","symbol":"AAPL","close":230.27,"value":222.723,"ma_window":20},{"date":"2025-08-28","symbol":"AAPL","close":232.33,"value":223.983,"ma_window":20},{"date":"2025-08-29","symbol":"AAPL","close":231.92,"value":225.4815,"ma_window":20},{"date":"2025-09-02","symbol":"AAPL","close":229.5,"value":226.8105,"ma_window":20},{"date":"2025-09-03","symbol":"AAPL","close":238.24,"value":228.598,"ma_window":20},{"date":"2025-09-04","symbol":"AAPL","close":239.55,"value":229.9355,"ma_window":20},{"date":"2025-09-05","symbol":"AAPL","close":239.46,"value":230.93,"ma_window":20},{"date":"2025-09-08","symbol":"AAPL","close":237.65,"value":231.369,"ma_window":20},{"date":"2025-09-09","symbol":"AAPL","close":234.12,"value":231.727,"ma_window":20},{"date":"2025-09-10","symbol":"AAPL","close":226.57,"value":231.584,"ma_window":20},{"date":"2025-09-11","symbol":"AAPL","close":229.81,"value":231.4195,"ma_window":20},{"date":"2025-09-12","symbol":"AAPL","close":233.84,"value":231.484,"ma_window":20},{"date":"2025-09-15","symbol":"AAPL","close":236.47,"value":231.739,"ma_window":20},{"date":"2025-09-16","symbol":"AAPL","close":237.92,"value":232.1015,"ma_window":20},{"date":"2025-09-17","symbol":"AAPL","close":238.76,"value":232.5225,"ma_window":20},{"date":"2025-09-18","symbol":"AAPL","close":237.65,"value":233.1155,"ma_window":20},{"date":"2025-09-19","symbol":"AAPL","close":245.26,"value":234.1445,"ma_window":20},{"date":"2025-09-22","symbol":"AAPL","close":255.83,"value":235.559,"ma_window":20},{"date":"2025-09-23","symbol":"AAPL","close":254.18,"value":236.921,"ma_window":20},{"date":"2025-09-24","symbol":"AAPL","close":252.07,"value":238.07,"ma_window":20},{"date":"2025-09-25","symbol":"AAPL","close":256.62,"value":239.3875,"ma_window":20},{"date":"2025-09-26","symbol":"AAPL","close":255.21,"value":240.5315,"ma_window":20},{"date":"2025-09-29","symbol":"AAPL","close":254.18,"value":241.6445,"ma_window":20},{"date":"2025-09-30","symbol":"AAPL","close":254.38,"value":242.8885,"ma_window":20},{"date":"2025-10-01","symbol":"AAPL","close":255.2,"value":243.7365,"ma_window":20},{"date":"2025-10-02","symbol":"AAPL","close":256.88,"value":244.603,"ma_window":20},{"date":"2025-10-03","symbol":"AAPL","close":257.77,"value":245.5185,"ma_window":20},{"date":"2025-10-06","symbol":"AAPL","close":256.44,"value":246.458,"ma_window":20},{"date":"2025-10-07","symbol":"AAPL","close":256.23,"value":247.5635,"ma_window":20},{"date":"2025-10-08","symbol":"AAPL","close":257.81,"value":249.1255,"ma_window":20},{"date":"2025-10-09","symbol":"AAPL","close":253.79,"value":250.3245,"ma_window":20},{"date":"2025-10-10","symbol":"AAPL","close":245.03,"value":250.884,"ma_window":20},{"date":"2025-10-13","symbol":"AAPL","close":247.42,"value":251.4315,"ma_window":20},{"date":"2025-10-14","symbol":"AAPL","close":247.53,"value":251.912,"ma_window":20},{"date":"2025-10-15","symbol":"AAPL","close":249.1,"value":252.429,"ma_window":20},{"date":"2025-10-16","symbol":"AAPL","close":247.21,"value":252.907,"ma_window":20},{"date":"2025-10-17","symbol":"AAPL","close":252.05,"value":253.2465,"ma_window":20},{"date":"2025-10-20","symbol":"AAPL","close":261.99,"value":253.5545,"ma_window":20},{"date":"2025-10-21","symbol":"AAPL","close":262.52,"value":253.9715,"ma_window":20},{"date":"2025-10-22","symbol":"AAPL","close":258.2,"value":254.278,"ma_window":20},{"date":"2025-10-23","symbol":"AAPL","close":259.33,"value":254.4135,"ma_window":20},{"date":"2025-10-24","symbol":"AAPL","close":262.57,"value":254.7815,"ma_window":20},{"date":"2025-10-27","symbol":"AAPL","close":268.55,"value":255.5,"ma_window":20},{"date":"2025-10-28","symbol":"AAPL","close":268.74,"value":256.218,"ma_window":20},{"date":"2025-10-29","symbol":"AAPL","close":269.44,"value":256.93,"ma_window":20},{"date":"2025-10-30","symbol":"AAPL","close":271.14,"value":257.643,"ma_window":20},{"date":"2025-10-31","symbol":"AAPL","close":270.11,"value":258.26,"ma_window":20},{"date":"2025-11-03","symbol":"AAPL","close":268.79,"value":258.8775,"ma_window":20},{"date":"2025-11-04","symbol":"AAPL","close":269.78,"value":259.555,"ma_window":20},{"date":"2025-11-05","symbol":"AAPL","close":269.88,"value":260.1585,"ma_window":20},{"date":"2025-11-06","symbol":"AAPL","close":269.51,"value":260.9445,"ma_window":20},{"date":"2025-11-07","symbol":"AAPL","close":268.21,"value":262.1035,"ma_window":20},{"date":"2025-11-10","symbol":"AAPL","close":269.43,"value":263.204,"ma_window":20},{"date":"2025-11-11","symbol":"AAPL","close":275.25,"value":264.59,"ma_window":20},{"date":"2025-11-12","symbol":"AAPL","close":273.47,"value":265.8085,"ma_window":20},{"date":"2025-11-13","symbol":"AAPL","close":272.95,"value":267.0955,"ma_window":20},{"date":"2025-11-14","symbol":"AAPL","close":272.41,"value":268.1135,"ma_window":20},{"date":"2025-11-17","symbol":"AAPL","close":267.46,"value":268.387,"ma_window":20},{"date":"2025-11-18","symbol":"AAPL","close":267.44,"value":268.633,"ma_window":20},{"date":"2025-11-19","symbol":"AAPL","close":268.56,"value":269.151,"ma_window":20},{"date":"2025-11-20","symbol":"AAPL","close":266.25,"value":269.497,"ma_window":20},{"date":"2025-11-21","symbol":"AAPL","close":271.49,"value":269.943,"ma_window":20},{"date":"2025-11-24","symbol":"AAPL","close":275.92,"value":270.3115,"ma_window":20},{"date":"2025-11-25","symbol":"AAPL","close":276.97,"value":270.723,"ma_window":20},{"date":"2025-11-26","symbol":"AAPL","close":277.55,"value":271.1285,"ma_window":20},{"date":"2025-11-28","symbol":"AAPL","close":278.85,"value":271.514,"ma_window":20},{"date":"2025-12-01","symbol":"AAPL","close":283.1,"value":272.1635,"ma_window":20},{"date":"2025-12-02","symbol":"AAPL","close":286.19,"value":273.0335,"ma_window":20},{"date":"2025-12-03","symbol":"AAPL","close":284.15,"value":273.752,"ma_window":20},{"date":"2025-12-04","symbol":"AAPL","close":280.7,"value":274.293,"ma_window":20},{"date":"2025-12-05","symbol":"AAPL","close":278.78,"value":274.7565,"ma_window":20},{"date":"2025-12-08","symbol":"AAPL","close":277.89,"value":275.2405,"ma_window":20},{"date":"2025-12-09","symbol":"AAPL","close":277.18,"value":275.628,"ma_window":20},{"date":"2025-12-10","symbol":"AAPL","close":278.78,"value":275.8045,"ma_window":20},{"date":"2025-12-11","symbol":"AAPL","close":278.03,"value":276.0325,"ma_window":20},{"date":"2025-12-12","symbol":"AAPL","close":278.28,"value":276.299,"ma_window":20},{"date":"2025-12-15","symbol":"AAPL","close":274.11,"value":276.384,"ma_window":20},{"date":"2025-12-16","symbol":"AAPL","close":274.61,"value":276.7415,"ma_window":20},{"date":"2025-12-17","symbol":"AAPL","close":271.84,"value":276.9615,"ma_window":20},{"date":"2025-12-18","symbol":"AAPL","close":272.19,"value":277.143,"ma_window":20},{"date":"2025-12-19","symbol":"AAPL","close":273.67,"value":277.514,"ma_window":20},{"date":"2025-12-22","symbol":"AAPL","close":270.97,"value":277.488,"ma_window":20},{"date":"2025-12-23","symbol":"AAPL","close":272.36,"value":277.31,"ma_window":20},{"date":"2025-12-24","symbol":"AAPL","close":273.81,"value":277.152,"ma_window":20},{"date":"2025-12-26","symbol":"AAPL","close":273.4,"value":276.9445,"ma_window":20},{"date":"2025-12-29","symbol":"AAPL","close":273.76,"value":276.69,"ma_window":20},{"date":"2025-12-30","symbol":"AAPL","close":273.08,"value":276.189,"ma_window":20},{"date":"2025-12-31","symbol":"AAPL","close":271.86,"value":275.4725,"ma_window":20},{"date":"2026-01-02","symbol":"AAPL","close":271.01,"value":274.8155,"ma_window":20},{"date":"2026-01-05","symbol":"AAPL","close":267.26,"value":274.1435,"ma_window":20},{"date":"2026-01-06","symbol":"AAPL","close":262.36,"value":273.3225,"ma_window":20},{"date":"2026-01-07","symbol":"AAPL","close":260.33,"value":272.4445,"ma_window":20},{"date":"2026-01-08","symbol":"AAPL","close":259.04,"value":271.5375,"ma_window":20},{"date":"2026-01-09","symbol":"AAPL","close":259.37,"value":270.567,"ma_window":20},{"date":"2026-01-12","symbol":"AAPL","close":260.25,"value":269.678,"ma_window":20},{"date":"2026-01-13","symbol":"AAPL","close":261.05,"value":268.8165,"ma_window":20},{"date":"2026-01-14","symbol":"AAPL","close":259.96,"value":268.109,"ma_window":20},{"date":"2026-01-15","symbol":"AAPL","close":258.21,"value":267.289,"ma_window":20},{"date":"2026-01-16","symbol":"AAPL","close":255.53,"value":266.4735,"ma_window":20},{"date":"2026-01-20","symbol":"AAPL","close":246.7,"value":265.199,"ma_window":20},{"date":"2026-01-21","symbol":"AAPL","close":247.65,"value":263.898,"ma_window":20},{"date":"2026-01-22","symbol":"AAPL","close":248.35,"value":262.767,"ma_window":20},{"date":"2026-01-23","symbol":"AAPL","close":248.04,"value":261.551,"ma_window":20},{"date":"2026-01-26","symbol":"AAPL","close":255.41,"value":260.631,"ma_window":20},{"date":"2025-07-31","symbol":"AMZN","close":234.11,"value":234.11,"ma_window":20},{"date":"2025-08-01","symbol":"AMZN","close":214.75,"value":224.43,"ma_window":20},{"date":"2025-08-04","symbol":"AMZN","close":211.65,"value":220.17,"ma_window":20},{"date":"2025-08-05","symbol":"AMZN","close":213.75,"value":218.565,"ma_window":20},{"date":"2025-08-06","symbol":"AMZN","close":222.31,"value":219.314,"ma_window":20},{"date":"2025-08-07","symbol":"AMZN","close":223.13,"value":219.95,"ma_window":20},{"date":"2025-08-08","symbol":"AMZN","close":222.69,"value":220.3414285714,"ma_window":20},{"date":"2025-08-11","symbol":"AMZN","close":221.3,"value":220.46125,"ma_window":20},{"date":"2025-08-12","symbol":"AMZN","close":221.47,"value":220.5733333333,"ma_window":20},{"date":"2025-08-13","symbol":"AMZN","close":224.56,"value":220.972,"ma_window":20},{"date":"2025-08-14","symbol":"AMZN","close":230.98,"value":221.8818181818,"ma_window":20},{"date":"2025-08-15","symbol":"AMZN","close":231.03,"value":222.6441666667,"ma_window":20},{"date":"2025-08-18","symbol":"AMZN","close":231.49,"value":223.3246153846,"ma_window":20},{"date":"2025-08-19","symbol":"AMZN","close":228.01,"value":223.6592857143,"ma_window":20},{"date":"2025-08-20","symbol":"AMZN","close":223.81,"value":223.6693333333,"ma_window":20},{"date":"2025-08-21","symbol":"AMZN","close":221.95,"value":223.561875,"ma_window":20},{"date":"2025-08-22","symbol":"AMZN","close":228.84,"value":223.8723529412,"ma_window":20},{"date":"2025-08-25","symbol":"AMZN","close":227.94,"value":224.0983333333,"ma_window":20},{"date":"2025-08-26","symbol":"AMZN","close":228.71,"value":224.3410526316,"ma_window":20},{"date":"2025-08-27","symbol":"AMZN","close":229.12,"value":224.58,"ma_window":20},{"date":"2025-08-28","symbol":"AMZN","close":231.6,"value":224.4545,"ma_window":20},{"date":"2025-08-29","symbol":"AMZN","close":229,"value":225.167,"ma_window":20},{"date":"2025-09-02","symbol":"AMZN","close":225.34,"value":225.8515,"ma_window":20},{"date":"2025-09-03","symbol":"AMZN","close":225.99,"value":226.4635,"ma_window":20},{"date":"2025-09-04","symbol":"AMZN","close":235.68,"value":227.132,"ma_window":20},{"date":"2025-09-05","symbol":"AMZN","close":232.33,"value":227.592,"ma_window":20},{"date":"2025-09-08","symbol":"AMZN","close":235.84,"value":228.2495,"ma_window":20},{"date":"2025-09-09","symbol":"AMZN","close":238.24,"value":229.0965,"ma_window":20},{"date":"2025-09-10","symbol":"AMZN","close":230.33,"value":229.5395,"ma_window":20},{"date":"2025-09-11","symbol":"AMZN","close":229.95,"value":229.809,"ma_window":20},{"date":"2025-09-12","symbol":"AMZN","close":228.15,"value":229.6675,"ma_window":20},{"date":"2025-09-15","symbol":"AMZN","close":231.43,"value":229.6875,"ma_window":20},{"date":"2025-09-16","symbol":"AMZN","close":234.05,"value":229.8155,"ma_window":20},{"date":"2025-09-17","symbol":"AMZN","close":231.62,"value":229.996,"ma_window":20},{"date":"2025-09-18","symbol":"AMZN","close":231.23,"value":230.367,"ma_window":20},{"date":"2025-09-19","symbol":"AMZN","close":231.48,"value":230.8435,"ma_window":20},{"date":"2025-09-22","symbol":"AMZN","close":227.63,"value":230.783,"ma_window":20},{"date":"2025-09-23","symbol":"AMZN","close":220.71,"value":230.4215,"ma_window":20},{"date":"2025-09-24","symbol":"AMZN","close":220.21,"value":229.9965,"ma_window":20},{"date":"2025-09-25","symbol":"AMZN","close":218.15,"value":229.448,"ma_window":20},{"date":"2025-09-26","symbol":"AMZN","close":219.78,"value":228.857,"ma_window":20},{"date":"2025-09-29","symbol":"AMZN","close":222.17,"value":228.5155,"ma_window":20},{"date":"2025-09-30","symbol":"AMZN","close":219.57,"value":228.227,"ma_window":20},{"date":"2025-10-01","symbol":"AMZN","close":220.63,"value":227.959,"ma_window":20},{"date":"2025-10-02","symbol":"AMZN","close":222.41,"value":227.2955,"ma_window":20},{"date":"2025-10-03","symbol":"AMZN","close":219.51,"value":226.6545,"ma_window":20},{"date":"2025-10-06","symbol":"AMZN","close":220.9,"value":225.9075,"ma_window":20},{"date":"2025-10-07","symbol":"AMZN","close":221.78,"value":225.0845,"ma_window":20},{"date":"2025-10-08","symbol":"AMZN","close":225.22,"value":224.829,"ma_window":20},{"date":"2025-10-09","symbol":"AMZN","close":227.74,"value":224.7185,"ma_window":20},{"date":"2025-10-10","symbol":"AMZN","close":216.37,"value":224.1295,"ma_window":20},{"date":"2025-10-13","symbol":"AMZN","close":220.07,"value":223.5615,"ma_window":20},{"date":"2025-10-14","symbol":"AMZN","close":216.39,"value":222.6785,"ma_window":20},{"date":"2025-10-15","symbol":"AMZN","close":215.57,"value":221.876,"ma_window":20},{"date":"2025-10-16","symbol":"AMZN","close":214.47,"value":221.038,"ma_window":20},{"date":"2025-10-17","symbol":"AMZN","close":213.04,"value":220.116,"ma_window":20},{"date":"2025-10-20","symbol":"AMZN","close":216.48,"value":219.5585,"ma_window":20},{"date":"2025-10-21","symbol":"AMZN","close":222.03,"value":219.6245,"ma_window":20},{"date":"2025-10-22","symbol":"AMZN","close":217.95,"value":219.5115,"ma_window":20},{"date":"2025-10-23","symbol":"AMZN","close":221.09,"value":219.6585,"ma_window":20},{"date":"2025-10-24","symbol":"AMZN","close":224.21,"value":219.88,"ma_window":20},{"date":"2025-10-27","symbol":"AMZN","close":226.97,"value":220.12,"ma_window":20},{"date":"2025-10-28","symbol":"AMZN","close":229.25,"value":220.604,"ma_window":20},{"date":"2025-10-29","symbol":"AMZN","close":230.3,"value":221.0875,"ma_window":20},{"date":"2025-10-30","symbol":"AMZN","close":222.86,"value":221.11,"ma_window":20},{"date":"2025-10-31","symbol":"AMZN","close":244.22,"value":222.3455,"ma_window":20},{"date":"2025-11-03","symbol":"AMZN","close":254,"value":224.0005,"ma_window":20},{"date":"2025-11-04","symbol":"AMZN","close":249.32,"value":225.3775,"ma_window":20},{"date":"2025-11-05","symbol":"AMZN","close":250.2,"value":226.6265,"ma_window":20},{"date":"2025-11-06","symbol":"AMZN","close":243.04,"value":227.3915,"ma_window":20},{"date":"2025-11-07","symbol":"AMZN","close":244.41,"value":228.7935,"ma_window":20},{"date":"2025-11-10","symbol":"AMZN","close":248.4,"value":230.21,"ma_window":20},{"date":"2025-11-11","symbol":"AMZN","close":249.1,"value":231.8455,"ma_window":20},{"date":"2025-11-12","symbol":"AMZN","close":244.2,"value":233.277,"ma_window":20},{"date":"2025-11-13","symbol":"AMZN","close":237.58,"value":234.4325,"ma_window":20},{"date":"2025-11-14","symbol":"AMZN","close":234.69,"value":235.515,"ma_window":20},{"date":"2025-11-17","symbol":"AMZN","close":232.87,"value":236.3345,"ma_window":20},{"date":"2025-11-18","symbol":"AMZN","close":222.55,"value":236.3605,"ma_window":20},{"date":"2025-11-19","symbol":"AMZN","close":222.69,"value":236.5975,"ma_window":20},{"date":"2025-11-20","symbol":"AMZN","close":217.14,"value":236.4,"ma_window":20},{"date":"2025-11-21","symbol":"AMZN","close":220.69,"value":236.224,"ma_window":20},{"date":"2025-11-24","symbol":"AMZN","close":226.28,"value":236.1895,"ma_window":20},{"date":"2025-11-25","symbol":"AMZN","close":229.67,"value":236.2105,"ma_window":20},{"date":"2025-11-26","symbol":"AMZN","close":229.16,"value":236.1535,"ma_window":20},{"date":"2025-11-28","symbol":"AMZN","close":233.22,"value":236.6715,"ma_window":20},{"date":"2025-12-01","symbol":"AMZN","close":233.88,"value":236.1545,"ma_window":20},{"date":"2025-12-02","symbol":"AMZN","close":234.42,"value":235.1755,"ma_window":20},{"date":"2025-12-03","symbol":"AMZN","close":232.38,"value":234.3285,"ma_window":20},{"date":"2025-12-04","symbol":"AMZN","close":229.11,"value":233.274,"ma_window":20},{"date":"2025-12-05","symbol":"AMZN","close":229.53,"value":232.5985,"ma_window":20},{"date":"2025-12-08","symbol":"AMZN","close":226.89,"value":231.7225,"ma_window":20},{"date":"2025-12-09","symbol":"AMZN","close":227.92,"value":230.6985,"ma_window":20},{"date":"2025-12-10","symbol":"AMZN","close":231.78,"value":229.8325,"ma_window":20},{"date":"2025-12-11","symbol":"AMZN","close":230.28,"value":229.1365,"ma_window":20},{"date":"2025-12-12","symbol":"AMZN","close":226.19,"value":228.567,"ma_window":20},{"date":"2025-12-15","symbol":"AMZN","close":222.54,"value":227.9595,"ma_window":20},{"date":"2025-12-16","symbol":"AMZN","close":222.56,"value":227.444,"ma_window":20},{"date":"2025-12-17","symbol":"AMZN","close":221.27,"value":227.38,"ma_window":20},{"date":"2025-12-18","symbol":"AMZN","close":226.76,"value":227.5835,"ma_window":20},{"date":"2025-12-19","symbol":"AMZN","close":227.35,"value":228.094,"ma_window":20},{"date":"2025-12-22","symbol":"AMZN","close":228.43,"value":228.481,"ma_window":20},{"date":"2025-12-23","symbol":"AMZN","close":232.14,"value":228.774,"ma_window":20},{"date":"2025-12-24","symbol":"AMZN","close":232.38,"value":228.9095,"ma_window":20},{"date":"2025-12-26","symbol":"AMZN","close":232.52,"value":229.0775,"ma_window":20},{"date":"2025-12-29","symbol":"AMZN","close":232.07,"value":229.02,"ma_window":20},{"date":"2025-12-30","symbol":"AMZN","close":232.53,"value":228.9525,"ma_window":20},{"date":"2025-12-31","symbol":"AMZN","close":230.82,"value":228.7725,"ma_window":20},{"date":"2026-01-02","symbol":"AMZN","close":226.5,"value":228.4785,"ma_window":20},{"date":"2026-01-05","symbol":"AMZN","close":233.06,"value":228.676,"ma_window":20},{"date":"2026-01-06","symbol":"AMZN","close":240.93,"value":229.246,"ma_window":20},{"date":"2026-01-07","symbol":"AMZN","close":241.56,"value":229.9795,"ma_window":20},{"date":"2026-01-08","symbol":"AMZN","close":246.29,"value":230.898,"ma_window":20},{"date":"2026-01-09","symbol":"AMZN","close":247.38,"value":231.678,"ma_window":20},{"date":"2026-01-12","symbol":"AMZN","close":246.47,"value":232.4875,"ma_window":20},{"date":"2026-01-13","symbol":"AMZN","close":242.6,"value":233.308,"ma_window":20},{"date":"2026-01-14","symbol":"AMZN","close":236.65,"value":234.0135,"ma_window":20},{"date":"2026-01-15","symbol":"AMZN","close":238.18,"value":234.7945,"ma_window":20},{"date":"2026-01-16","symbol":"AMZN","close":239.12,"value":235.687,"ma_window":20},{"date":"2026-01-20","symbol":"AMZN","close":231,"value":235.899,"ma_window":20},{"date":"2026-01-21","symbol":"AMZN","close":231.31,"value":236.097,"ma_window":20},{"date":"2026-01-22","symbol":"AMZN","close":234.34,"value":236.3925,"ma_window":20},{"date":"2026-01-23","symbol":"AMZN","close":239.16,"value":236.7435,"ma_window":20},{"date":"2026-01-26","symbol":"AMZN","close":238.42,"value":237.0455,"ma_window":20},{"date":"2025-07-31","symbol":"GOOGL","close":191.6,"value":191.6,"ma_window":20},{"date":"2025-08-01","symbol":"GOOGL","close":188.84,"value":190.22,"ma_window":20},{"date":"2025-08-04","symbol":"GOOGL","close":194.74,"value":191.7266666667,"ma_window":20},{"date":"2025-08-05","symbol":"GOOGL","close":194.37,"value":192.3875,"ma_window":20},{"date":"2025-08-06","symbol":"GOOGL","close":195.79,"value":193.068,"ma_window":20},{"date":"2025-08-07","symbol":"GOOGL","close":196.22,"value":193.5933333333,"ma_window":20},{"date":"2025-08-08","symbol":"GOOGL","close":201.11,"value":194.6671428571,"ma_window":20},{"date":"2025-08-11","symbol":"GOOGL","close":200.69,"value":195.42,"ma_window":20},{"date":"2025-08-12","symbol":"GOOGL","close":203.03,"value":196.2655555556,"ma_window":20},{"date":"2025-08-13","symbol":"GOOGL","close":201.65,"value":196.804,"ma_window":20},{"date":"2025-08-14","symbol":"GOOGL","close":202.63,"value":197.3336363636,"ma_window":20},{"date":"2025-08-15","symbol":"GOOGL","close":203.58,"value":197.8541666667,"ma_window":20},{"date":"2025-08-18","symbol":"GOOGL","close":203.19,"value":198.2646153846,"ma_window":20},{"date":"2025-08-19","symbol":"GOOGL","close":201.26,"value":198.4785714286,"ma_window":20},{"date":"2025-08-20","symbol":"GOOGL","close":199.01,"value":198.514,"ma_window":20},{"date":"2025-08-21","symbol":"GOOGL","close":199.44,"value":198.571875,"ma_window":20},{"date":"2025-08-22","symbol":"GOOGL","close":205.77,"value":198.9952941176,"ma_window":20},{"date":"2025-08-25","symbol":"GOOGL","close":208.17,"value":199.505,"ma_window":20},{"date":"2025-08-26","symbol":"GOOGL","close":206.82,"value":199.89,"ma_window":20},{"date":"2025-08-27","symbol":"GOOGL","close":207.16,"value":200.2535,"ma_window":20},{"date":"2025-08-28","symbol":"GOOGL","close":211.31,"value":201.239,"ma_window":20},{"date":"2025-08-29","symbol":"GOOGL","close":212.58,"value":202.426,"ma_window":20},{"date":"2025-09-02","symbol":"GOOGL","close":211.02,"value":203.24,"ma_window":20},{"date":"2025-09-03","symbol":"GOOGL","close":230.3,"value":205.0365,"ma_window":20},{"date":"2025-09-04","symbol":"GOOGL","close":231.94,"value":206.844,"ma_window":20},{"date":"2025-09-05","symbol":"GOOGL","close":234.64,"value":208.765,"ma_window":20},{"date":"2025-09-08","symbol":"GOOGL","close":233.89,"value":210.404,"ma_window":20},{"date":"2025-09-09","symbol":"GOOGL","close":239.47,"value":212.343,"ma_window":20},{"date":"2025-09-10","symbol":"GOOGL","close":239.01,"value":214.142,"ma_window":20},{"date":"2025-09-11","symbol":"GOOGL","close":240.21,"value":216.07,"ma_window":20},{"date":"2025-09-12","symbol":"GOOGL","close":240.64,"value":217.9705,"ma_window":20},{"date":"2025-09-15","symbol":"GOOGL","close":251.45,"value":220.364,"ma_window":20},{"date":"2025-09-16","symbol":"GOOGL","close":251,"value":222.7545,"ma_window":20},{"date":"2025-09-17","symbol":"GOOGL","close":249.37,"value":225.16,"ma_window":20},{"date":"2025-09-18","symbol":"GOOGL","close":251.87,"value":227.803,"ma_window":20},{"date":"2025-09-19","symbol":"GOOGL","close":254.55,"value":230.5585,"ma_window":20},{"date":"2025-09-22","symbol":"GOOGL","close":252.36,"value":232.888,"ma_window":20},{"date":"2025-09-23","symbol":"GOOGL","close":251.5,"value":235.0545,"ma_window":20},{"date":"2025-09-24","symbol":"GOOGL","close":246.98,"value":237.0625,"ma_window":20},{"date":"2025-09-25","symbol":"GOOGL","close":245.63,"value":238.986,"ma_window":20},{"date":"2025-09-26","symbol":"GOOGL","close":246.38,"value":240.7395,"ma_window":20},{"date":"2025-09-29","symbol":"GOOGL","close":243.89,"value":242.305,"ma_window":20},{"date":"2025-09-30","symbol":"GOOGL","close":242.94,"value":243.901,"ma_window":20},{"date":"2025-10-01","symbol":"GOOGL","close":244.74,"value":244.623,"ma_window":20},{"date":"2025-10-02","symbol":"GOOGL","close":245.53,"value":245.3025,"ma_window":20},{"date":"2025-10-03","symbol":"GOOGL","close":245.19,"value":245.83,"ma_window":20},{"date":"2025-10-06","symbol":"GOOGL","close":250.27,"value":246.649,"ma_window":20},{"date":"2025-10-07","symbol":"GOOGL","close":245.6,"value":246.9555,"ma_window":20},{"date":"2025-10-08","symbol":"GOOGL","close":244.46,"value":247.228,"ma_window":20},{"date":"2025-10-09","symbol":"GOOGL","close":241.37,"value":247.286,"ma_window":20},{"date":"2025-10-10","symbol":"GOOGL","close":236.42,"value":247.075,"ma_window":20},{"date":"2025-10-13","symbol":"GOOGL","close":243.99,"value":246.702,"ma_window":20},{"date":"2025-10-14","symbol":"GOOGL","close":245.29,"value":246.4165,"ma_window":20},{"date":"2025-10-15","symbol":"GOOGL","close":250.87,"value":246.4915,"ma_window":20},{"date":"2025-10-16","symbol":"GOOGL","close":251.3,"value":246.463,"ma_window":20},{"date":"2025-10-17","symbol":"GOOGL","close":253.13,"value":246.392,"ma_window":20},{"date":"2025-10-20","symbol":"GOOGL","close":256.38,"value":246.593,"ma_window":20},{"date":"2025-10-21","symbol":"GOOGL","close":250.3,"value":246.533,"ma_window":20},{"date":"2025-10-22","symbol":"GOOGL","close":251.53,"value":246.7605,"ma_window":20},{"date":"2025-10-23","symbol":"GOOGL","close":252.91,"value":247.1245,"ma_window":20},{"date":"2025-10-24","symbol":"GOOGL","close":259.75,"value":247.793,"ma_window":20},{"date":"2025-10-27","symbol":"GOOGL","close":269.09,"value":249.053,"ma_window":20},{"date":"2025-10-28","symbol":"GOOGL","close":267.3,"value":250.271,"ma_window":20},{"date":"2025-10-29","symbol":"GOOGL","close":274.39,"value":251.7535,"ma_window":20},{"date":"2025-10-30","symbol":"GOOGL","close":281.3,"value":253.542,"ma_window":20},{"date":"2025-10-31","symbol":"GOOGL","close":281.01,"value":255.333,"ma_window":20},{"date":"2025-11-03","symbol":"GOOGL","close":283.53,"value":256.996,"ma_window":20},{"date":"2025-11-04","symbol":"GOOGL","close":277.36,"value":258.584,"ma_window":20},{"date":"2025-11-05","symbol":"GOOGL","close":284.12,"value":260.567,"ma_window":20},{"date":"2025-11-06","symbol":"GOOGL","close":284.56,"value":262.7265,"ma_window":20},{"date":"2025-11-07","symbol":"GOOGL","close":278.65,"value":264.838,"ma_window":20},{"date":"2025-11-10","symbol":"GOOGL","close":289.91,"value":267.134,"ma_window":20},{"date":"2025-11-11","symbol":"GOOGL","close":291.12,"value":269.4255,"ma_window":20},{"date":"2025-11-12","symbol":"GOOGL","close":286.52,"value":271.208,"ma_window":20},{"date":"2025-11-13","symbol":"GOOGL","close":278.39,"value":272.5625,"ma_window":20},{"date":"2025-11-14","symbol":"GOOGL","close":276.23,"value":273.7175,"ma_window":20},{"date":"2025-11-17","symbol":"GOOGL","close":284.83,"value":275.14,"ma_window":20},{"date":"2025-11-18","symbol":"GOOGL","close":284.09,"value":276.8295,"ma_window":20},{"date":"2025-11-19","symbol":"GOOGL","close":292.62,"value":278.884,"ma_window":20},{"date":"2025-11-20","symbol":"GOOGL","close":289.26,"value":280.7015,"ma_window":20},{"date":"2025-11-21","symbol":"GOOGL","close":299.46,"value":282.687,"ma_window":20},{"date":"2025-11-24","symbol":"GOOGL","close":318.37,"value":285.151,"ma_window":20},{"date":"2025-11-25","symbol":"GOOGL","close":323.23,"value":287.9475,"ma_window":20},{"date":"2025-11-26","symbol":"GOOGL","close":319.74,"value":290.215,"ma_window":20},{"date":"2025-11-28","symbol":"GOOGL","close":319.97,"value":292.1485,"ma_window":20},{"date":"2025-12-01","symbol":"GOOGL","close":314.68,"value":293.832,"ma_window":20},{"date":"2025-12-02","symbol":"GOOGL","close":315.6,"value":295.4355,"ma_window":20},{"date":"2025-12-03","symbol":"GOOGL","close":319.42,"value":297.5385,"ma_window":20},{"date":"2025-12-04","symbol":"GOOGL","close":317.41,"value":299.203,"ma_window":20},{"date":"2025-12-05","symbol":"GOOGL","close":321.06,"value":301.028,"ma_window":20},{"date":"2025-12-08","symbol":"GOOGL","close":313.72,"value":302.7815,"ma_window":20},{"date":"2025-12-09","symbol":"GOOGL","close":317.08,"value":304.14,"ma_window":20},{"date":"2025-12-10","symbol":"GOOGL","close":320.21,"value":305.5945,"ma_window":20},{"date":"2025-12-11","symbol":"GOOGL","close":312.43,"value":306.89,"ma_window":20},{"date":"2025-12-12","symbol":"GOOGL","close":309.29,"value":308.435,"ma_window":20},{"date":"2025-12-15","symbol":"GOOGL","close":308.22,"value":310.0345,"ma_window":20},{"date":"2025-12-16","symbol":"GOOGL","close":306.57,"value":311.1215,"ma_window":20},{"date":"2025-12-17","symbol":"GOOGL","close":296.72,"value":311.753,"ma_window":20},{"date":"2025-12-18","symbol":"GOOGL","close":302.46,"value":312.245,"ma_window":20},{"date":"2025-12-19","symbol":"GOOGL","close":307.16,"value":313.14,"ma_window":20},{"date":"2025-12-22","symbol":"GOOGL","close":309.78,"value":313.656,"ma_window":20},{"date":"2025-12-23","symbol":"GOOGL","close":314.35,"value":313.455,"ma_window":20},{"date":"2025-12-24","symbol":"GOOGL","close":314.09,"value":312.998,"ma_window":20},{"date":"2025-12-26","symbol":"GOOGL","close":313.51,"value":312.6865,"ma_window":20},{"date":"2025-12-29","symbol":"GOOGL","close":313.56,"value":312.366,"ma_window":20},{"date":"2025-12-30","symbol":"GOOGL","close":313.85,"value":312.3245,"ma_window":20},{"date":"2025-12-31","symbol":"GOOGL","close":313,"value":312.1945,"ma_window":20},{"date":"2026-01-02","symbol":"GOOGL","close":315.15,"value":311.981,"ma_window":20},{"date":"2026-01-05","symbol":"GOOGL","close":316.54,"value":311.9375,"ma_window":20},{"date":"2026-01-06","symbol":"GOOGL","close":314.34,"value":311.6015,"ma_window":20},{"date":"2026-01-07","symbol":"GOOGL","close":321.98,"value":312.0145,"ma_window":20},{"date":"2026-01-08","symbol":"GOOGL","close":325.44,"value":312.4325,"ma_window":20},{"date":"2026-01-09","symbol":"GOOGL","close":328.57,"value":312.8505,"ma_window":20},{"date":"2026-01-12","symbol":"GOOGL","close":331.86,"value":313.822,"ma_window":20},{"date":"2026-01-13","symbol":"GOOGL","close":335.97,"value":315.156,"ma_window":20},{"date":"2026-01-14","symbol":"GOOGL","close":335.84,"value":316.537,"ma_window":20},{"date":"2026-01-15","symbol":"GOOGL","close":332.78,"value":317.8475,"ma_window":20},{"date":"2026-01-16","symbol":"GOOGL","close":330,"value":319.5115,"ma_window":20},{"date":"2026-01-20","symbol":"GOOGL","close":322,"value":320.4885,"ma_window":20},{"date":"2026-01-21","symbol":"GOOGL","close":328.38,"value":321.5495,"ma_window":20},{"date":"2026-01-22","symbol":"GOOGL","close":330.54,"value":322.5875,"ma_window":20},{"date":"2026-01-23","symbol":"GOOGL","close":327.93,"value":323.2665,"ma_window":20},{"date":"2026-01-26","symbol":"GOOGL","close":333.26,"value":324.225,"ma_window":20},{"date":"2025-07-31","symbol":"META","close":772.29,"value":772.29,"ma_window":20},{"date":"2025-08-01","symbol":"META","close":748.89,"value":760.59,"ma_window":20},{"date":"2025-08-04","symbol":"META","close":775.21,"value":765.4633333333,"ma_window":20},{"date":"2025-08-05","symbol":"META","close":762.32,"value":764.6775,"ma_window":20},{"date":"2025-08-06","symbol":"META","close":770.84,"value":765.91,"ma_window":20},{"date":"2025-08-07","symbol":"META","close":760.7,"value":765.0416666667,"ma_window":20},{"date":"2025-08-08","symbol":"META","close":768.15,"value":765.4857142857,"ma_window":20},{"date":"2025-08-11","symbol":"META","close":764.73,"value":765.39125,"ma_window":20},{"date":"2025-08-12","symbol":"META","close":788.82,"value":767.9944444444,"ma_window":20},{"date":"2025-08-13","symbol":"META","close":778.92,"value":769.087,"ma_window":20},{"date":"2025-08-14","symbol":"META","close":780.97,"value":770.1672727273,"ma_window":20},{"date":"2025-08-15","symbol":"META","close":784.06,"value":771.325,"ma_window":20},{"date":"2025-08-18","symbol":"META","close":766.23,"value":770.9330769231,"ma_window":20},{"date":"2025-08-19","symbol":"META","close":750.36,"value":769.4635714286,"ma_window":20},{"date":"2025-08-20","symbol":"META","close":746.61,"value":767.94,"ma_window":20},{"date":"2025-08-21","symbol":"META","close":738,"value":766.06875,"ma_window":20},{"date":"2025-08-22","symbol":"META","close":753.67,"value":765.3394117647,"ma_window":20},{"date":"2025-08-25","symbol":"META","close":752.18,"value":764.6083333333,"ma_window":20},{"date":"2025-08-26","symbol":"META","close":752.98,"value":763.9963157895,"ma_window":20},{"date":"2025-08-27","symbol":"META","close":746.27,"value":763.11,"ma_window":20},{"date":"2025-08-28","symbol":"META","close":749.99,"value":761.995,"ma_window":20},{"date":"2025-08-29","symbol":"META","close":737.6,"value":761.4305,"ma_window":20},{"date":"2025-09-02","symbol":"META","close":734.02,"value":759.371,"ma_window":20},{"date":"2025-09-03","symbol":"META","close":735.95,"value":758.0525,"ma_window":20},{"date":"2025-09-04","symbol":"META","close":747.54,"value":756.8875,"ma_window":20},{"date":"2025-09-05","symbol":"META","close":751.33,"value":756.419,"ma_window":20},{"date":"2025-09-08","symbol":"META","close":751.18,"value":755.5705,"ma_window":20},{"date":"2025-09-09","symbol":"META","close":764.56,"value":755.562,"ma_window":20},{"date":"2025-09-10","symbol":"META","close":750.86,"value":753.664,"ma_window":20},{"date":"2025-09-11","symbol":"META","close":749.78,"value":752.207,"ma_window":20},{"date":"2025-09-12","symbol":"META","close":754.47,"value":750.882,"ma_window":20},{"date":"2025-09-15","symbol":"META","close":763.56,"value":749.857,"ma_window":20},{"date":"2025-09-16","symbol":"META","close":777.84,"value":750.4375,"ma_window":20},{"date":"2025-09-17","symbol":"META","close":774.57,"value":751.648,"ma_window":20},{"date":"2025-09-18","symbol":"META","close":779.09,"value":753.272,"ma_window":20},{"date":"2025-09-19","symbol":"META","close":777.22,"value":755.233,"ma_window":20},{"date":"2025-09-22","symbol":"META","close":764.54,"value":755.7765,"ma_window":20},{"date":"2025-09-23","symbol":"META","close":754.78,"value":755.9065,"ma_window":20},{"date":"2025-09-24","symbol":"META","close":760.04,"value":756.2595,"ma_window":20},{"date":"2025-09-25","symbol":"META","close":748.3,"value":756.361,"ma_window":20},{"date":"2025-09-26","symbol":"META","close":743.14,"value":756.0185,"ma_window":20},{"date":"2025-09-29","symbol":"META","close":742.79,"value":756.278,"ma_window":20},{"date":"2025-09-30","symbol":"META","close":733.78,"value":756.266,"ma_window":20},{"date":"2025-10-01","symbol":"META","close":716.76,"value":755.3065,"ma_window":20},{"date":"2025-10-02","symbol":"META","close":726.46,"value":754.2525,"ma_window":20},{"date":"2025-10-03","symbol":"META","close":709.98,"value":752.185,"ma_window":20},{"date":"2025-10-06","symbol":"META","close":715.08,"value":750.38,"ma_window":20},{"date":"2025-10-07","symbol":"META","close":712.5,"value":747.777,"ma_window":20},{"date":"2025-10-08","symbol":"META","close":717.26,"value":746.097,"ma_window":20},{"date":"2025-10-09","symbol":"META","close":732.91,"value":745.2535,"ma_window":20},{"date":"2025-10-10","symbol":"META","close":704.73,"value":742.7665,"ma_window":20},{"date":"2025-10-13","symbol":"META","close":715.12,"value":740.3445,"ma_window":20},{"date":"2025-10-14","symbol":"META","close":708.07,"value":736.856,"ma_window":20},{"date":"2025-10-15","symbol":"META","close":716.97,"value":733.976,"ma_window":20},{"date":"2025-10-16","symbol":"META","close":711.49,"value":730.596,"ma_window":20},{"date":"2025-10-17","symbol":"META","close":716.34,"value":727.552,"ma_window":20},{"date":"2025-10-20","symbol":"META","close":731.57,"value":725.9035,"ma_window":20},{"date":"2025-10-21","symbol":"META","close":732.67,"value":724.798,"ma_window":20},{"date":"2025-10-22","symbol":"META","close":732.81,"value":723.4365,"ma_window":20},{"date":"2025-10-23","symbol":"META","close":733.4,"value":722.6915,"ma_window":20},{"date":"2025-10-24","symbol":"META","close":737.76,"value":722.4225,"ma_window":20},{"date":"2025-10-27","symbol":"META","close":750.21,"value":722.7935,"ma_window":20},{"date":"2025-10-28","symbol":"META","close":750.83,"value":723.646,"ma_window":20},{"date":"2025-10-29","symbol":"META","close":751.06,"value":725.361,"ma_window":20},{"date":"2025-10-30","symbol":"META","close":665.93,"value":722.3345,"ma_window":20},{"date":"2025-10-31","symbol":"META","close":647.82,"value":719.2265,"ma_window":20},{"date":"2025-11-03","symbol":"META","close":637.19,"value":715.332,"ma_window":20},{"date":"2025-11-04","symbol":"META","close":626.81,"value":711.0475,"ma_window":20},{"date":"2025-11-05","symbol":"META","close":635.43,"value":706.956,"ma_window":20},{"date":"2025-11-06","symbol":"META","close":618.44,"value":701.2325,"ma_window":20},{"date":"2025-11-07","symbol":"META","close":621.2,"value":697.056,"ma_window":20},{"date":"2025-11-10","symbol":"META","close":631.25,"value":692.8625,"ma_window":20},{"date":"2025-11-11","symbol":"META","close":626.57,"value":688.7875,"ma_window":20},{"date":"2025-11-12","symbol":"META","close":608.51,"value":683.3645,"ma_window":20},{"date":"2025-11-13","symbol":"META","close":609.39,"value":678.2595,"ma_window":20},{"date":"2025-11-14","symbol":"META","close":608.96,"value":672.8905,"ma_window":20},{"date":"2025-11-17","symbol":"META","close":601.52,"value":666.388,"ma_window":20},{"date":"2025-11-18","symbol":"META","close":597.2,"value":659.6145,"ma_window":20},{"date":"2025-11-19","symbol":"META","close":589.84,"value":652.466,"ma_window":20},{"date":"2025-11-20","symbol":"META","close":588.67,"value":645.2295,"ma_window":20},{"date":"2025-11-21","symbol":"META","close":593.77,"value":638.03,"ma_window":20},{"date":"2025-11-24","symbol":"META","close":612.55,"value":631.147,"ma_window":20},{"date":"2025-11-25","symbol":"META","close":635.7,"value":625.3905,"ma_window":20},{"date":"2025-11-26","symbol":"META","close":633.09,"value":619.492,"ma_window":20},{"date":"2025-11-28","symbol":"META","close":647.42,"value":618.5665,"ma_window":20},{"date":"2025-12-01","symbol":"META","close":640.35,"value":618.193,"ma_window":20},{"date":"2025-12-02","symbol":"META","close":646.57,"value":618.662,"ma_window":20},{"date":"2025-12-03","symbol":"META","close":639.08,"value":619.2755,"ma_window":20},{"date":"2025-12-04","symbol":"META","close":660.99,"value":620.5535,"ma_window":20},{"date":"2025-12-05","symbol":"META","close":672.87,"value":623.275,"ma_window":20},{"date":"2025-12-08","symbol":"META","close":666.26,"value":625.528,"ma_window":20},{"date":"2025-12-09","symbol":"META","close":656.42,"value":626.7865,"ma_window":20},{"date":"2025-12-10","symbol":"META","close":649.6,"value":627.938,"ma_window":20},{"date":"2025-12-11","symbol":"META","close":652.18,"value":630.1215,"ma_window":20},{"date":"2025-12-12","symbol":"META","close":643.71,"value":631.8375,"ma_window":20},{"date":"2025-12-15","symbol":"META","close":647.51,"value":633.765,"ma_window":20},{"date":"2025-12-16","symbol":"META","close":657.15,"value":636.5465,"ma_window":20},{"date":"2025-12-17","symbol":"META","close":649.5,"value":639.1615,"ma_window":20},{"date":"2025-12-18","symbol":"META","close":664.45,"value":642.892,"ma_window":20},{"date":"2025-12-19","symbol":"META","close":658.77,"value":646.397,"ma_window":20},{"date":"2025-12-22","symbol":"META","close":661.5,"value":649.7835,"ma_window":20},{"date":"2025-12-23","symbol":"META","close":664.94,"value":652.403,"ma_window":20},{"date":"2025-12-24","symbol":"META","close":667.55,"value":653.9955,"ma_window":20},{"date":"2025-12-26","symbol":"META","close":663.29,"value":655.5055,"ma_window":20},{"date":"2025-12-29","symbol":"META","close":658.69,"value":656.069,"ma_window":20},{"date":"2025-12-30","symbol":"META","close":665.95,"value":657.349,"ma_window":20},{"date":"2025-12-31","symbol":"META","close":660.09,"value":658.025,"ma_window":20},{"date":"2026-01-02","symbol":"META","close":650.41,"value":658.5915,"ma_window":20},{"date":"2026-01-05","symbol":"META","close":658.79,"value":658.4815,"ma_window":20},{"date":"2026-01-06","symbol":"META","close":660.62,"value":657.869,"ma_window":20},{"date":"2026-01-07","symbol":"META","close":648.69,"value":656.9905,"ma_window":20},{"date":"2026-01-08","symbol":"META","close":646.06,"value":656.4725,"ma_window":20},{"date":"2026-01-09","symbol":"META","close":653.06,"value":656.6455,"ma_window":20},{"date":"2026-01-12","symbol":"META","close":641.97,"value":656.135,"ma_window":20},{"date":"2026-01-13","symbol":"META","close":631.09,"value":655.504,"ma_window":20},{"date":"2026-01-14","symbol":"META","close":615.52,"value":653.9045,"ma_window":20},{"date":"2026-01-15","symbol":"META","close":620.8,"value":652.087,"ma_window":20},{"date":"2026-01-16","symbol":"META","close":620.25,"value":650.6245,"ma_window":20},{"date":"2026-01-20","symbol":"META","close":604.12,"value":647.608,"ma_window":20},{"date":"2026-01-21","symbol":"META","close":612.96,"value":645.3175,"ma_window":20},{"date":"2026-01-22","symbol":"META","close":647.63,"value":644.624,"ma_window":20},{"date":"2026-01-23","symbol":"META","close":658.76,"value":644.315,"ma_window":20},{"date":"2026-01-26","symbol":"META","close":672.36,"value":644.5555,"ma_window":20},{"date":"2025-07-31","symbol":"MSFT","close":531.63,"value":531.63,"ma_window":20},{"date":"2025-08-01","symbol":"MSFT","close":522.27,"value":526.95,"ma_window":20},{"date":"2025-08-04","symbol":"MSFT","close":533.76,"value":529.22,"ma_window":20},{"date":"2025-08-05","symbol":"MSFT","close":525.9,"value":528.39,"ma_window":20},{"date":"2025-08-06","symbol":"MSFT","close":523.1,"value":527.332,"ma_window":20},{"date":"2025-08-07","symbol":"MSFT","close":519.01,"value":525.945,"ma_window":20},{"date":"2025-08-08","symbol":"MSFT","close":520.21,"value":525.1257142857,"ma_window":20},{"date":"2025-08-11","symbol":"MSFT","close":519.94,"value":524.4775,"ma_window":20},{"date":"2025-08-12","symbol":"MSFT","close":527.38,"value":524.8,"ma_window":20},{"date":"2025-08-13","symbol":"MSFT","close":518.75,"value":524.195,"ma_window":20},{"date":"2025-08-14","symbol":"MSFT","close":520.65,"value":523.8727272727,"ma_window":20},{"date":"2025-08-15","symbol":"MSFT","close":518.35,"value":523.4125,"ma_window":20},{"date":"2025-08-18","symbol":"MSFT","close":515.29,"value":522.7876923077,"ma_window":20},{"date":"2025-08-19","symbol":"MSFT","close":507.98,"value":521.73,"ma_window":20},{"date":"2025-08-20","symbol":"MSFT","close":503.95,"value":520.5446666667,"ma_window":20},{"date":"2025-08-21","symbol":"MSFT","close":503.3,"value":519.466875,"ma_window":20},{"date":"2025-08-22","symbol":"MSFT","close":506.28,"value":518.6911764706,"ma_window":20},{"date":"2025-08-25","symbol":"MSFT","close":503.32,"value":517.8372222222,"ma_window":20},{"date":"2025-08-26","symbol":"MSFT","close":501.1,"value":516.9563157895,"ma_window":20},{"date":"2025-08-27","symbol":"MSFT","close":505.79,"value":516.398,"ma_window":20},{"date":"2025-08-28","symbol":"MSFT","close":508.69,"value":515.251,"ma_window":20},{"date":"2025-08-29","symbol":"MSFT","close":505.74,"value":514.4245,"ma_window":20},{"date":"2025-09-02","symbol":"MSFT","close":504.18,"value":512.9455,"ma_window":20},{"date":"2025-09-03","symbol":"MSFT","close":504.41,"value":511.871,"ma_window":20},{"date":"2025-09-04","symbol":"MSFT","close":507.02,"value":511.067,"ma_window":20},{"date":"2025-09-05","symbol":"MSFT","close":494.08,"value":509.8205,"ma_window":20},{"date":"2025-09-08","symbol":"MSFT","close":497.27,"value":508.6735,"ma_window":20},{"date":"2025-09-09","symbol":"MSFT","close":497.48,"value":507.5505,"ma_window":20},{"date":"2025-09-10","symbol":"MSFT","close":499.44,"value":506.1535,"ma_window":20},{"date":"2025-09-11","symbol":"MSFT","close":500.07,"value":505.2195,"ma_window":20},{"date":"2025-09-12","symbol":"MSFT","close":508.95,"value":504.6345,"ma_window":20},{"date":"2025-09-15","symbol":"MSFT","close":514.4,"value":504.437,"ma_window":20},{"date":"2025-09-16","symbol":"MSFT","close":508.09,"value":504.077,"ma_window":20},{"date":"2025-09-17","symbol":"MSFT","close":509.07,"value":504.1315,"ma_window":20},{"date":"2025-09-18","symbol":"MSFT","close":507.5,"value":504.309,"ma_window":20},{"date":"2025-09-19","symbol":"MSFT","close":516.96,"value":504.992,"ma_window":20},{"date":"2025-09-22","symbol":"MSFT","close":513.49,"value":505.3525,"ma_window":20},{"date":"2025-09-23","symbol":"MSFT","close":508.28,"value":505.6005,"ma_window":20},{"date":"2025-09-24","symbol":"MSFT","close":509.2,"value":506.0055,"ma_window":20},{"date":"2025-09-25","symbol":"MSFT","close":506.08,"value":506.02,"ma_window":20},{"date":"2025-09-26","symbol":"MSFT","close":510.5,"value":506.1105,"ma_window":20},{"date":"2025-09-29","symbol":"MSFT","close":513.64,"value":506.5055,"ma_window":20},{"date":"2025-09-30","symbol":"MSFT","close":516.98,"value":507.1455,"ma_window":20},{"date":"2025-10-01","symbol":"MSFT","close":518.74,"value":507.862,"ma_window":20},{"date":"2025-10-02","symbol":"MSFT","close":514.78,"value":508.25,"ma_window":20},{"date":"2025-10-03","symbol":"MSFT","close":516.38,"value":509.365,"ma_window":20},{"date":"2025-10-06","symbol":"MSFT","close":527.58,"value":510.8805,"ma_window":20},{"date":"2025-10-07","symbol":"MSFT","close":523,"value":512.1565,"ma_window":20},{"date":"2025-10-08","symbol":"MSFT","close":523.87,"value":513.378,"ma_window":20},{"date":"2025-10-09","symbol":"MSFT","close":521.42,"value":514.4455,"ma_window":20},{"date":"2025-10-10","symbol":"MSFT","close":510.01,"value":514.4985,"ma_window":20},{"date":"2025-10-13","symbol":"MSFT","close":513.09,"value":514.433,"ma_window":20},{"date":"2025-10-14","symbol":"MSFT","close":512.61,"value":514.659,"ma_window":20},{"date":"2025-10-15","symbol":"MSFT","close":512.47,"value":514.829,"ma_window":20},{"date":"2025-10-16","symbol":"MSFT","close":510.65,"value":514.9865,"ma_window":20},{"date":"2025-10-17","symbol":"MSFT","close":512.62,"value":514.7695,"ma_window":20},{"date":"2025-10-20","symbol":"MSFT","close":515.82,"value":514.886,"ma_window":20},{"date":"2025-10-21","symbol":"MSFT","close":516.69,"value":515.3065,"ma_window":20},{"date":"2025-10-22","symbol":"MSFT","close":519.57,"value":515.825,"ma_window":20},{"date":"2025-10-23","symbol":"MSFT","close":519.59,"value":516.5005,"ma_window":20},{"date":"2025-10-24","symbol":"MSFT","close":522.63,"value":517.107,"ma_window":20},{"date":"2025-10-27","symbol":"MSFT","close":530.53,"value":517.9515,"ma_window":20},{"date":"2025-10-28","symbol":"MSFT","close":541.06,"value":519.1555,"ma_window":20},{"date":"2025-10-29","symbol":"MSFT","close":540.54,"value":520.2455,"ma_window":20},{"date":"2025-10-30","symbol":"MSFT","close":524.78,"value":520.7455,"ma_window":20},{"date":"2025-10-31","symbol":"MSFT","close":516.84,"value":520.7685,"ma_window":20},{"date":"2025-11-03","symbol":"MSFT","close":516.06,"value":520.1925,"ma_window":20},{"date":"2025-11-04","symbol":"MSFT","close":513.37,"value":519.711,"ma_window":20},{"date":"2025-11-05","symbol":"MSFT","close":506.21,"value":518.828,"ma_window":20},{"date":"2025-11-06","symbol":"MSFT","close":496.17,"value":517.5655,"ma_window":20},{"date":"2025-11-07","symbol":"MSFT","close":495.89,"value":516.8595,"ma_window":20},{"date":"2025-11-10","symbol":"MSFT","close":505.05,"value":516.4575,"ma_window":20},{"date":"2025-11-11","symbol":"MSFT","close":507.73,"value":516.2135,"ma_window":20},{"date":"2025-11-12","symbol":"MSFT","close":510.19,"value":516.0995,"ma_window":20},{"date":"2025-11-13","symbol":"MSFT","close":502.35,"value":515.6845,"ma_window":20},{"date":"2025-11-14","symbol":"MSFT","close":509.23,"value":515.515,"ma_window":20},{"date":"2025-11-17","symbol":"MSFT","close":506.54,"value":515.051,"ma_window":20},{"date":"2025-11-18","symbol":"MSFT","close":492.87,"value":513.86,"ma_window":20},{"date":"2025-11-19","symbol":"MSFT","close":486.21,"value":512.192,"ma_window":20},{"date":"2025-11-20","symbol":"MSFT","close":478.43,"value":510.134,"ma_window":20},{"date":"2025-11-21","symbol":"MSFT","close":472.12,"value":507.6085,"ma_window":20},{"date":"2025-11-24","symbol":"MSFT","close":474,"value":504.782,"ma_window":20},{"date":"2025-11-25","symbol":"MSFT","close":476.99,"value":501.5785,"ma_window":20},{"date":"2025-11-26","symbol":"MSFT","close":485.5,"value":498.8265,"ma_window":20},{"date":"2025-11-28","symbol":"MSFT","close":492.01,"value":497.188,"ma_window":20},{"date":"2025-12-01","symbol":"MSFT","close":486.74,"value":495.683,"ma_window":20},{"date":"2025-12-02","symbol":"MSFT","close":490,"value":494.38,"ma_window":20},{"date":"2025-12-03","symbol":"MSFT","close":477.73,"value":492.598,"ma_window":20},{"date":"2025-12-04","symbol":"MSFT","close":480.84,"value":491.3295,"ma_window":20},{"date":"2025-12-05","symbol":"MSFT","close":483.16,"value":490.679,"ma_window":20},{"date":"2025-12-08","symbol":"MSFT","close":491.02,"value":490.4355,"ma_window":20},{"date":"2025-12-09","symbol":"MSFT","close":492.02,"value":489.784,"ma_window":20},{"date":"2025-12-10","symbol":"MSFT","close":478.56,"value":488.3255,"ma_window":20},{"date":"2025-12-11","symbol":"MSFT","close":483.47,"value":486.9895,"ma_window":20},{"date":"2025-12-12","symbol":"MSFT","close":478.53,"value":485.7985,"ma_window":20},{"date":"2025-12-15","symbol":"MSFT","close":474.82,"value":484.078,"ma_window":20},{"date":"2025-12-16","symbol":"MSFT","close":476.39,"value":482.5705,"ma_window":20},{"date":"2025-12-17","symbol":"MSFT","close":476.12,"value":481.733,"ma_window":20},{"date":"2025-12-18","symbol":"MSFT","close":483.98,"value":481.6215,"ma_window":20},{"date":"2025-12-19","symbol":"MSFT","close":485.92,"value":481.996,"ma_window":20},{"date":"2025-12-22","symbol":"MSFT","close":484.92,"value":482.636,"ma_window":20},{"date":"2025-12-23","symbol":"MSFT","close":486.85,"value":483.2785,"ma_window":20},{"date":"2025-12-24","symbol":"MSFT","close":488.02,"value":483.83,"ma_window":20},{"date":"2025-12-26","symbol":"MSFT","close":487.71,"value":483.9405,"ma_window":20},{"date":"2025-12-29","symbol":"MSFT","close":487.1,"value":483.695,"ma_window":20},{"date":"2025-12-30","symbol":"MSFT","close":487.48,"value":483.732,"ma_window":20},{"date":"2025-12-31","symbol":"MSFT","close":483.62,"value":483.413,"ma_window":20},{"date":"2026-01-02","symbol":"MSFT","close":472.94,"value":483.1735,"ma_window":20},{"date":"2026-01-05","symbol":"MSFT","close":472.85,"value":482.774,"ma_window":20},{"date":"2026-01-06","symbol":"MSFT","close":478.51,"value":482.5415,"ma_window":20},{"date":"2026-01-07","symbol":"MSFT","close":483.47,"value":482.164,"ma_window":20},{"date":"2026-01-08","symbol":"MSFT","close":478.11,"value":481.4685,"ma_window":20},{"date":"2026-01-09","symbol":"MSFT","close":479.28,"value":481.5045,"ma_window":20},{"date":"2026-01-12","symbol":"MSFT","close":477.18,"value":481.19,"ma_window":20},{"date":"2026-01-13","symbol":"MSFT","close":470.67,"value":480.797,"ma_window":20},{"date":"2026-01-14","symbol":"MSFT","close":459.38,"value":480.025,"ma_window":20},{"date":"2026-01-15","symbol":"MSFT","close":456.66,"value":479.0385,"ma_window":20},{"date":"2026-01-16","symbol":"MSFT","close":459.86,"value":478.2255,"ma_window":20},{"date":"2026-01-20","symbol":"MSFT","close":454.52,"value":476.7525,"ma_window":20},{"date":"2026-01-21","symbol":"MSFT","close":444.11,"value":474.662,"ma_window":20},{"date":"2026-01-22","symbol":"MSFT","close":451.14,"value":472.973,"ma_window":20},{"date":"2026-01-23","symbol":"MSFT","close":465.95,"value":471.928,"ma_window":20},{"date":"2026-01-26","symbol":"MSFT","close":470.28,"value":471.041,"ma_window":20},{"date":"2025-07-31","symbol":"NVDA","close":177.85,"value":177.85,"ma_window":20},{"date":"2025-08-01","symbol":"NVDA","close":173.7,"value":175.775,"ma_window":20},{"date":"2025-08-04","symbol":"NVDA","close":179.98,"value":177.1766666667,"ma_window":20},{"date":"2025-08-05","symbol":"NVDA","close":178.24,"value":177.4425,"ma_window":20},{"date":"2025-08-06","symbol":"NVDA","close":179.4,"value":177.834,"ma_window":20},{"date":"2025-08-07","symbol":"NVDA","close":180.75,"value":178.32,"ma_window":20},{"date":"2025-08-08","symbol":"NVDA","close":182.68,"value":178.9428571429,"ma_window":20},{"date":"2025-08-11","symbol":"NVDA","close":182.04,"value":179.33,"ma_window":20},{"date":"2025-08-12","symbol":"NVDA","close":183.14,"value":179.7533333333,"ma_window":20},{"date":"2025-08-13","symbol":"NVDA","close":181.57,"value":179.935,"ma_window":20},{"date":"2025-08-14","symbol":"NVDA","close":182,"value":180.1227272727,"ma_window":20},{"date":"2025-08-15","symbol":"NVDA","close":180.43,"value":180.1483333333,"ma_window":20},{"date":"2025-08-18","symbol":"NVDA","close":181.99,"value":180.29,"ma_window":20},{"date":"2025-08-19","symbol":"NVDA","close":175.62,"value":179.9564285714,"ma_window":20},{"date":"2025-08-20","symbol":"NVDA","close":175.38,"value":179.6513333333,"ma_window":20},{"date":"2025-08-21","symbol":"NVDA","close":174.96,"value":179.358125,"ma_window":20},{"date":"2025-08-22","symbol":"NVDA","close":177.97,"value":179.2764705882,"ma_window":20},{"date":"2025-08-25","symbol":"NVDA","close":179.79,"value":179.305,"ma_window":20},{"date":"2025-08-26","symbol":"NVDA","close":181.75,"value":179.4336842105,"ma_window":20},{"date":"2025-08-27","symbol":"NVDA","close":181.58,"value":179.541,"ma_window":20},{"date":"2025-08-28","symbol":"NVDA","close":180.15,"value":179.656,"ma_window":20},{"date":"2025-08-29","symbol":"NVDA","close":174.16,"value":179.679,"ma_window":20},{"date":"2025-09-02","symbol":"NVDA","close":170.76,"value":179.218,"ma_window":20},{"date":"2025-09-03","symbol":"NVDA","close":170.6,"value":178.836,"ma_window":20},{"date":"2025-09-04","symbol":"NVDA","close":171.64,"value":178.448,"ma_window":20},{"date":"2025-09-05","symbol":"NVDA","close":167,"value":177.7605,"ma_window":20},{"date":"2025-09-08","symbol":"NVDA","close":168.29,"value":177.041,"ma_window":20},{"date":"2025-09-09","symbol":"NVDA","close":170.74,"value":176.476,"ma_window":20},{"date":"2025-09-10","symbol":"NVDA","close":177.31,"value":176.1845,"ma_window":20},{"date":"2025-09-11","symbol":"NVDA","close":177.16,"value":175.964,"ma_window":20},{"date":"2025-09-12","symbol":"NVDA","close":177.81,"value":175.7545,"ma_window":20},{"date":"2025-09-15","symbol":"NVDA","close":177.74,"value":175.62,"ma_window":20},{"date":"2025-09-16","symbol":"NVDA","close":174.87,"value":175.264,"ma_window":20},{"date":"2025-09-17","symbol":"NVDA","close":170.28,"value":174.997,"ma_window":20},{"date":"2025-09-18","symbol":"NVDA","close":176.23,"value":175.0395,"ma_window":20},{"date":"2025-09-19","symbol":"NVDA","close":176.66,"value":175.1245,"ma_window":20},{"date":"2025-09-22","symbol":"NVDA","close":183.6,"value":175.406,"ma_window":20},{"date":"2025-09-23","symbol":"NVDA","close":178.42,"value":175.3375,"ma_window":20},{"date":"2025-09-24","symbol":"NVDA","close":176.96,"value":175.098,"ma_window":20},{"date":"2025-09-25","symbol":"NVDA","close":177.68,"value":174.903,"ma_window":20},{"date":"2025-09-26","symbol":"NVDA","close":178.18,"value":174.8045,"ma_window":20},{"date":"2025-09-29","symbol":"NVDA","close":181.84,"value":175.1885,"ma_window":20},{"date":"2025-09-30","symbol":"NVDA","close":186.57,"value":175.979,"ma_window":20},{"date":"2025-10-01","symbol":"NVDA","close":187.23,"value":176.8105,"ma_window":20},{"date":"2025-10-02","symbol":"NVDA","close":188.88,"value":177.6725,"ma_window":20},{"date":"2025-10-03","symbol":"NVDA","close":187.61,"value":178.703,"ma_window":20},{"date":"2025-10-06","symbol":"NVDA","close":185.53,"value":179.565,"ma_window":20},{"date":"2025-10-07","symbol":"NVDA","close":185.03,"value":180.2795,"ma_window":20},{"date":"2025-10-08","symbol":"NVDA","close":189.1,"value":180.869,"ma_window":20},{"date":"2025-10-09","symbol":"NVDA","close":192.56,"value":181.639,"ma_window":20},{"date":"2025-10-10","symbol":"NVDA","close":183.15,"value":181.906,"ma_window":20},{"date":"2025-10-13","symbol":"NVDA","close":188.31,"value":182.4345,"ma_window":20},{"date":"2025-10-14","symbol":"NVDA","close":180.02,"value":182.692,"ma_window":20},{"date":"2025-10-15","symbol":"NVDA","close":179.82,"value":183.169,"ma_window":20},{"date":"2025-10-16","symbol":"NVDA","close":181.8,"value":183.4475,"ma_window":20},{"date":"2025-10-17","symbol":"NVDA","close":183.21,"value":183.775,"ma_window":20},{"date":"2025-10-20","symbol":"NVDA","close":182.63,"value":183.7265,"ma_window":20},{"date":"2025-10-21","symbol":"NVDA","close":181.15,"value":183.863,"ma_window":20},{"date":"2025-10-22","symbol":"NVDA","close":180.27,"value":184.0285,"ma_window":20},{"date":"2025-10-23","symbol":"NVDA","close":182.15,"value":184.252,"ma_window":20},{"date":"2025-10-24","symbol":"NVDA","close":186.25,"value":184.6555,"ma_window":20},{"date":"2025-10-27","symbol":"NVDA","close":191.48,"value":185.1375,"ma_window":20},{"date":"2025-10-28","symbol":"NVDA","close":201.02,"value":185.86,"ma_window":20},{"date":"2025-10-29","symbol":"NVDA","close":207.03,"value":186.85,"ma_window":20},{"date":"2025-10-30","symbol":"NVDA","close":202.88,"value":187.55,"ma_window":20},{"date":"2025-10-31","symbol":"NVDA","close":202.48,"value":188.2935,"ma_window":20},{"date":"2025-11-03","symbol":"NVDA","close":206.87,"value":189.3605,"ma_window":20},{"date":"2025-11-04","symbol":"NVDA","close":198.68,"value":190.043,"ma_window":20},{"date":"2025-11-05","symbol":"NVDA","close":195.2,"value":190.348,"ma_window":20},{"date":"2025-11-06","symbol":"NVDA","close":188.07,"value":190.1235,"ma_window":20},{"date":"2025-11-07","symbol":"NVDA","close":188.14,"value":190.373,"ma_window":20},{"date":"2025-11-10","symbol":"NVDA","close":199.04,"value":190.9095,"ma_window":20},{"date":"2025-11-11","symbol":"NVDA","close":193.15,"value":191.566,"ma_window":20},{"date":"2025-11-12","symbol":"NVDA","close":193.79,"value":192.2645,"ma_window":20},{"date":"2025-11-13","symbol":"NVDA","close":186.85,"value":192.517,"ma_window":20},{"date":"2025-11-14","symbol":"NVDA","close":190.16,"value":192.8645,"ma_window":20},{"date":"2025-11-17","symbol":"NVDA","close":186.59,"value":193.0625,"ma_window":20},{"date":"2025-11-18","symbol":"NVDA","close":181.35,"value":193.0725,"ma_window":20},{"date":"2025-11-19","symbol":"NVDA","close":186.51,"value":193.3845,"ma_window":20},{"date":"2025-11-20","symbol":"NVDA","close":180.63,"value":193.3085,"ma_window":20},{"date":"2025-11-21","symbol":"NVDA","close":178.87,"value":192.9395,"ma_window":20},{"date":"2025-11-24","symbol":"NVDA","close":182.54,"value":192.4925,"ma_window":20},{"date":"2025-11-25","symbol":"NVDA","close":177.81,"value":191.332,"ma_window":20},{"date":"2025-11-26","symbol":"NVDA","close":180.25,"value":189.993,"ma_window":20},{"date":"2025-11-28","symbol":"NVDA","close":176.99,"value":188.6985,"ma_window":20},{"date":"2025-12-01","symbol":"NVDA","close":179.91,"value":187.57,"ma_window":20},{"date":"2025-12-02","symbol":"NVDA","close":181.45,"value":186.299,"ma_window":20},{"date":"2025-12-03","symbol":"NVDA","close":179.58,"value":185.344,"ma_window":20},{"date":"2025-12-04","symbol":"NVDA","close":183.38,"value":184.753,"ma_window":20},{"date":"2025-12-05","symbol":"NVDA","close":182.41,"value":184.47,"ma_window":20},{"date":"2025-12-08","symbol":"NVDA","close":185.55,"value":184.3405,"ma_window":20},{"date":"2025-12-09","symbol":"NVDA","close":184.97,"value":183.637,"ma_window":20},{"date":"2025-12-10","symbol":"NVDA","close":183.78,"value":183.1685,"ma_window":20},{"date":"2025-12-11","symbol":"NVDA","close":180.93,"value":182.5255,"ma_window":20},{"date":"2025-12-12","symbol":"NVDA","close":175.02,"value":181.934,"ma_window":20},{"date":"2025-12-15","symbol":"NVDA","close":176.29,"value":181.2405,"ma_window":20},{"date":"2025-12-16","symbol":"NVDA","close":177.72,"value":180.797,"ma_window":20},{"date":"2025-12-17","symbol":"NVDA","close":170.94,"value":180.2765,"ma_window":20},{"date":"2025-12-18","symbol":"NVDA","close":174.14,"value":179.658,"ma_window":20},{"date":"2025-12-19","symbol":"NVDA","close":180.99,"value":179.676,"ma_window":20},{"date":"2025-12-22","symbol":"NVDA","close":183.69,"value":179.917,"ma_window":20},{"date":"2025-12-23","symbol":"NVDA","close":189.21,"value":180.2505,"ma_window":20},{"date":"2025-12-24","symbol":"NVDA","close":188.61,"value":180.7905,"ma_window":20},{"date":"2025-12-26","symbol":"NVDA","close":190.53,"value":181.3045,"ma_window":20},{"date":"2025-12-29","symbol":"NVDA","close":188.22,"value":181.866,"ma_window":20},{"date":"2025-12-30","symbol":"NVDA","close":187.54,"value":182.2475,"ma_window":20},{"date":"2025-12-31","symbol":"NVDA","close":186.5,"value":182.5,"ma_window":20},{"date":"2026-01-02","symbol":"NVDA","close":188.85,"value":182.9635,"ma_window":20},{"date":"2026-01-05","symbol":"NVDA","close":188.12,"value":183.2005,"ma_window":20},{"date":"2026-01-06","symbol":"NVDA","close":187.24,"value":183.442,"ma_window":20},{"date":"2026-01-07","symbol":"NVDA","close":189.11,"value":183.62,"ma_window":20},{"date":"2026-01-08","symbol":"NVDA","close":185.04,"value":183.6235,"ma_window":20},{"date":"2026-01-09","symbol":"NVDA","close":184.86,"value":183.6775,"ma_window":20},{"date":"2026-01-12","symbol":"NVDA","close":184.94,"value":183.878,"ma_window":20},{"date":"2026-01-13","symbol":"NVDA","close":185.81,"value":184.4175,"ma_window":20},{"date":"2026-01-14","symbol":"NVDA","close":183.14,"value":184.76,"ma_window":20},{"date":"2026-01-15","symbol":"NVDA","close":187.05,"value":185.2265,"ma_window":20},{"date":"2026-01-16","symbol":"NVDA","close":186.23,"value":185.991,"ma_window":20},{"date":"2026-01-20","symbol":"NVDA","close":178.07,"value":186.1875,"ma_window":20},{"date":"2026-01-21","symbol":"NVDA","close":183.32,"value":186.304,"ma_window":20},{"date":"2026-01-22","symbol":"NVDA","close":184.84,"value":186.3615,"ma_window":20},{"date":"2026-01-23","symbol":"NVDA","close":187.67,"value":186.2845,"ma_window":20},{"date":"2026-01-26","symbol":"NVDA","close":186.47,"value":186.1775,"ma_window":20},{"date":"2025-07-31","symbol":"AAPL","close":207.13,"value":207.13,"ma_window":60},{"date":"2025-08-01","symbol":"AAPL","close":201.95,"value":204.54,"ma_window":60},{"date":"2025-08-04","symbol":"AAPL","close":202.92,"value":204,"ma_window":60},{"date":"2025-08-05","symbol":"AAPL","close":202.49,"value":203.6225,"ma_window":60},{"date":"2025-08-06","symbol":"AAPL","close":212.8,"value":205.458,"ma_window":60},{"date":"2025-08-07","symbol":"AAPL","close":219.57,"value":207.81,"ma_window":60},{"date":"2025-08-08","symbol":"AAPL","close":228.87,"value":210.8185714286,"ma_window":60},{"date":"2025-08-11","symbol":"AAPL","close":226.96,"value":212.83625,"ma_window":60},{"date":"2025-08-12","symbol":"AAPL","close":229.43,"value":214.68,"ma_window":60},{"date":"2025-08-13","symbol":"AAPL","close":233.1,"value":216.522,"ma_window":60},{"date":"2025-08-14","symbol":"AAPL","close":232.55,"value":217.9790909091,"ma_window":60},{"date":"2025-08-15","symbol":"AAPL","close":231.37,"value":219.095,"ma_window":60},{"date":"2025-08-18","symbol":"AAPL","close":230.67,"value":219.9853846154,"ma_window":60},{"date":"2025-08-19","symbol":"AAPL","close":230.34,"value":220.725,"ma_window":60},{"date":"2025-08-20","symbol":"AAPL","close":225.79,"value":221.0626666667,"ma_window":60},{"date":"2025-08-21","symbol":"AAPL","close":224.68,"value":221.28875,"ma_window":60},{"date":"2025-08-22","symbol":"AAPL","close":227.54,"value":221.6564705882,"ma_window":60},{"date":"2025-08-25","symbol":"AAPL","close":226.94,"value":221.95,"ma_window":60},{"date":"2025-08-26","symbol":"AAPL","close":229.09,"value":222.3257894737,"ma_window":60},{"date":"2025-08-27","symbol":"AAPL","close":230.27,"value":222.723,"ma_window":60},{"date":"2025-08-28","symbol":"AAPL","close":232.33,"value":223.1804761905,"ma_window":60},{"date":"2025-08-29","symbol":"AAPL","close":231.92,"value":223.5777272727,"ma_window":60},{"date":"2025-09-02","symbol":"AAPL","close":229.5,"value":223.8352173913,"ma_window":60},{"date":"2025-09-03","symbol":"AAPL","close":238.24,"value":224.4354166667,"ma_window":60},{"date":"2025-09-04","symbol":"AAPL","close":239.55,"value":225.04,"ma_window":60},{"date":"2025-09-05","symbol":"AAPL","close":239.46,"value":225.5946153846,"ma_window":60},{"date":"2025-09-08","symbol":"AAPL","close":237.65,"value":226.0411111111,"ma_window":60},{"date":"2025-09-09","symbol":"AAPL","close":234.12,"value":226.3296428571,"ma_window":60},{"date":"2025-09-10","symbol":"AAPL","close":226.57,"value":226.3379310345,"ma_window":60},{"date":"2025-09-11","symbol":"AAPL","close":229.81,"value":226.4536666667,"ma_window":60},{"date":"2025-09-12","symbol":"AAPL","close":233.84,"value":226.6919354839,"ma_window":60},{"date":"2025-09-15","symbol":"AAPL","close":236.47,"value":226.9975,"ma_window":60},{"date":"2025-09-16","symbol":"AAPL","close":237.92,"value":227.3284848485,"ma_window":60},{"date":"2025-09-17","symbol":"AAPL","close":238.76,"value":227.6647058824,"ma_window":60},{"date":"2025-09-18","symbol":"AAPL","close":237.65,"value":227.95,"ma_window":60},{"date":"2025-09-19","symbol":"AAPL","close":245.26,"value":228.4308333333,"ma_window":60},{"date":"2025-09-22","symbol":"AAPL","close":255.83,"value":229.1713513514,"ma_window":60},{"date":"2025-09-23","symbol":"AAPL","close":254.18,"value":229.8294736842,"ma_window":60},{"date":"2025-09-24","symbol":"AAPL","close":252.07,"value":230.3997435897,"ma_window":60},{"date":"2025-09-25","symbol":"AAPL","close":256.62,"value":231.05525,"ma_window":60},{"date":"2025-09-26","symbol":"AAPL","close":255.21,"value":231.6443902439,"ma_window":60},{"date":"2025-09-29","symbol":"AAPL","close":254.18,"value":232.180952381,"ma_window":60},{"date":"2025-09-30","symbol":"AAPL","close":254.38,"value":232.6972093023,"ma_window":60},{"date":"2025-10-01","symbol":"AAPL","close":255.2,"value":233.2086363636,"ma_window":60},{"date":"2025-10-02","symbol":"AAPL","close":256.88,"value":233.7346666667,"ma_window":60},{"date":"2025-10-03","symbol":"AAPL","close":257.77,"value":234.257173913,"ma_window":60},{"date":"2025-10-06","symbol":"AAPL","close":256.44,"value":234.7291489362,"ma_window":60},{"date":"2025-10-07","symbol":"AAPL","close":256.23,"value":235.1770833333,"ma_window":60},{"date":"2025-10-08","symbol":"AAPL","close":257.81,"value":235.6389795918,"ma_window":60},{"date":"2025-10-09","symbol":"AAPL","close":253.79,"value":236.002,"ma_window":60},{"date":"2025-10-10","symbol":"AAPL","close":245.03,"value":236.1790196078,"ma_window":60},{"date":"2025-10-13","symbol":"AAPL","close":247.42,"value":236.3951923077,"ma_window":60},{"date":"2025-10-14","symbol":"AAPL","close":247.53,"value":236.6052830189,"ma_window":60},{"date":"2025-10-15","symbol":"AAPL","close":249.1,"value":236.8366666667,"ma_window":60},{"date":"2025-10-16","symbol":"AAPL","close":247.21,"value":237.0252727273,"ma_window":60},{"date":"2025-10-17","symbol":"AAPL","close":252.05,"value":237.2935714286,"ma_window":60},{"date":"2025-10-20","symbol":"AAPL","close":261.99,"value":237.7268421053,"ma_window":60},{"date":"2025-10-21","symbol":"AAPL","close":262.52,"value":238.1543103448,"ma_window":60},{"date":"2025-10-22","symbol":"AAPL","close":258.2,"value":238.4940677966,"ma_window":60},{"date":"2025-10-23","symbol":"AAPL","close":259.33,"value":238.8413333333,"ma_window":60},{"date":"2025-10-24","symbol":"AAPL","close":262.57,"value":239.7653333333,"ma_window":60},{"date":"2025-10-27","symbol":"AAPL","close":268.55,"value":240.8753333333,"ma_window":60},{"date":"2025-10-28","symbol":"AAPL","close":268.74,"value":241.9723333333,"ma_window":60},{"date":"2025-10-29","symbol":"AAPL","close":269.44,"value":243.0881666667,"ma_window":60},{"date":"2025-10-30","symbol":"AAPL","close":271.14,"value":244.0605,"ma_window":60},{"date":"2025-10-31","symbol":"AAPL","close":270.11,"value":244.9028333333,"ma_window":60},{"date":"2025-11-03","symbol":"AAPL","close":268.79,"value":245.5681666667,"ma_window":60},{"date":"2025-11-04","symbol":"AAPL","close":269.78,"value":246.2818333333,"ma_window":60},{"date":"2025-11-05","symbol":"AAPL","close":269.88,"value":246.956,"ma_window":60},{"date":"2025-11-06","symbol":"AAPL","close":269.51,"value":247.5628333333,"ma_window":60},{"date":"2025-11-07","symbol":"AAPL","close":268.21,"value":248.1571666667,"ma_window":60},{"date":"2025-11-10","symbol":"AAPL","close":269.43,"value":248.7915,"ma_window":60},{"date":"2025-11-11","symbol":"AAPL","close":275.25,"value":249.5345,"ma_window":60},{"date":"2025-11-12","symbol":"AAPL","close":273.47,"value":250.2533333333,"ma_window":60},{"date":"2025-11-13","symbol":"AAPL","close":272.95,"value":251.0393333333,"ma_window":60},{"date":"2025-11-14","symbol":"AAPL","close":272.41,"value":251.8348333333,"ma_window":60},{"date":"2025-11-17","symbol":"AAPL","close":267.46,"value":252.5001666667,"ma_window":60},{"date":"2025-11-18","symbol":"AAPL","close":267.44,"value":253.1751666667,"ma_window":60},{"date":"2025-11-19","symbol":"AAPL","close":268.56,"value":253.833,"ma_window":60},{"date":"2025-11-20","symbol":"AAPL","close":266.25,"value":254.4326666667,"ma_window":60},{"date":"2025-11-21","symbol":"AAPL","close":271.49,"value":255.0853333333,"ma_window":60},{"date":"2025-11-24","symbol":"AAPL","close":275.92,"value":255.8186666667,"ma_window":60},{"date":"2025-11-25","symbol":"AAPL","close":276.97,"value":256.6098333333,"ma_window":60},{"date":"2025-11-26","symbol":"AAPL","close":277.55,"value":257.265,"ma_window":60},{"date":"2025-11-28","symbol":"AAPL","close":278.85,"value":257.92,"ma_window":60},{"date":"2025-12-01","symbol":"AAPL","close":283.1,"value":258.6473333333,"ma_window":60},{"date":"2025-12-02","symbol":"AAPL","close":286.19,"value":259.4563333333,"ma_window":60},{"date":"2025-12-03","symbol":"AAPL","close":284.15,"value":260.2901666667,"ma_window":60},{"date":"2025-12-04","symbol":"AAPL","close":280.7,"value":261.1923333333,"ma_window":60},{"date":"2025-12-05","symbol":"AAPL","close":278.78,"value":262.0085,"ma_window":60},{"date":"2025-12-08","symbol":"AAPL","close":277.89,"value":262.7426666667,"ma_window":60},{"date":"2025-12-09","symbol":"AAPL","close":277.18,"value":263.4211666667,"ma_window":60},{"date":"2025-12-10","symbol":"AAPL","close":278.78,"value":264.1021666667,"ma_window":60},{"date":"2025-12-11","symbol":"AAPL","close":278.03,"value":264.7566666667,"ma_window":60},{"date":"2025-12-12","symbol":"AAPL","close":278.28,"value":265.4338333333,"ma_window":60},{"date":"2025-12-15","symbol":"AAPL","close":274.11,"value":265.9146666667,"ma_window":60},{"date":"2025-12-16","symbol":"AAPL","close":274.61,"value":266.2276666667,"ma_window":60},{"date":"2025-12-17","symbol":"AAPL","close":271.84,"value":266.522,"ma_window":60},{"date":"2025-12-18","symbol":"AAPL","close":272.19,"value":266.8573333333,"ma_window":60},{"date":"2025-12-19","symbol":"AAPL","close":273.67,"value":267.1415,"ma_window":60},{"date":"2025-12-22","symbol":"AAPL","close":270.97,"value":267.4041666667,"ma_window":60},{"date":"2025-12-23","symbol":"AAPL","close":272.36,"value":267.7071666667,"ma_window":60},{"date":"2025-12-24","symbol":"AAPL","close":273.81,"value":268.031,"ma_window":60},{"date":"2025-12-26","symbol":"AAPL","close":273.4,"value":268.3343333333,"ma_window":60},{"date":"2025-12-29","symbol":"AAPL","close":273.76,"value":268.6156666667,"ma_window":60},{"date":"2025-12-30","symbol":"AAPL","close":273.08,"value":268.8708333333,"ma_window":60},{"date":"2025-12-31","symbol":"AAPL","close":271.86,"value":269.1278333333,"ma_window":60},{"date":"2026-01-02","symbol":"AAPL","close":271.01,"value":269.3741666667,"ma_window":60},{"date":"2026-01-05","symbol":"AAPL","close":267.26,"value":269.5316666667,"ma_window":60},{"date":"2026-01-06","symbol":"AAPL","close":262.36,"value":269.6745,"ma_window":60},{"date":"2026-01-07","symbol":"AAPL","close":260.33,"value":269.9295,"ma_window":60},{"date":"2026-01-08","symbol":"AAPL","close":259.04,"value":270.1231666667,"ma_window":60},{"date":"2026-01-09","symbol":"AAPL","close":259.37,"value":270.3205,"ma_window":60},{"date":"2026-01-12","symbol":"AAPL","close":260.25,"value":270.5063333333,"ma_window":60},{"date":"2026-01-13","symbol":"AAPL","close":261.05,"value":270.737,"ma_window":60},{"date":"2026-01-14","symbol":"AAPL","close":259.96,"value":270.8688333333,"ma_window":60},{"date":"2026-01-15","symbol":"AAPL","close":258.21,"value":270.8058333333,"ma_window":60},{"date":"2026-01-16","symbol":"AAPL","close":255.53,"value":270.6893333333,"ma_window":60},{"date":"2026-01-20","symbol":"AAPL","close":246.7,"value":270.4976666667,"ma_window":60},{"date":"2026-01-21","symbol":"AAPL","close":247.65,"value":270.303,"ma_window":60},{"date":"2026-01-22","symbol":"AAPL","close":248.35,"value":270.066,"ma_window":60},{"date":"2026-01-23","symbol":"AAPL","close":248.04,"value":269.7241666667,"ma_window":60},{"date":"2026-01-26","symbol":"AAPL","close":255.41,"value":269.502,"ma_window":60},{"date":"2025-07-31","symbol":"AMZN","close":234.11,"value":234.11,"ma_window":60},{"date":"2025-08-01","symbol":"AMZN","close":214.75,"value":224.43,"ma_window":60},{"date":"2025-08-04","symbol":"AMZN","close":211.65,"value":220.17,"ma_window":60},{"date":"2025-08-05","symbol":"AMZN","close":213.75,"value":218.565,"ma_window":60},{"date":"2025-08-06","symbol":"AMZN","close":222.31,"value":219.314,"ma_window":60},{"date":"2025-08-07","symbol":"AMZN","close":223.13,"value":219.95,"ma_window":60},{"date":"2025-08-08","symbol":"AMZN","close":222.69,"value":220.3414285714,"ma_window":60},{"date":"2025-08-11","symbol":"AMZN","close":221.3,"value":220.46125,"ma_window":60},{"date":"2025-08-12","symbol":"AMZN","close":221.47,"value":220.5733333333,"ma_window":60},{"date":"2025-08-13","symbol":"AMZN","close":224.56,"value":220.972,"ma_window":60},{"date":"2025-08-14","symbol":"AMZN","close":230.98,"value":221.8818181818,"ma_window":60},{"date":"2025-08-15","symbol":"AMZN","close":231.03,"value":222.6441666667,"ma_window":60},{"date":"2025-08-18","symbol":"AMZN","close":231.49,"value":223.3246153846,"ma_window":60},{"date":"2025-08-19","symbol":"AMZN","close":228.01,"value":223.6592857143,"ma_window":60},{"date":"2025-08-20","symbol":"AMZN","close":223.81,"value":223.6693333333,"ma_window":60},{"date":"2025-08-21","symbol":"AMZN","close":221.95,"value":223.561875,"ma_window":60},{"date":"2025-08-22","symbol":"AMZN","close":228.84,"value":223.8723529412,"ma_window":60},{"date":"2025-08-25","symbol":"AMZN","close":227.94,"value":224.0983333333,"ma_window":60},{"date":"2025-08-26","symbol":"AMZN","close":228.71,"value":224.3410526316,"ma_window":60},{"date":"2025-08-27","symbol":"AMZN","close":229.12,"value":224.58,"ma_window":60},{"date":"2025-08-28","symbol":"AMZN","close":231.6,"value":224.9142857143,"ma_window":60},{"date":"2025-08-29","symbol":"AMZN","close":229,"value":225.1,"ma_window":60},{"date":"2025-09-02","symbol":"AMZN","close":225.34,"value":225.1104347826,"ma_window":60},{"date":"2025-09-03","symbol":"AMZN","close":225.99,"value":225.1470833333,"ma_window":60},{"date":"2025-09-04","symbol":"AMZN","close":235.68,"value":225.5684,"ma_window":60},{"date":"2025-09-05","symbol":"AMZN","close":232.33,"value":225.8284615385,"ma_window":60},{"date":"2025-09-08","symbol":"AMZN","close":235.84,"value":226.1992592593,"ma_window":60},{"date":"2025-09-09","symbol":"AMZN","close":238.24,"value":226.6292857143,"ma_window":60},{"date":"2025-09-10","symbol":"AMZN","close":230.33,"value":226.7568965517,"ma_window":60},{"date":"2025-09-11","symbol":"AMZN","close":229.95,"value":226.8633333333,"ma_window":60},{"date":"2025-09-12","symbol":"AMZN","close":228.15,"value":226.9048387097,"ma_window":60},{"date":"2025-09-15","symbol":"AMZN","close":231.43,"value":227.04625,"ma_window":60},{"date":"2025-09-16","symbol":"AMZN","close":234.05,"value":227.2584848485,"ma_window":60},{"date":"2025-09-17","symbol":"AMZN","close":231.62,"value":227.3867647059,"ma_window":60},{"date":"2025-09-18","symbol":"AMZN","close":231.23,"value":227.4965714286,"ma_window":60},{"date":"2025-09-19","symbol":"AMZN","close":231.48,"value":227.6072222222,"ma_window":60},{"date":"2025-09-22","symbol":"AMZN","close":227.63,"value":227.6078378378,"ma_window":60},{"date":"2025-09-23","symbol":"AMZN","close":220.71,"value":227.4263157895,"ma_window":60},{"date":"2025-09-24","symbol":"AMZN","close":220.21,"value":227.2412820513,"ma_window":60},{"date":"2025-09-25","symbol":"AMZN","close":218.15,"value":227.014,"ma_window":60},{"date":"2025-09-26","symbol":"AMZN","close":219.78,"value":226.8375609756,"ma_window":60},{"date":"2025-09-29","symbol":"AMZN","close":222.17,"value":226.7264285714,"ma_window":60},{"date":"2025-09-30","symbol":"AMZN","close":219.57,"value":226.56,"ma_window":60},{"date":"2025-10-01","symbol":"AMZN","close":220.63,"value":226.4252272727,"ma_window":60},{"date":"2025-10-02","symbol":"AMZN","close":222.41,"value":226.336,"ma_window":60},{"date":"2025-10-03","symbol":"AMZN","close":219.51,"value":226.1876086957,"ma_window":60},{"date":"2025-10-06","symbol":"AMZN","close":220.9,"value":226.075106383,"ma_window":60},{"date":"2025-10-07","symbol":"AMZN","close":221.78,"value":225.985625,"ma_window":60},{"date":"2025-10-08","symbol":"AMZN","close":225.22,"value":225.97,"ma_window":60},{"date":"2025-10-09","symbol":"AMZN","close":227.74,"value":226.0054,"ma_window":60},{"date":"2025-10-10","symbol":"AMZN","close":216.37,"value":225.8164705882,"ma_window":60},{"date":"2025-10-13","symbol":"AMZN","close":220.07,"value":225.7059615385,"ma_window":60},{"date":"2025-10-14","symbol":"AMZN","close":216.39,"value":225.5301886792,"ma_window":60},{"date":"2025-10-15","symbol":"AMZN","close":215.57,"value":225.3457407407,"ma_window":60},{"date":"2025-10-16","symbol":"AMZN","close":214.47,"value":225.148,"ma_window":60},{"date":"2025-10-17","symbol":"AMZN","close":213.04,"value":224.9317857143,"ma_window":60},{"date":"2025-10-20","symbol":"AMZN","close":216.48,"value":224.7835087719,"ma_window":60},{"date":"2025-10-21","symbol":"AMZN","close":222.03,"value":224.7360344828,"ma_window":60},{"date":"2025-10-22","symbol":"AMZN","close":217.95,"value":224.6210169492,"ma_window":60},{"date":"2025-10-23","symbol":"AMZN","close":221.09,"value":224.5621666667,"ma_window":60},{"date":"2025-10-24","symbol":"AMZN","close":224.21,"value":224.3971666667,"ma_window":60},{"date":"2025-10-27","symbol":"AMZN","close":226.97,"value":224.6008333333,"ma_window":60},{"date":"2025-10-28","symbol":"AMZN","close":229.25,"value":224.8941666667,"ma_window":60},{"date":"2025-10-29","symbol":"AMZN","close":230.3,"value":225.17,"ma_window":60},{"date":"2025-10-30","symbol":"AMZN","close":222.86,"value":225.1791666667,"ma_window":60},{"date":"2025-10-31","symbol":"AMZN","close":244.22,"value":225.5306666667,"ma_window":60},{"date":"2025-11-03","symbol":"AMZN","close":254,"value":226.0525,"ma_window":60},{"date":"2025-11-04","symbol":"AMZN","close":249.32,"value":226.5195,"ma_window":60},{"date":"2025-11-05","symbol":"AMZN","close":250.2,"value":226.9983333333,"ma_window":60},{"date":"2025-11-06","symbol":"AMZN","close":243.04,"value":227.3063333333,"ma_window":60},{"date":"2025-11-07","symbol":"AMZN","close":244.41,"value":227.5301666667,"ma_window":60},{"date":"2025-11-10","symbol":"AMZN","close":248.4,"value":227.8196666667,"ma_window":60},{"date":"2025-11-11","symbol":"AMZN","close":249.1,"value":228.1131666667,"ma_window":60},{"date":"2025-11-12","symbol":"AMZN","close":244.2,"value":228.383,"ma_window":60},{"date":"2025-11-13","symbol":"AMZN","close":237.58,"value":228.6125,"ma_window":60},{"date":"2025-11-14","symbol":"AMZN","close":234.69,"value":228.8248333333,"ma_window":60},{"date":"2025-11-17","symbol":"AMZN","close":232.87,"value":228.892,"ma_window":60},{"date":"2025-11-18","symbol":"AMZN","close":222.55,"value":228.8021666667,"ma_window":60},{"date":"2025-11-19","symbol":"AMZN","close":222.69,"value":228.7018333333,"ma_window":60},{"date":"2025-11-20","symbol":"AMZN","close":217.14,"value":228.5021666667,"ma_window":60},{"date":"2025-11-21","symbol":"AMZN","close":220.69,"value":228.3203333333,"ma_window":60},{"date":"2025-11-24","symbol":"AMZN","close":226.28,"value":228.275,"ma_window":60},{"date":"2025-11-25","symbol":"AMZN","close":229.67,"value":228.3471666667,"ma_window":60},{"date":"2025-11-26","symbol":"AMZN","close":229.16,"value":228.4,"ma_window":60},{"date":"2025-11-28","symbol":"AMZN","close":233.22,"value":228.359,"ma_window":60},{"date":"2025-12-01","symbol":"AMZN","close":233.88,"value":228.3848333333,"ma_window":60},{"date":"2025-12-02","symbol":"AMZN","close":234.42,"value":228.3611666667,"ma_window":60},{"date":"2025-12-03","symbol":"AMZN","close":232.38,"value":228.2635,"ma_window":60},{"date":"2025-12-04","symbol":"AMZN","close":229.11,"value":228.2431666667,"ma_window":60},{"date":"2025-12-05","symbol":"AMZN","close":229.53,"value":228.2361666667,"ma_window":60},{"date":"2025-12-08","symbol":"AMZN","close":226.89,"value":228.2151666667,"ma_window":60},{"date":"2025-12-09","symbol":"AMZN","close":227.92,"value":228.1566666667,"ma_window":60},{"date":"2025-12-10","symbol":"AMZN","close":231.78,"value":228.1188333333,"ma_window":60},{"date":"2025-12-11","symbol":"AMZN","close":230.28,"value":228.0965,"ma_window":60},{"date":"2025-12-12","symbol":"AMZN","close":226.19,"value":228.0125,"ma_window":60},{"date":"2025-12-15","symbol":"AMZN","close":222.54,"value":227.8635,"ma_window":60},{"date":"2025-12-16","symbol":"AMZN","close":222.56,"value":227.779,"ma_window":60},{"date":"2025-12-17","symbol":"AMZN","close":221.27,"value":227.7883333333,"ma_window":60},{"date":"2025-12-18","symbol":"AMZN","close":226.76,"value":227.8975,"ma_window":60},{"date":"2025-12-19","symbol":"AMZN","close":227.35,"value":228.0508333333,"ma_window":60},{"date":"2025-12-22","symbol":"AMZN","close":228.43,"value":228.195,"ma_window":60},{"date":"2025-12-23","symbol":"AMZN","close":232.14,"value":228.3611666667,"ma_window":60},{"date":"2025-12-24","symbol":"AMZN","close":232.38,"value":228.5746666667,"ma_window":60},{"date":"2025-12-26","symbol":"AMZN","close":232.52,"value":228.7728333333,"ma_window":60},{"date":"2025-12-29","symbol":"AMZN","close":232.07,"value":228.9338333333,"ma_window":60},{"date":"2025-12-30","symbol":"AMZN","close":232.53,"value":229.1508333333,"ma_window":60},{"date":"2025-12-31","symbol":"AMZN","close":230.82,"value":229.3161666667,"ma_window":60},{"date":"2026-01-02","symbol":"AMZN","close":226.5,"value":229.3948333333,"ma_window":60},{"date":"2026-01-05","symbol":"AMZN","close":233.06,"value":229.5255,"ma_window":60},{"date":"2026-01-06","symbol":"AMZN","close":240.93,"value":229.7453333333,"ma_window":60},{"date":"2026-01-07","symbol":"AMZN","close":241.56,"value":230.1651666667,"ma_window":60},{"date":"2026-01-08","symbol":"AMZN","close":246.29,"value":230.6021666667,"ma_window":60},{"date":"2026-01-09","symbol":"AMZN","close":247.38,"value":231.1186666667,"ma_window":60},{"date":"2026-01-12","symbol":"AMZN","close":246.47,"value":231.6336666667,"ma_window":60},{"date":"2026-01-13","symbol":"AMZN","close":242.6,"value":232.1025,"ma_window":60},{"date":"2026-01-14","symbol":"AMZN","close":236.65,"value":232.496,"ma_window":60},{"date":"2026-01-15","symbol":"AMZN","close":238.18,"value":232.8576666667,"ma_window":60},{"date":"2026-01-16","symbol":"AMZN","close":239.12,"value":233.1425,"ma_window":60},{"date":"2026-01-20","symbol":"AMZN","close":231,"value":233.36,"ma_window":60},{"date":"2026-01-21","symbol":"AMZN","close":231.31,"value":233.5303333333,"ma_window":60},{"date":"2026-01-22","symbol":"AMZN","close":234.34,"value":233.6991666667,"ma_window":60},{"date":"2026-01-23","symbol":"AMZN","close":239.16,"value":233.9023333333,"ma_window":60},{"date":"2026-01-26","symbol":"AMZN","close":238.42,"value":234.0551666667,"ma_window":60},{"date":"2025-07-31","symbol":"GOOGL","close":191.6,"value":191.6,"ma_window":60},{"date":"2025-08-01","symbol":"GOOGL","close":188.84,"value":190.22,"ma_window":60},{"date":"2025-08-04","symbol":"GOOGL","close":194.74,"value":191.7266666667,"ma_window":60},{"date":"2025-08-05","symbol":"GOOGL","close":194.37,"value":192.3875,"ma_window":60},{"date":"2025-08-06","symbol":"GOOGL","close":195.79,"value":193.068,"ma_window":60},{"date":"2025-08-07","symbol":"GOOGL","close":196.22,"value":193.5933333333,"ma_window":60},{"date":"2025-08-08","symbol":"GOOGL","close":201.11,"value":194.6671428571,"ma_window":60},{"date":"2025-08-11","symbol":"GOOGL","close":200.69,"value":195.42,"ma_window":60},{"date":"2025-08-12","symbol":"GOOGL","close":203.03,"value":196.2655555556,"ma_window":60},{"date":"2025-08-13","symbol":"GOOGL","close":201.65,"value":196.804,"ma_window":60},{"date":"2025-08-14","symbol":"GOOGL","close":202.63,"value":197.3336363636,"ma_window":60},{"date":"2025-08-15","symbol":"GOOGL","close":203.58,"value":197.8541666667,"ma_window":60},{"date":"2025-08-18","symbol":"GOOGL","close":203.19,"value":198.2646153846,"ma_window":60},{"date":"2025-08-19","symbol":"GOOGL","close":201.26,"value":198.4785714286,"ma_window":60},{"date":"2025-08-20","symbol":"GOOGL","close":199.01,"value":198.514,"ma_window":60},{"date":"2025-08-21","symbol":"GOOGL","close":199.44,"value":198.571875,"ma_window":60},{"date":"2025-08-22","symbol":"GOOGL","close":205.77,"value":198.9952941176,"ma_window":60},{"date":"2025-08-25","symbol":"GOOGL","close":208.17,"value":199.505,"ma_window":60},{"date":"2025-08-26","symbol":"GOOGL","close":206.82,"value":199.89,"ma_window":60},{"date":"2025-08-27","symbol":"GOOGL","close":207.16,"value":200.2535,"ma_window":60},{"date":"2025-08-28","symbol":"GOOGL","close":211.31,"value":200.78,"ma_window":60},{"date":"2025-08-29","symbol":"GOOGL","close":212.58,"value":201.3163636364,"ma_window":60},{"date":"2025-09-02","symbol":"GOOGL","close":211.02,"value":201.7382608696,"ma_window":60},{"date":"2025-09-03","symbol":"GOOGL","close":230.3,"value":202.9283333333,"ma_window":60},{"date":"2025-09-04","symbol":"GOOGL","close":231.94,"value":204.0888,"ma_window":60},{"date":"2025-09-05","symbol":"GOOGL","close":234.64,"value":205.2638461538,"ma_window":60},{"date":"2025-09-08","symbol":"GOOGL","close":233.89,"value":206.3240740741,"ma_window":60},{"date":"2025-09-09","symbol":"GOOGL","close":239.47,"value":207.5078571429,"ma_window":60},{"date":"2025-09-10","symbol":"GOOGL","close":239.01,"value":208.594137931,"ma_window":60},{"date":"2025-09-11","symbol":"GOOGL","close":240.21,"value":209.648,"ma_window":60},{"date":"2025-09-12","symbol":"GOOGL","close":240.64,"value":210.6477419355,"ma_window":60},{"date":"2025-09-15","symbol":"GOOGL","close":251.45,"value":211.9228125,"ma_window":60},{"date":"2025-09-16","symbol":"GOOGL","close":251,"value":213.106969697,"ma_window":60},{"date":"2025-09-17","symbol":"GOOGL","close":249.37,"value":214.1735294118,"ma_window":60},{"date":"2025-09-18","symbol":"GOOGL","close":251.87,"value":215.2505714286,"ma_window":60},{"date":"2025-09-19","symbol":"GOOGL","close":254.55,"value":216.3422222222,"ma_window":60},{"date":"2025-09-22","symbol":"GOOGL","close":252.36,"value":217.3156756757,"ma_window":60},{"date":"2025-09-23","symbol":"GOOGL","close":251.5,"value":218.2152631579,"ma_window":60},{"date":"2025-09-24","symbol":"GOOGL","close":246.98,"value":218.9528205128,"ma_window":60},{"date":"2025-09-25","symbol":"GOOGL","close":245.63,"value":219.61975,"ma_window":60},{"date":"2025-09-26","symbol":"GOOGL","close":246.38,"value":220.2724390244,"ma_window":60},{"date":"2025-09-29","symbol":"GOOGL","close":243.89,"value":220.8347619048,"ma_window":60},{"date":"2025-09-30","symbol":"GOOGL","close":242.94,"value":221.3488372093,"ma_window":60},{"date":"2025-10-01","symbol":"GOOGL","close":244.74,"value":221.8804545455,"ma_window":60},{"date":"2025-10-02","symbol":"GOOGL","close":245.53,"value":222.406,"ma_window":60},{"date":"2025-10-03","symbol":"GOOGL","close":245.19,"value":222.9013043478,"ma_window":60},{"date":"2025-10-06","symbol":"GOOGL","close":250.27,"value":223.4836170213,"ma_window":60},{"date":"2025-10-07","symbol":"GOOGL","close":245.6,"value":223.944375,"ma_window":60},{"date":"2025-10-08","symbol":"GOOGL","close":244.46,"value":224.3630612245,"ma_window":60},{"date":"2025-10-09","symbol":"GOOGL","close":241.37,"value":224.7032,"ma_window":60},{"date":"2025-10-10","symbol":"GOOGL","close":236.42,"value":224.9329411765,"ma_window":60},{"date":"2025-10-13","symbol":"GOOGL","close":243.99,"value":225.2994230769,"ma_window":60},{"date":"2025-10-14","symbol":"GOOGL","close":245.29,"value":225.6766037736,"ma_window":60},{"date":"2025-10-15","symbol":"GOOGL","close":250.87,"value":226.1431481481,"ma_window":60},{"date":"2025-10-16","symbol":"GOOGL","close":251.3,"value":226.6005454545,"ma_window":60},{"date":"2025-10-17","symbol":"GOOGL","close":253.13,"value":227.0742857143,"ma_window":60},{"date":"2025-10-20","symbol":"GOOGL","close":256.38,"value":227.5884210526,"ma_window":60},{"date":"2025-10-21","symbol":"GOOGL","close":250.3,"value":227.98,"ma_window":60},{"date":"2025-10-22","symbol":"GOOGL","close":251.53,"value":228.3791525424,"ma_window":60},{"date":"2025-10-23","symbol":"GOOGL","close":252.91,"value":228.788,"ma_window":60},{"date":"2025-10-24","symbol":"GOOGL","close":259.75,"value":229.9238333333,"ma_window":60},{"date":"2025-10-27","symbol":"GOOGL","close":269.09,"value":231.2613333333,"ma_window":60},{"date":"2025-10-28","symbol":"GOOGL","close":267.3,"value":232.4706666667,"ma_window":60},{"date":"2025-10-29","symbol":"GOOGL","close":274.39,"value":233.8043333333,"ma_window":60},{"date":"2025-10-30","symbol":"GOOGL","close":281.3,"value":235.2295,"ma_window":60},{"date":"2025-10-31","symbol":"GOOGL","close":281.01,"value":236.6426666667,"ma_window":60},{"date":"2025-11-03","symbol":"GOOGL","close":283.53,"value":238.0163333333,"ma_window":60},{"date":"2025-11-04","symbol":"GOOGL","close":277.36,"value":239.2941666667,"ma_window":60},{"date":"2025-11-05","symbol":"GOOGL","close":284.12,"value":240.6456666667,"ma_window":60},{"date":"2025-11-06","symbol":"GOOGL","close":284.56,"value":242.0275,"ma_window":60},{"date":"2025-11-07","symbol":"GOOGL","close":278.65,"value":243.2945,"ma_window":60},{"date":"2025-11-10","symbol":"GOOGL","close":289.91,"value":244.7333333333,"ma_window":60},{"date":"2025-11-11","symbol":"GOOGL","close":291.12,"value":246.1988333333,"ma_window":60},{"date":"2025-11-12","symbol":"GOOGL","close":286.52,"value":247.6198333333,"ma_window":60},{"date":"2025-11-13","symbol":"GOOGL","close":278.39,"value":248.9428333333,"ma_window":60},{"date":"2025-11-14","symbol":"GOOGL","close":276.23,"value":250.2226666667,"ma_window":60},{"date":"2025-11-17","symbol":"GOOGL","close":284.83,"value":251.5403333333,"ma_window":60},{"date":"2025-11-18","symbol":"GOOGL","close":284.09,"value":252.8056666667,"ma_window":60},{"date":"2025-11-19","symbol":"GOOGL","close":292.62,"value":254.2356666667,"ma_window":60},{"date":"2025-11-20","symbol":"GOOGL","close":289.26,"value":255.604,"ma_window":60},{"date":"2025-11-21","symbol":"GOOGL","close":299.46,"value":257.0731666667,"ma_window":60},{"date":"2025-11-24","symbol":"GOOGL","close":318.37,"value":258.8363333333,"ma_window":60},{"date":"2025-11-25","symbol":"GOOGL","close":323.23,"value":260.7065,"ma_window":60},{"date":"2025-11-26","symbol":"GOOGL","close":319.74,"value":262.1971666667,"ma_window":60},{"date":"2025-11-28","symbol":"GOOGL","close":319.97,"value":263.6643333333,"ma_window":60},{"date":"2025-12-01","symbol":"GOOGL","close":314.68,"value":264.9983333333,"ma_window":60},{"date":"2025-12-02","symbol":"GOOGL","close":315.6,"value":266.3601666667,"ma_window":60},{"date":"2025-12-03","symbol":"GOOGL","close":319.42,"value":267.6926666667,"ma_window":60},{"date":"2025-12-04","symbol":"GOOGL","close":317.41,"value":268.9993333333,"ma_window":60},{"date":"2025-12-05","symbol":"GOOGL","close":321.06,"value":270.3468333333,"ma_window":60},{"date":"2025-12-08","symbol":"GOOGL","close":313.72,"value":271.5648333333,"ma_window":60},{"date":"2025-12-09","symbol":"GOOGL","close":317.08,"value":272.6586666667,"ma_window":60},{"date":"2025-12-10","symbol":"GOOGL","close":320.21,"value":273.8121666667,"ma_window":60},{"date":"2025-12-11","symbol":"GOOGL","close":312.43,"value":274.8631666667,"ma_window":60},{"date":"2025-12-12","symbol":"GOOGL","close":309.29,"value":275.8201666667,"ma_window":60},{"date":"2025-12-15","symbol":"GOOGL","close":308.22,"value":276.7146666667,"ma_window":60},{"date":"2025-12-16","symbol":"GOOGL","close":306.57,"value":277.6181666667,"ma_window":60},{"date":"2025-12-17","symbol":"GOOGL","close":296.72,"value":278.3718333333,"ma_window":60},{"date":"2025-12-18","symbol":"GOOGL","close":302.46,"value":279.2965,"ma_window":60},{"date":"2025-12-19","symbol":"GOOGL","close":307.16,"value":280.322,"ma_window":60},{"date":"2025-12-22","symbol":"GOOGL","close":309.78,"value":281.3786666667,"ma_window":60},{"date":"2025-12-23","symbol":"GOOGL","close":314.35,"value":282.553,"ma_window":60},{"date":"2025-12-24","symbol":"GOOGL","close":314.09,"value":283.7388333333,"ma_window":60},{"date":"2025-12-26","symbol":"GOOGL","close":313.51,"value":284.885,"ma_window":60},{"date":"2025-12-29","symbol":"GOOGL","close":313.56,"value":286.0188333333,"ma_window":60},{"date":"2025-12-30","symbol":"GOOGL","close":313.85,"value":287.1631666667,"ma_window":60},{"date":"2025-12-31","symbol":"GOOGL","close":313,"value":288.2086666667,"ma_window":60},{"date":"2026-01-02","symbol":"GOOGL","close":315.15,"value":289.3678333333,"ma_window":60},{"date":"2026-01-05","symbol":"GOOGL","close":316.54,"value":290.5691666667,"ma_window":60},{"date":"2026-01-06","symbol":"GOOGL","close":314.34,"value":291.7853333333,"ma_window":60},{"date":"2026-01-07","symbol":"GOOGL","close":321.98,"value":293.2113333333,"ma_window":60},{"date":"2026-01-08","symbol":"GOOGL","close":325.44,"value":294.5688333333,"ma_window":60},{"date":"2026-01-09","symbol":"GOOGL","close":328.57,"value":295.9568333333,"ma_window":60},{"date":"2026-01-12","symbol":"GOOGL","close":331.86,"value":297.3066666667,"ma_window":60},{"date":"2026-01-13","symbol":"GOOGL","close":335.97,"value":298.7178333333,"ma_window":60},{"date":"2026-01-14","symbol":"GOOGL","close":335.84,"value":300.0963333333,"ma_window":60},{"date":"2026-01-15","symbol":"GOOGL","close":332.78,"value":301.3696666667,"ma_window":60},{"date":"2026-01-16","symbol":"GOOGL","close":330,"value":302.698,"ma_window":60},{"date":"2026-01-20","symbol":"GOOGL","close":322,"value":303.8725,"ma_window":60},{"date":"2026-01-21","symbol":"GOOGL","close":328.38,"value":305.1303333333,"ma_window":60},{"date":"2026-01-22","symbol":"GOOGL","close":330.54,"value":306.3101666667,"ma_window":60},{"date":"2026-01-23","symbol":"GOOGL","close":327.93,"value":307.2908333333,"ma_window":60},{"date":"2026-01-26","symbol":"GOOGL","close":333.26,"value":308.3901666667,"ma_window":60},{"date":"2025-07-31","symbol":"META","close":772.29,"value":772.29,"ma_window":60},{"date":"2025-08-01","symbol":"META","close":748.89,"value":760.59,"ma_window":60},{"date":"2025-08-04","symbol":"META","close":775.21,"value":765.4633333333,"ma_window":60},{"date":"2025-08-05","symbol":"META","close":762.32,"value":764.6775,"ma_window":60},{"date":"2025-08-06","symbol":"META","close":770.84,"value":765.91,"ma_window":60},{"date":"2025-08-07","symbol":"META","close":760.7,"value":765.0416666667,"ma_window":60},{"date":"2025-08-08","symbol":"META","close":768.15,"value":765.4857142857,"ma_window":60},{"date":"2025-08-11","symbol":"META","close":764.73,"value":765.39125,"ma_window":60},{"date":"2025-08-12","symbol":"META","close":788.82,"value":767.9944444444,"ma_window":60},{"date":"2025-08-13","symbol":"META","close":778.92,"value":769.087,"ma_window":60},{"date":"2025-08-14","symbol":"META","close":780.97,"value":770.1672727273,"ma_window":60},{"date":"2025-08-15","symbol":"META","close":784.06,"value":771.325,"ma_window":60},{"date":"2025-08-18","symbol":"META","close":766.23,"value":770.9330769231,"ma_window":60},{"date":"2025-08-19","symbol":"META","close":750.36,"value":769.4635714286,"ma_window":60},{"date":"2025-08-20","symbol":"META","close":746.61,"value":767.94,"ma_window":60},{"date":"2025-08-21","symbol":"META","close":738,"value":766.06875,"ma_window":60},{"date":"2025-08-22","symbol":"META","close":753.67,"value":765.3394117647,"ma_window":60},{"date":"2025-08-25","symbol":"META","close":752.18,"value":764.6083333333,"ma_window":60},{"date":"2025-08-26","symbol":"META","close":752.98,"value":763.9963157895,"ma_window":60},{"date":"2025-08-27","symbol":"META","close":746.27,"value":763.11,"ma_window":60},{"date":"2025-08-28","symbol":"META","close":749.99,"value":762.4852380952,"ma_window":60},{"date":"2025-08-29","symbol":"META","close":737.6,"value":761.3540909091,"ma_window":60},{"date":"2025-09-02","symbol":"META","close":734.02,"value":760.1656521739,"ma_window":60},{"date":"2025-09-03","symbol":"META","close":735.95,"value":759.1566666667,"ma_window":60},{"date":"2025-09-04","symbol":"META","close":747.54,"value":758.692,"ma_window":60},{"date":"2025-09-05","symbol":"META","close":751.33,"value":758.4088461538,"ma_window":60},{"date":"2025-09-08","symbol":"META","close":751.18,"value":758.1411111111,"ma_window":60},{"date":"2025-09-09","symbol":"META","close":764.56,"value":758.3703571429,"ma_window":60},{"date":"2025-09-10","symbol":"META","close":750.86,"value":758.1113793103,"ma_window":60},{"date":"2025-09-11","symbol":"META","close":749.78,"value":757.8336666667,"ma_window":60},{"date":"2025-09-12","symbol":"META","close":754.47,"value":757.7251612903,"ma_window":60},{"date":"2025-09-15","symbol":"META","close":763.56,"value":757.9075,"ma_window":60},{"date":"2025-09-16","symbol":"META","close":777.84,"value":758.5115151515,"ma_window":60},{"date":"2025-09-17","symbol":"META","close":774.57,"value":758.9838235294,"ma_window":60},{"date":"2025-09-18","symbol":"META","close":779.09,"value":759.5582857143,"ma_window":60},{"date":"2025-09-19","symbol":"META","close":777.22,"value":760.0488888889,"ma_window":60},{"date":"2025-09-22","symbol":"META","close":764.54,"value":760.1702702703,"ma_window":60},{"date":"2025-09-23","symbol":"META","close":754.78,"value":760.0284210526,"ma_window":60},{"date":"2025-09-24","symbol":"META","close":760.04,"value":760.0287179487,"ma_window":60},{"date":"2025-09-25","symbol":"META","close":748.3,"value":759.7355,"ma_window":60},{"date":"2025-09-26","symbol":"META","close":743.14,"value":759.3307317073,"ma_window":60},{"date":"2025-09-29","symbol":"META","close":742.79,"value":758.9369047619,"ma_window":60},{"date":"2025-09-30","symbol":"META","close":733.78,"value":758.3518604651,"ma_window":60},{"date":"2025-10-01","symbol":"META","close":716.76,"value":757.4065909091,"ma_window":60},{"date":"2025-10-02","symbol":"META","close":726.46,"value":756.7188888889,"ma_window":60},{"date":"2025-10-03","symbol":"META","close":709.98,"value":755.702826087,"ma_window":60},{"date":"2025-10-06","symbol":"META","close":715.08,"value":754.8385106383,"ma_window":60},{"date":"2025-10-07","symbol":"META","close":712.5,"value":753.9564583333,"ma_window":60},{"date":"2025-10-08","symbol":"META","close":717.26,"value":753.2075510204,"ma_window":60},{"date":"2025-10-09","symbol":"META","close":732.91,"value":752.8016,"ma_window":60},{"date":"2025-10-10","symbol":"META","close":704.73,"value":751.8590196078,"ma_window":60},{"date":"2025-10-13","symbol":"META","close":715.12,"value":751.1525,"ma_window":60},{"date":"2025-10-14","symbol":"META","close":708.07,"value":750.3396226415,"ma_window":60},{"date":"2025-10-15","symbol":"META","close":716.97,"value":749.7216666667,"ma_window":60},{"date":"2025-10-16","symbol":"META","close":711.49,"value":749.0265454545,"ma_window":60},{"date":"2025-10-17","symbol":"META","close":716.34,"value":748.4428571429,"ma_window":60},{"date":"2025-10-20","symbol":"META","close":731.57,"value":748.1468421053,"ma_window":60},{"date":"2025-10-21","symbol":"META","close":732.67,"value":747.88,"ma_window":60},{"date":"2025-10-22","symbol":"META","close":732.81,"value":747.6245762712,"ma_window":60},{"date":"2025-10-23","symbol":"META","close":733.4,"value":747.3875,"ma_window":60},{"date":"2025-10-24","symbol":"META","close":737.76,"value":746.812,"ma_window":60},{"date":"2025-10-27","symbol":"META","close":750.21,"value":746.834,"ma_window":60},{"date":"2025-10-28","symbol":"META","close":750.83,"value":746.4276666667,"ma_window":60},{"date":"2025-10-29","symbol":"META","close":751.06,"value":746.24,"ma_window":60},{"date":"2025-10-30","symbol":"META","close":665.93,"value":744.4915,"ma_window":60},{"date":"2025-10-31","symbol":"META","close":647.82,"value":742.6101666667,"ma_window":60},{"date":"2025-11-03","symbol":"META","close":637.19,"value":740.4275,"ma_window":60},{"date":"2025-11-04","symbol":"META","close":626.81,"value":738.1288333333,"ma_window":60},{"date":"2025-11-05","symbol":"META","close":635.43,"value":735.5723333333,"ma_window":60},{"date":"2025-11-06","symbol":"META","close":618.44,"value":732.8976666667,"ma_window":60},{"date":"2025-11-07","symbol":"META","close":621.2,"value":730.2348333333,"ma_window":60},{"date":"2025-11-10","symbol":"META","close":631.25,"value":727.688,"ma_window":60},{"date":"2025-11-11","symbol":"META","close":626.57,"value":725.3603333333,"ma_window":60},{"date":"2025-11-12","symbol":"META","close":608.51,"value":722.9961666667,"ma_window":60},{"date":"2025-11-13","symbol":"META","close":609.39,"value":720.7091666667,"ma_window":60},{"date":"2025-11-14","symbol":"META","close":608.96,"value":718.5585,"ma_window":60},{"date":"2025-11-17","symbol":"META","close":601.52,"value":716.0226666667,"ma_window":60},{"date":"2025-11-18","symbol":"META","close":597.2,"value":713.4396666667,"ma_window":60},{"date":"2025-11-19","symbol":"META","close":589.84,"value":710.7206666667,"ma_window":60},{"date":"2025-11-20","symbol":"META","close":588.67,"value":708.094,"ma_window":60},{"date":"2025-11-21","symbol":"META","close":593.77,"value":705.4903333333,"ma_window":60},{"date":"2025-11-24","symbol":"META","close":612.55,"value":703.4061666667,"ma_window":60},{"date":"2025-11-25","symbol":"META","close":635.7,"value":701.7675,"ma_window":60},{"date":"2025-11-26","symbol":"META","close":633.09,"value":700.0531666667,"ma_window":60},{"date":"2025-11-28","symbol":"META","close":647.42,"value":698.3845,"ma_window":60},{"date":"2025-12-01","symbol":"META","close":640.35,"value":696.5348333333,"ma_window":60},{"date":"2025-12-02","symbol":"META","close":646.57,"value":694.7913333333,"ma_window":60},{"date":"2025-12-03","symbol":"META","close":639.08,"value":692.7,"ma_window":60},{"date":"2025-12-04","symbol":"META","close":660.99,"value":691.2021666667,"ma_window":60},{"date":"2025-12-05","symbol":"META","close":672.87,"value":689.9203333333,"ma_window":60},{"date":"2025-12-08","symbol":"META","close":666.26,"value":688.4501666667,"ma_window":60},{"date":"2025-12-09","symbol":"META","close":656.42,"value":686.6645,"ma_window":60},{"date":"2025-12-10","symbol":"META","close":649.6,"value":684.5271666667,"ma_window":60},{"date":"2025-12-11","symbol":"META","close":652.18,"value":682.4873333333,"ma_window":60},{"date":"2025-12-12","symbol":"META","close":643.71,"value":680.231,"ma_window":60},{"date":"2025-12-15","symbol":"META","close":647.51,"value":678.0691666667,"ma_window":60},{"date":"2025-12-16","symbol":"META","close":657.15,"value":676.2793333333,"ma_window":60},{"date":"2025-12-17","symbol":"META","close":649.5,"value":674.5246666667,"ma_window":60},{"date":"2025-12-18","symbol":"META","close":664.45,"value":672.9315,"ma_window":60},{"date":"2025-12-19","symbol":"META","close":658.77,"value":671.4393333333,"ma_window":60},{"date":"2025-12-22","symbol":"META","close":661.5,"value":670.0786666667,"ma_window":60},{"date":"2025-12-23","symbol":"META","close":664.94,"value":668.7811666667,"ma_window":60},{"date":"2025-12-24","symbol":"META","close":667.55,"value":667.6773333333,"ma_window":60},{"date":"2025-12-26","symbol":"META","close":663.29,"value":666.7861666667,"ma_window":60},{"date":"2025-12-29","symbol":"META","close":658.69,"value":665.6566666667,"ma_window":60},{"date":"2025-12-30","symbol":"META","close":665.95,"value":664.9228333333,"ma_window":60},{"date":"2025-12-31","symbol":"META","close":660.09,"value":664.0063333333,"ma_window":60},{"date":"2026-01-02","symbol":"META","close":650.41,"value":662.9715,"ma_window":60},{"date":"2026-01-05","symbol":"META","close":658.79,"value":661.997,"ma_window":60},{"date":"2026-01-06","symbol":"META","close":660.62,"value":660.7921666667,"ma_window":60},{"date":"2026-01-07","symbol":"META","close":648.69,"value":659.8581666667,"ma_window":60},{"date":"2026-01-08","symbol":"META","close":646.06,"value":658.7071666667,"ma_window":60},{"date":"2026-01-09","symbol":"META","close":653.06,"value":657.7903333333,"ma_window":60},{"date":"2026-01-12","symbol":"META","close":641.97,"value":656.5403333333,"ma_window":60},{"date":"2026-01-13","symbol":"META","close":631.09,"value":655.2003333333,"ma_window":60},{"date":"2026-01-14","symbol":"META","close":615.52,"value":653.52,"ma_window":60},{"date":"2026-01-15","symbol":"META","close":620.8,"value":651.6738333333,"ma_window":60},{"date":"2026-01-16","symbol":"META","close":620.25,"value":649.8001666667,"ma_window":60},{"date":"2026-01-20","symbol":"META","close":604.12,"value":647.6553333333,"ma_window":60},{"date":"2026-01-21","symbol":"META","close":612.96,"value":645.648,"ma_window":60},{"date":"2026-01-22","symbol":"META","close":647.63,"value":644.1458333333,"ma_window":60},{"date":"2026-01-23","symbol":"META","close":658.76,"value":642.6216666667,"ma_window":60},{"date":"2026-01-26","symbol":"META","close":672.36,"value":641.3138333333,"ma_window":60},{"date":"2025-07-31","symbol":"MSFT","close":531.63,"value":531.63,"ma_window":60},{"date":"2025-08-01","symbol":"MSFT","close":522.27,"value":526.95,"ma_window":60},{"date":"2025-08-04","symbol":"MSFT","close":533.76,"value":529.22,"ma_window":60},{"date":"2025-08-05","symbol":"MSFT","close":525.9,"value":528.39,"ma_window":60},{"date":"2025-08-06","symbol":"MSFT","close":523.1,"value":527.332,"ma_window":60},{"date":"2025-08-07","symbol":"MSFT","close":519.01,"value":525.945,"ma_window":60},{"date":"2025-08-08","symbol":"MSFT","close":520.21,"value":525.1257142857,"ma_window":60},{"date":"2025-08-11","symbol":"MSFT","close":519.94,"value":524.4775,"ma_window":60},{"date":"2025-08-12","symbol":"MSFT","close":527.38,"value":524.8,"ma_window":60},{"date":"2025-08-13","symbol":"MSFT","close":518.75,"value":524.195,"ma_window":60},{"date":"2025-08-14","symbol":"MSFT","close":520.65,"value":523.8727272727,"ma_window":60},{"date":"2025-08-15","symbol":"MSFT","close":518.35,"value":523.4125,"ma_window":60},{"date":"2025-08-18","symbol":"MSFT","close":515.29,"value":522.7876923077,"ma_window":60},{"date":"2025-08-19","symbol":"MSFT","close":507.98,"value":521.73,"ma_window":60},{"date":"2025-08-20","symbol":"MSFT","close":503.95,"value":520.5446666667,"ma_window":60},{"date":"2025-08-21","symbol":"MSFT","close":503.3,"value":519.466875,"ma_window":60},{"date":"2025-08-22","symbol":"MSFT","close":506.28,"value":518.6911764706,"ma_window":60},{"date":"2025-08-25","symbol":"MSFT","close":503.32,"value":517.8372222222,"ma_window":60},{"date":"2025-08-26","symbol":"MSFT","close":501.1,"value":516.9563157895,"ma_window":60},{"date":"2025-08-27","symbol":"MSFT","close":505.79,"value":516.398,"ma_window":60},{"date":"2025-08-28","symbol":"MSFT","close":508.69,"value":516.030952381,"ma_window":60},{"date":"2025-08-29","symbol":"MSFT","close":505.74,"value":515.5631818182,"ma_window":60},{"date":"2025-09-02","symbol":"MSFT","close":504.18,"value":515.0682608696,"ma_window":60},{"date":"2025-09-03","symbol":"MSFT","close":504.41,"value":514.6241666667,"ma_window":60},{"date":"2025-09-04","symbol":"MSFT","close":507.02,"value":514.32,"ma_window":60},{"date":"2025-09-05","symbol":"MSFT","close":494.08,"value":513.5415384615,"ma_window":60},{"date":"2025-09-08","symbol":"MSFT","close":497.27,"value":512.9388888889,"ma_window":60},{"date":"2025-09-09","symbol":"MSFT","close":497.48,"value":512.3867857143,"ma_window":60},{"date":"2025-09-10","symbol":"MSFT","close":499.44,"value":511.9403448276,"ma_window":60},{"date":"2025-09-11","symbol":"MSFT","close":500.07,"value":511.5446666667,"ma_window":60},{"date":"2025-09-12","symbol":"MSFT","close":508.95,"value":511.4609677419,"ma_window":60},{"date":"2025-09-15","symbol":"MSFT","close":514.4,"value":511.5528125,"ma_window":60},{"date":"2025-09-16","symbol":"MSFT","close":508.09,"value":511.4478787879,"ma_window":60},{"date":"2025-09-17","symbol":"MSFT","close":509.07,"value":511.3779411765,"ma_window":60},{"date":"2025-09-18","symbol":"MSFT","close":507.5,"value":511.2671428571,"ma_window":60},{"date":"2025-09-19","symbol":"MSFT","close":516.96,"value":511.4252777778,"ma_window":60},{"date":"2025-09-22","symbol":"MSFT","close":513.49,"value":511.4810810811,"ma_window":60},{"date":"2025-09-23","symbol":"MSFT","close":508.28,"value":511.3968421053,"ma_window":60},{"date":"2025-09-24","symbol":"MSFT","close":509.2,"value":511.3405128205,"ma_window":60},{"date":"2025-09-25","symbol":"MSFT","close":506.08,"value":511.209,"ma_window":60},{"date":"2025-09-26","symbol":"MSFT","close":510.5,"value":511.1917073171,"ma_window":60},{"date":"2025-09-29","symbol":"MSFT","close":513.64,"value":511.25,"ma_window":60},{"date":"2025-09-30","symbol":"MSFT","close":516.98,"value":511.383255814,"ma_window":60},{"date":"2025-10-01","symbol":"MSFT","close":518.74,"value":511.5504545455,"ma_window":60},{"date":"2025-10-02","symbol":"MSFT","close":514.78,"value":511.6222222222,"ma_window":60},{"date":"2025-10-03","symbol":"MSFT","close":516.38,"value":511.7256521739,"ma_window":60},{"date":"2025-10-06","symbol":"MSFT","close":527.58,"value":512.0629787234,"ma_window":60},{"date":"2025-10-07","symbol":"MSFT","close":523,"value":512.2908333333,"ma_window":60},{"date":"2025-10-08","symbol":"MSFT","close":523.87,"value":512.5271428571,"ma_window":60},{"date":"2025-10-09","symbol":"MSFT","close":521.42,"value":512.705,"ma_window":60},{"date":"2025-10-10","symbol":"MSFT","close":510.01,"value":512.6521568627,"ma_window":60},{"date":"2025-10-13","symbol":"MSFT","close":513.09,"value":512.6605769231,"ma_window":60},{"date":"2025-10-14","symbol":"MSFT","close":512.61,"value":512.6596226415,"ma_window":60},{"date":"2025-10-15","symbol":"MSFT","close":512.47,"value":512.6561111111,"ma_window":60},{"date":"2025-10-16","symbol":"MSFT","close":510.65,"value":512.6196363636,"ma_window":60},{"date":"2025-10-17","symbol":"MSFT","close":512.62,"value":512.6196428571,"ma_window":60},{"date":"2025-10-20","symbol":"MSFT","close":515.82,"value":512.6757894737,"ma_window":60},{"date":"2025-10-21","symbol":"MSFT","close":516.69,"value":512.745,"ma_window":60},{"date":"2025-10-22","symbol":"MSFT","close":519.57,"value":512.8606779661,"ma_window":60},{"date":"2025-10-23","symbol":"MSFT","close":519.59,"value":512.9728333333,"ma_window":60},{"date":"2025-10-24","symbol":"MSFT","close":522.63,"value":512.8228333333,"ma_window":60},{"date":"2025-10-27","symbol":"MSFT","close":530.53,"value":512.9605,"ma_window":60},{"date":"2025-10-28","symbol":"MSFT","close":541.06,"value":513.0821666667,"ma_window":60},{"date":"2025-10-29","symbol":"MSFT","close":540.54,"value":513.3261666667,"ma_window":60},{"date":"2025-10-30","symbol":"MSFT","close":524.78,"value":513.3541666667,"ma_window":60},{"date":"2025-10-31","symbol":"MSFT","close":516.84,"value":513.318,"ma_window":60},{"date":"2025-11-03","symbol":"MSFT","close":516.06,"value":513.2488333333,"ma_window":60},{"date":"2025-11-04","symbol":"MSFT","close":513.37,"value":513.1393333333,"ma_window":60},{"date":"2025-11-05","symbol":"MSFT","close":506.21,"value":512.7865,"ma_window":60},{"date":"2025-11-06","symbol":"MSFT","close":496.17,"value":512.4101666667,"ma_window":60},{"date":"2025-11-07","symbol":"MSFT","close":495.89,"value":511.9975,"ma_window":60},{"date":"2025-11-10","symbol":"MSFT","close":505.05,"value":511.7758333333,"ma_window":60},{"date":"2025-11-11","symbol":"MSFT","close":507.73,"value":511.6498333333,"ma_window":60},{"date":"2025-11-12","symbol":"MSFT","close":510.19,"value":511.6866666667,"ma_window":60},{"date":"2025-11-13","symbol":"MSFT","close":502.35,"value":511.66,"ma_window":60},{"date":"2025-11-14","symbol":"MSFT","close":509.23,"value":511.7588333333,"ma_window":60},{"date":"2025-11-17","symbol":"MSFT","close":506.54,"value":511.7631666667,"ma_window":60},{"date":"2025-11-18","symbol":"MSFT","close":492.87,"value":511.589,"ma_window":60},{"date":"2025-11-19","symbol":"MSFT","close":486.21,"value":511.3408333333,"ma_window":60},{"date":"2025-11-20","symbol":"MSFT","close":478.43,"value":510.8848333333,"ma_window":60},{"date":"2025-11-21","symbol":"MSFT","close":472.12,"value":510.2753333333,"ma_window":60},{"date":"2025-11-24","symbol":"MSFT","close":474,"value":509.7463333333,"ma_window":60},{"date":"2025-11-25","symbol":"MSFT","close":476.99,"value":509.2931666667,"ma_window":60},{"date":"2025-11-26","symbol":"MSFT","close":485.5,"value":508.978,"ma_window":60},{"date":"2025-11-28","symbol":"MSFT","close":492.01,"value":508.7278333333,"ma_window":60},{"date":"2025-12-01","symbol":"MSFT","close":486.74,"value":508.6055,"ma_window":60},{"date":"2025-12-02","symbol":"MSFT","close":490,"value":508.4843333333,"ma_window":60},{"date":"2025-12-03","symbol":"MSFT","close":477.73,"value":508.1551666667,"ma_window":60},{"date":"2025-12-04","symbol":"MSFT","close":480.84,"value":507.8451666667,"ma_window":60},{"date":"2025-12-05","symbol":"MSFT","close":483.16,"value":507.5633333333,"ma_window":60},{"date":"2025-12-08","symbol":"MSFT","close":491.02,"value":507.2645,"ma_window":60},{"date":"2025-12-09","symbol":"MSFT","close":492.02,"value":506.8915,"ma_window":60},{"date":"2025-12-10","symbol":"MSFT","close":478.56,"value":506.3993333333,"ma_window":60},{"date":"2025-12-11","symbol":"MSFT","close":483.47,"value":505.9726666667,"ma_window":60},{"date":"2025-12-12","symbol":"MSFT","close":478.53,"value":505.4898333333,"ma_window":60},{"date":"2025-12-15","symbol":"MSFT","close":474.82,"value":504.7875,"ma_window":60},{"date":"2025-12-16","symbol":"MSFT","close":476.39,"value":504.1691666667,"ma_window":60},{"date":"2025-12-17","symbol":"MSFT","close":476.12,"value":503.6331666667,"ma_window":60},{"date":"2025-12-18","symbol":"MSFT","close":483.98,"value":503.2128333333,"ma_window":60},{"date":"2025-12-19","symbol":"MSFT","close":485.92,"value":502.8768333333,"ma_window":60},{"date":"2025-12-22","symbol":"MSFT","close":484.92,"value":502.4505,"ma_window":60},{"date":"2025-12-23","symbol":"MSFT","close":486.85,"value":502.004,"ma_window":60},{"date":"2025-12-24","symbol":"MSFT","close":488.02,"value":501.5213333333,"ma_window":60},{"date":"2025-12-26","symbol":"MSFT","close":487.71,"value":501.0041666667,"ma_window":60},{"date":"2025-12-29","symbol":"MSFT","close":487.1,"value":500.5428333333,"ma_window":60},{"date":"2025-12-30","symbol":"MSFT","close":487.48,"value":500.0611666667,"ma_window":60},{"date":"2025-12-31","symbol":"MSFT","close":483.62,"value":499.3285,"ma_window":60},{"date":"2026-01-02","symbol":"MSFT","close":472.94,"value":498.4941666667,"ma_window":60},{"date":"2026-01-05","symbol":"MSFT","close":472.85,"value":497.6438333333,"ma_window":60},{"date":"2026-01-06","symbol":"MSFT","close":478.51,"value":496.9286666667,"ma_window":60},{"date":"2026-01-07","symbol":"MSFT","close":483.47,"value":496.4863333333,"ma_window":60},{"date":"2026-01-08","symbol":"MSFT","close":478.11,"value":495.9033333333,"ma_window":60},{"date":"2026-01-09","symbol":"MSFT","close":479.28,"value":495.3478333333,"ma_window":60},{"date":"2026-01-12","symbol":"MSFT","close":477.18,"value":494.7596666667,"ma_window":60},{"date":"2026-01-13","symbol":"MSFT","close":470.67,"value":494.0933333333,"ma_window":60},{"date":"2026-01-14","symbol":"MSFT","close":459.38,"value":493.206,"ma_window":60},{"date":"2026-01-15","symbol":"MSFT","close":456.66,"value":492.22,"ma_window":60},{"date":"2026-01-16","symbol":"MSFT","close":459.86,"value":491.2728333333,"ma_window":60},{"date":"2026-01-20","symbol":"MSFT","close":454.52,"value":490.1886666667,"ma_window":60},{"date":"2026-01-21","symbol":"MSFT","close":444.11,"value":488.9306666667,"ma_window":60},{"date":"2026-01-22","symbol":"MSFT","close":451.14,"value":487.7391666667,"ma_window":60},{"date":"2026-01-23","symbol":"MSFT","close":465.95,"value":486.6628333333,"ma_window":60},{"date":"2026-01-26","symbol":"MSFT","close":470.28,"value":485.4831666667,"ma_window":60},{"date":"2025-07-31","symbol":"NVDA","close":177.85,"value":177.85,"ma_window":60},{"date":"2025-08-01","symbol":"NVDA","close":173.7,"value":175.775,"ma_window":60},{"date":"2025-08-04","symbol":"NVDA","close":179.98,"value":177.1766666667,"ma_window":60},{"date":"2025-08-05","symbol":"NVDA","close":178.24,"value":177.4425,"ma_window":60},{"date":"2025-08-06","symbol":"NVDA","close":179.4,"value":177.834,"ma_window":60},{"date":"2025-08-07","symbol":"NVDA","close":180.75,"value":178.32,"ma_window":60},{"date":"2025-08-08","symbol":"NVDA","close":182.68,"value":178.9428571429,"ma_window":60},{"date":"2025-08-11","symbol":"NVDA","close":182.04,"value":179.33,"ma_window":60},{"date":"2025-08-12","symbol":"NVDA","close":183.14,"value":179.7533333333,"ma_window":60},{"date":"2025-08-13","symbol":"NVDA","close":181.57,"value":179.935,"ma_window":60},{"date":"2025-08-14","symbol":"NVDA","close":182,"value":180.1227272727,"ma_window":60},{"date":"2025-08-15","symbol":"NVDA","close":180.43,"value":180.1483333333,"ma_window":60},{"date":"2025-08-18","symbol":"NVDA","close":181.99,"value":180.29,"ma_window":60},{"date":"2025-08-19","symbol":"NVDA","close":175.62,"value":179.9564285714,"ma_window":60},{"date":"2025-08-20","symbol":"NVDA","close":175.38,"value":179.6513333333,"ma_window":60},{"date":"2025-08-21","symbol":"NVDA","close":174.96,"value":179.358125,"ma_window":60},{"date":"2025-08-22","symbol":"NVDA","close":177.97,"value":179.2764705882,"ma_window":60},{"date":"2025-08-25","symbol":"NVDA","close":179.79,"value":179.305,"ma_window":60},{"date":"2025-08-26","symbol":"NVDA","close":181.75,"value":179.4336842105,"ma_window":60},{"date":"2025-08-27","symbol":"NVDA","close":181.58,"value":179.541,"ma_window":60},{"date":"2025-08-28","symbol":"NVDA","close":180.15,"value":179.57,"ma_window":60},{"date":"2025-08-29","symbol":"NVDA","close":174.16,"value":179.3240909091,"ma_window":60},{"date":"2025-09-02","symbol":"NVDA","close":170.76,"value":178.9517391304,"ma_window":60},{"date":"2025-09-03","symbol":"NVDA","close":170.6,"value":178.60375,"ma_window":60},{"date":"2025-09-04","symbol":"NVDA","close":171.64,"value":178.3252,"ma_window":60},{"date":"2025-09-05","symbol":"NVDA","close":167,"value":177.8896153846,"ma_window":60},{"date":"2025-09-08","symbol":"NVDA","close":168.29,"value":177.5340740741,"ma_window":60},{"date":"2025-09-09","symbol":"NVDA","close":170.74,"value":177.2914285714,"ma_window":60},{"date":"2025-09-10","symbol":"NVDA","close":177.31,"value":177.2920689655,"ma_window":60},{"date":"2025-09-11","symbol":"NVDA","close":177.16,"value":177.2876666667,"ma_window":60},{"date":"2025-09-12","symbol":"NVDA","close":177.81,"value":177.304516129,"ma_window":60},{"date":"2025-09-15","symbol":"NVDA","close":177.74,"value":177.318125,"ma_window":60},{"date":"2025-09-16","symbol":"NVDA","close":174.87,"value":177.2439393939,"ma_window":60},{"date":"2025-09-17","symbol":"NVDA","close":170.28,"value":177.0391176471,"ma_window":60},{"date":"2025-09-18","symbol":"NVDA","close":176.23,"value":177.016,"ma_window":60},{"date":"2025-09-19","symbol":"NVDA","close":176.66,"value":177.0061111111,"ma_window":60},{"date":"2025-09-22","symbol":"NVDA","close":183.6,"value":177.1843243243,"ma_window":60},{"date":"2025-09-23","symbol":"NVDA","close":178.42,"value":177.2168421053,"ma_window":60},{"date":"2025-09-24","symbol":"NVDA","close":176.96,"value":177.2102564103,"ma_window":60},{"date":"2025-09-25","symbol":"NVDA","close":177.68,"value":177.222,"ma_window":60},{"date":"2025-09-26","symbol":"NVDA","close":178.18,"value":177.2453658537,"ma_window":60},{"date":"2025-09-29","symbol":"NVDA","close":181.84,"value":177.3547619048,"ma_window":60},{"date":"2025-09-30","symbol":"NVDA","close":186.57,"value":177.5690697674,"ma_window":60},{"date":"2025-10-01","symbol":"NVDA","close":187.23,"value":177.7886363636,"ma_window":60},{"date":"2025-10-02","symbol":"NVDA","close":188.88,"value":178.0351111111,"ma_window":60},{"date":"2025-10-03","symbol":"NVDA","close":187.61,"value":178.2432608696,"ma_window":60},{"date":"2025-10-06","symbol":"NVDA","close":185.53,"value":178.3982978723,"ma_window":60},{"date":"2025-10-07","symbol":"NVDA","close":185.03,"value":178.5364583333,"ma_window":60},{"date":"2025-10-08","symbol":"NVDA","close":189.1,"value":178.7520408163,"ma_window":60},{"date":"2025-10-09","symbol":"NVDA","close":192.56,"value":179.0282,"ma_window":60},{"date":"2025-10-10","symbol":"NVDA","close":183.15,"value":179.1090196078,"ma_window":60},{"date":"2025-10-13","symbol":"NVDA","close":188.31,"value":179.2859615385,"ma_window":60},{"date":"2025-10-14","symbol":"NVDA","close":180.02,"value":179.2998113208,"ma_window":60},{"date":"2025-10-15","symbol":"NVDA","close":179.82,"value":179.3094444444,"ma_window":60},{"date":"2025-10-16","symbol":"NVDA","close":181.8,"value":179.3547272727,"ma_window":60},{"date":"2025-10-17","symbol":"NVDA","close":183.21,"value":179.4235714286,"ma_window":60},{"date":"2025-10-20","symbol":"NVDA","close":182.63,"value":179.4798245614,"ma_window":60},{"date":"2025-10-21","symbol":"NVDA","close":181.15,"value":179.5086206897,"ma_window":60},{"date":"2025-10-22","symbol":"NVDA","close":180.27,"value":179.5215254237,"ma_window":60},{"date":"2025-10-23","symbol":"NVDA","close":182.15,"value":179.5653333333,"ma_window":60},{"date":"2025-10-24","symbol":"NVDA","close":186.25,"value":179.7053333333,"ma_window":60},{"date":"2025-10-27","symbol":"NVDA","close":191.48,"value":180.0016666667,"ma_window":60},{"date":"2025-10-28","symbol":"NVDA","close":201.02,"value":180.3523333333,"ma_window":60},{"date":"2025-10-29","symbol":"NVDA","close":207.03,"value":180.8321666667,"ma_window":60},{"date":"2025-10-30","symbol":"NVDA","close":202.88,"value":181.2235,"ma_window":60},{"date":"2025-10-31","symbol":"NVDA","close":202.48,"value":181.5856666667,"ma_window":60},{"date":"2025-11-03","symbol":"NVDA","close":206.87,"value":181.9888333333,"ma_window":60},{"date":"2025-11-04","symbol":"NVDA","close":198.68,"value":182.2661666667,"ma_window":60},{"date":"2025-11-05","symbol":"NVDA","close":195.2,"value":182.4671666667,"ma_window":60},{"date":"2025-11-06","symbol":"NVDA","close":188.07,"value":182.5755,"ma_window":60},{"date":"2025-11-07","symbol":"NVDA","close":188.14,"value":182.6778333333,"ma_window":60},{"date":"2025-11-10","symbol":"NVDA","close":199.04,"value":182.988,"ma_window":60},{"date":"2025-11-11","symbol":"NVDA","close":193.15,"value":183.174,"ma_window":60},{"date":"2025-11-12","symbol":"NVDA","close":193.79,"value":183.4768333333,"ma_window":60},{"date":"2025-11-13","symbol":"NVDA","close":186.85,"value":183.668,"ma_window":60},{"date":"2025-11-14","symbol":"NVDA","close":190.16,"value":183.9213333333,"ma_window":60},{"date":"2025-11-17","symbol":"NVDA","close":186.59,"value":184.065,"ma_window":60},{"date":"2025-11-18","symbol":"NVDA","close":181.35,"value":184.091,"ma_window":60},{"date":"2025-11-19","symbol":"NVDA","close":186.51,"value":184.1703333333,"ma_window":60},{"date":"2025-11-20","symbol":"NVDA","close":180.63,"value":184.1545,"ma_window":60},{"date":"2025-11-21","symbol":"NVDA","close":178.87,"value":184.1331666667,"ma_window":60},{"date":"2025-11-24","symbol":"NVDA","close":182.54,"value":184.2728333333,"ma_window":60},{"date":"2025-11-25","symbol":"NVDA","close":177.81,"value":184.3903333333,"ma_window":60},{"date":"2025-11-26","symbol":"NVDA","close":180.25,"value":184.5511666667,"ma_window":60},{"date":"2025-11-28","symbol":"NVDA","close":176.99,"value":184.6403333333,"ma_window":60},{"date":"2025-12-01","symbol":"NVDA","close":179.91,"value":184.8555,"ma_window":60},{"date":"2025-12-02","symbol":"NVDA","close":181.45,"value":185.0748333333,"ma_window":60},{"date":"2025-12-03","symbol":"NVDA","close":179.58,"value":185.2221666667,"ma_window":60},{"date":"2025-12-04","symbol":"NVDA","close":183.38,"value":185.3233333333,"ma_window":60},{"date":"2025-12-05","symbol":"NVDA","close":182.41,"value":185.4108333333,"ma_window":60},{"date":"2025-12-08","symbol":"NVDA","close":185.55,"value":185.5398333333,"ma_window":60},{"date":"2025-12-09","symbol":"NVDA","close":184.97,"value":185.6603333333,"ma_window":60},{"date":"2025-12-10","symbol":"NVDA","close":183.78,"value":185.8088333333,"ma_window":60},{"date":"2025-12-11","symbol":"NVDA","close":180.93,"value":185.9863333333,"ma_window":60},{"date":"2025-12-12","symbol":"NVDA","close":175.02,"value":185.9661666667,"ma_window":60},{"date":"2025-12-15","symbol":"NVDA","close":176.29,"value":185.96,"ma_window":60},{"date":"2025-12-16","symbol":"NVDA","close":177.72,"value":185.862,"ma_window":60},{"date":"2025-12-17","symbol":"NVDA","close":170.94,"value":185.7373333333,"ma_window":60},{"date":"2025-12-18","symbol":"NVDA","close":174.14,"value":185.6903333333,"ma_window":60},{"date":"2025-12-19","symbol":"NVDA","close":180.99,"value":185.7455,"ma_window":60},{"date":"2025-12-22","symbol":"NVDA","close":183.69,"value":185.8373333333,"ma_window":60},{"date":"2025-12-23","symbol":"NVDA","close":189.21,"value":185.9601666667,"ma_window":60},{"date":"2025-12-24","symbol":"NVDA","close":188.61,"value":185.9941666667,"ma_window":60},{"date":"2025-12-26","symbol":"NVDA","close":190.53,"value":186.0491666667,"ma_window":60},{"date":"2025-12-29","symbol":"NVDA","close":188.22,"value":186.0381666667,"ma_window":60},{"date":"2025-12-30","symbol":"NVDA","close":187.54,"value":186.037,"ma_window":60},{"date":"2025-12-31","symbol":"NVDA","close":186.5,"value":186.0531666667,"ma_window":60},{"date":"2026-01-02","symbol":"NVDA","close":188.85,"value":186.1168333333,"ma_window":60},{"date":"2026-01-05","symbol":"NVDA","close":188.12,"value":186.1005,"ma_window":60},{"date":"2026-01-06","symbol":"NVDA","close":187.24,"value":186.0118333333,"ma_window":60},{"date":"2026-01-07","symbol":"NVDA","close":189.11,"value":186.1111666667,"ma_window":60},{"date":"2026-01-08","symbol":"NVDA","close":185.04,"value":186.0566666667,"ma_window":60},{"date":"2026-01-09","symbol":"NVDA","close":184.86,"value":186.1373333333,"ma_window":60},{"date":"2026-01-12","symbol":"NVDA","close":184.94,"value":186.2226666667,"ma_window":60},{"date":"2026-01-13","symbol":"NVDA","close":185.81,"value":186.2895,"ma_window":60},{"date":"2026-01-14","symbol":"NVDA","close":183.14,"value":186.2883333333,"ma_window":60},{"date":"2026-01-15","symbol":"NVDA","close":187.05,"value":186.362,"ma_window":60},{"date":"2026-01-16","symbol":"NVDA","close":186.23,"value":186.4466666667,"ma_window":60},{"date":"2026-01-20","symbol":"NVDA","close":178.07,"value":186.41,"ma_window":60},{"date":"2026-01-21","symbol":"NVDA","close":183.32,"value":186.4295,"ma_window":60},{"date":"2026-01-22","symbol":"NVDA","close":184.84,"value":186.406,"ma_window":60},{"date":"2026-01-23","symbol":"NVDA","close":187.67,"value":186.3425,"ma_window":60},{"date":"2026-01-26","symbol":"NVDA","close":186.47,"value":186.1,"ma_window":60}],"metadata":{"date":{"type":"date","semanticType":"Date"},"symbol":{"type":"string","semanticType":"String"},"close":{"type":"number","semanticType":"Number"},"value":{"type":"number","semanticType":"Number"},"ma_window":{"type":"integer","semanticType":"Duration"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy and keep only needed columns if present\n base_cols = [c for c in [\"date\", \"symbol\", \"close\"] if c in df_history.columns]\n df = df_history[base_cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Ensure we have a clean, simple index to avoid alignment issues\n df = df.reset_index(drop=True)\n\n # Compute rolling means using transform to preserve index alignment\n df[\"ma_20\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).mean())\n )\n df[\"ma_60\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=60, min_periods=1).mean())\n )\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map).astype(int)\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n","source":["history"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"input_tables\": [...] // string[], describe names of the input tables that will be used in the transformation.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", 'boxplot'. \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"input_tables\", the names of a subset of input tables from [CONTEXT] section that will be used to achieve the user's goal.\n - **IMPORTANT** Note that the Table 1 in [CONTEXT] section is the table the user is currently viewing, it should take precedence if the user refers to insights about the \"current table\".\n - At the same time, leverage table information to determine which tables are relevant to the user's goal and should be used.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", \"boxplot\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - boxplot: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - (boxplot) Box plots: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical (optional for creating grouped boxplots), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the boxplot will be grouped automatically (items with the same x values will be grouped).\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE]. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n# from sklearn import ... # import from sklearn if you need it.\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- decide the function signature based on the number of tables you decided in the previous step \"input_tables\":\n - if you decide there will only be one input table, then function signature should be `def transform_data(df1)`\n - if you decided there will be k input tables, then function signature should be `def transform_data(df_1, df_2, ..., df_k)`.\n - instead of using generic names like df1, df2, ..., try to use intuitive table names for function arguments, for example, if you have input_tables: [\"City\", \"Weather\"]`, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes.\n - **VERY IMPORTANT** the number of arguments in the function signature must be the same as the number of tables provided in \"input_tables\", and the order of arguments must match the order of tables provided in \"input_tables\".\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[GOAL]\n\n1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compare overall closing price trends and volatility over time for each stock symbol on a single line chart.\",\n \"display_instruction\": \"Visualize **closing price** trends by **symbol** over **date**\",\n \"recommendation\": \"A line chart with time on the x-axis and closing price on the y-axis, colored by symbol, best shows comparative trajectories and volatility over time. The data only needs column selection, date normalization, and sorting to be visualization-ready.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date symbol close\n0 2025-07-30 AAPL 208.61\n1 2025-07-31 AAPL 207.13\n2 2025-08-01 AAPL 201.95\n3 2025-08-04 AAPL 202.92\n4 2025-08-05 AAPL 202.49\n5 2025-08-06 AAPL 212.80\n6 2025-08-07 AAPL 219.57\n7 2025-08-08 AAPL 228.87\n8 2025-08-11 AAPL 226.96\n9 2025-08-12 AAPL 229.43\n......\n\nUpdate the code above based on the following instruction:\n\n2) For each symbol, compute 20-day and 60-day rolling averages of close price (columns: date, symbol, value, ma_window with values 20 or 60) and plot them over time alongside the actual close to compare short- vs long-term trends and reversals."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compute 20-day and 60-day rolling averages of closing prices for each symbol in tidy format for plotting alongside actual closes over time.\",\n \"display_instruction\": \"Add **20/60-day moving averages** of **close** by **symbol** over **date**\",\n \"recommendation\": \"To compare short- and long-term trends per symbol, compute 20- and 60-day rolling means of close, reshape them into a long format with one row per date-symbol-window, and keep the original close for plotting alongside the moving averages.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"ma_window\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy\n df = df_history.copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Group by symbol and compute rolling means on close\n group = df.groupby(\"symbol\", group_keys=False)[\"close\"]\n df[\"ma_20\"] = group.rolling(20, min_periods=1).mean()\n df[\"ma_60\"] = group.rolling(60, min_periods=1).mean()\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map)\n\n # Ensure correct column order and types\n df_long[\"ma_window\"] = df_long[\"ma_window\"].astype(int)\n\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\nEmpty DataFrame\nColumns: []\nIndex: []\n......\n\nUpdate the code above based on the following instruction:\n\nWe run into the following problem executing the code, please fix it:\n\nError: TypeError - incompatible index of inserted column with frame index\n\nPlease think step by step, reflect why the error happens and fix the code so that no more errors would occur."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compute 20-day and 60-day rolling averages of closing prices for each symbol in tidy format for plotting alongside actual closes over time.\",\n \"display_instruction\": \"Compute **20/60-day moving averages** of **close** by **symbol** over **date**\",\n \"recommendation\": \"The previous implementation used groupby().rolling() and assigned the result directly to new columns, which can create an index mismatch and raise a TypeError. Using groupby().transform(...) with an inner rolling mean keeps the index aligned with the original DataFrame, avoiding incompatible index issues. After computing the moving averages, reshape to long format for visualization.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"ma_window\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy and keep only needed columns if present\n base_cols = [c for c in [\"date\", \"symbol\", \"close\"] if c in df_history.columns]\n df = df_history[base_cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Ensure we have a clean, simple index to avoid alignment issues\n df = df.reset_index(drop=True)\n\n # Compute rolling means using transform to preserve index alignment\n df[\"ma_20\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).mean())\n )\n df[\"ma_60\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=60, min_periods=1).mean())\n )\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map).astype(int)\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n```"}],"trigger":{"tableId":"table-233476","sourceTableIds":["history"],"instruction":"2) For each symbol, compute 20-day and 60-day rolling averages of close price (columns: date, symbol, value, ma_window with values 20 or 60) and plot them over time alongside the actual close to compare short- vs long-term trends and reversals.","displayInstruction":"Compute **20/60-day moving averages** of **close** by **symbol** over **date**","chart":{"id":"chart-1769471261112","chartType":"Auto","encodingMap":{},"tableRef":"history","saved":false,"source":"trigger","unread":true},"resultTableId":"table-265247"},"explanation":{"status":"ok","concepts":[{"field":"ma_20, ma_60, value","explanation":"These fields represent a rolling (moving) average of the closing price over a fixed number of recent trading days for each stock symbol. For a window of N days (N = 20 or 60), the moving average on a given date is the average of the last N closing prices up to that date. Mathematically, if close_t is the closing price on day t, then the N-day moving average MA_N(t) is: MA_N(t) = (close_t + close_{t-1} + ... + close_{t-N+1}) / N. At the start of the series, when fewer than N days are available, the average is taken over all available past days instead."},{"field":"ma_window","explanation":"This field indicates the length of the moving-average window, in days. A value of 20 means the corresponding 'value' is a 20-day moving average; a value of 60 means it is a 60-day moving average."}],"code":"- Start from the original **history** table but keep only the **`date`**, **`symbol`**, and **`close`** fields to simplify the data.\n- Convert **`date`** into a standardized text format **`YYYY-MM-DD`** so all dates look consistent.\n- **Sort** the data by **`symbol`** and then by **`date`** to ensure the time series for each stock is in the correct order.\n- For each **`symbol`**, **compute**:\n - **`ma_20`**: a **20-day moving average** of the **`close`** price (uses up to the last **20** days; for the first few days it uses all available past days).\n - **`ma_60`**: a **60-day moving average** of the **`close`** price (uses up to the last **60** days; similarly relaxed at the start).\n- **Reshape** the data so that instead of having separate columns **`ma_20`** and **`ma_60`**, each row represents **one moving-average value**:\n - Keep **`date`**, **`symbol`**, and **`close`**.\n - Put the moving-average values into a single column **`value`**.\n - Use a column **`ma_window`** to indicate whether **`value`** is for **20** days or **60** days.\n- **Map** the labels **`ma_20`** and **`ma_60`** into numeric values **20** and **60** in **`ma_window`**, and keep only:\n - **`date`**, **`symbol`**, **`close`**, **`value`** (moving average), **`ma_window`** (window length in days).","dialog":[{"role":"system","content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n"},{"role":"user","content":"[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy and keep only needed columns if present\n base_cols = [c for c in [\"date\", \"symbol\", \"close\"] if c in df_history.columns]\n df = df_history[base_cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Ensure we have a clean, simple index to avoid alignment issues\n df = df.reset_index(drop=True)\n\n # Compute rolling means using transform to preserve index alignment\n df[\"ma_20\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).mean())\n )\n df[\"ma_60\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=60, min_periods=1).mean())\n )\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map).astype(int)\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n\n\n[EXPLANATION]\n"},{"role":"assistant","content":"[CODE EXPLANATION]\n\n- Start from the original **history** table but keep only the **`date`**, **`symbol`**, and **`close`** fields to simplify the data.\n- Convert **`date`** into a standardized text format **`YYYY-MM-DD`** so all dates look consistent.\n- **Sort** the data by **`symbol`** and then by **`date`** to ensure the time series for each stock is in the correct order.\n- For each **`symbol`**, **compute**:\n - **`ma_20`**: a **20-day moving average** of the **`close`** price (uses up to the last **20** days; for the first few days it uses all available past days).\n - **`ma_60`**: a **60-day moving average** of the **`close`** price (uses up to the last **60** days; similarly relaxed at the start).\n- **Reshape** the data so that instead of having separate columns **`ma_20`** and **`ma_60`**, each row represents **one moving-average value**:\n - Keep **`date`**, **`symbol`**, and **`close`**.\n - Put the moving-average values into a single column **`value`**.\n - Use a column **`ma_window`** to indicate whether **`value`** is for **20** days or **60** days.\n- **Map** the labels **`ma_20`** and **`ma_60`** into numeric values **20** and **60** in **`ma_window`**, and keep only:\n - **`date`**, **`symbol`**, **`close`**, **`value`** (moving average), **`ma_window`** (window length in days).\n\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"ma_20, ma_60, value\",\n \"explanation\": \"These fields represent a rolling (moving) average of the closing price over a fixed number of recent trading days for each stock symbol. For a window of N days (N = 20 or 60), the moving average on a given date is the average of the last N closing prices up to that date. Mathematically, if close_t is the closing price on day t, then the N-day moving average MA_N(t) is: MA_N(t) = (close_t + close_{t-1} + ... + close_{t-N+1}) / N. At the start of the series, when fewer than N days are available, the average is taken over all available past days instead.\"\n },\n {\n \"field\": \"ma_window\",\n \"explanation\": \"This field indicates the length of the moving-average window, in days. A value of 20 means the corresponding 'value' is a 20-day moving average; a value of 60 means it is a 60-day moving average.\"\n }\n]\n```"}],"agent":"CodeExplanationAgent"}},"anchored":false,"createdBy":"user","attachedMetadata":"","contentHash":"63c48b66"},{"id":"table-277926","displayId":"stock-metr","names":["date","symbol","metric","value"],"rows":[{"date":"2025-07-31","symbol":"AAPL","metric":"return","value":null},{"date":"2025-08-01","symbol":"AAPL","metric":"return","value":-0.0250084488},{"date":"2025-08-04","symbol":"AAPL","metric":"return","value":0.0048031691},{"date":"2025-08-05","symbol":"AAPL","metric":"return","value":-0.0021190617},{"date":"2025-08-06","symbol":"AAPL","metric":"return","value":0.0509160946},{"date":"2025-08-07","symbol":"AAPL","metric":"return","value":0.0318139098},{"date":"2025-08-08","symbol":"AAPL","metric":"return","value":0.042355513},{"date":"2025-08-11","symbol":"AAPL","metric":"return","value":-0.0083453489},{"date":"2025-08-12","symbol":"AAPL","metric":"return","value":0.010882975},{"date":"2025-08-13","symbol":"AAPL","metric":"return","value":0.0159961644},{"date":"2025-08-14","symbol":"AAPL","metric":"return","value":-0.0023595024},{"date":"2025-08-15","symbol":"AAPL","metric":"return","value":-0.0050741776},{"date":"2025-08-18","symbol":"AAPL","metric":"return","value":-0.0030254571},{"date":"2025-08-19","symbol":"AAPL","metric":"return","value":-0.0014306152},{"date":"2025-08-20","symbol":"AAPL","metric":"return","value":-0.019753408},{"date":"2025-08-21","symbol":"AAPL","metric":"return","value":-0.0049160725},{"date":"2025-08-22","symbol":"AAPL","metric":"return","value":0.0127292149},{"date":"2025-08-25","symbol":"AAPL","metric":"return","value":-0.002636899},{"date":"2025-08-26","symbol":"AAPL","metric":"return","value":0.0094738697},{"date":"2025-08-27","symbol":"AAPL","metric":"return","value":0.0051508141},{"date":"2025-08-28","symbol":"AAPL","metric":"return","value":0.0089460199},{"date":"2025-08-29","symbol":"AAPL","metric":"return","value":-0.0017647312},{"date":"2025-09-02","symbol":"AAPL","metric":"return","value":-0.0104346326},{"date":"2025-09-03","symbol":"AAPL","metric":"return","value":0.0380827887},{"date":"2025-09-04","symbol":"AAPL","metric":"return","value":0.0054986568},{"date":"2025-09-05","symbol":"AAPL","metric":"return","value":-0.0003757044},{"date":"2025-09-08","symbol":"AAPL","metric":"return","value":-0.0075586737},{"date":"2025-09-09","symbol":"AAPL","metric":"return","value":-0.0148537766},{"date":"2025-09-10","symbol":"AAPL","metric":"return","value":-0.0322484196},{"date":"2025-09-11","symbol":"AAPL","metric":"return","value":0.0143002163},{"date":"2025-09-12","symbol":"AAPL","metric":"return","value":0.0175362256},{"date":"2025-09-15","symbol":"AAPL","metric":"return","value":0.0112470065},{"date":"2025-09-16","symbol":"AAPL","metric":"return","value":0.006131856},{"date":"2025-09-17","symbol":"AAPL","metric":"return","value":0.0035305985},{"date":"2025-09-18","symbol":"AAPL","metric":"return","value":-0.0046490199},{"date":"2025-09-19","symbol":"AAPL","metric":"return","value":0.0320218809},{"date":"2025-09-22","symbol":"AAPL","metric":"return","value":0.0430971214},{"date":"2025-09-23","symbol":"AAPL","metric":"return","value":-0.0064495954},{"date":"2025-09-24","symbol":"AAPL","metric":"return","value":-0.0083012039},{"date":"2025-09-25","symbol":"AAPL","metric":"return","value":0.0180505415},{"date":"2025-09-26","symbol":"AAPL","metric":"return","value":-0.0054945055},{"date":"2025-09-29","symbol":"AAPL","metric":"return","value":-0.004035892},{"date":"2025-09-30","symbol":"AAPL","metric":"return","value":0.000786844},{"date":"2025-10-01","symbol":"AAPL","metric":"return","value":0.0032235239},{"date":"2025-10-02","symbol":"AAPL","metric":"return","value":0.0065830721},{"date":"2025-10-03","symbol":"AAPL","metric":"return","value":0.0034646528},{"date":"2025-10-06","symbol":"AAPL","metric":"return","value":-0.0051596384},{"date":"2025-10-07","symbol":"AAPL","metric":"return","value":-0.000818905},{"date":"2025-10-08","symbol":"AAPL","metric":"return","value":0.0061663349},{"date":"2025-10-09","symbol":"AAPL","metric":"return","value":-0.0155928785},{"date":"2025-10-10","symbol":"AAPL","metric":"return","value":-0.0345167264},{"date":"2025-10-13","symbol":"AAPL","metric":"return","value":0.0097539077},{"date":"2025-10-14","symbol":"AAPL","metric":"return","value":0.0004445881},{"date":"2025-10-15","symbol":"AAPL","metric":"return","value":0.0063426655},{"date":"2025-10-16","symbol":"AAPL","metric":"return","value":-0.0075873143},{"date":"2025-10-17","symbol":"AAPL","metric":"return","value":0.019578496},{"date":"2025-10-20","symbol":"AAPL","metric":"return","value":0.0394366197},{"date":"2025-10-21","symbol":"AAPL","metric":"return","value":0.002022978},{"date":"2025-10-22","symbol":"AAPL","metric":"return","value":-0.0164558891},{"date":"2025-10-23","symbol":"AAPL","metric":"return","value":0.0043764524},{"date":"2025-10-24","symbol":"AAPL","metric":"return","value":0.0124937339},{"date":"2025-10-27","symbol":"AAPL","metric":"return","value":0.0227748791},{"date":"2025-10-28","symbol":"AAPL","metric":"return","value":0.0007075033},{"date":"2025-10-29","symbol":"AAPL","metric":"return","value":0.0026047481},{"date":"2025-10-30","symbol":"AAPL","metric":"return","value":0.0063093824},{"date":"2025-10-31","symbol":"AAPL","metric":"return","value":-0.0037987755},{"date":"2025-11-03","symbol":"AAPL","metric":"return","value":-0.0048868979},{"date":"2025-11-04","symbol":"AAPL","metric":"return","value":0.0036831727},{"date":"2025-11-05","symbol":"AAPL","metric":"return","value":0.0003706724},{"date":"2025-11-06","symbol":"AAPL","metric":"return","value":-0.0013709797},{"date":"2025-11-07","symbol":"AAPL","metric":"return","value":-0.0048235687},{"date":"2025-11-10","symbol":"AAPL","metric":"return","value":0.0045486745},{"date":"2025-11-11","symbol":"AAPL","metric":"return","value":0.021601158},{"date":"2025-11-12","symbol":"AAPL","metric":"return","value":-0.0064668483},{"date":"2025-11-13","symbol":"AAPL","metric":"return","value":-0.0019014883},{"date":"2025-11-14","symbol":"AAPL","metric":"return","value":-0.0019783843},{"date":"2025-11-17","symbol":"AAPL","metric":"return","value":-0.0181711391},{"date":"2025-11-18","symbol":"AAPL","metric":"return","value":-0.0000747775},{"date":"2025-11-19","symbol":"AAPL","metric":"return","value":0.0041878552},{"date":"2025-11-20","symbol":"AAPL","metric":"return","value":-0.0086014298},{"date":"2025-11-21","symbol":"AAPL","metric":"return","value":0.0196807512},{"date":"2025-11-24","symbol":"AAPL","metric":"return","value":0.0163173598},{"date":"2025-11-25","symbol":"AAPL","metric":"return","value":0.0038054509},{"date":"2025-11-26","symbol":"AAPL","metric":"return","value":0.0020940896},{"date":"2025-11-28","symbol":"AAPL","metric":"return","value":0.0046838407},{"date":"2025-12-01","symbol":"AAPL","metric":"return","value":0.0152411691},{"date":"2025-12-02","symbol":"AAPL","metric":"return","value":0.0109148711},{"date":"2025-12-03","symbol":"AAPL","metric":"return","value":-0.0071281317},{"date":"2025-12-04","symbol":"AAPL","metric":"return","value":-0.0121414746},{"date":"2025-12-05","symbol":"AAPL","metric":"return","value":-0.0068400428},{"date":"2025-12-08","symbol":"AAPL","metric":"return","value":-0.0031924815},{"date":"2025-12-09","symbol":"AAPL","metric":"return","value":-0.0025549678},{"date":"2025-12-10","symbol":"AAPL","metric":"return","value":0.0057724223},{"date":"2025-12-11","symbol":"AAPL","metric":"return","value":-0.0026902934},{"date":"2025-12-12","symbol":"AAPL","metric":"return","value":0.0008991835},{"date":"2025-12-15","symbol":"AAPL","metric":"return","value":-0.0149849073},{"date":"2025-12-16","symbol":"AAPL","metric":"return","value":0.0018240852},{"date":"2025-12-17","symbol":"AAPL","metric":"return","value":-0.0100870325},{"date":"2025-12-18","symbol":"AAPL","metric":"return","value":0.0012875221},{"date":"2025-12-19","symbol":"AAPL","metric":"return","value":0.0054373783},{"date":"2025-12-22","symbol":"AAPL","metric":"return","value":-0.0098658969},{"date":"2025-12-23","symbol":"AAPL","metric":"return","value":0.0051297192},{"date":"2025-12-24","symbol":"AAPL","metric":"return","value":0.0053238361},{"date":"2025-12-26","symbol":"AAPL","metric":"return","value":-0.0014973887},{"date":"2025-12-29","symbol":"AAPL","metric":"return","value":0.001316752},{"date":"2025-12-30","symbol":"AAPL","metric":"return","value":-0.0024839275},{"date":"2025-12-31","symbol":"AAPL","metric":"return","value":-0.0044675553},{"date":"2026-01-02","symbol":"AAPL","metric":"return","value":-0.0031266093},{"date":"2026-01-05","symbol":"AAPL","metric":"return","value":-0.0138371278},{"date":"2026-01-06","symbol":"AAPL","metric":"return","value":-0.0183342064},{"date":"2026-01-07","symbol":"AAPL","metric":"return","value":-0.00773746},{"date":"2026-01-08","symbol":"AAPL","metric":"return","value":-0.0049552491},{"date":"2026-01-09","symbol":"AAPL","metric":"return","value":0.0012739345},{"date":"2026-01-12","symbol":"AAPL","metric":"return","value":0.0033928365},{"date":"2026-01-13","symbol":"AAPL","metric":"return","value":0.0030739673},{"date":"2026-01-14","symbol":"AAPL","metric":"return","value":-0.0041754453},{"date":"2026-01-15","symbol":"AAPL","metric":"return","value":-0.0067318049},{"date":"2026-01-16","symbol":"AAPL","metric":"return","value":-0.0103791488},{"date":"2026-01-20","symbol":"AAPL","metric":"return","value":-0.0345556295},{"date":"2026-01-21","symbol":"AAPL","metric":"return","value":0.003850831},{"date":"2026-01-22","symbol":"AAPL","metric":"return","value":0.0028265698},{"date":"2026-01-23","symbol":"AAPL","metric":"return","value":-0.0012482384},{"date":"2026-01-26","symbol":"AAPL","metric":"return","value":0.0297129495},{"date":"2025-07-31","symbol":"AMZN","metric":"return","value":null},{"date":"2025-08-01","symbol":"AMZN","metric":"return","value":-0.0826961685},{"date":"2025-08-04","symbol":"AMZN","metric":"return","value":-0.01443539},{"date":"2025-08-05","symbol":"AMZN","metric":"return","value":0.0099220411},{"date":"2025-08-06","symbol":"AMZN","metric":"return","value":0.0400467836},{"date":"2025-08-07","symbol":"AMZN","metric":"return","value":0.003688543},{"date":"2025-08-08","symbol":"AMZN","metric":"return","value":-0.0019719446},{"date":"2025-08-11","symbol":"AMZN","metric":"return","value":-0.0062418609},{"date":"2025-08-12","symbol":"AMZN","metric":"return","value":0.000768188},{"date":"2025-08-13","symbol":"AMZN","metric":"return","value":0.0139522283},{"date":"2025-08-14","symbol":"AMZN","metric":"return","value":0.0285892412},{"date":"2025-08-15","symbol":"AMZN","metric":"return","value":0.000216469},{"date":"2025-08-18","symbol":"AMZN","metric":"return","value":0.0019910834},{"date":"2025-08-19","symbol":"AMZN","metric":"return","value":-0.0150330468},{"date":"2025-08-20","symbol":"AMZN","metric":"return","value":-0.0184202447},{"date":"2025-08-21","symbol":"AMZN","metric":"return","value":-0.0083106206},{"date":"2025-08-22","symbol":"AMZN","metric":"return","value":0.0310430277},{"date":"2025-08-25","symbol":"AMZN","metric":"return","value":-0.0039328789},{"date":"2025-08-26","symbol":"AMZN","metric":"return","value":0.003378082},{"date":"2025-08-27","symbol":"AMZN","metric":"return","value":0.0017926632},{"date":"2025-08-28","symbol":"AMZN","metric":"return","value":0.0108240223},{"date":"2025-08-29","symbol":"AMZN","metric":"return","value":-0.0112262522},{"date":"2025-09-02","symbol":"AMZN","metric":"return","value":-0.0159825328},{"date":"2025-09-03","symbol":"AMZN","metric":"return","value":0.00288453},{"date":"2025-09-04","symbol":"AMZN","metric":"return","value":0.0428780035},{"date":"2025-09-05","symbol":"AMZN","metric":"return","value":-0.0142141887},{"date":"2025-09-08","symbol":"AMZN","metric":"return","value":0.0151078208},{"date":"2025-09-09","symbol":"AMZN","metric":"return","value":0.0101763908},{"date":"2025-09-10","symbol":"AMZN","metric":"return","value":-0.0332018133},{"date":"2025-09-11","symbol":"AMZN","metric":"return","value":-0.0016498068},{"date":"2025-09-12","symbol":"AMZN","metric":"return","value":-0.0078277886},{"date":"2025-09-15","symbol":"AMZN","metric":"return","value":0.0143765067},{"date":"2025-09-16","symbol":"AMZN","metric":"return","value":0.0113209178},{"date":"2025-09-17","symbol":"AMZN","metric":"return","value":-0.0103823969},{"date":"2025-09-18","symbol":"AMZN","metric":"return","value":-0.0016837924},{"date":"2025-09-19","symbol":"AMZN","metric":"return","value":0.0010811746},{"date":"2025-09-22","symbol":"AMZN","metric":"return","value":-0.0166321064},{"date":"2025-09-23","symbol":"AMZN","metric":"return","value":-0.0304002109},{"date":"2025-09-24","symbol":"AMZN","metric":"return","value":-0.0022654162},{"date":"2025-09-25","symbol":"AMZN","metric":"return","value":-0.0093547069},{"date":"2025-09-26","symbol":"AMZN","metric":"return","value":0.007471923},{"date":"2025-09-29","symbol":"AMZN","metric":"return","value":0.0108745109},{"date":"2025-09-30","symbol":"AMZN","metric":"return","value":-0.0117027501},{"date":"2025-10-01","symbol":"AMZN","metric":"return","value":0.0048276176},{"date":"2025-10-02","symbol":"AMZN","metric":"return","value":0.0080678058},{"date":"2025-10-03","symbol":"AMZN","metric":"return","value":-0.0130389821},{"date":"2025-10-06","symbol":"AMZN","metric":"return","value":0.0063322855},{"date":"2025-10-07","symbol":"AMZN","metric":"return","value":0.003983703},{"date":"2025-10-08","symbol":"AMZN","metric":"return","value":0.0155108666},{"date":"2025-10-09","symbol":"AMZN","metric":"return","value":0.0111890596},{"date":"2025-10-10","symbol":"AMZN","metric":"return","value":-0.0499253535},{"date":"2025-10-13","symbol":"AMZN","metric":"return","value":0.0171003374},{"date":"2025-10-14","symbol":"AMZN","metric":"return","value":-0.0167219521},{"date":"2025-10-15","symbol":"AMZN","metric":"return","value":-0.0037894542},{"date":"2025-10-16","symbol":"AMZN","metric":"return","value":-0.0051027508},{"date":"2025-10-17","symbol":"AMZN","metric":"return","value":-0.0066675992},{"date":"2025-10-20","symbol":"AMZN","metric":"return","value":0.0161472024},{"date":"2025-10-21","symbol":"AMZN","metric":"return","value":0.0256374723},{"date":"2025-10-22","symbol":"AMZN","metric":"return","value":-0.0183758951},{"date":"2025-10-23","symbol":"AMZN","metric":"return","value":0.0144069741},{"date":"2025-10-24","symbol":"AMZN","metric":"return","value":0.0141119001},{"date":"2025-10-27","symbol":"AMZN","metric":"return","value":0.0123098881},{"date":"2025-10-28","symbol":"AMZN","metric":"return","value":0.0100453804},{"date":"2025-10-29","symbol":"AMZN","metric":"return","value":0.0045801527},{"date":"2025-10-30","symbol":"AMZN","metric":"return","value":-0.0323056882},{"date":"2025-10-31","symbol":"AMZN","metric":"return","value":0.0958449251},{"date":"2025-11-03","symbol":"AMZN","metric":"return","value":0.0400458603},{"date":"2025-11-04","symbol":"AMZN","metric":"return","value":-0.0184251969},{"date":"2025-11-05","symbol":"AMZN","metric":"return","value":0.0035296005},{"date":"2025-11-06","symbol":"AMZN","metric":"return","value":-0.0286171063},{"date":"2025-11-07","symbol":"AMZN","metric":"return","value":0.0056369322},{"date":"2025-11-10","symbol":"AMZN","metric":"return","value":0.0163250276},{"date":"2025-11-11","symbol":"AMZN","metric":"return","value":0.0028180354},{"date":"2025-11-12","symbol":"AMZN","metric":"return","value":-0.0196708149},{"date":"2025-11-13","symbol":"AMZN","metric":"return","value":-0.0271089271},{"date":"2025-11-14","symbol":"AMZN","metric":"return","value":-0.0121643236},{"date":"2025-11-17","symbol":"AMZN","metric":"return","value":-0.0077549107},{"date":"2025-11-18","symbol":"AMZN","metric":"return","value":-0.0443165715},{"date":"2025-11-19","symbol":"AMZN","metric":"return","value":0.0006290721},{"date":"2025-11-20","symbol":"AMZN","metric":"return","value":-0.0249225381},{"date":"2025-11-21","symbol":"AMZN","metric":"return","value":0.0163488993},{"date":"2025-11-24","symbol":"AMZN","metric":"return","value":0.0253296479},{"date":"2025-11-25","symbol":"AMZN","metric":"return","value":0.0149814389},{"date":"2025-11-26","symbol":"AMZN","metric":"return","value":-0.0022205774},{"date":"2025-11-28","symbol":"AMZN","metric":"return","value":0.017716879},{"date":"2025-12-01","symbol":"AMZN","metric":"return","value":0.002829946},{"date":"2025-12-02","symbol":"AMZN","metric":"return","value":0.0023088763},{"date":"2025-12-03","symbol":"AMZN","metric":"return","value":-0.0087023292},{"date":"2025-12-04","symbol":"AMZN","metric":"return","value":-0.014071779},{"date":"2025-12-05","symbol":"AMZN","metric":"return","value":0.0018331806},{"date":"2025-12-08","symbol":"AMZN","metric":"return","value":-0.0115017645},{"date":"2025-12-09","symbol":"AMZN","metric":"return","value":0.0045396448},{"date":"2025-12-10","symbol":"AMZN","metric":"return","value":0.0169357669},{"date":"2025-12-11","symbol":"AMZN","metric":"return","value":-0.0064716542},{"date":"2025-12-12","symbol":"AMZN","metric":"return","value":-0.0177609866},{"date":"2025-12-15","symbol":"AMZN","metric":"return","value":-0.0161368761},{"date":"2025-12-16","symbol":"AMZN","metric":"return","value":0.0000898715},{"date":"2025-12-17","symbol":"AMZN","metric":"return","value":-0.0057961898},{"date":"2025-12-18","symbol":"AMZN","metric":"return","value":0.0248113165},{"date":"2025-12-19","symbol":"AMZN","metric":"return","value":0.0026018698},{"date":"2025-12-22","symbol":"AMZN","metric":"return","value":0.0047503849},{"date":"2025-12-23","symbol":"AMZN","metric":"return","value":0.0162412993},{"date":"2025-12-24","symbol":"AMZN","metric":"return","value":0.0010338589},{"date":"2025-12-26","symbol":"AMZN","metric":"return","value":0.0006024615},{"date":"2025-12-29","symbol":"AMZN","metric":"return","value":-0.0019353174},{"date":"2025-12-30","symbol":"AMZN","metric":"return","value":0.0019821606},{"date":"2025-12-31","symbol":"AMZN","metric":"return","value":-0.0073538898},{"date":"2026-01-02","symbol":"AMZN","metric":"return","value":-0.0187158825},{"date":"2026-01-05","symbol":"AMZN","metric":"return","value":0.0289624724},{"date":"2026-01-06","symbol":"AMZN","metric":"return","value":0.0337681284},{"date":"2026-01-07","symbol":"AMZN","metric":"return","value":0.0026148674},{"date":"2026-01-08","symbol":"AMZN","metric":"return","value":0.0195810565},{"date":"2026-01-09","symbol":"AMZN","metric":"return","value":0.004425677},{"date":"2026-01-12","symbol":"AMZN","metric":"return","value":-0.0036785512},{"date":"2026-01-13","symbol":"AMZN","metric":"return","value":-0.0157017081},{"date":"2026-01-14","symbol":"AMZN","metric":"return","value":-0.0245259687},{"date":"2026-01-15","symbol":"AMZN","metric":"return","value":0.006465244},{"date":"2026-01-16","symbol":"AMZN","metric":"return","value":0.003946595},{"date":"2026-01-20","symbol":"AMZN","metric":"return","value":-0.0339578454},{"date":"2026-01-21","symbol":"AMZN","metric":"return","value":0.0013419913},{"date":"2026-01-22","symbol":"AMZN","metric":"return","value":0.013099304},{"date":"2026-01-23","symbol":"AMZN","metric":"return","value":0.0205684049},{"date":"2026-01-26","symbol":"AMZN","metric":"return","value":-0.0030941629},{"date":"2025-07-31","symbol":"GOOGL","metric":"return","value":null},{"date":"2025-08-01","symbol":"GOOGL","metric":"return","value":-0.0144050104},{"date":"2025-08-04","symbol":"GOOGL","metric":"return","value":0.0312433806},{"date":"2025-08-05","symbol":"GOOGL","metric":"return","value":-0.0018999692},{"date":"2025-08-06","symbol":"GOOGL","metric":"return","value":0.0073056542},{"date":"2025-08-07","symbol":"GOOGL","metric":"return","value":0.0021962307},{"date":"2025-08-08","symbol":"GOOGL","metric":"return","value":0.024921007},{"date":"2025-08-11","symbol":"GOOGL","metric":"return","value":-0.0020884093},{"date":"2025-08-12","symbol":"GOOGL","metric":"return","value":0.0116597738},{"date":"2025-08-13","symbol":"GOOGL","metric":"return","value":-0.0067970251},{"date":"2025-08-14","symbol":"GOOGL","metric":"return","value":0.0048599058},{"date":"2025-08-15","symbol":"GOOGL","metric":"return","value":0.0046883482},{"date":"2025-08-18","symbol":"GOOGL","metric":"return","value":-0.0019157088},{"date":"2025-08-19","symbol":"GOOGL","metric":"return","value":-0.0094984989},{"date":"2025-08-20","symbol":"GOOGL","metric":"return","value":-0.0111795687},{"date":"2025-08-21","symbol":"GOOGL","metric":"return","value":0.0021606954},{"date":"2025-08-22","symbol":"GOOGL","metric":"return","value":0.0317388688},{"date":"2025-08-25","symbol":"GOOGL","metric":"return","value":0.0116635078},{"date":"2025-08-26","symbol":"GOOGL","metric":"return","value":-0.0064850843},{"date":"2025-08-27","symbol":"GOOGL","metric":"return","value":0.0016439416},{"date":"2025-08-28","symbol":"GOOGL","metric":"return","value":0.0200328249},{"date":"2025-08-29","symbol":"GOOGL","metric":"return","value":0.0060101273},{"date":"2025-09-02","symbol":"GOOGL","metric":"return","value":-0.0073384138},{"date":"2025-09-03","symbol":"GOOGL","metric":"return","value":0.0913657473},{"date":"2025-09-04","symbol":"GOOGL","metric":"return","value":0.0071211463},{"date":"2025-09-05","symbol":"GOOGL","metric":"return","value":0.0116409416},{"date":"2025-09-08","symbol":"GOOGL","metric":"return","value":-0.003196386},{"date":"2025-09-09","symbol":"GOOGL","metric":"return","value":0.0238573688},{"date":"2025-09-10","symbol":"GOOGL","metric":"return","value":-0.0019209087},{"date":"2025-09-11","symbol":"GOOGL","metric":"return","value":0.0050207104},{"date":"2025-09-12","symbol":"GOOGL","metric":"return","value":0.0017901003},{"date":"2025-09-15","symbol":"GOOGL","metric":"return","value":0.044921875},{"date":"2025-09-16","symbol":"GOOGL","metric":"return","value":-0.0017896202},{"date":"2025-09-17","symbol":"GOOGL","metric":"return","value":-0.0064940239},{"date":"2025-09-18","symbol":"GOOGL","metric":"return","value":0.0100252637},{"date":"2025-09-19","symbol":"GOOGL","metric":"return","value":0.0106404097},{"date":"2025-09-22","symbol":"GOOGL","metric":"return","value":-0.0086034178},{"date":"2025-09-23","symbol":"GOOGL","metric":"return","value":-0.0034078301},{"date":"2025-09-24","symbol":"GOOGL","metric":"return","value":-0.017972167},{"date":"2025-09-25","symbol":"GOOGL","metric":"return","value":-0.0054660296},{"date":"2025-09-26","symbol":"GOOGL","metric":"return","value":0.003053373},{"date":"2025-09-29","symbol":"GOOGL","metric":"return","value":-0.0101063398},{"date":"2025-09-30","symbol":"GOOGL","metric":"return","value":-0.0038951987},{"date":"2025-10-01","symbol":"GOOGL","metric":"return","value":0.0074092368},{"date":"2025-10-02","symbol":"GOOGL","metric":"return","value":0.0032279153},{"date":"2025-10-03","symbol":"GOOGL","metric":"return","value":-0.0013847595},{"date":"2025-10-06","symbol":"GOOGL","metric":"return","value":0.0207186264},{"date":"2025-10-07","symbol":"GOOGL","metric":"return","value":-0.0186598474},{"date":"2025-10-08","symbol":"GOOGL","metric":"return","value":-0.0046416938},{"date":"2025-10-09","symbol":"GOOGL","metric":"return","value":-0.0126401047},{"date":"2025-10-10","symbol":"GOOGL","metric":"return","value":-0.0205079339},{"date":"2025-10-13","symbol":"GOOGL","metric":"return","value":0.0320192877},{"date":"2025-10-14","symbol":"GOOGL","metric":"return","value":0.0053280872},{"date":"2025-10-15","symbol":"GOOGL","metric":"return","value":0.0227485833},{"date":"2025-10-16","symbol":"GOOGL","metric":"return","value":0.0017140352},{"date":"2025-10-17","symbol":"GOOGL","metric":"return","value":0.0072821329},{"date":"2025-10-20","symbol":"GOOGL","metric":"return","value":0.0128392526},{"date":"2025-10-21","symbol":"GOOGL","metric":"return","value":-0.0237147983},{"date":"2025-10-22","symbol":"GOOGL","metric":"return","value":0.0049141031},{"date":"2025-10-23","symbol":"GOOGL","metric":"return","value":0.0054864231},{"date":"2025-10-24","symbol":"GOOGL","metric":"return","value":0.0270451939},{"date":"2025-10-27","symbol":"GOOGL","metric":"return","value":0.0359576516},{"date":"2025-10-28","symbol":"GOOGL","metric":"return","value":-0.0066520495},{"date":"2025-10-29","symbol":"GOOGL","metric":"return","value":0.0265245043},{"date":"2025-10-30","symbol":"GOOGL","metric":"return","value":0.0251831335},{"date":"2025-10-31","symbol":"GOOGL","metric":"return","value":-0.0010309278},{"date":"2025-11-03","symbol":"GOOGL","metric":"return","value":0.0089676524},{"date":"2025-11-04","symbol":"GOOGL","metric":"return","value":-0.0217613656},{"date":"2025-11-05","symbol":"GOOGL","metric":"return","value":0.0243726565},{"date":"2025-11-06","symbol":"GOOGL","metric":"return","value":0.0015486414},{"date":"2025-11-07","symbol":"GOOGL","metric":"return","value":-0.0207689064},{"date":"2025-11-10","symbol":"GOOGL","metric":"return","value":0.0404091154},{"date":"2025-11-11","symbol":"GOOGL","metric":"return","value":0.0041737091},{"date":"2025-11-12","symbol":"GOOGL","metric":"return","value":-0.0158010442},{"date":"2025-11-13","symbol":"GOOGL","metric":"return","value":-0.0283749825},{"date":"2025-11-14","symbol":"GOOGL","metric":"return","value":-0.0077588994},{"date":"2025-11-17","symbol":"GOOGL","metric":"return","value":0.0311334757},{"date":"2025-11-18","symbol":"GOOGL","metric":"return","value":-0.0025980409},{"date":"2025-11-19","symbol":"GOOGL","metric":"return","value":0.0300256961},{"date":"2025-11-20","symbol":"GOOGL","metric":"return","value":-0.0114824687},{"date":"2025-11-21","symbol":"GOOGL","metric":"return","value":0.0352623937},{"date":"2025-11-24","symbol":"GOOGL","metric":"return","value":0.0631469979},{"date":"2025-11-25","symbol":"GOOGL","metric":"return","value":0.0152652574},{"date":"2025-11-26","symbol":"GOOGL","metric":"return","value":-0.0107972651},{"date":"2025-11-28","symbol":"GOOGL","metric":"return","value":0.0007193345},{"date":"2025-12-01","symbol":"GOOGL","metric":"return","value":-0.0165327999},{"date":"2025-12-02","symbol":"GOOGL","metric":"return","value":0.0029236049},{"date":"2025-12-03","symbol":"GOOGL","metric":"return","value":0.012103929},{"date":"2025-12-04","symbol":"GOOGL","metric":"return","value":-0.0062926554},{"date":"2025-12-05","symbol":"GOOGL","metric":"return","value":0.0114993226},{"date":"2025-12-08","symbol":"GOOGL","metric":"return","value":-0.0228617704},{"date":"2025-12-09","symbol":"GOOGL","metric":"return","value":0.0107101874},{"date":"2025-12-10","symbol":"GOOGL","metric":"return","value":0.0098713258},{"date":"2025-12-11","symbol":"GOOGL","metric":"return","value":-0.0242965554},{"date":"2025-12-12","symbol":"GOOGL","metric":"return","value":-0.0100502513},{"date":"2025-12-15","symbol":"GOOGL","metric":"return","value":-0.0034595364},{"date":"2025-12-16","symbol":"GOOGL","metric":"return","value":-0.0053533191},{"date":"2025-12-17","symbol":"GOOGL","metric":"return","value":-0.0321296931},{"date":"2025-12-18","symbol":"GOOGL","metric":"return","value":0.0193448369},{"date":"2025-12-19","symbol":"GOOGL","metric":"return","value":0.0155392449},{"date":"2025-12-22","symbol":"GOOGL","metric":"return","value":0.0085297565},{"date":"2025-12-23","symbol":"GOOGL","metric":"return","value":0.0147524049},{"date":"2025-12-24","symbol":"GOOGL","metric":"return","value":-0.0008271035},{"date":"2025-12-26","symbol":"GOOGL","metric":"return","value":-0.0018466045},{"date":"2025-12-29","symbol":"GOOGL","metric":"return","value":0.0001594845},{"date":"2025-12-30","symbol":"GOOGL","metric":"return","value":0.0009248629},{"date":"2025-12-31","symbol":"GOOGL","metric":"return","value":-0.0027083001},{"date":"2026-01-02","symbol":"GOOGL","metric":"return","value":0.0068690096},{"date":"2026-01-05","symbol":"GOOGL","metric":"return","value":0.0044105981},{"date":"2026-01-06","symbol":"GOOGL","metric":"return","value":-0.0069501485},{"date":"2026-01-07","symbol":"GOOGL","metric":"return","value":0.0243048928},{"date":"2026-01-08","symbol":"GOOGL","metric":"return","value":0.0107460091},{"date":"2026-01-09","symbol":"GOOGL","metric":"return","value":0.0096177483},{"date":"2026-01-12","symbol":"GOOGL","metric":"return","value":0.010013087},{"date":"2026-01-13","symbol":"GOOGL","metric":"return","value":0.0123847406},{"date":"2026-01-14","symbol":"GOOGL","metric":"return","value":-0.0003869393},{"date":"2026-01-15","symbol":"GOOGL","metric":"return","value":-0.0091114817},{"date":"2026-01-16","symbol":"GOOGL","metric":"return","value":-0.0083538674},{"date":"2026-01-20","symbol":"GOOGL","metric":"return","value":-0.0242424242},{"date":"2026-01-21","symbol":"GOOGL","metric":"return","value":0.0198136646},{"date":"2026-01-22","symbol":"GOOGL","metric":"return","value":0.0065777453},{"date":"2026-01-23","symbol":"GOOGL","metric":"return","value":-0.0078961699},{"date":"2026-01-26","symbol":"GOOGL","metric":"return","value":0.0162534687},{"date":"2025-07-31","symbol":"META","metric":"return","value":null},{"date":"2025-08-01","symbol":"META","metric":"return","value":-0.0302994989},{"date":"2025-08-04","symbol":"META","metric":"return","value":0.0351453484},{"date":"2025-08-05","symbol":"META","metric":"return","value":-0.0166277525},{"date":"2025-08-06","symbol":"META","metric":"return","value":0.0111764089},{"date":"2025-08-07","symbol":"META","metric":"return","value":-0.0131544808},{"date":"2025-08-08","symbol":"META","metric":"return","value":0.0097936111},{"date":"2025-08-11","symbol":"META","metric":"return","value":-0.0044522554},{"date":"2025-08-12","symbol":"META","metric":"return","value":0.0315013142},{"date":"2025-08-13","symbol":"META","metric":"return","value":-0.0125503917},{"date":"2025-08-14","symbol":"META","metric":"return","value":0.0026318492},{"date":"2025-08-15","symbol":"META","metric":"return","value":0.0039566181},{"date":"2025-08-18","symbol":"META","metric":"return","value":-0.0227406066},{"date":"2025-08-19","symbol":"META","metric":"return","value":-0.0207117967},{"date":"2025-08-20","symbol":"META","metric":"return","value":-0.0049976012},{"date":"2025-08-21","symbol":"META","metric":"return","value":-0.0115321252},{"date":"2025-08-22","symbol":"META","metric":"return","value":0.0212330623},{"date":"2025-08-25","symbol":"META","metric":"return","value":-0.0019769926},{"date":"2025-08-26","symbol":"META","metric":"return","value":0.0010635752},{"date":"2025-08-27","symbol":"META","metric":"return","value":-0.0089112593},{"date":"2025-08-28","symbol":"META","metric":"return","value":0.004984791},{"date":"2025-08-29","symbol":"META","metric":"return","value":-0.0165202203},{"date":"2025-09-02","symbol":"META","metric":"return","value":-0.0048535792},{"date":"2025-09-03","symbol":"META","metric":"return","value":0.0026293561},{"date":"2025-09-04","symbol":"META","metric":"return","value":0.0157483525},{"date":"2025-09-05","symbol":"META","metric":"return","value":0.0050699628},{"date":"2025-09-08","symbol":"META","metric":"return","value":-0.000199646},{"date":"2025-09-09","symbol":"META","metric":"return","value":0.0178119758},{"date":"2025-09-10","symbol":"META","metric":"return","value":-0.017918803},{"date":"2025-09-11","symbol":"META","metric":"return","value":-0.0014383507},{"date":"2025-09-12","symbol":"META","metric":"return","value":0.0062551682},{"date":"2025-09-15","symbol":"META","metric":"return","value":0.0120481928},{"date":"2025-09-16","symbol":"META","metric":"return","value":0.0187018702},{"date":"2025-09-17","symbol":"META","metric":"return","value":-0.0042039494},{"date":"2025-09-18","symbol":"META","metric":"return","value":0.0058354958},{"date":"2025-09-19","symbol":"META","metric":"return","value":-0.0024002362},{"date":"2025-09-22","symbol":"META","metric":"return","value":-0.016314557},{"date":"2025-09-23","symbol":"META","metric":"return","value":-0.0127658461},{"date":"2025-09-24","symbol":"META","metric":"return","value":0.0069689181},{"date":"2025-09-25","symbol":"META","metric":"return","value":-0.0154465554},{"date":"2025-09-26","symbol":"META","metric":"return","value":-0.0068956301},{"date":"2025-09-29","symbol":"META","metric":"return","value":-0.0004709745},{"date":"2025-09-30","symbol":"META","metric":"return","value":-0.0121299425},{"date":"2025-10-01","symbol":"META","metric":"return","value":-0.0231949631},{"date":"2025-10-02","symbol":"META","metric":"return","value":0.0135331213},{"date":"2025-10-03","symbol":"META","metric":"return","value":-0.0226853509},{"date":"2025-10-06","symbol":"META","metric":"return","value":0.0071833009},{"date":"2025-10-07","symbol":"META","metric":"return","value":-0.0036079879},{"date":"2025-10-08","symbol":"META","metric":"return","value":0.0066807018},{"date":"2025-10-09","symbol":"META","metric":"return","value":0.0218191451},{"date":"2025-10-10","symbol":"META","metric":"return","value":-0.0384494686},{"date":"2025-10-13","symbol":"META","metric":"return","value":0.014743235},{"date":"2025-10-14","symbol":"META","metric":"return","value":-0.0098584853},{"date":"2025-10-15","symbol":"META","metric":"return","value":0.0125693787},{"date":"2025-10-16","symbol":"META","metric":"return","value":-0.0076432766},{"date":"2025-10-17","symbol":"META","metric":"return","value":0.0068166805},{"date":"2025-10-20","symbol":"META","metric":"return","value":0.0212608538},{"date":"2025-10-21","symbol":"META","metric":"return","value":0.0015036155},{"date":"2025-10-22","symbol":"META","metric":"return","value":0.0001910819},{"date":"2025-10-23","symbol":"META","metric":"return","value":0.00080512},{"date":"2025-10-24","symbol":"META","metric":"return","value":0.0059449141},{"date":"2025-10-27","symbol":"META","metric":"return","value":0.0168754066},{"date":"2025-10-28","symbol":"META","metric":"return","value":0.0008264353},{"date":"2025-10-29","symbol":"META","metric":"return","value":0.0003063277},{"date":"2025-10-30","symbol":"META","metric":"return","value":-0.1133464703},{"date":"2025-10-31","symbol":"META","metric":"return","value":-0.0271950505},{"date":"2025-11-03","symbol":"META","metric":"return","value":-0.016408879},{"date":"2025-11-04","symbol":"META","metric":"return","value":-0.0162902745},{"date":"2025-11-05","symbol":"META","metric":"return","value":0.0137521737},{"date":"2025-11-06","symbol":"META","metric":"return","value":-0.0267377996},{"date":"2025-11-07","symbol":"META","metric":"return","value":0.004462842},{"date":"2025-11-10","symbol":"META","metric":"return","value":0.0161783645},{"date":"2025-11-11","symbol":"META","metric":"return","value":-0.0074138614},{"date":"2025-11-12","symbol":"META","metric":"return","value":-0.0288235951},{"date":"2025-11-13","symbol":"META","metric":"return","value":0.0014461554},{"date":"2025-11-14","symbol":"META","metric":"return","value":-0.0007056237},{"date":"2025-11-17","symbol":"META","metric":"return","value":-0.0122175512},{"date":"2025-11-18","symbol":"META","metric":"return","value":-0.0071818061},{"date":"2025-11-19","symbol":"META","metric":"return","value":-0.0123241795},{"date":"2025-11-20","symbol":"META","metric":"return","value":-0.0019835888},{"date":"2025-11-21","symbol":"META","metric":"return","value":0.0086635976},{"date":"2025-11-24","symbol":"META","metric":"return","value":0.0316284083},{"date":"2025-11-25","symbol":"META","metric":"return","value":0.0377928332},{"date":"2025-11-26","symbol":"META","metric":"return","value":-0.0041057102},{"date":"2025-11-28","symbol":"META","metric":"return","value":0.0226350124},{"date":"2025-12-01","symbol":"META","metric":"return","value":-0.0109202681},{"date":"2025-12-02","symbol":"META","metric":"return","value":0.009713438},{"date":"2025-12-03","symbol":"META","metric":"return","value":-0.0115842059},{"date":"2025-12-04","symbol":"META","metric":"return","value":0.0342836578},{"date":"2025-12-05","symbol":"META","metric":"return","value":0.0179730404},{"date":"2025-12-08","symbol":"META","metric":"return","value":-0.0098235915},{"date":"2025-12-09","symbol":"META","metric":"return","value":-0.0147690091},{"date":"2025-12-10","symbol":"META","metric":"return","value":-0.0103896895},{"date":"2025-12-11","symbol":"META","metric":"return","value":0.0039716749},{"date":"2025-12-12","symbol":"META","metric":"return","value":-0.0129872121},{"date":"2025-12-15","symbol":"META","metric":"return","value":0.0059032794},{"date":"2025-12-16","symbol":"META","metric":"return","value":0.014887801},{"date":"2025-12-17","symbol":"META","metric":"return","value":-0.0116411778},{"date":"2025-12-18","symbol":"META","metric":"return","value":0.0230177059},{"date":"2025-12-19","symbol":"META","metric":"return","value":-0.0085484235},{"date":"2025-12-22","symbol":"META","metric":"return","value":0.0041440867},{"date":"2025-12-23","symbol":"META","metric":"return","value":0.0052003023},{"date":"2025-12-24","symbol":"META","metric":"return","value":0.0039251662},{"date":"2025-12-26","symbol":"META","metric":"return","value":-0.0063815445},{"date":"2025-12-29","symbol":"META","metric":"return","value":-0.0069351264},{"date":"2025-12-30","symbol":"META","metric":"return","value":0.0110218768},{"date":"2025-12-31","symbol":"META","metric":"return","value":-0.0087994594},{"date":"2026-01-02","symbol":"META","metric":"return","value":-0.0146646669},{"date":"2026-01-05","symbol":"META","metric":"return","value":0.0128841807},{"date":"2026-01-06","symbol":"META","metric":"return","value":0.0027778199},{"date":"2026-01-07","symbol":"META","metric":"return","value":-0.0180587933},{"date":"2026-01-08","symbol":"META","metric":"return","value":-0.0040543249},{"date":"2026-01-09","symbol":"META","metric":"return","value":0.010834907},{"date":"2026-01-12","symbol":"META","metric":"return","value":-0.0169815943},{"date":"2026-01-13","symbol":"META","metric":"return","value":-0.0169478325},{"date":"2026-01-14","symbol":"META","metric":"return","value":-0.0246715999},{"date":"2026-01-15","symbol":"META","metric":"return","value":0.0085781128},{"date":"2026-01-16","symbol":"META","metric":"return","value":-0.0008859536},{"date":"2026-01-20","symbol":"META","metric":"return","value":-0.0260056429},{"date":"2026-01-21","symbol":"META","metric":"return","value":0.0146328544},{"date":"2026-01-22","symbol":"META","metric":"return","value":0.0565616027},{"date":"2026-01-23","symbol":"META","metric":"return","value":0.0171857388},{"date":"2026-01-26","symbol":"META","metric":"return","value":0.0206448479},{"date":"2025-07-31","symbol":"MSFT","metric":"return","value":null},{"date":"2025-08-01","symbol":"MSFT","metric":"return","value":-0.0176062299},{"date":"2025-08-04","symbol":"MSFT","metric":"return","value":0.0220001149},{"date":"2025-08-05","symbol":"MSFT","metric":"return","value":-0.0147257194},{"date":"2025-08-06","symbol":"MSFT","metric":"return","value":-0.0053242061},{"date":"2025-08-07","symbol":"MSFT","metric":"return","value":-0.0078187727},{"date":"2025-08-08","symbol":"MSFT","metric":"return","value":0.0023120942},{"date":"2025-08-11","symbol":"MSFT","metric":"return","value":-0.0005190212},{"date":"2025-08-12","symbol":"MSFT","metric":"return","value":0.0143093434},{"date":"2025-08-13","symbol":"MSFT","metric":"return","value":-0.0163639122},{"date":"2025-08-14","symbol":"MSFT","metric":"return","value":0.0036626506},{"date":"2025-08-15","symbol":"MSFT","metric":"return","value":-0.004417555},{"date":"2025-08-18","symbol":"MSFT","metric":"return","value":-0.0059033472},{"date":"2025-08-19","symbol":"MSFT","metric":"return","value":-0.0141861864},{"date":"2025-08-20","symbol":"MSFT","metric":"return","value":-0.0079333832},{"date":"2025-08-21","symbol":"MSFT","metric":"return","value":-0.0012898105},{"date":"2025-08-22","symbol":"MSFT","metric":"return","value":0.0059209219},{"date":"2025-08-25","symbol":"MSFT","metric":"return","value":-0.0058465671},{"date":"2025-08-26","symbol":"MSFT","metric":"return","value":-0.0044107129},{"date":"2025-08-27","symbol":"MSFT","metric":"return","value":0.0093594093},{"date":"2025-08-28","symbol":"MSFT","metric":"return","value":0.0057336049},{"date":"2025-08-29","symbol":"MSFT","metric":"return","value":-0.0057992097},{"date":"2025-09-02","symbol":"MSFT","metric":"return","value":-0.0030845889},{"date":"2025-09-03","symbol":"MSFT","metric":"return","value":0.0004561863},{"date":"2025-09-04","symbol":"MSFT","metric":"return","value":0.0051743621},{"date":"2025-09-05","symbol":"MSFT","metric":"return","value":-0.0255216757},{"date":"2025-09-08","symbol":"MSFT","metric":"return","value":0.0064564443},{"date":"2025-09-09","symbol":"MSFT","metric":"return","value":0.0004223058},{"date":"2025-09-10","symbol":"MSFT","metric":"return","value":0.0039398569},{"date":"2025-09-11","symbol":"MSFT","metric":"return","value":0.0012614128},{"date":"2025-09-12","symbol":"MSFT","metric":"return","value":0.0177575139},{"date":"2025-09-15","symbol":"MSFT","metric":"return","value":0.0107083211},{"date":"2025-09-16","symbol":"MSFT","metric":"return","value":-0.0122667185},{"date":"2025-09-17","symbol":"MSFT","metric":"return","value":0.0019287921},{"date":"2025-09-18","symbol":"MSFT","metric":"return","value":-0.0030840552},{"date":"2025-09-19","symbol":"MSFT","metric":"return","value":0.0186403941},{"date":"2025-09-22","symbol":"MSFT","metric":"return","value":-0.0067123182},{"date":"2025-09-23","symbol":"MSFT","metric":"return","value":-0.0101462541},{"date":"2025-09-24","symbol":"MSFT","metric":"return","value":0.001810026},{"date":"2025-09-25","symbol":"MSFT","metric":"return","value":-0.0061272584},{"date":"2025-09-26","symbol":"MSFT","metric":"return","value":0.008733797},{"date":"2025-09-29","symbol":"MSFT","metric":"return","value":0.0061508325},{"date":"2025-09-30","symbol":"MSFT","metric":"return","value":0.0065026088},{"date":"2025-10-01","symbol":"MSFT","metric":"return","value":0.003404387},{"date":"2025-10-02","symbol":"MSFT","metric":"return","value":-0.0076338821},{"date":"2025-10-03","symbol":"MSFT","metric":"return","value":0.0031081239},{"date":"2025-10-06","symbol":"MSFT","metric":"return","value":0.0216894535},{"date":"2025-10-07","symbol":"MSFT","metric":"return","value":-0.0086811479},{"date":"2025-10-08","symbol":"MSFT","metric":"return","value":0.0016634799},{"date":"2025-10-09","symbol":"MSFT","metric":"return","value":-0.0046767328},{"date":"2025-10-10","symbol":"MSFT","metric":"return","value":-0.0218825515},{"date":"2025-10-13","symbol":"MSFT","metric":"return","value":0.0060390973},{"date":"2025-10-14","symbol":"MSFT","metric":"return","value":-0.0009355084},{"date":"2025-10-15","symbol":"MSFT","metric":"return","value":-0.0002731121},{"date":"2025-10-16","symbol":"MSFT","metric":"return","value":-0.0035514274},{"date":"2025-10-17","symbol":"MSFT","metric":"return","value":0.0038578283},{"date":"2025-10-20","symbol":"MSFT","metric":"return","value":0.0062424408},{"date":"2025-10-21","symbol":"MSFT","metric":"return","value":0.0016866349},{"date":"2025-10-22","symbol":"MSFT","metric":"return","value":0.0055739418},{"date":"2025-10-23","symbol":"MSFT","metric":"return","value":0.0000384934},{"date":"2025-10-24","symbol":"MSFT","metric":"return","value":0.005850767},{"date":"2025-10-27","symbol":"MSFT","metric":"return","value":0.0151158563},{"date":"2025-10-28","symbol":"MSFT","metric":"return","value":0.0198480765},{"date":"2025-10-29","symbol":"MSFT","metric":"return","value":-0.0009610764},{"date":"2025-10-30","symbol":"MSFT","metric":"return","value":-0.0291560292},{"date":"2025-10-31","symbol":"MSFT","metric":"return","value":-0.0151301498},{"date":"2025-11-03","symbol":"MSFT","metric":"return","value":-0.0015091711},{"date":"2025-11-04","symbol":"MSFT","metric":"return","value":-0.0052125722},{"date":"2025-11-05","symbol":"MSFT","metric":"return","value":-0.0139470557},{"date":"2025-11-06","symbol":"MSFT","metric":"return","value":-0.0198336659},{"date":"2025-11-07","symbol":"MSFT","metric":"return","value":-0.0005643227},{"date":"2025-11-10","symbol":"MSFT","metric":"return","value":0.0184718385},{"date":"2025-11-11","symbol":"MSFT","metric":"return","value":0.0053064053},{"date":"2025-11-12","symbol":"MSFT","metric":"return","value":0.0048450948},{"date":"2025-11-13","symbol":"MSFT","metric":"return","value":-0.0153668241},{"date":"2025-11-14","symbol":"MSFT","metric":"return","value":0.0136956305},{"date":"2025-11-17","symbol":"MSFT","metric":"return","value":-0.0052824853},{"date":"2025-11-18","symbol":"MSFT","metric":"return","value":-0.0269870099},{"date":"2025-11-19","symbol":"MSFT","metric":"return","value":-0.013512691},{"date":"2025-11-20","symbol":"MSFT","metric":"return","value":-0.0160013163},{"date":"2025-11-21","symbol":"MSFT","metric":"return","value":-0.0131889723},{"date":"2025-11-24","symbol":"MSFT","metric":"return","value":0.0039820385},{"date":"2025-11-25","symbol":"MSFT","metric":"return","value":0.0063080169},{"date":"2025-11-26","symbol":"MSFT","metric":"return","value":0.0178410449},{"date":"2025-11-28","symbol":"MSFT","metric":"return","value":0.0134088568},{"date":"2025-12-01","symbol":"MSFT","metric":"return","value":-0.0107111644},{"date":"2025-12-02","symbol":"MSFT","metric":"return","value":0.0066976209},{"date":"2025-12-03","symbol":"MSFT","metric":"return","value":-0.0250408163},{"date":"2025-12-04","symbol":"MSFT","metric":"return","value":0.0065099533},{"date":"2025-12-05","symbol":"MSFT","metric":"return","value":0.0048248898},{"date":"2025-12-08","symbol":"MSFT","metric":"return","value":0.016267903},{"date":"2025-12-09","symbol":"MSFT","metric":"return","value":0.0020365769},{"date":"2025-12-10","symbol":"MSFT","metric":"return","value":-0.0273566115},{"date":"2025-12-11","symbol":"MSFT","metric":"return","value":0.0102599465},{"date":"2025-12-12","symbol":"MSFT","metric":"return","value":-0.0102178005},{"date":"2025-12-15","symbol":"MSFT","metric":"return","value":-0.00775291},{"date":"2025-12-16","symbol":"MSFT","metric":"return","value":0.0033065162},{"date":"2025-12-17","symbol":"MSFT","metric":"return","value":-0.0005667625},{"date":"2025-12-18","symbol":"MSFT","metric":"return","value":0.0165084432},{"date":"2025-12-19","symbol":"MSFT","metric":"return","value":0.0040084301},{"date":"2025-12-22","symbol":"MSFT","metric":"return","value":-0.0020579519},{"date":"2025-12-23","symbol":"MSFT","metric":"return","value":0.0039800379},{"date":"2025-12-24","symbol":"MSFT","metric":"return","value":0.0024032043},{"date":"2025-12-26","symbol":"MSFT","metric":"return","value":-0.0006352199},{"date":"2025-12-29","symbol":"MSFT","metric":"return","value":-0.0012507433},{"date":"2025-12-30","symbol":"MSFT","metric":"return","value":0.0007801273},{"date":"2025-12-31","symbol":"MSFT","metric":"return","value":-0.0079182736},{"date":"2026-01-02","symbol":"MSFT","metric":"return","value":-0.022083454},{"date":"2026-01-05","symbol":"MSFT","metric":"return","value":-0.000190299},{"date":"2026-01-06","symbol":"MSFT","metric":"return","value":0.0119699693},{"date":"2026-01-07","symbol":"MSFT","metric":"return","value":0.0103655096},{"date":"2026-01-08","symbol":"MSFT","metric":"return","value":-0.0110865204},{"date":"2026-01-09","symbol":"MSFT","metric":"return","value":0.0024471356},{"date":"2026-01-12","symbol":"MSFT","metric":"return","value":-0.0043815724},{"date":"2026-01-13","symbol":"MSFT","metric":"return","value":-0.0136426506},{"date":"2026-01-14","symbol":"MSFT","metric":"return","value":-0.0239870822},{"date":"2026-01-15","symbol":"MSFT","metric":"return","value":-0.005921024},{"date":"2026-01-16","symbol":"MSFT","metric":"return","value":0.0070074016},{"date":"2026-01-20","symbol":"MSFT","metric":"return","value":-0.0116122298},{"date":"2026-01-21","symbol":"MSFT","metric":"return","value":-0.0229032826},{"date":"2026-01-22","symbol":"MSFT","metric":"return","value":0.0158294116},{"date":"2026-01-23","symbol":"MSFT","metric":"return","value":0.032827947},{"date":"2026-01-26","symbol":"MSFT","metric":"return","value":0.0092928426},{"date":"2025-07-31","symbol":"NVDA","metric":"return","value":null},{"date":"2025-08-01","symbol":"NVDA","metric":"return","value":-0.0233342705},{"date":"2025-08-04","symbol":"NVDA","metric":"return","value":0.036154289},{"date":"2025-08-05","symbol":"NVDA","metric":"return","value":-0.0096677409},{"date":"2025-08-06","symbol":"NVDA","metric":"return","value":0.006508079},{"date":"2025-08-07","symbol":"NVDA","metric":"return","value":0.0075250836},{"date":"2025-08-08","symbol":"NVDA","metric":"return","value":0.0106777317},{"date":"2025-08-11","symbol":"NVDA","metric":"return","value":-0.0035033939},{"date":"2025-08-12","symbol":"NVDA","metric":"return","value":0.006042628},{"date":"2025-08-13","symbol":"NVDA","metric":"return","value":-0.0085726766},{"date":"2025-08-14","symbol":"NVDA","metric":"return","value":0.0023682326},{"date":"2025-08-15","symbol":"NVDA","metric":"return","value":-0.0086263736},{"date":"2025-08-18","symbol":"NVDA","metric":"return","value":0.0086460123},{"date":"2025-08-19","symbol":"NVDA","metric":"return","value":-0.0350019232},{"date":"2025-08-20","symbol":"NVDA","metric":"return","value":-0.0013665869},{"date":"2025-08-21","symbol":"NVDA","metric":"return","value":-0.0023947999},{"date":"2025-08-22","symbol":"NVDA","metric":"return","value":0.0172039323},{"date":"2025-08-25","symbol":"NVDA","metric":"return","value":0.0102264427},{"date":"2025-08-26","symbol":"NVDA","metric":"return","value":0.0109016074},{"date":"2025-08-27","symbol":"NVDA","metric":"return","value":-0.0009353508},{"date":"2025-08-28","symbol":"NVDA","metric":"return","value":-0.0078753167},{"date":"2025-08-29","symbol":"NVDA","metric":"return","value":-0.0332500694},{"date":"2025-09-02","symbol":"NVDA","metric":"return","value":-0.0195222784},{"date":"2025-09-03","symbol":"NVDA","metric":"return","value":-0.0009369876},{"date":"2025-09-04","symbol":"NVDA","metric":"return","value":0.0060961313},{"date":"2025-09-05","symbol":"NVDA","metric":"return","value":-0.0270333256},{"date":"2025-09-08","symbol":"NVDA","metric":"return","value":0.0077245509},{"date":"2025-09-09","symbol":"NVDA","metric":"return","value":0.0145582031},{"date":"2025-09-10","symbol":"NVDA","metric":"return","value":0.0384795596},{"date":"2025-09-11","symbol":"NVDA","metric":"return","value":-0.000845976},{"date":"2025-09-12","symbol":"NVDA","metric":"return","value":0.0036689998},{"date":"2025-09-15","symbol":"NVDA","metric":"return","value":-0.0003936786},{"date":"2025-09-16","symbol":"NVDA","metric":"return","value":-0.0161471813},{"date":"2025-09-17","symbol":"NVDA","metric":"return","value":-0.02624807},{"date":"2025-09-18","symbol":"NVDA","metric":"return","value":0.0349424477},{"date":"2025-09-19","symbol":"NVDA","metric":"return","value":0.0024399932},{"date":"2025-09-22","symbol":"NVDA","metric":"return","value":0.0392845013},{"date":"2025-09-23","symbol":"NVDA","metric":"return","value":-0.0282135076},{"date":"2025-09-24","symbol":"NVDA","metric":"return","value":-0.0081829391},{"date":"2025-09-25","symbol":"NVDA","metric":"return","value":0.0040687161},{"date":"2025-09-26","symbol":"NVDA","metric":"return","value":0.0028140477},{"date":"2025-09-29","symbol":"NVDA","metric":"return","value":0.0205410259},{"date":"2025-09-30","symbol":"NVDA","metric":"return","value":0.0260118786},{"date":"2025-10-01","symbol":"NVDA","metric":"return","value":0.0035375462},{"date":"2025-10-02","symbol":"NVDA","metric":"return","value":0.0088126903},{"date":"2025-10-03","symbol":"NVDA","metric":"return","value":-0.0067238458},{"date":"2025-10-06","symbol":"NVDA","metric":"return","value":-0.0110868291},{"date":"2025-10-07","symbol":"NVDA","metric":"return","value":-0.0026949819},{"date":"2025-10-08","symbol":"NVDA","metric":"return","value":0.021996433},{"date":"2025-10-09","symbol":"NVDA","metric":"return","value":0.0182971973},{"date":"2025-10-10","symbol":"NVDA","metric":"return","value":-0.0488678853},{"date":"2025-10-13","symbol":"NVDA","metric":"return","value":0.0281736282},{"date":"2025-10-14","symbol":"NVDA","metric":"return","value":-0.0440231533},{"date":"2025-10-15","symbol":"NVDA","metric":"return","value":-0.0011109877},{"date":"2025-10-16","symbol":"NVDA","metric":"return","value":0.011011011},{"date":"2025-10-17","symbol":"NVDA","metric":"return","value":0.0077557756},{"date":"2025-10-20","symbol":"NVDA","metric":"return","value":-0.0031657661},{"date":"2025-10-21","symbol":"NVDA","metric":"return","value":-0.0081038165},{"date":"2025-10-22","symbol":"NVDA","metric":"return","value":-0.0048578526},{"date":"2025-10-23","symbol":"NVDA","metric":"return","value":0.0104288012},{"date":"2025-10-24","symbol":"NVDA","metric":"return","value":0.0225089212},{"date":"2025-10-27","symbol":"NVDA","metric":"return","value":0.0280805369},{"date":"2025-10-28","symbol":"NVDA","metric":"return","value":0.0498224358},{"date":"2025-10-29","symbol":"NVDA","metric":"return","value":0.0298975226},{"date":"2025-10-30","symbol":"NVDA","metric":"return","value":-0.020045404},{"date":"2025-10-31","symbol":"NVDA","metric":"return","value":-0.0019716088},{"date":"2025-11-03","symbol":"NVDA","metric":"return","value":0.0216811537},{"date":"2025-11-04","symbol":"NVDA","metric":"return","value":-0.0395900807},{"date":"2025-11-05","symbol":"NVDA","metric":"return","value":-0.017515603},{"date":"2025-11-06","symbol":"NVDA","metric":"return","value":-0.0365266393},{"date":"2025-11-07","symbol":"NVDA","metric":"return","value":0.0003722018},{"date":"2025-11-10","symbol":"NVDA","metric":"return","value":0.0579355799},{"date":"2025-11-11","symbol":"NVDA","metric":"return","value":-0.0295920418},{"date":"2025-11-12","symbol":"NVDA","metric":"return","value":0.0033134869},{"date":"2025-11-13","symbol":"NVDA","metric":"return","value":-0.0358119614},{"date":"2025-11-14","symbol":"NVDA","metric":"return","value":0.0177147444},{"date":"2025-11-17","symbol":"NVDA","metric":"return","value":-0.0187736643},{"date":"2025-11-18","symbol":"NVDA","metric":"return","value":-0.0280829626},{"date":"2025-11-19","symbol":"NVDA","metric":"return","value":0.0284532672},{"date":"2025-11-20","symbol":"NVDA","metric":"return","value":-0.0315264597},{"date":"2025-11-21","symbol":"NVDA","metric":"return","value":-0.0097436749},{"date":"2025-11-24","symbol":"NVDA","metric":"return","value":0.0205176944},{"date":"2025-11-25","symbol":"NVDA","metric":"return","value":-0.0259121288},{"date":"2025-11-26","symbol":"NVDA","metric":"return","value":0.0137225128},{"date":"2025-11-28","symbol":"NVDA","metric":"return","value":-0.0180859917},{"date":"2025-12-01","symbol":"NVDA","metric":"return","value":0.0164981072},{"date":"2025-12-02","symbol":"NVDA","metric":"return","value":0.0085598355},{"date":"2025-12-03","symbol":"NVDA","metric":"return","value":-0.0103058694},{"date":"2025-12-04","symbol":"NVDA","metric":"return","value":0.0211604856},{"date":"2025-12-05","symbol":"NVDA","metric":"return","value":-0.0052895627},{"date":"2025-12-08","symbol":"NVDA","metric":"return","value":0.0172139685},{"date":"2025-12-09","symbol":"NVDA","metric":"return","value":-0.0031258421},{"date":"2025-12-10","symbol":"NVDA","metric":"return","value":-0.0064334757},{"date":"2025-12-11","symbol":"NVDA","metric":"return","value":-0.0155076722},{"date":"2025-12-12","symbol":"NVDA","metric":"return","value":-0.0326645664},{"date":"2025-12-15","symbol":"NVDA","metric":"return","value":0.0072563136},{"date":"2025-12-16","symbol":"NVDA","metric":"return","value":0.0081116342},{"date":"2025-12-17","symbol":"NVDA","metric":"return","value":-0.0381498987},{"date":"2025-12-18","symbol":"NVDA","metric":"return","value":0.0187200187},{"date":"2025-12-19","symbol":"NVDA","metric":"return","value":0.0393361663},{"date":"2025-12-22","symbol":"NVDA","metric":"return","value":0.0149179513},{"date":"2025-12-23","symbol":"NVDA","metric":"return","value":0.0300506288},{"date":"2025-12-24","symbol":"NVDA","metric":"return","value":-0.0031710798},{"date":"2025-12-26","symbol":"NVDA","metric":"return","value":0.010179736},{"date":"2025-12-29","symbol":"NVDA","metric":"return","value":-0.0121240749},{"date":"2025-12-30","symbol":"NVDA","metric":"return","value":-0.0036127935},{"date":"2025-12-31","symbol":"NVDA","metric":"return","value":-0.0055454836},{"date":"2026-01-02","symbol":"NVDA","metric":"return","value":0.0126005362},{"date":"2026-01-05","symbol":"NVDA","metric":"return","value":-0.0038655017},{"date":"2026-01-06","symbol":"NVDA","metric":"return","value":-0.0046778652},{"date":"2026-01-07","symbol":"NVDA","metric":"return","value":0.0099871822},{"date":"2026-01-08","symbol":"NVDA","metric":"return","value":-0.0215218656},{"date":"2026-01-09","symbol":"NVDA","metric":"return","value":-0.0009727626},{"date":"2026-01-12","symbol":"NVDA","metric":"return","value":0.0004327599},{"date":"2026-01-13","symbol":"NVDA","metric":"return","value":0.0047042284},{"date":"2026-01-14","symbol":"NVDA","metric":"return","value":-0.0143695172},{"date":"2026-01-15","symbol":"NVDA","metric":"return","value":0.021349787},{"date":"2026-01-16","symbol":"NVDA","metric":"return","value":-0.0043838546},{"date":"2026-01-20","symbol":"NVDA","metric":"return","value":-0.0438167857},{"date":"2026-01-21","symbol":"NVDA","metric":"return","value":0.0294827877},{"date":"2026-01-22","symbol":"NVDA","metric":"return","value":0.0082915121},{"date":"2026-01-23","symbol":"NVDA","metric":"return","value":0.0153105388},{"date":"2026-01-26","symbol":"NVDA","metric":"return","value":-0.0063942026},{"date":"2025-07-31","symbol":"AAPL","metric":"vol20","value":null},{"date":"2025-08-01","symbol":"AAPL","metric":"vol20","value":null},{"date":"2025-08-04","symbol":"AAPL","metric":"vol20","value":0.0210799972},{"date":"2025-08-05","symbol":"AAPL","metric":"vol20","value":0.0156022108},{"date":"2025-08-06","symbol":"AAPL","metric":"vol20","value":0.0318384462},{"date":"2025-08-07","symbol":"AAPL","metric":"vol20","value":0.0296975929},{"date":"2025-08-08","symbol":"AAPL","metric":"vol20","value":0.0292969959},{"date":"2025-08-11","symbol":"AAPL","metric":"vol20","value":0.0284244991},{"date":"2025-08-12","symbol":"AAPL","metric":"vol20","value":0.0263320844},{"date":"2025-08-13","symbol":"AAPL","metric":"vol20","value":0.0246495155},{"date":"2025-08-14","symbol":"AAPL","metric":"vol20","value":0.0237732587},{"date":"2025-08-15","symbol":"AAPL","metric":"vol20","value":0.0231262644},{"date":"2025-08-18","symbol":"AAPL","metric":"vol20","value":0.0223855889},{"date":"2025-08-19","symbol":"AAPL","metric":"vol20","value":0.0216357948},{"date":"2025-08-20","symbol":"AAPL","metric":"vol20","value":0.0221083278},{"date":"2025-08-21","symbol":"AAPL","metric":"vol20","value":0.0215036722},{"date":"2025-08-22","symbol":"AAPL","metric":"vol20","value":0.0208497906},{"date":"2025-08-25","symbol":"AAPL","metric":"vol20","value":0.0202984159},{"date":"2025-08-26","symbol":"AAPL","metric":"vol20","value":0.0197137526},{"date":"2025-08-27","symbol":"AAPL","metric":"vol20","value":0.019158893},{"date":"2025-08-28","symbol":"AAPL","metric":"vol20","value":0.0186614949},{"date":"2025-08-29","symbol":"AAPL","metric":"vol20","value":0.0173087321},{"date":"2025-09-02","symbol":"AAPL","metric":"vol20","value":0.0177442141},{"date":"2025-09-03","symbol":"AAPL","metric":"vol20","value":0.0189724375},{"date":"2025-09-04","symbol":"AAPL","metric":"vol20","value":0.0161089184},{"date":"2025-09-05","symbol":"AAPL","metric":"vol20","value":0.0149679631},{"date":"2025-09-08","symbol":"AAPL","metric":"vol20","value":0.0122250064},{"date":"2025-09-09","symbol":"AAPL","metric":"vol20","value":0.0125946419},{"date":"2025-09-10","symbol":"AAPL","metric":"vol20","value":0.014478458},{"date":"2025-09-11","symbol":"AAPL","metric":"vol20","value":0.0143812273},{"date":"2025-09-12","symbol":"AAPL","metric":"vol20","value":0.0149316116},{"date":"2025-09-15","symbol":"AAPL","metric":"vol20","value":0.0150631274},{"date":"2025-09-16","symbol":"AAPL","metric":"vol20","value":0.0150671567},{"date":"2025-09-17","symbol":"AAPL","metric":"vol20","value":0.0150544964},{"date":"2025-09-18","symbol":"AAPL","metric":"vol20","value":0.0142692225},{"date":"2025-09-19","symbol":"AAPL","metric":"vol20","value":0.0155684321},{"date":"2025-09-22","symbol":"AAPL","metric":"vol20","value":0.0177418124},{"date":"2025-09-23","symbol":"AAPL","metric":"vol20","value":0.0178598706},{"date":"2025-09-24","symbol":"AAPL","metric":"vol20","value":0.0181097338},{"date":"2025-09-25","symbol":"AAPL","metric":"vol20","value":0.0183456145},{"date":"2025-09-26","symbol":"AAPL","metric":"vol20","value":0.0184901925},{"date":"2025-09-29","symbol":"AAPL","metric":"vol20","value":0.0185399808},{"date":"2025-09-30","symbol":"AAPL","metric":"vol20","value":0.0182232027},{"date":"2025-10-01","symbol":"AAPL","metric":"vol20","value":0.0165108643},{"date":"2025-10-02","symbol":"AAPL","metric":"vol20","value":0.0165192997},{"date":"2025-10-03","symbol":"AAPL","metric":"vol20","value":0.0164926212},{"date":"2025-10-06","symbol":"AAPL","metric":"vol20","value":0.0164140515},{"date":"2025-10-07","symbol":"AAPL","metric":"vol20","value":0.0158589488},{"date":"2025-10-08","symbol":"AAPL","metric":"vol20","value":0.0132711511},{"date":"2025-10-09","symbol":"AAPL","metric":"vol20","value":0.0140161519},{"date":"2025-10-10","symbol":"AAPL","metric":"vol20","value":0.016235928},{"date":"2025-10-13","symbol":"AAPL","metric":"vol20","value":0.0161968039},{"date":"2025-10-14","symbol":"AAPL","metric":"vol20","value":0.0161775575},{"date":"2025-10-15","symbol":"AAPL","metric":"vol20","value":0.0162027982},{"date":"2025-10-16","symbol":"AAPL","metric":"vol20","value":0.0162817348},{"date":"2025-10-17","symbol":"AAPL","metric":"vol20","value":0.0152853784},{"date":"2025-10-20","symbol":"AAPL","metric":"vol20","value":0.0147741587},{"date":"2025-10-21","symbol":"AAPL","metric":"vol20","value":0.0146614838},{"date":"2025-10-22","symbol":"AAPL","metric":"vol20","value":0.0150626646},{"date":"2025-10-23","symbol":"AAPL","metric":"vol20","value":0.0145649028},{"date":"2025-10-24","symbol":"AAPL","metric":"vol20","value":0.014721624},{"date":"2025-10-27","symbol":"AAPL","metric":"vol20","value":0.0153939039},{"date":"2025-10-28","symbol":"AAPL","metric":"vol20","value":0.0153944781},{"date":"2025-10-29","symbol":"AAPL","metric":"vol20","value":0.0153943349},{"date":"2025-10-30","symbol":"AAPL","metric":"vol20","value":0.0153909452},{"date":"2025-10-31","symbol":"AAPL","metric":"vol20","value":0.0154604043},{"date":"2025-11-03","symbol":"AAPL","metric":"vol20","value":0.0154534538},{"date":"2025-11-04","symbol":"AAPL","metric":"vol20","value":0.0154358387},{"date":"2025-11-05","symbol":"AAPL","metric":"vol20","value":0.0154215931},{"date":"2025-11-06","symbol":"AAPL","metric":"vol20","value":0.0148660004},{"date":"2025-11-07","symbol":"AAPL","metric":"vol20","value":0.0121434433},{"date":"2025-11-10","symbol":"AAPL","metric":"vol20","value":0.0120827714},{"date":"2025-11-11","symbol":"AAPL","metric":"vol20","value":0.0126373055},{"date":"2025-11-12","symbol":"AAPL","metric":"vol20","value":0.0129085142},{"date":"2025-11-13","symbol":"AAPL","metric":"vol20","value":0.0126830063},{"date":"2025-11-14","symbol":"AAPL","metric":"vol20","value":0.0122924408},{"date":"2025-11-17","symbol":"AAPL","metric":"vol20","value":0.0100956311},{"date":"2025-11-18","symbol":"AAPL","metric":"vol20","value":0.0100962372},{"date":"2025-11-19","symbol":"AAPL","metric":"vol20","value":0.0092390433},{"date":"2025-11-20","symbol":"AAPL","metric":"vol20","value":0.0095156398},{"date":"2025-11-21","symbol":"AAPL","metric":"vol20","value":0.010077339},{"date":"2025-11-24","symbol":"AAPL","metric":"vol20","value":0.0094512291},{"date":"2025-11-25","symbol":"AAPL","metric":"vol20","value":0.0094647134},{"date":"2025-11-26","symbol":"AAPL","metric":"vol20","value":0.0094624118},{"date":"2025-11-28","symbol":"AAPL","metric":"vol20","value":0.009426076},{"date":"2025-12-01","symbol":"AAPL","metric":"vol20","value":0.0098217825},{"date":"2025-12-02","symbol":"AAPL","metric":"vol20","value":0.0098405634},{"date":"2025-12-03","symbol":"AAPL","metric":"vol20","value":0.0101052594},{"date":"2025-12-04","symbol":"AAPL","metric":"vol20","value":0.0106273855},{"date":"2025-12-05","symbol":"AAPL","metric":"vol20","value":0.0107883965},{"date":"2025-12-08","symbol":"AAPL","metric":"vol20","value":0.0107421753},{"date":"2025-12-09","symbol":"AAPL","metric":"vol20","value":0.010764931},{"date":"2025-12-10","symbol":"AAPL","metric":"vol20","value":0.009740394},{"date":"2025-12-11","symbol":"AAPL","metric":"vol20","value":0.0096304914},{"date":"2025-12-12","symbol":"AAPL","metric":"vol20","value":0.0096083899},{"date":"2025-12-15","symbol":"AAPL","metric":"vol20","value":0.0102407369},{"date":"2025-12-16","symbol":"AAPL","metric":"vol20","value":0.0092659434},{"date":"2025-12-17","symbol":"AAPL","metric":"vol20","value":0.0096115959},{"date":"2025-12-18","symbol":"AAPL","metric":"vol20","value":0.0095805735},{"date":"2025-12-19","symbol":"AAPL","metric":"vol20","value":0.0093741273},{"date":"2025-12-22","symbol":"AAPL","metric":"vol20","value":0.0086441229},{"date":"2025-12-23","symbol":"AAPL","metric":"vol20","value":0.0078544144},{"date":"2025-12-24","symbol":"AAPL","metric":"vol20","value":0.0079066038},{"date":"2025-12-26","symbol":"AAPL","metric":"vol20","value":0.0078842909},{"date":"2025-12-29","symbol":"AAPL","metric":"vol20","value":0.007798231},{"date":"2025-12-30","symbol":"AAPL","metric":"vol20","value":0.0068132592},{"date":"2025-12-31","symbol":"AAPL","metric":"vol20","value":0.0061399559},{"date":"2026-01-02","symbol":"AAPL","metric":"vol20","value":0.006047322},{"date":"2026-01-05","symbol":"AAPL","metric":"vol20","value":0.0062017791},{"date":"2026-01-06","symbol":"AAPL","metric":"vol20","value":0.0070993915},{"date":"2026-01-07","symbol":"AAPL","metric":"vol20","value":0.0071779622},{"date":"2026-01-08","symbol":"AAPL","metric":"vol20","value":0.007186076},{"date":"2026-01-09","symbol":"AAPL","metric":"vol20","value":0.0069519778},{"date":"2026-01-12","symbol":"AAPL","metric":"vol20","value":0.0071238425},{"date":"2026-01-13","symbol":"AAPL","metric":"vol20","value":0.0072070174},{"date":"2026-01-14","symbol":"AAPL","metric":"vol20","value":0.0066584659},{"date":"2026-01-15","symbol":"AAPL","metric":"vol20","value":0.0066323481},{"date":"2026-01-16","symbol":"AAPL","metric":"vol20","value":0.0066489542},{"date":"2026-01-20","symbol":"AAPL","metric":"vol20","value":0.0095923262},{"date":"2026-01-21","symbol":"AAPL","metric":"vol20","value":0.0095088839},{"date":"2026-01-22","symbol":"AAPL","metric":"vol20","value":0.0095860108},{"date":"2026-01-23","symbol":"AAPL","metric":"vol20","value":0.0093590396},{"date":"2026-01-26","symbol":"AAPL","metric":"vol20","value":0.0119528553},{"date":"2025-07-31","symbol":"AMZN","metric":"vol20","value":null},{"date":"2025-08-01","symbol":"AMZN","metric":"vol20","value":null},{"date":"2025-08-04","symbol":"AMZN","metric":"vol20","value":0.0482676594},{"date":"2025-08-05","symbol":"AMZN","metric":"vol20","value":0.0480120663},{"date":"2025-08-06","symbol":"AMZN","metric":"vol20","value":0.0522594415},{"date":"2025-08-07","symbol":"AMZN","metric":"vol20","value":0.0457843664},{"date":"2025-08-08","symbol":"AMZN","metric":"vol20","value":0.041042654},{"date":"2025-08-11","symbol":"AMZN","metric":"vol20","value":0.0374700306},{"date":"2025-08-12","symbol":"AMZN","metric":"vol20","value":0.0348100356},{"date":"2025-08-13","symbol":"AMZN","metric":"vol20","value":0.0332586331},{"date":"2025-08-14","symbol":"AMZN","metric":"vol20","value":0.0330172735},{"date":"2025-08-15","symbol":"AMZN","metric":"vol20","value":0.0313245489},{"date":"2025-08-18","symbol":"AMZN","metric":"vol20","value":0.0298772045},{"date":"2025-08-19","symbol":"AMZN","metric":"vol20","value":0.0288872834},{"date":"2025-08-20","symbol":"AMZN","metric":"vol20","value":0.0281143876},{"date":"2025-08-21","symbol":"AMZN","metric":"vol20","value":0.0271286301},{"date":"2025-08-22","symbol":"AMZN","metric":"vol20","value":0.027571114},{"date":"2025-08-25","symbol":"AMZN","metric":"vol20","value":0.026704735},{"date":"2025-08-26","symbol":"AMZN","metric":"vol20","value":0.0259301062},{"date":"2025-08-27","symbol":"AMZN","metric":"vol20","value":0.0252074985},{"date":"2025-08-28","symbol":"AMZN","metric":"vol20","value":0.0246730342},{"date":"2025-08-29","symbol":"AMZN","metric":"vol20","value":0.0156152879},{"date":"2025-09-02","symbol":"AMZN","metric":"vol20","value":0.015711475},{"date":"2025-09-03","symbol":"AMZN","metric":"vol20","value":0.0156329023},{"date":"2025-09-04","symbol":"AMZN","metric":"vol20","value":0.0159955681},{"date":"2025-09-05","symbol":"AMZN","metric":"vol20","value":0.0164520388},{"date":"2025-09-08","symbol":"AMZN","metric":"vol20","value":0.0166687198},{"date":"2025-09-09","symbol":"AMZN","metric":"vol20","value":0.0165935691},{"date":"2025-09-10","symbol":"AMZN","metric":"vol20","value":0.0185464789},{"date":"2025-09-11","symbol":"AMZN","metric":"vol20","value":0.0183499306},{"date":"2025-09-12","symbol":"AMZN","metric":"vol20","value":0.017279889},{"date":"2025-09-15","symbol":"AMZN","metric":"vol20","value":0.0175969054},{"date":"2025-09-16","symbol":"AMZN","metric":"vol20","value":0.0177688015},{"date":"2025-09-17","symbol":"AMZN","metric":"vol20","value":0.0175815291},{"date":"2025-09-18","symbol":"AMZN","metric":"vol20","value":0.0170006683},{"date":"2025-09-19","symbol":"AMZN","metric":"vol20","value":0.0168365287},{"date":"2025-09-22","symbol":"AMZN","metric":"vol20","value":0.0158921011},{"date":"2025-09-23","symbol":"AMZN","metric":"vol20","value":0.0172666196},{"date":"2025-09-24","symbol":"AMZN","metric":"vol20","value":0.0172293111},{"date":"2025-09-25","symbol":"AMZN","metric":"vol20","value":0.0172888387},{"date":"2025-09-26","symbol":"AMZN","metric":"vol20","value":0.0171706697},{"date":"2025-09-29","symbol":"AMZN","metric":"vol20","value":0.0172886659},{"date":"2025-09-30","symbol":"AMZN","metric":"vol20","value":0.0171239982},{"date":"2025-10-01","symbol":"AMZN","metric":"vol20","value":0.0171536225},{"date":"2025-10-02","symbol":"AMZN","metric":"vol20","value":0.013922472},{"date":"2025-10-03","symbol":"AMZN","metric":"vol20","value":0.013874161},{"date":"2025-10-06","symbol":"AMZN","metric":"vol20","value":0.0134109831},{"date":"2025-10-07","symbol":"AMZN","metric":"vol20","value":0.0131554197},{"date":"2025-10-08","symbol":"AMZN","metric":"vol20","value":0.0118051},{"date":"2025-10-09","symbol":"AMZN","metric":"vol20","value":0.0121160109},{"date":"2025-10-10","symbol":"AMZN","metric":"vol20","value":0.0163788617},{"date":"2025-10-13","symbol":"AMZN","metric":"vol20","value":0.0165372881},{"date":"2025-10-14","symbol":"AMZN","metric":"vol20","value":0.0165031748},{"date":"2025-10-15","symbol":"AMZN","metric":"vol20","value":0.0164301087},{"date":"2025-10-16","symbol":"AMZN","metric":"vol20","value":0.0164285099},{"date":"2025-10-17","symbol":"AMZN","metric":"vol20","value":0.0164030394},{"date":"2025-10-20","symbol":"AMZN","metric":"vol20","value":0.0167104552},{"date":"2025-10-21","symbol":"AMZN","metric":"vol20","value":0.0164598707},{"date":"2025-10-22","symbol":"AMZN","metric":"vol20","value":0.0169845074},{"date":"2025-10-23","symbol":"AMZN","metric":"vol20","value":0.0171536773},{"date":"2025-10-24","symbol":"AMZN","metric":"vol20","value":0.0173524797},{"date":"2025-10-27","symbol":"AMZN","metric":"vol20","value":0.0173977552},{"date":"2025-10-28","symbol":"AMZN","metric":"vol20","value":0.0172266826},{"date":"2025-10-29","symbol":"AMZN","metric":"vol20","value":0.0172248622},{"date":"2025-10-30","symbol":"AMZN","metric":"vol20","value":0.0188053793},{"date":"2025-10-31","symbol":"AMZN","metric":"vol20","value":0.0281757227},{"date":"2025-11-03","symbol":"AMZN","metric":"vol20","value":0.0292042838},{"date":"2025-11-04","symbol":"AMZN","metric":"vol20","value":0.0297667525},{"date":"2025-11-05","symbol":"AMZN","metric":"vol20","value":0.0296916869},{"date":"2025-11-06","symbol":"AMZN","metric":"vol20","value":0.0306226465},{"date":"2025-11-07","symbol":"AMZN","metric":"vol20","value":0.0279019427},{"date":"2025-11-10","symbol":"AMZN","metric":"vol20","value":0.02788693},{"date":"2025-11-11","symbol":"AMZN","metric":"vol20","value":0.0273706034},{"date":"2025-11-12","symbol":"AMZN","metric":"vol20","value":0.0279370629},{"date":"2025-11-13","symbol":"AMZN","metric":"vol20","value":0.0288415249},{"date":"2025-11-14","symbol":"AMZN","metric":"vol20","value":0.0289895191},{"date":"2025-11-17","symbol":"AMZN","metric":"vol20","value":0.0290088179},{"date":"2025-11-18","symbol":"AMZN","metric":"vol20","value":0.0304496412},{"date":"2025-11-19","symbol":"AMZN","metric":"vol20","value":0.0301228631},{"date":"2025-11-20","symbol":"AMZN","metric":"vol20","value":0.0305168262},{"date":"2025-11-21","symbol":"AMZN","metric":"vol20","value":0.0305771262},{"date":"2025-11-24","symbol":"AMZN","metric":"vol20","value":0.0309967507},{"date":"2025-11-25","symbol":"AMZN","metric":"vol20","value":0.0310979791},{"date":"2025-11-26","symbol":"AMZN","metric":"vol20","value":0.0310886475},{"date":"2025-11-28","symbol":"AMZN","metric":"vol20","value":0.0303391102},{"date":"2025-12-01","symbol":"AMZN","metric":"vol20","value":0.0210015925},{"date":"2025-12-02","symbol":"AMZN","metric":"vol20","value":0.0185862375},{"date":"2025-12-03","symbol":"AMZN","metric":"vol20","value":0.0183096925},{"date":"2025-12-04","symbol":"AMZN","metric":"vol20","value":0.0183844147},{"date":"2025-12-05","symbol":"AMZN","metric":"vol20","value":0.0174981113},{"date":"2025-12-08","symbol":"AMZN","metric":"vol20","value":0.0174875509},{"date":"2025-12-09","symbol":"AMZN","metric":"vol20","value":0.0169730214},{"date":"2025-12-10","symbol":"AMZN","metric":"vol20","value":0.0175616445},{"date":"2025-12-11","symbol":"AMZN","metric":"vol20","value":0.017163449},{"date":"2025-12-12","symbol":"AMZN","metric":"vol20","value":0.0165838061},{"date":"2025-12-15","symbol":"AMZN","metric":"vol20","value":0.0167310342},{"date":"2025-12-16","symbol":"AMZN","metric":"vol20","value":0.0166937712},{"date":"2025-12-17","symbol":"AMZN","metric":"vol20","value":0.0134836239},{"date":"2025-12-18","symbol":"AMZN","metric":"vol20","value":0.0146000973},{"date":"2025-12-19","symbol":"AMZN","metric":"vol20","value":0.0132633545},{"date":"2025-12-22","symbol":"AMZN","metric":"vol20","value":0.0128682652},{"date":"2025-12-23","symbol":"AMZN","metric":"vol20","value":0.0121332302},{"date":"2025-12-24","symbol":"AMZN","metric":"vol20","value":0.0117015902},{"date":"2025-12-26","symbol":"AMZN","metric":"vol20","value":0.011682132},{"date":"2025-12-29","symbol":"AMZN","metric":"vol20","value":0.010989649},{"date":"2025-12-30","symbol":"AMZN","metric":"vol20","value":0.0109790176},{"date":"2025-12-31","symbol":"AMZN","metric":"vol20","value":0.0110735069},{"date":"2026-01-02","symbol":"AMZN","metric":"vol20","value":0.0116642511},{"date":"2026-01-05","symbol":"AMZN","metric":"vol20","value":0.0130543862},{"date":"2026-01-06","symbol":"AMZN","metric":"vol20","value":0.0149808669},{"date":"2026-01-07","symbol":"AMZN","metric":"vol20","value":0.0146128783},{"date":"2026-01-08","symbol":"AMZN","metric":"vol20","value":0.0150635008},{"date":"2026-01-09","symbol":"AMZN","metric":"vol20","value":0.014754214},{"date":"2026-01-12","symbol":"AMZN","metric":"vol20","value":0.0146691819},{"date":"2026-01-13","symbol":"AMZN","metric":"vol20","value":0.0145185163},{"date":"2026-01-14","symbol":"AMZN","metric":"vol20","value":0.0152230596},{"date":"2026-01-15","symbol":"AMZN","metric":"vol20","value":0.0152215227},{"date":"2026-01-16","symbol":"AMZN","metric":"vol20","value":0.0150632084},{"date":"2026-01-20","symbol":"AMZN","metric":"vol20","value":0.0164562783},{"date":"2026-01-21","symbol":"AMZN","metric":"vol20","value":0.0164524576},{"date":"2026-01-22","symbol":"AMZN","metric":"vol20","value":0.0166574689},{"date":"2026-01-23","symbol":"AMZN","metric":"vol20","value":0.0168867695},{"date":"2026-01-26","symbol":"AMZN","metric":"vol20","value":0.0169195857},{"date":"2025-07-31","symbol":"GOOGL","metric":"vol20","value":null},{"date":"2025-08-01","symbol":"GOOGL","metric":"vol20","value":null},{"date":"2025-08-04","symbol":"GOOGL","metric":"vol20","value":0.0322782869},{"date":"2025-08-05","symbol":"GOOGL","metric":"vol20","value":0.0235889568},{"date":"2025-08-06","symbol":"GOOGL","metric":"vol20","value":0.0192953892},{"date":"2025-08-07","symbol":"GOOGL","metric":"vol20","value":0.0167779136},{"date":"2025-08-08","symbol":"GOOGL","metric":"vol20","value":0.0170905009},{"date":"2025-08-11","symbol":"GOOGL","metric":"vol20","value":0.0160812033},{"date":"2025-08-12","symbol":"GOOGL","metric":"vol20","value":0.0149890206},{"date":"2025-08-13","symbol":"GOOGL","metric":"vol20","value":0.0147944803},{"date":"2025-08-14","symbol":"GOOGL","metric":"vol20","value":0.0139514895},{"date":"2025-08-15","symbol":"GOOGL","metric":"vol20","value":0.0132390562},{"date":"2025-08-18","symbol":"GOOGL","metric":"vol20","value":0.0128084133},{"date":"2025-08-19","symbol":"GOOGL","metric":"vol20","value":0.0129039075},{"date":"2025-08-20","symbol":"GOOGL","metric":"vol20","value":0.0130335513},{"date":"2025-08-21","symbol":"GOOGL","metric":"vol20","value":0.0125605025},{"date":"2025-08-22","symbol":"GOOGL","metric":"vol20","value":0.014134017},{"date":"2025-08-25","symbol":"GOOGL","metric":"vol20","value":0.0137931672},{"date":"2025-08-26","symbol":"GOOGL","metric":"vol20","value":0.0136514601},{"date":"2025-08-27","symbol":"GOOGL","metric":"vol20","value":0.0132812733},{"date":"2025-08-28","symbol":"GOOGL","metric":"vol20","value":0.0134030345},{"date":"2025-08-29","symbol":"GOOGL","metric":"vol20","value":0.0126014391},{"date":"2025-09-02","symbol":"GOOGL","metric":"vol20","value":0.0114349177},{"date":"2025-09-03","symbol":"GOOGL","metric":"vol20","value":0.0225152312},{"date":"2025-09-04","symbol":"GOOGL","metric":"vol20","value":0.0225158907},{"date":"2025-09-05","symbol":"GOOGL","metric":"vol20","value":0.0224704649},{"date":"2025-09-08","symbol":"GOOGL","metric":"vol20","value":0.0223148275},{"date":"2025-09-09","symbol":"GOOGL","metric":"vol20","value":0.0224631315},{"date":"2025-09-10","symbol":"GOOGL","metric":"vol20","value":0.0225866561},{"date":"2025-09-11","symbol":"GOOGL","metric":"vol20","value":0.0223205555},{"date":"2025-09-12","symbol":"GOOGL","metric":"vol20","value":0.0223611394},{"date":"2025-09-15","symbol":"GOOGL","metric":"vol20","value":0.0237337322},{"date":"2025-09-16","symbol":"GOOGL","metric":"vol20","value":0.0237301732},{"date":"2025-09-17","symbol":"GOOGL","metric":"vol20","value":0.0236035631},{"date":"2025-09-18","symbol":"GOOGL","metric":"vol20","value":0.0230226143},{"date":"2025-09-19","symbol":"GOOGL","metric":"vol20","value":0.0229079578},{"date":"2025-09-22","symbol":"GOOGL","metric":"vol20","value":0.0229020378},{"date":"2025-09-23","symbol":"GOOGL","metric":"vol20","value":0.0231085978},{"date":"2025-09-24","symbol":"GOOGL","metric":"vol20","value":0.0236690912},{"date":"2025-09-25","symbol":"GOOGL","metric":"vol20","value":0.0238408084},{"date":"2025-09-26","symbol":"GOOGL","metric":"vol20","value":0.0237222244},{"date":"2025-09-29","symbol":"GOOGL","metric":"vol20","value":0.0240633289},{"date":"2025-09-30","symbol":"GOOGL","metric":"vol20","value":0.0239662842},{"date":"2025-10-01","symbol":"GOOGL","metric":"vol20","value":0.0135699197},{"date":"2025-10-02","symbol":"GOOGL","metric":"vol20","value":0.0135375603},{"date":"2025-10-03","symbol":"GOOGL","metric":"vol20","value":0.0134094913},{"date":"2025-10-06","symbol":"GOOGL","metric":"vol20","value":0.0139503035},{"date":"2025-10-07","symbol":"GOOGL","metric":"vol20","value":0.0139213257},{"date":"2025-10-08","symbol":"GOOGL","metric":"vol20","value":0.0139682413},{"date":"2025-10-09","symbol":"GOOGL","metric":"vol20","value":0.0142702519},{"date":"2025-10-10","symbol":"GOOGL","metric":"vol20","value":0.0150029289},{"date":"2025-10-13","symbol":"GOOGL","metric":"vol20","value":0.0130897981},{"date":"2025-10-14","symbol":"GOOGL","metric":"vol20","value":0.0131758026},{"date":"2025-10-15","symbol":"GOOGL","metric":"vol20","value":0.0141299547},{"date":"2025-10-16","symbol":"GOOGL","metric":"vol20","value":0.0139529071},{"date":"2025-10-17","symbol":"GOOGL","metric":"vol20","value":0.0138375785},{"date":"2025-10-20","symbol":"GOOGL","metric":"vol20","value":0.0139812754},{"date":"2025-10-21","symbol":"GOOGL","metric":"vol20","value":0.015008882},{"date":"2025-10-22","symbol":"GOOGL","metric":"vol20","value":0.0144387743},{"date":"2025-10-23","symbol":"GOOGL","metric":"vol20","value":0.0143877614},{"date":"2025-10-24","symbol":"GOOGL","metric":"vol20","value":0.015477749},{"date":"2025-10-27","symbol":"GOOGL","metric":"vol20","value":0.0168307087},{"date":"2025-10-28","symbol":"GOOGL","metric":"vol20","value":0.016918989},{"date":"2025-10-29","symbol":"GOOGL","metric":"vol20","value":0.0175932245},{"date":"2025-10-30","symbol":"GOOGL","metric":"vol20","value":0.0180967795},{"date":"2025-10-31","symbol":"GOOGL","metric":"vol20","value":0.0180883447},{"date":"2025-11-03","symbol":"GOOGL","metric":"vol20","value":0.0178078062},{"date":"2025-11-04","symbol":"GOOGL","metric":"vol20","value":0.0180494603},{"date":"2025-11-05","symbol":"GOOGL","metric":"vol20","value":0.0182920891},{"date":"2025-11-06","symbol":"GOOGL","metric":"vol20","value":0.0177279976},{"date":"2025-11-07","symbol":"GOOGL","metric":"vol20","value":0.0177504871},{"date":"2025-11-10","symbol":"GOOGL","metric":"vol20","value":0.0184243925},{"date":"2025-11-11","symbol":"GOOGL","metric":"vol20","value":0.0184377098},{"date":"2025-11-12","symbol":"GOOGL","metric":"vol20","value":0.0189075921},{"date":"2025-11-13","symbol":"GOOGL","metric":"vol20","value":0.0204690551},{"date":"2025-11-14","symbol":"GOOGL","metric":"vol20","value":0.0206688924},{"date":"2025-11-17","symbol":"GOOGL","metric":"vol20","value":0.0214440176},{"date":"2025-11-18","symbol":"GOOGL","metric":"vol20","value":0.0204259377},{"date":"2025-11-19","symbol":"GOOGL","metric":"vol20","value":0.0210814678},{"date":"2025-11-20","symbol":"GOOGL","metric":"vol20","value":0.0215166273},{"date":"2025-11-21","symbol":"GOOGL","metric":"vol20","value":0.0219935946},{"date":"2025-11-24","symbol":"GOOGL","metric":"vol20","value":0.0245460823},{"date":"2025-11-25","symbol":"GOOGL","metric":"vol20","value":0.0243115238},{"date":"2025-11-26","symbol":"GOOGL","metric":"vol20","value":0.0243942137},{"date":"2025-11-28","symbol":"GOOGL","metric":"vol20","value":0.0240964447},{"date":"2025-12-01","symbol":"GOOGL","metric":"vol20","value":0.0246032987},{"date":"2025-12-02","symbol":"GOOGL","metric":"vol20","value":0.0246014979},{"date":"2025-12-03","symbol":"GOOGL","metric":"vol20","value":0.02376642},{"date":"2025-12-04","symbol":"GOOGL","metric":"vol20","value":0.0235989006},{"date":"2025-12-05","symbol":"GOOGL","metric":"vol20","value":0.0236091061},{"date":"2025-12-08","symbol":"GOOGL","metric":"vol20","value":0.0237397353},{"date":"2025-12-09","symbol":"GOOGL","metric":"vol20","value":0.0223776043},{"date":"2025-12-10","symbol":"GOOGL","metric":"vol20","value":0.0224064892},{"date":"2025-12-11","symbol":"GOOGL","metric":"vol20","value":0.022896906},{"date":"2025-12-12","symbol":"GOOGL","metric":"vol20","value":0.0218514124},{"date":"2025-12-15","symbol":"GOOGL","metric":"vol20","value":0.0217349522},{"date":"2025-12-16","symbol":"GOOGL","metric":"vol20","value":0.0210082233},{"date":"2025-12-17","symbol":"GOOGL","metric":"vol20","value":0.0224748879},{"date":"2025-12-18","symbol":"GOOGL","metric":"vol20","value":0.0219038879},{"date":"2025-12-19","symbol":"GOOGL","metric":"vol20","value":0.0218696632},{"date":"2025-12-22","symbol":"GOOGL","metric":"vol20","value":0.0205882904},{"date":"2025-12-23","symbol":"GOOGL","metric":"vol20","value":0.0151309774},{"date":"2025-12-24","symbol":"GOOGL","metric":"vol20","value":0.0146678494},{"date":"2025-12-26","symbol":"GOOGL","metric":"vol20","value":0.0144993805},{"date":"2025-12-29","symbol":"GOOGL","metric":"vol20","value":0.0144966648},{"date":"2025-12-30","symbol":"GOOGL","metric":"vol20","value":0.0140244094},{"date":"2025-12-31","symbol":"GOOGL","metric":"vol20","value":0.0140183553},{"date":"2026-01-02","symbol":"GOOGL","metric":"vol20","value":0.0138216726},{"date":"2026-01-05","symbol":"GOOGL","metric":"vol20","value":0.0137960804},{"date":"2026-01-06","symbol":"GOOGL","metric":"vol20","value":0.0135988672},{"date":"2026-01-07","symbol":"GOOGL","metric":"vol20","value":0.013691827},{"date":"2026-01-08","symbol":"GOOGL","metric":"vol20","value":0.0136931127},{"date":"2026-01-09","symbol":"GOOGL","metric":"vol20","value":0.0136849627},{"date":"2026-01-12","symbol":"GOOGL","metric":"vol20","value":0.0123857957},{"date":"2026-01-13","symbol":"GOOGL","metric":"vol20","value":0.0121462907},{"date":"2026-01-14","symbol":"GOOGL","metric":"vol20","value":0.012063245},{"date":"2026-01-15","symbol":"GOOGL","metric":"vol20","value":0.0122504885},{"date":"2026-01-16","symbol":"GOOGL","metric":"vol20","value":0.0093520836},{"date":"2026-01-20","symbol":"GOOGL","metric":"vol20","value":0.0108783424},{"date":"2026-01-21","symbol":"GOOGL","metric":"vol20","value":0.0111717371},{"date":"2026-01-22","symbol":"GOOGL","metric":"vol20","value":0.0111330685},{"date":"2026-01-23","symbol":"GOOGL","metric":"vol20","value":0.01105927},{"date":"2026-01-26","symbol":"GOOGL","metric":"vol20","value":0.0114672233},{"date":"2025-07-31","symbol":"META","metric":"vol20","value":null},{"date":"2025-08-01","symbol":"META","metric":"vol20","value":null},{"date":"2025-08-04","symbol":"META","metric":"vol20","value":0.0462764953},{"date":"2025-08-05","symbol":"META","metric":"vol20","value":0.0345214877},{"date":"2025-08-06","symbol":"META","metric":"vol20","value":0.0291808028},{"date":"2025-08-07","symbol":"META","metric":"vol20","value":0.0259317489},{"date":"2025-08-08","symbol":"META","metric":"vol20","value":0.0237528213},{"date":"2025-08-11","symbol":"META","metric":"vol20","value":0.0217305562},{"date":"2025-08-12","symbol":"META","metric":"vol20","value":0.023204552},{"date":"2025-08-13","symbol":"META","metric":"vol20","value":0.0223073609},{"date":"2025-08-14","symbol":"META","metric":"vol20","value":0.0210366597},{"date":"2025-08-15","symbol":"META","metric":"vol20","value":0.0199729978},{"date":"2025-08-18","symbol":"META","metric":"vol20","value":0.0202941037},{"date":"2025-08-19","symbol":"META","metric":"vol20","value":0.0202250515},{"date":"2025-08-20","symbol":"META","metric":"vol20","value":0.0194478293},{"date":"2025-08-21","symbol":"META","metric":"vol20","value":0.0188934235},{"date":"2025-08-22","symbol":"META","metric":"vol20","value":0.0192207178},{"date":"2025-08-25","symbol":"META","metric":"vol20","value":0.0186109978},{"date":"2025-08-26","symbol":"META","metric":"vol20","value":0.0180645683},{"date":"2025-08-27","symbol":"META","metric":"vol20","value":0.0176433159},{"date":"2025-08-28","symbol":"META","metric":"vol20","value":0.0172368126},{"date":"2025-08-29","symbol":"META","metric":"vol20","value":0.0162656926},{"date":"2025-09-02","symbol":"META","metric":"vol20","value":0.0139255428},{"date":"2025-09-03","symbol":"META","metric":"vol20","value":0.0135682392},{"date":"2025-09-04","symbol":"META","metric":"vol20","value":0.013832043},{"date":"2025-09-05","symbol":"META","metric":"vol20","value":0.0136185516},{"date":"2025-09-08","symbol":"META","metric":"vol20","value":0.013401372},{"date":"2025-09-09","symbol":"META","metric":"vol20","value":0.0140130081},{"date":"2025-09-10","symbol":"META","metric":"vol20","value":0.0124512631},{"date":"2025-09-11","symbol":"META","metric":"vol20","value":0.0122197531},{"date":"2025-09-12","symbol":"META","metric":"vol20","value":0.0123159209},{"date":"2025-09-15","symbol":"META","metric":"vol20","value":0.0126385538},{"date":"2025-09-16","symbol":"META","metric":"vol20","value":0.0123226465},{"date":"2025-09-17","symbol":"META","metric":"vol20","value":0.0113159394},{"date":"2025-09-18","symbol":"META","metric":"vol20","value":0.011240027},{"date":"2025-09-19","symbol":"META","metric":"vol20","value":0.0108312544},{"date":"2025-09-22","symbol":"META","metric":"vol20","value":0.0106935386},{"date":"2025-09-23","symbol":"META","metric":"vol20","value":0.011103695},{"date":"2025-09-24","symbol":"META","metric":"vol20","value":0.0112050509},{"date":"2025-09-25","symbol":"META","metric":"vol20","value":0.0115836552},{"date":"2025-09-26","symbol":"META","metric":"vol20","value":0.0116298792},{"date":"2025-09-29","symbol":"META","metric":"vol20","value":0.0109950054},{"date":"2025-09-30","symbol":"META","metric":"vol20","value":0.0112945774},{"date":"2025-10-01","symbol":"META","metric":"vol20","value":0.0124050394},{"date":"2025-10-02","symbol":"META","metric":"vol20","value":0.0122542791},{"date":"2025-10-03","symbol":"META","metric":"vol20","value":0.0130347989},{"date":"2025-10-06","symbol":"META","metric":"vol20","value":0.0132140038},{"date":"2025-10-07","symbol":"META","metric":"vol20","value":0.012330099},{"date":"2025-10-08","symbol":"META","metric":"vol20","value":0.0120339287},{"date":"2025-10-09","symbol":"META","metric":"vol20","value":0.0131821159},{"date":"2025-10-10","symbol":"META","metric":"vol20","value":0.0154691922},{"date":"2025-10-13","symbol":"META","metric":"vol20","value":0.015620828},{"date":"2025-10-14","symbol":"META","metric":"vol20","value":0.0148015384},{"date":"2025-10-15","symbol":"META","metric":"vol20","value":0.0152912402},{"date":"2025-10-16","symbol":"META","metric":"vol20","value":0.0151431124},{"date":"2025-10-17","symbol":"META","metric":"vol20","value":0.0153466392},{"date":"2025-10-20","symbol":"META","metric":"vol20","value":0.0160386619},{"date":"2025-10-21","symbol":"META","metric":"vol20","value":0.0158545538},{"date":"2025-10-22","symbol":"META","metric":"vol20","value":0.0157390537},{"date":"2025-10-23","symbol":"META","metric":"vol20","value":0.0154082563},{"date":"2025-10-24","symbol":"META","metric":"vol20","value":0.0154124278},{"date":"2025-10-27","symbol":"META","metric":"vol20","value":0.0158802807},{"date":"2025-10-28","symbol":"META","metric":"vol20","value":0.0155945787},{"date":"2025-10-29","symbol":"META","metric":"vol20","value":0.0145015587},{"date":"2025-10-30","symbol":"META","metric":"vol20","value":0.0294460469},{"date":"2025-10-31","symbol":"META","metric":"vol20","value":0.0296142282},{"date":"2025-11-03","symbol":"META","metric":"vol20","value":0.0296097942},{"date":"2025-11-04","symbol":"META","metric":"vol20","value":0.0297071036},{"date":"2025-11-05","symbol":"META","metric":"vol20","value":0.0299066636},{"date":"2025-11-06","symbol":"META","metric":"vol20","value":0.0295331664},{"date":"2025-11-07","symbol":"META","metric":"vol20","value":0.0287543725},{"date":"2025-11-10","symbol":"META","metric":"vol20","value":0.0288102594},{"date":"2025-11-11","symbol":"META","metric":"vol20","value":0.0287973146},{"date":"2025-11-12","symbol":"META","metric":"vol20","value":0.0289041763},{"date":"2025-11-13","symbol":"META","metric":"vol20","value":0.0289772552},{"date":"2025-11-14","symbol":"META","metric":"vol20","value":0.0288329461},{"date":"2025-11-17","symbol":"META","metric":"vol20","value":0.0280255417},{"date":"2025-11-18","symbol":"META","metric":"vol20","value":0.0279157098},{"date":"2025-11-19","symbol":"META","metric":"vol20","value":0.0278206228},{"date":"2025-11-20","symbol":"META","metric":"vol20","value":0.0277684346},{"date":"2025-11-21","symbol":"META","metric":"vol20","value":0.0278598931},{"date":"2025-11-24","symbol":"META","metric":"vol20","value":0.0287996977},{"date":"2025-11-25","symbol":"META","metric":"vol20","value":0.0306363365},{"date":"2025-11-26","symbol":"META","metric":"vol20","value":0.0305905932},{"date":"2025-11-28","symbol":"META","metric":"vol20","value":0.0187882874},{"date":"2025-12-01","symbol":"META","metric":"vol20","value":0.0179382583},{"date":"2025-12-02","symbol":"META","metric":"vol20","value":0.0176622796},{"date":"2025-12-03","symbol":"META","metric":"vol20","value":0.017451605},{"date":"2025-12-04","symbol":"META","metric":"vol20","value":0.0187869615},{"date":"2025-12-05","symbol":"META","metric":"vol20","value":0.0178042367},{"date":"2025-12-08","symbol":"META","metric":"vol20","value":0.0180849421},{"date":"2025-12-09","symbol":"META","metric":"vol20","value":0.01828051},{"date":"2025-12-10","symbol":"META","metric":"vol20","value":0.018374015},{"date":"2025-12-11","symbol":"META","metric":"vol20","value":0.0168847062},{"date":"2025-12-12","symbol":"META","metric":"vol20","value":0.0172855299},{"date":"2025-12-15","symbol":"META","metric":"vol20","value":0.017276475},{"date":"2025-12-16","symbol":"META","metric":"vol20","value":0.0170640745},{"date":"2025-12-17","symbol":"META","metric":"vol20","value":0.0172537803},{"date":"2025-12-18","symbol":"META","metric":"vol20","value":0.0172663904},{"date":"2025-12-19","symbol":"META","metric":"vol20","value":0.0174893775},{"date":"2025-12-22","symbol":"META","metric":"vol20","value":0.017479422},{"date":"2025-12-23","symbol":"META","metric":"vol20","value":0.0163685681},{"date":"2025-12-24","symbol":"META","metric":"vol20","value":0.0143407198},{"date":"2025-12-26","symbol":"META","metric":"vol20","value":0.0144051484},{"date":"2025-12-29","symbol":"META","metric":"vol20","value":0.0137236462},{"date":"2025-12-30","symbol":"META","metric":"vol20","value":0.0136011026},{"date":"2025-12-31","symbol":"META","metric":"vol20","value":0.0136817641},{"date":"2026-01-02","symbol":"META","metric":"vol20","value":0.0138486716},{"date":"2026-01-05","symbol":"META","metric":"vol20","value":0.0118169264},{"date":"2026-01-06","symbol":"META","metric":"vol20","value":0.0110578412},{"date":"2026-01-07","symbol":"META","metric":"vol20","value":0.0115514816},{"date":"2026-01-08","symbol":"META","metric":"vol20","value":0.0111334748},{"date":"2026-01-09","symbol":"META","metric":"vol20","value":0.0111763679},{"date":"2026-01-12","symbol":"META","metric":"vol20","value":0.0117821827},{"date":"2026-01-13","symbol":"META","metric":"vol20","value":0.0120298502},{"date":"2026-01-14","symbol":"META","metric":"vol20","value":0.0130190558},{"date":"2026-01-15","symbol":"META","metric":"vol20","value":0.0126479781},{"date":"2026-01-16","symbol":"META","metric":"vol20","value":0.0124782265},{"date":"2026-01-20","symbol":"META","metric":"vol20","value":0.0120663856},{"date":"2026-01-21","symbol":"META","metric":"vol20","value":0.0127680432},{"date":"2026-01-22","symbol":"META","metric":"vol20","value":0.0185118023},{"date":"2026-01-23","symbol":"META","metric":"vol20","value":0.0189093559},{"date":"2026-01-26","symbol":"META","metric":"vol20","value":0.0194673033},{"date":"2025-07-31","symbol":"MSFT","metric":"vol20","value":null},{"date":"2025-08-01","symbol":"MSFT","metric":"vol20","value":null},{"date":"2025-08-04","symbol":"MSFT","metric":"vol20","value":0.028005915},{"date":"2025-08-05","symbol":"MSFT","metric":"vol20","value":0.0220822206},{"date":"2025-08-06","symbol":"MSFT","metric":"vol20","value":0.0180545513},{"date":"2025-08-07","symbol":"MSFT","metric":"vol20","value":0.015732913},{"date":"2025-08-08","symbol":"MSFT","metric":"vol20","value":0.0143597626},{"date":"2025-08-11","symbol":"MSFT","metric":"vol20","value":0.0131578234},{"date":"2025-08-12","symbol":"MSFT","metric":"vol20","value":0.0136480769},{"date":"2025-08-13","symbol":"MSFT","metric":"vol20","value":0.0137652656},{"date":"2025-08-14","symbol":"MSFT","metric":"vol20","value":0.0131300398},{"date":"2025-08-15","symbol":"MSFT","metric":"vol20","value":0.0124774293},{"date":"2025-08-18","symbol":"MSFT","metric":"vol20","value":0.0119440179},{"date":"2025-08-19","symbol":"MSFT","metric":"vol20","value":0.0118834922},{"date":"2025-08-20","symbol":"MSFT","metric":"vol20","value":0.0114805737},{"date":"2025-08-21","symbol":"MSFT","metric":"vol20","value":0.0110811942},{"date":"2025-08-22","symbol":"MSFT","metric":"vol20","value":0.0109661582},{"date":"2025-08-25","symbol":"MSFT","metric":"vol20","value":0.0106404738},{"date":"2025-08-26","symbol":"MSFT","metric":"vol20","value":0.0103269806},{"date":"2025-08-27","symbol":"MSFT","metric":"vol20","value":0.0104433467},{"date":"2025-08-28","symbol":"MSFT","metric":"vol20","value":0.0103328918},{"date":"2025-08-29","symbol":"MSFT","metric":"vol20","value":0.0097227667},{"date":"2025-09-02","symbol":"MSFT","metric":"vol20","value":0.0079861521},{"date":"2025-09-03","symbol":"MSFT","metric":"vol20","value":0.0075013778},{"date":"2025-09-04","symbol":"MSFT","metric":"vol20","value":0.007627005},{"date":"2025-09-05","symbol":"MSFT","metric":"vol20","value":0.0092496268},{"date":"2025-09-08","symbol":"MSFT","metric":"vol20","value":0.0094062529},{"date":"2025-09-09","symbol":"MSFT","metric":"vol20","value":0.0094175086},{"date":"2025-09-10","symbol":"MSFT","metric":"vol20","value":0.0087227125},{"date":"2025-09-11","symbol":"MSFT","metric":"vol20","value":0.0081383958},{"date":"2025-09-12","symbol":"MSFT","metric":"vol20","value":0.0091799756},{"date":"2025-09-15","symbol":"MSFT","metric":"vol20","value":0.0095090626},{"date":"2025-09-16","symbol":"MSFT","metric":"vol20","value":0.0098068284},{"date":"2025-09-17","symbol":"MSFT","metric":"vol20","value":0.0092849065},{"date":"2025-09-18","symbol":"MSFT","metric":"vol20","value":0.0091246883},{"date":"2025-09-19","symbol":"MSFT","metric":"vol20","value":0.009979721},{"date":"2025-09-22","symbol":"MSFT","metric":"vol20","value":0.0100769981},{"date":"2025-09-23","symbol":"MSFT","metric":"vol20","value":0.0102692943},{"date":"2025-09-24","symbol":"MSFT","metric":"vol20","value":0.0102054426},{"date":"2025-09-25","symbol":"MSFT","metric":"vol20","value":0.0101130523},{"date":"2025-09-26","symbol":"MSFT","metric":"vol20","value":0.0102230222},{"date":"2025-09-29","symbol":"MSFT","metric":"vol20","value":0.0102014475},{"date":"2025-09-30","symbol":"MSFT","metric":"vol20","value":0.0102332746},{"date":"2025-10-01","symbol":"MSFT","metric":"vol20","value":0.0102416465},{"date":"2025-10-02","symbol":"MSFT","metric":"vol20","value":0.0103959016},{"date":"2025-10-03","symbol":"MSFT","metric":"vol20","value":0.0083486253},{"date":"2025-10-06","symbol":"MSFT","metric":"vol20","value":0.0093839426},{"date":"2025-10-07","symbol":"MSFT","metric":"vol20","value":0.0097301749},{"date":"2025-10-08","symbol":"MSFT","metric":"vol20","value":0.0097263647},{"date":"2025-10-09","symbol":"MSFT","metric":"vol20","value":0.0098538853},{"date":"2025-10-10","symbol":"MSFT","metric":"vol20","value":0.0105115728},{"date":"2025-10-13","symbol":"MSFT","metric":"vol20","value":0.0103148939},{"date":"2025-10-14","symbol":"MSFT","metric":"vol20","value":0.0099134985},{"date":"2025-10-15","symbol":"MSFT","metric":"vol20","value":0.0099088995},{"date":"2025-10-16","symbol":"MSFT","metric":"vol20","value":0.0099180444},{"date":"2025-10-17","symbol":"MSFT","metric":"vol20","value":0.0089912384},{"date":"2025-10-20","symbol":"MSFT","metric":"vol20","value":0.0089778987},{"date":"2025-10-21","symbol":"MSFT","metric":"vol20","value":0.0086392113},{"date":"2025-10-22","symbol":"MSFT","metric":"vol20","value":0.0087018487},{"date":"2025-10-23","symbol":"MSFT","metric":"vol20","value":0.0085421486},{"date":"2025-10-24","symbol":"MSFT","metric":"vol20","value":0.008434687},{"date":"2025-10-27","symbol":"MSFT","metric":"vol20","value":0.0089345602},{"date":"2025-10-28","symbol":"MSFT","metric":"vol20","value":0.0097743835},{"date":"2025-10-29","symbol":"MSFT","metric":"vol20","value":0.0097977074},{"date":"2025-10-30","symbol":"MSFT","metric":"vol20","value":0.0118836302},{"date":"2025-10-31","symbol":"MSFT","metric":"vol20","value":0.0124041305},{"date":"2025-11-03","symbol":"MSFT","metric":"vol20","value":0.0113178806},{"date":"2025-11-04","symbol":"MSFT","metric":"vol20","value":0.011220821},{"date":"2025-11-05","symbol":"MSFT","metric":"vol20","value":0.0115728362},{"date":"2025-11-06","symbol":"MSFT","metric":"vol20","value":0.0122575543},{"date":"2025-11-07","symbol":"MSFT","metric":"vol20","value":0.0113695771},{"date":"2025-11-10","symbol":"MSFT","metric":"vol20","value":0.012110095},{"date":"2025-11-11","symbol":"MSFT","metric":"vol20","value":0.0121844364},{"date":"2025-11-12","symbol":"MSFT","metric":"vol20","value":0.012241021},{"date":"2025-11-13","symbol":"MSFT","metric":"vol20","value":0.0126906057},{"date":"2025-11-14","symbol":"MSFT","metric":"vol20","value":0.0130634666},{"date":"2025-11-17","symbol":"MSFT","metric":"vol20","value":0.0130160941},{"date":"2025-11-18","symbol":"MSFT","metric":"vol20","value":0.0142457772},{"date":"2025-11-19","symbol":"MSFT","metric":"vol20","value":0.0143323897},{"date":"2025-11-20","symbol":"MSFT","metric":"vol20","value":0.01458728},{"date":"2025-11-21","symbol":"MSFT","metric":"vol20","value":0.0145306036},{"date":"2025-11-24","symbol":"MSFT","metric":"vol20","value":0.0139211361},{"date":"2025-11-25","symbol":"MSFT","metric":"vol20","value":0.0129151429},{"date":"2025-11-26","symbol":"MSFT","metric":"vol20","value":0.0139588686},{"date":"2025-11-28","symbol":"MSFT","metric":"vol20","value":0.0133559516},{"date":"2025-12-01","symbol":"MSFT","metric":"vol20","value":0.0131824757},{"date":"2025-12-02","symbol":"MSFT","metric":"vol20","value":0.01335507},{"date":"2025-12-03","symbol":"MSFT","metric":"vol20","value":0.014271374},{"date":"2025-12-04","symbol":"MSFT","metric":"vol20","value":0.01421574},{"date":"2025-12-05","symbol":"MSFT","metric":"vol20","value":0.0136902394},{"date":"2025-12-08","symbol":"MSFT","metric":"vol20","value":0.0142401843},{"date":"2025-12-09","symbol":"MSFT","metric":"vol20","value":0.0135515986},{"date":"2025-12-10","symbol":"MSFT","metric":"vol20","value":0.0146477275},{"date":"2025-12-11","symbol":"MSFT","metric":"vol20","value":0.0148461745},{"date":"2025-12-12","symbol":"MSFT","metric":"vol20","value":0.0146562085},{"date":"2025-12-15","symbol":"MSFT","metric":"vol20","value":0.014199993},{"date":"2025-12-16","symbol":"MSFT","metric":"vol20","value":0.0142696369},{"date":"2025-12-17","symbol":"MSFT","metric":"vol20","value":0.0131042175},{"date":"2025-12-18","symbol":"MSFT","metric":"vol20","value":0.0133896049},{"date":"2025-12-19","symbol":"MSFT","metric":"vol20","value":0.0128802718},{"date":"2025-12-22","symbol":"MSFT","metric":"vol20","value":0.0124755672},{"date":"2025-12-23","symbol":"MSFT","metric":"vol20","value":0.0124755455},{"date":"2025-12-24","symbol":"MSFT","metric":"vol20","value":0.0124253564},{"date":"2025-12-26","symbol":"MSFT","metric":"vol20","value":0.0117952282},{"date":"2025-12-29","symbol":"MSFT","metric":"vol20","value":0.0113857073},{"date":"2025-12-30","symbol":"MSFT","metric":"vol20","value":0.0111270796},{"date":"2025-12-31","symbol":"MSFT","metric":"vol20","value":0.0111533313},{"date":"2026-01-02","symbol":"MSFT","metric":"vol20","value":0.0108270151},{"date":"2026-01-05","symbol":"MSFT","metric":"vol20","value":0.0107033535},{"date":"2026-01-06","symbol":"MSFT","metric":"vol20","value":0.0110150772},{"date":"2026-01-07","symbol":"MSFT","metric":"vol20","value":0.0106161286},{"date":"2026-01-08","symbol":"MSFT","metric":"vol20","value":0.0108399408},{"date":"2026-01-09","symbol":"MSFT","metric":"vol20","value":0.0089672968},{"date":"2026-01-12","symbol":"MSFT","metric":"vol20","value":0.0086886845},{"date":"2026-01-13","symbol":"MSFT","metric":"vol20","value":0.0089185385},{"date":"2026-01-14","symbol":"MSFT","metric":"vol20","value":0.0102282278},{"date":"2026-01-15","symbol":"MSFT","metric":"vol20","value":0.0102032695},{"date":"2026-01-16","symbol":"MSFT","metric":"vol20","value":0.0104003834},{"date":"2026-01-20","symbol":"MSFT","metric":"vol20","value":0.0096878788},{"date":"2026-01-21","symbol":"MSFT","metric":"vol20","value":0.0104860744},{"date":"2026-01-22","symbol":"MSFT","metric":"vol20","value":0.0114207239},{"date":"2026-01-23","symbol":"MSFT","metric":"vol20","value":0.0139600511},{"date":"2026-01-26","symbol":"MSFT","metric":"vol20","value":0.0141605633},{"date":"2025-07-31","symbol":"NVDA","metric":"vol20","value":null},{"date":"2025-08-01","symbol":"NVDA","metric":"vol20","value":null},{"date":"2025-08-04","symbol":"NVDA","metric":"vol20","value":0.0420647638},{"date":"2025-08-05","symbol":"NVDA","metric":"vol20","value":0.0311590574},{"date":"2025-08-06","symbol":"NVDA","metric":"vol20","value":0.0255871744},{"date":"2025-08-07","symbol":"NVDA","metric":"vol20","value":0.02227667},{"date":"2025-08-08","symbol":"NVDA","metric":"vol20","value":0.0201429353},{"date":"2025-08-11","symbol":"NVDA","metric":"vol20","value":0.0186439644},{"date":"2025-08-12","symbol":"NVDA","metric":"vol20","value":0.0172847198},{"date":"2025-08-13","symbol":"NVDA","metric":"vol20","value":0.0166861143},{"date":"2025-08-14","symbol":"NVDA","metric":"vol20","value":0.0157318298},{"date":"2025-08-15","symbol":"NVDA","metric":"vol20","value":0.0152916303},{"date":"2025-08-18","symbol":"NVDA","metric":"vol20","value":0.0147286421},{"date":"2025-08-19","symbol":"NVDA","metric":"vol20","value":0.0174435388},{"date":"2025-08-20","symbol":"NVDA","metric":"vol20","value":0.0167598246},{"date":"2025-08-21","symbol":"NVDA","metric":"vol20","value":0.0161549822},{"date":"2025-08-22","symbol":"NVDA","metric":"vol20","value":0.0162550651},{"date":"2025-08-25","symbol":"NVDA","metric":"vol20","value":0.0159269099},{"date":"2025-08-26","symbol":"NVDA","metric":"vol20","value":0.0156352568},{"date":"2025-08-27","symbol":"NVDA","metric":"vol20","value":0.0152035567},{"date":"2025-08-28","symbol":"NVDA","metric":"vol20","value":0.014936631},{"date":"2025-08-29","symbol":"NVDA","metric":"vol20","value":0.0159108839},{"date":"2025-09-02","symbol":"NVDA","metric":"vol20","value":0.0140621408},{"date":"2025-09-03","symbol":"NVDA","metric":"vol20","value":0.0139641005},{"date":"2025-09-04","symbol":"NVDA","metric":"vol20","value":0.0139510417},{"date":"2025-09-05","symbol":"NVDA","metric":"vol20","value":0.0148080425},{"date":"2025-09-08","symbol":"NVDA","metric":"vol20","value":0.0146697073},{"date":"2025-09-09","symbol":"NVDA","metric":"vol20","value":0.0152458988},{"date":"2025-09-10","symbol":"NVDA","metric":"vol20","value":0.0177825431},{"date":"2025-09-11","symbol":"NVDA","metric":"vol20","value":0.0177037693},{"date":"2025-09-12","symbol":"NVDA","metric":"vol20","value":0.0177194831},{"date":"2025-09-15","symbol":"NVDA","metric":"vol20","value":0.0176287328},{"date":"2025-09-16","symbol":"NVDA","metric":"vol20","value":0.0178148919},{"date":"2025-09-17","symbol":"NVDA","metric":"vol20","value":0.0170483598},{"date":"2025-09-18","symbol":"NVDA","metric":"vol20","value":0.0188867364},{"date":"2025-09-19","symbol":"NVDA","metric":"vol20","value":0.0188798745},{"date":"2025-09-22","symbol":"NVDA","metric":"vol20","value":0.0204767385},{"date":"2025-09-23","symbol":"NVDA","metric":"vol20","value":0.021422118},{"date":"2025-09-24","symbol":"NVDA","metric":"vol20","value":0.0213280532},{"date":"2025-09-25","symbol":"NVDA","metric":"vol20","value":0.0213596558},{"date":"2025-09-26","symbol":"NVDA","metric":"vol20","value":0.0213087984},{"date":"2025-09-29","symbol":"NVDA","metric":"vol20","value":0.0203067899},{"date":"2025-09-30","symbol":"NVDA","metric":"vol20","value":0.0202774694},{"date":"2025-10-01","symbol":"NVDA","metric":"vol20","value":0.0202374429},{"date":"2025-10-02","symbol":"NVDA","metric":"vol20","value":0.0202553189},{"date":"2025-10-03","symbol":"NVDA","metric":"vol20","value":0.0190378272},{"date":"2025-10-06","symbol":"NVDA","metric":"vol20","value":0.0194095382},{"date":"2025-10-07","symbol":"NVDA","metric":"vol20","value":0.0193487609},{"date":"2025-10-08","symbol":"NVDA","metric":"vol20","value":0.0181242245},{"date":"2025-10-09","symbol":"NVDA","metric":"vol20","value":0.0183928468},{"date":"2025-10-10","symbol":"NVDA","metric":"vol20","value":0.0219087402},{"date":"2025-10-13","symbol":"NVDA","metric":"vol20","value":0.0226820057},{"date":"2025-10-14","symbol":"NVDA","metric":"vol20","value":0.0246964547},{"date":"2025-10-15","symbol":"NVDA","metric":"vol20","value":0.0238210286},{"date":"2025-10-16","symbol":"NVDA","metric":"vol20","value":0.0227071118},{"date":"2025-10-17","symbol":"NVDA","metric":"vol20","value":0.0227460227},{"date":"2025-10-20","symbol":"NVDA","metric":"vol20","value":0.0210045655},{"date":"2025-10-21","symbol":"NVDA","metric":"vol20","value":0.020044956},{"date":"2025-10-22","symbol":"NVDA","metric":"vol20","value":0.0199788741},{"date":"2025-10-23","symbol":"NVDA","metric":"vol20","value":0.0200786595},{"date":"2025-10-24","symbol":"NVDA","metric":"vol20","value":0.0206252583},{"date":"2025-10-27","symbol":"NVDA","metric":"vol20","value":0.0210386157},{"date":"2025-10-28","symbol":"NVDA","metric":"vol20","value":0.0230032766},{"date":"2025-10-29","symbol":"NVDA","metric":"vol20","value":0.0237200152},{"date":"2025-10-30","symbol":"NVDA","metric":"vol20","value":0.0243645415},{"date":"2025-10-31","symbol":"NVDA","metric":"vol20","value":0.0242788665},{"date":"2025-11-03","symbol":"NVDA","metric":"vol20","value":0.024305544},{"date":"2025-11-04","symbol":"NVDA","metric":"vol20","value":0.0262979676},{"date":"2025-11-05","symbol":"NVDA","metric":"vol20","value":0.0263507091},{"date":"2025-11-06","symbol":"NVDA","metric":"vol20","value":0.0273885424},{"date":"2025-11-07","symbol":"NVDA","metric":"vol20","value":0.0249464681},{"date":"2025-11-10","symbol":"NVDA","metric":"vol20","value":0.0273813292},{"date":"2025-11-11","symbol":"NVDA","metric":"vol20","value":0.0262397152},{"date":"2025-11-12","symbol":"NVDA","metric":"vol20","value":0.0262143209},{"date":"2025-11-13","symbol":"NVDA","metric":"vol20","value":0.0276153812},{"date":"2025-11-14","symbol":"NVDA","metric":"vol20","value":0.027818778},{"date":"2025-11-17","symbol":"NVDA","metric":"vol20","value":0.0281944595},{"date":"2025-11-18","symbol":"NVDA","metric":"vol20","value":0.0288959286},{"date":"2025-11-19","symbol":"NVDA","metric":"vol20","value":0.0295270515},{"date":"2025-11-20","symbol":"NVDA","metric":"vol20","value":0.0303832532},{"date":"2025-11-21","symbol":"NVDA","metric":"vol20","value":0.0299798908},{"date":"2025-11-24","symbol":"NVDA","metric":"vol20","value":0.0296315535},{"date":"2025-11-25","symbol":"NVDA","metric":"vol20","value":0.0274206873},{"date":"2025-11-26","symbol":"NVDA","metric":"vol20","value":0.0265379618},{"date":"2025-11-28","symbol":"NVDA","metric":"vol20","value":0.0264891646},{"date":"2025-12-01","symbol":"NVDA","metric":"vol20","value":0.0269718409},{"date":"2025-12-02","symbol":"NVDA","metric":"vol20","value":0.0264287816},{"date":"2025-12-03","symbol":"NVDA","metric":"vol20","value":0.025267441},{"date":"2025-12-04","symbol":"NVDA","metric":"vol20","value":0.0257142339},{"date":"2025-12-05","symbol":"NVDA","metric":"vol20","value":0.0244771571},{"date":"2025-12-08","symbol":"NVDA","metric":"vol20","value":0.0248229407},{"date":"2025-12-09","symbol":"NVDA","metric":"vol20","value":0.0206794372},{"date":"2025-12-10","symbol":"NVDA","metric":"vol20","value":0.0197671239},{"date":"2025-12-11","symbol":"NVDA","metric":"vol20","value":0.0199332858},{"date":"2025-12-12","symbol":"NVDA","metric":"vol20","value":0.0196733134},{"date":"2025-12-15","symbol":"NVDA","metric":"vol20","value":0.0192253714},{"date":"2025-12-16","symbol":"NVDA","metric":"vol20","value":0.0190479338},{"date":"2025-12-17","symbol":"NVDA","metric":"vol20","value":0.0198810408},{"date":"2025-12-18","symbol":"NVDA","metric":"vol20","value":0.0191835953},{"date":"2025-12-19","symbol":"NVDA","metric":"vol20","value":0.0202029632},{"date":"2025-12-22","symbol":"NVDA","metric":"vol20","value":0.0203104002},{"date":"2025-12-23","symbol":"NVDA","metric":"vol20","value":0.0208833126},{"date":"2025-12-24","symbol":"NVDA","metric":"vol20","value":0.0198782775},{"date":"2025-12-26","symbol":"NVDA","metric":"vol20","value":0.0197946271},{"date":"2025-12-29","symbol":"NVDA","metric":"vol20","value":0.0195037028},{"date":"2025-12-30","symbol":"NVDA","metric":"vol20","value":0.0193027478},{"date":"2025-12-31","symbol":"NVDA","metric":"vol20","value":0.019317983},{"date":"2026-01-02","symbol":"NVDA","metric":"vol20","value":0.0192569665},{"date":"2026-01-05","symbol":"NVDA","metric":"vol20","value":0.0188017258},{"date":"2026-01-06","symbol":"NVDA","metric":"vol20","value":0.0187906886},{"date":"2026-01-07","symbol":"NVDA","metric":"vol20","value":0.0185399238},{"date":"2026-01-08","symbol":"NVDA","metric":"vol20","value":0.0192057224},{"date":"2026-01-09","symbol":"NVDA","metric":"vol20","value":0.0191452611},{"date":"2026-01-12","symbol":"NVDA","metric":"vol20","value":0.0187734065},{"date":"2026-01-13","symbol":"NVDA","metric":"vol20","value":0.0169941398},{"date":"2026-01-14","symbol":"NVDA","metric":"vol20","value":0.0174010866},{"date":"2026-01-15","symbol":"NVDA","metric":"vol20","value":0.0178886832},{"date":"2026-01-16","symbol":"NVDA","metric":"vol20","value":0.0152240266},{"date":"2026-01-20","symbol":"NVDA","metric":"vol20","value":0.0182498962},{"date":"2026-01-21","symbol":"NVDA","metric":"vol20","value":0.0172753024},{"date":"2026-01-22","symbol":"NVDA","metric":"vol20","value":0.017052026},{"date":"2026-01-23","symbol":"NVDA","metric":"vol20","value":0.0159908872},{"date":"2026-01-26","symbol":"NVDA","metric":"vol20","value":0.0160376649},{"date":"2025-07-31","symbol":"AAPL","metric":"volume","value":80698400},{"date":"2025-08-01","symbol":"AAPL","metric":"volume","value":104434500},{"date":"2025-08-04","symbol":"AAPL","metric":"volume","value":75109300},{"date":"2025-08-05","symbol":"AAPL","metric":"volume","value":44155100},{"date":"2025-08-06","symbol":"AAPL","metric":"volume","value":108483100},{"date":"2025-08-07","symbol":"AAPL","metric":"volume","value":90224800},{"date":"2025-08-08","symbol":"AAPL","metric":"volume","value":113854000},{"date":"2025-08-11","symbol":"AAPL","metric":"volume","value":61806100},{"date":"2025-08-12","symbol":"AAPL","metric":"volume","value":55626200},{"date":"2025-08-13","symbol":"AAPL","metric":"volume","value":69878500},{"date":"2025-08-14","symbol":"AAPL","metric":"volume","value":51916300},{"date":"2025-08-15","symbol":"AAPL","metric":"volume","value":56038700},{"date":"2025-08-18","symbol":"AAPL","metric":"volume","value":37476200},{"date":"2025-08-19","symbol":"AAPL","metric":"volume","value":39402600},{"date":"2025-08-20","symbol":"AAPL","metric":"volume","value":42263900},{"date":"2025-08-21","symbol":"AAPL","metric":"volume","value":30621200},{"date":"2025-08-22","symbol":"AAPL","metric":"volume","value":42477800},{"date":"2025-08-25","symbol":"AAPL","metric":"volume","value":30983100},{"date":"2025-08-26","symbol":"AAPL","metric":"volume","value":54575100},{"date":"2025-08-27","symbol":"AAPL","metric":"volume","value":31259500},{"date":"2025-08-28","symbol":"AAPL","metric":"volume","value":38074700},{"date":"2025-08-29","symbol":"AAPL","metric":"volume","value":39418400},{"date":"2025-09-02","symbol":"AAPL","metric":"volume","value":44075600},{"date":"2025-09-03","symbol":"AAPL","metric":"volume","value":66427800},{"date":"2025-09-04","symbol":"AAPL","metric":"volume","value":47549400},{"date":"2025-09-05","symbol":"AAPL","metric":"volume","value":54870400},{"date":"2025-09-08","symbol":"AAPL","metric":"volume","value":48999500},{"date":"2025-09-09","symbol":"AAPL","metric":"volume","value":66313900},{"date":"2025-09-10","symbol":"AAPL","metric":"volume","value":83440800},{"date":"2025-09-11","symbol":"AAPL","metric":"volume","value":50208600},{"date":"2025-09-12","symbol":"AAPL","metric":"volume","value":55824200},{"date":"2025-09-15","symbol":"AAPL","metric":"volume","value":42699500},{"date":"2025-09-16","symbol":"AAPL","metric":"volume","value":63421100},{"date":"2025-09-17","symbol":"AAPL","metric":"volume","value":46508000},{"date":"2025-09-18","symbol":"AAPL","metric":"volume","value":44249600},{"date":"2025-09-19","symbol":"AAPL","metric":"volume","value":163741300},{"date":"2025-09-22","symbol":"AAPL","metric":"volume","value":105517400},{"date":"2025-09-23","symbol":"AAPL","metric":"volume","value":60275200},{"date":"2025-09-24","symbol":"AAPL","metric":"volume","value":42303700},{"date":"2025-09-25","symbol":"AAPL","metric":"volume","value":55202100},{"date":"2025-09-26","symbol":"AAPL","metric":"volume","value":46076300},{"date":"2025-09-29","symbol":"AAPL","metric":"volume","value":40127700},{"date":"2025-09-30","symbol":"AAPL","metric":"volume","value":37704300},{"date":"2025-10-01","symbol":"AAPL","metric":"volume","value":48713900},{"date":"2025-10-02","symbol":"AAPL","metric":"volume","value":42630200},{"date":"2025-10-03","symbol":"AAPL","metric":"volume","value":49155600},{"date":"2025-10-06","symbol":"AAPL","metric":"volume","value":44664100},{"date":"2025-10-07","symbol":"AAPL","metric":"volume","value":31955800},{"date":"2025-10-08","symbol":"AAPL","metric":"volume","value":36496900},{"date":"2025-10-09","symbol":"AAPL","metric":"volume","value":38322000},{"date":"2025-10-10","symbol":"AAPL","metric":"volume","value":61999100},{"date":"2025-10-13","symbol":"AAPL","metric":"volume","value":38142900},{"date":"2025-10-14","symbol":"AAPL","metric":"volume","value":35478000},{"date":"2025-10-15","symbol":"AAPL","metric":"volume","value":33893600},{"date":"2025-10-16","symbol":"AAPL","metric":"volume","value":39777000},{"date":"2025-10-17","symbol":"AAPL","metric":"volume","value":49147000},{"date":"2025-10-20","symbol":"AAPL","metric":"volume","value":90483000},{"date":"2025-10-21","symbol":"AAPL","metric":"volume","value":46695900},{"date":"2025-10-22","symbol":"AAPL","metric":"volume","value":45015300},{"date":"2025-10-23","symbol":"AAPL","metric":"volume","value":32754900},{"date":"2025-10-24","symbol":"AAPL","metric":"volume","value":38253700},{"date":"2025-10-27","symbol":"AAPL","metric":"volume","value":44888200},{"date":"2025-10-28","symbol":"AAPL","metric":"volume","value":41534800},{"date":"2025-10-29","symbol":"AAPL","metric":"volume","value":51086700},{"date":"2025-10-30","symbol":"AAPL","metric":"volume","value":69886500},{"date":"2025-10-31","symbol":"AAPL","metric":"volume","value":86167100},{"date":"2025-11-03","symbol":"AAPL","metric":"volume","value":50194600},{"date":"2025-11-04","symbol":"AAPL","metric":"volume","value":49274800},{"date":"2025-11-05","symbol":"AAPL","metric":"volume","value":43683100},{"date":"2025-11-06","symbol":"AAPL","metric":"volume","value":51204000},{"date":"2025-11-07","symbol":"AAPL","metric":"volume","value":48227400},{"date":"2025-11-10","symbol":"AAPL","metric":"volume","value":41312400},{"date":"2025-11-11","symbol":"AAPL","metric":"volume","value":46208300},{"date":"2025-11-12","symbol":"AAPL","metric":"volume","value":48398000},{"date":"2025-11-13","symbol":"AAPL","metric":"volume","value":49602800},{"date":"2025-11-14","symbol":"AAPL","metric":"volume","value":47431300},{"date":"2025-11-17","symbol":"AAPL","metric":"volume","value":45018300},{"date":"2025-11-18","symbol":"AAPL","metric":"volume","value":45677300},{"date":"2025-11-19","symbol":"AAPL","metric":"volume","value":40424500},{"date":"2025-11-20","symbol":"AAPL","metric":"volume","value":45823600},{"date":"2025-11-21","symbol":"AAPL","metric":"volume","value":59030800},{"date":"2025-11-24","symbol":"AAPL","metric":"volume","value":65585800},{"date":"2025-11-25","symbol":"AAPL","metric":"volume","value":46914200},{"date":"2025-11-26","symbol":"AAPL","metric":"volume","value":33431400},{"date":"2025-11-28","symbol":"AAPL","metric":"volume","value":20135600},{"date":"2025-12-01","symbol":"AAPL","metric":"volume","value":46587700},{"date":"2025-12-02","symbol":"AAPL","metric":"volume","value":53669500},{"date":"2025-12-03","symbol":"AAPL","metric":"volume","value":43538700},{"date":"2025-12-04","symbol":"AAPL","metric":"volume","value":43989100},{"date":"2025-12-05","symbol":"AAPL","metric":"volume","value":47265800},{"date":"2025-12-08","symbol":"AAPL","metric":"volume","value":38211800},{"date":"2025-12-09","symbol":"AAPL","metric":"volume","value":32193300},{"date":"2025-12-10","symbol":"AAPL","metric":"volume","value":33038300},{"date":"2025-12-11","symbol":"AAPL","metric":"volume","value":33248000},{"date":"2025-12-12","symbol":"AAPL","metric":"volume","value":39532900},{"date":"2025-12-15","symbol":"AAPL","metric":"volume","value":50409100},{"date":"2025-12-16","symbol":"AAPL","metric":"volume","value":37648600},{"date":"2025-12-17","symbol":"AAPL","metric":"volume","value":50138700},{"date":"2025-12-18","symbol":"AAPL","metric":"volume","value":51630700},{"date":"2025-12-19","symbol":"AAPL","metric":"volume","value":144632000},{"date":"2025-12-22","symbol":"AAPL","metric":"volume","value":36571800},{"date":"2025-12-23","symbol":"AAPL","metric":"volume","value":29642000},{"date":"2025-12-24","symbol":"AAPL","metric":"volume","value":17910600},{"date":"2025-12-26","symbol":"AAPL","metric":"volume","value":21521800},{"date":"2025-12-29","symbol":"AAPL","metric":"volume","value":23715200},{"date":"2025-12-30","symbol":"AAPL","metric":"volume","value":22139600},{"date":"2025-12-31","symbol":"AAPL","metric":"volume","value":27293600},{"date":"2026-01-02","symbol":"AAPL","metric":"volume","value":37838100},{"date":"2026-01-05","symbol":"AAPL","metric":"volume","value":45647200},{"date":"2026-01-06","symbol":"AAPL","metric":"volume","value":52352100},{"date":"2026-01-07","symbol":"AAPL","metric":"volume","value":48309800},{"date":"2026-01-08","symbol":"AAPL","metric":"volume","value":50419300},{"date":"2026-01-09","symbol":"AAPL","metric":"volume","value":39997000},{"date":"2026-01-12","symbol":"AAPL","metric":"volume","value":45263800},{"date":"2026-01-13","symbol":"AAPL","metric":"volume","value":45730800},{"date":"2026-01-14","symbol":"AAPL","metric":"volume","value":40019400},{"date":"2026-01-15","symbol":"AAPL","metric":"volume","value":39388600},{"date":"2026-01-16","symbol":"AAPL","metric":"volume","value":72142800},{"date":"2026-01-20","symbol":"AAPL","metric":"volume","value":80267500},{"date":"2026-01-21","symbol":"AAPL","metric":"volume","value":54641700},{"date":"2026-01-22","symbol":"AAPL","metric":"volume","value":39708300},{"date":"2026-01-23","symbol":"AAPL","metric":"volume","value":41689000},{"date":"2026-01-26","symbol":"AAPL","metric":"volume","value":55857900},{"date":"2025-07-31","symbol":"AMZN","metric":"volume","value":104357300},{"date":"2025-08-01","symbol":"AMZN","metric":"volume","value":122258800},{"date":"2025-08-04","symbol":"AMZN","metric":"volume","value":77890100},{"date":"2025-08-05","symbol":"AMZN","metric":"volume","value":51505100},{"date":"2025-08-06","symbol":"AMZN","metric":"volume","value":54823000},{"date":"2025-08-07","symbol":"AMZN","metric":"volume","value":40603500},{"date":"2025-08-08","symbol":"AMZN","metric":"volume","value":32970500},{"date":"2025-08-11","symbol":"AMZN","metric":"volume","value":31646200},{"date":"2025-08-12","symbol":"AMZN","metric":"volume","value":37185800},{"date":"2025-08-13","symbol":"AMZN","metric":"volume","value":36508300},{"date":"2025-08-14","symbol":"AMZN","metric":"volume","value":61545800},{"date":"2025-08-15","symbol":"AMZN","metric":"volume","value":39649200},{"date":"2025-08-18","symbol":"AMZN","metric":"volume","value":25248900},{"date":"2025-08-19","symbol":"AMZN","metric":"volume","value":29891000},{"date":"2025-08-20","symbol":"AMZN","metric":"volume","value":36604300},{"date":"2025-08-21","symbol":"AMZN","metric":"volume","value":32140500},{"date":"2025-08-22","symbol":"AMZN","metric":"volume","value":37315300},{"date":"2025-08-25","symbol":"AMZN","metric":"volume","value":22633700},{"date":"2025-08-26","symbol":"AMZN","metric":"volume","value":26105400},{"date":"2025-08-27","symbol":"AMZN","metric":"volume","value":21254500},{"date":"2025-08-28","symbol":"AMZN","metric":"volume","value":33679600},{"date":"2025-08-29","symbol":"AMZN","metric":"volume","value":26199200},{"date":"2025-09-02","symbol":"AMZN","metric":"volume","value":38843900},{"date":"2025-09-03","symbol":"AMZN","metric":"volume","value":29223100},{"date":"2025-09-04","symbol":"AMZN","metric":"volume","value":59391800},{"date":"2025-09-05","symbol":"AMZN","metric":"volume","value":36721800},{"date":"2025-09-08","symbol":"AMZN","metric":"volume","value":33947100},{"date":"2025-09-09","symbol":"AMZN","metric":"volume","value":27033800},{"date":"2025-09-10","symbol":"AMZN","metric":"volume","value":60907700},{"date":"2025-09-11","symbol":"AMZN","metric":"volume","value":37485600},{"date":"2025-09-12","symbol":"AMZN","metric":"volume","value":38496200},{"date":"2025-09-15","symbol":"AMZN","metric":"volume","value":33243300},{"date":"2025-09-16","symbol":"AMZN","metric":"volume","value":38203900},{"date":"2025-09-17","symbol":"AMZN","metric":"volume","value":42815200},{"date":"2025-09-18","symbol":"AMZN","metric":"volume","value":37931700},{"date":"2025-09-19","symbol":"AMZN","metric":"volume","value":97943200},{"date":"2025-09-22","symbol":"AMZN","metric":"volume","value":45914500},{"date":"2025-09-23","symbol":"AMZN","metric":"volume","value":70956200},{"date":"2025-09-24","symbol":"AMZN","metric":"volume","value":49509000},{"date":"2025-09-25","symbol":"AMZN","metric":"volume","value":52226300},{"date":"2025-09-26","symbol":"AMZN","metric":"volume","value":41650100},{"date":"2025-09-29","symbol":"AMZN","metric":"volume","value":44259200},{"date":"2025-09-30","symbol":"AMZN","metric":"volume","value":48396400},{"date":"2025-10-01","symbol":"AMZN","metric":"volume","value":43933800},{"date":"2025-10-02","symbol":"AMZN","metric":"volume","value":41258600},{"date":"2025-10-03","symbol":"AMZN","metric":"volume","value":43639000},{"date":"2025-10-06","symbol":"AMZN","metric":"volume","value":43690900},{"date":"2025-10-07","symbol":"AMZN","metric":"volume","value":31194700},{"date":"2025-10-08","symbol":"AMZN","metric":"volume","value":46686000},{"date":"2025-10-09","symbol":"AMZN","metric":"volume","value":46412100},{"date":"2025-10-10","symbol":"AMZN","metric":"volume","value":72367500},{"date":"2025-10-13","symbol":"AMZN","metric":"volume","value":37809700},{"date":"2025-10-14","symbol":"AMZN","metric":"volume","value":45665600},{"date":"2025-10-15","symbol":"AMZN","metric":"volume","value":45909500},{"date":"2025-10-16","symbol":"AMZN","metric":"volume","value":42414600},{"date":"2025-10-17","symbol":"AMZN","metric":"volume","value":45986900},{"date":"2025-10-20","symbol":"AMZN","metric":"volume","value":38882800},{"date":"2025-10-21","symbol":"AMZN","metric":"volume","value":50494600},{"date":"2025-10-22","symbol":"AMZN","metric":"volume","value":44308500},{"date":"2025-10-23","symbol":"AMZN","metric":"volume","value":31540000},{"date":"2025-10-24","symbol":"AMZN","metric":"volume","value":38685100},{"date":"2025-10-27","symbol":"AMZN","metric":"volume","value":38267000},{"date":"2025-10-28","symbol":"AMZN","metric":"volume","value":47100000},{"date":"2025-10-29","symbol":"AMZN","metric":"volume","value":52036200},{"date":"2025-10-30","symbol":"AMZN","metric":"volume","value":102252900},{"date":"2025-10-31","symbol":"AMZN","metric":"volume","value":166340800},{"date":"2025-11-03","symbol":"AMZN","metric":"volume","value":95997800},{"date":"2025-11-04","symbol":"AMZN","metric":"volume","value":51546300},{"date":"2025-11-05","symbol":"AMZN","metric":"volume","value":40610700},{"date":"2025-11-06","symbol":"AMZN","metric":"volume","value":46004200},{"date":"2025-11-07","symbol":"AMZN","metric":"volume","value":46374300},{"date":"2025-11-10","symbol":"AMZN","metric":"volume","value":36476500},{"date":"2025-11-11","symbol":"AMZN","metric":"volume","value":23564100},{"date":"2025-11-12","symbol":"AMZN","metric":"volume","value":31190100},{"date":"2025-11-13","symbol":"AMZN","metric":"volume","value":41401700},{"date":"2025-11-14","symbol":"AMZN","metric":"volume","value":38956700},{"date":"2025-11-17","symbol":"AMZN","metric":"volume","value":59919000},{"date":"2025-11-18","symbol":"AMZN","metric":"volume","value":60608400},{"date":"2025-11-19","symbol":"AMZN","metric":"volume","value":58335600},{"date":"2025-11-20","symbol":"AMZN","metric":"volume","value":50309000},{"date":"2025-11-21","symbol":"AMZN","metric":"volume","value":68490500},{"date":"2025-11-24","symbol":"AMZN","metric":"volume","value":54318400},{"date":"2025-11-25","symbol":"AMZN","metric":"volume","value":39379300},{"date":"2025-11-26","symbol":"AMZN","metric":"volume","value":38497900},{"date":"2025-11-28","symbol":"AMZN","metric":"volume","value":20292300},{"date":"2025-12-01","symbol":"AMZN","metric":"volume","value":42904000},{"date":"2025-12-02","symbol":"AMZN","metric":"volume","value":45785400},{"date":"2025-12-03","symbol":"AMZN","metric":"volume","value":35495100},{"date":"2025-12-04","symbol":"AMZN","metric":"volume","value":45683200},{"date":"2025-12-05","symbol":"AMZN","metric":"volume","value":33117400},{"date":"2025-12-08","symbol":"AMZN","metric":"volume","value":35019200},{"date":"2025-12-09","symbol":"AMZN","metric":"volume","value":25841700},{"date":"2025-12-10","symbol":"AMZN","metric":"volume","value":38790700},{"date":"2025-12-11","symbol":"AMZN","metric":"volume","value":28249600},{"date":"2025-12-12","symbol":"AMZN","metric":"volume","value":35639100},{"date":"2025-12-15","symbol":"AMZN","metric":"volume","value":47286100},{"date":"2025-12-16","symbol":"AMZN","metric":"volume","value":39298900},{"date":"2025-12-17","symbol":"AMZN","metric":"volume","value":44034400},{"date":"2025-12-18","symbol":"AMZN","metric":"volume","value":50272400},{"date":"2025-12-19","symbol":"AMZN","metric":"volume","value":85544400},{"date":"2025-12-22","symbol":"AMZN","metric":"volume","value":32261300},{"date":"2025-12-23","symbol":"AMZN","metric":"volume","value":29230200},{"date":"2025-12-24","symbol":"AMZN","metric":"volume","value":11420500},{"date":"2025-12-26","symbol":"AMZN","metric":"volume","value":15994700},{"date":"2025-12-29","symbol":"AMZN","metric":"volume","value":19797900},{"date":"2025-12-30","symbol":"AMZN","metric":"volume","value":21910500},{"date":"2025-12-31","symbol":"AMZN","metric":"volume","value":24383700},{"date":"2026-01-02","symbol":"AMZN","metric":"volume","value":51456200},{"date":"2026-01-05","symbol":"AMZN","metric":"volume","value":49733300},{"date":"2026-01-06","symbol":"AMZN","metric":"volume","value":53764700},{"date":"2026-01-07","symbol":"AMZN","metric":"volume","value":42236500},{"date":"2026-01-08","symbol":"AMZN","metric":"volume","value":39509800},{"date":"2026-01-09","symbol":"AMZN","metric":"volume","value":34560000},{"date":"2026-01-12","symbol":"AMZN","metric":"volume","value":35867800},{"date":"2026-01-13","symbol":"AMZN","metric":"volume","value":38371800},{"date":"2026-01-14","symbol":"AMZN","metric":"volume","value":41410600},{"date":"2026-01-15","symbol":"AMZN","metric":"volume","value":43003600},{"date":"2026-01-16","symbol":"AMZN","metric":"volume","value":45888300},{"date":"2026-01-20","symbol":"AMZN","metric":"volume","value":47737900},{"date":"2026-01-21","symbol":"AMZN","metric":"volume","value":47276100},{"date":"2026-01-22","symbol":"AMZN","metric":"volume","value":31913300},{"date":"2026-01-23","symbol":"AMZN","metric":"volume","value":33778500},{"date":"2026-01-26","symbol":"AMZN","metric":"volume","value":32764700},{"date":"2025-07-31","symbol":"GOOGL","metric":"volume","value":51329200},{"date":"2025-08-01","symbol":"GOOGL","metric":"volume","value":34832200},{"date":"2025-08-04","symbol":"GOOGL","metric":"volume","value":31547400},{"date":"2025-08-05","symbol":"GOOGL","metric":"volume","value":31602300},{"date":"2025-08-06","symbol":"GOOGL","metric":"volume","value":21562900},{"date":"2025-08-07","symbol":"GOOGL","metric":"volume","value":26321800},{"date":"2025-08-08","symbol":"GOOGL","metric":"volume","value":39161800},{"date":"2025-08-11","symbol":"GOOGL","metric":"volume","value":25832400},{"date":"2025-08-12","symbol":"GOOGL","metric":"volume","value":30397900},{"date":"2025-08-13","symbol":"GOOGL","metric":"volume","value":28342900},{"date":"2025-08-14","symbol":"GOOGL","metric":"volume","value":25230400},{"date":"2025-08-15","symbol":"GOOGL","metric":"volume","value":34931400},{"date":"2025-08-18","symbol":"GOOGL","metric":"volume","value":18526600},{"date":"2025-08-19","symbol":"GOOGL","metric":"volume","value":24240200},{"date":"2025-08-20","symbol":"GOOGL","metric":"volume","value":28955500},{"date":"2025-08-21","symbol":"GOOGL","metric":"volume","value":19774600},{"date":"2025-08-22","symbol":"GOOGL","metric":"volume","value":42827000},{"date":"2025-08-25","symbol":"GOOGL","metric":"volume","value":29928900},{"date":"2025-08-26","symbol":"GOOGL","metric":"volume","value":28464100},{"date":"2025-08-27","symbol":"GOOGL","metric":"volume","value":23022900},{"date":"2025-08-28","symbol":"GOOGL","metric":"volume","value":32339300},{"date":"2025-08-29","symbol":"GOOGL","metric":"volume","value":39728400},{"date":"2025-09-02","symbol":"GOOGL","metric":"volume","value":47523000},{"date":"2025-09-03","symbol":"GOOGL","metric":"volume","value":103336100},{"date":"2025-09-04","symbol":"GOOGL","metric":"volume","value":51684200},{"date":"2025-09-05","symbol":"GOOGL","metric":"volume","value":46588900},{"date":"2025-09-08","symbol":"GOOGL","metric":"volume","value":32474700},{"date":"2025-09-09","symbol":"GOOGL","metric":"volume","value":38061000},{"date":"2025-09-10","symbol":"GOOGL","metric":"volume","value":35141100},{"date":"2025-09-11","symbol":"GOOGL","metric":"volume","value":30599300},{"date":"2025-09-12","symbol":"GOOGL","metric":"volume","value":26771600},{"date":"2025-09-15","symbol":"GOOGL","metric":"volume","value":58383800},{"date":"2025-09-16","symbol":"GOOGL","metric":"volume","value":34109700},{"date":"2025-09-17","symbol":"GOOGL","metric":"volume","value":34108000},{"date":"2025-09-18","symbol":"GOOGL","metric":"volume","value":31239500},{"date":"2025-09-19","symbol":"GOOGL","metric":"volume","value":55571400},{"date":"2025-09-22","symbol":"GOOGL","metric":"volume","value":32290500},{"date":"2025-09-23","symbol":"GOOGL","metric":"volume","value":26628000},{"date":"2025-09-24","symbol":"GOOGL","metric":"volume","value":28201000},{"date":"2025-09-25","symbol":"GOOGL","metric":"volume","value":31020400},{"date":"2025-09-26","symbol":"GOOGL","metric":"volume","value":18503200},{"date":"2025-09-29","symbol":"GOOGL","metric":"volume","value":32505800},{"date":"2025-09-30","symbol":"GOOGL","metric":"volume","value":34724300},{"date":"2025-10-01","symbol":"GOOGL","metric":"volume","value":31658200},{"date":"2025-10-02","symbol":"GOOGL","metric":"volume","value":25483300},{"date":"2025-10-03","symbol":"GOOGL","metric":"volume","value":30249600},{"date":"2025-10-06","symbol":"GOOGL","metric":"volume","value":28894700},{"date":"2025-10-07","symbol":"GOOGL","metric":"volume","value":23181300},{"date":"2025-10-08","symbol":"GOOGL","metric":"volume","value":21307100},{"date":"2025-10-09","symbol":"GOOGL","metric":"volume","value":27892100},{"date":"2025-10-10","symbol":"GOOGL","metric":"volume","value":33180300},{"date":"2025-10-13","symbol":"GOOGL","metric":"volume","value":24995000},{"date":"2025-10-14","symbol":"GOOGL","metric":"volume","value":22111600},{"date":"2025-10-15","symbol":"GOOGL","metric":"volume","value":27007700},{"date":"2025-10-16","symbol":"GOOGL","metric":"volume","value":27997200},{"date":"2025-10-17","symbol":"GOOGL","metric":"volume","value":29671600},{"date":"2025-10-20","symbol":"GOOGL","metric":"volume","value":22350200},{"date":"2025-10-21","symbol":"GOOGL","metric":"volume","value":47312100},{"date":"2025-10-22","symbol":"GOOGL","metric":"volume","value":35029400},{"date":"2025-10-23","symbol":"GOOGL","metric":"volume","value":19901400},{"date":"2025-10-24","symbol":"GOOGL","metric":"volume","value":28655100},{"date":"2025-10-27","symbol":"GOOGL","metric":"volume","value":35235200},{"date":"2025-10-28","symbol":"GOOGL","metric":"volume","value":29738600},{"date":"2025-10-29","symbol":"GOOGL","metric":"volume","value":43580300},{"date":"2025-10-30","symbol":"GOOGL","metric":"volume","value":74876000},{"date":"2025-10-31","symbol":"GOOGL","metric":"volume","value":39267900},{"date":"2025-11-03","symbol":"GOOGL","metric":"volume","value":29786000},{"date":"2025-11-04","symbol":"GOOGL","metric":"volume","value":30078400},{"date":"2025-11-05","symbol":"GOOGL","metric":"volume","value":31010300},{"date":"2025-11-06","symbol":"GOOGL","metric":"volume","value":37173600},{"date":"2025-11-07","symbol":"GOOGL","metric":"volume","value":34479600},{"date":"2025-11-10","symbol":"GOOGL","metric":"volume","value":29557300},{"date":"2025-11-11","symbol":"GOOGL","metric":"volume","value":19842100},{"date":"2025-11-12","symbol":"GOOGL","metric":"volume","value":24829900},{"date":"2025-11-13","symbol":"GOOGL","metric":"volume","value":29494000},{"date":"2025-11-14","symbol":"GOOGL","metric":"volume","value":31647200},{"date":"2025-11-17","symbol":"GOOGL","metric":"volume","value":52670200},{"date":"2025-11-18","symbol":"GOOGL","metric":"volume","value":49158700},{"date":"2025-11-19","symbol":"GOOGL","metric":"volume","value":68198900},{"date":"2025-11-20","symbol":"GOOGL","metric":"volume","value":62025200},{"date":"2025-11-21","symbol":"GOOGL","metric":"volume","value":74137700},{"date":"2025-11-24","symbol":"GOOGL","metric":"volume","value":85165100},{"date":"2025-11-25","symbol":"GOOGL","metric":"volume","value":88632100},{"date":"2025-11-26","symbol":"GOOGL","metric":"volume","value":51373400},{"date":"2025-11-28","symbol":"GOOGL","metric":"volume","value":26018600},{"date":"2025-12-01","symbol":"GOOGL","metric":"volume","value":41183000},{"date":"2025-12-02","symbol":"GOOGL","metric":"volume","value":35854700},{"date":"2025-12-03","symbol":"GOOGL","metric":"volume","value":41838300},{"date":"2025-12-04","symbol":"GOOGL","metric":"volume","value":31240900},{"date":"2025-12-05","symbol":"GOOGL","metric":"volume","value":28851700},{"date":"2025-12-08","symbol":"GOOGL","metric":"volume","value":33909400},{"date":"2025-12-09","symbol":"GOOGL","metric":"volume","value":30194000},{"date":"2025-12-10","symbol":"GOOGL","metric":"volume","value":33428900},{"date":"2025-12-11","symbol":"GOOGL","metric":"volume","value":42353700},{"date":"2025-12-12","symbol":"GOOGL","metric":"volume","value":35940200},{"date":"2025-12-15","symbol":"GOOGL","metric":"volume","value":29151900},{"date":"2025-12-16","symbol":"GOOGL","metric":"volume","value":30585000},{"date":"2025-12-17","symbol":"GOOGL","metric":"volume","value":43930400},{"date":"2025-12-18","symbol":"GOOGL","metric":"volume","value":33518000},{"date":"2025-12-19","symbol":"GOOGL","metric":"volume","value":59943200},{"date":"2025-12-22","symbol":"GOOGL","metric":"volume","value":26429900},{"date":"2025-12-23","symbol":"GOOGL","metric":"volume","value":25478700},{"date":"2025-12-24","symbol":"GOOGL","metric":"volume","value":10097400},{"date":"2025-12-26","symbol":"GOOGL","metric":"volume","value":10899000},{"date":"2025-12-29","symbol":"GOOGL","metric":"volume","value":19621800},{"date":"2025-12-30","symbol":"GOOGL","metric":"volume","value":17380900},{"date":"2025-12-31","symbol":"GOOGL","metric":"volume","value":16377700},{"date":"2026-01-02","symbol":"GOOGL","metric":"volume","value":32009400},{"date":"2026-01-05","symbol":"GOOGL","metric":"volume","value":30195600},{"date":"2026-01-06","symbol":"GOOGL","metric":"volume","value":31212100},{"date":"2026-01-07","symbol":"GOOGL","metric":"volume","value":35104400},{"date":"2026-01-08","symbol":"GOOGL","metric":"volume","value":31896100},{"date":"2026-01-09","symbol":"GOOGL","metric":"volume","value":26214200},{"date":"2026-01-12","symbol":"GOOGL","metric":"volume","value":33923900},{"date":"2026-01-13","symbol":"GOOGL","metric":"volume","value":33517600},{"date":"2026-01-14","symbol":"GOOGL","metric":"volume","value":28525600},{"date":"2026-01-15","symbol":"GOOGL","metric":"volume","value":28442400},{"date":"2026-01-16","symbol":"GOOGL","metric":"volume","value":40341600},{"date":"2026-01-20","symbol":"GOOGL","metric":"volume","value":35361000},{"date":"2026-01-21","symbol":"GOOGL","metric":"volume","value":35386600},{"date":"2026-01-22","symbol":"GOOGL","metric":"volume","value":26253600},{"date":"2026-01-23","symbol":"GOOGL","metric":"volume","value":27280000},{"date":"2026-01-26","symbol":"GOOGL","metric":"volume","value":26011100},{"date":"2025-07-31","symbol":"META","metric":"volume","value":38831100},{"date":"2025-08-01","symbol":"META","metric":"volume","value":19028700},{"date":"2025-08-04","symbol":"META","metric":"volume","value":15801700},{"date":"2025-08-05","symbol":"META","metric":"volume","value":11640300},{"date":"2025-08-06","symbol":"META","metric":"volume","value":9733900},{"date":"2025-08-07","symbol":"META","metric":"volume","value":9019700},{"date":"2025-08-08","symbol":"META","metric":"volume","value":7320800},{"date":"2025-08-11","symbol":"META","metric":"volume","value":7612000},{"date":"2025-08-12","symbol":"META","metric":"volume","value":14563100},{"date":"2025-08-13","symbol":"META","metric":"volume","value":8811800},{"date":"2025-08-14","symbol":"META","metric":"volume","value":8116200},{"date":"2025-08-15","symbol":"META","metric":"volume","value":13375400},{"date":"2025-08-18","symbol":"META","metric":"volume","value":16513700},{"date":"2025-08-19","symbol":"META","metric":"volume","value":12286700},{"date":"2025-08-20","symbol":"META","metric":"volume","value":11898200},{"date":"2025-08-21","symbol":"META","metric":"volume","value":8876300},{"date":"2025-08-22","symbol":"META","metric":"volume","value":10612700},{"date":"2025-08-25","symbol":"META","metric":"volume","value":6861200},{"date":"2025-08-26","symbol":"META","metric":"volume","value":7601800},{"date":"2025-08-27","symbol":"META","metric":"volume","value":8315400},{"date":"2025-08-28","symbol":"META","metric":"volume","value":7468000},{"date":"2025-08-29","symbol":"META","metric":"volume","value":9070500},{"date":"2025-09-02","symbol":"META","metric":"volume","value":9350900},{"date":"2025-09-03","symbol":"META","metric":"volume","value":7699300},{"date":"2025-09-04","symbol":"META","metric":"volume","value":11439100},{"date":"2025-09-05","symbol":"META","metric":"volume","value":9663400},{"date":"2025-09-08","symbol":"META","metric":"volume","value":13087800},{"date":"2025-09-09","symbol":"META","metric":"volume","value":10999000},{"date":"2025-09-10","symbol":"META","metric":"volume","value":12478300},{"date":"2025-09-11","symbol":"META","metric":"volume","value":7923300},{"date":"2025-09-12","symbol":"META","metric":"volume","value":8248600},{"date":"2025-09-15","symbol":"META","metric":"volume","value":10533800},{"date":"2025-09-16","symbol":"META","metric":"volume","value":11782500},{"date":"2025-09-17","symbol":"META","metric":"volume","value":9400900},{"date":"2025-09-18","symbol":"META","metric":"volume","value":10955000},{"date":"2025-09-19","symbol":"META","metric":"volume","value":23696800},{"date":"2025-09-22","symbol":"META","metric":"volume","value":11706900},{"date":"2025-09-23","symbol":"META","metric":"volume","value":10872600},{"date":"2025-09-24","symbol":"META","metric":"volume","value":8828200},{"date":"2025-09-25","symbol":"META","metric":"volume","value":10591100},{"date":"2025-09-26","symbol":"META","metric":"volume","value":9696300},{"date":"2025-09-29","symbol":"META","metric":"volume","value":9246800},{"date":"2025-09-30","symbol":"META","metric":"volume","value":16226800},{"date":"2025-10-01","symbol":"META","metric":"volume","value":20419600},{"date":"2025-10-02","symbol":"META","metric":"volume","value":11415300},{"date":"2025-10-03","symbol":"META","metric":"volume","value":16154300},{"date":"2025-10-06","symbol":"META","metric":"volume","value":21654700},{"date":"2025-10-07","symbol":"META","metric":"volume","value":12062900},{"date":"2025-10-08","symbol":"META","metric":"volume","value":10790600},{"date":"2025-10-09","symbol":"META","metric":"volume","value":12717200},{"date":"2025-10-10","symbol":"META","metric":"volume","value":16980100},{"date":"2025-10-13","symbol":"META","metric":"volume","value":9251800},{"date":"2025-10-14","symbol":"META","metric":"volume","value":8829800},{"date":"2025-10-15","symbol":"META","metric":"volume","value":10246800},{"date":"2025-10-16","symbol":"META","metric":"volume","value":9017000},{"date":"2025-10-17","symbol":"META","metric":"volume","value":12232400},{"date":"2025-10-20","symbol":"META","metric":"volume","value":8900200},{"date":"2025-10-21","symbol":"META","metric":"volume","value":7647300},{"date":"2025-10-22","symbol":"META","metric":"volume","value":8734500},{"date":"2025-10-23","symbol":"META","metric":"volume","value":9856000},{"date":"2025-10-24","symbol":"META","metric":"volume","value":9151300},{"date":"2025-10-27","symbol":"META","metric":"volume","value":11321100},{"date":"2025-10-28","symbol":"META","metric":"volume","value":12193800},{"date":"2025-10-29","symbol":"META","metric":"volume","value":26818600},{"date":"2025-10-30","symbol":"META","metric":"volume","value":88440100},{"date":"2025-10-31","symbol":"META","metric":"volume","value":56953200},{"date":"2025-11-03","symbol":"META","metric":"volume","value":33003600},{"date":"2025-11-04","symbol":"META","metric":"volume","value":27356600},{"date":"2025-11-05","symbol":"META","metric":"volume","value":20219900},{"date":"2025-11-06","symbol":"META","metric":"volume","value":23628800},{"date":"2025-11-07","symbol":"META","metric":"volume","value":29946800},{"date":"2025-11-10","symbol":"META","metric":"volume","value":19245000},{"date":"2025-11-11","symbol":"META","metric":"volume","value":13302200},{"date":"2025-11-12","symbol":"META","metric":"volume","value":24493300},{"date":"2025-11-13","symbol":"META","metric":"volume","value":20973800},{"date":"2025-11-14","symbol":"META","metric":"volume","value":20724100},{"date":"2025-11-17","symbol":"META","metric":"volume","value":16501300},{"date":"2025-11-18","symbol":"META","metric":"volume","value":25500600},{"date":"2025-11-19","symbol":"META","metric":"volume","value":24744700},{"date":"2025-11-20","symbol":"META","metric":"volume","value":20603000},{"date":"2025-11-21","symbol":"META","metric":"volume","value":21052600},{"date":"2025-11-24","symbol":"META","metric":"volume","value":23554900},{"date":"2025-11-25","symbol":"META","metric":"volume","value":25213000},{"date":"2025-11-26","symbol":"META","metric":"volume","value":15209500},{"date":"2025-11-28","symbol":"META","metric":"volume","value":11033200},{"date":"2025-12-01","symbol":"META","metric":"volume","value":13029900},{"date":"2025-12-02","symbol":"META","metric":"volume","value":11640900},{"date":"2025-12-03","symbol":"META","metric":"volume","value":11134300},{"date":"2025-12-04","symbol":"META","metric":"volume","value":29874600},{"date":"2025-12-05","symbol":"META","metric":"volume","value":21207900},{"date":"2025-12-08","symbol":"META","metric":"volume","value":13161000},{"date":"2025-12-09","symbol":"META","metric":"volume","value":12997100},{"date":"2025-12-10","symbol":"META","metric":"volume","value":16910900},{"date":"2025-12-11","symbol":"META","metric":"volume","value":13056700},{"date":"2025-12-12","symbol":"META","metric":"volume","value":14016900},{"date":"2025-12-15","symbol":"META","metric":"volume","value":15549100},{"date":"2025-12-16","symbol":"META","metric":"volume","value":14309100},{"date":"2025-12-17","symbol":"META","metric":"volume","value":15598500},{"date":"2025-12-18","symbol":"META","metric":"volume","value":20260300},{"date":"2025-12-19","symbol":"META","metric":"volume","value":49977100},{"date":"2025-12-22","symbol":"META","metric":"volume","value":15659400},{"date":"2025-12-23","symbol":"META","metric":"volume","value":8486800},{"date":"2025-12-24","symbol":"META","metric":"volume","value":5627500},{"date":"2025-12-26","symbol":"META","metric":"volume","value":7133800},{"date":"2025-12-29","symbol":"META","metric":"volume","value":8506500},{"date":"2025-12-30","symbol":"META","metric":"volume","value":9187500},{"date":"2025-12-31","symbol":"META","metric":"volume","value":7940400},{"date":"2026-01-02","symbol":"META","metric":"volume","value":13726500},{"date":"2026-01-05","symbol":"META","metric":"volume","value":12213700},{"date":"2026-01-06","symbol":"META","metric":"volume","value":11074400},{"date":"2026-01-07","symbol":"META","metric":"volume","value":12846300},{"date":"2026-01-08","symbol":"META","metric":"volume","value":11921700},{"date":"2026-01-09","symbol":"META","metric":"volume","value":11634900},{"date":"2026-01-12","symbol":"META","metric":"volume","value":14797200},{"date":"2026-01-13","symbol":"META","metric":"volume","value":18030400},{"date":"2026-01-14","symbol":"META","metric":"volume","value":15527900},{"date":"2026-01-15","symbol":"META","metric":"volume","value":13076100},{"date":"2026-01-16","symbol":"META","metric":"volume","value":17012500},{"date":"2026-01-20","symbol":"META","metric":"volume","value":15169600},{"date":"2026-01-21","symbol":"META","metric":"volume","value":14494700},{"date":"2026-01-22","symbol":"META","metric":"volume","value":21394700},{"date":"2026-01-23","symbol":"META","metric":"volume","value":22797700},{"date":"2026-01-26","symbol":"META","metric":"volume","value":16293000},{"date":"2025-07-31","symbol":"MSFT","metric":"volume","value":51617300},{"date":"2025-08-01","symbol":"MSFT","metric":"volume","value":28977600},{"date":"2025-08-04","symbol":"MSFT","metric":"volume","value":25349000},{"date":"2025-08-05","symbol":"MSFT","metric":"volume","value":19171600},{"date":"2025-08-06","symbol":"MSFT","metric":"volume","value":21355700},{"date":"2025-08-07","symbol":"MSFT","metric":"volume","value":16079100},{"date":"2025-08-08","symbol":"MSFT","metric":"volume","value":15531000},{"date":"2025-08-11","symbol":"MSFT","metric":"volume","value":20194400},{"date":"2025-08-12","symbol":"MSFT","metric":"volume","value":18667000},{"date":"2025-08-13","symbol":"MSFT","metric":"volume","value":19619200},{"date":"2025-08-14","symbol":"MSFT","metric":"volume","value":20269100},{"date":"2025-08-15","symbol":"MSFT","metric":"volume","value":25213300},{"date":"2025-08-18","symbol":"MSFT","metric":"volume","value":23760600},{"date":"2025-08-19","symbol":"MSFT","metric":"volume","value":21481000},{"date":"2025-08-20","symbol":"MSFT","metric":"volume","value":27723000},{"date":"2025-08-21","symbol":"MSFT","metric":"volume","value":18443300},{"date":"2025-08-22","symbol":"MSFT","metric":"volume","value":24324200},{"date":"2025-08-25","symbol":"MSFT","metric":"volume","value":21638600},{"date":"2025-08-26","symbol":"MSFT","metric":"volume","value":30835700},{"date":"2025-08-27","symbol":"MSFT","metric":"volume","value":17277900},{"date":"2025-08-28","symbol":"MSFT","metric":"volume","value":18015600},{"date":"2025-08-29","symbol":"MSFT","metric":"volume","value":20961600},{"date":"2025-09-02","symbol":"MSFT","metric":"volume","value":18128000},{"date":"2025-09-03","symbol":"MSFT","metric":"volume","value":16345100},{"date":"2025-09-04","symbol":"MSFT","metric":"volume","value":15509500},{"date":"2025-09-05","symbol":"MSFT","metric":"volume","value":31994800},{"date":"2025-09-08","symbol":"MSFT","metric":"volume","value":16771000},{"date":"2025-09-09","symbol":"MSFT","metric":"volume","value":14410500},{"date":"2025-09-10","symbol":"MSFT","metric":"volume","value":21611800},{"date":"2025-09-11","symbol":"MSFT","metric":"volume","value":18881600},{"date":"2025-09-12","symbol":"MSFT","metric":"volume","value":23624900},{"date":"2025-09-15","symbol":"MSFT","metric":"volume","value":17143800},{"date":"2025-09-16","symbol":"MSFT","metric":"volume","value":19711900},{"date":"2025-09-17","symbol":"MSFT","metric":"volume","value":15816600},{"date":"2025-09-18","symbol":"MSFT","metric":"volume","value":18913700},{"date":"2025-09-19","symbol":"MSFT","metric":"volume","value":52474100},{"date":"2025-09-22","symbol":"MSFT","metric":"volume","value":20009300},{"date":"2025-09-23","symbol":"MSFT","metric":"volume","value":19799600},{"date":"2025-09-24","symbol":"MSFT","metric":"volume","value":13533700},{"date":"2025-09-25","symbol":"MSFT","metric":"volume","value":15786500},{"date":"2025-09-26","symbol":"MSFT","metric":"volume","value":16213100},{"date":"2025-09-29","symbol":"MSFT","metric":"volume","value":17617800},{"date":"2025-09-30","symbol":"MSFT","metric":"volume","value":19728200},{"date":"2025-10-01","symbol":"MSFT","metric":"volume","value":22632300},{"date":"2025-10-02","symbol":"MSFT","metric":"volume","value":21222900},{"date":"2025-10-03","symbol":"MSFT","metric":"volume","value":15112300},{"date":"2025-10-06","symbol":"MSFT","metric":"volume","value":21388600},{"date":"2025-10-07","symbol":"MSFT","metric":"volume","value":14615200},{"date":"2025-10-08","symbol":"MSFT","metric":"volume","value":13363400},{"date":"2025-10-09","symbol":"MSFT","metric":"volume","value":18343600},{"date":"2025-10-10","symbol":"MSFT","metric":"volume","value":24133800},{"date":"2025-10-13","symbol":"MSFT","metric":"volume","value":14284200},{"date":"2025-10-14","symbol":"MSFT","metric":"volume","value":14684300},{"date":"2025-10-15","symbol":"MSFT","metric":"volume","value":14694700},{"date":"2025-10-16","symbol":"MSFT","metric":"volume","value":15559600},{"date":"2025-10-17","symbol":"MSFT","metric":"volume","value":19867800},{"date":"2025-10-20","symbol":"MSFT","metric":"volume","value":14665600},{"date":"2025-10-21","symbol":"MSFT","metric":"volume","value":15586200},{"date":"2025-10-22","symbol":"MSFT","metric":"volume","value":18962700},{"date":"2025-10-23","symbol":"MSFT","metric":"volume","value":14023500},{"date":"2025-10-24","symbol":"MSFT","metric":"volume","value":15532400},{"date":"2025-10-27","symbol":"MSFT","metric":"volume","value":18734700},{"date":"2025-10-28","symbol":"MSFT","metric":"volume","value":29986700},{"date":"2025-10-29","symbol":"MSFT","metric":"volume","value":36023000},{"date":"2025-10-30","symbol":"MSFT","metric":"volume","value":41023100},{"date":"2025-10-31","symbol":"MSFT","metric":"volume","value":34006400},{"date":"2025-11-03","symbol":"MSFT","metric":"volume","value":22374700},{"date":"2025-11-04","symbol":"MSFT","metric":"volume","value":20958700},{"date":"2025-11-05","symbol":"MSFT","metric":"volume","value":23024300},{"date":"2025-11-06","symbol":"MSFT","metric":"volume","value":27406500},{"date":"2025-11-07","symbol":"MSFT","metric":"volume","value":24019800},{"date":"2025-11-10","symbol":"MSFT","metric":"volume","value":26101500},{"date":"2025-11-11","symbol":"MSFT","metric":"volume","value":17980000},{"date":"2025-11-12","symbol":"MSFT","metric":"volume","value":26574900},{"date":"2025-11-13","symbol":"MSFT","metric":"volume","value":25273100},{"date":"2025-11-14","symbol":"MSFT","metric":"volume","value":28505700},{"date":"2025-11-17","symbol":"MSFT","metric":"volume","value":19092800},{"date":"2025-11-18","symbol":"MSFT","metric":"volume","value":33815100},{"date":"2025-11-19","symbol":"MSFT","metric":"volume","value":23245300},{"date":"2025-11-20","symbol":"MSFT","metric":"volume","value":26802500},{"date":"2025-11-21","symbol":"MSFT","metric":"volume","value":31769200},{"date":"2025-11-24","symbol":"MSFT","metric":"volume","value":34421000},{"date":"2025-11-25","symbol":"MSFT","metric":"volume","value":28019800},{"date":"2025-11-26","symbol":"MSFT","metric":"volume","value":25709100},{"date":"2025-11-28","symbol":"MSFT","metric":"volume","value":14386700},{"date":"2025-12-01","symbol":"MSFT","metric":"volume","value":23964000},{"date":"2025-12-02","symbol":"MSFT","metric":"volume","value":19562700},{"date":"2025-12-03","symbol":"MSFT","metric":"volume","value":34615100},{"date":"2025-12-04","symbol":"MSFT","metric":"volume","value":22318200},{"date":"2025-12-05","symbol":"MSFT","metric":"volume","value":22608700},{"date":"2025-12-08","symbol":"MSFT","metric":"volume","value":21965900},{"date":"2025-12-09","symbol":"MSFT","metric":"volume","value":14696100},{"date":"2025-12-10","symbol":"MSFT","metric":"volume","value":35756200},{"date":"2025-12-11","symbol":"MSFT","metric":"volume","value":24669200},{"date":"2025-12-12","symbol":"MSFT","metric":"volume","value":21248100},{"date":"2025-12-15","symbol":"MSFT","metric":"volume","value":23727700},{"date":"2025-12-16","symbol":"MSFT","metric":"volume","value":20705600},{"date":"2025-12-17","symbol":"MSFT","metric":"volume","value":24527200},{"date":"2025-12-18","symbol":"MSFT","metric":"volume","value":28573500},{"date":"2025-12-19","symbol":"MSFT","metric":"volume","value":70836100},{"date":"2025-12-22","symbol":"MSFT","metric":"volume","value":16963000},{"date":"2025-12-23","symbol":"MSFT","metric":"volume","value":14683600},{"date":"2025-12-24","symbol":"MSFT","metric":"volume","value":5855900},{"date":"2025-12-26","symbol":"MSFT","metric":"volume","value":8842200},{"date":"2025-12-29","symbol":"MSFT","metric":"volume","value":10893400},{"date":"2025-12-30","symbol":"MSFT","metric":"volume","value":13944500},{"date":"2025-12-31","symbol":"MSFT","metric":"volume","value":15601600},{"date":"2026-01-02","symbol":"MSFT","metric":"volume","value":25571600},{"date":"2026-01-05","symbol":"MSFT","metric":"volume","value":25250300},{"date":"2026-01-06","symbol":"MSFT","metric":"volume","value":23037700},{"date":"2026-01-07","symbol":"MSFT","metric":"volume","value":25564200},{"date":"2026-01-08","symbol":"MSFT","metric":"volume","value":18162600},{"date":"2026-01-09","symbol":"MSFT","metric":"volume","value":18491000},{"date":"2026-01-12","symbol":"MSFT","metric":"volume","value":23519900},{"date":"2026-01-13","symbol":"MSFT","metric":"volume","value":28545800},{"date":"2026-01-14","symbol":"MSFT","metric":"volume","value":28184300},{"date":"2026-01-15","symbol":"MSFT","metric":"volume","value":23225800},{"date":"2026-01-16","symbol":"MSFT","metric":"volume","value":34246700},{"date":"2026-01-20","symbol":"MSFT","metric":"volume","value":26130000},{"date":"2026-01-21","symbol":"MSFT","metric":"volume","value":37980500},{"date":"2026-01-22","symbol":"MSFT","metric":"volume","value":25349400},{"date":"2026-01-23","symbol":"MSFT","metric":"volume","value":38000200},{"date":"2026-01-26","symbol":"MSFT","metric":"volume","value":29247100},{"date":"2025-07-31","symbol":"NVDA","metric":"volume","value":221685400},{"date":"2025-08-01","symbol":"NVDA","metric":"volume","value":204529000},{"date":"2025-08-04","symbol":"NVDA","metric":"volume","value":148174600},{"date":"2025-08-05","symbol":"NVDA","metric":"volume","value":156407600},{"date":"2025-08-06","symbol":"NVDA","metric":"volume","value":137192300},{"date":"2025-08-07","symbol":"NVDA","metric":"volume","value":151878400},{"date":"2025-08-08","symbol":"NVDA","metric":"volume","value":123396700},{"date":"2025-08-11","symbol":"NVDA","metric":"volume","value":138323200},{"date":"2025-08-12","symbol":"NVDA","metric":"volume","value":145485700},{"date":"2025-08-13","symbol":"NVDA","metric":"volume","value":179871700},{"date":"2025-08-14","symbol":"NVDA","metric":"volume","value":129554000},{"date":"2025-08-15","symbol":"NVDA","metric":"volume","value":156602200},{"date":"2025-08-18","symbol":"NVDA","metric":"volume","value":132008000},{"date":"2025-08-19","symbol":"NVDA","metric":"volume","value":185229200},{"date":"2025-08-20","symbol":"NVDA","metric":"volume","value":215142700},{"date":"2025-08-21","symbol":"NVDA","metric":"volume","value":140040900},{"date":"2025-08-22","symbol":"NVDA","metric":"volume","value":172789400},{"date":"2025-08-25","symbol":"NVDA","metric":"volume","value":163012800},{"date":"2025-08-26","symbol":"NVDA","metric":"volume","value":168688200},{"date":"2025-08-27","symbol":"NVDA","metric":"volume","value":235518900},{"date":"2025-08-28","symbol":"NVDA","metric":"volume","value":281787800},{"date":"2025-08-29","symbol":"NVDA","metric":"volume","value":243257900},{"date":"2025-09-02","symbol":"NVDA","metric":"volume","value":231164900},{"date":"2025-09-03","symbol":"NVDA","metric":"volume","value":164424900},{"date":"2025-09-04","symbol":"NVDA","metric":"volume","value":141670100},{"date":"2025-09-05","symbol":"NVDA","metric":"volume","value":224441400},{"date":"2025-09-08","symbol":"NVDA","metric":"volume","value":163769100},{"date":"2025-09-09","symbol":"NVDA","metric":"volume","value":157548400},{"date":"2025-09-10","symbol":"NVDA","metric":"volume","value":226852000},{"date":"2025-09-11","symbol":"NVDA","metric":"volume","value":151159300},{"date":"2025-09-12","symbol":"NVDA","metric":"volume","value":124911000},{"date":"2025-09-15","symbol":"NVDA","metric":"volume","value":147061600},{"date":"2025-09-16","symbol":"NVDA","metric":"volume","value":140737800},{"date":"2025-09-17","symbol":"NVDA","metric":"volume","value":211843800},{"date":"2025-09-18","symbol":"NVDA","metric":"volume","value":191763300},{"date":"2025-09-19","symbol":"NVDA","metric":"volume","value":237182100},{"date":"2025-09-22","symbol":"NVDA","metric":"volume","value":269637000},{"date":"2025-09-23","symbol":"NVDA","metric":"volume","value":192559600},{"date":"2025-09-24","symbol":"NVDA","metric":"volume","value":143564100},{"date":"2025-09-25","symbol":"NVDA","metric":"volume","value":191586700},{"date":"2025-09-26","symbol":"NVDA","metric":"volume","value":148573700},{"date":"2025-09-29","symbol":"NVDA","metric":"volume","value":193063500},{"date":"2025-09-30","symbol":"NVDA","metric":"volume","value":236981000},{"date":"2025-10-01","symbol":"NVDA","metric":"volume","value":173844900},{"date":"2025-10-02","symbol":"NVDA","metric":"volume","value":136805800},{"date":"2025-10-03","symbol":"NVDA","metric":"volume","value":137596900},{"date":"2025-10-06","symbol":"NVDA","metric":"volume","value":157678100},{"date":"2025-10-07","symbol":"NVDA","metric":"volume","value":140088000},{"date":"2025-10-08","symbol":"NVDA","metric":"volume","value":130168900},{"date":"2025-10-09","symbol":"NVDA","metric":"volume","value":182997200},{"date":"2025-10-10","symbol":"NVDA","metric":"volume","value":268774400},{"date":"2025-10-13","symbol":"NVDA","metric":"volume","value":153482800},{"date":"2025-10-14","symbol":"NVDA","metric":"volume","value":205641400},{"date":"2025-10-15","symbol":"NVDA","metric":"volume","value":214450500},{"date":"2025-10-16","symbol":"NVDA","metric":"volume","value":179723300},{"date":"2025-10-17","symbol":"NVDA","metric":"volume","value":173135200},{"date":"2025-10-20","symbol":"NVDA","metric":"volume","value":128544700},{"date":"2025-10-21","symbol":"NVDA","metric":"volume","value":124240200},{"date":"2025-10-22","symbol":"NVDA","metric":"volume","value":162249600},{"date":"2025-10-23","symbol":"NVDA","metric":"volume","value":111363700},{"date":"2025-10-24","symbol":"NVDA","metric":"volume","value":131296700},{"date":"2025-10-27","symbol":"NVDA","metric":"volume","value":153452700},{"date":"2025-10-28","symbol":"NVDA","metric":"volume","value":297986200},{"date":"2025-10-29","symbol":"NVDA","metric":"volume","value":308829600},{"date":"2025-10-30","symbol":"NVDA","metric":"volume","value":178864400},{"date":"2025-10-31","symbol":"NVDA","metric":"volume","value":179802200},{"date":"2025-11-03","symbol":"NVDA","metric":"volume","value":180267300},{"date":"2025-11-04","symbol":"NVDA","metric":"volume","value":188919300},{"date":"2025-11-05","symbol":"NVDA","metric":"volume","value":171350300},{"date":"2025-11-06","symbol":"NVDA","metric":"volume","value":223029800},{"date":"2025-11-07","symbol":"NVDA","metric":"volume","value":264942300},{"date":"2025-11-10","symbol":"NVDA","metric":"volume","value":198897100},{"date":"2025-11-11","symbol":"NVDA","metric":"volume","value":176483300},{"date":"2025-11-12","symbol":"NVDA","metric":"volume","value":154935300},{"date":"2025-11-13","symbol":"NVDA","metric":"volume","value":207423100},{"date":"2025-11-14","symbol":"NVDA","metric":"volume","value":186591900},{"date":"2025-11-17","symbol":"NVDA","metric":"volume","value":173628900},{"date":"2025-11-18","symbol":"NVDA","metric":"volume","value":213598900},{"date":"2025-11-19","symbol":"NVDA","metric":"volume","value":247246400},{"date":"2025-11-20","symbol":"NVDA","metric":"volume","value":343504800},{"date":"2025-11-21","symbol":"NVDA","metric":"volume","value":346926200},{"date":"2025-11-24","symbol":"NVDA","metric":"volume","value":256618300},{"date":"2025-11-25","symbol":"NVDA","metric":"volume","value":320600300},{"date":"2025-11-26","symbol":"NVDA","metric":"volume","value":183852000},{"date":"2025-11-28","symbol":"NVDA","metric":"volume","value":121332800},{"date":"2025-12-01","symbol":"NVDA","metric":"volume","value":188131000},{"date":"2025-12-02","symbol":"NVDA","metric":"volume","value":182632200},{"date":"2025-12-03","symbol":"NVDA","metric":"volume","value":165138000},{"date":"2025-12-04","symbol":"NVDA","metric":"volume","value":167364900},{"date":"2025-12-05","symbol":"NVDA","metric":"volume","value":143971100},{"date":"2025-12-08","symbol":"NVDA","metric":"volume","value":204378100},{"date":"2025-12-09","symbol":"NVDA","metric":"volume","value":144719700},{"date":"2025-12-10","symbol":"NVDA","metric":"volume","value":162785400},{"date":"2025-12-11","symbol":"NVDA","metric":"volume","value":182136600},{"date":"2025-12-12","symbol":"NVDA","metric":"volume","value":204274900},{"date":"2025-12-15","symbol":"NVDA","metric":"volume","value":164775600},{"date":"2025-12-16","symbol":"NVDA","metric":"volume","value":148588100},{"date":"2025-12-17","symbol":"NVDA","metric":"volume","value":222775500},{"date":"2025-12-18","symbol":"NVDA","metric":"volume","value":176096000},{"date":"2025-12-19","symbol":"NVDA","metric":"volume","value":324925900},{"date":"2025-12-22","symbol":"NVDA","metric":"volume","value":129064400},{"date":"2025-12-23","symbol":"NVDA","metric":"volume","value":174873600},{"date":"2025-12-24","symbol":"NVDA","metric":"volume","value":65528500},{"date":"2025-12-26","symbol":"NVDA","metric":"volume","value":139740300},{"date":"2025-12-29","symbol":"NVDA","metric":"volume","value":120006100},{"date":"2025-12-30","symbol":"NVDA","metric":"volume","value":97687300},{"date":"2025-12-31","symbol":"NVDA","metric":"volume","value":120100500},{"date":"2026-01-02","symbol":"NVDA","metric":"volume","value":148240500},{"date":"2026-01-05","symbol":"NVDA","metric":"volume","value":183529700},{"date":"2026-01-06","symbol":"NVDA","metric":"volume","value":176862600},{"date":"2026-01-07","symbol":"NVDA","metric":"volume","value":153543200},{"date":"2026-01-08","symbol":"NVDA","metric":"volume","value":172457000},{"date":"2026-01-09","symbol":"NVDA","metric":"volume","value":131327500},{"date":"2026-01-12","symbol":"NVDA","metric":"volume","value":137968500},{"date":"2026-01-13","symbol":"NVDA","metric":"volume","value":160128900},{"date":"2026-01-14","symbol":"NVDA","metric":"volume","value":159586100},{"date":"2026-01-15","symbol":"NVDA","metric":"volume","value":206188600},{"date":"2026-01-16","symbol":"NVDA","metric":"volume","value":187967200},{"date":"2026-01-20","symbol":"NVDA","metric":"volume","value":223345300},{"date":"2026-01-21","symbol":"NVDA","metric":"volume","value":200381000},{"date":"2026-01-22","symbol":"NVDA","metric":"volume","value":139636600},{"date":"2026-01-23","symbol":"NVDA","metric":"volume","value":142748100},{"date":"2026-01-26","symbol":"NVDA","metric":"volume","value":124489200}],"metadata":{"date":{"type":"date","semanticType":"Date"},"symbol":{"type":"string","semanticType":"String"},"metric":{"type":"string","semanticType":"String"},"value":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Keep only necessary columns\n cols = [c for c in [\"date\", \"symbol\", \"close\", \"volume\"] if c in df_history.columns]\n df = df_history[cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for time-series operations\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n # Compute daily returns as pct_change of close within each symbol\n df[\"return\"] = df.groupby(\"symbol\")[\"close\"].pct_change()\n\n # Compute 20-day rolling volatility (std of returns) within each symbol\n df[\"vol20\"] = (\n df.groupby(\"symbol\")[\"return\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).std())\n )\n\n # Reshape to long format: metrics = return, vol20, volume\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\"],\n value_vars=[\"return\", \"vol20\", \"volume\"],\n var_name=\"metric\",\n value_name=\"value\",\n )\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"metric\", \"value\"]].reset_index(drop=True)\n return transformed_df\n","source":["history"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"input_tables\": [...] // string[], describe names of the input tables that will be used in the transformation.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", 'boxplot'. \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"input_tables\", the names of a subset of input tables from [CONTEXT] section that will be used to achieve the user's goal.\n - **IMPORTANT** Note that the Table 1 in [CONTEXT] section is the table the user is currently viewing, it should take precedence if the user refers to insights about the \"current table\".\n - At the same time, leverage table information to determine which tables are relevant to the user's goal and should be used.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", \"boxplot\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - boxplot: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - (boxplot) Box plots: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical (optional for creating grouped boxplots), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the boxplot will be grouped automatically (items with the same x values will be grouped).\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE]. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n# from sklearn import ... # import from sklearn if you need it.\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- decide the function signature based on the number of tables you decided in the previous step \"input_tables\":\n - if you decide there will only be one input table, then function signature should be `def transform_data(df1)`\n - if you decided there will be k input tables, then function signature should be `def transform_data(df_1, df_2, ..., df_k)`.\n - instead of using generic names like df1, df2, ..., try to use intuitive table names for function arguments, for example, if you have input_tables: [\"City\", \"Weather\"]`, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes.\n - **VERY IMPORTANT** the number of arguments in the function signature must be the same as the number of tables provided in \"input_tables\", and the order of arguments must match the order of tables provided in \"input_tables\".\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[GOAL]\n\n1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compare overall closing price trends and volatility over time for each stock symbol on a single line chart.\",\n \"display_instruction\": \"Visualize **closing price** trends by **symbol** over **date**\",\n \"recommendation\": \"A line chart with time on the x-axis and closing price on the y-axis, colored by symbol, best shows comparative trajectories and volatility over time. The data only needs column selection, date normalization, and sorting to be visualization-ready.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date symbol close\n0 2025-07-30 AAPL 208.61\n1 2025-07-31 AAPL 207.13\n2 2025-08-01 AAPL 201.95\n3 2025-08-04 AAPL 202.92\n4 2025-08-05 AAPL 202.49\n5 2025-08-06 AAPL 212.80\n6 2025-08-07 AAPL 219.57\n7 2025-08-08 AAPL 228.87\n8 2025-08-11 AAPL 226.96\n9 2025-08-12 AAPL 229.43\n......\n\nUpdate the code above based on the following instruction:\n\n2) For each symbol, compute 20-day and 60-day rolling averages of close price (columns: date, symbol, value, ma_window with values 20 or 60) and plot them over time alongside the actual close to compare short- vs long-term trends and reversals."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compute 20-day and 60-day rolling averages of closing prices for each symbol in tidy format for plotting alongside actual closes over time.\",\n \"display_instruction\": \"Add **20/60-day moving averages** of **close** by **symbol** over **date**\",\n \"recommendation\": \"To compare short- and long-term trends per symbol, compute 20- and 60-day rolling means of close, reshape them into a long format with one row per date-symbol-window, and keep the original close for plotting alongside the moving averages.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"ma_window\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy\n df = df_history.copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Group by symbol and compute rolling means on close\n group = df.groupby(\"symbol\", group_keys=False)[\"close\"]\n df[\"ma_20\"] = group.rolling(20, min_periods=1).mean()\n df[\"ma_60\"] = group.rolling(60, min_periods=1).mean()\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map)\n\n # Ensure correct column order and types\n df_long[\"ma_window\"] = df_long[\"ma_window\"].astype(int)\n\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\nEmpty DataFrame\nColumns: []\nIndex: []\n......\n\nUpdate the code above based on the following instruction:\n\nWe run into the following problem executing the code, please fix it:\n\nError: TypeError - incompatible index of inserted column with frame index\n\nPlease think step by step, reflect why the error happens and fix the code so that no more errors would occur."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compute 20-day and 60-day rolling averages of closing prices for each symbol in tidy format for plotting alongside actual closes over time.\",\n \"display_instruction\": \"Compute **20/60-day moving averages** of **close** by **symbol** over **date**\",\n \"recommendation\": \"The previous implementation used groupby().rolling() and assigned the result directly to new columns, which can create an index mismatch and raise a TypeError. Using groupby().transform(...) with an inner rolling mean keeps the index aligned with the original DataFrame, avoiding incompatible index issues. After computing the moving averages, reshape to long format for visualization.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"ma_window\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy and keep only needed columns if present\n base_cols = [c for c in [\"date\", \"symbol\", \"close\"] if c in df_history.columns]\n df = df_history[base_cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Ensure we have a clean, simple index to avoid alignment issues\n df = df.reset_index(drop=True)\n\n # Compute rolling means using transform to preserve index alignment\n df[\"ma_20\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).mean())\n )\n df[\"ma_60\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=60, min_periods=1).mean())\n )\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map).astype(int)\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date symbol close value ma_window\n0 2025-07-30 AAPL 208.61 208.610000 20\n1 2025-07-31 AAPL 207.13 207.870000 20\n2 2025-08-01 AAPL 201.95 205.896667 20\n3 2025-08-04 AAPL 202.92 205.152500 20\n4 2025-08-05 AAPL 202.49 204.620000 20\n5 2025-08-06 AAPL 212.80 205.983333 20\n6 2025-08-07 AAPL 219.57 207.924286 20\n7 2025-08-08 AAPL 228.87 210.542500 20\n8 2025-08-11 AAPL 226.96 212.366667 20\n9 2025-08-12 AAPL 229.43 214.073000 20\n......\n\nUpdate the code above based on the following instruction:\n\n3) For each symbol, compute daily returns as pct_change of close, then 20-day rolling volatility as the rolling std of these returns; keep volume. Reshape to long format with columns [date, symbol, metric, value], where metric ∈ {\"return\", \"vol20\", \"volume\"}, and visualize over time (e.g., faceted by symbol with separate lines for each metric) to highlight periods of strong trends with elevated volatility or volume."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compute daily returns and 20-day rolling volatility for each symbol, keep volume, and reshape to a long format for multi-metric time-series visualization.\",\n \"display_instruction\": \"Show **daily return**, **20-day volatility**, and **volume** by **symbol** over **date**\",\n \"recommendation\": \"To highlight periods of strong trends with elevated volatility or volume, compute per-symbol daily returns as pct_change of close and 20-day rolling volatility as the rolling standard deviation of those returns. Keep volume, then reshape into a long table with one metric per row so time-series lines for return, volatility, and volume can be plotted and compared per symbol.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"metric\", \"value\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"metric\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Keep only necessary columns\n cols = [c for c in [\"date\", \"symbol\", \"close\", \"volume\"] if c in df_history.columns]\n df = df_history[cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for time-series operations\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n # Compute daily returns as pct_change of close within each symbol\n df[\"return\"] = df.groupby(\"symbol\")[\"close\"].pct_change()\n\n # Compute 20-day rolling volatility (std of returns) within each symbol\n df[\"vol20\"] = (\n df.groupby(\"symbol\")[\"return\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).std())\n )\n\n # Reshape to long format: metrics = return, vol20, volume\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\"],\n value_vars=[\"return\", \"vol20\", \"volume\"],\n var_name=\"metric\",\n value_name=\"value\",\n )\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"metric\", \"value\"]].reset_index(drop=True)\n return transformed_df\n```"}],"trigger":{"tableId":"table-265247","sourceTableIds":["history"],"instruction":"3) For each symbol, compute daily returns as pct_change of close, then 20-day rolling volatility as the rolling std of these returns; keep volume. Reshape to long format with columns [date, symbol, metric, value], where metric ∈ {\"return\", \"vol20\", \"volume\"}, and visualize over time (e.g., faceted by symbol with separate lines for each metric) to highlight periods of strong trends with elevated volatility or volume.","displayInstruction":"Show **daily return**, **20-day volatility**, and **volume** by **symbol** over **date**","chart":{"id":"chart-1769471280073","chartType":"Auto","encodingMap":{},"tableRef":"history","saved":false,"source":"trigger","unread":true},"resultTableId":"table-277926"},"explanation":{"status":"ok","concepts":[{"field":"return","explanation":"Daily return measures how much the closing price changes in percentage terms from one trading day to the next for the same symbol. For day t, return_t = (Close_t - Close_{t-1}) / Close_{t-1}."},{"field":"vol20","explanation":"20-day rolling volatility is a short-term risk measure that summarizes how much the daily returns have fluctuated over roughly the past month. For each date, vol20 is the standard deviation of the last up-to-20 'return' values for that symbol; higher vol20 indicates more unstable (more volatile) recent price movements."},{"field":"metric, value","explanation":"These two fields reorganize different measures into a single tidy structure: 'metric' tells you which quantity is being reported (return, vol20, or volume), and 'value' stores the corresponding number. This makes it easy to filter and compare different metrics in the same table."},{"field":"Statistical Analysis","explanation":"The transformation introduces two statistical concepts: (1) daily returns, which quantify relative price changes over time, and (2) rolling volatility, which applies a moving standard deviation to recent returns to estimate short-term risk. The model is implicit: for each symbol, returns are treated as a time series, and volatility is computed over a 20-day rolling window. Other possible analyses on this data could include moving averages of price or volume, exponential moving volatility, correlation between different symbols' returns, or time-series models such as ARIMA or GARCH to forecast returns and volatility."}],"code":"- **Selects** only the key fields from the original data: **\"date\"**, **\"symbol\"**, **\"close\"**, and **\"volume\"**.\n- **Standardizes** the **\"date\"** format to **\"YYYY-MM-DD\"** so all dates are consistent.\n- **Sorts** the data by **\"symbol\"** and then by **\"date\"** to put each stock’s prices in correct time order.\n- For each **symbol**, **calculates daily price change**:\n - Adds a new field **\"return\"** = the **percentage change of the closing price** from the previous trading day for that same symbol.\n- For each **symbol**, **measures recent risk/variability**:\n - Adds a new field **\"vol20\"** = the **20‑day rolling volatility**, i.e., the **standard deviation of the last up-to-20 daily returns** (a larger value means the stock has been more volatile recently).\n- **Restructures** the data into a “long” tidy format:\n - Keeps **\"date\"** and **\"symbol\"**.\n - Converts the three measures **\"return\"**, **\"vol20\"**, and **\"volume\"** into rows under a single **\"metric\"** column, with their numbers stored in a **\"value\"** column.\n- **Outputs** a clean table with columns **\"date\"**, **\"symbol\"**, **\"metric\"**, and **\"value\"**, where each row represents **one metric for one stock on one date**.","dialog":[{"role":"system","content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n"},{"role":"user","content":"[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Keep only necessary columns\n cols = [c for c in [\"date\", \"symbol\", \"close\", \"volume\"] if c in df_history.columns]\n df = df_history[cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for time-series operations\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n # Compute daily returns as pct_change of close within each symbol\n df[\"return\"] = df.groupby(\"symbol\")[\"close\"].pct_change()\n\n # Compute 20-day rolling volatility (std of returns) within each symbol\n df[\"vol20\"] = (\n df.groupby(\"symbol\")[\"return\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).std())\n )\n\n # Reshape to long format: metrics = return, vol20, volume\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\"],\n value_vars=[\"return\", \"vol20\", \"volume\"],\n var_name=\"metric\",\n value_name=\"value\",\n )\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"metric\", \"value\"]].reset_index(drop=True)\n return transformed_df\n\n\n[EXPLANATION]\n"},{"role":"assistant","content":"[CODE EXPLANATION]\n\n- **Selects** only the key fields from the original data: **\"date\"**, **\"symbol\"**, **\"close\"**, and **\"volume\"**.\n- **Standardizes** the **\"date\"** format to **\"YYYY-MM-DD\"** so all dates are consistent.\n- **Sorts** the data by **\"symbol\"** and then by **\"date\"** to put each stock’s prices in correct time order.\n- For each **symbol**, **calculates daily price change**:\n - Adds a new field **\"return\"** = the **percentage change of the closing price** from the previous trading day for that same symbol.\n- For each **symbol**, **measures recent risk/variability**:\n - Adds a new field **\"vol20\"** = the **20‑day rolling volatility**, i.e., the **standard deviation of the last up-to-20 daily returns** (a larger value means the stock has been more volatile recently).\n- **Restructures** the data into a “long” tidy format:\n - Keeps **\"date\"** and **\"symbol\"**.\n - Converts the three measures **\"return\"**, **\"vol20\"**, and **\"volume\"** into rows under a single **\"metric\"** column, with their numbers stored in a **\"value\"** column.\n- **Outputs** a clean table with columns **\"date\"**, **\"symbol\"**, **\"metric\"**, and **\"value\"**, where each row represents **one metric for one stock on one date**.\n\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"return\",\n \"explanation\": \"Daily return measures how much the closing price changes in percentage terms from one trading day to the next for the same symbol. For day t, return_t = (Close_t - Close_{t-1}) / Close_{t-1}.\"\n },\n {\n \"field\": \"vol20\",\n \"explanation\": \"20-day rolling volatility is a short-term risk measure that summarizes how much the daily returns have fluctuated over roughly the past month. For each date, vol20 is the standard deviation of the last up-to-20 'return' values for that symbol; higher vol20 indicates more unstable (more volatile) recent price movements.\"\n },\n {\n \"field\": \"metric, value\",\n \"explanation\": \"These two fields reorganize different measures into a single tidy structure: 'metric' tells you which quantity is being reported (return, vol20, or volume), and 'value' stores the corresponding number. This makes it easy to filter and compare different metrics in the same table.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"The transformation introduces two statistical concepts: (1) daily returns, which quantify relative price changes over time, and (2) rolling volatility, which applies a moving standard deviation to recent returns to estimate short-term risk. The model is implicit: for each symbol, returns are treated as a time series, and volatility is computed over a 20-day rolling window. Other possible analyses on this data could include moving averages of price or volume, exponential moving volatility, correlation between different symbols' returns, or time-series models such as ARIMA or GARCH to forecast returns and volatility.\"\n }\n]\n```"}],"agent":"CodeExplanationAgent"}},"anchored":false,"createdBy":"user","attachedMetadata":"","contentHash":"d0e7201e"},{"id":"table-457008","displayId":"stock-close1","names":["date","symbol","close"],"rows":[{"date":"2025-07-31","symbol":"GOOGL","close":191.6},{"date":"2025-08-01","symbol":"GOOGL","close":188.84},{"date":"2025-08-04","symbol":"GOOGL","close":194.74},{"date":"2025-08-05","symbol":"GOOGL","close":194.37},{"date":"2025-08-06","symbol":"GOOGL","close":195.79},{"date":"2025-08-07","symbol":"GOOGL","close":196.22},{"date":"2025-08-08","symbol":"GOOGL","close":201.11},{"date":"2025-08-11","symbol":"GOOGL","close":200.69},{"date":"2025-08-12","symbol":"GOOGL","close":203.03},{"date":"2025-08-13","symbol":"GOOGL","close":201.65},{"date":"2025-08-14","symbol":"GOOGL","close":202.63},{"date":"2025-08-15","symbol":"GOOGL","close":203.58},{"date":"2025-08-18","symbol":"GOOGL","close":203.19},{"date":"2025-08-19","symbol":"GOOGL","close":201.26},{"date":"2025-08-20","symbol":"GOOGL","close":199.01},{"date":"2025-08-21","symbol":"GOOGL","close":199.44},{"date":"2025-08-22","symbol":"GOOGL","close":205.77},{"date":"2025-08-25","symbol":"GOOGL","close":208.17},{"date":"2025-08-26","symbol":"GOOGL","close":206.82},{"date":"2025-08-27","symbol":"GOOGL","close":207.16},{"date":"2025-08-28","symbol":"GOOGL","close":211.31},{"date":"2025-08-29","symbol":"GOOGL","close":212.58},{"date":"2025-09-02","symbol":"GOOGL","close":211.02},{"date":"2025-09-03","symbol":"GOOGL","close":230.3},{"date":"2025-09-04","symbol":"GOOGL","close":231.94},{"date":"2025-09-05","symbol":"GOOGL","close":234.64},{"date":"2025-09-08","symbol":"GOOGL","close":233.89},{"date":"2025-09-09","symbol":"GOOGL","close":239.47},{"date":"2025-09-10","symbol":"GOOGL","close":239.01},{"date":"2025-09-11","symbol":"GOOGL","close":240.21},{"date":"2025-09-12","symbol":"GOOGL","close":240.64},{"date":"2025-09-15","symbol":"GOOGL","close":251.45},{"date":"2025-09-16","symbol":"GOOGL","close":251},{"date":"2025-09-17","symbol":"GOOGL","close":249.37},{"date":"2025-09-18","symbol":"GOOGL","close":251.87},{"date":"2025-09-19","symbol":"GOOGL","close":254.55},{"date":"2025-09-22","symbol":"GOOGL","close":252.36},{"date":"2025-09-23","symbol":"GOOGL","close":251.5},{"date":"2025-09-24","symbol":"GOOGL","close":246.98},{"date":"2025-09-25","symbol":"GOOGL","close":245.63},{"date":"2025-09-26","symbol":"GOOGL","close":246.38},{"date":"2025-09-29","symbol":"GOOGL","close":243.89},{"date":"2025-09-30","symbol":"GOOGL","close":242.94},{"date":"2025-10-01","symbol":"GOOGL","close":244.74},{"date":"2025-10-02","symbol":"GOOGL","close":245.53},{"date":"2025-10-03","symbol":"GOOGL","close":245.19},{"date":"2025-10-06","symbol":"GOOGL","close":250.27},{"date":"2025-10-07","symbol":"GOOGL","close":245.6},{"date":"2025-10-08","symbol":"GOOGL","close":244.46},{"date":"2025-10-09","symbol":"GOOGL","close":241.37},{"date":"2025-10-10","symbol":"GOOGL","close":236.42},{"date":"2025-10-13","symbol":"GOOGL","close":243.99},{"date":"2025-10-14","symbol":"GOOGL","close":245.29},{"date":"2025-10-15","symbol":"GOOGL","close":250.87},{"date":"2025-10-16","symbol":"GOOGL","close":251.3},{"date":"2025-10-17","symbol":"GOOGL","close":253.13},{"date":"2025-10-20","symbol":"GOOGL","close":256.38},{"date":"2025-10-21","symbol":"GOOGL","close":250.3},{"date":"2025-10-22","symbol":"GOOGL","close":251.53},{"date":"2025-10-23","symbol":"GOOGL","close":252.91},{"date":"2025-10-24","symbol":"GOOGL","close":259.75},{"date":"2025-10-27","symbol":"GOOGL","close":269.09},{"date":"2025-10-28","symbol":"GOOGL","close":267.3},{"date":"2025-10-29","symbol":"GOOGL","close":274.39},{"date":"2025-10-30","symbol":"GOOGL","close":281.3},{"date":"2025-10-31","symbol":"GOOGL","close":281.01},{"date":"2025-11-03","symbol":"GOOGL","close":283.53},{"date":"2025-11-04","symbol":"GOOGL","close":277.36},{"date":"2025-11-05","symbol":"GOOGL","close":284.12},{"date":"2025-11-06","symbol":"GOOGL","close":284.56},{"date":"2025-11-07","symbol":"GOOGL","close":278.65},{"date":"2025-11-10","symbol":"GOOGL","close":289.91},{"date":"2025-11-11","symbol":"GOOGL","close":291.12},{"date":"2025-11-12","symbol":"GOOGL","close":286.52},{"date":"2025-11-13","symbol":"GOOGL","close":278.39},{"date":"2025-11-14","symbol":"GOOGL","close":276.23},{"date":"2025-11-17","symbol":"GOOGL","close":284.83},{"date":"2025-11-18","symbol":"GOOGL","close":284.09},{"date":"2025-11-19","symbol":"GOOGL","close":292.62},{"date":"2025-11-20","symbol":"GOOGL","close":289.26},{"date":"2025-11-21","symbol":"GOOGL","close":299.46},{"date":"2025-11-24","symbol":"GOOGL","close":318.37},{"date":"2025-11-25","symbol":"GOOGL","close":323.23},{"date":"2025-11-26","symbol":"GOOGL","close":319.74},{"date":"2025-11-28","symbol":"GOOGL","close":319.97},{"date":"2025-12-01","symbol":"GOOGL","close":314.68},{"date":"2025-12-02","symbol":"GOOGL","close":315.6},{"date":"2025-12-03","symbol":"GOOGL","close":319.42},{"date":"2025-12-04","symbol":"GOOGL","close":317.41},{"date":"2025-12-05","symbol":"GOOGL","close":321.06},{"date":"2025-12-08","symbol":"GOOGL","close":313.72},{"date":"2025-12-09","symbol":"GOOGL","close":317.08},{"date":"2025-12-10","symbol":"GOOGL","close":320.21},{"date":"2025-12-11","symbol":"GOOGL","close":312.43},{"date":"2025-12-12","symbol":"GOOGL","close":309.29},{"date":"2025-12-15","symbol":"GOOGL","close":308.22},{"date":"2025-12-16","symbol":"GOOGL","close":306.57},{"date":"2025-12-17","symbol":"GOOGL","close":296.72},{"date":"2025-12-18","symbol":"GOOGL","close":302.46},{"date":"2025-12-19","symbol":"GOOGL","close":307.16},{"date":"2025-12-22","symbol":"GOOGL","close":309.78},{"date":"2025-12-23","symbol":"GOOGL","close":314.35},{"date":"2025-12-24","symbol":"GOOGL","close":314.09},{"date":"2025-12-26","symbol":"GOOGL","close":313.51},{"date":"2025-12-29","symbol":"GOOGL","close":313.56},{"date":"2025-12-30","symbol":"GOOGL","close":313.85},{"date":"2025-12-31","symbol":"GOOGL","close":313},{"date":"2026-01-02","symbol":"GOOGL","close":315.15},{"date":"2026-01-05","symbol":"GOOGL","close":316.54},{"date":"2026-01-06","symbol":"GOOGL","close":314.34},{"date":"2026-01-07","symbol":"GOOGL","close":321.98},{"date":"2026-01-08","symbol":"GOOGL","close":325.44},{"date":"2026-01-09","symbol":"GOOGL","close":328.57},{"date":"2026-01-12","symbol":"GOOGL","close":331.86},{"date":"2026-01-13","symbol":"GOOGL","close":335.97},{"date":"2026-01-14","symbol":"GOOGL","close":335.84},{"date":"2026-01-15","symbol":"GOOGL","close":332.78},{"date":"2026-01-16","symbol":"GOOGL","close":330},{"date":"2026-01-20","symbol":"GOOGL","close":322},{"date":"2026-01-21","symbol":"GOOGL","close":328.38},{"date":"2026-01-22","symbol":"GOOGL","close":330.54},{"date":"2026-01-23","symbol":"GOOGL","close":327.93},{"date":"2026-01-26","symbol":"GOOGL","close":333.26},{"date":"2025-07-31","symbol":"MSFT","close":531.63},{"date":"2025-08-01","symbol":"MSFT","close":522.27},{"date":"2025-08-04","symbol":"MSFT","close":533.76},{"date":"2025-08-05","symbol":"MSFT","close":525.9},{"date":"2025-08-06","symbol":"MSFT","close":523.1},{"date":"2025-08-07","symbol":"MSFT","close":519.01},{"date":"2025-08-08","symbol":"MSFT","close":520.21},{"date":"2025-08-11","symbol":"MSFT","close":519.94},{"date":"2025-08-12","symbol":"MSFT","close":527.38},{"date":"2025-08-13","symbol":"MSFT","close":518.75},{"date":"2025-08-14","symbol":"MSFT","close":520.65},{"date":"2025-08-15","symbol":"MSFT","close":518.35},{"date":"2025-08-18","symbol":"MSFT","close":515.29},{"date":"2025-08-19","symbol":"MSFT","close":507.98},{"date":"2025-08-20","symbol":"MSFT","close":503.95},{"date":"2025-08-21","symbol":"MSFT","close":503.3},{"date":"2025-08-22","symbol":"MSFT","close":506.28},{"date":"2025-08-25","symbol":"MSFT","close":503.32},{"date":"2025-08-26","symbol":"MSFT","close":501.1},{"date":"2025-08-27","symbol":"MSFT","close":505.79},{"date":"2025-08-28","symbol":"MSFT","close":508.69},{"date":"2025-08-29","symbol":"MSFT","close":505.74},{"date":"2025-09-02","symbol":"MSFT","close":504.18},{"date":"2025-09-03","symbol":"MSFT","close":504.41},{"date":"2025-09-04","symbol":"MSFT","close":507.02},{"date":"2025-09-05","symbol":"MSFT","close":494.08},{"date":"2025-09-08","symbol":"MSFT","close":497.27},{"date":"2025-09-09","symbol":"MSFT","close":497.48},{"date":"2025-09-10","symbol":"MSFT","close":499.44},{"date":"2025-09-11","symbol":"MSFT","close":500.07},{"date":"2025-09-12","symbol":"MSFT","close":508.95},{"date":"2025-09-15","symbol":"MSFT","close":514.4},{"date":"2025-09-16","symbol":"MSFT","close":508.09},{"date":"2025-09-17","symbol":"MSFT","close":509.07},{"date":"2025-09-18","symbol":"MSFT","close":507.5},{"date":"2025-09-19","symbol":"MSFT","close":516.96},{"date":"2025-09-22","symbol":"MSFT","close":513.49},{"date":"2025-09-23","symbol":"MSFT","close":508.28},{"date":"2025-09-24","symbol":"MSFT","close":509.2},{"date":"2025-09-25","symbol":"MSFT","close":506.08},{"date":"2025-09-26","symbol":"MSFT","close":510.5},{"date":"2025-09-29","symbol":"MSFT","close":513.64},{"date":"2025-09-30","symbol":"MSFT","close":516.98},{"date":"2025-10-01","symbol":"MSFT","close":518.74},{"date":"2025-10-02","symbol":"MSFT","close":514.78},{"date":"2025-10-03","symbol":"MSFT","close":516.38},{"date":"2025-10-06","symbol":"MSFT","close":527.58},{"date":"2025-10-07","symbol":"MSFT","close":523},{"date":"2025-10-08","symbol":"MSFT","close":523.87},{"date":"2025-10-09","symbol":"MSFT","close":521.42},{"date":"2025-10-10","symbol":"MSFT","close":510.01},{"date":"2025-10-13","symbol":"MSFT","close":513.09},{"date":"2025-10-14","symbol":"MSFT","close":512.61},{"date":"2025-10-15","symbol":"MSFT","close":512.47},{"date":"2025-10-16","symbol":"MSFT","close":510.65},{"date":"2025-10-17","symbol":"MSFT","close":512.62},{"date":"2025-10-20","symbol":"MSFT","close":515.82},{"date":"2025-10-21","symbol":"MSFT","close":516.69},{"date":"2025-10-22","symbol":"MSFT","close":519.57},{"date":"2025-10-23","symbol":"MSFT","close":519.59},{"date":"2025-10-24","symbol":"MSFT","close":522.63},{"date":"2025-10-27","symbol":"MSFT","close":530.53},{"date":"2025-10-28","symbol":"MSFT","close":541.06},{"date":"2025-10-29","symbol":"MSFT","close":540.54},{"date":"2025-10-30","symbol":"MSFT","close":524.78},{"date":"2025-10-31","symbol":"MSFT","close":516.84},{"date":"2025-11-03","symbol":"MSFT","close":516.06},{"date":"2025-11-04","symbol":"MSFT","close":513.37},{"date":"2025-11-05","symbol":"MSFT","close":506.21},{"date":"2025-11-06","symbol":"MSFT","close":496.17},{"date":"2025-11-07","symbol":"MSFT","close":495.89},{"date":"2025-11-10","symbol":"MSFT","close":505.05},{"date":"2025-11-11","symbol":"MSFT","close":507.73},{"date":"2025-11-12","symbol":"MSFT","close":510.19},{"date":"2025-11-13","symbol":"MSFT","close":502.35},{"date":"2025-11-14","symbol":"MSFT","close":509.23},{"date":"2025-11-17","symbol":"MSFT","close":506.54},{"date":"2025-11-18","symbol":"MSFT","close":492.87},{"date":"2025-11-19","symbol":"MSFT","close":486.21},{"date":"2025-11-20","symbol":"MSFT","close":478.43},{"date":"2025-11-21","symbol":"MSFT","close":472.12},{"date":"2025-11-24","symbol":"MSFT","close":474},{"date":"2025-11-25","symbol":"MSFT","close":476.99},{"date":"2025-11-26","symbol":"MSFT","close":485.5},{"date":"2025-11-28","symbol":"MSFT","close":492.01},{"date":"2025-12-01","symbol":"MSFT","close":486.74},{"date":"2025-12-02","symbol":"MSFT","close":490},{"date":"2025-12-03","symbol":"MSFT","close":477.73},{"date":"2025-12-04","symbol":"MSFT","close":480.84},{"date":"2025-12-05","symbol":"MSFT","close":483.16},{"date":"2025-12-08","symbol":"MSFT","close":491.02},{"date":"2025-12-09","symbol":"MSFT","close":492.02},{"date":"2025-12-10","symbol":"MSFT","close":478.56},{"date":"2025-12-11","symbol":"MSFT","close":483.47},{"date":"2025-12-12","symbol":"MSFT","close":478.53},{"date":"2025-12-15","symbol":"MSFT","close":474.82},{"date":"2025-12-16","symbol":"MSFT","close":476.39},{"date":"2025-12-17","symbol":"MSFT","close":476.12},{"date":"2025-12-18","symbol":"MSFT","close":483.98},{"date":"2025-12-19","symbol":"MSFT","close":485.92},{"date":"2025-12-22","symbol":"MSFT","close":484.92},{"date":"2025-12-23","symbol":"MSFT","close":486.85},{"date":"2025-12-24","symbol":"MSFT","close":488.02},{"date":"2025-12-26","symbol":"MSFT","close":487.71},{"date":"2025-12-29","symbol":"MSFT","close":487.1},{"date":"2025-12-30","symbol":"MSFT","close":487.48},{"date":"2025-12-31","symbol":"MSFT","close":483.62},{"date":"2026-01-02","symbol":"MSFT","close":472.94},{"date":"2026-01-05","symbol":"MSFT","close":472.85},{"date":"2026-01-06","symbol":"MSFT","close":478.51},{"date":"2026-01-07","symbol":"MSFT","close":483.47},{"date":"2026-01-08","symbol":"MSFT","close":478.11},{"date":"2026-01-09","symbol":"MSFT","close":479.28},{"date":"2026-01-12","symbol":"MSFT","close":477.18},{"date":"2026-01-13","symbol":"MSFT","close":470.67},{"date":"2026-01-14","symbol":"MSFT","close":459.38},{"date":"2026-01-15","symbol":"MSFT","close":456.66},{"date":"2026-01-16","symbol":"MSFT","close":459.86},{"date":"2026-01-20","symbol":"MSFT","close":454.52},{"date":"2026-01-21","symbol":"MSFT","close":444.11},{"date":"2026-01-22","symbol":"MSFT","close":451.14},{"date":"2026-01-23","symbol":"MSFT","close":465.95},{"date":"2026-01-26","symbol":"MSFT","close":470.28}],"metadata":{"date":{"type":"date","semanticType":"Date","levels":[]},"symbol":{"type":"string","semanticType":"String"},"close":{"type":"number","semanticType":"Number"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Filter for Microsoft (MSFT) and Google (GOOGL)\n target_symbols = [\"MSFT\", \"GOOGL\"]\n df = df[df[\"symbol\"].isin(target_symbols)].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n","source":["history"],"dialog":[{"role":"system","content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"input_tables\", the names of a subset of input tables from [CONTEXT] section that will be used to achieve the user's goal.\n - **IMPORTANT** Note that the Table 1 in [CONTEXT] section is the table the user is currently viewing, it should take precedence if the user refers to insights about the \"current table\".\n - At the same time, leverage table information to determine which tables are relevant to the user's goal and should be used.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, latitude, longitude, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - if the user provides latitude and longitude as visual channels, use \"latitude\" and \"longitude\" as visual channels in \"chart_encodings\" as opposed to \"x\" and \"y\".\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\".\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"input_tables\": [...] // string[], describe names of the input tables that will be used in the transformation.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables described in \"input_tables\") and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], only import libraries allowed in the template, do not modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n# from sklearn import ... # import from sklearn if you need it.\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- decide the function signature based on the number of tables you decided in the previous step \"input_tables\":\n - if you decide there will only be one input table, then function signature should be `def transform_data(df1)`\n - if you decided there will be k input tables, then function signature should be `def transform_data(df_1, df_2, ..., df_k)`.\n - instead of using generic names like df1, df2, ..., try to use intuitive table names for function arguments, for example, if you have input_tables: [\"City\", \"Weather\"]`, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes.\n - **VERY IMPORTANT** the number of arguments in the function signature must be the same as the number of tables provided in \"input_tables\", and the order of arguments must match the order of tables provided in \"input_tables\".\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[GOAL]\n\n1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility."},{"role":"assistant","content":"{\n \"mode\": \"infer\",\n \"recap\": \"Compare overall closing price trends and volatility over time for each stock symbol on a single line chart.\",\n \"display_instruction\": \"Visualize **closing price** trends by **symbol** over **date**\",\n \"recommendation\": \"A line chart with time on the x-axis and closing price on the y-axis, colored by symbol, best shows comparative trajectories and volatility over time. The data only needs column selection, date normalization, and sorting to be visualization-ready.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date symbol close\n0 2025-07-30 AAPL 208.61\n1 2025-07-31 AAPL 207.13\n2 2025-08-01 AAPL 201.95\n3 2025-08-04 AAPL 202.92\n4 2025-08-05 AAPL 202.49\n5 2025-08-06 AAPL 212.80\n6 2025-08-07 AAPL 219.57\n7 2025-08-08 AAPL 228.87\n8 2025-08-11 AAPL 226.96\n9 2025-08-12 AAPL 229.43\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"compare microsoft and google\",\n \"chart_type\": \"\",\n \"chart_encodings\": {}\n}"},{"role":"assistant","content":"{\n \"detailed_instruction\": \"Filter the historical price data to only include Microsoft (MSFT) and Google (GOOGL) and prepare it for a line chart that compares their closing price trends over time on the same plot.\",\n \"display_instruction\": \"Compare **closing price** trends of **MSFT** and **GOOGL** over **date**\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n },\n \"reason\": \"The follow-up focuses the existing trend comparison on only Microsoft and Google. This requires filtering the original prepared data to those two symbols while keeping the same line chart structure: date on x, close on y, and symbol as the color encoding.\"\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Filter for Microsoft (MSFT) and Google (GOOGL)\n target_symbols = [\"MSFT\", \"GOOGL\"]\n df = df[df[\"symbol\"].isin(target_symbols)].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"}],"trigger":{"tableId":"table-233476","sourceTableIds":["history"],"instruction":"compare microsoft and google","displayInstruction":"Compare **closing price** trends of **MSFT** and **GOOGL** over **date**","chart":{"id":"chart-1769471462237","chartType":"Auto","encodingMap":{},"tableRef":"table-233476","saved":false,"source":"trigger","unread":true},"resultTableId":"table-457008"},"explanation":{"status":"ok","concepts":[],"code":"- **Keep only** the **`date`**, **`symbol`**, and **`close`** price columns from the original data, discarding all others.\n- **Filter rows** to include **only** the two companies: **`MSFT` (Microsoft)** and **`GOOGL` (Google)**.\n- **Standardize the date format** by converting **`date`** into a **string** formatted as **`YYYY-MM-DD`** (year-month-day).\n- **Sort the data** by **`symbol`** and then by **`date`** so that each company’s prices are in **chronological order**, making it ready for **line plotting over time**.\n- **Return** this cleaned and filtered dataset as the final result.","dialog":[{"role":"system","content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n"},{"role":"user","content":"[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Filter for Microsoft (MSFT) and Google (GOOGL)\n target_symbols = [\"MSFT\", \"GOOGL\"]\n df = df[df[\"symbol\"].isin(target_symbols)].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n\n\n[EXPLANATION]\n"},{"role":"assistant","content":"[CODE EXPLANATION]\n\n- **Keep only** the **`date`**, **`symbol`**, and **`close`** price columns from the original data, discarding all others.\n- **Filter rows** to include **only** the two companies: **`MSFT` (Microsoft)** and **`GOOGL` (Google)**.\n- **Standardize the date format** by converting **`date`** into a **string** formatted as **`YYYY-MM-DD`** (year-month-day).\n- **Sort the data** by **`symbol`** and then by **`date`** so that each company’s prices are in **chronological order**, making it ready for **line plotting over time**.\n- **Return** this cleaned and filtered dataset as the final result.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n]\n```"}],"agent":"CodeExplanationAgent"}},"anchored":false,"createdBy":"user","attachedMetadata":"","contentHash":"903aa346"}],"charts":[{"id":"chart-1769471461230","chartType":"Scatter Plot","encodingMap":{"x":{"fieldID":"original--history--date"},"y":{"fieldID":"original--history--close"},"color":{"fieldID":"original--history--symbol"},"size":{"channel":"size","bin":false},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-457008","saved":false,"source":"user","unread":false},{"id":"chart-1769471279744","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--history--date"},"y":{"fieldID":"concept-value-1769471267162-0.9509557182892663"},"color":{"fieldID":"original--history--symbol"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"concept-metric-1769471284653-0.6683773975324122"},"row":{"channel":"row","bin":false}},"tableRef":"table-277926","saved":false,"source":"user","unread":false},{"id":"chart-1769471263442","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--history--date"},"y":{"fieldID":"concept-value-1769471267162-0.9509557182892663"},"color":{"fieldID":"original--history--symbol"},"opacity":{},"column":{"fieldID":"concept-ma_window-1769471267162-0.4410018093789688"},"row":{"channel":"row","bin":false}},"tableRef":"table-265247","saved":false,"source":"user","unread":false},{"id":"chart-1769471233467","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--history--date"},"y":{"fieldID":"original--history--close"},"color":{"fieldID":"original--history--symbol"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-233476","saved":false,"source":"user","unread":false}],"conceptShelfItems":[{"id":"concept-phase-1769471302041-0.7083067598600609","name":"phase","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-metric-1769471284653-0.6683773975324122","name":"metric","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-value-1769471267162-0.9509557182892663","name":"value","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-ma_window-1769471267162-0.4410018093789688","name":"ma_window","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"original--history--symbol","name":"symbol","type":"string","source":"original","description":"","tableRef":"history"},{"id":"original--history--date","name":"date","type":"date","source":"original","description":"","tableRef":"history"},{"id":"original--history--open","name":"open","type":"number","source":"original","description":"","tableRef":"history"},{"id":"original--history--high","name":"high","type":"number","source":"original","description":"","tableRef":"history"},{"id":"original--history--low","name":"low","type":"number","source":"original","description":"","tableRef":"history"},{"id":"original--history--close","name":"close","type":"number","source":"original","description":"","tableRef":"history"},{"id":"original--history--volume","name":"volume","type":"integer","source":"original","description":"","tableRef":"history"},{"id":"original--history--fetched_at","name":"fetched_at","type":"date","source":"original","description":"","tableRef":"history"}],"messages":[{"timestamp":1769535027918,"type":"success","component":"data formulator","value":"Successfully loaded Stock Prices (Live)"},{"timestamp":1769535028897,"component":"Data Refresh","type":"info","value":"Table \"stock-hist\" data refreshed (738 rows)"},{"timestamp":1769535029034,"component":"Data Refresh","type":"info","value":"Table \"stock-hist\" data refreshed (738 rows)"},{"timestamp":1769535029121,"component":"Data Refresh","type":"info","value":"Derived table \"stock-close\" refreshed (738 rows)"},{"timestamp":1769535041128,"component":"Data Refresh","type":"info","value":"Table \"stock-hist\" data refreshed (738 rows)"},{"timestamp":1769535041339,"component":"Data Refresh","type":"info","value":"Table \"stock-hist\" data refreshed (738 rows)"},{"timestamp":1769535041452,"component":"Data Refresh","type":"info","value":"Derived table \"stock-close\" refreshed (738 rows)"},{"timestamp":1769535048535,"component":"DB manager","type":"success","value":"Deleted 1 unreferenced derived views: view_ushx"}],"displayedMessageIdx":8,"focusedTableId":"table-233476","focusedChartId":"chart-1769471233467","viewMode":"editor","chartSynthesisInProgress":[],"config":{"formulateTimeoutSeconds":60,"maxRepairAttempts":1,"defaultChartWidth":300,"defaultChartHeight":300},"agentActions":[{"actionId":"exploreDataFromNL_1769471236248","tableId":"table-294972","description":"- Compared raw close-price trajectories across six mega-cap stocks.\n- Analyzed 20/60-day moving averages plus returns, volatility, and volume.\n- Summarized phase (quarterly) performance: avg/cumulative returns and volatility by symbol.","status":"completed","hidden":false,"lastUpdate":1769471309407}],"dataCleanBlocks":[],"cleanInProgress":false,"generatedReports":[{"id":"report-1769471498009-9657","content":"# Monitoring Mega-Cap Tech: Price, Trends, and Risk at a Glance\n\nThis live report is built to help you track six large tech stocks (AAPL, AMZN, GOOGL, META, MSFT, NVDA) across price, trends, and risk. Each chart updates as new rows are added to the `history` table.\n\n[IMAGE(chart-1769471233467)]\n\nThe first chart shows daily closing prices over time for all six symbols. Use it to spot broad moves, compare relative price levels, and see when one stock starts to diverge from the group.\n\n[IMAGE(chart-1769471263442)]\n\nThe second chart adds 20‑day and 60‑day moving averages. Watch how actual prices relate to these smoother trend lines: crossovers, sustained gaps, or trend flattening can signal shifting momentum.\n\n[IMAGE(chart-1769471279744)]\n\nThe third set of panels tracks three risk and activity metrics: daily returns, 20‑day return volatility, and trading volume. Look for periods where volatility or volume spikes, or where returns cluster on one side.\n\n[IMAGE(chart-1769471461230)]\n\nThe final chart zooms in on GOOGL and MSFT closing prices, making it easier to compare their day‑to‑day paths without the distraction of other symbols.\n\n**In summary**, use these views together: price levels and trends, plus returns, volatility, and volume, to monitor how each stock is behaving and how relationships between them evolve over time. Possible follow‑ups: add alerts for threshold moves, overlay events (earnings, macro news), or include benchmark indices for context.","style":"live report","selectedChartIds":["chart-1769471279744","chart-1769471233467","chart-1769471461230","chart-1769471263442"],"createdAt":1769471511269}],"_persist":{"version":-1,"rehydrated":true}} \ No newline at end of file +{"tables": [{"kind": "table", "id": "history", "displayId": "stock-hist", "names": ["symbol", "date", "open", "high", "low", "close", "volume", "fetched_at"], "metadata": {"symbol": {"type": "string", "semanticType": "String"}, "date": {"type": "date", "semanticType": "Date"}, "open": {"type": "number", "semanticType": "Number"}, "high": {"type": "number", "semanticType": "Number"}, "low": {"type": "number", "semanticType": "Number"}, "close": {"type": "number", "semanticType": "Number"}, "volume": {"type": "integer", "semanticType": "Number"}, "fetched_at": {"type": "date", "semanticType": "DateTime"}}, "rows": [{"symbol": "AAPL", "date": "2025-07-31", "open": 208.05, "high": 209.4, "low": 206.72, "close": 207.13, "volume": 80698400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-01", "open": 210.43, "high": 213.13, "low": 201.08, "close": 201.95, "volume": 104434500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-04", "open": 204.08, "high": 207.44, "low": 201.26, "close": 202.92, "volume": 75109300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-05", "open": 202.97, "high": 204.91, "low": 201.74, "close": 202.49, "volume": 44155100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-06", "open": 205.2, "high": 214.93, "low": 205.16, "close": 212.8, "volume": 108483100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-07", "open": 218.42, "high": 220.39, "low": 216.12, "close": 219.57, "volume": 90224800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-08", "open": 220.37, "high": 230.51, "low": 218.79, "close": 228.87, "volume": 113854000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-11", "open": 227.7, "high": 229.34, "low": 224.54, "close": 226.96, "volume": 61806100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-12", "open": 227.79, "high": 230.58, "low": 226.85, "close": 229.43, "volume": 55626200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-13", "open": 230.85, "high": 234.77, "low": 230.21, "close": 233.1, "volume": 69878500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-14", "open": 233.83, "high": 234.89, "low": 230.63, "close": 232.55, "volume": 51916300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-15", "open": 233.77, "high": 234.05, "low": 229.12, "close": 231.37, "volume": 56038700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-18", "open": 231.48, "high": 232.89, "low": 229.89, "close": 230.67, "volume": 37476200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-19", "open": 231.06, "high": 232.64, "low": 229.13, "close": 230.34, "volume": 39402600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-20", "open": 229.76, "high": 230.25, "low": 225.55, "close": 225.79, "volume": 42263900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-21", "open": 226.05, "high": 226.3, "low": 223.56, "close": 224.68, "volume": 30621200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-22", "open": 225.95, "high": 228.87, "low": 225.19, "close": 227.54, "volume": 42477800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-25", "open": 226.26, "high": 229.08, "low": 226.01, "close": 226.94, "volume": 30983100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-26", "open": 226.65, "high": 229.27, "low": 224.47, "close": 229.09, "volume": 54575100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-27", "open": 228.39, "high": 230.68, "low": 228.04, "close": 230.27, "volume": 31259500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-28", "open": 230.6, "high": 233.18, "low": 229.12, "close": 232.33, "volume": 38074700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-08-29", "open": 232.28, "high": 233.15, "low": 231.15, "close": 231.92, "volume": 39418400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-02", "open": 229.03, "high": 230.63, "low": 226.75, "close": 229.5, "volume": 44075600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-03", "open": 236.98, "high": 238.62, "low": 234.13, "close": 238.24, "volume": 66427800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-04", "open": 238.22, "high": 239.67, "low": 236.51, "close": 239.55, "volume": 47549400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-05", "open": 239.77, "high": 241.09, "low": 238.26, "close": 239.46, "volume": 54870400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-08", "open": 239.07, "high": 239.92, "low": 236.11, "close": 237.65, "volume": 48999500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-09", "open": 236.77, "high": 238.55, "low": 233.13, "close": 234.12, "volume": 66313900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-10", "open": 231.97, "high": 232.19, "low": 225.73, "close": 226.57, "volume": 83440800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-11", "open": 226.66, "high": 230.23, "low": 226.43, "close": 229.81, "volume": 50208600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-12", "open": 229, "high": 234.28, "low": 228.8, "close": 233.84, "volume": 55824200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-15", "open": 236.77, "high": 237.96, "low": 234.8, "close": 236.47, "volume": 42699500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-16", "open": 236.95, "high": 240.99, "low": 236.09, "close": 237.92, "volume": 63421100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-17", "open": 238.74, "high": 239.87, "low": 237.5, "close": 238.76, "volume": 46508000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-18", "open": 239.74, "high": 240.97, "low": 236.42, "close": 237.65, "volume": 44249600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-19", "open": 241, "high": 246.06, "low": 239.98, "close": 245.26, "volume": 163741300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-22", "open": 248.06, "high": 256.39, "low": 247.88, "close": 255.83, "volume": 105517400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-23", "open": 255.63, "high": 257.09, "low": 253.33, "close": 254.18, "volume": 60275200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-24", "open": 254.97, "high": 255.49, "low": 250.8, "close": 252.07, "volume": 42303700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-25", "open": 252.96, "high": 256.92, "low": 251.47, "close": 256.62, "volume": 55202100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-26", "open": 253.85, "high": 257.35, "low": 253.53, "close": 255.21, "volume": 46076300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-29", "open": 254.31, "high": 254.75, "low": 252.76, "close": 254.18, "volume": 40127700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-09-30", "open": 254.61, "high": 255.67, "low": 252.86, "close": 254.38, "volume": 37704300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-01", "open": 254.79, "high": 258.54, "low": 254.68, "close": 255.2, "volume": 48713900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-02", "open": 256.33, "high": 257.93, "low": 253.9, "close": 256.88, "volume": 42630200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-03", "open": 254.42, "high": 258.99, "low": 253.7, "close": 257.77, "volume": 49155600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-06", "open": 257.74, "high": 258.82, "low": 254.8, "close": 256.44, "volume": 44664100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-07", "open": 256.56, "high": 257.15, "low": 255.18, "close": 256.23, "volume": 31955800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-08", "open": 256.27, "high": 258.27, "low": 255.86, "close": 257.81, "volume": 36496900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-09", "open": 257.56, "high": 257.75, "low": 252.89, "close": 253.79, "volume": 38322000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-10", "open": 254.69, "high": 256.13, "low": 243.76, "close": 245.03, "volume": 61999100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-13", "open": 249.14, "high": 249.45, "low": 245.32, "close": 247.42, "volume": 38142900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-14", "open": 246.36, "high": 248.61, "low": 244.46, "close": 247.53, "volume": 35478000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-15", "open": 249.25, "high": 251.58, "low": 247.23, "close": 249.1, "volume": 33893600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-16", "open": 248.01, "high": 248.8, "low": 244.89, "close": 247.21, "volume": 39777000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-17", "open": 247.78, "high": 253.13, "low": 247.03, "close": 252.05, "volume": 49147000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-20", "open": 255.64, "high": 264.12, "low": 255.38, "close": 261.99, "volume": 90483000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-21", "open": 261.63, "high": 265.03, "low": 261.58, "close": 262.52, "volume": 46695900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-22", "open": 262.4, "high": 262.6, "low": 255.18, "close": 258.2, "volume": 45015300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-23", "open": 259.69, "high": 260.37, "low": 257.76, "close": 259.33, "volume": 32754900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-24", "open": 260.94, "high": 263.87, "low": 258.93, "close": 262.57, "volume": 38253700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-27", "open": 264.62, "high": 268.86, "low": 264.39, "close": 268.55, "volume": 44888200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-28", "open": 268.73, "high": 269.63, "low": 267.89, "close": 268.74, "volume": 41534800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-29", "open": 269.02, "high": 271.15, "low": 266.85, "close": 269.44, "volume": 51086700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-30", "open": 271.73, "high": 273.87, "low": 268.22, "close": 271.14, "volume": 69886500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-10-31", "open": 276.72, "high": 277.05, "low": 268.9, "close": 270.11, "volume": 86167100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-03", "open": 270.16, "high": 270.59, "low": 265.99, "close": 268.79, "volume": 50194600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-04", "open": 268.07, "high": 271.23, "low": 267.36, "close": 269.78, "volume": 49274800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-05", "open": 268.35, "high": 271.44, "low": 266.67, "close": 269.88, "volume": 43683100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-06", "open": 267.63, "high": 273.14, "low": 267.63, "close": 269.51, "volume": 51204000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-07", "open": 269.54, "high": 272.03, "low": 266.51, "close": 268.21, "volume": 48227400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-10", "open": 268.96, "high": 273.73, "low": 267.46, "close": 269.43, "volume": 41312400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-11", "open": 269.81, "high": 275.91, "low": 269.8, "close": 275.25, "volume": 46208300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-12", "open": 275, "high": 275.73, "low": 271.7, "close": 273.47, "volume": 48398000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-13", "open": 274.11, "high": 276.7, "low": 272.09, "close": 272.95, "volume": 49602800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-14", "open": 271.05, "high": 275.96, "low": 269.6, "close": 272.41, "volume": 47431300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-17", "open": 268.82, "high": 270.49, "low": 265.73, "close": 267.46, "volume": 45018300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-18", "open": 269.99, "high": 270.71, "low": 265.32, "close": 267.44, "volume": 45677300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-19", "open": 265.53, "high": 272.21, "low": 265.5, "close": 268.56, "volume": 40424500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-20", "open": 270.83, "high": 275.43, "low": 265.92, "close": 266.25, "volume": 45823600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-21", "open": 265.95, "high": 273.33, "low": 265.67, "close": 271.49, "volume": 59030800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-24", "open": 270.9, "high": 277, "low": 270.9, "close": 275.92, "volume": 65585800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-25", "open": 275.27, "high": 280.38, "low": 275.25, "close": 276.97, "volume": 46914200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-26", "open": 276.96, "high": 279.53, "low": 276.63, "close": 277.55, "volume": 33431400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-11-28", "open": 277.26, "high": 279, "low": 275.99, "close": 278.85, "volume": 20135600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-01", "open": 278.01, "high": 283.42, "low": 276.14, "close": 283.1, "volume": 46587700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-02", "open": 283, "high": 287.4, "low": 282.63, "close": 286.19, "volume": 53669500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-03", "open": 286.2, "high": 288.62, "low": 283.3, "close": 284.15, "volume": 43538700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-04", "open": 284.1, "high": 284.73, "low": 278.59, "close": 280.7, "volume": 43989100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-05", "open": 280.54, "high": 281.14, "low": 278.05, "close": 278.78, "volume": 47265800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-08", "open": 278.13, "high": 279.67, "low": 276.15, "close": 277.89, "volume": 38211800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-09", "open": 278.16, "high": 280.03, "low": 276.92, "close": 277.18, "volume": 32193300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-10", "open": 277.75, "high": 279.75, "low": 276.44, "close": 278.78, "volume": 33038300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-11", "open": 279.1, "high": 279.59, "low": 273.81, "close": 278.03, "volume": 33248000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-12", "open": 277.9, "high": 279.22, "low": 276.82, "close": 278.28, "volume": 39532900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-15", "open": 280.15, "high": 280.15, "low": 272.84, "close": 274.11, "volume": 50409100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-16", "open": 272.82, "high": 275.5, "low": 271.79, "close": 274.61, "volume": 37648600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-17", "open": 275.01, "high": 276.16, "low": 271.64, "close": 271.84, "volume": 50138700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-18", "open": 273.61, "high": 273.63, "low": 266.95, "close": 272.19, "volume": 51630700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-19", "open": 272.15, "high": 274.6, "low": 269.9, "close": 273.67, "volume": 144632000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-22", "open": 272.86, "high": 273.88, "low": 270.51, "close": 270.97, "volume": 36571800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-23", "open": 270.84, "high": 272.5, "low": 269.56, "close": 272.36, "volume": 29642000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-24", "open": 272.34, "high": 275.43, "low": 272.2, "close": 273.81, "volume": 17910600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-26", "open": 274.16, "high": 275.37, "low": 272.86, "close": 273.4, "volume": 21521800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-29", "open": 272.69, "high": 274.36, "low": 272.35, "close": 273.76, "volume": 23715200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-30", "open": 272.81, "high": 274.08, "low": 272.28, "close": 273.08, "volume": 22139600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2025-12-31", "open": 273.06, "high": 273.68, "low": 271.75, "close": 271.86, "volume": 27293600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-02", "open": 272.26, "high": 277.84, "low": 269, "close": 271.01, "volume": 37838100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-05", "open": 270.64, "high": 271.51, "low": 266.14, "close": 267.26, "volume": 45647200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-06", "open": 267, "high": 267.55, "low": 262.12, "close": 262.36, "volume": 52352100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-07", "open": 263.2, "high": 263.68, "low": 259.81, "close": 260.33, "volume": 48309800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-08", "open": 257.02, "high": 259.29, "low": 255.7, "close": 259.04, "volume": 50419300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-09", "open": 259.08, "high": 260.21, "low": 256.22, "close": 259.37, "volume": 39997000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-12", "open": 259.16, "high": 261.3, "low": 256.8, "close": 260.25, "volume": 45263800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-13", "open": 258.72, "high": 261.81, "low": 258.39, "close": 261.05, "volume": 45730800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-14", "open": 259.49, "high": 261.82, "low": 256.71, "close": 259.96, "volume": 40019400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-15", "open": 260.65, "high": 261.04, "low": 257.05, "close": 258.21, "volume": 39388600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-16", "open": 257.9, "high": 258.9, "low": 254.93, "close": 255.53, "volume": 72142800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-20", "open": 252.73, "high": 254.79, "low": 243.42, "close": 246.7, "volume": 80267500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-21", "open": 248.7, "high": 251.56, "low": 245.18, "close": 247.65, "volume": 54641700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-22", "open": 249.2, "high": 251, "low": 248.15, "close": 248.35, "volume": 39708300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-23", "open": 247.32, "high": 249.41, "low": 244.68, "close": 248.04, "volume": 41689000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AAPL", "date": "2026-01-26", "open": 251.48, "high": 256.56, "low": 249.8, "close": 255.41, "volume": 55857900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-07-31", "open": 235.77, "high": 236.53, "low": 231.4, "close": 234.11, "volume": 104357300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-01", "open": 217.21, "high": 220.44, "low": 212.8, "close": 214.75, "volume": 122258800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-04", "open": 217.4, "high": 217.44, "low": 211.42, "close": 211.65, "volume": 77890100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-05", "open": 213.05, "high": 216.3, "low": 212.87, "close": 213.75, "volume": 51505100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-06", "open": 214.7, "high": 222.65, "low": 213.74, "close": 222.31, "volume": 54823000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-07", "open": 221, "high": 226.22, "low": 220.82, "close": 223.13, "volume": 40603500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-08", "open": 223.14, "high": 223.8, "low": 221.88, "close": 222.69, "volume": 32970500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-11", "open": 221.78, "high": 223.05, "low": 220.4, "close": 221.3, "volume": 31646200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-12", "open": 222.23, "high": 223.5, "low": 219.05, "close": 221.47, "volume": 37185800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-13", "open": 222, "high": 224.92, "low": 222, "close": 224.56, "volume": 36508300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-14", "open": 227.4, "high": 233.11, "low": 227.02, "close": 230.98, "volume": 61545800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-15", "open": 232.58, "high": 234.08, "low": 229.81, "close": 231.03, "volume": 39649200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-18", "open": 230.23, "high": 231.91, "low": 228.33, "close": 231.49, "volume": 25248900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-19", "open": 230.09, "high": 230.53, "low": 227.12, "close": 228.01, "volume": 29891000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-20", "open": 227.12, "high": 227.27, "low": 220.92, "close": 223.81, "volume": 36604300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-21", "open": 222.65, "high": 222.78, "low": 220.5, "close": 221.95, "volume": 32140500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-22", "open": 222.79, "high": 229.14, "low": 220.82, "close": 228.84, "volume": 37315300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-25", "open": 227.35, "high": 229.6, "low": 227.31, "close": 227.94, "volume": 22633700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-26", "open": 227.11, "high": 229, "low": 226.02, "close": 228.71, "volume": 26105400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-27", "open": 228.57, "high": 229.87, "low": 227.81, "close": 229.12, "volume": 21254500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-28", "open": 229.01, "high": 232.71, "low": 228.02, "close": 231.6, "volume": 33679600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-08-29", "open": 231.32, "high": 231.81, "low": 228.16, "close": 229, "volume": 26199200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-02", "open": 223.52, "high": 226.17, "low": 221.83, "close": 225.34, "volume": 38843900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-03", "open": 225.21, "high": 227.17, "low": 224.36, "close": 225.99, "volume": 29223100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-04", "open": 231.19, "high": 235.77, "low": 230.78, "close": 235.68, "volume": 59391800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-05", "open": 235.19, "high": 236, "low": 231.93, "close": 232.33, "volume": 36721800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-08", "open": 234.94, "high": 237.6, "low": 233.75, "close": 235.84, "volume": 33947100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-09", "open": 236.36, "high": 238.85, "low": 235.08, "close": 238.24, "volume": 27033800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-10", "open": 237.52, "high": 237.68, "low": 229.1, "close": 230.33, "volume": 60907700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-11", "open": 231.49, "high": 231.53, "low": 229.34, "close": 229.95, "volume": 37485600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-12", "open": 230.35, "high": 230.79, "low": 226.29, "close": 228.15, "volume": 38496200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-15", "open": 230.63, "high": 233.73, "low": 230.32, "close": 231.43, "volume": 33243300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-16", "open": 232.94, "high": 235.9, "low": 232.23, "close": 234.05, "volume": 38203900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-17", "open": 233.77, "high": 234.3, "low": 228.71, "close": 231.62, "volume": 42815200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-18", "open": 232.5, "high": 233.48, "low": 228.79, "close": 231.23, "volume": 37931700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-19", "open": 232.37, "high": 234.16, "low": 229.7, "close": 231.48, "volume": 97943200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-22", "open": 230.56, "high": 230.57, "low": 227.51, "close": 227.63, "volume": 45914500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-23", "open": 227.83, "high": 227.86, "low": 220.07, "close": 220.71, "volume": 70956200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-24", "open": 224.15, "high": 224.56, "low": 219.45, "close": 220.21, "volume": 49509000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-25", "open": 220.06, "high": 220.67, "low": 216.47, "close": 218.15, "volume": 52226300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-26", "open": 219.08, "high": 221.05, "low": 218.02, "close": 219.78, "volume": 41650100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-29", "open": 220.08, "high": 222.6, "low": 219.3, "close": 222.17, "volume": 44259200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-09-30", "open": 222.03, "high": 222.24, "low": 217.89, "close": 219.57, "volume": 48396400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-01", "open": 217.36, "high": 222.15, "low": 216.61, "close": 220.63, "volume": 43933800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-02", "open": 221.01, "high": 222.81, "low": 218.95, "close": 222.41, "volume": 41258600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-03", "open": 223.44, "high": 224.2, "low": 219.34, "close": 219.51, "volume": 43639000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-06", "open": 221, "high": 221.73, "low": 216.03, "close": 220.9, "volume": 43690900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-07", "open": 220.88, "high": 222.89, "low": 220.17, "close": 221.78, "volume": 31194700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-08", "open": 222.92, "high": 226.73, "low": 221.19, "close": 225.22, "volume": 46686000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-09", "open": 225, "high": 228.21, "low": 221.75, "close": 227.74, "volume": 46412100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-10", "open": 226.21, "high": 228.25, "low": 216, "close": 216.37, "volume": 72367500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-13", "open": 217.7, "high": 220.68, "low": 217.04, "close": 220.07, "volume": 37809700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-14", "open": 215.56, "high": 219.32, "low": 212.6, "close": 216.39, "volume": 45665600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-15", "open": 216.62, "high": 217.71, "low": 212.66, "close": 215.57, "volume": 45909500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-16", "open": 215.67, "high": 218.59, "low": 212.81, "close": 214.47, "volume": 42414600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-17", "open": 214.56, "high": 214.8, "low": 211.03, "close": 213.04, "volume": 45986900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-20", "open": 213.88, "high": 216.69, "low": 213.59, "close": 216.48, "volume": 38882800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-21", "open": 218.43, "high": 223.32, "low": 217.99, "close": 222.03, "volume": 50494600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-22", "open": 219.3, "high": 220.01, "low": 216.52, "close": 217.95, "volume": 44308500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-23", "open": 219, "high": 221.3, "low": 218.18, "close": 221.09, "volume": 31540000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-24", "open": 221.97, "high": 225.4, "low": 221.9, "close": 224.21, "volume": 38685100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-27", "open": 227.66, "high": 228.4, "low": 225.54, "close": 226.97, "volume": 38267000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-28", "open": 228.22, "high": 231.49, "low": 226.21, "close": 229.25, "volume": 47100000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-29", "open": 231.67, "high": 232.82, "low": 227.76, "close": 230.3, "volume": 52036200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-30", "open": 227.06, "high": 228.44, "low": 222.75, "close": 222.86, "volume": 102252900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-10-31", "open": 250.1, "high": 250.5, "low": 243.98, "close": 244.22, "volume": 166340800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-03", "open": 255.36, "high": 258.6, "low": 252.9, "close": 254, "volume": 95997800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-04", "open": 250.38, "high": 257.01, "low": 248.66, "close": 249.32, "volume": 51546300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-05", "open": 249.03, "high": 251, "low": 246.16, "close": 250.2, "volume": 40610700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-06", "open": 249.16, "high": 250.38, "low": 242.17, "close": 243.04, "volume": 46004200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-07", "open": 242.9, "high": 244.9, "low": 238.49, "close": 244.41, "volume": 46374300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-10", "open": 248.34, "high": 251.75, "low": 245.59, "close": 248.4, "volume": 36476500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-11", "open": 248.41, "high": 249.75, "low": 247.23, "close": 249.1, "volume": 23564100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-12", "open": 250.24, "high": 250.37, "low": 243.75, "close": 244.2, "volume": 31190100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-13", "open": 243.05, "high": 243.75, "low": 236.5, "close": 237.58, "volume": 41401700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-14", "open": 235.06, "high": 238.73, "low": 232.89, "close": 234.69, "volume": 38956700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-17", "open": 233.25, "high": 234.6, "low": 229.19, "close": 232.87, "volume": 59919000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-18", "open": 228.1, "high": 230.2, "low": 222.42, "close": 222.55, "volume": 60608400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-19", "open": 223.74, "high": 223.74, "low": 218.52, "close": 222.69, "volume": 58335600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-20", "open": 227.05, "high": 227.41, "low": 216.74, "close": 217.14, "volume": 50309000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-21", "open": 216.35, "high": 222.21, "low": 215.18, "close": 220.69, "volume": 68490500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-24", "open": 222.56, "high": 227.33, "low": 222.27, "close": 226.28, "volume": 54318400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-25", "open": 226.38, "high": 230.52, "low": 223.8, "close": 229.67, "volume": 39379300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-26", "open": 230.74, "high": 231.75, "low": 228.77, "close": 229.16, "volume": 38497900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-11-28", "open": 231.24, "high": 233.29, "low": 230.22, "close": 233.22, "volume": 20292300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-01", "open": 233.22, "high": 235.8, "low": 232.25, "close": 233.88, "volume": 42904000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-02", "open": 235.01, "high": 238.97, "low": 233.55, "close": 234.42, "volume": 45785400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-03", "open": 233.35, "high": 233.38, "low": 230.61, "close": 232.38, "volume": 35495100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-04", "open": 232.77, "high": 233.5, "low": 226.8, "close": 229.11, "volume": 45683200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-05", "open": 230.32, "high": 231.24, "low": 228.55, "close": 229.53, "volume": 33117400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-08", "open": 229.59, "high": 230.83, "low": 226.27, "close": 226.89, "volume": 35019200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-09", "open": 226.84, "high": 228.57, "low": 225.11, "close": 227.92, "volume": 25841700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-10", "open": 228.81, "high": 232.42, "low": 228.46, "close": 231.78, "volume": 38790700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-11", "open": 230.71, "high": 232.11, "low": 228.69, "close": 230.28, "volume": 28249600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-12", "open": 229.87, "high": 230.08, "low": 225.12, "close": 226.19, "volume": 35639100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-15", "open": 227.93, "high": 227.93, "low": 221.5, "close": 222.54, "volume": 47286100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-16", "open": 223.04, "high": 223.66, "low": 221.13, "close": 222.56, "volume": 39298900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-17", "open": 224.66, "high": 225.19, "low": 220.99, "close": 221.27, "volume": 44034400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-18", "open": 225.71, "high": 229.23, "low": 224.41, "close": 226.76, "volume": 50272400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-19", "open": 226.76, "high": 229.13, "low": 225.58, "close": 227.35, "volume": 85544400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-22", "open": 228.61, "high": 229.48, "low": 226.71, "close": 228.43, "volume": 32261300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-23", "open": 229.06, "high": 232.45, "low": 228.73, "close": 232.14, "volume": 29230200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-24", "open": 232.13, "high": 232.95, "low": 231.33, "close": 232.38, "volume": 11420500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-26", "open": 232.04, "high": 232.99, "low": 231.18, "close": 232.52, "volume": 15994700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-29", "open": 231.94, "high": 232.6, "low": 230.77, "close": 232.07, "volume": 19797900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-30", "open": 231.21, "high": 232.77, "low": 230.2, "close": 232.53, "volume": 21910500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2025-12-31", "open": 232.91, "high": 232.99, "low": 230.12, "close": 230.82, "volume": 24383700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-02", "open": 231.34, "high": 235.46, "low": 224.7, "close": 226.5, "volume": 51456200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-05", "open": 228.84, "high": 234, "low": 227.18, "close": 233.06, "volume": 49733300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-06", "open": 232.1, "high": 243.18, "low": 232.07, "close": 240.93, "volume": 53764700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-07", "open": 239.61, "high": 245.29, "low": 239.52, "close": 241.56, "volume": 42236500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-08", "open": 243.06, "high": 246.41, "low": 241.88, "close": 246.29, "volume": 39509800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-09", "open": 244.57, "high": 247.86, "low": 242.24, "close": 247.38, "volume": 34560000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-12", "open": 246.73, "high": 248.94, "low": 245.96, "close": 246.47, "volume": 35867800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-13", "open": 246.53, "high": 247.66, "low": 240.25, "close": 242.6, "volume": 38371800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-14", "open": 241.15, "high": 241.28, "low": 236.22, "close": 236.65, "volume": 41410600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-15", "open": 239.31, "high": 240.65, "low": 236.63, "close": 238.18, "volume": 43003600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-16", "open": 239.09, "high": 239.57, "low": 236.41, "close": 239.12, "volume": 45888300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-20", "open": 233.76, "high": 235.09, "low": 229.34, "close": 231, "volume": 47737900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-21", "open": 231.09, "high": 232.3, "low": 226.88, "close": 231.31, "volume": 47276100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-22", "open": 234.05, "high": 235.72, "low": 230.9, "close": 234.34, "volume": 31913300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-23", "open": 234.96, "high": 240.45, "low": 234.57, "close": 239.16, "volume": 33778500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "AMZN", "date": "2026-01-26", "open": 239.98, "high": 240.95, "low": 237.54, "close": 238.42, "volume": 32764700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-07-31", "open": 195.41, "high": 195.69, "low": 190.79, "close": 191.6, "volume": 51329200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-01", "open": 188.74, "high": 190.53, "low": 187.53, "close": 188.84, "volume": 34832200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-04", "open": 190, "high": 194.97, "low": 189.83, "close": 194.74, "volume": 31547400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-05", "open": 194.41, "high": 197.55, "low": 193.59, "close": 194.37, "volume": 31602300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-06", "open": 194.2, "high": 196.33, "low": 193.37, "close": 195.79, "volume": 21562900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-07", "open": 196.76, "high": 197.23, "low": 194.03, "close": 196.22, "volume": 26321800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-08", "open": 196.91, "high": 202.3, "low": 196.87, "close": 201.11, "volume": 39161800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-11", "open": 200.63, "high": 201.17, "low": 198.76, "close": 200.69, "volume": 25832400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-12", "open": 201.06, "high": 204.18, "low": 200.28, "close": 203.03, "volume": 30397900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-13", "open": 203.81, "high": 204.21, "low": 197.2, "close": 201.65, "volume": 28342900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-14", "open": 201.19, "high": 204.12, "low": 200.92, "close": 202.63, "volume": 25230400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-15", "open": 203.53, "high": 206.12, "low": 200.97, "close": 203.58, "volume": 34931400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-18", "open": 203.88, "high": 204.95, "low": 202.18, "close": 203.19, "volume": 18526600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-19", "open": 202.72, "high": 203.13, "low": 199.65, "close": 201.26, "volume": 24240200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-20", "open": 200.42, "high": 200.97, "low": 196.3, "close": 199.01, "volume": 28955500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-21", "open": 199.44, "high": 202.17, "low": 199.12, "close": 199.44, "volume": 19774600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-22", "open": 202.42, "high": 208.22, "low": 200.99, "close": 205.77, "volume": 42827000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-25", "open": 206.11, "high": 210.19, "low": 204.96, "close": 208.17, "volume": 29928900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-26", "open": 207.19, "high": 207.53, "low": 205.38, "close": 206.82, "volume": 28464100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-27", "open": 205.38, "high": 208.59, "low": 205.33, "close": 207.16, "volume": 23022900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-28", "open": 206.93, "high": 211.89, "low": 206.58, "close": 211.31, "volume": 32339300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-08-29", "open": 210.18, "high": 214.32, "low": 209.87, "close": 212.58, "volume": 39728400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-02", "open": 208.12, "high": 211.35, "low": 205.88, "close": 211.02, "volume": 47523000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-03", "open": 225.86, "high": 230.95, "low": 224.44, "close": 230.3, "volume": 103336100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-04", "open": 229.29, "high": 232.01, "low": 225.76, "close": 231.94, "volume": 51684200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-05", "open": 231.84, "high": 235.4, "low": 231.54, "close": 234.64, "volume": 46588900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-08", "open": 235.32, "high": 237.97, "low": 233.52, "close": 233.89, "volume": 32474700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-09", "open": 234.02, "high": 240.31, "low": 233.08, "close": 239.47, "volume": 38061000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-10", "open": 238.74, "high": 241.5, "low": 237.69, "close": 239.01, "volume": 35141100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-11", "open": 239.72, "high": 242.09, "low": 236.1, "close": 240.21, "volume": 30599300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-12", "open": 240.21, "high": 241.92, "low": 237.84, "close": 240.64, "volume": 26771600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-15", "open": 244.5, "high": 252.25, "low": 244.5, "close": 251.45, "volume": 58383800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-16", "open": 251.92, "high": 252.87, "low": 249.31, "close": 251, "volume": 34109700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-17", "open": 251.06, "high": 251.44, "low": 246.12, "close": 249.37, "volume": 34108000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-18", "open": 251.52, "high": 253.82, "low": 249.64, "close": 251.87, "volume": 31239500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-19", "open": 253.08, "high": 255.83, "low": 251.65, "close": 254.55, "volume": 55571400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-22", "open": 254.26, "high": 255.61, "low": 250.14, "close": 252.36, "volume": 32290500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-23", "open": 252.87, "high": 254.19, "low": 250.32, "close": 251.5, "volume": 26628000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-24", "open": 251.5, "high": 252.19, "low": 246.28, "close": 246.98, "volume": 28201000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-25", "open": 244.24, "high": 246.33, "low": 240.58, "close": 245.63, "volume": 31020400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-26", "open": 246.91, "high": 249.26, "low": 245.81, "close": 246.38, "volume": 18503200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-29", "open": 247.69, "high": 250.99, "low": 242.61, "close": 243.89, "volume": 32505800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-09-30", "open": 242.65, "high": 243.13, "low": 239.09, "close": 242.94, "volume": 34724300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-01", "open": 240.59, "high": 246.14, "low": 238.45, "close": 244.74, "volume": 31658200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-02", "open": 244.99, "high": 246.65, "low": 242.14, "close": 245.53, "volume": 25483300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-03", "open": 244.33, "high": 246.14, "low": 241.5, "close": 245.19, "volume": 30249600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-06", "open": 244.62, "high": 251.16, "low": 244.42, "close": 250.27, "volume": 28894700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-07", "open": 248.11, "high": 250.28, "low": 245.36, "close": 245.6, "volume": 23181300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-08", "open": 244.8, "high": 245.85, "low": 243.66, "close": 244.46, "volume": 21307100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-09", "open": 244.31, "high": 244.6, "low": 238.99, "close": 241.37, "volume": 27892100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-10", "open": 241.27, "high": 243.93, "low": 235.69, "close": 236.42, "volume": 33180300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-13", "open": 240.05, "high": 244.34, "low": 239.55, "close": 243.99, "volume": 24995000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-14", "open": 241.07, "high": 246.96, "low": 240.35, "close": 245.29, "volume": 22111600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-15", "open": 247.09, "high": 251.95, "low": 245.83, "close": 250.87, "volume": 27007700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-16", "open": 251.61, "high": 256.79, "low": 249.94, "close": 251.3, "volume": 27997200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-17", "open": 250.6, "high": 254.05, "low": 247.65, "close": 253.13, "volume": 29671600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-20", "open": 254.52, "high": 257.16, "low": 254.06, "close": 256.38, "volume": 22350200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-21", "open": 254.57, "high": 254.71, "low": 243.99, "close": 250.3, "volume": 47312100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-22", "open": 254.2, "high": 256.19, "low": 249.13, "close": 251.53, "volume": 35029400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-23", "open": 252.81, "high": 254.87, "low": 251.69, "close": 252.91, "volume": 19901400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-24", "open": 256.41, "high": 261.51, "low": 255.15, "close": 259.75, "volume": 28655100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-27", "open": 264.65, "high": 269.96, "low": 264.11, "close": 269.09, "volume": 35235200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-28", "open": 269.51, "high": 270.55, "low": 266.33, "close": 267.3, "volume": 29738600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-29", "open": 267.57, "high": 275.16, "low": 267.5, "close": 274.39, "volume": 43580300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-30", "open": 291.4, "high": 291.4, "low": 279.88, "close": 281.3, "volume": 74876000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-10-31", "open": 283.02, "high": 285.81, "low": 276.85, "close": 281.01, "volume": 39267900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-03", "open": 282, "high": 285.34, "low": 279.62, "close": 283.53, "volume": 29786000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-04", "open": 276.57, "high": 281.09, "low": 276.08, "close": 277.36, "volume": 30078400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-05", "open": 278.69, "high": 286.23, "low": 277.16, "close": 284.12, "volume": 31010300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-06", "open": 285.14, "high": 288.16, "low": 280.96, "close": 284.56, "volume": 37173600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-07", "open": 283.02, "high": 283.59, "low": 275.01, "close": 278.65, "volume": 34479600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-10", "open": 284.23, "high": 290.61, "low": 282.68, "close": 289.91, "volume": 29557300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-11", "open": 287.56, "high": 291.73, "low": 287.13, "close": 291.12, "volume": 19842100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-12", "open": 291.49, "high": 291.82, "low": 283.5, "close": 286.52, "volume": 24829900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-13", "open": 282.16, "high": 282.66, "low": 277.06, "close": 278.39, "volume": 29494000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-14", "open": 271.23, "high": 278.38, "low": 270.52, "close": 276.23, "volume": 31647200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-17", "open": 285.59, "high": 293.76, "low": 283.38, "close": 284.83, "volume": 52670200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-18", "open": 287.73, "high": 288.61, "low": 278.02, "close": 284.09, "volume": 49158700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-19", "open": 286.97, "high": 303.61, "low": 286.44, "close": 292.62, "volume": 68198900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-20", "open": 304.34, "high": 306.22, "low": 288.48, "close": 289.26, "volume": 62025200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-21", "open": 296.23, "high": 303.72, "low": 293.66, "close": 299.46, "volume": 74137700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-24", "open": 310.93, "high": 319.27, "low": 309.4, "close": 318.37, "volume": 85165100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-25", "open": 326, "high": 328.62, "low": 317.44, "close": 323.23, "volume": 88632100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-26", "open": 320.47, "high": 324.29, "low": 316.58, "close": 319.74, "volume": 51373400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-11-28", "open": 323.16, "high": 326.64, "low": 316.58, "close": 319.97, "volume": 26018600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-01", "open": 317.49, "high": 319.64, "low": 313.68, "close": 314.68, "volume": 41183000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-02", "open": 316.53, "high": 318.17, "low": 313.7, "close": 315.6, "volume": 35854700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-03", "open": 315.68, "high": 321.37, "low": 313.89, "close": 319.42, "volume": 41838300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-04", "open": 322.02, "high": 322.15, "low": 314.49, "close": 317.41, "volume": 31240900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-05", "open": 319.28, "high": 322.95, "low": 318.96, "close": 321.06, "volume": 28851700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-08", "open": 320.05, "high": 320.44, "low": 311.22, "close": 313.72, "volume": 33909400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-09", "open": 312.37, "high": 317.99, "low": 311.9, "close": 317.08, "volume": 30194000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-10", "open": 315.83, "high": 321.31, "low": 314.68, "close": 320.21, "volume": 33428900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-11", "open": 320.08, "high": 321.12, "low": 308.6, "close": 312.43, "volume": 42353700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-12", "open": 313.7, "high": 314.87, "low": 305.56, "close": 309.29, "volume": 35940200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-15", "open": 311.32, "high": 311.42, "low": 304.88, "close": 308.22, "volume": 29151900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-16", "open": 304.95, "high": 310.77, "low": 302.59, "close": 306.57, "volume": 30585000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-17", "open": 308.01, "high": 308.09, "low": 296.12, "close": 296.72, "volume": 43930400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-18", "open": 301.72, "high": 303.96, "low": 299.23, "close": 302.46, "volume": 33518000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-19", "open": 301.73, "high": 307.25, "low": 300.97, "close": 307.16, "volume": 59943200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-22", "open": 309.88, "high": 310.13, "low": 305.3, "close": 309.78, "volume": 26429900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-23", "open": 309.63, "high": 314.94, "low": 309.32, "close": 314.35, "volume": 25478700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-24", "open": 314.77, "high": 315.08, "low": 311.92, "close": 314.09, "volume": 10097400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-26", "open": 314.48, "high": 315.09, "low": 312.28, "close": 313.51, "volume": 10899000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-29", "open": 311.37, "high": 314.02, "low": 310.62, "close": 313.56, "volume": 19621800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-30", "open": 312.5, "high": 316.95, "low": 312.46, "close": 313.85, "volume": 17380900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2025-12-31", "open": 312.85, "high": 314.58, "low": 311.44, "close": 313, "volume": 16377700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-02", "open": 316.9, "high": 322.5, "low": 310.33, "close": 315.15, "volume": 32009400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-05", "open": 317.66, "high": 319.02, "low": 314.63, "close": 316.54, "volume": 30195600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-06", "open": 316.4, "high": 320.94, "low": 311.78, "close": 314.34, "volume": 31212100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-07", "open": 314.36, "high": 326.15, "low": 314.19, "close": 321.98, "volume": 35104400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-08", "open": 328.97, "high": 330.32, "low": 321.5, "close": 325.44, "volume": 31896100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-09", "open": 327.09, "high": 330.83, "low": 325.8, "close": 328.57, "volume": 26214200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-12", "open": 325.8, "high": 334.04, "low": 325, "close": 331.86, "volume": 33923900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-13", "open": 334.95, "high": 340.49, "low": 333.62, "close": 335.97, "volume": 33517600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-14", "open": 335.06, "high": 336.52, "low": 330.48, "close": 335.84, "volume": 28525600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-15", "open": 337.65, "high": 337.69, "low": 330.74, "close": 332.78, "volume": 28442400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-16", "open": 334.41, "high": 334.65, "low": 327.7, "close": 330, "volume": 40341600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-20", "open": 320.87, "high": 327.73, "low": 320.43, "close": 322, "volume": 35361000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-21", "open": 320.92, "high": 332.48, "low": 319.35, "close": 328.38, "volume": 35386600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-22", "open": 334.45, "high": 335.15, "low": 328.75, "close": 330.54, "volume": 26253600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-23", "open": 332.49, "high": 333.69, "low": 327.45, "close": 327.93, "volume": 27280000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "GOOGL", "date": "2026-01-26", "open": 327.81, "high": 335.84, "low": 327, "close": 333.26, "volume": 26011100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-07-31", "open": 774.05, "high": 783.58, "low": 764.37, "close": 772.29, "volume": 38831100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-01", "open": 759.6, "high": 764.86, "low": 744.2, "close": 748.89, "volume": 19028700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-04", "open": 758.87, "high": 775.69, "low": 757.28, "close": 775.21, "volume": 15801700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-05", "open": 775.29, "high": 781.96, "low": 761.86, "close": 762.32, "volume": 11640300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-06", "open": 768.85, "high": 772.49, "low": 759.33, "close": 770.84, "volume": 9733900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-07", "open": 772.34, "high": 773.85, "low": 758.42, "close": 760.7, "volume": 9019700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-08", "open": 761.61, "high": 768.75, "low": 757.45, "close": 768.15, "volume": 7320800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-11", "open": 768.93, "high": 772.31, "low": 763.53, "close": 764.73, "volume": 7612000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-12", "open": 771.85, "high": 792.49, "low": 771.28, "close": 788.82, "volume": 14563100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-13", "open": 789.97, "high": 794.28, "low": 777.07, "close": 778.92, "volume": 8811800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-14", "open": 776.72, "high": 786.64, "low": 771.36, "close": 780.97, "volume": 8116200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-15", "open": 782.98, "high": 795.06, "low": 779.66, "close": 784.06, "volume": 13375400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-18", "open": 773.94, "high": 774.65, "low": 755.43, "close": 766.23, "volume": 16513700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-19", "open": 765.98, "high": 766.03, "low": 748.24, "close": 750.36, "volume": 12286700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-20", "open": 746.46, "high": 749.08, "low": 729.91, "close": 746.61, "volume": 11898200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-21", "open": 743.6, "high": 744.39, "low": 732.02, "close": 738, "volume": 8876300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-22", "open": 738.13, "high": 755.77, "low": 733.3, "close": 753.67, "volume": 10612700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-25", "open": 753.7, "high": 757.75, "low": 749.01, "close": 752.18, "volume": 6861200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-26", "open": 749.68, "high": 753.75, "low": 746.83, "close": 752.98, "volume": 7601800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-27", "open": 751.18, "high": 753.03, "low": 741.73, "close": 746.27, "volume": 8315400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-28", "open": 742.89, "high": 751.93, "low": 739.7, "close": 749.99, "volume": 7468000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-08-29", "open": 744.17, "high": 746.03, "low": 734.26, "close": 737.6, "volume": 9070500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-02", "open": 724.96, "high": 734.9, "low": 720.66, "close": 734.02, "volume": 9350900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-03", "open": 734.9, "high": 739.15, "low": 732.9, "close": 735.95, "volume": 7699300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-04", "open": 747.46, "high": 760.03, "low": 744.71, "close": 747.54, "volume": 11439100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-05", "open": 751.5, "high": 756.82, "low": 743.92, "close": 751.33, "volume": 9663400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-08", "open": 754.87, "high": 765.37, "low": 750.9, "close": 751.18, "volume": 13087800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-09", "open": 756.36, "high": 765.16, "low": 752.31, "close": 764.56, "volume": 10999000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-10", "open": 763.99, "high": 764.56, "low": 749.88, "close": 750.86, "volume": 12478300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-11", "open": 753.53, "high": 755.97, "low": 747.26, "close": 749.78, "volume": 7923300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-12", "open": 747.62, "high": 756.44, "low": 742.65, "close": 754.47, "volume": 8248600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-15", "open": 756.34, "high": 772.92, "low": 750.87, "close": 763.56, "volume": 10533800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-16", "open": 765.86, "high": 780.2, "low": 763.96, "close": 777.84, "volume": 11782500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-17", "open": 778.83, "high": 782.12, "low": 765.17, "close": 774.57, "volume": 9400900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-18", "open": 779.59, "high": 787.61, "low": 772.21, "close": 779.09, "volume": 10955000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-19", "open": 785.25, "high": 789.62, "low": 768.04, "close": 777.22, "volume": 23696800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-22", "open": 781.21, "high": 785.09, "low": 763.85, "close": 764.54, "volume": 11706900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-23", "open": 768.62, "high": 769.97, "low": 750.46, "close": 754.78, "volume": 10872600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-24", "open": 756.88, "high": 760.49, "low": 751.92, "close": 760.04, "volume": 8828200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-25", "open": 752.84, "high": 756.15, "low": 743.94, "close": 748.3, "volume": 10591100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-26", "open": 749.39, "high": 751.32, "low": 736.75, "close": 743.14, "volume": 9696300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-29", "open": 748.11, "high": 750.17, "low": 738.55, "close": 742.79, "volume": 9246800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-09-30", "open": 741.65, "high": 742.36, "low": 725.71, "close": 733.78, "volume": 16226800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-01", "open": 720.9, "high": 721.26, "low": 709.62, "close": 716.76, "volume": 20419600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-02", "open": 721.99, "high": 727.18, "low": 717.55, "close": 726.46, "volume": 11415300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-03", "open": 729.04, "high": 730.4, "low": 709.6, "close": 709.98, "volume": 16154300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-06", "open": 704.62, "high": 716.3, "low": 689.95, "close": 715.08, "volume": 21654700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-07", "open": 717.14, "high": 717.91, "low": 705.17, "close": 712.5, "volume": 12062900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-08", "open": 712.87, "high": 719.06, "low": 707.23, "close": 717.26, "volume": 10790600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-09", "open": 717.69, "high": 732.91, "low": 711.86, "close": 732.91, "volume": 12717200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-10", "open": 730.32, "high": 734.67, "low": 703.94, "close": 704.73, "volume": 16980100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-13", "open": 712.43, "high": 719.35, "low": 707.06, "close": 715.12, "volume": 9251800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-14", "open": 707.2, "high": 714.97, "low": 698.76, "close": 708.07, "volume": 8829800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-15", "open": 716.48, "high": 723.31, "low": 708.93, "close": 716.97, "volume": 10246800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-16", "open": 716.97, "high": 724.9, "low": 703.31, "close": 711.49, "volume": 9017000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-17", "open": 706.5, "high": 717.95, "low": 705.54, "close": 716.34, "volume": 12232400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-20", "open": 720.6, "high": 733.17, "low": 719.59, "close": 731.57, "volume": 8900200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-21", "open": 735.42, "high": 737.9, "low": 728.16, "close": 732.67, "volume": 7647300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-22", "open": 733.23, "high": 740, "low": 723.44, "close": 732.81, "volume": 8734500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-23", "open": 734.1, "high": 741.8, "low": 732.5, "close": 733.4, "volume": 9856000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-24", "open": 736.19, "high": 740.61, "low": 730.55, "close": 737.76, "volume": 9151300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-27", "open": 749.12, "high": 755.13, "low": 747.4, "close": 750.21, "volume": 11321100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-28", "open": 752.02, "high": 757.78, "low": 744.91, "close": 750.83, "volume": 12193800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-29", "open": 754.13, "high": 758.54, "low": 741.9, "close": 751.06, "volume": 26818600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-30", "open": 668.6, "high": 680.41, "low": 649.64, "close": 665.93, "volume": 88440100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-10-31", "open": 673.96, "high": 674.34, "low": 645.04, "close": 647.82, "volume": 56953200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-03", "open": 655.47, "high": 658.79, "low": 635.66, "close": 637.19, "volume": 33003600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-04", "open": 627.53, "high": 641.22, "low": 625.5, "close": 626.81, "volume": 27356600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-05", "open": 631.79, "high": 641.71, "low": 626.03, "close": 635.43, "volume": 20219900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-06", "open": 635.33, "high": 635.48, "low": 617.5, "close": 618.44, "volume": 23628800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-07", "open": 615.99, "high": 621.62, "low": 600.71, "close": 621.2, "volume": 29946800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-10", "open": 630.58, "high": 634.48, "low": 617.61, "close": 631.25, "volume": 19245000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-11", "open": 627.49, "high": 629.05, "low": 618.89, "close": 626.57, "volume": 13302200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-12", "open": 627.62, "high": 628.48, "low": 607.27, "close": 608.51, "volume": 24493300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-13", "open": 612.57, "high": 617.15, "low": 602.51, "close": 609.39, "volume": 20973800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-14", "open": 601.3, "high": 613.18, "low": 594.71, "close": 608.96, "volume": 20724100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-17", "open": 608.54, "high": 611.19, "low": 594.91, "close": 601.52, "volume": 16501300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-18", "open": 591.12, "high": 603.17, "low": 583.3, "close": 597.2, "volume": 25500600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-19", "open": 593.24, "high": 594.84, "low": 580.78, "close": 589.84, "volume": 24744700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-20", "open": 603.01, "high": 606.23, "low": 582.87, "close": 588.67, "volume": 20603000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-21", "open": 588.02, "high": 597.63, "low": 581.39, "close": 593.77, "volume": 21052600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-24", "open": 598.23, "high": 616.2, "low": 597.14, "close": 612.55, "volume": 23554900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-25", "open": 623.49, "high": 636.53, "low": 617.8, "close": 635.7, "volume": 25213000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-26", "open": 637.17, "high": 637.84, "low": 631.12, "close": 633.09, "volume": 15209500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-11-28", "open": 635.56, "high": 647.52, "low": 634.98, "close": 647.42, "volume": 11033200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-01", "open": 639.03, "high": 644.79, "low": 637.24, "close": 640.35, "volume": 13029900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-02", "open": 641.82, "high": 647.34, "low": 637.55, "close": 646.57, "volume": 11640900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-03", "open": 643.88, "high": 648.32, "low": 637.03, "close": 639.08, "volume": 11134300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-04", "open": 675.45, "high": 675.55, "low": 659.51, "close": 660.99, "volume": 29874600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-05", "open": 663.46, "high": 674.14, "low": 661.85, "close": 672.87, "volume": 21207900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-08", "open": 668.79, "high": 676.16, "low": 664.53, "close": 666.26, "volume": 13161000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-09", "open": 663.23, "high": 663.94, "low": 652.81, "close": 656.42, "volume": 12997100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-10", "open": 649.42, "high": 653.98, "low": 642.88, "close": 649.6, "volume": 16910900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-11", "open": 642.77, "high": 654.75, "low": 640.28, "close": 652.18, "volume": 13056700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-12", "open": 649.27, "high": 710.42, "low": 638.09, "close": 643.71, "volume": 14016900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-15", "open": 645.7, "high": 653, "low": 638.7, "close": 647.51, "volume": 15549100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-16", "open": 643.5, "high": 662.54, "low": 643.2, "close": 657.15, "volume": 14309100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-17", "open": 655.61, "high": 661.23, "low": 649.2, "close": 649.5, "volume": 15598500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-18", "open": 657.03, "high": 670.56, "low": 656.46, "close": 664.45, "volume": 20260300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-19", "open": 666.42, "high": 671, "low": 658.18, "close": 658.77, "volume": 49977100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-22", "open": 661.65, "high": 673.58, "low": 656.65, "close": 661.5, "volume": 15659400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-23", "open": 660.05, "high": 666, "low": 658.25, "close": 664.94, "volume": 8486800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-24", "open": 662.53, "high": 668.18, "low": 662.2, "close": 667.55, "volume": 5627500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-26", "open": 668.06, "high": 668.95, "low": 661.32, "close": 663.29, "volume": 7133800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-29", "open": 658.01, "high": 660.25, "low": 654.39, "close": 658.69, "volume": 8506500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-30", "open": 658.69, "high": 672.22, "low": 657.84, "close": 665.95, "volume": 9187500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2025-12-31", "open": 664.75, "high": 665, "low": 659.44, "close": 660.09, "volume": 7940400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-02", "open": 662.73, "high": 664.39, "low": 643.5, "close": 650.41, "volume": 13726500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-05", "open": 651.01, "high": 664.54, "low": 647.75, "close": 658.79, "volume": 12213700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-06", "open": 659.57, "high": 665.52, "low": 651.9, "close": 660.62, "volume": 11074400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-07", "open": 655.64, "high": 659.15, "low": 644.81, "close": 648.69, "volume": 12846300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-08", "open": 645.88, "high": 647.1, "low": 635.72, "close": 646.06, "volume": 11921700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-09", "open": 645.44, "high": 654.95, "low": 642.85, "close": 653.06, "volume": 11634900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-12", "open": 652.53, "high": 653.97, "low": 641.23, "close": 641.97, "volume": 14797200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-13", "open": 642.27, "high": 642.27, "low": 624.1, "close": 631.09, "volume": 18030400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-14", "open": 626.5, "high": 628.45, "low": 614.82, "close": 615.52, "volume": 15527900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-15", "open": 618.48, "high": 624.17, "low": 614.23, "close": 620.8, "volume": 13076100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-16", "open": 624.18, "high": 629.08, "low": 620.08, "close": 620.25, "volume": 17012500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-20", "open": 607.88, "high": 611.4, "low": 600, "close": 604.12, "volume": 15169600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-21", "open": 606.74, "high": 618.27, "low": 600.08, "close": 612.96, "volume": 14494700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-22", "open": 629.35, "high": 660.57, "low": 626.55, "close": 647.63, "volume": 21394700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-23", "open": 644.77, "high": 666.49, "low": 644.45, "close": 658.76, "volume": 22797700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "META", "date": "2026-01-26", "open": 665.13, "high": 675.28, "low": 661.29, "close": 672.36, "volume": 16293000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-07-31", "open": 553.28, "high": 553.5, "low": 530.04, "close": 531.63, "volume": 51617300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-01", "open": 533.12, "high": 533.92, "low": 519.03, "close": 522.27, "volume": 28977600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-04", "open": 526.42, "high": 536.36, "low": 526.28, "close": 533.76, "volume": 25349000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-05", "open": 535.3, "high": 535.42, "low": 525.39, "close": 525.9, "volume": 19171600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-06", "open": 529.04, "high": 529.84, "low": 522.19, "close": 523.1, "volume": 21355700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-07", "open": 524.95, "high": 526.24, "low": 515.74, "close": 519.01, "volume": 16079100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-08", "open": 520.77, "high": 522.82, "low": 517.59, "close": 520.21, "volume": 15531000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-11", "open": 520.47, "high": 525.74, "low": 517.9, "close": 519.94, "volume": 20194400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-12", "open": 521.91, "high": 529.12, "low": 520.87, "close": 527.38, "volume": 18667000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-13", "open": 530.24, "high": 530.83, "low": 517.55, "close": 518.75, "volume": 19619200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-14", "open": 520.73, "high": 524.11, "low": 518.32, "close": 520.65, "volume": 20269100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-15", "open": 520.94, "high": 524.26, "low": 517.26, "close": 518.35, "volume": 25213300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-18", "open": 519.76, "high": 520.99, "low": 512.22, "close": 515.29, "volume": 23760600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-19", "open": 513.19, "high": 513.35, "low": 506.77, "close": 507.98, "volume": 21481000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-20", "open": 508.08, "high": 509.21, "low": 502.67, "close": 503.95, "volume": 27723000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-21", "open": 502.75, "high": 506.68, "low": 501.78, "close": 503.3, "volume": 18443300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-22", "open": 503.31, "high": 509.78, "low": 501.47, "close": 506.28, "volume": 24324200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-25", "open": 505.68, "high": 507.24, "low": 503.18, "close": 503.32, "volume": 21638600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-26", "open": 503.42, "high": 504.04, "low": 497.58, "close": 501.1, "volume": 30835700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-27", "open": 501.06, "high": 506.34, "low": 498.97, "close": 505.79, "volume": 17277900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-28", "open": 506.14, "high": 510.14, "low": 504.56, "close": 508.69, "volume": 18015600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-08-29", "open": 507.71, "high": 508.65, "low": 503.55, "close": 505.74, "volume": 20961600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-02", "open": 499.54, "high": 505.05, "low": 495.88, "close": 504.18, "volume": 18128000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-03", "open": 502.85, "high": 506.84, "low": 501.38, "close": 504.41, "volume": 16345100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-04", "open": 503.36, "high": 507.2, "low": 502.21, "close": 507.02, "volume": 15509500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-05", "open": 508.12, "high": 511.01, "low": 491.45, "close": 494.08, "volume": 31994800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-08", "open": 497.18, "high": 500.26, "low": 494.11, "close": 497.27, "volume": 16771000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-09", "open": 500.49, "high": 501.31, "low": 496.77, "close": 497.48, "volume": 14410500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-10", "open": 502.04, "high": 502.29, "low": 495.79, "close": 499.44, "volume": 21611800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-11", "open": 501.31, "high": 502.23, "low": 496.95, "close": 500.07, "volume": 18881600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-12", "open": 505.7, "high": 511.59, "low": 502.91, "close": 508.95, "volume": 23624900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-15", "open": 507.84, "high": 514.51, "low": 506.05, "close": 514.4, "volume": 17143800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-16", "open": 515.91, "high": 516.26, "low": 507.65, "close": 508.09, "volume": 19711900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-17", "open": 509.67, "high": 510.33, "low": 504.98, "close": 509.07, "volume": 15816600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-18", "open": 510.53, "high": 512.11, "low": 506.71, "close": 507.5, "volume": 18913700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-19", "open": 509.61, "high": 518.33, "low": 509.36, "close": 516.96, "volume": 52474100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-22", "open": 514.63, "high": 516.77, "low": 511.58, "close": 513.49, "volume": 20009300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-23", "open": 512.84, "high": 513.63, "low": 506.36, "close": 508.28, "volume": 19799600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-24", "open": 509.43, "high": 511.52, "low": 505.97, "close": 509.2, "volume": 13533700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-25", "open": 507.35, "high": 509.06, "low": 504.1, "close": 506.08, "volume": 15786500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-26", "open": 509.11, "high": 512.98, "low": 505.67, "close": 510.5, "volume": 16213100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-29", "open": 510.54, "high": 515.88, "low": 507.93, "close": 513.64, "volume": 17617800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-09-30", "open": 512.28, "high": 517.19, "low": 508.71, "close": 516.98, "volume": 19728200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-01", "open": 513.84, "high": 519.54, "low": 510.73, "close": 518.74, "volume": 22632300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-02", "open": 516.67, "high": 520.63, "low": 509.73, "close": 514.78, "volume": 21222900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-03", "open": 516.13, "high": 519.52, "low": 514.04, "close": 516.38, "volume": 15112300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-06", "open": 517.64, "high": 530.04, "low": 517.23, "close": 527.58, "volume": 21388600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-07", "open": 527.3, "high": 528.81, "low": 520.47, "close": 523, "volume": 14615200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-08", "open": 522.3, "high": 525.97, "low": 522.11, "close": 523.87, "volume": 13363400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-09", "open": 521.36, "high": 523.35, "low": 516.43, "close": 521.42, "volume": 18343600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-10", "open": 518.67, "high": 522.6, "low": 508.68, "close": 510.01, "volume": 24133800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-13", "open": 515.45, "high": 515.45, "low": 510.72, "close": 513.09, "volume": 14284200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-14", "open": 509.28, "high": 514.32, "low": 505.05, "close": 512.61, "volume": 14684300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-15", "open": 514, "high": 516.22, "low": 509.05, "close": 512.47, "volume": 14694700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-16", "open": 511.62, "high": 515.88, "low": 507.18, "close": 510.65, "volume": 15559600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-17", "open": 508.09, "high": 514.52, "low": 506.36, "close": 512.62, "volume": 19867800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-20", "open": 513.65, "high": 517.73, "low": 512.47, "close": 515.82, "volume": 14665600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-21", "open": 516.53, "high": 517.72, "low": 512.08, "close": 516.69, "volume": 15586200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-22", "open": 520.18, "high": 524.25, "low": 516.74, "close": 519.57, "volume": 18962700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-23", "open": 521.48, "high": 522.97, "low": 517.64, "close": 519.59, "volume": 14023500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-24", "open": 521.81, "high": 524.37, "low": 519.74, "close": 522.63, "volume": 15532400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-27", "open": 530.79, "high": 533.58, "low": 528.02, "close": 530.53, "volume": 18734700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-28", "open": 548.97, "high": 552.69, "low": 539.76, "close": 541.06, "volume": 29986700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-29", "open": 543.92, "high": 545.25, "low": 535.73, "close": 540.54, "volume": 36023000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-30", "open": 529.49, "high": 533.97, "low": 521.14, "close": 524.78, "volume": 41023100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-10-31", "open": 527.89, "high": 528.33, "low": 514.14, "close": 516.84, "volume": 34006400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-03", "open": 518.84, "high": 523.98, "low": 513.63, "close": 516.06, "volume": 22374700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-04", "open": 510.8, "high": 514.59, "low": 506.89, "close": 513.37, "volume": 20958700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-05", "open": 512.34, "high": 513.87, "low": 505.63, "close": 506.21, "volume": 23024300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-06", "open": 504.72, "high": 504.76, "low": 494.88, "close": 496.17, "volume": 27406500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-07", "open": 496.02, "high": 498.45, "low": 492.33, "close": 495.89, "volume": 24019800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-10", "open": 499.11, "high": 505.9, "low": 497.87, "close": 505.05, "volume": 26101500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-11", "open": 503.86, "high": 508.65, "low": 501.41, "close": 507.73, "volume": 17980000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-12", "open": 508.41, "high": 510.71, "low": 498.19, "close": 510.19, "volume": 26574900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-13", "open": 509.36, "high": 512.54, "low": 500.35, "close": 502.35, "volume": 25273100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-14", "open": 497.3, "high": 510.64, "low": 496.51, "close": 509.23, "volume": 28505700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-17", "open": 507.5, "high": 511.16, "low": 503.97, "close": 506.54, "volume": 19092800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-18", "open": 494.44, "high": 502.04, "low": 485.87, "close": 492.87, "volume": 33815100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-19", "open": 489.18, "high": 494.26, "low": 481.93, "close": 486.21, "volume": 23245300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-20", "open": 492.71, "high": 493.57, "low": 475.5, "close": 478.43, "volume": 26802500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-21", "open": 478.5, "high": 478.92, "low": 468.27, "close": 472.12, "volume": 31769200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-24", "open": 475, "high": 476.9, "low": 468.02, "close": 474, "volume": 34421000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-25", "open": 474.07, "high": 479.15, "low": 464.89, "close": 476.99, "volume": 28019800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-26", "open": 486.31, "high": 488.31, "low": 481.2, "close": 485.5, "volume": 25709100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-11-28", "open": 487.6, "high": 492.63, "low": 486.65, "close": 492.01, "volume": 14386700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-01", "open": 488.44, "high": 489.86, "low": 484.65, "close": 486.74, "volume": 23964000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-02", "open": 486.72, "high": 493.5, "low": 486.32, "close": 490, "volume": 19562700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-03", "open": 476.32, "high": 484.24, "low": 475.2, "close": 477.73, "volume": 34615100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-04", "open": 479.76, "high": 481.32, "low": 476.49, "close": 480.84, "volume": 22318200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-05", "open": 482.52, "high": 483.4, "low": 478.88, "close": 483.16, "volume": 22608700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-08", "open": 484.89, "high": 492.3, "low": 484.38, "close": 491.02, "volume": 21965900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-09", "open": 489.1, "high": 492.12, "low": 488.5, "close": 492.02, "volume": 14696100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-10", "open": 484.03, "high": 484.25, "low": 475.08, "close": 478.56, "volume": 35756200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-11", "open": 476.63, "high": 486.03, "low": 475.86, "close": 483.47, "volume": 24669200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-12", "open": 479.82, "high": 482.45, "low": 476.34, "close": 478.53, "volume": 21248100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-15", "open": 480.1, "high": 480.72, "low": 472.52, "close": 474.82, "volume": 23727700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-16", "open": 471.91, "high": 477.89, "low": 470.88, "close": 476.39, "volume": 20705600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-17", "open": 476.91, "high": 480, "low": 475, "close": 476.12, "volume": 24527200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-18", "open": 478.19, "high": 489.6, "low": 477.89, "close": 483.98, "volume": 28573500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-19", "open": 487.36, "high": 487.85, "low": 482.49, "close": 485.92, "volume": 70836100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-22", "open": 486.12, "high": 488.73, "low": 482.69, "close": 484.92, "volume": 16963000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-23", "open": 484.98, "high": 487.83, "low": 484.74, "close": 486.85, "volume": 14683600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-24", "open": 485.68, "high": 489.16, "low": 484.83, "close": 488.02, "volume": 5855900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-26", "open": 486.71, "high": 488.12, "low": 485.96, "close": 487.71, "volume": 8842200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-29", "open": 484.86, "high": 488.35, "low": 484.18, "close": 487.1, "volume": 10893400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-30", "open": 485.93, "high": 489.68, "low": 485.5, "close": 487.48, "volume": 13944500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2025-12-31", "open": 487.84, "high": 488.14, "low": 483.3, "close": 483.62, "volume": 15601600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-02", "open": 484.39, "high": 484.66, "low": 470.16, "close": 472.94, "volume": 25571600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-05", "open": 474.06, "high": 476.07, "low": 469.5, "close": 472.85, "volume": 25250300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-06", "open": 473.8, "high": 478.74, "low": 469.75, "close": 478.51, "volume": 23037700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-07", "open": 479.76, "high": 489.7, "low": 477.95, "close": 483.47, "volume": 25564200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-08", "open": 481.24, "high": 482.66, "low": 475.86, "close": 478.11, "volume": 18162600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-09", "open": 474.06, "high": 479.82, "low": 472.2, "close": 479.28, "volume": 18491000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-12", "open": 476.67, "high": 480.99, "low": 475.68, "close": 477.18, "volume": 23519900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-13", "open": 474.68, "high": 475.78, "low": 465.95, "close": 470.67, "volume": 28545800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-14", "open": 466.46, "high": 468.2, "low": 457.17, "close": 459.38, "volume": 28184300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-15", "open": 464.12, "high": 464.25, "low": 455.9, "close": 456.66, "volume": 23225800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-16", "open": 457.83, "high": 463.19, "low": 456.48, "close": 459.86, "volume": 34246700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-20", "open": 451.22, "high": 456.8, "low": 449.28, "close": 454.52, "volume": 26130000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-21", "open": 452.6, "high": 452.69, "low": 438.68, "close": 444.11, "volume": 37980500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-22", "open": 447.62, "high": 452.84, "low": 444.7, "close": 451.14, "volume": 25349400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-23", "open": 451.87, "high": 471.1, "low": 450.53, "close": 465.95, "volume": 38000200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "MSFT", "date": "2026-01-26", "open": 465.31, "high": 474.25, "low": 462, "close": 470.28, "volume": 29247100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-07-31", "open": 182.88, "high": 183.28, "low": 175.91, "close": 177.85, "volume": 221685400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-01", "open": 174.07, "high": 176.52, "low": 170.87, "close": 173.7, "volume": 204529000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-04", "open": 175.14, "high": 180.18, "low": 174.5, "close": 179.98, "volume": 148174600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-05", "open": 179.6, "high": 180.24, "low": 175.88, "close": 178.24, "volume": 156407600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-06", "open": 176.31, "high": 179.88, "low": 176.23, "close": 179.4, "volume": 137192300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-07", "open": 181.55, "high": 183.86, "low": 178.78, "close": 180.75, "volume": 151878400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-08", "open": 181.53, "high": 183.28, "low": 180.38, "close": 182.68, "volume": 123396700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-11", "open": 182.03, "high": 183.82, "low": 180.23, "close": 182.04, "volume": 138323200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-12", "open": 182.94, "high": 184.46, "low": 179.44, "close": 183.14, "volume": 145485700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-13", "open": 182.6, "high": 183.95, "low": 179.33, "close": 181.57, "volume": 179871700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-14", "open": 179.73, "high": 183, "low": 179.44, "close": 182, "volume": 129554000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-15", "open": 181.86, "high": 181.88, "low": 178.02, "close": 180.43, "volume": 156602200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-18", "open": 180.58, "high": 182.92, "low": 180.57, "close": 181.99, "volume": 132008000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-19", "open": 182.41, "high": 182.48, "low": 175.47, "close": 175.62, "volume": 185229200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-20", "open": 175.15, "high": 175.98, "low": 168.78, "close": 175.38, "volume": 215142700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-21", "open": 174.83, "high": 176.88, "low": 173.79, "close": 174.96, "volume": 140040900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-22", "open": 172.59, "high": 178.57, "low": 171.18, "close": 177.97, "volume": 172789400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-25", "open": 178.33, "high": 181.89, "low": 176.55, "close": 179.79, "volume": 163012800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-26", "open": 180.04, "high": 182.37, "low": 178.79, "close": 181.75, "volume": 168688200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-27", "open": 181.96, "high": 182.47, "low": 179.08, "close": 181.58, "volume": 235518900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-28", "open": 180.8, "high": 184.45, "low": 176.39, "close": 180.15, "volume": 281787800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-08-29", "open": 178.09, "high": 178.13, "low": 173.13, "close": 174.16, "volume": 243257900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-02", "open": 169.98, "high": 172.36, "low": 167.2, "close": 170.76, "volume": 231164900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-03", "open": 171.04, "high": 172.39, "low": 168.86, "close": 170.6, "volume": 164424900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-04", "open": 170.55, "high": 171.84, "low": 169.39, "close": 171.64, "volume": 141670100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-05", "open": 168.01, "high": 169.01, "low": 164.05, "close": 167, "volume": 224441400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-08", "open": 167.53, "high": 170.94, "low": 167.33, "close": 168.29, "volume": 163769100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-09", "open": 169.07, "high": 170.96, "low": 166.72, "close": 170.74, "volume": 157548400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-10", "open": 176.62, "high": 179.27, "low": 175.45, "close": 177.31, "volume": 226852000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-11", "open": 179.67, "high": 180.27, "low": 176.47, "close": 177.16, "volume": 151159300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-12", "open": 177.76, "high": 178.59, "low": 176.44, "close": 177.81, "volume": 124911000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-15", "open": 175.66, "high": 178.84, "low": 174.5, "close": 177.74, "volume": 147061600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-16", "open": 176.99, "high": 177.49, "low": 174.37, "close": 174.87, "volume": 140737800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-17", "open": 172.63, "high": 173.19, "low": 168.4, "close": 170.28, "volume": 211843800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-18", "open": 173.97, "high": 177.09, "low": 172.95, "close": 176.23, "volume": 191763300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-19", "open": 175.76, "high": 178.07, "low": 175.17, "close": 176.66, "volume": 237182100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-22", "open": 175.29, "high": 184.54, "low": 174.7, "close": 183.6, "volume": 269637000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-23", "open": 181.96, "high": 182.41, "low": 176.2, "close": 178.42, "volume": 192559600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-24", "open": 179.76, "high": 179.77, "low": 175.39, "close": 176.96, "volume": 143564100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-25", "open": 174.47, "high": 180.25, "low": 173.12, "close": 177.68, "volume": 191586700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-26", "open": 178.16, "high": 179.76, "low": 174.92, "close": 178.18, "volume": 148573700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-29", "open": 180.42, "high": 183.99, "low": 180.31, "close": 181.84, "volume": 193063500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-09-30", "open": 182.07, "high": 187.34, "low": 181.47, "close": 186.57, "volume": 236981000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-01", "open": 185.23, "high": 188.13, "low": 183.89, "close": 187.23, "volume": 173844900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-02", "open": 189.59, "high": 191.04, "low": 188.05, "close": 188.88, "volume": 136805800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-03", "open": 189.18, "high": 190.35, "low": 185.37, "close": 187.61, "volume": 137596900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-06", "open": 185.49, "high": 187.22, "low": 183.32, "close": 185.53, "volume": 157678100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-07", "open": 186.22, "high": 189.05, "low": 183.99, "close": 185.03, "volume": 140088000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-08", "open": 186.56, "high": 189.59, "low": 186.53, "close": 189.1, "volume": 130168900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-09", "open": 192.22, "high": 195.29, "low": 191.05, "close": 192.56, "volume": 182997200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-10", "open": 193.5, "high": 195.61, "low": 182.04, "close": 183.15, "volume": 268774400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-13", "open": 187.96, "high": 190.1, "low": 185.95, "close": 188.31, "volume": 153482800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-14", "open": 184.76, "high": 184.79, "low": 179.69, "close": 180.02, "volume": 205641400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-15", "open": 184.79, "high": 184.86, "low": 177.28, "close": 179.82, "volume": 214450500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-16", "open": 182.22, "high": 183.27, "low": 179.76, "close": 181.8, "volume": 179723300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-17", "open": 180.17, "high": 184.09, "low": 179.74, "close": 183.21, "volume": 173135200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-20", "open": 183.12, "high": 185.19, "low": 181.72, "close": 182.63, "volume": 128544700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-21", "open": 182.78, "high": 182.78, "low": 179.79, "close": 181.15, "volume": 124240200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-22", "open": 181.13, "high": 183.43, "low": 176.75, "close": 180.27, "volume": 162249600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-23", "open": 180.41, "high": 183.02, "low": 179.78, "close": 182.15, "volume": 111363700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-24", "open": 183.83, "high": 187.46, "low": 183.49, "close": 186.25, "volume": 131296700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-27", "open": 189.98, "high": 191.99, "low": 188.42, "close": 191.48, "volume": 153452700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-28", "open": 193.04, "high": 203.14, "low": 191.9, "close": 201.02, "volume": 297986200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-29", "open": 207.97, "high": 212.18, "low": 204.77, "close": 207.03, "volume": 308829600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-30", "open": 205.14, "high": 206.15, "low": 201.4, "close": 202.88, "volume": 178864400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-10-31", "open": 206.44, "high": 207.96, "low": 202.06, "close": 202.48, "volume": 179802200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-03", "open": 208.07, "high": 211.33, "low": 205.55, "close": 206.87, "volume": 180267300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-04", "open": 202.99, "high": 203.96, "low": 197.92, "close": 198.68, "volume": 188919300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-05", "open": 198.76, "high": 202.91, "low": 194.64, "close": 195.2, "volume": 171350300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-06", "open": 196.41, "high": 197.61, "low": 186.37, "close": 188.07, "volume": 223029800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-07", "open": 184.89, "high": 188.31, "low": 178.9, "close": 188.14, "volume": 264942300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-10", "open": 195.1, "high": 199.93, "low": 193.78, "close": 199.04, "volume": 198897100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-11", "open": 195.15, "high": 195.41, "low": 191.29, "close": 193.15, "volume": 176483300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-12", "open": 195.71, "high": 195.88, "low": 191.12, "close": 193.79, "volume": 154935300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-13", "open": 191.04, "high": 191.43, "low": 183.84, "close": 186.85, "volume": 207423100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-14", "open": 182.85, "high": 191, "low": 180.57, "close": 190.16, "volume": 186591900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-17", "open": 185.96, "high": 188.99, "low": 184.31, "close": 186.59, "volume": 173628900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-18", "open": 183.37, "high": 184.79, "low": 179.64, "close": 181.35, "volume": 213598900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-19", "open": 184.78, "high": 187.85, "low": 182.82, "close": 186.51, "volume": 247246400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-20", "open": 195.94, "high": 195.99, "low": 179.84, "close": 180.63, "volume": 343504800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-21", "open": 181.23, "high": 184.55, "low": 172.92, "close": 178.87, "volume": 346926200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-24", "open": 179.48, "high": 183.49, "low": 176.47, "close": 182.54, "volume": 256618300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-25", "open": 174.9, "high": 178.15, "low": 169.54, "close": 177.81, "volume": 320600300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-26", "open": 181.62, "high": 182.9, "low": 178.23, "close": 180.25, "volume": 183852000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-11-28", "open": 179, "high": 179.28, "low": 176.49, "close": 176.99, "volume": 121332800, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-01", "open": 174.75, "high": 180.29, "low": 173.67, "close": 179.91, "volume": 188131000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-02", "open": 181.75, "high": 185.65, "low": 179.99, "close": 181.45, "volume": 182632200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-03", "open": 181.07, "high": 182.44, "low": 179.1, "close": 179.58, "volume": 165138000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-04", "open": 181.62, "high": 184.52, "low": 179.96, "close": 183.38, "volume": 167364900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-05", "open": 183.89, "high": 184.66, "low": 180.91, "close": 182.41, "volume": 143971100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-08", "open": 182.64, "high": 188, "low": 182.4, "close": 185.55, "volume": 204378100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-09", "open": 185.56, "high": 185.72, "low": 183.32, "close": 184.97, "volume": 144719700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-10", "open": 184.97, "high": 185.48, "low": 182.04, "close": 183.78, "volume": 162785400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-11", "open": 180.28, "high": 181.32, "low": 176.62, "close": 180.93, "volume": 182136600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-12", "open": 181.11, "high": 182.82, "low": 174.62, "close": 175.02, "volume": 204274900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-15", "open": 177.94, "high": 178.42, "low": 175.03, "close": 176.29, "volume": 164775600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-16", "open": 176.26, "high": 178.49, "low": 174.9, "close": 177.72, "volume": 148588100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-17", "open": 176.1, "high": 176.13, "low": 170.31, "close": 170.94, "volume": 222775500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-18", "open": 174.53, "high": 176.15, "low": 171.82, "close": 174.14, "volume": 176096000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-19", "open": 176.67, "high": 181.45, "low": 176.34, "close": 180.99, "volume": 324925900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-22", "open": 183.92, "high": 184.16, "low": 182.35, "close": 183.69, "volume": 129064400, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-23", "open": 182.97, "high": 189.33, "low": 182.9, "close": 189.21, "volume": 174873600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-24", "open": 187.94, "high": 188.91, "low": 186.59, "close": 188.61, "volume": 65528500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-26", "open": 189.92, "high": 192.69, "low": 188, "close": 190.53, "volume": 139740300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-29", "open": 187.71, "high": 188.76, "low": 185.91, "close": 188.22, "volume": 120006100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-30", "open": 188.24, "high": 188.99, "low": 186.93, "close": 187.54, "volume": 97687300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2025-12-31", "open": 189.57, "high": 190.56, "low": 186.49, "close": 186.5, "volume": 120100500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-02", "open": 189.84, "high": 192.93, "low": 188.26, "close": 188.85, "volume": 148240500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-05", "open": 191.76, "high": 193.63, "low": 186.15, "close": 188.12, "volume": 183529700, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-06", "open": 190.52, "high": 192.17, "low": 186.82, "close": 187.24, "volume": 176862600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-07", "open": 188.57, "high": 191.37, "low": 186.56, "close": 189.11, "volume": 153543200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-08", "open": 189.11, "high": 189.55, "low": 183.71, "close": 185.04, "volume": 172457000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-09", "open": 185.08, "high": 186.34, "low": 183.67, "close": 184.86, "volume": 131327500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-12", "open": 183.22, "high": 187.12, "low": 183.02, "close": 184.94, "volume": 137968500, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-13", "open": 185, "high": 188.11, "low": 183.4, "close": 185.81, "volume": 160128900, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-14", "open": 184.32, "high": 184.46, "low": 180.8, "close": 183.14, "volume": 159586100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-15", "open": 186.5, "high": 189.7, "low": 186.33, "close": 187.05, "volume": 206188600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-16", "open": 189.08, "high": 190.44, "low": 186.08, "close": 186.23, "volume": 187967200, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-20", "open": 181.9, "high": 182.38, "low": 177.61, "close": 178.07, "volume": 223345300, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-21", "open": 179.05, "high": 185.38, "low": 178.4, "close": 183.32, "volume": 200381000, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-22", "open": 184.75, "high": 186.17, "low": 183.93, "close": 184.84, "volume": 139636600, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-23", "open": 187.5, "high": 189.6, "low": 186.82, "close": 187.67, "volume": 142748100, "fetched_at": "2026-01-27T17:30:40.847133Z"}, {"symbol": "NVDA", "date": "2026-01-26", "open": 187.16, "high": 189.12, "low": 185.99, "close": 186.47, "volume": 124489200, "fetched_at": "2026-01-27T17:30:40.847133Z"}], "anchored": true, "attachedMetadata": "", "source": {"type": "stream", "url": "/api/demo-stream/yfinance/history?symbols=AAPL,MSFT,GOOGL,AMZN,META,NVDA", "autoRefresh": true, "refreshIntervalSeconds": 86400, "lastRefreshed": 1769535041338}, "contentHash": "361b756d"}, {"kind": "table", "id": "table-233476", "displayId": "stock-close", "names": ["date", "symbol", "close"], "rows": [{"date": "2025-07-31", "symbol": "AAPL", "close": 207.13}, {"date": "2025-08-01", "symbol": "AAPL", "close": 201.95}, {"date": "2025-08-04", "symbol": "AAPL", "close": 202.92}, {"date": "2025-08-05", "symbol": "AAPL", "close": 202.49}, {"date": "2025-08-06", "symbol": "AAPL", "close": 212.8}, {"date": "2025-08-07", "symbol": "AAPL", "close": 219.57}, {"date": "2025-08-08", "symbol": "AAPL", "close": 228.87}, {"date": "2025-08-11", "symbol": "AAPL", "close": 226.96}, {"date": "2025-08-12", "symbol": "AAPL", "close": 229.43}, {"date": "2025-08-13", "symbol": "AAPL", "close": 233.1}, {"date": "2025-08-14", "symbol": "AAPL", "close": 232.55}, {"date": "2025-08-15", "symbol": "AAPL", "close": 231.37}, {"date": "2025-08-18", "symbol": "AAPL", "close": 230.67}, {"date": "2025-08-19", "symbol": "AAPL", "close": 230.34}, {"date": "2025-08-20", "symbol": "AAPL", "close": 225.79}, {"date": "2025-08-21", "symbol": "AAPL", "close": 224.68}, {"date": "2025-08-22", "symbol": "AAPL", "close": 227.54}, {"date": "2025-08-25", "symbol": "AAPL", "close": 226.94}, {"date": "2025-08-26", "symbol": "AAPL", "close": 229.09}, {"date": "2025-08-27", "symbol": "AAPL", "close": 230.27}, {"date": "2025-08-28", "symbol": "AAPL", "close": 232.33}, {"date": "2025-08-29", "symbol": "AAPL", "close": 231.92}, {"date": "2025-09-02", "symbol": "AAPL", "close": 229.5}, {"date": "2025-09-03", "symbol": "AAPL", "close": 238.24}, {"date": "2025-09-04", "symbol": "AAPL", "close": 239.55}, {"date": "2025-09-05", "symbol": "AAPL", "close": 239.46}, {"date": "2025-09-08", "symbol": "AAPL", "close": 237.65}, {"date": "2025-09-09", "symbol": "AAPL", "close": 234.12}, {"date": "2025-09-10", "symbol": "AAPL", "close": 226.57}, {"date": "2025-09-11", "symbol": "AAPL", "close": 229.81}, {"date": "2025-09-12", "symbol": "AAPL", "close": 233.84}, {"date": "2025-09-15", "symbol": "AAPL", "close": 236.47}, {"date": "2025-09-16", "symbol": "AAPL", "close": 237.92}, {"date": "2025-09-17", "symbol": "AAPL", "close": 238.76}, {"date": "2025-09-18", "symbol": "AAPL", "close": 237.65}, {"date": "2025-09-19", "symbol": "AAPL", "close": 245.26}, {"date": "2025-09-22", "symbol": "AAPL", "close": 255.83}, {"date": "2025-09-23", "symbol": "AAPL", "close": 254.18}, {"date": "2025-09-24", "symbol": "AAPL", "close": 252.07}, {"date": "2025-09-25", "symbol": "AAPL", "close": 256.62}, {"date": "2025-09-26", "symbol": "AAPL", "close": 255.21}, {"date": "2025-09-29", "symbol": "AAPL", "close": 254.18}, {"date": "2025-09-30", "symbol": "AAPL", "close": 254.38}, {"date": "2025-10-01", "symbol": "AAPL", "close": 255.2}, {"date": "2025-10-02", "symbol": "AAPL", "close": 256.88}, {"date": "2025-10-03", "symbol": "AAPL", "close": 257.77}, {"date": "2025-10-06", "symbol": "AAPL", "close": 256.44}, {"date": "2025-10-07", "symbol": "AAPL", "close": 256.23}, {"date": "2025-10-08", "symbol": "AAPL", "close": 257.81}, {"date": "2025-10-09", "symbol": "AAPL", "close": 253.79}, {"date": "2025-10-10", "symbol": "AAPL", "close": 245.03}, {"date": "2025-10-13", "symbol": "AAPL", "close": 247.42}, {"date": "2025-10-14", "symbol": "AAPL", "close": 247.53}, {"date": "2025-10-15", "symbol": "AAPL", "close": 249.1}, {"date": "2025-10-16", "symbol": "AAPL", "close": 247.21}, {"date": "2025-10-17", "symbol": "AAPL", "close": 252.05}, {"date": "2025-10-20", "symbol": "AAPL", "close": 261.99}, {"date": "2025-10-21", "symbol": "AAPL", "close": 262.52}, {"date": "2025-10-22", "symbol": "AAPL", "close": 258.2}, {"date": "2025-10-23", "symbol": "AAPL", "close": 259.33}, {"date": "2025-10-24", "symbol": "AAPL", "close": 262.57}, {"date": "2025-10-27", "symbol": "AAPL", "close": 268.55}, {"date": "2025-10-28", "symbol": "AAPL", "close": 268.74}, {"date": "2025-10-29", "symbol": "AAPL", "close": 269.44}, {"date": "2025-10-30", "symbol": "AAPL", "close": 271.14}, {"date": "2025-10-31", "symbol": "AAPL", "close": 270.11}, {"date": "2025-11-03", "symbol": "AAPL", "close": 268.79}, {"date": "2025-11-04", "symbol": "AAPL", "close": 269.78}, {"date": "2025-11-05", "symbol": "AAPL", "close": 269.88}, {"date": "2025-11-06", "symbol": "AAPL", "close": 269.51}, {"date": "2025-11-07", "symbol": "AAPL", "close": 268.21}, {"date": "2025-11-10", "symbol": "AAPL", "close": 269.43}, {"date": "2025-11-11", "symbol": "AAPL", "close": 275.25}, {"date": "2025-11-12", "symbol": "AAPL", "close": 273.47}, {"date": "2025-11-13", "symbol": "AAPL", "close": 272.95}, {"date": "2025-11-14", "symbol": "AAPL", "close": 272.41}, {"date": "2025-11-17", "symbol": "AAPL", "close": 267.46}, {"date": "2025-11-18", "symbol": "AAPL", "close": 267.44}, {"date": "2025-11-19", "symbol": "AAPL", "close": 268.56}, {"date": "2025-11-20", "symbol": "AAPL", "close": 266.25}, {"date": "2025-11-21", "symbol": "AAPL", "close": 271.49}, {"date": "2025-11-24", "symbol": "AAPL", "close": 275.92}, {"date": "2025-11-25", "symbol": "AAPL", "close": 276.97}, {"date": "2025-11-26", "symbol": "AAPL", "close": 277.55}, {"date": "2025-11-28", "symbol": "AAPL", "close": 278.85}, {"date": "2025-12-01", "symbol": "AAPL", "close": 283.1}, {"date": "2025-12-02", "symbol": "AAPL", "close": 286.19}, {"date": "2025-12-03", "symbol": "AAPL", "close": 284.15}, {"date": "2025-12-04", "symbol": "AAPL", "close": 280.7}, {"date": "2025-12-05", "symbol": "AAPL", "close": 278.78}, {"date": "2025-12-08", "symbol": "AAPL", "close": 277.89}, {"date": "2025-12-09", "symbol": "AAPL", "close": 277.18}, {"date": "2025-12-10", "symbol": "AAPL", "close": 278.78}, {"date": "2025-12-11", "symbol": "AAPL", "close": 278.03}, {"date": "2025-12-12", "symbol": "AAPL", "close": 278.28}, {"date": "2025-12-15", "symbol": "AAPL", "close": 274.11}, {"date": "2025-12-16", "symbol": "AAPL", "close": 274.61}, {"date": "2025-12-17", "symbol": "AAPL", "close": 271.84}, {"date": "2025-12-18", "symbol": "AAPL", "close": 272.19}, {"date": "2025-12-19", "symbol": "AAPL", "close": 273.67}, {"date": "2025-12-22", "symbol": "AAPL", "close": 270.97}, {"date": "2025-12-23", "symbol": "AAPL", "close": 272.36}, {"date": "2025-12-24", "symbol": "AAPL", "close": 273.81}, {"date": "2025-12-26", "symbol": "AAPL", "close": 273.4}, {"date": "2025-12-29", "symbol": "AAPL", "close": 273.76}, {"date": "2025-12-30", "symbol": "AAPL", "close": 273.08}, {"date": "2025-12-31", "symbol": "AAPL", "close": 271.86}, {"date": "2026-01-02", "symbol": "AAPL", "close": 271.01}, {"date": "2026-01-05", "symbol": "AAPL", "close": 267.26}, {"date": "2026-01-06", "symbol": "AAPL", "close": 262.36}, {"date": "2026-01-07", "symbol": "AAPL", "close": 260.33}, {"date": "2026-01-08", "symbol": "AAPL", "close": 259.04}, {"date": "2026-01-09", "symbol": "AAPL", "close": 259.37}, {"date": "2026-01-12", "symbol": "AAPL", "close": 260.25}, {"date": "2026-01-13", "symbol": "AAPL", "close": 261.05}, {"date": "2026-01-14", "symbol": "AAPL", "close": 259.96}, {"date": "2026-01-15", "symbol": "AAPL", "close": 258.21}, {"date": "2026-01-16", "symbol": "AAPL", "close": 255.53}, {"date": "2026-01-20", "symbol": "AAPL", "close": 246.7}, {"date": "2026-01-21", "symbol": "AAPL", "close": 247.65}, {"date": "2026-01-22", "symbol": "AAPL", "close": 248.35}, {"date": "2026-01-23", "symbol": "AAPL", "close": 248.04}, {"date": "2026-01-26", "symbol": "AAPL", "close": 255.41}, {"date": "2025-07-31", "symbol": "AMZN", "close": 234.11}, {"date": "2025-08-01", "symbol": "AMZN", "close": 214.75}, {"date": "2025-08-04", "symbol": "AMZN", "close": 211.65}, {"date": "2025-08-05", "symbol": "AMZN", "close": 213.75}, {"date": "2025-08-06", "symbol": "AMZN", "close": 222.31}, {"date": "2025-08-07", "symbol": "AMZN", "close": 223.13}, {"date": "2025-08-08", "symbol": "AMZN", "close": 222.69}, {"date": "2025-08-11", "symbol": "AMZN", "close": 221.3}, {"date": "2025-08-12", "symbol": "AMZN", "close": 221.47}, {"date": "2025-08-13", "symbol": "AMZN", "close": 224.56}, {"date": "2025-08-14", "symbol": "AMZN", "close": 230.98}, {"date": "2025-08-15", "symbol": "AMZN", "close": 231.03}, {"date": "2025-08-18", "symbol": "AMZN", "close": 231.49}, {"date": "2025-08-19", "symbol": "AMZN", "close": 228.01}, {"date": "2025-08-20", "symbol": "AMZN", "close": 223.81}, {"date": "2025-08-21", "symbol": "AMZN", "close": 221.95}, {"date": "2025-08-22", "symbol": "AMZN", "close": 228.84}, {"date": "2025-08-25", "symbol": "AMZN", "close": 227.94}, {"date": "2025-08-26", "symbol": "AMZN", "close": 228.71}, {"date": "2025-08-27", "symbol": "AMZN", "close": 229.12}, {"date": "2025-08-28", "symbol": "AMZN", "close": 231.6}, {"date": "2025-08-29", "symbol": "AMZN", "close": 229}, {"date": "2025-09-02", "symbol": "AMZN", "close": 225.34}, {"date": "2025-09-03", "symbol": "AMZN", "close": 225.99}, {"date": "2025-09-04", "symbol": "AMZN", "close": 235.68}, {"date": "2025-09-05", "symbol": "AMZN", "close": 232.33}, {"date": "2025-09-08", "symbol": "AMZN", "close": 235.84}, {"date": "2025-09-09", "symbol": "AMZN", "close": 238.24}, {"date": "2025-09-10", "symbol": "AMZN", "close": 230.33}, {"date": "2025-09-11", "symbol": "AMZN", "close": 229.95}, {"date": "2025-09-12", "symbol": "AMZN", "close": 228.15}, {"date": "2025-09-15", "symbol": "AMZN", "close": 231.43}, {"date": "2025-09-16", "symbol": "AMZN", "close": 234.05}, {"date": "2025-09-17", "symbol": "AMZN", "close": 231.62}, {"date": "2025-09-18", "symbol": "AMZN", "close": 231.23}, {"date": "2025-09-19", "symbol": "AMZN", "close": 231.48}, {"date": "2025-09-22", "symbol": "AMZN", "close": 227.63}, {"date": "2025-09-23", "symbol": "AMZN", "close": 220.71}, {"date": "2025-09-24", "symbol": "AMZN", "close": 220.21}, {"date": "2025-09-25", "symbol": "AMZN", "close": 218.15}, {"date": "2025-09-26", "symbol": "AMZN", "close": 219.78}, {"date": "2025-09-29", "symbol": "AMZN", "close": 222.17}, {"date": "2025-09-30", "symbol": "AMZN", "close": 219.57}, {"date": "2025-10-01", "symbol": "AMZN", "close": 220.63}, {"date": "2025-10-02", "symbol": "AMZN", "close": 222.41}, {"date": "2025-10-03", "symbol": "AMZN", "close": 219.51}, {"date": "2025-10-06", "symbol": "AMZN", "close": 220.9}, {"date": "2025-10-07", "symbol": "AMZN", "close": 221.78}, {"date": "2025-10-08", "symbol": "AMZN", "close": 225.22}, {"date": "2025-10-09", "symbol": "AMZN", "close": 227.74}, {"date": "2025-10-10", "symbol": "AMZN", "close": 216.37}, {"date": "2025-10-13", "symbol": "AMZN", "close": 220.07}, {"date": "2025-10-14", "symbol": "AMZN", "close": 216.39}, {"date": "2025-10-15", "symbol": "AMZN", "close": 215.57}, {"date": "2025-10-16", "symbol": "AMZN", "close": 214.47}, {"date": "2025-10-17", "symbol": "AMZN", "close": 213.04}, {"date": "2025-10-20", "symbol": "AMZN", "close": 216.48}, {"date": "2025-10-21", "symbol": "AMZN", "close": 222.03}, {"date": "2025-10-22", "symbol": "AMZN", "close": 217.95}, {"date": "2025-10-23", "symbol": "AMZN", "close": 221.09}, {"date": "2025-10-24", "symbol": "AMZN", "close": 224.21}, {"date": "2025-10-27", "symbol": "AMZN", "close": 226.97}, {"date": "2025-10-28", "symbol": "AMZN", "close": 229.25}, {"date": "2025-10-29", "symbol": "AMZN", "close": 230.3}, {"date": "2025-10-30", "symbol": "AMZN", "close": 222.86}, {"date": "2025-10-31", "symbol": "AMZN", "close": 244.22}, {"date": "2025-11-03", "symbol": "AMZN", "close": 254}, {"date": "2025-11-04", "symbol": "AMZN", "close": 249.32}, {"date": "2025-11-05", "symbol": "AMZN", "close": 250.2}, {"date": "2025-11-06", "symbol": "AMZN", "close": 243.04}, {"date": "2025-11-07", "symbol": "AMZN", "close": 244.41}, {"date": "2025-11-10", "symbol": "AMZN", "close": 248.4}, {"date": "2025-11-11", "symbol": "AMZN", "close": 249.1}, {"date": "2025-11-12", "symbol": "AMZN", "close": 244.2}, {"date": "2025-11-13", "symbol": "AMZN", "close": 237.58}, {"date": "2025-11-14", "symbol": "AMZN", "close": 234.69}, {"date": "2025-11-17", "symbol": "AMZN", "close": 232.87}, {"date": "2025-11-18", "symbol": "AMZN", "close": 222.55}, {"date": "2025-11-19", "symbol": "AMZN", "close": 222.69}, {"date": "2025-11-20", "symbol": "AMZN", "close": 217.14}, {"date": "2025-11-21", "symbol": "AMZN", "close": 220.69}, {"date": "2025-11-24", "symbol": "AMZN", "close": 226.28}, {"date": "2025-11-25", "symbol": "AMZN", "close": 229.67}, {"date": "2025-11-26", "symbol": "AMZN", "close": 229.16}, {"date": "2025-11-28", "symbol": "AMZN", "close": 233.22}, {"date": "2025-12-01", "symbol": "AMZN", "close": 233.88}, {"date": "2025-12-02", "symbol": "AMZN", "close": 234.42}, {"date": "2025-12-03", "symbol": "AMZN", "close": 232.38}, {"date": "2025-12-04", "symbol": "AMZN", "close": 229.11}, {"date": "2025-12-05", "symbol": "AMZN", "close": 229.53}, {"date": "2025-12-08", "symbol": "AMZN", "close": 226.89}, {"date": "2025-12-09", "symbol": "AMZN", "close": 227.92}, {"date": "2025-12-10", "symbol": "AMZN", "close": 231.78}, {"date": "2025-12-11", "symbol": "AMZN", "close": 230.28}, {"date": "2025-12-12", "symbol": "AMZN", "close": 226.19}, {"date": "2025-12-15", "symbol": "AMZN", "close": 222.54}, {"date": "2025-12-16", "symbol": "AMZN", "close": 222.56}, {"date": "2025-12-17", "symbol": "AMZN", "close": 221.27}, {"date": "2025-12-18", "symbol": "AMZN", "close": 226.76}, {"date": "2025-12-19", "symbol": "AMZN", "close": 227.35}, {"date": "2025-12-22", "symbol": "AMZN", "close": 228.43}, {"date": "2025-12-23", "symbol": "AMZN", "close": 232.14}, {"date": "2025-12-24", "symbol": "AMZN", "close": 232.38}, {"date": "2025-12-26", "symbol": "AMZN", "close": 232.52}, {"date": "2025-12-29", "symbol": "AMZN", "close": 232.07}, {"date": "2025-12-30", "symbol": "AMZN", "close": 232.53}, {"date": "2025-12-31", "symbol": "AMZN", "close": 230.82}, {"date": "2026-01-02", "symbol": "AMZN", "close": 226.5}, {"date": "2026-01-05", "symbol": "AMZN", "close": 233.06}, {"date": "2026-01-06", "symbol": "AMZN", "close": 240.93}, {"date": "2026-01-07", "symbol": "AMZN", "close": 241.56}, {"date": "2026-01-08", "symbol": "AMZN", "close": 246.29}, {"date": "2026-01-09", "symbol": "AMZN", "close": 247.38}, {"date": "2026-01-12", "symbol": "AMZN", "close": 246.47}, {"date": "2026-01-13", "symbol": "AMZN", "close": 242.6}, {"date": "2026-01-14", "symbol": "AMZN", "close": 236.65}, {"date": "2026-01-15", "symbol": "AMZN", "close": 238.18}, {"date": "2026-01-16", "symbol": "AMZN", "close": 239.12}, {"date": "2026-01-20", "symbol": "AMZN", "close": 231}, {"date": "2026-01-21", "symbol": "AMZN", "close": 231.31}, {"date": "2026-01-22", "symbol": "AMZN", "close": 234.34}, {"date": "2026-01-23", "symbol": "AMZN", "close": 239.16}, {"date": "2026-01-26", "symbol": "AMZN", "close": 238.42}, {"date": "2025-07-31", "symbol": "GOOGL", "close": 191.6}, {"date": "2025-08-01", "symbol": "GOOGL", "close": 188.84}, {"date": "2025-08-04", "symbol": "GOOGL", "close": 194.74}, {"date": "2025-08-05", "symbol": "GOOGL", "close": 194.37}, {"date": "2025-08-06", "symbol": "GOOGL", "close": 195.79}, {"date": "2025-08-07", "symbol": "GOOGL", "close": 196.22}, {"date": "2025-08-08", "symbol": "GOOGL", "close": 201.11}, {"date": "2025-08-11", "symbol": "GOOGL", "close": 200.69}, {"date": "2025-08-12", "symbol": "GOOGL", "close": 203.03}, {"date": "2025-08-13", "symbol": "GOOGL", "close": 201.65}, {"date": "2025-08-14", "symbol": "GOOGL", "close": 202.63}, {"date": "2025-08-15", "symbol": "GOOGL", "close": 203.58}, {"date": "2025-08-18", "symbol": "GOOGL", "close": 203.19}, {"date": "2025-08-19", "symbol": "GOOGL", "close": 201.26}, {"date": "2025-08-20", "symbol": "GOOGL", "close": 199.01}, {"date": "2025-08-21", "symbol": "GOOGL", "close": 199.44}, {"date": "2025-08-22", "symbol": "GOOGL", "close": 205.77}, {"date": "2025-08-25", "symbol": "GOOGL", "close": 208.17}, {"date": "2025-08-26", "symbol": "GOOGL", "close": 206.82}, {"date": "2025-08-27", "symbol": "GOOGL", "close": 207.16}, {"date": "2025-08-28", "symbol": "GOOGL", "close": 211.31}, {"date": "2025-08-29", "symbol": "GOOGL", "close": 212.58}, {"date": "2025-09-02", "symbol": "GOOGL", "close": 211.02}, {"date": "2025-09-03", "symbol": "GOOGL", "close": 230.3}, {"date": "2025-09-04", "symbol": "GOOGL", "close": 231.94}, {"date": "2025-09-05", "symbol": "GOOGL", "close": 234.64}, {"date": "2025-09-08", "symbol": "GOOGL", "close": 233.89}, {"date": "2025-09-09", "symbol": "GOOGL", "close": 239.47}, {"date": "2025-09-10", "symbol": "GOOGL", "close": 239.01}, {"date": "2025-09-11", "symbol": "GOOGL", "close": 240.21}, {"date": "2025-09-12", "symbol": "GOOGL", "close": 240.64}, {"date": "2025-09-15", "symbol": "GOOGL", "close": 251.45}, {"date": "2025-09-16", "symbol": "GOOGL", "close": 251}, {"date": "2025-09-17", "symbol": "GOOGL", "close": 249.37}, {"date": "2025-09-18", "symbol": "GOOGL", "close": 251.87}, {"date": "2025-09-19", "symbol": "GOOGL", "close": 254.55}, {"date": "2025-09-22", "symbol": "GOOGL", "close": 252.36}, {"date": "2025-09-23", "symbol": "GOOGL", "close": 251.5}, {"date": "2025-09-24", "symbol": "GOOGL", "close": 246.98}, {"date": "2025-09-25", "symbol": "GOOGL", "close": 245.63}, {"date": "2025-09-26", "symbol": "GOOGL", "close": 246.38}, {"date": "2025-09-29", "symbol": "GOOGL", "close": 243.89}, {"date": "2025-09-30", "symbol": "GOOGL", "close": 242.94}, {"date": "2025-10-01", "symbol": "GOOGL", "close": 244.74}, {"date": "2025-10-02", "symbol": "GOOGL", "close": 245.53}, {"date": "2025-10-03", "symbol": "GOOGL", "close": 245.19}, {"date": "2025-10-06", "symbol": "GOOGL", "close": 250.27}, {"date": "2025-10-07", "symbol": "GOOGL", "close": 245.6}, {"date": "2025-10-08", "symbol": "GOOGL", "close": 244.46}, {"date": "2025-10-09", "symbol": "GOOGL", "close": 241.37}, {"date": "2025-10-10", "symbol": "GOOGL", "close": 236.42}, {"date": "2025-10-13", "symbol": "GOOGL", "close": 243.99}, {"date": "2025-10-14", "symbol": "GOOGL", "close": 245.29}, {"date": "2025-10-15", "symbol": "GOOGL", "close": 250.87}, {"date": "2025-10-16", "symbol": "GOOGL", "close": 251.3}, {"date": "2025-10-17", "symbol": "GOOGL", "close": 253.13}, {"date": "2025-10-20", "symbol": "GOOGL", "close": 256.38}, {"date": "2025-10-21", "symbol": "GOOGL", "close": 250.3}, {"date": "2025-10-22", "symbol": "GOOGL", "close": 251.53}, {"date": "2025-10-23", "symbol": "GOOGL", "close": 252.91}, {"date": "2025-10-24", "symbol": "GOOGL", "close": 259.75}, {"date": "2025-10-27", "symbol": "GOOGL", "close": 269.09}, {"date": "2025-10-28", "symbol": "GOOGL", "close": 267.3}, {"date": "2025-10-29", "symbol": "GOOGL", "close": 274.39}, {"date": "2025-10-30", "symbol": "GOOGL", "close": 281.3}, {"date": "2025-10-31", "symbol": "GOOGL", "close": 281.01}, {"date": "2025-11-03", "symbol": "GOOGL", "close": 283.53}, {"date": "2025-11-04", "symbol": "GOOGL", "close": 277.36}, {"date": "2025-11-05", "symbol": "GOOGL", "close": 284.12}, {"date": "2025-11-06", "symbol": "GOOGL", "close": 284.56}, {"date": "2025-11-07", "symbol": "GOOGL", "close": 278.65}, {"date": "2025-11-10", "symbol": "GOOGL", "close": 289.91}, {"date": "2025-11-11", "symbol": "GOOGL", "close": 291.12}, {"date": "2025-11-12", "symbol": "GOOGL", "close": 286.52}, {"date": "2025-11-13", "symbol": "GOOGL", "close": 278.39}, {"date": "2025-11-14", "symbol": "GOOGL", "close": 276.23}, {"date": "2025-11-17", "symbol": "GOOGL", "close": 284.83}, {"date": "2025-11-18", "symbol": "GOOGL", "close": 284.09}, {"date": "2025-11-19", "symbol": "GOOGL", "close": 292.62}, {"date": "2025-11-20", "symbol": "GOOGL", "close": 289.26}, {"date": "2025-11-21", "symbol": "GOOGL", "close": 299.46}, {"date": "2025-11-24", "symbol": "GOOGL", "close": 318.37}, {"date": "2025-11-25", "symbol": "GOOGL", "close": 323.23}, {"date": "2025-11-26", "symbol": "GOOGL", "close": 319.74}, {"date": "2025-11-28", "symbol": "GOOGL", "close": 319.97}, {"date": "2025-12-01", "symbol": "GOOGL", "close": 314.68}, {"date": "2025-12-02", "symbol": "GOOGL", "close": 315.6}, {"date": "2025-12-03", "symbol": "GOOGL", "close": 319.42}, {"date": "2025-12-04", "symbol": "GOOGL", "close": 317.41}, {"date": "2025-12-05", "symbol": "GOOGL", "close": 321.06}, {"date": "2025-12-08", "symbol": "GOOGL", "close": 313.72}, {"date": "2025-12-09", "symbol": "GOOGL", "close": 317.08}, {"date": "2025-12-10", "symbol": "GOOGL", "close": 320.21}, {"date": "2025-12-11", "symbol": "GOOGL", "close": 312.43}, {"date": "2025-12-12", "symbol": "GOOGL", "close": 309.29}, {"date": "2025-12-15", "symbol": "GOOGL", "close": 308.22}, {"date": "2025-12-16", "symbol": "GOOGL", "close": 306.57}, {"date": "2025-12-17", "symbol": "GOOGL", "close": 296.72}, {"date": "2025-12-18", "symbol": "GOOGL", "close": 302.46}, {"date": "2025-12-19", "symbol": "GOOGL", "close": 307.16}, {"date": "2025-12-22", "symbol": "GOOGL", "close": 309.78}, {"date": "2025-12-23", "symbol": "GOOGL", "close": 314.35}, {"date": "2025-12-24", "symbol": "GOOGL", "close": 314.09}, {"date": "2025-12-26", "symbol": "GOOGL", "close": 313.51}, {"date": "2025-12-29", "symbol": "GOOGL", "close": 313.56}, {"date": "2025-12-30", "symbol": "GOOGL", "close": 313.85}, {"date": "2025-12-31", "symbol": "GOOGL", "close": 313}, {"date": "2026-01-02", "symbol": "GOOGL", "close": 315.15}, {"date": "2026-01-05", "symbol": "GOOGL", "close": 316.54}, {"date": "2026-01-06", "symbol": "GOOGL", "close": 314.34}, {"date": "2026-01-07", "symbol": "GOOGL", "close": 321.98}, {"date": "2026-01-08", "symbol": "GOOGL", "close": 325.44}, {"date": "2026-01-09", "symbol": "GOOGL", "close": 328.57}, {"date": "2026-01-12", "symbol": "GOOGL", "close": 331.86}, {"date": "2026-01-13", "symbol": "GOOGL", "close": 335.97}, {"date": "2026-01-14", "symbol": "GOOGL", "close": 335.84}, {"date": "2026-01-15", "symbol": "GOOGL", "close": 332.78}, {"date": "2026-01-16", "symbol": "GOOGL", "close": 330}, {"date": "2026-01-20", "symbol": "GOOGL", "close": 322}, {"date": "2026-01-21", "symbol": "GOOGL", "close": 328.38}, {"date": "2026-01-22", "symbol": "GOOGL", "close": 330.54}, {"date": "2026-01-23", "symbol": "GOOGL", "close": 327.93}, {"date": "2026-01-26", "symbol": "GOOGL", "close": 333.26}, {"date": "2025-07-31", "symbol": "META", "close": 772.29}, {"date": "2025-08-01", "symbol": "META", "close": 748.89}, {"date": "2025-08-04", "symbol": "META", "close": 775.21}, {"date": "2025-08-05", "symbol": "META", "close": 762.32}, {"date": "2025-08-06", "symbol": "META", "close": 770.84}, {"date": "2025-08-07", "symbol": "META", "close": 760.7}, {"date": "2025-08-08", "symbol": "META", "close": 768.15}, {"date": "2025-08-11", "symbol": "META", "close": 764.73}, {"date": "2025-08-12", "symbol": "META", "close": 788.82}, {"date": "2025-08-13", "symbol": "META", "close": 778.92}, {"date": "2025-08-14", "symbol": "META", "close": 780.97}, {"date": "2025-08-15", "symbol": "META", "close": 784.06}, {"date": "2025-08-18", "symbol": "META", "close": 766.23}, {"date": "2025-08-19", "symbol": "META", "close": 750.36}, {"date": "2025-08-20", "symbol": "META", "close": 746.61}, {"date": "2025-08-21", "symbol": "META", "close": 738}, {"date": "2025-08-22", "symbol": "META", "close": 753.67}, {"date": "2025-08-25", "symbol": "META", "close": 752.18}, {"date": "2025-08-26", "symbol": "META", "close": 752.98}, {"date": "2025-08-27", "symbol": "META", "close": 746.27}, {"date": "2025-08-28", "symbol": "META", "close": 749.99}, {"date": "2025-08-29", "symbol": "META", "close": 737.6}, {"date": "2025-09-02", "symbol": "META", "close": 734.02}, {"date": "2025-09-03", "symbol": "META", "close": 735.95}, {"date": "2025-09-04", "symbol": "META", "close": 747.54}, {"date": "2025-09-05", "symbol": "META", "close": 751.33}, {"date": "2025-09-08", "symbol": "META", "close": 751.18}, {"date": "2025-09-09", "symbol": "META", "close": 764.56}, {"date": "2025-09-10", "symbol": "META", "close": 750.86}, {"date": "2025-09-11", "symbol": "META", "close": 749.78}, {"date": "2025-09-12", "symbol": "META", "close": 754.47}, {"date": "2025-09-15", "symbol": "META", "close": 763.56}, {"date": "2025-09-16", "symbol": "META", "close": 777.84}, {"date": "2025-09-17", "symbol": "META", "close": 774.57}, {"date": "2025-09-18", "symbol": "META", "close": 779.09}, {"date": "2025-09-19", "symbol": "META", "close": 777.22}, {"date": "2025-09-22", "symbol": "META", "close": 764.54}, {"date": "2025-09-23", "symbol": "META", "close": 754.78}, {"date": "2025-09-24", "symbol": "META", "close": 760.04}, {"date": "2025-09-25", "symbol": "META", "close": 748.3}, {"date": "2025-09-26", "symbol": "META", "close": 743.14}, {"date": "2025-09-29", "symbol": "META", "close": 742.79}, {"date": "2025-09-30", "symbol": "META", "close": 733.78}, {"date": "2025-10-01", "symbol": "META", "close": 716.76}, {"date": "2025-10-02", "symbol": "META", "close": 726.46}, {"date": "2025-10-03", "symbol": "META", "close": 709.98}, {"date": "2025-10-06", "symbol": "META", "close": 715.08}, {"date": "2025-10-07", "symbol": "META", "close": 712.5}, {"date": "2025-10-08", "symbol": "META", "close": 717.26}, {"date": "2025-10-09", "symbol": "META", "close": 732.91}, {"date": "2025-10-10", "symbol": "META", "close": 704.73}, {"date": "2025-10-13", "symbol": "META", "close": 715.12}, {"date": "2025-10-14", "symbol": "META", "close": 708.07}, {"date": "2025-10-15", "symbol": "META", "close": 716.97}, {"date": "2025-10-16", "symbol": "META", "close": 711.49}, {"date": "2025-10-17", "symbol": "META", "close": 716.34}, {"date": "2025-10-20", "symbol": "META", "close": 731.57}, {"date": "2025-10-21", "symbol": "META", "close": 732.67}, {"date": "2025-10-22", "symbol": "META", "close": 732.81}, {"date": "2025-10-23", "symbol": "META", "close": 733.4}, {"date": "2025-10-24", "symbol": "META", "close": 737.76}, {"date": "2025-10-27", "symbol": "META", "close": 750.21}, {"date": "2025-10-28", "symbol": "META", "close": 750.83}, {"date": "2025-10-29", "symbol": "META", "close": 751.06}, {"date": "2025-10-30", "symbol": "META", "close": 665.93}, {"date": "2025-10-31", "symbol": "META", "close": 647.82}, {"date": "2025-11-03", "symbol": "META", "close": 637.19}, {"date": "2025-11-04", "symbol": "META", "close": 626.81}, {"date": "2025-11-05", "symbol": "META", "close": 635.43}, {"date": "2025-11-06", "symbol": "META", "close": 618.44}, {"date": "2025-11-07", "symbol": "META", "close": 621.2}, {"date": "2025-11-10", "symbol": "META", "close": 631.25}, {"date": "2025-11-11", "symbol": "META", "close": 626.57}, {"date": "2025-11-12", "symbol": "META", "close": 608.51}, {"date": "2025-11-13", "symbol": "META", "close": 609.39}, {"date": "2025-11-14", "symbol": "META", "close": 608.96}, {"date": "2025-11-17", "symbol": "META", "close": 601.52}, {"date": "2025-11-18", "symbol": "META", "close": 597.2}, {"date": "2025-11-19", "symbol": "META", "close": 589.84}, {"date": "2025-11-20", "symbol": "META", "close": 588.67}, {"date": "2025-11-21", "symbol": "META", "close": 593.77}, {"date": "2025-11-24", "symbol": "META", "close": 612.55}, {"date": "2025-11-25", "symbol": "META", "close": 635.7}, {"date": "2025-11-26", "symbol": "META", "close": 633.09}, {"date": "2025-11-28", "symbol": "META", "close": 647.42}, {"date": "2025-12-01", "symbol": "META", "close": 640.35}, {"date": "2025-12-02", "symbol": "META", "close": 646.57}, {"date": "2025-12-03", "symbol": "META", "close": 639.08}, {"date": "2025-12-04", "symbol": "META", "close": 660.99}, {"date": "2025-12-05", "symbol": "META", "close": 672.87}, {"date": "2025-12-08", "symbol": "META", "close": 666.26}, {"date": "2025-12-09", "symbol": "META", "close": 656.42}, {"date": "2025-12-10", "symbol": "META", "close": 649.6}, {"date": "2025-12-11", "symbol": "META", "close": 652.18}, {"date": "2025-12-12", "symbol": "META", "close": 643.71}, {"date": "2025-12-15", "symbol": "META", "close": 647.51}, {"date": "2025-12-16", "symbol": "META", "close": 657.15}, {"date": "2025-12-17", "symbol": "META", "close": 649.5}, {"date": "2025-12-18", "symbol": "META", "close": 664.45}, {"date": "2025-12-19", "symbol": "META", "close": 658.77}, {"date": "2025-12-22", "symbol": "META", "close": 661.5}, {"date": "2025-12-23", "symbol": "META", "close": 664.94}, {"date": "2025-12-24", "symbol": "META", "close": 667.55}, {"date": "2025-12-26", "symbol": "META", "close": 663.29}, {"date": "2025-12-29", "symbol": "META", "close": 658.69}, {"date": "2025-12-30", "symbol": "META", "close": 665.95}, {"date": "2025-12-31", "symbol": "META", "close": 660.09}, {"date": "2026-01-02", "symbol": "META", "close": 650.41}, {"date": "2026-01-05", "symbol": "META", "close": 658.79}, {"date": "2026-01-06", "symbol": "META", "close": 660.62}, {"date": "2026-01-07", "symbol": "META", "close": 648.69}, {"date": "2026-01-08", "symbol": "META", "close": 646.06}, {"date": "2026-01-09", "symbol": "META", "close": 653.06}, {"date": "2026-01-12", "symbol": "META", "close": 641.97}, {"date": "2026-01-13", "symbol": "META", "close": 631.09}, {"date": "2026-01-14", "symbol": "META", "close": 615.52}, {"date": "2026-01-15", "symbol": "META", "close": 620.8}, {"date": "2026-01-16", "symbol": "META", "close": 620.25}, {"date": "2026-01-20", "symbol": "META", "close": 604.12}, {"date": "2026-01-21", "symbol": "META", "close": 612.96}, {"date": "2026-01-22", "symbol": "META", "close": 647.63}, {"date": "2026-01-23", "symbol": "META", "close": 658.76}, {"date": "2026-01-26", "symbol": "META", "close": 672.36}, {"date": "2025-07-31", "symbol": "MSFT", "close": 531.63}, {"date": "2025-08-01", "symbol": "MSFT", "close": 522.27}, {"date": "2025-08-04", "symbol": "MSFT", "close": 533.76}, {"date": "2025-08-05", "symbol": "MSFT", "close": 525.9}, {"date": "2025-08-06", "symbol": "MSFT", "close": 523.1}, {"date": "2025-08-07", "symbol": "MSFT", "close": 519.01}, {"date": "2025-08-08", "symbol": "MSFT", "close": 520.21}, {"date": "2025-08-11", "symbol": "MSFT", "close": 519.94}, {"date": "2025-08-12", "symbol": "MSFT", "close": 527.38}, {"date": "2025-08-13", "symbol": "MSFT", "close": 518.75}, {"date": "2025-08-14", "symbol": "MSFT", "close": 520.65}, {"date": "2025-08-15", "symbol": "MSFT", "close": 518.35}, {"date": "2025-08-18", "symbol": "MSFT", "close": 515.29}, {"date": "2025-08-19", "symbol": "MSFT", "close": 507.98}, {"date": "2025-08-20", "symbol": "MSFT", "close": 503.95}, {"date": "2025-08-21", "symbol": "MSFT", "close": 503.3}, {"date": "2025-08-22", "symbol": "MSFT", "close": 506.28}, {"date": "2025-08-25", "symbol": "MSFT", "close": 503.32}, {"date": "2025-08-26", "symbol": "MSFT", "close": 501.1}, {"date": "2025-08-27", "symbol": "MSFT", "close": 505.79}, {"date": "2025-08-28", "symbol": "MSFT", "close": 508.69}, {"date": "2025-08-29", "symbol": "MSFT", "close": 505.74}, {"date": "2025-09-02", "symbol": "MSFT", "close": 504.18}, {"date": "2025-09-03", "symbol": "MSFT", "close": 504.41}, {"date": "2025-09-04", "symbol": "MSFT", "close": 507.02}, {"date": "2025-09-05", "symbol": "MSFT", "close": 494.08}, {"date": "2025-09-08", "symbol": "MSFT", "close": 497.27}, {"date": "2025-09-09", "symbol": "MSFT", "close": 497.48}, {"date": "2025-09-10", "symbol": "MSFT", "close": 499.44}, {"date": "2025-09-11", "symbol": "MSFT", "close": 500.07}, {"date": "2025-09-12", "symbol": "MSFT", "close": 508.95}, {"date": "2025-09-15", "symbol": "MSFT", "close": 514.4}, {"date": "2025-09-16", "symbol": "MSFT", "close": 508.09}, {"date": "2025-09-17", "symbol": "MSFT", "close": 509.07}, {"date": "2025-09-18", "symbol": "MSFT", "close": 507.5}, {"date": "2025-09-19", "symbol": "MSFT", "close": 516.96}, {"date": "2025-09-22", "symbol": "MSFT", "close": 513.49}, {"date": "2025-09-23", "symbol": "MSFT", "close": 508.28}, {"date": "2025-09-24", "symbol": "MSFT", "close": 509.2}, {"date": "2025-09-25", "symbol": "MSFT", "close": 506.08}, {"date": "2025-09-26", "symbol": "MSFT", "close": 510.5}, {"date": "2025-09-29", "symbol": "MSFT", "close": 513.64}, {"date": "2025-09-30", "symbol": "MSFT", "close": 516.98}, {"date": "2025-10-01", "symbol": "MSFT", "close": 518.74}, {"date": "2025-10-02", "symbol": "MSFT", "close": 514.78}, {"date": "2025-10-03", "symbol": "MSFT", "close": 516.38}, {"date": "2025-10-06", "symbol": "MSFT", "close": 527.58}, {"date": "2025-10-07", "symbol": "MSFT", "close": 523}, {"date": "2025-10-08", "symbol": "MSFT", "close": 523.87}, {"date": "2025-10-09", "symbol": "MSFT", "close": 521.42}, {"date": "2025-10-10", "symbol": "MSFT", "close": 510.01}, {"date": "2025-10-13", "symbol": "MSFT", "close": 513.09}, {"date": "2025-10-14", "symbol": "MSFT", "close": 512.61}, {"date": "2025-10-15", "symbol": "MSFT", "close": 512.47}, {"date": "2025-10-16", "symbol": "MSFT", "close": 510.65}, {"date": "2025-10-17", "symbol": "MSFT", "close": 512.62}, {"date": "2025-10-20", "symbol": "MSFT", "close": 515.82}, {"date": "2025-10-21", "symbol": "MSFT", "close": 516.69}, {"date": "2025-10-22", "symbol": "MSFT", "close": 519.57}, {"date": "2025-10-23", "symbol": "MSFT", "close": 519.59}, {"date": "2025-10-24", "symbol": "MSFT", "close": 522.63}, {"date": "2025-10-27", "symbol": "MSFT", "close": 530.53}, {"date": "2025-10-28", "symbol": "MSFT", "close": 541.06}, {"date": "2025-10-29", "symbol": "MSFT", "close": 540.54}, {"date": "2025-10-30", "symbol": "MSFT", "close": 524.78}, {"date": "2025-10-31", "symbol": "MSFT", "close": 516.84}, {"date": "2025-11-03", "symbol": "MSFT", "close": 516.06}, {"date": "2025-11-04", "symbol": "MSFT", "close": 513.37}, {"date": "2025-11-05", "symbol": "MSFT", "close": 506.21}, {"date": "2025-11-06", "symbol": "MSFT", "close": 496.17}, {"date": "2025-11-07", "symbol": "MSFT", "close": 495.89}, {"date": "2025-11-10", "symbol": "MSFT", "close": 505.05}, {"date": "2025-11-11", "symbol": "MSFT", "close": 507.73}, {"date": "2025-11-12", "symbol": "MSFT", "close": 510.19}, {"date": "2025-11-13", "symbol": "MSFT", "close": 502.35}, {"date": "2025-11-14", "symbol": "MSFT", "close": 509.23}, {"date": "2025-11-17", "symbol": "MSFT", "close": 506.54}, {"date": "2025-11-18", "symbol": "MSFT", "close": 492.87}, {"date": "2025-11-19", "symbol": "MSFT", "close": 486.21}, {"date": "2025-11-20", "symbol": "MSFT", "close": 478.43}, {"date": "2025-11-21", "symbol": "MSFT", "close": 472.12}, {"date": "2025-11-24", "symbol": "MSFT", "close": 474}, {"date": "2025-11-25", "symbol": "MSFT", "close": 476.99}, {"date": "2025-11-26", "symbol": "MSFT", "close": 485.5}, {"date": "2025-11-28", "symbol": "MSFT", "close": 492.01}, {"date": "2025-12-01", "symbol": "MSFT", "close": 486.74}, {"date": "2025-12-02", "symbol": "MSFT", "close": 490}, {"date": "2025-12-03", "symbol": "MSFT", "close": 477.73}, {"date": "2025-12-04", "symbol": "MSFT", "close": 480.84}, {"date": "2025-12-05", "symbol": "MSFT", "close": 483.16}, {"date": "2025-12-08", "symbol": "MSFT", "close": 491.02}, {"date": "2025-12-09", "symbol": "MSFT", "close": 492.02}, {"date": "2025-12-10", "symbol": "MSFT", "close": 478.56}, {"date": "2025-12-11", "symbol": "MSFT", "close": 483.47}, {"date": "2025-12-12", "symbol": "MSFT", "close": 478.53}, {"date": "2025-12-15", "symbol": "MSFT", "close": 474.82}, {"date": "2025-12-16", "symbol": "MSFT", "close": 476.39}, {"date": "2025-12-17", "symbol": "MSFT", "close": 476.12}, {"date": "2025-12-18", "symbol": "MSFT", "close": 483.98}, {"date": "2025-12-19", "symbol": "MSFT", "close": 485.92}, {"date": "2025-12-22", "symbol": "MSFT", "close": 484.92}, {"date": "2025-12-23", "symbol": "MSFT", "close": 486.85}, {"date": "2025-12-24", "symbol": "MSFT", "close": 488.02}, {"date": "2025-12-26", "symbol": "MSFT", "close": 487.71}, {"date": "2025-12-29", "symbol": "MSFT", "close": 487.1}, {"date": "2025-12-30", "symbol": "MSFT", "close": 487.48}, {"date": "2025-12-31", "symbol": "MSFT", "close": 483.62}, {"date": "2026-01-02", "symbol": "MSFT", "close": 472.94}, {"date": "2026-01-05", "symbol": "MSFT", "close": 472.85}, {"date": "2026-01-06", "symbol": "MSFT", "close": 478.51}, {"date": "2026-01-07", "symbol": "MSFT", "close": 483.47}, {"date": "2026-01-08", "symbol": "MSFT", "close": 478.11}, {"date": "2026-01-09", "symbol": "MSFT", "close": 479.28}, {"date": "2026-01-12", "symbol": "MSFT", "close": 477.18}, {"date": "2026-01-13", "symbol": "MSFT", "close": 470.67}, {"date": "2026-01-14", "symbol": "MSFT", "close": 459.38}, {"date": "2026-01-15", "symbol": "MSFT", "close": 456.66}, {"date": "2026-01-16", "symbol": "MSFT", "close": 459.86}, {"date": "2026-01-20", "symbol": "MSFT", "close": 454.52}, {"date": "2026-01-21", "symbol": "MSFT", "close": 444.11}, {"date": "2026-01-22", "symbol": "MSFT", "close": 451.14}, {"date": "2026-01-23", "symbol": "MSFT", "close": 465.95}, {"date": "2026-01-26", "symbol": "MSFT", "close": 470.28}, {"date": "2025-07-31", "symbol": "NVDA", "close": 177.85}, {"date": "2025-08-01", "symbol": "NVDA", "close": 173.7}, {"date": "2025-08-04", "symbol": "NVDA", "close": 179.98}, {"date": "2025-08-05", "symbol": "NVDA", "close": 178.24}, {"date": "2025-08-06", "symbol": "NVDA", "close": 179.4}, {"date": "2025-08-07", "symbol": "NVDA", "close": 180.75}, {"date": "2025-08-08", "symbol": "NVDA", "close": 182.68}, {"date": "2025-08-11", "symbol": "NVDA", "close": 182.04}, {"date": "2025-08-12", "symbol": "NVDA", "close": 183.14}, {"date": "2025-08-13", "symbol": "NVDA", "close": 181.57}, {"date": "2025-08-14", "symbol": "NVDA", "close": 182}, {"date": "2025-08-15", "symbol": "NVDA", "close": 180.43}, {"date": "2025-08-18", "symbol": "NVDA", "close": 181.99}, {"date": "2025-08-19", "symbol": "NVDA", "close": 175.62}, {"date": "2025-08-20", "symbol": "NVDA", "close": 175.38}, {"date": "2025-08-21", "symbol": "NVDA", "close": 174.96}, {"date": "2025-08-22", "symbol": "NVDA", "close": 177.97}, {"date": "2025-08-25", "symbol": "NVDA", "close": 179.79}, {"date": "2025-08-26", "symbol": "NVDA", "close": 181.75}, {"date": "2025-08-27", "symbol": "NVDA", "close": 181.58}, {"date": "2025-08-28", "symbol": "NVDA", "close": 180.15}, {"date": "2025-08-29", "symbol": "NVDA", "close": 174.16}, {"date": "2025-09-02", "symbol": "NVDA", "close": 170.76}, {"date": "2025-09-03", "symbol": "NVDA", "close": 170.6}, {"date": "2025-09-04", "symbol": "NVDA", "close": 171.64}, {"date": "2025-09-05", "symbol": "NVDA", "close": 167}, {"date": "2025-09-08", "symbol": "NVDA", "close": 168.29}, {"date": "2025-09-09", "symbol": "NVDA", "close": 170.74}, {"date": "2025-09-10", "symbol": "NVDA", "close": 177.31}, {"date": "2025-09-11", "symbol": "NVDA", "close": 177.16}, {"date": "2025-09-12", "symbol": "NVDA", "close": 177.81}, {"date": "2025-09-15", "symbol": "NVDA", "close": 177.74}, {"date": "2025-09-16", "symbol": "NVDA", "close": 174.87}, {"date": "2025-09-17", "symbol": "NVDA", "close": 170.28}, {"date": "2025-09-18", "symbol": "NVDA", "close": 176.23}, {"date": "2025-09-19", "symbol": "NVDA", "close": 176.66}, {"date": "2025-09-22", "symbol": "NVDA", "close": 183.6}, {"date": "2025-09-23", "symbol": "NVDA", "close": 178.42}, {"date": "2025-09-24", "symbol": "NVDA", "close": 176.96}, {"date": "2025-09-25", "symbol": "NVDA", "close": 177.68}, {"date": "2025-09-26", "symbol": "NVDA", "close": 178.18}, {"date": "2025-09-29", "symbol": "NVDA", "close": 181.84}, {"date": "2025-09-30", "symbol": "NVDA", "close": 186.57}, {"date": "2025-10-01", "symbol": "NVDA", "close": 187.23}, {"date": "2025-10-02", "symbol": "NVDA", "close": 188.88}, {"date": "2025-10-03", "symbol": "NVDA", "close": 187.61}, {"date": "2025-10-06", "symbol": "NVDA", "close": 185.53}, {"date": "2025-10-07", "symbol": "NVDA", "close": 185.03}, {"date": "2025-10-08", "symbol": "NVDA", "close": 189.1}, {"date": "2025-10-09", "symbol": "NVDA", "close": 192.56}, {"date": "2025-10-10", "symbol": "NVDA", "close": 183.15}, {"date": "2025-10-13", "symbol": "NVDA", "close": 188.31}, {"date": "2025-10-14", "symbol": "NVDA", "close": 180.02}, {"date": "2025-10-15", "symbol": "NVDA", "close": 179.82}, {"date": "2025-10-16", "symbol": "NVDA", "close": 181.8}, {"date": "2025-10-17", "symbol": "NVDA", "close": 183.21}, {"date": "2025-10-20", "symbol": "NVDA", "close": 182.63}, {"date": "2025-10-21", "symbol": "NVDA", "close": 181.15}, {"date": "2025-10-22", "symbol": "NVDA", "close": 180.27}, {"date": "2025-10-23", "symbol": "NVDA", "close": 182.15}, {"date": "2025-10-24", "symbol": "NVDA", "close": 186.25}, {"date": "2025-10-27", "symbol": "NVDA", "close": 191.48}, {"date": "2025-10-28", "symbol": "NVDA", "close": 201.02}, {"date": "2025-10-29", "symbol": "NVDA", "close": 207.03}, {"date": "2025-10-30", "symbol": "NVDA", "close": 202.88}, {"date": "2025-10-31", "symbol": "NVDA", "close": 202.48}, {"date": "2025-11-03", "symbol": "NVDA", "close": 206.87}, {"date": "2025-11-04", "symbol": "NVDA", "close": 198.68}, {"date": "2025-11-05", "symbol": "NVDA", "close": 195.2}, {"date": "2025-11-06", "symbol": "NVDA", "close": 188.07}, {"date": "2025-11-07", "symbol": "NVDA", "close": 188.14}, {"date": "2025-11-10", "symbol": "NVDA", "close": 199.04}, {"date": "2025-11-11", "symbol": "NVDA", "close": 193.15}, {"date": "2025-11-12", "symbol": "NVDA", "close": 193.79}, {"date": "2025-11-13", "symbol": "NVDA", "close": 186.85}, {"date": "2025-11-14", "symbol": "NVDA", "close": 190.16}, {"date": "2025-11-17", "symbol": "NVDA", "close": 186.59}, {"date": "2025-11-18", "symbol": "NVDA", "close": 181.35}, {"date": "2025-11-19", "symbol": "NVDA", "close": 186.51}, {"date": "2025-11-20", "symbol": "NVDA", "close": 180.63}, {"date": "2025-11-21", "symbol": "NVDA", "close": 178.87}, {"date": "2025-11-24", "symbol": "NVDA", "close": 182.54}, {"date": "2025-11-25", "symbol": "NVDA", "close": 177.81}, {"date": "2025-11-26", "symbol": "NVDA", "close": 180.25}, {"date": "2025-11-28", "symbol": "NVDA", "close": 176.99}, {"date": "2025-12-01", "symbol": "NVDA", "close": 179.91}, {"date": "2025-12-02", "symbol": "NVDA", "close": 181.45}, {"date": "2025-12-03", "symbol": "NVDA", "close": 179.58}, {"date": "2025-12-04", "symbol": "NVDA", "close": 183.38}, {"date": "2025-12-05", "symbol": "NVDA", "close": 182.41}, {"date": "2025-12-08", "symbol": "NVDA", "close": 185.55}, {"date": "2025-12-09", "symbol": "NVDA", "close": 184.97}, {"date": "2025-12-10", "symbol": "NVDA", "close": 183.78}, {"date": "2025-12-11", "symbol": "NVDA", "close": 180.93}, {"date": "2025-12-12", "symbol": "NVDA", "close": 175.02}, {"date": "2025-12-15", "symbol": "NVDA", "close": 176.29}, {"date": "2025-12-16", "symbol": "NVDA", "close": 177.72}, {"date": "2025-12-17", "symbol": "NVDA", "close": 170.94}, {"date": "2025-12-18", "symbol": "NVDA", "close": 174.14}, {"date": "2025-12-19", "symbol": "NVDA", "close": 180.99}, {"date": "2025-12-22", "symbol": "NVDA", "close": 183.69}, {"date": "2025-12-23", "symbol": "NVDA", "close": 189.21}, {"date": "2025-12-24", "symbol": "NVDA", "close": 188.61}, {"date": "2025-12-26", "symbol": "NVDA", "close": 190.53}, {"date": "2025-12-29", "symbol": "NVDA", "close": 188.22}, {"date": "2025-12-30", "symbol": "NVDA", "close": 187.54}, {"date": "2025-12-31", "symbol": "NVDA", "close": 186.5}, {"date": "2026-01-02", "symbol": "NVDA", "close": 188.85}, {"date": "2026-01-05", "symbol": "NVDA", "close": 188.12}, {"date": "2026-01-06", "symbol": "NVDA", "close": 187.24}, {"date": "2026-01-07", "symbol": "NVDA", "close": 189.11}, {"date": "2026-01-08", "symbol": "NVDA", "close": 185.04}, {"date": "2026-01-09", "symbol": "NVDA", "close": 184.86}, {"date": "2026-01-12", "symbol": "NVDA", "close": 184.94}, {"date": "2026-01-13", "symbol": "NVDA", "close": 185.81}, {"date": "2026-01-14", "symbol": "NVDA", "close": 183.14}, {"date": "2026-01-15", "symbol": "NVDA", "close": 187.05}, {"date": "2026-01-16", "symbol": "NVDA", "close": 186.23}, {"date": "2026-01-20", "symbol": "NVDA", "close": 178.07}, {"date": "2026-01-21", "symbol": "NVDA", "close": 183.32}, {"date": "2026-01-22", "symbol": "NVDA", "close": 184.84}, {"date": "2026-01-23", "symbol": "NVDA", "close": 187.67}, {"date": "2026-01-26", "symbol": "NVDA", "close": 186.47}], "metadata": {"date": {"type": "date", "semanticType": "Date"}, "symbol": {"type": "string", "semanticType": "String"}, "close": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n", "source": ["history"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"input_tables\": [...] // string[], describe names of the input tables that will be used in the transformation.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", 'boxplot'. \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"input_tables\", the names of a subset of input tables from [CONTEXT] section that will be used to achieve the user's goal.\n - **IMPORTANT** Note that the Table 1 in [CONTEXT] section is the table the user is currently viewing, it should take precedence if the user refers to insights about the \"current table\".\n - At the same time, leverage table information to determine which tables are relevant to the user's goal and should be used.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", \"boxplot\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - boxplot: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - (boxplot) Box plots: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical (optional for creating grouped boxplots), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the boxplot will be grouped automatically (items with the same x values will be grouped).\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE]. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n# from sklearn import ... # import from sklearn if you need it.\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- decide the function signature based on the number of tables you decided in the previous step \"input_tables\":\n - if you decide there will only be one input table, then function signature should be `def transform_data(df1)`\n - if you decided there will be k input tables, then function signature should be `def transform_data(df_1, df_2, ..., df_k)`.\n - instead of using generic names like df1, df2, ..., try to use intuitive table names for function arguments, for example, if you have input_tables: [\"City\", \"Weather\"]`, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes.\n - **VERY IMPORTANT** the number of arguments in the function signature must be the same as the number of tables provided in \"input_tables\", and the order of arguments must match the order of tables provided in \"input_tables\".\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[GOAL]\n\n1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compare overall closing price trends and volatility over time for each stock symbol on a single line chart.\",\n \"display_instruction\": \"Visualize **closing price** trends by **symbol** over **date**\",\n \"recommendation\": \"A line chart with time on the x-axis and closing price on the y-axis, colored by symbol, best shows comparative trajectories and volatility over time. The data only needs column selection, date normalization, and sorting to be visualization-ready.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"}], "trigger": {"tableId": "history", "resultTableId": "table-233476", "chart": {"id": "chart-1769471233291", "chartType": "Auto", "encodingMap": {}, "tableRef": "history", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility.", "displayContent": "Visualize **closing price** trends by **symbol** over **date**"}]}, "explanation": {"status": "ok", "concepts": [], "code": "- **Keep only the key fields**: selects the columns **`\"date\"`**, **`\"symbol\"`**, and **`\"close\"`** from the input data and **drops all other columns**.\n- **Standardize the date format**: converts **`date`** into a **string** in the **`\"YYYY-MM-DD\"`** format to ensure consistency (no time component, no different date formats).\n- **Order the data for time-series use**: **sorts** the rows first by **`symbol`** and then by **`date`** so that each stock’s closing prices are in **chronological order**, which is important for **line charts** or time-based analysis.\n- **Return the cleaned dataset**: outputs this **simplified and ordered** table as the final transformed data.", "dialog": [{"role": "system", "content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n"}, {"role": "user", "content": "[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n\n\n[EXPLANATION]\n"}, {"role": "assistant", "content": "[CODE EXPLANATION]\n\n- **Keep only the key fields**: selects the columns **`\"date\"`**, **`\"symbol\"`**, and **`\"close\"`** from the input data and **drops all other columns**.\n- **Standardize the date format**: converts **`date`** into a **string** in the **`\"YYYY-MM-DD\"`** format to ensure consistency (no time component, no different date formats).\n- **Order the data for time-series use**: **sorts** the rows first by **`symbol`** and then by **`date`** so that each stock’s closing prices are in **chronological order**, which is important for **line charts** or time-based analysis.\n- **Return the cleaned dataset**: outputs this **simplified and ordered** table as the final transformed data.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```"}], "agent": "CodeExplanationAgent"}, "status": "completed"}, "anchored": false, "attachedMetadata": "", "contentHash": "a2a0adc6"}, {"kind": "table", "id": "table-265247", "displayId": "stock-ma", "names": ["date", "symbol", "close", "value", "ma_window"], "rows": [{"date": "2025-07-31", "symbol": "AAPL", "close": 207.13, "value": 207.13, "ma_window": 20}, {"date": "2025-08-01", "symbol": "AAPL", "close": 201.95, "value": 204.54, "ma_window": 20}, {"date": "2025-08-04", "symbol": "AAPL", "close": 202.92, "value": 204, "ma_window": 20}, {"date": "2025-08-05", "symbol": "AAPL", "close": 202.49, "value": 203.6225, "ma_window": 20}, {"date": "2025-08-06", "symbol": "AAPL", "close": 212.8, "value": 205.458, "ma_window": 20}, {"date": "2025-08-07", "symbol": "AAPL", "close": 219.57, "value": 207.81, "ma_window": 20}, {"date": "2025-08-08", "symbol": "AAPL", "close": 228.87, "value": 210.8185714286, "ma_window": 20}, {"date": "2025-08-11", "symbol": "AAPL", "close": 226.96, "value": 212.83625, "ma_window": 20}, {"date": "2025-08-12", "symbol": "AAPL", "close": 229.43, "value": 214.68, "ma_window": 20}, {"date": "2025-08-13", "symbol": "AAPL", "close": 233.1, "value": 216.522, "ma_window": 20}, {"date": "2025-08-14", "symbol": "AAPL", "close": 232.55, "value": 217.9790909091, "ma_window": 20}, {"date": "2025-08-15", "symbol": "AAPL", "close": 231.37, "value": 219.095, "ma_window": 20}, {"date": "2025-08-18", "symbol": "AAPL", "close": 230.67, "value": 219.9853846154, "ma_window": 20}, {"date": "2025-08-19", "symbol": "AAPL", "close": 230.34, "value": 220.725, "ma_window": 20}, {"date": "2025-08-20", "symbol": "AAPL", "close": 225.79, "value": 221.0626666667, "ma_window": 20}, {"date": "2025-08-21", "symbol": "AAPL", "close": 224.68, "value": 221.28875, "ma_window": 20}, {"date": "2025-08-22", "symbol": "AAPL", "close": 227.54, "value": 221.6564705882, "ma_window": 20}, {"date": "2025-08-25", "symbol": "AAPL", "close": 226.94, "value": 221.95, "ma_window": 20}, {"date": "2025-08-26", "symbol": "AAPL", "close": 229.09, "value": 222.3257894737, "ma_window": 20}, {"date": "2025-08-27", "symbol": "AAPL", "close": 230.27, "value": 222.723, "ma_window": 20}, {"date": "2025-08-28", "symbol": "AAPL", "close": 232.33, "value": 223.983, "ma_window": 20}, {"date": "2025-08-29", "symbol": "AAPL", "close": 231.92, "value": 225.4815, "ma_window": 20}, {"date": "2025-09-02", "symbol": "AAPL", "close": 229.5, "value": 226.8105, "ma_window": 20}, {"date": "2025-09-03", "symbol": "AAPL", "close": 238.24, "value": 228.598, "ma_window": 20}, {"date": "2025-09-04", "symbol": "AAPL", "close": 239.55, "value": 229.9355, "ma_window": 20}, {"date": "2025-09-05", "symbol": "AAPL", "close": 239.46, "value": 230.93, "ma_window": 20}, {"date": "2025-09-08", "symbol": "AAPL", "close": 237.65, "value": 231.369, "ma_window": 20}, {"date": "2025-09-09", "symbol": "AAPL", "close": 234.12, "value": 231.727, "ma_window": 20}, {"date": "2025-09-10", "symbol": "AAPL", "close": 226.57, "value": 231.584, "ma_window": 20}, {"date": "2025-09-11", "symbol": "AAPL", "close": 229.81, "value": 231.4195, "ma_window": 20}, {"date": "2025-09-12", "symbol": "AAPL", "close": 233.84, "value": 231.484, "ma_window": 20}, {"date": "2025-09-15", "symbol": "AAPL", "close": 236.47, "value": 231.739, "ma_window": 20}, {"date": "2025-09-16", "symbol": "AAPL", "close": 237.92, "value": 232.1015, "ma_window": 20}, {"date": "2025-09-17", "symbol": "AAPL", "close": 238.76, "value": 232.5225, "ma_window": 20}, {"date": "2025-09-18", "symbol": "AAPL", "close": 237.65, "value": 233.1155, "ma_window": 20}, {"date": "2025-09-19", "symbol": "AAPL", "close": 245.26, "value": 234.1445, "ma_window": 20}, {"date": "2025-09-22", "symbol": "AAPL", "close": 255.83, "value": 235.559, "ma_window": 20}, {"date": "2025-09-23", "symbol": "AAPL", "close": 254.18, "value": 236.921, "ma_window": 20}, {"date": "2025-09-24", "symbol": "AAPL", "close": 252.07, "value": 238.07, "ma_window": 20}, {"date": "2025-09-25", "symbol": "AAPL", "close": 256.62, "value": 239.3875, "ma_window": 20}, {"date": "2025-09-26", "symbol": "AAPL", "close": 255.21, "value": 240.5315, "ma_window": 20}, {"date": "2025-09-29", "symbol": "AAPL", "close": 254.18, "value": 241.6445, "ma_window": 20}, {"date": "2025-09-30", "symbol": "AAPL", "close": 254.38, "value": 242.8885, "ma_window": 20}, {"date": "2025-10-01", "symbol": "AAPL", "close": 255.2, "value": 243.7365, "ma_window": 20}, {"date": "2025-10-02", "symbol": "AAPL", "close": 256.88, "value": 244.603, "ma_window": 20}, {"date": "2025-10-03", "symbol": "AAPL", "close": 257.77, "value": 245.5185, "ma_window": 20}, {"date": "2025-10-06", "symbol": "AAPL", "close": 256.44, "value": 246.458, "ma_window": 20}, {"date": "2025-10-07", "symbol": "AAPL", "close": 256.23, "value": 247.5635, "ma_window": 20}, {"date": "2025-10-08", "symbol": "AAPL", "close": 257.81, "value": 249.1255, "ma_window": 20}, {"date": "2025-10-09", "symbol": "AAPL", "close": 253.79, "value": 250.3245, "ma_window": 20}, {"date": "2025-10-10", "symbol": "AAPL", "close": 245.03, "value": 250.884, "ma_window": 20}, {"date": "2025-10-13", "symbol": "AAPL", "close": 247.42, "value": 251.4315, "ma_window": 20}, {"date": "2025-10-14", "symbol": "AAPL", "close": 247.53, "value": 251.912, "ma_window": 20}, {"date": "2025-10-15", "symbol": "AAPL", "close": 249.1, "value": 252.429, "ma_window": 20}, {"date": "2025-10-16", "symbol": "AAPL", "close": 247.21, "value": 252.907, "ma_window": 20}, {"date": "2025-10-17", "symbol": "AAPL", "close": 252.05, "value": 253.2465, "ma_window": 20}, {"date": "2025-10-20", "symbol": "AAPL", "close": 261.99, "value": 253.5545, "ma_window": 20}, {"date": "2025-10-21", "symbol": "AAPL", "close": 262.52, "value": 253.9715, "ma_window": 20}, {"date": "2025-10-22", "symbol": "AAPL", "close": 258.2, "value": 254.278, "ma_window": 20}, {"date": "2025-10-23", "symbol": "AAPL", "close": 259.33, "value": 254.4135, "ma_window": 20}, {"date": "2025-10-24", "symbol": "AAPL", "close": 262.57, "value": 254.7815, "ma_window": 20}, {"date": "2025-10-27", "symbol": "AAPL", "close": 268.55, "value": 255.5, "ma_window": 20}, {"date": "2025-10-28", "symbol": "AAPL", "close": 268.74, "value": 256.218, "ma_window": 20}, {"date": "2025-10-29", "symbol": "AAPL", "close": 269.44, "value": 256.93, "ma_window": 20}, {"date": "2025-10-30", "symbol": "AAPL", "close": 271.14, "value": 257.643, "ma_window": 20}, {"date": "2025-10-31", "symbol": "AAPL", "close": 270.11, "value": 258.26, "ma_window": 20}, {"date": "2025-11-03", "symbol": "AAPL", "close": 268.79, "value": 258.8775, "ma_window": 20}, {"date": "2025-11-04", "symbol": "AAPL", "close": 269.78, "value": 259.555, "ma_window": 20}, {"date": "2025-11-05", "symbol": "AAPL", "close": 269.88, "value": 260.1585, "ma_window": 20}, {"date": "2025-11-06", "symbol": "AAPL", "close": 269.51, "value": 260.9445, "ma_window": 20}, {"date": "2025-11-07", "symbol": "AAPL", "close": 268.21, "value": 262.1035, "ma_window": 20}, {"date": "2025-11-10", "symbol": "AAPL", "close": 269.43, "value": 263.204, "ma_window": 20}, {"date": "2025-11-11", "symbol": "AAPL", "close": 275.25, "value": 264.59, "ma_window": 20}, {"date": "2025-11-12", "symbol": "AAPL", "close": 273.47, "value": 265.8085, "ma_window": 20}, {"date": "2025-11-13", "symbol": "AAPL", "close": 272.95, "value": 267.0955, "ma_window": 20}, {"date": "2025-11-14", "symbol": "AAPL", "close": 272.41, "value": 268.1135, "ma_window": 20}, {"date": "2025-11-17", "symbol": "AAPL", "close": 267.46, "value": 268.387, "ma_window": 20}, {"date": "2025-11-18", "symbol": "AAPL", "close": 267.44, "value": 268.633, "ma_window": 20}, {"date": "2025-11-19", "symbol": "AAPL", "close": 268.56, "value": 269.151, "ma_window": 20}, {"date": "2025-11-20", "symbol": "AAPL", "close": 266.25, "value": 269.497, "ma_window": 20}, {"date": "2025-11-21", "symbol": "AAPL", "close": 271.49, "value": 269.943, "ma_window": 20}, {"date": "2025-11-24", "symbol": "AAPL", "close": 275.92, "value": 270.3115, "ma_window": 20}, {"date": "2025-11-25", "symbol": "AAPL", "close": 276.97, "value": 270.723, "ma_window": 20}, {"date": "2025-11-26", "symbol": "AAPL", "close": 277.55, "value": 271.1285, "ma_window": 20}, {"date": "2025-11-28", "symbol": "AAPL", "close": 278.85, "value": 271.514, "ma_window": 20}, {"date": "2025-12-01", "symbol": "AAPL", "close": 283.1, "value": 272.1635, "ma_window": 20}, {"date": "2025-12-02", "symbol": "AAPL", "close": 286.19, "value": 273.0335, "ma_window": 20}, {"date": "2025-12-03", "symbol": "AAPL", "close": 284.15, "value": 273.752, "ma_window": 20}, {"date": "2025-12-04", "symbol": "AAPL", "close": 280.7, "value": 274.293, "ma_window": 20}, {"date": "2025-12-05", "symbol": "AAPL", "close": 278.78, "value": 274.7565, "ma_window": 20}, {"date": "2025-12-08", "symbol": "AAPL", "close": 277.89, "value": 275.2405, "ma_window": 20}, {"date": "2025-12-09", "symbol": "AAPL", "close": 277.18, "value": 275.628, "ma_window": 20}, {"date": "2025-12-10", "symbol": "AAPL", "close": 278.78, "value": 275.8045, "ma_window": 20}, {"date": "2025-12-11", "symbol": "AAPL", "close": 278.03, "value": 276.0325, "ma_window": 20}, {"date": "2025-12-12", "symbol": "AAPL", "close": 278.28, "value": 276.299, "ma_window": 20}, {"date": "2025-12-15", "symbol": "AAPL", "close": 274.11, "value": 276.384, "ma_window": 20}, {"date": "2025-12-16", "symbol": "AAPL", "close": 274.61, "value": 276.7415, "ma_window": 20}, {"date": "2025-12-17", "symbol": "AAPL", "close": 271.84, "value": 276.9615, "ma_window": 20}, {"date": "2025-12-18", "symbol": "AAPL", "close": 272.19, "value": 277.143, "ma_window": 20}, {"date": "2025-12-19", "symbol": "AAPL", "close": 273.67, "value": 277.514, "ma_window": 20}, {"date": "2025-12-22", "symbol": "AAPL", "close": 270.97, "value": 277.488, "ma_window": 20}, {"date": "2025-12-23", "symbol": "AAPL", "close": 272.36, "value": 277.31, "ma_window": 20}, {"date": "2025-12-24", "symbol": "AAPL", "close": 273.81, "value": 277.152, "ma_window": 20}, {"date": "2025-12-26", "symbol": "AAPL", "close": 273.4, "value": 276.9445, "ma_window": 20}, {"date": "2025-12-29", "symbol": "AAPL", "close": 273.76, "value": 276.69, "ma_window": 20}, {"date": "2025-12-30", "symbol": "AAPL", "close": 273.08, "value": 276.189, "ma_window": 20}, {"date": "2025-12-31", "symbol": "AAPL", "close": 271.86, "value": 275.4725, "ma_window": 20}, {"date": "2026-01-02", "symbol": "AAPL", "close": 271.01, "value": 274.8155, "ma_window": 20}, {"date": "2026-01-05", "symbol": "AAPL", "close": 267.26, "value": 274.1435, "ma_window": 20}, {"date": "2026-01-06", "symbol": "AAPL", "close": 262.36, "value": 273.3225, "ma_window": 20}, {"date": "2026-01-07", "symbol": "AAPL", "close": 260.33, "value": 272.4445, "ma_window": 20}, {"date": "2026-01-08", "symbol": "AAPL", "close": 259.04, "value": 271.5375, "ma_window": 20}, {"date": "2026-01-09", "symbol": "AAPL", "close": 259.37, "value": 270.567, "ma_window": 20}, {"date": "2026-01-12", "symbol": "AAPL", "close": 260.25, "value": 269.678, "ma_window": 20}, {"date": "2026-01-13", "symbol": "AAPL", "close": 261.05, "value": 268.8165, "ma_window": 20}, {"date": "2026-01-14", "symbol": "AAPL", "close": 259.96, "value": 268.109, "ma_window": 20}, {"date": "2026-01-15", "symbol": "AAPL", "close": 258.21, "value": 267.289, "ma_window": 20}, {"date": "2026-01-16", "symbol": "AAPL", "close": 255.53, "value": 266.4735, "ma_window": 20}, {"date": "2026-01-20", "symbol": "AAPL", "close": 246.7, "value": 265.199, "ma_window": 20}, {"date": "2026-01-21", "symbol": "AAPL", "close": 247.65, "value": 263.898, "ma_window": 20}, {"date": "2026-01-22", "symbol": "AAPL", "close": 248.35, "value": 262.767, "ma_window": 20}, {"date": "2026-01-23", "symbol": "AAPL", "close": 248.04, "value": 261.551, "ma_window": 20}, {"date": "2026-01-26", "symbol": "AAPL", "close": 255.41, "value": 260.631, "ma_window": 20}, {"date": "2025-07-31", "symbol": "AMZN", "close": 234.11, "value": 234.11, "ma_window": 20}, {"date": "2025-08-01", "symbol": "AMZN", "close": 214.75, "value": 224.43, "ma_window": 20}, {"date": "2025-08-04", "symbol": "AMZN", "close": 211.65, "value": 220.17, "ma_window": 20}, {"date": "2025-08-05", "symbol": "AMZN", "close": 213.75, "value": 218.565, "ma_window": 20}, {"date": "2025-08-06", "symbol": "AMZN", "close": 222.31, "value": 219.314, "ma_window": 20}, {"date": "2025-08-07", "symbol": "AMZN", "close": 223.13, "value": 219.95, "ma_window": 20}, {"date": "2025-08-08", "symbol": "AMZN", "close": 222.69, "value": 220.3414285714, "ma_window": 20}, {"date": "2025-08-11", "symbol": "AMZN", "close": 221.3, "value": 220.46125, "ma_window": 20}, {"date": "2025-08-12", "symbol": "AMZN", "close": 221.47, "value": 220.5733333333, "ma_window": 20}, {"date": "2025-08-13", "symbol": "AMZN", "close": 224.56, "value": 220.972, "ma_window": 20}, {"date": "2025-08-14", "symbol": "AMZN", "close": 230.98, "value": 221.8818181818, "ma_window": 20}, {"date": "2025-08-15", "symbol": "AMZN", "close": 231.03, "value": 222.6441666667, "ma_window": 20}, {"date": "2025-08-18", "symbol": "AMZN", "close": 231.49, "value": 223.3246153846, "ma_window": 20}, {"date": "2025-08-19", "symbol": "AMZN", "close": 228.01, "value": 223.6592857143, "ma_window": 20}, {"date": "2025-08-20", "symbol": "AMZN", "close": 223.81, "value": 223.6693333333, "ma_window": 20}, {"date": "2025-08-21", "symbol": "AMZN", "close": 221.95, "value": 223.561875, "ma_window": 20}, {"date": "2025-08-22", "symbol": "AMZN", "close": 228.84, "value": 223.8723529412, "ma_window": 20}, {"date": "2025-08-25", "symbol": "AMZN", "close": 227.94, "value": 224.0983333333, "ma_window": 20}, {"date": "2025-08-26", "symbol": "AMZN", "close": 228.71, "value": 224.3410526316, "ma_window": 20}, {"date": "2025-08-27", "symbol": "AMZN", "close": 229.12, "value": 224.58, "ma_window": 20}, {"date": "2025-08-28", "symbol": "AMZN", "close": 231.6, "value": 224.4545, "ma_window": 20}, {"date": "2025-08-29", "symbol": "AMZN", "close": 229, "value": 225.167, "ma_window": 20}, {"date": "2025-09-02", "symbol": "AMZN", "close": 225.34, "value": 225.8515, "ma_window": 20}, {"date": "2025-09-03", "symbol": "AMZN", "close": 225.99, "value": 226.4635, "ma_window": 20}, {"date": "2025-09-04", "symbol": "AMZN", "close": 235.68, "value": 227.132, "ma_window": 20}, {"date": "2025-09-05", "symbol": "AMZN", "close": 232.33, "value": 227.592, "ma_window": 20}, {"date": "2025-09-08", "symbol": "AMZN", "close": 235.84, "value": 228.2495, "ma_window": 20}, {"date": "2025-09-09", "symbol": "AMZN", "close": 238.24, "value": 229.0965, "ma_window": 20}, {"date": "2025-09-10", "symbol": "AMZN", "close": 230.33, "value": 229.5395, "ma_window": 20}, {"date": "2025-09-11", "symbol": "AMZN", "close": 229.95, "value": 229.809, "ma_window": 20}, {"date": "2025-09-12", "symbol": "AMZN", "close": 228.15, "value": 229.6675, "ma_window": 20}, {"date": "2025-09-15", "symbol": "AMZN", "close": 231.43, "value": 229.6875, "ma_window": 20}, {"date": "2025-09-16", "symbol": "AMZN", "close": 234.05, "value": 229.8155, "ma_window": 20}, {"date": "2025-09-17", "symbol": "AMZN", "close": 231.62, "value": 229.996, "ma_window": 20}, {"date": "2025-09-18", "symbol": "AMZN", "close": 231.23, "value": 230.367, "ma_window": 20}, {"date": "2025-09-19", "symbol": "AMZN", "close": 231.48, "value": 230.8435, "ma_window": 20}, {"date": "2025-09-22", "symbol": "AMZN", "close": 227.63, "value": 230.783, "ma_window": 20}, {"date": "2025-09-23", "symbol": "AMZN", "close": 220.71, "value": 230.4215, "ma_window": 20}, {"date": "2025-09-24", "symbol": "AMZN", "close": 220.21, "value": 229.9965, "ma_window": 20}, {"date": "2025-09-25", "symbol": "AMZN", "close": 218.15, "value": 229.448, "ma_window": 20}, {"date": "2025-09-26", "symbol": "AMZN", "close": 219.78, "value": 228.857, "ma_window": 20}, {"date": "2025-09-29", "symbol": "AMZN", "close": 222.17, "value": 228.5155, "ma_window": 20}, {"date": "2025-09-30", "symbol": "AMZN", "close": 219.57, "value": 228.227, "ma_window": 20}, {"date": "2025-10-01", "symbol": "AMZN", "close": 220.63, "value": 227.959, "ma_window": 20}, {"date": "2025-10-02", "symbol": "AMZN", "close": 222.41, "value": 227.2955, "ma_window": 20}, {"date": "2025-10-03", "symbol": "AMZN", "close": 219.51, "value": 226.6545, "ma_window": 20}, {"date": "2025-10-06", "symbol": "AMZN", "close": 220.9, "value": 225.9075, "ma_window": 20}, {"date": "2025-10-07", "symbol": "AMZN", "close": 221.78, "value": 225.0845, "ma_window": 20}, {"date": "2025-10-08", "symbol": "AMZN", "close": 225.22, "value": 224.829, "ma_window": 20}, {"date": "2025-10-09", "symbol": "AMZN", "close": 227.74, "value": 224.7185, "ma_window": 20}, {"date": "2025-10-10", "symbol": "AMZN", "close": 216.37, "value": 224.1295, "ma_window": 20}, {"date": "2025-10-13", "symbol": "AMZN", "close": 220.07, "value": 223.5615, "ma_window": 20}, {"date": "2025-10-14", "symbol": "AMZN", "close": 216.39, "value": 222.6785, "ma_window": 20}, {"date": "2025-10-15", "symbol": "AMZN", "close": 215.57, "value": 221.876, "ma_window": 20}, {"date": "2025-10-16", "symbol": "AMZN", "close": 214.47, "value": 221.038, "ma_window": 20}, {"date": "2025-10-17", "symbol": "AMZN", "close": 213.04, "value": 220.116, "ma_window": 20}, {"date": "2025-10-20", "symbol": "AMZN", "close": 216.48, "value": 219.5585, "ma_window": 20}, {"date": "2025-10-21", "symbol": "AMZN", "close": 222.03, "value": 219.6245, "ma_window": 20}, {"date": "2025-10-22", "symbol": "AMZN", "close": 217.95, "value": 219.5115, "ma_window": 20}, {"date": "2025-10-23", "symbol": "AMZN", "close": 221.09, "value": 219.6585, "ma_window": 20}, {"date": "2025-10-24", "symbol": "AMZN", "close": 224.21, "value": 219.88, "ma_window": 20}, {"date": "2025-10-27", "symbol": "AMZN", "close": 226.97, "value": 220.12, "ma_window": 20}, {"date": "2025-10-28", "symbol": "AMZN", "close": 229.25, "value": 220.604, "ma_window": 20}, {"date": "2025-10-29", "symbol": "AMZN", "close": 230.3, "value": 221.0875, "ma_window": 20}, {"date": "2025-10-30", "symbol": "AMZN", "close": 222.86, "value": 221.11, "ma_window": 20}, {"date": "2025-10-31", "symbol": "AMZN", "close": 244.22, "value": 222.3455, "ma_window": 20}, {"date": "2025-11-03", "symbol": "AMZN", "close": 254, "value": 224.0005, "ma_window": 20}, {"date": "2025-11-04", "symbol": "AMZN", "close": 249.32, "value": 225.3775, "ma_window": 20}, {"date": "2025-11-05", "symbol": "AMZN", "close": 250.2, "value": 226.6265, "ma_window": 20}, {"date": "2025-11-06", "symbol": "AMZN", "close": 243.04, "value": 227.3915, "ma_window": 20}, {"date": "2025-11-07", "symbol": "AMZN", "close": 244.41, "value": 228.7935, "ma_window": 20}, {"date": "2025-11-10", "symbol": "AMZN", "close": 248.4, "value": 230.21, "ma_window": 20}, {"date": "2025-11-11", "symbol": "AMZN", "close": 249.1, "value": 231.8455, "ma_window": 20}, {"date": "2025-11-12", "symbol": "AMZN", "close": 244.2, "value": 233.277, "ma_window": 20}, {"date": "2025-11-13", "symbol": "AMZN", "close": 237.58, "value": 234.4325, "ma_window": 20}, {"date": "2025-11-14", "symbol": "AMZN", "close": 234.69, "value": 235.515, "ma_window": 20}, {"date": "2025-11-17", "symbol": "AMZN", "close": 232.87, "value": 236.3345, "ma_window": 20}, {"date": "2025-11-18", "symbol": "AMZN", "close": 222.55, "value": 236.3605, "ma_window": 20}, {"date": "2025-11-19", "symbol": "AMZN", "close": 222.69, "value": 236.5975, "ma_window": 20}, {"date": "2025-11-20", "symbol": "AMZN", "close": 217.14, "value": 236.4, "ma_window": 20}, {"date": "2025-11-21", "symbol": "AMZN", "close": 220.69, "value": 236.224, "ma_window": 20}, {"date": "2025-11-24", "symbol": "AMZN", "close": 226.28, "value": 236.1895, "ma_window": 20}, {"date": "2025-11-25", "symbol": "AMZN", "close": 229.67, "value": 236.2105, "ma_window": 20}, {"date": "2025-11-26", "symbol": "AMZN", "close": 229.16, "value": 236.1535, "ma_window": 20}, {"date": "2025-11-28", "symbol": "AMZN", "close": 233.22, "value": 236.6715, "ma_window": 20}, {"date": "2025-12-01", "symbol": "AMZN", "close": 233.88, "value": 236.1545, "ma_window": 20}, {"date": "2025-12-02", "symbol": "AMZN", "close": 234.42, "value": 235.1755, "ma_window": 20}, {"date": "2025-12-03", "symbol": "AMZN", "close": 232.38, "value": 234.3285, "ma_window": 20}, {"date": "2025-12-04", "symbol": "AMZN", "close": 229.11, "value": 233.274, "ma_window": 20}, {"date": "2025-12-05", "symbol": "AMZN", "close": 229.53, "value": 232.5985, "ma_window": 20}, {"date": "2025-12-08", "symbol": "AMZN", "close": 226.89, "value": 231.7225, "ma_window": 20}, {"date": "2025-12-09", "symbol": "AMZN", "close": 227.92, "value": 230.6985, "ma_window": 20}, {"date": "2025-12-10", "symbol": "AMZN", "close": 231.78, "value": 229.8325, "ma_window": 20}, {"date": "2025-12-11", "symbol": "AMZN", "close": 230.28, "value": 229.1365, "ma_window": 20}, {"date": "2025-12-12", "symbol": "AMZN", "close": 226.19, "value": 228.567, "ma_window": 20}, {"date": "2025-12-15", "symbol": "AMZN", "close": 222.54, "value": 227.9595, "ma_window": 20}, {"date": "2025-12-16", "symbol": "AMZN", "close": 222.56, "value": 227.444, "ma_window": 20}, {"date": "2025-12-17", "symbol": "AMZN", "close": 221.27, "value": 227.38, "ma_window": 20}, {"date": "2025-12-18", "symbol": "AMZN", "close": 226.76, "value": 227.5835, "ma_window": 20}, {"date": "2025-12-19", "symbol": "AMZN", "close": 227.35, "value": 228.094, "ma_window": 20}, {"date": "2025-12-22", "symbol": "AMZN", "close": 228.43, "value": 228.481, "ma_window": 20}, {"date": "2025-12-23", "symbol": "AMZN", "close": 232.14, "value": 228.774, "ma_window": 20}, {"date": "2025-12-24", "symbol": "AMZN", "close": 232.38, "value": 228.9095, "ma_window": 20}, {"date": "2025-12-26", "symbol": "AMZN", "close": 232.52, "value": 229.0775, "ma_window": 20}, {"date": "2025-12-29", "symbol": "AMZN", "close": 232.07, "value": 229.02, "ma_window": 20}, {"date": "2025-12-30", "symbol": "AMZN", "close": 232.53, "value": 228.9525, "ma_window": 20}, {"date": "2025-12-31", "symbol": "AMZN", "close": 230.82, "value": 228.7725, "ma_window": 20}, {"date": "2026-01-02", "symbol": "AMZN", "close": 226.5, "value": 228.4785, "ma_window": 20}, {"date": "2026-01-05", "symbol": "AMZN", "close": 233.06, "value": 228.676, "ma_window": 20}, {"date": "2026-01-06", "symbol": "AMZN", "close": 240.93, "value": 229.246, "ma_window": 20}, {"date": "2026-01-07", "symbol": "AMZN", "close": 241.56, "value": 229.9795, "ma_window": 20}, {"date": "2026-01-08", "symbol": "AMZN", "close": 246.29, "value": 230.898, "ma_window": 20}, {"date": "2026-01-09", "symbol": "AMZN", "close": 247.38, "value": 231.678, "ma_window": 20}, {"date": "2026-01-12", "symbol": "AMZN", "close": 246.47, "value": 232.4875, "ma_window": 20}, {"date": "2026-01-13", "symbol": "AMZN", "close": 242.6, "value": 233.308, "ma_window": 20}, {"date": "2026-01-14", "symbol": "AMZN", "close": 236.65, "value": 234.0135, "ma_window": 20}, {"date": "2026-01-15", "symbol": "AMZN", "close": 238.18, "value": 234.7945, "ma_window": 20}, {"date": "2026-01-16", "symbol": "AMZN", "close": 239.12, "value": 235.687, "ma_window": 20}, {"date": "2026-01-20", "symbol": "AMZN", "close": 231, "value": 235.899, "ma_window": 20}, {"date": "2026-01-21", "symbol": "AMZN", "close": 231.31, "value": 236.097, "ma_window": 20}, {"date": "2026-01-22", "symbol": "AMZN", "close": 234.34, "value": 236.3925, "ma_window": 20}, {"date": "2026-01-23", "symbol": "AMZN", "close": 239.16, "value": 236.7435, "ma_window": 20}, {"date": "2026-01-26", "symbol": "AMZN", "close": 238.42, "value": 237.0455, "ma_window": 20}, {"date": "2025-07-31", "symbol": "GOOGL", "close": 191.6, "value": 191.6, "ma_window": 20}, {"date": "2025-08-01", "symbol": "GOOGL", "close": 188.84, "value": 190.22, "ma_window": 20}, {"date": "2025-08-04", "symbol": "GOOGL", "close": 194.74, "value": 191.7266666667, "ma_window": 20}, {"date": "2025-08-05", "symbol": "GOOGL", "close": 194.37, "value": 192.3875, "ma_window": 20}, {"date": "2025-08-06", "symbol": "GOOGL", "close": 195.79, "value": 193.068, "ma_window": 20}, {"date": "2025-08-07", "symbol": "GOOGL", "close": 196.22, "value": 193.5933333333, "ma_window": 20}, {"date": "2025-08-08", "symbol": "GOOGL", "close": 201.11, "value": 194.6671428571, "ma_window": 20}, {"date": "2025-08-11", "symbol": "GOOGL", "close": 200.69, "value": 195.42, "ma_window": 20}, {"date": "2025-08-12", "symbol": "GOOGL", "close": 203.03, "value": 196.2655555556, "ma_window": 20}, {"date": "2025-08-13", "symbol": "GOOGL", "close": 201.65, "value": 196.804, "ma_window": 20}, {"date": "2025-08-14", "symbol": "GOOGL", "close": 202.63, "value": 197.3336363636, "ma_window": 20}, {"date": "2025-08-15", "symbol": "GOOGL", "close": 203.58, "value": 197.8541666667, "ma_window": 20}, {"date": "2025-08-18", "symbol": "GOOGL", "close": 203.19, "value": 198.2646153846, "ma_window": 20}, {"date": "2025-08-19", "symbol": "GOOGL", "close": 201.26, "value": 198.4785714286, "ma_window": 20}, {"date": "2025-08-20", "symbol": "GOOGL", "close": 199.01, "value": 198.514, "ma_window": 20}, {"date": "2025-08-21", "symbol": "GOOGL", "close": 199.44, "value": 198.571875, "ma_window": 20}, {"date": "2025-08-22", "symbol": "GOOGL", "close": 205.77, "value": 198.9952941176, "ma_window": 20}, {"date": "2025-08-25", "symbol": "GOOGL", "close": 208.17, "value": 199.505, "ma_window": 20}, {"date": "2025-08-26", "symbol": "GOOGL", "close": 206.82, "value": 199.89, "ma_window": 20}, {"date": "2025-08-27", "symbol": "GOOGL", "close": 207.16, "value": 200.2535, "ma_window": 20}, {"date": "2025-08-28", "symbol": "GOOGL", "close": 211.31, "value": 201.239, "ma_window": 20}, {"date": "2025-08-29", "symbol": "GOOGL", "close": 212.58, "value": 202.426, "ma_window": 20}, {"date": "2025-09-02", "symbol": "GOOGL", "close": 211.02, "value": 203.24, "ma_window": 20}, {"date": "2025-09-03", "symbol": "GOOGL", "close": 230.3, "value": 205.0365, "ma_window": 20}, {"date": "2025-09-04", "symbol": "GOOGL", "close": 231.94, "value": 206.844, "ma_window": 20}, {"date": "2025-09-05", "symbol": "GOOGL", "close": 234.64, "value": 208.765, "ma_window": 20}, {"date": "2025-09-08", "symbol": "GOOGL", "close": 233.89, "value": 210.404, "ma_window": 20}, {"date": "2025-09-09", "symbol": "GOOGL", "close": 239.47, "value": 212.343, "ma_window": 20}, {"date": "2025-09-10", "symbol": "GOOGL", "close": 239.01, "value": 214.142, "ma_window": 20}, {"date": "2025-09-11", "symbol": "GOOGL", "close": 240.21, "value": 216.07, "ma_window": 20}, {"date": "2025-09-12", "symbol": "GOOGL", "close": 240.64, "value": 217.9705, "ma_window": 20}, {"date": "2025-09-15", "symbol": "GOOGL", "close": 251.45, "value": 220.364, "ma_window": 20}, {"date": "2025-09-16", "symbol": "GOOGL", "close": 251, "value": 222.7545, "ma_window": 20}, {"date": "2025-09-17", "symbol": "GOOGL", "close": 249.37, "value": 225.16, "ma_window": 20}, {"date": "2025-09-18", "symbol": "GOOGL", "close": 251.87, "value": 227.803, "ma_window": 20}, {"date": "2025-09-19", "symbol": "GOOGL", "close": 254.55, "value": 230.5585, "ma_window": 20}, {"date": "2025-09-22", "symbol": "GOOGL", "close": 252.36, "value": 232.888, "ma_window": 20}, {"date": "2025-09-23", "symbol": "GOOGL", "close": 251.5, "value": 235.0545, "ma_window": 20}, {"date": "2025-09-24", "symbol": "GOOGL", "close": 246.98, "value": 237.0625, "ma_window": 20}, {"date": "2025-09-25", "symbol": "GOOGL", "close": 245.63, "value": 238.986, "ma_window": 20}, {"date": "2025-09-26", "symbol": "GOOGL", "close": 246.38, "value": 240.7395, "ma_window": 20}, {"date": "2025-09-29", "symbol": "GOOGL", "close": 243.89, "value": 242.305, "ma_window": 20}, {"date": "2025-09-30", "symbol": "GOOGL", "close": 242.94, "value": 243.901, "ma_window": 20}, {"date": "2025-10-01", "symbol": "GOOGL", "close": 244.74, "value": 244.623, "ma_window": 20}, {"date": "2025-10-02", "symbol": "GOOGL", "close": 245.53, "value": 245.3025, "ma_window": 20}, {"date": "2025-10-03", "symbol": "GOOGL", "close": 245.19, "value": 245.83, "ma_window": 20}, {"date": "2025-10-06", "symbol": "GOOGL", "close": 250.27, "value": 246.649, "ma_window": 20}, {"date": "2025-10-07", "symbol": "GOOGL", "close": 245.6, "value": 246.9555, "ma_window": 20}, {"date": "2025-10-08", "symbol": "GOOGL", "close": 244.46, "value": 247.228, "ma_window": 20}, {"date": "2025-10-09", "symbol": "GOOGL", "close": 241.37, "value": 247.286, "ma_window": 20}, {"date": "2025-10-10", "symbol": "GOOGL", "close": 236.42, "value": 247.075, "ma_window": 20}, {"date": "2025-10-13", "symbol": "GOOGL", "close": 243.99, "value": 246.702, "ma_window": 20}, {"date": "2025-10-14", "symbol": "GOOGL", "close": 245.29, "value": 246.4165, "ma_window": 20}, {"date": "2025-10-15", "symbol": "GOOGL", "close": 250.87, "value": 246.4915, "ma_window": 20}, {"date": "2025-10-16", "symbol": "GOOGL", "close": 251.3, "value": 246.463, "ma_window": 20}, {"date": "2025-10-17", "symbol": "GOOGL", "close": 253.13, "value": 246.392, "ma_window": 20}, {"date": "2025-10-20", "symbol": "GOOGL", "close": 256.38, "value": 246.593, "ma_window": 20}, {"date": "2025-10-21", "symbol": "GOOGL", "close": 250.3, "value": 246.533, "ma_window": 20}, {"date": "2025-10-22", "symbol": "GOOGL", "close": 251.53, "value": 246.7605, "ma_window": 20}, {"date": "2025-10-23", "symbol": "GOOGL", "close": 252.91, "value": 247.1245, "ma_window": 20}, {"date": "2025-10-24", "symbol": "GOOGL", "close": 259.75, "value": 247.793, "ma_window": 20}, {"date": "2025-10-27", "symbol": "GOOGL", "close": 269.09, "value": 249.053, "ma_window": 20}, {"date": "2025-10-28", "symbol": "GOOGL", "close": 267.3, "value": 250.271, "ma_window": 20}, {"date": "2025-10-29", "symbol": "GOOGL", "close": 274.39, "value": 251.7535, "ma_window": 20}, {"date": "2025-10-30", "symbol": "GOOGL", "close": 281.3, "value": 253.542, "ma_window": 20}, {"date": "2025-10-31", "symbol": "GOOGL", "close": 281.01, "value": 255.333, "ma_window": 20}, {"date": "2025-11-03", "symbol": "GOOGL", "close": 283.53, "value": 256.996, "ma_window": 20}, {"date": "2025-11-04", "symbol": "GOOGL", "close": 277.36, "value": 258.584, "ma_window": 20}, {"date": "2025-11-05", "symbol": "GOOGL", "close": 284.12, "value": 260.567, "ma_window": 20}, {"date": "2025-11-06", "symbol": "GOOGL", "close": 284.56, "value": 262.7265, "ma_window": 20}, {"date": "2025-11-07", "symbol": "GOOGL", "close": 278.65, "value": 264.838, "ma_window": 20}, {"date": "2025-11-10", "symbol": "GOOGL", "close": 289.91, "value": 267.134, "ma_window": 20}, {"date": "2025-11-11", "symbol": "GOOGL", "close": 291.12, "value": 269.4255, "ma_window": 20}, {"date": "2025-11-12", "symbol": "GOOGL", "close": 286.52, "value": 271.208, "ma_window": 20}, {"date": "2025-11-13", "symbol": "GOOGL", "close": 278.39, "value": 272.5625, "ma_window": 20}, {"date": "2025-11-14", "symbol": "GOOGL", "close": 276.23, "value": 273.7175, "ma_window": 20}, {"date": "2025-11-17", "symbol": "GOOGL", "close": 284.83, "value": 275.14, "ma_window": 20}, {"date": "2025-11-18", "symbol": "GOOGL", "close": 284.09, "value": 276.8295, "ma_window": 20}, {"date": "2025-11-19", "symbol": "GOOGL", "close": 292.62, "value": 278.884, "ma_window": 20}, {"date": "2025-11-20", "symbol": "GOOGL", "close": 289.26, "value": 280.7015, "ma_window": 20}, {"date": "2025-11-21", "symbol": "GOOGL", "close": 299.46, "value": 282.687, "ma_window": 20}, {"date": "2025-11-24", "symbol": "GOOGL", "close": 318.37, "value": 285.151, "ma_window": 20}, {"date": "2025-11-25", "symbol": "GOOGL", "close": 323.23, "value": 287.9475, "ma_window": 20}, {"date": "2025-11-26", "symbol": "GOOGL", "close": 319.74, "value": 290.215, "ma_window": 20}, {"date": "2025-11-28", "symbol": "GOOGL", "close": 319.97, "value": 292.1485, "ma_window": 20}, {"date": "2025-12-01", "symbol": "GOOGL", "close": 314.68, "value": 293.832, "ma_window": 20}, {"date": "2025-12-02", "symbol": "GOOGL", "close": 315.6, "value": 295.4355, "ma_window": 20}, {"date": "2025-12-03", "symbol": "GOOGL", "close": 319.42, "value": 297.5385, "ma_window": 20}, {"date": "2025-12-04", "symbol": "GOOGL", "close": 317.41, "value": 299.203, "ma_window": 20}, {"date": "2025-12-05", "symbol": "GOOGL", "close": 321.06, "value": 301.028, "ma_window": 20}, {"date": "2025-12-08", "symbol": "GOOGL", "close": 313.72, "value": 302.7815, "ma_window": 20}, {"date": "2025-12-09", "symbol": "GOOGL", "close": 317.08, "value": 304.14, "ma_window": 20}, {"date": "2025-12-10", "symbol": "GOOGL", "close": 320.21, "value": 305.5945, "ma_window": 20}, {"date": "2025-12-11", "symbol": "GOOGL", "close": 312.43, "value": 306.89, "ma_window": 20}, {"date": "2025-12-12", "symbol": "GOOGL", "close": 309.29, "value": 308.435, "ma_window": 20}, {"date": "2025-12-15", "symbol": "GOOGL", "close": 308.22, "value": 310.0345, "ma_window": 20}, {"date": "2025-12-16", "symbol": "GOOGL", "close": 306.57, "value": 311.1215, "ma_window": 20}, {"date": "2025-12-17", "symbol": "GOOGL", "close": 296.72, "value": 311.753, "ma_window": 20}, {"date": "2025-12-18", "symbol": "GOOGL", "close": 302.46, "value": 312.245, "ma_window": 20}, {"date": "2025-12-19", "symbol": "GOOGL", "close": 307.16, "value": 313.14, "ma_window": 20}, {"date": "2025-12-22", "symbol": "GOOGL", "close": 309.78, "value": 313.656, "ma_window": 20}, {"date": "2025-12-23", "symbol": "GOOGL", "close": 314.35, "value": 313.455, "ma_window": 20}, {"date": "2025-12-24", "symbol": "GOOGL", "close": 314.09, "value": 312.998, "ma_window": 20}, {"date": "2025-12-26", "symbol": "GOOGL", "close": 313.51, "value": 312.6865, "ma_window": 20}, {"date": "2025-12-29", "symbol": "GOOGL", "close": 313.56, "value": 312.366, "ma_window": 20}, {"date": "2025-12-30", "symbol": "GOOGL", "close": 313.85, "value": 312.3245, "ma_window": 20}, {"date": "2025-12-31", "symbol": "GOOGL", "close": 313, "value": 312.1945, "ma_window": 20}, {"date": "2026-01-02", "symbol": "GOOGL", "close": 315.15, "value": 311.981, "ma_window": 20}, {"date": "2026-01-05", "symbol": "GOOGL", "close": 316.54, "value": 311.9375, "ma_window": 20}, {"date": "2026-01-06", "symbol": "GOOGL", "close": 314.34, "value": 311.6015, "ma_window": 20}, {"date": "2026-01-07", "symbol": "GOOGL", "close": 321.98, "value": 312.0145, "ma_window": 20}, {"date": "2026-01-08", "symbol": "GOOGL", "close": 325.44, "value": 312.4325, "ma_window": 20}, {"date": "2026-01-09", "symbol": "GOOGL", "close": 328.57, "value": 312.8505, "ma_window": 20}, {"date": "2026-01-12", "symbol": "GOOGL", "close": 331.86, "value": 313.822, "ma_window": 20}, {"date": "2026-01-13", "symbol": "GOOGL", "close": 335.97, "value": 315.156, "ma_window": 20}, {"date": "2026-01-14", "symbol": "GOOGL", "close": 335.84, "value": 316.537, "ma_window": 20}, {"date": "2026-01-15", "symbol": "GOOGL", "close": 332.78, "value": 317.8475, "ma_window": 20}, {"date": "2026-01-16", "symbol": "GOOGL", "close": 330, "value": 319.5115, "ma_window": 20}, {"date": "2026-01-20", "symbol": "GOOGL", "close": 322, "value": 320.4885, "ma_window": 20}, {"date": "2026-01-21", "symbol": "GOOGL", "close": 328.38, "value": 321.5495, "ma_window": 20}, {"date": "2026-01-22", "symbol": "GOOGL", "close": 330.54, "value": 322.5875, "ma_window": 20}, {"date": "2026-01-23", "symbol": "GOOGL", "close": 327.93, "value": 323.2665, "ma_window": 20}, {"date": "2026-01-26", "symbol": "GOOGL", "close": 333.26, "value": 324.225, "ma_window": 20}, {"date": "2025-07-31", "symbol": "META", "close": 772.29, "value": 772.29, "ma_window": 20}, {"date": "2025-08-01", "symbol": "META", "close": 748.89, "value": 760.59, "ma_window": 20}, {"date": "2025-08-04", "symbol": "META", "close": 775.21, "value": 765.4633333333, "ma_window": 20}, {"date": "2025-08-05", "symbol": "META", "close": 762.32, "value": 764.6775, "ma_window": 20}, {"date": "2025-08-06", "symbol": "META", "close": 770.84, "value": 765.91, "ma_window": 20}, {"date": "2025-08-07", "symbol": "META", "close": 760.7, "value": 765.0416666667, "ma_window": 20}, {"date": "2025-08-08", "symbol": "META", "close": 768.15, "value": 765.4857142857, "ma_window": 20}, {"date": "2025-08-11", "symbol": "META", "close": 764.73, "value": 765.39125, "ma_window": 20}, {"date": "2025-08-12", "symbol": "META", "close": 788.82, "value": 767.9944444444, "ma_window": 20}, {"date": "2025-08-13", "symbol": "META", "close": 778.92, "value": 769.087, "ma_window": 20}, {"date": "2025-08-14", "symbol": "META", "close": 780.97, "value": 770.1672727273, "ma_window": 20}, {"date": "2025-08-15", "symbol": "META", "close": 784.06, "value": 771.325, "ma_window": 20}, {"date": "2025-08-18", "symbol": "META", "close": 766.23, "value": 770.9330769231, "ma_window": 20}, {"date": "2025-08-19", "symbol": "META", "close": 750.36, "value": 769.4635714286, "ma_window": 20}, {"date": "2025-08-20", "symbol": "META", "close": 746.61, "value": 767.94, "ma_window": 20}, {"date": "2025-08-21", "symbol": "META", "close": 738, "value": 766.06875, "ma_window": 20}, {"date": "2025-08-22", "symbol": "META", "close": 753.67, "value": 765.3394117647, "ma_window": 20}, {"date": "2025-08-25", "symbol": "META", "close": 752.18, "value": 764.6083333333, "ma_window": 20}, {"date": "2025-08-26", "symbol": "META", "close": 752.98, "value": 763.9963157895, "ma_window": 20}, {"date": "2025-08-27", "symbol": "META", "close": 746.27, "value": 763.11, "ma_window": 20}, {"date": "2025-08-28", "symbol": "META", "close": 749.99, "value": 761.995, "ma_window": 20}, {"date": "2025-08-29", "symbol": "META", "close": 737.6, "value": 761.4305, "ma_window": 20}, {"date": "2025-09-02", "symbol": "META", "close": 734.02, "value": 759.371, "ma_window": 20}, {"date": "2025-09-03", "symbol": "META", "close": 735.95, "value": 758.0525, "ma_window": 20}, {"date": "2025-09-04", "symbol": "META", "close": 747.54, "value": 756.8875, "ma_window": 20}, {"date": "2025-09-05", "symbol": "META", "close": 751.33, "value": 756.419, "ma_window": 20}, {"date": "2025-09-08", "symbol": "META", "close": 751.18, "value": 755.5705, "ma_window": 20}, {"date": "2025-09-09", "symbol": "META", "close": 764.56, "value": 755.562, "ma_window": 20}, {"date": "2025-09-10", "symbol": "META", "close": 750.86, "value": 753.664, "ma_window": 20}, {"date": "2025-09-11", "symbol": "META", "close": 749.78, "value": 752.207, "ma_window": 20}, {"date": "2025-09-12", "symbol": "META", "close": 754.47, "value": 750.882, "ma_window": 20}, {"date": "2025-09-15", "symbol": "META", "close": 763.56, "value": 749.857, "ma_window": 20}, {"date": "2025-09-16", "symbol": "META", "close": 777.84, "value": 750.4375, "ma_window": 20}, {"date": "2025-09-17", "symbol": "META", "close": 774.57, "value": 751.648, "ma_window": 20}, {"date": "2025-09-18", "symbol": "META", "close": 779.09, "value": 753.272, "ma_window": 20}, {"date": "2025-09-19", "symbol": "META", "close": 777.22, "value": 755.233, "ma_window": 20}, {"date": "2025-09-22", "symbol": "META", "close": 764.54, "value": 755.7765, "ma_window": 20}, {"date": "2025-09-23", "symbol": "META", "close": 754.78, "value": 755.9065, "ma_window": 20}, {"date": "2025-09-24", "symbol": "META", "close": 760.04, "value": 756.2595, "ma_window": 20}, {"date": "2025-09-25", "symbol": "META", "close": 748.3, "value": 756.361, "ma_window": 20}, {"date": "2025-09-26", "symbol": "META", "close": 743.14, "value": 756.0185, "ma_window": 20}, {"date": "2025-09-29", "symbol": "META", "close": 742.79, "value": 756.278, "ma_window": 20}, {"date": "2025-09-30", "symbol": "META", "close": 733.78, "value": 756.266, "ma_window": 20}, {"date": "2025-10-01", "symbol": "META", "close": 716.76, "value": 755.3065, "ma_window": 20}, {"date": "2025-10-02", "symbol": "META", "close": 726.46, "value": 754.2525, "ma_window": 20}, {"date": "2025-10-03", "symbol": "META", "close": 709.98, "value": 752.185, "ma_window": 20}, {"date": "2025-10-06", "symbol": "META", "close": 715.08, "value": 750.38, "ma_window": 20}, {"date": "2025-10-07", "symbol": "META", "close": 712.5, "value": 747.777, "ma_window": 20}, {"date": "2025-10-08", "symbol": "META", "close": 717.26, "value": 746.097, "ma_window": 20}, {"date": "2025-10-09", "symbol": "META", "close": 732.91, "value": 745.2535, "ma_window": 20}, {"date": "2025-10-10", "symbol": "META", "close": 704.73, "value": 742.7665, "ma_window": 20}, {"date": "2025-10-13", "symbol": "META", "close": 715.12, "value": 740.3445, "ma_window": 20}, {"date": "2025-10-14", "symbol": "META", "close": 708.07, "value": 736.856, "ma_window": 20}, {"date": "2025-10-15", "symbol": "META", "close": 716.97, "value": 733.976, "ma_window": 20}, {"date": "2025-10-16", "symbol": "META", "close": 711.49, "value": 730.596, "ma_window": 20}, {"date": "2025-10-17", "symbol": "META", "close": 716.34, "value": 727.552, "ma_window": 20}, {"date": "2025-10-20", "symbol": "META", "close": 731.57, "value": 725.9035, "ma_window": 20}, {"date": "2025-10-21", "symbol": "META", "close": 732.67, "value": 724.798, "ma_window": 20}, {"date": "2025-10-22", "symbol": "META", "close": 732.81, "value": 723.4365, "ma_window": 20}, {"date": "2025-10-23", "symbol": "META", "close": 733.4, "value": 722.6915, "ma_window": 20}, {"date": "2025-10-24", "symbol": "META", "close": 737.76, "value": 722.4225, "ma_window": 20}, {"date": "2025-10-27", "symbol": "META", "close": 750.21, "value": 722.7935, "ma_window": 20}, {"date": "2025-10-28", "symbol": "META", "close": 750.83, "value": 723.646, "ma_window": 20}, {"date": "2025-10-29", "symbol": "META", "close": 751.06, "value": 725.361, "ma_window": 20}, {"date": "2025-10-30", "symbol": "META", "close": 665.93, "value": 722.3345, "ma_window": 20}, {"date": "2025-10-31", "symbol": "META", "close": 647.82, "value": 719.2265, "ma_window": 20}, {"date": "2025-11-03", "symbol": "META", "close": 637.19, "value": 715.332, "ma_window": 20}, {"date": "2025-11-04", "symbol": "META", "close": 626.81, "value": 711.0475, "ma_window": 20}, {"date": "2025-11-05", "symbol": "META", "close": 635.43, "value": 706.956, "ma_window": 20}, {"date": "2025-11-06", "symbol": "META", "close": 618.44, "value": 701.2325, "ma_window": 20}, {"date": "2025-11-07", "symbol": "META", "close": 621.2, "value": 697.056, "ma_window": 20}, {"date": "2025-11-10", "symbol": "META", "close": 631.25, "value": 692.8625, "ma_window": 20}, {"date": "2025-11-11", "symbol": "META", "close": 626.57, "value": 688.7875, "ma_window": 20}, {"date": "2025-11-12", "symbol": "META", "close": 608.51, "value": 683.3645, "ma_window": 20}, {"date": "2025-11-13", "symbol": "META", "close": 609.39, "value": 678.2595, "ma_window": 20}, {"date": "2025-11-14", "symbol": "META", "close": 608.96, "value": 672.8905, "ma_window": 20}, {"date": "2025-11-17", "symbol": "META", "close": 601.52, "value": 666.388, "ma_window": 20}, {"date": "2025-11-18", "symbol": "META", "close": 597.2, "value": 659.6145, "ma_window": 20}, {"date": "2025-11-19", "symbol": "META", "close": 589.84, "value": 652.466, "ma_window": 20}, {"date": "2025-11-20", "symbol": "META", "close": 588.67, "value": 645.2295, "ma_window": 20}, {"date": "2025-11-21", "symbol": "META", "close": 593.77, "value": 638.03, "ma_window": 20}, {"date": "2025-11-24", "symbol": "META", "close": 612.55, "value": 631.147, "ma_window": 20}, {"date": "2025-11-25", "symbol": "META", "close": 635.7, "value": 625.3905, "ma_window": 20}, {"date": "2025-11-26", "symbol": "META", "close": 633.09, "value": 619.492, "ma_window": 20}, {"date": "2025-11-28", "symbol": "META", "close": 647.42, "value": 618.5665, "ma_window": 20}, {"date": "2025-12-01", "symbol": "META", "close": 640.35, "value": 618.193, "ma_window": 20}, {"date": "2025-12-02", "symbol": "META", "close": 646.57, "value": 618.662, "ma_window": 20}, {"date": "2025-12-03", "symbol": "META", "close": 639.08, "value": 619.2755, "ma_window": 20}, {"date": "2025-12-04", "symbol": "META", "close": 660.99, "value": 620.5535, "ma_window": 20}, {"date": "2025-12-05", "symbol": "META", "close": 672.87, "value": 623.275, "ma_window": 20}, {"date": "2025-12-08", "symbol": "META", "close": 666.26, "value": 625.528, "ma_window": 20}, {"date": "2025-12-09", "symbol": "META", "close": 656.42, "value": 626.7865, "ma_window": 20}, {"date": "2025-12-10", "symbol": "META", "close": 649.6, "value": 627.938, "ma_window": 20}, {"date": "2025-12-11", "symbol": "META", "close": 652.18, "value": 630.1215, "ma_window": 20}, {"date": "2025-12-12", "symbol": "META", "close": 643.71, "value": 631.8375, "ma_window": 20}, {"date": "2025-12-15", "symbol": "META", "close": 647.51, "value": 633.765, "ma_window": 20}, {"date": "2025-12-16", "symbol": "META", "close": 657.15, "value": 636.5465, "ma_window": 20}, {"date": "2025-12-17", "symbol": "META", "close": 649.5, "value": 639.1615, "ma_window": 20}, {"date": "2025-12-18", "symbol": "META", "close": 664.45, "value": 642.892, "ma_window": 20}, {"date": "2025-12-19", "symbol": "META", "close": 658.77, "value": 646.397, "ma_window": 20}, {"date": "2025-12-22", "symbol": "META", "close": 661.5, "value": 649.7835, "ma_window": 20}, {"date": "2025-12-23", "symbol": "META", "close": 664.94, "value": 652.403, "ma_window": 20}, {"date": "2025-12-24", "symbol": "META", "close": 667.55, "value": 653.9955, "ma_window": 20}, {"date": "2025-12-26", "symbol": "META", "close": 663.29, "value": 655.5055, "ma_window": 20}, {"date": "2025-12-29", "symbol": "META", "close": 658.69, "value": 656.069, "ma_window": 20}, {"date": "2025-12-30", "symbol": "META", "close": 665.95, "value": 657.349, "ma_window": 20}, {"date": "2025-12-31", "symbol": "META", "close": 660.09, "value": 658.025, "ma_window": 20}, {"date": "2026-01-02", "symbol": "META", "close": 650.41, "value": 658.5915, "ma_window": 20}, {"date": "2026-01-05", "symbol": "META", "close": 658.79, "value": 658.4815, "ma_window": 20}, {"date": "2026-01-06", "symbol": "META", "close": 660.62, "value": 657.869, "ma_window": 20}, {"date": "2026-01-07", "symbol": "META", "close": 648.69, "value": 656.9905, "ma_window": 20}, {"date": "2026-01-08", "symbol": "META", "close": 646.06, "value": 656.4725, "ma_window": 20}, {"date": "2026-01-09", "symbol": "META", "close": 653.06, "value": 656.6455, "ma_window": 20}, {"date": "2026-01-12", "symbol": "META", "close": 641.97, "value": 656.135, "ma_window": 20}, {"date": "2026-01-13", "symbol": "META", "close": 631.09, "value": 655.504, "ma_window": 20}, {"date": "2026-01-14", "symbol": "META", "close": 615.52, "value": 653.9045, "ma_window": 20}, {"date": "2026-01-15", "symbol": "META", "close": 620.8, "value": 652.087, "ma_window": 20}, {"date": "2026-01-16", "symbol": "META", "close": 620.25, "value": 650.6245, "ma_window": 20}, {"date": "2026-01-20", "symbol": "META", "close": 604.12, "value": 647.608, "ma_window": 20}, {"date": "2026-01-21", "symbol": "META", "close": 612.96, "value": 645.3175, "ma_window": 20}, {"date": "2026-01-22", "symbol": "META", "close": 647.63, "value": 644.624, "ma_window": 20}, {"date": "2026-01-23", "symbol": "META", "close": 658.76, "value": 644.315, "ma_window": 20}, {"date": "2026-01-26", "symbol": "META", "close": 672.36, "value": 644.5555, "ma_window": 20}, {"date": "2025-07-31", "symbol": "MSFT", "close": 531.63, "value": 531.63, "ma_window": 20}, {"date": "2025-08-01", "symbol": "MSFT", "close": 522.27, "value": 526.95, "ma_window": 20}, {"date": "2025-08-04", "symbol": "MSFT", "close": 533.76, "value": 529.22, "ma_window": 20}, {"date": "2025-08-05", "symbol": "MSFT", "close": 525.9, "value": 528.39, "ma_window": 20}, {"date": "2025-08-06", "symbol": "MSFT", "close": 523.1, "value": 527.332, "ma_window": 20}, {"date": "2025-08-07", "symbol": "MSFT", "close": 519.01, "value": 525.945, "ma_window": 20}, {"date": "2025-08-08", "symbol": "MSFT", "close": 520.21, "value": 525.1257142857, "ma_window": 20}, {"date": "2025-08-11", "symbol": "MSFT", "close": 519.94, "value": 524.4775, "ma_window": 20}, {"date": "2025-08-12", "symbol": "MSFT", "close": 527.38, "value": 524.8, "ma_window": 20}, {"date": "2025-08-13", "symbol": "MSFT", "close": 518.75, "value": 524.195, "ma_window": 20}, {"date": "2025-08-14", "symbol": "MSFT", "close": 520.65, "value": 523.8727272727, "ma_window": 20}, {"date": "2025-08-15", "symbol": "MSFT", "close": 518.35, "value": 523.4125, "ma_window": 20}, {"date": "2025-08-18", "symbol": "MSFT", "close": 515.29, "value": 522.7876923077, "ma_window": 20}, {"date": "2025-08-19", "symbol": "MSFT", "close": 507.98, "value": 521.73, "ma_window": 20}, {"date": "2025-08-20", "symbol": "MSFT", "close": 503.95, "value": 520.5446666667, "ma_window": 20}, {"date": "2025-08-21", "symbol": "MSFT", "close": 503.3, "value": 519.466875, "ma_window": 20}, {"date": "2025-08-22", "symbol": "MSFT", "close": 506.28, "value": 518.6911764706, "ma_window": 20}, {"date": "2025-08-25", "symbol": "MSFT", "close": 503.32, "value": 517.8372222222, "ma_window": 20}, {"date": "2025-08-26", "symbol": "MSFT", "close": 501.1, "value": 516.9563157895, "ma_window": 20}, {"date": "2025-08-27", "symbol": "MSFT", "close": 505.79, "value": 516.398, "ma_window": 20}, {"date": "2025-08-28", "symbol": "MSFT", "close": 508.69, "value": 515.251, "ma_window": 20}, {"date": "2025-08-29", "symbol": "MSFT", "close": 505.74, "value": 514.4245, "ma_window": 20}, {"date": "2025-09-02", "symbol": "MSFT", "close": 504.18, "value": 512.9455, "ma_window": 20}, {"date": "2025-09-03", "symbol": "MSFT", "close": 504.41, "value": 511.871, "ma_window": 20}, {"date": "2025-09-04", "symbol": "MSFT", "close": 507.02, "value": 511.067, "ma_window": 20}, {"date": "2025-09-05", "symbol": "MSFT", "close": 494.08, "value": 509.8205, "ma_window": 20}, {"date": "2025-09-08", "symbol": "MSFT", "close": 497.27, "value": 508.6735, "ma_window": 20}, {"date": "2025-09-09", "symbol": "MSFT", "close": 497.48, "value": 507.5505, "ma_window": 20}, {"date": "2025-09-10", "symbol": "MSFT", "close": 499.44, "value": 506.1535, "ma_window": 20}, {"date": "2025-09-11", "symbol": "MSFT", "close": 500.07, "value": 505.2195, "ma_window": 20}, {"date": "2025-09-12", "symbol": "MSFT", "close": 508.95, "value": 504.6345, "ma_window": 20}, {"date": "2025-09-15", "symbol": "MSFT", "close": 514.4, "value": 504.437, "ma_window": 20}, {"date": "2025-09-16", "symbol": "MSFT", "close": 508.09, "value": 504.077, "ma_window": 20}, {"date": "2025-09-17", "symbol": "MSFT", "close": 509.07, "value": 504.1315, "ma_window": 20}, {"date": "2025-09-18", "symbol": "MSFT", "close": 507.5, "value": 504.309, "ma_window": 20}, {"date": "2025-09-19", "symbol": "MSFT", "close": 516.96, "value": 504.992, "ma_window": 20}, {"date": "2025-09-22", "symbol": "MSFT", "close": 513.49, "value": 505.3525, "ma_window": 20}, {"date": "2025-09-23", "symbol": "MSFT", "close": 508.28, "value": 505.6005, "ma_window": 20}, {"date": "2025-09-24", "symbol": "MSFT", "close": 509.2, "value": 506.0055, "ma_window": 20}, {"date": "2025-09-25", "symbol": "MSFT", "close": 506.08, "value": 506.02, "ma_window": 20}, {"date": "2025-09-26", "symbol": "MSFT", "close": 510.5, "value": 506.1105, "ma_window": 20}, {"date": "2025-09-29", "symbol": "MSFT", "close": 513.64, "value": 506.5055, "ma_window": 20}, {"date": "2025-09-30", "symbol": "MSFT", "close": 516.98, "value": 507.1455, "ma_window": 20}, {"date": "2025-10-01", "symbol": "MSFT", "close": 518.74, "value": 507.862, "ma_window": 20}, {"date": "2025-10-02", "symbol": "MSFT", "close": 514.78, "value": 508.25, "ma_window": 20}, {"date": "2025-10-03", "symbol": "MSFT", "close": 516.38, "value": 509.365, "ma_window": 20}, {"date": "2025-10-06", "symbol": "MSFT", "close": 527.58, "value": 510.8805, "ma_window": 20}, {"date": "2025-10-07", "symbol": "MSFT", "close": 523, "value": 512.1565, "ma_window": 20}, {"date": "2025-10-08", "symbol": "MSFT", "close": 523.87, "value": 513.378, "ma_window": 20}, {"date": "2025-10-09", "symbol": "MSFT", "close": 521.42, "value": 514.4455, "ma_window": 20}, {"date": "2025-10-10", "symbol": "MSFT", "close": 510.01, "value": 514.4985, "ma_window": 20}, {"date": "2025-10-13", "symbol": "MSFT", "close": 513.09, "value": 514.433, "ma_window": 20}, {"date": "2025-10-14", "symbol": "MSFT", "close": 512.61, "value": 514.659, "ma_window": 20}, {"date": "2025-10-15", "symbol": "MSFT", "close": 512.47, "value": 514.829, "ma_window": 20}, {"date": "2025-10-16", "symbol": "MSFT", "close": 510.65, "value": 514.9865, "ma_window": 20}, {"date": "2025-10-17", "symbol": "MSFT", "close": 512.62, "value": 514.7695, "ma_window": 20}, {"date": "2025-10-20", "symbol": "MSFT", "close": 515.82, "value": 514.886, "ma_window": 20}, {"date": "2025-10-21", "symbol": "MSFT", "close": 516.69, "value": 515.3065, "ma_window": 20}, {"date": "2025-10-22", "symbol": "MSFT", "close": 519.57, "value": 515.825, "ma_window": 20}, {"date": "2025-10-23", "symbol": "MSFT", "close": 519.59, "value": 516.5005, "ma_window": 20}, {"date": "2025-10-24", "symbol": "MSFT", "close": 522.63, "value": 517.107, "ma_window": 20}, {"date": "2025-10-27", "symbol": "MSFT", "close": 530.53, "value": 517.9515, "ma_window": 20}, {"date": "2025-10-28", "symbol": "MSFT", "close": 541.06, "value": 519.1555, "ma_window": 20}, {"date": "2025-10-29", "symbol": "MSFT", "close": 540.54, "value": 520.2455, "ma_window": 20}, {"date": "2025-10-30", "symbol": "MSFT", "close": 524.78, "value": 520.7455, "ma_window": 20}, {"date": "2025-10-31", "symbol": "MSFT", "close": 516.84, "value": 520.7685, "ma_window": 20}, {"date": "2025-11-03", "symbol": "MSFT", "close": 516.06, "value": 520.1925, "ma_window": 20}, {"date": "2025-11-04", "symbol": "MSFT", "close": 513.37, "value": 519.711, "ma_window": 20}, {"date": "2025-11-05", "symbol": "MSFT", "close": 506.21, "value": 518.828, "ma_window": 20}, {"date": "2025-11-06", "symbol": "MSFT", "close": 496.17, "value": 517.5655, "ma_window": 20}, {"date": "2025-11-07", "symbol": "MSFT", "close": 495.89, "value": 516.8595, "ma_window": 20}, {"date": "2025-11-10", "symbol": "MSFT", "close": 505.05, "value": 516.4575, "ma_window": 20}, {"date": "2025-11-11", "symbol": "MSFT", "close": 507.73, "value": 516.2135, "ma_window": 20}, {"date": "2025-11-12", "symbol": "MSFT", "close": 510.19, "value": 516.0995, "ma_window": 20}, {"date": "2025-11-13", "symbol": "MSFT", "close": 502.35, "value": 515.6845, "ma_window": 20}, {"date": "2025-11-14", "symbol": "MSFT", "close": 509.23, "value": 515.515, "ma_window": 20}, {"date": "2025-11-17", "symbol": "MSFT", "close": 506.54, "value": 515.051, "ma_window": 20}, {"date": "2025-11-18", "symbol": "MSFT", "close": 492.87, "value": 513.86, "ma_window": 20}, {"date": "2025-11-19", "symbol": "MSFT", "close": 486.21, "value": 512.192, "ma_window": 20}, {"date": "2025-11-20", "symbol": "MSFT", "close": 478.43, "value": 510.134, "ma_window": 20}, {"date": "2025-11-21", "symbol": "MSFT", "close": 472.12, "value": 507.6085, "ma_window": 20}, {"date": "2025-11-24", "symbol": "MSFT", "close": 474, "value": 504.782, "ma_window": 20}, {"date": "2025-11-25", "symbol": "MSFT", "close": 476.99, "value": 501.5785, "ma_window": 20}, {"date": "2025-11-26", "symbol": "MSFT", "close": 485.5, "value": 498.8265, "ma_window": 20}, {"date": "2025-11-28", "symbol": "MSFT", "close": 492.01, "value": 497.188, "ma_window": 20}, {"date": "2025-12-01", "symbol": "MSFT", "close": 486.74, "value": 495.683, "ma_window": 20}, {"date": "2025-12-02", "symbol": "MSFT", "close": 490, "value": 494.38, "ma_window": 20}, {"date": "2025-12-03", "symbol": "MSFT", "close": 477.73, "value": 492.598, "ma_window": 20}, {"date": "2025-12-04", "symbol": "MSFT", "close": 480.84, "value": 491.3295, "ma_window": 20}, {"date": "2025-12-05", "symbol": "MSFT", "close": 483.16, "value": 490.679, "ma_window": 20}, {"date": "2025-12-08", "symbol": "MSFT", "close": 491.02, "value": 490.4355, "ma_window": 20}, {"date": "2025-12-09", "symbol": "MSFT", "close": 492.02, "value": 489.784, "ma_window": 20}, {"date": "2025-12-10", "symbol": "MSFT", "close": 478.56, "value": 488.3255, "ma_window": 20}, {"date": "2025-12-11", "symbol": "MSFT", "close": 483.47, "value": 486.9895, "ma_window": 20}, {"date": "2025-12-12", "symbol": "MSFT", "close": 478.53, "value": 485.7985, "ma_window": 20}, {"date": "2025-12-15", "symbol": "MSFT", "close": 474.82, "value": 484.078, "ma_window": 20}, {"date": "2025-12-16", "symbol": "MSFT", "close": 476.39, "value": 482.5705, "ma_window": 20}, {"date": "2025-12-17", "symbol": "MSFT", "close": 476.12, "value": 481.733, "ma_window": 20}, {"date": "2025-12-18", "symbol": "MSFT", "close": 483.98, "value": 481.6215, "ma_window": 20}, {"date": "2025-12-19", "symbol": "MSFT", "close": 485.92, "value": 481.996, "ma_window": 20}, {"date": "2025-12-22", "symbol": "MSFT", "close": 484.92, "value": 482.636, "ma_window": 20}, {"date": "2025-12-23", "symbol": "MSFT", "close": 486.85, "value": 483.2785, "ma_window": 20}, {"date": "2025-12-24", "symbol": "MSFT", "close": 488.02, "value": 483.83, "ma_window": 20}, {"date": "2025-12-26", "symbol": "MSFT", "close": 487.71, "value": 483.9405, "ma_window": 20}, {"date": "2025-12-29", "symbol": "MSFT", "close": 487.1, "value": 483.695, "ma_window": 20}, {"date": "2025-12-30", "symbol": "MSFT", "close": 487.48, "value": 483.732, "ma_window": 20}, {"date": "2025-12-31", "symbol": "MSFT", "close": 483.62, "value": 483.413, "ma_window": 20}, {"date": "2026-01-02", "symbol": "MSFT", "close": 472.94, "value": 483.1735, "ma_window": 20}, {"date": "2026-01-05", "symbol": "MSFT", "close": 472.85, "value": 482.774, "ma_window": 20}, {"date": "2026-01-06", "symbol": "MSFT", "close": 478.51, "value": 482.5415, "ma_window": 20}, {"date": "2026-01-07", "symbol": "MSFT", "close": 483.47, "value": 482.164, "ma_window": 20}, {"date": "2026-01-08", "symbol": "MSFT", "close": 478.11, "value": 481.4685, "ma_window": 20}, {"date": "2026-01-09", "symbol": "MSFT", "close": 479.28, "value": 481.5045, "ma_window": 20}, {"date": "2026-01-12", "symbol": "MSFT", "close": 477.18, "value": 481.19, "ma_window": 20}, {"date": "2026-01-13", "symbol": "MSFT", "close": 470.67, "value": 480.797, "ma_window": 20}, {"date": "2026-01-14", "symbol": "MSFT", "close": 459.38, "value": 480.025, "ma_window": 20}, {"date": "2026-01-15", "symbol": "MSFT", "close": 456.66, "value": 479.0385, "ma_window": 20}, {"date": "2026-01-16", "symbol": "MSFT", "close": 459.86, "value": 478.2255, "ma_window": 20}, {"date": "2026-01-20", "symbol": "MSFT", "close": 454.52, "value": 476.7525, "ma_window": 20}, {"date": "2026-01-21", "symbol": "MSFT", "close": 444.11, "value": 474.662, "ma_window": 20}, {"date": "2026-01-22", "symbol": "MSFT", "close": 451.14, "value": 472.973, "ma_window": 20}, {"date": "2026-01-23", "symbol": "MSFT", "close": 465.95, "value": 471.928, "ma_window": 20}, {"date": "2026-01-26", "symbol": "MSFT", "close": 470.28, "value": 471.041, "ma_window": 20}, {"date": "2025-07-31", "symbol": "NVDA", "close": 177.85, "value": 177.85, "ma_window": 20}, {"date": "2025-08-01", "symbol": "NVDA", "close": 173.7, "value": 175.775, "ma_window": 20}, {"date": "2025-08-04", "symbol": "NVDA", "close": 179.98, "value": 177.1766666667, "ma_window": 20}, {"date": "2025-08-05", "symbol": "NVDA", "close": 178.24, "value": 177.4425, "ma_window": 20}, {"date": "2025-08-06", "symbol": "NVDA", "close": 179.4, "value": 177.834, "ma_window": 20}, {"date": "2025-08-07", "symbol": "NVDA", "close": 180.75, "value": 178.32, "ma_window": 20}, {"date": "2025-08-08", "symbol": "NVDA", "close": 182.68, "value": 178.9428571429, "ma_window": 20}, {"date": "2025-08-11", "symbol": "NVDA", "close": 182.04, "value": 179.33, "ma_window": 20}, {"date": "2025-08-12", "symbol": "NVDA", "close": 183.14, "value": 179.7533333333, "ma_window": 20}, {"date": "2025-08-13", "symbol": "NVDA", "close": 181.57, "value": 179.935, "ma_window": 20}, {"date": "2025-08-14", "symbol": "NVDA", "close": 182, "value": 180.1227272727, "ma_window": 20}, {"date": "2025-08-15", "symbol": "NVDA", "close": 180.43, "value": 180.1483333333, "ma_window": 20}, {"date": "2025-08-18", "symbol": "NVDA", "close": 181.99, "value": 180.29, "ma_window": 20}, {"date": "2025-08-19", "symbol": "NVDA", "close": 175.62, "value": 179.9564285714, "ma_window": 20}, {"date": "2025-08-20", "symbol": "NVDA", "close": 175.38, "value": 179.6513333333, "ma_window": 20}, {"date": "2025-08-21", "symbol": "NVDA", "close": 174.96, "value": 179.358125, "ma_window": 20}, {"date": "2025-08-22", "symbol": "NVDA", "close": 177.97, "value": 179.2764705882, "ma_window": 20}, {"date": "2025-08-25", "symbol": "NVDA", "close": 179.79, "value": 179.305, "ma_window": 20}, {"date": "2025-08-26", "symbol": "NVDA", "close": 181.75, "value": 179.4336842105, "ma_window": 20}, {"date": "2025-08-27", "symbol": "NVDA", "close": 181.58, "value": 179.541, "ma_window": 20}, {"date": "2025-08-28", "symbol": "NVDA", "close": 180.15, "value": 179.656, "ma_window": 20}, {"date": "2025-08-29", "symbol": "NVDA", "close": 174.16, "value": 179.679, "ma_window": 20}, {"date": "2025-09-02", "symbol": "NVDA", "close": 170.76, "value": 179.218, "ma_window": 20}, {"date": "2025-09-03", "symbol": "NVDA", "close": 170.6, "value": 178.836, "ma_window": 20}, {"date": "2025-09-04", "symbol": "NVDA", "close": 171.64, "value": 178.448, "ma_window": 20}, {"date": "2025-09-05", "symbol": "NVDA", "close": 167, "value": 177.7605, "ma_window": 20}, {"date": "2025-09-08", "symbol": "NVDA", "close": 168.29, "value": 177.041, "ma_window": 20}, {"date": "2025-09-09", "symbol": "NVDA", "close": 170.74, "value": 176.476, "ma_window": 20}, {"date": "2025-09-10", "symbol": "NVDA", "close": 177.31, "value": 176.1845, "ma_window": 20}, {"date": "2025-09-11", "symbol": "NVDA", "close": 177.16, "value": 175.964, "ma_window": 20}, {"date": "2025-09-12", "symbol": "NVDA", "close": 177.81, "value": 175.7545, "ma_window": 20}, {"date": "2025-09-15", "symbol": "NVDA", "close": 177.74, "value": 175.62, "ma_window": 20}, {"date": "2025-09-16", "symbol": "NVDA", "close": 174.87, "value": 175.264, "ma_window": 20}, {"date": "2025-09-17", "symbol": "NVDA", "close": 170.28, "value": 174.997, "ma_window": 20}, {"date": "2025-09-18", "symbol": "NVDA", "close": 176.23, "value": 175.0395, "ma_window": 20}, {"date": "2025-09-19", "symbol": "NVDA", "close": 176.66, "value": 175.1245, "ma_window": 20}, {"date": "2025-09-22", "symbol": "NVDA", "close": 183.6, "value": 175.406, "ma_window": 20}, {"date": "2025-09-23", "symbol": "NVDA", "close": 178.42, "value": 175.3375, "ma_window": 20}, {"date": "2025-09-24", "symbol": "NVDA", "close": 176.96, "value": 175.098, "ma_window": 20}, {"date": "2025-09-25", "symbol": "NVDA", "close": 177.68, "value": 174.903, "ma_window": 20}, {"date": "2025-09-26", "symbol": "NVDA", "close": 178.18, "value": 174.8045, "ma_window": 20}, {"date": "2025-09-29", "symbol": "NVDA", "close": 181.84, "value": 175.1885, "ma_window": 20}, {"date": "2025-09-30", "symbol": "NVDA", "close": 186.57, "value": 175.979, "ma_window": 20}, {"date": "2025-10-01", "symbol": "NVDA", "close": 187.23, "value": 176.8105, "ma_window": 20}, {"date": "2025-10-02", "symbol": "NVDA", "close": 188.88, "value": 177.6725, "ma_window": 20}, {"date": "2025-10-03", "symbol": "NVDA", "close": 187.61, "value": 178.703, "ma_window": 20}, {"date": "2025-10-06", "symbol": "NVDA", "close": 185.53, "value": 179.565, "ma_window": 20}, {"date": "2025-10-07", "symbol": "NVDA", "close": 185.03, "value": 180.2795, "ma_window": 20}, {"date": "2025-10-08", "symbol": "NVDA", "close": 189.1, "value": 180.869, "ma_window": 20}, {"date": "2025-10-09", "symbol": "NVDA", "close": 192.56, "value": 181.639, "ma_window": 20}, {"date": "2025-10-10", "symbol": "NVDA", "close": 183.15, "value": 181.906, "ma_window": 20}, {"date": "2025-10-13", "symbol": "NVDA", "close": 188.31, "value": 182.4345, "ma_window": 20}, {"date": "2025-10-14", "symbol": "NVDA", "close": 180.02, "value": 182.692, "ma_window": 20}, {"date": "2025-10-15", "symbol": "NVDA", "close": 179.82, "value": 183.169, "ma_window": 20}, {"date": "2025-10-16", "symbol": "NVDA", "close": 181.8, "value": 183.4475, "ma_window": 20}, {"date": "2025-10-17", "symbol": "NVDA", "close": 183.21, "value": 183.775, "ma_window": 20}, {"date": "2025-10-20", "symbol": "NVDA", "close": 182.63, "value": 183.7265, "ma_window": 20}, {"date": "2025-10-21", "symbol": "NVDA", "close": 181.15, "value": 183.863, "ma_window": 20}, {"date": "2025-10-22", "symbol": "NVDA", "close": 180.27, "value": 184.0285, "ma_window": 20}, {"date": "2025-10-23", "symbol": "NVDA", "close": 182.15, "value": 184.252, "ma_window": 20}, {"date": "2025-10-24", "symbol": "NVDA", "close": 186.25, "value": 184.6555, "ma_window": 20}, {"date": "2025-10-27", "symbol": "NVDA", "close": 191.48, "value": 185.1375, "ma_window": 20}, {"date": "2025-10-28", "symbol": "NVDA", "close": 201.02, "value": 185.86, "ma_window": 20}, {"date": "2025-10-29", "symbol": "NVDA", "close": 207.03, "value": 186.85, "ma_window": 20}, {"date": "2025-10-30", "symbol": "NVDA", "close": 202.88, "value": 187.55, "ma_window": 20}, {"date": "2025-10-31", "symbol": "NVDA", "close": 202.48, "value": 188.2935, "ma_window": 20}, {"date": "2025-11-03", "symbol": "NVDA", "close": 206.87, "value": 189.3605, "ma_window": 20}, {"date": "2025-11-04", "symbol": "NVDA", "close": 198.68, "value": 190.043, "ma_window": 20}, {"date": "2025-11-05", "symbol": "NVDA", "close": 195.2, "value": 190.348, "ma_window": 20}, {"date": "2025-11-06", "symbol": "NVDA", "close": 188.07, "value": 190.1235, "ma_window": 20}, {"date": "2025-11-07", "symbol": "NVDA", "close": 188.14, "value": 190.373, "ma_window": 20}, {"date": "2025-11-10", "symbol": "NVDA", "close": 199.04, "value": 190.9095, "ma_window": 20}, {"date": "2025-11-11", "symbol": "NVDA", "close": 193.15, "value": 191.566, "ma_window": 20}, {"date": "2025-11-12", "symbol": "NVDA", "close": 193.79, "value": 192.2645, "ma_window": 20}, {"date": "2025-11-13", "symbol": "NVDA", "close": 186.85, "value": 192.517, "ma_window": 20}, {"date": "2025-11-14", "symbol": "NVDA", "close": 190.16, "value": 192.8645, "ma_window": 20}, {"date": "2025-11-17", "symbol": "NVDA", "close": 186.59, "value": 193.0625, "ma_window": 20}, {"date": "2025-11-18", "symbol": "NVDA", "close": 181.35, "value": 193.0725, "ma_window": 20}, {"date": "2025-11-19", "symbol": "NVDA", "close": 186.51, "value": 193.3845, "ma_window": 20}, {"date": "2025-11-20", "symbol": "NVDA", "close": 180.63, "value": 193.3085, "ma_window": 20}, {"date": "2025-11-21", "symbol": "NVDA", "close": 178.87, "value": 192.9395, "ma_window": 20}, {"date": "2025-11-24", "symbol": "NVDA", "close": 182.54, "value": 192.4925, "ma_window": 20}, {"date": "2025-11-25", "symbol": "NVDA", "close": 177.81, "value": 191.332, "ma_window": 20}, {"date": "2025-11-26", "symbol": "NVDA", "close": 180.25, "value": 189.993, "ma_window": 20}, {"date": "2025-11-28", "symbol": "NVDA", "close": 176.99, "value": 188.6985, "ma_window": 20}, {"date": "2025-12-01", "symbol": "NVDA", "close": 179.91, "value": 187.57, "ma_window": 20}, {"date": "2025-12-02", "symbol": "NVDA", "close": 181.45, "value": 186.299, "ma_window": 20}, {"date": "2025-12-03", "symbol": "NVDA", "close": 179.58, "value": 185.344, "ma_window": 20}, {"date": "2025-12-04", "symbol": "NVDA", "close": 183.38, "value": 184.753, "ma_window": 20}, {"date": "2025-12-05", "symbol": "NVDA", "close": 182.41, "value": 184.47, "ma_window": 20}, {"date": "2025-12-08", "symbol": "NVDA", "close": 185.55, "value": 184.3405, "ma_window": 20}, {"date": "2025-12-09", "symbol": "NVDA", "close": 184.97, "value": 183.637, "ma_window": 20}, {"date": "2025-12-10", "symbol": "NVDA", "close": 183.78, "value": 183.1685, "ma_window": 20}, {"date": "2025-12-11", "symbol": "NVDA", "close": 180.93, "value": 182.5255, "ma_window": 20}, {"date": "2025-12-12", "symbol": "NVDA", "close": 175.02, "value": 181.934, "ma_window": 20}, {"date": "2025-12-15", "symbol": "NVDA", "close": 176.29, "value": 181.2405, "ma_window": 20}, {"date": "2025-12-16", "symbol": "NVDA", "close": 177.72, "value": 180.797, "ma_window": 20}, {"date": "2025-12-17", "symbol": "NVDA", "close": 170.94, "value": 180.2765, "ma_window": 20}, {"date": "2025-12-18", "symbol": "NVDA", "close": 174.14, "value": 179.658, "ma_window": 20}, {"date": "2025-12-19", "symbol": "NVDA", "close": 180.99, "value": 179.676, "ma_window": 20}, {"date": "2025-12-22", "symbol": "NVDA", "close": 183.69, "value": 179.917, "ma_window": 20}, {"date": "2025-12-23", "symbol": "NVDA", "close": 189.21, "value": 180.2505, "ma_window": 20}, {"date": "2025-12-24", "symbol": "NVDA", "close": 188.61, "value": 180.7905, "ma_window": 20}, {"date": "2025-12-26", "symbol": "NVDA", "close": 190.53, "value": 181.3045, "ma_window": 20}, {"date": "2025-12-29", "symbol": "NVDA", "close": 188.22, "value": 181.866, "ma_window": 20}, {"date": "2025-12-30", "symbol": "NVDA", "close": 187.54, "value": 182.2475, "ma_window": 20}, {"date": "2025-12-31", "symbol": "NVDA", "close": 186.5, "value": 182.5, "ma_window": 20}, {"date": "2026-01-02", "symbol": "NVDA", "close": 188.85, "value": 182.9635, "ma_window": 20}, {"date": "2026-01-05", "symbol": "NVDA", "close": 188.12, "value": 183.2005, "ma_window": 20}, {"date": "2026-01-06", "symbol": "NVDA", "close": 187.24, "value": 183.442, "ma_window": 20}, {"date": "2026-01-07", "symbol": "NVDA", "close": 189.11, "value": 183.62, "ma_window": 20}, {"date": "2026-01-08", "symbol": "NVDA", "close": 185.04, "value": 183.6235, "ma_window": 20}, {"date": "2026-01-09", "symbol": "NVDA", "close": 184.86, "value": 183.6775, "ma_window": 20}, {"date": "2026-01-12", "symbol": "NVDA", "close": 184.94, "value": 183.878, "ma_window": 20}, {"date": "2026-01-13", "symbol": "NVDA", "close": 185.81, "value": 184.4175, "ma_window": 20}, {"date": "2026-01-14", "symbol": "NVDA", "close": 183.14, "value": 184.76, "ma_window": 20}, {"date": "2026-01-15", "symbol": "NVDA", "close": 187.05, "value": 185.2265, "ma_window": 20}, {"date": "2026-01-16", "symbol": "NVDA", "close": 186.23, "value": 185.991, "ma_window": 20}, {"date": "2026-01-20", "symbol": "NVDA", "close": 178.07, "value": 186.1875, "ma_window": 20}, {"date": "2026-01-21", "symbol": "NVDA", "close": 183.32, "value": 186.304, "ma_window": 20}, {"date": "2026-01-22", "symbol": "NVDA", "close": 184.84, "value": 186.3615, "ma_window": 20}, {"date": "2026-01-23", "symbol": "NVDA", "close": 187.67, "value": 186.2845, "ma_window": 20}, {"date": "2026-01-26", "symbol": "NVDA", "close": 186.47, "value": 186.1775, "ma_window": 20}, {"date": "2025-07-31", "symbol": "AAPL", "close": 207.13, "value": 207.13, "ma_window": 60}, {"date": "2025-08-01", "symbol": "AAPL", "close": 201.95, "value": 204.54, "ma_window": 60}, {"date": "2025-08-04", "symbol": "AAPL", "close": 202.92, "value": 204, "ma_window": 60}, {"date": "2025-08-05", "symbol": "AAPL", "close": 202.49, "value": 203.6225, "ma_window": 60}, {"date": "2025-08-06", "symbol": "AAPL", "close": 212.8, "value": 205.458, "ma_window": 60}, {"date": "2025-08-07", "symbol": "AAPL", "close": 219.57, "value": 207.81, "ma_window": 60}, {"date": "2025-08-08", "symbol": "AAPL", "close": 228.87, "value": 210.8185714286, "ma_window": 60}, {"date": "2025-08-11", "symbol": "AAPL", "close": 226.96, "value": 212.83625, "ma_window": 60}, {"date": "2025-08-12", "symbol": "AAPL", "close": 229.43, "value": 214.68, "ma_window": 60}, {"date": "2025-08-13", "symbol": "AAPL", "close": 233.1, "value": 216.522, "ma_window": 60}, {"date": "2025-08-14", "symbol": "AAPL", "close": 232.55, "value": 217.9790909091, "ma_window": 60}, {"date": "2025-08-15", "symbol": "AAPL", "close": 231.37, "value": 219.095, "ma_window": 60}, {"date": "2025-08-18", "symbol": "AAPL", "close": 230.67, "value": 219.9853846154, "ma_window": 60}, {"date": "2025-08-19", "symbol": "AAPL", "close": 230.34, "value": 220.725, "ma_window": 60}, {"date": "2025-08-20", "symbol": "AAPL", "close": 225.79, "value": 221.0626666667, "ma_window": 60}, {"date": "2025-08-21", "symbol": "AAPL", "close": 224.68, "value": 221.28875, "ma_window": 60}, {"date": "2025-08-22", "symbol": "AAPL", "close": 227.54, "value": 221.6564705882, "ma_window": 60}, {"date": "2025-08-25", "symbol": "AAPL", "close": 226.94, "value": 221.95, "ma_window": 60}, {"date": "2025-08-26", "symbol": "AAPL", "close": 229.09, "value": 222.3257894737, "ma_window": 60}, {"date": "2025-08-27", "symbol": "AAPL", "close": 230.27, "value": 222.723, "ma_window": 60}, {"date": "2025-08-28", "symbol": "AAPL", "close": 232.33, "value": 223.1804761905, "ma_window": 60}, {"date": "2025-08-29", "symbol": "AAPL", "close": 231.92, "value": 223.5777272727, "ma_window": 60}, {"date": "2025-09-02", "symbol": "AAPL", "close": 229.5, "value": 223.8352173913, "ma_window": 60}, {"date": "2025-09-03", "symbol": "AAPL", "close": 238.24, "value": 224.4354166667, "ma_window": 60}, {"date": "2025-09-04", "symbol": "AAPL", "close": 239.55, "value": 225.04, "ma_window": 60}, {"date": "2025-09-05", "symbol": "AAPL", "close": 239.46, "value": 225.5946153846, "ma_window": 60}, {"date": "2025-09-08", "symbol": "AAPL", "close": 237.65, "value": 226.0411111111, "ma_window": 60}, {"date": "2025-09-09", "symbol": "AAPL", "close": 234.12, "value": 226.3296428571, "ma_window": 60}, {"date": "2025-09-10", "symbol": "AAPL", "close": 226.57, "value": 226.3379310345, "ma_window": 60}, {"date": "2025-09-11", "symbol": "AAPL", "close": 229.81, "value": 226.4536666667, "ma_window": 60}, {"date": "2025-09-12", "symbol": "AAPL", "close": 233.84, "value": 226.6919354839, "ma_window": 60}, {"date": "2025-09-15", "symbol": "AAPL", "close": 236.47, "value": 226.9975, "ma_window": 60}, {"date": "2025-09-16", "symbol": "AAPL", "close": 237.92, "value": 227.3284848485, "ma_window": 60}, {"date": "2025-09-17", "symbol": "AAPL", "close": 238.76, "value": 227.6647058824, "ma_window": 60}, {"date": "2025-09-18", "symbol": "AAPL", "close": 237.65, "value": 227.95, "ma_window": 60}, {"date": "2025-09-19", "symbol": "AAPL", "close": 245.26, "value": 228.4308333333, "ma_window": 60}, {"date": "2025-09-22", "symbol": "AAPL", "close": 255.83, "value": 229.1713513514, "ma_window": 60}, {"date": "2025-09-23", "symbol": "AAPL", "close": 254.18, "value": 229.8294736842, "ma_window": 60}, {"date": "2025-09-24", "symbol": "AAPL", "close": 252.07, "value": 230.3997435897, "ma_window": 60}, {"date": "2025-09-25", "symbol": "AAPL", "close": 256.62, "value": 231.05525, "ma_window": 60}, {"date": "2025-09-26", "symbol": "AAPL", "close": 255.21, "value": 231.6443902439, "ma_window": 60}, {"date": "2025-09-29", "symbol": "AAPL", "close": 254.18, "value": 232.180952381, "ma_window": 60}, {"date": "2025-09-30", "symbol": "AAPL", "close": 254.38, "value": 232.6972093023, "ma_window": 60}, {"date": "2025-10-01", "symbol": "AAPL", "close": 255.2, "value": 233.2086363636, "ma_window": 60}, {"date": "2025-10-02", "symbol": "AAPL", "close": 256.88, "value": 233.7346666667, "ma_window": 60}, {"date": "2025-10-03", "symbol": "AAPL", "close": 257.77, "value": 234.257173913, "ma_window": 60}, {"date": "2025-10-06", "symbol": "AAPL", "close": 256.44, "value": 234.7291489362, "ma_window": 60}, {"date": "2025-10-07", "symbol": "AAPL", "close": 256.23, "value": 235.1770833333, "ma_window": 60}, {"date": "2025-10-08", "symbol": "AAPL", "close": 257.81, "value": 235.6389795918, "ma_window": 60}, {"date": "2025-10-09", "symbol": "AAPL", "close": 253.79, "value": 236.002, "ma_window": 60}, {"date": "2025-10-10", "symbol": "AAPL", "close": 245.03, "value": 236.1790196078, "ma_window": 60}, {"date": "2025-10-13", "symbol": "AAPL", "close": 247.42, "value": 236.3951923077, "ma_window": 60}, {"date": "2025-10-14", "symbol": "AAPL", "close": 247.53, "value": 236.6052830189, "ma_window": 60}, {"date": "2025-10-15", "symbol": "AAPL", "close": 249.1, "value": 236.8366666667, "ma_window": 60}, {"date": "2025-10-16", "symbol": "AAPL", "close": 247.21, "value": 237.0252727273, "ma_window": 60}, {"date": "2025-10-17", "symbol": "AAPL", "close": 252.05, "value": 237.2935714286, "ma_window": 60}, {"date": "2025-10-20", "symbol": "AAPL", "close": 261.99, "value": 237.7268421053, "ma_window": 60}, {"date": "2025-10-21", "symbol": "AAPL", "close": 262.52, "value": 238.1543103448, "ma_window": 60}, {"date": "2025-10-22", "symbol": "AAPL", "close": 258.2, "value": 238.4940677966, "ma_window": 60}, {"date": "2025-10-23", "symbol": "AAPL", "close": 259.33, "value": 238.8413333333, "ma_window": 60}, {"date": "2025-10-24", "symbol": "AAPL", "close": 262.57, "value": 239.7653333333, "ma_window": 60}, {"date": "2025-10-27", "symbol": "AAPL", "close": 268.55, "value": 240.8753333333, "ma_window": 60}, {"date": "2025-10-28", "symbol": "AAPL", "close": 268.74, "value": 241.9723333333, "ma_window": 60}, {"date": "2025-10-29", "symbol": "AAPL", "close": 269.44, "value": 243.0881666667, "ma_window": 60}, {"date": "2025-10-30", "symbol": "AAPL", "close": 271.14, "value": 244.0605, "ma_window": 60}, {"date": "2025-10-31", "symbol": "AAPL", "close": 270.11, "value": 244.9028333333, "ma_window": 60}, {"date": "2025-11-03", "symbol": "AAPL", "close": 268.79, "value": 245.5681666667, "ma_window": 60}, {"date": "2025-11-04", "symbol": "AAPL", "close": 269.78, "value": 246.2818333333, "ma_window": 60}, {"date": "2025-11-05", "symbol": "AAPL", "close": 269.88, "value": 246.956, "ma_window": 60}, {"date": "2025-11-06", "symbol": "AAPL", "close": 269.51, "value": 247.5628333333, "ma_window": 60}, {"date": "2025-11-07", "symbol": "AAPL", "close": 268.21, "value": 248.1571666667, "ma_window": 60}, {"date": "2025-11-10", "symbol": "AAPL", "close": 269.43, "value": 248.7915, "ma_window": 60}, {"date": "2025-11-11", "symbol": "AAPL", "close": 275.25, "value": 249.5345, "ma_window": 60}, {"date": "2025-11-12", "symbol": "AAPL", "close": 273.47, "value": 250.2533333333, "ma_window": 60}, {"date": "2025-11-13", "symbol": "AAPL", "close": 272.95, "value": 251.0393333333, "ma_window": 60}, {"date": "2025-11-14", "symbol": "AAPL", "close": 272.41, "value": 251.8348333333, "ma_window": 60}, {"date": "2025-11-17", "symbol": "AAPL", "close": 267.46, "value": 252.5001666667, "ma_window": 60}, {"date": "2025-11-18", "symbol": "AAPL", "close": 267.44, "value": 253.1751666667, "ma_window": 60}, {"date": "2025-11-19", "symbol": "AAPL", "close": 268.56, "value": 253.833, "ma_window": 60}, {"date": "2025-11-20", "symbol": "AAPL", "close": 266.25, "value": 254.4326666667, "ma_window": 60}, {"date": "2025-11-21", "symbol": "AAPL", "close": 271.49, "value": 255.0853333333, "ma_window": 60}, {"date": "2025-11-24", "symbol": "AAPL", "close": 275.92, "value": 255.8186666667, "ma_window": 60}, {"date": "2025-11-25", "symbol": "AAPL", "close": 276.97, "value": 256.6098333333, "ma_window": 60}, {"date": "2025-11-26", "symbol": "AAPL", "close": 277.55, "value": 257.265, "ma_window": 60}, {"date": "2025-11-28", "symbol": "AAPL", "close": 278.85, "value": 257.92, "ma_window": 60}, {"date": "2025-12-01", "symbol": "AAPL", "close": 283.1, "value": 258.6473333333, "ma_window": 60}, {"date": "2025-12-02", "symbol": "AAPL", "close": 286.19, "value": 259.4563333333, "ma_window": 60}, {"date": "2025-12-03", "symbol": "AAPL", "close": 284.15, "value": 260.2901666667, "ma_window": 60}, {"date": "2025-12-04", "symbol": "AAPL", "close": 280.7, "value": 261.1923333333, "ma_window": 60}, {"date": "2025-12-05", "symbol": "AAPL", "close": 278.78, "value": 262.0085, "ma_window": 60}, {"date": "2025-12-08", "symbol": "AAPL", "close": 277.89, "value": 262.7426666667, "ma_window": 60}, {"date": "2025-12-09", "symbol": "AAPL", "close": 277.18, "value": 263.4211666667, "ma_window": 60}, {"date": "2025-12-10", "symbol": "AAPL", "close": 278.78, "value": 264.1021666667, "ma_window": 60}, {"date": "2025-12-11", "symbol": "AAPL", "close": 278.03, "value": 264.7566666667, "ma_window": 60}, {"date": "2025-12-12", "symbol": "AAPL", "close": 278.28, "value": 265.4338333333, "ma_window": 60}, {"date": "2025-12-15", "symbol": "AAPL", "close": 274.11, "value": 265.9146666667, "ma_window": 60}, {"date": "2025-12-16", "symbol": "AAPL", "close": 274.61, "value": 266.2276666667, "ma_window": 60}, {"date": "2025-12-17", "symbol": "AAPL", "close": 271.84, "value": 266.522, "ma_window": 60}, {"date": "2025-12-18", "symbol": "AAPL", "close": 272.19, "value": 266.8573333333, "ma_window": 60}, {"date": "2025-12-19", "symbol": "AAPL", "close": 273.67, "value": 267.1415, "ma_window": 60}, {"date": "2025-12-22", "symbol": "AAPL", "close": 270.97, "value": 267.4041666667, "ma_window": 60}, {"date": "2025-12-23", "symbol": "AAPL", "close": 272.36, "value": 267.7071666667, "ma_window": 60}, {"date": "2025-12-24", "symbol": "AAPL", "close": 273.81, "value": 268.031, "ma_window": 60}, {"date": "2025-12-26", "symbol": "AAPL", "close": 273.4, "value": 268.3343333333, "ma_window": 60}, {"date": "2025-12-29", "symbol": "AAPL", "close": 273.76, "value": 268.6156666667, "ma_window": 60}, {"date": "2025-12-30", "symbol": "AAPL", "close": 273.08, "value": 268.8708333333, "ma_window": 60}, {"date": "2025-12-31", "symbol": "AAPL", "close": 271.86, "value": 269.1278333333, "ma_window": 60}, {"date": "2026-01-02", "symbol": "AAPL", "close": 271.01, "value": 269.3741666667, "ma_window": 60}, {"date": "2026-01-05", "symbol": "AAPL", "close": 267.26, "value": 269.5316666667, "ma_window": 60}, {"date": "2026-01-06", "symbol": "AAPL", "close": 262.36, "value": 269.6745, "ma_window": 60}, {"date": "2026-01-07", "symbol": "AAPL", "close": 260.33, "value": 269.9295, "ma_window": 60}, {"date": "2026-01-08", "symbol": "AAPL", "close": 259.04, "value": 270.1231666667, "ma_window": 60}, {"date": "2026-01-09", "symbol": "AAPL", "close": 259.37, "value": 270.3205, "ma_window": 60}, {"date": "2026-01-12", "symbol": "AAPL", "close": 260.25, "value": 270.5063333333, "ma_window": 60}, {"date": "2026-01-13", "symbol": "AAPL", "close": 261.05, "value": 270.737, "ma_window": 60}, {"date": "2026-01-14", "symbol": "AAPL", "close": 259.96, "value": 270.8688333333, "ma_window": 60}, {"date": "2026-01-15", "symbol": "AAPL", "close": 258.21, "value": 270.8058333333, "ma_window": 60}, {"date": "2026-01-16", "symbol": "AAPL", "close": 255.53, "value": 270.6893333333, "ma_window": 60}, {"date": "2026-01-20", "symbol": "AAPL", "close": 246.7, "value": 270.4976666667, "ma_window": 60}, {"date": "2026-01-21", "symbol": "AAPL", "close": 247.65, "value": 270.303, "ma_window": 60}, {"date": "2026-01-22", "symbol": "AAPL", "close": 248.35, "value": 270.066, "ma_window": 60}, {"date": "2026-01-23", "symbol": "AAPL", "close": 248.04, "value": 269.7241666667, "ma_window": 60}, {"date": "2026-01-26", "symbol": "AAPL", "close": 255.41, "value": 269.502, "ma_window": 60}, {"date": "2025-07-31", "symbol": "AMZN", "close": 234.11, "value": 234.11, "ma_window": 60}, {"date": "2025-08-01", "symbol": "AMZN", "close": 214.75, "value": 224.43, "ma_window": 60}, {"date": "2025-08-04", "symbol": "AMZN", "close": 211.65, "value": 220.17, "ma_window": 60}, {"date": "2025-08-05", "symbol": "AMZN", "close": 213.75, "value": 218.565, "ma_window": 60}, {"date": "2025-08-06", "symbol": "AMZN", "close": 222.31, "value": 219.314, "ma_window": 60}, {"date": "2025-08-07", "symbol": "AMZN", "close": 223.13, "value": 219.95, "ma_window": 60}, {"date": "2025-08-08", "symbol": "AMZN", "close": 222.69, "value": 220.3414285714, "ma_window": 60}, {"date": "2025-08-11", "symbol": "AMZN", "close": 221.3, "value": 220.46125, "ma_window": 60}, {"date": "2025-08-12", "symbol": "AMZN", "close": 221.47, "value": 220.5733333333, "ma_window": 60}, {"date": "2025-08-13", "symbol": "AMZN", "close": 224.56, "value": 220.972, "ma_window": 60}, {"date": "2025-08-14", "symbol": "AMZN", "close": 230.98, "value": 221.8818181818, "ma_window": 60}, {"date": "2025-08-15", "symbol": "AMZN", "close": 231.03, "value": 222.6441666667, "ma_window": 60}, {"date": "2025-08-18", "symbol": "AMZN", "close": 231.49, "value": 223.3246153846, "ma_window": 60}, {"date": "2025-08-19", "symbol": "AMZN", "close": 228.01, "value": 223.6592857143, "ma_window": 60}, {"date": "2025-08-20", "symbol": "AMZN", "close": 223.81, "value": 223.6693333333, "ma_window": 60}, {"date": "2025-08-21", "symbol": "AMZN", "close": 221.95, "value": 223.561875, "ma_window": 60}, {"date": "2025-08-22", "symbol": "AMZN", "close": 228.84, "value": 223.8723529412, "ma_window": 60}, {"date": "2025-08-25", "symbol": "AMZN", "close": 227.94, "value": 224.0983333333, "ma_window": 60}, {"date": "2025-08-26", "symbol": "AMZN", "close": 228.71, "value": 224.3410526316, "ma_window": 60}, {"date": "2025-08-27", "symbol": "AMZN", "close": 229.12, "value": 224.58, "ma_window": 60}, {"date": "2025-08-28", "symbol": "AMZN", "close": 231.6, "value": 224.9142857143, "ma_window": 60}, {"date": "2025-08-29", "symbol": "AMZN", "close": 229, "value": 225.1, "ma_window": 60}, {"date": "2025-09-02", "symbol": "AMZN", "close": 225.34, "value": 225.1104347826, "ma_window": 60}, {"date": "2025-09-03", "symbol": "AMZN", "close": 225.99, "value": 225.1470833333, "ma_window": 60}, {"date": "2025-09-04", "symbol": "AMZN", "close": 235.68, "value": 225.5684, "ma_window": 60}, {"date": "2025-09-05", "symbol": "AMZN", "close": 232.33, "value": 225.8284615385, "ma_window": 60}, {"date": "2025-09-08", "symbol": "AMZN", "close": 235.84, "value": 226.1992592593, "ma_window": 60}, {"date": "2025-09-09", "symbol": "AMZN", "close": 238.24, "value": 226.6292857143, "ma_window": 60}, {"date": "2025-09-10", "symbol": "AMZN", "close": 230.33, "value": 226.7568965517, "ma_window": 60}, {"date": "2025-09-11", "symbol": "AMZN", "close": 229.95, "value": 226.8633333333, "ma_window": 60}, {"date": "2025-09-12", "symbol": "AMZN", "close": 228.15, "value": 226.9048387097, "ma_window": 60}, {"date": "2025-09-15", "symbol": "AMZN", "close": 231.43, "value": 227.04625, "ma_window": 60}, {"date": "2025-09-16", "symbol": "AMZN", "close": 234.05, "value": 227.2584848485, "ma_window": 60}, {"date": "2025-09-17", "symbol": "AMZN", "close": 231.62, "value": 227.3867647059, "ma_window": 60}, {"date": "2025-09-18", "symbol": "AMZN", "close": 231.23, "value": 227.4965714286, "ma_window": 60}, {"date": "2025-09-19", "symbol": "AMZN", "close": 231.48, "value": 227.6072222222, "ma_window": 60}, {"date": "2025-09-22", "symbol": "AMZN", "close": 227.63, "value": 227.6078378378, "ma_window": 60}, {"date": "2025-09-23", "symbol": "AMZN", "close": 220.71, "value": 227.4263157895, "ma_window": 60}, {"date": "2025-09-24", "symbol": "AMZN", "close": 220.21, "value": 227.2412820513, "ma_window": 60}, {"date": "2025-09-25", "symbol": "AMZN", "close": 218.15, "value": 227.014, "ma_window": 60}, {"date": "2025-09-26", "symbol": "AMZN", "close": 219.78, "value": 226.8375609756, "ma_window": 60}, {"date": "2025-09-29", "symbol": "AMZN", "close": 222.17, "value": 226.7264285714, "ma_window": 60}, {"date": "2025-09-30", "symbol": "AMZN", "close": 219.57, "value": 226.56, "ma_window": 60}, {"date": "2025-10-01", "symbol": "AMZN", "close": 220.63, "value": 226.4252272727, "ma_window": 60}, {"date": "2025-10-02", "symbol": "AMZN", "close": 222.41, "value": 226.336, "ma_window": 60}, {"date": "2025-10-03", "symbol": "AMZN", "close": 219.51, "value": 226.1876086957, "ma_window": 60}, {"date": "2025-10-06", "symbol": "AMZN", "close": 220.9, "value": 226.075106383, "ma_window": 60}, {"date": "2025-10-07", "symbol": "AMZN", "close": 221.78, "value": 225.985625, "ma_window": 60}, {"date": "2025-10-08", "symbol": "AMZN", "close": 225.22, "value": 225.97, "ma_window": 60}, {"date": "2025-10-09", "symbol": "AMZN", "close": 227.74, "value": 226.0054, "ma_window": 60}, {"date": "2025-10-10", "symbol": "AMZN", "close": 216.37, "value": 225.8164705882, "ma_window": 60}, {"date": "2025-10-13", "symbol": "AMZN", "close": 220.07, "value": 225.7059615385, "ma_window": 60}, {"date": "2025-10-14", "symbol": "AMZN", "close": 216.39, "value": 225.5301886792, "ma_window": 60}, {"date": "2025-10-15", "symbol": "AMZN", "close": 215.57, "value": 225.3457407407, "ma_window": 60}, {"date": "2025-10-16", "symbol": "AMZN", "close": 214.47, "value": 225.148, "ma_window": 60}, {"date": "2025-10-17", "symbol": "AMZN", "close": 213.04, "value": 224.9317857143, "ma_window": 60}, {"date": "2025-10-20", "symbol": "AMZN", "close": 216.48, "value": 224.7835087719, "ma_window": 60}, {"date": "2025-10-21", "symbol": "AMZN", "close": 222.03, "value": 224.7360344828, "ma_window": 60}, {"date": "2025-10-22", "symbol": "AMZN", "close": 217.95, "value": 224.6210169492, "ma_window": 60}, {"date": "2025-10-23", "symbol": "AMZN", "close": 221.09, "value": 224.5621666667, "ma_window": 60}, {"date": "2025-10-24", "symbol": "AMZN", "close": 224.21, "value": 224.3971666667, "ma_window": 60}, {"date": "2025-10-27", "symbol": "AMZN", "close": 226.97, "value": 224.6008333333, "ma_window": 60}, {"date": "2025-10-28", "symbol": "AMZN", "close": 229.25, "value": 224.8941666667, "ma_window": 60}, {"date": "2025-10-29", "symbol": "AMZN", "close": 230.3, "value": 225.17, "ma_window": 60}, {"date": "2025-10-30", "symbol": "AMZN", "close": 222.86, "value": 225.1791666667, "ma_window": 60}, {"date": "2025-10-31", "symbol": "AMZN", "close": 244.22, "value": 225.5306666667, "ma_window": 60}, {"date": "2025-11-03", "symbol": "AMZN", "close": 254, "value": 226.0525, "ma_window": 60}, {"date": "2025-11-04", "symbol": "AMZN", "close": 249.32, "value": 226.5195, "ma_window": 60}, {"date": "2025-11-05", "symbol": "AMZN", "close": 250.2, "value": 226.9983333333, "ma_window": 60}, {"date": "2025-11-06", "symbol": "AMZN", "close": 243.04, "value": 227.3063333333, "ma_window": 60}, {"date": "2025-11-07", "symbol": "AMZN", "close": 244.41, "value": 227.5301666667, "ma_window": 60}, {"date": "2025-11-10", "symbol": "AMZN", "close": 248.4, "value": 227.8196666667, "ma_window": 60}, {"date": "2025-11-11", "symbol": "AMZN", "close": 249.1, "value": 228.1131666667, "ma_window": 60}, {"date": "2025-11-12", "symbol": "AMZN", "close": 244.2, "value": 228.383, "ma_window": 60}, {"date": "2025-11-13", "symbol": "AMZN", "close": 237.58, "value": 228.6125, "ma_window": 60}, {"date": "2025-11-14", "symbol": "AMZN", "close": 234.69, "value": 228.8248333333, "ma_window": 60}, {"date": "2025-11-17", "symbol": "AMZN", "close": 232.87, "value": 228.892, "ma_window": 60}, {"date": "2025-11-18", "symbol": "AMZN", "close": 222.55, "value": 228.8021666667, "ma_window": 60}, {"date": "2025-11-19", "symbol": "AMZN", "close": 222.69, "value": 228.7018333333, "ma_window": 60}, {"date": "2025-11-20", "symbol": "AMZN", "close": 217.14, "value": 228.5021666667, "ma_window": 60}, {"date": "2025-11-21", "symbol": "AMZN", "close": 220.69, "value": 228.3203333333, "ma_window": 60}, {"date": "2025-11-24", "symbol": "AMZN", "close": 226.28, "value": 228.275, "ma_window": 60}, {"date": "2025-11-25", "symbol": "AMZN", "close": 229.67, "value": 228.3471666667, "ma_window": 60}, {"date": "2025-11-26", "symbol": "AMZN", "close": 229.16, "value": 228.4, "ma_window": 60}, {"date": "2025-11-28", "symbol": "AMZN", "close": 233.22, "value": 228.359, "ma_window": 60}, {"date": "2025-12-01", "symbol": "AMZN", "close": 233.88, "value": 228.3848333333, "ma_window": 60}, {"date": "2025-12-02", "symbol": "AMZN", "close": 234.42, "value": 228.3611666667, "ma_window": 60}, {"date": "2025-12-03", "symbol": "AMZN", "close": 232.38, "value": 228.2635, "ma_window": 60}, {"date": "2025-12-04", "symbol": "AMZN", "close": 229.11, "value": 228.2431666667, "ma_window": 60}, {"date": "2025-12-05", "symbol": "AMZN", "close": 229.53, "value": 228.2361666667, "ma_window": 60}, {"date": "2025-12-08", "symbol": "AMZN", "close": 226.89, "value": 228.2151666667, "ma_window": 60}, {"date": "2025-12-09", "symbol": "AMZN", "close": 227.92, "value": 228.1566666667, "ma_window": 60}, {"date": "2025-12-10", "symbol": "AMZN", "close": 231.78, "value": 228.1188333333, "ma_window": 60}, {"date": "2025-12-11", "symbol": "AMZN", "close": 230.28, "value": 228.0965, "ma_window": 60}, {"date": "2025-12-12", "symbol": "AMZN", "close": 226.19, "value": 228.0125, "ma_window": 60}, {"date": "2025-12-15", "symbol": "AMZN", "close": 222.54, "value": 227.8635, "ma_window": 60}, {"date": "2025-12-16", "symbol": "AMZN", "close": 222.56, "value": 227.779, "ma_window": 60}, {"date": "2025-12-17", "symbol": "AMZN", "close": 221.27, "value": 227.7883333333, "ma_window": 60}, {"date": "2025-12-18", "symbol": "AMZN", "close": 226.76, "value": 227.8975, "ma_window": 60}, {"date": "2025-12-19", "symbol": "AMZN", "close": 227.35, "value": 228.0508333333, "ma_window": 60}, {"date": "2025-12-22", "symbol": "AMZN", "close": 228.43, "value": 228.195, "ma_window": 60}, {"date": "2025-12-23", "symbol": "AMZN", "close": 232.14, "value": 228.3611666667, "ma_window": 60}, {"date": "2025-12-24", "symbol": "AMZN", "close": 232.38, "value": 228.5746666667, "ma_window": 60}, {"date": "2025-12-26", "symbol": "AMZN", "close": 232.52, "value": 228.7728333333, "ma_window": 60}, {"date": "2025-12-29", "symbol": "AMZN", "close": 232.07, "value": 228.9338333333, "ma_window": 60}, {"date": "2025-12-30", "symbol": "AMZN", "close": 232.53, "value": 229.1508333333, "ma_window": 60}, {"date": "2025-12-31", "symbol": "AMZN", "close": 230.82, "value": 229.3161666667, "ma_window": 60}, {"date": "2026-01-02", "symbol": "AMZN", "close": 226.5, "value": 229.3948333333, "ma_window": 60}, {"date": "2026-01-05", "symbol": "AMZN", "close": 233.06, "value": 229.5255, "ma_window": 60}, {"date": "2026-01-06", "symbol": "AMZN", "close": 240.93, "value": 229.7453333333, "ma_window": 60}, {"date": "2026-01-07", "symbol": "AMZN", "close": 241.56, "value": 230.1651666667, "ma_window": 60}, {"date": "2026-01-08", "symbol": "AMZN", "close": 246.29, "value": 230.6021666667, "ma_window": 60}, {"date": "2026-01-09", "symbol": "AMZN", "close": 247.38, "value": 231.1186666667, "ma_window": 60}, {"date": "2026-01-12", "symbol": "AMZN", "close": 246.47, "value": 231.6336666667, "ma_window": 60}, {"date": "2026-01-13", "symbol": "AMZN", "close": 242.6, "value": 232.1025, "ma_window": 60}, {"date": "2026-01-14", "symbol": "AMZN", "close": 236.65, "value": 232.496, "ma_window": 60}, {"date": "2026-01-15", "symbol": "AMZN", "close": 238.18, "value": 232.8576666667, "ma_window": 60}, {"date": "2026-01-16", "symbol": "AMZN", "close": 239.12, "value": 233.1425, "ma_window": 60}, {"date": "2026-01-20", "symbol": "AMZN", "close": 231, "value": 233.36, "ma_window": 60}, {"date": "2026-01-21", "symbol": "AMZN", "close": 231.31, "value": 233.5303333333, "ma_window": 60}, {"date": "2026-01-22", "symbol": "AMZN", "close": 234.34, "value": 233.6991666667, "ma_window": 60}, {"date": "2026-01-23", "symbol": "AMZN", "close": 239.16, "value": 233.9023333333, "ma_window": 60}, {"date": "2026-01-26", "symbol": "AMZN", "close": 238.42, "value": 234.0551666667, "ma_window": 60}, {"date": "2025-07-31", "symbol": "GOOGL", "close": 191.6, "value": 191.6, "ma_window": 60}, {"date": "2025-08-01", "symbol": "GOOGL", "close": 188.84, "value": 190.22, "ma_window": 60}, {"date": "2025-08-04", "symbol": "GOOGL", "close": 194.74, "value": 191.7266666667, "ma_window": 60}, {"date": "2025-08-05", "symbol": "GOOGL", "close": 194.37, "value": 192.3875, "ma_window": 60}, {"date": "2025-08-06", "symbol": "GOOGL", "close": 195.79, "value": 193.068, "ma_window": 60}, {"date": "2025-08-07", "symbol": "GOOGL", "close": 196.22, "value": 193.5933333333, "ma_window": 60}, {"date": "2025-08-08", "symbol": "GOOGL", "close": 201.11, "value": 194.6671428571, "ma_window": 60}, {"date": "2025-08-11", "symbol": "GOOGL", "close": 200.69, "value": 195.42, "ma_window": 60}, {"date": "2025-08-12", "symbol": "GOOGL", "close": 203.03, "value": 196.2655555556, "ma_window": 60}, {"date": "2025-08-13", "symbol": "GOOGL", "close": 201.65, "value": 196.804, "ma_window": 60}, {"date": "2025-08-14", "symbol": "GOOGL", "close": 202.63, "value": 197.3336363636, "ma_window": 60}, {"date": "2025-08-15", "symbol": "GOOGL", "close": 203.58, "value": 197.8541666667, "ma_window": 60}, {"date": "2025-08-18", "symbol": "GOOGL", "close": 203.19, "value": 198.2646153846, "ma_window": 60}, {"date": "2025-08-19", "symbol": "GOOGL", "close": 201.26, "value": 198.4785714286, "ma_window": 60}, {"date": "2025-08-20", "symbol": "GOOGL", "close": 199.01, "value": 198.514, "ma_window": 60}, {"date": "2025-08-21", "symbol": "GOOGL", "close": 199.44, "value": 198.571875, "ma_window": 60}, {"date": "2025-08-22", "symbol": "GOOGL", "close": 205.77, "value": 198.9952941176, "ma_window": 60}, {"date": "2025-08-25", "symbol": "GOOGL", "close": 208.17, "value": 199.505, "ma_window": 60}, {"date": "2025-08-26", "symbol": "GOOGL", "close": 206.82, "value": 199.89, "ma_window": 60}, {"date": "2025-08-27", "symbol": "GOOGL", "close": 207.16, "value": 200.2535, "ma_window": 60}, {"date": "2025-08-28", "symbol": "GOOGL", "close": 211.31, "value": 200.78, "ma_window": 60}, {"date": "2025-08-29", "symbol": "GOOGL", "close": 212.58, "value": 201.3163636364, "ma_window": 60}, {"date": "2025-09-02", "symbol": "GOOGL", "close": 211.02, "value": 201.7382608696, "ma_window": 60}, {"date": "2025-09-03", "symbol": "GOOGL", "close": 230.3, "value": 202.9283333333, "ma_window": 60}, {"date": "2025-09-04", "symbol": "GOOGL", "close": 231.94, "value": 204.0888, "ma_window": 60}, {"date": "2025-09-05", "symbol": "GOOGL", "close": 234.64, "value": 205.2638461538, "ma_window": 60}, {"date": "2025-09-08", "symbol": "GOOGL", "close": 233.89, "value": 206.3240740741, "ma_window": 60}, {"date": "2025-09-09", "symbol": "GOOGL", "close": 239.47, "value": 207.5078571429, "ma_window": 60}, {"date": "2025-09-10", "symbol": "GOOGL", "close": 239.01, "value": 208.594137931, "ma_window": 60}, {"date": "2025-09-11", "symbol": "GOOGL", "close": 240.21, "value": 209.648, "ma_window": 60}, {"date": "2025-09-12", "symbol": "GOOGL", "close": 240.64, "value": 210.6477419355, "ma_window": 60}, {"date": "2025-09-15", "symbol": "GOOGL", "close": 251.45, "value": 211.9228125, "ma_window": 60}, {"date": "2025-09-16", "symbol": "GOOGL", "close": 251, "value": 213.106969697, "ma_window": 60}, {"date": "2025-09-17", "symbol": "GOOGL", "close": 249.37, "value": 214.1735294118, "ma_window": 60}, {"date": "2025-09-18", "symbol": "GOOGL", "close": 251.87, "value": 215.2505714286, "ma_window": 60}, {"date": "2025-09-19", "symbol": "GOOGL", "close": 254.55, "value": 216.3422222222, "ma_window": 60}, {"date": "2025-09-22", "symbol": "GOOGL", "close": 252.36, "value": 217.3156756757, "ma_window": 60}, {"date": "2025-09-23", "symbol": "GOOGL", "close": 251.5, "value": 218.2152631579, "ma_window": 60}, {"date": "2025-09-24", "symbol": "GOOGL", "close": 246.98, "value": 218.9528205128, "ma_window": 60}, {"date": "2025-09-25", "symbol": "GOOGL", "close": 245.63, "value": 219.61975, "ma_window": 60}, {"date": "2025-09-26", "symbol": "GOOGL", "close": 246.38, "value": 220.2724390244, "ma_window": 60}, {"date": "2025-09-29", "symbol": "GOOGL", "close": 243.89, "value": 220.8347619048, "ma_window": 60}, {"date": "2025-09-30", "symbol": "GOOGL", "close": 242.94, "value": 221.3488372093, "ma_window": 60}, {"date": "2025-10-01", "symbol": "GOOGL", "close": 244.74, "value": 221.8804545455, "ma_window": 60}, {"date": "2025-10-02", "symbol": "GOOGL", "close": 245.53, "value": 222.406, "ma_window": 60}, {"date": "2025-10-03", "symbol": "GOOGL", "close": 245.19, "value": 222.9013043478, "ma_window": 60}, {"date": "2025-10-06", "symbol": "GOOGL", "close": 250.27, "value": 223.4836170213, "ma_window": 60}, {"date": "2025-10-07", "symbol": "GOOGL", "close": 245.6, "value": 223.944375, "ma_window": 60}, {"date": "2025-10-08", "symbol": "GOOGL", "close": 244.46, "value": 224.3630612245, "ma_window": 60}, {"date": "2025-10-09", "symbol": "GOOGL", "close": 241.37, "value": 224.7032, "ma_window": 60}, {"date": "2025-10-10", "symbol": "GOOGL", "close": 236.42, "value": 224.9329411765, "ma_window": 60}, {"date": "2025-10-13", "symbol": "GOOGL", "close": 243.99, "value": 225.2994230769, "ma_window": 60}, {"date": "2025-10-14", "symbol": "GOOGL", "close": 245.29, "value": 225.6766037736, "ma_window": 60}, {"date": "2025-10-15", "symbol": "GOOGL", "close": 250.87, "value": 226.1431481481, "ma_window": 60}, {"date": "2025-10-16", "symbol": "GOOGL", "close": 251.3, "value": 226.6005454545, "ma_window": 60}, {"date": "2025-10-17", "symbol": "GOOGL", "close": 253.13, "value": 227.0742857143, "ma_window": 60}, {"date": "2025-10-20", "symbol": "GOOGL", "close": 256.38, "value": 227.5884210526, "ma_window": 60}, {"date": "2025-10-21", "symbol": "GOOGL", "close": 250.3, "value": 227.98, "ma_window": 60}, {"date": "2025-10-22", "symbol": "GOOGL", "close": 251.53, "value": 228.3791525424, "ma_window": 60}, {"date": "2025-10-23", "symbol": "GOOGL", "close": 252.91, "value": 228.788, "ma_window": 60}, {"date": "2025-10-24", "symbol": "GOOGL", "close": 259.75, "value": 229.9238333333, "ma_window": 60}, {"date": "2025-10-27", "symbol": "GOOGL", "close": 269.09, "value": 231.2613333333, "ma_window": 60}, {"date": "2025-10-28", "symbol": "GOOGL", "close": 267.3, "value": 232.4706666667, "ma_window": 60}, {"date": "2025-10-29", "symbol": "GOOGL", "close": 274.39, "value": 233.8043333333, "ma_window": 60}, {"date": "2025-10-30", "symbol": "GOOGL", "close": 281.3, "value": 235.2295, "ma_window": 60}, {"date": "2025-10-31", "symbol": "GOOGL", "close": 281.01, "value": 236.6426666667, "ma_window": 60}, {"date": "2025-11-03", "symbol": "GOOGL", "close": 283.53, "value": 238.0163333333, "ma_window": 60}, {"date": "2025-11-04", "symbol": "GOOGL", "close": 277.36, "value": 239.2941666667, "ma_window": 60}, {"date": "2025-11-05", "symbol": "GOOGL", "close": 284.12, "value": 240.6456666667, "ma_window": 60}, {"date": "2025-11-06", "symbol": "GOOGL", "close": 284.56, "value": 242.0275, "ma_window": 60}, {"date": "2025-11-07", "symbol": "GOOGL", "close": 278.65, "value": 243.2945, "ma_window": 60}, {"date": "2025-11-10", "symbol": "GOOGL", "close": 289.91, "value": 244.7333333333, "ma_window": 60}, {"date": "2025-11-11", "symbol": "GOOGL", "close": 291.12, "value": 246.1988333333, "ma_window": 60}, {"date": "2025-11-12", "symbol": "GOOGL", "close": 286.52, "value": 247.6198333333, "ma_window": 60}, {"date": "2025-11-13", "symbol": "GOOGL", "close": 278.39, "value": 248.9428333333, "ma_window": 60}, {"date": "2025-11-14", "symbol": "GOOGL", "close": 276.23, "value": 250.2226666667, "ma_window": 60}, {"date": "2025-11-17", "symbol": "GOOGL", "close": 284.83, "value": 251.5403333333, "ma_window": 60}, {"date": "2025-11-18", "symbol": "GOOGL", "close": 284.09, "value": 252.8056666667, "ma_window": 60}, {"date": "2025-11-19", "symbol": "GOOGL", "close": 292.62, "value": 254.2356666667, "ma_window": 60}, {"date": "2025-11-20", "symbol": "GOOGL", "close": 289.26, "value": 255.604, "ma_window": 60}, {"date": "2025-11-21", "symbol": "GOOGL", "close": 299.46, "value": 257.0731666667, "ma_window": 60}, {"date": "2025-11-24", "symbol": "GOOGL", "close": 318.37, "value": 258.8363333333, "ma_window": 60}, {"date": "2025-11-25", "symbol": "GOOGL", "close": 323.23, "value": 260.7065, "ma_window": 60}, {"date": "2025-11-26", "symbol": "GOOGL", "close": 319.74, "value": 262.1971666667, "ma_window": 60}, {"date": "2025-11-28", "symbol": "GOOGL", "close": 319.97, "value": 263.6643333333, "ma_window": 60}, {"date": "2025-12-01", "symbol": "GOOGL", "close": 314.68, "value": 264.9983333333, "ma_window": 60}, {"date": "2025-12-02", "symbol": "GOOGL", "close": 315.6, "value": 266.3601666667, "ma_window": 60}, {"date": "2025-12-03", "symbol": "GOOGL", "close": 319.42, "value": 267.6926666667, "ma_window": 60}, {"date": "2025-12-04", "symbol": "GOOGL", "close": 317.41, "value": 268.9993333333, "ma_window": 60}, {"date": "2025-12-05", "symbol": "GOOGL", "close": 321.06, "value": 270.3468333333, "ma_window": 60}, {"date": "2025-12-08", "symbol": "GOOGL", "close": 313.72, "value": 271.5648333333, "ma_window": 60}, {"date": "2025-12-09", "symbol": "GOOGL", "close": 317.08, "value": 272.6586666667, "ma_window": 60}, {"date": "2025-12-10", "symbol": "GOOGL", "close": 320.21, "value": 273.8121666667, "ma_window": 60}, {"date": "2025-12-11", "symbol": "GOOGL", "close": 312.43, "value": 274.8631666667, "ma_window": 60}, {"date": "2025-12-12", "symbol": "GOOGL", "close": 309.29, "value": 275.8201666667, "ma_window": 60}, {"date": "2025-12-15", "symbol": "GOOGL", "close": 308.22, "value": 276.7146666667, "ma_window": 60}, {"date": "2025-12-16", "symbol": "GOOGL", "close": 306.57, "value": 277.6181666667, "ma_window": 60}, {"date": "2025-12-17", "symbol": "GOOGL", "close": 296.72, "value": 278.3718333333, "ma_window": 60}, {"date": "2025-12-18", "symbol": "GOOGL", "close": 302.46, "value": 279.2965, "ma_window": 60}, {"date": "2025-12-19", "symbol": "GOOGL", "close": 307.16, "value": 280.322, "ma_window": 60}, {"date": "2025-12-22", "symbol": "GOOGL", "close": 309.78, "value": 281.3786666667, "ma_window": 60}, {"date": "2025-12-23", "symbol": "GOOGL", "close": 314.35, "value": 282.553, "ma_window": 60}, {"date": "2025-12-24", "symbol": "GOOGL", "close": 314.09, "value": 283.7388333333, "ma_window": 60}, {"date": "2025-12-26", "symbol": "GOOGL", "close": 313.51, "value": 284.885, "ma_window": 60}, {"date": "2025-12-29", "symbol": "GOOGL", "close": 313.56, "value": 286.0188333333, "ma_window": 60}, {"date": "2025-12-30", "symbol": "GOOGL", "close": 313.85, "value": 287.1631666667, "ma_window": 60}, {"date": "2025-12-31", "symbol": "GOOGL", "close": 313, "value": 288.2086666667, "ma_window": 60}, {"date": "2026-01-02", "symbol": "GOOGL", "close": 315.15, "value": 289.3678333333, "ma_window": 60}, {"date": "2026-01-05", "symbol": "GOOGL", "close": 316.54, "value": 290.5691666667, "ma_window": 60}, {"date": "2026-01-06", "symbol": "GOOGL", "close": 314.34, "value": 291.7853333333, "ma_window": 60}, {"date": "2026-01-07", "symbol": "GOOGL", "close": 321.98, "value": 293.2113333333, "ma_window": 60}, {"date": "2026-01-08", "symbol": "GOOGL", "close": 325.44, "value": 294.5688333333, "ma_window": 60}, {"date": "2026-01-09", "symbol": "GOOGL", "close": 328.57, "value": 295.9568333333, "ma_window": 60}, {"date": "2026-01-12", "symbol": "GOOGL", "close": 331.86, "value": 297.3066666667, "ma_window": 60}, {"date": "2026-01-13", "symbol": "GOOGL", "close": 335.97, "value": 298.7178333333, "ma_window": 60}, {"date": "2026-01-14", "symbol": "GOOGL", "close": 335.84, "value": 300.0963333333, "ma_window": 60}, {"date": "2026-01-15", "symbol": "GOOGL", "close": 332.78, "value": 301.3696666667, "ma_window": 60}, {"date": "2026-01-16", "symbol": "GOOGL", "close": 330, "value": 302.698, "ma_window": 60}, {"date": "2026-01-20", "symbol": "GOOGL", "close": 322, "value": 303.8725, "ma_window": 60}, {"date": "2026-01-21", "symbol": "GOOGL", "close": 328.38, "value": 305.1303333333, "ma_window": 60}, {"date": "2026-01-22", "symbol": "GOOGL", "close": 330.54, "value": 306.3101666667, "ma_window": 60}, {"date": "2026-01-23", "symbol": "GOOGL", "close": 327.93, "value": 307.2908333333, "ma_window": 60}, {"date": "2026-01-26", "symbol": "GOOGL", "close": 333.26, "value": 308.3901666667, "ma_window": 60}, {"date": "2025-07-31", "symbol": "META", "close": 772.29, "value": 772.29, "ma_window": 60}, {"date": "2025-08-01", "symbol": "META", "close": 748.89, "value": 760.59, "ma_window": 60}, {"date": "2025-08-04", "symbol": "META", "close": 775.21, "value": 765.4633333333, "ma_window": 60}, {"date": "2025-08-05", "symbol": "META", "close": 762.32, "value": 764.6775, "ma_window": 60}, {"date": "2025-08-06", "symbol": "META", "close": 770.84, "value": 765.91, "ma_window": 60}, {"date": "2025-08-07", "symbol": "META", "close": 760.7, "value": 765.0416666667, "ma_window": 60}, {"date": "2025-08-08", "symbol": "META", "close": 768.15, "value": 765.4857142857, "ma_window": 60}, {"date": "2025-08-11", "symbol": "META", "close": 764.73, "value": 765.39125, "ma_window": 60}, {"date": "2025-08-12", "symbol": "META", "close": 788.82, "value": 767.9944444444, "ma_window": 60}, {"date": "2025-08-13", "symbol": "META", "close": 778.92, "value": 769.087, "ma_window": 60}, {"date": "2025-08-14", "symbol": "META", "close": 780.97, "value": 770.1672727273, "ma_window": 60}, {"date": "2025-08-15", "symbol": "META", "close": 784.06, "value": 771.325, "ma_window": 60}, {"date": "2025-08-18", "symbol": "META", "close": 766.23, "value": 770.9330769231, "ma_window": 60}, {"date": "2025-08-19", "symbol": "META", "close": 750.36, "value": 769.4635714286, "ma_window": 60}, {"date": "2025-08-20", "symbol": "META", "close": 746.61, "value": 767.94, "ma_window": 60}, {"date": "2025-08-21", "symbol": "META", "close": 738, "value": 766.06875, "ma_window": 60}, {"date": "2025-08-22", "symbol": "META", "close": 753.67, "value": 765.3394117647, "ma_window": 60}, {"date": "2025-08-25", "symbol": "META", "close": 752.18, "value": 764.6083333333, "ma_window": 60}, {"date": "2025-08-26", "symbol": "META", "close": 752.98, "value": 763.9963157895, "ma_window": 60}, {"date": "2025-08-27", "symbol": "META", "close": 746.27, "value": 763.11, "ma_window": 60}, {"date": "2025-08-28", "symbol": "META", "close": 749.99, "value": 762.4852380952, "ma_window": 60}, {"date": "2025-08-29", "symbol": "META", "close": 737.6, "value": 761.3540909091, "ma_window": 60}, {"date": "2025-09-02", "symbol": "META", "close": 734.02, "value": 760.1656521739, "ma_window": 60}, {"date": "2025-09-03", "symbol": "META", "close": 735.95, "value": 759.1566666667, "ma_window": 60}, {"date": "2025-09-04", "symbol": "META", "close": 747.54, "value": 758.692, "ma_window": 60}, {"date": "2025-09-05", "symbol": "META", "close": 751.33, "value": 758.4088461538, "ma_window": 60}, {"date": "2025-09-08", "symbol": "META", "close": 751.18, "value": 758.1411111111, "ma_window": 60}, {"date": "2025-09-09", "symbol": "META", "close": 764.56, "value": 758.3703571429, "ma_window": 60}, {"date": "2025-09-10", "symbol": "META", "close": 750.86, "value": 758.1113793103, "ma_window": 60}, {"date": "2025-09-11", "symbol": "META", "close": 749.78, "value": 757.8336666667, "ma_window": 60}, {"date": "2025-09-12", "symbol": "META", "close": 754.47, "value": 757.7251612903, "ma_window": 60}, {"date": "2025-09-15", "symbol": "META", "close": 763.56, "value": 757.9075, "ma_window": 60}, {"date": "2025-09-16", "symbol": "META", "close": 777.84, "value": 758.5115151515, "ma_window": 60}, {"date": "2025-09-17", "symbol": "META", "close": 774.57, "value": 758.9838235294, "ma_window": 60}, {"date": "2025-09-18", "symbol": "META", "close": 779.09, "value": 759.5582857143, "ma_window": 60}, {"date": "2025-09-19", "symbol": "META", "close": 777.22, "value": 760.0488888889, "ma_window": 60}, {"date": "2025-09-22", "symbol": "META", "close": 764.54, "value": 760.1702702703, "ma_window": 60}, {"date": "2025-09-23", "symbol": "META", "close": 754.78, "value": 760.0284210526, "ma_window": 60}, {"date": "2025-09-24", "symbol": "META", "close": 760.04, "value": 760.0287179487, "ma_window": 60}, {"date": "2025-09-25", "symbol": "META", "close": 748.3, "value": 759.7355, "ma_window": 60}, {"date": "2025-09-26", "symbol": "META", "close": 743.14, "value": 759.3307317073, "ma_window": 60}, {"date": "2025-09-29", "symbol": "META", "close": 742.79, "value": 758.9369047619, "ma_window": 60}, {"date": "2025-09-30", "symbol": "META", "close": 733.78, "value": 758.3518604651, "ma_window": 60}, {"date": "2025-10-01", "symbol": "META", "close": 716.76, "value": 757.4065909091, "ma_window": 60}, {"date": "2025-10-02", "symbol": "META", "close": 726.46, "value": 756.7188888889, "ma_window": 60}, {"date": "2025-10-03", "symbol": "META", "close": 709.98, "value": 755.702826087, "ma_window": 60}, {"date": "2025-10-06", "symbol": "META", "close": 715.08, "value": 754.8385106383, "ma_window": 60}, {"date": "2025-10-07", "symbol": "META", "close": 712.5, "value": 753.9564583333, "ma_window": 60}, {"date": "2025-10-08", "symbol": "META", "close": 717.26, "value": 753.2075510204, "ma_window": 60}, {"date": "2025-10-09", "symbol": "META", "close": 732.91, "value": 752.8016, "ma_window": 60}, {"date": "2025-10-10", "symbol": "META", "close": 704.73, "value": 751.8590196078, "ma_window": 60}, {"date": "2025-10-13", "symbol": "META", "close": 715.12, "value": 751.1525, "ma_window": 60}, {"date": "2025-10-14", "symbol": "META", "close": 708.07, "value": 750.3396226415, "ma_window": 60}, {"date": "2025-10-15", "symbol": "META", "close": 716.97, "value": 749.7216666667, "ma_window": 60}, {"date": "2025-10-16", "symbol": "META", "close": 711.49, "value": 749.0265454545, "ma_window": 60}, {"date": "2025-10-17", "symbol": "META", "close": 716.34, "value": 748.4428571429, "ma_window": 60}, {"date": "2025-10-20", "symbol": "META", "close": 731.57, "value": 748.1468421053, "ma_window": 60}, {"date": "2025-10-21", "symbol": "META", "close": 732.67, "value": 747.88, "ma_window": 60}, {"date": "2025-10-22", "symbol": "META", "close": 732.81, "value": 747.6245762712, "ma_window": 60}, {"date": "2025-10-23", "symbol": "META", "close": 733.4, "value": 747.3875, "ma_window": 60}, {"date": "2025-10-24", "symbol": "META", "close": 737.76, "value": 746.812, "ma_window": 60}, {"date": "2025-10-27", "symbol": "META", "close": 750.21, "value": 746.834, "ma_window": 60}, {"date": "2025-10-28", "symbol": "META", "close": 750.83, "value": 746.4276666667, "ma_window": 60}, {"date": "2025-10-29", "symbol": "META", "close": 751.06, "value": 746.24, "ma_window": 60}, {"date": "2025-10-30", "symbol": "META", "close": 665.93, "value": 744.4915, "ma_window": 60}, {"date": "2025-10-31", "symbol": "META", "close": 647.82, "value": 742.6101666667, "ma_window": 60}, {"date": "2025-11-03", "symbol": "META", "close": 637.19, "value": 740.4275, "ma_window": 60}, {"date": "2025-11-04", "symbol": "META", "close": 626.81, "value": 738.1288333333, "ma_window": 60}, {"date": "2025-11-05", "symbol": "META", "close": 635.43, "value": 735.5723333333, "ma_window": 60}, {"date": "2025-11-06", "symbol": "META", "close": 618.44, "value": 732.8976666667, "ma_window": 60}, {"date": "2025-11-07", "symbol": "META", "close": 621.2, "value": 730.2348333333, "ma_window": 60}, {"date": "2025-11-10", "symbol": "META", "close": 631.25, "value": 727.688, "ma_window": 60}, {"date": "2025-11-11", "symbol": "META", "close": 626.57, "value": 725.3603333333, "ma_window": 60}, {"date": "2025-11-12", "symbol": "META", "close": 608.51, "value": 722.9961666667, "ma_window": 60}, {"date": "2025-11-13", "symbol": "META", "close": 609.39, "value": 720.7091666667, "ma_window": 60}, {"date": "2025-11-14", "symbol": "META", "close": 608.96, "value": 718.5585, "ma_window": 60}, {"date": "2025-11-17", "symbol": "META", "close": 601.52, "value": 716.0226666667, "ma_window": 60}, {"date": "2025-11-18", "symbol": "META", "close": 597.2, "value": 713.4396666667, "ma_window": 60}, {"date": "2025-11-19", "symbol": "META", "close": 589.84, "value": 710.7206666667, "ma_window": 60}, {"date": "2025-11-20", "symbol": "META", "close": 588.67, "value": 708.094, "ma_window": 60}, {"date": "2025-11-21", "symbol": "META", "close": 593.77, "value": 705.4903333333, "ma_window": 60}, {"date": "2025-11-24", "symbol": "META", "close": 612.55, "value": 703.4061666667, "ma_window": 60}, {"date": "2025-11-25", "symbol": "META", "close": 635.7, "value": 701.7675, "ma_window": 60}, {"date": "2025-11-26", "symbol": "META", "close": 633.09, "value": 700.0531666667, "ma_window": 60}, {"date": "2025-11-28", "symbol": "META", "close": 647.42, "value": 698.3845, "ma_window": 60}, {"date": "2025-12-01", "symbol": "META", "close": 640.35, "value": 696.5348333333, "ma_window": 60}, {"date": "2025-12-02", "symbol": "META", "close": 646.57, "value": 694.7913333333, "ma_window": 60}, {"date": "2025-12-03", "symbol": "META", "close": 639.08, "value": 692.7, "ma_window": 60}, {"date": "2025-12-04", "symbol": "META", "close": 660.99, "value": 691.2021666667, "ma_window": 60}, {"date": "2025-12-05", "symbol": "META", "close": 672.87, "value": 689.9203333333, "ma_window": 60}, {"date": "2025-12-08", "symbol": "META", "close": 666.26, "value": 688.4501666667, "ma_window": 60}, {"date": "2025-12-09", "symbol": "META", "close": 656.42, "value": 686.6645, "ma_window": 60}, {"date": "2025-12-10", "symbol": "META", "close": 649.6, "value": 684.5271666667, "ma_window": 60}, {"date": "2025-12-11", "symbol": "META", "close": 652.18, "value": 682.4873333333, "ma_window": 60}, {"date": "2025-12-12", "symbol": "META", "close": 643.71, "value": 680.231, "ma_window": 60}, {"date": "2025-12-15", "symbol": "META", "close": 647.51, "value": 678.0691666667, "ma_window": 60}, {"date": "2025-12-16", "symbol": "META", "close": 657.15, "value": 676.2793333333, "ma_window": 60}, {"date": "2025-12-17", "symbol": "META", "close": 649.5, "value": 674.5246666667, "ma_window": 60}, {"date": "2025-12-18", "symbol": "META", "close": 664.45, "value": 672.9315, "ma_window": 60}, {"date": "2025-12-19", "symbol": "META", "close": 658.77, "value": 671.4393333333, "ma_window": 60}, {"date": "2025-12-22", "symbol": "META", "close": 661.5, "value": 670.0786666667, "ma_window": 60}, {"date": "2025-12-23", "symbol": "META", "close": 664.94, "value": 668.7811666667, "ma_window": 60}, {"date": "2025-12-24", "symbol": "META", "close": 667.55, "value": 667.6773333333, "ma_window": 60}, {"date": "2025-12-26", "symbol": "META", "close": 663.29, "value": 666.7861666667, "ma_window": 60}, {"date": "2025-12-29", "symbol": "META", "close": 658.69, "value": 665.6566666667, "ma_window": 60}, {"date": "2025-12-30", "symbol": "META", "close": 665.95, "value": 664.9228333333, "ma_window": 60}, {"date": "2025-12-31", "symbol": "META", "close": 660.09, "value": 664.0063333333, "ma_window": 60}, {"date": "2026-01-02", "symbol": "META", "close": 650.41, "value": 662.9715, "ma_window": 60}, {"date": "2026-01-05", "symbol": "META", "close": 658.79, "value": 661.997, "ma_window": 60}, {"date": "2026-01-06", "symbol": "META", "close": 660.62, "value": 660.7921666667, "ma_window": 60}, {"date": "2026-01-07", "symbol": "META", "close": 648.69, "value": 659.8581666667, "ma_window": 60}, {"date": "2026-01-08", "symbol": "META", "close": 646.06, "value": 658.7071666667, "ma_window": 60}, {"date": "2026-01-09", "symbol": "META", "close": 653.06, "value": 657.7903333333, "ma_window": 60}, {"date": "2026-01-12", "symbol": "META", "close": 641.97, "value": 656.5403333333, "ma_window": 60}, {"date": "2026-01-13", "symbol": "META", "close": 631.09, "value": 655.2003333333, "ma_window": 60}, {"date": "2026-01-14", "symbol": "META", "close": 615.52, "value": 653.52, "ma_window": 60}, {"date": "2026-01-15", "symbol": "META", "close": 620.8, "value": 651.6738333333, "ma_window": 60}, {"date": "2026-01-16", "symbol": "META", "close": 620.25, "value": 649.8001666667, "ma_window": 60}, {"date": "2026-01-20", "symbol": "META", "close": 604.12, "value": 647.6553333333, "ma_window": 60}, {"date": "2026-01-21", "symbol": "META", "close": 612.96, "value": 645.648, "ma_window": 60}, {"date": "2026-01-22", "symbol": "META", "close": 647.63, "value": 644.1458333333, "ma_window": 60}, {"date": "2026-01-23", "symbol": "META", "close": 658.76, "value": 642.6216666667, "ma_window": 60}, {"date": "2026-01-26", "symbol": "META", "close": 672.36, "value": 641.3138333333, "ma_window": 60}, {"date": "2025-07-31", "symbol": "MSFT", "close": 531.63, "value": 531.63, "ma_window": 60}, {"date": "2025-08-01", "symbol": "MSFT", "close": 522.27, "value": 526.95, "ma_window": 60}, {"date": "2025-08-04", "symbol": "MSFT", "close": 533.76, "value": 529.22, "ma_window": 60}, {"date": "2025-08-05", "symbol": "MSFT", "close": 525.9, "value": 528.39, "ma_window": 60}, {"date": "2025-08-06", "symbol": "MSFT", "close": 523.1, "value": 527.332, "ma_window": 60}, {"date": "2025-08-07", "symbol": "MSFT", "close": 519.01, "value": 525.945, "ma_window": 60}, {"date": "2025-08-08", "symbol": "MSFT", "close": 520.21, "value": 525.1257142857, "ma_window": 60}, {"date": "2025-08-11", "symbol": "MSFT", "close": 519.94, "value": 524.4775, "ma_window": 60}, {"date": "2025-08-12", "symbol": "MSFT", "close": 527.38, "value": 524.8, "ma_window": 60}, {"date": "2025-08-13", "symbol": "MSFT", "close": 518.75, "value": 524.195, "ma_window": 60}, {"date": "2025-08-14", "symbol": "MSFT", "close": 520.65, "value": 523.8727272727, "ma_window": 60}, {"date": "2025-08-15", "symbol": "MSFT", "close": 518.35, "value": 523.4125, "ma_window": 60}, {"date": "2025-08-18", "symbol": "MSFT", "close": 515.29, "value": 522.7876923077, "ma_window": 60}, {"date": "2025-08-19", "symbol": "MSFT", "close": 507.98, "value": 521.73, "ma_window": 60}, {"date": "2025-08-20", "symbol": "MSFT", "close": 503.95, "value": 520.5446666667, "ma_window": 60}, {"date": "2025-08-21", "symbol": "MSFT", "close": 503.3, "value": 519.466875, "ma_window": 60}, {"date": "2025-08-22", "symbol": "MSFT", "close": 506.28, "value": 518.6911764706, "ma_window": 60}, {"date": "2025-08-25", "symbol": "MSFT", "close": 503.32, "value": 517.8372222222, "ma_window": 60}, {"date": "2025-08-26", "symbol": "MSFT", "close": 501.1, "value": 516.9563157895, "ma_window": 60}, {"date": "2025-08-27", "symbol": "MSFT", "close": 505.79, "value": 516.398, "ma_window": 60}, {"date": "2025-08-28", "symbol": "MSFT", "close": 508.69, "value": 516.030952381, "ma_window": 60}, {"date": "2025-08-29", "symbol": "MSFT", "close": 505.74, "value": 515.5631818182, "ma_window": 60}, {"date": "2025-09-02", "symbol": "MSFT", "close": 504.18, "value": 515.0682608696, "ma_window": 60}, {"date": "2025-09-03", "symbol": "MSFT", "close": 504.41, "value": 514.6241666667, "ma_window": 60}, {"date": "2025-09-04", "symbol": "MSFT", "close": 507.02, "value": 514.32, "ma_window": 60}, {"date": "2025-09-05", "symbol": "MSFT", "close": 494.08, "value": 513.5415384615, "ma_window": 60}, {"date": "2025-09-08", "symbol": "MSFT", "close": 497.27, "value": 512.9388888889, "ma_window": 60}, {"date": "2025-09-09", "symbol": "MSFT", "close": 497.48, "value": 512.3867857143, "ma_window": 60}, {"date": "2025-09-10", "symbol": "MSFT", "close": 499.44, "value": 511.9403448276, "ma_window": 60}, {"date": "2025-09-11", "symbol": "MSFT", "close": 500.07, "value": 511.5446666667, "ma_window": 60}, {"date": "2025-09-12", "symbol": "MSFT", "close": 508.95, "value": 511.4609677419, "ma_window": 60}, {"date": "2025-09-15", "symbol": "MSFT", "close": 514.4, "value": 511.5528125, "ma_window": 60}, {"date": "2025-09-16", "symbol": "MSFT", "close": 508.09, "value": 511.4478787879, "ma_window": 60}, {"date": "2025-09-17", "symbol": "MSFT", "close": 509.07, "value": 511.3779411765, "ma_window": 60}, {"date": "2025-09-18", "symbol": "MSFT", "close": 507.5, "value": 511.2671428571, "ma_window": 60}, {"date": "2025-09-19", "symbol": "MSFT", "close": 516.96, "value": 511.4252777778, "ma_window": 60}, {"date": "2025-09-22", "symbol": "MSFT", "close": 513.49, "value": 511.4810810811, "ma_window": 60}, {"date": "2025-09-23", "symbol": "MSFT", "close": 508.28, "value": 511.3968421053, "ma_window": 60}, {"date": "2025-09-24", "symbol": "MSFT", "close": 509.2, "value": 511.3405128205, "ma_window": 60}, {"date": "2025-09-25", "symbol": "MSFT", "close": 506.08, "value": 511.209, "ma_window": 60}, {"date": "2025-09-26", "symbol": "MSFT", "close": 510.5, "value": 511.1917073171, "ma_window": 60}, {"date": "2025-09-29", "symbol": "MSFT", "close": 513.64, "value": 511.25, "ma_window": 60}, {"date": "2025-09-30", "symbol": "MSFT", "close": 516.98, "value": 511.383255814, "ma_window": 60}, {"date": "2025-10-01", "symbol": "MSFT", "close": 518.74, "value": 511.5504545455, "ma_window": 60}, {"date": "2025-10-02", "symbol": "MSFT", "close": 514.78, "value": 511.6222222222, "ma_window": 60}, {"date": "2025-10-03", "symbol": "MSFT", "close": 516.38, "value": 511.7256521739, "ma_window": 60}, {"date": "2025-10-06", "symbol": "MSFT", "close": 527.58, "value": 512.0629787234, "ma_window": 60}, {"date": "2025-10-07", "symbol": "MSFT", "close": 523, "value": 512.2908333333, "ma_window": 60}, {"date": "2025-10-08", "symbol": "MSFT", "close": 523.87, "value": 512.5271428571, "ma_window": 60}, {"date": "2025-10-09", "symbol": "MSFT", "close": 521.42, "value": 512.705, "ma_window": 60}, {"date": "2025-10-10", "symbol": "MSFT", "close": 510.01, "value": 512.6521568627, "ma_window": 60}, {"date": "2025-10-13", "symbol": "MSFT", "close": 513.09, "value": 512.6605769231, "ma_window": 60}, {"date": "2025-10-14", "symbol": "MSFT", "close": 512.61, "value": 512.6596226415, "ma_window": 60}, {"date": "2025-10-15", "symbol": "MSFT", "close": 512.47, "value": 512.6561111111, "ma_window": 60}, {"date": "2025-10-16", "symbol": "MSFT", "close": 510.65, "value": 512.6196363636, "ma_window": 60}, {"date": "2025-10-17", "symbol": "MSFT", "close": 512.62, "value": 512.6196428571, "ma_window": 60}, {"date": "2025-10-20", "symbol": "MSFT", "close": 515.82, "value": 512.6757894737, "ma_window": 60}, {"date": "2025-10-21", "symbol": "MSFT", "close": 516.69, "value": 512.745, "ma_window": 60}, {"date": "2025-10-22", "symbol": "MSFT", "close": 519.57, "value": 512.8606779661, "ma_window": 60}, {"date": "2025-10-23", "symbol": "MSFT", "close": 519.59, "value": 512.9728333333, "ma_window": 60}, {"date": "2025-10-24", "symbol": "MSFT", "close": 522.63, "value": 512.8228333333, "ma_window": 60}, {"date": "2025-10-27", "symbol": "MSFT", "close": 530.53, "value": 512.9605, "ma_window": 60}, {"date": "2025-10-28", "symbol": "MSFT", "close": 541.06, "value": 513.0821666667, "ma_window": 60}, {"date": "2025-10-29", "symbol": "MSFT", "close": 540.54, "value": 513.3261666667, "ma_window": 60}, {"date": "2025-10-30", "symbol": "MSFT", "close": 524.78, "value": 513.3541666667, "ma_window": 60}, {"date": "2025-10-31", "symbol": "MSFT", "close": 516.84, "value": 513.318, "ma_window": 60}, {"date": "2025-11-03", "symbol": "MSFT", "close": 516.06, "value": 513.2488333333, "ma_window": 60}, {"date": "2025-11-04", "symbol": "MSFT", "close": 513.37, "value": 513.1393333333, "ma_window": 60}, {"date": "2025-11-05", "symbol": "MSFT", "close": 506.21, "value": 512.7865, "ma_window": 60}, {"date": "2025-11-06", "symbol": "MSFT", "close": 496.17, "value": 512.4101666667, "ma_window": 60}, {"date": "2025-11-07", "symbol": "MSFT", "close": 495.89, "value": 511.9975, "ma_window": 60}, {"date": "2025-11-10", "symbol": "MSFT", "close": 505.05, "value": 511.7758333333, "ma_window": 60}, {"date": "2025-11-11", "symbol": "MSFT", "close": 507.73, "value": 511.6498333333, "ma_window": 60}, {"date": "2025-11-12", "symbol": "MSFT", "close": 510.19, "value": 511.6866666667, "ma_window": 60}, {"date": "2025-11-13", "symbol": "MSFT", "close": 502.35, "value": 511.66, "ma_window": 60}, {"date": "2025-11-14", "symbol": "MSFT", "close": 509.23, "value": 511.7588333333, "ma_window": 60}, {"date": "2025-11-17", "symbol": "MSFT", "close": 506.54, "value": 511.7631666667, "ma_window": 60}, {"date": "2025-11-18", "symbol": "MSFT", "close": 492.87, "value": 511.589, "ma_window": 60}, {"date": "2025-11-19", "symbol": "MSFT", "close": 486.21, "value": 511.3408333333, "ma_window": 60}, {"date": "2025-11-20", "symbol": "MSFT", "close": 478.43, "value": 510.8848333333, "ma_window": 60}, {"date": "2025-11-21", "symbol": "MSFT", "close": 472.12, "value": 510.2753333333, "ma_window": 60}, {"date": "2025-11-24", "symbol": "MSFT", "close": 474, "value": 509.7463333333, "ma_window": 60}, {"date": "2025-11-25", "symbol": "MSFT", "close": 476.99, "value": 509.2931666667, "ma_window": 60}, {"date": "2025-11-26", "symbol": "MSFT", "close": 485.5, "value": 508.978, "ma_window": 60}, {"date": "2025-11-28", "symbol": "MSFT", "close": 492.01, "value": 508.7278333333, "ma_window": 60}, {"date": "2025-12-01", "symbol": "MSFT", "close": 486.74, "value": 508.6055, "ma_window": 60}, {"date": "2025-12-02", "symbol": "MSFT", "close": 490, "value": 508.4843333333, "ma_window": 60}, {"date": "2025-12-03", "symbol": "MSFT", "close": 477.73, "value": 508.1551666667, "ma_window": 60}, {"date": "2025-12-04", "symbol": "MSFT", "close": 480.84, "value": 507.8451666667, "ma_window": 60}, {"date": "2025-12-05", "symbol": "MSFT", "close": 483.16, "value": 507.5633333333, "ma_window": 60}, {"date": "2025-12-08", "symbol": "MSFT", "close": 491.02, "value": 507.2645, "ma_window": 60}, {"date": "2025-12-09", "symbol": "MSFT", "close": 492.02, "value": 506.8915, "ma_window": 60}, {"date": "2025-12-10", "symbol": "MSFT", "close": 478.56, "value": 506.3993333333, "ma_window": 60}, {"date": "2025-12-11", "symbol": "MSFT", "close": 483.47, "value": 505.9726666667, "ma_window": 60}, {"date": "2025-12-12", "symbol": "MSFT", "close": 478.53, "value": 505.4898333333, "ma_window": 60}, {"date": "2025-12-15", "symbol": "MSFT", "close": 474.82, "value": 504.7875, "ma_window": 60}, {"date": "2025-12-16", "symbol": "MSFT", "close": 476.39, "value": 504.1691666667, "ma_window": 60}, {"date": "2025-12-17", "symbol": "MSFT", "close": 476.12, "value": 503.6331666667, "ma_window": 60}, {"date": "2025-12-18", "symbol": "MSFT", "close": 483.98, "value": 503.2128333333, "ma_window": 60}, {"date": "2025-12-19", "symbol": "MSFT", "close": 485.92, "value": 502.8768333333, "ma_window": 60}, {"date": "2025-12-22", "symbol": "MSFT", "close": 484.92, "value": 502.4505, "ma_window": 60}, {"date": "2025-12-23", "symbol": "MSFT", "close": 486.85, "value": 502.004, "ma_window": 60}, {"date": "2025-12-24", "symbol": "MSFT", "close": 488.02, "value": 501.5213333333, "ma_window": 60}, {"date": "2025-12-26", "symbol": "MSFT", "close": 487.71, "value": 501.0041666667, "ma_window": 60}, {"date": "2025-12-29", "symbol": "MSFT", "close": 487.1, "value": 500.5428333333, "ma_window": 60}, {"date": "2025-12-30", "symbol": "MSFT", "close": 487.48, "value": 500.0611666667, "ma_window": 60}, {"date": "2025-12-31", "symbol": "MSFT", "close": 483.62, "value": 499.3285, "ma_window": 60}, {"date": "2026-01-02", "symbol": "MSFT", "close": 472.94, "value": 498.4941666667, "ma_window": 60}, {"date": "2026-01-05", "symbol": "MSFT", "close": 472.85, "value": 497.6438333333, "ma_window": 60}, {"date": "2026-01-06", "symbol": "MSFT", "close": 478.51, "value": 496.9286666667, "ma_window": 60}, {"date": "2026-01-07", "symbol": "MSFT", "close": 483.47, "value": 496.4863333333, "ma_window": 60}, {"date": "2026-01-08", "symbol": "MSFT", "close": 478.11, "value": 495.9033333333, "ma_window": 60}, {"date": "2026-01-09", "symbol": "MSFT", "close": 479.28, "value": 495.3478333333, "ma_window": 60}, {"date": "2026-01-12", "symbol": "MSFT", "close": 477.18, "value": 494.7596666667, "ma_window": 60}, {"date": "2026-01-13", "symbol": "MSFT", "close": 470.67, "value": 494.0933333333, "ma_window": 60}, {"date": "2026-01-14", "symbol": "MSFT", "close": 459.38, "value": 493.206, "ma_window": 60}, {"date": "2026-01-15", "symbol": "MSFT", "close": 456.66, "value": 492.22, "ma_window": 60}, {"date": "2026-01-16", "symbol": "MSFT", "close": 459.86, "value": 491.2728333333, "ma_window": 60}, {"date": "2026-01-20", "symbol": "MSFT", "close": 454.52, "value": 490.1886666667, "ma_window": 60}, {"date": "2026-01-21", "symbol": "MSFT", "close": 444.11, "value": 488.9306666667, "ma_window": 60}, {"date": "2026-01-22", "symbol": "MSFT", "close": 451.14, "value": 487.7391666667, "ma_window": 60}, {"date": "2026-01-23", "symbol": "MSFT", "close": 465.95, "value": 486.6628333333, "ma_window": 60}, {"date": "2026-01-26", "symbol": "MSFT", "close": 470.28, "value": 485.4831666667, "ma_window": 60}, {"date": "2025-07-31", "symbol": "NVDA", "close": 177.85, "value": 177.85, "ma_window": 60}, {"date": "2025-08-01", "symbol": "NVDA", "close": 173.7, "value": 175.775, "ma_window": 60}, {"date": "2025-08-04", "symbol": "NVDA", "close": 179.98, "value": 177.1766666667, "ma_window": 60}, {"date": "2025-08-05", "symbol": "NVDA", "close": 178.24, "value": 177.4425, "ma_window": 60}, {"date": "2025-08-06", "symbol": "NVDA", "close": 179.4, "value": 177.834, "ma_window": 60}, {"date": "2025-08-07", "symbol": "NVDA", "close": 180.75, "value": 178.32, "ma_window": 60}, {"date": "2025-08-08", "symbol": "NVDA", "close": 182.68, "value": 178.9428571429, "ma_window": 60}, {"date": "2025-08-11", "symbol": "NVDA", "close": 182.04, "value": 179.33, "ma_window": 60}, {"date": "2025-08-12", "symbol": "NVDA", "close": 183.14, "value": 179.7533333333, "ma_window": 60}, {"date": "2025-08-13", "symbol": "NVDA", "close": 181.57, "value": 179.935, "ma_window": 60}, {"date": "2025-08-14", "symbol": "NVDA", "close": 182, "value": 180.1227272727, "ma_window": 60}, {"date": "2025-08-15", "symbol": "NVDA", "close": 180.43, "value": 180.1483333333, "ma_window": 60}, {"date": "2025-08-18", "symbol": "NVDA", "close": 181.99, "value": 180.29, "ma_window": 60}, {"date": "2025-08-19", "symbol": "NVDA", "close": 175.62, "value": 179.9564285714, "ma_window": 60}, {"date": "2025-08-20", "symbol": "NVDA", "close": 175.38, "value": 179.6513333333, "ma_window": 60}, {"date": "2025-08-21", "symbol": "NVDA", "close": 174.96, "value": 179.358125, "ma_window": 60}, {"date": "2025-08-22", "symbol": "NVDA", "close": 177.97, "value": 179.2764705882, "ma_window": 60}, {"date": "2025-08-25", "symbol": "NVDA", "close": 179.79, "value": 179.305, "ma_window": 60}, {"date": "2025-08-26", "symbol": "NVDA", "close": 181.75, "value": 179.4336842105, "ma_window": 60}, {"date": "2025-08-27", "symbol": "NVDA", "close": 181.58, "value": 179.541, "ma_window": 60}, {"date": "2025-08-28", "symbol": "NVDA", "close": 180.15, "value": 179.57, "ma_window": 60}, {"date": "2025-08-29", "symbol": "NVDA", "close": 174.16, "value": 179.3240909091, "ma_window": 60}, {"date": "2025-09-02", "symbol": "NVDA", "close": 170.76, "value": 178.9517391304, "ma_window": 60}, {"date": "2025-09-03", "symbol": "NVDA", "close": 170.6, "value": 178.60375, "ma_window": 60}, {"date": "2025-09-04", "symbol": "NVDA", "close": 171.64, "value": 178.3252, "ma_window": 60}, {"date": "2025-09-05", "symbol": "NVDA", "close": 167, "value": 177.8896153846, "ma_window": 60}, {"date": "2025-09-08", "symbol": "NVDA", "close": 168.29, "value": 177.5340740741, "ma_window": 60}, {"date": "2025-09-09", "symbol": "NVDA", "close": 170.74, "value": 177.2914285714, "ma_window": 60}, {"date": "2025-09-10", "symbol": "NVDA", "close": 177.31, "value": 177.2920689655, "ma_window": 60}, {"date": "2025-09-11", "symbol": "NVDA", "close": 177.16, "value": 177.2876666667, "ma_window": 60}, {"date": "2025-09-12", "symbol": "NVDA", "close": 177.81, "value": 177.304516129, "ma_window": 60}, {"date": "2025-09-15", "symbol": "NVDA", "close": 177.74, "value": 177.318125, "ma_window": 60}, {"date": "2025-09-16", "symbol": "NVDA", "close": 174.87, "value": 177.2439393939, "ma_window": 60}, {"date": "2025-09-17", "symbol": "NVDA", "close": 170.28, "value": 177.0391176471, "ma_window": 60}, {"date": "2025-09-18", "symbol": "NVDA", "close": 176.23, "value": 177.016, "ma_window": 60}, {"date": "2025-09-19", "symbol": "NVDA", "close": 176.66, "value": 177.0061111111, "ma_window": 60}, {"date": "2025-09-22", "symbol": "NVDA", "close": 183.6, "value": 177.1843243243, "ma_window": 60}, {"date": "2025-09-23", "symbol": "NVDA", "close": 178.42, "value": 177.2168421053, "ma_window": 60}, {"date": "2025-09-24", "symbol": "NVDA", "close": 176.96, "value": 177.2102564103, "ma_window": 60}, {"date": "2025-09-25", "symbol": "NVDA", "close": 177.68, "value": 177.222, "ma_window": 60}, {"date": "2025-09-26", "symbol": "NVDA", "close": 178.18, "value": 177.2453658537, "ma_window": 60}, {"date": "2025-09-29", "symbol": "NVDA", "close": 181.84, "value": 177.3547619048, "ma_window": 60}, {"date": "2025-09-30", "symbol": "NVDA", "close": 186.57, "value": 177.5690697674, "ma_window": 60}, {"date": "2025-10-01", "symbol": "NVDA", "close": 187.23, "value": 177.7886363636, "ma_window": 60}, {"date": "2025-10-02", "symbol": "NVDA", "close": 188.88, "value": 178.0351111111, "ma_window": 60}, {"date": "2025-10-03", "symbol": "NVDA", "close": 187.61, "value": 178.2432608696, "ma_window": 60}, {"date": "2025-10-06", "symbol": "NVDA", "close": 185.53, "value": 178.3982978723, "ma_window": 60}, {"date": "2025-10-07", "symbol": "NVDA", "close": 185.03, "value": 178.5364583333, "ma_window": 60}, {"date": "2025-10-08", "symbol": "NVDA", "close": 189.1, "value": 178.7520408163, "ma_window": 60}, {"date": "2025-10-09", "symbol": "NVDA", "close": 192.56, "value": 179.0282, "ma_window": 60}, {"date": "2025-10-10", "symbol": "NVDA", "close": 183.15, "value": 179.1090196078, "ma_window": 60}, {"date": "2025-10-13", "symbol": "NVDA", "close": 188.31, "value": 179.2859615385, "ma_window": 60}, {"date": "2025-10-14", "symbol": "NVDA", "close": 180.02, "value": 179.2998113208, "ma_window": 60}, {"date": "2025-10-15", "symbol": "NVDA", "close": 179.82, "value": 179.3094444444, "ma_window": 60}, {"date": "2025-10-16", "symbol": "NVDA", "close": 181.8, "value": 179.3547272727, "ma_window": 60}, {"date": "2025-10-17", "symbol": "NVDA", "close": 183.21, "value": 179.4235714286, "ma_window": 60}, {"date": "2025-10-20", "symbol": "NVDA", "close": 182.63, "value": 179.4798245614, "ma_window": 60}, {"date": "2025-10-21", "symbol": "NVDA", "close": 181.15, "value": 179.5086206897, "ma_window": 60}, {"date": "2025-10-22", "symbol": "NVDA", "close": 180.27, "value": 179.5215254237, "ma_window": 60}, {"date": "2025-10-23", "symbol": "NVDA", "close": 182.15, "value": 179.5653333333, "ma_window": 60}, {"date": "2025-10-24", "symbol": "NVDA", "close": 186.25, "value": 179.7053333333, "ma_window": 60}, {"date": "2025-10-27", "symbol": "NVDA", "close": 191.48, "value": 180.0016666667, "ma_window": 60}, {"date": "2025-10-28", "symbol": "NVDA", "close": 201.02, "value": 180.3523333333, "ma_window": 60}, {"date": "2025-10-29", "symbol": "NVDA", "close": 207.03, "value": 180.8321666667, "ma_window": 60}, {"date": "2025-10-30", "symbol": "NVDA", "close": 202.88, "value": 181.2235, "ma_window": 60}, {"date": "2025-10-31", "symbol": "NVDA", "close": 202.48, "value": 181.5856666667, "ma_window": 60}, {"date": "2025-11-03", "symbol": "NVDA", "close": 206.87, "value": 181.9888333333, "ma_window": 60}, {"date": "2025-11-04", "symbol": "NVDA", "close": 198.68, "value": 182.2661666667, "ma_window": 60}, {"date": "2025-11-05", "symbol": "NVDA", "close": 195.2, "value": 182.4671666667, "ma_window": 60}, {"date": "2025-11-06", "symbol": "NVDA", "close": 188.07, "value": 182.5755, "ma_window": 60}, {"date": "2025-11-07", "symbol": "NVDA", "close": 188.14, "value": 182.6778333333, "ma_window": 60}, {"date": "2025-11-10", "symbol": "NVDA", "close": 199.04, "value": 182.988, "ma_window": 60}, {"date": "2025-11-11", "symbol": "NVDA", "close": 193.15, "value": 183.174, "ma_window": 60}, {"date": "2025-11-12", "symbol": "NVDA", "close": 193.79, "value": 183.4768333333, "ma_window": 60}, {"date": "2025-11-13", "symbol": "NVDA", "close": 186.85, "value": 183.668, "ma_window": 60}, {"date": "2025-11-14", "symbol": "NVDA", "close": 190.16, "value": 183.9213333333, "ma_window": 60}, {"date": "2025-11-17", "symbol": "NVDA", "close": 186.59, "value": 184.065, "ma_window": 60}, {"date": "2025-11-18", "symbol": "NVDA", "close": 181.35, "value": 184.091, "ma_window": 60}, {"date": "2025-11-19", "symbol": "NVDA", "close": 186.51, "value": 184.1703333333, "ma_window": 60}, {"date": "2025-11-20", "symbol": "NVDA", "close": 180.63, "value": 184.1545, "ma_window": 60}, {"date": "2025-11-21", "symbol": "NVDA", "close": 178.87, "value": 184.1331666667, "ma_window": 60}, {"date": "2025-11-24", "symbol": "NVDA", "close": 182.54, "value": 184.2728333333, "ma_window": 60}, {"date": "2025-11-25", "symbol": "NVDA", "close": 177.81, "value": 184.3903333333, "ma_window": 60}, {"date": "2025-11-26", "symbol": "NVDA", "close": 180.25, "value": 184.5511666667, "ma_window": 60}, {"date": "2025-11-28", "symbol": "NVDA", "close": 176.99, "value": 184.6403333333, "ma_window": 60}, {"date": "2025-12-01", "symbol": "NVDA", "close": 179.91, "value": 184.8555, "ma_window": 60}, {"date": "2025-12-02", "symbol": "NVDA", "close": 181.45, "value": 185.0748333333, "ma_window": 60}, {"date": "2025-12-03", "symbol": "NVDA", "close": 179.58, "value": 185.2221666667, "ma_window": 60}, {"date": "2025-12-04", "symbol": "NVDA", "close": 183.38, "value": 185.3233333333, "ma_window": 60}, {"date": "2025-12-05", "symbol": "NVDA", "close": 182.41, "value": 185.4108333333, "ma_window": 60}, {"date": "2025-12-08", "symbol": "NVDA", "close": 185.55, "value": 185.5398333333, "ma_window": 60}, {"date": "2025-12-09", "symbol": "NVDA", "close": 184.97, "value": 185.6603333333, "ma_window": 60}, {"date": "2025-12-10", "symbol": "NVDA", "close": 183.78, "value": 185.8088333333, "ma_window": 60}, {"date": "2025-12-11", "symbol": "NVDA", "close": 180.93, "value": 185.9863333333, "ma_window": 60}, {"date": "2025-12-12", "symbol": "NVDA", "close": 175.02, "value": 185.9661666667, "ma_window": 60}, {"date": "2025-12-15", "symbol": "NVDA", "close": 176.29, "value": 185.96, "ma_window": 60}, {"date": "2025-12-16", "symbol": "NVDA", "close": 177.72, "value": 185.862, "ma_window": 60}, {"date": "2025-12-17", "symbol": "NVDA", "close": 170.94, "value": 185.7373333333, "ma_window": 60}, {"date": "2025-12-18", "symbol": "NVDA", "close": 174.14, "value": 185.6903333333, "ma_window": 60}, {"date": "2025-12-19", "symbol": "NVDA", "close": 180.99, "value": 185.7455, "ma_window": 60}, {"date": "2025-12-22", "symbol": "NVDA", "close": 183.69, "value": 185.8373333333, "ma_window": 60}, {"date": "2025-12-23", "symbol": "NVDA", "close": 189.21, "value": 185.9601666667, "ma_window": 60}, {"date": "2025-12-24", "symbol": "NVDA", "close": 188.61, "value": 185.9941666667, "ma_window": 60}, {"date": "2025-12-26", "symbol": "NVDA", "close": 190.53, "value": 186.0491666667, "ma_window": 60}, {"date": "2025-12-29", "symbol": "NVDA", "close": 188.22, "value": 186.0381666667, "ma_window": 60}, {"date": "2025-12-30", "symbol": "NVDA", "close": 187.54, "value": 186.037, "ma_window": 60}, {"date": "2025-12-31", "symbol": "NVDA", "close": 186.5, "value": 186.0531666667, "ma_window": 60}, {"date": "2026-01-02", "symbol": "NVDA", "close": 188.85, "value": 186.1168333333, "ma_window": 60}, {"date": "2026-01-05", "symbol": "NVDA", "close": 188.12, "value": 186.1005, "ma_window": 60}, {"date": "2026-01-06", "symbol": "NVDA", "close": 187.24, "value": 186.0118333333, "ma_window": 60}, {"date": "2026-01-07", "symbol": "NVDA", "close": 189.11, "value": 186.1111666667, "ma_window": 60}, {"date": "2026-01-08", "symbol": "NVDA", "close": 185.04, "value": 186.0566666667, "ma_window": 60}, {"date": "2026-01-09", "symbol": "NVDA", "close": 184.86, "value": 186.1373333333, "ma_window": 60}, {"date": "2026-01-12", "symbol": "NVDA", "close": 184.94, "value": 186.2226666667, "ma_window": 60}, {"date": "2026-01-13", "symbol": "NVDA", "close": 185.81, "value": 186.2895, "ma_window": 60}, {"date": "2026-01-14", "symbol": "NVDA", "close": 183.14, "value": 186.2883333333, "ma_window": 60}, {"date": "2026-01-15", "symbol": "NVDA", "close": 187.05, "value": 186.362, "ma_window": 60}, {"date": "2026-01-16", "symbol": "NVDA", "close": 186.23, "value": 186.4466666667, "ma_window": 60}, {"date": "2026-01-20", "symbol": "NVDA", "close": 178.07, "value": 186.41, "ma_window": 60}, {"date": "2026-01-21", "symbol": "NVDA", "close": 183.32, "value": 186.4295, "ma_window": 60}, {"date": "2026-01-22", "symbol": "NVDA", "close": 184.84, "value": 186.406, "ma_window": 60}, {"date": "2026-01-23", "symbol": "NVDA", "close": 187.67, "value": 186.3425, "ma_window": 60}, {"date": "2026-01-26", "symbol": "NVDA", "close": 186.47, "value": 186.1, "ma_window": 60}], "metadata": {"date": {"type": "date", "semanticType": "Date"}, "symbol": {"type": "string", "semanticType": "String"}, "close": {"type": "number", "semanticType": "Number"}, "value": {"type": "number", "semanticType": "Number"}, "ma_window": {"type": "integer", "semanticType": "Duration"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy and keep only needed columns if present\n base_cols = [c for c in [\"date\", \"symbol\", \"close\"] if c in df_history.columns]\n df = df_history[base_cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Ensure we have a clean, simple index to avoid alignment issues\n df = df.reset_index(drop=True)\n\n # Compute rolling means using transform to preserve index alignment\n df[\"ma_20\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).mean())\n )\n df[\"ma_60\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=60, min_periods=1).mean())\n )\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map).astype(int)\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n", "source": ["history"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"input_tables\": [...] // string[], describe names of the input tables that will be used in the transformation.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", 'boxplot'. \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"input_tables\", the names of a subset of input tables from [CONTEXT] section that will be used to achieve the user's goal.\n - **IMPORTANT** Note that the Table 1 in [CONTEXT] section is the table the user is currently viewing, it should take precedence if the user refers to insights about the \"current table\".\n - At the same time, leverage table information to determine which tables are relevant to the user's goal and should be used.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", \"boxplot\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - boxplot: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - (boxplot) Box plots: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical (optional for creating grouped boxplots), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the boxplot will be grouped automatically (items with the same x values will be grouped).\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE]. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n# from sklearn import ... # import from sklearn if you need it.\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- decide the function signature based on the number of tables you decided in the previous step \"input_tables\":\n - if you decide there will only be one input table, then function signature should be `def transform_data(df1)`\n - if you decided there will be k input tables, then function signature should be `def transform_data(df_1, df_2, ..., df_k)`.\n - instead of using generic names like df1, df2, ..., try to use intuitive table names for function arguments, for example, if you have input_tables: [\"City\", \"Weather\"]`, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes.\n - **VERY IMPORTANT** the number of arguments in the function signature must be the same as the number of tables provided in \"input_tables\", and the order of arguments must match the order of tables provided in \"input_tables\".\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[GOAL]\n\n1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compare overall closing price trends and volatility over time for each stock symbol on a single line chart.\",\n \"display_instruction\": \"Visualize **closing price** trends by **symbol** over **date**\",\n \"recommendation\": \"A line chart with time on the x-axis and closing price on the y-axis, colored by symbol, best shows comparative trajectories and volatility over time. The data only needs column selection, date normalization, and sorting to be visualization-ready.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date symbol close\n0 2025-07-30 AAPL 208.61\n1 2025-07-31 AAPL 207.13\n2 2025-08-01 AAPL 201.95\n3 2025-08-04 AAPL 202.92\n4 2025-08-05 AAPL 202.49\n5 2025-08-06 AAPL 212.80\n6 2025-08-07 AAPL 219.57\n7 2025-08-08 AAPL 228.87\n8 2025-08-11 AAPL 226.96\n9 2025-08-12 AAPL 229.43\n......\n\nUpdate the code above based on the following instruction:\n\n2) For each symbol, compute 20-day and 60-day rolling averages of close price (columns: date, symbol, value, ma_window with values 20 or 60) and plot them over time alongside the actual close to compare short- vs long-term trends and reversals."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compute 20-day and 60-day rolling averages of closing prices for each symbol in tidy format for plotting alongside actual closes over time.\",\n \"display_instruction\": \"Add **20/60-day moving averages** of **close** by **symbol** over **date**\",\n \"recommendation\": \"To compare short- and long-term trends per symbol, compute 20- and 60-day rolling means of close, reshape them into a long format with one row per date-symbol-window, and keep the original close for plotting alongside the moving averages.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"ma_window\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy\n df = df_history.copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Group by symbol and compute rolling means on close\n group = df.groupby(\"symbol\", group_keys=False)[\"close\"]\n df[\"ma_20\"] = group.rolling(20, min_periods=1).mean()\n df[\"ma_60\"] = group.rolling(60, min_periods=1).mean()\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map)\n\n # Ensure correct column order and types\n df_long[\"ma_window\"] = df_long[\"ma_window\"].astype(int)\n\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\nEmpty DataFrame\nColumns: []\nIndex: []\n......\n\nUpdate the code above based on the following instruction:\n\nWe run into the following problem executing the code, please fix it:\n\nError: TypeError - incompatible index of inserted column with frame index\n\nPlease think step by step, reflect why the error happens and fix the code so that no more errors would occur."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compute 20-day and 60-day rolling averages of closing prices for each symbol in tidy format for plotting alongside actual closes over time.\",\n \"display_instruction\": \"Compute **20/60-day moving averages** of **close** by **symbol** over **date**\",\n \"recommendation\": \"The previous implementation used groupby().rolling() and assigned the result directly to new columns, which can create an index mismatch and raise a TypeError. Using groupby().transform(...) with an inner rolling mean keeps the index aligned with the original DataFrame, avoiding incompatible index issues. After computing the moving averages, reshape to long format for visualization.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"ma_window\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy and keep only needed columns if present\n base_cols = [c for c in [\"date\", \"symbol\", \"close\"] if c in df_history.columns]\n df = df_history[base_cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Ensure we have a clean, simple index to avoid alignment issues\n df = df.reset_index(drop=True)\n\n # Compute rolling means using transform to preserve index alignment\n df[\"ma_20\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).mean())\n )\n df[\"ma_60\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=60, min_periods=1).mean())\n )\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map).astype(int)\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n```"}], "trigger": {"tableId": "table-233476", "resultTableId": "table-265247", "chart": {"id": "chart-1769471261112", "chartType": "Auto", "encodingMap": {}, "tableRef": "history", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "2) For each symbol, compute 20-day and 60-day rolling averages of close price (columns: date, symbol, value, ma_window with values 20 or 60) and plot them over time alongside the actual close to compare short- vs long-term trends and reversals.", "displayContent": "Compute **20/60-day moving averages** of **close** by **symbol** over **date**"}]}, "explanation": {"status": "ok", "concepts": [{"field": "ma_20, ma_60, value", "explanation": "These fields represent a rolling (moving) average of the closing price over a fixed number of recent trading days for each stock symbol. For a window of N days (N = 20 or 60), the moving average on a given date is the average of the last N closing prices up to that date. Mathematically, if close_t is the closing price on day t, then the N-day moving average MA_N(t) is: MA_N(t) = (close_t + close_{t-1} + ... + close_{t-N+1}) / N. At the start of the series, when fewer than N days are available, the average is taken over all available past days instead."}, {"field": "ma_window", "explanation": "This field indicates the length of the moving-average window, in days. A value of 20 means the corresponding 'value' is a 20-day moving average; a value of 60 means it is a 60-day moving average."}], "code": "- Start from the original **history** table but keep only the **`date`**, **`symbol`**, and **`close`** fields to simplify the data.\n- Convert **`date`** into a standardized text format **`YYYY-MM-DD`** so all dates look consistent.\n- **Sort** the data by **`symbol`** and then by **`date`** to ensure the time series for each stock is in the correct order.\n- For each **`symbol`**, **compute**:\n - **`ma_20`**: a **20-day moving average** of the **`close`** price (uses up to the last **20** days; for the first few days it uses all available past days).\n - **`ma_60`**: a **60-day moving average** of the **`close`** price (uses up to the last **60** days; similarly relaxed at the start).\n- **Reshape** the data so that instead of having separate columns **`ma_20`** and **`ma_60`**, each row represents **one moving-average value**:\n - Keep **`date`**, **`symbol`**, and **`close`**.\n - Put the moving-average values into a single column **`value`**.\n - Use a column **`ma_window`** to indicate whether **`value`** is for **20** days or **60** days.\n- **Map** the labels **`ma_20`** and **`ma_60`** into numeric values **20** and **60** in **`ma_window`**, and keep only:\n - **`date`**, **`symbol`**, **`close`**, **`value`** (moving average), **`ma_window`** (window length in days).", "dialog": [{"role": "system", "content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n"}, {"role": "user", "content": "[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy and keep only needed columns if present\n base_cols = [c for c in [\"date\", \"symbol\", \"close\"] if c in df_history.columns]\n df = df_history[base_cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Ensure we have a clean, simple index to avoid alignment issues\n df = df.reset_index(drop=True)\n\n # Compute rolling means using transform to preserve index alignment\n df[\"ma_20\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).mean())\n )\n df[\"ma_60\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=60, min_periods=1).mean())\n )\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map).astype(int)\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n\n\n[EXPLANATION]\n"}, {"role": "assistant", "content": "[CODE EXPLANATION]\n\n- Start from the original **history** table but keep only the **`date`**, **`symbol`**, and **`close`** fields to simplify the data.\n- Convert **`date`** into a standardized text format **`YYYY-MM-DD`** so all dates look consistent.\n- **Sort** the data by **`symbol`** and then by **`date`** to ensure the time series for each stock is in the correct order.\n- For each **`symbol`**, **compute**:\n - **`ma_20`**: a **20-day moving average** of the **`close`** price (uses up to the last **20** days; for the first few days it uses all available past days).\n - **`ma_60`**: a **60-day moving average** of the **`close`** price (uses up to the last **60** days; similarly relaxed at the start).\n- **Reshape** the data so that instead of having separate columns **`ma_20`** and **`ma_60`**, each row represents **one moving-average value**:\n - Keep **`date`**, **`symbol`**, and **`close`**.\n - Put the moving-average values into a single column **`value`**.\n - Use a column **`ma_window`** to indicate whether **`value`** is for **20** days or **60** days.\n- **Map** the labels **`ma_20`** and **`ma_60`** into numeric values **20** and **60** in **`ma_window`**, and keep only:\n - **`date`**, **`symbol`**, **`close`**, **`value`** (moving average), **`ma_window`** (window length in days).\n\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"ma_20, ma_60, value\",\n \"explanation\": \"These fields represent a rolling (moving) average of the closing price over a fixed number of recent trading days for each stock symbol. For a window of N days (N = 20 or 60), the moving average on a given date is the average of the last N closing prices up to that date. Mathematically, if close_t is the closing price on day t, then the N-day moving average MA_N(t) is: MA_N(t) = (close_t + close_{t-1} + ... + close_{t-N+1}) / N. At the start of the series, when fewer than N days are available, the average is taken over all available past days instead.\"\n },\n {\n \"field\": \"ma_window\",\n \"explanation\": \"This field indicates the length of the moving-average window, in days. A value of 20 means the corresponding 'value' is a 20-day moving average; a value of 60 means it is a 60-day moving average.\"\n }\n]\n```"}], "agent": "CodeExplanationAgent"}, "status": "completed"}, "anchored": false, "attachedMetadata": "", "contentHash": "63c48b66"}, {"kind": "table", "id": "table-277926", "displayId": "stock-metr", "names": ["date", "symbol", "metric", "value"], "rows": [{"date": "2025-07-31", "symbol": "AAPL", "metric": "return", "value": null}, {"date": "2025-08-01", "symbol": "AAPL", "metric": "return", "value": -0.0250084488}, {"date": "2025-08-04", "symbol": "AAPL", "metric": "return", "value": 0.0048031691}, {"date": "2025-08-05", "symbol": "AAPL", "metric": "return", "value": -0.0021190617}, {"date": "2025-08-06", "symbol": "AAPL", "metric": "return", "value": 0.0509160946}, {"date": "2025-08-07", "symbol": "AAPL", "metric": "return", "value": 0.0318139098}, {"date": "2025-08-08", "symbol": "AAPL", "metric": "return", "value": 0.042355513}, {"date": "2025-08-11", "symbol": "AAPL", "metric": "return", "value": -0.0083453489}, {"date": "2025-08-12", "symbol": "AAPL", "metric": "return", "value": 0.010882975}, {"date": "2025-08-13", "symbol": "AAPL", "metric": "return", "value": 0.0159961644}, {"date": "2025-08-14", "symbol": "AAPL", "metric": "return", "value": -0.0023595024}, {"date": "2025-08-15", "symbol": "AAPL", "metric": "return", "value": -0.0050741776}, {"date": "2025-08-18", "symbol": "AAPL", "metric": "return", "value": -0.0030254571}, {"date": "2025-08-19", "symbol": "AAPL", "metric": "return", "value": -0.0014306152}, {"date": "2025-08-20", "symbol": "AAPL", "metric": "return", "value": -0.019753408}, {"date": "2025-08-21", "symbol": "AAPL", "metric": "return", "value": -0.0049160725}, {"date": "2025-08-22", "symbol": "AAPL", "metric": "return", "value": 0.0127292149}, {"date": "2025-08-25", "symbol": "AAPL", "metric": "return", "value": -0.002636899}, {"date": "2025-08-26", "symbol": "AAPL", "metric": "return", "value": 0.0094738697}, {"date": "2025-08-27", "symbol": "AAPL", "metric": "return", "value": 0.0051508141}, {"date": "2025-08-28", "symbol": "AAPL", "metric": "return", "value": 0.0089460199}, {"date": "2025-08-29", "symbol": "AAPL", "metric": "return", "value": -0.0017647312}, {"date": "2025-09-02", "symbol": "AAPL", "metric": "return", "value": -0.0104346326}, {"date": "2025-09-03", "symbol": "AAPL", "metric": "return", "value": 0.0380827887}, {"date": "2025-09-04", "symbol": "AAPL", "metric": "return", "value": 0.0054986568}, {"date": "2025-09-05", "symbol": "AAPL", "metric": "return", "value": -0.0003757044}, {"date": "2025-09-08", "symbol": "AAPL", "metric": "return", "value": -0.0075586737}, {"date": "2025-09-09", "symbol": "AAPL", "metric": "return", "value": -0.0148537766}, {"date": "2025-09-10", "symbol": "AAPL", "metric": "return", "value": -0.0322484196}, {"date": "2025-09-11", "symbol": "AAPL", "metric": "return", "value": 0.0143002163}, {"date": "2025-09-12", "symbol": "AAPL", "metric": "return", "value": 0.0175362256}, {"date": "2025-09-15", "symbol": "AAPL", "metric": "return", "value": 0.0112470065}, {"date": "2025-09-16", "symbol": "AAPL", "metric": "return", "value": 0.006131856}, {"date": "2025-09-17", "symbol": "AAPL", "metric": "return", "value": 0.0035305985}, {"date": "2025-09-18", "symbol": "AAPL", "metric": "return", "value": -0.0046490199}, {"date": "2025-09-19", "symbol": "AAPL", "metric": "return", "value": 0.0320218809}, {"date": "2025-09-22", "symbol": "AAPL", "metric": "return", "value": 0.0430971214}, {"date": "2025-09-23", "symbol": "AAPL", "metric": "return", "value": -0.0064495954}, {"date": "2025-09-24", "symbol": "AAPL", "metric": "return", "value": -0.0083012039}, {"date": "2025-09-25", "symbol": "AAPL", "metric": "return", "value": 0.0180505415}, {"date": "2025-09-26", "symbol": "AAPL", "metric": "return", "value": -0.0054945055}, {"date": "2025-09-29", "symbol": "AAPL", "metric": "return", "value": -0.004035892}, {"date": "2025-09-30", "symbol": "AAPL", "metric": "return", "value": 0.000786844}, {"date": "2025-10-01", "symbol": "AAPL", "metric": "return", "value": 0.0032235239}, {"date": "2025-10-02", "symbol": "AAPL", "metric": "return", "value": 0.0065830721}, {"date": "2025-10-03", "symbol": "AAPL", "metric": "return", "value": 0.0034646528}, {"date": "2025-10-06", "symbol": "AAPL", "metric": "return", "value": -0.0051596384}, {"date": "2025-10-07", "symbol": "AAPL", "metric": "return", "value": -0.000818905}, {"date": "2025-10-08", "symbol": "AAPL", "metric": "return", "value": 0.0061663349}, {"date": "2025-10-09", "symbol": "AAPL", "metric": "return", "value": -0.0155928785}, {"date": "2025-10-10", "symbol": "AAPL", "metric": "return", "value": -0.0345167264}, {"date": "2025-10-13", "symbol": "AAPL", "metric": "return", "value": 0.0097539077}, {"date": "2025-10-14", "symbol": "AAPL", "metric": "return", "value": 0.0004445881}, {"date": "2025-10-15", "symbol": "AAPL", "metric": "return", "value": 0.0063426655}, {"date": "2025-10-16", "symbol": "AAPL", "metric": "return", "value": -0.0075873143}, {"date": "2025-10-17", "symbol": "AAPL", "metric": "return", "value": 0.019578496}, {"date": "2025-10-20", "symbol": "AAPL", "metric": "return", "value": 0.0394366197}, {"date": "2025-10-21", "symbol": "AAPL", "metric": "return", "value": 0.002022978}, {"date": "2025-10-22", "symbol": "AAPL", "metric": "return", "value": -0.0164558891}, {"date": "2025-10-23", "symbol": "AAPL", "metric": "return", "value": 0.0043764524}, {"date": "2025-10-24", "symbol": "AAPL", "metric": "return", "value": 0.0124937339}, {"date": "2025-10-27", "symbol": "AAPL", "metric": "return", "value": 0.0227748791}, {"date": "2025-10-28", "symbol": "AAPL", "metric": "return", "value": 0.0007075033}, {"date": "2025-10-29", "symbol": "AAPL", "metric": "return", "value": 0.0026047481}, {"date": "2025-10-30", "symbol": "AAPL", "metric": "return", "value": 0.0063093824}, {"date": "2025-10-31", "symbol": "AAPL", "metric": "return", "value": -0.0037987755}, {"date": "2025-11-03", "symbol": "AAPL", "metric": "return", "value": -0.0048868979}, {"date": "2025-11-04", "symbol": "AAPL", "metric": "return", "value": 0.0036831727}, {"date": "2025-11-05", "symbol": "AAPL", "metric": "return", "value": 0.0003706724}, {"date": "2025-11-06", "symbol": "AAPL", "metric": "return", "value": -0.0013709797}, {"date": "2025-11-07", "symbol": "AAPL", "metric": "return", "value": -0.0048235687}, {"date": "2025-11-10", "symbol": "AAPL", "metric": "return", "value": 0.0045486745}, {"date": "2025-11-11", "symbol": "AAPL", "metric": "return", "value": 0.021601158}, {"date": "2025-11-12", "symbol": "AAPL", "metric": "return", "value": -0.0064668483}, {"date": "2025-11-13", "symbol": "AAPL", "metric": "return", "value": -0.0019014883}, {"date": "2025-11-14", "symbol": "AAPL", "metric": "return", "value": -0.0019783843}, {"date": "2025-11-17", "symbol": "AAPL", "metric": "return", "value": -0.0181711391}, {"date": "2025-11-18", "symbol": "AAPL", "metric": "return", "value": -7.47775e-05}, {"date": "2025-11-19", "symbol": "AAPL", "metric": "return", "value": 0.0041878552}, {"date": "2025-11-20", "symbol": "AAPL", "metric": "return", "value": -0.0086014298}, {"date": "2025-11-21", "symbol": "AAPL", "metric": "return", "value": 0.0196807512}, {"date": "2025-11-24", "symbol": "AAPL", "metric": "return", "value": 0.0163173598}, {"date": "2025-11-25", "symbol": "AAPL", "metric": "return", "value": 0.0038054509}, {"date": "2025-11-26", "symbol": "AAPL", "metric": "return", "value": 0.0020940896}, {"date": "2025-11-28", "symbol": "AAPL", "metric": "return", "value": 0.0046838407}, {"date": "2025-12-01", "symbol": "AAPL", "metric": "return", "value": 0.0152411691}, {"date": "2025-12-02", "symbol": "AAPL", "metric": "return", "value": 0.0109148711}, {"date": "2025-12-03", "symbol": "AAPL", "metric": "return", "value": -0.0071281317}, {"date": "2025-12-04", "symbol": "AAPL", "metric": "return", "value": -0.0121414746}, {"date": "2025-12-05", "symbol": "AAPL", "metric": "return", "value": -0.0068400428}, {"date": "2025-12-08", "symbol": "AAPL", "metric": "return", "value": -0.0031924815}, {"date": "2025-12-09", "symbol": "AAPL", "metric": "return", "value": -0.0025549678}, {"date": "2025-12-10", "symbol": "AAPL", "metric": "return", "value": 0.0057724223}, {"date": "2025-12-11", "symbol": "AAPL", "metric": "return", "value": -0.0026902934}, {"date": "2025-12-12", "symbol": "AAPL", "metric": "return", "value": 0.0008991835}, {"date": "2025-12-15", "symbol": "AAPL", "metric": "return", "value": -0.0149849073}, {"date": "2025-12-16", "symbol": "AAPL", "metric": "return", "value": 0.0018240852}, {"date": "2025-12-17", "symbol": "AAPL", "metric": "return", "value": -0.0100870325}, {"date": "2025-12-18", "symbol": "AAPL", "metric": "return", "value": 0.0012875221}, {"date": "2025-12-19", "symbol": "AAPL", "metric": "return", "value": 0.0054373783}, {"date": "2025-12-22", "symbol": "AAPL", "metric": "return", "value": -0.0098658969}, {"date": "2025-12-23", "symbol": "AAPL", "metric": "return", "value": 0.0051297192}, {"date": "2025-12-24", "symbol": "AAPL", "metric": "return", "value": 0.0053238361}, {"date": "2025-12-26", "symbol": "AAPL", "metric": "return", "value": -0.0014973887}, {"date": "2025-12-29", "symbol": "AAPL", "metric": "return", "value": 0.001316752}, {"date": "2025-12-30", "symbol": "AAPL", "metric": "return", "value": -0.0024839275}, {"date": "2025-12-31", "symbol": "AAPL", "metric": "return", "value": -0.0044675553}, {"date": "2026-01-02", "symbol": "AAPL", "metric": "return", "value": -0.0031266093}, {"date": "2026-01-05", "symbol": "AAPL", "metric": "return", "value": -0.0138371278}, {"date": "2026-01-06", "symbol": "AAPL", "metric": "return", "value": -0.0183342064}, {"date": "2026-01-07", "symbol": "AAPL", "metric": "return", "value": -0.00773746}, {"date": "2026-01-08", "symbol": "AAPL", "metric": "return", "value": -0.0049552491}, {"date": "2026-01-09", "symbol": "AAPL", "metric": "return", "value": 0.0012739345}, {"date": "2026-01-12", "symbol": "AAPL", "metric": "return", "value": 0.0033928365}, {"date": "2026-01-13", "symbol": "AAPL", "metric": "return", "value": 0.0030739673}, {"date": "2026-01-14", "symbol": "AAPL", "metric": "return", "value": -0.0041754453}, {"date": "2026-01-15", "symbol": "AAPL", "metric": "return", "value": -0.0067318049}, {"date": "2026-01-16", "symbol": "AAPL", "metric": "return", "value": -0.0103791488}, {"date": "2026-01-20", "symbol": "AAPL", "metric": "return", "value": -0.0345556295}, {"date": "2026-01-21", "symbol": "AAPL", "metric": "return", "value": 0.003850831}, {"date": "2026-01-22", "symbol": "AAPL", "metric": "return", "value": 0.0028265698}, {"date": "2026-01-23", "symbol": "AAPL", "metric": "return", "value": -0.0012482384}, {"date": "2026-01-26", "symbol": "AAPL", "metric": "return", "value": 0.0297129495}, {"date": "2025-07-31", "symbol": "AMZN", "metric": "return", "value": null}, {"date": "2025-08-01", "symbol": "AMZN", "metric": "return", "value": -0.0826961685}, {"date": "2025-08-04", "symbol": "AMZN", "metric": "return", "value": -0.01443539}, {"date": "2025-08-05", "symbol": "AMZN", "metric": "return", "value": 0.0099220411}, {"date": "2025-08-06", "symbol": "AMZN", "metric": "return", "value": 0.0400467836}, {"date": "2025-08-07", "symbol": "AMZN", "metric": "return", "value": 0.003688543}, {"date": "2025-08-08", "symbol": "AMZN", "metric": "return", "value": -0.0019719446}, {"date": "2025-08-11", "symbol": "AMZN", "metric": "return", "value": -0.0062418609}, {"date": "2025-08-12", "symbol": "AMZN", "metric": "return", "value": 0.000768188}, {"date": "2025-08-13", "symbol": "AMZN", "metric": "return", "value": 0.0139522283}, {"date": "2025-08-14", "symbol": "AMZN", "metric": "return", "value": 0.0285892412}, {"date": "2025-08-15", "symbol": "AMZN", "metric": "return", "value": 0.000216469}, {"date": "2025-08-18", "symbol": "AMZN", "metric": "return", "value": 0.0019910834}, {"date": "2025-08-19", "symbol": "AMZN", "metric": "return", "value": -0.0150330468}, {"date": "2025-08-20", "symbol": "AMZN", "metric": "return", "value": -0.0184202447}, {"date": "2025-08-21", "symbol": "AMZN", "metric": "return", "value": -0.0083106206}, {"date": "2025-08-22", "symbol": "AMZN", "metric": "return", "value": 0.0310430277}, {"date": "2025-08-25", "symbol": "AMZN", "metric": "return", "value": -0.0039328789}, {"date": "2025-08-26", "symbol": "AMZN", "metric": "return", "value": 0.003378082}, {"date": "2025-08-27", "symbol": "AMZN", "metric": "return", "value": 0.0017926632}, {"date": "2025-08-28", "symbol": "AMZN", "metric": "return", "value": 0.0108240223}, {"date": "2025-08-29", "symbol": "AMZN", "metric": "return", "value": -0.0112262522}, {"date": "2025-09-02", "symbol": "AMZN", "metric": "return", "value": -0.0159825328}, {"date": "2025-09-03", "symbol": "AMZN", "metric": "return", "value": 0.00288453}, {"date": "2025-09-04", "symbol": "AMZN", "metric": "return", "value": 0.0428780035}, {"date": "2025-09-05", "symbol": "AMZN", "metric": "return", "value": -0.0142141887}, {"date": "2025-09-08", "symbol": "AMZN", "metric": "return", "value": 0.0151078208}, {"date": "2025-09-09", "symbol": "AMZN", "metric": "return", "value": 0.0101763908}, {"date": "2025-09-10", "symbol": "AMZN", "metric": "return", "value": -0.0332018133}, {"date": "2025-09-11", "symbol": "AMZN", "metric": "return", "value": -0.0016498068}, {"date": "2025-09-12", "symbol": "AMZN", "metric": "return", "value": -0.0078277886}, {"date": "2025-09-15", "symbol": "AMZN", "metric": "return", "value": 0.0143765067}, {"date": "2025-09-16", "symbol": "AMZN", "metric": "return", "value": 0.0113209178}, {"date": "2025-09-17", "symbol": "AMZN", "metric": "return", "value": -0.0103823969}, {"date": "2025-09-18", "symbol": "AMZN", "metric": "return", "value": -0.0016837924}, {"date": "2025-09-19", "symbol": "AMZN", "metric": "return", "value": 0.0010811746}, {"date": "2025-09-22", "symbol": "AMZN", "metric": "return", "value": -0.0166321064}, {"date": "2025-09-23", "symbol": "AMZN", "metric": "return", "value": -0.0304002109}, {"date": "2025-09-24", "symbol": "AMZN", "metric": "return", "value": -0.0022654162}, {"date": "2025-09-25", "symbol": "AMZN", "metric": "return", "value": -0.0093547069}, {"date": "2025-09-26", "symbol": "AMZN", "metric": "return", "value": 0.007471923}, {"date": "2025-09-29", "symbol": "AMZN", "metric": "return", "value": 0.0108745109}, {"date": "2025-09-30", "symbol": "AMZN", "metric": "return", "value": -0.0117027501}, {"date": "2025-10-01", "symbol": "AMZN", "metric": "return", "value": 0.0048276176}, {"date": "2025-10-02", "symbol": "AMZN", "metric": "return", "value": 0.0080678058}, {"date": "2025-10-03", "symbol": "AMZN", "metric": "return", "value": -0.0130389821}, {"date": "2025-10-06", "symbol": "AMZN", "metric": "return", "value": 0.0063322855}, {"date": "2025-10-07", "symbol": "AMZN", "metric": "return", "value": 0.003983703}, {"date": "2025-10-08", "symbol": "AMZN", "metric": "return", "value": 0.0155108666}, {"date": "2025-10-09", "symbol": "AMZN", "metric": "return", "value": 0.0111890596}, {"date": "2025-10-10", "symbol": "AMZN", "metric": "return", "value": -0.0499253535}, {"date": "2025-10-13", "symbol": "AMZN", "metric": "return", "value": 0.0171003374}, {"date": "2025-10-14", "symbol": "AMZN", "metric": "return", "value": -0.0167219521}, {"date": "2025-10-15", "symbol": "AMZN", "metric": "return", "value": -0.0037894542}, {"date": "2025-10-16", "symbol": "AMZN", "metric": "return", "value": -0.0051027508}, {"date": "2025-10-17", "symbol": "AMZN", "metric": "return", "value": -0.0066675992}, {"date": "2025-10-20", "symbol": "AMZN", "metric": "return", "value": 0.0161472024}, {"date": "2025-10-21", "symbol": "AMZN", "metric": "return", "value": 0.0256374723}, {"date": "2025-10-22", "symbol": "AMZN", "metric": "return", "value": -0.0183758951}, {"date": "2025-10-23", "symbol": "AMZN", "metric": "return", "value": 0.0144069741}, {"date": "2025-10-24", "symbol": "AMZN", "metric": "return", "value": 0.0141119001}, {"date": "2025-10-27", "symbol": "AMZN", "metric": "return", "value": 0.0123098881}, {"date": "2025-10-28", "symbol": "AMZN", "metric": "return", "value": 0.0100453804}, {"date": "2025-10-29", "symbol": "AMZN", "metric": "return", "value": 0.0045801527}, {"date": "2025-10-30", "symbol": "AMZN", "metric": "return", "value": -0.0323056882}, {"date": "2025-10-31", "symbol": "AMZN", "metric": "return", "value": 0.0958449251}, {"date": "2025-11-03", "symbol": "AMZN", "metric": "return", "value": 0.0400458603}, {"date": "2025-11-04", "symbol": "AMZN", "metric": "return", "value": -0.0184251969}, {"date": "2025-11-05", "symbol": "AMZN", "metric": "return", "value": 0.0035296005}, {"date": "2025-11-06", "symbol": "AMZN", "metric": "return", "value": -0.0286171063}, {"date": "2025-11-07", "symbol": "AMZN", "metric": "return", "value": 0.0056369322}, {"date": "2025-11-10", "symbol": "AMZN", "metric": "return", "value": 0.0163250276}, {"date": "2025-11-11", "symbol": "AMZN", "metric": "return", "value": 0.0028180354}, {"date": "2025-11-12", "symbol": "AMZN", "metric": "return", "value": -0.0196708149}, {"date": "2025-11-13", "symbol": "AMZN", "metric": "return", "value": -0.0271089271}, {"date": "2025-11-14", "symbol": "AMZN", "metric": "return", "value": -0.0121643236}, {"date": "2025-11-17", "symbol": "AMZN", "metric": "return", "value": -0.0077549107}, {"date": "2025-11-18", "symbol": "AMZN", "metric": "return", "value": -0.0443165715}, {"date": "2025-11-19", "symbol": "AMZN", "metric": "return", "value": 0.0006290721}, {"date": "2025-11-20", "symbol": "AMZN", "metric": "return", "value": -0.0249225381}, {"date": "2025-11-21", "symbol": "AMZN", "metric": "return", "value": 0.0163488993}, {"date": "2025-11-24", "symbol": "AMZN", "metric": "return", "value": 0.0253296479}, {"date": "2025-11-25", "symbol": "AMZN", "metric": "return", "value": 0.0149814389}, {"date": "2025-11-26", "symbol": "AMZN", "metric": "return", "value": -0.0022205774}, {"date": "2025-11-28", "symbol": "AMZN", "metric": "return", "value": 0.017716879}, {"date": "2025-12-01", "symbol": "AMZN", "metric": "return", "value": 0.002829946}, {"date": "2025-12-02", "symbol": "AMZN", "metric": "return", "value": 0.0023088763}, {"date": "2025-12-03", "symbol": "AMZN", "metric": "return", "value": -0.0087023292}, {"date": "2025-12-04", "symbol": "AMZN", "metric": "return", "value": -0.014071779}, {"date": "2025-12-05", "symbol": "AMZN", "metric": "return", "value": 0.0018331806}, {"date": "2025-12-08", "symbol": "AMZN", "metric": "return", "value": -0.0115017645}, {"date": "2025-12-09", "symbol": "AMZN", "metric": "return", "value": 0.0045396448}, {"date": "2025-12-10", "symbol": "AMZN", "metric": "return", "value": 0.0169357669}, {"date": "2025-12-11", "symbol": "AMZN", "metric": "return", "value": -0.0064716542}, {"date": "2025-12-12", "symbol": "AMZN", "metric": "return", "value": -0.0177609866}, {"date": "2025-12-15", "symbol": "AMZN", "metric": "return", "value": -0.0161368761}, {"date": "2025-12-16", "symbol": "AMZN", "metric": "return", "value": 8.98715e-05}, {"date": "2025-12-17", "symbol": "AMZN", "metric": "return", "value": -0.0057961898}, {"date": "2025-12-18", "symbol": "AMZN", "metric": "return", "value": 0.0248113165}, {"date": "2025-12-19", "symbol": "AMZN", "metric": "return", "value": 0.0026018698}, {"date": "2025-12-22", "symbol": "AMZN", "metric": "return", "value": 0.0047503849}, {"date": "2025-12-23", "symbol": "AMZN", "metric": "return", "value": 0.0162412993}, {"date": "2025-12-24", "symbol": "AMZN", "metric": "return", "value": 0.0010338589}, {"date": "2025-12-26", "symbol": "AMZN", "metric": "return", "value": 0.0006024615}, {"date": "2025-12-29", "symbol": "AMZN", "metric": "return", "value": -0.0019353174}, {"date": "2025-12-30", "symbol": "AMZN", "metric": "return", "value": 0.0019821606}, {"date": "2025-12-31", "symbol": "AMZN", "metric": "return", "value": -0.0073538898}, {"date": "2026-01-02", "symbol": "AMZN", "metric": "return", "value": -0.0187158825}, {"date": "2026-01-05", "symbol": "AMZN", "metric": "return", "value": 0.0289624724}, {"date": "2026-01-06", "symbol": "AMZN", "metric": "return", "value": 0.0337681284}, {"date": "2026-01-07", "symbol": "AMZN", "metric": "return", "value": 0.0026148674}, {"date": "2026-01-08", "symbol": "AMZN", "metric": "return", "value": 0.0195810565}, {"date": "2026-01-09", "symbol": "AMZN", "metric": "return", "value": 0.004425677}, {"date": "2026-01-12", "symbol": "AMZN", "metric": "return", "value": -0.0036785512}, {"date": "2026-01-13", "symbol": "AMZN", "metric": "return", "value": -0.0157017081}, {"date": "2026-01-14", "symbol": "AMZN", "metric": "return", "value": -0.0245259687}, {"date": "2026-01-15", "symbol": "AMZN", "metric": "return", "value": 0.006465244}, {"date": "2026-01-16", "symbol": "AMZN", "metric": "return", "value": 0.003946595}, {"date": "2026-01-20", "symbol": "AMZN", "metric": "return", "value": -0.0339578454}, {"date": "2026-01-21", "symbol": "AMZN", "metric": "return", "value": 0.0013419913}, {"date": "2026-01-22", "symbol": "AMZN", "metric": "return", "value": 0.013099304}, {"date": "2026-01-23", "symbol": "AMZN", "metric": "return", "value": 0.0205684049}, {"date": "2026-01-26", "symbol": "AMZN", "metric": "return", "value": -0.0030941629}, {"date": "2025-07-31", "symbol": "GOOGL", "metric": "return", "value": null}, {"date": "2025-08-01", "symbol": "GOOGL", "metric": "return", "value": -0.0144050104}, {"date": "2025-08-04", "symbol": "GOOGL", "metric": "return", "value": 0.0312433806}, {"date": "2025-08-05", "symbol": "GOOGL", "metric": "return", "value": -0.0018999692}, {"date": "2025-08-06", "symbol": "GOOGL", "metric": "return", "value": 0.0073056542}, {"date": "2025-08-07", "symbol": "GOOGL", "metric": "return", "value": 0.0021962307}, {"date": "2025-08-08", "symbol": "GOOGL", "metric": "return", "value": 0.024921007}, {"date": "2025-08-11", "symbol": "GOOGL", "metric": "return", "value": -0.0020884093}, {"date": "2025-08-12", "symbol": "GOOGL", "metric": "return", "value": 0.0116597738}, {"date": "2025-08-13", "symbol": "GOOGL", "metric": "return", "value": -0.0067970251}, {"date": "2025-08-14", "symbol": "GOOGL", "metric": "return", "value": 0.0048599058}, {"date": "2025-08-15", "symbol": "GOOGL", "metric": "return", "value": 0.0046883482}, {"date": "2025-08-18", "symbol": "GOOGL", "metric": "return", "value": -0.0019157088}, {"date": "2025-08-19", "symbol": "GOOGL", "metric": "return", "value": -0.0094984989}, {"date": "2025-08-20", "symbol": "GOOGL", "metric": "return", "value": -0.0111795687}, {"date": "2025-08-21", "symbol": "GOOGL", "metric": "return", "value": 0.0021606954}, {"date": "2025-08-22", "symbol": "GOOGL", "metric": "return", "value": 0.0317388688}, {"date": "2025-08-25", "symbol": "GOOGL", "metric": "return", "value": 0.0116635078}, {"date": "2025-08-26", "symbol": "GOOGL", "metric": "return", "value": -0.0064850843}, {"date": "2025-08-27", "symbol": "GOOGL", "metric": "return", "value": 0.0016439416}, {"date": "2025-08-28", "symbol": "GOOGL", "metric": "return", "value": 0.0200328249}, {"date": "2025-08-29", "symbol": "GOOGL", "metric": "return", "value": 0.0060101273}, {"date": "2025-09-02", "symbol": "GOOGL", "metric": "return", "value": -0.0073384138}, {"date": "2025-09-03", "symbol": "GOOGL", "metric": "return", "value": 0.0913657473}, {"date": "2025-09-04", "symbol": "GOOGL", "metric": "return", "value": 0.0071211463}, {"date": "2025-09-05", "symbol": "GOOGL", "metric": "return", "value": 0.0116409416}, {"date": "2025-09-08", "symbol": "GOOGL", "metric": "return", "value": -0.003196386}, {"date": "2025-09-09", "symbol": "GOOGL", "metric": "return", "value": 0.0238573688}, {"date": "2025-09-10", "symbol": "GOOGL", "metric": "return", "value": -0.0019209087}, {"date": "2025-09-11", "symbol": "GOOGL", "metric": "return", "value": 0.0050207104}, {"date": "2025-09-12", "symbol": "GOOGL", "metric": "return", "value": 0.0017901003}, {"date": "2025-09-15", "symbol": "GOOGL", "metric": "return", "value": 0.044921875}, {"date": "2025-09-16", "symbol": "GOOGL", "metric": "return", "value": -0.0017896202}, {"date": "2025-09-17", "symbol": "GOOGL", "metric": "return", "value": -0.0064940239}, {"date": "2025-09-18", "symbol": "GOOGL", "metric": "return", "value": 0.0100252637}, {"date": "2025-09-19", "symbol": "GOOGL", "metric": "return", "value": 0.0106404097}, {"date": "2025-09-22", "symbol": "GOOGL", "metric": "return", "value": -0.0086034178}, {"date": "2025-09-23", "symbol": "GOOGL", "metric": "return", "value": -0.0034078301}, {"date": "2025-09-24", "symbol": "GOOGL", "metric": "return", "value": -0.017972167}, {"date": "2025-09-25", "symbol": "GOOGL", "metric": "return", "value": -0.0054660296}, {"date": "2025-09-26", "symbol": "GOOGL", "metric": "return", "value": 0.003053373}, {"date": "2025-09-29", "symbol": "GOOGL", "metric": "return", "value": -0.0101063398}, {"date": "2025-09-30", "symbol": "GOOGL", "metric": "return", "value": -0.0038951987}, {"date": "2025-10-01", "symbol": "GOOGL", "metric": "return", "value": 0.0074092368}, {"date": "2025-10-02", "symbol": "GOOGL", "metric": "return", "value": 0.0032279153}, {"date": "2025-10-03", "symbol": "GOOGL", "metric": "return", "value": -0.0013847595}, {"date": "2025-10-06", "symbol": "GOOGL", "metric": "return", "value": 0.0207186264}, {"date": "2025-10-07", "symbol": "GOOGL", "metric": "return", "value": -0.0186598474}, {"date": "2025-10-08", "symbol": "GOOGL", "metric": "return", "value": -0.0046416938}, {"date": "2025-10-09", "symbol": "GOOGL", "metric": "return", "value": -0.0126401047}, {"date": "2025-10-10", "symbol": "GOOGL", "metric": "return", "value": -0.0205079339}, {"date": "2025-10-13", "symbol": "GOOGL", "metric": "return", "value": 0.0320192877}, {"date": "2025-10-14", "symbol": "GOOGL", "metric": "return", "value": 0.0053280872}, {"date": "2025-10-15", "symbol": "GOOGL", "metric": "return", "value": 0.0227485833}, {"date": "2025-10-16", "symbol": "GOOGL", "metric": "return", "value": 0.0017140352}, {"date": "2025-10-17", "symbol": "GOOGL", "metric": "return", "value": 0.0072821329}, {"date": "2025-10-20", "symbol": "GOOGL", "metric": "return", "value": 0.0128392526}, {"date": "2025-10-21", "symbol": "GOOGL", "metric": "return", "value": -0.0237147983}, {"date": "2025-10-22", "symbol": "GOOGL", "metric": "return", "value": 0.0049141031}, {"date": "2025-10-23", "symbol": "GOOGL", "metric": "return", "value": 0.0054864231}, {"date": "2025-10-24", "symbol": "GOOGL", "metric": "return", "value": 0.0270451939}, {"date": "2025-10-27", "symbol": "GOOGL", "metric": "return", "value": 0.0359576516}, {"date": "2025-10-28", "symbol": "GOOGL", "metric": "return", "value": -0.0066520495}, {"date": "2025-10-29", "symbol": "GOOGL", "metric": "return", "value": 0.0265245043}, {"date": "2025-10-30", "symbol": "GOOGL", "metric": "return", "value": 0.0251831335}, {"date": "2025-10-31", "symbol": "GOOGL", "metric": "return", "value": -0.0010309278}, {"date": "2025-11-03", "symbol": "GOOGL", "metric": "return", "value": 0.0089676524}, {"date": "2025-11-04", "symbol": "GOOGL", "metric": "return", "value": -0.0217613656}, {"date": "2025-11-05", "symbol": "GOOGL", "metric": "return", "value": 0.0243726565}, {"date": "2025-11-06", "symbol": "GOOGL", "metric": "return", "value": 0.0015486414}, {"date": "2025-11-07", "symbol": "GOOGL", "metric": "return", "value": -0.0207689064}, {"date": "2025-11-10", "symbol": "GOOGL", "metric": "return", "value": 0.0404091154}, {"date": "2025-11-11", "symbol": "GOOGL", "metric": "return", "value": 0.0041737091}, {"date": "2025-11-12", "symbol": "GOOGL", "metric": "return", "value": -0.0158010442}, {"date": "2025-11-13", "symbol": "GOOGL", "metric": "return", "value": -0.0283749825}, {"date": "2025-11-14", "symbol": "GOOGL", "metric": "return", "value": -0.0077588994}, {"date": "2025-11-17", "symbol": "GOOGL", "metric": "return", "value": 0.0311334757}, {"date": "2025-11-18", "symbol": "GOOGL", "metric": "return", "value": -0.0025980409}, {"date": "2025-11-19", "symbol": "GOOGL", "metric": "return", "value": 0.0300256961}, {"date": "2025-11-20", "symbol": "GOOGL", "metric": "return", "value": -0.0114824687}, {"date": "2025-11-21", "symbol": "GOOGL", "metric": "return", "value": 0.0352623937}, {"date": "2025-11-24", "symbol": "GOOGL", "metric": "return", "value": 0.0631469979}, {"date": "2025-11-25", "symbol": "GOOGL", "metric": "return", "value": 0.0152652574}, {"date": "2025-11-26", "symbol": "GOOGL", "metric": "return", "value": -0.0107972651}, {"date": "2025-11-28", "symbol": "GOOGL", "metric": "return", "value": 0.0007193345}, {"date": "2025-12-01", "symbol": "GOOGL", "metric": "return", "value": -0.0165327999}, {"date": "2025-12-02", "symbol": "GOOGL", "metric": "return", "value": 0.0029236049}, {"date": "2025-12-03", "symbol": "GOOGL", "metric": "return", "value": 0.012103929}, {"date": "2025-12-04", "symbol": "GOOGL", "metric": "return", "value": -0.0062926554}, {"date": "2025-12-05", "symbol": "GOOGL", "metric": "return", "value": 0.0114993226}, {"date": "2025-12-08", "symbol": "GOOGL", "metric": "return", "value": -0.0228617704}, {"date": "2025-12-09", "symbol": "GOOGL", "metric": "return", "value": 0.0107101874}, {"date": "2025-12-10", "symbol": "GOOGL", "metric": "return", "value": 0.0098713258}, {"date": "2025-12-11", "symbol": "GOOGL", "metric": "return", "value": -0.0242965554}, {"date": "2025-12-12", "symbol": "GOOGL", "metric": "return", "value": -0.0100502513}, {"date": "2025-12-15", "symbol": "GOOGL", "metric": "return", "value": -0.0034595364}, {"date": "2025-12-16", "symbol": "GOOGL", "metric": "return", "value": -0.0053533191}, {"date": "2025-12-17", "symbol": "GOOGL", "metric": "return", "value": -0.0321296931}, {"date": "2025-12-18", "symbol": "GOOGL", "metric": "return", "value": 0.0193448369}, {"date": "2025-12-19", "symbol": "GOOGL", "metric": "return", "value": 0.0155392449}, {"date": "2025-12-22", "symbol": "GOOGL", "metric": "return", "value": 0.0085297565}, {"date": "2025-12-23", "symbol": "GOOGL", "metric": "return", "value": 0.0147524049}, {"date": "2025-12-24", "symbol": "GOOGL", "metric": "return", "value": -0.0008271035}, {"date": "2025-12-26", "symbol": "GOOGL", "metric": "return", "value": -0.0018466045}, {"date": "2025-12-29", "symbol": "GOOGL", "metric": "return", "value": 0.0001594845}, {"date": "2025-12-30", "symbol": "GOOGL", "metric": "return", "value": 0.0009248629}, {"date": "2025-12-31", "symbol": "GOOGL", "metric": "return", "value": -0.0027083001}, {"date": "2026-01-02", "symbol": "GOOGL", "metric": "return", "value": 0.0068690096}, {"date": "2026-01-05", "symbol": "GOOGL", "metric": "return", "value": 0.0044105981}, {"date": "2026-01-06", "symbol": "GOOGL", "metric": "return", "value": -0.0069501485}, {"date": "2026-01-07", "symbol": "GOOGL", "metric": "return", "value": 0.0243048928}, {"date": "2026-01-08", "symbol": "GOOGL", "metric": "return", "value": 0.0107460091}, {"date": "2026-01-09", "symbol": "GOOGL", "metric": "return", "value": 0.0096177483}, {"date": "2026-01-12", "symbol": "GOOGL", "metric": "return", "value": 0.010013087}, {"date": "2026-01-13", "symbol": "GOOGL", "metric": "return", "value": 0.0123847406}, {"date": "2026-01-14", "symbol": "GOOGL", "metric": "return", "value": -0.0003869393}, {"date": "2026-01-15", "symbol": "GOOGL", "metric": "return", "value": -0.0091114817}, {"date": "2026-01-16", "symbol": "GOOGL", "metric": "return", "value": -0.0083538674}, {"date": "2026-01-20", "symbol": "GOOGL", "metric": "return", "value": -0.0242424242}, {"date": "2026-01-21", "symbol": "GOOGL", "metric": "return", "value": 0.0198136646}, {"date": "2026-01-22", "symbol": "GOOGL", "metric": "return", "value": 0.0065777453}, {"date": "2026-01-23", "symbol": "GOOGL", "metric": "return", "value": -0.0078961699}, {"date": "2026-01-26", "symbol": "GOOGL", "metric": "return", "value": 0.0162534687}, {"date": "2025-07-31", "symbol": "META", "metric": "return", "value": null}, {"date": "2025-08-01", "symbol": "META", "metric": "return", "value": -0.0302994989}, {"date": "2025-08-04", "symbol": "META", "metric": "return", "value": 0.0351453484}, {"date": "2025-08-05", "symbol": "META", "metric": "return", "value": -0.0166277525}, {"date": "2025-08-06", "symbol": "META", "metric": "return", "value": 0.0111764089}, {"date": "2025-08-07", "symbol": "META", "metric": "return", "value": -0.0131544808}, {"date": "2025-08-08", "symbol": "META", "metric": "return", "value": 0.0097936111}, {"date": "2025-08-11", "symbol": "META", "metric": "return", "value": -0.0044522554}, {"date": "2025-08-12", "symbol": "META", "metric": "return", "value": 0.0315013142}, {"date": "2025-08-13", "symbol": "META", "metric": "return", "value": -0.0125503917}, {"date": "2025-08-14", "symbol": "META", "metric": "return", "value": 0.0026318492}, {"date": "2025-08-15", "symbol": "META", "metric": "return", "value": 0.0039566181}, {"date": "2025-08-18", "symbol": "META", "metric": "return", "value": -0.0227406066}, {"date": "2025-08-19", "symbol": "META", "metric": "return", "value": -0.0207117967}, {"date": "2025-08-20", "symbol": "META", "metric": "return", "value": -0.0049976012}, {"date": "2025-08-21", "symbol": "META", "metric": "return", "value": -0.0115321252}, {"date": "2025-08-22", "symbol": "META", "metric": "return", "value": 0.0212330623}, {"date": "2025-08-25", "symbol": "META", "metric": "return", "value": -0.0019769926}, {"date": "2025-08-26", "symbol": "META", "metric": "return", "value": 0.0010635752}, {"date": "2025-08-27", "symbol": "META", "metric": "return", "value": -0.0089112593}, {"date": "2025-08-28", "symbol": "META", "metric": "return", "value": 0.004984791}, {"date": "2025-08-29", "symbol": "META", "metric": "return", "value": -0.0165202203}, {"date": "2025-09-02", "symbol": "META", "metric": "return", "value": -0.0048535792}, {"date": "2025-09-03", "symbol": "META", "metric": "return", "value": 0.0026293561}, {"date": "2025-09-04", "symbol": "META", "metric": "return", "value": 0.0157483525}, {"date": "2025-09-05", "symbol": "META", "metric": "return", "value": 0.0050699628}, {"date": "2025-09-08", "symbol": "META", "metric": "return", "value": -0.000199646}, {"date": "2025-09-09", "symbol": "META", "metric": "return", "value": 0.0178119758}, {"date": "2025-09-10", "symbol": "META", "metric": "return", "value": -0.017918803}, {"date": "2025-09-11", "symbol": "META", "metric": "return", "value": -0.0014383507}, {"date": "2025-09-12", "symbol": "META", "metric": "return", "value": 0.0062551682}, {"date": "2025-09-15", "symbol": "META", "metric": "return", "value": 0.0120481928}, {"date": "2025-09-16", "symbol": "META", "metric": "return", "value": 0.0187018702}, {"date": "2025-09-17", "symbol": "META", "metric": "return", "value": -0.0042039494}, {"date": "2025-09-18", "symbol": "META", "metric": "return", "value": 0.0058354958}, {"date": "2025-09-19", "symbol": "META", "metric": "return", "value": -0.0024002362}, {"date": "2025-09-22", "symbol": "META", "metric": "return", "value": -0.016314557}, {"date": "2025-09-23", "symbol": "META", "metric": "return", "value": -0.0127658461}, {"date": "2025-09-24", "symbol": "META", "metric": "return", "value": 0.0069689181}, {"date": "2025-09-25", "symbol": "META", "metric": "return", "value": -0.0154465554}, {"date": "2025-09-26", "symbol": "META", "metric": "return", "value": -0.0068956301}, {"date": "2025-09-29", "symbol": "META", "metric": "return", "value": -0.0004709745}, {"date": "2025-09-30", "symbol": "META", "metric": "return", "value": -0.0121299425}, {"date": "2025-10-01", "symbol": "META", "metric": "return", "value": -0.0231949631}, {"date": "2025-10-02", "symbol": "META", "metric": "return", "value": 0.0135331213}, {"date": "2025-10-03", "symbol": "META", "metric": "return", "value": -0.0226853509}, {"date": "2025-10-06", "symbol": "META", "metric": "return", "value": 0.0071833009}, {"date": "2025-10-07", "symbol": "META", "metric": "return", "value": -0.0036079879}, {"date": "2025-10-08", "symbol": "META", "metric": "return", "value": 0.0066807018}, {"date": "2025-10-09", "symbol": "META", "metric": "return", "value": 0.0218191451}, {"date": "2025-10-10", "symbol": "META", "metric": "return", "value": -0.0384494686}, {"date": "2025-10-13", "symbol": "META", "metric": "return", "value": 0.014743235}, {"date": "2025-10-14", "symbol": "META", "metric": "return", "value": -0.0098584853}, {"date": "2025-10-15", "symbol": "META", "metric": "return", "value": 0.0125693787}, {"date": "2025-10-16", "symbol": "META", "metric": "return", "value": -0.0076432766}, {"date": "2025-10-17", "symbol": "META", "metric": "return", "value": 0.0068166805}, {"date": "2025-10-20", "symbol": "META", "metric": "return", "value": 0.0212608538}, {"date": "2025-10-21", "symbol": "META", "metric": "return", "value": 0.0015036155}, {"date": "2025-10-22", "symbol": "META", "metric": "return", "value": 0.0001910819}, {"date": "2025-10-23", "symbol": "META", "metric": "return", "value": 0.00080512}, {"date": "2025-10-24", "symbol": "META", "metric": "return", "value": 0.0059449141}, {"date": "2025-10-27", "symbol": "META", "metric": "return", "value": 0.0168754066}, {"date": "2025-10-28", "symbol": "META", "metric": "return", "value": 0.0008264353}, {"date": "2025-10-29", "symbol": "META", "metric": "return", "value": 0.0003063277}, {"date": "2025-10-30", "symbol": "META", "metric": "return", "value": -0.1133464703}, {"date": "2025-10-31", "symbol": "META", "metric": "return", "value": -0.0271950505}, {"date": "2025-11-03", "symbol": "META", "metric": "return", "value": -0.016408879}, {"date": "2025-11-04", "symbol": "META", "metric": "return", "value": -0.0162902745}, {"date": "2025-11-05", "symbol": "META", "metric": "return", "value": 0.0137521737}, {"date": "2025-11-06", "symbol": "META", "metric": "return", "value": -0.0267377996}, {"date": "2025-11-07", "symbol": "META", "metric": "return", "value": 0.004462842}, {"date": "2025-11-10", "symbol": "META", "metric": "return", "value": 0.0161783645}, {"date": "2025-11-11", "symbol": "META", "metric": "return", "value": -0.0074138614}, {"date": "2025-11-12", "symbol": "META", "metric": "return", "value": -0.0288235951}, {"date": "2025-11-13", "symbol": "META", "metric": "return", "value": 0.0014461554}, {"date": "2025-11-14", "symbol": "META", "metric": "return", "value": -0.0007056237}, {"date": "2025-11-17", "symbol": "META", "metric": "return", "value": -0.0122175512}, {"date": "2025-11-18", "symbol": "META", "metric": "return", "value": -0.0071818061}, {"date": "2025-11-19", "symbol": "META", "metric": "return", "value": -0.0123241795}, {"date": "2025-11-20", "symbol": "META", "metric": "return", "value": -0.0019835888}, {"date": "2025-11-21", "symbol": "META", "metric": "return", "value": 0.0086635976}, {"date": "2025-11-24", "symbol": "META", "metric": "return", "value": 0.0316284083}, {"date": "2025-11-25", "symbol": "META", "metric": "return", "value": 0.0377928332}, {"date": "2025-11-26", "symbol": "META", "metric": "return", "value": -0.0041057102}, {"date": "2025-11-28", "symbol": "META", "metric": "return", "value": 0.0226350124}, {"date": "2025-12-01", "symbol": "META", "metric": "return", "value": -0.0109202681}, {"date": "2025-12-02", "symbol": "META", "metric": "return", "value": 0.009713438}, {"date": "2025-12-03", "symbol": "META", "metric": "return", "value": -0.0115842059}, {"date": "2025-12-04", "symbol": "META", "metric": "return", "value": 0.0342836578}, {"date": "2025-12-05", "symbol": "META", "metric": "return", "value": 0.0179730404}, {"date": "2025-12-08", "symbol": "META", "metric": "return", "value": -0.0098235915}, {"date": "2025-12-09", "symbol": "META", "metric": "return", "value": -0.0147690091}, {"date": "2025-12-10", "symbol": "META", "metric": "return", "value": -0.0103896895}, {"date": "2025-12-11", "symbol": "META", "metric": "return", "value": 0.0039716749}, {"date": "2025-12-12", "symbol": "META", "metric": "return", "value": -0.0129872121}, {"date": "2025-12-15", "symbol": "META", "metric": "return", "value": 0.0059032794}, {"date": "2025-12-16", "symbol": "META", "metric": "return", "value": 0.014887801}, {"date": "2025-12-17", "symbol": "META", "metric": "return", "value": -0.0116411778}, {"date": "2025-12-18", "symbol": "META", "metric": "return", "value": 0.0230177059}, {"date": "2025-12-19", "symbol": "META", "metric": "return", "value": -0.0085484235}, {"date": "2025-12-22", "symbol": "META", "metric": "return", "value": 0.0041440867}, {"date": "2025-12-23", "symbol": "META", "metric": "return", "value": 0.0052003023}, {"date": "2025-12-24", "symbol": "META", "metric": "return", "value": 0.0039251662}, {"date": "2025-12-26", "symbol": "META", "metric": "return", "value": -0.0063815445}, {"date": "2025-12-29", "symbol": "META", "metric": "return", "value": -0.0069351264}, {"date": "2025-12-30", "symbol": "META", "metric": "return", "value": 0.0110218768}, {"date": "2025-12-31", "symbol": "META", "metric": "return", "value": -0.0087994594}, {"date": "2026-01-02", "symbol": "META", "metric": "return", "value": -0.0146646669}, {"date": "2026-01-05", "symbol": "META", "metric": "return", "value": 0.0128841807}, {"date": "2026-01-06", "symbol": "META", "metric": "return", "value": 0.0027778199}, {"date": "2026-01-07", "symbol": "META", "metric": "return", "value": -0.0180587933}, {"date": "2026-01-08", "symbol": "META", "metric": "return", "value": -0.0040543249}, {"date": "2026-01-09", "symbol": "META", "metric": "return", "value": 0.010834907}, {"date": "2026-01-12", "symbol": "META", "metric": "return", "value": -0.0169815943}, {"date": "2026-01-13", "symbol": "META", "metric": "return", "value": -0.0169478325}, {"date": "2026-01-14", "symbol": "META", "metric": "return", "value": -0.0246715999}, {"date": "2026-01-15", "symbol": "META", "metric": "return", "value": 0.0085781128}, {"date": "2026-01-16", "symbol": "META", "metric": "return", "value": -0.0008859536}, {"date": "2026-01-20", "symbol": "META", "metric": "return", "value": -0.0260056429}, {"date": "2026-01-21", "symbol": "META", "metric": "return", "value": 0.0146328544}, {"date": "2026-01-22", "symbol": "META", "metric": "return", "value": 0.0565616027}, {"date": "2026-01-23", "symbol": "META", "metric": "return", "value": 0.0171857388}, {"date": "2026-01-26", "symbol": "META", "metric": "return", "value": 0.0206448479}, {"date": "2025-07-31", "symbol": "MSFT", "metric": "return", "value": null}, {"date": "2025-08-01", "symbol": "MSFT", "metric": "return", "value": -0.0176062299}, {"date": "2025-08-04", "symbol": "MSFT", "metric": "return", "value": 0.0220001149}, {"date": "2025-08-05", "symbol": "MSFT", "metric": "return", "value": -0.0147257194}, {"date": "2025-08-06", "symbol": "MSFT", "metric": "return", "value": -0.0053242061}, {"date": "2025-08-07", "symbol": "MSFT", "metric": "return", "value": -0.0078187727}, {"date": "2025-08-08", "symbol": "MSFT", "metric": "return", "value": 0.0023120942}, {"date": "2025-08-11", "symbol": "MSFT", "metric": "return", "value": -0.0005190212}, {"date": "2025-08-12", "symbol": "MSFT", "metric": "return", "value": 0.0143093434}, {"date": "2025-08-13", "symbol": "MSFT", "metric": "return", "value": -0.0163639122}, {"date": "2025-08-14", "symbol": "MSFT", "metric": "return", "value": 0.0036626506}, {"date": "2025-08-15", "symbol": "MSFT", "metric": "return", "value": -0.004417555}, {"date": "2025-08-18", "symbol": "MSFT", "metric": "return", "value": -0.0059033472}, {"date": "2025-08-19", "symbol": "MSFT", "metric": "return", "value": -0.0141861864}, {"date": "2025-08-20", "symbol": "MSFT", "metric": "return", "value": -0.0079333832}, {"date": "2025-08-21", "symbol": "MSFT", "metric": "return", "value": -0.0012898105}, {"date": "2025-08-22", "symbol": "MSFT", "metric": "return", "value": 0.0059209219}, {"date": "2025-08-25", "symbol": "MSFT", "metric": "return", "value": -0.0058465671}, {"date": "2025-08-26", "symbol": "MSFT", "metric": "return", "value": -0.0044107129}, {"date": "2025-08-27", "symbol": "MSFT", "metric": "return", "value": 0.0093594093}, {"date": "2025-08-28", "symbol": "MSFT", "metric": "return", "value": 0.0057336049}, {"date": "2025-08-29", "symbol": "MSFT", "metric": "return", "value": -0.0057992097}, {"date": "2025-09-02", "symbol": "MSFT", "metric": "return", "value": -0.0030845889}, {"date": "2025-09-03", "symbol": "MSFT", "metric": "return", "value": 0.0004561863}, {"date": "2025-09-04", "symbol": "MSFT", "metric": "return", "value": 0.0051743621}, {"date": "2025-09-05", "symbol": "MSFT", "metric": "return", "value": -0.0255216757}, {"date": "2025-09-08", "symbol": "MSFT", "metric": "return", "value": 0.0064564443}, {"date": "2025-09-09", "symbol": "MSFT", "metric": "return", "value": 0.0004223058}, {"date": "2025-09-10", "symbol": "MSFT", "metric": "return", "value": 0.0039398569}, {"date": "2025-09-11", "symbol": "MSFT", "metric": "return", "value": 0.0012614128}, {"date": "2025-09-12", "symbol": "MSFT", "metric": "return", "value": 0.0177575139}, {"date": "2025-09-15", "symbol": "MSFT", "metric": "return", "value": 0.0107083211}, {"date": "2025-09-16", "symbol": "MSFT", "metric": "return", "value": -0.0122667185}, {"date": "2025-09-17", "symbol": "MSFT", "metric": "return", "value": 0.0019287921}, {"date": "2025-09-18", "symbol": "MSFT", "metric": "return", "value": -0.0030840552}, {"date": "2025-09-19", "symbol": "MSFT", "metric": "return", "value": 0.0186403941}, {"date": "2025-09-22", "symbol": "MSFT", "metric": "return", "value": -0.0067123182}, {"date": "2025-09-23", "symbol": "MSFT", "metric": "return", "value": -0.0101462541}, {"date": "2025-09-24", "symbol": "MSFT", "metric": "return", "value": 0.001810026}, {"date": "2025-09-25", "symbol": "MSFT", "metric": "return", "value": -0.0061272584}, {"date": "2025-09-26", "symbol": "MSFT", "metric": "return", "value": 0.008733797}, {"date": "2025-09-29", "symbol": "MSFT", "metric": "return", "value": 0.0061508325}, {"date": "2025-09-30", "symbol": "MSFT", "metric": "return", "value": 0.0065026088}, {"date": "2025-10-01", "symbol": "MSFT", "metric": "return", "value": 0.003404387}, {"date": "2025-10-02", "symbol": "MSFT", "metric": "return", "value": -0.0076338821}, {"date": "2025-10-03", "symbol": "MSFT", "metric": "return", "value": 0.0031081239}, {"date": "2025-10-06", "symbol": "MSFT", "metric": "return", "value": 0.0216894535}, {"date": "2025-10-07", "symbol": "MSFT", "metric": "return", "value": -0.0086811479}, {"date": "2025-10-08", "symbol": "MSFT", "metric": "return", "value": 0.0016634799}, {"date": "2025-10-09", "symbol": "MSFT", "metric": "return", "value": -0.0046767328}, {"date": "2025-10-10", "symbol": "MSFT", "metric": "return", "value": -0.0218825515}, {"date": "2025-10-13", "symbol": "MSFT", "metric": "return", "value": 0.0060390973}, {"date": "2025-10-14", "symbol": "MSFT", "metric": "return", "value": -0.0009355084}, {"date": "2025-10-15", "symbol": "MSFT", "metric": "return", "value": -0.0002731121}, {"date": "2025-10-16", "symbol": "MSFT", "metric": "return", "value": -0.0035514274}, {"date": "2025-10-17", "symbol": "MSFT", "metric": "return", "value": 0.0038578283}, {"date": "2025-10-20", "symbol": "MSFT", "metric": "return", "value": 0.0062424408}, {"date": "2025-10-21", "symbol": "MSFT", "metric": "return", "value": 0.0016866349}, {"date": "2025-10-22", "symbol": "MSFT", "metric": "return", "value": 0.0055739418}, {"date": "2025-10-23", "symbol": "MSFT", "metric": "return", "value": 3.84934e-05}, {"date": "2025-10-24", "symbol": "MSFT", "metric": "return", "value": 0.005850767}, {"date": "2025-10-27", "symbol": "MSFT", "metric": "return", "value": 0.0151158563}, {"date": "2025-10-28", "symbol": "MSFT", "metric": "return", "value": 0.0198480765}, {"date": "2025-10-29", "symbol": "MSFT", "metric": "return", "value": -0.0009610764}, {"date": "2025-10-30", "symbol": "MSFT", "metric": "return", "value": -0.0291560292}, {"date": "2025-10-31", "symbol": "MSFT", "metric": "return", "value": -0.0151301498}, {"date": "2025-11-03", "symbol": "MSFT", "metric": "return", "value": -0.0015091711}, {"date": "2025-11-04", "symbol": "MSFT", "metric": "return", "value": -0.0052125722}, {"date": "2025-11-05", "symbol": "MSFT", "metric": "return", "value": -0.0139470557}, {"date": "2025-11-06", "symbol": "MSFT", "metric": "return", "value": -0.0198336659}, {"date": "2025-11-07", "symbol": "MSFT", "metric": "return", "value": -0.0005643227}, {"date": "2025-11-10", "symbol": "MSFT", "metric": "return", "value": 0.0184718385}, {"date": "2025-11-11", "symbol": "MSFT", "metric": "return", "value": 0.0053064053}, {"date": "2025-11-12", "symbol": "MSFT", "metric": "return", "value": 0.0048450948}, {"date": "2025-11-13", "symbol": "MSFT", "metric": "return", "value": -0.0153668241}, {"date": "2025-11-14", "symbol": "MSFT", "metric": "return", "value": 0.0136956305}, {"date": "2025-11-17", "symbol": "MSFT", "metric": "return", "value": -0.0052824853}, {"date": "2025-11-18", "symbol": "MSFT", "metric": "return", "value": -0.0269870099}, {"date": "2025-11-19", "symbol": "MSFT", "metric": "return", "value": -0.013512691}, {"date": "2025-11-20", "symbol": "MSFT", "metric": "return", "value": -0.0160013163}, {"date": "2025-11-21", "symbol": "MSFT", "metric": "return", "value": -0.0131889723}, {"date": "2025-11-24", "symbol": "MSFT", "metric": "return", "value": 0.0039820385}, {"date": "2025-11-25", "symbol": "MSFT", "metric": "return", "value": 0.0063080169}, {"date": "2025-11-26", "symbol": "MSFT", "metric": "return", "value": 0.0178410449}, {"date": "2025-11-28", "symbol": "MSFT", "metric": "return", "value": 0.0134088568}, {"date": "2025-12-01", "symbol": "MSFT", "metric": "return", "value": -0.0107111644}, {"date": "2025-12-02", "symbol": "MSFT", "metric": "return", "value": 0.0066976209}, {"date": "2025-12-03", "symbol": "MSFT", "metric": "return", "value": -0.0250408163}, {"date": "2025-12-04", "symbol": "MSFT", "metric": "return", "value": 0.0065099533}, {"date": "2025-12-05", "symbol": "MSFT", "metric": "return", "value": 0.0048248898}, {"date": "2025-12-08", "symbol": "MSFT", "metric": "return", "value": 0.016267903}, {"date": "2025-12-09", "symbol": "MSFT", "metric": "return", "value": 0.0020365769}, {"date": "2025-12-10", "symbol": "MSFT", "metric": "return", "value": -0.0273566115}, {"date": "2025-12-11", "symbol": "MSFT", "metric": "return", "value": 0.0102599465}, {"date": "2025-12-12", "symbol": "MSFT", "metric": "return", "value": -0.0102178005}, {"date": "2025-12-15", "symbol": "MSFT", "metric": "return", "value": -0.00775291}, {"date": "2025-12-16", "symbol": "MSFT", "metric": "return", "value": 0.0033065162}, {"date": "2025-12-17", "symbol": "MSFT", "metric": "return", "value": -0.0005667625}, {"date": "2025-12-18", "symbol": "MSFT", "metric": "return", "value": 0.0165084432}, {"date": "2025-12-19", "symbol": "MSFT", "metric": "return", "value": 0.0040084301}, {"date": "2025-12-22", "symbol": "MSFT", "metric": "return", "value": -0.0020579519}, {"date": "2025-12-23", "symbol": "MSFT", "metric": "return", "value": 0.0039800379}, {"date": "2025-12-24", "symbol": "MSFT", "metric": "return", "value": 0.0024032043}, {"date": "2025-12-26", "symbol": "MSFT", "metric": "return", "value": -0.0006352199}, {"date": "2025-12-29", "symbol": "MSFT", "metric": "return", "value": -0.0012507433}, {"date": "2025-12-30", "symbol": "MSFT", "metric": "return", "value": 0.0007801273}, {"date": "2025-12-31", "symbol": "MSFT", "metric": "return", "value": -0.0079182736}, {"date": "2026-01-02", "symbol": "MSFT", "metric": "return", "value": -0.022083454}, {"date": "2026-01-05", "symbol": "MSFT", "metric": "return", "value": -0.000190299}, {"date": "2026-01-06", "symbol": "MSFT", "metric": "return", "value": 0.0119699693}, {"date": "2026-01-07", "symbol": "MSFT", "metric": "return", "value": 0.0103655096}, {"date": "2026-01-08", "symbol": "MSFT", "metric": "return", "value": -0.0110865204}, {"date": "2026-01-09", "symbol": "MSFT", "metric": "return", "value": 0.0024471356}, {"date": "2026-01-12", "symbol": "MSFT", "metric": "return", "value": -0.0043815724}, {"date": "2026-01-13", "symbol": "MSFT", "metric": "return", "value": -0.0136426506}, {"date": "2026-01-14", "symbol": "MSFT", "metric": "return", "value": -0.0239870822}, {"date": "2026-01-15", "symbol": "MSFT", "metric": "return", "value": -0.005921024}, {"date": "2026-01-16", "symbol": "MSFT", "metric": "return", "value": 0.0070074016}, {"date": "2026-01-20", "symbol": "MSFT", "metric": "return", "value": -0.0116122298}, {"date": "2026-01-21", "symbol": "MSFT", "metric": "return", "value": -0.0229032826}, {"date": "2026-01-22", "symbol": "MSFT", "metric": "return", "value": 0.0158294116}, {"date": "2026-01-23", "symbol": "MSFT", "metric": "return", "value": 0.032827947}, {"date": "2026-01-26", "symbol": "MSFT", "metric": "return", "value": 0.0092928426}, {"date": "2025-07-31", "symbol": "NVDA", "metric": "return", "value": null}, {"date": "2025-08-01", "symbol": "NVDA", "metric": "return", "value": -0.0233342705}, {"date": "2025-08-04", "symbol": "NVDA", "metric": "return", "value": 0.036154289}, {"date": "2025-08-05", "symbol": "NVDA", "metric": "return", "value": -0.0096677409}, {"date": "2025-08-06", "symbol": "NVDA", "metric": "return", "value": 0.006508079}, {"date": "2025-08-07", "symbol": "NVDA", "metric": "return", "value": 0.0075250836}, {"date": "2025-08-08", "symbol": "NVDA", "metric": "return", "value": 0.0106777317}, {"date": "2025-08-11", "symbol": "NVDA", "metric": "return", "value": -0.0035033939}, {"date": "2025-08-12", "symbol": "NVDA", "metric": "return", "value": 0.006042628}, {"date": "2025-08-13", "symbol": "NVDA", "metric": "return", "value": -0.0085726766}, {"date": "2025-08-14", "symbol": "NVDA", "metric": "return", "value": 0.0023682326}, {"date": "2025-08-15", "symbol": "NVDA", "metric": "return", "value": -0.0086263736}, {"date": "2025-08-18", "symbol": "NVDA", "metric": "return", "value": 0.0086460123}, {"date": "2025-08-19", "symbol": "NVDA", "metric": "return", "value": -0.0350019232}, {"date": "2025-08-20", "symbol": "NVDA", "metric": "return", "value": -0.0013665869}, {"date": "2025-08-21", "symbol": "NVDA", "metric": "return", "value": -0.0023947999}, {"date": "2025-08-22", "symbol": "NVDA", "metric": "return", "value": 0.0172039323}, {"date": "2025-08-25", "symbol": "NVDA", "metric": "return", "value": 0.0102264427}, {"date": "2025-08-26", "symbol": "NVDA", "metric": "return", "value": 0.0109016074}, {"date": "2025-08-27", "symbol": "NVDA", "metric": "return", "value": -0.0009353508}, {"date": "2025-08-28", "symbol": "NVDA", "metric": "return", "value": -0.0078753167}, {"date": "2025-08-29", "symbol": "NVDA", "metric": "return", "value": -0.0332500694}, {"date": "2025-09-02", "symbol": "NVDA", "metric": "return", "value": -0.0195222784}, {"date": "2025-09-03", "symbol": "NVDA", "metric": "return", "value": -0.0009369876}, {"date": "2025-09-04", "symbol": "NVDA", "metric": "return", "value": 0.0060961313}, {"date": "2025-09-05", "symbol": "NVDA", "metric": "return", "value": -0.0270333256}, {"date": "2025-09-08", "symbol": "NVDA", "metric": "return", "value": 0.0077245509}, {"date": "2025-09-09", "symbol": "NVDA", "metric": "return", "value": 0.0145582031}, {"date": "2025-09-10", "symbol": "NVDA", "metric": "return", "value": 0.0384795596}, {"date": "2025-09-11", "symbol": "NVDA", "metric": "return", "value": -0.000845976}, {"date": "2025-09-12", "symbol": "NVDA", "metric": "return", "value": 0.0036689998}, {"date": "2025-09-15", "symbol": "NVDA", "metric": "return", "value": -0.0003936786}, {"date": "2025-09-16", "symbol": "NVDA", "metric": "return", "value": -0.0161471813}, {"date": "2025-09-17", "symbol": "NVDA", "metric": "return", "value": -0.02624807}, {"date": "2025-09-18", "symbol": "NVDA", "metric": "return", "value": 0.0349424477}, {"date": "2025-09-19", "symbol": "NVDA", "metric": "return", "value": 0.0024399932}, {"date": "2025-09-22", "symbol": "NVDA", "metric": "return", "value": 0.0392845013}, {"date": "2025-09-23", "symbol": "NVDA", "metric": "return", "value": -0.0282135076}, {"date": "2025-09-24", "symbol": "NVDA", "metric": "return", "value": -0.0081829391}, {"date": "2025-09-25", "symbol": "NVDA", "metric": "return", "value": 0.0040687161}, {"date": "2025-09-26", "symbol": "NVDA", "metric": "return", "value": 0.0028140477}, {"date": "2025-09-29", "symbol": "NVDA", "metric": "return", "value": 0.0205410259}, {"date": "2025-09-30", "symbol": "NVDA", "metric": "return", "value": 0.0260118786}, {"date": "2025-10-01", "symbol": "NVDA", "metric": "return", "value": 0.0035375462}, {"date": "2025-10-02", "symbol": "NVDA", "metric": "return", "value": 0.0088126903}, {"date": "2025-10-03", "symbol": "NVDA", "metric": "return", "value": -0.0067238458}, {"date": "2025-10-06", "symbol": "NVDA", "metric": "return", "value": -0.0110868291}, {"date": "2025-10-07", "symbol": "NVDA", "metric": "return", "value": -0.0026949819}, {"date": "2025-10-08", "symbol": "NVDA", "metric": "return", "value": 0.021996433}, {"date": "2025-10-09", "symbol": "NVDA", "metric": "return", "value": 0.0182971973}, {"date": "2025-10-10", "symbol": "NVDA", "metric": "return", "value": -0.0488678853}, {"date": "2025-10-13", "symbol": "NVDA", "metric": "return", "value": 0.0281736282}, {"date": "2025-10-14", "symbol": "NVDA", "metric": "return", "value": -0.0440231533}, {"date": "2025-10-15", "symbol": "NVDA", "metric": "return", "value": -0.0011109877}, {"date": "2025-10-16", "symbol": "NVDA", "metric": "return", "value": 0.011011011}, {"date": "2025-10-17", "symbol": "NVDA", "metric": "return", "value": 0.0077557756}, {"date": "2025-10-20", "symbol": "NVDA", "metric": "return", "value": -0.0031657661}, {"date": "2025-10-21", "symbol": "NVDA", "metric": "return", "value": -0.0081038165}, {"date": "2025-10-22", "symbol": "NVDA", "metric": "return", "value": -0.0048578526}, {"date": "2025-10-23", "symbol": "NVDA", "metric": "return", "value": 0.0104288012}, {"date": "2025-10-24", "symbol": "NVDA", "metric": "return", "value": 0.0225089212}, {"date": "2025-10-27", "symbol": "NVDA", "metric": "return", "value": 0.0280805369}, {"date": "2025-10-28", "symbol": "NVDA", "metric": "return", "value": 0.0498224358}, {"date": "2025-10-29", "symbol": "NVDA", "metric": "return", "value": 0.0298975226}, {"date": "2025-10-30", "symbol": "NVDA", "metric": "return", "value": -0.020045404}, {"date": "2025-10-31", "symbol": "NVDA", "metric": "return", "value": -0.0019716088}, {"date": "2025-11-03", "symbol": "NVDA", "metric": "return", "value": 0.0216811537}, {"date": "2025-11-04", "symbol": "NVDA", "metric": "return", "value": -0.0395900807}, {"date": "2025-11-05", "symbol": "NVDA", "metric": "return", "value": -0.017515603}, {"date": "2025-11-06", "symbol": "NVDA", "metric": "return", "value": -0.0365266393}, {"date": "2025-11-07", "symbol": "NVDA", "metric": "return", "value": 0.0003722018}, {"date": "2025-11-10", "symbol": "NVDA", "metric": "return", "value": 0.0579355799}, {"date": "2025-11-11", "symbol": "NVDA", "metric": "return", "value": -0.0295920418}, {"date": "2025-11-12", "symbol": "NVDA", "metric": "return", "value": 0.0033134869}, {"date": "2025-11-13", "symbol": "NVDA", "metric": "return", "value": -0.0358119614}, {"date": "2025-11-14", "symbol": "NVDA", "metric": "return", "value": 0.0177147444}, {"date": "2025-11-17", "symbol": "NVDA", "metric": "return", "value": -0.0187736643}, {"date": "2025-11-18", "symbol": "NVDA", "metric": "return", "value": -0.0280829626}, {"date": "2025-11-19", "symbol": "NVDA", "metric": "return", "value": 0.0284532672}, {"date": "2025-11-20", "symbol": "NVDA", "metric": "return", "value": -0.0315264597}, {"date": "2025-11-21", "symbol": "NVDA", "metric": "return", "value": -0.0097436749}, {"date": "2025-11-24", "symbol": "NVDA", "metric": "return", "value": 0.0205176944}, {"date": "2025-11-25", "symbol": "NVDA", "metric": "return", "value": -0.0259121288}, {"date": "2025-11-26", "symbol": "NVDA", "metric": "return", "value": 0.0137225128}, {"date": "2025-11-28", "symbol": "NVDA", "metric": "return", "value": -0.0180859917}, {"date": "2025-12-01", "symbol": "NVDA", "metric": "return", "value": 0.0164981072}, {"date": "2025-12-02", "symbol": "NVDA", "metric": "return", "value": 0.0085598355}, {"date": "2025-12-03", "symbol": "NVDA", "metric": "return", "value": -0.0103058694}, {"date": "2025-12-04", "symbol": "NVDA", "metric": "return", "value": 0.0211604856}, {"date": "2025-12-05", "symbol": "NVDA", "metric": "return", "value": -0.0052895627}, {"date": "2025-12-08", "symbol": "NVDA", "metric": "return", "value": 0.0172139685}, {"date": "2025-12-09", "symbol": "NVDA", "metric": "return", "value": -0.0031258421}, {"date": "2025-12-10", "symbol": "NVDA", "metric": "return", "value": -0.0064334757}, {"date": "2025-12-11", "symbol": "NVDA", "metric": "return", "value": -0.0155076722}, {"date": "2025-12-12", "symbol": "NVDA", "metric": "return", "value": -0.0326645664}, {"date": "2025-12-15", "symbol": "NVDA", "metric": "return", "value": 0.0072563136}, {"date": "2025-12-16", "symbol": "NVDA", "metric": "return", "value": 0.0081116342}, {"date": "2025-12-17", "symbol": "NVDA", "metric": "return", "value": -0.0381498987}, {"date": "2025-12-18", "symbol": "NVDA", "metric": "return", "value": 0.0187200187}, {"date": "2025-12-19", "symbol": "NVDA", "metric": "return", "value": 0.0393361663}, {"date": "2025-12-22", "symbol": "NVDA", "metric": "return", "value": 0.0149179513}, {"date": "2025-12-23", "symbol": "NVDA", "metric": "return", "value": 0.0300506288}, {"date": "2025-12-24", "symbol": "NVDA", "metric": "return", "value": -0.0031710798}, {"date": "2025-12-26", "symbol": "NVDA", "metric": "return", "value": 0.010179736}, {"date": "2025-12-29", "symbol": "NVDA", "metric": "return", "value": -0.0121240749}, {"date": "2025-12-30", "symbol": "NVDA", "metric": "return", "value": -0.0036127935}, {"date": "2025-12-31", "symbol": "NVDA", "metric": "return", "value": -0.0055454836}, {"date": "2026-01-02", "symbol": "NVDA", "metric": "return", "value": 0.0126005362}, {"date": "2026-01-05", "symbol": "NVDA", "metric": "return", "value": -0.0038655017}, {"date": "2026-01-06", "symbol": "NVDA", "metric": "return", "value": -0.0046778652}, {"date": "2026-01-07", "symbol": "NVDA", "metric": "return", "value": 0.0099871822}, {"date": "2026-01-08", "symbol": "NVDA", "metric": "return", "value": -0.0215218656}, {"date": "2026-01-09", "symbol": "NVDA", "metric": "return", "value": -0.0009727626}, {"date": "2026-01-12", "symbol": "NVDA", "metric": "return", "value": 0.0004327599}, {"date": "2026-01-13", "symbol": "NVDA", "metric": "return", "value": 0.0047042284}, {"date": "2026-01-14", "symbol": "NVDA", "metric": "return", "value": -0.0143695172}, {"date": "2026-01-15", "symbol": "NVDA", "metric": "return", "value": 0.021349787}, {"date": "2026-01-16", "symbol": "NVDA", "metric": "return", "value": -0.0043838546}, {"date": "2026-01-20", "symbol": "NVDA", "metric": "return", "value": -0.0438167857}, {"date": "2026-01-21", "symbol": "NVDA", "metric": "return", "value": 0.0294827877}, {"date": "2026-01-22", "symbol": "NVDA", "metric": "return", "value": 0.0082915121}, {"date": "2026-01-23", "symbol": "NVDA", "metric": "return", "value": 0.0153105388}, {"date": "2026-01-26", "symbol": "NVDA", "metric": "return", "value": -0.0063942026}, {"date": "2025-07-31", "symbol": "AAPL", "metric": "vol20", "value": null}, {"date": "2025-08-01", "symbol": "AAPL", "metric": "vol20", "value": null}, {"date": "2025-08-04", "symbol": "AAPL", "metric": "vol20", "value": 0.0210799972}, {"date": "2025-08-05", "symbol": "AAPL", "metric": "vol20", "value": 0.0156022108}, {"date": "2025-08-06", "symbol": "AAPL", "metric": "vol20", "value": 0.0318384462}, {"date": "2025-08-07", "symbol": "AAPL", "metric": "vol20", "value": 0.0296975929}, {"date": "2025-08-08", "symbol": "AAPL", "metric": "vol20", "value": 0.0292969959}, {"date": "2025-08-11", "symbol": "AAPL", "metric": "vol20", "value": 0.0284244991}, {"date": "2025-08-12", "symbol": "AAPL", "metric": "vol20", "value": 0.0263320844}, {"date": "2025-08-13", "symbol": "AAPL", "metric": "vol20", "value": 0.0246495155}, {"date": "2025-08-14", "symbol": "AAPL", "metric": "vol20", "value": 0.0237732587}, {"date": "2025-08-15", "symbol": "AAPL", "metric": "vol20", "value": 0.0231262644}, {"date": "2025-08-18", "symbol": "AAPL", "metric": "vol20", "value": 0.0223855889}, {"date": "2025-08-19", "symbol": "AAPL", "metric": "vol20", "value": 0.0216357948}, {"date": "2025-08-20", "symbol": "AAPL", "metric": "vol20", "value": 0.0221083278}, {"date": "2025-08-21", "symbol": "AAPL", "metric": "vol20", "value": 0.0215036722}, {"date": "2025-08-22", "symbol": "AAPL", "metric": "vol20", "value": 0.0208497906}, {"date": "2025-08-25", "symbol": "AAPL", "metric": "vol20", "value": 0.0202984159}, {"date": "2025-08-26", "symbol": "AAPL", "metric": "vol20", "value": 0.0197137526}, {"date": "2025-08-27", "symbol": "AAPL", "metric": "vol20", "value": 0.019158893}, {"date": "2025-08-28", "symbol": "AAPL", "metric": "vol20", "value": 0.0186614949}, {"date": "2025-08-29", "symbol": "AAPL", "metric": "vol20", "value": 0.0173087321}, {"date": "2025-09-02", "symbol": "AAPL", "metric": "vol20", "value": 0.0177442141}, {"date": "2025-09-03", "symbol": "AAPL", "metric": "vol20", "value": 0.0189724375}, {"date": "2025-09-04", "symbol": "AAPL", "metric": "vol20", "value": 0.0161089184}, {"date": "2025-09-05", "symbol": "AAPL", "metric": "vol20", "value": 0.0149679631}, {"date": "2025-09-08", "symbol": "AAPL", "metric": "vol20", "value": 0.0122250064}, {"date": "2025-09-09", "symbol": "AAPL", "metric": "vol20", "value": 0.0125946419}, {"date": "2025-09-10", "symbol": "AAPL", "metric": "vol20", "value": 0.014478458}, {"date": "2025-09-11", "symbol": "AAPL", "metric": "vol20", "value": 0.0143812273}, {"date": "2025-09-12", "symbol": "AAPL", "metric": "vol20", "value": 0.0149316116}, {"date": "2025-09-15", "symbol": "AAPL", "metric": "vol20", "value": 0.0150631274}, {"date": "2025-09-16", "symbol": "AAPL", "metric": "vol20", "value": 0.0150671567}, {"date": "2025-09-17", "symbol": "AAPL", "metric": "vol20", "value": 0.0150544964}, {"date": "2025-09-18", "symbol": "AAPL", "metric": "vol20", "value": 0.0142692225}, {"date": "2025-09-19", "symbol": "AAPL", "metric": "vol20", "value": 0.0155684321}, {"date": "2025-09-22", "symbol": "AAPL", "metric": "vol20", "value": 0.0177418124}, {"date": "2025-09-23", "symbol": "AAPL", "metric": "vol20", "value": 0.0178598706}, {"date": "2025-09-24", "symbol": "AAPL", "metric": "vol20", "value": 0.0181097338}, {"date": "2025-09-25", "symbol": "AAPL", "metric": "vol20", "value": 0.0183456145}, {"date": "2025-09-26", "symbol": "AAPL", "metric": "vol20", "value": 0.0184901925}, {"date": "2025-09-29", "symbol": "AAPL", "metric": "vol20", "value": 0.0185399808}, {"date": "2025-09-30", "symbol": "AAPL", "metric": "vol20", "value": 0.0182232027}, {"date": "2025-10-01", "symbol": "AAPL", "metric": "vol20", "value": 0.0165108643}, {"date": "2025-10-02", "symbol": "AAPL", "metric": "vol20", "value": 0.0165192997}, {"date": "2025-10-03", "symbol": "AAPL", "metric": "vol20", "value": 0.0164926212}, {"date": "2025-10-06", "symbol": "AAPL", "metric": "vol20", "value": 0.0164140515}, {"date": "2025-10-07", "symbol": "AAPL", "metric": "vol20", "value": 0.0158589488}, {"date": "2025-10-08", "symbol": "AAPL", "metric": "vol20", "value": 0.0132711511}, {"date": "2025-10-09", "symbol": "AAPL", "metric": "vol20", "value": 0.0140161519}, {"date": "2025-10-10", "symbol": "AAPL", "metric": "vol20", "value": 0.016235928}, {"date": "2025-10-13", "symbol": "AAPL", "metric": "vol20", "value": 0.0161968039}, {"date": "2025-10-14", "symbol": "AAPL", "metric": "vol20", "value": 0.0161775575}, {"date": "2025-10-15", "symbol": "AAPL", "metric": "vol20", "value": 0.0162027982}, {"date": "2025-10-16", "symbol": "AAPL", "metric": "vol20", "value": 0.0162817348}, {"date": "2025-10-17", "symbol": "AAPL", "metric": "vol20", "value": 0.0152853784}, {"date": "2025-10-20", "symbol": "AAPL", "metric": "vol20", "value": 0.0147741587}, {"date": "2025-10-21", "symbol": "AAPL", "metric": "vol20", "value": 0.0146614838}, {"date": "2025-10-22", "symbol": "AAPL", "metric": "vol20", "value": 0.0150626646}, {"date": "2025-10-23", "symbol": "AAPL", "metric": "vol20", "value": 0.0145649028}, {"date": "2025-10-24", "symbol": "AAPL", "metric": "vol20", "value": 0.014721624}, {"date": "2025-10-27", "symbol": "AAPL", "metric": "vol20", "value": 0.0153939039}, {"date": "2025-10-28", "symbol": "AAPL", "metric": "vol20", "value": 0.0153944781}, {"date": "2025-10-29", "symbol": "AAPL", "metric": "vol20", "value": 0.0153943349}, {"date": "2025-10-30", "symbol": "AAPL", "metric": "vol20", "value": 0.0153909452}, {"date": "2025-10-31", "symbol": "AAPL", "metric": "vol20", "value": 0.0154604043}, {"date": "2025-11-03", "symbol": "AAPL", "metric": "vol20", "value": 0.0154534538}, {"date": "2025-11-04", "symbol": "AAPL", "metric": "vol20", "value": 0.0154358387}, {"date": "2025-11-05", "symbol": "AAPL", "metric": "vol20", "value": 0.0154215931}, {"date": "2025-11-06", "symbol": "AAPL", "metric": "vol20", "value": 0.0148660004}, {"date": "2025-11-07", "symbol": "AAPL", "metric": "vol20", "value": 0.0121434433}, {"date": "2025-11-10", "symbol": "AAPL", "metric": "vol20", "value": 0.0120827714}, {"date": "2025-11-11", "symbol": "AAPL", "metric": "vol20", "value": 0.0126373055}, {"date": "2025-11-12", "symbol": "AAPL", "metric": "vol20", "value": 0.0129085142}, {"date": "2025-11-13", "symbol": "AAPL", "metric": "vol20", "value": 0.0126830063}, {"date": "2025-11-14", "symbol": "AAPL", "metric": "vol20", "value": 0.0122924408}, {"date": "2025-11-17", "symbol": "AAPL", "metric": "vol20", "value": 0.0100956311}, {"date": "2025-11-18", "symbol": "AAPL", "metric": "vol20", "value": 0.0100962372}, {"date": "2025-11-19", "symbol": "AAPL", "metric": "vol20", "value": 0.0092390433}, {"date": "2025-11-20", "symbol": "AAPL", "metric": "vol20", "value": 0.0095156398}, {"date": "2025-11-21", "symbol": "AAPL", "metric": "vol20", "value": 0.010077339}, {"date": "2025-11-24", "symbol": "AAPL", "metric": "vol20", "value": 0.0094512291}, {"date": "2025-11-25", "symbol": "AAPL", "metric": "vol20", "value": 0.0094647134}, {"date": "2025-11-26", "symbol": "AAPL", "metric": "vol20", "value": 0.0094624118}, {"date": "2025-11-28", "symbol": "AAPL", "metric": "vol20", "value": 0.009426076}, {"date": "2025-12-01", "symbol": "AAPL", "metric": "vol20", "value": 0.0098217825}, {"date": "2025-12-02", "symbol": "AAPL", "metric": "vol20", "value": 0.0098405634}, {"date": "2025-12-03", "symbol": "AAPL", "metric": "vol20", "value": 0.0101052594}, {"date": "2025-12-04", "symbol": "AAPL", "metric": "vol20", "value": 0.0106273855}, {"date": "2025-12-05", "symbol": "AAPL", "metric": "vol20", "value": 0.0107883965}, {"date": "2025-12-08", "symbol": "AAPL", "metric": "vol20", "value": 0.0107421753}, {"date": "2025-12-09", "symbol": "AAPL", "metric": "vol20", "value": 0.010764931}, {"date": "2025-12-10", "symbol": "AAPL", "metric": "vol20", "value": 0.009740394}, {"date": "2025-12-11", "symbol": "AAPL", "metric": "vol20", "value": 0.0096304914}, {"date": "2025-12-12", "symbol": "AAPL", "metric": "vol20", "value": 0.0096083899}, {"date": "2025-12-15", "symbol": "AAPL", "metric": "vol20", "value": 0.0102407369}, {"date": "2025-12-16", "symbol": "AAPL", "metric": "vol20", "value": 0.0092659434}, {"date": "2025-12-17", "symbol": "AAPL", "metric": "vol20", "value": 0.0096115959}, {"date": "2025-12-18", "symbol": "AAPL", "metric": "vol20", "value": 0.0095805735}, {"date": "2025-12-19", "symbol": "AAPL", "metric": "vol20", "value": 0.0093741273}, {"date": "2025-12-22", "symbol": "AAPL", "metric": "vol20", "value": 0.0086441229}, {"date": "2025-12-23", "symbol": "AAPL", "metric": "vol20", "value": 0.0078544144}, {"date": "2025-12-24", "symbol": "AAPL", "metric": "vol20", "value": 0.0079066038}, {"date": "2025-12-26", "symbol": "AAPL", "metric": "vol20", "value": 0.0078842909}, {"date": "2025-12-29", "symbol": "AAPL", "metric": "vol20", "value": 0.007798231}, {"date": "2025-12-30", "symbol": "AAPL", "metric": "vol20", "value": 0.0068132592}, {"date": "2025-12-31", "symbol": "AAPL", "metric": "vol20", "value": 0.0061399559}, {"date": "2026-01-02", "symbol": "AAPL", "metric": "vol20", "value": 0.006047322}, {"date": "2026-01-05", "symbol": "AAPL", "metric": "vol20", "value": 0.0062017791}, {"date": "2026-01-06", "symbol": "AAPL", "metric": "vol20", "value": 0.0070993915}, {"date": "2026-01-07", "symbol": "AAPL", "metric": "vol20", "value": 0.0071779622}, {"date": "2026-01-08", "symbol": "AAPL", "metric": "vol20", "value": 0.007186076}, {"date": "2026-01-09", "symbol": "AAPL", "metric": "vol20", "value": 0.0069519778}, {"date": "2026-01-12", "symbol": "AAPL", "metric": "vol20", "value": 0.0071238425}, {"date": "2026-01-13", "symbol": "AAPL", "metric": "vol20", "value": 0.0072070174}, {"date": "2026-01-14", "symbol": "AAPL", "metric": "vol20", "value": 0.0066584659}, {"date": "2026-01-15", "symbol": "AAPL", "metric": "vol20", "value": 0.0066323481}, {"date": "2026-01-16", "symbol": "AAPL", "metric": "vol20", "value": 0.0066489542}, {"date": "2026-01-20", "symbol": "AAPL", "metric": "vol20", "value": 0.0095923262}, {"date": "2026-01-21", "symbol": "AAPL", "metric": "vol20", "value": 0.0095088839}, {"date": "2026-01-22", "symbol": "AAPL", "metric": "vol20", "value": 0.0095860108}, {"date": "2026-01-23", "symbol": "AAPL", "metric": "vol20", "value": 0.0093590396}, {"date": "2026-01-26", "symbol": "AAPL", "metric": "vol20", "value": 0.0119528553}, {"date": "2025-07-31", "symbol": "AMZN", "metric": "vol20", "value": null}, {"date": "2025-08-01", "symbol": "AMZN", "metric": "vol20", "value": null}, {"date": "2025-08-04", "symbol": "AMZN", "metric": "vol20", "value": 0.0482676594}, {"date": "2025-08-05", "symbol": "AMZN", "metric": "vol20", "value": 0.0480120663}, {"date": "2025-08-06", "symbol": "AMZN", "metric": "vol20", "value": 0.0522594415}, {"date": "2025-08-07", "symbol": "AMZN", "metric": "vol20", "value": 0.0457843664}, {"date": "2025-08-08", "symbol": "AMZN", "metric": "vol20", "value": 0.041042654}, {"date": "2025-08-11", "symbol": "AMZN", "metric": "vol20", "value": 0.0374700306}, {"date": "2025-08-12", "symbol": "AMZN", "metric": "vol20", "value": 0.0348100356}, {"date": "2025-08-13", "symbol": "AMZN", "metric": "vol20", "value": 0.0332586331}, {"date": "2025-08-14", "symbol": "AMZN", "metric": "vol20", "value": 0.0330172735}, {"date": "2025-08-15", "symbol": "AMZN", "metric": "vol20", "value": 0.0313245489}, {"date": "2025-08-18", "symbol": "AMZN", "metric": "vol20", "value": 0.0298772045}, {"date": "2025-08-19", "symbol": "AMZN", "metric": "vol20", "value": 0.0288872834}, {"date": "2025-08-20", "symbol": "AMZN", "metric": "vol20", "value": 0.0281143876}, {"date": "2025-08-21", "symbol": "AMZN", "metric": "vol20", "value": 0.0271286301}, {"date": "2025-08-22", "symbol": "AMZN", "metric": "vol20", "value": 0.027571114}, {"date": "2025-08-25", "symbol": "AMZN", "metric": "vol20", "value": 0.026704735}, {"date": "2025-08-26", "symbol": "AMZN", "metric": "vol20", "value": 0.0259301062}, {"date": "2025-08-27", "symbol": "AMZN", "metric": "vol20", "value": 0.0252074985}, {"date": "2025-08-28", "symbol": "AMZN", "metric": "vol20", "value": 0.0246730342}, {"date": "2025-08-29", "symbol": "AMZN", "metric": "vol20", "value": 0.0156152879}, {"date": "2025-09-02", "symbol": "AMZN", "metric": "vol20", "value": 0.015711475}, {"date": "2025-09-03", "symbol": "AMZN", "metric": "vol20", "value": 0.0156329023}, {"date": "2025-09-04", "symbol": "AMZN", "metric": "vol20", "value": 0.0159955681}, {"date": "2025-09-05", "symbol": "AMZN", "metric": "vol20", "value": 0.0164520388}, {"date": "2025-09-08", "symbol": "AMZN", "metric": "vol20", "value": 0.0166687198}, {"date": "2025-09-09", "symbol": "AMZN", "metric": "vol20", "value": 0.0165935691}, {"date": "2025-09-10", "symbol": "AMZN", "metric": "vol20", "value": 0.0185464789}, {"date": "2025-09-11", "symbol": "AMZN", "metric": "vol20", "value": 0.0183499306}, {"date": "2025-09-12", "symbol": "AMZN", "metric": "vol20", "value": 0.017279889}, {"date": "2025-09-15", "symbol": "AMZN", "metric": "vol20", "value": 0.0175969054}, {"date": "2025-09-16", "symbol": "AMZN", "metric": "vol20", "value": 0.0177688015}, {"date": "2025-09-17", "symbol": "AMZN", "metric": "vol20", "value": 0.0175815291}, {"date": "2025-09-18", "symbol": "AMZN", "metric": "vol20", "value": 0.0170006683}, {"date": "2025-09-19", "symbol": "AMZN", "metric": "vol20", "value": 0.0168365287}, {"date": "2025-09-22", "symbol": "AMZN", "metric": "vol20", "value": 0.0158921011}, {"date": "2025-09-23", "symbol": "AMZN", "metric": "vol20", "value": 0.0172666196}, {"date": "2025-09-24", "symbol": "AMZN", "metric": "vol20", "value": 0.0172293111}, {"date": "2025-09-25", "symbol": "AMZN", "metric": "vol20", "value": 0.0172888387}, {"date": "2025-09-26", "symbol": "AMZN", "metric": "vol20", "value": 0.0171706697}, {"date": "2025-09-29", "symbol": "AMZN", "metric": "vol20", "value": 0.0172886659}, {"date": "2025-09-30", "symbol": "AMZN", "metric": "vol20", "value": 0.0171239982}, {"date": "2025-10-01", "symbol": "AMZN", "metric": "vol20", "value": 0.0171536225}, {"date": "2025-10-02", "symbol": "AMZN", "metric": "vol20", "value": 0.013922472}, {"date": "2025-10-03", "symbol": "AMZN", "metric": "vol20", "value": 0.013874161}, {"date": "2025-10-06", "symbol": "AMZN", "metric": "vol20", "value": 0.0134109831}, {"date": "2025-10-07", "symbol": "AMZN", "metric": "vol20", "value": 0.0131554197}, {"date": "2025-10-08", "symbol": "AMZN", "metric": "vol20", "value": 0.0118051}, {"date": "2025-10-09", "symbol": "AMZN", "metric": "vol20", "value": 0.0121160109}, {"date": "2025-10-10", "symbol": "AMZN", "metric": "vol20", "value": 0.0163788617}, {"date": "2025-10-13", "symbol": "AMZN", "metric": "vol20", "value": 0.0165372881}, {"date": "2025-10-14", "symbol": "AMZN", "metric": "vol20", "value": 0.0165031748}, {"date": "2025-10-15", "symbol": "AMZN", "metric": "vol20", "value": 0.0164301087}, {"date": "2025-10-16", "symbol": "AMZN", "metric": "vol20", "value": 0.0164285099}, {"date": "2025-10-17", "symbol": "AMZN", "metric": "vol20", "value": 0.0164030394}, {"date": "2025-10-20", "symbol": "AMZN", "metric": "vol20", "value": 0.0167104552}, {"date": "2025-10-21", "symbol": "AMZN", "metric": "vol20", "value": 0.0164598707}, {"date": "2025-10-22", "symbol": "AMZN", "metric": "vol20", "value": 0.0169845074}, {"date": "2025-10-23", "symbol": "AMZN", "metric": "vol20", "value": 0.0171536773}, {"date": "2025-10-24", "symbol": "AMZN", "metric": "vol20", "value": 0.0173524797}, {"date": "2025-10-27", "symbol": "AMZN", "metric": "vol20", "value": 0.0173977552}, {"date": "2025-10-28", "symbol": "AMZN", "metric": "vol20", "value": 0.0172266826}, {"date": "2025-10-29", "symbol": "AMZN", "metric": "vol20", "value": 0.0172248622}, {"date": "2025-10-30", "symbol": "AMZN", "metric": "vol20", "value": 0.0188053793}, {"date": "2025-10-31", "symbol": "AMZN", "metric": "vol20", "value": 0.0281757227}, {"date": "2025-11-03", "symbol": "AMZN", "metric": "vol20", "value": 0.0292042838}, {"date": "2025-11-04", "symbol": "AMZN", "metric": "vol20", "value": 0.0297667525}, {"date": "2025-11-05", "symbol": "AMZN", "metric": "vol20", "value": 0.0296916869}, {"date": "2025-11-06", "symbol": "AMZN", "metric": "vol20", "value": 0.0306226465}, {"date": "2025-11-07", "symbol": "AMZN", "metric": "vol20", "value": 0.0279019427}, {"date": "2025-11-10", "symbol": "AMZN", "metric": "vol20", "value": 0.02788693}, {"date": "2025-11-11", "symbol": "AMZN", "metric": "vol20", "value": 0.0273706034}, {"date": "2025-11-12", "symbol": "AMZN", "metric": "vol20", "value": 0.0279370629}, {"date": "2025-11-13", "symbol": "AMZN", "metric": "vol20", "value": 0.0288415249}, {"date": "2025-11-14", "symbol": "AMZN", "metric": "vol20", "value": 0.0289895191}, {"date": "2025-11-17", "symbol": "AMZN", "metric": "vol20", "value": 0.0290088179}, {"date": "2025-11-18", "symbol": "AMZN", "metric": "vol20", "value": 0.0304496412}, {"date": "2025-11-19", "symbol": "AMZN", "metric": "vol20", "value": 0.0301228631}, {"date": "2025-11-20", "symbol": "AMZN", "metric": "vol20", "value": 0.0305168262}, {"date": "2025-11-21", "symbol": "AMZN", "metric": "vol20", "value": 0.0305771262}, {"date": "2025-11-24", "symbol": "AMZN", "metric": "vol20", "value": 0.0309967507}, {"date": "2025-11-25", "symbol": "AMZN", "metric": "vol20", "value": 0.0310979791}, {"date": "2025-11-26", "symbol": "AMZN", "metric": "vol20", "value": 0.0310886475}, {"date": "2025-11-28", "symbol": "AMZN", "metric": "vol20", "value": 0.0303391102}, {"date": "2025-12-01", "symbol": "AMZN", "metric": "vol20", "value": 0.0210015925}, {"date": "2025-12-02", "symbol": "AMZN", "metric": "vol20", "value": 0.0185862375}, {"date": "2025-12-03", "symbol": "AMZN", "metric": "vol20", "value": 0.0183096925}, {"date": "2025-12-04", "symbol": "AMZN", "metric": "vol20", "value": 0.0183844147}, {"date": "2025-12-05", "symbol": "AMZN", "metric": "vol20", "value": 0.0174981113}, {"date": "2025-12-08", "symbol": "AMZN", "metric": "vol20", "value": 0.0174875509}, {"date": "2025-12-09", "symbol": "AMZN", "metric": "vol20", "value": 0.0169730214}, {"date": "2025-12-10", "symbol": "AMZN", "metric": "vol20", "value": 0.0175616445}, {"date": "2025-12-11", "symbol": "AMZN", "metric": "vol20", "value": 0.017163449}, {"date": "2025-12-12", "symbol": "AMZN", "metric": "vol20", "value": 0.0165838061}, {"date": "2025-12-15", "symbol": "AMZN", "metric": "vol20", "value": 0.0167310342}, {"date": "2025-12-16", "symbol": "AMZN", "metric": "vol20", "value": 0.0166937712}, {"date": "2025-12-17", "symbol": "AMZN", "metric": "vol20", "value": 0.0134836239}, {"date": "2025-12-18", "symbol": "AMZN", "metric": "vol20", "value": 0.0146000973}, {"date": "2025-12-19", "symbol": "AMZN", "metric": "vol20", "value": 0.0132633545}, {"date": "2025-12-22", "symbol": "AMZN", "metric": "vol20", "value": 0.0128682652}, {"date": "2025-12-23", "symbol": "AMZN", "metric": "vol20", "value": 0.0121332302}, {"date": "2025-12-24", "symbol": "AMZN", "metric": "vol20", "value": 0.0117015902}, {"date": "2025-12-26", "symbol": "AMZN", "metric": "vol20", "value": 0.011682132}, {"date": "2025-12-29", "symbol": "AMZN", "metric": "vol20", "value": 0.010989649}, {"date": "2025-12-30", "symbol": "AMZN", "metric": "vol20", "value": 0.0109790176}, {"date": "2025-12-31", "symbol": "AMZN", "metric": "vol20", "value": 0.0110735069}, {"date": "2026-01-02", "symbol": "AMZN", "metric": "vol20", "value": 0.0116642511}, {"date": "2026-01-05", "symbol": "AMZN", "metric": "vol20", "value": 0.0130543862}, {"date": "2026-01-06", "symbol": "AMZN", "metric": "vol20", "value": 0.0149808669}, {"date": "2026-01-07", "symbol": "AMZN", "metric": "vol20", "value": 0.0146128783}, {"date": "2026-01-08", "symbol": "AMZN", "metric": "vol20", "value": 0.0150635008}, {"date": "2026-01-09", "symbol": "AMZN", "metric": "vol20", "value": 0.014754214}, {"date": "2026-01-12", "symbol": "AMZN", "metric": "vol20", "value": 0.0146691819}, {"date": "2026-01-13", "symbol": "AMZN", "metric": "vol20", "value": 0.0145185163}, {"date": "2026-01-14", "symbol": "AMZN", "metric": "vol20", "value": 0.0152230596}, {"date": "2026-01-15", "symbol": "AMZN", "metric": "vol20", "value": 0.0152215227}, {"date": "2026-01-16", "symbol": "AMZN", "metric": "vol20", "value": 0.0150632084}, {"date": "2026-01-20", "symbol": "AMZN", "metric": "vol20", "value": 0.0164562783}, {"date": "2026-01-21", "symbol": "AMZN", "metric": "vol20", "value": 0.0164524576}, {"date": "2026-01-22", "symbol": "AMZN", "metric": "vol20", "value": 0.0166574689}, {"date": "2026-01-23", "symbol": "AMZN", "metric": "vol20", "value": 0.0168867695}, {"date": "2026-01-26", "symbol": "AMZN", "metric": "vol20", "value": 0.0169195857}, {"date": "2025-07-31", "symbol": "GOOGL", "metric": "vol20", "value": null}, {"date": "2025-08-01", "symbol": "GOOGL", "metric": "vol20", "value": null}, {"date": "2025-08-04", "symbol": "GOOGL", "metric": "vol20", "value": 0.0322782869}, {"date": "2025-08-05", "symbol": "GOOGL", "metric": "vol20", "value": 0.0235889568}, {"date": "2025-08-06", "symbol": "GOOGL", "metric": "vol20", "value": 0.0192953892}, {"date": "2025-08-07", "symbol": "GOOGL", "metric": "vol20", "value": 0.0167779136}, {"date": "2025-08-08", "symbol": "GOOGL", "metric": "vol20", "value": 0.0170905009}, {"date": "2025-08-11", "symbol": "GOOGL", "metric": "vol20", "value": 0.0160812033}, {"date": "2025-08-12", "symbol": "GOOGL", "metric": "vol20", "value": 0.0149890206}, {"date": "2025-08-13", "symbol": "GOOGL", "metric": "vol20", "value": 0.0147944803}, {"date": "2025-08-14", "symbol": "GOOGL", "metric": "vol20", "value": 0.0139514895}, {"date": "2025-08-15", "symbol": "GOOGL", "metric": "vol20", "value": 0.0132390562}, {"date": "2025-08-18", "symbol": "GOOGL", "metric": "vol20", "value": 0.0128084133}, {"date": "2025-08-19", "symbol": "GOOGL", "metric": "vol20", "value": 0.0129039075}, {"date": "2025-08-20", "symbol": "GOOGL", "metric": "vol20", "value": 0.0130335513}, {"date": "2025-08-21", "symbol": "GOOGL", "metric": "vol20", "value": 0.0125605025}, {"date": "2025-08-22", "symbol": "GOOGL", "metric": "vol20", "value": 0.014134017}, {"date": "2025-08-25", "symbol": "GOOGL", "metric": "vol20", "value": 0.0137931672}, {"date": "2025-08-26", "symbol": "GOOGL", "metric": "vol20", "value": 0.0136514601}, {"date": "2025-08-27", "symbol": "GOOGL", "metric": "vol20", "value": 0.0132812733}, {"date": "2025-08-28", "symbol": "GOOGL", "metric": "vol20", "value": 0.0134030345}, {"date": "2025-08-29", "symbol": "GOOGL", "metric": "vol20", "value": 0.0126014391}, {"date": "2025-09-02", "symbol": "GOOGL", "metric": "vol20", "value": 0.0114349177}, {"date": "2025-09-03", "symbol": "GOOGL", "metric": "vol20", "value": 0.0225152312}, {"date": "2025-09-04", "symbol": "GOOGL", "metric": "vol20", "value": 0.0225158907}, {"date": "2025-09-05", "symbol": "GOOGL", "metric": "vol20", "value": 0.0224704649}, {"date": "2025-09-08", "symbol": "GOOGL", "metric": "vol20", "value": 0.0223148275}, {"date": "2025-09-09", "symbol": "GOOGL", "metric": "vol20", "value": 0.0224631315}, {"date": "2025-09-10", "symbol": "GOOGL", "metric": "vol20", "value": 0.0225866561}, {"date": "2025-09-11", "symbol": "GOOGL", "metric": "vol20", "value": 0.0223205555}, {"date": "2025-09-12", "symbol": "GOOGL", "metric": "vol20", "value": 0.0223611394}, {"date": "2025-09-15", "symbol": "GOOGL", "metric": "vol20", "value": 0.0237337322}, {"date": "2025-09-16", "symbol": "GOOGL", "metric": "vol20", "value": 0.0237301732}, {"date": "2025-09-17", "symbol": "GOOGL", "metric": "vol20", "value": 0.0236035631}, {"date": "2025-09-18", "symbol": "GOOGL", "metric": "vol20", "value": 0.0230226143}, {"date": "2025-09-19", "symbol": "GOOGL", "metric": "vol20", "value": 0.0229079578}, {"date": "2025-09-22", "symbol": "GOOGL", "metric": "vol20", "value": 0.0229020378}, {"date": "2025-09-23", "symbol": "GOOGL", "metric": "vol20", "value": 0.0231085978}, {"date": "2025-09-24", "symbol": "GOOGL", "metric": "vol20", "value": 0.0236690912}, {"date": "2025-09-25", "symbol": "GOOGL", "metric": "vol20", "value": 0.0238408084}, {"date": "2025-09-26", "symbol": "GOOGL", "metric": "vol20", "value": 0.0237222244}, {"date": "2025-09-29", "symbol": "GOOGL", "metric": "vol20", "value": 0.0240633289}, {"date": "2025-09-30", "symbol": "GOOGL", "metric": "vol20", "value": 0.0239662842}, {"date": "2025-10-01", "symbol": "GOOGL", "metric": "vol20", "value": 0.0135699197}, {"date": "2025-10-02", "symbol": "GOOGL", "metric": "vol20", "value": 0.0135375603}, {"date": "2025-10-03", "symbol": "GOOGL", "metric": "vol20", "value": 0.0134094913}, {"date": "2025-10-06", "symbol": "GOOGL", "metric": "vol20", "value": 0.0139503035}, {"date": "2025-10-07", "symbol": "GOOGL", "metric": "vol20", "value": 0.0139213257}, {"date": "2025-10-08", "symbol": "GOOGL", "metric": "vol20", "value": 0.0139682413}, {"date": "2025-10-09", "symbol": "GOOGL", "metric": "vol20", "value": 0.0142702519}, {"date": "2025-10-10", "symbol": "GOOGL", "metric": "vol20", "value": 0.0150029289}, {"date": "2025-10-13", "symbol": "GOOGL", "metric": "vol20", "value": 0.0130897981}, {"date": "2025-10-14", "symbol": "GOOGL", "metric": "vol20", "value": 0.0131758026}, {"date": "2025-10-15", "symbol": "GOOGL", "metric": "vol20", "value": 0.0141299547}, {"date": "2025-10-16", "symbol": "GOOGL", "metric": "vol20", "value": 0.0139529071}, {"date": "2025-10-17", "symbol": "GOOGL", "metric": "vol20", "value": 0.0138375785}, {"date": "2025-10-20", "symbol": "GOOGL", "metric": "vol20", "value": 0.0139812754}, {"date": "2025-10-21", "symbol": "GOOGL", "metric": "vol20", "value": 0.015008882}, {"date": "2025-10-22", "symbol": "GOOGL", "metric": "vol20", "value": 0.0144387743}, {"date": "2025-10-23", "symbol": "GOOGL", "metric": "vol20", "value": 0.0143877614}, {"date": "2025-10-24", "symbol": "GOOGL", "metric": "vol20", "value": 0.015477749}, {"date": "2025-10-27", "symbol": "GOOGL", "metric": "vol20", "value": 0.0168307087}, {"date": "2025-10-28", "symbol": "GOOGL", "metric": "vol20", "value": 0.016918989}, {"date": "2025-10-29", "symbol": "GOOGL", "metric": "vol20", "value": 0.0175932245}, {"date": "2025-10-30", "symbol": "GOOGL", "metric": "vol20", "value": 0.0180967795}, {"date": "2025-10-31", "symbol": "GOOGL", "metric": "vol20", "value": 0.0180883447}, {"date": "2025-11-03", "symbol": "GOOGL", "metric": "vol20", "value": 0.0178078062}, {"date": "2025-11-04", "symbol": "GOOGL", "metric": "vol20", "value": 0.0180494603}, {"date": "2025-11-05", "symbol": "GOOGL", "metric": "vol20", "value": 0.0182920891}, {"date": "2025-11-06", "symbol": "GOOGL", "metric": "vol20", "value": 0.0177279976}, {"date": "2025-11-07", "symbol": "GOOGL", "metric": "vol20", "value": 0.0177504871}, {"date": "2025-11-10", "symbol": "GOOGL", "metric": "vol20", "value": 0.0184243925}, {"date": "2025-11-11", "symbol": "GOOGL", "metric": "vol20", "value": 0.0184377098}, {"date": "2025-11-12", "symbol": "GOOGL", "metric": "vol20", "value": 0.0189075921}, {"date": "2025-11-13", "symbol": "GOOGL", "metric": "vol20", "value": 0.0204690551}, {"date": "2025-11-14", "symbol": "GOOGL", "metric": "vol20", "value": 0.0206688924}, {"date": "2025-11-17", "symbol": "GOOGL", "metric": "vol20", "value": 0.0214440176}, {"date": "2025-11-18", "symbol": "GOOGL", "metric": "vol20", "value": 0.0204259377}, {"date": "2025-11-19", "symbol": "GOOGL", "metric": "vol20", "value": 0.0210814678}, {"date": "2025-11-20", "symbol": "GOOGL", "metric": "vol20", "value": 0.0215166273}, {"date": "2025-11-21", "symbol": "GOOGL", "metric": "vol20", "value": 0.0219935946}, {"date": "2025-11-24", "symbol": "GOOGL", "metric": "vol20", "value": 0.0245460823}, {"date": "2025-11-25", "symbol": "GOOGL", "metric": "vol20", "value": 0.0243115238}, {"date": "2025-11-26", "symbol": "GOOGL", "metric": "vol20", "value": 0.0243942137}, {"date": "2025-11-28", "symbol": "GOOGL", "metric": "vol20", "value": 0.0240964447}, {"date": "2025-12-01", "symbol": "GOOGL", "metric": "vol20", "value": 0.0246032987}, {"date": "2025-12-02", "symbol": "GOOGL", "metric": "vol20", "value": 0.0246014979}, {"date": "2025-12-03", "symbol": "GOOGL", "metric": "vol20", "value": 0.02376642}, {"date": "2025-12-04", "symbol": "GOOGL", "metric": "vol20", "value": 0.0235989006}, {"date": "2025-12-05", "symbol": "GOOGL", "metric": "vol20", "value": 0.0236091061}, {"date": "2025-12-08", "symbol": "GOOGL", "metric": "vol20", "value": 0.0237397353}, {"date": "2025-12-09", "symbol": "GOOGL", "metric": "vol20", "value": 0.0223776043}, {"date": "2025-12-10", "symbol": "GOOGL", "metric": "vol20", "value": 0.0224064892}, {"date": "2025-12-11", "symbol": "GOOGL", "metric": "vol20", "value": 0.022896906}, {"date": "2025-12-12", "symbol": "GOOGL", "metric": "vol20", "value": 0.0218514124}, {"date": "2025-12-15", "symbol": "GOOGL", "metric": "vol20", "value": 0.0217349522}, {"date": "2025-12-16", "symbol": "GOOGL", "metric": "vol20", "value": 0.0210082233}, {"date": "2025-12-17", "symbol": "GOOGL", "metric": "vol20", "value": 0.0224748879}, {"date": "2025-12-18", "symbol": "GOOGL", "metric": "vol20", "value": 0.0219038879}, {"date": "2025-12-19", "symbol": "GOOGL", "metric": "vol20", "value": 0.0218696632}, {"date": "2025-12-22", "symbol": "GOOGL", "metric": "vol20", "value": 0.0205882904}, {"date": "2025-12-23", "symbol": "GOOGL", "metric": "vol20", "value": 0.0151309774}, {"date": "2025-12-24", "symbol": "GOOGL", "metric": "vol20", "value": 0.0146678494}, {"date": "2025-12-26", "symbol": "GOOGL", "metric": "vol20", "value": 0.0144993805}, {"date": "2025-12-29", "symbol": "GOOGL", "metric": "vol20", "value": 0.0144966648}, {"date": "2025-12-30", "symbol": "GOOGL", "metric": "vol20", "value": 0.0140244094}, {"date": "2025-12-31", "symbol": "GOOGL", "metric": "vol20", "value": 0.0140183553}, {"date": "2026-01-02", "symbol": "GOOGL", "metric": "vol20", "value": 0.0138216726}, {"date": "2026-01-05", "symbol": "GOOGL", "metric": "vol20", "value": 0.0137960804}, {"date": "2026-01-06", "symbol": "GOOGL", "metric": "vol20", "value": 0.0135988672}, {"date": "2026-01-07", "symbol": "GOOGL", "metric": "vol20", "value": 0.013691827}, {"date": "2026-01-08", "symbol": "GOOGL", "metric": "vol20", "value": 0.0136931127}, {"date": "2026-01-09", "symbol": "GOOGL", "metric": "vol20", "value": 0.0136849627}, {"date": "2026-01-12", "symbol": "GOOGL", "metric": "vol20", "value": 0.0123857957}, {"date": "2026-01-13", "symbol": "GOOGL", "metric": "vol20", "value": 0.0121462907}, {"date": "2026-01-14", "symbol": "GOOGL", "metric": "vol20", "value": 0.012063245}, {"date": "2026-01-15", "symbol": "GOOGL", "metric": "vol20", "value": 0.0122504885}, {"date": "2026-01-16", "symbol": "GOOGL", "metric": "vol20", "value": 0.0093520836}, {"date": "2026-01-20", "symbol": "GOOGL", "metric": "vol20", "value": 0.0108783424}, {"date": "2026-01-21", "symbol": "GOOGL", "metric": "vol20", "value": 0.0111717371}, {"date": "2026-01-22", "symbol": "GOOGL", "metric": "vol20", "value": 0.0111330685}, {"date": "2026-01-23", "symbol": "GOOGL", "metric": "vol20", "value": 0.01105927}, {"date": "2026-01-26", "symbol": "GOOGL", "metric": "vol20", "value": 0.0114672233}, {"date": "2025-07-31", "symbol": "META", "metric": "vol20", "value": null}, {"date": "2025-08-01", "symbol": "META", "metric": "vol20", "value": null}, {"date": "2025-08-04", "symbol": "META", "metric": "vol20", "value": 0.0462764953}, {"date": "2025-08-05", "symbol": "META", "metric": "vol20", "value": 0.0345214877}, {"date": "2025-08-06", "symbol": "META", "metric": "vol20", "value": 0.0291808028}, {"date": "2025-08-07", "symbol": "META", "metric": "vol20", "value": 0.0259317489}, {"date": "2025-08-08", "symbol": "META", "metric": "vol20", "value": 0.0237528213}, {"date": "2025-08-11", "symbol": "META", "metric": "vol20", "value": 0.0217305562}, {"date": "2025-08-12", "symbol": "META", "metric": "vol20", "value": 0.023204552}, {"date": "2025-08-13", "symbol": "META", "metric": "vol20", "value": 0.0223073609}, {"date": "2025-08-14", "symbol": "META", "metric": "vol20", "value": 0.0210366597}, {"date": "2025-08-15", "symbol": "META", "metric": "vol20", "value": 0.0199729978}, {"date": "2025-08-18", "symbol": "META", "metric": "vol20", "value": 0.0202941037}, {"date": "2025-08-19", "symbol": "META", "metric": "vol20", "value": 0.0202250515}, {"date": "2025-08-20", "symbol": "META", "metric": "vol20", "value": 0.0194478293}, {"date": "2025-08-21", "symbol": "META", "metric": "vol20", "value": 0.0188934235}, {"date": "2025-08-22", "symbol": "META", "metric": "vol20", "value": 0.0192207178}, {"date": "2025-08-25", "symbol": "META", "metric": "vol20", "value": 0.0186109978}, {"date": "2025-08-26", "symbol": "META", "metric": "vol20", "value": 0.0180645683}, {"date": "2025-08-27", "symbol": "META", "metric": "vol20", "value": 0.0176433159}, {"date": "2025-08-28", "symbol": "META", "metric": "vol20", "value": 0.0172368126}, {"date": "2025-08-29", "symbol": "META", "metric": "vol20", "value": 0.0162656926}, {"date": "2025-09-02", "symbol": "META", "metric": "vol20", "value": 0.0139255428}, {"date": "2025-09-03", "symbol": "META", "metric": "vol20", "value": 0.0135682392}, {"date": "2025-09-04", "symbol": "META", "metric": "vol20", "value": 0.013832043}, {"date": "2025-09-05", "symbol": "META", "metric": "vol20", "value": 0.0136185516}, {"date": "2025-09-08", "symbol": "META", "metric": "vol20", "value": 0.013401372}, {"date": "2025-09-09", "symbol": "META", "metric": "vol20", "value": 0.0140130081}, {"date": "2025-09-10", "symbol": "META", "metric": "vol20", "value": 0.0124512631}, {"date": "2025-09-11", "symbol": "META", "metric": "vol20", "value": 0.0122197531}, {"date": "2025-09-12", "symbol": "META", "metric": "vol20", "value": 0.0123159209}, {"date": "2025-09-15", "symbol": "META", "metric": "vol20", "value": 0.0126385538}, {"date": "2025-09-16", "symbol": "META", "metric": "vol20", "value": 0.0123226465}, {"date": "2025-09-17", "symbol": "META", "metric": "vol20", "value": 0.0113159394}, {"date": "2025-09-18", "symbol": "META", "metric": "vol20", "value": 0.011240027}, {"date": "2025-09-19", "symbol": "META", "metric": "vol20", "value": 0.0108312544}, {"date": "2025-09-22", "symbol": "META", "metric": "vol20", "value": 0.0106935386}, {"date": "2025-09-23", "symbol": "META", "metric": "vol20", "value": 0.011103695}, {"date": "2025-09-24", "symbol": "META", "metric": "vol20", "value": 0.0112050509}, {"date": "2025-09-25", "symbol": "META", "metric": "vol20", "value": 0.0115836552}, {"date": "2025-09-26", "symbol": "META", "metric": "vol20", "value": 0.0116298792}, {"date": "2025-09-29", "symbol": "META", "metric": "vol20", "value": 0.0109950054}, {"date": "2025-09-30", "symbol": "META", "metric": "vol20", "value": 0.0112945774}, {"date": "2025-10-01", "symbol": "META", "metric": "vol20", "value": 0.0124050394}, {"date": "2025-10-02", "symbol": "META", "metric": "vol20", "value": 0.0122542791}, {"date": "2025-10-03", "symbol": "META", "metric": "vol20", "value": 0.0130347989}, {"date": "2025-10-06", "symbol": "META", "metric": "vol20", "value": 0.0132140038}, {"date": "2025-10-07", "symbol": "META", "metric": "vol20", "value": 0.012330099}, {"date": "2025-10-08", "symbol": "META", "metric": "vol20", "value": 0.0120339287}, {"date": "2025-10-09", "symbol": "META", "metric": "vol20", "value": 0.0131821159}, {"date": "2025-10-10", "symbol": "META", "metric": "vol20", "value": 0.0154691922}, {"date": "2025-10-13", "symbol": "META", "metric": "vol20", "value": 0.015620828}, {"date": "2025-10-14", "symbol": "META", "metric": "vol20", "value": 0.0148015384}, {"date": "2025-10-15", "symbol": "META", "metric": "vol20", "value": 0.0152912402}, {"date": "2025-10-16", "symbol": "META", "metric": "vol20", "value": 0.0151431124}, {"date": "2025-10-17", "symbol": "META", "metric": "vol20", "value": 0.0153466392}, {"date": "2025-10-20", "symbol": "META", "metric": "vol20", "value": 0.0160386619}, {"date": "2025-10-21", "symbol": "META", "metric": "vol20", "value": 0.0158545538}, {"date": "2025-10-22", "symbol": "META", "metric": "vol20", "value": 0.0157390537}, {"date": "2025-10-23", "symbol": "META", "metric": "vol20", "value": 0.0154082563}, {"date": "2025-10-24", "symbol": "META", "metric": "vol20", "value": 0.0154124278}, {"date": "2025-10-27", "symbol": "META", "metric": "vol20", "value": 0.0158802807}, {"date": "2025-10-28", "symbol": "META", "metric": "vol20", "value": 0.0155945787}, {"date": "2025-10-29", "symbol": "META", "metric": "vol20", "value": 0.0145015587}, {"date": "2025-10-30", "symbol": "META", "metric": "vol20", "value": 0.0294460469}, {"date": "2025-10-31", "symbol": "META", "metric": "vol20", "value": 0.0296142282}, {"date": "2025-11-03", "symbol": "META", "metric": "vol20", "value": 0.0296097942}, {"date": "2025-11-04", "symbol": "META", "metric": "vol20", "value": 0.0297071036}, {"date": "2025-11-05", "symbol": "META", "metric": "vol20", "value": 0.0299066636}, {"date": "2025-11-06", "symbol": "META", "metric": "vol20", "value": 0.0295331664}, {"date": "2025-11-07", "symbol": "META", "metric": "vol20", "value": 0.0287543725}, {"date": "2025-11-10", "symbol": "META", "metric": "vol20", "value": 0.0288102594}, {"date": "2025-11-11", "symbol": "META", "metric": "vol20", "value": 0.0287973146}, {"date": "2025-11-12", "symbol": "META", "metric": "vol20", "value": 0.0289041763}, {"date": "2025-11-13", "symbol": "META", "metric": "vol20", "value": 0.0289772552}, {"date": "2025-11-14", "symbol": "META", "metric": "vol20", "value": 0.0288329461}, {"date": "2025-11-17", "symbol": "META", "metric": "vol20", "value": 0.0280255417}, {"date": "2025-11-18", "symbol": "META", "metric": "vol20", "value": 0.0279157098}, {"date": "2025-11-19", "symbol": "META", "metric": "vol20", "value": 0.0278206228}, {"date": "2025-11-20", "symbol": "META", "metric": "vol20", "value": 0.0277684346}, {"date": "2025-11-21", "symbol": "META", "metric": "vol20", "value": 0.0278598931}, {"date": "2025-11-24", "symbol": "META", "metric": "vol20", "value": 0.0287996977}, {"date": "2025-11-25", "symbol": "META", "metric": "vol20", "value": 0.0306363365}, {"date": "2025-11-26", "symbol": "META", "metric": "vol20", "value": 0.0305905932}, {"date": "2025-11-28", "symbol": "META", "metric": "vol20", "value": 0.0187882874}, {"date": "2025-12-01", "symbol": "META", "metric": "vol20", "value": 0.0179382583}, {"date": "2025-12-02", "symbol": "META", "metric": "vol20", "value": 0.0176622796}, {"date": "2025-12-03", "symbol": "META", "metric": "vol20", "value": 0.017451605}, {"date": "2025-12-04", "symbol": "META", "metric": "vol20", "value": 0.0187869615}, {"date": "2025-12-05", "symbol": "META", "metric": "vol20", "value": 0.0178042367}, {"date": "2025-12-08", "symbol": "META", "metric": "vol20", "value": 0.0180849421}, {"date": "2025-12-09", "symbol": "META", "metric": "vol20", "value": 0.01828051}, {"date": "2025-12-10", "symbol": "META", "metric": "vol20", "value": 0.018374015}, {"date": "2025-12-11", "symbol": "META", "metric": "vol20", "value": 0.0168847062}, {"date": "2025-12-12", "symbol": "META", "metric": "vol20", "value": 0.0172855299}, {"date": "2025-12-15", "symbol": "META", "metric": "vol20", "value": 0.017276475}, {"date": "2025-12-16", "symbol": "META", "metric": "vol20", "value": 0.0170640745}, {"date": "2025-12-17", "symbol": "META", "metric": "vol20", "value": 0.0172537803}, {"date": "2025-12-18", "symbol": "META", "metric": "vol20", "value": 0.0172663904}, {"date": "2025-12-19", "symbol": "META", "metric": "vol20", "value": 0.0174893775}, {"date": "2025-12-22", "symbol": "META", "metric": "vol20", "value": 0.017479422}, {"date": "2025-12-23", "symbol": "META", "metric": "vol20", "value": 0.0163685681}, {"date": "2025-12-24", "symbol": "META", "metric": "vol20", "value": 0.0143407198}, {"date": "2025-12-26", "symbol": "META", "metric": "vol20", "value": 0.0144051484}, {"date": "2025-12-29", "symbol": "META", "metric": "vol20", "value": 0.0137236462}, {"date": "2025-12-30", "symbol": "META", "metric": "vol20", "value": 0.0136011026}, {"date": "2025-12-31", "symbol": "META", "metric": "vol20", "value": 0.0136817641}, {"date": "2026-01-02", "symbol": "META", "metric": "vol20", "value": 0.0138486716}, {"date": "2026-01-05", "symbol": "META", "metric": "vol20", "value": 0.0118169264}, {"date": "2026-01-06", "symbol": "META", "metric": "vol20", "value": 0.0110578412}, {"date": "2026-01-07", "symbol": "META", "metric": "vol20", "value": 0.0115514816}, {"date": "2026-01-08", "symbol": "META", "metric": "vol20", "value": 0.0111334748}, {"date": "2026-01-09", "symbol": "META", "metric": "vol20", "value": 0.0111763679}, {"date": "2026-01-12", "symbol": "META", "metric": "vol20", "value": 0.0117821827}, {"date": "2026-01-13", "symbol": "META", "metric": "vol20", "value": 0.0120298502}, {"date": "2026-01-14", "symbol": "META", "metric": "vol20", "value": 0.0130190558}, {"date": "2026-01-15", "symbol": "META", "metric": "vol20", "value": 0.0126479781}, {"date": "2026-01-16", "symbol": "META", "metric": "vol20", "value": 0.0124782265}, {"date": "2026-01-20", "symbol": "META", "metric": "vol20", "value": 0.0120663856}, {"date": "2026-01-21", "symbol": "META", "metric": "vol20", "value": 0.0127680432}, {"date": "2026-01-22", "symbol": "META", "metric": "vol20", "value": 0.0185118023}, {"date": "2026-01-23", "symbol": "META", "metric": "vol20", "value": 0.0189093559}, {"date": "2026-01-26", "symbol": "META", "metric": "vol20", "value": 0.0194673033}, {"date": "2025-07-31", "symbol": "MSFT", "metric": "vol20", "value": null}, {"date": "2025-08-01", "symbol": "MSFT", "metric": "vol20", "value": null}, {"date": "2025-08-04", "symbol": "MSFT", "metric": "vol20", "value": 0.028005915}, {"date": "2025-08-05", "symbol": "MSFT", "metric": "vol20", "value": 0.0220822206}, {"date": "2025-08-06", "symbol": "MSFT", "metric": "vol20", "value": 0.0180545513}, {"date": "2025-08-07", "symbol": "MSFT", "metric": "vol20", "value": 0.015732913}, {"date": "2025-08-08", "symbol": "MSFT", "metric": "vol20", "value": 0.0143597626}, {"date": "2025-08-11", "symbol": "MSFT", "metric": "vol20", "value": 0.0131578234}, {"date": "2025-08-12", "symbol": "MSFT", "metric": "vol20", "value": 0.0136480769}, {"date": "2025-08-13", "symbol": "MSFT", "metric": "vol20", "value": 0.0137652656}, {"date": "2025-08-14", "symbol": "MSFT", "metric": "vol20", "value": 0.0131300398}, {"date": "2025-08-15", "symbol": "MSFT", "metric": "vol20", "value": 0.0124774293}, {"date": "2025-08-18", "symbol": "MSFT", "metric": "vol20", "value": 0.0119440179}, {"date": "2025-08-19", "symbol": "MSFT", "metric": "vol20", "value": 0.0118834922}, {"date": "2025-08-20", "symbol": "MSFT", "metric": "vol20", "value": 0.0114805737}, {"date": "2025-08-21", "symbol": "MSFT", "metric": "vol20", "value": 0.0110811942}, {"date": "2025-08-22", "symbol": "MSFT", "metric": "vol20", "value": 0.0109661582}, {"date": "2025-08-25", "symbol": "MSFT", "metric": "vol20", "value": 0.0106404738}, {"date": "2025-08-26", "symbol": "MSFT", "metric": "vol20", "value": 0.0103269806}, {"date": "2025-08-27", "symbol": "MSFT", "metric": "vol20", "value": 0.0104433467}, {"date": "2025-08-28", "symbol": "MSFT", "metric": "vol20", "value": 0.0103328918}, {"date": "2025-08-29", "symbol": "MSFT", "metric": "vol20", "value": 0.0097227667}, {"date": "2025-09-02", "symbol": "MSFT", "metric": "vol20", "value": 0.0079861521}, {"date": "2025-09-03", "symbol": "MSFT", "metric": "vol20", "value": 0.0075013778}, {"date": "2025-09-04", "symbol": "MSFT", "metric": "vol20", "value": 0.007627005}, {"date": "2025-09-05", "symbol": "MSFT", "metric": "vol20", "value": 0.0092496268}, {"date": "2025-09-08", "symbol": "MSFT", "metric": "vol20", "value": 0.0094062529}, {"date": "2025-09-09", "symbol": "MSFT", "metric": "vol20", "value": 0.0094175086}, {"date": "2025-09-10", "symbol": "MSFT", "metric": "vol20", "value": 0.0087227125}, {"date": "2025-09-11", "symbol": "MSFT", "metric": "vol20", "value": 0.0081383958}, {"date": "2025-09-12", "symbol": "MSFT", "metric": "vol20", "value": 0.0091799756}, {"date": "2025-09-15", "symbol": "MSFT", "metric": "vol20", "value": 0.0095090626}, {"date": "2025-09-16", "symbol": "MSFT", "metric": "vol20", "value": 0.0098068284}, {"date": "2025-09-17", "symbol": "MSFT", "metric": "vol20", "value": 0.0092849065}, {"date": "2025-09-18", "symbol": "MSFT", "metric": "vol20", "value": 0.0091246883}, {"date": "2025-09-19", "symbol": "MSFT", "metric": "vol20", "value": 0.009979721}, {"date": "2025-09-22", "symbol": "MSFT", "metric": "vol20", "value": 0.0100769981}, {"date": "2025-09-23", "symbol": "MSFT", "metric": "vol20", "value": 0.0102692943}, {"date": "2025-09-24", "symbol": "MSFT", "metric": "vol20", "value": 0.0102054426}, {"date": "2025-09-25", "symbol": "MSFT", "metric": "vol20", "value": 0.0101130523}, {"date": "2025-09-26", "symbol": "MSFT", "metric": "vol20", "value": 0.0102230222}, {"date": "2025-09-29", "symbol": "MSFT", "metric": "vol20", "value": 0.0102014475}, {"date": "2025-09-30", "symbol": "MSFT", "metric": "vol20", "value": 0.0102332746}, {"date": "2025-10-01", "symbol": "MSFT", "metric": "vol20", "value": 0.0102416465}, {"date": "2025-10-02", "symbol": "MSFT", "metric": "vol20", "value": 0.0103959016}, {"date": "2025-10-03", "symbol": "MSFT", "metric": "vol20", "value": 0.0083486253}, {"date": "2025-10-06", "symbol": "MSFT", "metric": "vol20", "value": 0.0093839426}, {"date": "2025-10-07", "symbol": "MSFT", "metric": "vol20", "value": 0.0097301749}, {"date": "2025-10-08", "symbol": "MSFT", "metric": "vol20", "value": 0.0097263647}, {"date": "2025-10-09", "symbol": "MSFT", "metric": "vol20", "value": 0.0098538853}, {"date": "2025-10-10", "symbol": "MSFT", "metric": "vol20", "value": 0.0105115728}, {"date": "2025-10-13", "symbol": "MSFT", "metric": "vol20", "value": 0.0103148939}, {"date": "2025-10-14", "symbol": "MSFT", "metric": "vol20", "value": 0.0099134985}, {"date": "2025-10-15", "symbol": "MSFT", "metric": "vol20", "value": 0.0099088995}, {"date": "2025-10-16", "symbol": "MSFT", "metric": "vol20", "value": 0.0099180444}, {"date": "2025-10-17", "symbol": "MSFT", "metric": "vol20", "value": 0.0089912384}, {"date": "2025-10-20", "symbol": "MSFT", "metric": "vol20", "value": 0.0089778987}, {"date": "2025-10-21", "symbol": "MSFT", "metric": "vol20", "value": 0.0086392113}, {"date": "2025-10-22", "symbol": "MSFT", "metric": "vol20", "value": 0.0087018487}, {"date": "2025-10-23", "symbol": "MSFT", "metric": "vol20", "value": 0.0085421486}, {"date": "2025-10-24", "symbol": "MSFT", "metric": "vol20", "value": 0.008434687}, {"date": "2025-10-27", "symbol": "MSFT", "metric": "vol20", "value": 0.0089345602}, {"date": "2025-10-28", "symbol": "MSFT", "metric": "vol20", "value": 0.0097743835}, {"date": "2025-10-29", "symbol": "MSFT", "metric": "vol20", "value": 0.0097977074}, {"date": "2025-10-30", "symbol": "MSFT", "metric": "vol20", "value": 0.0118836302}, {"date": "2025-10-31", "symbol": "MSFT", "metric": "vol20", "value": 0.0124041305}, {"date": "2025-11-03", "symbol": "MSFT", "metric": "vol20", "value": 0.0113178806}, {"date": "2025-11-04", "symbol": "MSFT", "metric": "vol20", "value": 0.011220821}, {"date": "2025-11-05", "symbol": "MSFT", "metric": "vol20", "value": 0.0115728362}, {"date": "2025-11-06", "symbol": "MSFT", "metric": "vol20", "value": 0.0122575543}, {"date": "2025-11-07", "symbol": "MSFT", "metric": "vol20", "value": 0.0113695771}, {"date": "2025-11-10", "symbol": "MSFT", "metric": "vol20", "value": 0.012110095}, {"date": "2025-11-11", "symbol": "MSFT", "metric": "vol20", "value": 0.0121844364}, {"date": "2025-11-12", "symbol": "MSFT", "metric": "vol20", "value": 0.012241021}, {"date": "2025-11-13", "symbol": "MSFT", "metric": "vol20", "value": 0.0126906057}, {"date": "2025-11-14", "symbol": "MSFT", "metric": "vol20", "value": 0.0130634666}, {"date": "2025-11-17", "symbol": "MSFT", "metric": "vol20", "value": 0.0130160941}, {"date": "2025-11-18", "symbol": "MSFT", "metric": "vol20", "value": 0.0142457772}, {"date": "2025-11-19", "symbol": "MSFT", "metric": "vol20", "value": 0.0143323897}, {"date": "2025-11-20", "symbol": "MSFT", "metric": "vol20", "value": 0.01458728}, {"date": "2025-11-21", "symbol": "MSFT", "metric": "vol20", "value": 0.0145306036}, {"date": "2025-11-24", "symbol": "MSFT", "metric": "vol20", "value": 0.0139211361}, {"date": "2025-11-25", "symbol": "MSFT", "metric": "vol20", "value": 0.0129151429}, {"date": "2025-11-26", "symbol": "MSFT", "metric": "vol20", "value": 0.0139588686}, {"date": "2025-11-28", "symbol": "MSFT", "metric": "vol20", "value": 0.0133559516}, {"date": "2025-12-01", "symbol": "MSFT", "metric": "vol20", "value": 0.0131824757}, {"date": "2025-12-02", "symbol": "MSFT", "metric": "vol20", "value": 0.01335507}, {"date": "2025-12-03", "symbol": "MSFT", "metric": "vol20", "value": 0.014271374}, {"date": "2025-12-04", "symbol": "MSFT", "metric": "vol20", "value": 0.01421574}, {"date": "2025-12-05", "symbol": "MSFT", "metric": "vol20", "value": 0.0136902394}, {"date": "2025-12-08", "symbol": "MSFT", "metric": "vol20", "value": 0.0142401843}, {"date": "2025-12-09", "symbol": "MSFT", "metric": "vol20", "value": 0.0135515986}, {"date": "2025-12-10", "symbol": "MSFT", "metric": "vol20", "value": 0.0146477275}, {"date": "2025-12-11", "symbol": "MSFT", "metric": "vol20", "value": 0.0148461745}, {"date": "2025-12-12", "symbol": "MSFT", "metric": "vol20", "value": 0.0146562085}, {"date": "2025-12-15", "symbol": "MSFT", "metric": "vol20", "value": 0.014199993}, {"date": "2025-12-16", "symbol": "MSFT", "metric": "vol20", "value": 0.0142696369}, {"date": "2025-12-17", "symbol": "MSFT", "metric": "vol20", "value": 0.0131042175}, {"date": "2025-12-18", "symbol": "MSFT", "metric": "vol20", "value": 0.0133896049}, {"date": "2025-12-19", "symbol": "MSFT", "metric": "vol20", "value": 0.0128802718}, {"date": "2025-12-22", "symbol": "MSFT", "metric": "vol20", "value": 0.0124755672}, {"date": "2025-12-23", "symbol": "MSFT", "metric": "vol20", "value": 0.0124755455}, {"date": "2025-12-24", "symbol": "MSFT", "metric": "vol20", "value": 0.0124253564}, {"date": "2025-12-26", "symbol": "MSFT", "metric": "vol20", "value": 0.0117952282}, {"date": "2025-12-29", "symbol": "MSFT", "metric": "vol20", "value": 0.0113857073}, {"date": "2025-12-30", "symbol": "MSFT", "metric": "vol20", "value": 0.0111270796}, {"date": "2025-12-31", "symbol": "MSFT", "metric": "vol20", "value": 0.0111533313}, {"date": "2026-01-02", "symbol": "MSFT", "metric": "vol20", "value": 0.0108270151}, {"date": "2026-01-05", "symbol": "MSFT", "metric": "vol20", "value": 0.0107033535}, {"date": "2026-01-06", "symbol": "MSFT", "metric": "vol20", "value": 0.0110150772}, {"date": "2026-01-07", "symbol": "MSFT", "metric": "vol20", "value": 0.0106161286}, {"date": "2026-01-08", "symbol": "MSFT", "metric": "vol20", "value": 0.0108399408}, {"date": "2026-01-09", "symbol": "MSFT", "metric": "vol20", "value": 0.0089672968}, {"date": "2026-01-12", "symbol": "MSFT", "metric": "vol20", "value": 0.0086886845}, {"date": "2026-01-13", "symbol": "MSFT", "metric": "vol20", "value": 0.0089185385}, {"date": "2026-01-14", "symbol": "MSFT", "metric": "vol20", "value": 0.0102282278}, {"date": "2026-01-15", "symbol": "MSFT", "metric": "vol20", "value": 0.0102032695}, {"date": "2026-01-16", "symbol": "MSFT", "metric": "vol20", "value": 0.0104003834}, {"date": "2026-01-20", "symbol": "MSFT", "metric": "vol20", "value": 0.0096878788}, {"date": "2026-01-21", "symbol": "MSFT", "metric": "vol20", "value": 0.0104860744}, {"date": "2026-01-22", "symbol": "MSFT", "metric": "vol20", "value": 0.0114207239}, {"date": "2026-01-23", "symbol": "MSFT", "metric": "vol20", "value": 0.0139600511}, {"date": "2026-01-26", "symbol": "MSFT", "metric": "vol20", "value": 0.0141605633}, {"date": "2025-07-31", "symbol": "NVDA", "metric": "vol20", "value": null}, {"date": "2025-08-01", "symbol": "NVDA", "metric": "vol20", "value": null}, {"date": "2025-08-04", "symbol": "NVDA", "metric": "vol20", "value": 0.0420647638}, {"date": "2025-08-05", "symbol": "NVDA", "metric": "vol20", "value": 0.0311590574}, {"date": "2025-08-06", "symbol": "NVDA", "metric": "vol20", "value": 0.0255871744}, {"date": "2025-08-07", "symbol": "NVDA", "metric": "vol20", "value": 0.02227667}, {"date": "2025-08-08", "symbol": "NVDA", "metric": "vol20", "value": 0.0201429353}, {"date": "2025-08-11", "symbol": "NVDA", "metric": "vol20", "value": 0.0186439644}, {"date": "2025-08-12", "symbol": "NVDA", "metric": "vol20", "value": 0.0172847198}, {"date": "2025-08-13", "symbol": "NVDA", "metric": "vol20", "value": 0.0166861143}, {"date": "2025-08-14", "symbol": "NVDA", "metric": "vol20", "value": 0.0157318298}, {"date": "2025-08-15", "symbol": "NVDA", "metric": "vol20", "value": 0.0152916303}, {"date": "2025-08-18", "symbol": "NVDA", "metric": "vol20", "value": 0.0147286421}, {"date": "2025-08-19", "symbol": "NVDA", "metric": "vol20", "value": 0.0174435388}, {"date": "2025-08-20", "symbol": "NVDA", "metric": "vol20", "value": 0.0167598246}, {"date": "2025-08-21", "symbol": "NVDA", "metric": "vol20", "value": 0.0161549822}, {"date": "2025-08-22", "symbol": "NVDA", "metric": "vol20", "value": 0.0162550651}, {"date": "2025-08-25", "symbol": "NVDA", "metric": "vol20", "value": 0.0159269099}, {"date": "2025-08-26", "symbol": "NVDA", "metric": "vol20", "value": 0.0156352568}, {"date": "2025-08-27", "symbol": "NVDA", "metric": "vol20", "value": 0.0152035567}, {"date": "2025-08-28", "symbol": "NVDA", "metric": "vol20", "value": 0.014936631}, {"date": "2025-08-29", "symbol": "NVDA", "metric": "vol20", "value": 0.0159108839}, {"date": "2025-09-02", "symbol": "NVDA", "metric": "vol20", "value": 0.0140621408}, {"date": "2025-09-03", "symbol": "NVDA", "metric": "vol20", "value": 0.0139641005}, {"date": "2025-09-04", "symbol": "NVDA", "metric": "vol20", "value": 0.0139510417}, {"date": "2025-09-05", "symbol": "NVDA", "metric": "vol20", "value": 0.0148080425}, {"date": "2025-09-08", "symbol": "NVDA", "metric": "vol20", "value": 0.0146697073}, {"date": "2025-09-09", "symbol": "NVDA", "metric": "vol20", "value": 0.0152458988}, {"date": "2025-09-10", "symbol": "NVDA", "metric": "vol20", "value": 0.0177825431}, {"date": "2025-09-11", "symbol": "NVDA", "metric": "vol20", "value": 0.0177037693}, {"date": "2025-09-12", "symbol": "NVDA", "metric": "vol20", "value": 0.0177194831}, {"date": "2025-09-15", "symbol": "NVDA", "metric": "vol20", "value": 0.0176287328}, {"date": "2025-09-16", "symbol": "NVDA", "metric": "vol20", "value": 0.0178148919}, {"date": "2025-09-17", "symbol": "NVDA", "metric": "vol20", "value": 0.0170483598}, {"date": "2025-09-18", "symbol": "NVDA", "metric": "vol20", "value": 0.0188867364}, {"date": "2025-09-19", "symbol": "NVDA", "metric": "vol20", "value": 0.0188798745}, {"date": "2025-09-22", "symbol": "NVDA", "metric": "vol20", "value": 0.0204767385}, {"date": "2025-09-23", "symbol": "NVDA", "metric": "vol20", "value": 0.021422118}, {"date": "2025-09-24", "symbol": "NVDA", "metric": "vol20", "value": 0.0213280532}, {"date": "2025-09-25", "symbol": "NVDA", "metric": "vol20", "value": 0.0213596558}, {"date": "2025-09-26", "symbol": "NVDA", "metric": "vol20", "value": 0.0213087984}, {"date": "2025-09-29", "symbol": "NVDA", "metric": "vol20", "value": 0.0203067899}, {"date": "2025-09-30", "symbol": "NVDA", "metric": "vol20", "value": 0.0202774694}, {"date": "2025-10-01", "symbol": "NVDA", "metric": "vol20", "value": 0.0202374429}, {"date": "2025-10-02", "symbol": "NVDA", "metric": "vol20", "value": 0.0202553189}, {"date": "2025-10-03", "symbol": "NVDA", "metric": "vol20", "value": 0.0190378272}, {"date": "2025-10-06", "symbol": "NVDA", "metric": "vol20", "value": 0.0194095382}, {"date": "2025-10-07", "symbol": "NVDA", "metric": "vol20", "value": 0.0193487609}, {"date": "2025-10-08", "symbol": "NVDA", "metric": "vol20", "value": 0.0181242245}, {"date": "2025-10-09", "symbol": "NVDA", "metric": "vol20", "value": 0.0183928468}, {"date": "2025-10-10", "symbol": "NVDA", "metric": "vol20", "value": 0.0219087402}, {"date": "2025-10-13", "symbol": "NVDA", "metric": "vol20", "value": 0.0226820057}, {"date": "2025-10-14", "symbol": "NVDA", "metric": "vol20", "value": 0.0246964547}, {"date": "2025-10-15", "symbol": "NVDA", "metric": "vol20", "value": 0.0238210286}, {"date": "2025-10-16", "symbol": "NVDA", "metric": "vol20", "value": 0.0227071118}, {"date": "2025-10-17", "symbol": "NVDA", "metric": "vol20", "value": 0.0227460227}, {"date": "2025-10-20", "symbol": "NVDA", "metric": "vol20", "value": 0.0210045655}, {"date": "2025-10-21", "symbol": "NVDA", "metric": "vol20", "value": 0.020044956}, {"date": "2025-10-22", "symbol": "NVDA", "metric": "vol20", "value": 0.0199788741}, {"date": "2025-10-23", "symbol": "NVDA", "metric": "vol20", "value": 0.0200786595}, {"date": "2025-10-24", "symbol": "NVDA", "metric": "vol20", "value": 0.0206252583}, {"date": "2025-10-27", "symbol": "NVDA", "metric": "vol20", "value": 0.0210386157}, {"date": "2025-10-28", "symbol": "NVDA", "metric": "vol20", "value": 0.0230032766}, {"date": "2025-10-29", "symbol": "NVDA", "metric": "vol20", "value": 0.0237200152}, {"date": "2025-10-30", "symbol": "NVDA", "metric": "vol20", "value": 0.0243645415}, {"date": "2025-10-31", "symbol": "NVDA", "metric": "vol20", "value": 0.0242788665}, {"date": "2025-11-03", "symbol": "NVDA", "metric": "vol20", "value": 0.024305544}, {"date": "2025-11-04", "symbol": "NVDA", "metric": "vol20", "value": 0.0262979676}, {"date": "2025-11-05", "symbol": "NVDA", "metric": "vol20", "value": 0.0263507091}, {"date": "2025-11-06", "symbol": "NVDA", "metric": "vol20", "value": 0.0273885424}, {"date": "2025-11-07", "symbol": "NVDA", "metric": "vol20", "value": 0.0249464681}, {"date": "2025-11-10", "symbol": "NVDA", "metric": "vol20", "value": 0.0273813292}, {"date": "2025-11-11", "symbol": "NVDA", "metric": "vol20", "value": 0.0262397152}, {"date": "2025-11-12", "symbol": "NVDA", "metric": "vol20", "value": 0.0262143209}, {"date": "2025-11-13", "symbol": "NVDA", "metric": "vol20", "value": 0.0276153812}, {"date": "2025-11-14", "symbol": "NVDA", "metric": "vol20", "value": 0.027818778}, {"date": "2025-11-17", "symbol": "NVDA", "metric": "vol20", "value": 0.0281944595}, {"date": "2025-11-18", "symbol": "NVDA", "metric": "vol20", "value": 0.0288959286}, {"date": "2025-11-19", "symbol": "NVDA", "metric": "vol20", "value": 0.0295270515}, {"date": "2025-11-20", "symbol": "NVDA", "metric": "vol20", "value": 0.0303832532}, {"date": "2025-11-21", "symbol": "NVDA", "metric": "vol20", "value": 0.0299798908}, {"date": "2025-11-24", "symbol": "NVDA", "metric": "vol20", "value": 0.0296315535}, {"date": "2025-11-25", "symbol": "NVDA", "metric": "vol20", "value": 0.0274206873}, {"date": "2025-11-26", "symbol": "NVDA", "metric": "vol20", "value": 0.0265379618}, {"date": "2025-11-28", "symbol": "NVDA", "metric": "vol20", "value": 0.0264891646}, {"date": "2025-12-01", "symbol": "NVDA", "metric": "vol20", "value": 0.0269718409}, {"date": "2025-12-02", "symbol": "NVDA", "metric": "vol20", "value": 0.0264287816}, {"date": "2025-12-03", "symbol": "NVDA", "metric": "vol20", "value": 0.025267441}, {"date": "2025-12-04", "symbol": "NVDA", "metric": "vol20", "value": 0.0257142339}, {"date": "2025-12-05", "symbol": "NVDA", "metric": "vol20", "value": 0.0244771571}, {"date": "2025-12-08", "symbol": "NVDA", "metric": "vol20", "value": 0.0248229407}, {"date": "2025-12-09", "symbol": "NVDA", "metric": "vol20", "value": 0.0206794372}, {"date": "2025-12-10", "symbol": "NVDA", "metric": "vol20", "value": 0.0197671239}, {"date": "2025-12-11", "symbol": "NVDA", "metric": "vol20", "value": 0.0199332858}, {"date": "2025-12-12", "symbol": "NVDA", "metric": "vol20", "value": 0.0196733134}, {"date": "2025-12-15", "symbol": "NVDA", "metric": "vol20", "value": 0.0192253714}, {"date": "2025-12-16", "symbol": "NVDA", "metric": "vol20", "value": 0.0190479338}, {"date": "2025-12-17", "symbol": "NVDA", "metric": "vol20", "value": 0.0198810408}, {"date": "2025-12-18", "symbol": "NVDA", "metric": "vol20", "value": 0.0191835953}, {"date": "2025-12-19", "symbol": "NVDA", "metric": "vol20", "value": 0.0202029632}, {"date": "2025-12-22", "symbol": "NVDA", "metric": "vol20", "value": 0.0203104002}, {"date": "2025-12-23", "symbol": "NVDA", "metric": "vol20", "value": 0.0208833126}, {"date": "2025-12-24", "symbol": "NVDA", "metric": "vol20", "value": 0.0198782775}, {"date": "2025-12-26", "symbol": "NVDA", "metric": "vol20", "value": 0.0197946271}, {"date": "2025-12-29", "symbol": "NVDA", "metric": "vol20", "value": 0.0195037028}, {"date": "2025-12-30", "symbol": "NVDA", "metric": "vol20", "value": 0.0193027478}, {"date": "2025-12-31", "symbol": "NVDA", "metric": "vol20", "value": 0.019317983}, {"date": "2026-01-02", "symbol": "NVDA", "metric": "vol20", "value": 0.0192569665}, {"date": "2026-01-05", "symbol": "NVDA", "metric": "vol20", "value": 0.0188017258}, {"date": "2026-01-06", "symbol": "NVDA", "metric": "vol20", "value": 0.0187906886}, {"date": "2026-01-07", "symbol": "NVDA", "metric": "vol20", "value": 0.0185399238}, {"date": "2026-01-08", "symbol": "NVDA", "metric": "vol20", "value": 0.0192057224}, {"date": "2026-01-09", "symbol": "NVDA", "metric": "vol20", "value": 0.0191452611}, {"date": "2026-01-12", "symbol": "NVDA", "metric": "vol20", "value": 0.0187734065}, {"date": "2026-01-13", "symbol": "NVDA", "metric": "vol20", "value": 0.0169941398}, {"date": "2026-01-14", "symbol": "NVDA", "metric": "vol20", "value": 0.0174010866}, {"date": "2026-01-15", "symbol": "NVDA", "metric": "vol20", "value": 0.0178886832}, {"date": "2026-01-16", "symbol": "NVDA", "metric": "vol20", "value": 0.0152240266}, {"date": "2026-01-20", "symbol": "NVDA", "metric": "vol20", "value": 0.0182498962}, {"date": "2026-01-21", "symbol": "NVDA", "metric": "vol20", "value": 0.0172753024}, {"date": "2026-01-22", "symbol": "NVDA", "metric": "vol20", "value": 0.017052026}, {"date": "2026-01-23", "symbol": "NVDA", "metric": "vol20", "value": 0.0159908872}, {"date": "2026-01-26", "symbol": "NVDA", "metric": "vol20", "value": 0.0160376649}, {"date": "2025-07-31", "symbol": "AAPL", "metric": "volume", "value": 80698400}, {"date": "2025-08-01", "symbol": "AAPL", "metric": "volume", "value": 104434500}, {"date": "2025-08-04", "symbol": "AAPL", "metric": "volume", "value": 75109300}, {"date": "2025-08-05", "symbol": "AAPL", "metric": "volume", "value": 44155100}, {"date": "2025-08-06", "symbol": "AAPL", "metric": "volume", "value": 108483100}, {"date": "2025-08-07", "symbol": "AAPL", "metric": "volume", "value": 90224800}, {"date": "2025-08-08", "symbol": "AAPL", "metric": "volume", "value": 113854000}, {"date": "2025-08-11", "symbol": "AAPL", "metric": "volume", "value": 61806100}, {"date": "2025-08-12", "symbol": "AAPL", "metric": "volume", "value": 55626200}, {"date": "2025-08-13", "symbol": "AAPL", "metric": "volume", "value": 69878500}, {"date": "2025-08-14", "symbol": "AAPL", "metric": "volume", "value": 51916300}, {"date": "2025-08-15", "symbol": "AAPL", "metric": "volume", "value": 56038700}, {"date": "2025-08-18", "symbol": "AAPL", "metric": "volume", "value": 37476200}, {"date": "2025-08-19", "symbol": "AAPL", "metric": "volume", "value": 39402600}, {"date": "2025-08-20", "symbol": "AAPL", "metric": "volume", "value": 42263900}, {"date": "2025-08-21", "symbol": "AAPL", "metric": "volume", "value": 30621200}, {"date": "2025-08-22", "symbol": "AAPL", "metric": "volume", "value": 42477800}, {"date": "2025-08-25", "symbol": "AAPL", "metric": "volume", "value": 30983100}, {"date": "2025-08-26", "symbol": "AAPL", "metric": "volume", "value": 54575100}, {"date": "2025-08-27", "symbol": "AAPL", "metric": "volume", "value": 31259500}, {"date": "2025-08-28", "symbol": "AAPL", "metric": "volume", "value": 38074700}, {"date": "2025-08-29", "symbol": "AAPL", "metric": "volume", "value": 39418400}, {"date": "2025-09-02", "symbol": "AAPL", "metric": "volume", "value": 44075600}, {"date": "2025-09-03", "symbol": "AAPL", "metric": "volume", "value": 66427800}, {"date": "2025-09-04", "symbol": "AAPL", "metric": "volume", "value": 47549400}, {"date": "2025-09-05", "symbol": "AAPL", "metric": "volume", "value": 54870400}, {"date": "2025-09-08", "symbol": "AAPL", "metric": "volume", "value": 48999500}, {"date": "2025-09-09", "symbol": "AAPL", "metric": "volume", "value": 66313900}, {"date": "2025-09-10", "symbol": "AAPL", "metric": "volume", "value": 83440800}, {"date": "2025-09-11", "symbol": "AAPL", "metric": "volume", "value": 50208600}, {"date": "2025-09-12", "symbol": "AAPL", "metric": "volume", "value": 55824200}, {"date": "2025-09-15", "symbol": "AAPL", "metric": "volume", "value": 42699500}, {"date": "2025-09-16", "symbol": "AAPL", "metric": "volume", "value": 63421100}, {"date": "2025-09-17", "symbol": "AAPL", "metric": "volume", "value": 46508000}, {"date": "2025-09-18", "symbol": "AAPL", "metric": "volume", "value": 44249600}, {"date": "2025-09-19", "symbol": "AAPL", "metric": "volume", "value": 163741300}, {"date": "2025-09-22", "symbol": "AAPL", "metric": "volume", "value": 105517400}, {"date": "2025-09-23", "symbol": "AAPL", "metric": "volume", "value": 60275200}, {"date": "2025-09-24", "symbol": "AAPL", "metric": "volume", "value": 42303700}, {"date": "2025-09-25", "symbol": "AAPL", "metric": "volume", "value": 55202100}, {"date": "2025-09-26", "symbol": "AAPL", "metric": "volume", "value": 46076300}, {"date": "2025-09-29", "symbol": "AAPL", "metric": "volume", "value": 40127700}, {"date": "2025-09-30", "symbol": "AAPL", "metric": "volume", "value": 37704300}, {"date": "2025-10-01", "symbol": "AAPL", "metric": "volume", "value": 48713900}, {"date": "2025-10-02", "symbol": "AAPL", "metric": "volume", "value": 42630200}, {"date": "2025-10-03", "symbol": "AAPL", "metric": "volume", "value": 49155600}, {"date": "2025-10-06", "symbol": "AAPL", "metric": "volume", "value": 44664100}, {"date": "2025-10-07", "symbol": "AAPL", "metric": "volume", "value": 31955800}, {"date": "2025-10-08", "symbol": "AAPL", "metric": "volume", "value": 36496900}, {"date": "2025-10-09", "symbol": "AAPL", "metric": "volume", "value": 38322000}, {"date": "2025-10-10", "symbol": "AAPL", "metric": "volume", "value": 61999100}, {"date": "2025-10-13", "symbol": "AAPL", "metric": "volume", "value": 38142900}, {"date": "2025-10-14", "symbol": "AAPL", "metric": "volume", "value": 35478000}, {"date": "2025-10-15", "symbol": "AAPL", "metric": "volume", "value": 33893600}, {"date": "2025-10-16", "symbol": "AAPL", "metric": "volume", "value": 39777000}, {"date": "2025-10-17", "symbol": "AAPL", "metric": "volume", "value": 49147000}, {"date": "2025-10-20", "symbol": "AAPL", "metric": "volume", "value": 90483000}, {"date": "2025-10-21", "symbol": "AAPL", "metric": "volume", "value": 46695900}, {"date": "2025-10-22", "symbol": "AAPL", "metric": "volume", "value": 45015300}, {"date": "2025-10-23", "symbol": "AAPL", "metric": "volume", "value": 32754900}, {"date": "2025-10-24", "symbol": "AAPL", "metric": "volume", "value": 38253700}, {"date": "2025-10-27", "symbol": "AAPL", "metric": "volume", "value": 44888200}, {"date": "2025-10-28", "symbol": "AAPL", "metric": "volume", "value": 41534800}, {"date": "2025-10-29", "symbol": "AAPL", "metric": "volume", "value": 51086700}, {"date": "2025-10-30", "symbol": "AAPL", "metric": "volume", "value": 69886500}, {"date": "2025-10-31", "symbol": "AAPL", "metric": "volume", "value": 86167100}, {"date": "2025-11-03", "symbol": "AAPL", "metric": "volume", "value": 50194600}, {"date": "2025-11-04", "symbol": "AAPL", "metric": "volume", "value": 49274800}, {"date": "2025-11-05", "symbol": "AAPL", "metric": "volume", "value": 43683100}, {"date": "2025-11-06", "symbol": "AAPL", "metric": "volume", "value": 51204000}, {"date": "2025-11-07", "symbol": "AAPL", "metric": "volume", "value": 48227400}, {"date": "2025-11-10", "symbol": "AAPL", "metric": "volume", "value": 41312400}, {"date": "2025-11-11", "symbol": "AAPL", "metric": "volume", "value": 46208300}, {"date": "2025-11-12", "symbol": "AAPL", "metric": "volume", "value": 48398000}, {"date": "2025-11-13", "symbol": "AAPL", "metric": "volume", "value": 49602800}, {"date": "2025-11-14", "symbol": "AAPL", "metric": "volume", "value": 47431300}, {"date": "2025-11-17", "symbol": "AAPL", "metric": "volume", "value": 45018300}, {"date": "2025-11-18", "symbol": "AAPL", "metric": "volume", "value": 45677300}, {"date": "2025-11-19", "symbol": "AAPL", "metric": "volume", "value": 40424500}, {"date": "2025-11-20", "symbol": "AAPL", "metric": "volume", "value": 45823600}, {"date": "2025-11-21", "symbol": "AAPL", "metric": "volume", "value": 59030800}, {"date": "2025-11-24", "symbol": "AAPL", "metric": "volume", "value": 65585800}, {"date": "2025-11-25", "symbol": "AAPL", "metric": "volume", "value": 46914200}, {"date": "2025-11-26", "symbol": "AAPL", "metric": "volume", "value": 33431400}, {"date": "2025-11-28", "symbol": "AAPL", "metric": "volume", "value": 20135600}, {"date": "2025-12-01", "symbol": "AAPL", "metric": "volume", "value": 46587700}, {"date": "2025-12-02", "symbol": "AAPL", "metric": "volume", "value": 53669500}, {"date": "2025-12-03", "symbol": "AAPL", "metric": "volume", "value": 43538700}, {"date": "2025-12-04", "symbol": "AAPL", "metric": "volume", "value": 43989100}, {"date": "2025-12-05", "symbol": "AAPL", "metric": "volume", "value": 47265800}, {"date": "2025-12-08", "symbol": "AAPL", "metric": "volume", "value": 38211800}, {"date": "2025-12-09", "symbol": "AAPL", "metric": "volume", "value": 32193300}, {"date": "2025-12-10", "symbol": "AAPL", "metric": "volume", "value": 33038300}, {"date": "2025-12-11", "symbol": "AAPL", "metric": "volume", "value": 33248000}, {"date": "2025-12-12", "symbol": "AAPL", "metric": "volume", "value": 39532900}, {"date": "2025-12-15", "symbol": "AAPL", "metric": "volume", "value": 50409100}, {"date": "2025-12-16", "symbol": "AAPL", "metric": "volume", "value": 37648600}, {"date": "2025-12-17", "symbol": "AAPL", "metric": "volume", "value": 50138700}, {"date": "2025-12-18", "symbol": "AAPL", "metric": "volume", "value": 51630700}, {"date": "2025-12-19", "symbol": "AAPL", "metric": "volume", "value": 144632000}, {"date": "2025-12-22", "symbol": "AAPL", "metric": "volume", "value": 36571800}, {"date": "2025-12-23", "symbol": "AAPL", "metric": "volume", "value": 29642000}, {"date": "2025-12-24", "symbol": "AAPL", "metric": "volume", "value": 17910600}, {"date": "2025-12-26", "symbol": "AAPL", "metric": "volume", "value": 21521800}, {"date": "2025-12-29", "symbol": "AAPL", "metric": "volume", "value": 23715200}, {"date": "2025-12-30", "symbol": "AAPL", "metric": "volume", "value": 22139600}, {"date": "2025-12-31", "symbol": "AAPL", "metric": "volume", "value": 27293600}, {"date": "2026-01-02", "symbol": "AAPL", "metric": "volume", "value": 37838100}, {"date": "2026-01-05", "symbol": "AAPL", "metric": "volume", "value": 45647200}, {"date": "2026-01-06", "symbol": "AAPL", "metric": "volume", "value": 52352100}, {"date": "2026-01-07", "symbol": "AAPL", "metric": "volume", "value": 48309800}, {"date": "2026-01-08", "symbol": "AAPL", "metric": "volume", "value": 50419300}, {"date": "2026-01-09", "symbol": "AAPL", "metric": "volume", "value": 39997000}, {"date": "2026-01-12", "symbol": "AAPL", "metric": "volume", "value": 45263800}, {"date": "2026-01-13", "symbol": "AAPL", "metric": "volume", "value": 45730800}, {"date": "2026-01-14", "symbol": "AAPL", "metric": "volume", "value": 40019400}, {"date": "2026-01-15", "symbol": "AAPL", "metric": "volume", "value": 39388600}, {"date": "2026-01-16", "symbol": "AAPL", "metric": "volume", "value": 72142800}, {"date": "2026-01-20", "symbol": "AAPL", "metric": "volume", "value": 80267500}, {"date": "2026-01-21", "symbol": "AAPL", "metric": "volume", "value": 54641700}, {"date": "2026-01-22", "symbol": "AAPL", "metric": "volume", "value": 39708300}, {"date": "2026-01-23", "symbol": "AAPL", "metric": "volume", "value": 41689000}, {"date": "2026-01-26", "symbol": "AAPL", "metric": "volume", "value": 55857900}, {"date": "2025-07-31", "symbol": "AMZN", "metric": "volume", "value": 104357300}, {"date": "2025-08-01", "symbol": "AMZN", "metric": "volume", "value": 122258800}, {"date": "2025-08-04", "symbol": "AMZN", "metric": "volume", "value": 77890100}, {"date": "2025-08-05", "symbol": "AMZN", "metric": "volume", "value": 51505100}, {"date": "2025-08-06", "symbol": "AMZN", "metric": "volume", "value": 54823000}, {"date": "2025-08-07", "symbol": "AMZN", "metric": "volume", "value": 40603500}, {"date": "2025-08-08", "symbol": "AMZN", "metric": "volume", "value": 32970500}, {"date": "2025-08-11", "symbol": "AMZN", "metric": "volume", "value": 31646200}, {"date": "2025-08-12", "symbol": "AMZN", "metric": "volume", "value": 37185800}, {"date": "2025-08-13", "symbol": "AMZN", "metric": "volume", "value": 36508300}, {"date": "2025-08-14", "symbol": "AMZN", "metric": "volume", "value": 61545800}, {"date": "2025-08-15", "symbol": "AMZN", "metric": "volume", "value": 39649200}, {"date": "2025-08-18", "symbol": "AMZN", "metric": "volume", "value": 25248900}, {"date": "2025-08-19", "symbol": "AMZN", "metric": "volume", "value": 29891000}, {"date": "2025-08-20", "symbol": "AMZN", "metric": "volume", "value": 36604300}, {"date": "2025-08-21", "symbol": "AMZN", "metric": "volume", "value": 32140500}, {"date": "2025-08-22", "symbol": "AMZN", "metric": "volume", "value": 37315300}, {"date": "2025-08-25", "symbol": "AMZN", "metric": "volume", "value": 22633700}, {"date": "2025-08-26", "symbol": "AMZN", "metric": "volume", "value": 26105400}, {"date": "2025-08-27", "symbol": "AMZN", "metric": "volume", "value": 21254500}, {"date": "2025-08-28", "symbol": "AMZN", "metric": "volume", "value": 33679600}, {"date": "2025-08-29", "symbol": "AMZN", "metric": "volume", "value": 26199200}, {"date": "2025-09-02", "symbol": "AMZN", "metric": "volume", "value": 38843900}, {"date": "2025-09-03", "symbol": "AMZN", "metric": "volume", "value": 29223100}, {"date": "2025-09-04", "symbol": "AMZN", "metric": "volume", "value": 59391800}, {"date": "2025-09-05", "symbol": "AMZN", "metric": "volume", "value": 36721800}, {"date": "2025-09-08", "symbol": "AMZN", "metric": "volume", "value": 33947100}, {"date": "2025-09-09", "symbol": "AMZN", "metric": "volume", "value": 27033800}, {"date": "2025-09-10", "symbol": "AMZN", "metric": "volume", "value": 60907700}, {"date": "2025-09-11", "symbol": "AMZN", "metric": "volume", "value": 37485600}, {"date": "2025-09-12", "symbol": "AMZN", "metric": "volume", "value": 38496200}, {"date": "2025-09-15", "symbol": "AMZN", "metric": "volume", "value": 33243300}, {"date": "2025-09-16", "symbol": "AMZN", "metric": "volume", "value": 38203900}, {"date": "2025-09-17", "symbol": "AMZN", "metric": "volume", "value": 42815200}, {"date": "2025-09-18", "symbol": "AMZN", "metric": "volume", "value": 37931700}, {"date": "2025-09-19", "symbol": "AMZN", "metric": "volume", "value": 97943200}, {"date": "2025-09-22", "symbol": "AMZN", "metric": "volume", "value": 45914500}, {"date": "2025-09-23", "symbol": "AMZN", "metric": "volume", "value": 70956200}, {"date": "2025-09-24", "symbol": "AMZN", "metric": "volume", "value": 49509000}, {"date": "2025-09-25", "symbol": "AMZN", "metric": "volume", "value": 52226300}, {"date": "2025-09-26", "symbol": "AMZN", "metric": "volume", "value": 41650100}, {"date": "2025-09-29", "symbol": "AMZN", "metric": "volume", "value": 44259200}, {"date": "2025-09-30", "symbol": "AMZN", "metric": "volume", "value": 48396400}, {"date": "2025-10-01", "symbol": "AMZN", "metric": "volume", "value": 43933800}, {"date": "2025-10-02", "symbol": "AMZN", "metric": "volume", "value": 41258600}, {"date": "2025-10-03", "symbol": "AMZN", "metric": "volume", "value": 43639000}, {"date": "2025-10-06", "symbol": "AMZN", "metric": "volume", "value": 43690900}, {"date": "2025-10-07", "symbol": "AMZN", "metric": "volume", "value": 31194700}, {"date": "2025-10-08", "symbol": "AMZN", "metric": "volume", "value": 46686000}, {"date": "2025-10-09", "symbol": "AMZN", "metric": "volume", "value": 46412100}, {"date": "2025-10-10", "symbol": "AMZN", "metric": "volume", "value": 72367500}, {"date": "2025-10-13", "symbol": "AMZN", "metric": "volume", "value": 37809700}, {"date": "2025-10-14", "symbol": "AMZN", "metric": "volume", "value": 45665600}, {"date": "2025-10-15", "symbol": "AMZN", "metric": "volume", "value": 45909500}, {"date": "2025-10-16", "symbol": "AMZN", "metric": "volume", "value": 42414600}, {"date": "2025-10-17", "symbol": "AMZN", "metric": "volume", "value": 45986900}, {"date": "2025-10-20", "symbol": "AMZN", "metric": "volume", "value": 38882800}, {"date": "2025-10-21", "symbol": "AMZN", "metric": "volume", "value": 50494600}, {"date": "2025-10-22", "symbol": "AMZN", "metric": "volume", "value": 44308500}, {"date": "2025-10-23", "symbol": "AMZN", "metric": "volume", "value": 31540000}, {"date": "2025-10-24", "symbol": "AMZN", "metric": "volume", "value": 38685100}, {"date": "2025-10-27", "symbol": "AMZN", "metric": "volume", "value": 38267000}, {"date": "2025-10-28", "symbol": "AMZN", "metric": "volume", "value": 47100000}, {"date": "2025-10-29", "symbol": "AMZN", "metric": "volume", "value": 52036200}, {"date": "2025-10-30", "symbol": "AMZN", "metric": "volume", "value": 102252900}, {"date": "2025-10-31", "symbol": "AMZN", "metric": "volume", "value": 166340800}, {"date": "2025-11-03", "symbol": "AMZN", "metric": "volume", "value": 95997800}, {"date": "2025-11-04", "symbol": "AMZN", "metric": "volume", "value": 51546300}, {"date": "2025-11-05", "symbol": "AMZN", "metric": "volume", "value": 40610700}, {"date": "2025-11-06", "symbol": "AMZN", "metric": "volume", "value": 46004200}, {"date": "2025-11-07", "symbol": "AMZN", "metric": "volume", "value": 46374300}, {"date": "2025-11-10", "symbol": "AMZN", "metric": "volume", "value": 36476500}, {"date": "2025-11-11", "symbol": "AMZN", "metric": "volume", "value": 23564100}, {"date": "2025-11-12", "symbol": "AMZN", "metric": "volume", "value": 31190100}, {"date": "2025-11-13", "symbol": "AMZN", "metric": "volume", "value": 41401700}, {"date": "2025-11-14", "symbol": "AMZN", "metric": "volume", "value": 38956700}, {"date": "2025-11-17", "symbol": "AMZN", "metric": "volume", "value": 59919000}, {"date": "2025-11-18", "symbol": "AMZN", "metric": "volume", "value": 60608400}, {"date": "2025-11-19", "symbol": "AMZN", "metric": "volume", "value": 58335600}, {"date": "2025-11-20", "symbol": "AMZN", "metric": "volume", "value": 50309000}, {"date": "2025-11-21", "symbol": "AMZN", "metric": "volume", "value": 68490500}, {"date": "2025-11-24", "symbol": "AMZN", "metric": "volume", "value": 54318400}, {"date": "2025-11-25", "symbol": "AMZN", "metric": "volume", "value": 39379300}, {"date": "2025-11-26", "symbol": "AMZN", "metric": "volume", "value": 38497900}, {"date": "2025-11-28", "symbol": "AMZN", "metric": "volume", "value": 20292300}, {"date": "2025-12-01", "symbol": "AMZN", "metric": "volume", "value": 42904000}, {"date": "2025-12-02", "symbol": "AMZN", "metric": "volume", "value": 45785400}, {"date": "2025-12-03", "symbol": "AMZN", "metric": "volume", "value": 35495100}, {"date": "2025-12-04", "symbol": "AMZN", "metric": "volume", "value": 45683200}, {"date": "2025-12-05", "symbol": "AMZN", "metric": "volume", "value": 33117400}, {"date": "2025-12-08", "symbol": "AMZN", "metric": "volume", "value": 35019200}, {"date": "2025-12-09", "symbol": "AMZN", "metric": "volume", "value": 25841700}, {"date": "2025-12-10", "symbol": "AMZN", "metric": "volume", "value": 38790700}, {"date": "2025-12-11", "symbol": "AMZN", "metric": "volume", "value": 28249600}, {"date": "2025-12-12", "symbol": "AMZN", "metric": "volume", "value": 35639100}, {"date": "2025-12-15", "symbol": "AMZN", "metric": "volume", "value": 47286100}, {"date": "2025-12-16", "symbol": "AMZN", "metric": "volume", "value": 39298900}, {"date": "2025-12-17", "symbol": "AMZN", "metric": "volume", "value": 44034400}, {"date": "2025-12-18", "symbol": "AMZN", "metric": "volume", "value": 50272400}, {"date": "2025-12-19", "symbol": "AMZN", "metric": "volume", "value": 85544400}, {"date": "2025-12-22", "symbol": "AMZN", "metric": "volume", "value": 32261300}, {"date": "2025-12-23", "symbol": "AMZN", "metric": "volume", "value": 29230200}, {"date": "2025-12-24", "symbol": "AMZN", "metric": "volume", "value": 11420500}, {"date": "2025-12-26", "symbol": "AMZN", "metric": "volume", "value": 15994700}, {"date": "2025-12-29", "symbol": "AMZN", "metric": "volume", "value": 19797900}, {"date": "2025-12-30", "symbol": "AMZN", "metric": "volume", "value": 21910500}, {"date": "2025-12-31", "symbol": "AMZN", "metric": "volume", "value": 24383700}, {"date": "2026-01-02", "symbol": "AMZN", "metric": "volume", "value": 51456200}, {"date": "2026-01-05", "symbol": "AMZN", "metric": "volume", "value": 49733300}, {"date": "2026-01-06", "symbol": "AMZN", "metric": "volume", "value": 53764700}, {"date": "2026-01-07", "symbol": "AMZN", "metric": "volume", "value": 42236500}, {"date": "2026-01-08", "symbol": "AMZN", "metric": "volume", "value": 39509800}, {"date": "2026-01-09", "symbol": "AMZN", "metric": "volume", "value": 34560000}, {"date": "2026-01-12", "symbol": "AMZN", "metric": "volume", "value": 35867800}, {"date": "2026-01-13", "symbol": "AMZN", "metric": "volume", "value": 38371800}, {"date": "2026-01-14", "symbol": "AMZN", "metric": "volume", "value": 41410600}, {"date": "2026-01-15", "symbol": "AMZN", "metric": "volume", "value": 43003600}, {"date": "2026-01-16", "symbol": "AMZN", "metric": "volume", "value": 45888300}, {"date": "2026-01-20", "symbol": "AMZN", "metric": "volume", "value": 47737900}, {"date": "2026-01-21", "symbol": "AMZN", "metric": "volume", "value": 47276100}, {"date": "2026-01-22", "symbol": "AMZN", "metric": "volume", "value": 31913300}, {"date": "2026-01-23", "symbol": "AMZN", "metric": "volume", "value": 33778500}, {"date": "2026-01-26", "symbol": "AMZN", "metric": "volume", "value": 32764700}, {"date": "2025-07-31", "symbol": "GOOGL", "metric": "volume", "value": 51329200}, {"date": "2025-08-01", "symbol": "GOOGL", "metric": "volume", "value": 34832200}, {"date": "2025-08-04", "symbol": "GOOGL", "metric": "volume", "value": 31547400}, {"date": "2025-08-05", "symbol": "GOOGL", "metric": "volume", "value": 31602300}, {"date": "2025-08-06", "symbol": "GOOGL", "metric": "volume", "value": 21562900}, {"date": "2025-08-07", "symbol": "GOOGL", "metric": "volume", "value": 26321800}, {"date": "2025-08-08", "symbol": "GOOGL", "metric": "volume", "value": 39161800}, {"date": "2025-08-11", "symbol": "GOOGL", "metric": "volume", "value": 25832400}, {"date": "2025-08-12", "symbol": "GOOGL", "metric": "volume", "value": 30397900}, {"date": "2025-08-13", "symbol": "GOOGL", "metric": "volume", "value": 28342900}, {"date": "2025-08-14", "symbol": "GOOGL", "metric": "volume", "value": 25230400}, {"date": "2025-08-15", "symbol": "GOOGL", "metric": "volume", "value": 34931400}, {"date": "2025-08-18", "symbol": "GOOGL", "metric": "volume", "value": 18526600}, {"date": "2025-08-19", "symbol": "GOOGL", "metric": "volume", "value": 24240200}, {"date": "2025-08-20", "symbol": "GOOGL", "metric": "volume", "value": 28955500}, {"date": "2025-08-21", "symbol": "GOOGL", "metric": "volume", "value": 19774600}, {"date": "2025-08-22", "symbol": "GOOGL", "metric": "volume", "value": 42827000}, {"date": "2025-08-25", "symbol": "GOOGL", "metric": "volume", "value": 29928900}, {"date": "2025-08-26", "symbol": "GOOGL", "metric": "volume", "value": 28464100}, {"date": "2025-08-27", "symbol": "GOOGL", "metric": "volume", "value": 23022900}, {"date": "2025-08-28", "symbol": "GOOGL", "metric": "volume", "value": 32339300}, {"date": "2025-08-29", "symbol": "GOOGL", "metric": "volume", "value": 39728400}, {"date": "2025-09-02", "symbol": "GOOGL", "metric": "volume", "value": 47523000}, {"date": "2025-09-03", "symbol": "GOOGL", "metric": "volume", "value": 103336100}, {"date": "2025-09-04", "symbol": "GOOGL", "metric": "volume", "value": 51684200}, {"date": "2025-09-05", "symbol": "GOOGL", "metric": "volume", "value": 46588900}, {"date": "2025-09-08", "symbol": "GOOGL", "metric": "volume", "value": 32474700}, {"date": "2025-09-09", "symbol": "GOOGL", "metric": "volume", "value": 38061000}, {"date": "2025-09-10", "symbol": "GOOGL", "metric": "volume", "value": 35141100}, {"date": "2025-09-11", "symbol": "GOOGL", "metric": "volume", "value": 30599300}, {"date": "2025-09-12", "symbol": "GOOGL", "metric": "volume", "value": 26771600}, {"date": "2025-09-15", "symbol": "GOOGL", "metric": "volume", "value": 58383800}, {"date": "2025-09-16", "symbol": "GOOGL", "metric": "volume", "value": 34109700}, {"date": "2025-09-17", "symbol": "GOOGL", "metric": "volume", "value": 34108000}, {"date": "2025-09-18", "symbol": "GOOGL", "metric": "volume", "value": 31239500}, {"date": "2025-09-19", "symbol": "GOOGL", "metric": "volume", "value": 55571400}, {"date": "2025-09-22", "symbol": "GOOGL", "metric": "volume", "value": 32290500}, {"date": "2025-09-23", "symbol": "GOOGL", "metric": "volume", "value": 26628000}, {"date": "2025-09-24", "symbol": "GOOGL", "metric": "volume", "value": 28201000}, {"date": "2025-09-25", "symbol": "GOOGL", "metric": "volume", "value": 31020400}, {"date": "2025-09-26", "symbol": "GOOGL", "metric": "volume", "value": 18503200}, {"date": "2025-09-29", "symbol": "GOOGL", "metric": "volume", "value": 32505800}, {"date": "2025-09-30", "symbol": "GOOGL", "metric": "volume", "value": 34724300}, {"date": "2025-10-01", "symbol": "GOOGL", "metric": "volume", "value": 31658200}, {"date": "2025-10-02", "symbol": "GOOGL", "metric": "volume", "value": 25483300}, {"date": "2025-10-03", "symbol": "GOOGL", "metric": "volume", "value": 30249600}, {"date": "2025-10-06", "symbol": "GOOGL", "metric": "volume", "value": 28894700}, {"date": "2025-10-07", "symbol": "GOOGL", "metric": "volume", "value": 23181300}, {"date": "2025-10-08", "symbol": "GOOGL", "metric": "volume", "value": 21307100}, {"date": "2025-10-09", "symbol": "GOOGL", "metric": "volume", "value": 27892100}, {"date": "2025-10-10", "symbol": "GOOGL", "metric": "volume", "value": 33180300}, {"date": "2025-10-13", "symbol": "GOOGL", "metric": "volume", "value": 24995000}, {"date": "2025-10-14", "symbol": "GOOGL", "metric": "volume", "value": 22111600}, {"date": "2025-10-15", "symbol": "GOOGL", "metric": "volume", "value": 27007700}, {"date": "2025-10-16", "symbol": "GOOGL", "metric": "volume", "value": 27997200}, {"date": "2025-10-17", "symbol": "GOOGL", "metric": "volume", "value": 29671600}, {"date": "2025-10-20", "symbol": "GOOGL", "metric": "volume", "value": 22350200}, {"date": "2025-10-21", "symbol": "GOOGL", "metric": "volume", "value": 47312100}, {"date": "2025-10-22", "symbol": "GOOGL", "metric": "volume", "value": 35029400}, {"date": "2025-10-23", "symbol": "GOOGL", "metric": "volume", "value": 19901400}, {"date": "2025-10-24", "symbol": "GOOGL", "metric": "volume", "value": 28655100}, {"date": "2025-10-27", "symbol": "GOOGL", "metric": "volume", "value": 35235200}, {"date": "2025-10-28", "symbol": "GOOGL", "metric": "volume", "value": 29738600}, {"date": "2025-10-29", "symbol": "GOOGL", "metric": "volume", "value": 43580300}, {"date": "2025-10-30", "symbol": "GOOGL", "metric": "volume", "value": 74876000}, {"date": "2025-10-31", "symbol": "GOOGL", "metric": "volume", "value": 39267900}, {"date": "2025-11-03", "symbol": "GOOGL", "metric": "volume", "value": 29786000}, {"date": "2025-11-04", "symbol": "GOOGL", "metric": "volume", "value": 30078400}, {"date": "2025-11-05", "symbol": "GOOGL", "metric": "volume", "value": 31010300}, {"date": "2025-11-06", "symbol": "GOOGL", "metric": "volume", "value": 37173600}, {"date": "2025-11-07", "symbol": "GOOGL", "metric": "volume", "value": 34479600}, {"date": "2025-11-10", "symbol": "GOOGL", "metric": "volume", "value": 29557300}, {"date": "2025-11-11", "symbol": "GOOGL", "metric": "volume", "value": 19842100}, {"date": "2025-11-12", "symbol": "GOOGL", "metric": "volume", "value": 24829900}, {"date": "2025-11-13", "symbol": "GOOGL", "metric": "volume", "value": 29494000}, {"date": "2025-11-14", "symbol": "GOOGL", "metric": "volume", "value": 31647200}, {"date": "2025-11-17", "symbol": "GOOGL", "metric": "volume", "value": 52670200}, {"date": "2025-11-18", "symbol": "GOOGL", "metric": "volume", "value": 49158700}, {"date": "2025-11-19", "symbol": "GOOGL", "metric": "volume", "value": 68198900}, {"date": "2025-11-20", "symbol": "GOOGL", "metric": "volume", "value": 62025200}, {"date": "2025-11-21", "symbol": "GOOGL", "metric": "volume", "value": 74137700}, {"date": "2025-11-24", "symbol": "GOOGL", "metric": "volume", "value": 85165100}, {"date": "2025-11-25", "symbol": "GOOGL", "metric": "volume", "value": 88632100}, {"date": "2025-11-26", "symbol": "GOOGL", "metric": "volume", "value": 51373400}, {"date": "2025-11-28", "symbol": "GOOGL", "metric": "volume", "value": 26018600}, {"date": "2025-12-01", "symbol": "GOOGL", "metric": "volume", "value": 41183000}, {"date": "2025-12-02", "symbol": "GOOGL", "metric": "volume", "value": 35854700}, {"date": "2025-12-03", "symbol": "GOOGL", "metric": "volume", "value": 41838300}, {"date": "2025-12-04", "symbol": "GOOGL", "metric": "volume", "value": 31240900}, {"date": "2025-12-05", "symbol": "GOOGL", "metric": "volume", "value": 28851700}, {"date": "2025-12-08", "symbol": "GOOGL", "metric": "volume", "value": 33909400}, {"date": "2025-12-09", "symbol": "GOOGL", "metric": "volume", "value": 30194000}, {"date": "2025-12-10", "symbol": "GOOGL", "metric": "volume", "value": 33428900}, {"date": "2025-12-11", "symbol": "GOOGL", "metric": "volume", "value": 42353700}, {"date": "2025-12-12", "symbol": "GOOGL", "metric": "volume", "value": 35940200}, {"date": "2025-12-15", "symbol": "GOOGL", "metric": "volume", "value": 29151900}, {"date": "2025-12-16", "symbol": "GOOGL", "metric": "volume", "value": 30585000}, {"date": "2025-12-17", "symbol": "GOOGL", "metric": "volume", "value": 43930400}, {"date": "2025-12-18", "symbol": "GOOGL", "metric": "volume", "value": 33518000}, {"date": "2025-12-19", "symbol": "GOOGL", "metric": "volume", "value": 59943200}, {"date": "2025-12-22", "symbol": "GOOGL", "metric": "volume", "value": 26429900}, {"date": "2025-12-23", "symbol": "GOOGL", "metric": "volume", "value": 25478700}, {"date": "2025-12-24", "symbol": "GOOGL", "metric": "volume", "value": 10097400}, {"date": "2025-12-26", "symbol": "GOOGL", "metric": "volume", "value": 10899000}, {"date": "2025-12-29", "symbol": "GOOGL", "metric": "volume", "value": 19621800}, {"date": "2025-12-30", "symbol": "GOOGL", "metric": "volume", "value": 17380900}, {"date": "2025-12-31", "symbol": "GOOGL", "metric": "volume", "value": 16377700}, {"date": "2026-01-02", "symbol": "GOOGL", "metric": "volume", "value": 32009400}, {"date": "2026-01-05", "symbol": "GOOGL", "metric": "volume", "value": 30195600}, {"date": "2026-01-06", "symbol": "GOOGL", "metric": "volume", "value": 31212100}, {"date": "2026-01-07", "symbol": "GOOGL", "metric": "volume", "value": 35104400}, {"date": "2026-01-08", "symbol": "GOOGL", "metric": "volume", "value": 31896100}, {"date": "2026-01-09", "symbol": "GOOGL", "metric": "volume", "value": 26214200}, {"date": "2026-01-12", "symbol": "GOOGL", "metric": "volume", "value": 33923900}, {"date": "2026-01-13", "symbol": "GOOGL", "metric": "volume", "value": 33517600}, {"date": "2026-01-14", "symbol": "GOOGL", "metric": "volume", "value": 28525600}, {"date": "2026-01-15", "symbol": "GOOGL", "metric": "volume", "value": 28442400}, {"date": "2026-01-16", "symbol": "GOOGL", "metric": "volume", "value": 40341600}, {"date": "2026-01-20", "symbol": "GOOGL", "metric": "volume", "value": 35361000}, {"date": "2026-01-21", "symbol": "GOOGL", "metric": "volume", "value": 35386600}, {"date": "2026-01-22", "symbol": "GOOGL", "metric": "volume", "value": 26253600}, {"date": "2026-01-23", "symbol": "GOOGL", "metric": "volume", "value": 27280000}, {"date": "2026-01-26", "symbol": "GOOGL", "metric": "volume", "value": 26011100}, {"date": "2025-07-31", "symbol": "META", "metric": "volume", "value": 38831100}, {"date": "2025-08-01", "symbol": "META", "metric": "volume", "value": 19028700}, {"date": "2025-08-04", "symbol": "META", "metric": "volume", "value": 15801700}, {"date": "2025-08-05", "symbol": "META", "metric": "volume", "value": 11640300}, {"date": "2025-08-06", "symbol": "META", "metric": "volume", "value": 9733900}, {"date": "2025-08-07", "symbol": "META", "metric": "volume", "value": 9019700}, {"date": "2025-08-08", "symbol": "META", "metric": "volume", "value": 7320800}, {"date": "2025-08-11", "symbol": "META", "metric": "volume", "value": 7612000}, {"date": "2025-08-12", "symbol": "META", "metric": "volume", "value": 14563100}, {"date": "2025-08-13", "symbol": "META", "metric": "volume", "value": 8811800}, {"date": "2025-08-14", "symbol": "META", "metric": "volume", "value": 8116200}, {"date": "2025-08-15", "symbol": "META", "metric": "volume", "value": 13375400}, {"date": "2025-08-18", "symbol": "META", "metric": "volume", "value": 16513700}, {"date": "2025-08-19", "symbol": "META", "metric": "volume", "value": 12286700}, {"date": "2025-08-20", "symbol": "META", "metric": "volume", "value": 11898200}, {"date": "2025-08-21", "symbol": "META", "metric": "volume", "value": 8876300}, {"date": "2025-08-22", "symbol": "META", "metric": "volume", "value": 10612700}, {"date": "2025-08-25", "symbol": "META", "metric": "volume", "value": 6861200}, {"date": "2025-08-26", "symbol": "META", "metric": "volume", "value": 7601800}, {"date": "2025-08-27", "symbol": "META", "metric": "volume", "value": 8315400}, {"date": "2025-08-28", "symbol": "META", "metric": "volume", "value": 7468000}, {"date": "2025-08-29", "symbol": "META", "metric": "volume", "value": 9070500}, {"date": "2025-09-02", "symbol": "META", "metric": "volume", "value": 9350900}, {"date": "2025-09-03", "symbol": "META", "metric": "volume", "value": 7699300}, {"date": "2025-09-04", "symbol": "META", "metric": "volume", "value": 11439100}, {"date": "2025-09-05", "symbol": "META", "metric": "volume", "value": 9663400}, {"date": "2025-09-08", "symbol": "META", "metric": "volume", "value": 13087800}, {"date": "2025-09-09", "symbol": "META", "metric": "volume", "value": 10999000}, {"date": "2025-09-10", "symbol": "META", "metric": "volume", "value": 12478300}, {"date": "2025-09-11", "symbol": "META", "metric": "volume", "value": 7923300}, {"date": "2025-09-12", "symbol": "META", "metric": "volume", "value": 8248600}, {"date": "2025-09-15", "symbol": "META", "metric": "volume", "value": 10533800}, {"date": "2025-09-16", "symbol": "META", "metric": "volume", "value": 11782500}, {"date": "2025-09-17", "symbol": "META", "metric": "volume", "value": 9400900}, {"date": "2025-09-18", "symbol": "META", "metric": "volume", "value": 10955000}, {"date": "2025-09-19", "symbol": "META", "metric": "volume", "value": 23696800}, {"date": "2025-09-22", "symbol": "META", "metric": "volume", "value": 11706900}, {"date": "2025-09-23", "symbol": "META", "metric": "volume", "value": 10872600}, {"date": "2025-09-24", "symbol": "META", "metric": "volume", "value": 8828200}, {"date": "2025-09-25", "symbol": "META", "metric": "volume", "value": 10591100}, {"date": "2025-09-26", "symbol": "META", "metric": "volume", "value": 9696300}, {"date": "2025-09-29", "symbol": "META", "metric": "volume", "value": 9246800}, {"date": "2025-09-30", "symbol": "META", "metric": "volume", "value": 16226800}, {"date": "2025-10-01", "symbol": "META", "metric": "volume", "value": 20419600}, {"date": "2025-10-02", "symbol": "META", "metric": "volume", "value": 11415300}, {"date": "2025-10-03", "symbol": "META", "metric": "volume", "value": 16154300}, {"date": "2025-10-06", "symbol": "META", "metric": "volume", "value": 21654700}, {"date": "2025-10-07", "symbol": "META", "metric": "volume", "value": 12062900}, {"date": "2025-10-08", "symbol": "META", "metric": "volume", "value": 10790600}, {"date": "2025-10-09", "symbol": "META", "metric": "volume", "value": 12717200}, {"date": "2025-10-10", "symbol": "META", "metric": "volume", "value": 16980100}, {"date": "2025-10-13", "symbol": "META", "metric": "volume", "value": 9251800}, {"date": "2025-10-14", "symbol": "META", "metric": "volume", "value": 8829800}, {"date": "2025-10-15", "symbol": "META", "metric": "volume", "value": 10246800}, {"date": "2025-10-16", "symbol": "META", "metric": "volume", "value": 9017000}, {"date": "2025-10-17", "symbol": "META", "metric": "volume", "value": 12232400}, {"date": "2025-10-20", "symbol": "META", "metric": "volume", "value": 8900200}, {"date": "2025-10-21", "symbol": "META", "metric": "volume", "value": 7647300}, {"date": "2025-10-22", "symbol": "META", "metric": "volume", "value": 8734500}, {"date": "2025-10-23", "symbol": "META", "metric": "volume", "value": 9856000}, {"date": "2025-10-24", "symbol": "META", "metric": "volume", "value": 9151300}, {"date": "2025-10-27", "symbol": "META", "metric": "volume", "value": 11321100}, {"date": "2025-10-28", "symbol": "META", "metric": "volume", "value": 12193800}, {"date": "2025-10-29", "symbol": "META", "metric": "volume", "value": 26818600}, {"date": "2025-10-30", "symbol": "META", "metric": "volume", "value": 88440100}, {"date": "2025-10-31", "symbol": "META", "metric": "volume", "value": 56953200}, {"date": "2025-11-03", "symbol": "META", "metric": "volume", "value": 33003600}, {"date": "2025-11-04", "symbol": "META", "metric": "volume", "value": 27356600}, {"date": "2025-11-05", "symbol": "META", "metric": "volume", "value": 20219900}, {"date": "2025-11-06", "symbol": "META", "metric": "volume", "value": 23628800}, {"date": "2025-11-07", "symbol": "META", "metric": "volume", "value": 29946800}, {"date": "2025-11-10", "symbol": "META", "metric": "volume", "value": 19245000}, {"date": "2025-11-11", "symbol": "META", "metric": "volume", "value": 13302200}, {"date": "2025-11-12", "symbol": "META", "metric": "volume", "value": 24493300}, {"date": "2025-11-13", "symbol": "META", "metric": "volume", "value": 20973800}, {"date": "2025-11-14", "symbol": "META", "metric": "volume", "value": 20724100}, {"date": "2025-11-17", "symbol": "META", "metric": "volume", "value": 16501300}, {"date": "2025-11-18", "symbol": "META", "metric": "volume", "value": 25500600}, {"date": "2025-11-19", "symbol": "META", "metric": "volume", "value": 24744700}, {"date": "2025-11-20", "symbol": "META", "metric": "volume", "value": 20603000}, {"date": "2025-11-21", "symbol": "META", "metric": "volume", "value": 21052600}, {"date": "2025-11-24", "symbol": "META", "metric": "volume", "value": 23554900}, {"date": "2025-11-25", "symbol": "META", "metric": "volume", "value": 25213000}, {"date": "2025-11-26", "symbol": "META", "metric": "volume", "value": 15209500}, {"date": "2025-11-28", "symbol": "META", "metric": "volume", "value": 11033200}, {"date": "2025-12-01", "symbol": "META", "metric": "volume", "value": 13029900}, {"date": "2025-12-02", "symbol": "META", "metric": "volume", "value": 11640900}, {"date": "2025-12-03", "symbol": "META", "metric": "volume", "value": 11134300}, {"date": "2025-12-04", "symbol": "META", "metric": "volume", "value": 29874600}, {"date": "2025-12-05", "symbol": "META", "metric": "volume", "value": 21207900}, {"date": "2025-12-08", "symbol": "META", "metric": "volume", "value": 13161000}, {"date": "2025-12-09", "symbol": "META", "metric": "volume", "value": 12997100}, {"date": "2025-12-10", "symbol": "META", "metric": "volume", "value": 16910900}, {"date": "2025-12-11", "symbol": "META", "metric": "volume", "value": 13056700}, {"date": "2025-12-12", "symbol": "META", "metric": "volume", "value": 14016900}, {"date": "2025-12-15", "symbol": "META", "metric": "volume", "value": 15549100}, {"date": "2025-12-16", "symbol": "META", "metric": "volume", "value": 14309100}, {"date": "2025-12-17", "symbol": "META", "metric": "volume", "value": 15598500}, {"date": "2025-12-18", "symbol": "META", "metric": "volume", "value": 20260300}, {"date": "2025-12-19", "symbol": "META", "metric": "volume", "value": 49977100}, {"date": "2025-12-22", "symbol": "META", "metric": "volume", "value": 15659400}, {"date": "2025-12-23", "symbol": "META", "metric": "volume", "value": 8486800}, {"date": "2025-12-24", "symbol": "META", "metric": "volume", "value": 5627500}, {"date": "2025-12-26", "symbol": "META", "metric": "volume", "value": 7133800}, {"date": "2025-12-29", "symbol": "META", "metric": "volume", "value": 8506500}, {"date": "2025-12-30", "symbol": "META", "metric": "volume", "value": 9187500}, {"date": "2025-12-31", "symbol": "META", "metric": "volume", "value": 7940400}, {"date": "2026-01-02", "symbol": "META", "metric": "volume", "value": 13726500}, {"date": "2026-01-05", "symbol": "META", "metric": "volume", "value": 12213700}, {"date": "2026-01-06", "symbol": "META", "metric": "volume", "value": 11074400}, {"date": "2026-01-07", "symbol": "META", "metric": "volume", "value": 12846300}, {"date": "2026-01-08", "symbol": "META", "metric": "volume", "value": 11921700}, {"date": "2026-01-09", "symbol": "META", "metric": "volume", "value": 11634900}, {"date": "2026-01-12", "symbol": "META", "metric": "volume", "value": 14797200}, {"date": "2026-01-13", "symbol": "META", "metric": "volume", "value": 18030400}, {"date": "2026-01-14", "symbol": "META", "metric": "volume", "value": 15527900}, {"date": "2026-01-15", "symbol": "META", "metric": "volume", "value": 13076100}, {"date": "2026-01-16", "symbol": "META", "metric": "volume", "value": 17012500}, {"date": "2026-01-20", "symbol": "META", "metric": "volume", "value": 15169600}, {"date": "2026-01-21", "symbol": "META", "metric": "volume", "value": 14494700}, {"date": "2026-01-22", "symbol": "META", "metric": "volume", "value": 21394700}, {"date": "2026-01-23", "symbol": "META", "metric": "volume", "value": 22797700}, {"date": "2026-01-26", "symbol": "META", "metric": "volume", "value": 16293000}, {"date": "2025-07-31", "symbol": "MSFT", "metric": "volume", "value": 51617300}, {"date": "2025-08-01", "symbol": "MSFT", "metric": "volume", "value": 28977600}, {"date": "2025-08-04", "symbol": "MSFT", "metric": "volume", "value": 25349000}, {"date": "2025-08-05", "symbol": "MSFT", "metric": "volume", "value": 19171600}, {"date": "2025-08-06", "symbol": "MSFT", "metric": "volume", "value": 21355700}, {"date": "2025-08-07", "symbol": "MSFT", "metric": "volume", "value": 16079100}, {"date": "2025-08-08", "symbol": "MSFT", "metric": "volume", "value": 15531000}, {"date": "2025-08-11", "symbol": "MSFT", "metric": "volume", "value": 20194400}, {"date": "2025-08-12", "symbol": "MSFT", "metric": "volume", "value": 18667000}, {"date": "2025-08-13", "symbol": "MSFT", "metric": "volume", "value": 19619200}, {"date": "2025-08-14", "symbol": "MSFT", "metric": "volume", "value": 20269100}, {"date": "2025-08-15", "symbol": "MSFT", "metric": "volume", "value": 25213300}, {"date": "2025-08-18", "symbol": "MSFT", "metric": "volume", "value": 23760600}, {"date": "2025-08-19", "symbol": "MSFT", "metric": "volume", "value": 21481000}, {"date": "2025-08-20", "symbol": "MSFT", "metric": "volume", "value": 27723000}, {"date": "2025-08-21", "symbol": "MSFT", "metric": "volume", "value": 18443300}, {"date": "2025-08-22", "symbol": "MSFT", "metric": "volume", "value": 24324200}, {"date": "2025-08-25", "symbol": "MSFT", "metric": "volume", "value": 21638600}, {"date": "2025-08-26", "symbol": "MSFT", "metric": "volume", "value": 30835700}, {"date": "2025-08-27", "symbol": "MSFT", "metric": "volume", "value": 17277900}, {"date": "2025-08-28", "symbol": "MSFT", "metric": "volume", "value": 18015600}, {"date": "2025-08-29", "symbol": "MSFT", "metric": "volume", "value": 20961600}, {"date": "2025-09-02", "symbol": "MSFT", "metric": "volume", "value": 18128000}, {"date": "2025-09-03", "symbol": "MSFT", "metric": "volume", "value": 16345100}, {"date": "2025-09-04", "symbol": "MSFT", "metric": "volume", "value": 15509500}, {"date": "2025-09-05", "symbol": "MSFT", "metric": "volume", "value": 31994800}, {"date": "2025-09-08", "symbol": "MSFT", "metric": "volume", "value": 16771000}, {"date": "2025-09-09", "symbol": "MSFT", "metric": "volume", "value": 14410500}, {"date": "2025-09-10", "symbol": "MSFT", "metric": "volume", "value": 21611800}, {"date": "2025-09-11", "symbol": "MSFT", "metric": "volume", "value": 18881600}, {"date": "2025-09-12", "symbol": "MSFT", "metric": "volume", "value": 23624900}, {"date": "2025-09-15", "symbol": "MSFT", "metric": "volume", "value": 17143800}, {"date": "2025-09-16", "symbol": "MSFT", "metric": "volume", "value": 19711900}, {"date": "2025-09-17", "symbol": "MSFT", "metric": "volume", "value": 15816600}, {"date": "2025-09-18", "symbol": "MSFT", "metric": "volume", "value": 18913700}, {"date": "2025-09-19", "symbol": "MSFT", "metric": "volume", "value": 52474100}, {"date": "2025-09-22", "symbol": "MSFT", "metric": "volume", "value": 20009300}, {"date": "2025-09-23", "symbol": "MSFT", "metric": "volume", "value": 19799600}, {"date": "2025-09-24", "symbol": "MSFT", "metric": "volume", "value": 13533700}, {"date": "2025-09-25", "symbol": "MSFT", "metric": "volume", "value": 15786500}, {"date": "2025-09-26", "symbol": "MSFT", "metric": "volume", "value": 16213100}, {"date": "2025-09-29", "symbol": "MSFT", "metric": "volume", "value": 17617800}, {"date": "2025-09-30", "symbol": "MSFT", "metric": "volume", "value": 19728200}, {"date": "2025-10-01", "symbol": "MSFT", "metric": "volume", "value": 22632300}, {"date": "2025-10-02", "symbol": "MSFT", "metric": "volume", "value": 21222900}, {"date": "2025-10-03", "symbol": "MSFT", "metric": "volume", "value": 15112300}, {"date": "2025-10-06", "symbol": "MSFT", "metric": "volume", "value": 21388600}, {"date": "2025-10-07", "symbol": "MSFT", "metric": "volume", "value": 14615200}, {"date": "2025-10-08", "symbol": "MSFT", "metric": "volume", "value": 13363400}, {"date": "2025-10-09", "symbol": "MSFT", "metric": "volume", "value": 18343600}, {"date": "2025-10-10", "symbol": "MSFT", "metric": "volume", "value": 24133800}, {"date": "2025-10-13", "symbol": "MSFT", "metric": "volume", "value": 14284200}, {"date": "2025-10-14", "symbol": "MSFT", "metric": "volume", "value": 14684300}, {"date": "2025-10-15", "symbol": "MSFT", "metric": "volume", "value": 14694700}, {"date": "2025-10-16", "symbol": "MSFT", "metric": "volume", "value": 15559600}, {"date": "2025-10-17", "symbol": "MSFT", "metric": "volume", "value": 19867800}, {"date": "2025-10-20", "symbol": "MSFT", "metric": "volume", "value": 14665600}, {"date": "2025-10-21", "symbol": "MSFT", "metric": "volume", "value": 15586200}, {"date": "2025-10-22", "symbol": "MSFT", "metric": "volume", "value": 18962700}, {"date": "2025-10-23", "symbol": "MSFT", "metric": "volume", "value": 14023500}, {"date": "2025-10-24", "symbol": "MSFT", "metric": "volume", "value": 15532400}, {"date": "2025-10-27", "symbol": "MSFT", "metric": "volume", "value": 18734700}, {"date": "2025-10-28", "symbol": "MSFT", "metric": "volume", "value": 29986700}, {"date": "2025-10-29", "symbol": "MSFT", "metric": "volume", "value": 36023000}, {"date": "2025-10-30", "symbol": "MSFT", "metric": "volume", "value": 41023100}, {"date": "2025-10-31", "symbol": "MSFT", "metric": "volume", "value": 34006400}, {"date": "2025-11-03", "symbol": "MSFT", "metric": "volume", "value": 22374700}, {"date": "2025-11-04", "symbol": "MSFT", "metric": "volume", "value": 20958700}, {"date": "2025-11-05", "symbol": "MSFT", "metric": "volume", "value": 23024300}, {"date": "2025-11-06", "symbol": "MSFT", "metric": "volume", "value": 27406500}, {"date": "2025-11-07", "symbol": "MSFT", "metric": "volume", "value": 24019800}, {"date": "2025-11-10", "symbol": "MSFT", "metric": "volume", "value": 26101500}, {"date": "2025-11-11", "symbol": "MSFT", "metric": "volume", "value": 17980000}, {"date": "2025-11-12", "symbol": "MSFT", "metric": "volume", "value": 26574900}, {"date": "2025-11-13", "symbol": "MSFT", "metric": "volume", "value": 25273100}, {"date": "2025-11-14", "symbol": "MSFT", "metric": "volume", "value": 28505700}, {"date": "2025-11-17", "symbol": "MSFT", "metric": "volume", "value": 19092800}, {"date": "2025-11-18", "symbol": "MSFT", "metric": "volume", "value": 33815100}, {"date": "2025-11-19", "symbol": "MSFT", "metric": "volume", "value": 23245300}, {"date": "2025-11-20", "symbol": "MSFT", "metric": "volume", "value": 26802500}, {"date": "2025-11-21", "symbol": "MSFT", "metric": "volume", "value": 31769200}, {"date": "2025-11-24", "symbol": "MSFT", "metric": "volume", "value": 34421000}, {"date": "2025-11-25", "symbol": "MSFT", "metric": "volume", "value": 28019800}, {"date": "2025-11-26", "symbol": "MSFT", "metric": "volume", "value": 25709100}, {"date": "2025-11-28", "symbol": "MSFT", "metric": "volume", "value": 14386700}, {"date": "2025-12-01", "symbol": "MSFT", "metric": "volume", "value": 23964000}, {"date": "2025-12-02", "symbol": "MSFT", "metric": "volume", "value": 19562700}, {"date": "2025-12-03", "symbol": "MSFT", "metric": "volume", "value": 34615100}, {"date": "2025-12-04", "symbol": "MSFT", "metric": "volume", "value": 22318200}, {"date": "2025-12-05", "symbol": "MSFT", "metric": "volume", "value": 22608700}, {"date": "2025-12-08", "symbol": "MSFT", "metric": "volume", "value": 21965900}, {"date": "2025-12-09", "symbol": "MSFT", "metric": "volume", "value": 14696100}, {"date": "2025-12-10", "symbol": "MSFT", "metric": "volume", "value": 35756200}, {"date": "2025-12-11", "symbol": "MSFT", "metric": "volume", "value": 24669200}, {"date": "2025-12-12", "symbol": "MSFT", "metric": "volume", "value": 21248100}, {"date": "2025-12-15", "symbol": "MSFT", "metric": "volume", "value": 23727700}, {"date": "2025-12-16", "symbol": "MSFT", "metric": "volume", "value": 20705600}, {"date": "2025-12-17", "symbol": "MSFT", "metric": "volume", "value": 24527200}, {"date": "2025-12-18", "symbol": "MSFT", "metric": "volume", "value": 28573500}, {"date": "2025-12-19", "symbol": "MSFT", "metric": "volume", "value": 70836100}, {"date": "2025-12-22", "symbol": "MSFT", "metric": "volume", "value": 16963000}, {"date": "2025-12-23", "symbol": "MSFT", "metric": "volume", "value": 14683600}, {"date": "2025-12-24", "symbol": "MSFT", "metric": "volume", "value": 5855900}, {"date": "2025-12-26", "symbol": "MSFT", "metric": "volume", "value": 8842200}, {"date": "2025-12-29", "symbol": "MSFT", "metric": "volume", "value": 10893400}, {"date": "2025-12-30", "symbol": "MSFT", "metric": "volume", "value": 13944500}, {"date": "2025-12-31", "symbol": "MSFT", "metric": "volume", "value": 15601600}, {"date": "2026-01-02", "symbol": "MSFT", "metric": "volume", "value": 25571600}, {"date": "2026-01-05", "symbol": "MSFT", "metric": "volume", "value": 25250300}, {"date": "2026-01-06", "symbol": "MSFT", "metric": "volume", "value": 23037700}, {"date": "2026-01-07", "symbol": "MSFT", "metric": "volume", "value": 25564200}, {"date": "2026-01-08", "symbol": "MSFT", "metric": "volume", "value": 18162600}, {"date": "2026-01-09", "symbol": "MSFT", "metric": "volume", "value": 18491000}, {"date": "2026-01-12", "symbol": "MSFT", "metric": "volume", "value": 23519900}, {"date": "2026-01-13", "symbol": "MSFT", "metric": "volume", "value": 28545800}, {"date": "2026-01-14", "symbol": "MSFT", "metric": "volume", "value": 28184300}, {"date": "2026-01-15", "symbol": "MSFT", "metric": "volume", "value": 23225800}, {"date": "2026-01-16", "symbol": "MSFT", "metric": "volume", "value": 34246700}, {"date": "2026-01-20", "symbol": "MSFT", "metric": "volume", "value": 26130000}, {"date": "2026-01-21", "symbol": "MSFT", "metric": "volume", "value": 37980500}, {"date": "2026-01-22", "symbol": "MSFT", "metric": "volume", "value": 25349400}, {"date": "2026-01-23", "symbol": "MSFT", "metric": "volume", "value": 38000200}, {"date": "2026-01-26", "symbol": "MSFT", "metric": "volume", "value": 29247100}, {"date": "2025-07-31", "symbol": "NVDA", "metric": "volume", "value": 221685400}, {"date": "2025-08-01", "symbol": "NVDA", "metric": "volume", "value": 204529000}, {"date": "2025-08-04", "symbol": "NVDA", "metric": "volume", "value": 148174600}, {"date": "2025-08-05", "symbol": "NVDA", "metric": "volume", "value": 156407600}, {"date": "2025-08-06", "symbol": "NVDA", "metric": "volume", "value": 137192300}, {"date": "2025-08-07", "symbol": "NVDA", "metric": "volume", "value": 151878400}, {"date": "2025-08-08", "symbol": "NVDA", "metric": "volume", "value": 123396700}, {"date": "2025-08-11", "symbol": "NVDA", "metric": "volume", "value": 138323200}, {"date": "2025-08-12", "symbol": "NVDA", "metric": "volume", "value": 145485700}, {"date": "2025-08-13", "symbol": "NVDA", "metric": "volume", "value": 179871700}, {"date": "2025-08-14", "symbol": "NVDA", "metric": "volume", "value": 129554000}, {"date": "2025-08-15", "symbol": "NVDA", "metric": "volume", "value": 156602200}, {"date": "2025-08-18", "symbol": "NVDA", "metric": "volume", "value": 132008000}, {"date": "2025-08-19", "symbol": "NVDA", "metric": "volume", "value": 185229200}, {"date": "2025-08-20", "symbol": "NVDA", "metric": "volume", "value": 215142700}, {"date": "2025-08-21", "symbol": "NVDA", "metric": "volume", "value": 140040900}, {"date": "2025-08-22", "symbol": "NVDA", "metric": "volume", "value": 172789400}, {"date": "2025-08-25", "symbol": "NVDA", "metric": "volume", "value": 163012800}, {"date": "2025-08-26", "symbol": "NVDA", "metric": "volume", "value": 168688200}, {"date": "2025-08-27", "symbol": "NVDA", "metric": "volume", "value": 235518900}, {"date": "2025-08-28", "symbol": "NVDA", "metric": "volume", "value": 281787800}, {"date": "2025-08-29", "symbol": "NVDA", "metric": "volume", "value": 243257900}, {"date": "2025-09-02", "symbol": "NVDA", "metric": "volume", "value": 231164900}, {"date": "2025-09-03", "symbol": "NVDA", "metric": "volume", "value": 164424900}, {"date": "2025-09-04", "symbol": "NVDA", "metric": "volume", "value": 141670100}, {"date": "2025-09-05", "symbol": "NVDA", "metric": "volume", "value": 224441400}, {"date": "2025-09-08", "symbol": "NVDA", "metric": "volume", "value": 163769100}, {"date": "2025-09-09", "symbol": "NVDA", "metric": "volume", "value": 157548400}, {"date": "2025-09-10", "symbol": "NVDA", "metric": "volume", "value": 226852000}, {"date": "2025-09-11", "symbol": "NVDA", "metric": "volume", "value": 151159300}, {"date": "2025-09-12", "symbol": "NVDA", "metric": "volume", "value": 124911000}, {"date": "2025-09-15", "symbol": "NVDA", "metric": "volume", "value": 147061600}, {"date": "2025-09-16", "symbol": "NVDA", "metric": "volume", "value": 140737800}, {"date": "2025-09-17", "symbol": "NVDA", "metric": "volume", "value": 211843800}, {"date": "2025-09-18", "symbol": "NVDA", "metric": "volume", "value": 191763300}, {"date": "2025-09-19", "symbol": "NVDA", "metric": "volume", "value": 237182100}, {"date": "2025-09-22", "symbol": "NVDA", "metric": "volume", "value": 269637000}, {"date": "2025-09-23", "symbol": "NVDA", "metric": "volume", "value": 192559600}, {"date": "2025-09-24", "symbol": "NVDA", "metric": "volume", "value": 143564100}, {"date": "2025-09-25", "symbol": "NVDA", "metric": "volume", "value": 191586700}, {"date": "2025-09-26", "symbol": "NVDA", "metric": "volume", "value": 148573700}, {"date": "2025-09-29", "symbol": "NVDA", "metric": "volume", "value": 193063500}, {"date": "2025-09-30", "symbol": "NVDA", "metric": "volume", "value": 236981000}, {"date": "2025-10-01", "symbol": "NVDA", "metric": "volume", "value": 173844900}, {"date": "2025-10-02", "symbol": "NVDA", "metric": "volume", "value": 136805800}, {"date": "2025-10-03", "symbol": "NVDA", "metric": "volume", "value": 137596900}, {"date": "2025-10-06", "symbol": "NVDA", "metric": "volume", "value": 157678100}, {"date": "2025-10-07", "symbol": "NVDA", "metric": "volume", "value": 140088000}, {"date": "2025-10-08", "symbol": "NVDA", "metric": "volume", "value": 130168900}, {"date": "2025-10-09", "symbol": "NVDA", "metric": "volume", "value": 182997200}, {"date": "2025-10-10", "symbol": "NVDA", "metric": "volume", "value": 268774400}, {"date": "2025-10-13", "symbol": "NVDA", "metric": "volume", "value": 153482800}, {"date": "2025-10-14", "symbol": "NVDA", "metric": "volume", "value": 205641400}, {"date": "2025-10-15", "symbol": "NVDA", "metric": "volume", "value": 214450500}, {"date": "2025-10-16", "symbol": "NVDA", "metric": "volume", "value": 179723300}, {"date": "2025-10-17", "symbol": "NVDA", "metric": "volume", "value": 173135200}, {"date": "2025-10-20", "symbol": "NVDA", "metric": "volume", "value": 128544700}, {"date": "2025-10-21", "symbol": "NVDA", "metric": "volume", "value": 124240200}, {"date": "2025-10-22", "symbol": "NVDA", "metric": "volume", "value": 162249600}, {"date": "2025-10-23", "symbol": "NVDA", "metric": "volume", "value": 111363700}, {"date": "2025-10-24", "symbol": "NVDA", "metric": "volume", "value": 131296700}, {"date": "2025-10-27", "symbol": "NVDA", "metric": "volume", "value": 153452700}, {"date": "2025-10-28", "symbol": "NVDA", "metric": "volume", "value": 297986200}, {"date": "2025-10-29", "symbol": "NVDA", "metric": "volume", "value": 308829600}, {"date": "2025-10-30", "symbol": "NVDA", "metric": "volume", "value": 178864400}, {"date": "2025-10-31", "symbol": "NVDA", "metric": "volume", "value": 179802200}, {"date": "2025-11-03", "symbol": "NVDA", "metric": "volume", "value": 180267300}, {"date": "2025-11-04", "symbol": "NVDA", "metric": "volume", "value": 188919300}, {"date": "2025-11-05", "symbol": "NVDA", "metric": "volume", "value": 171350300}, {"date": "2025-11-06", "symbol": "NVDA", "metric": "volume", "value": 223029800}, {"date": "2025-11-07", "symbol": "NVDA", "metric": "volume", "value": 264942300}, {"date": "2025-11-10", "symbol": "NVDA", "metric": "volume", "value": 198897100}, {"date": "2025-11-11", "symbol": "NVDA", "metric": "volume", "value": 176483300}, {"date": "2025-11-12", "symbol": "NVDA", "metric": "volume", "value": 154935300}, {"date": "2025-11-13", "symbol": "NVDA", "metric": "volume", "value": 207423100}, {"date": "2025-11-14", "symbol": "NVDA", "metric": "volume", "value": 186591900}, {"date": "2025-11-17", "symbol": "NVDA", "metric": "volume", "value": 173628900}, {"date": "2025-11-18", "symbol": "NVDA", "metric": "volume", "value": 213598900}, {"date": "2025-11-19", "symbol": "NVDA", "metric": "volume", "value": 247246400}, {"date": "2025-11-20", "symbol": "NVDA", "metric": "volume", "value": 343504800}, {"date": "2025-11-21", "symbol": "NVDA", "metric": "volume", "value": 346926200}, {"date": "2025-11-24", "symbol": "NVDA", "metric": "volume", "value": 256618300}, {"date": "2025-11-25", "symbol": "NVDA", "metric": "volume", "value": 320600300}, {"date": "2025-11-26", "symbol": "NVDA", "metric": "volume", "value": 183852000}, {"date": "2025-11-28", "symbol": "NVDA", "metric": "volume", "value": 121332800}, {"date": "2025-12-01", "symbol": "NVDA", "metric": "volume", "value": 188131000}, {"date": "2025-12-02", "symbol": "NVDA", "metric": "volume", "value": 182632200}, {"date": "2025-12-03", "symbol": "NVDA", "metric": "volume", "value": 165138000}, {"date": "2025-12-04", "symbol": "NVDA", "metric": "volume", "value": 167364900}, {"date": "2025-12-05", "symbol": "NVDA", "metric": "volume", "value": 143971100}, {"date": "2025-12-08", "symbol": "NVDA", "metric": "volume", "value": 204378100}, {"date": "2025-12-09", "symbol": "NVDA", "metric": "volume", "value": 144719700}, {"date": "2025-12-10", "symbol": "NVDA", "metric": "volume", "value": 162785400}, {"date": "2025-12-11", "symbol": "NVDA", "metric": "volume", "value": 182136600}, {"date": "2025-12-12", "symbol": "NVDA", "metric": "volume", "value": 204274900}, {"date": "2025-12-15", "symbol": "NVDA", "metric": "volume", "value": 164775600}, {"date": "2025-12-16", "symbol": "NVDA", "metric": "volume", "value": 148588100}, {"date": "2025-12-17", "symbol": "NVDA", "metric": "volume", "value": 222775500}, {"date": "2025-12-18", "symbol": "NVDA", "metric": "volume", "value": 176096000}, {"date": "2025-12-19", "symbol": "NVDA", "metric": "volume", "value": 324925900}, {"date": "2025-12-22", "symbol": "NVDA", "metric": "volume", "value": 129064400}, {"date": "2025-12-23", "symbol": "NVDA", "metric": "volume", "value": 174873600}, {"date": "2025-12-24", "symbol": "NVDA", "metric": "volume", "value": 65528500}, {"date": "2025-12-26", "symbol": "NVDA", "metric": "volume", "value": 139740300}, {"date": "2025-12-29", "symbol": "NVDA", "metric": "volume", "value": 120006100}, {"date": "2025-12-30", "symbol": "NVDA", "metric": "volume", "value": 97687300}, {"date": "2025-12-31", "symbol": "NVDA", "metric": "volume", "value": 120100500}, {"date": "2026-01-02", "symbol": "NVDA", "metric": "volume", "value": 148240500}, {"date": "2026-01-05", "symbol": "NVDA", "metric": "volume", "value": 183529700}, {"date": "2026-01-06", "symbol": "NVDA", "metric": "volume", "value": 176862600}, {"date": "2026-01-07", "symbol": "NVDA", "metric": "volume", "value": 153543200}, {"date": "2026-01-08", "symbol": "NVDA", "metric": "volume", "value": 172457000}, {"date": "2026-01-09", "symbol": "NVDA", "metric": "volume", "value": 131327500}, {"date": "2026-01-12", "symbol": "NVDA", "metric": "volume", "value": 137968500}, {"date": "2026-01-13", "symbol": "NVDA", "metric": "volume", "value": 160128900}, {"date": "2026-01-14", "symbol": "NVDA", "metric": "volume", "value": 159586100}, {"date": "2026-01-15", "symbol": "NVDA", "metric": "volume", "value": 206188600}, {"date": "2026-01-16", "symbol": "NVDA", "metric": "volume", "value": 187967200}, {"date": "2026-01-20", "symbol": "NVDA", "metric": "volume", "value": 223345300}, {"date": "2026-01-21", "symbol": "NVDA", "metric": "volume", "value": 200381000}, {"date": "2026-01-22", "symbol": "NVDA", "metric": "volume", "value": 139636600}, {"date": "2026-01-23", "symbol": "NVDA", "metric": "volume", "value": 142748100}, {"date": "2026-01-26", "symbol": "NVDA", "metric": "volume", "value": 124489200}], "metadata": {"date": {"type": "date", "semanticType": "Date"}, "symbol": {"type": "string", "semanticType": "String"}, "metric": {"type": "string", "semanticType": "String"}, "value": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Keep only necessary columns\n cols = [c for c in [\"date\", \"symbol\", \"close\", \"volume\"] if c in df_history.columns]\n df = df_history[cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for time-series operations\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n # Compute daily returns as pct_change of close within each symbol\n df[\"return\"] = df.groupby(\"symbol\")[\"close\"].pct_change()\n\n # Compute 20-day rolling volatility (std of returns) within each symbol\n df[\"vol20\"] = (\n df.groupby(\"symbol\")[\"return\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).std())\n )\n\n # Reshape to long format: metrics = return, vol20, volume\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\"],\n value_vars=[\"return\", \"vol20\", \"volume\"],\n var_name=\"metric\",\n value_name=\"value\",\n )\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"metric\", \"value\"]].reset_index(drop=True)\n return transformed_df\n", "source": ["history"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"input_tables\": [...] // string[], describe names of the input tables that will be used in the transformation.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", 'boxplot'. \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"input_tables\", the names of a subset of input tables from [CONTEXT] section that will be used to achieve the user's goal.\n - **IMPORTANT** Note that the Table 1 in [CONTEXT] section is the table the user is currently viewing, it should take precedence if the user refers to insights about the \"current table\".\n - At the same time, leverage table information to determine which tables are relevant to the user's goal and should be used.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\", \"boxplot\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - boxplot: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - (boxplot) Box plots: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical (optional for creating grouped boxplots), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the boxplot will be grouped automatically (items with the same x values will be grouped).\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE]. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n# from sklearn import ... # import from sklearn if you need it.\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- decide the function signature based on the number of tables you decided in the previous step \"input_tables\":\n - if you decide there will only be one input table, then function signature should be `def transform_data(df1)`\n - if you decided there will be k input tables, then function signature should be `def transform_data(df_1, df_2, ..., df_k)`.\n - instead of using generic names like df1, df2, ..., try to use intuitive table names for function arguments, for example, if you have input_tables: [\"City\", \"Weather\"]`, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes.\n - **VERY IMPORTANT** the number of arguments in the function signature must be the same as the number of tables provided in \"input_tables\", and the order of arguments must match the order of tables provided in \"input_tables\".\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[GOAL]\n\n1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compare overall closing price trends and volatility over time for each stock symbol on a single line chart.\",\n \"display_instruction\": \"Visualize **closing price** trends by **symbol** over **date**\",\n \"recommendation\": \"A line chart with time on the x-axis and closing price on the y-axis, colored by symbol, best shows comparative trajectories and volatility over time. The data only needs column selection, date normalization, and sorting to be visualization-ready.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date symbol close\n0 2025-07-30 AAPL 208.61\n1 2025-07-31 AAPL 207.13\n2 2025-08-01 AAPL 201.95\n3 2025-08-04 AAPL 202.92\n4 2025-08-05 AAPL 202.49\n5 2025-08-06 AAPL 212.80\n6 2025-08-07 AAPL 219.57\n7 2025-08-08 AAPL 228.87\n8 2025-08-11 AAPL 226.96\n9 2025-08-12 AAPL 229.43\n......\n\nUpdate the code above based on the following instruction:\n\n2) For each symbol, compute 20-day and 60-day rolling averages of close price (columns: date, symbol, value, ma_window with values 20 or 60) and plot them over time alongside the actual close to compare short- vs long-term trends and reversals."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compute 20-day and 60-day rolling averages of closing prices for each symbol in tidy format for plotting alongside actual closes over time.\",\n \"display_instruction\": \"Add **20/60-day moving averages** of **close** by **symbol** over **date**\",\n \"recommendation\": \"To compare short- and long-term trends per symbol, compute 20- and 60-day rolling means of close, reshape them into a long format with one row per date-symbol-window, and keep the original close for plotting alongside the moving averages.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"ma_window\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy\n df = df_history.copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Group by symbol and compute rolling means on close\n group = df.groupby(\"symbol\", group_keys=False)[\"close\"]\n df[\"ma_20\"] = group.rolling(20, min_periods=1).mean()\n df[\"ma_60\"] = group.rolling(60, min_periods=1).mean()\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map)\n\n # Ensure correct column order and types\n df_long[\"ma_window\"] = df_long[\"ma_window\"].astype(int)\n\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\nEmpty DataFrame\nColumns: []\nIndex: []\n......\n\nUpdate the code above based on the following instruction:\n\nWe run into the following problem executing the code, please fix it:\n\nError: TypeError - incompatible index of inserted column with frame index\n\nPlease think step by step, reflect why the error happens and fix the code so that no more errors would occur."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compute 20-day and 60-day rolling averages of closing prices for each symbol in tidy format for plotting alongside actual closes over time.\",\n \"display_instruction\": \"Compute **20/60-day moving averages** of **close** by **symbol** over **date**\",\n \"recommendation\": \"The previous implementation used groupby().rolling() and assigned the result directly to new columns, which can create an index mismatch and raise a TypeError. Using groupby().transform(...) with an inner rolling mean keeps the index aligned with the original DataFrame, avoiding incompatible index issues. After computing the moving averages, reshape to long format for visualization.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"ma_window\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Work on a copy and keep only needed columns if present\n base_cols = [c for c in [\"date\", \"symbol\", \"close\"] if c in df_history.columns]\n df = df_history[base_cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper rolling computation\n df = df.sort_values([\"symbol\", \"date\"])\n\n # Ensure we have a clean, simple index to avoid alignment issues\n df = df.reset_index(drop=True)\n\n # Compute rolling means using transform to preserve index alignment\n df[\"ma_20\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).mean())\n )\n df[\"ma_60\"] = (\n df.groupby(\"symbol\")[\"close\"]\n .transform(lambda s: s.rolling(window=60, min_periods=1).mean())\n )\n\n # Reshape to long format for the moving averages\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\", \"close\"],\n value_vars=[\"ma_20\", \"ma_60\"],\n var_name=\"ma_window\",\n value_name=\"value\",\n )\n\n # Map ma_window to numeric window size (20 or 60)\n window_map = {\"ma_20\": 20, \"ma_60\": 60}\n df_long[\"ma_window\"] = df_long[\"ma_window\"].map(window_map).astype(int)\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"close\", \"value\", \"ma_window\"]].reset_index(drop=True)\n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date symbol close value ma_window\n0 2025-07-30 AAPL 208.61 208.610000 20\n1 2025-07-31 AAPL 207.13 207.870000 20\n2 2025-08-01 AAPL 201.95 205.896667 20\n3 2025-08-04 AAPL 202.92 205.152500 20\n4 2025-08-05 AAPL 202.49 204.620000 20\n5 2025-08-06 AAPL 212.80 205.983333 20\n6 2025-08-07 AAPL 219.57 207.924286 20\n7 2025-08-08 AAPL 228.87 210.542500 20\n8 2025-08-11 AAPL 226.96 212.366667 20\n9 2025-08-12 AAPL 229.43 214.073000 20\n......\n\nUpdate the code above based on the following instruction:\n\n3) For each symbol, compute daily returns as pct_change of close, then 20-day rolling volatility as the rolling std of these returns; keep volume. Reshape to long format with columns [date, symbol, metric, value], where metric ∈ {\"return\", \"vol20\", \"volume\"}, and visualize over time (e.g., faceted by symbol with separate lines for each metric) to highlight periods of strong trends with elevated volatility or volume."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compute daily returns and 20-day rolling volatility for each symbol, keep volume, and reshape to a long format for multi-metric time-series visualization.\",\n \"display_instruction\": \"Show **daily return**, **20-day volatility**, and **volume** by **symbol** over **date**\",\n \"recommendation\": \"To highlight periods of strong trends with elevated volatility or volume, compute per-symbol daily returns as pct_change of close and 20-day rolling volatility as the rolling standard deviation of those returns. Keep volume, then reshape into a long table with one metric per row so time-series lines for return, volatility, and volume can be plotted and compared per symbol.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"metric\", \"value\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"value\",\n \"color\": \"metric\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"symbol\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Keep only necessary columns\n cols = [c for c in [\"date\", \"symbol\", \"close\", \"volume\"] if c in df_history.columns]\n df = df_history[cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for time-series operations\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n # Compute daily returns as pct_change of close within each symbol\n df[\"return\"] = df.groupby(\"symbol\")[\"close\"].pct_change()\n\n # Compute 20-day rolling volatility (std of returns) within each symbol\n df[\"vol20\"] = (\n df.groupby(\"symbol\")[\"return\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).std())\n )\n\n # Reshape to long format: metrics = return, vol20, volume\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\"],\n value_vars=[\"return\", \"vol20\", \"volume\"],\n var_name=\"metric\",\n value_name=\"value\",\n )\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"metric\", \"value\"]].reset_index(drop=True)\n return transformed_df\n```"}], "trigger": {"tableId": "table-265247", "resultTableId": "table-277926", "chart": {"id": "chart-1769471280073", "chartType": "Auto", "encodingMap": {}, "tableRef": "history", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "3) For each symbol, compute daily returns as pct_change of close, then 20-day rolling volatility as the rolling std of these returns; keep volume. Reshape to long format with columns [date, symbol, metric, value], where metric ∈ {\"return\", \"vol20\", \"volume\"}, and visualize over time (e.g., faceted by symbol with separate lines for each metric) to highlight periods of strong trends with elevated volatility or volume.", "displayContent": "Show **daily return**, **20-day volatility**, and **volume** by **symbol** over **date**"}]}, "explanation": {"status": "ok", "concepts": [{"field": "return", "explanation": "Daily return measures how much the closing price changes in percentage terms from one trading day to the next for the same symbol. For day t, return_t = (Close_t - Close_{t-1}) / Close_{t-1}."}, {"field": "vol20", "explanation": "20-day rolling volatility is a short-term risk measure that summarizes how much the daily returns have fluctuated over roughly the past month. For each date, vol20 is the standard deviation of the last up-to-20 'return' values for that symbol; higher vol20 indicates more unstable (more volatile) recent price movements."}, {"field": "metric, value", "explanation": "These two fields reorganize different measures into a single tidy structure: 'metric' tells you which quantity is being reported (return, vol20, or volume), and 'value' stores the corresponding number. This makes it easy to filter and compare different metrics in the same table."}, {"field": "Statistical Analysis", "explanation": "The transformation introduces two statistical concepts: (1) daily returns, which quantify relative price changes over time, and (2) rolling volatility, which applies a moving standard deviation to recent returns to estimate short-term risk. The model is implicit: for each symbol, returns are treated as a time series, and volatility is computed over a 20-day rolling window. Other possible analyses on this data could include moving averages of price or volume, exponential moving volatility, correlation between different symbols' returns, or time-series models such as ARIMA or GARCH to forecast returns and volatility."}], "code": "- **Selects** only the key fields from the original data: **\"date\"**, **\"symbol\"**, **\"close\"**, and **\"volume\"**.\n- **Standardizes** the **\"date\"** format to **\"YYYY-MM-DD\"** so all dates are consistent.\n- **Sorts** the data by **\"symbol\"** and then by **\"date\"** to put each stock’s prices in correct time order.\n- For each **symbol**, **calculates daily price change**:\n - Adds a new field **\"return\"** = the **percentage change of the closing price** from the previous trading day for that same symbol.\n- For each **symbol**, **measures recent risk/variability**:\n - Adds a new field **\"vol20\"** = the **20‑day rolling volatility**, i.e., the **standard deviation of the last up-to-20 daily returns** (a larger value means the stock has been more volatile recently).\n- **Restructures** the data into a “long” tidy format:\n - Keeps **\"date\"** and **\"symbol\"**.\n - Converts the three measures **\"return\"**, **\"vol20\"**, and **\"volume\"** into rows under a single **\"metric\"** column, with their numbers stored in a **\"value\"** column.\n- **Outputs** a clean table with columns **\"date\"**, **\"symbol\"**, **\"metric\"**, and **\"value\"**, where each row represents **one metric for one stock on one date**.", "dialog": [{"role": "system", "content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n"}, {"role": "user", "content": "[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Keep only necessary columns\n cols = [c for c in [\"date\", \"symbol\", \"close\", \"volume\"] if c in df_history.columns]\n df = df_history[cols].copy()\n\n # Normalize date to string YYYY-MM-DD\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for time-series operations\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n # Compute daily returns as pct_change of close within each symbol\n df[\"return\"] = df.groupby(\"symbol\")[\"close\"].pct_change()\n\n # Compute 20-day rolling volatility (std of returns) within each symbol\n df[\"vol20\"] = (\n df.groupby(\"symbol\")[\"return\"]\n .transform(lambda s: s.rolling(window=20, min_periods=1).std())\n )\n\n # Reshape to long format: metrics = return, vol20, volume\n df_long = df.melt(\n id_vars=[\"date\", \"symbol\"],\n value_vars=[\"return\", \"vol20\", \"volume\"],\n var_name=\"metric\",\n value_name=\"value\",\n )\n\n # Final tidy output\n transformed_df = df_long[[\"date\", \"symbol\", \"metric\", \"value\"]].reset_index(drop=True)\n return transformed_df\n\n\n[EXPLANATION]\n"}, {"role": "assistant", "content": "[CODE EXPLANATION]\n\n- **Selects** only the key fields from the original data: **\"date\"**, **\"symbol\"**, **\"close\"**, and **\"volume\"**.\n- **Standardizes** the **\"date\"** format to **\"YYYY-MM-DD\"** so all dates are consistent.\n- **Sorts** the data by **\"symbol\"** and then by **\"date\"** to put each stock’s prices in correct time order.\n- For each **symbol**, **calculates daily price change**:\n - Adds a new field **\"return\"** = the **percentage change of the closing price** from the previous trading day for that same symbol.\n- For each **symbol**, **measures recent risk/variability**:\n - Adds a new field **\"vol20\"** = the **20‑day rolling volatility**, i.e., the **standard deviation of the last up-to-20 daily returns** (a larger value means the stock has been more volatile recently).\n- **Restructures** the data into a “long” tidy format:\n - Keeps **\"date\"** and **\"symbol\"**.\n - Converts the three measures **\"return\"**, **\"vol20\"**, and **\"volume\"** into rows under a single **\"metric\"** column, with their numbers stored in a **\"value\"** column.\n- **Outputs** a clean table with columns **\"date\"**, **\"symbol\"**, **\"metric\"**, and **\"value\"**, where each row represents **one metric for one stock on one date**.\n\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"return\",\n \"explanation\": \"Daily return measures how much the closing price changes in percentage terms from one trading day to the next for the same symbol. For day t, return_t = (Close_t - Close_{t-1}) / Close_{t-1}.\"\n },\n {\n \"field\": \"vol20\",\n \"explanation\": \"20-day rolling volatility is a short-term risk measure that summarizes how much the daily returns have fluctuated over roughly the past month. For each date, vol20 is the standard deviation of the last up-to-20 'return' values for that symbol; higher vol20 indicates more unstable (more volatile) recent price movements.\"\n },\n {\n \"field\": \"metric, value\",\n \"explanation\": \"These two fields reorganize different measures into a single tidy structure: 'metric' tells you which quantity is being reported (return, vol20, or volume), and 'value' stores the corresponding number. This makes it easy to filter and compare different metrics in the same table.\"\n },\n {\n \"field\": \"Statistical Analysis\",\n \"explanation\": \"The transformation introduces two statistical concepts: (1) daily returns, which quantify relative price changes over time, and (2) rolling volatility, which applies a moving standard deviation to recent returns to estimate short-term risk. The model is implicit: for each symbol, returns are treated as a time series, and volatility is computed over a 20-day rolling window. Other possible analyses on this data could include moving averages of price or volume, exponential moving volatility, correlation between different symbols' returns, or time-series models such as ARIMA or GARCH to forecast returns and volatility.\"\n }\n]\n```"}], "agent": "CodeExplanationAgent"}, "status": "completed"}, "anchored": false, "attachedMetadata": "", "contentHash": "d0e7201e"}, {"kind": "table", "id": "table-457008", "displayId": "stock-close1", "names": ["date", "symbol", "close"], "rows": [{"date": "2025-07-31", "symbol": "GOOGL", "close": 191.6}, {"date": "2025-08-01", "symbol": "GOOGL", "close": 188.84}, {"date": "2025-08-04", "symbol": "GOOGL", "close": 194.74}, {"date": "2025-08-05", "symbol": "GOOGL", "close": 194.37}, {"date": "2025-08-06", "symbol": "GOOGL", "close": 195.79}, {"date": "2025-08-07", "symbol": "GOOGL", "close": 196.22}, {"date": "2025-08-08", "symbol": "GOOGL", "close": 201.11}, {"date": "2025-08-11", "symbol": "GOOGL", "close": 200.69}, {"date": "2025-08-12", "symbol": "GOOGL", "close": 203.03}, {"date": "2025-08-13", "symbol": "GOOGL", "close": 201.65}, {"date": "2025-08-14", "symbol": "GOOGL", "close": 202.63}, {"date": "2025-08-15", "symbol": "GOOGL", "close": 203.58}, {"date": "2025-08-18", "symbol": "GOOGL", "close": 203.19}, {"date": "2025-08-19", "symbol": "GOOGL", "close": 201.26}, {"date": "2025-08-20", "symbol": "GOOGL", "close": 199.01}, {"date": "2025-08-21", "symbol": "GOOGL", "close": 199.44}, {"date": "2025-08-22", "symbol": "GOOGL", "close": 205.77}, {"date": "2025-08-25", "symbol": "GOOGL", "close": 208.17}, {"date": "2025-08-26", "symbol": "GOOGL", "close": 206.82}, {"date": "2025-08-27", "symbol": "GOOGL", "close": 207.16}, {"date": "2025-08-28", "symbol": "GOOGL", "close": 211.31}, {"date": "2025-08-29", "symbol": "GOOGL", "close": 212.58}, {"date": "2025-09-02", "symbol": "GOOGL", "close": 211.02}, {"date": "2025-09-03", "symbol": "GOOGL", "close": 230.3}, {"date": "2025-09-04", "symbol": "GOOGL", "close": 231.94}, {"date": "2025-09-05", "symbol": "GOOGL", "close": 234.64}, {"date": "2025-09-08", "symbol": "GOOGL", "close": 233.89}, {"date": "2025-09-09", "symbol": "GOOGL", "close": 239.47}, {"date": "2025-09-10", "symbol": "GOOGL", "close": 239.01}, {"date": "2025-09-11", "symbol": "GOOGL", "close": 240.21}, {"date": "2025-09-12", "symbol": "GOOGL", "close": 240.64}, {"date": "2025-09-15", "symbol": "GOOGL", "close": 251.45}, {"date": "2025-09-16", "symbol": "GOOGL", "close": 251}, {"date": "2025-09-17", "symbol": "GOOGL", "close": 249.37}, {"date": "2025-09-18", "symbol": "GOOGL", "close": 251.87}, {"date": "2025-09-19", "symbol": "GOOGL", "close": 254.55}, {"date": "2025-09-22", "symbol": "GOOGL", "close": 252.36}, {"date": "2025-09-23", "symbol": "GOOGL", "close": 251.5}, {"date": "2025-09-24", "symbol": "GOOGL", "close": 246.98}, {"date": "2025-09-25", "symbol": "GOOGL", "close": 245.63}, {"date": "2025-09-26", "symbol": "GOOGL", "close": 246.38}, {"date": "2025-09-29", "symbol": "GOOGL", "close": 243.89}, {"date": "2025-09-30", "symbol": "GOOGL", "close": 242.94}, {"date": "2025-10-01", "symbol": "GOOGL", "close": 244.74}, {"date": "2025-10-02", "symbol": "GOOGL", "close": 245.53}, {"date": "2025-10-03", "symbol": "GOOGL", "close": 245.19}, {"date": "2025-10-06", "symbol": "GOOGL", "close": 250.27}, {"date": "2025-10-07", "symbol": "GOOGL", "close": 245.6}, {"date": "2025-10-08", "symbol": "GOOGL", "close": 244.46}, {"date": "2025-10-09", "symbol": "GOOGL", "close": 241.37}, {"date": "2025-10-10", "symbol": "GOOGL", "close": 236.42}, {"date": "2025-10-13", "symbol": "GOOGL", "close": 243.99}, {"date": "2025-10-14", "symbol": "GOOGL", "close": 245.29}, {"date": "2025-10-15", "symbol": "GOOGL", "close": 250.87}, {"date": "2025-10-16", "symbol": "GOOGL", "close": 251.3}, {"date": "2025-10-17", "symbol": "GOOGL", "close": 253.13}, {"date": "2025-10-20", "symbol": "GOOGL", "close": 256.38}, {"date": "2025-10-21", "symbol": "GOOGL", "close": 250.3}, {"date": "2025-10-22", "symbol": "GOOGL", "close": 251.53}, {"date": "2025-10-23", "symbol": "GOOGL", "close": 252.91}, {"date": "2025-10-24", "symbol": "GOOGL", "close": 259.75}, {"date": "2025-10-27", "symbol": "GOOGL", "close": 269.09}, {"date": "2025-10-28", "symbol": "GOOGL", "close": 267.3}, {"date": "2025-10-29", "symbol": "GOOGL", "close": 274.39}, {"date": "2025-10-30", "symbol": "GOOGL", "close": 281.3}, {"date": "2025-10-31", "symbol": "GOOGL", "close": 281.01}, {"date": "2025-11-03", "symbol": "GOOGL", "close": 283.53}, {"date": "2025-11-04", "symbol": "GOOGL", "close": 277.36}, {"date": "2025-11-05", "symbol": "GOOGL", "close": 284.12}, {"date": "2025-11-06", "symbol": "GOOGL", "close": 284.56}, {"date": "2025-11-07", "symbol": "GOOGL", "close": 278.65}, {"date": "2025-11-10", "symbol": "GOOGL", "close": 289.91}, {"date": "2025-11-11", "symbol": "GOOGL", "close": 291.12}, {"date": "2025-11-12", "symbol": "GOOGL", "close": 286.52}, {"date": "2025-11-13", "symbol": "GOOGL", "close": 278.39}, {"date": "2025-11-14", "symbol": "GOOGL", "close": 276.23}, {"date": "2025-11-17", "symbol": "GOOGL", "close": 284.83}, {"date": "2025-11-18", "symbol": "GOOGL", "close": 284.09}, {"date": "2025-11-19", "symbol": "GOOGL", "close": 292.62}, {"date": "2025-11-20", "symbol": "GOOGL", "close": 289.26}, {"date": "2025-11-21", "symbol": "GOOGL", "close": 299.46}, {"date": "2025-11-24", "symbol": "GOOGL", "close": 318.37}, {"date": "2025-11-25", "symbol": "GOOGL", "close": 323.23}, {"date": "2025-11-26", "symbol": "GOOGL", "close": 319.74}, {"date": "2025-11-28", "symbol": "GOOGL", "close": 319.97}, {"date": "2025-12-01", "symbol": "GOOGL", "close": 314.68}, {"date": "2025-12-02", "symbol": "GOOGL", "close": 315.6}, {"date": "2025-12-03", "symbol": "GOOGL", "close": 319.42}, {"date": "2025-12-04", "symbol": "GOOGL", "close": 317.41}, {"date": "2025-12-05", "symbol": "GOOGL", "close": 321.06}, {"date": "2025-12-08", "symbol": "GOOGL", "close": 313.72}, {"date": "2025-12-09", "symbol": "GOOGL", "close": 317.08}, {"date": "2025-12-10", "symbol": "GOOGL", "close": 320.21}, {"date": "2025-12-11", "symbol": "GOOGL", "close": 312.43}, {"date": "2025-12-12", "symbol": "GOOGL", "close": 309.29}, {"date": "2025-12-15", "symbol": "GOOGL", "close": 308.22}, {"date": "2025-12-16", "symbol": "GOOGL", "close": 306.57}, {"date": "2025-12-17", "symbol": "GOOGL", "close": 296.72}, {"date": "2025-12-18", "symbol": "GOOGL", "close": 302.46}, {"date": "2025-12-19", "symbol": "GOOGL", "close": 307.16}, {"date": "2025-12-22", "symbol": "GOOGL", "close": 309.78}, {"date": "2025-12-23", "symbol": "GOOGL", "close": 314.35}, {"date": "2025-12-24", "symbol": "GOOGL", "close": 314.09}, {"date": "2025-12-26", "symbol": "GOOGL", "close": 313.51}, {"date": "2025-12-29", "symbol": "GOOGL", "close": 313.56}, {"date": "2025-12-30", "symbol": "GOOGL", "close": 313.85}, {"date": "2025-12-31", "symbol": "GOOGL", "close": 313}, {"date": "2026-01-02", "symbol": "GOOGL", "close": 315.15}, {"date": "2026-01-05", "symbol": "GOOGL", "close": 316.54}, {"date": "2026-01-06", "symbol": "GOOGL", "close": 314.34}, {"date": "2026-01-07", "symbol": "GOOGL", "close": 321.98}, {"date": "2026-01-08", "symbol": "GOOGL", "close": 325.44}, {"date": "2026-01-09", "symbol": "GOOGL", "close": 328.57}, {"date": "2026-01-12", "symbol": "GOOGL", "close": 331.86}, {"date": "2026-01-13", "symbol": "GOOGL", "close": 335.97}, {"date": "2026-01-14", "symbol": "GOOGL", "close": 335.84}, {"date": "2026-01-15", "symbol": "GOOGL", "close": 332.78}, {"date": "2026-01-16", "symbol": "GOOGL", "close": 330}, {"date": "2026-01-20", "symbol": "GOOGL", "close": 322}, {"date": "2026-01-21", "symbol": "GOOGL", "close": 328.38}, {"date": "2026-01-22", "symbol": "GOOGL", "close": 330.54}, {"date": "2026-01-23", "symbol": "GOOGL", "close": 327.93}, {"date": "2026-01-26", "symbol": "GOOGL", "close": 333.26}, {"date": "2025-07-31", "symbol": "MSFT", "close": 531.63}, {"date": "2025-08-01", "symbol": "MSFT", "close": 522.27}, {"date": "2025-08-04", "symbol": "MSFT", "close": 533.76}, {"date": "2025-08-05", "symbol": "MSFT", "close": 525.9}, {"date": "2025-08-06", "symbol": "MSFT", "close": 523.1}, {"date": "2025-08-07", "symbol": "MSFT", "close": 519.01}, {"date": "2025-08-08", "symbol": "MSFT", "close": 520.21}, {"date": "2025-08-11", "symbol": "MSFT", "close": 519.94}, {"date": "2025-08-12", "symbol": "MSFT", "close": 527.38}, {"date": "2025-08-13", "symbol": "MSFT", "close": 518.75}, {"date": "2025-08-14", "symbol": "MSFT", "close": 520.65}, {"date": "2025-08-15", "symbol": "MSFT", "close": 518.35}, {"date": "2025-08-18", "symbol": "MSFT", "close": 515.29}, {"date": "2025-08-19", "symbol": "MSFT", "close": 507.98}, {"date": "2025-08-20", "symbol": "MSFT", "close": 503.95}, {"date": "2025-08-21", "symbol": "MSFT", "close": 503.3}, {"date": "2025-08-22", "symbol": "MSFT", "close": 506.28}, {"date": "2025-08-25", "symbol": "MSFT", "close": 503.32}, {"date": "2025-08-26", "symbol": "MSFT", "close": 501.1}, {"date": "2025-08-27", "symbol": "MSFT", "close": 505.79}, {"date": "2025-08-28", "symbol": "MSFT", "close": 508.69}, {"date": "2025-08-29", "symbol": "MSFT", "close": 505.74}, {"date": "2025-09-02", "symbol": "MSFT", "close": 504.18}, {"date": "2025-09-03", "symbol": "MSFT", "close": 504.41}, {"date": "2025-09-04", "symbol": "MSFT", "close": 507.02}, {"date": "2025-09-05", "symbol": "MSFT", "close": 494.08}, {"date": "2025-09-08", "symbol": "MSFT", "close": 497.27}, {"date": "2025-09-09", "symbol": "MSFT", "close": 497.48}, {"date": "2025-09-10", "symbol": "MSFT", "close": 499.44}, {"date": "2025-09-11", "symbol": "MSFT", "close": 500.07}, {"date": "2025-09-12", "symbol": "MSFT", "close": 508.95}, {"date": "2025-09-15", "symbol": "MSFT", "close": 514.4}, {"date": "2025-09-16", "symbol": "MSFT", "close": 508.09}, {"date": "2025-09-17", "symbol": "MSFT", "close": 509.07}, {"date": "2025-09-18", "symbol": "MSFT", "close": 507.5}, {"date": "2025-09-19", "symbol": "MSFT", "close": 516.96}, {"date": "2025-09-22", "symbol": "MSFT", "close": 513.49}, {"date": "2025-09-23", "symbol": "MSFT", "close": 508.28}, {"date": "2025-09-24", "symbol": "MSFT", "close": 509.2}, {"date": "2025-09-25", "symbol": "MSFT", "close": 506.08}, {"date": "2025-09-26", "symbol": "MSFT", "close": 510.5}, {"date": "2025-09-29", "symbol": "MSFT", "close": 513.64}, {"date": "2025-09-30", "symbol": "MSFT", "close": 516.98}, {"date": "2025-10-01", "symbol": "MSFT", "close": 518.74}, {"date": "2025-10-02", "symbol": "MSFT", "close": 514.78}, {"date": "2025-10-03", "symbol": "MSFT", "close": 516.38}, {"date": "2025-10-06", "symbol": "MSFT", "close": 527.58}, {"date": "2025-10-07", "symbol": "MSFT", "close": 523}, {"date": "2025-10-08", "symbol": "MSFT", "close": 523.87}, {"date": "2025-10-09", "symbol": "MSFT", "close": 521.42}, {"date": "2025-10-10", "symbol": "MSFT", "close": 510.01}, {"date": "2025-10-13", "symbol": "MSFT", "close": 513.09}, {"date": "2025-10-14", "symbol": "MSFT", "close": 512.61}, {"date": "2025-10-15", "symbol": "MSFT", "close": 512.47}, {"date": "2025-10-16", "symbol": "MSFT", "close": 510.65}, {"date": "2025-10-17", "symbol": "MSFT", "close": 512.62}, {"date": "2025-10-20", "symbol": "MSFT", "close": 515.82}, {"date": "2025-10-21", "symbol": "MSFT", "close": 516.69}, {"date": "2025-10-22", "symbol": "MSFT", "close": 519.57}, {"date": "2025-10-23", "symbol": "MSFT", "close": 519.59}, {"date": "2025-10-24", "symbol": "MSFT", "close": 522.63}, {"date": "2025-10-27", "symbol": "MSFT", "close": 530.53}, {"date": "2025-10-28", "symbol": "MSFT", "close": 541.06}, {"date": "2025-10-29", "symbol": "MSFT", "close": 540.54}, {"date": "2025-10-30", "symbol": "MSFT", "close": 524.78}, {"date": "2025-10-31", "symbol": "MSFT", "close": 516.84}, {"date": "2025-11-03", "symbol": "MSFT", "close": 516.06}, {"date": "2025-11-04", "symbol": "MSFT", "close": 513.37}, {"date": "2025-11-05", "symbol": "MSFT", "close": 506.21}, {"date": "2025-11-06", "symbol": "MSFT", "close": 496.17}, {"date": "2025-11-07", "symbol": "MSFT", "close": 495.89}, {"date": "2025-11-10", "symbol": "MSFT", "close": 505.05}, {"date": "2025-11-11", "symbol": "MSFT", "close": 507.73}, {"date": "2025-11-12", "symbol": "MSFT", "close": 510.19}, {"date": "2025-11-13", "symbol": "MSFT", "close": 502.35}, {"date": "2025-11-14", "symbol": "MSFT", "close": 509.23}, {"date": "2025-11-17", "symbol": "MSFT", "close": 506.54}, {"date": "2025-11-18", "symbol": "MSFT", "close": 492.87}, {"date": "2025-11-19", "symbol": "MSFT", "close": 486.21}, {"date": "2025-11-20", "symbol": "MSFT", "close": 478.43}, {"date": "2025-11-21", "symbol": "MSFT", "close": 472.12}, {"date": "2025-11-24", "symbol": "MSFT", "close": 474}, {"date": "2025-11-25", "symbol": "MSFT", "close": 476.99}, {"date": "2025-11-26", "symbol": "MSFT", "close": 485.5}, {"date": "2025-11-28", "symbol": "MSFT", "close": 492.01}, {"date": "2025-12-01", "symbol": "MSFT", "close": 486.74}, {"date": "2025-12-02", "symbol": "MSFT", "close": 490}, {"date": "2025-12-03", "symbol": "MSFT", "close": 477.73}, {"date": "2025-12-04", "symbol": "MSFT", "close": 480.84}, {"date": "2025-12-05", "symbol": "MSFT", "close": 483.16}, {"date": "2025-12-08", "symbol": "MSFT", "close": 491.02}, {"date": "2025-12-09", "symbol": "MSFT", "close": 492.02}, {"date": "2025-12-10", "symbol": "MSFT", "close": 478.56}, {"date": "2025-12-11", "symbol": "MSFT", "close": 483.47}, {"date": "2025-12-12", "symbol": "MSFT", "close": 478.53}, {"date": "2025-12-15", "symbol": "MSFT", "close": 474.82}, {"date": "2025-12-16", "symbol": "MSFT", "close": 476.39}, {"date": "2025-12-17", "symbol": "MSFT", "close": 476.12}, {"date": "2025-12-18", "symbol": "MSFT", "close": 483.98}, {"date": "2025-12-19", "symbol": "MSFT", "close": 485.92}, {"date": "2025-12-22", "symbol": "MSFT", "close": 484.92}, {"date": "2025-12-23", "symbol": "MSFT", "close": 486.85}, {"date": "2025-12-24", "symbol": "MSFT", "close": 488.02}, {"date": "2025-12-26", "symbol": "MSFT", "close": 487.71}, {"date": "2025-12-29", "symbol": "MSFT", "close": 487.1}, {"date": "2025-12-30", "symbol": "MSFT", "close": 487.48}, {"date": "2025-12-31", "symbol": "MSFT", "close": 483.62}, {"date": "2026-01-02", "symbol": "MSFT", "close": 472.94}, {"date": "2026-01-05", "symbol": "MSFT", "close": 472.85}, {"date": "2026-01-06", "symbol": "MSFT", "close": 478.51}, {"date": "2026-01-07", "symbol": "MSFT", "close": 483.47}, {"date": "2026-01-08", "symbol": "MSFT", "close": 478.11}, {"date": "2026-01-09", "symbol": "MSFT", "close": 479.28}, {"date": "2026-01-12", "symbol": "MSFT", "close": 477.18}, {"date": "2026-01-13", "symbol": "MSFT", "close": 470.67}, {"date": "2026-01-14", "symbol": "MSFT", "close": 459.38}, {"date": "2026-01-15", "symbol": "MSFT", "close": 456.66}, {"date": "2026-01-16", "symbol": "MSFT", "close": 459.86}, {"date": "2026-01-20", "symbol": "MSFT", "close": 454.52}, {"date": "2026-01-21", "symbol": "MSFT", "close": 444.11}, {"date": "2026-01-22", "symbol": "MSFT", "close": 451.14}, {"date": "2026-01-23", "symbol": "MSFT", "close": 465.95}, {"date": "2026-01-26", "symbol": "MSFT", "close": 470.28}], "metadata": {"date": {"type": "date", "semanticType": "Date", "levels": []}, "symbol": {"type": "string", "semanticType": "String"}, "close": {"type": "number", "semanticType": "Number"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Filter for Microsoft (MSFT) and Google (GOOGL)\n target_symbols = [\"MSFT\", \"GOOGL\"]\n df = df[df[\"symbol\"].isin(target_symbols)].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n", "source": ["history"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"input_tables\", the names of a subset of input tables from [CONTEXT] section that will be used to achieve the user's goal.\n - **IMPORTANT** Note that the Table 1 in [CONTEXT] section is the table the user is currently viewing, it should take precedence if the user refers to insights about the \"current table\".\n - At the same time, leverage table information to determine which tables are relevant to the user's goal and should be used.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, latitude, longitude, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - if the user provides latitude and longitude as visual channels, use \"latitude\" and \"longitude\" as visual channels in \"chart_encodings\" as opposed to \"x\" and \"y\".\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\".\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"input_tables\": [...] // string[], describe names of the input tables that will be used in the transformation.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables described in \"input_tables\") and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], only import libraries allowed in the template, do not modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n# from sklearn import ... # import from sklearn if you need it.\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- decide the function signature based on the number of tables you decided in the previous step \"input_tables\":\n - if you decide there will only be one input table, then function signature should be `def transform_data(df1)`\n - if you decided there will be k input tables, then function signature should be `def transform_data(df_1, df_2, ..., df_k)`.\n - instead of using generic names like df1, df2, ..., try to use intuitive table names for function arguments, for example, if you have input_tables: [\"City\", \"Weather\"]`, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes.\n - **VERY IMPORTANT** the number of arguments in the function signature must be the same as the number of tables provided in \"input_tables\", and the order of arguments must match the order of tables provided in \"input_tables\".\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[GOAL]\n\n1) First, plot the overall **closing price** trends for each **symbol** over **time** on a single line chart to compare their broad trajectories and volatility."}, {"role": "assistant", "content": "{\n \"mode\": \"infer\",\n \"recap\": \"Compare overall closing price trends and volatility over time for each stock symbol on a single line chart.\",\n \"display_instruction\": \"Visualize **closing price** trends by **symbol** over **date**\",\n \"recommendation\": \"A line chart with time on the x-axis and closing price on the y-axis, colored by symbol, best shows comparative trajectories and volatility over time. The data only needs column selection, date normalization, and sorting to be visualization-ready.\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date symbol close\n0 2025-07-30 AAPL 208.61\n1 2025-07-31 AAPL 207.13\n2 2025-08-01 AAPL 201.95\n3 2025-08-04 AAPL 202.92\n4 2025-08-05 AAPL 202.49\n5 2025-08-06 AAPL 212.80\n6 2025-08-07 AAPL 219.57\n7 2025-08-08 AAPL 228.87\n8 2025-08-11 AAPL 226.96\n9 2025-08-12 AAPL 229.43\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"compare microsoft and google\",\n \"chart_type\": \"\",\n \"chart_encodings\": {}\n}"}, {"role": "assistant", "content": "{\n \"detailed_instruction\": \"Filter the historical price data to only include Microsoft (MSFT) and Google (GOOGL) and prepare it for a line chart that compares their closing price trends over time on the same plot.\",\n \"display_instruction\": \"Compare **closing price** trends of **MSFT** and **GOOGL** over **date**\",\n \"input_tables\": [\"history\"],\n \"output_fields\": [\"date\", \"symbol\", \"close\"],\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"close\",\n \"color\": \"symbol\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n },\n \"reason\": \"The follow-up focuses the existing trend comparison on only Microsoft and Google. This requires filtering the original prepared data to those two symbols while keeping the same line chart structure: date on x, close on y, and symbol as the color encoding.\"\n}\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Filter for Microsoft (MSFT) and Google (GOOGL)\n target_symbols = [\"MSFT\", \"GOOGL\"]\n df = df[df[\"symbol\"].isin(target_symbols)].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n```"}], "trigger": {"tableId": "table-233476", "resultTableId": "table-457008", "chart": {"id": "chart-1769471462237", "chartType": "Auto", "encodingMap": {}, "tableRef": "table-233476", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "compare microsoft and google", "displayContent": "Compare **closing price** trends of **MSFT** and **GOOGL** over **date**"}]}, "explanation": {"status": "ok", "concepts": [], "code": "- **Keep only** the **`date`**, **`symbol`**, and **`close`** price columns from the original data, discarding all others.\n- **Filter rows** to include **only** the two companies: **`MSFT` (Microsoft)** and **`GOOGL` (Google)**.\n- **Standardize the date format** by converting **`date`** into a **string** formatted as **`YYYY-MM-DD`** (year-month-day).\n- **Sort the data** by **`symbol`** and then by **`date`** so that each company’s prices are in **chronological order**, making it ready for **line plotting over time**.\n- **Return** this cleaned and filtered dataset as the final result.", "dialog": [{"role": "system", "content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n"}, {"role": "user", "content": "[CONTEXT]\n\n## Table 1: history (738 rows × 8 columns)\n\n### Schema (8 fields)\n - symbol -- type: object, values: AAPL, AMZN, GOOGL, META, MSFT, NVDA\n - date -- type: object, values: 2025-07-30, 2025-07-31, 2025-08-01, ..., 2026-01-20, 2026-01-21, 2026-01-22, 2026-01-23\n - open -- type: float64, values: 167.53, 168.01, 169.07, ..., 781.21, 782.98, 785.25, 789.97\n - high -- type: float64, values: 169.01, 170.94, 170.96, ..., 789.62, 792.49, 794.28, 795.06\n - low -- type: float64, values: 164.05, 166.72, 167.2, ..., 771.36, 772.21, 777.07, 779.66\n - close -- type: float64, values: 167.0, 168.29, 170.28, ..., 779.09, 780.97, 784.06, 788.82\n - volume -- type: int64, values: 5627500, 5855900, 6861200, ..., 320600300, 324925900, 343504800, 346926200\n - fetched_at -- type: object, values: 2026-01-26T23:46:42.347312Z\n\n### Sample Data (first 5 rows)\n```\n symbol date open high low close volume fetched_at\n0 AAPL 2025-07-30 211.45 211.94 207.28 208.61 45512500 2026-01-26T23:46:42.347312Z\n1 AAPL 2025-07-31 208.05 209.40 206.72 207.13 80698400 2026-01-26T23:46:42.347312Z\n2 AAPL 2025-08-01 210.43 213.13 201.08 201.95 104434500 2026-01-26T23:46:42.347312Z\n3 AAPL 2025-08-04 204.08 207.44 201.26 202.92 75109300 2026-01-26T23:46:42.347312Z\n4 AAPL 2025-08-05 202.97 204.91 201.74 202.49 44155100 2026-01-26T23:46:42.347312Z\n```\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_history: pd.DataFrame) -> pd.DataFrame:\n # Select only needed columns\n cols = [\"date\", \"symbol\", \"close\"]\n df = df_history[cols].copy()\n\n # Filter for Microsoft (MSFT) and Google (GOOGL)\n target_symbols = [\"MSFT\", \"GOOGL\"]\n df = df[df[\"symbol\"].isin(target_symbols)].copy()\n\n # Ensure date is a string in YYYY-MM-DD format (no datetime objects)\n df[\"date\"] = pd.to_datetime(df[\"date\"]).dt.strftime(\"%Y-%m-%d\")\n\n # Sort for proper line plotting\n df = df.sort_values([\"symbol\", \"date\"]).reset_index(drop=True)\n\n transformed_df = df\n return transformed_df\n\n\n[EXPLANATION]\n"}, {"role": "assistant", "content": "[CODE EXPLANATION]\n\n- **Keep only** the **`date`**, **`symbol`**, and **`close`** price columns from the original data, discarding all others.\n- **Filter rows** to include **only** the two companies: **`MSFT` (Microsoft)** and **`GOOGL` (Google)**.\n- **Standardize the date format** by converting **`date`** into a **string** formatted as **`YYYY-MM-DD`** (year-month-day).\n- **Sort the data** by **`symbol`** and then by **`date`** so that each company’s prices are in **chronological order**, making it ready for **line plotting over time**.\n- **Return** this cleaned and filtered dataset as the final result.\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n]\n```"}], "agent": "CodeExplanationAgent"}, "status": "completed"}, "anchored": false, "attachedMetadata": "", "contentHash": "903aa346"}], "charts": [{"id": "chart-1769471461230", "chartType": "Scatter Plot", "encodingMap": {"x": {"fieldID": "original--history--date"}, "y": {"fieldID": "original--history--close"}, "color": {"fieldID": "original--history--symbol"}, "size": {"channel": "size", "bin": false}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-457008", "saved": false, "source": "user", "unread": false}, {"id": "chart-1769471279744", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--history--date"}, "y": {"fieldID": "concept-value-1769471267162-0.9509557182892663"}, "color": {"fieldID": "original--history--symbol"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "concept-metric-1769471284653-0.6683773975324122"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-277926", "saved": false, "source": "user", "unread": false}, {"id": "chart-1769471263442", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--history--date"}, "y": {"fieldID": "concept-value-1769471267162-0.9509557182892663"}, "color": {"fieldID": "original--history--symbol"}, "opacity": {}, "column": {"fieldID": "concept-ma_window-1769471267162-0.4410018093789688"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-265247", "saved": false, "source": "user", "unread": false}, {"id": "chart-1769471233467", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--history--date"}, "y": {"fieldID": "original--history--close"}, "color": {"fieldID": "original--history--symbol"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-233476", "saved": false, "source": "user", "unread": false}], "conceptShelfItems": [{"id": "concept-phase-1769471302041-0.7083067598600609", "name": "phase", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-metric-1769471284653-0.6683773975324122", "name": "metric", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-value-1769471267162-0.9509557182892663", "name": "value", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-ma_window-1769471267162-0.4410018093789688", "name": "ma_window", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "original--history--symbol", "name": "symbol", "type": "string", "source": "original", "description": "", "tableRef": "history"}, {"id": "original--history--date", "name": "date", "type": "date", "source": "original", "description": "", "tableRef": "history"}, {"id": "original--history--open", "name": "open", "type": "number", "source": "original", "description": "", "tableRef": "history"}, {"id": "original--history--high", "name": "high", "type": "number", "source": "original", "description": "", "tableRef": "history"}, {"id": "original--history--low", "name": "low", "type": "number", "source": "original", "description": "", "tableRef": "history"}, {"id": "original--history--close", "name": "close", "type": "number", "source": "original", "description": "", "tableRef": "history"}, {"id": "original--history--volume", "name": "volume", "type": "integer", "source": "original", "description": "", "tableRef": "history"}, {"id": "original--history--fetched_at", "name": "fetched_at", "type": "date", "source": "original", "description": "", "tableRef": "history"}], "messages": [{"timestamp": 1769535027918, "type": "success", "component": "data formulator", "value": "Successfully loaded Stock Prices (Live)"}, {"timestamp": 1769535028897, "component": "Data Refresh", "type": "info", "value": "Table \"stock-hist\" data refreshed (738 rows)"}, {"timestamp": 1769535029034, "component": "Data Refresh", "type": "info", "value": "Table \"stock-hist\" data refreshed (738 rows)"}, {"timestamp": 1769535029121, "component": "Data Refresh", "type": "info", "value": "Derived table \"stock-close\" refreshed (738 rows)"}, {"timestamp": 1769535041128, "component": "Data Refresh", "type": "info", "value": "Table \"stock-hist\" data refreshed (738 rows)"}, {"timestamp": 1769535041339, "component": "Data Refresh", "type": "info", "value": "Table \"stock-hist\" data refreshed (738 rows)"}, {"timestamp": 1769535041452, "component": "Data Refresh", "type": "info", "value": "Derived table \"stock-close\" refreshed (738 rows)"}, {"timestamp": 1769535048535, "component": "DB manager", "type": "success", "value": "Deleted 1 unreferenced derived views: view_ushx"}], "displayedMessageIdx": 8, "viewMode": "editor", "chartSynthesisInProgress": [], "config": {"formulateTimeoutSeconds": 60, "maxRepairAttempts": 1, "defaultChartWidth": 300, "defaultChartHeight": 300}, "dataCleanBlocks": [], "cleanInProgress": false, "generatedReports": [{"id": "report-1769471498009-9657", "content": "# Monitoring Mega-Cap Tech: Price, Trends, and Risk at a Glance\n\nThis live report is built to help you track six large tech stocks (AAPL, AMZN, GOOGL, META, MSFT, NVDA) across price, trends, and risk. Each chart updates as new rows are added to the `history` table.\n\n[IMAGE(chart-1769471233467)]\n\nThe first chart shows daily closing prices over time for all six symbols. Use it to spot broad moves, compare relative price levels, and see when one stock starts to diverge from the group.\n\n[IMAGE(chart-1769471263442)]\n\nThe second chart adds 20‑day and 60‑day moving averages. Watch how actual prices relate to these smoother trend lines: crossovers, sustained gaps, or trend flattening can signal shifting momentum.\n\n[IMAGE(chart-1769471279744)]\n\nThe third set of panels tracks three risk and activity metrics: daily returns, 20‑day return volatility, and trading volume. Look for periods where volatility or volume spikes, or where returns cluster on one side.\n\n[IMAGE(chart-1769471461230)]\n\nThe final chart zooms in on GOOGL and MSFT closing prices, making it easier to compare their day‑to‑day paths without the distraction of other symbols.\n\n**In summary**, use these views together: price levels and trends, plus returns, volatility, and volume, to monitor how each stock is behaving and how relationships between them evolve over time. Possible follow‑ups: add alerts for threshold moves, overlay events (earnings, macro news), or include benchmark indices for context.", "style": "live report", "selectedChartIds": ["chart-1769471279744", "chart-1769471233467", "chart-1769471461230", "chart-1769471263442"], "createdAt": 1769471511269, "status": "completed", "title": "Monitoring Mega-Cap Tech: Price, Trends, and Risk at a Glance", "anchorChartId": "chart-1769471279744"}], "_persist": {"version": -1, "rehydrated": true}, "draftNodes": [], "focusedId": {"type": "chart", "chartId": "chart-1769471461230"}} \ No newline at end of file diff --git a/public/df_unemployment.json b/public/df_unemployment.json index 7c85672b..45e87559 100644 --- a/public/df_unemployment.json +++ b/public/df_unemployment.json @@ -1 +1 @@ -{"tables":[{"id":"unemployment-across-industries","displayId":"unemp-by-ind","names":["series","year","month","count","rate","date"],"metadata":{"series":{"type":"string","semanticType":"String"},"year":{"type":"number","semanticType":"Year"},"month":{"type":"number","semanticType":"Month"},"count":{"type":"number","semanticType":"Number"},"rate":{"type":"number","semanticType":"Percentage"},"date":{"type":"date","semanticType":"DateTime"}},"rows":[{"series":"Government","year":2000,"month":1,"count":430,"rate":2.1,"date":"2000-01-01T08:00:00.000Z"},{"series":"Government","year":2000,"month":2,"count":409,"rate":2,"date":"2000-02-01T08:00:00.000Z"},{"series":"Government","year":2000,"month":3,"count":311,"rate":1.5,"date":"2000-03-01T08:00:00.000Z"},{"series":"Government","year":2000,"month":4,"count":269,"rate":1.3,"date":"2000-04-01T08:00:00.000Z"},{"series":"Government","year":2000,"month":5,"count":370,"rate":1.9,"date":"2000-05-01T07:00:00.000Z"},{"series":"Government","year":2000,"month":6,"count":603,"rate":3.1,"date":"2000-06-01T07:00:00.000Z"},{"series":"Government","year":2000,"month":7,"count":545,"rate":2.9,"date":"2000-07-01T07:00:00.000Z"},{"series":"Government","year":2000,"month":8,"count":583,"rate":3.1,"date":"2000-08-01T07:00:00.000Z"},{"series":"Government","year":2000,"month":9,"count":408,"rate":2.1,"date":"2000-09-01T07:00:00.000Z"},{"series":"Government","year":2000,"month":10,"count":391,"rate":2,"date":"2000-10-01T07:00:00.000Z"},{"series":"Government","year":2000,"month":11,"count":384,"rate":1.9,"date":"2000-11-01T08:00:00.000Z"},{"series":"Government","year":2000,"month":12,"count":365,"rate":1.8,"date":"2000-12-01T08:00:00.000Z"},{"series":"Government","year":2001,"month":1,"count":463,"rate":2.3,"date":"2001-01-01T08:00:00.000Z"},{"series":"Government","year":2001,"month":2,"count":298,"rate":1.5,"date":"2001-02-01T08:00:00.000Z"},{"series":"Government","year":2001,"month":3,"count":355,"rate":1.8,"date":"2001-03-01T08:00:00.000Z"},{"series":"Government","year":2001,"month":4,"count":369,"rate":1.9,"date":"2001-04-01T08:00:00.000Z"},{"series":"Government","year":2001,"month":5,"count":361,"rate":1.8,"date":"2001-05-01T07:00:00.000Z"},{"series":"Government","year":2001,"month":6,"count":525,"rate":2.7,"date":"2001-06-01T07:00:00.000Z"},{"series":"Government","year":2001,"month":7,"count":548,"rate":2.8,"date":"2001-07-01T07:00:00.000Z"},{"series":"Government","year":2001,"month":8,"count":540,"rate":2.8,"date":"2001-08-01T07:00:00.000Z"},{"series":"Government","year":2001,"month":9,"count":438,"rate":2.2,"date":"2001-09-01T07:00:00.000Z"},{"series":"Government","year":2001,"month":10,"count":429,"rate":2.2,"date":"2001-10-01T07:00:00.000Z"},{"series":"Government","year":2001,"month":11,"count":420,"rate":2.1,"date":"2001-11-01T08:00:00.000Z"},{"series":"Government","year":2001,"month":12,"count":419,"rate":2.1,"date":"2001-12-01T08:00:00.000Z"},{"series":"Government","year":2002,"month":1,"count":486,"rate":2.4,"date":"2002-01-01T08:00:00.000Z"},{"series":"Government","year":2002,"month":2,"count":508,"rate":2.5,"date":"2002-02-01T08:00:00.000Z"},{"series":"Government","year":2002,"month":3,"count":477,"rate":2.4,"date":"2002-03-01T08:00:00.000Z"},{"series":"Government","year":2002,"month":4,"count":447,"rate":2.2,"date":"2002-04-01T08:00:00.000Z"},{"series":"Government","year":2002,"month":5,"count":484,"rate":2.3,"date":"2002-05-01T07:00:00.000Z"},{"series":"Government","year":2002,"month":6,"count":561,"rate":2.8,"date":"2002-06-01T07:00:00.000Z"},{"series":"Government","year":2002,"month":7,"count":645,"rate":3.2,"date":"2002-07-01T07:00:00.000Z"},{"series":"Government","year":2002,"month":8,"count":596,"rate":3,"date":"2002-08-01T07:00:00.000Z"},{"series":"Government","year":2002,"month":9,"count":530,"rate":2.6,"date":"2002-09-01T07:00:00.000Z"},{"series":"Government","year":2002,"month":10,"count":499,"rate":2.5,"date":"2002-10-01T07:00:00.000Z"},{"series":"Government","year":2002,"month":11,"count":468,"rate":2.3,"date":"2002-11-01T08:00:00.000Z"},{"series":"Government","year":2002,"month":12,"count":446,"rate":2.2,"date":"2002-12-01T08:00:00.000Z"},{"series":"Government","year":2003,"month":1,"count":571,"rate":2.8,"date":"2003-01-01T08:00:00.000Z"},{"series":"Government","year":2003,"month":2,"count":483,"rate":2.4,"date":"2003-02-01T08:00:00.000Z"},{"series":"Government","year":2003,"month":3,"count":526,"rate":2.6,"date":"2003-03-01T08:00:00.000Z"},{"series":"Government","year":2003,"month":4,"count":440,"rate":2.2,"date":"2003-04-01T08:00:00.000Z"},{"series":"Government","year":2003,"month":5,"count":478,"rate":2.4,"date":"2003-05-01T07:00:00.000Z"},{"series":"Government","year":2003,"month":6,"count":704,"rate":3.5,"date":"2003-06-01T07:00:00.000Z"},{"series":"Government","year":2003,"month":7,"count":749,"rate":3.8,"date":"2003-07-01T07:00:00.000Z"},{"series":"Government","year":2003,"month":8,"count":745,"rate":3.7,"date":"2003-08-01T07:00:00.000Z"},{"series":"Government","year":2003,"month":9,"count":556,"rate":2.7,"date":"2003-09-01T07:00:00.000Z"},{"series":"Government","year":2003,"month":10,"count":500,"rate":2.4,"date":"2003-10-01T07:00:00.000Z"},{"series":"Government","year":2003,"month":11,"count":542,"rate":2.7,"date":"2003-11-01T08:00:00.000Z"},{"series":"Government","year":2003,"month":12,"count":516,"rate":2.5,"date":"2003-12-01T08:00:00.000Z"},{"series":"Government","year":2004,"month":1,"count":511,"rate":2.5,"date":"2004-01-01T08:00:00.000Z"},{"series":"Government","year":2004,"month":2,"count":490,"rate":2.4,"date":"2004-02-01T08:00:00.000Z"},{"series":"Government","year":2004,"month":3,"count":530,"rate":2.6,"date":"2004-03-01T08:00:00.000Z"},{"series":"Government","year":2004,"month":4,"count":433,"rate":2.1,"date":"2004-04-01T08:00:00.000Z"},{"series":"Government","year":2004,"month":5,"count":468,"rate":2.3,"date":"2004-05-01T07:00:00.000Z"},{"series":"Government","year":2004,"month":6,"count":580,"rate":2.8,"date":"2004-06-01T07:00:00.000Z"},{"series":"Government","year":2004,"month":7,"count":741,"rate":3.7,"date":"2004-07-01T07:00:00.000Z"},{"series":"Government","year":2004,"month":8,"count":676,"rate":3.3,"date":"2004-08-01T07:00:00.000Z"},{"series":"Government","year":2004,"month":9,"count":568,"rate":2.7,"date":"2004-09-01T07:00:00.000Z"},{"series":"Government","year":2004,"month":10,"count":561,"rate":2.7,"date":"2004-10-01T07:00:00.000Z"},{"series":"Government","year":2004,"month":11,"count":514,"rate":2.4,"date":"2004-11-01T08:00:00.000Z"},{"series":"Government","year":2004,"month":12,"count":499,"rate":2.4,"date":"2004-12-01T08:00:00.000Z"},{"series":"Government","year":2005,"month":1,"count":555,"rate":2.6,"date":"2005-01-01T08:00:00.000Z"},{"series":"Government","year":2005,"month":2,"count":472,"rate":2.3,"date":"2005-02-01T08:00:00.000Z"},{"series":"Government","year":2005,"month":3,"count":468,"rate":2.2,"date":"2005-03-01T08:00:00.000Z"},{"series":"Government","year":2005,"month":4,"count":478,"rate":2.3,"date":"2005-04-01T08:00:00.000Z"},{"series":"Government","year":2005,"month":5,"count":453,"rate":2.1,"date":"2005-05-01T07:00:00.000Z"},{"series":"Government","year":2005,"month":6,"count":681,"rate":3.2,"date":"2005-06-01T07:00:00.000Z"},{"series":"Government","year":2005,"month":7,"count":683,"rate":3.3,"date":"2005-07-01T07:00:00.000Z"},{"series":"Government","year":2005,"month":8,"count":664,"rate":3.2,"date":"2005-08-01T07:00:00.000Z"},{"series":"Government","year":2005,"month":9,"count":568,"rate":2.7,"date":"2005-09-01T07:00:00.000Z"},{"series":"Government","year":2005,"month":10,"count":502,"rate":2.4,"date":"2005-10-01T07:00:00.000Z"},{"series":"Government","year":2005,"month":11,"count":494,"rate":2.4,"date":"2005-11-01T08:00:00.000Z"},{"series":"Government","year":2005,"month":12,"count":393,"rate":1.9,"date":"2005-12-01T08:00:00.000Z"},{"series":"Government","year":2006,"month":1,"count":457,"rate":2.2,"date":"2006-01-01T08:00:00.000Z"},{"series":"Government","year":2006,"month":2,"count":472,"rate":2.3,"date":"2006-02-01T08:00:00.000Z"},{"series":"Government","year":2006,"month":3,"count":461,"rate":2.2,"date":"2006-03-01T08:00:00.000Z"},{"series":"Government","year":2006,"month":4,"count":414,"rate":2,"date":"2006-04-01T08:00:00.000Z"},{"series":"Government","year":2006,"month":5,"count":429,"rate":2.1,"date":"2006-05-01T07:00:00.000Z"},{"series":"Government","year":2006,"month":6,"count":578,"rate":2.8,"date":"2006-06-01T07:00:00.000Z"},{"series":"Government","year":2006,"month":7,"count":659,"rate":3.2,"date":"2006-07-01T07:00:00.000Z"},{"series":"Government","year":2006,"month":8,"count":595,"rate":2.9,"date":"2006-08-01T07:00:00.000Z"},{"series":"Government","year":2006,"month":9,"count":396,"rate":1.9,"date":"2006-09-01T07:00:00.000Z"},{"series":"Government","year":2006,"month":10,"count":424,"rate":2,"date":"2006-10-01T07:00:00.000Z"},{"series":"Government","year":2006,"month":11,"count":400,"rate":1.9,"date":"2006-11-01T08:00:00.000Z"},{"series":"Government","year":2006,"month":12,"count":395,"rate":1.9,"date":"2006-12-01T08:00:00.000Z"},{"series":"Government","year":2007,"month":1,"count":476,"rate":2.2,"date":"2007-01-01T08:00:00.000Z"},{"series":"Government","year":2007,"month":2,"count":405,"rate":1.9,"date":"2007-02-01T08:00:00.000Z"},{"series":"Government","year":2007,"month":3,"count":419,"rate":1.9,"date":"2007-03-01T08:00:00.000Z"},{"series":"Government","year":2007,"month":4,"count":408,"rate":1.9,"date":"2007-04-01T07:00:00.000Z"},{"series":"Government","year":2007,"month":5,"count":428,"rate":1.9,"date":"2007-05-01T07:00:00.000Z"},{"series":"Government","year":2007,"month":6,"count":572,"rate":2.7,"date":"2007-06-01T07:00:00.000Z"},{"series":"Government","year":2007,"month":7,"count":704,"rate":3.3,"date":"2007-07-01T07:00:00.000Z"},{"series":"Government","year":2007,"month":8,"count":695,"rate":3.2,"date":"2007-08-01T07:00:00.000Z"},{"series":"Government","year":2007,"month":9,"count":525,"rate":2.4,"date":"2007-09-01T07:00:00.000Z"},{"series":"Government","year":2007,"month":10,"count":492,"rate":2.3,"date":"2007-10-01T07:00:00.000Z"},{"series":"Government","year":2007,"month":11,"count":482,"rate":2.2,"date":"2007-11-01T07:00:00.000Z"},{"series":"Government","year":2007,"month":12,"count":451,"rate":2.1,"date":"2007-12-01T08:00:00.000Z"},{"series":"Government","year":2008,"month":1,"count":471,"rate":2.2,"date":"2008-01-01T08:00:00.000Z"},{"series":"Government","year":2008,"month":2,"count":372,"rate":1.7,"date":"2008-02-01T08:00:00.000Z"},{"series":"Government","year":2008,"month":3,"count":425,"rate":1.9,"date":"2008-03-01T08:00:00.000Z"},{"series":"Government","year":2008,"month":4,"count":373,"rate":1.7,"date":"2008-04-01T07:00:00.000Z"},{"series":"Government","year":2008,"month":5,"count":461,"rate":2.1,"date":"2008-05-01T07:00:00.000Z"},{"series":"Government","year":2008,"month":6,"count":654,"rate":3,"date":"2008-06-01T07:00:00.000Z"},{"series":"Government","year":2008,"month":7,"count":770,"rate":3.6,"date":"2008-07-01T07:00:00.000Z"},{"series":"Government","year":2008,"month":8,"count":721,"rate":3.3,"date":"2008-08-01T07:00:00.000Z"},{"series":"Government","year":2008,"month":9,"count":573,"rate":2.6,"date":"2008-09-01T07:00:00.000Z"},{"series":"Government","year":2008,"month":10,"count":552,"rate":2.5,"date":"2008-10-01T07:00:00.000Z"},{"series":"Government","year":2008,"month":11,"count":527,"rate":2.4,"date":"2008-11-01T07:00:00.000Z"},{"series":"Government","year":2008,"month":12,"count":511,"rate":2.3,"date":"2008-12-01T08:00:00.000Z"},{"series":"Government","year":2009,"month":1,"count":652,"rate":3,"date":"2009-01-01T08:00:00.000Z"},{"series":"Government","year":2009,"month":2,"count":563,"rate":2.6,"date":"2009-02-01T08:00:00.000Z"},{"series":"Government","year":2009,"month":3,"count":598,"rate":2.8,"date":"2009-03-01T08:00:00.000Z"},{"series":"Government","year":2009,"month":4,"count":575,"rate":2.6,"date":"2009-04-01T07:00:00.000Z"},{"series":"Government","year":2009,"month":5,"count":702,"rate":3.1,"date":"2009-05-01T07:00:00.000Z"},{"series":"Government","year":2009,"month":6,"count":991,"rate":4.4,"date":"2009-06-01T07:00:00.000Z"},{"series":"Government","year":2009,"month":7,"count":1129,"rate":5.1,"date":"2009-07-01T07:00:00.000Z"},{"series":"Government","year":2009,"month":8,"count":1118,"rate":5.1,"date":"2009-08-01T07:00:00.000Z"},{"series":"Government","year":2009,"month":9,"count":928,"rate":4.2,"date":"2009-09-01T07:00:00.000Z"},{"series":"Government","year":2009,"month":10,"count":785,"rate":3.5,"date":"2009-10-01T07:00:00.000Z"},{"series":"Government","year":2009,"month":11,"count":748,"rate":3.4,"date":"2009-11-01T07:00:00.000Z"},{"series":"Government","year":2009,"month":12,"count":797,"rate":3.6,"date":"2009-12-01T08:00:00.000Z"},{"series":"Government","year":2010,"month":1,"count":948,"rate":4.3,"date":"2010-01-01T08:00:00.000Z"},{"series":"Government","year":2010,"month":2,"count":880,"rate":4,"date":"2010-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":1,"count":19,"rate":3.9,"date":"2000-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":2,"count":25,"rate":5.5,"date":"2000-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":3,"count":17,"rate":3.7,"date":"2000-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":4,"count":20,"rate":4.1,"date":"2000-04-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":5,"count":27,"rate":5.3,"date":"2000-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":6,"count":13,"rate":2.6,"date":"2000-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":7,"count":16,"rate":3.6,"date":"2000-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":8,"count":23,"rate":5.1,"date":"2000-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":9,"count":25,"rate":5.8,"date":"2000-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":10,"count":39,"rate":7.8,"date":"2000-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":11,"count":11,"rate":2,"date":"2000-11-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2000,"month":12,"count":20,"rate":3.8,"date":"2000-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":1,"count":11,"rate":2.3,"date":"2001-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":2,"count":27,"rate":5.3,"date":"2001-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":3,"count":14,"rate":3,"date":"2001-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":4,"count":24,"rate":4.7,"date":"2001-04-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":5,"count":34,"rate":5.9,"date":"2001-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":6,"count":26,"rate":4.7,"date":"2001-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":7,"count":17,"rate":3.1,"date":"2001-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":8,"count":18,"rate":3.3,"date":"2001-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":9,"count":23,"rate":4.2,"date":"2001-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":10,"count":32,"rate":5.4,"date":"2001-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":11,"count":20,"rate":3.6,"date":"2001-11-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2001,"month":12,"count":27,"rate":5.3,"date":"2001-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":1,"count":33,"rate":7,"date":"2002-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":2,"count":35,"rate":7.5,"date":"2002-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":3,"count":28,"rate":5.3,"date":"2002-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":4,"count":33,"rate":6.1,"date":"2002-04-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":5,"count":25,"rate":4.9,"date":"2002-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":6,"count":35,"rate":7.1,"date":"2002-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":7,"count":19,"rate":3.9,"date":"2002-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":8,"count":32,"rate":6.3,"date":"2002-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":9,"count":42,"rate":7.9,"date":"2002-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":10,"count":36,"rate":6.4,"date":"2002-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":11,"count":32,"rate":5.4,"date":"2002-11-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2002,"month":12,"count":45,"rate":7.8,"date":"2002-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":1,"count":54,"rate":9,"date":"2003-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":2,"count":41,"rate":7.1,"date":"2003-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":3,"count":46,"rate":8.2,"date":"2003-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":4,"count":41,"rate":7.7,"date":"2003-04-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":5,"count":40,"rate":7.5,"date":"2003-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":6,"count":36,"rate":6.8,"date":"2003-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":7,"count":43,"rate":7.9,"date":"2003-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":8,"count":20,"rate":3.8,"date":"2003-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":9,"count":25,"rate":4.6,"date":"2003-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":10,"count":31,"rate":5.6,"date":"2003-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":11,"count":34,"rate":5.9,"date":"2003-11-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2003,"month":12,"count":32,"rate":5.6,"date":"2003-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":1,"count":31,"rate":5.8,"date":"2004-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":2,"count":24,"rate":5,"date":"2004-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":3,"count":22,"rate":4.4,"date":"2004-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":4,"count":34,"rate":6.4,"date":"2004-04-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":5,"count":22,"rate":4.3,"date":"2004-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":6,"count":27,"rate":5,"date":"2004-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":7,"count":28,"rate":5.4,"date":"2004-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":8,"count":10,"rate":1.9,"date":"2004-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":9,"count":8,"rate":1.5,"date":"2004-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":10,"count":15,"rate":2.6,"date":"2004-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":11,"count":20,"rate":3.3,"date":"2004-11-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2004,"month":12,"count":16,"rate":2.5,"date":"2004-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":1,"count":29,"rate":4.9,"date":"2005-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":2,"count":25,"rate":4,"date":"2005-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":3,"count":32,"rate":5.2,"date":"2005-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":4,"count":19,"rate":2.9,"date":"2005-04-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":5,"count":16,"rate":2.4,"date":"2005-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":6,"count":25,"rate":4,"date":"2005-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":7,"count":22,"rate":3.7,"date":"2005-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":8,"count":12,"rate":2,"date":"2005-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":9,"count":12,"rate":2,"date":"2005-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":10,"count":2,"rate":0.3,"date":"2005-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":11,"count":18,"rate":2.9,"date":"2005-11-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2005,"month":12,"count":23,"rate":3.5,"date":"2005-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":1,"count":26,"rate":3.9,"date":"2006-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":2,"count":25,"rate":3.8,"date":"2006-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":3,"count":14,"rate":2.1,"date":"2006-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":4,"count":17,"rate":2.5,"date":"2006-04-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":5,"count":20,"rate":2.8,"date":"2006-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":6,"count":31,"rate":4.3,"date":"2006-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":7,"count":25,"rate":3.5,"date":"2006-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":8,"count":32,"rate":4.3,"date":"2006-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":9,"count":14,"rate":2.1,"date":"2006-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":10,"count":15,"rate":2.2,"date":"2006-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":11,"count":22,"rate":2.9,"date":"2006-11-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2006,"month":12,"count":25,"rate":3.4,"date":"2006-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":1,"count":35,"rate":4.7,"date":"2007-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":2,"count":33,"rate":4.5,"date":"2007-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":3,"count":24,"rate":3.2,"date":"2007-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":4,"count":17,"rate":2.3,"date":"2007-04-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":5,"count":22,"rate":3,"date":"2007-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":6,"count":33,"rate":4.3,"date":"2007-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":7,"count":33,"rate":4.3,"date":"2007-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":8,"count":33,"rate":4.6,"date":"2007-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":9,"count":25,"rate":3.2,"date":"2007-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":10,"count":9,"rate":1.3,"date":"2007-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":11,"count":16,"rate":2.3,"date":"2007-11-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2007,"month":12,"count":24,"rate":3.4,"date":"2007-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":1,"count":28,"rate":4,"date":"2008-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":2,"count":16,"rate":2.2,"date":"2008-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":3,"count":28,"rate":3.7,"date":"2008-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":4,"count":28,"rate":3.6,"date":"2008-04-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":5,"count":28,"rate":3.4,"date":"2008-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":6,"count":28,"rate":3.3,"date":"2008-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":7,"count":13,"rate":1.5,"date":"2008-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":8,"count":17,"rate":1.9,"date":"2008-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":9,"count":25,"rate":2.8,"date":"2008-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":10,"count":15,"rate":1.7,"date":"2008-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":11,"count":32,"rate":3.7,"date":"2008-11-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2008,"month":12,"count":46,"rate":5.2,"date":"2008-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":1,"count":59,"rate":7,"date":"2009-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":2,"count":63,"rate":7.6,"date":"2009-02-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":3,"count":105,"rate":12.6,"date":"2009-03-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":4,"count":125,"rate":16.1,"date":"2009-04-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":5,"count":98,"rate":13.3,"date":"2009-05-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":6,"count":100,"rate":13.6,"date":"2009-06-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":7,"count":95,"rate":12.6,"date":"2009-07-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":8,"count":93,"rate":11.8,"date":"2009-08-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":9,"count":76,"rate":10.7,"date":"2009-09-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":10,"count":84,"rate":10.8,"date":"2009-10-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":11,"count":96,"rate":12,"date":"2009-11-01T07:00:00.000Z"},{"series":"Mining and Extraction","year":2009,"month":12,"count":89,"rate":11.8,"date":"2009-12-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2010,"month":1,"count":68,"rate":9.1,"date":"2010-01-01T08:00:00.000Z"},{"series":"Mining and Extraction","year":2010,"month":2,"count":79,"rate":10.7,"date":"2010-02-01T08:00:00.000Z"},{"series":"Construction","year":2000,"month":1,"count":745,"rate":9.7,"date":"2000-01-01T08:00:00.000Z"},{"series":"Construction","year":2000,"month":2,"count":812,"rate":10.6,"date":"2000-02-01T08:00:00.000Z"},{"series":"Construction","year":2000,"month":3,"count":669,"rate":8.7,"date":"2000-03-01T08:00:00.000Z"},{"series":"Construction","year":2000,"month":4,"count":447,"rate":5.8,"date":"2000-04-01T08:00:00.000Z"},{"series":"Construction","year":2000,"month":5,"count":397,"rate":5,"date":"2000-05-01T07:00:00.000Z"},{"series":"Construction","year":2000,"month":6,"count":389,"rate":4.6,"date":"2000-06-01T07:00:00.000Z"},{"series":"Construction","year":2000,"month":7,"count":384,"rate":4.4,"date":"2000-07-01T07:00:00.000Z"},{"series":"Construction","year":2000,"month":8,"count":446,"rate":5.1,"date":"2000-08-01T07:00:00.000Z"},{"series":"Construction","year":2000,"month":9,"count":386,"rate":4.6,"date":"2000-09-01T07:00:00.000Z"},{"series":"Construction","year":2000,"month":10,"count":417,"rate":4.9,"date":"2000-10-01T07:00:00.000Z"},{"series":"Construction","year":2000,"month":11,"count":482,"rate":5.7,"date":"2000-11-01T08:00:00.000Z"},{"series":"Construction","year":2000,"month":12,"count":580,"rate":6.8,"date":"2000-12-01T08:00:00.000Z"},{"series":"Construction","year":2001,"month":1,"count":836,"rate":9.8,"date":"2001-01-01T08:00:00.000Z"},{"series":"Construction","year":2001,"month":2,"count":826,"rate":9.9,"date":"2001-02-01T08:00:00.000Z"},{"series":"Construction","year":2001,"month":3,"count":683,"rate":8.4,"date":"2001-03-01T08:00:00.000Z"},{"series":"Construction","year":2001,"month":4,"count":596,"rate":7.1,"date":"2001-04-01T08:00:00.000Z"},{"series":"Construction","year":2001,"month":5,"count":478,"rate":5.6,"date":"2001-05-01T07:00:00.000Z"},{"series":"Construction","year":2001,"month":6,"count":443,"rate":5.1,"date":"2001-06-01T07:00:00.000Z"},{"series":"Construction","year":2001,"month":7,"count":447,"rate":4.9,"date":"2001-07-01T07:00:00.000Z"},{"series":"Construction","year":2001,"month":8,"count":522,"rate":5.8,"date":"2001-08-01T07:00:00.000Z"},{"series":"Construction","year":2001,"month":9,"count":489,"rate":5.5,"date":"2001-09-01T07:00:00.000Z"},{"series":"Construction","year":2001,"month":10,"count":535,"rate":6.1,"date":"2001-10-01T07:00:00.000Z"},{"series":"Construction","year":2001,"month":11,"count":670,"rate":7.6,"date":"2001-11-01T08:00:00.000Z"},{"series":"Construction","year":2001,"month":12,"count":785,"rate":9,"date":"2001-12-01T08:00:00.000Z"},{"series":"Construction","year":2002,"month":1,"count":1211,"rate":13.6,"date":"2002-01-01T08:00:00.000Z"},{"series":"Construction","year":2002,"month":2,"count":1060,"rate":12.2,"date":"2002-02-01T08:00:00.000Z"},{"series":"Construction","year":2002,"month":3,"count":1009,"rate":11.8,"date":"2002-03-01T08:00:00.000Z"},{"series":"Construction","year":2002,"month":4,"count":855,"rate":10.1,"date":"2002-04-01T08:00:00.000Z"},{"series":"Construction","year":2002,"month":5,"count":626,"rate":7.4,"date":"2002-05-01T07:00:00.000Z"},{"series":"Construction","year":2002,"month":6,"count":593,"rate":6.9,"date":"2002-06-01T07:00:00.000Z"},{"series":"Construction","year":2002,"month":7,"count":594,"rate":6.9,"date":"2002-07-01T07:00:00.000Z"},{"series":"Construction","year":2002,"month":8,"count":654,"rate":7.4,"date":"2002-08-01T07:00:00.000Z"},{"series":"Construction","year":2002,"month":9,"count":615,"rate":7,"date":"2002-09-01T07:00:00.000Z"},{"series":"Construction","year":2002,"month":10,"count":680,"rate":7.7,"date":"2002-10-01T07:00:00.000Z"},{"series":"Construction","year":2002,"month":11,"count":758,"rate":8.5,"date":"2002-11-01T08:00:00.000Z"},{"series":"Construction","year":2002,"month":12,"count":941,"rate":10.9,"date":"2002-12-01T08:00:00.000Z"},{"series":"Construction","year":2003,"month":1,"count":1196,"rate":14,"date":"2003-01-01T08:00:00.000Z"},{"series":"Construction","year":2003,"month":2,"count":1173,"rate":14,"date":"2003-02-01T08:00:00.000Z"},{"series":"Construction","year":2003,"month":3,"count":987,"rate":11.8,"date":"2003-03-01T08:00:00.000Z"},{"series":"Construction","year":2003,"month":4,"count":772,"rate":9.3,"date":"2003-04-01T08:00:00.000Z"},{"series":"Construction","year":2003,"month":5,"count":715,"rate":8.4,"date":"2003-05-01T07:00:00.000Z"},{"series":"Construction","year":2003,"month":6,"count":710,"rate":7.9,"date":"2003-06-01T07:00:00.000Z"},{"series":"Construction","year":2003,"month":7,"count":677,"rate":7.5,"date":"2003-07-01T07:00:00.000Z"},{"series":"Construction","year":2003,"month":8,"count":650,"rate":7.1,"date":"2003-08-01T07:00:00.000Z"},{"series":"Construction","year":2003,"month":9,"count":681,"rate":7.6,"date":"2003-09-01T07:00:00.000Z"},{"series":"Construction","year":2003,"month":10,"count":651,"rate":7.4,"date":"2003-10-01T07:00:00.000Z"},{"series":"Construction","year":2003,"month":11,"count":690,"rate":7.8,"date":"2003-11-01T08:00:00.000Z"},{"series":"Construction","year":2003,"month":12,"count":813,"rate":9.3,"date":"2003-12-01T08:00:00.000Z"},{"series":"Construction","year":2004,"month":1,"count":994,"rate":11.3,"date":"2004-01-01T08:00:00.000Z"},{"series":"Construction","year":2004,"month":2,"count":1039,"rate":11.6,"date":"2004-02-01T08:00:00.000Z"},{"series":"Construction","year":2004,"month":3,"count":1011,"rate":11.3,"date":"2004-03-01T08:00:00.000Z"},{"series":"Construction","year":2004,"month":4,"count":849,"rate":9.5,"date":"2004-04-01T08:00:00.000Z"},{"series":"Construction","year":2004,"month":5,"count":665,"rate":7.4,"date":"2004-05-01T07:00:00.000Z"},{"series":"Construction","year":2004,"month":6,"count":668,"rate":7,"date":"2004-06-01T07:00:00.000Z"},{"series":"Construction","year":2004,"month":7,"count":610,"rate":6.4,"date":"2004-07-01T07:00:00.000Z"},{"series":"Construction","year":2004,"month":8,"count":563,"rate":6,"date":"2004-08-01T07:00:00.000Z"},{"series":"Construction","year":2004,"month":9,"count":629,"rate":6.8,"date":"2004-09-01T07:00:00.000Z"},{"series":"Construction","year":2004,"month":10,"count":635,"rate":6.9,"date":"2004-10-01T07:00:00.000Z"},{"series":"Construction","year":2004,"month":11,"count":695,"rate":7.4,"date":"2004-11-01T08:00:00.000Z"},{"series":"Construction","year":2004,"month":12,"count":870,"rate":9.5,"date":"2004-12-01T08:00:00.000Z"},{"series":"Construction","year":2005,"month":1,"count":1079,"rate":11.8,"date":"2005-01-01T08:00:00.000Z"},{"series":"Construction","year":2005,"month":2,"count":1150,"rate":12.3,"date":"2005-02-01T08:00:00.000Z"},{"series":"Construction","year":2005,"month":3,"count":961,"rate":10.3,"date":"2005-03-01T08:00:00.000Z"},{"series":"Construction","year":2005,"month":4,"count":693,"rate":7.4,"date":"2005-04-01T08:00:00.000Z"},{"series":"Construction","year":2005,"month":5,"count":567,"rate":6.1,"date":"2005-05-01T07:00:00.000Z"},{"series":"Construction","year":2005,"month":6,"count":559,"rate":5.7,"date":"2005-06-01T07:00:00.000Z"},{"series":"Construction","year":2005,"month":7,"count":509,"rate":5.2,"date":"2005-07-01T07:00:00.000Z"},{"series":"Construction","year":2005,"month":8,"count":561,"rate":5.7,"date":"2005-08-01T07:00:00.000Z"},{"series":"Construction","year":2005,"month":9,"count":572,"rate":5.7,"date":"2005-09-01T07:00:00.000Z"},{"series":"Construction","year":2005,"month":10,"count":519,"rate":5.3,"date":"2005-10-01T07:00:00.000Z"},{"series":"Construction","year":2005,"month":11,"count":564,"rate":5.7,"date":"2005-11-01T08:00:00.000Z"},{"series":"Construction","year":2005,"month":12,"count":813,"rate":8.2,"date":"2005-12-01T08:00:00.000Z"},{"series":"Construction","year":2006,"month":1,"count":868,"rate":9,"date":"2006-01-01T08:00:00.000Z"},{"series":"Construction","year":2006,"month":2,"count":836,"rate":8.6,"date":"2006-02-01T08:00:00.000Z"},{"series":"Construction","year":2006,"month":3,"count":820,"rate":8.5,"date":"2006-03-01T08:00:00.000Z"},{"series":"Construction","year":2006,"month":4,"count":674,"rate":6.9,"date":"2006-04-01T08:00:00.000Z"},{"series":"Construction","year":2006,"month":5,"count":647,"rate":6.6,"date":"2006-05-01T07:00:00.000Z"},{"series":"Construction","year":2006,"month":6,"count":569,"rate":5.6,"date":"2006-06-01T07:00:00.000Z"},{"series":"Construction","year":2006,"month":7,"count":633,"rate":6.1,"date":"2006-07-01T07:00:00.000Z"},{"series":"Construction","year":2006,"month":8,"count":618,"rate":5.9,"date":"2006-08-01T07:00:00.000Z"},{"series":"Construction","year":2006,"month":9,"count":586,"rate":5.6,"date":"2006-09-01T07:00:00.000Z"},{"series":"Construction","year":2006,"month":10,"count":456,"rate":4.5,"date":"2006-10-01T07:00:00.000Z"},{"series":"Construction","year":2006,"month":11,"count":618,"rate":6,"date":"2006-11-01T08:00:00.000Z"},{"series":"Construction","year":2006,"month":12,"count":725,"rate":6.9,"date":"2006-12-01T08:00:00.000Z"},{"series":"Construction","year":2007,"month":1,"count":922,"rate":8.9,"date":"2007-01-01T08:00:00.000Z"},{"series":"Construction","year":2007,"month":2,"count":1086,"rate":10.5,"date":"2007-02-01T08:00:00.000Z"},{"series":"Construction","year":2007,"month":3,"count":924,"rate":9,"date":"2007-03-01T08:00:00.000Z"},{"series":"Construction","year":2007,"month":4,"count":853,"rate":8.6,"date":"2007-04-01T07:00:00.000Z"},{"series":"Construction","year":2007,"month":5,"count":676,"rate":6.9,"date":"2007-05-01T07:00:00.000Z"},{"series":"Construction","year":2007,"month":6,"count":600,"rate":5.9,"date":"2007-06-01T07:00:00.000Z"},{"series":"Construction","year":2007,"month":7,"count":617,"rate":5.9,"date":"2007-07-01T07:00:00.000Z"},{"series":"Construction","year":2007,"month":8,"count":558,"rate":5.3,"date":"2007-08-01T07:00:00.000Z"},{"series":"Construction","year":2007,"month":9,"count":596,"rate":5.8,"date":"2007-09-01T07:00:00.000Z"},{"series":"Construction","year":2007,"month":10,"count":641,"rate":6.1,"date":"2007-10-01T07:00:00.000Z"},{"series":"Construction","year":2007,"month":11,"count":645,"rate":6.2,"date":"2007-11-01T07:00:00.000Z"},{"series":"Construction","year":2007,"month":12,"count":968,"rate":9.4,"date":"2007-12-01T08:00:00.000Z"},{"series":"Construction","year":2008,"month":1,"count":1099,"rate":11,"date":"2008-01-01T08:00:00.000Z"},{"series":"Construction","year":2008,"month":2,"count":1118,"rate":11.4,"date":"2008-02-01T08:00:00.000Z"},{"series":"Construction","year":2008,"month":3,"count":1170,"rate":12,"date":"2008-03-01T08:00:00.000Z"},{"series":"Construction","year":2008,"month":4,"count":1057,"rate":11.1,"date":"2008-04-01T07:00:00.000Z"},{"series":"Construction","year":2008,"month":5,"count":809,"rate":8.6,"date":"2008-05-01T07:00:00.000Z"},{"series":"Construction","year":2008,"month":6,"count":785,"rate":8.2,"date":"2008-06-01T07:00:00.000Z"},{"series":"Construction","year":2008,"month":7,"count":783,"rate":8,"date":"2008-07-01T07:00:00.000Z"},{"series":"Construction","year":2008,"month":8,"count":814,"rate":8.2,"date":"2008-08-01T07:00:00.000Z"},{"series":"Construction","year":2008,"month":9,"count":970,"rate":9.9,"date":"2008-09-01T07:00:00.000Z"},{"series":"Construction","year":2008,"month":10,"count":1078,"rate":10.8,"date":"2008-10-01T07:00:00.000Z"},{"series":"Construction","year":2008,"month":11,"count":1237,"rate":12.7,"date":"2008-11-01T07:00:00.000Z"},{"series":"Construction","year":2008,"month":12,"count":1438,"rate":15.3,"date":"2008-12-01T08:00:00.000Z"},{"series":"Construction","year":2009,"month":1,"count":1744,"rate":18.2,"date":"2009-01-01T08:00:00.000Z"},{"series":"Construction","year":2009,"month":2,"count":2025,"rate":21.4,"date":"2009-02-01T08:00:00.000Z"},{"series":"Construction","year":2009,"month":3,"count":1979,"rate":21.1,"date":"2009-03-01T08:00:00.000Z"},{"series":"Construction","year":2009,"month":4,"count":1737,"rate":18.7,"date":"2009-04-01T07:00:00.000Z"},{"series":"Construction","year":2009,"month":5,"count":1768,"rate":19.2,"date":"2009-05-01T07:00:00.000Z"},{"series":"Construction","year":2009,"month":6,"count":1601,"rate":17.4,"date":"2009-06-01T07:00:00.000Z"},{"series":"Construction","year":2009,"month":7,"count":1687,"rate":18.2,"date":"2009-07-01T07:00:00.000Z"},{"series":"Construction","year":2009,"month":8,"count":1542,"rate":16.5,"date":"2009-08-01T07:00:00.000Z"},{"series":"Construction","year":2009,"month":9,"count":1594,"rate":17.1,"date":"2009-09-01T07:00:00.000Z"},{"series":"Construction","year":2009,"month":10,"count":1744,"rate":18.7,"date":"2009-10-01T07:00:00.000Z"},{"series":"Construction","year":2009,"month":11,"count":1780,"rate":19.4,"date":"2009-11-01T07:00:00.000Z"},{"series":"Construction","year":2009,"month":12,"count":2044,"rate":22.7,"date":"2009-12-01T08:00:00.000Z"},{"series":"Construction","year":2010,"month":1,"count":2194,"rate":24.7,"date":"2010-01-01T08:00:00.000Z"},{"series":"Construction","year":2010,"month":2,"count":2440,"rate":27.1,"date":"2010-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":1,"count":734,"rate":3.6,"date":"2000-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":2,"count":694,"rate":3.4,"date":"2000-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":3,"count":739,"rate":3.6,"date":"2000-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":4,"count":736,"rate":3.7,"date":"2000-04-01T08:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":5,"count":685,"rate":3.4,"date":"2000-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":6,"count":621,"rate":3.1,"date":"2000-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":7,"count":708,"rate":3.6,"date":"2000-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":8,"count":685,"rate":3.4,"date":"2000-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":9,"count":667,"rate":3.4,"date":"2000-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":10,"count":693,"rate":3.6,"date":"2000-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":11,"count":672,"rate":3.4,"date":"2000-11-01T08:00:00.000Z"},{"series":"Manufacturing","year":2000,"month":12,"count":653,"rate":3.3,"date":"2000-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":1,"count":911,"rate":4.6,"date":"2001-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":2,"count":902,"rate":4.6,"date":"2001-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":3,"count":954,"rate":4.9,"date":"2001-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":4,"count":855,"rate":4.4,"date":"2001-04-01T08:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":5,"count":903,"rate":4.7,"date":"2001-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":6,"count":956,"rate":5,"date":"2001-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":7,"count":1054,"rate":5.6,"date":"2001-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":8,"count":1023,"rate":5.5,"date":"2001-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":9,"count":996,"rate":5.4,"date":"2001-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":10,"count":1065,"rate":5.8,"date":"2001-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":11,"count":1108,"rate":6,"date":"2001-11-01T08:00:00.000Z"},{"series":"Manufacturing","year":2001,"month":12,"count":1172,"rate":6.3,"date":"2001-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":1,"count":1377,"rate":7.4,"date":"2002-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":2,"count":1296,"rate":7,"date":"2002-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":3,"count":1367,"rate":7.3,"date":"2002-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":4,"count":1322,"rate":7.2,"date":"2002-04-01T08:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":5,"count":1194,"rate":6.6,"date":"2002-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":6,"count":1187,"rate":6.6,"date":"2002-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":7,"count":1185,"rate":6.6,"date":"2002-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":8,"count":1108,"rate":6.2,"date":"2002-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":9,"count":1076,"rate":6.1,"date":"2002-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":10,"count":1046,"rate":5.9,"date":"2002-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":11,"count":1115,"rate":6.3,"date":"2002-11-01T08:00:00.000Z"},{"series":"Manufacturing","year":2002,"month":12,"count":1188,"rate":6.6,"date":"2002-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":1,"count":1302,"rate":7.2,"date":"2003-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":2,"count":1229,"rate":6.7,"date":"2003-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":3,"count":1222,"rate":6.8,"date":"2003-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":4,"count":1199,"rate":6.7,"date":"2003-04-01T08:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":5,"count":1150,"rate":6.5,"date":"2003-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":6,"count":1232,"rate":7,"date":"2003-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":7,"count":1193,"rate":6.9,"date":"2003-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":8,"count":1186,"rate":6.7,"date":"2003-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":9,"count":1175,"rate":6.8,"date":"2003-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":10,"count":1041,"rate":6,"date":"2003-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":11,"count":1034,"rate":5.9,"date":"2003-11-01T08:00:00.000Z"},{"series":"Manufacturing","year":2003,"month":12,"count":1025,"rate":5.9,"date":"2003-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":1,"count":1110,"rate":6.4,"date":"2004-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":2,"count":1094,"rate":6.3,"date":"2004-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":3,"count":1083,"rate":6.3,"date":"2004-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":4,"count":1004,"rate":5.8,"date":"2004-04-01T08:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":5,"count":966,"rate":5.6,"date":"2004-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":6,"count":957,"rate":5.6,"date":"2004-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":7,"count":1019,"rate":6,"date":"2004-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":8,"count":840,"rate":4.9,"date":"2004-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":9,"count":852,"rate":5,"date":"2004-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":10,"count":884,"rate":5.3,"date":"2004-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":11,"count":905,"rate":5.4,"date":"2004-11-01T08:00:00.000Z"},{"series":"Manufacturing","year":2004,"month":12,"count":872,"rate":5.1,"date":"2004-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":1,"count":889,"rate":5.3,"date":"2005-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":2,"count":889,"rate":5.3,"date":"2005-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":3,"count":879,"rate":5.3,"date":"2005-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":4,"count":793,"rate":4.8,"date":"2005-04-01T08:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":5,"count":743,"rate":4.5,"date":"2005-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":6,"count":743,"rate":4.4,"date":"2005-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":7,"count":883,"rate":5.3,"date":"2005-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":8,"count":767,"rate":4.7,"date":"2005-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":9,"count":775,"rate":4.7,"date":"2005-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":10,"count":800,"rate":4.8,"date":"2005-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":11,"count":823,"rate":4.9,"date":"2005-11-01T08:00:00.000Z"},{"series":"Manufacturing","year":2005,"month":12,"count":757,"rate":4.5,"date":"2005-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":1,"count":778,"rate":4.6,"date":"2006-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":2,"count":821,"rate":4.9,"date":"2006-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":3,"count":701,"rate":4.1,"date":"2006-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":4,"count":745,"rate":4.5,"date":"2006-04-01T08:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":5,"count":680,"rate":4.1,"date":"2006-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":6,"count":635,"rate":3.8,"date":"2006-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":7,"count":736,"rate":4.4,"date":"2006-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":8,"count":680,"rate":4.1,"date":"2006-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":9,"count":632,"rate":3.8,"date":"2006-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":10,"count":618,"rate":3.7,"date":"2006-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":11,"count":702,"rate":4.3,"date":"2006-11-01T08:00:00.000Z"},{"series":"Manufacturing","year":2006,"month":12,"count":660,"rate":4,"date":"2006-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":1,"count":752,"rate":4.6,"date":"2007-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":2,"count":774,"rate":4.7,"date":"2007-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":3,"count":742,"rate":4.5,"date":"2007-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":4,"count":749,"rate":4.6,"date":"2007-04-01T07:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":5,"count":651,"rate":3.9,"date":"2007-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":6,"count":653,"rate":4,"date":"2007-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":7,"count":621,"rate":3.7,"date":"2007-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":8,"count":596,"rate":3.6,"date":"2007-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":9,"count":673,"rate":4.1,"date":"2007-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":10,"count":729,"rate":4.3,"date":"2007-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":11,"count":762,"rate":4.5,"date":"2007-11-01T07:00:00.000Z"},{"series":"Manufacturing","year":2007,"month":12,"count":772,"rate":4.6,"date":"2007-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":1,"count":837,"rate":5.1,"date":"2008-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":2,"count":820,"rate":5,"date":"2008-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":3,"count":831,"rate":5,"date":"2008-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":4,"count":796,"rate":4.8,"date":"2008-04-01T07:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":5,"count":879,"rate":5.3,"date":"2008-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":6,"count":862,"rate":5.2,"date":"2008-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":7,"count":908,"rate":5.5,"date":"2008-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":8,"count":960,"rate":5.7,"date":"2008-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":9,"count":984,"rate":6,"date":"2008-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":10,"count":1007,"rate":6.2,"date":"2008-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":11,"count":1144,"rate":7,"date":"2008-11-01T07:00:00.000Z"},{"series":"Manufacturing","year":2008,"month":12,"count":1315,"rate":8.3,"date":"2008-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":1,"count":1711,"rate":10.9,"date":"2009-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":2,"count":1822,"rate":11.5,"date":"2009-02-01T08:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":3,"count":1912,"rate":12.2,"date":"2009-03-01T08:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":4,"count":1968,"rate":12.4,"date":"2009-04-01T07:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":5,"count":2010,"rate":12.6,"date":"2009-05-01T07:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":6,"count":2010,"rate":12.6,"date":"2009-06-01T07:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":7,"count":1988,"rate":12.4,"date":"2009-07-01T07:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":8,"count":1866,"rate":11.8,"date":"2009-08-01T07:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":9,"count":1876,"rate":11.9,"date":"2009-09-01T07:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":10,"count":1884,"rate":12.2,"date":"2009-10-01T07:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":11,"count":1882,"rate":12.5,"date":"2009-11-01T07:00:00.000Z"},{"series":"Manufacturing","year":2009,"month":12,"count":1747,"rate":11.9,"date":"2009-12-01T08:00:00.000Z"},{"series":"Manufacturing","year":2010,"month":1,"count":1918,"rate":13,"date":"2010-01-01T08:00:00.000Z"},{"series":"Manufacturing","year":2010,"month":2,"count":1814,"rate":12.1,"date":"2010-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":1,"count":1000,"rate":5,"date":"2000-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":2,"count":1023,"rate":5.2,"date":"2000-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":3,"count":983,"rate":5.1,"date":"2000-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":4,"count":793,"rate":4.1,"date":"2000-04-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":5,"count":821,"rate":4.3,"date":"2000-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":6,"count":837,"rate":4.4,"date":"2000-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":7,"count":792,"rate":4.1,"date":"2000-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":8,"count":853,"rate":4.3,"date":"2000-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":9,"count":791,"rate":4.1,"date":"2000-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":10,"count":739,"rate":3.7,"date":"2000-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":11,"count":701,"rate":3.6,"date":"2000-11-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2000,"month":12,"count":715,"rate":3.7,"date":"2000-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":1,"count":908,"rate":4.7,"date":"2001-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":2,"count":990,"rate":5.2,"date":"2001-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":3,"count":1037,"rate":5.4,"date":"2001-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":4,"count":820,"rate":4.3,"date":"2001-04-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":5,"count":875,"rate":4.5,"date":"2001-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":6,"count":955,"rate":4.9,"date":"2001-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":7,"count":833,"rate":4.3,"date":"2001-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":8,"count":928,"rate":4.8,"date":"2001-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":9,"count":936,"rate":4.8,"date":"2001-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":10,"count":941,"rate":4.8,"date":"2001-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":11,"count":1046,"rate":5.3,"date":"2001-11-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2001,"month":12,"count":1074,"rate":5.4,"date":"2001-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":1,"count":1212,"rate":6.3,"date":"2002-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":2,"count":1264,"rate":6.6,"date":"2002-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":3,"count":1269,"rate":6.6,"date":"2002-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":4,"count":1222,"rate":6.4,"date":"2002-04-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":5,"count":1138,"rate":5.8,"date":"2002-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":6,"count":1240,"rate":6.2,"date":"2002-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":7,"count":1132,"rate":5.6,"date":"2002-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":8,"count":1170,"rate":5.8,"date":"2002-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":9,"count":1171,"rate":5.9,"date":"2002-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":10,"count":1212,"rate":6.1,"date":"2002-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":11,"count":1242,"rate":6.2,"date":"2002-11-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2002,"month":12,"count":1150,"rate":5.7,"date":"2002-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":1,"count":1342,"rate":6.7,"date":"2003-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":2,"count":1238,"rate":6.1,"date":"2003-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":3,"count":1179,"rate":5.9,"date":"2003-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":4,"count":1201,"rate":6,"date":"2003-04-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":5,"count":1247,"rate":6.2,"date":"2003-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":6,"count":1434,"rate":6.9,"date":"2003-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":7,"count":1387,"rate":6.6,"date":"2003-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":8,"count":1161,"rate":5.6,"date":"2003-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":9,"count":1229,"rate":5.9,"date":"2003-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":10,"count":1189,"rate":5.7,"date":"2003-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":11,"count":1156,"rate":5.4,"date":"2003-11-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2003,"month":12,"count":1081,"rate":5,"date":"2003-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":1,"count":1389,"rate":6.5,"date":"2004-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":2,"count":1369,"rate":6.5,"date":"2004-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":3,"count":1386,"rate":6.8,"date":"2004-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":4,"count":1248,"rate":6.1,"date":"2004-04-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":5,"count":1183,"rate":5.8,"date":"2004-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":6,"count":1182,"rate":5.8,"date":"2004-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":7,"count":1163,"rate":5.5,"date":"2004-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":8,"count":1079,"rate":5.1,"date":"2004-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":9,"count":1127,"rate":5.5,"date":"2004-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":10,"count":1138,"rate":5.4,"date":"2004-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":11,"count":1045,"rate":5,"date":"2004-11-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2004,"month":12,"count":1058,"rate":5,"date":"2004-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":1,"count":1302,"rate":6.3,"date":"2005-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":2,"count":1301,"rate":6.2,"date":"2005-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":3,"count":1173,"rate":5.6,"date":"2005-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":4,"count":1131,"rate":5.4,"date":"2005-04-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":5,"count":1145,"rate":5.4,"date":"2005-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":6,"count":1197,"rate":5.7,"date":"2005-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":7,"count":1194,"rate":5.6,"date":"2005-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":8,"count":1130,"rate":5.3,"date":"2005-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":9,"count":1038,"rate":4.9,"date":"2005-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":10,"count":1050,"rate":4.9,"date":"2005-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":11,"count":1013,"rate":4.7,"date":"2005-11-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2005,"month":12,"count":968,"rate":4.5,"date":"2005-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":1,"count":1203,"rate":5.7,"date":"2006-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":2,"count":1141,"rate":5.4,"date":"2006-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":3,"count":1022,"rate":4.9,"date":"2006-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":4,"count":972,"rate":4.6,"date":"2006-04-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":5,"count":1025,"rate":4.8,"date":"2006-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":6,"count":1085,"rate":5.1,"date":"2006-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":7,"count":1083,"rate":5.1,"date":"2006-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":8,"count":977,"rate":4.7,"date":"2006-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":9,"count":1008,"rate":4.9,"date":"2006-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":10,"count":972,"rate":4.7,"date":"2006-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":11,"count":1018,"rate":4.8,"date":"2006-11-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2006,"month":12,"count":965,"rate":4.5,"date":"2006-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":1,"count":1166,"rate":5.5,"date":"2007-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":2,"count":1045,"rate":5.1,"date":"2007-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":3,"count":896,"rate":4.4,"date":"2007-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":4,"count":872,"rate":4.2,"date":"2007-04-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":5,"count":795,"rate":3.9,"date":"2007-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":6,"count":979,"rate":4.6,"date":"2007-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":7,"count":1089,"rate":5.2,"date":"2007-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":8,"count":1028,"rate":5.1,"date":"2007-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":9,"count":1027,"rate":5.1,"date":"2007-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":10,"count":907,"rate":4.4,"date":"2007-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":11,"count":893,"rate":4.3,"date":"2007-11-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2007,"month":12,"count":1009,"rate":4.8,"date":"2007-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":1,"count":1120,"rate":5.4,"date":"2008-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":2,"count":1007,"rate":4.9,"date":"2008-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":3,"count":992,"rate":4.9,"date":"2008-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":4,"count":919,"rate":4.5,"date":"2008-04-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":5,"count":1049,"rate":5.2,"date":"2008-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":6,"count":1160,"rate":5.7,"date":"2008-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":7,"count":1329,"rate":6.5,"date":"2008-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":8,"count":1366,"rate":6.6,"date":"2008-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":9,"count":1277,"rate":6.2,"date":"2008-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":10,"count":1313,"rate":6.3,"date":"2008-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":11,"count":1397,"rate":6.7,"date":"2008-11-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2008,"month":12,"count":1535,"rate":7.2,"date":"2008-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":1,"count":1794,"rate":8.7,"date":"2009-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":2,"count":1847,"rate":8.9,"date":"2009-02-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":3,"count":1852,"rate":9,"date":"2009-03-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":4,"count":1833,"rate":9,"date":"2009-04-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":5,"count":1835,"rate":9,"date":"2009-05-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":6,"count":1863,"rate":9.1,"date":"2009-06-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":7,"count":1854,"rate":9,"date":"2009-07-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":8,"count":1794,"rate":8.8,"date":"2009-08-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":9,"count":1809,"rate":9,"date":"2009-09-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":10,"count":1919,"rate":9.6,"date":"2009-10-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":11,"count":1879,"rate":9.2,"date":"2009-11-01T07:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2009,"month":12,"count":1851,"rate":9.1,"date":"2009-12-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2010,"month":1,"count":2154,"rate":10.5,"date":"2010-01-01T08:00:00.000Z"},{"series":"Wholesale and Retail Trade","year":2010,"month":2,"count":2071,"rate":10,"date":"2010-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":1,"count":236,"rate":4.3,"date":"2000-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":2,"count":223,"rate":4,"date":"2000-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":3,"count":192,"rate":3.5,"date":"2000-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":4,"count":191,"rate":3.4,"date":"2000-04-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":5,"count":190,"rate":3.4,"date":"2000-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":6,"count":183,"rate":3.2,"date":"2000-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":7,"count":228,"rate":3.9,"date":"2000-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":8,"count":198,"rate":3.4,"date":"2000-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":9,"count":231,"rate":4,"date":"2000-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":10,"count":153,"rate":2.8,"date":"2000-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":11,"count":129,"rate":2.3,"date":"2000-11-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2000,"month":12,"count":168,"rate":3.1,"date":"2000-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":1,"count":194,"rate":3.6,"date":"2001-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":2,"count":189,"rate":3.4,"date":"2001-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":3,"count":193,"rate":3.5,"date":"2001-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":4,"count":232,"rate":4.2,"date":"2001-04-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":5,"count":178,"rate":3.1,"date":"2001-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":6,"count":242,"rate":4.3,"date":"2001-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":7,"count":236,"rate":4.2,"date":"2001-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":8,"count":226,"rate":3.9,"date":"2001-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":9,"count":214,"rate":3.9,"date":"2001-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":10,"count":321,"rate":5.8,"date":"2001-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":11,"count":302,"rate":5.4,"date":"2001-11-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2001,"month":12,"count":310,"rate":5.6,"date":"2001-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":1,"count":368,"rate":6.6,"date":"2002-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":2,"count":331,"rate":5.7,"date":"2002-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":3,"count":313,"rate":5.6,"date":"2002-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":4,"count":280,"rate":5,"date":"2002-04-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":5,"count":257,"rate":4.5,"date":"2002-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":6,"count":274,"rate":4.9,"date":"2002-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":7,"count":270,"rate":4.9,"date":"2002-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":8,"count":221,"rate":3.9,"date":"2002-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":9,"count":235,"rate":4.2,"date":"2002-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":10,"count":262,"rate":4.7,"date":"2002-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":11,"count":233,"rate":4.2,"date":"2002-11-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2002,"month":12,"count":243,"rate":4.6,"date":"2002-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":1,"count":331,"rate":6.3,"date":"2003-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":2,"count":316,"rate":5.8,"date":"2003-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":3,"count":319,"rate":5.9,"date":"2003-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":4,"count":274,"rate":5,"date":"2003-04-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":5,"count":260,"rate":4.9,"date":"2003-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":6,"count":300,"rate":5.5,"date":"2003-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":7,"count":289,"rate":5.4,"date":"2003-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":8,"count":255,"rate":4.8,"date":"2003-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":9,"count":255,"rate":4.7,"date":"2003-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":10,"count":260,"rate":4.8,"date":"2003-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":11,"count":275,"rate":5.1,"date":"2003-11-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2003,"month":12,"count":267,"rate":5,"date":"2003-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":1,"count":243,"rate":4.6,"date":"2004-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":2,"count":291,"rate":5.5,"date":"2004-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":3,"count":284,"rate":5.4,"date":"2004-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":4,"count":239,"rate":4.5,"date":"2004-04-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":5,"count":230,"rate":4.4,"date":"2004-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":6,"count":227,"rate":4.3,"date":"2004-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":7,"count":231,"rate":4.3,"date":"2004-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":8,"count":236,"rate":4.4,"date":"2004-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":9,"count":208,"rate":3.9,"date":"2004-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":10,"count":219,"rate":4,"date":"2004-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":11,"count":217,"rate":4,"date":"2004-11-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2004,"month":12,"count":204,"rate":3.8,"date":"2004-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":1,"count":276,"rate":5,"date":"2005-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":2,"count":245,"rate":4.4,"date":"2005-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":3,"count":267,"rate":4.8,"date":"2005-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":4,"count":257,"rate":4.7,"date":"2005-04-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":5,"count":223,"rate":4.1,"date":"2005-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":6,"count":247,"rate":4.5,"date":"2005-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":7,"count":222,"rate":3.9,"date":"2005-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":8,"count":187,"rate":3.3,"date":"2005-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":9,"count":211,"rate":3.7,"date":"2005-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":10,"count":251,"rate":4.4,"date":"2005-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":11,"count":199,"rate":3.5,"date":"2005-11-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2005,"month":12,"count":202,"rate":3.6,"date":"2005-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":1,"count":287,"rate":5,"date":"2006-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":2,"count":260,"rate":4.6,"date":"2006-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":3,"count":263,"rate":4.7,"date":"2006-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":4,"count":272,"rate":4.8,"date":"2006-04-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":5,"count":226,"rate":4,"date":"2006-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":6,"count":225,"rate":3.9,"date":"2006-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":7,"count":237,"rate":4.2,"date":"2006-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":8,"count":217,"rate":3.7,"date":"2006-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":9,"count":183,"rate":3.1,"date":"2006-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":10,"count":206,"rate":3.6,"date":"2006-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":11,"count":183,"rate":3.1,"date":"2006-11-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2006,"month":12,"count":190,"rate":3.2,"date":"2006-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":1,"count":248,"rate":4.2,"date":"2007-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":2,"count":251,"rate":4.2,"date":"2007-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":3,"count":249,"rate":4.3,"date":"2007-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":4,"count":188,"rate":3.3,"date":"2007-04-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":5,"count":216,"rate":3.8,"date":"2007-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":6,"count":242,"rate":4.1,"date":"2007-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":7,"count":309,"rate":5.1,"date":"2007-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":8,"count":205,"rate":3.4,"date":"2007-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":9,"count":224,"rate":3.7,"date":"2007-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":10,"count":218,"rate":3.6,"date":"2007-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":11,"count":242,"rate":3.9,"date":"2007-11-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2007,"month":12,"count":210,"rate":3.4,"date":"2007-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":1,"count":271,"rate":4.4,"date":"2008-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":2,"count":289,"rate":4.6,"date":"2008-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":3,"count":267,"rate":4.3,"date":"2008-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":4,"count":245,"rate":4,"date":"2008-04-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":5,"count":269,"rate":4.3,"date":"2008-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":6,"count":329,"rate":5.1,"date":"2008-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":7,"count":359,"rate":5.7,"date":"2008-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":8,"count":309,"rate":5.2,"date":"2008-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":9,"count":337,"rate":5.8,"date":"2008-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":10,"count":316,"rate":5.7,"date":"2008-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":11,"count":331,"rate":5.8,"date":"2008-11-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2008,"month":12,"count":421,"rate":6.7,"date":"2008-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":1,"count":522,"rate":8.4,"date":"2009-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":2,"count":563,"rate":9.1,"date":"2009-02-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":3,"count":558,"rate":9,"date":"2009-03-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":4,"count":541,"rate":9,"date":"2009-04-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":5,"count":506,"rate":8.5,"date":"2009-05-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":6,"count":499,"rate":8.4,"date":"2009-06-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":7,"count":511,"rate":8.8,"date":"2009-07-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":8,"count":547,"rate":9.8,"date":"2009-08-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":9,"count":538,"rate":9.5,"date":"2009-09-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":10,"count":480,"rate":8.6,"date":"2009-10-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":11,"count":493,"rate":8.5,"date":"2009-11-01T07:00:00.000Z"},{"series":"Transportation and Utilities","year":2009,"month":12,"count":539,"rate":9,"date":"2009-12-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2010,"month":1,"count":657,"rate":11.3,"date":"2010-01-01T08:00:00.000Z"},{"series":"Transportation and Utilities","year":2010,"month":2,"count":591,"rate":10.5,"date":"2010-02-01T08:00:00.000Z"},{"series":"Information","year":2000,"month":1,"count":125,"rate":3.4,"date":"2000-01-01T08:00:00.000Z"},{"series":"Information","year":2000,"month":2,"count":112,"rate":2.9,"date":"2000-02-01T08:00:00.000Z"},{"series":"Information","year":2000,"month":3,"count":140,"rate":3.6,"date":"2000-03-01T08:00:00.000Z"},{"series":"Information","year":2000,"month":4,"count":95,"rate":2.4,"date":"2000-04-01T08:00:00.000Z"},{"series":"Information","year":2000,"month":5,"count":131,"rate":3.5,"date":"2000-05-01T07:00:00.000Z"},{"series":"Information","year":2000,"month":6,"count":102,"rate":2.6,"date":"2000-06-01T07:00:00.000Z"},{"series":"Information","year":2000,"month":7,"count":144,"rate":3.6,"date":"2000-07-01T07:00:00.000Z"},{"series":"Information","year":2000,"month":8,"count":143,"rate":3.7,"date":"2000-08-01T07:00:00.000Z"},{"series":"Information","year":2000,"month":9,"count":130,"rate":3.3,"date":"2000-09-01T07:00:00.000Z"},{"series":"Information","year":2000,"month":10,"count":96,"rate":2.4,"date":"2000-10-01T07:00:00.000Z"},{"series":"Information","year":2000,"month":11,"count":117,"rate":3,"date":"2000-11-01T08:00:00.000Z"},{"series":"Information","year":2000,"month":12,"count":151,"rate":4,"date":"2000-12-01T08:00:00.000Z"},{"series":"Information","year":2001,"month":1,"count":161,"rate":4.1,"date":"2001-01-01T08:00:00.000Z"},{"series":"Information","year":2001,"month":2,"count":109,"rate":2.9,"date":"2001-02-01T08:00:00.000Z"},{"series":"Information","year":2001,"month":3,"count":148,"rate":3.8,"date":"2001-03-01T08:00:00.000Z"},{"series":"Information","year":2001,"month":4,"count":148,"rate":3.7,"date":"2001-04-01T08:00:00.000Z"},{"series":"Information","year":2001,"month":5,"count":164,"rate":4.2,"date":"2001-05-01T07:00:00.000Z"},{"series":"Information","year":2001,"month":6,"count":163,"rate":4.1,"date":"2001-06-01T07:00:00.000Z"},{"series":"Information","year":2001,"month":7,"count":206,"rate":5.2,"date":"2001-07-01T07:00:00.000Z"},{"series":"Information","year":2001,"month":8,"count":210,"rate":5.4,"date":"2001-08-01T07:00:00.000Z"},{"series":"Information","year":2001,"month":9,"count":219,"rate":5.6,"date":"2001-09-01T07:00:00.000Z"},{"series":"Information","year":2001,"month":10,"count":233,"rate":6,"date":"2001-10-01T07:00:00.000Z"},{"series":"Information","year":2001,"month":11,"count":241,"rate":6.2,"date":"2001-11-01T08:00:00.000Z"},{"series":"Information","year":2001,"month":12,"count":275,"rate":7.4,"date":"2001-12-01T08:00:00.000Z"},{"series":"Information","year":2002,"month":1,"count":263,"rate":7.1,"date":"2002-01-01T08:00:00.000Z"},{"series":"Information","year":2002,"month":2,"count":279,"rate":7.6,"date":"2002-02-01T08:00:00.000Z"},{"series":"Information","year":2002,"month":3,"count":266,"rate":7.2,"date":"2002-03-01T08:00:00.000Z"},{"series":"Information","year":2002,"month":4,"count":257,"rate":6.9,"date":"2002-04-01T08:00:00.000Z"},{"series":"Information","year":2002,"month":5,"count":260,"rate":7.2,"date":"2002-05-01T07:00:00.000Z"},{"series":"Information","year":2002,"month":6,"count":255,"rate":6.9,"date":"2002-06-01T07:00:00.000Z"},{"series":"Information","year":2002,"month":7,"count":264,"rate":7.1,"date":"2002-07-01T07:00:00.000Z"},{"series":"Information","year":2002,"month":8,"count":270,"rate":7.1,"date":"2002-08-01T07:00:00.000Z"},{"series":"Information","year":2002,"month":9,"count":231,"rate":6.3,"date":"2002-09-01T07:00:00.000Z"},{"series":"Information","year":2002,"month":10,"count":211,"rate":6,"date":"2002-10-01T07:00:00.000Z"},{"series":"Information","year":2002,"month":11,"count":220,"rate":6.5,"date":"2002-11-01T08:00:00.000Z"},{"series":"Information","year":2002,"month":12,"count":255,"rate":7.2,"date":"2002-12-01T08:00:00.000Z"},{"series":"Information","year":2003,"month":1,"count":243,"rate":6.7,"date":"2003-01-01T08:00:00.000Z"},{"series":"Information","year":2003,"month":2,"count":321,"rate":8.6,"date":"2003-02-01T08:00:00.000Z"},{"series":"Information","year":2003,"month":3,"count":267,"rate":7.4,"date":"2003-03-01T08:00:00.000Z"},{"series":"Information","year":2003,"month":4,"count":268,"rate":7.3,"date":"2003-04-01T08:00:00.000Z"},{"series":"Information","year":2003,"month":5,"count":251,"rate":6.9,"date":"2003-05-01T07:00:00.000Z"},{"series":"Information","year":2003,"month":6,"count":239,"rate":6.4,"date":"2003-06-01T07:00:00.000Z"},{"series":"Information","year":2003,"month":7,"count":224,"rate":5.9,"date":"2003-07-01T07:00:00.000Z"},{"series":"Information","year":2003,"month":8,"count":224,"rate":6.1,"date":"2003-08-01T07:00:00.000Z"},{"series":"Information","year":2003,"month":9,"count":248,"rate":7,"date":"2003-09-01T07:00:00.000Z"},{"series":"Information","year":2003,"month":10,"count":182,"rate":5.4,"date":"2003-10-01T07:00:00.000Z"},{"series":"Information","year":2003,"month":11,"count":257,"rate":7.6,"date":"2003-11-01T08:00:00.000Z"},{"series":"Information","year":2003,"month":12,"count":224,"rate":6.5,"date":"2003-12-01T08:00:00.000Z"},{"series":"Information","year":2004,"month":1,"count":236,"rate":7,"date":"2004-01-01T08:00:00.000Z"},{"series":"Information","year":2004,"month":2,"count":194,"rate":5.8,"date":"2004-02-01T08:00:00.000Z"},{"series":"Information","year":2004,"month":3,"count":216,"rate":6.3,"date":"2004-03-01T08:00:00.000Z"},{"series":"Information","year":2004,"month":4,"count":168,"rate":5,"date":"2004-04-01T08:00:00.000Z"},{"series":"Information","year":2004,"month":5,"count":190,"rate":5.7,"date":"2004-05-01T07:00:00.000Z"},{"series":"Information","year":2004,"month":6,"count":172,"rate":5,"date":"2004-06-01T07:00:00.000Z"},{"series":"Information","year":2004,"month":7,"count":174,"rate":5.2,"date":"2004-07-01T07:00:00.000Z"},{"series":"Information","year":2004,"month":8,"count":191,"rate":5.7,"date":"2004-08-01T07:00:00.000Z"},{"series":"Information","year":2004,"month":9,"count":178,"rate":5.4,"date":"2004-09-01T07:00:00.000Z"},{"series":"Information","year":2004,"month":10,"count":185,"rate":5.6,"date":"2004-10-01T07:00:00.000Z"},{"series":"Information","year":2004,"month":11,"count":187,"rate":5.6,"date":"2004-11-01T08:00:00.000Z"},{"series":"Information","year":2004,"month":12,"count":173,"rate":5.7,"date":"2004-12-01T08:00:00.000Z"},{"series":"Information","year":2005,"month":1,"count":168,"rate":5.4,"date":"2005-01-01T08:00:00.000Z"},{"series":"Information","year":2005,"month":2,"count":204,"rate":6.5,"date":"2005-02-01T08:00:00.000Z"},{"series":"Information","year":2005,"month":3,"count":177,"rate":6,"date":"2005-03-01T08:00:00.000Z"},{"series":"Information","year":2005,"month":4,"count":178,"rate":5.9,"date":"2005-04-01T08:00:00.000Z"},{"series":"Information","year":2005,"month":5,"count":145,"rate":4.7,"date":"2005-05-01T07:00:00.000Z"},{"series":"Information","year":2005,"month":6,"count":160,"rate":5,"date":"2005-06-01T07:00:00.000Z"},{"series":"Information","year":2005,"month":7,"count":142,"rate":4.2,"date":"2005-07-01T07:00:00.000Z"},{"series":"Information","year":2005,"month":8,"count":156,"rate":4.6,"date":"2005-08-01T07:00:00.000Z"},{"series":"Information","year":2005,"month":9,"count":168,"rate":4.9,"date":"2005-09-01T07:00:00.000Z"},{"series":"Information","year":2005,"month":10,"count":162,"rate":4.8,"date":"2005-10-01T07:00:00.000Z"},{"series":"Information","year":2005,"month":11,"count":172,"rate":5.1,"date":"2005-11-01T08:00:00.000Z"},{"series":"Information","year":2005,"month":12,"count":128,"rate":3.7,"date":"2005-12-01T08:00:00.000Z"},{"series":"Information","year":2006,"month":1,"count":105,"rate":3.3,"date":"2006-01-01T08:00:00.000Z"},{"series":"Information","year":2006,"month":2,"count":119,"rate":3.7,"date":"2006-02-01T08:00:00.000Z"},{"series":"Information","year":2006,"month":3,"count":116,"rate":3.5,"date":"2006-03-01T08:00:00.000Z"},{"series":"Information","year":2006,"month":4,"count":132,"rate":4.2,"date":"2006-04-01T08:00:00.000Z"},{"series":"Information","year":2006,"month":5,"count":158,"rate":4.8,"date":"2006-05-01T07:00:00.000Z"},{"series":"Information","year":2006,"month":6,"count":114,"rate":3.4,"date":"2006-06-01T07:00:00.000Z"},{"series":"Information","year":2006,"month":7,"count":103,"rate":3,"date":"2006-07-01T07:00:00.000Z"},{"series":"Information","year":2006,"month":8,"count":132,"rate":3.9,"date":"2006-08-01T07:00:00.000Z"},{"series":"Information","year":2006,"month":9,"count":170,"rate":4.9,"date":"2006-09-01T07:00:00.000Z"},{"series":"Information","year":2006,"month":10,"count":116,"rate":3.4,"date":"2006-10-01T07:00:00.000Z"},{"series":"Information","year":2006,"month":11,"count":137,"rate":3.9,"date":"2006-11-01T08:00:00.000Z"},{"series":"Information","year":2006,"month":12,"count":108,"rate":2.9,"date":"2006-12-01T08:00:00.000Z"},{"series":"Information","year":2007,"month":1,"count":143,"rate":4,"date":"2007-01-01T08:00:00.000Z"},{"series":"Information","year":2007,"month":2,"count":139,"rate":4,"date":"2007-02-01T08:00:00.000Z"},{"series":"Information","year":2007,"month":3,"count":109,"rate":3.2,"date":"2007-03-01T08:00:00.000Z"},{"series":"Information","year":2007,"month":4,"count":77,"rate":2.4,"date":"2007-04-01T07:00:00.000Z"},{"series":"Information","year":2007,"month":5,"count":110,"rate":3.3,"date":"2007-05-01T07:00:00.000Z"},{"series":"Information","year":2007,"month":6,"count":114,"rate":3.4,"date":"2007-06-01T07:00:00.000Z"},{"series":"Information","year":2007,"month":7,"count":112,"rate":3.4,"date":"2007-07-01T07:00:00.000Z"},{"series":"Information","year":2007,"month":8,"count":140,"rate":4.1,"date":"2007-08-01T07:00:00.000Z"},{"series":"Information","year":2007,"month":9,"count":124,"rate":3.7,"date":"2007-09-01T07:00:00.000Z"},{"series":"Information","year":2007,"month":10,"count":120,"rate":3.7,"date":"2007-10-01T07:00:00.000Z"},{"series":"Information","year":2007,"month":11,"count":132,"rate":4,"date":"2007-11-01T07:00:00.000Z"},{"series":"Information","year":2007,"month":12,"count":125,"rate":3.7,"date":"2007-12-01T08:00:00.000Z"},{"series":"Information","year":2008,"month":1,"count":169,"rate":5.1,"date":"2008-01-01T08:00:00.000Z"},{"series":"Information","year":2008,"month":2,"count":193,"rate":5.8,"date":"2008-02-01T08:00:00.000Z"},{"series":"Information","year":2008,"month":3,"count":155,"rate":4.8,"date":"2008-03-01T08:00:00.000Z"},{"series":"Information","year":2008,"month":4,"count":143,"rate":4.4,"date":"2008-04-01T07:00:00.000Z"},{"series":"Information","year":2008,"month":5,"count":170,"rate":5,"date":"2008-05-01T07:00:00.000Z"},{"series":"Information","year":2008,"month":6,"count":157,"rate":4.7,"date":"2008-06-01T07:00:00.000Z"},{"series":"Information","year":2008,"month":7,"count":141,"rate":4.1,"date":"2008-07-01T07:00:00.000Z"},{"series":"Information","year":2008,"month":8,"count":144,"rate":4.2,"date":"2008-08-01T07:00:00.000Z"},{"series":"Information","year":2008,"month":9,"count":166,"rate":5,"date":"2008-09-01T07:00:00.000Z"},{"series":"Information","year":2008,"month":10,"count":168,"rate":5,"date":"2008-10-01T07:00:00.000Z"},{"series":"Information","year":2008,"month":11,"count":173,"rate":5.2,"date":"2008-11-01T07:00:00.000Z"},{"series":"Information","year":2008,"month":12,"count":219,"rate":6.9,"date":"2008-12-01T08:00:00.000Z"},{"series":"Information","year":2009,"month":1,"count":232,"rate":7.4,"date":"2009-01-01T08:00:00.000Z"},{"series":"Information","year":2009,"month":2,"count":224,"rate":7.1,"date":"2009-02-01T08:00:00.000Z"},{"series":"Information","year":2009,"month":3,"count":252,"rate":7.8,"date":"2009-03-01T08:00:00.000Z"},{"series":"Information","year":2009,"month":4,"count":320,"rate":10.1,"date":"2009-04-01T07:00:00.000Z"},{"series":"Information","year":2009,"month":5,"count":303,"rate":9.5,"date":"2009-05-01T07:00:00.000Z"},{"series":"Information","year":2009,"month":6,"count":347,"rate":11.1,"date":"2009-06-01T07:00:00.000Z"},{"series":"Information","year":2009,"month":7,"count":373,"rate":11.5,"date":"2009-07-01T07:00:00.000Z"},{"series":"Information","year":2009,"month":8,"count":358,"rate":10.7,"date":"2009-08-01T07:00:00.000Z"},{"series":"Information","year":2009,"month":9,"count":362,"rate":11.2,"date":"2009-09-01T07:00:00.000Z"},{"series":"Information","year":2009,"month":10,"count":261,"rate":8.2,"date":"2009-10-01T07:00:00.000Z"},{"series":"Information","year":2009,"month":11,"count":243,"rate":7.6,"date":"2009-11-01T07:00:00.000Z"},{"series":"Information","year":2009,"month":12,"count":256,"rate":8.5,"date":"2009-12-01T08:00:00.000Z"},{"series":"Information","year":2010,"month":1,"count":313,"rate":10,"date":"2010-01-01T08:00:00.000Z"},{"series":"Information","year":2010,"month":2,"count":300,"rate":10,"date":"2010-02-01T08:00:00.000Z"},{"series":"Finance","year":2000,"month":1,"count":228,"rate":2.7,"date":"2000-01-01T08:00:00.000Z"},{"series":"Finance","year":2000,"month":2,"count":240,"rate":2.8,"date":"2000-02-01T08:00:00.000Z"},{"series":"Finance","year":2000,"month":3,"count":226,"rate":2.6,"date":"2000-03-01T08:00:00.000Z"},{"series":"Finance","year":2000,"month":4,"count":197,"rate":2.3,"date":"2000-04-01T08:00:00.000Z"},{"series":"Finance","year":2000,"month":5,"count":195,"rate":2.2,"date":"2000-05-01T07:00:00.000Z"},{"series":"Finance","year":2000,"month":6,"count":216,"rate":2.5,"date":"2000-06-01T07:00:00.000Z"},{"series":"Finance","year":2000,"month":7,"count":190,"rate":2.2,"date":"2000-07-01T07:00:00.000Z"},{"series":"Finance","year":2000,"month":8,"count":213,"rate":2.5,"date":"2000-08-01T07:00:00.000Z"},{"series":"Finance","year":2000,"month":9,"count":187,"rate":2.2,"date":"2000-09-01T07:00:00.000Z"},{"series":"Finance","year":2000,"month":10,"count":224,"rate":2.6,"date":"2000-10-01T07:00:00.000Z"},{"series":"Finance","year":2000,"month":11,"count":184,"rate":2.1,"date":"2000-11-01T08:00:00.000Z"},{"series":"Finance","year":2000,"month":12,"count":200,"rate":2.3,"date":"2000-12-01T08:00:00.000Z"},{"series":"Finance","year":2001,"month":1,"count":232,"rate":2.6,"date":"2001-01-01T08:00:00.000Z"},{"series":"Finance","year":2001,"month":2,"count":235,"rate":2.6,"date":"2001-02-01T08:00:00.000Z"},{"series":"Finance","year":2001,"month":3,"count":211,"rate":2.4,"date":"2001-03-01T08:00:00.000Z"},{"series":"Finance","year":2001,"month":4,"count":232,"rate":2.6,"date":"2001-04-01T08:00:00.000Z"},{"series":"Finance","year":2001,"month":5,"count":191,"rate":2.2,"date":"2001-05-01T07:00:00.000Z"},{"series":"Finance","year":2001,"month":6,"count":249,"rate":2.8,"date":"2001-06-01T07:00:00.000Z"},{"series":"Finance","year":2001,"month":7,"count":289,"rate":3.3,"date":"2001-07-01T07:00:00.000Z"},{"series":"Finance","year":2001,"month":8,"count":256,"rate":2.9,"date":"2001-08-01T07:00:00.000Z"},{"series":"Finance","year":2001,"month":9,"count":268,"rate":3.1,"date":"2001-09-01T07:00:00.000Z"},{"series":"Finance","year":2001,"month":10,"count":281,"rate":3.3,"date":"2001-10-01T07:00:00.000Z"},{"series":"Finance","year":2001,"month":11,"count":320,"rate":3.6,"date":"2001-11-01T08:00:00.000Z"},{"series":"Finance","year":2001,"month":12,"count":258,"rate":3,"date":"2001-12-01T08:00:00.000Z"},{"series":"Finance","year":2002,"month":1,"count":267,"rate":3,"date":"2002-01-01T08:00:00.000Z"},{"series":"Finance","year":2002,"month":2,"count":318,"rate":3.5,"date":"2002-02-01T08:00:00.000Z"},{"series":"Finance","year":2002,"month":3,"count":287,"rate":3.2,"date":"2002-03-01T08:00:00.000Z"},{"series":"Finance","year":2002,"month":4,"count":292,"rate":3.3,"date":"2002-04-01T08:00:00.000Z"},{"series":"Finance","year":2002,"month":5,"count":340,"rate":3.8,"date":"2002-05-01T07:00:00.000Z"},{"series":"Finance","year":2002,"month":6,"count":373,"rate":4.1,"date":"2002-06-01T07:00:00.000Z"},{"series":"Finance","year":2002,"month":7,"count":345,"rate":3.8,"date":"2002-07-01T07:00:00.000Z"},{"series":"Finance","year":2002,"month":8,"count":343,"rate":3.8,"date":"2002-08-01T07:00:00.000Z"},{"series":"Finance","year":2002,"month":9,"count":299,"rate":3.3,"date":"2002-09-01T07:00:00.000Z"},{"series":"Finance","year":2002,"month":10,"count":312,"rate":3.5,"date":"2002-10-01T07:00:00.000Z"},{"series":"Finance","year":2002,"month":11,"count":337,"rate":3.7,"date":"2002-11-01T08:00:00.000Z"},{"series":"Finance","year":2002,"month":12,"count":322,"rate":3.6,"date":"2002-12-01T08:00:00.000Z"},{"series":"Finance","year":2003,"month":1,"count":327,"rate":3.6,"date":"2003-01-01T08:00:00.000Z"},{"series":"Finance","year":2003,"month":2,"count":310,"rate":3.4,"date":"2003-02-01T08:00:00.000Z"},{"series":"Finance","year":2003,"month":3,"count":357,"rate":4,"date":"2003-03-01T08:00:00.000Z"},{"series":"Finance","year":2003,"month":4,"count":323,"rate":3.6,"date":"2003-04-01T08:00:00.000Z"},{"series":"Finance","year":2003,"month":5,"count":320,"rate":3.6,"date":"2003-05-01T07:00:00.000Z"},{"series":"Finance","year":2003,"month":6,"count":358,"rate":4,"date":"2003-06-01T07:00:00.000Z"},{"series":"Finance","year":2003,"month":7,"count":284,"rate":3.1,"date":"2003-07-01T07:00:00.000Z"},{"series":"Finance","year":2003,"month":8,"count":342,"rate":3.7,"date":"2003-08-01T07:00:00.000Z"},{"series":"Finance","year":2003,"month":9,"count":305,"rate":3.3,"date":"2003-09-01T07:00:00.000Z"},{"series":"Finance","year":2003,"month":10,"count":303,"rate":3.3,"date":"2003-10-01T07:00:00.000Z"},{"series":"Finance","year":2003,"month":11,"count":311,"rate":3.3,"date":"2003-11-01T08:00:00.000Z"},{"series":"Finance","year":2003,"month":12,"count":283,"rate":3,"date":"2003-12-01T08:00:00.000Z"},{"series":"Finance","year":2004,"month":1,"count":403,"rate":4.3,"date":"2004-01-01T08:00:00.000Z"},{"series":"Finance","year":2004,"month":2,"count":363,"rate":3.8,"date":"2004-02-01T08:00:00.000Z"},{"series":"Finance","year":2004,"month":3,"count":343,"rate":3.7,"date":"2004-03-01T08:00:00.000Z"},{"series":"Finance","year":2004,"month":4,"count":312,"rate":3.4,"date":"2004-04-01T08:00:00.000Z"},{"series":"Finance","year":2004,"month":5,"count":302,"rate":3.3,"date":"2004-05-01T07:00:00.000Z"},{"series":"Finance","year":2004,"month":6,"count":335,"rate":3.6,"date":"2004-06-01T07:00:00.000Z"},{"series":"Finance","year":2004,"month":7,"count":307,"rate":3.3,"date":"2004-07-01T07:00:00.000Z"},{"series":"Finance","year":2004,"month":8,"count":312,"rate":3.4,"date":"2004-08-01T07:00:00.000Z"},{"series":"Finance","year":2004,"month":9,"count":374,"rate":4,"date":"2004-09-01T07:00:00.000Z"},{"series":"Finance","year":2004,"month":10,"count":358,"rate":3.8,"date":"2004-10-01T07:00:00.000Z"},{"series":"Finance","year":2004,"month":11,"count":290,"rate":3.1,"date":"2004-11-01T08:00:00.000Z"},{"series":"Finance","year":2004,"month":12,"count":290,"rate":3.1,"date":"2004-12-01T08:00:00.000Z"},{"series":"Finance","year":2005,"month":1,"count":252,"rate":2.7,"date":"2005-01-01T08:00:00.000Z"},{"series":"Finance","year":2005,"month":2,"count":301,"rate":3.2,"date":"2005-02-01T08:00:00.000Z"},{"series":"Finance","year":2005,"month":3,"count":261,"rate":2.7,"date":"2005-03-01T08:00:00.000Z"},{"series":"Finance","year":2005,"month":4,"count":255,"rate":2.7,"date":"2005-04-01T08:00:00.000Z"},{"series":"Finance","year":2005,"month":5,"count":288,"rate":3.1,"date":"2005-05-01T07:00:00.000Z"},{"series":"Finance","year":2005,"month":6,"count":307,"rate":3.3,"date":"2005-06-01T07:00:00.000Z"},{"series":"Finance","year":2005,"month":7,"count":309,"rate":3.3,"date":"2005-07-01T07:00:00.000Z"},{"series":"Finance","year":2005,"month":8,"count":300,"rate":3.2,"date":"2005-08-01T07:00:00.000Z"},{"series":"Finance","year":2005,"month":9,"count":260,"rate":2.7,"date":"2005-09-01T07:00:00.000Z"},{"series":"Finance","year":2005,"month":10,"count":255,"rate":2.7,"date":"2005-10-01T07:00:00.000Z"},{"series":"Finance","year":2005,"month":11,"count":268,"rate":2.8,"date":"2005-11-01T08:00:00.000Z"},{"series":"Finance","year":2005,"month":12,"count":204,"rate":2.1,"date":"2005-12-01T08:00:00.000Z"},{"series":"Finance","year":2006,"month":1,"count":233,"rate":2.4,"date":"2006-01-01T08:00:00.000Z"},{"series":"Finance","year":2006,"month":2,"count":268,"rate":2.8,"date":"2006-02-01T08:00:00.000Z"},{"series":"Finance","year":2006,"month":3,"count":298,"rate":3.1,"date":"2006-03-01T08:00:00.000Z"},{"series":"Finance","year":2006,"month":4,"count":293,"rate":3.1,"date":"2006-04-01T08:00:00.000Z"},{"series":"Finance","year":2006,"month":5,"count":289,"rate":3,"date":"2006-05-01T07:00:00.000Z"},{"series":"Finance","year":2006,"month":6,"count":299,"rate":3.1,"date":"2006-06-01T07:00:00.000Z"},{"series":"Finance","year":2006,"month":7,"count":329,"rate":3.4,"date":"2006-07-01T07:00:00.000Z"},{"series":"Finance","year":2006,"month":8,"count":263,"rate":2.7,"date":"2006-08-01T07:00:00.000Z"},{"series":"Finance","year":2006,"month":9,"count":235,"rate":2.4,"date":"2006-09-01T07:00:00.000Z"},{"series":"Finance","year":2006,"month":10,"count":211,"rate":2.1,"date":"2006-10-01T07:00:00.000Z"},{"series":"Finance","year":2006,"month":11,"count":229,"rate":2.3,"date":"2006-11-01T08:00:00.000Z"},{"series":"Finance","year":2006,"month":12,"count":227,"rate":2.3,"date":"2006-12-01T08:00:00.000Z"},{"series":"Finance","year":2007,"month":1,"count":233,"rate":2.4,"date":"2007-01-01T08:00:00.000Z"},{"series":"Finance","year":2007,"month":2,"count":295,"rate":3.1,"date":"2007-02-01T08:00:00.000Z"},{"series":"Finance","year":2007,"month":3,"count":252,"rate":2.6,"date":"2007-03-01T08:00:00.000Z"},{"series":"Finance","year":2007,"month":4,"count":231,"rate":2.4,"date":"2007-04-01T07:00:00.000Z"},{"series":"Finance","year":2007,"month":5,"count":281,"rate":2.9,"date":"2007-05-01T07:00:00.000Z"},{"series":"Finance","year":2007,"month":6,"count":303,"rate":3.1,"date":"2007-06-01T07:00:00.000Z"},{"series":"Finance","year":2007,"month":7,"count":307,"rate":3.1,"date":"2007-07-01T07:00:00.000Z"},{"series":"Finance","year":2007,"month":8,"count":371,"rate":3.7,"date":"2007-08-01T07:00:00.000Z"},{"series":"Finance","year":2007,"month":9,"count":316,"rate":3.3,"date":"2007-09-01T07:00:00.000Z"},{"series":"Finance","year":2007,"month":10,"count":307,"rate":3.2,"date":"2007-10-01T07:00:00.000Z"},{"series":"Finance","year":2007,"month":11,"count":261,"rate":2.7,"date":"2007-11-01T07:00:00.000Z"},{"series":"Finance","year":2007,"month":12,"count":315,"rate":3.2,"date":"2007-12-01T08:00:00.000Z"},{"series":"Finance","year":2008,"month":1,"count":285,"rate":3,"date":"2008-01-01T08:00:00.000Z"},{"series":"Finance","year":2008,"month":2,"count":323,"rate":3.4,"date":"2008-02-01T08:00:00.000Z"},{"series":"Finance","year":2008,"month":3,"count":323,"rate":3.4,"date":"2008-03-01T08:00:00.000Z"},{"series":"Finance","year":2008,"month":4,"count":324,"rate":3.4,"date":"2008-04-01T07:00:00.000Z"},{"series":"Finance","year":2008,"month":5,"count":361,"rate":3.7,"date":"2008-05-01T07:00:00.000Z"},{"series":"Finance","year":2008,"month":6,"count":337,"rate":3.4,"date":"2008-06-01T07:00:00.000Z"},{"series":"Finance","year":2008,"month":7,"count":350,"rate":3.6,"date":"2008-07-01T07:00:00.000Z"},{"series":"Finance","year":2008,"month":8,"count":409,"rate":4.2,"date":"2008-08-01T07:00:00.000Z"},{"series":"Finance","year":2008,"month":9,"count":380,"rate":4,"date":"2008-09-01T07:00:00.000Z"},{"series":"Finance","year":2008,"month":10,"count":434,"rate":4.5,"date":"2008-10-01T07:00:00.000Z"},{"series":"Finance","year":2008,"month":11,"count":494,"rate":5.2,"date":"2008-11-01T07:00:00.000Z"},{"series":"Finance","year":2008,"month":12,"count":540,"rate":5.6,"date":"2008-12-01T08:00:00.000Z"},{"series":"Finance","year":2009,"month":1,"count":571,"rate":6,"date":"2009-01-01T08:00:00.000Z"},{"series":"Finance","year":2009,"month":2,"count":637,"rate":6.7,"date":"2009-02-01T08:00:00.000Z"},{"series":"Finance","year":2009,"month":3,"count":639,"rate":6.8,"date":"2009-03-01T08:00:00.000Z"},{"series":"Finance","year":2009,"month":4,"count":561,"rate":6,"date":"2009-04-01T07:00:00.000Z"},{"series":"Finance","year":2009,"month":5,"count":536,"rate":5.7,"date":"2009-05-01T07:00:00.000Z"},{"series":"Finance","year":2009,"month":6,"count":513,"rate":5.5,"date":"2009-06-01T07:00:00.000Z"},{"series":"Finance","year":2009,"month":7,"count":570,"rate":6.1,"date":"2009-07-01T07:00:00.000Z"},{"series":"Finance","year":2009,"month":8,"count":566,"rate":6,"date":"2009-08-01T07:00:00.000Z"},{"series":"Finance","year":2009,"month":9,"count":657,"rate":7.1,"date":"2009-09-01T07:00:00.000Z"},{"series":"Finance","year":2009,"month":10,"count":646,"rate":7,"date":"2009-10-01T07:00:00.000Z"},{"series":"Finance","year":2009,"month":11,"count":619,"rate":6.7,"date":"2009-11-01T07:00:00.000Z"},{"series":"Finance","year":2009,"month":12,"count":665,"rate":7.2,"date":"2009-12-01T08:00:00.000Z"},{"series":"Finance","year":2010,"month":1,"count":623,"rate":6.6,"date":"2010-01-01T08:00:00.000Z"},{"series":"Finance","year":2010,"month":2,"count":708,"rate":7.5,"date":"2010-02-01T08:00:00.000Z"},{"series":"Business services","year":2000,"month":1,"count":655,"rate":5.7,"date":"2000-01-01T08:00:00.000Z"},{"series":"Business services","year":2000,"month":2,"count":587,"rate":5.2,"date":"2000-02-01T08:00:00.000Z"},{"series":"Business services","year":2000,"month":3,"count":623,"rate":5.4,"date":"2000-03-01T08:00:00.000Z"},{"series":"Business services","year":2000,"month":4,"count":517,"rate":4.5,"date":"2000-04-01T08:00:00.000Z"},{"series":"Business services","year":2000,"month":5,"count":561,"rate":4.7,"date":"2000-05-01T07:00:00.000Z"},{"series":"Business services","year":2000,"month":6,"count":545,"rate":4.4,"date":"2000-06-01T07:00:00.000Z"},{"series":"Business services","year":2000,"month":7,"count":636,"rate":5.1,"date":"2000-07-01T07:00:00.000Z"},{"series":"Business services","year":2000,"month":8,"count":584,"rate":4.8,"date":"2000-08-01T07:00:00.000Z"},{"series":"Business services","year":2000,"month":9,"count":559,"rate":4.6,"date":"2000-09-01T07:00:00.000Z"},{"series":"Business services","year":2000,"month":10,"count":504,"rate":4.1,"date":"2000-10-01T07:00:00.000Z"},{"series":"Business services","year":2000,"month":11,"count":547,"rate":4.4,"date":"2000-11-01T08:00:00.000Z"},{"series":"Business services","year":2000,"month":12,"count":564,"rate":4.5,"date":"2000-12-01T08:00:00.000Z"},{"series":"Business services","year":2001,"month":1,"count":734,"rate":5.8,"date":"2001-01-01T08:00:00.000Z"},{"series":"Business services","year":2001,"month":2,"count":724,"rate":5.9,"date":"2001-02-01T08:00:00.000Z"},{"series":"Business services","year":2001,"month":3,"count":652,"rate":5.3,"date":"2001-03-01T08:00:00.000Z"},{"series":"Business services","year":2001,"month":4,"count":655,"rate":5.3,"date":"2001-04-01T08:00:00.000Z"},{"series":"Business services","year":2001,"month":5,"count":652,"rate":5.3,"date":"2001-05-01T07:00:00.000Z"},{"series":"Business services","year":2001,"month":6,"count":694,"rate":5.4,"date":"2001-06-01T07:00:00.000Z"},{"series":"Business services","year":2001,"month":7,"count":731,"rate":5.7,"date":"2001-07-01T07:00:00.000Z"},{"series":"Business services","year":2001,"month":8,"count":790,"rate":6.2,"date":"2001-08-01T07:00:00.000Z"},{"series":"Business services","year":2001,"month":9,"count":810,"rate":6.4,"date":"2001-09-01T07:00:00.000Z"},{"series":"Business services","year":2001,"month":10,"count":910,"rate":7.2,"date":"2001-10-01T07:00:00.000Z"},{"series":"Business services","year":2001,"month":11,"count":946,"rate":7.6,"date":"2001-11-01T08:00:00.000Z"},{"series":"Business services","year":2001,"month":12,"count":921,"rate":7.4,"date":"2001-12-01T08:00:00.000Z"},{"series":"Business services","year":2002,"month":1,"count":1120,"rate":8.9,"date":"2002-01-01T08:00:00.000Z"},{"series":"Business services","year":2002,"month":2,"count":973,"rate":7.7,"date":"2002-02-01T08:00:00.000Z"},{"series":"Business services","year":2002,"month":3,"count":964,"rate":7.5,"date":"2002-03-01T08:00:00.000Z"},{"series":"Business services","year":2002,"month":4,"count":951,"rate":7.3,"date":"2002-04-01T08:00:00.000Z"},{"series":"Business services","year":2002,"month":5,"count":983,"rate":7.7,"date":"2002-05-01T07:00:00.000Z"},{"series":"Business services","year":2002,"month":6,"count":1079,"rate":8.2,"date":"2002-06-01T07:00:00.000Z"},{"series":"Business services","year":2002,"month":7,"count":1075,"rate":8.2,"date":"2002-07-01T07:00:00.000Z"},{"series":"Business services","year":2002,"month":8,"count":926,"rate":7.2,"date":"2002-08-01T07:00:00.000Z"},{"series":"Business services","year":2002,"month":9,"count":1007,"rate":7.8,"date":"2002-09-01T07:00:00.000Z"},{"series":"Business services","year":2002,"month":10,"count":962,"rate":7.5,"date":"2002-10-01T07:00:00.000Z"},{"series":"Business services","year":2002,"month":11,"count":1029,"rate":8.2,"date":"2002-11-01T08:00:00.000Z"},{"series":"Business services","year":2002,"month":12,"count":1038,"rate":8.3,"date":"2002-12-01T08:00:00.000Z"},{"series":"Business services","year":2003,"month":1,"count":1112,"rate":8.9,"date":"2003-01-01T08:00:00.000Z"},{"series":"Business services","year":2003,"month":2,"count":1140,"rate":8.9,"date":"2003-02-01T08:00:00.000Z"},{"series":"Business services","year":2003,"month":3,"count":1190,"rate":9.1,"date":"2003-03-01T08:00:00.000Z"},{"series":"Business services","year":2003,"month":4,"count":1076,"rate":8.3,"date":"2003-04-01T08:00:00.000Z"},{"series":"Business services","year":2003,"month":5,"count":1105,"rate":8.4,"date":"2003-05-01T07:00:00.000Z"},{"series":"Business services","year":2003,"month":6,"count":1092,"rate":8.5,"date":"2003-06-01T07:00:00.000Z"},{"series":"Business services","year":2003,"month":7,"count":1021,"rate":8.2,"date":"2003-07-01T07:00:00.000Z"},{"series":"Business services","year":2003,"month":8,"count":881,"rate":7.2,"date":"2003-08-01T07:00:00.000Z"},{"series":"Business services","year":2003,"month":9,"count":975,"rate":8,"date":"2003-09-01T07:00:00.000Z"},{"series":"Business services","year":2003,"month":10,"count":1014,"rate":8.1,"date":"2003-10-01T07:00:00.000Z"},{"series":"Business services","year":2003,"month":11,"count":948,"rate":7.7,"date":"2003-11-01T08:00:00.000Z"},{"series":"Business services","year":2003,"month":12,"count":948,"rate":7.6,"date":"2003-12-01T08:00:00.000Z"},{"series":"Business services","year":2004,"month":1,"count":1070,"rate":8.7,"date":"2004-01-01T08:00:00.000Z"},{"series":"Business services","year":2004,"month":2,"count":964,"rate":7.7,"date":"2004-02-01T08:00:00.000Z"},{"series":"Business services","year":2004,"month":3,"count":999,"rate":7.9,"date":"2004-03-01T08:00:00.000Z"},{"series":"Business services","year":2004,"month":4,"count":752,"rate":6,"date":"2004-04-01T08:00:00.000Z"},{"series":"Business services","year":2004,"month":5,"count":819,"rate":6.5,"date":"2004-05-01T07:00:00.000Z"},{"series":"Business services","year":2004,"month":6,"count":814,"rate":6.5,"date":"2004-06-01T07:00:00.000Z"},{"series":"Business services","year":2004,"month":7,"count":790,"rate":6.2,"date":"2004-07-01T07:00:00.000Z"},{"series":"Business services","year":2004,"month":8,"count":845,"rate":6.7,"date":"2004-08-01T07:00:00.000Z"},{"series":"Business services","year":2004,"month":9,"count":750,"rate":5.9,"date":"2004-09-01T07:00:00.000Z"},{"series":"Business services","year":2004,"month":10,"count":781,"rate":6.2,"date":"2004-10-01T07:00:00.000Z"},{"series":"Business services","year":2004,"month":11,"count":872,"rate":6.8,"date":"2004-11-01T08:00:00.000Z"},{"series":"Business services","year":2004,"month":12,"count":875,"rate":6.9,"date":"2004-12-01T08:00:00.000Z"},{"series":"Business services","year":2005,"month":1,"count":958,"rate":7.6,"date":"2005-01-01T08:00:00.000Z"},{"series":"Business services","year":2005,"month":2,"count":916,"rate":7.2,"date":"2005-02-01T08:00:00.000Z"},{"series":"Business services","year":2005,"month":3,"count":807,"rate":6.5,"date":"2005-03-01T08:00:00.000Z"},{"series":"Business services","year":2005,"month":4,"count":714,"rate":5.7,"date":"2005-04-01T08:00:00.000Z"},{"series":"Business services","year":2005,"month":5,"count":730,"rate":5.9,"date":"2005-05-01T07:00:00.000Z"},{"series":"Business services","year":2005,"month":6,"count":743,"rate":5.8,"date":"2005-06-01T07:00:00.000Z"},{"series":"Business services","year":2005,"month":7,"count":804,"rate":6.3,"date":"2005-07-01T07:00:00.000Z"},{"series":"Business services","year":2005,"month":8,"count":728,"rate":5.7,"date":"2005-08-01T07:00:00.000Z"},{"series":"Business services","year":2005,"month":9,"count":862,"rate":6.7,"date":"2005-09-01T07:00:00.000Z"},{"series":"Business services","year":2005,"month":10,"count":748,"rate":5.8,"date":"2005-10-01T07:00:00.000Z"},{"series":"Business services","year":2005,"month":11,"count":711,"rate":5.5,"date":"2005-11-01T08:00:00.000Z"},{"series":"Business services","year":2005,"month":12,"count":788,"rate":6.1,"date":"2005-12-01T08:00:00.000Z"},{"series":"Business services","year":2006,"month":1,"count":825,"rate":6.5,"date":"2006-01-01T08:00:00.000Z"},{"series":"Business services","year":2006,"month":2,"count":841,"rate":6.5,"date":"2006-02-01T08:00:00.000Z"},{"series":"Business services","year":2006,"month":3,"count":824,"rate":6.3,"date":"2006-03-01T08:00:00.000Z"},{"series":"Business services","year":2006,"month":4,"count":644,"rate":4.9,"date":"2006-04-01T08:00:00.000Z"},{"series":"Business services","year":2006,"month":5,"count":695,"rate":5.3,"date":"2006-05-01T07:00:00.000Z"},{"series":"Business services","year":2006,"month":6,"count":753,"rate":5.7,"date":"2006-06-01T07:00:00.000Z"},{"series":"Business services","year":2006,"month":7,"count":735,"rate":5.5,"date":"2006-07-01T07:00:00.000Z"},{"series":"Business services","year":2006,"month":8,"count":681,"rate":5.1,"date":"2006-08-01T07:00:00.000Z"},{"series":"Business services","year":2006,"month":9,"count":736,"rate":5.6,"date":"2006-09-01T07:00:00.000Z"},{"series":"Business services","year":2006,"month":10,"count":768,"rate":5.6,"date":"2006-10-01T07:00:00.000Z"},{"series":"Business services","year":2006,"month":11,"count":658,"rate":4.9,"date":"2006-11-01T08:00:00.000Z"},{"series":"Business services","year":2006,"month":12,"count":791,"rate":5.9,"date":"2006-12-01T08:00:00.000Z"},{"series":"Business services","year":2007,"month":1,"count":885,"rate":6.5,"date":"2007-01-01T08:00:00.000Z"},{"series":"Business services","year":2007,"month":2,"count":825,"rate":6,"date":"2007-02-01T08:00:00.000Z"},{"series":"Business services","year":2007,"month":3,"count":775,"rate":5.7,"date":"2007-03-01T08:00:00.000Z"},{"series":"Business services","year":2007,"month":4,"count":689,"rate":5,"date":"2007-04-01T07:00:00.000Z"},{"series":"Business services","year":2007,"month":5,"count":743,"rate":5.4,"date":"2007-05-01T07:00:00.000Z"},{"series":"Business services","year":2007,"month":6,"count":722,"rate":5.2,"date":"2007-06-01T07:00:00.000Z"},{"series":"Business services","year":2007,"month":7,"count":743,"rate":5.2,"date":"2007-07-01T07:00:00.000Z"},{"series":"Business services","year":2007,"month":8,"count":683,"rate":4.9,"date":"2007-08-01T07:00:00.000Z"},{"series":"Business services","year":2007,"month":9,"count":655,"rate":4.7,"date":"2007-09-01T07:00:00.000Z"},{"series":"Business services","year":2007,"month":10,"count":675,"rate":4.8,"date":"2007-10-01T07:00:00.000Z"},{"series":"Business services","year":2007,"month":11,"count":679,"rate":4.8,"date":"2007-11-01T07:00:00.000Z"},{"series":"Business services","year":2007,"month":12,"count":803,"rate":5.7,"date":"2007-12-01T08:00:00.000Z"},{"series":"Business services","year":2008,"month":1,"count":893,"rate":6.4,"date":"2008-01-01T08:00:00.000Z"},{"series":"Business services","year":2008,"month":2,"count":866,"rate":6.2,"date":"2008-02-01T08:00:00.000Z"},{"series":"Business services","year":2008,"month":3,"count":876,"rate":6.2,"date":"2008-03-01T08:00:00.000Z"},{"series":"Business services","year":2008,"month":4,"count":736,"rate":5.3,"date":"2008-04-01T07:00:00.000Z"},{"series":"Business services","year":2008,"month":5,"count":829,"rate":5.9,"date":"2008-05-01T07:00:00.000Z"},{"series":"Business services","year":2008,"month":6,"count":890,"rate":6.2,"date":"2008-06-01T07:00:00.000Z"},{"series":"Business services","year":2008,"month":7,"count":866,"rate":6.1,"date":"2008-07-01T07:00:00.000Z"},{"series":"Business services","year":2008,"month":8,"count":961,"rate":6.9,"date":"2008-08-01T07:00:00.000Z"},{"series":"Business services","year":2008,"month":9,"count":951,"rate":6.9,"date":"2008-09-01T07:00:00.000Z"},{"series":"Business services","year":2008,"month":10,"count":1052,"rate":7.5,"date":"2008-10-01T07:00:00.000Z"},{"series":"Business services","year":2008,"month":11,"count":992,"rate":7,"date":"2008-11-01T07:00:00.000Z"},{"series":"Business services","year":2008,"month":12,"count":1147,"rate":8.1,"date":"2008-12-01T08:00:00.000Z"},{"series":"Business services","year":2009,"month":1,"count":1445,"rate":10.4,"date":"2009-01-01T08:00:00.000Z"},{"series":"Business services","year":2009,"month":2,"count":1512,"rate":10.8,"date":"2009-02-01T08:00:00.000Z"},{"series":"Business services","year":2009,"month":3,"count":1597,"rate":11.4,"date":"2009-03-01T08:00:00.000Z"},{"series":"Business services","year":2009,"month":4,"count":1448,"rate":10.4,"date":"2009-04-01T07:00:00.000Z"},{"series":"Business services","year":2009,"month":5,"count":1514,"rate":10.9,"date":"2009-05-01T07:00:00.000Z"},{"series":"Business services","year":2009,"month":6,"count":1580,"rate":11.3,"date":"2009-06-01T07:00:00.000Z"},{"series":"Business services","year":2009,"month":7,"count":1531,"rate":10.9,"date":"2009-07-01T07:00:00.000Z"},{"series":"Business services","year":2009,"month":8,"count":1560,"rate":11,"date":"2009-08-01T07:00:00.000Z"},{"series":"Business services","year":2009,"month":9,"count":1596,"rate":11.3,"date":"2009-09-01T07:00:00.000Z"},{"series":"Business services","year":2009,"month":10,"count":1488,"rate":10.3,"date":"2009-10-01T07:00:00.000Z"},{"series":"Business services","year":2009,"month":11,"count":1514,"rate":10.6,"date":"2009-11-01T07:00:00.000Z"},{"series":"Business services","year":2009,"month":12,"count":1486,"rate":10.3,"date":"2009-12-01T08:00:00.000Z"},{"series":"Business services","year":2010,"month":1,"count":1614,"rate":11.1,"date":"2010-01-01T08:00:00.000Z"},{"series":"Business services","year":2010,"month":2,"count":1740,"rate":12,"date":"2010-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2000,"month":1,"count":353,"rate":2.3,"date":"2000-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2000,"month":2,"count":349,"rate":2.2,"date":"2000-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2000,"month":3,"count":381,"rate":2.5,"date":"2000-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2000,"month":4,"count":329,"rate":2.1,"date":"2000-04-01T08:00:00.000Z"},{"series":"Education and Health","year":2000,"month":5,"count":423,"rate":2.7,"date":"2000-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2000,"month":6,"count":452,"rate":2.9,"date":"2000-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2000,"month":7,"count":478,"rate":3.1,"date":"2000-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2000,"month":8,"count":450,"rate":2.9,"date":"2000-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2000,"month":9,"count":398,"rate":2.6,"date":"2000-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2000,"month":10,"count":339,"rate":2.1,"date":"2000-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2000,"month":11,"count":351,"rate":2.2,"date":"2000-11-01T08:00:00.000Z"},{"series":"Education and Health","year":2000,"month":12,"count":293,"rate":1.8,"date":"2000-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2001,"month":1,"count":428,"rate":2.6,"date":"2001-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2001,"month":2,"count":423,"rate":2.6,"date":"2001-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2001,"month":3,"count":456,"rate":2.8,"date":"2001-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2001,"month":4,"count":341,"rate":2.1,"date":"2001-04-01T08:00:00.000Z"},{"series":"Education and Health","year":2001,"month":5,"count":390,"rate":2.4,"date":"2001-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2001,"month":6,"count":476,"rate":3,"date":"2001-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2001,"month":7,"count":513,"rate":3.1,"date":"2001-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2001,"month":8,"count":595,"rate":3.7,"date":"2001-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2001,"month":9,"count":455,"rate":2.8,"date":"2001-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2001,"month":10,"count":486,"rate":2.9,"date":"2001-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2001,"month":11,"count":516,"rate":3.1,"date":"2001-11-01T08:00:00.000Z"},{"series":"Education and Health","year":2001,"month":12,"count":483,"rate":2.9,"date":"2001-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2002,"month":1,"count":586,"rate":3.5,"date":"2002-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2002,"month":2,"count":590,"rate":3.5,"date":"2002-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2002,"month":3,"count":540,"rate":3.2,"date":"2002-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2002,"month":4,"count":493,"rate":2.9,"date":"2002-04-01T08:00:00.000Z"},{"series":"Education and Health","year":2002,"month":5,"count":533,"rate":3.2,"date":"2002-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2002,"month":6,"count":638,"rate":3.9,"date":"2002-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2002,"month":7,"count":671,"rate":4,"date":"2002-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2002,"month":8,"count":660,"rate":3.9,"date":"2002-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2002,"month":9,"count":562,"rate":3.2,"date":"2002-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2002,"month":10,"count":517,"rate":3,"date":"2002-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2002,"month":11,"count":493,"rate":2.8,"date":"2002-11-01T08:00:00.000Z"},{"series":"Education and Health","year":2002,"month":12,"count":558,"rate":3.2,"date":"2002-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2003,"month":1,"count":559,"rate":3.2,"date":"2003-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2003,"month":2,"count":576,"rate":3.2,"date":"2003-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2003,"month":3,"count":518,"rate":2.9,"date":"2003-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2003,"month":4,"count":611,"rate":3.4,"date":"2003-04-01T08:00:00.000Z"},{"series":"Education and Health","year":2003,"month":5,"count":618,"rate":3.5,"date":"2003-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2003,"month":6,"count":769,"rate":4.4,"date":"2003-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2003,"month":7,"count":697,"rate":4,"date":"2003-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2003,"month":8,"count":760,"rate":4.3,"date":"2003-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2003,"month":9,"count":649,"rate":3.7,"date":"2003-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2003,"month":10,"count":639,"rate":3.6,"date":"2003-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2003,"month":11,"count":662,"rate":3.8,"date":"2003-11-01T08:00:00.000Z"},{"series":"Education and Health","year":2003,"month":12,"count":620,"rate":3.5,"date":"2003-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2004,"month":1,"count":662,"rate":3.7,"date":"2004-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2004,"month":2,"count":608,"rate":3.4,"date":"2004-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2004,"month":3,"count":584,"rate":3.2,"date":"2004-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2004,"month":4,"count":589,"rate":3.3,"date":"2004-04-01T08:00:00.000Z"},{"series":"Education and Health","year":2004,"month":5,"count":570,"rate":3.2,"date":"2004-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2004,"month":6,"count":769,"rate":4.2,"date":"2004-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2004,"month":7,"count":725,"rate":4,"date":"2004-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2004,"month":8,"count":647,"rate":3.7,"date":"2004-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2004,"month":9,"count":593,"rate":3.3,"date":"2004-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2004,"month":10,"count":526,"rate":2.9,"date":"2004-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2004,"month":11,"count":570,"rate":3.2,"date":"2004-11-01T08:00:00.000Z"},{"series":"Education and Health","year":2004,"month":12,"count":562,"rate":3.1,"date":"2004-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2005,"month":1,"count":613,"rate":3.4,"date":"2005-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2005,"month":2,"count":619,"rate":3.4,"date":"2005-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2005,"month":3,"count":614,"rate":3.4,"date":"2005-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2005,"month":4,"count":591,"rate":3.3,"date":"2005-04-01T08:00:00.000Z"},{"series":"Education and Health","year":2005,"month":5,"count":648,"rate":3.6,"date":"2005-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2005,"month":6,"count":667,"rate":3.6,"date":"2005-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2005,"month":7,"count":635,"rate":3.5,"date":"2005-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2005,"month":8,"count":644,"rate":3.5,"date":"2005-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2005,"month":9,"count":658,"rate":3.5,"date":"2005-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2005,"month":10,"count":628,"rate":3.4,"date":"2005-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2005,"month":11,"count":677,"rate":3.6,"date":"2005-11-01T08:00:00.000Z"},{"series":"Education and Health","year":2005,"month":12,"count":529,"rate":2.8,"date":"2005-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2006,"month":1,"count":593,"rate":3.2,"date":"2006-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2006,"month":2,"count":528,"rate":2.8,"date":"2006-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2006,"month":3,"count":563,"rate":3,"date":"2006-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2006,"month":4,"count":558,"rate":3,"date":"2006-04-01T08:00:00.000Z"},{"series":"Education and Health","year":2006,"month":5,"count":543,"rate":2.9,"date":"2006-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2006,"month":6,"count":617,"rate":3.3,"date":"2006-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2006,"month":7,"count":659,"rate":3.5,"date":"2006-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2006,"month":8,"count":611,"rate":3.2,"date":"2006-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2006,"month":9,"count":576,"rate":3,"date":"2006-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2006,"month":10,"count":531,"rate":2.8,"date":"2006-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2006,"month":11,"count":536,"rate":2.8,"date":"2006-11-01T08:00:00.000Z"},{"series":"Education and Health","year":2006,"month":12,"count":502,"rate":2.6,"date":"2006-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2007,"month":1,"count":563,"rate":2.9,"date":"2007-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2007,"month":2,"count":489,"rate":2.5,"date":"2007-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2007,"month":3,"count":495,"rate":2.5,"date":"2007-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2007,"month":4,"count":555,"rate":2.9,"date":"2007-04-01T07:00:00.000Z"},{"series":"Education and Health","year":2007,"month":5,"count":622,"rate":3.3,"date":"2007-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2007,"month":6,"count":653,"rate":3.4,"date":"2007-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2007,"month":7,"count":665,"rate":3.5,"date":"2007-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2007,"month":8,"count":648,"rate":3.4,"date":"2007-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2007,"month":9,"count":630,"rate":3.2,"date":"2007-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2007,"month":10,"count":534,"rate":2.7,"date":"2007-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2007,"month":11,"count":526,"rate":2.7,"date":"2007-11-01T07:00:00.000Z"},{"series":"Education and Health","year":2007,"month":12,"count":521,"rate":2.6,"date":"2007-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2008,"month":1,"count":576,"rate":2.9,"date":"2008-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2008,"month":2,"count":562,"rate":2.9,"date":"2008-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2008,"month":3,"count":609,"rate":3.1,"date":"2008-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2008,"month":4,"count":551,"rate":2.8,"date":"2008-04-01T07:00:00.000Z"},{"series":"Education and Health","year":2008,"month":5,"count":619,"rate":3.2,"date":"2008-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2008,"month":6,"count":669,"rate":3.4,"date":"2008-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2008,"month":7,"count":776,"rate":3.9,"date":"2008-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2008,"month":8,"count":844,"rate":4.3,"date":"2008-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2008,"month":9,"count":835,"rate":4.1,"date":"2008-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2008,"month":10,"count":797,"rate":3.9,"date":"2008-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2008,"month":11,"count":748,"rate":3.6,"date":"2008-11-01T07:00:00.000Z"},{"series":"Education and Health","year":2008,"month":12,"count":791,"rate":3.8,"date":"2008-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2009,"month":1,"count":792,"rate":3.8,"date":"2009-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2009,"month":2,"count":847,"rate":4.1,"date":"2009-02-01T08:00:00.000Z"},{"series":"Education and Health","year":2009,"month":3,"count":931,"rate":4.5,"date":"2009-03-01T08:00:00.000Z"},{"series":"Education and Health","year":2009,"month":4,"count":964,"rate":4.6,"date":"2009-04-01T07:00:00.000Z"},{"series":"Education and Health","year":2009,"month":5,"count":1005,"rate":4.9,"date":"2009-05-01T07:00:00.000Z"},{"series":"Education and Health","year":2009,"month":6,"count":1267,"rate":6.1,"date":"2009-06-01T07:00:00.000Z"},{"series":"Education and Health","year":2009,"month":7,"count":1269,"rate":6.1,"date":"2009-07-01T07:00:00.000Z"},{"series":"Education and Health","year":2009,"month":8,"count":1239,"rate":6,"date":"2009-08-01T07:00:00.000Z"},{"series":"Education and Health","year":2009,"month":9,"count":1257,"rate":6,"date":"2009-09-01T07:00:00.000Z"},{"series":"Education and Health","year":2009,"month":10,"count":1280,"rate":6,"date":"2009-10-01T07:00:00.000Z"},{"series":"Education and Health","year":2009,"month":11,"count":1168,"rate":5.5,"date":"2009-11-01T07:00:00.000Z"},{"series":"Education and Health","year":2009,"month":12,"count":1183,"rate":5.6,"date":"2009-12-01T08:00:00.000Z"},{"series":"Education and Health","year":2010,"month":1,"count":1175,"rate":5.5,"date":"2010-01-01T08:00:00.000Z"},{"series":"Education and Health","year":2010,"month":2,"count":1200,"rate":5.6,"date":"2010-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":1,"count":782,"rate":7.5,"date":"2000-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":2,"count":779,"rate":7.5,"date":"2000-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":3,"count":789,"rate":7.4,"date":"2000-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":4,"count":658,"rate":6.1,"date":"2000-04-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":5,"count":675,"rate":6.2,"date":"2000-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":6,"count":833,"rate":7.3,"date":"2000-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":7,"count":786,"rate":6.8,"date":"2000-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":8,"count":675,"rate":6,"date":"2000-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":9,"count":636,"rate":5.9,"date":"2000-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":10,"count":691,"rate":6.5,"date":"2000-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":11,"count":694,"rate":6.5,"date":"2000-11-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2000,"month":12,"count":639,"rate":5.9,"date":"2000-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":1,"count":806,"rate":7.7,"date":"2001-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":2,"count":821,"rate":7.5,"date":"2001-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":3,"count":817,"rate":7.4,"date":"2001-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":4,"count":744,"rate":6.8,"date":"2001-04-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":5,"count":731,"rate":6.7,"date":"2001-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":6,"count":821,"rate":7,"date":"2001-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":7,"count":813,"rate":6.8,"date":"2001-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":8,"count":767,"rate":6.8,"date":"2001-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":9,"count":900,"rate":8,"date":"2001-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":10,"count":903,"rate":8.3,"date":"2001-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":11,"count":935,"rate":8.5,"date":"2001-11-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2001,"month":12,"count":938,"rate":8.5,"date":"2001-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":1,"count":947,"rate":8.6,"date":"2002-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":2,"count":973,"rate":8.7,"date":"2002-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":3,"count":976,"rate":8.5,"date":"2002-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":4,"count":953,"rate":8.4,"date":"2002-04-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":5,"count":1022,"rate":8.6,"date":"2002-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":6,"count":1034,"rate":8.5,"date":"2002-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":7,"count":999,"rate":8.2,"date":"2002-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":8,"count":884,"rate":7.5,"date":"2002-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":9,"count":885,"rate":7.9,"date":"2002-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":10,"count":956,"rate":8.5,"date":"2002-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":11,"count":978,"rate":8.9,"date":"2002-11-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2002,"month":12,"count":922,"rate":8.2,"date":"2002-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":1,"count":1049,"rate":9.3,"date":"2003-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":2,"count":1145,"rate":10,"date":"2003-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":3,"count":1035,"rate":8.9,"date":"2003-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":4,"count":986,"rate":8.5,"date":"2003-04-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":5,"count":955,"rate":7.9,"date":"2003-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":6,"count":1048,"rate":8.6,"date":"2003-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":7,"count":1020,"rate":8.4,"date":"2003-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":8,"count":1050,"rate":9,"date":"2003-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":9,"count":978,"rate":8.8,"date":"2003-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":10,"count":933,"rate":8.3,"date":"2003-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":11,"count":990,"rate":9,"date":"2003-11-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2003,"month":12,"count":885,"rate":8.2,"date":"2003-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":1,"count":1097,"rate":10,"date":"2004-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":2,"count":987,"rate":8.9,"date":"2004-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":3,"count":1039,"rate":9,"date":"2004-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":4,"count":925,"rate":7.9,"date":"2004-04-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":5,"count":977,"rate":8.1,"date":"2004-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":6,"count":1189,"rate":9.6,"date":"2004-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":7,"count":965,"rate":7.8,"date":"2004-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":8,"count":1010,"rate":8.4,"date":"2004-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":9,"count":854,"rate":7.5,"date":"2004-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":10,"count":853,"rate":7.3,"date":"2004-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":11,"count":916,"rate":7.9,"date":"2004-11-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2004,"month":12,"count":850,"rate":7.4,"date":"2004-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":1,"count":993,"rate":8.7,"date":"2005-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":2,"count":1008,"rate":8.8,"date":"2005-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":3,"count":967,"rate":8.3,"date":"2005-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":4,"count":882,"rate":7.7,"date":"2005-04-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":5,"count":944,"rate":7.7,"date":"2005-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":6,"count":950,"rate":7.6,"date":"2005-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":7,"count":929,"rate":7.4,"date":"2005-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":8,"count":844,"rate":6.8,"date":"2005-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":9,"count":842,"rate":7.3,"date":"2005-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":10,"count":796,"rate":6.8,"date":"2005-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":11,"count":966,"rate":8.1,"date":"2005-11-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2005,"month":12,"count":930,"rate":7.9,"date":"2005-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":1,"count":910,"rate":8.1,"date":"2006-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":2,"count":1040,"rate":9.1,"date":"2006-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":3,"count":917,"rate":8,"date":"2006-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":4,"count":882,"rate":7.6,"date":"2006-04-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":5,"count":830,"rate":7,"date":"2006-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":6,"count":942,"rate":7.4,"date":"2006-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":7,"count":867,"rate":6.8,"date":"2006-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":8,"count":855,"rate":6.9,"date":"2006-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":9,"count":810,"rate":6.9,"date":"2006-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":10,"count":795,"rate":6.6,"date":"2006-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":11,"count":836,"rate":7.1,"date":"2006-11-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2006,"month":12,"count":701,"rate":5.9,"date":"2006-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":1,"count":911,"rate":7.8,"date":"2007-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":2,"count":879,"rate":7.4,"date":"2007-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":3,"count":845,"rate":7,"date":"2007-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":4,"count":822,"rate":6.9,"date":"2007-04-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":5,"count":831,"rate":6.8,"date":"2007-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":6,"count":917,"rate":7.2,"date":"2007-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":7,"count":920,"rate":7.3,"date":"2007-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":8,"count":877,"rate":7.1,"date":"2007-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":9,"count":892,"rate":7.4,"date":"2007-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":10,"count":911,"rate":7.5,"date":"2007-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":11,"count":986,"rate":8.1,"date":"2007-11-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2007,"month":12,"count":961,"rate":7.9,"date":"2007-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":1,"count":1176,"rate":9.4,"date":"2008-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":2,"count":1056,"rate":8.5,"date":"2008-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":3,"count":944,"rate":7.6,"date":"2008-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":4,"count":874,"rate":6.9,"date":"2008-04-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":5,"count":1074,"rate":8.4,"date":"2008-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":6,"count":1154,"rate":8.9,"date":"2008-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":7,"count":1172,"rate":8.8,"date":"2008-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":8,"count":1122,"rate":8.7,"date":"2008-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":9,"count":1029,"rate":8.2,"date":"2008-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":10,"count":1126,"rate":8.9,"date":"2008-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":11,"count":1283,"rate":9.9,"date":"2008-11-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2008,"month":12,"count":1210,"rate":9.5,"date":"2008-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":1,"count":1487,"rate":11.5,"date":"2009-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":2,"count":1477,"rate":11.4,"date":"2009-02-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":3,"count":1484,"rate":11.6,"date":"2009-03-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":4,"count":1322,"rate":10.2,"date":"2009-04-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":5,"count":1599,"rate":11.9,"date":"2009-05-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":6,"count":1688,"rate":12.1,"date":"2009-06-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":7,"count":1600,"rate":11.2,"date":"2009-07-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":8,"count":1636,"rate":12,"date":"2009-08-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":9,"count":1469,"rate":11.4,"date":"2009-09-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":10,"count":1604,"rate":12.4,"date":"2009-10-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":11,"count":1524,"rate":11.9,"date":"2009-11-01T07:00:00.000Z"},{"series":"Leisure and hospitality","year":2009,"month":12,"count":1624,"rate":12.6,"date":"2009-12-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2010,"month":1,"count":1804,"rate":14.2,"date":"2010-01-01T08:00:00.000Z"},{"series":"Leisure and hospitality","year":2010,"month":2,"count":1597,"rate":12.7,"date":"2010-02-01T08:00:00.000Z"},{"series":"Other","year":2000,"month":1,"count":274,"rate":4.9,"date":"2000-01-01T08:00:00.000Z"},{"series":"Other","year":2000,"month":2,"count":232,"rate":4.1,"date":"2000-02-01T08:00:00.000Z"},{"series":"Other","year":2000,"month":3,"count":247,"rate":4.3,"date":"2000-03-01T08:00:00.000Z"},{"series":"Other","year":2000,"month":4,"count":240,"rate":4.2,"date":"2000-04-01T08:00:00.000Z"},{"series":"Other","year":2000,"month":5,"count":254,"rate":4.5,"date":"2000-05-01T07:00:00.000Z"},{"series":"Other","year":2000,"month":6,"count":225,"rate":3.9,"date":"2000-06-01T07:00:00.000Z"},{"series":"Other","year":2000,"month":7,"count":202,"rate":3.7,"date":"2000-07-01T07:00:00.000Z"},{"series":"Other","year":2000,"month":8,"count":187,"rate":3.5,"date":"2000-08-01T07:00:00.000Z"},{"series":"Other","year":2000,"month":9,"count":220,"rate":4,"date":"2000-09-01T07:00:00.000Z"},{"series":"Other","year":2000,"month":10,"count":161,"rate":2.9,"date":"2000-10-01T07:00:00.000Z"},{"series":"Other","year":2000,"month":11,"count":217,"rate":3.8,"date":"2000-11-01T08:00:00.000Z"},{"series":"Other","year":2000,"month":12,"count":167,"rate":2.9,"date":"2000-12-01T08:00:00.000Z"},{"series":"Other","year":2001,"month":1,"count":197,"rate":3.4,"date":"2001-01-01T08:00:00.000Z"},{"series":"Other","year":2001,"month":2,"count":243,"rate":4.2,"date":"2001-02-01T08:00:00.000Z"},{"series":"Other","year":2001,"month":3,"count":200,"rate":3.4,"date":"2001-03-01T08:00:00.000Z"},{"series":"Other","year":2001,"month":4,"count":220,"rate":3.8,"date":"2001-04-01T08:00:00.000Z"},{"series":"Other","year":2001,"month":5,"count":172,"rate":3.2,"date":"2001-05-01T07:00:00.000Z"},{"series":"Other","year":2001,"month":6,"count":246,"rate":4.6,"date":"2001-06-01T07:00:00.000Z"},{"series":"Other","year":2001,"month":7,"count":228,"rate":4.1,"date":"2001-07-01T07:00:00.000Z"},{"series":"Other","year":2001,"month":8,"count":241,"rate":4.5,"date":"2001-08-01T07:00:00.000Z"},{"series":"Other","year":2001,"month":9,"count":225,"rate":4,"date":"2001-09-01T07:00:00.000Z"},{"series":"Other","year":2001,"month":10,"count":239,"rate":4.1,"date":"2001-10-01T07:00:00.000Z"},{"series":"Other","year":2001,"month":11,"count":256,"rate":4.2,"date":"2001-11-01T08:00:00.000Z"},{"series":"Other","year":2001,"month":12,"count":277,"rate":4.5,"date":"2001-12-01T08:00:00.000Z"},{"series":"Other","year":2002,"month":1,"count":304,"rate":5.1,"date":"2002-01-01T08:00:00.000Z"},{"series":"Other","year":2002,"month":2,"count":339,"rate":5.6,"date":"2002-02-01T08:00:00.000Z"},{"series":"Other","year":2002,"month":3,"count":314,"rate":5.5,"date":"2002-03-01T08:00:00.000Z"},{"series":"Other","year":2002,"month":4,"count":268,"rate":4.6,"date":"2002-04-01T08:00:00.000Z"},{"series":"Other","year":2002,"month":5,"count":264,"rate":4.6,"date":"2002-05-01T07:00:00.000Z"},{"series":"Other","year":2002,"month":6,"count":335,"rate":5.5,"date":"2002-06-01T07:00:00.000Z"},{"series":"Other","year":2002,"month":7,"count":356,"rate":5.8,"date":"2002-07-01T07:00:00.000Z"},{"series":"Other","year":2002,"month":8,"count":353,"rate":6,"date":"2002-08-01T07:00:00.000Z"},{"series":"Other","year":2002,"month":9,"count":281,"rate":4.8,"date":"2002-09-01T07:00:00.000Z"},{"series":"Other","year":2002,"month":10,"count":272,"rate":4.6,"date":"2002-10-01T07:00:00.000Z"},{"series":"Other","year":2002,"month":11,"count":284,"rate":4.9,"date":"2002-11-01T08:00:00.000Z"},{"series":"Other","year":2002,"month":12,"count":241,"rate":4.2,"date":"2002-12-01T08:00:00.000Z"},{"series":"Other","year":2003,"month":1,"count":304,"rate":5.3,"date":"2003-01-01T08:00:00.000Z"},{"series":"Other","year":2003,"month":2,"count":331,"rate":5.7,"date":"2003-02-01T08:00:00.000Z"},{"series":"Other","year":2003,"month":3,"count":370,"rate":6.1,"date":"2003-03-01T08:00:00.000Z"},{"series":"Other","year":2003,"month":4,"count":331,"rate":5.5,"date":"2003-04-01T08:00:00.000Z"},{"series":"Other","year":2003,"month":5,"count":339,"rate":5.7,"date":"2003-05-01T07:00:00.000Z"},{"series":"Other","year":2003,"month":6,"count":359,"rate":5.9,"date":"2003-06-01T07:00:00.000Z"},{"series":"Other","year":2003,"month":7,"count":405,"rate":6.6,"date":"2003-07-01T07:00:00.000Z"},{"series":"Other","year":2003,"month":8,"count":373,"rate":6.1,"date":"2003-08-01T07:00:00.000Z"},{"series":"Other","year":2003,"month":9,"count":338,"rate":5.5,"date":"2003-09-01T07:00:00.000Z"},{"series":"Other","year":2003,"month":10,"count":378,"rate":6.1,"date":"2003-10-01T07:00:00.000Z"},{"series":"Other","year":2003,"month":11,"count":357,"rate":5.8,"date":"2003-11-01T08:00:00.000Z"},{"series":"Other","year":2003,"month":12,"count":278,"rate":4.5,"date":"2003-12-01T08:00:00.000Z"},{"series":"Other","year":2004,"month":1,"count":322,"rate":5.3,"date":"2004-01-01T08:00:00.000Z"},{"series":"Other","year":2004,"month":2,"count":366,"rate":5.9,"date":"2004-02-01T08:00:00.000Z"},{"series":"Other","year":2004,"month":3,"count":366,"rate":5.9,"date":"2004-03-01T08:00:00.000Z"},{"series":"Other","year":2004,"month":4,"count":347,"rate":5.6,"date":"2004-04-01T08:00:00.000Z"},{"series":"Other","year":2004,"month":5,"count":310,"rate":5.1,"date":"2004-05-01T07:00:00.000Z"},{"series":"Other","year":2004,"month":6,"count":326,"rate":5.4,"date":"2004-06-01T07:00:00.000Z"},{"series":"Other","year":2004,"month":7,"count":346,"rate":5.6,"date":"2004-07-01T07:00:00.000Z"},{"series":"Other","year":2004,"month":8,"count":341,"rate":5.6,"date":"2004-08-01T07:00:00.000Z"},{"series":"Other","year":2004,"month":9,"count":301,"rate":4.9,"date":"2004-09-01T07:00:00.000Z"},{"series":"Other","year":2004,"month":10,"count":300,"rate":4.8,"date":"2004-10-01T07:00:00.000Z"},{"series":"Other","year":2004,"month":11,"count":294,"rate":4.8,"date":"2004-11-01T08:00:00.000Z"},{"series":"Other","year":2004,"month":12,"count":276,"rate":4.3,"date":"2004-12-01T08:00:00.000Z"},{"series":"Other","year":2005,"month":1,"count":290,"rate":4.7,"date":"2005-01-01T08:00:00.000Z"},{"series":"Other","year":2005,"month":2,"count":325,"rate":5.3,"date":"2005-02-01T08:00:00.000Z"},{"series":"Other","year":2005,"month":3,"count":308,"rate":5,"date":"2005-03-01T08:00:00.000Z"},{"series":"Other","year":2005,"month":4,"count":306,"rate":4.9,"date":"2005-04-01T08:00:00.000Z"},{"series":"Other","year":2005,"month":5,"count":314,"rate":5,"date":"2005-05-01T07:00:00.000Z"},{"series":"Other","year":2005,"month":6,"count":291,"rate":4.6,"date":"2005-06-01T07:00:00.000Z"},{"series":"Other","year":2005,"month":7,"count":274,"rate":4.2,"date":"2005-07-01T07:00:00.000Z"},{"series":"Other","year":2005,"month":8,"count":306,"rate":4.8,"date":"2005-08-01T07:00:00.000Z"},{"series":"Other","year":2005,"month":9,"count":307,"rate":4.9,"date":"2005-09-01T07:00:00.000Z"},{"series":"Other","year":2005,"month":10,"count":319,"rate":5,"date":"2005-10-01T07:00:00.000Z"},{"series":"Other","year":2005,"month":11,"count":300,"rate":4.9,"date":"2005-11-01T08:00:00.000Z"},{"series":"Other","year":2005,"month":12,"count":269,"rate":4.3,"date":"2005-12-01T08:00:00.000Z"},{"series":"Other","year":2006,"month":1,"count":308,"rate":4.9,"date":"2006-01-01T08:00:00.000Z"},{"series":"Other","year":2006,"month":2,"count":281,"rate":4.4,"date":"2006-02-01T08:00:00.000Z"},{"series":"Other","year":2006,"month":3,"count":292,"rate":4.6,"date":"2006-03-01T08:00:00.000Z"},{"series":"Other","year":2006,"month":4,"count":266,"rate":4.1,"date":"2006-04-01T08:00:00.000Z"},{"series":"Other","year":2006,"month":5,"count":265,"rate":4.2,"date":"2006-05-01T07:00:00.000Z"},{"series":"Other","year":2006,"month":6,"count":265,"rate":4.3,"date":"2006-06-01T07:00:00.000Z"},{"series":"Other","year":2006,"month":7,"count":305,"rate":4.7,"date":"2006-07-01T07:00:00.000Z"},{"series":"Other","year":2006,"month":8,"count":341,"rate":5.3,"date":"2006-08-01T07:00:00.000Z"},{"series":"Other","year":2006,"month":9,"count":310,"rate":5,"date":"2006-09-01T07:00:00.000Z"},{"series":"Other","year":2006,"month":10,"count":268,"rate":4.4,"date":"2006-10-01T07:00:00.000Z"},{"series":"Other","year":2006,"month":11,"count":306,"rate":5,"date":"2006-11-01T08:00:00.000Z"},{"series":"Other","year":2006,"month":12,"count":306,"rate":5.2,"date":"2006-12-01T08:00:00.000Z"},{"series":"Other","year":2007,"month":1,"count":275,"rate":4.7,"date":"2007-01-01T08:00:00.000Z"},{"series":"Other","year":2007,"month":2,"count":257,"rate":4.3,"date":"2007-02-01T08:00:00.000Z"},{"series":"Other","year":2007,"month":3,"count":222,"rate":3.7,"date":"2007-03-01T08:00:00.000Z"},{"series":"Other","year":2007,"month":4,"count":224,"rate":3.6,"date":"2007-04-01T07:00:00.000Z"},{"series":"Other","year":2007,"month":5,"count":242,"rate":3.9,"date":"2007-05-01T07:00:00.000Z"},{"series":"Other","year":2007,"month":6,"count":256,"rate":4,"date":"2007-06-01T07:00:00.000Z"},{"series":"Other","year":2007,"month":7,"count":243,"rate":3.8,"date":"2007-07-01T07:00:00.000Z"},{"series":"Other","year":2007,"month":8,"count":239,"rate":3.8,"date":"2007-08-01T07:00:00.000Z"},{"series":"Other","year":2007,"month":9,"count":257,"rate":4.2,"date":"2007-09-01T07:00:00.000Z"},{"series":"Other","year":2007,"month":10,"count":182,"rate":3,"date":"2007-10-01T07:00:00.000Z"},{"series":"Other","year":2007,"month":11,"count":255,"rate":4.1,"date":"2007-11-01T07:00:00.000Z"},{"series":"Other","year":2007,"month":12,"count":235,"rate":3.9,"date":"2007-12-01T08:00:00.000Z"},{"series":"Other","year":2008,"month":1,"count":264,"rate":4.4,"date":"2008-01-01T08:00:00.000Z"},{"series":"Other","year":2008,"month":2,"count":313,"rate":5.1,"date":"2008-02-01T08:00:00.000Z"},{"series":"Other","year":2008,"month":3,"count":283,"rate":4.6,"date":"2008-03-01T08:00:00.000Z"},{"series":"Other","year":2008,"month":4,"count":251,"rate":4,"date":"2008-04-01T07:00:00.000Z"},{"series":"Other","year":2008,"month":5,"count":275,"rate":4.4,"date":"2008-05-01T07:00:00.000Z"},{"series":"Other","year":2008,"month":6,"count":322,"rate":5,"date":"2008-06-01T07:00:00.000Z"},{"series":"Other","year":2008,"month":7,"count":352,"rate":5.2,"date":"2008-07-01T07:00:00.000Z"},{"series":"Other","year":2008,"month":8,"count":412,"rate":6.3,"date":"2008-08-01T07:00:00.000Z"},{"series":"Other","year":2008,"month":9,"count":374,"rate":5.8,"date":"2008-09-01T07:00:00.000Z"},{"series":"Other","year":2008,"month":10,"count":334,"rate":5.3,"date":"2008-10-01T07:00:00.000Z"},{"series":"Other","year":2008,"month":11,"count":434,"rate":7,"date":"2008-11-01T07:00:00.000Z"},{"series":"Other","year":2008,"month":12,"count":367,"rate":6.1,"date":"2008-12-01T08:00:00.000Z"},{"series":"Other","year":2009,"month":1,"count":431,"rate":7.1,"date":"2009-01-01T08:00:00.000Z"},{"series":"Other","year":2009,"month":2,"count":453,"rate":7.3,"date":"2009-02-01T08:00:00.000Z"},{"series":"Other","year":2009,"month":3,"count":377,"rate":6,"date":"2009-03-01T08:00:00.000Z"},{"series":"Other","year":2009,"month":4,"count":403,"rate":6.4,"date":"2009-04-01T07:00:00.000Z"},{"series":"Other","year":2009,"month":5,"count":476,"rate":7.5,"date":"2009-05-01T07:00:00.000Z"},{"series":"Other","year":2009,"month":6,"count":557,"rate":8.4,"date":"2009-06-01T07:00:00.000Z"},{"series":"Other","year":2009,"month":7,"count":490,"rate":7.4,"date":"2009-07-01T07:00:00.000Z"},{"series":"Other","year":2009,"month":8,"count":528,"rate":8.2,"date":"2009-08-01T07:00:00.000Z"},{"series":"Other","year":2009,"month":9,"count":462,"rate":7.1,"date":"2009-09-01T07:00:00.000Z"},{"series":"Other","year":2009,"month":10,"count":541,"rate":8.5,"date":"2009-10-01T07:00:00.000Z"},{"series":"Other","year":2009,"month":11,"count":491,"rate":8,"date":"2009-11-01T07:00:00.000Z"},{"series":"Other","year":2009,"month":12,"count":513,"rate":8.2,"date":"2009-12-01T08:00:00.000Z"},{"series":"Other","year":2010,"month":1,"count":609,"rate":10,"date":"2010-01-01T08:00:00.000Z"},{"series":"Other","year":2010,"month":2,"count":603,"rate":9.9,"date":"2010-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2000,"month":1,"count":154,"rate":10.3,"date":"2000-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2000,"month":2,"count":173,"rate":11.5,"date":"2000-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2000,"month":3,"count":152,"rate":10.4,"date":"2000-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2000,"month":4,"count":135,"rate":8.9,"date":"2000-04-01T08:00:00.000Z"},{"series":"Agriculture","year":2000,"month":5,"count":73,"rate":5.1,"date":"2000-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2000,"month":6,"count":109,"rate":6.7,"date":"2000-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2000,"month":7,"count":77,"rate":5,"date":"2000-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2000,"month":8,"count":110,"rate":7,"date":"2000-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2000,"month":9,"count":124,"rate":8.2,"date":"2000-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2000,"month":10,"count":113,"rate":8,"date":"2000-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2000,"month":11,"count":192,"rate":13.3,"date":"2000-11-01T08:00:00.000Z"},{"series":"Agriculture","year":2000,"month":12,"count":196,"rate":13.9,"date":"2000-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2001,"month":1,"count":188,"rate":13.8,"date":"2001-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2001,"month":2,"count":193,"rate":15.1,"date":"2001-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2001,"month":3,"count":267,"rate":19.2,"date":"2001-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2001,"month":4,"count":140,"rate":10.4,"date":"2001-04-01T08:00:00.000Z"},{"series":"Agriculture","year":2001,"month":5,"count":109,"rate":7.7,"date":"2001-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2001,"month":6,"count":130,"rate":9.7,"date":"2001-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2001,"month":7,"count":113,"rate":7.6,"date":"2001-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2001,"month":8,"count":141,"rate":9.3,"date":"2001-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2001,"month":9,"count":101,"rate":7.2,"date":"2001-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2001,"month":10,"count":118,"rate":8.7,"date":"2001-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2001,"month":11,"count":145,"rate":11.6,"date":"2001-11-01T08:00:00.000Z"},{"series":"Agriculture","year":2001,"month":12,"count":192,"rate":15.1,"date":"2001-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2002,"month":1,"count":195,"rate":14.8,"date":"2002-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2002,"month":2,"count":187,"rate":14.8,"date":"2002-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2002,"month":3,"count":269,"rate":19.6,"date":"2002-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2002,"month":4,"count":151,"rate":10.8,"date":"2002-04-01T08:00:00.000Z"},{"series":"Agriculture","year":2002,"month":5,"count":89,"rate":6.8,"date":"2002-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2002,"month":6,"count":89,"rate":6.3,"date":"2002-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2002,"month":7,"count":114,"rate":7.3,"date":"2002-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2002,"month":8,"count":125,"rate":9,"date":"2002-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2002,"month":9,"count":92,"rate":6.3,"date":"2002-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2002,"month":10,"count":97,"rate":6.6,"date":"2002-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2002,"month":11,"count":137,"rate":11.1,"date":"2002-11-01T08:00:00.000Z"},{"series":"Agriculture","year":2002,"month":12,"count":120,"rate":9.8,"date":"2002-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2003,"month":1,"count":159,"rate":13.2,"date":"2003-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2003,"month":2,"count":172,"rate":14.7,"date":"2003-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2003,"month":3,"count":161,"rate":12.9,"date":"2003-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2003,"month":4,"count":154,"rate":12,"date":"2003-04-01T08:00:00.000Z"},{"series":"Agriculture","year":2003,"month":5,"count":133,"rate":10.2,"date":"2003-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2003,"month":6,"count":94,"rate":6.9,"date":"2003-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2003,"month":7,"count":113,"rate":8.2,"date":"2003-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2003,"month":8,"count":173,"rate":10.7,"date":"2003-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2003,"month":9,"count":98,"rate":6.2,"date":"2003-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2003,"month":10,"count":136,"rate":8.5,"date":"2003-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2003,"month":11,"count":148,"rate":10.3,"date":"2003-11-01T08:00:00.000Z"},{"series":"Agriculture","year":2003,"month":12,"count":137,"rate":10.9,"date":"2003-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2004,"month":1,"count":184,"rate":15.1,"date":"2004-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2004,"month":2,"count":168,"rate":14.2,"date":"2004-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2004,"month":3,"count":153,"rate":12.7,"date":"2004-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2004,"month":4,"count":107,"rate":8.3,"date":"2004-04-01T08:00:00.000Z"},{"series":"Agriculture","year":2004,"month":5,"count":99,"rate":7.4,"date":"2004-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2004,"month":6,"count":106,"rate":7.6,"date":"2004-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2004,"month":7,"count":140,"rate":10,"date":"2004-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2004,"month":8,"count":103,"rate":7,"date":"2004-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2004,"month":9,"count":88,"rate":6.4,"date":"2004-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2004,"month":10,"count":102,"rate":7.7,"date":"2004-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2004,"month":11,"count":131,"rate":10.5,"date":"2004-11-01T08:00:00.000Z"},{"series":"Agriculture","year":2004,"month":12,"count":165,"rate":14,"date":"2004-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2005,"month":1,"count":153,"rate":13.2,"date":"2005-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2005,"month":2,"count":107,"rate":9.9,"date":"2005-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2005,"month":3,"count":139,"rate":11.8,"date":"2005-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2005,"month":4,"count":84,"rate":6.9,"date":"2005-04-01T08:00:00.000Z"},{"series":"Agriculture","year":2005,"month":5,"count":66,"rate":5.3,"date":"2005-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2005,"month":6,"count":76,"rate":5.2,"date":"2005-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2005,"month":7,"count":69,"rate":4.7,"date":"2005-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2005,"month":8,"count":100,"rate":7.1,"date":"2005-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2005,"month":9,"count":127,"rate":9.5,"date":"2005-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2005,"month":10,"count":85,"rate":6.7,"date":"2005-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2005,"month":11,"count":118,"rate":9.6,"date":"2005-11-01T08:00:00.000Z"},{"series":"Agriculture","year":2005,"month":12,"count":127,"rate":11.1,"date":"2005-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2006,"month":1,"count":140,"rate":11.5,"date":"2006-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2006,"month":2,"count":139,"rate":11.8,"date":"2006-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2006,"month":3,"count":117,"rate":9.8,"date":"2006-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2006,"month":4,"count":81,"rate":6.2,"date":"2006-04-01T08:00:00.000Z"},{"series":"Agriculture","year":2006,"month":5,"count":79,"rate":6,"date":"2006-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2006,"month":6,"count":35,"rate":2.4,"date":"2006-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2006,"month":7,"count":55,"rate":3.6,"date":"2006-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2006,"month":8,"count":76,"rate":5.3,"date":"2006-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2006,"month":9,"count":78,"rate":5.9,"date":"2006-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2006,"month":10,"count":77,"rate":5.8,"date":"2006-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2006,"month":11,"count":125,"rate":9.6,"date":"2006-11-01T08:00:00.000Z"},{"series":"Agriculture","year":2006,"month":12,"count":139,"rate":10.4,"date":"2006-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2007,"month":1,"count":128,"rate":10,"date":"2007-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2007,"month":2,"count":127,"rate":9.6,"date":"2007-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2007,"month":3,"count":123,"rate":9.7,"date":"2007-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2007,"month":4,"count":67,"rate":5.7,"date":"2007-04-01T07:00:00.000Z"},{"series":"Agriculture","year":2007,"month":5,"count":64,"rate":5.1,"date":"2007-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2007,"month":6,"count":59,"rate":4.5,"date":"2007-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2007,"month":7,"count":40,"rate":3.1,"date":"2007-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2007,"month":8,"count":54,"rate":4.7,"date":"2007-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2007,"month":9,"count":53,"rate":4.3,"date":"2007-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2007,"month":10,"count":47,"rate":4,"date":"2007-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2007,"month":11,"count":80,"rate":6.6,"date":"2007-11-01T07:00:00.000Z"},{"series":"Agriculture","year":2007,"month":12,"count":96,"rate":7.5,"date":"2007-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2008,"month":1,"count":113,"rate":9.5,"date":"2008-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2008,"month":2,"count":135,"rate":10.9,"date":"2008-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2008,"month":3,"count":175,"rate":13.2,"date":"2008-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2008,"month":4,"count":108,"rate":8.6,"date":"2008-04-01T07:00:00.000Z"},{"series":"Agriculture","year":2008,"month":5,"count":94,"rate":7.4,"date":"2008-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2008,"month":6,"count":86,"rate":6.1,"date":"2008-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2008,"month":7,"count":125,"rate":8.5,"date":"2008-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2008,"month":8,"count":111,"rate":7.6,"date":"2008-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2008,"month":9,"count":84,"rate":5.8,"date":"2008-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2008,"month":10,"count":97,"rate":7.1,"date":"2008-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2008,"month":11,"count":119,"rate":9.5,"date":"2008-11-01T07:00:00.000Z"},{"series":"Agriculture","year":2008,"month":12,"count":229,"rate":17,"date":"2008-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2009,"month":1,"count":245,"rate":18.7,"date":"2009-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2009,"month":2,"count":251,"rate":18.8,"date":"2009-02-01T08:00:00.000Z"},{"series":"Agriculture","year":2009,"month":3,"count":241,"rate":19,"date":"2009-03-01T08:00:00.000Z"},{"series":"Agriculture","year":2009,"month":4,"count":176,"rate":13.5,"date":"2009-04-01T07:00:00.000Z"},{"series":"Agriculture","year":2009,"month":5,"count":136,"rate":10,"date":"2009-05-01T07:00:00.000Z"},{"series":"Agriculture","year":2009,"month":6,"count":182,"rate":12.3,"date":"2009-06-01T07:00:00.000Z"},{"series":"Agriculture","year":2009,"month":7,"count":180,"rate":12.1,"date":"2009-07-01T07:00:00.000Z"},{"series":"Agriculture","year":2009,"month":8,"count":195,"rate":13.1,"date":"2009-08-01T07:00:00.000Z"},{"series":"Agriculture","year":2009,"month":9,"count":150,"rate":11.1,"date":"2009-09-01T07:00:00.000Z"},{"series":"Agriculture","year":2009,"month":10,"count":166,"rate":11.8,"date":"2009-10-01T07:00:00.000Z"},{"series":"Agriculture","year":2009,"month":11,"count":180,"rate":12.6,"date":"2009-11-01T07:00:00.000Z"},{"series":"Agriculture","year":2009,"month":12,"count":292,"rate":19.7,"date":"2009-12-01T08:00:00.000Z"},{"series":"Agriculture","year":2010,"month":1,"count":318,"rate":21.3,"date":"2010-01-01T08:00:00.000Z"},{"series":"Agriculture","year":2010,"month":2,"count":285,"rate":18.8,"date":"2010-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2000,"month":1,"count":239,"rate":2.3,"date":"2000-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2000,"month":2,"count":262,"rate":2.5,"date":"2000-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2000,"month":3,"count":213,"rate":2,"date":"2000-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2000,"month":4,"count":218,"rate":2,"date":"2000-04-01T08:00:00.000Z"},{"series":"Self-employed","year":2000,"month":5,"count":206,"rate":1.9,"date":"2000-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2000,"month":6,"count":188,"rate":1.8,"date":"2000-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2000,"month":7,"count":222,"rate":2.1,"date":"2000-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2000,"month":8,"count":186,"rate":1.7,"date":"2000-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2000,"month":9,"count":213,"rate":2,"date":"2000-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2000,"month":10,"count":226,"rate":2.2,"date":"2000-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2000,"month":11,"count":273,"rate":2.7,"date":"2000-11-01T08:00:00.000Z"},{"series":"Self-employed","year":2000,"month":12,"count":178,"rate":1.8,"date":"2000-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2001,"month":1,"count":194,"rate":1.9,"date":"2001-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2001,"month":2,"count":209,"rate":2,"date":"2001-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2001,"month":3,"count":181,"rate":1.7,"date":"2001-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2001,"month":4,"count":216,"rate":2.1,"date":"2001-04-01T08:00:00.000Z"},{"series":"Self-employed","year":2001,"month":5,"count":206,"rate":2,"date":"2001-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2001,"month":6,"count":187,"rate":1.7,"date":"2001-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2001,"month":7,"count":191,"rate":1.8,"date":"2001-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2001,"month":8,"count":243,"rate":2.3,"date":"2001-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2001,"month":9,"count":256,"rate":2.4,"date":"2001-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2001,"month":10,"count":247,"rate":2.3,"date":"2001-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2001,"month":11,"count":234,"rate":2.3,"date":"2001-11-01T08:00:00.000Z"},{"series":"Self-employed","year":2001,"month":12,"count":249,"rate":2.5,"date":"2001-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2002,"month":1,"count":263,"rate":2.7,"date":"2002-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2002,"month":2,"count":250,"rate":2.6,"date":"2002-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2002,"month":3,"count":217,"rate":2.2,"date":"2002-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2002,"month":4,"count":255,"rate":2.5,"date":"2002-04-01T08:00:00.000Z"},{"series":"Self-employed","year":2002,"month":5,"count":264,"rate":2.6,"date":"2002-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2002,"month":6,"count":246,"rate":2.4,"date":"2002-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2002,"month":7,"count":249,"rate":2.4,"date":"2002-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2002,"month":8,"count":271,"rate":2.6,"date":"2002-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2002,"month":9,"count":266,"rate":2.5,"date":"2002-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2002,"month":10,"count":275,"rate":2.6,"date":"2002-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2002,"month":11,"count":297,"rate":2.8,"date":"2002-11-01T08:00:00.000Z"},{"series":"Self-employed","year":2002,"month":12,"count":327,"rate":3.1,"date":"2002-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2003,"month":1,"count":324,"rate":3,"date":"2003-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2003,"month":2,"count":304,"rate":3,"date":"2003-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2003,"month":3,"count":279,"rate":2.7,"date":"2003-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2003,"month":4,"count":248,"rate":2.4,"date":"2003-04-01T08:00:00.000Z"},{"series":"Self-employed","year":2003,"month":5,"count":271,"rate":2.6,"date":"2003-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2003,"month":6,"count":295,"rate":2.7,"date":"2003-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2003,"month":7,"count":270,"rate":2.5,"date":"2003-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2003,"month":8,"count":302,"rate":2.7,"date":"2003-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2003,"month":9,"count":287,"rate":2.6,"date":"2003-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2003,"month":10,"count":338,"rate":3.1,"date":"2003-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2003,"month":11,"count":308,"rate":2.8,"date":"2003-11-01T08:00:00.000Z"},{"series":"Self-employed","year":2003,"month":12,"count":299,"rate":2.8,"date":"2003-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2004,"month":1,"count":302,"rate":2.8,"date":"2004-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2004,"month":2,"count":260,"rate":2.5,"date":"2004-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2004,"month":3,"count":260,"rate":2.5,"date":"2004-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2004,"month":4,"count":242,"rate":2.3,"date":"2004-04-01T08:00:00.000Z"},{"series":"Self-employed","year":2004,"month":5,"count":287,"rate":2.7,"date":"2004-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2004,"month":6,"count":306,"rate":2.8,"date":"2004-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2004,"month":7,"count":291,"rate":2.6,"date":"2004-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2004,"month":8,"count":324,"rate":2.9,"date":"2004-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2004,"month":9,"count":362,"rate":3.3,"date":"2004-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2004,"month":10,"count":301,"rate":2.7,"date":"2004-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2004,"month":11,"count":353,"rate":3.2,"date":"2004-11-01T08:00:00.000Z"},{"series":"Self-employed","year":2004,"month":12,"count":341,"rate":3.2,"date":"2004-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2005,"month":1,"count":346,"rate":3.2,"date":"2005-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2005,"month":2,"count":363,"rate":3.4,"date":"2005-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2005,"month":3,"count":312,"rate":2.9,"date":"2005-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2005,"month":4,"count":273,"rate":2.4,"date":"2005-04-01T08:00:00.000Z"},{"series":"Self-employed","year":2005,"month":5,"count":299,"rate":2.7,"date":"2005-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2005,"month":6,"count":268,"rate":2.4,"date":"2005-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2005,"month":7,"count":282,"rate":2.5,"date":"2005-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2005,"month":8,"count":249,"rate":2.3,"date":"2005-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2005,"month":9,"count":282,"rate":2.6,"date":"2005-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2005,"month":10,"count":255,"rate":2.3,"date":"2005-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2005,"month":11,"count":319,"rate":3,"date":"2005-11-01T08:00:00.000Z"},{"series":"Self-employed","year":2005,"month":12,"count":327,"rate":3.1,"date":"2005-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2006,"month":1,"count":341,"rate":3.2,"date":"2006-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2006,"month":2,"count":332,"rate":3.1,"date":"2006-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2006,"month":3,"count":300,"rate":2.8,"date":"2006-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2006,"month":4,"count":334,"rate":3.1,"date":"2006-04-01T08:00:00.000Z"},{"series":"Self-employed","year":2006,"month":5,"count":251,"rate":2.3,"date":"2006-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2006,"month":6,"count":245,"rate":2.2,"date":"2006-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2006,"month":7,"count":291,"rate":2.6,"date":"2006-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2006,"month":8,"count":306,"rate":2.7,"date":"2006-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2006,"month":9,"count":299,"rate":2.7,"date":"2006-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2006,"month":10,"count":275,"rate":2.5,"date":"2006-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2006,"month":11,"count":257,"rate":2.3,"date":"2006-11-01T08:00:00.000Z"},{"series":"Self-employed","year":2006,"month":12,"count":287,"rate":2.6,"date":"2006-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2007,"month":1,"count":376,"rate":3.5,"date":"2007-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2007,"month":2,"count":300,"rate":2.8,"date":"2007-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2007,"month":3,"count":311,"rate":2.8,"date":"2007-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2007,"month":4,"count":240,"rate":2.2,"date":"2007-04-01T07:00:00.000Z"},{"series":"Self-employed","year":2007,"month":5,"count":276,"rate":2.5,"date":"2007-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2007,"month":6,"count":258,"rate":2.3,"date":"2007-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2007,"month":7,"count":324,"rate":2.9,"date":"2007-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2007,"month":8,"count":315,"rate":2.9,"date":"2007-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2007,"month":9,"count":304,"rate":2.8,"date":"2007-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2007,"month":10,"count":338,"rate":3.1,"date":"2007-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2007,"month":11,"count":336,"rate":3.2,"date":"2007-11-01T07:00:00.000Z"},{"series":"Self-employed","year":2007,"month":12,"count":326,"rate":3.2,"date":"2007-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2008,"month":1,"count":338,"rate":3.3,"date":"2008-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2008,"month":2,"count":340,"rate":3.2,"date":"2008-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2008,"month":3,"count":346,"rate":3.3,"date":"2008-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2008,"month":4,"count":338,"rate":3.2,"date":"2008-04-01T07:00:00.000Z"},{"series":"Self-employed","year":2008,"month":5,"count":366,"rate":3.4,"date":"2008-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2008,"month":6,"count":364,"rate":3.3,"date":"2008-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2008,"month":7,"count":345,"rate":3.1,"date":"2008-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2008,"month":8,"count":378,"rate":3.5,"date":"2008-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2008,"month":9,"count":414,"rate":3.9,"date":"2008-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2008,"month":10,"count":396,"rate":3.9,"date":"2008-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2008,"month":11,"count":411,"rate":4.1,"date":"2008-11-01T07:00:00.000Z"},{"series":"Self-employed","year":2008,"month":12,"count":559,"rate":5.5,"date":"2008-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2009,"month":1,"count":659,"rate":6.5,"date":"2009-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2009,"month":2,"count":586,"rate":5.7,"date":"2009-02-01T08:00:00.000Z"},{"series":"Self-employed","year":2009,"month":3,"count":625,"rate":5.9,"date":"2009-03-01T08:00:00.000Z"},{"series":"Self-employed","year":2009,"month":4,"count":488,"rate":4.6,"date":"2009-04-01T07:00:00.000Z"},{"series":"Self-employed","year":2009,"month":5,"count":530,"rate":5,"date":"2009-05-01T07:00:00.000Z"},{"series":"Self-employed","year":2009,"month":6,"count":472,"rate":4.4,"date":"2009-06-01T07:00:00.000Z"},{"series":"Self-employed","year":2009,"month":7,"count":552,"rate":5.2,"date":"2009-07-01T07:00:00.000Z"},{"series":"Self-employed","year":2009,"month":8,"count":569,"rate":5.3,"date":"2009-08-01T07:00:00.000Z"},{"series":"Self-employed","year":2009,"month":9,"count":636,"rate":5.9,"date":"2009-09-01T07:00:00.000Z"},{"series":"Self-employed","year":2009,"month":10,"count":610,"rate":5.9,"date":"2009-10-01T07:00:00.000Z"},{"series":"Self-employed","year":2009,"month":11,"count":592,"rate":5.7,"date":"2009-11-01T07:00:00.000Z"},{"series":"Self-employed","year":2009,"month":12,"count":609,"rate":5.9,"date":"2009-12-01T08:00:00.000Z"},{"series":"Self-employed","year":2010,"month":1,"count":730,"rate":7.2,"date":"2010-01-01T08:00:00.000Z"},{"series":"Self-employed","year":2010,"month":2,"count":680,"rate":6.5,"date":"2010-02-01T08:00:00.000Z"}],"anchored":true,"createdBy":"user","attachedMetadata":""},{"id":"table-544555","displayId":"unemp-rate-ind","names":["date","series","rate"],"rows":[{"date":"2000-01-01","series":"Government","rate":2.1},{"date":"2000-02-01","series":"Government","rate":2},{"date":"2000-03-01","series":"Government","rate":1.5},{"date":"2000-04-01","series":"Government","rate":1.3},{"date":"2000-05-01","series":"Government","rate":1.9},{"date":"2000-06-01","series":"Government","rate":3.1},{"date":"2000-07-01","series":"Government","rate":2.9},{"date":"2000-08-01","series":"Government","rate":3.1},{"date":"2000-09-01","series":"Government","rate":2.1},{"date":"2000-10-01","series":"Government","rate":2},{"date":"2000-11-01","series":"Government","rate":1.9},{"date":"2000-12-01","series":"Government","rate":1.8},{"date":"2001-01-01","series":"Government","rate":2.3},{"date":"2001-02-01","series":"Government","rate":1.5},{"date":"2001-03-01","series":"Government","rate":1.8},{"date":"2001-04-01","series":"Government","rate":1.9},{"date":"2001-05-01","series":"Government","rate":1.8},{"date":"2001-06-01","series":"Government","rate":2.7},{"date":"2001-07-01","series":"Government","rate":2.8},{"date":"2001-08-01","series":"Government","rate":2.8},{"date":"2001-09-01","series":"Government","rate":2.2},{"date":"2001-10-01","series":"Government","rate":2.2},{"date":"2001-11-01","series":"Government","rate":2.1},{"date":"2001-12-01","series":"Government","rate":2.1},{"date":"2002-01-01","series":"Government","rate":2.4},{"date":"2002-02-01","series":"Government","rate":2.5},{"date":"2002-03-01","series":"Government","rate":2.4},{"date":"2002-04-01","series":"Government","rate":2.2},{"date":"2002-05-01","series":"Government","rate":2.3},{"date":"2002-06-01","series":"Government","rate":2.8},{"date":"2002-07-01","series":"Government","rate":3.2},{"date":"2002-08-01","series":"Government","rate":3},{"date":"2002-09-01","series":"Government","rate":2.6},{"date":"2002-10-01","series":"Government","rate":2.5},{"date":"2002-11-01","series":"Government","rate":2.3},{"date":"2002-12-01","series":"Government","rate":2.2},{"date":"2003-01-01","series":"Government","rate":2.8},{"date":"2003-02-01","series":"Government","rate":2.4},{"date":"2003-03-01","series":"Government","rate":2.6},{"date":"2003-04-01","series":"Government","rate":2.2},{"date":"2003-05-01","series":"Government","rate":2.4},{"date":"2003-06-01","series":"Government","rate":3.5},{"date":"2003-07-01","series":"Government","rate":3.8},{"date":"2003-08-01","series":"Government","rate":3.7},{"date":"2003-09-01","series":"Government","rate":2.7},{"date":"2003-10-01","series":"Government","rate":2.4},{"date":"2003-11-01","series":"Government","rate":2.7},{"date":"2003-12-01","series":"Government","rate":2.5},{"date":"2004-01-01","series":"Government","rate":2.5},{"date":"2004-02-01","series":"Government","rate":2.4},{"date":"2004-03-01","series":"Government","rate":2.6},{"date":"2004-04-01","series":"Government","rate":2.1},{"date":"2004-05-01","series":"Government","rate":2.3},{"date":"2004-06-01","series":"Government","rate":2.8},{"date":"2004-07-01","series":"Government","rate":3.7},{"date":"2004-08-01","series":"Government","rate":3.3},{"date":"2004-09-01","series":"Government","rate":2.7},{"date":"2004-10-01","series":"Government","rate":2.7},{"date":"2004-11-01","series":"Government","rate":2.4},{"date":"2004-12-01","series":"Government","rate":2.4},{"date":"2005-01-01","series":"Government","rate":2.6},{"date":"2005-02-01","series":"Government","rate":2.3},{"date":"2005-03-01","series":"Government","rate":2.2},{"date":"2005-04-01","series":"Government","rate":2.3},{"date":"2005-05-01","series":"Government","rate":2.1},{"date":"2005-06-01","series":"Government","rate":3.2},{"date":"2005-07-01","series":"Government","rate":3.3},{"date":"2005-08-01","series":"Government","rate":3.2},{"date":"2005-09-01","series":"Government","rate":2.7},{"date":"2005-10-01","series":"Government","rate":2.4},{"date":"2005-11-01","series":"Government","rate":2.4},{"date":"2005-12-01","series":"Government","rate":1.9},{"date":"2006-01-01","series":"Government","rate":2.2},{"date":"2006-02-01","series":"Government","rate":2.3},{"date":"2006-03-01","series":"Government","rate":2.2},{"date":"2006-04-01","series":"Government","rate":2},{"date":"2006-05-01","series":"Government","rate":2.1},{"date":"2006-06-01","series":"Government","rate":2.8},{"date":"2006-07-01","series":"Government","rate":3.2},{"date":"2006-08-01","series":"Government","rate":2.9},{"date":"2006-09-01","series":"Government","rate":1.9},{"date":"2006-10-01","series":"Government","rate":2},{"date":"2006-11-01","series":"Government","rate":1.9},{"date":"2006-12-01","series":"Government","rate":1.9},{"date":"2007-01-01","series":"Government","rate":2.2},{"date":"2007-02-01","series":"Government","rate":1.9},{"date":"2007-03-01","series":"Government","rate":1.9},{"date":"2007-04-01","series":"Government","rate":1.9},{"date":"2007-05-01","series":"Government","rate":1.9},{"date":"2007-06-01","series":"Government","rate":2.7},{"date":"2007-07-01","series":"Government","rate":3.3},{"date":"2007-08-01","series":"Government","rate":3.2},{"date":"2007-09-01","series":"Government","rate":2.4},{"date":"2007-10-01","series":"Government","rate":2.3},{"date":"2007-11-01","series":"Government","rate":2.2},{"date":"2007-12-01","series":"Government","rate":2.1},{"date":"2008-01-01","series":"Government","rate":2.2},{"date":"2008-02-01","series":"Government","rate":1.7},{"date":"2008-03-01","series":"Government","rate":1.9},{"date":"2008-04-01","series":"Government","rate":1.7},{"date":"2008-05-01","series":"Government","rate":2.1},{"date":"2008-06-01","series":"Government","rate":3},{"date":"2008-07-01","series":"Government","rate":3.6},{"date":"2008-08-01","series":"Government","rate":3.3},{"date":"2008-09-01","series":"Government","rate":2.6},{"date":"2008-10-01","series":"Government","rate":2.5},{"date":"2008-11-01","series":"Government","rate":2.4},{"date":"2008-12-01","series":"Government","rate":2.3},{"date":"2009-01-01","series":"Government","rate":3},{"date":"2009-02-01","series":"Government","rate":2.6},{"date":"2009-03-01","series":"Government","rate":2.8},{"date":"2009-04-01","series":"Government","rate":2.6},{"date":"2009-05-01","series":"Government","rate":3.1},{"date":"2009-06-01","series":"Government","rate":4.4},{"date":"2009-07-01","series":"Government","rate":5.1},{"date":"2009-08-01","series":"Government","rate":5.1},{"date":"2009-09-01","series":"Government","rate":4.2},{"date":"2009-10-01","series":"Government","rate":3.5},{"date":"2009-11-01","series":"Government","rate":3.4},{"date":"2009-12-01","series":"Government","rate":3.6},{"date":"2010-01-01","series":"Government","rate":4.3},{"date":"2010-02-01","series":"Government","rate":4},{"date":"2000-01-01","series":"Mining and Extraction","rate":3.9},{"date":"2000-02-01","series":"Mining and Extraction","rate":5.5},{"date":"2000-03-01","series":"Mining and Extraction","rate":3.7},{"date":"2000-04-01","series":"Mining and Extraction","rate":4.1},{"date":"2000-05-01","series":"Mining and Extraction","rate":5.3},{"date":"2000-06-01","series":"Mining and Extraction","rate":2.6},{"date":"2000-07-01","series":"Mining and Extraction","rate":3.6},{"date":"2000-08-01","series":"Mining and Extraction","rate":5.1},{"date":"2000-09-01","series":"Mining and Extraction","rate":5.8},{"date":"2000-10-01","series":"Mining and Extraction","rate":7.8},{"date":"2000-11-01","series":"Mining and Extraction","rate":2},{"date":"2000-12-01","series":"Mining and Extraction","rate":3.8},{"date":"2001-01-01","series":"Mining and Extraction","rate":2.3},{"date":"2001-02-01","series":"Mining and Extraction","rate":5.3},{"date":"2001-03-01","series":"Mining and Extraction","rate":3},{"date":"2001-04-01","series":"Mining and Extraction","rate":4.7},{"date":"2001-05-01","series":"Mining and Extraction","rate":5.9},{"date":"2001-06-01","series":"Mining and Extraction","rate":4.7},{"date":"2001-07-01","series":"Mining and Extraction","rate":3.1},{"date":"2001-08-01","series":"Mining and Extraction","rate":3.3},{"date":"2001-09-01","series":"Mining and Extraction","rate":4.2},{"date":"2001-10-01","series":"Mining and Extraction","rate":5.4},{"date":"2001-11-01","series":"Mining and Extraction","rate":3.6},{"date":"2001-12-01","series":"Mining and Extraction","rate":5.3},{"date":"2002-01-01","series":"Mining and Extraction","rate":7},{"date":"2002-02-01","series":"Mining and Extraction","rate":7.5},{"date":"2002-03-01","series":"Mining and Extraction","rate":5.3},{"date":"2002-04-01","series":"Mining and Extraction","rate":6.1},{"date":"2002-05-01","series":"Mining and Extraction","rate":4.9},{"date":"2002-06-01","series":"Mining and Extraction","rate":7.1},{"date":"2002-07-01","series":"Mining and Extraction","rate":3.9},{"date":"2002-08-01","series":"Mining and Extraction","rate":6.3},{"date":"2002-09-01","series":"Mining and Extraction","rate":7.9},{"date":"2002-10-01","series":"Mining and Extraction","rate":6.4},{"date":"2002-11-01","series":"Mining and Extraction","rate":5.4},{"date":"2002-12-01","series":"Mining and Extraction","rate":7.8},{"date":"2003-01-01","series":"Mining and Extraction","rate":9},{"date":"2003-02-01","series":"Mining and Extraction","rate":7.1},{"date":"2003-03-01","series":"Mining and Extraction","rate":8.2},{"date":"2003-04-01","series":"Mining and Extraction","rate":7.7},{"date":"2003-05-01","series":"Mining and Extraction","rate":7.5},{"date":"2003-06-01","series":"Mining and Extraction","rate":6.8},{"date":"2003-07-01","series":"Mining and Extraction","rate":7.9},{"date":"2003-08-01","series":"Mining and Extraction","rate":3.8},{"date":"2003-09-01","series":"Mining and Extraction","rate":4.6},{"date":"2003-10-01","series":"Mining and Extraction","rate":5.6},{"date":"2003-11-01","series":"Mining and Extraction","rate":5.9},{"date":"2003-12-01","series":"Mining and Extraction","rate":5.6},{"date":"2004-01-01","series":"Mining and Extraction","rate":5.8},{"date":"2004-02-01","series":"Mining and Extraction","rate":5},{"date":"2004-03-01","series":"Mining and Extraction","rate":4.4},{"date":"2004-04-01","series":"Mining and Extraction","rate":6.4},{"date":"2004-05-01","series":"Mining and Extraction","rate":4.3},{"date":"2004-06-01","series":"Mining and Extraction","rate":5},{"date":"2004-07-01","series":"Mining and Extraction","rate":5.4},{"date":"2004-08-01","series":"Mining and Extraction","rate":1.9},{"date":"2004-09-01","series":"Mining and Extraction","rate":1.5},{"date":"2004-10-01","series":"Mining and Extraction","rate":2.6},{"date":"2004-11-01","series":"Mining and Extraction","rate":3.3},{"date":"2004-12-01","series":"Mining and Extraction","rate":2.5},{"date":"2005-01-01","series":"Mining and Extraction","rate":4.9},{"date":"2005-02-01","series":"Mining and Extraction","rate":4},{"date":"2005-03-01","series":"Mining and Extraction","rate":5.2},{"date":"2005-04-01","series":"Mining and Extraction","rate":2.9},{"date":"2005-05-01","series":"Mining and Extraction","rate":2.4},{"date":"2005-06-01","series":"Mining and Extraction","rate":4},{"date":"2005-07-01","series":"Mining and Extraction","rate":3.7},{"date":"2005-08-01","series":"Mining and Extraction","rate":2},{"date":"2005-09-01","series":"Mining and Extraction","rate":2},{"date":"2005-10-01","series":"Mining and Extraction","rate":0.3},{"date":"2005-11-01","series":"Mining and Extraction","rate":2.9},{"date":"2005-12-01","series":"Mining and Extraction","rate":3.5},{"date":"2006-01-01","series":"Mining and Extraction","rate":3.9},{"date":"2006-02-01","series":"Mining and Extraction","rate":3.8},{"date":"2006-03-01","series":"Mining and Extraction","rate":2.1},{"date":"2006-04-01","series":"Mining and Extraction","rate":2.5},{"date":"2006-05-01","series":"Mining and Extraction","rate":2.8},{"date":"2006-06-01","series":"Mining and Extraction","rate":4.3},{"date":"2006-07-01","series":"Mining and Extraction","rate":3.5},{"date":"2006-08-01","series":"Mining and Extraction","rate":4.3},{"date":"2006-09-01","series":"Mining and Extraction","rate":2.1},{"date":"2006-10-01","series":"Mining and Extraction","rate":2.2},{"date":"2006-11-01","series":"Mining and Extraction","rate":2.9},{"date":"2006-12-01","series":"Mining and Extraction","rate":3.4},{"date":"2007-01-01","series":"Mining and Extraction","rate":4.7},{"date":"2007-02-01","series":"Mining and Extraction","rate":4.5},{"date":"2007-03-01","series":"Mining and Extraction","rate":3.2},{"date":"2007-04-01","series":"Mining and Extraction","rate":2.3},{"date":"2007-05-01","series":"Mining and Extraction","rate":3},{"date":"2007-06-01","series":"Mining and Extraction","rate":4.3},{"date":"2007-07-01","series":"Mining and Extraction","rate":4.3},{"date":"2007-08-01","series":"Mining and Extraction","rate":4.6},{"date":"2007-09-01","series":"Mining and Extraction","rate":3.2},{"date":"2007-10-01","series":"Mining and Extraction","rate":1.3},{"date":"2007-11-01","series":"Mining and Extraction","rate":2.3},{"date":"2007-12-01","series":"Mining and Extraction","rate":3.4},{"date":"2008-01-01","series":"Mining and Extraction","rate":4},{"date":"2008-02-01","series":"Mining and Extraction","rate":2.2},{"date":"2008-03-01","series":"Mining and Extraction","rate":3.7},{"date":"2008-04-01","series":"Mining and Extraction","rate":3.6},{"date":"2008-05-01","series":"Mining and Extraction","rate":3.4},{"date":"2008-06-01","series":"Mining and Extraction","rate":3.3},{"date":"2008-07-01","series":"Mining and Extraction","rate":1.5},{"date":"2008-08-01","series":"Mining and Extraction","rate":1.9},{"date":"2008-09-01","series":"Mining and Extraction","rate":2.8},{"date":"2008-10-01","series":"Mining and Extraction","rate":1.7},{"date":"2008-11-01","series":"Mining and Extraction","rate":3.7},{"date":"2008-12-01","series":"Mining and Extraction","rate":5.2},{"date":"2009-01-01","series":"Mining and Extraction","rate":7},{"date":"2009-02-01","series":"Mining and Extraction","rate":7.6},{"date":"2009-03-01","series":"Mining and Extraction","rate":12.6},{"date":"2009-04-01","series":"Mining and Extraction","rate":16.1},{"date":"2009-05-01","series":"Mining and Extraction","rate":13.3},{"date":"2009-06-01","series":"Mining and Extraction","rate":13.6},{"date":"2009-07-01","series":"Mining and Extraction","rate":12.6},{"date":"2009-08-01","series":"Mining and Extraction","rate":11.8},{"date":"2009-09-01","series":"Mining and Extraction","rate":10.7},{"date":"2009-10-01","series":"Mining and Extraction","rate":10.8},{"date":"2009-11-01","series":"Mining and Extraction","rate":12},{"date":"2009-12-01","series":"Mining and Extraction","rate":11.8},{"date":"2010-01-01","series":"Mining and Extraction","rate":9.1},{"date":"2010-02-01","series":"Mining and Extraction","rate":10.7},{"date":"2000-01-01","series":"Construction","rate":9.7},{"date":"2000-02-01","series":"Construction","rate":10.6},{"date":"2000-03-01","series":"Construction","rate":8.7},{"date":"2000-04-01","series":"Construction","rate":5.8},{"date":"2000-05-01","series":"Construction","rate":5},{"date":"2000-06-01","series":"Construction","rate":4.6},{"date":"2000-07-01","series":"Construction","rate":4.4},{"date":"2000-08-01","series":"Construction","rate":5.1},{"date":"2000-09-01","series":"Construction","rate":4.6},{"date":"2000-10-01","series":"Construction","rate":4.9},{"date":"2000-11-01","series":"Construction","rate":5.7},{"date":"2000-12-01","series":"Construction","rate":6.8},{"date":"2001-01-01","series":"Construction","rate":9.8},{"date":"2001-02-01","series":"Construction","rate":9.9},{"date":"2001-03-01","series":"Construction","rate":8.4},{"date":"2001-04-01","series":"Construction","rate":7.1},{"date":"2001-05-01","series":"Construction","rate":5.6},{"date":"2001-06-01","series":"Construction","rate":5.1},{"date":"2001-07-01","series":"Construction","rate":4.9},{"date":"2001-08-01","series":"Construction","rate":5.8},{"date":"2001-09-01","series":"Construction","rate":5.5},{"date":"2001-10-01","series":"Construction","rate":6.1},{"date":"2001-11-01","series":"Construction","rate":7.6},{"date":"2001-12-01","series":"Construction","rate":9},{"date":"2002-01-01","series":"Construction","rate":13.6},{"date":"2002-02-01","series":"Construction","rate":12.2},{"date":"2002-03-01","series":"Construction","rate":11.8},{"date":"2002-04-01","series":"Construction","rate":10.1},{"date":"2002-05-01","series":"Construction","rate":7.4},{"date":"2002-06-01","series":"Construction","rate":6.9},{"date":"2002-07-01","series":"Construction","rate":6.9},{"date":"2002-08-01","series":"Construction","rate":7.4},{"date":"2002-09-01","series":"Construction","rate":7},{"date":"2002-10-01","series":"Construction","rate":7.7},{"date":"2002-11-01","series":"Construction","rate":8.5},{"date":"2002-12-01","series":"Construction","rate":10.9},{"date":"2003-01-01","series":"Construction","rate":14},{"date":"2003-02-01","series":"Construction","rate":14},{"date":"2003-03-01","series":"Construction","rate":11.8},{"date":"2003-04-01","series":"Construction","rate":9.3},{"date":"2003-05-01","series":"Construction","rate":8.4},{"date":"2003-06-01","series":"Construction","rate":7.9},{"date":"2003-07-01","series":"Construction","rate":7.5},{"date":"2003-08-01","series":"Construction","rate":7.1},{"date":"2003-09-01","series":"Construction","rate":7.6},{"date":"2003-10-01","series":"Construction","rate":7.4},{"date":"2003-11-01","series":"Construction","rate":7.8},{"date":"2003-12-01","series":"Construction","rate":9.3},{"date":"2004-01-01","series":"Construction","rate":11.3},{"date":"2004-02-01","series":"Construction","rate":11.6},{"date":"2004-03-01","series":"Construction","rate":11.3},{"date":"2004-04-01","series":"Construction","rate":9.5},{"date":"2004-05-01","series":"Construction","rate":7.4},{"date":"2004-06-01","series":"Construction","rate":7},{"date":"2004-07-01","series":"Construction","rate":6.4},{"date":"2004-08-01","series":"Construction","rate":6},{"date":"2004-09-01","series":"Construction","rate":6.8},{"date":"2004-10-01","series":"Construction","rate":6.9},{"date":"2004-11-01","series":"Construction","rate":7.4},{"date":"2004-12-01","series":"Construction","rate":9.5},{"date":"2005-01-01","series":"Construction","rate":11.8},{"date":"2005-02-01","series":"Construction","rate":12.3},{"date":"2005-03-01","series":"Construction","rate":10.3},{"date":"2005-04-01","series":"Construction","rate":7.4},{"date":"2005-05-01","series":"Construction","rate":6.1},{"date":"2005-06-01","series":"Construction","rate":5.7},{"date":"2005-07-01","series":"Construction","rate":5.2},{"date":"2005-08-01","series":"Construction","rate":5.7},{"date":"2005-09-01","series":"Construction","rate":5.7},{"date":"2005-10-01","series":"Construction","rate":5.3},{"date":"2005-11-01","series":"Construction","rate":5.7},{"date":"2005-12-01","series":"Construction","rate":8.2},{"date":"2006-01-01","series":"Construction","rate":9},{"date":"2006-02-01","series":"Construction","rate":8.6},{"date":"2006-03-01","series":"Construction","rate":8.5},{"date":"2006-04-01","series":"Construction","rate":6.9},{"date":"2006-05-01","series":"Construction","rate":6.6},{"date":"2006-06-01","series":"Construction","rate":5.6},{"date":"2006-07-01","series":"Construction","rate":6.1},{"date":"2006-08-01","series":"Construction","rate":5.9},{"date":"2006-09-01","series":"Construction","rate":5.6},{"date":"2006-10-01","series":"Construction","rate":4.5},{"date":"2006-11-01","series":"Construction","rate":6},{"date":"2006-12-01","series":"Construction","rate":6.9},{"date":"2007-01-01","series":"Construction","rate":8.9},{"date":"2007-02-01","series":"Construction","rate":10.5},{"date":"2007-03-01","series":"Construction","rate":9},{"date":"2007-04-01","series":"Construction","rate":8.6},{"date":"2007-05-01","series":"Construction","rate":6.9},{"date":"2007-06-01","series":"Construction","rate":5.9},{"date":"2007-07-01","series":"Construction","rate":5.9},{"date":"2007-08-01","series":"Construction","rate":5.3},{"date":"2007-09-01","series":"Construction","rate":5.8},{"date":"2007-10-01","series":"Construction","rate":6.1},{"date":"2007-11-01","series":"Construction","rate":6.2},{"date":"2007-12-01","series":"Construction","rate":9.4},{"date":"2008-01-01","series":"Construction","rate":11},{"date":"2008-02-01","series":"Construction","rate":11.4},{"date":"2008-03-01","series":"Construction","rate":12},{"date":"2008-04-01","series":"Construction","rate":11.1},{"date":"2008-05-01","series":"Construction","rate":8.6},{"date":"2008-06-01","series":"Construction","rate":8.2},{"date":"2008-07-01","series":"Construction","rate":8},{"date":"2008-08-01","series":"Construction","rate":8.2},{"date":"2008-09-01","series":"Construction","rate":9.9},{"date":"2008-10-01","series":"Construction","rate":10.8},{"date":"2008-11-01","series":"Construction","rate":12.7},{"date":"2008-12-01","series":"Construction","rate":15.3},{"date":"2009-01-01","series":"Construction","rate":18.2},{"date":"2009-02-01","series":"Construction","rate":21.4},{"date":"2009-03-01","series":"Construction","rate":21.1},{"date":"2009-04-01","series":"Construction","rate":18.7},{"date":"2009-05-01","series":"Construction","rate":19.2},{"date":"2009-06-01","series":"Construction","rate":17.4},{"date":"2009-07-01","series":"Construction","rate":18.2},{"date":"2009-08-01","series":"Construction","rate":16.5},{"date":"2009-09-01","series":"Construction","rate":17.1},{"date":"2009-10-01","series":"Construction","rate":18.7},{"date":"2009-11-01","series":"Construction","rate":19.4},{"date":"2009-12-01","series":"Construction","rate":22.7},{"date":"2010-01-01","series":"Construction","rate":24.7},{"date":"2010-02-01","series":"Construction","rate":27.1},{"date":"2000-01-01","series":"Manufacturing","rate":3.6},{"date":"2000-02-01","series":"Manufacturing","rate":3.4},{"date":"2000-03-01","series":"Manufacturing","rate":3.6},{"date":"2000-04-01","series":"Manufacturing","rate":3.7},{"date":"2000-05-01","series":"Manufacturing","rate":3.4},{"date":"2000-06-01","series":"Manufacturing","rate":3.1},{"date":"2000-07-01","series":"Manufacturing","rate":3.6},{"date":"2000-08-01","series":"Manufacturing","rate":3.4},{"date":"2000-09-01","series":"Manufacturing","rate":3.4},{"date":"2000-10-01","series":"Manufacturing","rate":3.6},{"date":"2000-11-01","series":"Manufacturing","rate":3.4},{"date":"2000-12-01","series":"Manufacturing","rate":3.3},{"date":"2001-01-01","series":"Manufacturing","rate":4.6},{"date":"2001-02-01","series":"Manufacturing","rate":4.6},{"date":"2001-03-01","series":"Manufacturing","rate":4.9},{"date":"2001-04-01","series":"Manufacturing","rate":4.4},{"date":"2001-05-01","series":"Manufacturing","rate":4.7},{"date":"2001-06-01","series":"Manufacturing","rate":5},{"date":"2001-07-01","series":"Manufacturing","rate":5.6},{"date":"2001-08-01","series":"Manufacturing","rate":5.5},{"date":"2001-09-01","series":"Manufacturing","rate":5.4},{"date":"2001-10-01","series":"Manufacturing","rate":5.8},{"date":"2001-11-01","series":"Manufacturing","rate":6},{"date":"2001-12-01","series":"Manufacturing","rate":6.3},{"date":"2002-01-01","series":"Manufacturing","rate":7.4},{"date":"2002-02-01","series":"Manufacturing","rate":7},{"date":"2002-03-01","series":"Manufacturing","rate":7.3},{"date":"2002-04-01","series":"Manufacturing","rate":7.2},{"date":"2002-05-01","series":"Manufacturing","rate":6.6},{"date":"2002-06-01","series":"Manufacturing","rate":6.6},{"date":"2002-07-01","series":"Manufacturing","rate":6.6},{"date":"2002-08-01","series":"Manufacturing","rate":6.2},{"date":"2002-09-01","series":"Manufacturing","rate":6.1},{"date":"2002-10-01","series":"Manufacturing","rate":5.9},{"date":"2002-11-01","series":"Manufacturing","rate":6.3},{"date":"2002-12-01","series":"Manufacturing","rate":6.6},{"date":"2003-01-01","series":"Manufacturing","rate":7.2},{"date":"2003-02-01","series":"Manufacturing","rate":6.7},{"date":"2003-03-01","series":"Manufacturing","rate":6.8},{"date":"2003-04-01","series":"Manufacturing","rate":6.7},{"date":"2003-05-01","series":"Manufacturing","rate":6.5},{"date":"2003-06-01","series":"Manufacturing","rate":7},{"date":"2003-07-01","series":"Manufacturing","rate":6.9},{"date":"2003-08-01","series":"Manufacturing","rate":6.7},{"date":"2003-09-01","series":"Manufacturing","rate":6.8},{"date":"2003-10-01","series":"Manufacturing","rate":6},{"date":"2003-11-01","series":"Manufacturing","rate":5.9},{"date":"2003-12-01","series":"Manufacturing","rate":5.9},{"date":"2004-01-01","series":"Manufacturing","rate":6.4},{"date":"2004-02-01","series":"Manufacturing","rate":6.3},{"date":"2004-03-01","series":"Manufacturing","rate":6.3},{"date":"2004-04-01","series":"Manufacturing","rate":5.8},{"date":"2004-05-01","series":"Manufacturing","rate":5.6},{"date":"2004-06-01","series":"Manufacturing","rate":5.6},{"date":"2004-07-01","series":"Manufacturing","rate":6},{"date":"2004-08-01","series":"Manufacturing","rate":4.9},{"date":"2004-09-01","series":"Manufacturing","rate":5},{"date":"2004-10-01","series":"Manufacturing","rate":5.3},{"date":"2004-11-01","series":"Manufacturing","rate":5.4},{"date":"2004-12-01","series":"Manufacturing","rate":5.1},{"date":"2005-01-01","series":"Manufacturing","rate":5.3},{"date":"2005-02-01","series":"Manufacturing","rate":5.3},{"date":"2005-03-01","series":"Manufacturing","rate":5.3},{"date":"2005-04-01","series":"Manufacturing","rate":4.8},{"date":"2005-05-01","series":"Manufacturing","rate":4.5},{"date":"2005-06-01","series":"Manufacturing","rate":4.4},{"date":"2005-07-01","series":"Manufacturing","rate":5.3},{"date":"2005-08-01","series":"Manufacturing","rate":4.7},{"date":"2005-09-01","series":"Manufacturing","rate":4.7},{"date":"2005-10-01","series":"Manufacturing","rate":4.8},{"date":"2005-11-01","series":"Manufacturing","rate":4.9},{"date":"2005-12-01","series":"Manufacturing","rate":4.5},{"date":"2006-01-01","series":"Manufacturing","rate":4.6},{"date":"2006-02-01","series":"Manufacturing","rate":4.9},{"date":"2006-03-01","series":"Manufacturing","rate":4.1},{"date":"2006-04-01","series":"Manufacturing","rate":4.5},{"date":"2006-05-01","series":"Manufacturing","rate":4.1},{"date":"2006-06-01","series":"Manufacturing","rate":3.8},{"date":"2006-07-01","series":"Manufacturing","rate":4.4},{"date":"2006-08-01","series":"Manufacturing","rate":4.1},{"date":"2006-09-01","series":"Manufacturing","rate":3.8},{"date":"2006-10-01","series":"Manufacturing","rate":3.7},{"date":"2006-11-01","series":"Manufacturing","rate":4.3},{"date":"2006-12-01","series":"Manufacturing","rate":4},{"date":"2007-01-01","series":"Manufacturing","rate":4.6},{"date":"2007-02-01","series":"Manufacturing","rate":4.7},{"date":"2007-03-01","series":"Manufacturing","rate":4.5},{"date":"2007-04-01","series":"Manufacturing","rate":4.6},{"date":"2007-05-01","series":"Manufacturing","rate":3.9},{"date":"2007-06-01","series":"Manufacturing","rate":4},{"date":"2007-07-01","series":"Manufacturing","rate":3.7},{"date":"2007-08-01","series":"Manufacturing","rate":3.6},{"date":"2007-09-01","series":"Manufacturing","rate":4.1},{"date":"2007-10-01","series":"Manufacturing","rate":4.3},{"date":"2007-11-01","series":"Manufacturing","rate":4.5},{"date":"2007-12-01","series":"Manufacturing","rate":4.6},{"date":"2008-01-01","series":"Manufacturing","rate":5.1},{"date":"2008-02-01","series":"Manufacturing","rate":5},{"date":"2008-03-01","series":"Manufacturing","rate":5},{"date":"2008-04-01","series":"Manufacturing","rate":4.8},{"date":"2008-05-01","series":"Manufacturing","rate":5.3},{"date":"2008-06-01","series":"Manufacturing","rate":5.2},{"date":"2008-07-01","series":"Manufacturing","rate":5.5},{"date":"2008-08-01","series":"Manufacturing","rate":5.7},{"date":"2008-09-01","series":"Manufacturing","rate":6},{"date":"2008-10-01","series":"Manufacturing","rate":6.2},{"date":"2008-11-01","series":"Manufacturing","rate":7},{"date":"2008-12-01","series":"Manufacturing","rate":8.3},{"date":"2009-01-01","series":"Manufacturing","rate":10.9},{"date":"2009-02-01","series":"Manufacturing","rate":11.5},{"date":"2009-03-01","series":"Manufacturing","rate":12.2},{"date":"2009-04-01","series":"Manufacturing","rate":12.4},{"date":"2009-05-01","series":"Manufacturing","rate":12.6},{"date":"2009-06-01","series":"Manufacturing","rate":12.6},{"date":"2009-07-01","series":"Manufacturing","rate":12.4},{"date":"2009-08-01","series":"Manufacturing","rate":11.8},{"date":"2009-09-01","series":"Manufacturing","rate":11.9},{"date":"2009-10-01","series":"Manufacturing","rate":12.2},{"date":"2009-11-01","series":"Manufacturing","rate":12.5},{"date":"2009-12-01","series":"Manufacturing","rate":11.9},{"date":"2010-01-01","series":"Manufacturing","rate":13},{"date":"2010-02-01","series":"Manufacturing","rate":12.1},{"date":"2000-01-01","series":"Wholesale and Retail Trade","rate":5},{"date":"2000-02-01","series":"Wholesale and Retail Trade","rate":5.2},{"date":"2000-03-01","series":"Wholesale and Retail Trade","rate":5.1},{"date":"2000-04-01","series":"Wholesale and Retail Trade","rate":4.1},{"date":"2000-05-01","series":"Wholesale and Retail Trade","rate":4.3},{"date":"2000-06-01","series":"Wholesale and Retail Trade","rate":4.4},{"date":"2000-07-01","series":"Wholesale and Retail Trade","rate":4.1},{"date":"2000-08-01","series":"Wholesale and Retail Trade","rate":4.3},{"date":"2000-09-01","series":"Wholesale and Retail Trade","rate":4.1},{"date":"2000-10-01","series":"Wholesale and Retail Trade","rate":3.7},{"date":"2000-11-01","series":"Wholesale and Retail Trade","rate":3.6},{"date":"2000-12-01","series":"Wholesale and Retail Trade","rate":3.7},{"date":"2001-01-01","series":"Wholesale and Retail Trade","rate":4.7},{"date":"2001-02-01","series":"Wholesale and Retail Trade","rate":5.2},{"date":"2001-03-01","series":"Wholesale and Retail Trade","rate":5.4},{"date":"2001-04-01","series":"Wholesale and Retail Trade","rate":4.3},{"date":"2001-05-01","series":"Wholesale and Retail Trade","rate":4.5},{"date":"2001-06-01","series":"Wholesale and Retail Trade","rate":4.9},{"date":"2001-07-01","series":"Wholesale and Retail Trade","rate":4.3},{"date":"2001-08-01","series":"Wholesale and Retail Trade","rate":4.8},{"date":"2001-09-01","series":"Wholesale and Retail Trade","rate":4.8},{"date":"2001-10-01","series":"Wholesale and Retail Trade","rate":4.8},{"date":"2001-11-01","series":"Wholesale and Retail Trade","rate":5.3},{"date":"2001-12-01","series":"Wholesale and Retail Trade","rate":5.4},{"date":"2002-01-01","series":"Wholesale and Retail Trade","rate":6.3},{"date":"2002-02-01","series":"Wholesale and Retail Trade","rate":6.6},{"date":"2002-03-01","series":"Wholesale and Retail Trade","rate":6.6},{"date":"2002-04-01","series":"Wholesale and Retail Trade","rate":6.4},{"date":"2002-05-01","series":"Wholesale and Retail Trade","rate":5.8},{"date":"2002-06-01","series":"Wholesale and Retail Trade","rate":6.2},{"date":"2002-07-01","series":"Wholesale and Retail Trade","rate":5.6},{"date":"2002-08-01","series":"Wholesale and Retail Trade","rate":5.8},{"date":"2002-09-01","series":"Wholesale and Retail Trade","rate":5.9},{"date":"2002-10-01","series":"Wholesale and Retail Trade","rate":6.1},{"date":"2002-11-01","series":"Wholesale and Retail Trade","rate":6.2},{"date":"2002-12-01","series":"Wholesale and Retail Trade","rate":5.7},{"date":"2003-01-01","series":"Wholesale and Retail Trade","rate":6.7},{"date":"2003-02-01","series":"Wholesale and Retail Trade","rate":6.1},{"date":"2003-03-01","series":"Wholesale and Retail Trade","rate":5.9},{"date":"2003-04-01","series":"Wholesale and Retail Trade","rate":6},{"date":"2003-05-01","series":"Wholesale and Retail Trade","rate":6.2},{"date":"2003-06-01","series":"Wholesale and Retail Trade","rate":6.9},{"date":"2003-07-01","series":"Wholesale and Retail Trade","rate":6.6},{"date":"2003-08-01","series":"Wholesale and Retail Trade","rate":5.6},{"date":"2003-09-01","series":"Wholesale and Retail Trade","rate":5.9},{"date":"2003-10-01","series":"Wholesale and Retail Trade","rate":5.7},{"date":"2003-11-01","series":"Wholesale and Retail Trade","rate":5.4},{"date":"2003-12-01","series":"Wholesale and Retail Trade","rate":5},{"date":"2004-01-01","series":"Wholesale and Retail Trade","rate":6.5},{"date":"2004-02-01","series":"Wholesale and Retail Trade","rate":6.5},{"date":"2004-03-01","series":"Wholesale and Retail Trade","rate":6.8},{"date":"2004-04-01","series":"Wholesale and Retail Trade","rate":6.1},{"date":"2004-05-01","series":"Wholesale and Retail Trade","rate":5.8},{"date":"2004-06-01","series":"Wholesale and Retail Trade","rate":5.8},{"date":"2004-07-01","series":"Wholesale and Retail Trade","rate":5.5},{"date":"2004-08-01","series":"Wholesale and Retail Trade","rate":5.1},{"date":"2004-09-01","series":"Wholesale and Retail Trade","rate":5.5},{"date":"2004-10-01","series":"Wholesale and Retail Trade","rate":5.4},{"date":"2004-11-01","series":"Wholesale and Retail Trade","rate":5},{"date":"2004-12-01","series":"Wholesale and Retail Trade","rate":5},{"date":"2005-01-01","series":"Wholesale and Retail Trade","rate":6.3},{"date":"2005-02-01","series":"Wholesale and Retail Trade","rate":6.2},{"date":"2005-03-01","series":"Wholesale and Retail Trade","rate":5.6},{"date":"2005-04-01","series":"Wholesale and Retail Trade","rate":5.4},{"date":"2005-05-01","series":"Wholesale and Retail Trade","rate":5.4},{"date":"2005-06-01","series":"Wholesale and Retail Trade","rate":5.7},{"date":"2005-07-01","series":"Wholesale and Retail Trade","rate":5.6},{"date":"2005-08-01","series":"Wholesale and Retail Trade","rate":5.3},{"date":"2005-09-01","series":"Wholesale and Retail Trade","rate":4.9},{"date":"2005-10-01","series":"Wholesale and Retail Trade","rate":4.9},{"date":"2005-11-01","series":"Wholesale and Retail Trade","rate":4.7},{"date":"2005-12-01","series":"Wholesale and Retail Trade","rate":4.5},{"date":"2006-01-01","series":"Wholesale and Retail Trade","rate":5.7},{"date":"2006-02-01","series":"Wholesale and Retail Trade","rate":5.4},{"date":"2006-03-01","series":"Wholesale and Retail Trade","rate":4.9},{"date":"2006-04-01","series":"Wholesale and Retail Trade","rate":4.6},{"date":"2006-05-01","series":"Wholesale and Retail Trade","rate":4.8},{"date":"2006-06-01","series":"Wholesale and Retail Trade","rate":5.1},{"date":"2006-07-01","series":"Wholesale and Retail Trade","rate":5.1},{"date":"2006-08-01","series":"Wholesale and Retail Trade","rate":4.7},{"date":"2006-09-01","series":"Wholesale and Retail Trade","rate":4.9},{"date":"2006-10-01","series":"Wholesale and Retail Trade","rate":4.7},{"date":"2006-11-01","series":"Wholesale and Retail Trade","rate":4.8},{"date":"2006-12-01","series":"Wholesale and Retail Trade","rate":4.5},{"date":"2007-01-01","series":"Wholesale and Retail Trade","rate":5.5},{"date":"2007-02-01","series":"Wholesale and Retail Trade","rate":5.1},{"date":"2007-03-01","series":"Wholesale and Retail Trade","rate":4.4},{"date":"2007-04-01","series":"Wholesale and Retail Trade","rate":4.2},{"date":"2007-05-01","series":"Wholesale and Retail Trade","rate":3.9},{"date":"2007-06-01","series":"Wholesale and Retail Trade","rate":4.6},{"date":"2007-07-01","series":"Wholesale and Retail Trade","rate":5.2},{"date":"2007-08-01","series":"Wholesale and Retail Trade","rate":5.1},{"date":"2007-09-01","series":"Wholesale and Retail Trade","rate":5.1},{"date":"2007-10-01","series":"Wholesale and Retail Trade","rate":4.4},{"date":"2007-11-01","series":"Wholesale and Retail Trade","rate":4.3},{"date":"2007-12-01","series":"Wholesale and Retail Trade","rate":4.8},{"date":"2008-01-01","series":"Wholesale and Retail Trade","rate":5.4},{"date":"2008-02-01","series":"Wholesale and Retail Trade","rate":4.9},{"date":"2008-03-01","series":"Wholesale and Retail Trade","rate":4.9},{"date":"2008-04-01","series":"Wholesale and Retail Trade","rate":4.5},{"date":"2008-05-01","series":"Wholesale and Retail Trade","rate":5.2},{"date":"2008-06-01","series":"Wholesale and Retail Trade","rate":5.7},{"date":"2008-07-01","series":"Wholesale and Retail Trade","rate":6.5},{"date":"2008-08-01","series":"Wholesale and Retail Trade","rate":6.6},{"date":"2008-09-01","series":"Wholesale and Retail Trade","rate":6.2},{"date":"2008-10-01","series":"Wholesale and Retail Trade","rate":6.3},{"date":"2008-11-01","series":"Wholesale and Retail Trade","rate":6.7},{"date":"2008-12-01","series":"Wholesale and Retail Trade","rate":7.2},{"date":"2009-01-01","series":"Wholesale and Retail Trade","rate":8.7},{"date":"2009-02-01","series":"Wholesale and Retail Trade","rate":8.9},{"date":"2009-03-01","series":"Wholesale and Retail Trade","rate":9},{"date":"2009-04-01","series":"Wholesale and Retail Trade","rate":9},{"date":"2009-05-01","series":"Wholesale and Retail Trade","rate":9},{"date":"2009-06-01","series":"Wholesale and Retail Trade","rate":9.1},{"date":"2009-07-01","series":"Wholesale and Retail Trade","rate":9},{"date":"2009-08-01","series":"Wholesale and Retail Trade","rate":8.8},{"date":"2009-09-01","series":"Wholesale and Retail Trade","rate":9},{"date":"2009-10-01","series":"Wholesale and Retail Trade","rate":9.6},{"date":"2009-11-01","series":"Wholesale and Retail Trade","rate":9.2},{"date":"2009-12-01","series":"Wholesale and Retail Trade","rate":9.1},{"date":"2010-01-01","series":"Wholesale and Retail Trade","rate":10.5},{"date":"2010-02-01","series":"Wholesale and Retail Trade","rate":10},{"date":"2000-01-01","series":"Transportation and Utilities","rate":4.3},{"date":"2000-02-01","series":"Transportation and Utilities","rate":4},{"date":"2000-03-01","series":"Transportation and Utilities","rate":3.5},{"date":"2000-04-01","series":"Transportation and Utilities","rate":3.4},{"date":"2000-05-01","series":"Transportation and Utilities","rate":3.4},{"date":"2000-06-01","series":"Transportation and Utilities","rate":3.2},{"date":"2000-07-01","series":"Transportation and Utilities","rate":3.9},{"date":"2000-08-01","series":"Transportation and Utilities","rate":3.4},{"date":"2000-09-01","series":"Transportation and Utilities","rate":4},{"date":"2000-10-01","series":"Transportation and Utilities","rate":2.8},{"date":"2000-11-01","series":"Transportation and Utilities","rate":2.3},{"date":"2000-12-01","series":"Transportation and Utilities","rate":3.1},{"date":"2001-01-01","series":"Transportation and Utilities","rate":3.6},{"date":"2001-02-01","series":"Transportation and Utilities","rate":3.4},{"date":"2001-03-01","series":"Transportation and Utilities","rate":3.5},{"date":"2001-04-01","series":"Transportation and Utilities","rate":4.2},{"date":"2001-05-01","series":"Transportation and Utilities","rate":3.1},{"date":"2001-06-01","series":"Transportation and Utilities","rate":4.3},{"date":"2001-07-01","series":"Transportation and Utilities","rate":4.2},{"date":"2001-08-01","series":"Transportation and Utilities","rate":3.9},{"date":"2001-09-01","series":"Transportation and Utilities","rate":3.9},{"date":"2001-10-01","series":"Transportation and Utilities","rate":5.8},{"date":"2001-11-01","series":"Transportation and Utilities","rate":5.4},{"date":"2001-12-01","series":"Transportation and Utilities","rate":5.6},{"date":"2002-01-01","series":"Transportation and Utilities","rate":6.6},{"date":"2002-02-01","series":"Transportation and Utilities","rate":5.7},{"date":"2002-03-01","series":"Transportation and Utilities","rate":5.6},{"date":"2002-04-01","series":"Transportation and Utilities","rate":5},{"date":"2002-05-01","series":"Transportation and Utilities","rate":4.5},{"date":"2002-06-01","series":"Transportation and Utilities","rate":4.9},{"date":"2002-07-01","series":"Transportation and Utilities","rate":4.9},{"date":"2002-08-01","series":"Transportation and Utilities","rate":3.9},{"date":"2002-09-01","series":"Transportation and Utilities","rate":4.2},{"date":"2002-10-01","series":"Transportation and Utilities","rate":4.7},{"date":"2002-11-01","series":"Transportation and Utilities","rate":4.2},{"date":"2002-12-01","series":"Transportation and Utilities","rate":4.6},{"date":"2003-01-01","series":"Transportation and Utilities","rate":6.3},{"date":"2003-02-01","series":"Transportation and Utilities","rate":5.8},{"date":"2003-03-01","series":"Transportation and Utilities","rate":5.9},{"date":"2003-04-01","series":"Transportation and Utilities","rate":5},{"date":"2003-05-01","series":"Transportation and Utilities","rate":4.9},{"date":"2003-06-01","series":"Transportation and Utilities","rate":5.5},{"date":"2003-07-01","series":"Transportation and Utilities","rate":5.4},{"date":"2003-08-01","series":"Transportation and Utilities","rate":4.8},{"date":"2003-09-01","series":"Transportation and Utilities","rate":4.7},{"date":"2003-10-01","series":"Transportation and Utilities","rate":4.8},{"date":"2003-11-01","series":"Transportation and Utilities","rate":5.1},{"date":"2003-12-01","series":"Transportation and Utilities","rate":5},{"date":"2004-01-01","series":"Transportation and Utilities","rate":4.6},{"date":"2004-02-01","series":"Transportation and Utilities","rate":5.5},{"date":"2004-03-01","series":"Transportation and Utilities","rate":5.4},{"date":"2004-04-01","series":"Transportation and Utilities","rate":4.5},{"date":"2004-05-01","series":"Transportation and Utilities","rate":4.4},{"date":"2004-06-01","series":"Transportation and Utilities","rate":4.3},{"date":"2004-07-01","series":"Transportation and Utilities","rate":4.3},{"date":"2004-08-01","series":"Transportation and Utilities","rate":4.4},{"date":"2004-09-01","series":"Transportation and Utilities","rate":3.9},{"date":"2004-10-01","series":"Transportation and Utilities","rate":4},{"date":"2004-11-01","series":"Transportation and Utilities","rate":4},{"date":"2004-12-01","series":"Transportation and Utilities","rate":3.8},{"date":"2005-01-01","series":"Transportation and Utilities","rate":5},{"date":"2005-02-01","series":"Transportation and Utilities","rate":4.4},{"date":"2005-03-01","series":"Transportation and Utilities","rate":4.8},{"date":"2005-04-01","series":"Transportation and Utilities","rate":4.7},{"date":"2005-05-01","series":"Transportation and Utilities","rate":4.1},{"date":"2005-06-01","series":"Transportation and Utilities","rate":4.5},{"date":"2005-07-01","series":"Transportation and Utilities","rate":3.9},{"date":"2005-08-01","series":"Transportation and Utilities","rate":3.3},{"date":"2005-09-01","series":"Transportation and Utilities","rate":3.7},{"date":"2005-10-01","series":"Transportation and Utilities","rate":4.4},{"date":"2005-11-01","series":"Transportation and Utilities","rate":3.5},{"date":"2005-12-01","series":"Transportation and Utilities","rate":3.6},{"date":"2006-01-01","series":"Transportation and Utilities","rate":5},{"date":"2006-02-01","series":"Transportation and Utilities","rate":4.6},{"date":"2006-03-01","series":"Transportation and Utilities","rate":4.7},{"date":"2006-04-01","series":"Transportation and Utilities","rate":4.8},{"date":"2006-05-01","series":"Transportation and Utilities","rate":4},{"date":"2006-06-01","series":"Transportation and Utilities","rate":3.9},{"date":"2006-07-01","series":"Transportation and Utilities","rate":4.2},{"date":"2006-08-01","series":"Transportation and Utilities","rate":3.7},{"date":"2006-09-01","series":"Transportation and Utilities","rate":3.1},{"date":"2006-10-01","series":"Transportation and Utilities","rate":3.6},{"date":"2006-11-01","series":"Transportation and Utilities","rate":3.1},{"date":"2006-12-01","series":"Transportation and Utilities","rate":3.2},{"date":"2007-01-01","series":"Transportation and Utilities","rate":4.2},{"date":"2007-02-01","series":"Transportation and Utilities","rate":4.2},{"date":"2007-03-01","series":"Transportation and Utilities","rate":4.3},{"date":"2007-04-01","series":"Transportation and Utilities","rate":3.3},{"date":"2007-05-01","series":"Transportation and Utilities","rate":3.8},{"date":"2007-06-01","series":"Transportation and Utilities","rate":4.1},{"date":"2007-07-01","series":"Transportation and Utilities","rate":5.1},{"date":"2007-08-01","series":"Transportation and Utilities","rate":3.4},{"date":"2007-09-01","series":"Transportation and Utilities","rate":3.7},{"date":"2007-10-01","series":"Transportation and Utilities","rate":3.6},{"date":"2007-11-01","series":"Transportation and Utilities","rate":3.9},{"date":"2007-12-01","series":"Transportation and Utilities","rate":3.4},{"date":"2008-01-01","series":"Transportation and Utilities","rate":4.4},{"date":"2008-02-01","series":"Transportation and Utilities","rate":4.6},{"date":"2008-03-01","series":"Transportation and Utilities","rate":4.3},{"date":"2008-04-01","series":"Transportation and Utilities","rate":4},{"date":"2008-05-01","series":"Transportation and Utilities","rate":4.3},{"date":"2008-06-01","series":"Transportation and Utilities","rate":5.1},{"date":"2008-07-01","series":"Transportation and Utilities","rate":5.7},{"date":"2008-08-01","series":"Transportation and Utilities","rate":5.2},{"date":"2008-09-01","series":"Transportation and Utilities","rate":5.8},{"date":"2008-10-01","series":"Transportation and Utilities","rate":5.7},{"date":"2008-11-01","series":"Transportation and Utilities","rate":5.8},{"date":"2008-12-01","series":"Transportation and Utilities","rate":6.7},{"date":"2009-01-01","series":"Transportation and Utilities","rate":8.4},{"date":"2009-02-01","series":"Transportation and Utilities","rate":9.1},{"date":"2009-03-01","series":"Transportation and Utilities","rate":9},{"date":"2009-04-01","series":"Transportation and Utilities","rate":9},{"date":"2009-05-01","series":"Transportation and Utilities","rate":8.5},{"date":"2009-06-01","series":"Transportation and Utilities","rate":8.4},{"date":"2009-07-01","series":"Transportation and Utilities","rate":8.8},{"date":"2009-08-01","series":"Transportation and Utilities","rate":9.8},{"date":"2009-09-01","series":"Transportation and Utilities","rate":9.5},{"date":"2009-10-01","series":"Transportation and Utilities","rate":8.6},{"date":"2009-11-01","series":"Transportation and Utilities","rate":8.5},{"date":"2009-12-01","series":"Transportation and Utilities","rate":9},{"date":"2010-01-01","series":"Transportation and Utilities","rate":11.3},{"date":"2010-02-01","series":"Transportation and Utilities","rate":10.5},{"date":"2000-01-01","series":"Information","rate":3.4},{"date":"2000-02-01","series":"Information","rate":2.9},{"date":"2000-03-01","series":"Information","rate":3.6},{"date":"2000-04-01","series":"Information","rate":2.4},{"date":"2000-05-01","series":"Information","rate":3.5},{"date":"2000-06-01","series":"Information","rate":2.6},{"date":"2000-07-01","series":"Information","rate":3.6},{"date":"2000-08-01","series":"Information","rate":3.7},{"date":"2000-09-01","series":"Information","rate":3.3},{"date":"2000-10-01","series":"Information","rate":2.4},{"date":"2000-11-01","series":"Information","rate":3},{"date":"2000-12-01","series":"Information","rate":4},{"date":"2001-01-01","series":"Information","rate":4.1},{"date":"2001-02-01","series":"Information","rate":2.9},{"date":"2001-03-01","series":"Information","rate":3.8},{"date":"2001-04-01","series":"Information","rate":3.7},{"date":"2001-05-01","series":"Information","rate":4.2},{"date":"2001-06-01","series":"Information","rate":4.1},{"date":"2001-07-01","series":"Information","rate":5.2},{"date":"2001-08-01","series":"Information","rate":5.4},{"date":"2001-09-01","series":"Information","rate":5.6},{"date":"2001-10-01","series":"Information","rate":6},{"date":"2001-11-01","series":"Information","rate":6.2},{"date":"2001-12-01","series":"Information","rate":7.4},{"date":"2002-01-01","series":"Information","rate":7.1},{"date":"2002-02-01","series":"Information","rate":7.6},{"date":"2002-03-01","series":"Information","rate":7.2},{"date":"2002-04-01","series":"Information","rate":6.9},{"date":"2002-05-01","series":"Information","rate":7.2},{"date":"2002-06-01","series":"Information","rate":6.9},{"date":"2002-07-01","series":"Information","rate":7.1},{"date":"2002-08-01","series":"Information","rate":7.1},{"date":"2002-09-01","series":"Information","rate":6.3},{"date":"2002-10-01","series":"Information","rate":6},{"date":"2002-11-01","series":"Information","rate":6.5},{"date":"2002-12-01","series":"Information","rate":7.2},{"date":"2003-01-01","series":"Information","rate":6.7},{"date":"2003-02-01","series":"Information","rate":8.6},{"date":"2003-03-01","series":"Information","rate":7.4},{"date":"2003-04-01","series":"Information","rate":7.3},{"date":"2003-05-01","series":"Information","rate":6.9},{"date":"2003-06-01","series":"Information","rate":6.4},{"date":"2003-07-01","series":"Information","rate":5.9},{"date":"2003-08-01","series":"Information","rate":6.1},{"date":"2003-09-01","series":"Information","rate":7},{"date":"2003-10-01","series":"Information","rate":5.4},{"date":"2003-11-01","series":"Information","rate":7.6},{"date":"2003-12-01","series":"Information","rate":6.5},{"date":"2004-01-01","series":"Information","rate":7},{"date":"2004-02-01","series":"Information","rate":5.8},{"date":"2004-03-01","series":"Information","rate":6.3},{"date":"2004-04-01","series":"Information","rate":5},{"date":"2004-05-01","series":"Information","rate":5.7},{"date":"2004-06-01","series":"Information","rate":5},{"date":"2004-07-01","series":"Information","rate":5.2},{"date":"2004-08-01","series":"Information","rate":5.7},{"date":"2004-09-01","series":"Information","rate":5.4},{"date":"2004-10-01","series":"Information","rate":5.6},{"date":"2004-11-01","series":"Information","rate":5.6},{"date":"2004-12-01","series":"Information","rate":5.7},{"date":"2005-01-01","series":"Information","rate":5.4},{"date":"2005-02-01","series":"Information","rate":6.5},{"date":"2005-03-01","series":"Information","rate":6},{"date":"2005-04-01","series":"Information","rate":5.9},{"date":"2005-05-01","series":"Information","rate":4.7},{"date":"2005-06-01","series":"Information","rate":5},{"date":"2005-07-01","series":"Information","rate":4.2},{"date":"2005-08-01","series":"Information","rate":4.6},{"date":"2005-09-01","series":"Information","rate":4.9},{"date":"2005-10-01","series":"Information","rate":4.8},{"date":"2005-11-01","series":"Information","rate":5.1},{"date":"2005-12-01","series":"Information","rate":3.7},{"date":"2006-01-01","series":"Information","rate":3.3},{"date":"2006-02-01","series":"Information","rate":3.7},{"date":"2006-03-01","series":"Information","rate":3.5},{"date":"2006-04-01","series":"Information","rate":4.2},{"date":"2006-05-01","series":"Information","rate":4.8},{"date":"2006-06-01","series":"Information","rate":3.4},{"date":"2006-07-01","series":"Information","rate":3},{"date":"2006-08-01","series":"Information","rate":3.9},{"date":"2006-09-01","series":"Information","rate":4.9},{"date":"2006-10-01","series":"Information","rate":3.4},{"date":"2006-11-01","series":"Information","rate":3.9},{"date":"2006-12-01","series":"Information","rate":2.9},{"date":"2007-01-01","series":"Information","rate":4},{"date":"2007-02-01","series":"Information","rate":4},{"date":"2007-03-01","series":"Information","rate":3.2},{"date":"2007-04-01","series":"Information","rate":2.4},{"date":"2007-05-01","series":"Information","rate":3.3},{"date":"2007-06-01","series":"Information","rate":3.4},{"date":"2007-07-01","series":"Information","rate":3.4},{"date":"2007-08-01","series":"Information","rate":4.1},{"date":"2007-09-01","series":"Information","rate":3.7},{"date":"2007-10-01","series":"Information","rate":3.7},{"date":"2007-11-01","series":"Information","rate":4},{"date":"2007-12-01","series":"Information","rate":3.7},{"date":"2008-01-01","series":"Information","rate":5.1},{"date":"2008-02-01","series":"Information","rate":5.8},{"date":"2008-03-01","series":"Information","rate":4.8},{"date":"2008-04-01","series":"Information","rate":4.4},{"date":"2008-05-01","series":"Information","rate":5},{"date":"2008-06-01","series":"Information","rate":4.7},{"date":"2008-07-01","series":"Information","rate":4.1},{"date":"2008-08-01","series":"Information","rate":4.2},{"date":"2008-09-01","series":"Information","rate":5},{"date":"2008-10-01","series":"Information","rate":5},{"date":"2008-11-01","series":"Information","rate":5.2},{"date":"2008-12-01","series":"Information","rate":6.9},{"date":"2009-01-01","series":"Information","rate":7.4},{"date":"2009-02-01","series":"Information","rate":7.1},{"date":"2009-03-01","series":"Information","rate":7.8},{"date":"2009-04-01","series":"Information","rate":10.1},{"date":"2009-05-01","series":"Information","rate":9.5},{"date":"2009-06-01","series":"Information","rate":11.1},{"date":"2009-07-01","series":"Information","rate":11.5},{"date":"2009-08-01","series":"Information","rate":10.7},{"date":"2009-09-01","series":"Information","rate":11.2},{"date":"2009-10-01","series":"Information","rate":8.2},{"date":"2009-11-01","series":"Information","rate":7.6},{"date":"2009-12-01","series":"Information","rate":8.5},{"date":"2010-01-01","series":"Information","rate":10},{"date":"2010-02-01","series":"Information","rate":10},{"date":"2000-01-01","series":"Finance","rate":2.7},{"date":"2000-02-01","series":"Finance","rate":2.8},{"date":"2000-03-01","series":"Finance","rate":2.6},{"date":"2000-04-01","series":"Finance","rate":2.3},{"date":"2000-05-01","series":"Finance","rate":2.2},{"date":"2000-06-01","series":"Finance","rate":2.5},{"date":"2000-07-01","series":"Finance","rate":2.2},{"date":"2000-08-01","series":"Finance","rate":2.5},{"date":"2000-09-01","series":"Finance","rate":2.2},{"date":"2000-10-01","series":"Finance","rate":2.6},{"date":"2000-11-01","series":"Finance","rate":2.1},{"date":"2000-12-01","series":"Finance","rate":2.3},{"date":"2001-01-01","series":"Finance","rate":2.6},{"date":"2001-02-01","series":"Finance","rate":2.6},{"date":"2001-03-01","series":"Finance","rate":2.4},{"date":"2001-04-01","series":"Finance","rate":2.6},{"date":"2001-05-01","series":"Finance","rate":2.2},{"date":"2001-06-01","series":"Finance","rate":2.8},{"date":"2001-07-01","series":"Finance","rate":3.3},{"date":"2001-08-01","series":"Finance","rate":2.9},{"date":"2001-09-01","series":"Finance","rate":3.1},{"date":"2001-10-01","series":"Finance","rate":3.3},{"date":"2001-11-01","series":"Finance","rate":3.6},{"date":"2001-12-01","series":"Finance","rate":3},{"date":"2002-01-01","series":"Finance","rate":3},{"date":"2002-02-01","series":"Finance","rate":3.5},{"date":"2002-03-01","series":"Finance","rate":3.2},{"date":"2002-04-01","series":"Finance","rate":3.3},{"date":"2002-05-01","series":"Finance","rate":3.8},{"date":"2002-06-01","series":"Finance","rate":4.1},{"date":"2002-07-01","series":"Finance","rate":3.8},{"date":"2002-08-01","series":"Finance","rate":3.8},{"date":"2002-09-01","series":"Finance","rate":3.3},{"date":"2002-10-01","series":"Finance","rate":3.5},{"date":"2002-11-01","series":"Finance","rate":3.7},{"date":"2002-12-01","series":"Finance","rate":3.6},{"date":"2003-01-01","series":"Finance","rate":3.6},{"date":"2003-02-01","series":"Finance","rate":3.4},{"date":"2003-03-01","series":"Finance","rate":4},{"date":"2003-04-01","series":"Finance","rate":3.6},{"date":"2003-05-01","series":"Finance","rate":3.6},{"date":"2003-06-01","series":"Finance","rate":4},{"date":"2003-07-01","series":"Finance","rate":3.1},{"date":"2003-08-01","series":"Finance","rate":3.7},{"date":"2003-09-01","series":"Finance","rate":3.3},{"date":"2003-10-01","series":"Finance","rate":3.3},{"date":"2003-11-01","series":"Finance","rate":3.3},{"date":"2003-12-01","series":"Finance","rate":3},{"date":"2004-01-01","series":"Finance","rate":4.3},{"date":"2004-02-01","series":"Finance","rate":3.8},{"date":"2004-03-01","series":"Finance","rate":3.7},{"date":"2004-04-01","series":"Finance","rate":3.4},{"date":"2004-05-01","series":"Finance","rate":3.3},{"date":"2004-06-01","series":"Finance","rate":3.6},{"date":"2004-07-01","series":"Finance","rate":3.3},{"date":"2004-08-01","series":"Finance","rate":3.4},{"date":"2004-09-01","series":"Finance","rate":4},{"date":"2004-10-01","series":"Finance","rate":3.8},{"date":"2004-11-01","series":"Finance","rate":3.1},{"date":"2004-12-01","series":"Finance","rate":3.1},{"date":"2005-01-01","series":"Finance","rate":2.7},{"date":"2005-02-01","series":"Finance","rate":3.2},{"date":"2005-03-01","series":"Finance","rate":2.7},{"date":"2005-04-01","series":"Finance","rate":2.7},{"date":"2005-05-01","series":"Finance","rate":3.1},{"date":"2005-06-01","series":"Finance","rate":3.3},{"date":"2005-07-01","series":"Finance","rate":3.3},{"date":"2005-08-01","series":"Finance","rate":3.2},{"date":"2005-09-01","series":"Finance","rate":2.7},{"date":"2005-10-01","series":"Finance","rate":2.7},{"date":"2005-11-01","series":"Finance","rate":2.8},{"date":"2005-12-01","series":"Finance","rate":2.1},{"date":"2006-01-01","series":"Finance","rate":2.4},{"date":"2006-02-01","series":"Finance","rate":2.8},{"date":"2006-03-01","series":"Finance","rate":3.1},{"date":"2006-04-01","series":"Finance","rate":3.1},{"date":"2006-05-01","series":"Finance","rate":3},{"date":"2006-06-01","series":"Finance","rate":3.1},{"date":"2006-07-01","series":"Finance","rate":3.4},{"date":"2006-08-01","series":"Finance","rate":2.7},{"date":"2006-09-01","series":"Finance","rate":2.4},{"date":"2006-10-01","series":"Finance","rate":2.1},{"date":"2006-11-01","series":"Finance","rate":2.3},{"date":"2006-12-01","series":"Finance","rate":2.3},{"date":"2007-01-01","series":"Finance","rate":2.4},{"date":"2007-02-01","series":"Finance","rate":3.1},{"date":"2007-03-01","series":"Finance","rate":2.6},{"date":"2007-04-01","series":"Finance","rate":2.4},{"date":"2007-05-01","series":"Finance","rate":2.9},{"date":"2007-06-01","series":"Finance","rate":3.1},{"date":"2007-07-01","series":"Finance","rate":3.1},{"date":"2007-08-01","series":"Finance","rate":3.7},{"date":"2007-09-01","series":"Finance","rate":3.3},{"date":"2007-10-01","series":"Finance","rate":3.2},{"date":"2007-11-01","series":"Finance","rate":2.7},{"date":"2007-12-01","series":"Finance","rate":3.2},{"date":"2008-01-01","series":"Finance","rate":3},{"date":"2008-02-01","series":"Finance","rate":3.4},{"date":"2008-03-01","series":"Finance","rate":3.4},{"date":"2008-04-01","series":"Finance","rate":3.4},{"date":"2008-05-01","series":"Finance","rate":3.7},{"date":"2008-06-01","series":"Finance","rate":3.4},{"date":"2008-07-01","series":"Finance","rate":3.6},{"date":"2008-08-01","series":"Finance","rate":4.2},{"date":"2008-09-01","series":"Finance","rate":4},{"date":"2008-10-01","series":"Finance","rate":4.5},{"date":"2008-11-01","series":"Finance","rate":5.2},{"date":"2008-12-01","series":"Finance","rate":5.6},{"date":"2009-01-01","series":"Finance","rate":6},{"date":"2009-02-01","series":"Finance","rate":6.7},{"date":"2009-03-01","series":"Finance","rate":6.8},{"date":"2009-04-01","series":"Finance","rate":6},{"date":"2009-05-01","series":"Finance","rate":5.7},{"date":"2009-06-01","series":"Finance","rate":5.5},{"date":"2009-07-01","series":"Finance","rate":6.1},{"date":"2009-08-01","series":"Finance","rate":6},{"date":"2009-09-01","series":"Finance","rate":7.1},{"date":"2009-10-01","series":"Finance","rate":7},{"date":"2009-11-01","series":"Finance","rate":6.7},{"date":"2009-12-01","series":"Finance","rate":7.2},{"date":"2010-01-01","series":"Finance","rate":6.6},{"date":"2010-02-01","series":"Finance","rate":7.5},{"date":"2000-01-01","series":"Business services","rate":5.7},{"date":"2000-02-01","series":"Business services","rate":5.2},{"date":"2000-03-01","series":"Business services","rate":5.4},{"date":"2000-04-01","series":"Business services","rate":4.5},{"date":"2000-05-01","series":"Business services","rate":4.7},{"date":"2000-06-01","series":"Business services","rate":4.4},{"date":"2000-07-01","series":"Business services","rate":5.1},{"date":"2000-08-01","series":"Business services","rate":4.8},{"date":"2000-09-01","series":"Business services","rate":4.6},{"date":"2000-10-01","series":"Business services","rate":4.1},{"date":"2000-11-01","series":"Business services","rate":4.4},{"date":"2000-12-01","series":"Business services","rate":4.5},{"date":"2001-01-01","series":"Business services","rate":5.8},{"date":"2001-02-01","series":"Business services","rate":5.9},{"date":"2001-03-01","series":"Business services","rate":5.3},{"date":"2001-04-01","series":"Business services","rate":5.3},{"date":"2001-05-01","series":"Business services","rate":5.3},{"date":"2001-06-01","series":"Business services","rate":5.4},{"date":"2001-07-01","series":"Business services","rate":5.7},{"date":"2001-08-01","series":"Business services","rate":6.2},{"date":"2001-09-01","series":"Business services","rate":6.4},{"date":"2001-10-01","series":"Business services","rate":7.2},{"date":"2001-11-01","series":"Business services","rate":7.6},{"date":"2001-12-01","series":"Business services","rate":7.4},{"date":"2002-01-01","series":"Business services","rate":8.9},{"date":"2002-02-01","series":"Business services","rate":7.7},{"date":"2002-03-01","series":"Business services","rate":7.5},{"date":"2002-04-01","series":"Business services","rate":7.3},{"date":"2002-05-01","series":"Business services","rate":7.7},{"date":"2002-06-01","series":"Business services","rate":8.2},{"date":"2002-07-01","series":"Business services","rate":8.2},{"date":"2002-08-01","series":"Business services","rate":7.2},{"date":"2002-09-01","series":"Business services","rate":7.8},{"date":"2002-10-01","series":"Business services","rate":7.5},{"date":"2002-11-01","series":"Business services","rate":8.2},{"date":"2002-12-01","series":"Business services","rate":8.3},{"date":"2003-01-01","series":"Business services","rate":8.9},{"date":"2003-02-01","series":"Business services","rate":8.9},{"date":"2003-03-01","series":"Business services","rate":9.1},{"date":"2003-04-01","series":"Business services","rate":8.3},{"date":"2003-05-01","series":"Business services","rate":8.4},{"date":"2003-06-01","series":"Business services","rate":8.5},{"date":"2003-07-01","series":"Business services","rate":8.2},{"date":"2003-08-01","series":"Business services","rate":7.2},{"date":"2003-09-01","series":"Business services","rate":8},{"date":"2003-10-01","series":"Business services","rate":8.1},{"date":"2003-11-01","series":"Business services","rate":7.7},{"date":"2003-12-01","series":"Business services","rate":7.6},{"date":"2004-01-01","series":"Business services","rate":8.7},{"date":"2004-02-01","series":"Business services","rate":7.7},{"date":"2004-03-01","series":"Business services","rate":7.9},{"date":"2004-04-01","series":"Business services","rate":6},{"date":"2004-05-01","series":"Business services","rate":6.5},{"date":"2004-06-01","series":"Business services","rate":6.5},{"date":"2004-07-01","series":"Business services","rate":6.2},{"date":"2004-08-01","series":"Business services","rate":6.7},{"date":"2004-09-01","series":"Business services","rate":5.9},{"date":"2004-10-01","series":"Business services","rate":6.2},{"date":"2004-11-01","series":"Business services","rate":6.8},{"date":"2004-12-01","series":"Business services","rate":6.9},{"date":"2005-01-01","series":"Business services","rate":7.6},{"date":"2005-02-01","series":"Business services","rate":7.2},{"date":"2005-03-01","series":"Business services","rate":6.5},{"date":"2005-04-01","series":"Business services","rate":5.7},{"date":"2005-05-01","series":"Business services","rate":5.9},{"date":"2005-06-01","series":"Business services","rate":5.8},{"date":"2005-07-01","series":"Business services","rate":6.3},{"date":"2005-08-01","series":"Business services","rate":5.7},{"date":"2005-09-01","series":"Business services","rate":6.7},{"date":"2005-10-01","series":"Business services","rate":5.8},{"date":"2005-11-01","series":"Business services","rate":5.5},{"date":"2005-12-01","series":"Business services","rate":6.1},{"date":"2006-01-01","series":"Business services","rate":6.5},{"date":"2006-02-01","series":"Business services","rate":6.5},{"date":"2006-03-01","series":"Business services","rate":6.3},{"date":"2006-04-01","series":"Business services","rate":4.9},{"date":"2006-05-01","series":"Business services","rate":5.3},{"date":"2006-06-01","series":"Business services","rate":5.7},{"date":"2006-07-01","series":"Business services","rate":5.5},{"date":"2006-08-01","series":"Business services","rate":5.1},{"date":"2006-09-01","series":"Business services","rate":5.6},{"date":"2006-10-01","series":"Business services","rate":5.6},{"date":"2006-11-01","series":"Business services","rate":4.9},{"date":"2006-12-01","series":"Business services","rate":5.9},{"date":"2007-01-01","series":"Business services","rate":6.5},{"date":"2007-02-01","series":"Business services","rate":6},{"date":"2007-03-01","series":"Business services","rate":5.7},{"date":"2007-04-01","series":"Business services","rate":5},{"date":"2007-05-01","series":"Business services","rate":5.4},{"date":"2007-06-01","series":"Business services","rate":5.2},{"date":"2007-07-01","series":"Business services","rate":5.2},{"date":"2007-08-01","series":"Business services","rate":4.9},{"date":"2007-09-01","series":"Business services","rate":4.7},{"date":"2007-10-01","series":"Business services","rate":4.8},{"date":"2007-11-01","series":"Business services","rate":4.8},{"date":"2007-12-01","series":"Business services","rate":5.7},{"date":"2008-01-01","series":"Business services","rate":6.4},{"date":"2008-02-01","series":"Business services","rate":6.2},{"date":"2008-03-01","series":"Business services","rate":6.2},{"date":"2008-04-01","series":"Business services","rate":5.3},{"date":"2008-05-01","series":"Business services","rate":5.9},{"date":"2008-06-01","series":"Business services","rate":6.2},{"date":"2008-07-01","series":"Business services","rate":6.1},{"date":"2008-08-01","series":"Business services","rate":6.9},{"date":"2008-09-01","series":"Business services","rate":6.9},{"date":"2008-10-01","series":"Business services","rate":7.5},{"date":"2008-11-01","series":"Business services","rate":7},{"date":"2008-12-01","series":"Business services","rate":8.1},{"date":"2009-01-01","series":"Business services","rate":10.4},{"date":"2009-02-01","series":"Business services","rate":10.8},{"date":"2009-03-01","series":"Business services","rate":11.4},{"date":"2009-04-01","series":"Business services","rate":10.4},{"date":"2009-05-01","series":"Business services","rate":10.9},{"date":"2009-06-01","series":"Business services","rate":11.3},{"date":"2009-07-01","series":"Business services","rate":10.9},{"date":"2009-08-01","series":"Business services","rate":11},{"date":"2009-09-01","series":"Business services","rate":11.3},{"date":"2009-10-01","series":"Business services","rate":10.3},{"date":"2009-11-01","series":"Business services","rate":10.6},{"date":"2009-12-01","series":"Business services","rate":10.3},{"date":"2010-01-01","series":"Business services","rate":11.1},{"date":"2010-02-01","series":"Business services","rate":12},{"date":"2000-01-01","series":"Education and Health","rate":2.3},{"date":"2000-02-01","series":"Education and Health","rate":2.2},{"date":"2000-03-01","series":"Education and Health","rate":2.5},{"date":"2000-04-01","series":"Education and Health","rate":2.1},{"date":"2000-05-01","series":"Education and Health","rate":2.7},{"date":"2000-06-01","series":"Education and Health","rate":2.9},{"date":"2000-07-01","series":"Education and Health","rate":3.1},{"date":"2000-08-01","series":"Education and Health","rate":2.9},{"date":"2000-09-01","series":"Education and Health","rate":2.6},{"date":"2000-10-01","series":"Education and Health","rate":2.1},{"date":"2000-11-01","series":"Education and Health","rate":2.2},{"date":"2000-12-01","series":"Education and Health","rate":1.8},{"date":"2001-01-01","series":"Education and Health","rate":2.6},{"date":"2001-02-01","series":"Education and Health","rate":2.6},{"date":"2001-03-01","series":"Education and Health","rate":2.8},{"date":"2001-04-01","series":"Education and Health","rate":2.1},{"date":"2001-05-01","series":"Education and Health","rate":2.4},{"date":"2001-06-01","series":"Education and Health","rate":3},{"date":"2001-07-01","series":"Education and Health","rate":3.1},{"date":"2001-08-01","series":"Education and Health","rate":3.7},{"date":"2001-09-01","series":"Education and Health","rate":2.8},{"date":"2001-10-01","series":"Education and Health","rate":2.9},{"date":"2001-11-01","series":"Education and Health","rate":3.1},{"date":"2001-12-01","series":"Education and Health","rate":2.9},{"date":"2002-01-01","series":"Education and Health","rate":3.5},{"date":"2002-02-01","series":"Education and Health","rate":3.5},{"date":"2002-03-01","series":"Education and Health","rate":3.2},{"date":"2002-04-01","series":"Education and Health","rate":2.9},{"date":"2002-05-01","series":"Education and Health","rate":3.2},{"date":"2002-06-01","series":"Education and Health","rate":3.9},{"date":"2002-07-01","series":"Education and Health","rate":4},{"date":"2002-08-01","series":"Education and Health","rate":3.9},{"date":"2002-09-01","series":"Education and Health","rate":3.2},{"date":"2002-10-01","series":"Education and Health","rate":3},{"date":"2002-11-01","series":"Education and Health","rate":2.8},{"date":"2002-12-01","series":"Education and Health","rate":3.2},{"date":"2003-01-01","series":"Education and Health","rate":3.2},{"date":"2003-02-01","series":"Education and Health","rate":3.2},{"date":"2003-03-01","series":"Education and Health","rate":2.9},{"date":"2003-04-01","series":"Education and Health","rate":3.4},{"date":"2003-05-01","series":"Education and Health","rate":3.5},{"date":"2003-06-01","series":"Education and Health","rate":4.4},{"date":"2003-07-01","series":"Education and Health","rate":4},{"date":"2003-08-01","series":"Education and Health","rate":4.3},{"date":"2003-09-01","series":"Education and Health","rate":3.7},{"date":"2003-10-01","series":"Education and Health","rate":3.6},{"date":"2003-11-01","series":"Education and Health","rate":3.8},{"date":"2003-12-01","series":"Education and Health","rate":3.5},{"date":"2004-01-01","series":"Education and Health","rate":3.7},{"date":"2004-02-01","series":"Education and Health","rate":3.4},{"date":"2004-03-01","series":"Education and Health","rate":3.2},{"date":"2004-04-01","series":"Education and Health","rate":3.3},{"date":"2004-05-01","series":"Education and Health","rate":3.2},{"date":"2004-06-01","series":"Education and Health","rate":4.2},{"date":"2004-07-01","series":"Education and Health","rate":4},{"date":"2004-08-01","series":"Education and Health","rate":3.7},{"date":"2004-09-01","series":"Education and Health","rate":3.3},{"date":"2004-10-01","series":"Education and Health","rate":2.9},{"date":"2004-11-01","series":"Education and Health","rate":3.2},{"date":"2004-12-01","series":"Education and Health","rate":3.1},{"date":"2005-01-01","series":"Education and Health","rate":3.4},{"date":"2005-02-01","series":"Education and Health","rate":3.4},{"date":"2005-03-01","series":"Education and Health","rate":3.4},{"date":"2005-04-01","series":"Education and Health","rate":3.3},{"date":"2005-05-01","series":"Education and Health","rate":3.6},{"date":"2005-06-01","series":"Education and Health","rate":3.6},{"date":"2005-07-01","series":"Education and Health","rate":3.5},{"date":"2005-08-01","series":"Education and Health","rate":3.5},{"date":"2005-09-01","series":"Education and Health","rate":3.5},{"date":"2005-10-01","series":"Education and Health","rate":3.4},{"date":"2005-11-01","series":"Education and Health","rate":3.6},{"date":"2005-12-01","series":"Education and Health","rate":2.8},{"date":"2006-01-01","series":"Education and Health","rate":3.2},{"date":"2006-02-01","series":"Education and Health","rate":2.8},{"date":"2006-03-01","series":"Education and Health","rate":3},{"date":"2006-04-01","series":"Education and Health","rate":3},{"date":"2006-05-01","series":"Education and Health","rate":2.9},{"date":"2006-06-01","series":"Education and Health","rate":3.3},{"date":"2006-07-01","series":"Education and Health","rate":3.5},{"date":"2006-08-01","series":"Education and Health","rate":3.2},{"date":"2006-09-01","series":"Education and Health","rate":3},{"date":"2006-10-01","series":"Education and Health","rate":2.8},{"date":"2006-11-01","series":"Education and Health","rate":2.8},{"date":"2006-12-01","series":"Education and Health","rate":2.6},{"date":"2007-01-01","series":"Education and Health","rate":2.9},{"date":"2007-02-01","series":"Education and Health","rate":2.5},{"date":"2007-03-01","series":"Education and Health","rate":2.5},{"date":"2007-04-01","series":"Education and Health","rate":2.9},{"date":"2007-05-01","series":"Education and Health","rate":3.3},{"date":"2007-06-01","series":"Education and Health","rate":3.4},{"date":"2007-07-01","series":"Education and Health","rate":3.5},{"date":"2007-08-01","series":"Education and Health","rate":3.4},{"date":"2007-09-01","series":"Education and Health","rate":3.2},{"date":"2007-10-01","series":"Education and Health","rate":2.7},{"date":"2007-11-01","series":"Education and Health","rate":2.7},{"date":"2007-12-01","series":"Education and Health","rate":2.6},{"date":"2008-01-01","series":"Education and Health","rate":2.9},{"date":"2008-02-01","series":"Education and Health","rate":2.9},{"date":"2008-03-01","series":"Education and Health","rate":3.1},{"date":"2008-04-01","series":"Education and Health","rate":2.8},{"date":"2008-05-01","series":"Education and Health","rate":3.2},{"date":"2008-06-01","series":"Education and Health","rate":3.4},{"date":"2008-07-01","series":"Education and Health","rate":3.9},{"date":"2008-08-01","series":"Education and Health","rate":4.3},{"date":"2008-09-01","series":"Education and Health","rate":4.1},{"date":"2008-10-01","series":"Education and Health","rate":3.9},{"date":"2008-11-01","series":"Education and Health","rate":3.6},{"date":"2008-12-01","series":"Education and Health","rate":3.8},{"date":"2009-01-01","series":"Education and Health","rate":3.8},{"date":"2009-02-01","series":"Education and Health","rate":4.1},{"date":"2009-03-01","series":"Education and Health","rate":4.5},{"date":"2009-04-01","series":"Education and Health","rate":4.6},{"date":"2009-05-01","series":"Education and Health","rate":4.9},{"date":"2009-06-01","series":"Education and Health","rate":6.1},{"date":"2009-07-01","series":"Education and Health","rate":6.1},{"date":"2009-08-01","series":"Education and Health","rate":6},{"date":"2009-09-01","series":"Education and Health","rate":6},{"date":"2009-10-01","series":"Education and Health","rate":6},{"date":"2009-11-01","series":"Education and Health","rate":5.5},{"date":"2009-12-01","series":"Education and Health","rate":5.6},{"date":"2010-01-01","series":"Education and Health","rate":5.5},{"date":"2010-02-01","series":"Education and Health","rate":5.6},{"date":"2000-01-01","series":"Leisure and hospitality","rate":7.5},{"date":"2000-02-01","series":"Leisure and hospitality","rate":7.5},{"date":"2000-03-01","series":"Leisure and hospitality","rate":7.4},{"date":"2000-04-01","series":"Leisure and hospitality","rate":6.1},{"date":"2000-05-01","series":"Leisure and hospitality","rate":6.2},{"date":"2000-06-01","series":"Leisure and hospitality","rate":7.3},{"date":"2000-07-01","series":"Leisure and hospitality","rate":6.8},{"date":"2000-08-01","series":"Leisure and hospitality","rate":6},{"date":"2000-09-01","series":"Leisure and hospitality","rate":5.9},{"date":"2000-10-01","series":"Leisure and hospitality","rate":6.5},{"date":"2000-11-01","series":"Leisure and hospitality","rate":6.5},{"date":"2000-12-01","series":"Leisure and hospitality","rate":5.9},{"date":"2001-01-01","series":"Leisure and hospitality","rate":7.7},{"date":"2001-02-01","series":"Leisure and hospitality","rate":7.5},{"date":"2001-03-01","series":"Leisure and hospitality","rate":7.4},{"date":"2001-04-01","series":"Leisure and hospitality","rate":6.8},{"date":"2001-05-01","series":"Leisure and hospitality","rate":6.7},{"date":"2001-06-01","series":"Leisure and hospitality","rate":7},{"date":"2001-07-01","series":"Leisure and hospitality","rate":6.8},{"date":"2001-08-01","series":"Leisure and hospitality","rate":6.8},{"date":"2001-09-01","series":"Leisure and hospitality","rate":8},{"date":"2001-10-01","series":"Leisure and hospitality","rate":8.3},{"date":"2001-11-01","series":"Leisure and hospitality","rate":8.5},{"date":"2001-12-01","series":"Leisure and hospitality","rate":8.5},{"date":"2002-01-01","series":"Leisure and hospitality","rate":8.6},{"date":"2002-02-01","series":"Leisure and hospitality","rate":8.7},{"date":"2002-03-01","series":"Leisure and hospitality","rate":8.5},{"date":"2002-04-01","series":"Leisure and hospitality","rate":8.4},{"date":"2002-05-01","series":"Leisure and hospitality","rate":8.6},{"date":"2002-06-01","series":"Leisure and hospitality","rate":8.5},{"date":"2002-07-01","series":"Leisure and hospitality","rate":8.2},{"date":"2002-08-01","series":"Leisure and hospitality","rate":7.5},{"date":"2002-09-01","series":"Leisure and hospitality","rate":7.9},{"date":"2002-10-01","series":"Leisure and hospitality","rate":8.5},{"date":"2002-11-01","series":"Leisure and hospitality","rate":8.9},{"date":"2002-12-01","series":"Leisure and hospitality","rate":8.2},{"date":"2003-01-01","series":"Leisure and hospitality","rate":9.3},{"date":"2003-02-01","series":"Leisure and hospitality","rate":10},{"date":"2003-03-01","series":"Leisure and hospitality","rate":8.9},{"date":"2003-04-01","series":"Leisure and hospitality","rate":8.5},{"date":"2003-05-01","series":"Leisure and hospitality","rate":7.9},{"date":"2003-06-01","series":"Leisure and hospitality","rate":8.6},{"date":"2003-07-01","series":"Leisure and hospitality","rate":8.4},{"date":"2003-08-01","series":"Leisure and hospitality","rate":9},{"date":"2003-09-01","series":"Leisure and hospitality","rate":8.8},{"date":"2003-10-01","series":"Leisure and hospitality","rate":8.3},{"date":"2003-11-01","series":"Leisure and hospitality","rate":9},{"date":"2003-12-01","series":"Leisure and hospitality","rate":8.2},{"date":"2004-01-01","series":"Leisure and hospitality","rate":10},{"date":"2004-02-01","series":"Leisure and hospitality","rate":8.9},{"date":"2004-03-01","series":"Leisure and hospitality","rate":9},{"date":"2004-04-01","series":"Leisure and hospitality","rate":7.9},{"date":"2004-05-01","series":"Leisure and hospitality","rate":8.1},{"date":"2004-06-01","series":"Leisure and hospitality","rate":9.6},{"date":"2004-07-01","series":"Leisure and hospitality","rate":7.8},{"date":"2004-08-01","series":"Leisure and hospitality","rate":8.4},{"date":"2004-09-01","series":"Leisure and hospitality","rate":7.5},{"date":"2004-10-01","series":"Leisure and hospitality","rate":7.3},{"date":"2004-11-01","series":"Leisure and hospitality","rate":7.9},{"date":"2004-12-01","series":"Leisure and hospitality","rate":7.4},{"date":"2005-01-01","series":"Leisure and hospitality","rate":8.7},{"date":"2005-02-01","series":"Leisure and hospitality","rate":8.8},{"date":"2005-03-01","series":"Leisure and hospitality","rate":8.3},{"date":"2005-04-01","series":"Leisure and hospitality","rate":7.7},{"date":"2005-05-01","series":"Leisure and hospitality","rate":7.7},{"date":"2005-06-01","series":"Leisure and hospitality","rate":7.6},{"date":"2005-07-01","series":"Leisure and hospitality","rate":7.4},{"date":"2005-08-01","series":"Leisure and hospitality","rate":6.8},{"date":"2005-09-01","series":"Leisure and hospitality","rate":7.3},{"date":"2005-10-01","series":"Leisure and hospitality","rate":6.8},{"date":"2005-11-01","series":"Leisure and hospitality","rate":8.1},{"date":"2005-12-01","series":"Leisure and hospitality","rate":7.9},{"date":"2006-01-01","series":"Leisure and hospitality","rate":8.1},{"date":"2006-02-01","series":"Leisure and hospitality","rate":9.1},{"date":"2006-03-01","series":"Leisure and hospitality","rate":8},{"date":"2006-04-01","series":"Leisure and hospitality","rate":7.6},{"date":"2006-05-01","series":"Leisure and hospitality","rate":7},{"date":"2006-06-01","series":"Leisure and hospitality","rate":7.4},{"date":"2006-07-01","series":"Leisure and hospitality","rate":6.8},{"date":"2006-08-01","series":"Leisure and hospitality","rate":6.9},{"date":"2006-09-01","series":"Leisure and hospitality","rate":6.9},{"date":"2006-10-01","series":"Leisure and hospitality","rate":6.6},{"date":"2006-11-01","series":"Leisure and hospitality","rate":7.1},{"date":"2006-12-01","series":"Leisure and hospitality","rate":5.9},{"date":"2007-01-01","series":"Leisure and hospitality","rate":7.8},{"date":"2007-02-01","series":"Leisure and hospitality","rate":7.4},{"date":"2007-03-01","series":"Leisure and hospitality","rate":7},{"date":"2007-04-01","series":"Leisure and hospitality","rate":6.9},{"date":"2007-05-01","series":"Leisure and hospitality","rate":6.8},{"date":"2007-06-01","series":"Leisure and hospitality","rate":7.2},{"date":"2007-07-01","series":"Leisure and hospitality","rate":7.3},{"date":"2007-08-01","series":"Leisure and hospitality","rate":7.1},{"date":"2007-09-01","series":"Leisure and hospitality","rate":7.4},{"date":"2007-10-01","series":"Leisure and hospitality","rate":7.5},{"date":"2007-11-01","series":"Leisure and hospitality","rate":8.1},{"date":"2007-12-01","series":"Leisure and hospitality","rate":7.9},{"date":"2008-01-01","series":"Leisure and hospitality","rate":9.4},{"date":"2008-02-01","series":"Leisure and hospitality","rate":8.5},{"date":"2008-03-01","series":"Leisure and hospitality","rate":7.6},{"date":"2008-04-01","series":"Leisure and hospitality","rate":6.9},{"date":"2008-05-01","series":"Leisure and hospitality","rate":8.4},{"date":"2008-06-01","series":"Leisure and hospitality","rate":8.9},{"date":"2008-07-01","series":"Leisure and hospitality","rate":8.8},{"date":"2008-08-01","series":"Leisure and hospitality","rate":8.7},{"date":"2008-09-01","series":"Leisure and hospitality","rate":8.2},{"date":"2008-10-01","series":"Leisure and hospitality","rate":8.9},{"date":"2008-11-01","series":"Leisure and hospitality","rate":9.9},{"date":"2008-12-01","series":"Leisure and hospitality","rate":9.5},{"date":"2009-01-01","series":"Leisure and hospitality","rate":11.5},{"date":"2009-02-01","series":"Leisure and hospitality","rate":11.4},{"date":"2009-03-01","series":"Leisure and hospitality","rate":11.6},{"date":"2009-04-01","series":"Leisure and hospitality","rate":10.2},{"date":"2009-05-01","series":"Leisure and hospitality","rate":11.9},{"date":"2009-06-01","series":"Leisure and hospitality","rate":12.1},{"date":"2009-07-01","series":"Leisure and hospitality","rate":11.2},{"date":"2009-08-01","series":"Leisure and hospitality","rate":12},{"date":"2009-09-01","series":"Leisure and hospitality","rate":11.4},{"date":"2009-10-01","series":"Leisure and hospitality","rate":12.4},{"date":"2009-11-01","series":"Leisure and hospitality","rate":11.9},{"date":"2009-12-01","series":"Leisure and hospitality","rate":12.6},{"date":"2010-01-01","series":"Leisure and hospitality","rate":14.2},{"date":"2010-02-01","series":"Leisure and hospitality","rate":12.7},{"date":"2000-01-01","series":"Other","rate":4.9},{"date":"2000-02-01","series":"Other","rate":4.1},{"date":"2000-03-01","series":"Other","rate":4.3},{"date":"2000-04-01","series":"Other","rate":4.2},{"date":"2000-05-01","series":"Other","rate":4.5},{"date":"2000-06-01","series":"Other","rate":3.9},{"date":"2000-07-01","series":"Other","rate":3.7},{"date":"2000-08-01","series":"Other","rate":3.5},{"date":"2000-09-01","series":"Other","rate":4},{"date":"2000-10-01","series":"Other","rate":2.9},{"date":"2000-11-01","series":"Other","rate":3.8},{"date":"2000-12-01","series":"Other","rate":2.9},{"date":"2001-01-01","series":"Other","rate":3.4},{"date":"2001-02-01","series":"Other","rate":4.2},{"date":"2001-03-01","series":"Other","rate":3.4},{"date":"2001-04-01","series":"Other","rate":3.8},{"date":"2001-05-01","series":"Other","rate":3.2},{"date":"2001-06-01","series":"Other","rate":4.6},{"date":"2001-07-01","series":"Other","rate":4.1},{"date":"2001-08-01","series":"Other","rate":4.5},{"date":"2001-09-01","series":"Other","rate":4},{"date":"2001-10-01","series":"Other","rate":4.1},{"date":"2001-11-01","series":"Other","rate":4.2},{"date":"2001-12-01","series":"Other","rate":4.5},{"date":"2002-01-01","series":"Other","rate":5.1},{"date":"2002-02-01","series":"Other","rate":5.6},{"date":"2002-03-01","series":"Other","rate":5.5},{"date":"2002-04-01","series":"Other","rate":4.6},{"date":"2002-05-01","series":"Other","rate":4.6},{"date":"2002-06-01","series":"Other","rate":5.5},{"date":"2002-07-01","series":"Other","rate":5.8},{"date":"2002-08-01","series":"Other","rate":6},{"date":"2002-09-01","series":"Other","rate":4.8},{"date":"2002-10-01","series":"Other","rate":4.6},{"date":"2002-11-01","series":"Other","rate":4.9},{"date":"2002-12-01","series":"Other","rate":4.2},{"date":"2003-01-01","series":"Other","rate":5.3},{"date":"2003-02-01","series":"Other","rate":5.7},{"date":"2003-03-01","series":"Other","rate":6.1},{"date":"2003-04-01","series":"Other","rate":5.5},{"date":"2003-05-01","series":"Other","rate":5.7},{"date":"2003-06-01","series":"Other","rate":5.9},{"date":"2003-07-01","series":"Other","rate":6.6},{"date":"2003-08-01","series":"Other","rate":6.1},{"date":"2003-09-01","series":"Other","rate":5.5},{"date":"2003-10-01","series":"Other","rate":6.1},{"date":"2003-11-01","series":"Other","rate":5.8},{"date":"2003-12-01","series":"Other","rate":4.5},{"date":"2004-01-01","series":"Other","rate":5.3},{"date":"2004-02-01","series":"Other","rate":5.9},{"date":"2004-03-01","series":"Other","rate":5.9},{"date":"2004-04-01","series":"Other","rate":5.6},{"date":"2004-05-01","series":"Other","rate":5.1},{"date":"2004-06-01","series":"Other","rate":5.4},{"date":"2004-07-01","series":"Other","rate":5.6},{"date":"2004-08-01","series":"Other","rate":5.6},{"date":"2004-09-01","series":"Other","rate":4.9},{"date":"2004-10-01","series":"Other","rate":4.8},{"date":"2004-11-01","series":"Other","rate":4.8},{"date":"2004-12-01","series":"Other","rate":4.3},{"date":"2005-01-01","series":"Other","rate":4.7},{"date":"2005-02-01","series":"Other","rate":5.3},{"date":"2005-03-01","series":"Other","rate":5},{"date":"2005-04-01","series":"Other","rate":4.9},{"date":"2005-05-01","series":"Other","rate":5},{"date":"2005-06-01","series":"Other","rate":4.6},{"date":"2005-07-01","series":"Other","rate":4.2},{"date":"2005-08-01","series":"Other","rate":4.8},{"date":"2005-09-01","series":"Other","rate":4.9},{"date":"2005-10-01","series":"Other","rate":5},{"date":"2005-11-01","series":"Other","rate":4.9},{"date":"2005-12-01","series":"Other","rate":4.3},{"date":"2006-01-01","series":"Other","rate":4.9},{"date":"2006-02-01","series":"Other","rate":4.4},{"date":"2006-03-01","series":"Other","rate":4.6},{"date":"2006-04-01","series":"Other","rate":4.1},{"date":"2006-05-01","series":"Other","rate":4.2},{"date":"2006-06-01","series":"Other","rate":4.3},{"date":"2006-07-01","series":"Other","rate":4.7},{"date":"2006-08-01","series":"Other","rate":5.3},{"date":"2006-09-01","series":"Other","rate":5},{"date":"2006-10-01","series":"Other","rate":4.4},{"date":"2006-11-01","series":"Other","rate":5},{"date":"2006-12-01","series":"Other","rate":5.2},{"date":"2007-01-01","series":"Other","rate":4.7},{"date":"2007-02-01","series":"Other","rate":4.3},{"date":"2007-03-01","series":"Other","rate":3.7},{"date":"2007-04-01","series":"Other","rate":3.6},{"date":"2007-05-01","series":"Other","rate":3.9},{"date":"2007-06-01","series":"Other","rate":4},{"date":"2007-07-01","series":"Other","rate":3.8},{"date":"2007-08-01","series":"Other","rate":3.8},{"date":"2007-09-01","series":"Other","rate":4.2},{"date":"2007-10-01","series":"Other","rate":3},{"date":"2007-11-01","series":"Other","rate":4.1},{"date":"2007-12-01","series":"Other","rate":3.9},{"date":"2008-01-01","series":"Other","rate":4.4},{"date":"2008-02-01","series":"Other","rate":5.1},{"date":"2008-03-01","series":"Other","rate":4.6},{"date":"2008-04-01","series":"Other","rate":4},{"date":"2008-05-01","series":"Other","rate":4.4},{"date":"2008-06-01","series":"Other","rate":5},{"date":"2008-07-01","series":"Other","rate":5.2},{"date":"2008-08-01","series":"Other","rate":6.3},{"date":"2008-09-01","series":"Other","rate":5.8},{"date":"2008-10-01","series":"Other","rate":5.3},{"date":"2008-11-01","series":"Other","rate":7},{"date":"2008-12-01","series":"Other","rate":6.1},{"date":"2009-01-01","series":"Other","rate":7.1},{"date":"2009-02-01","series":"Other","rate":7.3},{"date":"2009-03-01","series":"Other","rate":6},{"date":"2009-04-01","series":"Other","rate":6.4},{"date":"2009-05-01","series":"Other","rate":7.5},{"date":"2009-06-01","series":"Other","rate":8.4},{"date":"2009-07-01","series":"Other","rate":7.4},{"date":"2009-08-01","series":"Other","rate":8.2},{"date":"2009-09-01","series":"Other","rate":7.1},{"date":"2009-10-01","series":"Other","rate":8.5},{"date":"2009-11-01","series":"Other","rate":8},{"date":"2009-12-01","series":"Other","rate":8.2},{"date":"2010-01-01","series":"Other","rate":10},{"date":"2010-02-01","series":"Other","rate":9.9},{"date":"2000-01-01","series":"Agriculture","rate":10.3},{"date":"2000-02-01","series":"Agriculture","rate":11.5},{"date":"2000-03-01","series":"Agriculture","rate":10.4},{"date":"2000-04-01","series":"Agriculture","rate":8.9},{"date":"2000-05-01","series":"Agriculture","rate":5.1},{"date":"2000-06-01","series":"Agriculture","rate":6.7},{"date":"2000-07-01","series":"Agriculture","rate":5},{"date":"2000-08-01","series":"Agriculture","rate":7},{"date":"2000-09-01","series":"Agriculture","rate":8.2},{"date":"2000-10-01","series":"Agriculture","rate":8},{"date":"2000-11-01","series":"Agriculture","rate":13.3},{"date":"2000-12-01","series":"Agriculture","rate":13.9},{"date":"2001-01-01","series":"Agriculture","rate":13.8},{"date":"2001-02-01","series":"Agriculture","rate":15.1},{"date":"2001-03-01","series":"Agriculture","rate":19.2},{"date":"2001-04-01","series":"Agriculture","rate":10.4},{"date":"2001-05-01","series":"Agriculture","rate":7.7},{"date":"2001-06-01","series":"Agriculture","rate":9.7},{"date":"2001-07-01","series":"Agriculture","rate":7.6},{"date":"2001-08-01","series":"Agriculture","rate":9.3},{"date":"2001-09-01","series":"Agriculture","rate":7.2},{"date":"2001-10-01","series":"Agriculture","rate":8.7},{"date":"2001-11-01","series":"Agriculture","rate":11.6},{"date":"2001-12-01","series":"Agriculture","rate":15.1},{"date":"2002-01-01","series":"Agriculture","rate":14.8},{"date":"2002-02-01","series":"Agriculture","rate":14.8},{"date":"2002-03-01","series":"Agriculture","rate":19.6},{"date":"2002-04-01","series":"Agriculture","rate":10.8},{"date":"2002-05-01","series":"Agriculture","rate":6.8},{"date":"2002-06-01","series":"Agriculture","rate":6.3},{"date":"2002-07-01","series":"Agriculture","rate":7.3},{"date":"2002-08-01","series":"Agriculture","rate":9},{"date":"2002-09-01","series":"Agriculture","rate":6.3},{"date":"2002-10-01","series":"Agriculture","rate":6.6},{"date":"2002-11-01","series":"Agriculture","rate":11.1},{"date":"2002-12-01","series":"Agriculture","rate":9.8},{"date":"2003-01-01","series":"Agriculture","rate":13.2},{"date":"2003-02-01","series":"Agriculture","rate":14.7},{"date":"2003-03-01","series":"Agriculture","rate":12.9},{"date":"2003-04-01","series":"Agriculture","rate":12},{"date":"2003-05-01","series":"Agriculture","rate":10.2},{"date":"2003-06-01","series":"Agriculture","rate":6.9},{"date":"2003-07-01","series":"Agriculture","rate":8.2},{"date":"2003-08-01","series":"Agriculture","rate":10.7},{"date":"2003-09-01","series":"Agriculture","rate":6.2},{"date":"2003-10-01","series":"Agriculture","rate":8.5},{"date":"2003-11-01","series":"Agriculture","rate":10.3},{"date":"2003-12-01","series":"Agriculture","rate":10.9},{"date":"2004-01-01","series":"Agriculture","rate":15.1},{"date":"2004-02-01","series":"Agriculture","rate":14.2},{"date":"2004-03-01","series":"Agriculture","rate":12.7},{"date":"2004-04-01","series":"Agriculture","rate":8.3},{"date":"2004-05-01","series":"Agriculture","rate":7.4},{"date":"2004-06-01","series":"Agriculture","rate":7.6},{"date":"2004-07-01","series":"Agriculture","rate":10},{"date":"2004-08-01","series":"Agriculture","rate":7},{"date":"2004-09-01","series":"Agriculture","rate":6.4},{"date":"2004-10-01","series":"Agriculture","rate":7.7},{"date":"2004-11-01","series":"Agriculture","rate":10.5},{"date":"2004-12-01","series":"Agriculture","rate":14},{"date":"2005-01-01","series":"Agriculture","rate":13.2},{"date":"2005-02-01","series":"Agriculture","rate":9.9},{"date":"2005-03-01","series":"Agriculture","rate":11.8},{"date":"2005-04-01","series":"Agriculture","rate":6.9},{"date":"2005-05-01","series":"Agriculture","rate":5.3},{"date":"2005-06-01","series":"Agriculture","rate":5.2},{"date":"2005-07-01","series":"Agriculture","rate":4.7},{"date":"2005-08-01","series":"Agriculture","rate":7.1},{"date":"2005-09-01","series":"Agriculture","rate":9.5},{"date":"2005-10-01","series":"Agriculture","rate":6.7},{"date":"2005-11-01","series":"Agriculture","rate":9.6},{"date":"2005-12-01","series":"Agriculture","rate":11.1},{"date":"2006-01-01","series":"Agriculture","rate":11.5},{"date":"2006-02-01","series":"Agriculture","rate":11.8},{"date":"2006-03-01","series":"Agriculture","rate":9.8},{"date":"2006-04-01","series":"Agriculture","rate":6.2},{"date":"2006-05-01","series":"Agriculture","rate":6},{"date":"2006-06-01","series":"Agriculture","rate":2.4},{"date":"2006-07-01","series":"Agriculture","rate":3.6},{"date":"2006-08-01","series":"Agriculture","rate":5.3},{"date":"2006-09-01","series":"Agriculture","rate":5.9},{"date":"2006-10-01","series":"Agriculture","rate":5.8},{"date":"2006-11-01","series":"Agriculture","rate":9.6},{"date":"2006-12-01","series":"Agriculture","rate":10.4},{"date":"2007-01-01","series":"Agriculture","rate":10},{"date":"2007-02-01","series":"Agriculture","rate":9.6},{"date":"2007-03-01","series":"Agriculture","rate":9.7},{"date":"2007-04-01","series":"Agriculture","rate":5.7},{"date":"2007-05-01","series":"Agriculture","rate":5.1},{"date":"2007-06-01","series":"Agriculture","rate":4.5},{"date":"2007-07-01","series":"Agriculture","rate":3.1},{"date":"2007-08-01","series":"Agriculture","rate":4.7},{"date":"2007-09-01","series":"Agriculture","rate":4.3},{"date":"2007-10-01","series":"Agriculture","rate":4},{"date":"2007-11-01","series":"Agriculture","rate":6.6},{"date":"2007-12-01","series":"Agriculture","rate":7.5},{"date":"2008-01-01","series":"Agriculture","rate":9.5},{"date":"2008-02-01","series":"Agriculture","rate":10.9},{"date":"2008-03-01","series":"Agriculture","rate":13.2},{"date":"2008-04-01","series":"Agriculture","rate":8.6},{"date":"2008-05-01","series":"Agriculture","rate":7.4},{"date":"2008-06-01","series":"Agriculture","rate":6.1},{"date":"2008-07-01","series":"Agriculture","rate":8.5},{"date":"2008-08-01","series":"Agriculture","rate":7.6},{"date":"2008-09-01","series":"Agriculture","rate":5.8},{"date":"2008-10-01","series":"Agriculture","rate":7.1},{"date":"2008-11-01","series":"Agriculture","rate":9.5},{"date":"2008-12-01","series":"Agriculture","rate":17},{"date":"2009-01-01","series":"Agriculture","rate":18.7},{"date":"2009-02-01","series":"Agriculture","rate":18.8},{"date":"2009-03-01","series":"Agriculture","rate":19},{"date":"2009-04-01","series":"Agriculture","rate":13.5},{"date":"2009-05-01","series":"Agriculture","rate":10},{"date":"2009-06-01","series":"Agriculture","rate":12.3},{"date":"2009-07-01","series":"Agriculture","rate":12.1},{"date":"2009-08-01","series":"Agriculture","rate":13.1},{"date":"2009-09-01","series":"Agriculture","rate":11.1},{"date":"2009-10-01","series":"Agriculture","rate":11.8},{"date":"2009-11-01","series":"Agriculture","rate":12.6},{"date":"2009-12-01","series":"Agriculture","rate":19.7},{"date":"2010-01-01","series":"Agriculture","rate":21.3},{"date":"2010-02-01","series":"Agriculture","rate":18.8},{"date":"2000-01-01","series":"Self-employed","rate":2.3},{"date":"2000-02-01","series":"Self-employed","rate":2.5},{"date":"2000-03-01","series":"Self-employed","rate":2},{"date":"2000-04-01","series":"Self-employed","rate":2},{"date":"2000-05-01","series":"Self-employed","rate":1.9},{"date":"2000-06-01","series":"Self-employed","rate":1.8},{"date":"2000-07-01","series":"Self-employed","rate":2.1},{"date":"2000-08-01","series":"Self-employed","rate":1.7},{"date":"2000-09-01","series":"Self-employed","rate":2},{"date":"2000-10-01","series":"Self-employed","rate":2.2},{"date":"2000-11-01","series":"Self-employed","rate":2.7},{"date":"2000-12-01","series":"Self-employed","rate":1.8},{"date":"2001-01-01","series":"Self-employed","rate":1.9},{"date":"2001-02-01","series":"Self-employed","rate":2},{"date":"2001-03-01","series":"Self-employed","rate":1.7},{"date":"2001-04-01","series":"Self-employed","rate":2.1},{"date":"2001-05-01","series":"Self-employed","rate":2},{"date":"2001-06-01","series":"Self-employed","rate":1.7},{"date":"2001-07-01","series":"Self-employed","rate":1.8},{"date":"2001-08-01","series":"Self-employed","rate":2.3},{"date":"2001-09-01","series":"Self-employed","rate":2.4},{"date":"2001-10-01","series":"Self-employed","rate":2.3},{"date":"2001-11-01","series":"Self-employed","rate":2.3},{"date":"2001-12-01","series":"Self-employed","rate":2.5},{"date":"2002-01-01","series":"Self-employed","rate":2.7},{"date":"2002-02-01","series":"Self-employed","rate":2.6},{"date":"2002-03-01","series":"Self-employed","rate":2.2},{"date":"2002-04-01","series":"Self-employed","rate":2.5},{"date":"2002-05-01","series":"Self-employed","rate":2.6},{"date":"2002-06-01","series":"Self-employed","rate":2.4},{"date":"2002-07-01","series":"Self-employed","rate":2.4},{"date":"2002-08-01","series":"Self-employed","rate":2.6},{"date":"2002-09-01","series":"Self-employed","rate":2.5},{"date":"2002-10-01","series":"Self-employed","rate":2.6},{"date":"2002-11-01","series":"Self-employed","rate":2.8},{"date":"2002-12-01","series":"Self-employed","rate":3.1},{"date":"2003-01-01","series":"Self-employed","rate":3},{"date":"2003-02-01","series":"Self-employed","rate":3},{"date":"2003-03-01","series":"Self-employed","rate":2.7},{"date":"2003-04-01","series":"Self-employed","rate":2.4},{"date":"2003-05-01","series":"Self-employed","rate":2.6},{"date":"2003-06-01","series":"Self-employed","rate":2.7},{"date":"2003-07-01","series":"Self-employed","rate":2.5},{"date":"2003-08-01","series":"Self-employed","rate":2.7},{"date":"2003-09-01","series":"Self-employed","rate":2.6},{"date":"2003-10-01","series":"Self-employed","rate":3.1},{"date":"2003-11-01","series":"Self-employed","rate":2.8},{"date":"2003-12-01","series":"Self-employed","rate":2.8},{"date":"2004-01-01","series":"Self-employed","rate":2.8},{"date":"2004-02-01","series":"Self-employed","rate":2.5},{"date":"2004-03-01","series":"Self-employed","rate":2.5},{"date":"2004-04-01","series":"Self-employed","rate":2.3},{"date":"2004-05-01","series":"Self-employed","rate":2.7},{"date":"2004-06-01","series":"Self-employed","rate":2.8},{"date":"2004-07-01","series":"Self-employed","rate":2.6},{"date":"2004-08-01","series":"Self-employed","rate":2.9},{"date":"2004-09-01","series":"Self-employed","rate":3.3},{"date":"2004-10-01","series":"Self-employed","rate":2.7},{"date":"2004-11-01","series":"Self-employed","rate":3.2},{"date":"2004-12-01","series":"Self-employed","rate":3.2},{"date":"2005-01-01","series":"Self-employed","rate":3.2},{"date":"2005-02-01","series":"Self-employed","rate":3.4},{"date":"2005-03-01","series":"Self-employed","rate":2.9},{"date":"2005-04-01","series":"Self-employed","rate":2.4},{"date":"2005-05-01","series":"Self-employed","rate":2.7},{"date":"2005-06-01","series":"Self-employed","rate":2.4},{"date":"2005-07-01","series":"Self-employed","rate":2.5},{"date":"2005-08-01","series":"Self-employed","rate":2.3},{"date":"2005-09-01","series":"Self-employed","rate":2.6},{"date":"2005-10-01","series":"Self-employed","rate":2.3},{"date":"2005-11-01","series":"Self-employed","rate":3},{"date":"2005-12-01","series":"Self-employed","rate":3.1},{"date":"2006-01-01","series":"Self-employed","rate":3.2},{"date":"2006-02-01","series":"Self-employed","rate":3.1},{"date":"2006-03-01","series":"Self-employed","rate":2.8},{"date":"2006-04-01","series":"Self-employed","rate":3.1},{"date":"2006-05-01","series":"Self-employed","rate":2.3},{"date":"2006-06-01","series":"Self-employed","rate":2.2},{"date":"2006-07-01","series":"Self-employed","rate":2.6},{"date":"2006-08-01","series":"Self-employed","rate":2.7},{"date":"2006-09-01","series":"Self-employed","rate":2.7},{"date":"2006-10-01","series":"Self-employed","rate":2.5},{"date":"2006-11-01","series":"Self-employed","rate":2.3},{"date":"2006-12-01","series":"Self-employed","rate":2.6},{"date":"2007-01-01","series":"Self-employed","rate":3.5},{"date":"2007-02-01","series":"Self-employed","rate":2.8},{"date":"2007-03-01","series":"Self-employed","rate":2.8},{"date":"2007-04-01","series":"Self-employed","rate":2.2},{"date":"2007-05-01","series":"Self-employed","rate":2.5},{"date":"2007-06-01","series":"Self-employed","rate":2.3},{"date":"2007-07-01","series":"Self-employed","rate":2.9},{"date":"2007-08-01","series":"Self-employed","rate":2.9},{"date":"2007-09-01","series":"Self-employed","rate":2.8},{"date":"2007-10-01","series":"Self-employed","rate":3.1},{"date":"2007-11-01","series":"Self-employed","rate":3.2},{"date":"2007-12-01","series":"Self-employed","rate":3.2},{"date":"2008-01-01","series":"Self-employed","rate":3.3},{"date":"2008-02-01","series":"Self-employed","rate":3.2},{"date":"2008-03-01","series":"Self-employed","rate":3.3},{"date":"2008-04-01","series":"Self-employed","rate":3.2},{"date":"2008-05-01","series":"Self-employed","rate":3.4},{"date":"2008-06-01","series":"Self-employed","rate":3.3},{"date":"2008-07-01","series":"Self-employed","rate":3.1},{"date":"2008-08-01","series":"Self-employed","rate":3.5},{"date":"2008-09-01","series":"Self-employed","rate":3.9},{"date":"2008-10-01","series":"Self-employed","rate":3.9},{"date":"2008-11-01","series":"Self-employed","rate":4.1},{"date":"2008-12-01","series":"Self-employed","rate":5.5},{"date":"2009-01-01","series":"Self-employed","rate":6.5},{"date":"2009-02-01","series":"Self-employed","rate":5.7},{"date":"2009-03-01","series":"Self-employed","rate":5.9},{"date":"2009-04-01","series":"Self-employed","rate":4.6},{"date":"2009-05-01","series":"Self-employed","rate":5},{"date":"2009-06-01","series":"Self-employed","rate":4.4},{"date":"2009-07-01","series":"Self-employed","rate":5.2},{"date":"2009-08-01","series":"Self-employed","rate":5.3},{"date":"2009-09-01","series":"Self-employed","rate":5.9},{"date":"2009-10-01","series":"Self-employed","rate":5.9},{"date":"2009-11-01","series":"Self-employed","rate":5.7},{"date":"2009-12-01","series":"Self-employed","rate":5.9},{"date":"2010-01-01","series":"Self-employed","rate":7.2},{"date":"2010-02-01","series":"Self-employed","rate":6.5}],"metadata":{"date":{"type":"date","semanticType":"YearMonth"},"series":{"type":"string","semanticType":"String"},"rate":{"type":"number","semanticType":"Percentage"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n","source":["unemployment-across-industries"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nCompare **unemployment trends** across all industries from 2000-2010"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to compare unemployment trends across all industries from 2000-2010 to understand how different sectors were affected over time.\",\n \"display_instruction\": \"Compare **unemployment rates** across **industries** over time\",\n \"recommendation\": \"A line chart with time on x-axis and unemployment rate on y-axis, with different colored lines for each industry series, will effectively show the trends and allow comparison of how unemployment evolved across different sectors during this period.\",\n \"output_fields\": [\"date\", \"series\", \"rate\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n```"}],"trigger":{"tableId":"unemployment-across-industries","sourceTableIds":["unemployment-across-industries"],"instruction":"Compare **unemployment trends** across all industries from 2000-2010","displayInstruction":"Compare **unemployment rates** across **industries** over time","chart":{"id":"chart-1760745546913","chartType":"Auto","encodingMap":{},"tableRef":"unemployment-across-industries","saved":false,"source":"trigger","unread":true},"resultTableId":"table-544555"},"explanation":{"agent":"CodeExplanationAgent","code":"- Convert the **date** field from timestamp format to a standardized string format (`YYYY-MM-DD`) for cleaner visualization\n- Select and retain only three key fields: **date**, **series** (industry name), and **rate** (unemployment rate percentage)\n- Return a simplified dataset focused on tracking unemployment rates across different industries over time","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Convert the **date** field from timestamp format to a standardized string format (`YYYY-MM-DD`) for cleaner visualization\n- Select and retain only three key fields: **date**, **series** (industry name), and **rate** (unemployment rate percentage)\n- Return a simplified dataset focused on tracking unemployment rates across different industries over time\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-540763","displayId":"unemployment-rate","names":["avg_rate","month","month_name","series"],"rows":[{"avg_rate":13.7636363636,"month":1,"month_name":"Jan","series":"Agriculture"},{"avg_rate":13.6454545455,"month":2,"month_name":"Feb","series":"Agriculture"},{"avg_rate":13.83,"month":3,"month_name":"Mar","series":"Agriculture"},{"avg_rate":9.13,"month":4,"month_name":"Apr","series":"Agriculture"},{"avg_rate":7.1,"month":5,"month_name":"May","series":"Agriculture"},{"avg_rate":6.77,"month":6,"month_name":"Jun","series":"Agriculture"},{"avg_rate":7.01,"month":7,"month_name":"Jul","series":"Agriculture"},{"avg_rate":8.08,"month":8,"month_name":"Aug","series":"Agriculture"},{"avg_rate":7.09,"month":9,"month_name":"Sep","series":"Agriculture"},{"avg_rate":7.49,"month":10,"month_name":"Oct","series":"Agriculture"},{"avg_rate":10.47,"month":11,"month_name":"Nov","series":"Agriculture"},{"avg_rate":12.94,"month":12,"month_name":"Dec","series":"Agriculture"},{"avg_rate":7.8636363636,"month":1,"month_name":"Jan","series":"Business services"},{"avg_rate":7.6454545455,"month":2,"month_name":"Feb","series":"Business services"},{"avg_rate":7.13,"month":3,"month_name":"Mar","series":"Business services"},{"avg_rate":6.27,"month":4,"month_name":"Apr","series":"Business services"},{"avg_rate":6.6,"month":5,"month_name":"May","series":"Business services"},{"avg_rate":6.72,"month":6,"month_name":"Jun","series":"Business services"},{"avg_rate":6.74,"month":7,"month_name":"Jul","series":"Business services"},{"avg_rate":6.57,"month":8,"month_name":"Aug","series":"Business services"},{"avg_rate":6.79,"month":9,"month_name":"Sep","series":"Business services"},{"avg_rate":6.71,"month":10,"month_name":"Oct","series":"Business services"},{"avg_rate":6.75,"month":11,"month_name":"Nov","series":"Business services"},{"avg_rate":7.08,"month":12,"month_name":"Dec","series":"Business services"},{"avg_rate":12.9090909091,"month":1,"month_name":"Jan","series":"Construction"},{"avg_rate":13.6,"month":2,"month_name":"Feb","series":"Construction"},{"avg_rate":11.29,"month":3,"month_name":"Mar","series":"Construction"},{"avg_rate":9.45,"month":4,"month_name":"Apr","series":"Construction"},{"avg_rate":8.12,"month":5,"month_name":"May","series":"Construction"},{"avg_rate":7.43,"month":6,"month_name":"Jun","series":"Construction"},{"avg_rate":7.35,"month":7,"month_name":"Jul","series":"Construction"},{"avg_rate":7.3,"month":8,"month_name":"Aug","series":"Construction"},{"avg_rate":7.56,"month":9,"month_name":"Sep","series":"Construction"},{"avg_rate":7.84,"month":10,"month_name":"Oct","series":"Construction"},{"avg_rate":8.7,"month":11,"month_name":"Nov","series":"Construction"},{"avg_rate":10.8,"month":12,"month_name":"Dec","series":"Construction"},{"avg_rate":3.3636363636,"month":1,"month_name":"Jan","series":"Education and Health"},{"avg_rate":3.2909090909,"month":2,"month_name":"Feb","series":"Education and Health"},{"avg_rate":3.11,"month":3,"month_name":"Mar","series":"Education and Health"},{"avg_rate":3.04,"month":4,"month_name":"Apr","series":"Education and Health"},{"avg_rate":3.29,"month":5,"month_name":"May","series":"Education and Health"},{"avg_rate":3.82,"month":6,"month_name":"Jun","series":"Education and Health"},{"avg_rate":3.87,"month":7,"month_name":"Jul","series":"Education and Health"},{"avg_rate":3.89,"month":8,"month_name":"Aug","series":"Education and Health"},{"avg_rate":3.54,"month":9,"month_name":"Sep","series":"Education and Health"},{"avg_rate":3.33,"month":10,"month_name":"Oct","series":"Education and Health"},{"avg_rate":3.33,"month":11,"month_name":"Nov","series":"Education and Health"},{"avg_rate":3.19,"month":12,"month_name":"Dec","series":"Education and Health"},{"avg_rate":3.5727272727,"month":1,"month_name":"Jan","series":"Finance"},{"avg_rate":3.8909090909,"month":2,"month_name":"Feb","series":"Finance"},{"avg_rate":3.45,"month":3,"month_name":"Mar","series":"Finance"},{"avg_rate":3.28,"month":4,"month_name":"Apr","series":"Finance"},{"avg_rate":3.35,"month":5,"month_name":"May","series":"Finance"},{"avg_rate":3.54,"month":6,"month_name":"Jun","series":"Finance"},{"avg_rate":3.52,"month":7,"month_name":"Jul","series":"Finance"},{"avg_rate":3.61,"month":8,"month_name":"Aug","series":"Finance"},{"avg_rate":3.54,"month":9,"month_name":"Sep","series":"Finance"},{"avg_rate":3.6,"month":10,"month_name":"Oct","series":"Finance"},{"avg_rate":3.55,"month":11,"month_name":"Nov","series":"Finance"},{"avg_rate":3.54,"month":12,"month_name":"Dec","series":"Finance"},{"avg_rate":2.6,"month":1,"month_name":"Jan","series":"Government"},{"avg_rate":2.3272727273,"month":2,"month_name":"Feb","series":"Government"},{"avg_rate":2.19,"month":3,"month_name":"Mar","series":"Government"},{"avg_rate":2.02,"month":4,"month_name":"Apr","series":"Government"},{"avg_rate":2.2,"month":5,"month_name":"May","series":"Government"},{"avg_rate":3.1,"month":6,"month_name":"Jun","series":"Government"},{"avg_rate":3.49,"month":7,"month_name":"Jul","series":"Government"},{"avg_rate":3.36,"month":8,"month_name":"Aug","series":"Government"},{"avg_rate":2.61,"month":9,"month_name":"Sep","series":"Government"},{"avg_rate":2.45,"month":10,"month_name":"Oct","series":"Government"},{"avg_rate":2.37,"month":11,"month_name":"Nov","series":"Government"},{"avg_rate":2.28,"month":12,"month_name":"Dec","series":"Government"},{"avg_rate":5.7727272727,"month":1,"month_name":"Jan","series":"Information"},{"avg_rate":5.9,"month":2,"month_name":"Feb","series":"Information"},{"avg_rate":5.36,"month":3,"month_name":"Mar","series":"Information"},{"avg_rate":5.23,"month":4,"month_name":"Apr","series":"Information"},{"avg_rate":5.48,"month":5,"month_name":"May","series":"Information"},{"avg_rate":5.26,"month":6,"month_name":"Jun","series":"Information"},{"avg_rate":5.32,"month":7,"month_name":"Jul","series":"Information"},{"avg_rate":5.55,"month":8,"month_name":"Aug","series":"Information"},{"avg_rate":5.73,"month":9,"month_name":"Sep","series":"Information"},{"avg_rate":5.05,"month":10,"month_name":"Oct","series":"Information"},{"avg_rate":5.47,"month":11,"month_name":"Nov","series":"Information"},{"avg_rate":5.65,"month":12,"month_name":"Dec","series":"Information"},{"avg_rate":9.3454545455,"month":1,"month_name":"Jan","series":"Leisure and hospitality"},{"avg_rate":9.1363636364,"month":2,"month_name":"Feb","series":"Leisure and hospitality"},{"avg_rate":8.37,"month":3,"month_name":"Mar","series":"Leisure and hospitality"},{"avg_rate":7.7,"month":4,"month_name":"Apr","series":"Leisure and hospitality"},{"avg_rate":7.93,"month":5,"month_name":"May","series":"Leisure and hospitality"},{"avg_rate":8.42,"month":6,"month_name":"Jun","series":"Leisure and hospitality"},{"avg_rate":7.95,"month":7,"month_name":"Jul","series":"Leisure and hospitality"},{"avg_rate":7.92,"month":8,"month_name":"Aug","series":"Leisure and hospitality"},{"avg_rate":7.93,"month":9,"month_name":"Sep","series":"Leisure and hospitality"},{"avg_rate":8.11,"month":10,"month_name":"Oct","series":"Leisure and hospitality"},{"avg_rate":8.59,"month":11,"month_name":"Nov","series":"Leisure and hospitality"},{"avg_rate":8.2,"month":12,"month_name":"Dec","series":"Leisure and hospitality"},{"avg_rate":6.6090909091,"month":1,"month_name":"Jan","series":"Manufacturing"},{"avg_rate":6.5,"month":2,"month_name":"Feb","series":"Manufacturing"},{"avg_rate":6,"month":3,"month_name":"Mar","series":"Manufacturing"},{"avg_rate":5.89,"month":4,"month_name":"Apr","series":"Manufacturing"},{"avg_rate":5.72,"month":5,"month_name":"May","series":"Manufacturing"},{"avg_rate":5.73,"month":6,"month_name":"Jun","series":"Manufacturing"},{"avg_rate":6,"month":7,"month_name":"Jul","series":"Manufacturing"},{"avg_rate":5.66,"month":8,"month_name":"Aug","series":"Manufacturing"},{"avg_rate":5.72,"month":9,"month_name":"Sep","series":"Manufacturing"},{"avg_rate":5.78,"month":10,"month_name":"Oct","series":"Manufacturing"},{"avg_rate":6.02,"month":11,"month_name":"Nov","series":"Manufacturing"},{"avg_rate":6.05,"month":12,"month_name":"Dec","series":"Manufacturing"},{"avg_rate":5.6,"month":1,"month_name":"Jan","series":"Mining and Extraction"},{"avg_rate":5.7454545455,"month":2,"month_name":"Feb","series":"Mining and Extraction"},{"avg_rate":5.14,"month":3,"month_name":"Mar","series":"Mining and Extraction"},{"avg_rate":5.64,"month":4,"month_name":"Apr","series":"Mining and Extraction"},{"avg_rate":5.28,"month":5,"month_name":"May","series":"Mining and Extraction"},{"avg_rate":5.57,"month":6,"month_name":"Jun","series":"Mining and Extraction"},{"avg_rate":4.95,"month":7,"month_name":"Jul","series":"Mining and Extraction"},{"avg_rate":4.5,"month":8,"month_name":"Aug","series":"Mining and Extraction"},{"avg_rate":4.48,"month":9,"month_name":"Sep","series":"Mining and Extraction"},{"avg_rate":4.41,"month":10,"month_name":"Oct","series":"Mining and Extraction"},{"avg_rate":4.4,"month":11,"month_name":"Nov","series":"Mining and Extraction"},{"avg_rate":5.23,"month":12,"month_name":"Dec","series":"Mining and Extraction"},{"avg_rate":5.4363636364,"month":1,"month_name":"Jan","series":"Other"},{"avg_rate":5.6181818182,"month":2,"month_name":"Feb","series":"Other"},{"avg_rate":4.91,"month":3,"month_name":"Mar","series":"Other"},{"avg_rate":4.67,"month":4,"month_name":"Apr","series":"Other"},{"avg_rate":4.81,"month":5,"month_name":"May","series":"Other"},{"avg_rate":5.16,"month":6,"month_name":"Jun","series":"Other"},{"avg_rate":5.11,"month":7,"month_name":"Jul","series":"Other"},{"avg_rate":5.41,"month":8,"month_name":"Aug","series":"Other"},{"avg_rate":5.02,"month":9,"month_name":"Sep","series":"Other"},{"avg_rate":4.87,"month":10,"month_name":"Oct","series":"Other"},{"avg_rate":5.25,"month":11,"month_name":"Nov","series":"Other"},{"avg_rate":4.81,"month":12,"month_name":"Dec","series":"Other"},{"avg_rate":3.6,"month":1,"month_name":"Jan","series":"Self-employed"},{"avg_rate":3.3909090909,"month":2,"month_name":"Feb","series":"Self-employed"},{"avg_rate":2.88,"month":3,"month_name":"Mar","series":"Self-employed"},{"avg_rate":2.68,"month":4,"month_name":"Apr","series":"Self-employed"},{"avg_rate":2.77,"month":5,"month_name":"May","series":"Self-employed"},{"avg_rate":2.6,"month":6,"month_name":"Jun","series":"Self-employed"},{"avg_rate":2.77,"month":7,"month_name":"Jul","series":"Self-employed"},{"avg_rate":2.89,"month":8,"month_name":"Aug","series":"Self-employed"},{"avg_rate":3.07,"month":9,"month_name":"Sep","series":"Self-employed"},{"avg_rate":3.06,"month":10,"month_name":"Oct","series":"Self-employed"},{"avg_rate":3.21,"month":11,"month_name":"Nov","series":"Self-employed"},{"avg_rate":3.37,"month":12,"month_name":"Dec","series":"Self-employed"},{"avg_rate":5.7909090909,"month":1,"month_name":"Jan","series":"Transportation and Utilities"},{"avg_rate":5.6181818182,"month":2,"month_name":"Feb","series":"Transportation and Utilities"},{"avg_rate":5.1,"month":3,"month_name":"Mar","series":"Transportation and Utilities"},{"avg_rate":4.79,"month":4,"month_name":"Apr","series":"Transportation and Utilities"},{"avg_rate":4.5,"month":5,"month_name":"May","series":"Transportation and Utilities"},{"avg_rate":4.82,"month":6,"month_name":"Jun","series":"Transportation and Utilities"},{"avg_rate":5.04,"month":7,"month_name":"Jul","series":"Transportation and Utilities"},{"avg_rate":4.58,"month":8,"month_name":"Aug","series":"Transportation and Utilities"},{"avg_rate":4.65,"month":9,"month_name":"Sep","series":"Transportation and Utilities"},{"avg_rate":4.8,"month":10,"month_name":"Oct","series":"Transportation and Utilities"},{"avg_rate":4.58,"month":11,"month_name":"Nov","series":"Transportation and Utilities"},{"avg_rate":4.8,"month":12,"month_name":"Dec","series":"Transportation and Utilities"},{"avg_rate":6.4818181818,"month":1,"month_name":"Jan","series":"Wholesale and Retail Trade"},{"avg_rate":6.3727272727,"month":2,"month_name":"Feb","series":"Wholesale and Retail Trade"},{"avg_rate":5.86,"month":3,"month_name":"Mar","series":"Wholesale and Retail Trade"},{"avg_rate":5.46,"month":4,"month_name":"Apr","series":"Wholesale and Retail Trade"},{"avg_rate":5.49,"month":5,"month_name":"May","series":"Wholesale and Retail Trade"},{"avg_rate":5.84,"month":6,"month_name":"Jun","series":"Wholesale and Retail Trade"},{"avg_rate":5.75,"month":7,"month_name":"Jul","series":"Wholesale and Retail Trade"},{"avg_rate":5.61,"month":8,"month_name":"Aug","series":"Wholesale and Retail Trade"},{"avg_rate":5.63,"month":9,"month_name":"Sep","series":"Wholesale and Retail Trade"},{"avg_rate":5.56,"month":10,"month_name":"Oct","series":"Wholesale and Retail Trade"},{"avg_rate":5.52,"month":11,"month_name":"Nov","series":"Wholesale and Retail Trade"},{"avg_rate":5.49,"month":12,"month_name":"Dec","series":"Wholesale and Retail Trade"}],"metadata":{"avg_rate":{"type":"number","semanticType":"Percentage"},"month":{"type":"number","semanticType":"Month"},"month_name":{"type":"string","semanticType":"Month","levels":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]},"series":{"type":"string","semanticType":"String"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series (industry)\n transformed_df = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Add month name for better readability\n month_names = {\n 1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun',\n 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'\n }\n transformed_df['month_name'] = transformed_df['month'].map(month_names)\n \n return transformed_df\n","source":["unemployment-across-industries"],"dialog":[{"content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nHow does **seasonal variation** in unemployment differ across **industries**?","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Analyze how seasonal variation in unemployment differs across industries by examining the cyclical patterns in unemployment rates throughout the year for different industry sectors.\",\n \"display_instruction\": \"Compare seasonal unemployment patterns across **industries**\",\n \"recommendation\": \"To visualize seasonal variation across industries, we should calculate average unemployment rates by month for each industry series. This will reveal the typical seasonal patterns and allow comparison of how different industries experience seasonal fluctuations in unemployment throughout the year.\",\n \"output_fields\": [\"series\", \"month\", \"avg_rate\", \"month_name\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"month\",\n \"y\": \"avg_rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series (industry)\n transformed_df = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Add month name for better readability\n month_names = {\n 1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun',\n 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'\n }\n transformed_df['month_name'] = transformed_df['month'].map(month_names)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"unemployment-across-industries","sourceTableIds":["unemployment-across-industries"],"instruction":"How does **seasonal variation** in unemployment differ across **industries**?","displayInstruction":"Compare seasonal unemployment patterns across **industries**","chart":{"id":"chart-1760745541760","chartType":"Auto","encodingMap":{},"tableRef":"unemployment-across-industries","saved":false,"source":"trigger","unread":true},"resultTableId":"table-540763"},"explanation":{"agent":"CodeExplanationAgent","code":"- Group the unemployment data by **series** (industry) and **month**\n- Calculate the **mean** of the **rate** field for each industry-month combination, creating a new field **avg_rate**\n- Map numeric **month** values (1-12) to their abbreviated names (**Jan**, **Feb**, **Mar**, etc.) and store in **month_name** field for improved readability\n- Return the aggregated dataset containing average unemployment rates per industry per month across all years in the data","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series (industry)\n transformed_df = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Add month name for better readability\n month_names = {\n 1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun',\n 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'\n }\n transformed_df['month_name'] = transformed_df['month'].map(month_names)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Group the unemployment data by **series** (industry) and **month**\n- Calculate the **mean** of the **rate** field for each industry-month combination, creating a new field **avg_rate**\n- Map numeric **month** values (1-12) to their abbreviated names (**Jan**, **Feb**, **Mar**, etc.) and store in **month_name** field for improved readability\n- Return the aggregated dataset containing average unemployment rates per industry per month across all years in the data\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-552276","displayId":"unemp-by-sector","names":["series","rate_2008","rate_2009","rate_increase"],"rows":[{"series":"Mining and Extraction","rate_2008":3.0833333333,"rate_2009":11.6583333333,"rate_increase":8.575},{"series":"Construction","rate_2008":10.6,"rate_2009":19.05,"rate_increase":8.45},{"series":"Manufacturing","rate_2008":5.7583333333,"rate_2009":12.075,"rate_increase":6.3166666667},{"series":"Agriculture","rate_2008":9.2666666667,"rate_2009":14.3916666667,"rate_increase":5.125},{"series":"Business services","rate_2008":6.5583333333,"rate_2009":10.8,"rate_increase":4.2416666667},{"series":"Information","rate_2008":5.0166666667,"rate_2009":9.225,"rate_increase":4.2083333333},{"series":"Transportation and Utilities","rate_2008":5.1333333333,"rate_2009":8.8833333333,"rate_increase":3.75},{"series":"Wholesale and Retail Trade","rate_2008":5.8416666667,"rate_2009":9.0333333333,"rate_increase":3.1916666667},{"series":"Leisure and hospitality","rate_2008":8.6416666667,"rate_2009":11.6833333333,"rate_increase":3.0416666667},{"series":"Finance","rate_2008":3.95,"rate_2009":6.4,"rate_increase":2.45},{"series":"Other","rate_2008":5.2666666667,"rate_2009":7.5083333333,"rate_increase":2.2416666667},{"series":"Self-employed","rate_2008":3.6416666667,"rate_2009":5.5,"rate_increase":1.8583333333},{"series":"Education and Health","rate_2008":3.4916666667,"rate_2009":5.2666666667,"rate_increase":1.775},{"series":"Government","rate_2008":2.4416666667,"rate_2009":3.6166666667,"rate_increase":1.175}],"metadata":{"series":{"type":"string","semanticType":"String"},"rate_2008":{"type":"number","semanticType":"Percentage"},"rate_2009":{"type":"number","semanticType":"Percentage"},"rate_increase":{"type":"number","semanticType":"Percentage"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter data for years 2008 and 2009\n df_2008_2009 = df_unemployment[df_unemployment['year'].isin([2008, 2009])].copy()\n \n # Calculate average rate for each industry in 2008 and 2009\n df_2008 = df_2008_2009[df_2008_2009['year'] == 2008].groupby('series')['rate'].mean().reset_index()\n df_2008.columns = ['series', 'rate_2008']\n \n df_2009 = df_2008_2009[df_2008_2009['year'] == 2009].groupby('series')['rate'].mean().reset_index()\n df_2009.columns = ['series', 'rate_2009']\n \n # Merge and calculate the increase\n transformed_df = df_2008.merge(df_2009, on='series')\n transformed_df['rate_increase'] = transformed_df['rate_2009'] - transformed_df['rate_2008']\n \n # Sort by rate increase in descending order\n transformed_df = transformed_df.sort_values('rate_increase', ascending=False).reset_index(drop=True)\n \n return transformed_df\n","source":["unemployment-across-industries"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nCompare **unemployment trends** across all industries from 2000-2010"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to compare unemployment trends across all industries from 2000-2010 to understand how different sectors were affected over time.\",\n \"display_instruction\": \"Compare **unemployment rates** across **industries** over time\",\n \"recommendation\": \"A line chart with time on x-axis and unemployment rate on y-axis, with different colored lines for each industry series, will effectively show the trends and allow comparison of how unemployment evolved across different sectors during this period.\",\n \"output_fields\": [\"date\", \"series\", \"rate\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date series rate\n0 2000-01-01 Government 2.1\n1 2000-02-01 Government 2.0\n2 2000-03-01 Government 1.5\n3 2000-04-01 Government 1.3\n4 2000-05-01 Government 1.9\n5 2000-06-01 Government 3.1\n6 2000-07-01 Government 2.9\n7 2000-08-01 Government 3.1\n8 2000-09-01 Government 2.1\n9 2000-10-01 Government 2.0\n......\n\nUpdate the code above based on the following instruction:\n\nWhich industries showed the **sharpest increases** in unemployment during **2008-2009**?"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to identify which industries experienced the sharpest increases in unemployment rates during the 2008-2009 financial crisis period by calculating the change in unemployment rate for each industry.\",\n \"display_instruction\": \"Identify industries with **sharpest unemployment rate increases** during **2008-2009**\",\n \"recommendation\": \"A bar chart showing the change in unemployment rate from 2008 to 2009 for each industry will clearly visualize which sectors were hit hardest during the financial crisis. The industries should be sorted by the magnitude of increase to make comparison easier.\",\n \"output_fields\": [\"series\", \"rate_2008\", \"rate_2009\", \"rate_increase\"],\n \"chart_type\": \"bar\",\n \"chart_encodings\": {\n \"x\": \"series\",\n \"y\": \"rate_increase\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter data for years 2008 and 2009\n df_2008_2009 = df_unemployment[df_unemployment['year'].isin([2008, 2009])].copy()\n \n # Calculate average rate for each industry in 2008 and 2009\n df_2008 = df_2008_2009[df_2008_2009['year'] == 2008].groupby('series')['rate'].mean().reset_index()\n df_2008.columns = ['series', 'rate_2008']\n \n df_2009 = df_2008_2009[df_2008_2009['year'] == 2009].groupby('series')['rate'].mean().reset_index()\n df_2009.columns = ['series', 'rate_2009']\n \n # Merge and calculate the increase\n transformed_df = df_2008.merge(df_2009, on='series')\n transformed_df['rate_increase'] = transformed_df['rate_2009'] - transformed_df['rate_2008']\n \n # Sort by rate increase in descending order\n transformed_df = transformed_df.sort_values('rate_increase', ascending=False).reset_index(drop=True)\n \n return transformed_df\n```"}],"trigger":{"tableId":"table-544555","sourceTableIds":["unemployment-across-industries"],"instruction":"Which industries showed the **sharpest increases** in unemployment during **2008-2009**?","displayInstruction":"Identify industries with **sharpest unemployment rate increases** during **2008-2009**","chart":{"id":"chart-1760745556114","chartType":"Auto","encodingMap":{},"tableRef":"unemployment-across-industries","saved":false,"source":"trigger","unread":true},"resultTableId":"table-552276"},"explanation":{"agent":"CodeExplanationAgent","code":"- Convert the **date** field to datetime format for proper date handling\n- Filter the dataset to include only records from **2008** and **2009**\n- Calculate the **average unemployment rate** for each **industry (series)** in **2008**\n- Calculate the **average unemployment rate** for each **industry (series)** in **2009**\n- Merge the two yearly averages and compute the **rate increase** from 2008 to 2009\n- Sort industries by **rate_increase** in descending order to identify which industries experienced the largest growth in unemployment","concepts":[{"explanation":"The difference in average unemployment rate between 2009 and 2008 for each industry, calculated as \\( \\text{rate\\_increase} = \\text{rate\\_2009} - \\text{rate\\_2008} \\). This metric indicates how much unemployment worsened (positive values) or improved (negative values) during the financial crisis period.","field":"rate_increase"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter data for years 2008 and 2009\n df_2008_2009 = df_unemployment[df_unemployment['year'].isin([2008, 2009])].copy()\n \n # Calculate average rate for each industry in 2008 and 2009\n df_2008 = df_2008_2009[df_2008_2009['year'] == 2008].groupby('series')['rate'].mean().reset_index()\n df_2008.columns = ['series', 'rate_2008']\n \n df_2009 = df_2008_2009[df_2008_2009['year'] == 2009].groupby('series')['rate'].mean().reset_index()\n df_2009.columns = ['series', 'rate_2009']\n \n # Merge and calculate the increase\n transformed_df = df_2008.merge(df_2009, on='series')\n transformed_df['rate_increase'] = transformed_df['rate_2009'] - transformed_df['rate_2008']\n \n # Sort by rate increase in descending order\n transformed_df = transformed_df.sort_values('rate_increase', ascending=False).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Convert the **date** field to datetime format for proper date handling\n- Filter the dataset to include only records from **2008** and **2009**\n- Calculate the **average unemployment rate** for each **industry (series)** in **2008**\n- Calculate the **average unemployment rate** for each **industry (series)** in **2009**\n- Merge the two yearly averages and compute the **rate increase** from 2008 to 2009\n- Sort industries by **rate_increase** in descending order to identify which industries experienced the largest growth in unemployment\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"rate_increase\",\n \"explanation\": \"The difference in average unemployment rate between 2009 and 2008 for each industry, calculated as \\\\( \\\\text{rate\\\\_increase} = \\\\text{rate\\\\_2009} - \\\\text{rate\\\\_2008} \\\\). This metric indicates how much unemployment worsened (positive values) or improved (negative values) during the financial crisis period.\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-570117","displayId":"unemp-rate-ind1","names":["date","series","rate"],"rows":[{"date":"2008-01-01","series":"Construction","rate":11},{"date":"2008-02-01","series":"Construction","rate":11.4},{"date":"2008-03-01","series":"Construction","rate":12},{"date":"2008-04-01","series":"Construction","rate":11.1},{"date":"2008-05-01","series":"Construction","rate":8.6},{"date":"2008-06-01","series":"Construction","rate":8.2},{"date":"2008-07-01","series":"Construction","rate":8},{"date":"2008-08-01","series":"Construction","rate":8.2},{"date":"2008-09-01","series":"Construction","rate":9.9},{"date":"2008-10-01","series":"Construction","rate":10.8},{"date":"2008-11-01","series":"Construction","rate":12.7},{"date":"2008-12-01","series":"Construction","rate":15.3},{"date":"2009-01-01","series":"Construction","rate":18.2},{"date":"2009-02-01","series":"Construction","rate":21.4},{"date":"2009-03-01","series":"Construction","rate":21.1},{"date":"2009-04-01","series":"Construction","rate":18.7},{"date":"2009-05-01","series":"Construction","rate":19.2},{"date":"2009-06-01","series":"Construction","rate":17.4},{"date":"2009-07-01","series":"Construction","rate":18.2},{"date":"2009-08-01","series":"Construction","rate":16.5},{"date":"2009-09-01","series":"Construction","rate":17.1},{"date":"2009-10-01","series":"Construction","rate":18.7},{"date":"2009-11-01","series":"Construction","rate":19.4},{"date":"2009-12-01","series":"Construction","rate":22.7},{"date":"2010-01-01","series":"Construction","rate":24.7},{"date":"2010-02-01","series":"Construction","rate":27.1},{"date":"2008-01-01","series":"Manufacturing","rate":5.1},{"date":"2008-02-01","series":"Manufacturing","rate":5},{"date":"2008-03-01","series":"Manufacturing","rate":5},{"date":"2008-04-01","series":"Manufacturing","rate":4.8},{"date":"2008-05-01","series":"Manufacturing","rate":5.3},{"date":"2008-06-01","series":"Manufacturing","rate":5.2},{"date":"2008-07-01","series":"Manufacturing","rate":5.5},{"date":"2008-08-01","series":"Manufacturing","rate":5.7},{"date":"2008-09-01","series":"Manufacturing","rate":6},{"date":"2008-10-01","series":"Manufacturing","rate":6.2},{"date":"2008-11-01","series":"Manufacturing","rate":7},{"date":"2008-12-01","series":"Manufacturing","rate":8.3},{"date":"2009-01-01","series":"Manufacturing","rate":10.9},{"date":"2009-02-01","series":"Manufacturing","rate":11.5},{"date":"2009-03-01","series":"Manufacturing","rate":12.2},{"date":"2009-04-01","series":"Manufacturing","rate":12.4},{"date":"2009-05-01","series":"Manufacturing","rate":12.6},{"date":"2009-06-01","series":"Manufacturing","rate":12.6},{"date":"2009-07-01","series":"Manufacturing","rate":12.4},{"date":"2009-08-01","series":"Manufacturing","rate":11.8},{"date":"2009-09-01","series":"Manufacturing","rate":11.9},{"date":"2009-10-01","series":"Manufacturing","rate":12.2},{"date":"2009-11-01","series":"Manufacturing","rate":12.5},{"date":"2009-12-01","series":"Manufacturing","rate":11.9},{"date":"2010-01-01","series":"Manufacturing","rate":13},{"date":"2010-02-01","series":"Manufacturing","rate":12.1},{"date":"2008-01-01","series":"Mining and Extraction","rate":4},{"date":"2008-02-01","series":"Mining and Extraction","rate":2.2},{"date":"2008-03-01","series":"Mining and Extraction","rate":3.7},{"date":"2008-04-01","series":"Mining and Extraction","rate":3.6},{"date":"2008-05-01","series":"Mining and Extraction","rate":3.4},{"date":"2008-06-01","series":"Mining and Extraction","rate":3.3},{"date":"2008-07-01","series":"Mining and Extraction","rate":1.5},{"date":"2008-08-01","series":"Mining and Extraction","rate":1.9},{"date":"2008-09-01","series":"Mining and Extraction","rate":2.8},{"date":"2008-10-01","series":"Mining and Extraction","rate":1.7},{"date":"2008-11-01","series":"Mining and Extraction","rate":3.7},{"date":"2008-12-01","series":"Mining and Extraction","rate":5.2},{"date":"2009-01-01","series":"Mining and Extraction","rate":7},{"date":"2009-02-01","series":"Mining and Extraction","rate":7.6},{"date":"2009-03-01","series":"Mining and Extraction","rate":12.6},{"date":"2009-04-01","series":"Mining and Extraction","rate":16.1},{"date":"2009-05-01","series":"Mining and Extraction","rate":13.3},{"date":"2009-06-01","series":"Mining and Extraction","rate":13.6},{"date":"2009-07-01","series":"Mining and Extraction","rate":12.6},{"date":"2009-08-01","series":"Mining and Extraction","rate":11.8},{"date":"2009-09-01","series":"Mining and Extraction","rate":10.7},{"date":"2009-10-01","series":"Mining and Extraction","rate":10.8},{"date":"2009-11-01","series":"Mining and Extraction","rate":12},{"date":"2009-12-01","series":"Mining and Extraction","rate":11.8},{"date":"2010-01-01","series":"Mining and Extraction","rate":9.1},{"date":"2010-02-01","series":"Mining and Extraction","rate":10.7}],"metadata":{"date":{"type":"date","semanticType":"YearMonth"},"series":{"type":"string","semanticType":"String"},"rate":{"type":"number","semanticType":"Percentage"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter for years 2008-2010\n df_filtered = df_unemployment[df_unemployment['year'].isin([2008, 2009, 2010])].copy()\n \n # Filter for top 3 most affected industries\n top_3_industries = ['Mining and Extraction', 'Construction', 'Manufacturing']\n df_filtered = df_filtered[df_filtered['series'].isin(top_3_industries)].copy()\n \n # Convert date to string format for visualization\n df_filtered['date'] = df_filtered['date'].dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns\n transformed_df = df_filtered[['date', 'series', 'rate']].copy()\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values(['series', 'date']).reset_index(drop=True)\n \n return transformed_df\n","source":["unemployment-across-industries"],"dialog":[{"role":"system","content":"You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"},{"role":"user","content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nCompare **unemployment trends** across all industries from 2000-2010"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to compare unemployment trends across all industries from 2000-2010 to understand how different sectors were affected over time.\",\n \"display_instruction\": \"Compare **unemployment rates** across **industries** over time\",\n \"recommendation\": \"A line chart with time on x-axis and unemployment rate on y-axis, with different colored lines for each industry series, will effectively show the trends and allow comparison of how unemployment evolved across different sectors during this period.\",\n \"output_fields\": [\"date\", \"series\", \"rate\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n date series rate\n0 2000-01-01 Government 2.1\n1 2000-02-01 Government 2.0\n2 2000-03-01 Government 1.5\n3 2000-04-01 Government 1.3\n4 2000-05-01 Government 1.9\n5 2000-06-01 Government 3.1\n6 2000-07-01 Government 2.9\n7 2000-08-01 Government 3.1\n8 2000-09-01 Government 2.1\n9 2000-10-01 Government 2.0\n......\n\nUpdate the code above based on the following instruction:\n\nWhich industries showed the **sharpest increases** in unemployment during **2008-2009**?"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to identify which industries experienced the sharpest increases in unemployment rates during the 2008-2009 financial crisis period by calculating the change in unemployment rate for each industry.\",\n \"display_instruction\": \"Identify industries with **sharpest unemployment rate increases** during **2008-2009**\",\n \"recommendation\": \"A bar chart showing the change in unemployment rate from 2008 to 2009 for each industry will clearly visualize which sectors were hit hardest during the financial crisis. The industries should be sorted by the magnitude of increase to make comparison easier.\",\n \"output_fields\": [\"series\", \"rate_2008\", \"rate_2009\", \"rate_increase\"],\n \"chart_type\": \"bar\",\n \"chart_encodings\": {\n \"x\": \"series\",\n \"y\": \"rate_increase\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter data for years 2008 and 2009\n df_2008_2009 = df_unemployment[df_unemployment['year'].isin([2008, 2009])].copy()\n \n # Calculate average rate for each industry in 2008 and 2009\n df_2008 = df_2008_2009[df_2008_2009['year'] == 2008].groupby('series')['rate'].mean().reset_index()\n df_2008.columns = ['series', 'rate_2008']\n \n df_2009 = df_2008_2009[df_2008_2009['year'] == 2009].groupby('series')['rate'].mean().reset_index()\n df_2009.columns = ['series', 'rate_2009']\n \n # Merge and calculate the increase\n transformed_df = df_2008.merge(df_2009, on='series')\n transformed_df['rate_increase'] = transformed_df['rate_2009'] - transformed_df['rate_2008']\n \n # Sort by rate increase in descending order\n transformed_df = transformed_df.sort_values('rate_increase', ascending=False).reset_index(drop=True)\n \n return transformed_df\n```"},{"role":"user","content":"This is the result from the latest python code:\n\n series rate_2008 rate_2009 rate_increase\n0 Mining and Extraction 3.083333 11.658333 8.575000\n1 Construction 10.600000 19.050000 8.450000\n2 Manufacturing 5.758333 12.075000 6.316667\n3 Agriculture 9.266667 14.391667 5.125000\n4 Business services 6.558333 10.800000 4.241667\n5 Information 5.016667 9.225000 4.208333\n6 Transportation and Utilities 5.133333 8.883333 3.750000\n7 Wholesale and Retail Trade 5.841667 9.033333 3.191667\n8 Leisure and hospitality 8.641667 11.683333 3.041667\n9 Finance 3.950000 6.400000 2.450000\n......\n\nUpdate the code above based on the following instruction:\n\nFor the **top 3 most affected industries** (Mining and Extraction, Construction, Manufacturing), compare their **monthly unemployment rate trends** during the **2008-2010 period** to analyze how quickly each industry recovered after the 2009 peak"},{"role":"assistant","content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to analyze the monthly unemployment rate trends for the top 3 most affected industries (Mining and Extraction, Construction, Manufacturing) during 2008-2010 to understand their recovery patterns after the 2009 peak.\",\n \"display_instruction\": \"Compare **monthly unemployment trends** for **top 3 affected industries** during **2008-2010 recovery period**\",\n \"recommendation\": \"A line chart with time on x-axis and unemployment rate on y-axis, with different colored lines for the three most affected industries, will effectively show how each industry's unemployment rate evolved during and after the crisis, revealing their different recovery trajectories.\",\n \"output_fields\": [\"date\", \"series\", \"rate\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter for years 2008-2010\n df_filtered = df_unemployment[df_unemployment['year'].isin([2008, 2009, 2010])].copy()\n \n # Filter for top 3 most affected industries\n top_3_industries = ['Mining and Extraction', 'Construction', 'Manufacturing']\n df_filtered = df_filtered[df_filtered['series'].isin(top_3_industries)].copy()\n \n # Convert date to string format for visualization\n df_filtered['date'] = df_filtered['date'].dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns\n transformed_df = df_filtered[['date', 'series', 'rate']].copy()\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values(['series', 'date']).reset_index(drop=True)\n \n return transformed_df\n```"}],"trigger":{"tableId":"table-552276","sourceTableIds":["unemployment-across-industries"],"instruction":"For the **top 3 most affected industries** (Mining and Extraction, Construction, Manufacturing), compare their **monthly unemployment rate trends** during the **2008-2010 period** to analyze how quickly each industry recovered after the 2009 peak","displayInstruction":"Compare **monthly unemployment trends** for **top 3 affected industries** during **2008-2010 recovery period**","chart":{"id":"chart-1760745567484","chartType":"Auto","encodingMap":{},"tableRef":"unemployment-across-industries","saved":false,"source":"trigger","unread":true},"resultTableId":"table-570117"},"explanation":{"agent":"CodeExplanationAgent","code":"- Convert the **date** field from string to datetime format, then back to a standardized string format (`YYYY-MM-DD`)\n- **Filter** the data to include only the years **2008**, **2009**, and **2010** (the period around the financial crisis)\n- **Select** the top 3 most affected industries: **Mining and Extraction**, **Construction**, and **Manufacturing**\n- **Extract** only the essential columns: **date**, **series** (industry name), and **rate** (unemployment rate)\n- **Sort** the data by **series** and **date** to ensure proper chronological ordering for time series visualization","concepts":[],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter for years 2008-2010\n df_filtered = df_unemployment[df_unemployment['year'].isin([2008, 2009, 2010])].copy()\n \n # Filter for top 3 most affected industries\n top_3_industries = ['Mining and Extraction', 'Construction', 'Manufacturing']\n df_filtered = df_filtered[df_filtered['series'].isin(top_3_industries)].copy()\n \n # Convert date to string format for visualization\n df_filtered['date'] = df_filtered['date'].dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns\n transformed_df = df_filtered[['date', 'series', 'rate']].copy()\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values(['series', 'date']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Convert the **date** field from string to datetime format, then back to a standardized string format (`YYYY-MM-DD`)\n- **Filter** the data to include only the years **2008**, **2009**, and **2010** (the period around the financial crisis)\n- **Select** the top 3 most affected industries: **Mining and Extraction**, **Construction**, and **Manufacturing**\n- **Extract** only the essential columns: **date**, **series** (industry name), and **rate** (unemployment rate)\n- **Sort** the data by **series** and **date** to ensure proper chronological ordering for time series visualization\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""},{"id":"table-53","displayId":"industry-rates","names":["avg_rate","month","series","year"],"rows":[{"avg_rate":10.3,"month":1,"series":"Agriculture","year":"2000"},{"avg_rate":11.5,"month":2,"series":"Agriculture","year":"2000"},{"avg_rate":10.4,"month":3,"series":"Agriculture","year":"2000"},{"avg_rate":8.9,"month":4,"series":"Agriculture","year":"2000"},{"avg_rate":5.1,"month":5,"series":"Agriculture","year":"2000"},{"avg_rate":6.7,"month":6,"series":"Agriculture","year":"2000"},{"avg_rate":5,"month":7,"series":"Agriculture","year":"2000"},{"avg_rate":7,"month":8,"series":"Agriculture","year":"2000"},{"avg_rate":8.2,"month":9,"series":"Agriculture","year":"2000"},{"avg_rate":8,"month":10,"series":"Agriculture","year":"2000"},{"avg_rate":13.3,"month":11,"series":"Agriculture","year":"2000"},{"avg_rate":13.9,"month":12,"series":"Agriculture","year":"2000"},{"avg_rate":13.8,"month":1,"series":"Agriculture","year":"2001"},{"avg_rate":15.1,"month":2,"series":"Agriculture","year":"2001"},{"avg_rate":19.2,"month":3,"series":"Agriculture","year":"2001"},{"avg_rate":10.4,"month":4,"series":"Agriculture","year":"2001"},{"avg_rate":7.7,"month":5,"series":"Agriculture","year":"2001"},{"avg_rate":9.7,"month":6,"series":"Agriculture","year":"2001"},{"avg_rate":7.6,"month":7,"series":"Agriculture","year":"2001"},{"avg_rate":9.3,"month":8,"series":"Agriculture","year":"2001"},{"avg_rate":7.2,"month":9,"series":"Agriculture","year":"2001"},{"avg_rate":8.7,"month":10,"series":"Agriculture","year":"2001"},{"avg_rate":11.6,"month":11,"series":"Agriculture","year":"2001"},{"avg_rate":15.1,"month":12,"series":"Agriculture","year":"2001"},{"avg_rate":14.8,"month":1,"series":"Agriculture","year":"2002"},{"avg_rate":14.8,"month":2,"series":"Agriculture","year":"2002"},{"avg_rate":19.6,"month":3,"series":"Agriculture","year":"2002"},{"avg_rate":10.8,"month":4,"series":"Agriculture","year":"2002"},{"avg_rate":6.8,"month":5,"series":"Agriculture","year":"2002"},{"avg_rate":6.3,"month":6,"series":"Agriculture","year":"2002"},{"avg_rate":7.3,"month":7,"series":"Agriculture","year":"2002"},{"avg_rate":9,"month":8,"series":"Agriculture","year":"2002"},{"avg_rate":6.3,"month":9,"series":"Agriculture","year":"2002"},{"avg_rate":6.6,"month":10,"series":"Agriculture","year":"2002"},{"avg_rate":11.1,"month":11,"series":"Agriculture","year":"2002"},{"avg_rate":9.8,"month":12,"series":"Agriculture","year":"2002"},{"avg_rate":13.2,"month":1,"series":"Agriculture","year":"2003"},{"avg_rate":14.7,"month":2,"series":"Agriculture","year":"2003"},{"avg_rate":12.9,"month":3,"series":"Agriculture","year":"2003"},{"avg_rate":12,"month":4,"series":"Agriculture","year":"2003"},{"avg_rate":10.2,"month":5,"series":"Agriculture","year":"2003"},{"avg_rate":6.9,"month":6,"series":"Agriculture","year":"2003"},{"avg_rate":8.2,"month":7,"series":"Agriculture","year":"2003"},{"avg_rate":10.7,"month":8,"series":"Agriculture","year":"2003"},{"avg_rate":6.2,"month":9,"series":"Agriculture","year":"2003"},{"avg_rate":8.5,"month":10,"series":"Agriculture","year":"2003"},{"avg_rate":10.3,"month":11,"series":"Agriculture","year":"2003"},{"avg_rate":10.9,"month":12,"series":"Agriculture","year":"2003"},{"avg_rate":15.1,"month":1,"series":"Agriculture","year":"2004"},{"avg_rate":14.2,"month":2,"series":"Agriculture","year":"2004"},{"avg_rate":12.7,"month":3,"series":"Agriculture","year":"2004"},{"avg_rate":8.3,"month":4,"series":"Agriculture","year":"2004"},{"avg_rate":7.4,"month":5,"series":"Agriculture","year":"2004"},{"avg_rate":7.6,"month":6,"series":"Agriculture","year":"2004"},{"avg_rate":10,"month":7,"series":"Agriculture","year":"2004"},{"avg_rate":7,"month":8,"series":"Agriculture","year":"2004"},{"avg_rate":6.4,"month":9,"series":"Agriculture","year":"2004"},{"avg_rate":7.7,"month":10,"series":"Agriculture","year":"2004"},{"avg_rate":10.5,"month":11,"series":"Agriculture","year":"2004"},{"avg_rate":14,"month":12,"series":"Agriculture","year":"2004"},{"avg_rate":13.2,"month":1,"series":"Agriculture","year":"2005"},{"avg_rate":9.9,"month":2,"series":"Agriculture","year":"2005"},{"avg_rate":11.8,"month":3,"series":"Agriculture","year":"2005"},{"avg_rate":6.9,"month":4,"series":"Agriculture","year":"2005"},{"avg_rate":5.3,"month":5,"series":"Agriculture","year":"2005"},{"avg_rate":5.2,"month":6,"series":"Agriculture","year":"2005"},{"avg_rate":4.7,"month":7,"series":"Agriculture","year":"2005"},{"avg_rate":7.1,"month":8,"series":"Agriculture","year":"2005"},{"avg_rate":9.5,"month":9,"series":"Agriculture","year":"2005"},{"avg_rate":6.7,"month":10,"series":"Agriculture","year":"2005"},{"avg_rate":9.6,"month":11,"series":"Agriculture","year":"2005"},{"avg_rate":11.1,"month":12,"series":"Agriculture","year":"2005"},{"avg_rate":11.5,"month":1,"series":"Agriculture","year":"2006"},{"avg_rate":11.8,"month":2,"series":"Agriculture","year":"2006"},{"avg_rate":9.8,"month":3,"series":"Agriculture","year":"2006"},{"avg_rate":6.2,"month":4,"series":"Agriculture","year":"2006"},{"avg_rate":6,"month":5,"series":"Agriculture","year":"2006"},{"avg_rate":2.4,"month":6,"series":"Agriculture","year":"2006"},{"avg_rate":3.6,"month":7,"series":"Agriculture","year":"2006"},{"avg_rate":5.3,"month":8,"series":"Agriculture","year":"2006"},{"avg_rate":5.9,"month":9,"series":"Agriculture","year":"2006"},{"avg_rate":5.8,"month":10,"series":"Agriculture","year":"2006"},{"avg_rate":9.6,"month":11,"series":"Agriculture","year":"2006"},{"avg_rate":10.4,"month":12,"series":"Agriculture","year":"2006"},{"avg_rate":10,"month":1,"series":"Agriculture","year":"2007"},{"avg_rate":9.6,"month":2,"series":"Agriculture","year":"2007"},{"avg_rate":9.7,"month":3,"series":"Agriculture","year":"2007"},{"avg_rate":5.7,"month":4,"series":"Agriculture","year":"2007"},{"avg_rate":5.1,"month":5,"series":"Agriculture","year":"2007"},{"avg_rate":4.5,"month":6,"series":"Agriculture","year":"2007"},{"avg_rate":3.1,"month":7,"series":"Agriculture","year":"2007"},{"avg_rate":4.7,"month":8,"series":"Agriculture","year":"2007"},{"avg_rate":4.3,"month":9,"series":"Agriculture","year":"2007"},{"avg_rate":4,"month":10,"series":"Agriculture","year":"2007"},{"avg_rate":6.6,"month":11,"series":"Agriculture","year":"2007"},{"avg_rate":7.5,"month":12,"series":"Agriculture","year":"2007"},{"avg_rate":9.5,"month":1,"series":"Agriculture","year":"2008"},{"avg_rate":10.9,"month":2,"series":"Agriculture","year":"2008"},{"avg_rate":13.2,"month":3,"series":"Agriculture","year":"2008"},{"avg_rate":8.6,"month":4,"series":"Agriculture","year":"2008"},{"avg_rate":7.4,"month":5,"series":"Agriculture","year":"2008"},{"avg_rate":6.1,"month":6,"series":"Agriculture","year":"2008"},{"avg_rate":8.5,"month":7,"series":"Agriculture","year":"2008"},{"avg_rate":7.6,"month":8,"series":"Agriculture","year":"2008"},{"avg_rate":5.8,"month":9,"series":"Agriculture","year":"2008"},{"avg_rate":7.1,"month":10,"series":"Agriculture","year":"2008"},{"avg_rate":9.5,"month":11,"series":"Agriculture","year":"2008"},{"avg_rate":17,"month":12,"series":"Agriculture","year":"2008"},{"avg_rate":18.7,"month":1,"series":"Agriculture","year":"2009"},{"avg_rate":18.8,"month":2,"series":"Agriculture","year":"2009"},{"avg_rate":19,"month":3,"series":"Agriculture","year":"2009"},{"avg_rate":13.5,"month":4,"series":"Agriculture","year":"2009"},{"avg_rate":10,"month":5,"series":"Agriculture","year":"2009"},{"avg_rate":12.3,"month":6,"series":"Agriculture","year":"2009"},{"avg_rate":12.1,"month":7,"series":"Agriculture","year":"2009"},{"avg_rate":13.1,"month":8,"series":"Agriculture","year":"2009"},{"avg_rate":11.1,"month":9,"series":"Agriculture","year":"2009"},{"avg_rate":11.8,"month":10,"series":"Agriculture","year":"2009"},{"avg_rate":12.6,"month":11,"series":"Agriculture","year":"2009"},{"avg_rate":19.7,"month":12,"series":"Agriculture","year":"2009"},{"avg_rate":21.3,"month":1,"series":"Agriculture","year":"2010"},{"avg_rate":18.8,"month":2,"series":"Agriculture","year":"2010"},{"avg_rate":9.7,"month":1,"series":"Construction","year":"2000"},{"avg_rate":10.6,"month":2,"series":"Construction","year":"2000"},{"avg_rate":8.7,"month":3,"series":"Construction","year":"2000"},{"avg_rate":5.8,"month":4,"series":"Construction","year":"2000"},{"avg_rate":5,"month":5,"series":"Construction","year":"2000"},{"avg_rate":4.6,"month":6,"series":"Construction","year":"2000"},{"avg_rate":4.4,"month":7,"series":"Construction","year":"2000"},{"avg_rate":5.1,"month":8,"series":"Construction","year":"2000"},{"avg_rate":4.6,"month":9,"series":"Construction","year":"2000"},{"avg_rate":4.9,"month":10,"series":"Construction","year":"2000"},{"avg_rate":5.7,"month":11,"series":"Construction","year":"2000"},{"avg_rate":6.8,"month":12,"series":"Construction","year":"2000"},{"avg_rate":9.8,"month":1,"series":"Construction","year":"2001"},{"avg_rate":9.9,"month":2,"series":"Construction","year":"2001"},{"avg_rate":8.4,"month":3,"series":"Construction","year":"2001"},{"avg_rate":7.1,"month":4,"series":"Construction","year":"2001"},{"avg_rate":5.6,"month":5,"series":"Construction","year":"2001"},{"avg_rate":5.1,"month":6,"series":"Construction","year":"2001"},{"avg_rate":4.9,"month":7,"series":"Construction","year":"2001"},{"avg_rate":5.8,"month":8,"series":"Construction","year":"2001"},{"avg_rate":5.5,"month":9,"series":"Construction","year":"2001"},{"avg_rate":6.1,"month":10,"series":"Construction","year":"2001"},{"avg_rate":7.6,"month":11,"series":"Construction","year":"2001"},{"avg_rate":9,"month":12,"series":"Construction","year":"2001"},{"avg_rate":13.6,"month":1,"series":"Construction","year":"2002"},{"avg_rate":12.2,"month":2,"series":"Construction","year":"2002"},{"avg_rate":11.8,"month":3,"series":"Construction","year":"2002"},{"avg_rate":10.1,"month":4,"series":"Construction","year":"2002"},{"avg_rate":7.4,"month":5,"series":"Construction","year":"2002"},{"avg_rate":6.9,"month":6,"series":"Construction","year":"2002"},{"avg_rate":6.9,"month":7,"series":"Construction","year":"2002"},{"avg_rate":7.4,"month":8,"series":"Construction","year":"2002"},{"avg_rate":7,"month":9,"series":"Construction","year":"2002"},{"avg_rate":7.7,"month":10,"series":"Construction","year":"2002"},{"avg_rate":8.5,"month":11,"series":"Construction","year":"2002"},{"avg_rate":10.9,"month":12,"series":"Construction","year":"2002"},{"avg_rate":14,"month":1,"series":"Construction","year":"2003"},{"avg_rate":14,"month":2,"series":"Construction","year":"2003"},{"avg_rate":11.8,"month":3,"series":"Construction","year":"2003"},{"avg_rate":9.3,"month":4,"series":"Construction","year":"2003"},{"avg_rate":8.4,"month":5,"series":"Construction","year":"2003"},{"avg_rate":7.9,"month":6,"series":"Construction","year":"2003"},{"avg_rate":7.5,"month":7,"series":"Construction","year":"2003"},{"avg_rate":7.1,"month":8,"series":"Construction","year":"2003"},{"avg_rate":7.6,"month":9,"series":"Construction","year":"2003"},{"avg_rate":7.4,"month":10,"series":"Construction","year":"2003"},{"avg_rate":7.8,"month":11,"series":"Construction","year":"2003"},{"avg_rate":9.3,"month":12,"series":"Construction","year":"2003"},{"avg_rate":11.3,"month":1,"series":"Construction","year":"2004"},{"avg_rate":11.6,"month":2,"series":"Construction","year":"2004"},{"avg_rate":11.3,"month":3,"series":"Construction","year":"2004"},{"avg_rate":9.5,"month":4,"series":"Construction","year":"2004"},{"avg_rate":7.4,"month":5,"series":"Construction","year":"2004"},{"avg_rate":7,"month":6,"series":"Construction","year":"2004"},{"avg_rate":6.4,"month":7,"series":"Construction","year":"2004"},{"avg_rate":6,"month":8,"series":"Construction","year":"2004"},{"avg_rate":6.8,"month":9,"series":"Construction","year":"2004"},{"avg_rate":6.9,"month":10,"series":"Construction","year":"2004"},{"avg_rate":7.4,"month":11,"series":"Construction","year":"2004"},{"avg_rate":9.5,"month":12,"series":"Construction","year":"2004"},{"avg_rate":11.8,"month":1,"series":"Construction","year":"2005"},{"avg_rate":12.3,"month":2,"series":"Construction","year":"2005"},{"avg_rate":10.3,"month":3,"series":"Construction","year":"2005"},{"avg_rate":7.4,"month":4,"series":"Construction","year":"2005"},{"avg_rate":6.1,"month":5,"series":"Construction","year":"2005"},{"avg_rate":5.7,"month":6,"series":"Construction","year":"2005"},{"avg_rate":5.2,"month":7,"series":"Construction","year":"2005"},{"avg_rate":5.7,"month":8,"series":"Construction","year":"2005"},{"avg_rate":5.7,"month":9,"series":"Construction","year":"2005"},{"avg_rate":5.3,"month":10,"series":"Construction","year":"2005"},{"avg_rate":5.7,"month":11,"series":"Construction","year":"2005"},{"avg_rate":8.2,"month":12,"series":"Construction","year":"2005"},{"avg_rate":9,"month":1,"series":"Construction","year":"2006"},{"avg_rate":8.6,"month":2,"series":"Construction","year":"2006"},{"avg_rate":8.5,"month":3,"series":"Construction","year":"2006"},{"avg_rate":6.9,"month":4,"series":"Construction","year":"2006"},{"avg_rate":6.6,"month":5,"series":"Construction","year":"2006"},{"avg_rate":5.6,"month":6,"series":"Construction","year":"2006"},{"avg_rate":6.1,"month":7,"series":"Construction","year":"2006"},{"avg_rate":5.9,"month":8,"series":"Construction","year":"2006"},{"avg_rate":5.6,"month":9,"series":"Construction","year":"2006"},{"avg_rate":4.5,"month":10,"series":"Construction","year":"2006"},{"avg_rate":6,"month":11,"series":"Construction","year":"2006"},{"avg_rate":6.9,"month":12,"series":"Construction","year":"2006"},{"avg_rate":8.9,"month":1,"series":"Construction","year":"2007"},{"avg_rate":10.5,"month":2,"series":"Construction","year":"2007"},{"avg_rate":9,"month":3,"series":"Construction","year":"2007"},{"avg_rate":8.6,"month":4,"series":"Construction","year":"2007"},{"avg_rate":6.9,"month":5,"series":"Construction","year":"2007"},{"avg_rate":5.9,"month":6,"series":"Construction","year":"2007"},{"avg_rate":5.9,"month":7,"series":"Construction","year":"2007"},{"avg_rate":5.3,"month":8,"series":"Construction","year":"2007"},{"avg_rate":5.8,"month":9,"series":"Construction","year":"2007"},{"avg_rate":6.1,"month":10,"series":"Construction","year":"2007"},{"avg_rate":6.2,"month":11,"series":"Construction","year":"2007"},{"avg_rate":9.4,"month":12,"series":"Construction","year":"2007"},{"avg_rate":11,"month":1,"series":"Construction","year":"2008"},{"avg_rate":11.4,"month":2,"series":"Construction","year":"2008"},{"avg_rate":12,"month":3,"series":"Construction","year":"2008"},{"avg_rate":11.1,"month":4,"series":"Construction","year":"2008"},{"avg_rate":8.6,"month":5,"series":"Construction","year":"2008"},{"avg_rate":8.2,"month":6,"series":"Construction","year":"2008"},{"avg_rate":8,"month":7,"series":"Construction","year":"2008"},{"avg_rate":8.2,"month":8,"series":"Construction","year":"2008"},{"avg_rate":9.9,"month":9,"series":"Construction","year":"2008"},{"avg_rate":10.8,"month":10,"series":"Construction","year":"2008"},{"avg_rate":12.7,"month":11,"series":"Construction","year":"2008"},{"avg_rate":15.3,"month":12,"series":"Construction","year":"2008"},{"avg_rate":18.2,"month":1,"series":"Construction","year":"2009"},{"avg_rate":21.4,"month":2,"series":"Construction","year":"2009"},{"avg_rate":21.1,"month":3,"series":"Construction","year":"2009"},{"avg_rate":18.7,"month":4,"series":"Construction","year":"2009"},{"avg_rate":19.2,"month":5,"series":"Construction","year":"2009"},{"avg_rate":17.4,"month":6,"series":"Construction","year":"2009"},{"avg_rate":18.2,"month":7,"series":"Construction","year":"2009"},{"avg_rate":16.5,"month":8,"series":"Construction","year":"2009"},{"avg_rate":17.1,"month":9,"series":"Construction","year":"2009"},{"avg_rate":18.7,"month":10,"series":"Construction","year":"2009"},{"avg_rate":19.4,"month":11,"series":"Construction","year":"2009"},{"avg_rate":22.7,"month":12,"series":"Construction","year":"2009"},{"avg_rate":24.7,"month":1,"series":"Construction","year":"2010"},{"avg_rate":27.1,"month":2,"series":"Construction","year":"2010"},{"avg_rate":3.9,"month":1,"series":"Mining and Extraction","year":"2000"},{"avg_rate":5.5,"month":2,"series":"Mining and Extraction","year":"2000"},{"avg_rate":3.7,"month":3,"series":"Mining and Extraction","year":"2000"},{"avg_rate":4.1,"month":4,"series":"Mining and Extraction","year":"2000"},{"avg_rate":5.3,"month":5,"series":"Mining and Extraction","year":"2000"},{"avg_rate":2.6,"month":6,"series":"Mining and Extraction","year":"2000"},{"avg_rate":3.6,"month":7,"series":"Mining and Extraction","year":"2000"},{"avg_rate":5.1,"month":8,"series":"Mining and Extraction","year":"2000"},{"avg_rate":5.8,"month":9,"series":"Mining and Extraction","year":"2000"},{"avg_rate":7.8,"month":10,"series":"Mining and Extraction","year":"2000"},{"avg_rate":2,"month":11,"series":"Mining and Extraction","year":"2000"},{"avg_rate":3.8,"month":12,"series":"Mining and Extraction","year":"2000"},{"avg_rate":2.3,"month":1,"series":"Mining and Extraction","year":"2001"},{"avg_rate":5.3,"month":2,"series":"Mining and Extraction","year":"2001"},{"avg_rate":3,"month":3,"series":"Mining and Extraction","year":"2001"},{"avg_rate":4.7,"month":4,"series":"Mining and Extraction","year":"2001"},{"avg_rate":5.9,"month":5,"series":"Mining and Extraction","year":"2001"},{"avg_rate":4.7,"month":6,"series":"Mining and Extraction","year":"2001"},{"avg_rate":3.1,"month":7,"series":"Mining and Extraction","year":"2001"},{"avg_rate":3.3,"month":8,"series":"Mining and Extraction","year":"2001"},{"avg_rate":4.2,"month":9,"series":"Mining and Extraction","year":"2001"},{"avg_rate":5.4,"month":10,"series":"Mining and Extraction","year":"2001"},{"avg_rate":3.6,"month":11,"series":"Mining and Extraction","year":"2001"},{"avg_rate":5.3,"month":12,"series":"Mining and Extraction","year":"2001"},{"avg_rate":7,"month":1,"series":"Mining and Extraction","year":"2002"},{"avg_rate":7.5,"month":2,"series":"Mining and Extraction","year":"2002"},{"avg_rate":5.3,"month":3,"series":"Mining and Extraction","year":"2002"},{"avg_rate":6.1,"month":4,"series":"Mining and Extraction","year":"2002"},{"avg_rate":4.9,"month":5,"series":"Mining and Extraction","year":"2002"},{"avg_rate":7.1,"month":6,"series":"Mining and Extraction","year":"2002"},{"avg_rate":3.9,"month":7,"series":"Mining and Extraction","year":"2002"},{"avg_rate":6.3,"month":8,"series":"Mining and Extraction","year":"2002"},{"avg_rate":7.9,"month":9,"series":"Mining and Extraction","year":"2002"},{"avg_rate":6.4,"month":10,"series":"Mining and Extraction","year":"2002"},{"avg_rate":5.4,"month":11,"series":"Mining and Extraction","year":"2002"},{"avg_rate":7.8,"month":12,"series":"Mining and Extraction","year":"2002"},{"avg_rate":9,"month":1,"series":"Mining and Extraction","year":"2003"},{"avg_rate":7.1,"month":2,"series":"Mining and Extraction","year":"2003"},{"avg_rate":8.2,"month":3,"series":"Mining and Extraction","year":"2003"},{"avg_rate":7.7,"month":4,"series":"Mining and Extraction","year":"2003"},{"avg_rate":7.5,"month":5,"series":"Mining and Extraction","year":"2003"},{"avg_rate":6.8,"month":6,"series":"Mining and Extraction","year":"2003"},{"avg_rate":7.9,"month":7,"series":"Mining and Extraction","year":"2003"},{"avg_rate":3.8,"month":8,"series":"Mining and Extraction","year":"2003"},{"avg_rate":4.6,"month":9,"series":"Mining and Extraction","year":"2003"},{"avg_rate":5.6,"month":10,"series":"Mining and Extraction","year":"2003"},{"avg_rate":5.9,"month":11,"series":"Mining and Extraction","year":"2003"},{"avg_rate":5.6,"month":12,"series":"Mining and Extraction","year":"2003"},{"avg_rate":5.8,"month":1,"series":"Mining and Extraction","year":"2004"},{"avg_rate":5,"month":2,"series":"Mining and Extraction","year":"2004"},{"avg_rate":4.4,"month":3,"series":"Mining and Extraction","year":"2004"},{"avg_rate":6.4,"month":4,"series":"Mining and Extraction","year":"2004"},{"avg_rate":4.3,"month":5,"series":"Mining and Extraction","year":"2004"},{"avg_rate":5,"month":6,"series":"Mining and Extraction","year":"2004"},{"avg_rate":5.4,"month":7,"series":"Mining and Extraction","year":"2004"},{"avg_rate":1.9,"month":8,"series":"Mining and Extraction","year":"2004"},{"avg_rate":1.5,"month":9,"series":"Mining and Extraction","year":"2004"},{"avg_rate":2.6,"month":10,"series":"Mining and Extraction","year":"2004"},{"avg_rate":3.3,"month":11,"series":"Mining and Extraction","year":"2004"},{"avg_rate":2.5,"month":12,"series":"Mining and Extraction","year":"2004"},{"avg_rate":4.9,"month":1,"series":"Mining and Extraction","year":"2005"},{"avg_rate":4,"month":2,"series":"Mining and Extraction","year":"2005"},{"avg_rate":5.2,"month":3,"series":"Mining and Extraction","year":"2005"},{"avg_rate":2.9,"month":4,"series":"Mining and Extraction","year":"2005"},{"avg_rate":2.4,"month":5,"series":"Mining and Extraction","year":"2005"},{"avg_rate":4,"month":6,"series":"Mining and Extraction","year":"2005"},{"avg_rate":3.7,"month":7,"series":"Mining and Extraction","year":"2005"},{"avg_rate":2,"month":8,"series":"Mining and Extraction","year":"2005"},{"avg_rate":2,"month":9,"series":"Mining and Extraction","year":"2005"},{"avg_rate":0.3,"month":10,"series":"Mining and Extraction","year":"2005"},{"avg_rate":2.9,"month":11,"series":"Mining and Extraction","year":"2005"},{"avg_rate":3.5,"month":12,"series":"Mining and Extraction","year":"2005"},{"avg_rate":3.9,"month":1,"series":"Mining and Extraction","year":"2006"},{"avg_rate":3.8,"month":2,"series":"Mining and Extraction","year":"2006"},{"avg_rate":2.1,"month":3,"series":"Mining and Extraction","year":"2006"},{"avg_rate":2.5,"month":4,"series":"Mining and Extraction","year":"2006"},{"avg_rate":2.8,"month":5,"series":"Mining and Extraction","year":"2006"},{"avg_rate":4.3,"month":6,"series":"Mining and Extraction","year":"2006"},{"avg_rate":3.5,"month":7,"series":"Mining and Extraction","year":"2006"},{"avg_rate":4.3,"month":8,"series":"Mining and Extraction","year":"2006"},{"avg_rate":2.1,"month":9,"series":"Mining and Extraction","year":"2006"},{"avg_rate":2.2,"month":10,"series":"Mining and Extraction","year":"2006"},{"avg_rate":2.9,"month":11,"series":"Mining and Extraction","year":"2006"},{"avg_rate":3.4,"month":12,"series":"Mining and Extraction","year":"2006"},{"avg_rate":4.7,"month":1,"series":"Mining and Extraction","year":"2007"},{"avg_rate":4.5,"month":2,"series":"Mining and Extraction","year":"2007"},{"avg_rate":3.2,"month":3,"series":"Mining and Extraction","year":"2007"},{"avg_rate":2.3,"month":4,"series":"Mining and Extraction","year":"2007"},{"avg_rate":3,"month":5,"series":"Mining and Extraction","year":"2007"},{"avg_rate":4.3,"month":6,"series":"Mining and Extraction","year":"2007"},{"avg_rate":4.3,"month":7,"series":"Mining and Extraction","year":"2007"},{"avg_rate":4.6,"month":8,"series":"Mining and Extraction","year":"2007"},{"avg_rate":3.2,"month":9,"series":"Mining and Extraction","year":"2007"},{"avg_rate":1.3,"month":10,"series":"Mining and Extraction","year":"2007"},{"avg_rate":2.3,"month":11,"series":"Mining and Extraction","year":"2007"},{"avg_rate":3.4,"month":12,"series":"Mining and Extraction","year":"2007"},{"avg_rate":4,"month":1,"series":"Mining and Extraction","year":"2008"},{"avg_rate":2.2,"month":2,"series":"Mining and Extraction","year":"2008"},{"avg_rate":3.7,"month":3,"series":"Mining and Extraction","year":"2008"},{"avg_rate":3.6,"month":4,"series":"Mining and Extraction","year":"2008"},{"avg_rate":3.4,"month":5,"series":"Mining and Extraction","year":"2008"},{"avg_rate":3.3,"month":6,"series":"Mining and Extraction","year":"2008"},{"avg_rate":1.5,"month":7,"series":"Mining and Extraction","year":"2008"},{"avg_rate":1.9,"month":8,"series":"Mining and Extraction","year":"2008"},{"avg_rate":2.8,"month":9,"series":"Mining and Extraction","year":"2008"},{"avg_rate":1.7,"month":10,"series":"Mining and Extraction","year":"2008"},{"avg_rate":3.7,"month":11,"series":"Mining and Extraction","year":"2008"},{"avg_rate":5.2,"month":12,"series":"Mining and Extraction","year":"2008"},{"avg_rate":7,"month":1,"series":"Mining and Extraction","year":"2009"},{"avg_rate":7.6,"month":2,"series":"Mining and Extraction","year":"2009"},{"avg_rate":12.6,"month":3,"series":"Mining and Extraction","year":"2009"},{"avg_rate":16.1,"month":4,"series":"Mining and Extraction","year":"2009"},{"avg_rate":13.3,"month":5,"series":"Mining and Extraction","year":"2009"},{"avg_rate":13.6,"month":6,"series":"Mining and Extraction","year":"2009"},{"avg_rate":12.6,"month":7,"series":"Mining and Extraction","year":"2009"},{"avg_rate":11.8,"month":8,"series":"Mining and Extraction","year":"2009"},{"avg_rate":10.7,"month":9,"series":"Mining and Extraction","year":"2009"},{"avg_rate":10.8,"month":10,"series":"Mining and Extraction","year":"2009"},{"avg_rate":12,"month":11,"series":"Mining and Extraction","year":"2009"},{"avg_rate":11.8,"month":12,"series":"Mining and Extraction","year":"2009"},{"avg_rate":9.1,"month":1,"series":"Mining and Extraction","year":"2010"},{"avg_rate":10.7,"month":2,"series":"Mining and Extraction","year":"2010"}],"metadata":{"avg_rate":{"type":"number","semanticType":"Number"},"month":{"type":"number","semanticType":"Month"},"series":{"type":"string","semanticType":"String"},"year":{"type":"number","semanticType":"Year"}},"derive":{"code":"\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series\n monthly_avg = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Calculate seasonal variation (standard deviation across months) for each series\n seasonal_variation = monthly_avg.groupby('series')['avg_rate'].std().reset_index()\n seasonal_variation.columns = ['series', 'seasonal_std']\n \n # Get top 3 most seasonal industries\n top_3_seasonal = seasonal_variation.nlargest(3, 'seasonal_std')['series'].tolist()\n \n # Filter original data for top 3 industries and aggregate by year, month, series\n transformed_df = df1[df1['series'].isin(top_3_seasonal)].groupby(\n ['series', 'year', 'month'], as_index=False\n ).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Convert year to string for color encoding\n transformed_df['year'] = transformed_df['year'].astype(str)\n \n return transformed_df\n","source":["unemployment-across-industries"],"dialog":[{"content":"You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nHow does **seasonal variation** in unemployment differ across **industries**?","role":"user"},{"content":"```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Analyze how seasonal variation in unemployment differs across industries by examining the cyclical patterns in unemployment rates throughout the year for different industry sectors.\",\n \"display_instruction\": \"Compare seasonal unemployment patterns across **industries**\",\n \"recommendation\": \"To visualize seasonal variation across industries, we should calculate average unemployment rates by month for each industry series. This will reveal the typical seasonal patterns and allow comparison of how different industries experience seasonal fluctuations in unemployment throughout the year.\",\n \"output_fields\": [\"series\", \"month\", \"avg_rate\", \"month_name\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"month\",\n \"y\": \"avg_rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series (industry)\n transformed_df = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Add month name for better readability\n month_names = {\n 1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun',\n 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'\n }\n transformed_df['month_name'] = transformed_df['month'].map(month_names)\n \n return transformed_df\n```","role":"assistant"},{"content":"This is the result from the latest python code:\n\n avg_rate month month_name series\n0 13.763636 1 Jan Agriculture\n1 13.645455 2 Feb Agriculture\n2 13.830000 3 Mar Agriculture\n3 9.130000 4 Apr Agriculture\n4 7.100000 5 May Agriculture\n5 6.770000 6 Jun Agriculture\n6 7.010000 7 Jul Agriculture\n7 8.080000 8 Aug Agriculture\n8 7.090000 9 Sep Agriculture\n9 7.490000 10 Oct Agriculture\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show the seasonal trends for top 3 industries that are most seaonal\",\n \"chart_type\": \"Custom Area\",\n \"chart_encodings\": {\n \"x\": \"month\",\n \"y\": \"avg_rate\",\n \"color\": \"year\",\n \"column\": \"series\"\n }\n}","role":"user"},{"content":"```json\n{\n \"detailed_instruction\": \"Identify the top 3 industries with the highest seasonal variation in unemployment rates, then show their seasonal trends over time with monthly unemployment rates for each year, faceted by industry.\",\n \"display_instruction\": \"Show seasonal trends for top 3 most seasonal **industries** over **years**\",\n \"output_fields\": [\"series\", \"year\", \"month\", \"avg_rate\"],\n \"chart_encodings\": {\n \"x\": \"month\",\n \"y\": \"avg_rate\",\n \"color\": \"year\",\n \"facet\": \"series\"\n },\n \"reason\": \"To identify the most seasonal industries, we need to calculate the seasonal variation (e.g., standard deviation or range of monthly rates) for each industry. Then select the top 3 industries with highest variation. The output should include year-month-series level data to show trends over time, with faceting by the top 3 most seasonal industries.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series\n monthly_avg = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Calculate seasonal variation (standard deviation across months) for each series\n seasonal_variation = monthly_avg.groupby('series')['avg_rate'].std().reset_index()\n seasonal_variation.columns = ['series', 'seasonal_std']\n \n # Get top 3 most seasonal industries\n top_3_seasonal = seasonal_variation.nlargest(3, 'seasonal_std')['series'].tolist()\n \n # Filter original data for top 3 industries and aggregate by year, month, series\n transformed_df = df1[df1['series'].isin(top_3_seasonal)].groupby(\n ['series', 'year', 'month'], as_index=False\n ).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Convert year to string for color encoding\n transformed_df['year'] = transformed_df['year'].astype(str)\n \n return transformed_df\n```","role":"assistant"}],"trigger":{"tableId":"table-540763","sourceTableIds":["unemployment-across-industries"],"instruction":"show the seasonal trends for top 3 industries that are most seaonal","displayInstruction":"Show seasonal trends for top 3 most seasonal **industries** over **years**","chart":{"id":"chart-1760745840104","chartType":"Custom Area","encodingMap":{"x":{"fieldID":"original--unemployment-across-industries--month"},"y":{"fieldID":"concept-avg_rate-1760745549715"},"x2":{},"y2":{},"color":{"fieldID":"original--unemployment-across-industries--year"},"column":{"fieldID":"original--unemployment-across-industries--series"},"row":{"channel":"row","bin":false}},"tableRef":"table-540763","saved":false,"source":"trigger","unread":false},"resultTableId":"table-53"},"explanation":{"agent":"CodeExplanationAgent","code":"- Calculate the **average unemployment rate** (`avg_rate`) for each combination of **series** (industry) and **month** across all years\n- Compute the **seasonal variation** for each **series** by calculating the standard deviation of `avg_rate` across the 12 months\n- Identify the **top 3 industries** with the highest `seasonal_std` (most seasonal unemployment patterns)\n- Filter the original data to include only these **top 3 most seasonal industries**\n- Aggregate the filtered data by **series**, **year**, and **month**, computing the mean unemployment **rate** as `avg_rate`\n- Convert **year** to string format for categorical visualization purposes","concepts":[{"explanation":"Standard deviation of average monthly unemployment rates across the 12 months for each industry. This metric quantifies the degree of seasonal variation in unemployment - higher values indicate stronger seasonal patterns (e.g., construction might have higher unemployment in winter months), while lower values indicate more stable year-round employment patterns. Mathematically: \\( \\text{seasonal\\_std} = \\sigma(\\text{avg\\_rate}_{\\text{month}=1..12}) \\)","field":"seasonal_std"}],"dialog":[{"content":"You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n","role":"system"},{"content":"[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series\n monthly_avg = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Calculate seasonal variation (standard deviation across months) for each series\n seasonal_variation = monthly_avg.groupby('series')['avg_rate'].std().reset_index()\n seasonal_variation.columns = ['series', 'seasonal_std']\n \n # Get top 3 most seasonal industries\n top_3_seasonal = seasonal_variation.nlargest(3, 'seasonal_std')['series'].tolist()\n \n # Filter original data for top 3 industries and aggregate by year, month, series\n transformed_df = df1[df1['series'].isin(top_3_seasonal)].groupby(\n ['series', 'year', 'month'], as_index=False\n ).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Convert year to string for color encoding\n transformed_df['year'] = transformed_df['year'].astype(str)\n \n return transformed_df\n\n\n[EXPLANATION]\n","role":"user"},{"content":"[CODE EXPLANATION]\n\n- Calculate the **average unemployment rate** (`avg_rate`) for each combination of **series** (industry) and **month** across all years\n- Compute the **seasonal variation** for each **series** by calculating the standard deviation of `avg_rate` across the 12 months\n- Identify the **top 3 industries** with the highest `seasonal_std` (most seasonal unemployment patterns)\n- Filter the original data to include only these **top 3 most seasonal industries**\n- Aggregate the filtered data by **series**, **year**, and **month**, computing the mean unemployment **rate** as `avg_rate`\n- Convert **year** to string format for categorical visualization purposes\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"seasonal_std\",\n \"explanation\": \"Standard deviation of average monthly unemployment rates across the 12 months for each industry. This metric quantifies the degree of seasonal variation in unemployment - higher values indicate stronger seasonal patterns (e.g., construction might have higher unemployment in winter months), while lower values indicate more stable year-round employment patterns. Mathematically: \\\\( \\\\text{seasonal\\\\_std} = \\\\sigma(\\\\text{avg\\\\_rate}_{\\\\text{month}=1..12}) \\\\)\"\n }\n]\n```","role":"assistant"}],"status":"ok"}},"anchored":false,"createdBy":"user","attachedMetadata":""}],"charts":[{"id":"chart-1760745839180","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--unemployment-across-industries--month"},"y":{"fieldID":"concept-avg_rate-1760745549715"},"color":{"fieldID":"original--unemployment-across-industries--year"},"opacity":{"channel":"opacity","bin":false},"column":{"fieldID":"original--unemployment-across-industries--series"},"row":{"channel":"row","bin":false}},"tableRef":"table-53","saved":false,"source":"user","unread":false},{"id":"chart-1760745566172","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--unemployment-across-industries--date"},"y":{"fieldID":"original--unemployment-across-industries--rate"},"color":{"fieldID":"original--unemployment-across-industries--series"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-570117","saved":false,"source":"user","unread":false},{"id":"chart-1760745556213","chartType":"Bar Chart","encodingMap":{"x":{"fieldID":"original--unemployment-across-industries--series"},"y":{"fieldID":"concept-rate_increase-1760745562128-0.39751734782017045"},"color":{"channel":"color","bin":false},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-552276","saved":false,"source":"user","unread":false},{"id":"chart-1760745546664","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--unemployment-across-industries--month"},"y":{"fieldID":"concept-avg_rate-1760745549715"},"color":{"fieldID":"original--unemployment-across-industries--series"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-540763","saved":false,"source":"user","unread":false},{"id":"chart-1760745539559","chartType":"Line Chart","encodingMap":{"x":{"fieldID":"original--unemployment-across-industries--date"},"y":{"fieldID":"original--unemployment-across-industries--rate"},"color":{"fieldID":"original--unemployment-across-industries--series"},"opacity":{"channel":"opacity","bin":false},"column":{"channel":"column","bin":false},"row":{"channel":"row","bin":false}},"tableRef":"table-544555","saved":false,"source":"user","unread":false}],"conceptShelfItems":[{"id":"concept-rate_2008-1760745562128-0.09504269144469069","name":"rate_2008","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-rate_2009-1760745562128-0.28775545107582257","name":"rate_2009","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-rate_increase-1760745562128-0.39751734782017045","name":"rate_increase","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-avg_rate-1760745549715","name":"avg_rate","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"concept-month_name-1760745549715","name":"month_name","type":"auto","description":"","source":"custom","tableRef":"custom","temporary":true},{"id":"original--unemployment-across-industries--series","name":"series","type":"string","source":"original","description":"","tableRef":"unemployment-across-industries"},{"id":"original--unemployment-across-industries--year","name":"year","type":"integer","source":"original","description":"","tableRef":"unemployment-across-industries"},{"id":"original--unemployment-across-industries--month","name":"month","type":"integer","source":"original","description":"","tableRef":"unemployment-across-industries"},{"id":"original--unemployment-across-industries--count","name":"count","type":"integer","source":"original","description":"","tableRef":"unemployment-across-industries"},{"id":"original--unemployment-across-industries--rate","name":"rate","type":"number","source":"original","description":"","tableRef":"unemployment-across-industries"},{"id":"original--unemployment-across-industries--date","name":"date","type":"date","source":"original","description":"","tableRef":"unemployment-across-industries"}],"messages":[{"timestamp":1760831348951,"type":"success","component":"data formulator","value":"Successfully loaded Unemployment"}],"displayedMessageIdx":0,"focusedTableId":"table-544555","focusedChartId":"chart-1760745539559","viewMode":"report","chartSynthesisInProgress":[],"config":{"formulateTimeoutSeconds":60,"maxRepairAttempts":1,"defaultChartWidth":300,"defaultChartHeight":300},"agentActions":[{"actionId":"exploreDataFromNL_1760745540005","tableId":"table-570117","description":"• All industries showed rising unemployment trends from 2008-2010, with Mining and Extraction (8.6%), Construction (8.5%), and Manufacturing (6.3%) experiencing the sharpest increases during 2008-2009.\n• Construction unemployment doubled from ~11% in early 2008 to peak at ~27% by early 2010, showing continued deterioration with no recovery by Feb 2010.\n• Manufacturing and Mining stabilized around 12-13% by late 2009, while Construction's unemployment continued climbing, indicating sector-specific recovery patterns with Construction facing the most prolonged crisis.","status":"completed","hidden":false,"lastUpdate":1760745581829}],"dataCleanBlocks":[],"cleanInProgress":false,"generatedReports":[{"id":"report-1760831469874-4137","content":"# The 2008-2010 Recession Hit Construction Hardest\n\nDuring the 2008-2010 financial crisis, unemployment surged dramatically across key industries. Construction workers bore the brunt, with unemployment rates skyrocketing from 11% to a staggering 27% by early 2010—nearly tripling in just two years.\n\n[IMAGE(chart-1760745566172)]\n\nManufacturing and Mining sectors also suffered significant job losses, though less severe than Construction. Manufacturing unemployment doubled from 5% to 13%, while Mining spiked from under 4% to 16% before showing signs of recovery by 2010.\n\n**In summary**, the recession's impact was far from uniform: Construction faced catastrophic job losses, suggesting the housing market collapse disproportionately affected building trades. What factors enabled Mining's earlier recovery? How can vulnerable sectors build resilience against future economic shocks?","style":"short note","selectedChartIds":["chart-1760745566172"],"createdAt":1760831476855},{"id":"report-1760831405296-2186","content":"# Seasonal Employment Patterns Reveal Industry Vulnerabilities Across Economic Cycles\n\nThe unemployment landscape across U.S. industries from 2000-2010 reveals striking seasonal patterns and differential impacts during economic downturns. Analysis of 14 industry sectors demonstrates that certain industries face predictable cyclical challenges while others maintain relative stability throughout the year.\n\n[IMAGE(chart-1760745546664)]\n\n**Cross-industry seasonal dynamics** show distinct unemployment patterns throughout the calendar year. Key findings include:\n\n- **Agriculture** experiences the most dramatic seasonal swings, with unemployment rates peaking above 13% in winter months (January-March) and dropping to approximately 7% during summer harvest seasons\n- **Construction** exhibits similar seasonality, with rates near 13% in January declining to 7-8% during peak building months (May-September)\n- **Government and Finance** sectors demonstrate remarkable stability, maintaining unemployment rates between 2-4% year-round, suggesting these sectors are largely insulated from seasonal fluctuations\n\n[IMAGE(chart-1760745839180)]\n\n**Year-over-year trends for the most seasonal industries** reveal how economic conditions compound seasonal effects. The 2008-2009 recession created unprecedented spikes:\n\n- Construction unemployment surged from typical winter peaks of 10-13% to over 25% by early 2010\n- Agriculture showed dramatic year-to-year variation, with 2009-2010 winter unemployment reaching 19-21%, nearly double the levels seen in 2000\n- Mining and Extraction maintained lower overall rates (2-7%) but still exhibited seasonal patterns, with late-year increases across most periods\n\n**In summary**, industries reliant on weather-dependent operations face significant seasonal unemployment challenges, which are dramatically amplified during economic recessions. While sectors like Government and Finance maintain stable employment year-round, Agriculture and Construction workers experience predictable winter unemployment that can more than double during economic downturns. These patterns suggest the need for targeted workforce development and social safety net programs that account for both seasonal and cyclical employment disruptions. Further investigation should examine whether these patterns have evolved post-2010 and assess the effectiveness of countercyclical policies in stabilizing employment in vulnerable sectors.","style":"executive summary","selectedChartIds":["chart-1760745546664","chart-1760745839180"],"createdAt":1760831421331},{"id":"report-1760831364867-9457","content":"# Unemployment Surge Across Industries: The 2008-2009 Economic Crisis Impact\n\nThe decade from 2000 to 2010 witnessed significant volatility in unemployment rates across major industry sectors, with a dramatic escalation during the 2008-2009 financial crisis that fundamentally reshaped the American labor market.\n\n[IMAGE(chart-1760745539559)]\n\nThe longitudinal analysis reveals that while most industries maintained relatively stable unemployment rates between 2000 and 2007—typically fluctuating between 2% and 8%—the landscape changed dramatically beginning in late 2008. **Construction** emerged as the most severely impacted sector, with unemployment rates soaring to approximately **27% by early 2010**. Similarly, **Agriculture** experienced unprecedented spikes reaching above **22%**, demonstrating the crisis's far-reaching effects beyond traditional white-collar sectors. Even traditionally stable sectors like Government and Finance, which historically maintained rates below 3%, saw significant increases, reaching 5-7% during the peak crisis period.\n\n[IMAGE(chart-1760745556213)]\n\nExamining the year-over-year impact between 2008 and 2009 reveals the crisis's differential industry effects:\n\n- **Mining and Extraction** and **Construction** led all sectors with unemployment rate increases exceeding **8.5 percentage points**\n- **Manufacturing** and **Agriculture** followed with increases above **5 percentage points**\n- **Business services** and **Information** sectors experienced moderate increases of approximately **4 percentage points**\n- **Government** showed the smallest increase at just **1.2 percentage points**, demonstrating relative stability during economic turbulence\n\n**In summary**, the 2008-2009 financial crisis created an unprecedented unemployment shock across American industries, with resource extraction, construction, and manufacturing bearing the heaviest burden. The data reveals that sectors tied to physical production and cyclical economic activity experienced the most severe dislocations, while government employment remained comparatively insulated. Key follow-up questions include: What were the long-term recovery trajectories for these industries post-2010? Did the workers displaced from heavily impacted sectors successfully transition to more stable industries? How did policy interventions differentially affect recovery across these sectors?","style":"executive summary","selectedChartIds":["chart-1760745556213","chart-1760745539559"],"createdAt":1760831379076}],"currentReport":{"id":"report-1760750575650-2619","content":"# Hollywood's Billion-Dollar Hitmakers\n\n*Avatar* stands alone—earning over $2.5B in profit, dwarfing all competition. Action and Adventure films dominate the most profitable titles, with franchises like *Jurassic Park*, *The Dark Knight*, and *Lord of the Rings* proving blockbuster formulas work.\n\n\"Chart\"\n\nSteven Spielberg leads all directors with $7.2B in total profit across his career, showcasing remarkable consistency with hits spanning decades—from *Jurassic Park* to *E.T.* His nearest competitors trail by billions, underlining his unmatched commercial impact.\n\n\"Chart\"\n\n**In summary**, mega-budget Action and Adventure films generate extraordinary returns when they succeed, and a handful of elite directors—led by Spielberg—have mastered the formula for sustained box office dominance.","style":"short note","selectedChartIds":["chart-1760743347871","chart-1760743768741"],"chartImages":{},"createdAt":1760750584189,"title":"Report - 10/17/2025"},"activeChallenges":[],"agentWorkInProgress":[],"_persist":{"version":-1,"rehydrated":true}} \ No newline at end of file +{"tables": [{"kind": "table", "id": "unemployment-across-industries", "displayId": "unemp-by-ind", "names": ["series", "year", "month", "count", "rate", "date"], "metadata": {"series": {"type": "string", "semanticType": "String"}, "year": {"type": "number", "semanticType": "Year"}, "month": {"type": "number", "semanticType": "Month"}, "count": {"type": "number", "semanticType": "Number"}, "rate": {"type": "number", "semanticType": "Percentage"}, "date": {"type": "date", "semanticType": "DateTime"}}, "rows": [{"series": "Government", "year": 2000, "month": 1, "count": 430, "rate": 2.1, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 2, "count": 409, "rate": 2, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 3, "count": 311, "rate": 1.5, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 4, "count": 269, "rate": 1.3, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 5, "count": 370, "rate": 1.9, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 6, "count": 603, "rate": 3.1, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 7, "count": 545, "rate": 2.9, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 8, "count": 583, "rate": 3.1, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 9, "count": 408, "rate": 2.1, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 10, "count": 391, "rate": 2, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 11, "count": 384, "rate": 1.9, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Government", "year": 2000, "month": 12, "count": 365, "rate": 1.8, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 1, "count": 463, "rate": 2.3, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 2, "count": 298, "rate": 1.5, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 3, "count": 355, "rate": 1.8, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 4, "count": 369, "rate": 1.9, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 5, "count": 361, "rate": 1.8, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 6, "count": 525, "rate": 2.7, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 7, "count": 548, "rate": 2.8, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 8, "count": 540, "rate": 2.8, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 9, "count": 438, "rate": 2.2, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 10, "count": 429, "rate": 2.2, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 11, "count": 420, "rate": 2.1, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Government", "year": 2001, "month": 12, "count": 419, "rate": 2.1, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 1, "count": 486, "rate": 2.4, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 2, "count": 508, "rate": 2.5, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 3, "count": 477, "rate": 2.4, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 4, "count": 447, "rate": 2.2, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 5, "count": 484, "rate": 2.3, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 6, "count": 561, "rate": 2.8, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 7, "count": 645, "rate": 3.2, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 8, "count": 596, "rate": 3, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 9, "count": 530, "rate": 2.6, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 10, "count": 499, "rate": 2.5, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 11, "count": 468, "rate": 2.3, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Government", "year": 2002, "month": 12, "count": 446, "rate": 2.2, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 1, "count": 571, "rate": 2.8, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 2, "count": 483, "rate": 2.4, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 3, "count": 526, "rate": 2.6, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 4, "count": 440, "rate": 2.2, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 5, "count": 478, "rate": 2.4, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 6, "count": 704, "rate": 3.5, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 7, "count": 749, "rate": 3.8, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 8, "count": 745, "rate": 3.7, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 9, "count": 556, "rate": 2.7, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 10, "count": 500, "rate": 2.4, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 11, "count": 542, "rate": 2.7, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Government", "year": 2003, "month": 12, "count": 516, "rate": 2.5, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 1, "count": 511, "rate": 2.5, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 2, "count": 490, "rate": 2.4, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 3, "count": 530, "rate": 2.6, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 4, "count": 433, "rate": 2.1, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 5, "count": 468, "rate": 2.3, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 6, "count": 580, "rate": 2.8, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 7, "count": 741, "rate": 3.7, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 8, "count": 676, "rate": 3.3, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 9, "count": 568, "rate": 2.7, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 10, "count": 561, "rate": 2.7, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 11, "count": 514, "rate": 2.4, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Government", "year": 2004, "month": 12, "count": 499, "rate": 2.4, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 1, "count": 555, "rate": 2.6, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 2, "count": 472, "rate": 2.3, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 3, "count": 468, "rate": 2.2, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 4, "count": 478, "rate": 2.3, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 5, "count": 453, "rate": 2.1, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 6, "count": 681, "rate": 3.2, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 7, "count": 683, "rate": 3.3, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 8, "count": 664, "rate": 3.2, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 9, "count": 568, "rate": 2.7, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 10, "count": 502, "rate": 2.4, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 11, "count": 494, "rate": 2.4, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Government", "year": 2005, "month": 12, "count": 393, "rate": 1.9, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 1, "count": 457, "rate": 2.2, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 2, "count": 472, "rate": 2.3, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 3, "count": 461, "rate": 2.2, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 4, "count": 414, "rate": 2, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 5, "count": 429, "rate": 2.1, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 6, "count": 578, "rate": 2.8, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 7, "count": 659, "rate": 3.2, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 8, "count": 595, "rate": 2.9, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 9, "count": 396, "rate": 1.9, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 10, "count": 424, "rate": 2, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 11, "count": 400, "rate": 1.9, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Government", "year": 2006, "month": 12, "count": 395, "rate": 1.9, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 1, "count": 476, "rate": 2.2, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 2, "count": 405, "rate": 1.9, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 3, "count": 419, "rate": 1.9, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 4, "count": 408, "rate": 1.9, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 5, "count": 428, "rate": 1.9, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 6, "count": 572, "rate": 2.7, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 7, "count": 704, "rate": 3.3, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 8, "count": 695, "rate": 3.2, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 9, "count": 525, "rate": 2.4, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 10, "count": 492, "rate": 2.3, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 11, "count": 482, "rate": 2.2, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Government", "year": 2007, "month": 12, "count": 451, "rate": 2.1, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 1, "count": 471, "rate": 2.2, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 2, "count": 372, "rate": 1.7, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 3, "count": 425, "rate": 1.9, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 4, "count": 373, "rate": 1.7, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 5, "count": 461, "rate": 2.1, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 6, "count": 654, "rate": 3, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 7, "count": 770, "rate": 3.6, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 8, "count": 721, "rate": 3.3, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 9, "count": 573, "rate": 2.6, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 10, "count": 552, "rate": 2.5, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 11, "count": 527, "rate": 2.4, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Government", "year": 2008, "month": 12, "count": 511, "rate": 2.3, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 1, "count": 652, "rate": 3, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 2, "count": 563, "rate": 2.6, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 3, "count": 598, "rate": 2.8, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 4, "count": 575, "rate": 2.6, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 5, "count": 702, "rate": 3.1, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 6, "count": 991, "rate": 4.4, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 7, "count": 1129, "rate": 5.1, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 8, "count": 1118, "rate": 5.1, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 9, "count": 928, "rate": 4.2, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 10, "count": 785, "rate": 3.5, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 11, "count": 748, "rate": 3.4, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Government", "year": 2009, "month": 12, "count": 797, "rate": 3.6, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Government", "year": 2010, "month": 1, "count": 948, "rate": 4.3, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Government", "year": 2010, "month": 2, "count": 880, "rate": 4, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 1, "count": 19, "rate": 3.9, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 2, "count": 25, "rate": 5.5, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 3, "count": 17, "rate": 3.7, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 4, "count": 20, "rate": 4.1, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 5, "count": 27, "rate": 5.3, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 6, "count": 13, "rate": 2.6, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 7, "count": 16, "rate": 3.6, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 8, "count": 23, "rate": 5.1, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 9, "count": 25, "rate": 5.8, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 10, "count": 39, "rate": 7.8, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 11, "count": 11, "rate": 2, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2000, "month": 12, "count": 20, "rate": 3.8, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 1, "count": 11, "rate": 2.3, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 2, "count": 27, "rate": 5.3, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 3, "count": 14, "rate": 3, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 4, "count": 24, "rate": 4.7, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 5, "count": 34, "rate": 5.9, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 6, "count": 26, "rate": 4.7, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 7, "count": 17, "rate": 3.1, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 8, "count": 18, "rate": 3.3, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 9, "count": 23, "rate": 4.2, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 10, "count": 32, "rate": 5.4, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 11, "count": 20, "rate": 3.6, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2001, "month": 12, "count": 27, "rate": 5.3, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 1, "count": 33, "rate": 7, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 2, "count": 35, "rate": 7.5, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 3, "count": 28, "rate": 5.3, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 4, "count": 33, "rate": 6.1, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 5, "count": 25, "rate": 4.9, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 6, "count": 35, "rate": 7.1, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 7, "count": 19, "rate": 3.9, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 8, "count": 32, "rate": 6.3, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 9, "count": 42, "rate": 7.9, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 10, "count": 36, "rate": 6.4, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 11, "count": 32, "rate": 5.4, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2002, "month": 12, "count": 45, "rate": 7.8, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 1, "count": 54, "rate": 9, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 2, "count": 41, "rate": 7.1, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 3, "count": 46, "rate": 8.2, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 4, "count": 41, "rate": 7.7, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 5, "count": 40, "rate": 7.5, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 6, "count": 36, "rate": 6.8, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 7, "count": 43, "rate": 7.9, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 8, "count": 20, "rate": 3.8, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 9, "count": 25, "rate": 4.6, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 10, "count": 31, "rate": 5.6, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 11, "count": 34, "rate": 5.9, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2003, "month": 12, "count": 32, "rate": 5.6, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 1, "count": 31, "rate": 5.8, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 2, "count": 24, "rate": 5, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 3, "count": 22, "rate": 4.4, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 4, "count": 34, "rate": 6.4, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 5, "count": 22, "rate": 4.3, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 6, "count": 27, "rate": 5, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 7, "count": 28, "rate": 5.4, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 8, "count": 10, "rate": 1.9, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 9, "count": 8, "rate": 1.5, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 10, "count": 15, "rate": 2.6, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 11, "count": 20, "rate": 3.3, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2004, "month": 12, "count": 16, "rate": 2.5, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 1, "count": 29, "rate": 4.9, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 2, "count": 25, "rate": 4, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 3, "count": 32, "rate": 5.2, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 4, "count": 19, "rate": 2.9, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 5, "count": 16, "rate": 2.4, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 6, "count": 25, "rate": 4, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 7, "count": 22, "rate": 3.7, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 8, "count": 12, "rate": 2, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 9, "count": 12, "rate": 2, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 10, "count": 2, "rate": 0.3, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 11, "count": 18, "rate": 2.9, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2005, "month": 12, "count": 23, "rate": 3.5, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 1, "count": 26, "rate": 3.9, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 2, "count": 25, "rate": 3.8, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 3, "count": 14, "rate": 2.1, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 4, "count": 17, "rate": 2.5, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 5, "count": 20, "rate": 2.8, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 6, "count": 31, "rate": 4.3, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 7, "count": 25, "rate": 3.5, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 8, "count": 32, "rate": 4.3, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 9, "count": 14, "rate": 2.1, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 10, "count": 15, "rate": 2.2, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 11, "count": 22, "rate": 2.9, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2006, "month": 12, "count": 25, "rate": 3.4, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 1, "count": 35, "rate": 4.7, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 2, "count": 33, "rate": 4.5, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 3, "count": 24, "rate": 3.2, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 4, "count": 17, "rate": 2.3, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 5, "count": 22, "rate": 3, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 6, "count": 33, "rate": 4.3, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 7, "count": 33, "rate": 4.3, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 8, "count": 33, "rate": 4.6, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 9, "count": 25, "rate": 3.2, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 10, "count": 9, "rate": 1.3, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 11, "count": 16, "rate": 2.3, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2007, "month": 12, "count": 24, "rate": 3.4, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 1, "count": 28, "rate": 4, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 2, "count": 16, "rate": 2.2, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 3, "count": 28, "rate": 3.7, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 4, "count": 28, "rate": 3.6, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 5, "count": 28, "rate": 3.4, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 6, "count": 28, "rate": 3.3, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 7, "count": 13, "rate": 1.5, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 8, "count": 17, "rate": 1.9, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 9, "count": 25, "rate": 2.8, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 10, "count": 15, "rate": 1.7, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 11, "count": 32, "rate": 3.7, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2008, "month": 12, "count": 46, "rate": 5.2, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 1, "count": 59, "rate": 7, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 2, "count": 63, "rate": 7.6, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 3, "count": 105, "rate": 12.6, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 4, "count": 125, "rate": 16.1, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 5, "count": 98, "rate": 13.3, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 6, "count": 100, "rate": 13.6, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 7, "count": 95, "rate": 12.6, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 8, "count": 93, "rate": 11.8, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 9, "count": 76, "rate": 10.7, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 10, "count": 84, "rate": 10.8, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 11, "count": 96, "rate": 12, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2009, "month": 12, "count": 89, "rate": 11.8, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2010, "month": 1, "count": 68, "rate": 9.1, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Mining and Extraction", "year": 2010, "month": 2, "count": 79, "rate": 10.7, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 1, "count": 745, "rate": 9.7, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 2, "count": 812, "rate": 10.6, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 3, "count": 669, "rate": 8.7, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 4, "count": 447, "rate": 5.8, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 5, "count": 397, "rate": 5, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 6, "count": 389, "rate": 4.6, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 7, "count": 384, "rate": 4.4, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 8, "count": 446, "rate": 5.1, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 9, "count": 386, "rate": 4.6, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 10, "count": 417, "rate": 4.9, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 11, "count": 482, "rate": 5.7, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Construction", "year": 2000, "month": 12, "count": 580, "rate": 6.8, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 1, "count": 836, "rate": 9.8, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 2, "count": 826, "rate": 9.9, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 3, "count": 683, "rate": 8.4, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 4, "count": 596, "rate": 7.1, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 5, "count": 478, "rate": 5.6, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 6, "count": 443, "rate": 5.1, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 7, "count": 447, "rate": 4.9, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 8, "count": 522, "rate": 5.8, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 9, "count": 489, "rate": 5.5, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 10, "count": 535, "rate": 6.1, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 11, "count": 670, "rate": 7.6, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Construction", "year": 2001, "month": 12, "count": 785, "rate": 9, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 1, "count": 1211, "rate": 13.6, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 2, "count": 1060, "rate": 12.2, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 3, "count": 1009, "rate": 11.8, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 4, "count": 855, "rate": 10.1, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 5, "count": 626, "rate": 7.4, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 6, "count": 593, "rate": 6.9, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 7, "count": 594, "rate": 6.9, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 8, "count": 654, "rate": 7.4, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 9, "count": 615, "rate": 7, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 10, "count": 680, "rate": 7.7, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 11, "count": 758, "rate": 8.5, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Construction", "year": 2002, "month": 12, "count": 941, "rate": 10.9, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 1, "count": 1196, "rate": 14, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 2, "count": 1173, "rate": 14, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 3, "count": 987, "rate": 11.8, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 4, "count": 772, "rate": 9.3, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 5, "count": 715, "rate": 8.4, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 6, "count": 710, "rate": 7.9, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 7, "count": 677, "rate": 7.5, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 8, "count": 650, "rate": 7.1, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 9, "count": 681, "rate": 7.6, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 10, "count": 651, "rate": 7.4, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 11, "count": 690, "rate": 7.8, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Construction", "year": 2003, "month": 12, "count": 813, "rate": 9.3, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 1, "count": 994, "rate": 11.3, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 2, "count": 1039, "rate": 11.6, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 3, "count": 1011, "rate": 11.3, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 4, "count": 849, "rate": 9.5, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 5, "count": 665, "rate": 7.4, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 6, "count": 668, "rate": 7, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 7, "count": 610, "rate": 6.4, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 8, "count": 563, "rate": 6, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 9, "count": 629, "rate": 6.8, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 10, "count": 635, "rate": 6.9, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 11, "count": 695, "rate": 7.4, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Construction", "year": 2004, "month": 12, "count": 870, "rate": 9.5, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 1, "count": 1079, "rate": 11.8, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 2, "count": 1150, "rate": 12.3, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 3, "count": 961, "rate": 10.3, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 4, "count": 693, "rate": 7.4, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 5, "count": 567, "rate": 6.1, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 6, "count": 559, "rate": 5.7, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 7, "count": 509, "rate": 5.2, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 8, "count": 561, "rate": 5.7, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 9, "count": 572, "rate": 5.7, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 10, "count": 519, "rate": 5.3, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 11, "count": 564, "rate": 5.7, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Construction", "year": 2005, "month": 12, "count": 813, "rate": 8.2, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 1, "count": 868, "rate": 9, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 2, "count": 836, "rate": 8.6, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 3, "count": 820, "rate": 8.5, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 4, "count": 674, "rate": 6.9, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 5, "count": 647, "rate": 6.6, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 6, "count": 569, "rate": 5.6, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 7, "count": 633, "rate": 6.1, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 8, "count": 618, "rate": 5.9, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 9, "count": 586, "rate": 5.6, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 10, "count": 456, "rate": 4.5, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 11, "count": 618, "rate": 6, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Construction", "year": 2006, "month": 12, "count": 725, "rate": 6.9, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 1, "count": 922, "rate": 8.9, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 2, "count": 1086, "rate": 10.5, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 3, "count": 924, "rate": 9, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 4, "count": 853, "rate": 8.6, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 5, "count": 676, "rate": 6.9, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 6, "count": 600, "rate": 5.9, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 7, "count": 617, "rate": 5.9, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 8, "count": 558, "rate": 5.3, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 9, "count": 596, "rate": 5.8, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 10, "count": 641, "rate": 6.1, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 11, "count": 645, "rate": 6.2, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Construction", "year": 2007, "month": 12, "count": 968, "rate": 9.4, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 1, "count": 1099, "rate": 11, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 2, "count": 1118, "rate": 11.4, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 3, "count": 1170, "rate": 12, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 4, "count": 1057, "rate": 11.1, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 5, "count": 809, "rate": 8.6, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 6, "count": 785, "rate": 8.2, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 7, "count": 783, "rate": 8, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 8, "count": 814, "rate": 8.2, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 9, "count": 970, "rate": 9.9, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 10, "count": 1078, "rate": 10.8, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 11, "count": 1237, "rate": 12.7, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Construction", "year": 2008, "month": 12, "count": 1438, "rate": 15.3, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 1, "count": 1744, "rate": 18.2, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 2, "count": 2025, "rate": 21.4, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 3, "count": 1979, "rate": 21.1, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 4, "count": 1737, "rate": 18.7, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 5, "count": 1768, "rate": 19.2, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 6, "count": 1601, "rate": 17.4, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 7, "count": 1687, "rate": 18.2, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 8, "count": 1542, "rate": 16.5, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 9, "count": 1594, "rate": 17.1, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 10, "count": 1744, "rate": 18.7, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 11, "count": 1780, "rate": 19.4, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Construction", "year": 2009, "month": 12, "count": 2044, "rate": 22.7, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Construction", "year": 2010, "month": 1, "count": 2194, "rate": 24.7, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Construction", "year": 2010, "month": 2, "count": 2440, "rate": 27.1, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 1, "count": 734, "rate": 3.6, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 2, "count": 694, "rate": 3.4, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 3, "count": 739, "rate": 3.6, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 4, "count": 736, "rate": 3.7, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 5, "count": 685, "rate": 3.4, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 6, "count": 621, "rate": 3.1, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 7, "count": 708, "rate": 3.6, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 8, "count": 685, "rate": 3.4, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 9, "count": 667, "rate": 3.4, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 10, "count": 693, "rate": 3.6, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 11, "count": 672, "rate": 3.4, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2000, "month": 12, "count": 653, "rate": 3.3, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 1, "count": 911, "rate": 4.6, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 2, "count": 902, "rate": 4.6, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 3, "count": 954, "rate": 4.9, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 4, "count": 855, "rate": 4.4, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 5, "count": 903, "rate": 4.7, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 6, "count": 956, "rate": 5, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 7, "count": 1054, "rate": 5.6, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 8, "count": 1023, "rate": 5.5, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 9, "count": 996, "rate": 5.4, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 10, "count": 1065, "rate": 5.8, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 11, "count": 1108, "rate": 6, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2001, "month": 12, "count": 1172, "rate": 6.3, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 1, "count": 1377, "rate": 7.4, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 2, "count": 1296, "rate": 7, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 3, "count": 1367, "rate": 7.3, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 4, "count": 1322, "rate": 7.2, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 5, "count": 1194, "rate": 6.6, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 6, "count": 1187, "rate": 6.6, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 7, "count": 1185, "rate": 6.6, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 8, "count": 1108, "rate": 6.2, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 9, "count": 1076, "rate": 6.1, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 10, "count": 1046, "rate": 5.9, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 11, "count": 1115, "rate": 6.3, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2002, "month": 12, "count": 1188, "rate": 6.6, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 1, "count": 1302, "rate": 7.2, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 2, "count": 1229, "rate": 6.7, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 3, "count": 1222, "rate": 6.8, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 4, "count": 1199, "rate": 6.7, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 5, "count": 1150, "rate": 6.5, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 6, "count": 1232, "rate": 7, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 7, "count": 1193, "rate": 6.9, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 8, "count": 1186, "rate": 6.7, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 9, "count": 1175, "rate": 6.8, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 10, "count": 1041, "rate": 6, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 11, "count": 1034, "rate": 5.9, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2003, "month": 12, "count": 1025, "rate": 5.9, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 1, "count": 1110, "rate": 6.4, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 2, "count": 1094, "rate": 6.3, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 3, "count": 1083, "rate": 6.3, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 4, "count": 1004, "rate": 5.8, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 5, "count": 966, "rate": 5.6, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 6, "count": 957, "rate": 5.6, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 7, "count": 1019, "rate": 6, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 8, "count": 840, "rate": 4.9, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 9, "count": 852, "rate": 5, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 10, "count": 884, "rate": 5.3, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 11, "count": 905, "rate": 5.4, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2004, "month": 12, "count": 872, "rate": 5.1, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 1, "count": 889, "rate": 5.3, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 2, "count": 889, "rate": 5.3, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 3, "count": 879, "rate": 5.3, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 4, "count": 793, "rate": 4.8, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 5, "count": 743, "rate": 4.5, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 6, "count": 743, "rate": 4.4, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 7, "count": 883, "rate": 5.3, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 8, "count": 767, "rate": 4.7, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 9, "count": 775, "rate": 4.7, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 10, "count": 800, "rate": 4.8, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 11, "count": 823, "rate": 4.9, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2005, "month": 12, "count": 757, "rate": 4.5, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 1, "count": 778, "rate": 4.6, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 2, "count": 821, "rate": 4.9, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 3, "count": 701, "rate": 4.1, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 4, "count": 745, "rate": 4.5, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 5, "count": 680, "rate": 4.1, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 6, "count": 635, "rate": 3.8, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 7, "count": 736, "rate": 4.4, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 8, "count": 680, "rate": 4.1, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 9, "count": 632, "rate": 3.8, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 10, "count": 618, "rate": 3.7, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 11, "count": 702, "rate": 4.3, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2006, "month": 12, "count": 660, "rate": 4, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 1, "count": 752, "rate": 4.6, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 2, "count": 774, "rate": 4.7, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 3, "count": 742, "rate": 4.5, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 4, "count": 749, "rate": 4.6, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 5, "count": 651, "rate": 3.9, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 6, "count": 653, "rate": 4, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 7, "count": 621, "rate": 3.7, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 8, "count": 596, "rate": 3.6, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 9, "count": 673, "rate": 4.1, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 10, "count": 729, "rate": 4.3, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 11, "count": 762, "rate": 4.5, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2007, "month": 12, "count": 772, "rate": 4.6, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 1, "count": 837, "rate": 5.1, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 2, "count": 820, "rate": 5, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 3, "count": 831, "rate": 5, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 4, "count": 796, "rate": 4.8, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 5, "count": 879, "rate": 5.3, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 6, "count": 862, "rate": 5.2, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 7, "count": 908, "rate": 5.5, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 8, "count": 960, "rate": 5.7, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 9, "count": 984, "rate": 6, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 10, "count": 1007, "rate": 6.2, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 11, "count": 1144, "rate": 7, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2008, "month": 12, "count": 1315, "rate": 8.3, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 1, "count": 1711, "rate": 10.9, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 2, "count": 1822, "rate": 11.5, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 3, "count": 1912, "rate": 12.2, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 4, "count": 1968, "rate": 12.4, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 5, "count": 2010, "rate": 12.6, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 6, "count": 2010, "rate": 12.6, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 7, "count": 1988, "rate": 12.4, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 8, "count": 1866, "rate": 11.8, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 9, "count": 1876, "rate": 11.9, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 10, "count": 1884, "rate": 12.2, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 11, "count": 1882, "rate": 12.5, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Manufacturing", "year": 2009, "month": 12, "count": 1747, "rate": 11.9, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2010, "month": 1, "count": 1918, "rate": 13, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Manufacturing", "year": 2010, "month": 2, "count": 1814, "rate": 12.1, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 1, "count": 1000, "rate": 5, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 2, "count": 1023, "rate": 5.2, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 3, "count": 983, "rate": 5.1, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 4, "count": 793, "rate": 4.1, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 5, "count": 821, "rate": 4.3, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 6, "count": 837, "rate": 4.4, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 7, "count": 792, "rate": 4.1, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 8, "count": 853, "rate": 4.3, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 9, "count": 791, "rate": 4.1, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 10, "count": 739, "rate": 3.7, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 11, "count": 701, "rate": 3.6, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2000, "month": 12, "count": 715, "rate": 3.7, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 1, "count": 908, "rate": 4.7, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 2, "count": 990, "rate": 5.2, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 3, "count": 1037, "rate": 5.4, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 4, "count": 820, "rate": 4.3, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 5, "count": 875, "rate": 4.5, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 6, "count": 955, "rate": 4.9, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 7, "count": 833, "rate": 4.3, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 8, "count": 928, "rate": 4.8, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 9, "count": 936, "rate": 4.8, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 10, "count": 941, "rate": 4.8, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 11, "count": 1046, "rate": 5.3, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2001, "month": 12, "count": 1074, "rate": 5.4, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 1, "count": 1212, "rate": 6.3, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 2, "count": 1264, "rate": 6.6, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 3, "count": 1269, "rate": 6.6, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 4, "count": 1222, "rate": 6.4, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 5, "count": 1138, "rate": 5.8, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 6, "count": 1240, "rate": 6.2, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 7, "count": 1132, "rate": 5.6, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 8, "count": 1170, "rate": 5.8, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 9, "count": 1171, "rate": 5.9, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 10, "count": 1212, "rate": 6.1, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 11, "count": 1242, "rate": 6.2, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2002, "month": 12, "count": 1150, "rate": 5.7, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 1, "count": 1342, "rate": 6.7, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 2, "count": 1238, "rate": 6.1, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 3, "count": 1179, "rate": 5.9, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 4, "count": 1201, "rate": 6, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 5, "count": 1247, "rate": 6.2, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 6, "count": 1434, "rate": 6.9, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 7, "count": 1387, "rate": 6.6, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 8, "count": 1161, "rate": 5.6, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 9, "count": 1229, "rate": 5.9, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 10, "count": 1189, "rate": 5.7, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 11, "count": 1156, "rate": 5.4, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2003, "month": 12, "count": 1081, "rate": 5, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 1, "count": 1389, "rate": 6.5, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 2, "count": 1369, "rate": 6.5, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 3, "count": 1386, "rate": 6.8, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 4, "count": 1248, "rate": 6.1, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 5, "count": 1183, "rate": 5.8, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 6, "count": 1182, "rate": 5.8, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 7, "count": 1163, "rate": 5.5, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 8, "count": 1079, "rate": 5.1, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 9, "count": 1127, "rate": 5.5, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 10, "count": 1138, "rate": 5.4, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 11, "count": 1045, "rate": 5, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2004, "month": 12, "count": 1058, "rate": 5, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 1, "count": 1302, "rate": 6.3, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 2, "count": 1301, "rate": 6.2, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 3, "count": 1173, "rate": 5.6, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 4, "count": 1131, "rate": 5.4, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 5, "count": 1145, "rate": 5.4, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 6, "count": 1197, "rate": 5.7, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 7, "count": 1194, "rate": 5.6, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 8, "count": 1130, "rate": 5.3, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 9, "count": 1038, "rate": 4.9, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 10, "count": 1050, "rate": 4.9, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 11, "count": 1013, "rate": 4.7, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2005, "month": 12, "count": 968, "rate": 4.5, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 1, "count": 1203, "rate": 5.7, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 2, "count": 1141, "rate": 5.4, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 3, "count": 1022, "rate": 4.9, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 4, "count": 972, "rate": 4.6, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 5, "count": 1025, "rate": 4.8, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 6, "count": 1085, "rate": 5.1, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 7, "count": 1083, "rate": 5.1, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 8, "count": 977, "rate": 4.7, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 9, "count": 1008, "rate": 4.9, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 10, "count": 972, "rate": 4.7, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 11, "count": 1018, "rate": 4.8, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2006, "month": 12, "count": 965, "rate": 4.5, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 1, "count": 1166, "rate": 5.5, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 2, "count": 1045, "rate": 5.1, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 3, "count": 896, "rate": 4.4, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 4, "count": 872, "rate": 4.2, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 5, "count": 795, "rate": 3.9, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 6, "count": 979, "rate": 4.6, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 7, "count": 1089, "rate": 5.2, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 8, "count": 1028, "rate": 5.1, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 9, "count": 1027, "rate": 5.1, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 10, "count": 907, "rate": 4.4, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 11, "count": 893, "rate": 4.3, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2007, "month": 12, "count": 1009, "rate": 4.8, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 1, "count": 1120, "rate": 5.4, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 2, "count": 1007, "rate": 4.9, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 3, "count": 992, "rate": 4.9, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 4, "count": 919, "rate": 4.5, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 5, "count": 1049, "rate": 5.2, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 6, "count": 1160, "rate": 5.7, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 7, "count": 1329, "rate": 6.5, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 8, "count": 1366, "rate": 6.6, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 9, "count": 1277, "rate": 6.2, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 10, "count": 1313, "rate": 6.3, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 11, "count": 1397, "rate": 6.7, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2008, "month": 12, "count": 1535, "rate": 7.2, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 1, "count": 1794, "rate": 8.7, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 2, "count": 1847, "rate": 8.9, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 3, "count": 1852, "rate": 9, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 4, "count": 1833, "rate": 9, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 5, "count": 1835, "rate": 9, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 6, "count": 1863, "rate": 9.1, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 7, "count": 1854, "rate": 9, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 8, "count": 1794, "rate": 8.8, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 9, "count": 1809, "rate": 9, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 10, "count": 1919, "rate": 9.6, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 11, "count": 1879, "rate": 9.2, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2009, "month": 12, "count": 1851, "rate": 9.1, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2010, "month": 1, "count": 2154, "rate": 10.5, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Wholesale and Retail Trade", "year": 2010, "month": 2, "count": 2071, "rate": 10, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 1, "count": 236, "rate": 4.3, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 2, "count": 223, "rate": 4, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 3, "count": 192, "rate": 3.5, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 4, "count": 191, "rate": 3.4, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 5, "count": 190, "rate": 3.4, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 6, "count": 183, "rate": 3.2, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 7, "count": 228, "rate": 3.9, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 8, "count": 198, "rate": 3.4, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 9, "count": 231, "rate": 4, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 10, "count": 153, "rate": 2.8, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 11, "count": 129, "rate": 2.3, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2000, "month": 12, "count": 168, "rate": 3.1, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 1, "count": 194, "rate": 3.6, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 2, "count": 189, "rate": 3.4, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 3, "count": 193, "rate": 3.5, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 4, "count": 232, "rate": 4.2, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 5, "count": 178, "rate": 3.1, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 6, "count": 242, "rate": 4.3, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 7, "count": 236, "rate": 4.2, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 8, "count": 226, "rate": 3.9, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 9, "count": 214, "rate": 3.9, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 10, "count": 321, "rate": 5.8, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 11, "count": 302, "rate": 5.4, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2001, "month": 12, "count": 310, "rate": 5.6, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 1, "count": 368, "rate": 6.6, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 2, "count": 331, "rate": 5.7, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 3, "count": 313, "rate": 5.6, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 4, "count": 280, "rate": 5, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 5, "count": 257, "rate": 4.5, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 6, "count": 274, "rate": 4.9, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 7, "count": 270, "rate": 4.9, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 8, "count": 221, "rate": 3.9, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 9, "count": 235, "rate": 4.2, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 10, "count": 262, "rate": 4.7, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 11, "count": 233, "rate": 4.2, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2002, "month": 12, "count": 243, "rate": 4.6, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 1, "count": 331, "rate": 6.3, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 2, "count": 316, "rate": 5.8, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 3, "count": 319, "rate": 5.9, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 4, "count": 274, "rate": 5, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 5, "count": 260, "rate": 4.9, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 6, "count": 300, "rate": 5.5, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 7, "count": 289, "rate": 5.4, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 8, "count": 255, "rate": 4.8, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 9, "count": 255, "rate": 4.7, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 10, "count": 260, "rate": 4.8, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 11, "count": 275, "rate": 5.1, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2003, "month": 12, "count": 267, "rate": 5, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 1, "count": 243, "rate": 4.6, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 2, "count": 291, "rate": 5.5, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 3, "count": 284, "rate": 5.4, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 4, "count": 239, "rate": 4.5, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 5, "count": 230, "rate": 4.4, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 6, "count": 227, "rate": 4.3, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 7, "count": 231, "rate": 4.3, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 8, "count": 236, "rate": 4.4, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 9, "count": 208, "rate": 3.9, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 10, "count": 219, "rate": 4, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 11, "count": 217, "rate": 4, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2004, "month": 12, "count": 204, "rate": 3.8, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 1, "count": 276, "rate": 5, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 2, "count": 245, "rate": 4.4, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 3, "count": 267, "rate": 4.8, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 4, "count": 257, "rate": 4.7, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 5, "count": 223, "rate": 4.1, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 6, "count": 247, "rate": 4.5, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 7, "count": 222, "rate": 3.9, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 8, "count": 187, "rate": 3.3, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 9, "count": 211, "rate": 3.7, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 10, "count": 251, "rate": 4.4, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 11, "count": 199, "rate": 3.5, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2005, "month": 12, "count": 202, "rate": 3.6, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 1, "count": 287, "rate": 5, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 2, "count": 260, "rate": 4.6, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 3, "count": 263, "rate": 4.7, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 4, "count": 272, "rate": 4.8, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 5, "count": 226, "rate": 4, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 6, "count": 225, "rate": 3.9, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 7, "count": 237, "rate": 4.2, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 8, "count": 217, "rate": 3.7, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 9, "count": 183, "rate": 3.1, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 10, "count": 206, "rate": 3.6, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 11, "count": 183, "rate": 3.1, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2006, "month": 12, "count": 190, "rate": 3.2, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 1, "count": 248, "rate": 4.2, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 2, "count": 251, "rate": 4.2, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 3, "count": 249, "rate": 4.3, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 4, "count": 188, "rate": 3.3, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 5, "count": 216, "rate": 3.8, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 6, "count": 242, "rate": 4.1, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 7, "count": 309, "rate": 5.1, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 8, "count": 205, "rate": 3.4, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 9, "count": 224, "rate": 3.7, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 10, "count": 218, "rate": 3.6, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 11, "count": 242, "rate": 3.9, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2007, "month": 12, "count": 210, "rate": 3.4, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 1, "count": 271, "rate": 4.4, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 2, "count": 289, "rate": 4.6, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 3, "count": 267, "rate": 4.3, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 4, "count": 245, "rate": 4, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 5, "count": 269, "rate": 4.3, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 6, "count": 329, "rate": 5.1, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 7, "count": 359, "rate": 5.7, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 8, "count": 309, "rate": 5.2, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 9, "count": 337, "rate": 5.8, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 10, "count": 316, "rate": 5.7, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 11, "count": 331, "rate": 5.8, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2008, "month": 12, "count": 421, "rate": 6.7, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 1, "count": 522, "rate": 8.4, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 2, "count": 563, "rate": 9.1, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 3, "count": 558, "rate": 9, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 4, "count": 541, "rate": 9, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 5, "count": 506, "rate": 8.5, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 6, "count": 499, "rate": 8.4, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 7, "count": 511, "rate": 8.8, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 8, "count": 547, "rate": 9.8, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 9, "count": 538, "rate": 9.5, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 10, "count": 480, "rate": 8.6, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 11, "count": 493, "rate": 8.5, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2009, "month": 12, "count": 539, "rate": 9, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2010, "month": 1, "count": 657, "rate": 11.3, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Transportation and Utilities", "year": 2010, "month": 2, "count": 591, "rate": 10.5, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 1, "count": 125, "rate": 3.4, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 2, "count": 112, "rate": 2.9, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 3, "count": 140, "rate": 3.6, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 4, "count": 95, "rate": 2.4, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 5, "count": 131, "rate": 3.5, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 6, "count": 102, "rate": 2.6, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 7, "count": 144, "rate": 3.6, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 8, "count": 143, "rate": 3.7, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 9, "count": 130, "rate": 3.3, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 10, "count": 96, "rate": 2.4, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 11, "count": 117, "rate": 3, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Information", "year": 2000, "month": 12, "count": 151, "rate": 4, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 1, "count": 161, "rate": 4.1, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 2, "count": 109, "rate": 2.9, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 3, "count": 148, "rate": 3.8, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 4, "count": 148, "rate": 3.7, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 5, "count": 164, "rate": 4.2, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 6, "count": 163, "rate": 4.1, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 7, "count": 206, "rate": 5.2, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 8, "count": 210, "rate": 5.4, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 9, "count": 219, "rate": 5.6, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 10, "count": 233, "rate": 6, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 11, "count": 241, "rate": 6.2, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Information", "year": 2001, "month": 12, "count": 275, "rate": 7.4, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 1, "count": 263, "rate": 7.1, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 2, "count": 279, "rate": 7.6, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 3, "count": 266, "rate": 7.2, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 4, "count": 257, "rate": 6.9, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 5, "count": 260, "rate": 7.2, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 6, "count": 255, "rate": 6.9, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 7, "count": 264, "rate": 7.1, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 8, "count": 270, "rate": 7.1, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 9, "count": 231, "rate": 6.3, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 10, "count": 211, "rate": 6, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 11, "count": 220, "rate": 6.5, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Information", "year": 2002, "month": 12, "count": 255, "rate": 7.2, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 1, "count": 243, "rate": 6.7, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 2, "count": 321, "rate": 8.6, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 3, "count": 267, "rate": 7.4, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 4, "count": 268, "rate": 7.3, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 5, "count": 251, "rate": 6.9, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 6, "count": 239, "rate": 6.4, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 7, "count": 224, "rate": 5.9, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 8, "count": 224, "rate": 6.1, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 9, "count": 248, "rate": 7, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 10, "count": 182, "rate": 5.4, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 11, "count": 257, "rate": 7.6, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Information", "year": 2003, "month": 12, "count": 224, "rate": 6.5, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 1, "count": 236, "rate": 7, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 2, "count": 194, "rate": 5.8, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 3, "count": 216, "rate": 6.3, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 4, "count": 168, "rate": 5, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 5, "count": 190, "rate": 5.7, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 6, "count": 172, "rate": 5, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 7, "count": 174, "rate": 5.2, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 8, "count": 191, "rate": 5.7, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 9, "count": 178, "rate": 5.4, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 10, "count": 185, "rate": 5.6, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 11, "count": 187, "rate": 5.6, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Information", "year": 2004, "month": 12, "count": 173, "rate": 5.7, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 1, "count": 168, "rate": 5.4, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 2, "count": 204, "rate": 6.5, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 3, "count": 177, "rate": 6, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 4, "count": 178, "rate": 5.9, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 5, "count": 145, "rate": 4.7, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 6, "count": 160, "rate": 5, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 7, "count": 142, "rate": 4.2, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 8, "count": 156, "rate": 4.6, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 9, "count": 168, "rate": 4.9, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 10, "count": 162, "rate": 4.8, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 11, "count": 172, "rate": 5.1, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Information", "year": 2005, "month": 12, "count": 128, "rate": 3.7, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 1, "count": 105, "rate": 3.3, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 2, "count": 119, "rate": 3.7, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 3, "count": 116, "rate": 3.5, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 4, "count": 132, "rate": 4.2, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 5, "count": 158, "rate": 4.8, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 6, "count": 114, "rate": 3.4, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 7, "count": 103, "rate": 3, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 8, "count": 132, "rate": 3.9, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 9, "count": 170, "rate": 4.9, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 10, "count": 116, "rate": 3.4, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 11, "count": 137, "rate": 3.9, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Information", "year": 2006, "month": 12, "count": 108, "rate": 2.9, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 1, "count": 143, "rate": 4, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 2, "count": 139, "rate": 4, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 3, "count": 109, "rate": 3.2, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 4, "count": 77, "rate": 2.4, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 5, "count": 110, "rate": 3.3, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 6, "count": 114, "rate": 3.4, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 7, "count": 112, "rate": 3.4, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 8, "count": 140, "rate": 4.1, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 9, "count": 124, "rate": 3.7, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 10, "count": 120, "rate": 3.7, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 11, "count": 132, "rate": 4, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Information", "year": 2007, "month": 12, "count": 125, "rate": 3.7, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 1, "count": 169, "rate": 5.1, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 2, "count": 193, "rate": 5.8, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 3, "count": 155, "rate": 4.8, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 4, "count": 143, "rate": 4.4, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 5, "count": 170, "rate": 5, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 6, "count": 157, "rate": 4.7, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 7, "count": 141, "rate": 4.1, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 8, "count": 144, "rate": 4.2, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 9, "count": 166, "rate": 5, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 10, "count": 168, "rate": 5, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 11, "count": 173, "rate": 5.2, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Information", "year": 2008, "month": 12, "count": 219, "rate": 6.9, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 1, "count": 232, "rate": 7.4, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 2, "count": 224, "rate": 7.1, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 3, "count": 252, "rate": 7.8, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 4, "count": 320, "rate": 10.1, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 5, "count": 303, "rate": 9.5, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 6, "count": 347, "rate": 11.1, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 7, "count": 373, "rate": 11.5, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 8, "count": 358, "rate": 10.7, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 9, "count": 362, "rate": 11.2, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 10, "count": 261, "rate": 8.2, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 11, "count": 243, "rate": 7.6, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Information", "year": 2009, "month": 12, "count": 256, "rate": 8.5, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Information", "year": 2010, "month": 1, "count": 313, "rate": 10, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Information", "year": 2010, "month": 2, "count": 300, "rate": 10, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 1, "count": 228, "rate": 2.7, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 2, "count": 240, "rate": 2.8, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 3, "count": 226, "rate": 2.6, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 4, "count": 197, "rate": 2.3, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 5, "count": 195, "rate": 2.2, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 6, "count": 216, "rate": 2.5, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 7, "count": 190, "rate": 2.2, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 8, "count": 213, "rate": 2.5, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 9, "count": 187, "rate": 2.2, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 10, "count": 224, "rate": 2.6, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 11, "count": 184, "rate": 2.1, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Finance", "year": 2000, "month": 12, "count": 200, "rate": 2.3, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 1, "count": 232, "rate": 2.6, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 2, "count": 235, "rate": 2.6, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 3, "count": 211, "rate": 2.4, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 4, "count": 232, "rate": 2.6, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 5, "count": 191, "rate": 2.2, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 6, "count": 249, "rate": 2.8, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 7, "count": 289, "rate": 3.3, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 8, "count": 256, "rate": 2.9, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 9, "count": 268, "rate": 3.1, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 10, "count": 281, "rate": 3.3, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 11, "count": 320, "rate": 3.6, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Finance", "year": 2001, "month": 12, "count": 258, "rate": 3, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 1, "count": 267, "rate": 3, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 2, "count": 318, "rate": 3.5, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 3, "count": 287, "rate": 3.2, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 4, "count": 292, "rate": 3.3, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 5, "count": 340, "rate": 3.8, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 6, "count": 373, "rate": 4.1, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 7, "count": 345, "rate": 3.8, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 8, "count": 343, "rate": 3.8, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 9, "count": 299, "rate": 3.3, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 10, "count": 312, "rate": 3.5, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 11, "count": 337, "rate": 3.7, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Finance", "year": 2002, "month": 12, "count": 322, "rate": 3.6, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 1, "count": 327, "rate": 3.6, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 2, "count": 310, "rate": 3.4, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 3, "count": 357, "rate": 4, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 4, "count": 323, "rate": 3.6, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 5, "count": 320, "rate": 3.6, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 6, "count": 358, "rate": 4, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 7, "count": 284, "rate": 3.1, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 8, "count": 342, "rate": 3.7, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 9, "count": 305, "rate": 3.3, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 10, "count": 303, "rate": 3.3, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 11, "count": 311, "rate": 3.3, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Finance", "year": 2003, "month": 12, "count": 283, "rate": 3, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 1, "count": 403, "rate": 4.3, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 2, "count": 363, "rate": 3.8, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 3, "count": 343, "rate": 3.7, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 4, "count": 312, "rate": 3.4, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 5, "count": 302, "rate": 3.3, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 6, "count": 335, "rate": 3.6, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 7, "count": 307, "rate": 3.3, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 8, "count": 312, "rate": 3.4, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 9, "count": 374, "rate": 4, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 10, "count": 358, "rate": 3.8, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 11, "count": 290, "rate": 3.1, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Finance", "year": 2004, "month": 12, "count": 290, "rate": 3.1, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 1, "count": 252, "rate": 2.7, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 2, "count": 301, "rate": 3.2, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 3, "count": 261, "rate": 2.7, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 4, "count": 255, "rate": 2.7, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 5, "count": 288, "rate": 3.1, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 6, "count": 307, "rate": 3.3, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 7, "count": 309, "rate": 3.3, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 8, "count": 300, "rate": 3.2, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 9, "count": 260, "rate": 2.7, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 10, "count": 255, "rate": 2.7, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 11, "count": 268, "rate": 2.8, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Finance", "year": 2005, "month": 12, "count": 204, "rate": 2.1, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 1, "count": 233, "rate": 2.4, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 2, "count": 268, "rate": 2.8, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 3, "count": 298, "rate": 3.1, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 4, "count": 293, "rate": 3.1, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 5, "count": 289, "rate": 3, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 6, "count": 299, "rate": 3.1, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 7, "count": 329, "rate": 3.4, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 8, "count": 263, "rate": 2.7, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 9, "count": 235, "rate": 2.4, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 10, "count": 211, "rate": 2.1, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 11, "count": 229, "rate": 2.3, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Finance", "year": 2006, "month": 12, "count": 227, "rate": 2.3, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 1, "count": 233, "rate": 2.4, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 2, "count": 295, "rate": 3.1, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 3, "count": 252, "rate": 2.6, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 4, "count": 231, "rate": 2.4, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 5, "count": 281, "rate": 2.9, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 6, "count": 303, "rate": 3.1, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 7, "count": 307, "rate": 3.1, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 8, "count": 371, "rate": 3.7, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 9, "count": 316, "rate": 3.3, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 10, "count": 307, "rate": 3.2, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 11, "count": 261, "rate": 2.7, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Finance", "year": 2007, "month": 12, "count": 315, "rate": 3.2, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 1, "count": 285, "rate": 3, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 2, "count": 323, "rate": 3.4, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 3, "count": 323, "rate": 3.4, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 4, "count": 324, "rate": 3.4, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 5, "count": 361, "rate": 3.7, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 6, "count": 337, "rate": 3.4, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 7, "count": 350, "rate": 3.6, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 8, "count": 409, "rate": 4.2, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 9, "count": 380, "rate": 4, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 10, "count": 434, "rate": 4.5, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 11, "count": 494, "rate": 5.2, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Finance", "year": 2008, "month": 12, "count": 540, "rate": 5.6, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 1, "count": 571, "rate": 6, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 2, "count": 637, "rate": 6.7, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 3, "count": 639, "rate": 6.8, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 4, "count": 561, "rate": 6, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 5, "count": 536, "rate": 5.7, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 6, "count": 513, "rate": 5.5, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 7, "count": 570, "rate": 6.1, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 8, "count": 566, "rate": 6, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 9, "count": 657, "rate": 7.1, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 10, "count": 646, "rate": 7, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 11, "count": 619, "rate": 6.7, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Finance", "year": 2009, "month": 12, "count": 665, "rate": 7.2, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Finance", "year": 2010, "month": 1, "count": 623, "rate": 6.6, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Finance", "year": 2010, "month": 2, "count": 708, "rate": 7.5, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 1, "count": 655, "rate": 5.7, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 2, "count": 587, "rate": 5.2, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 3, "count": 623, "rate": 5.4, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 4, "count": 517, "rate": 4.5, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 5, "count": 561, "rate": 4.7, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 6, "count": 545, "rate": 4.4, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 7, "count": 636, "rate": 5.1, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 8, "count": 584, "rate": 4.8, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 9, "count": 559, "rate": 4.6, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 10, "count": 504, "rate": 4.1, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 11, "count": 547, "rate": 4.4, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Business services", "year": 2000, "month": 12, "count": 564, "rate": 4.5, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 1, "count": 734, "rate": 5.8, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 2, "count": 724, "rate": 5.9, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 3, "count": 652, "rate": 5.3, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 4, "count": 655, "rate": 5.3, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 5, "count": 652, "rate": 5.3, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 6, "count": 694, "rate": 5.4, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 7, "count": 731, "rate": 5.7, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 8, "count": 790, "rate": 6.2, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 9, "count": 810, "rate": 6.4, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 10, "count": 910, "rate": 7.2, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 11, "count": 946, "rate": 7.6, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Business services", "year": 2001, "month": 12, "count": 921, "rate": 7.4, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 1, "count": 1120, "rate": 8.9, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 2, "count": 973, "rate": 7.7, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 3, "count": 964, "rate": 7.5, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 4, "count": 951, "rate": 7.3, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 5, "count": 983, "rate": 7.7, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 6, "count": 1079, "rate": 8.2, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 7, "count": 1075, "rate": 8.2, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 8, "count": 926, "rate": 7.2, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 9, "count": 1007, "rate": 7.8, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 10, "count": 962, "rate": 7.5, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 11, "count": 1029, "rate": 8.2, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Business services", "year": 2002, "month": 12, "count": 1038, "rate": 8.3, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 1, "count": 1112, "rate": 8.9, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 2, "count": 1140, "rate": 8.9, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 3, "count": 1190, "rate": 9.1, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 4, "count": 1076, "rate": 8.3, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 5, "count": 1105, "rate": 8.4, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 6, "count": 1092, "rate": 8.5, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 7, "count": 1021, "rate": 8.2, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 8, "count": 881, "rate": 7.2, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 9, "count": 975, "rate": 8, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 10, "count": 1014, "rate": 8.1, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 11, "count": 948, "rate": 7.7, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Business services", "year": 2003, "month": 12, "count": 948, "rate": 7.6, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 1, "count": 1070, "rate": 8.7, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 2, "count": 964, "rate": 7.7, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 3, "count": 999, "rate": 7.9, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 4, "count": 752, "rate": 6, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 5, "count": 819, "rate": 6.5, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 6, "count": 814, "rate": 6.5, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 7, "count": 790, "rate": 6.2, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 8, "count": 845, "rate": 6.7, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 9, "count": 750, "rate": 5.9, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 10, "count": 781, "rate": 6.2, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 11, "count": 872, "rate": 6.8, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Business services", "year": 2004, "month": 12, "count": 875, "rate": 6.9, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 1, "count": 958, "rate": 7.6, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 2, "count": 916, "rate": 7.2, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 3, "count": 807, "rate": 6.5, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 4, "count": 714, "rate": 5.7, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 5, "count": 730, "rate": 5.9, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 6, "count": 743, "rate": 5.8, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 7, "count": 804, "rate": 6.3, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 8, "count": 728, "rate": 5.7, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 9, "count": 862, "rate": 6.7, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 10, "count": 748, "rate": 5.8, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 11, "count": 711, "rate": 5.5, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Business services", "year": 2005, "month": 12, "count": 788, "rate": 6.1, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 1, "count": 825, "rate": 6.5, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 2, "count": 841, "rate": 6.5, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 3, "count": 824, "rate": 6.3, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 4, "count": 644, "rate": 4.9, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 5, "count": 695, "rate": 5.3, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 6, "count": 753, "rate": 5.7, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 7, "count": 735, "rate": 5.5, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 8, "count": 681, "rate": 5.1, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 9, "count": 736, "rate": 5.6, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 10, "count": 768, "rate": 5.6, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 11, "count": 658, "rate": 4.9, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Business services", "year": 2006, "month": 12, "count": 791, "rate": 5.9, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 1, "count": 885, "rate": 6.5, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 2, "count": 825, "rate": 6, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 3, "count": 775, "rate": 5.7, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 4, "count": 689, "rate": 5, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 5, "count": 743, "rate": 5.4, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 6, "count": 722, "rate": 5.2, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 7, "count": 743, "rate": 5.2, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 8, "count": 683, "rate": 4.9, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 9, "count": 655, "rate": 4.7, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 10, "count": 675, "rate": 4.8, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 11, "count": 679, "rate": 4.8, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Business services", "year": 2007, "month": 12, "count": 803, "rate": 5.7, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 1, "count": 893, "rate": 6.4, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 2, "count": 866, "rate": 6.2, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 3, "count": 876, "rate": 6.2, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 4, "count": 736, "rate": 5.3, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 5, "count": 829, "rate": 5.9, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 6, "count": 890, "rate": 6.2, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 7, "count": 866, "rate": 6.1, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 8, "count": 961, "rate": 6.9, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 9, "count": 951, "rate": 6.9, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 10, "count": 1052, "rate": 7.5, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 11, "count": 992, "rate": 7, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Business services", "year": 2008, "month": 12, "count": 1147, "rate": 8.1, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 1, "count": 1445, "rate": 10.4, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 2, "count": 1512, "rate": 10.8, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 3, "count": 1597, "rate": 11.4, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 4, "count": 1448, "rate": 10.4, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 5, "count": 1514, "rate": 10.9, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 6, "count": 1580, "rate": 11.3, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 7, "count": 1531, "rate": 10.9, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 8, "count": 1560, "rate": 11, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 9, "count": 1596, "rate": 11.3, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 10, "count": 1488, "rate": 10.3, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 11, "count": 1514, "rate": 10.6, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Business services", "year": 2009, "month": 12, "count": 1486, "rate": 10.3, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Business services", "year": 2010, "month": 1, "count": 1614, "rate": 11.1, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Business services", "year": 2010, "month": 2, "count": 1740, "rate": 12, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 1, "count": 353, "rate": 2.3, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 2, "count": 349, "rate": 2.2, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 3, "count": 381, "rate": 2.5, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 4, "count": 329, "rate": 2.1, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 5, "count": 423, "rate": 2.7, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 6, "count": 452, "rate": 2.9, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 7, "count": 478, "rate": 3.1, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 8, "count": 450, "rate": 2.9, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 9, "count": 398, "rate": 2.6, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 10, "count": 339, "rate": 2.1, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 11, "count": 351, "rate": 2.2, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2000, "month": 12, "count": 293, "rate": 1.8, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 1, "count": 428, "rate": 2.6, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 2, "count": 423, "rate": 2.6, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 3, "count": 456, "rate": 2.8, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 4, "count": 341, "rate": 2.1, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 5, "count": 390, "rate": 2.4, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 6, "count": 476, "rate": 3, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 7, "count": 513, "rate": 3.1, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 8, "count": 595, "rate": 3.7, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 9, "count": 455, "rate": 2.8, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 10, "count": 486, "rate": 2.9, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 11, "count": 516, "rate": 3.1, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2001, "month": 12, "count": 483, "rate": 2.9, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 1, "count": 586, "rate": 3.5, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 2, "count": 590, "rate": 3.5, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 3, "count": 540, "rate": 3.2, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 4, "count": 493, "rate": 2.9, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 5, "count": 533, "rate": 3.2, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 6, "count": 638, "rate": 3.9, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 7, "count": 671, "rate": 4, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 8, "count": 660, "rate": 3.9, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 9, "count": 562, "rate": 3.2, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 10, "count": 517, "rate": 3, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 11, "count": 493, "rate": 2.8, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2002, "month": 12, "count": 558, "rate": 3.2, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 1, "count": 559, "rate": 3.2, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 2, "count": 576, "rate": 3.2, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 3, "count": 518, "rate": 2.9, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 4, "count": 611, "rate": 3.4, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 5, "count": 618, "rate": 3.5, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 6, "count": 769, "rate": 4.4, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 7, "count": 697, "rate": 4, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 8, "count": 760, "rate": 4.3, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 9, "count": 649, "rate": 3.7, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 10, "count": 639, "rate": 3.6, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 11, "count": 662, "rate": 3.8, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2003, "month": 12, "count": 620, "rate": 3.5, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 1, "count": 662, "rate": 3.7, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 2, "count": 608, "rate": 3.4, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 3, "count": 584, "rate": 3.2, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 4, "count": 589, "rate": 3.3, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 5, "count": 570, "rate": 3.2, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 6, "count": 769, "rate": 4.2, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 7, "count": 725, "rate": 4, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 8, "count": 647, "rate": 3.7, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 9, "count": 593, "rate": 3.3, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 10, "count": 526, "rate": 2.9, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 11, "count": 570, "rate": 3.2, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2004, "month": 12, "count": 562, "rate": 3.1, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 1, "count": 613, "rate": 3.4, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 2, "count": 619, "rate": 3.4, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 3, "count": 614, "rate": 3.4, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 4, "count": 591, "rate": 3.3, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 5, "count": 648, "rate": 3.6, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 6, "count": 667, "rate": 3.6, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 7, "count": 635, "rate": 3.5, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 8, "count": 644, "rate": 3.5, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 9, "count": 658, "rate": 3.5, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 10, "count": 628, "rate": 3.4, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 11, "count": 677, "rate": 3.6, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2005, "month": 12, "count": 529, "rate": 2.8, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 1, "count": 593, "rate": 3.2, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 2, "count": 528, "rate": 2.8, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 3, "count": 563, "rate": 3, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 4, "count": 558, "rate": 3, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 5, "count": 543, "rate": 2.9, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 6, "count": 617, "rate": 3.3, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 7, "count": 659, "rate": 3.5, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 8, "count": 611, "rate": 3.2, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 9, "count": 576, "rate": 3, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 10, "count": 531, "rate": 2.8, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 11, "count": 536, "rate": 2.8, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2006, "month": 12, "count": 502, "rate": 2.6, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 1, "count": 563, "rate": 2.9, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 2, "count": 489, "rate": 2.5, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 3, "count": 495, "rate": 2.5, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 4, "count": 555, "rate": 2.9, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 5, "count": 622, "rate": 3.3, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 6, "count": 653, "rate": 3.4, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 7, "count": 665, "rate": 3.5, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 8, "count": 648, "rate": 3.4, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 9, "count": 630, "rate": 3.2, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 10, "count": 534, "rate": 2.7, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 11, "count": 526, "rate": 2.7, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2007, "month": 12, "count": 521, "rate": 2.6, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 1, "count": 576, "rate": 2.9, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 2, "count": 562, "rate": 2.9, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 3, "count": 609, "rate": 3.1, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 4, "count": 551, "rate": 2.8, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 5, "count": 619, "rate": 3.2, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 6, "count": 669, "rate": 3.4, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 7, "count": 776, "rate": 3.9, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 8, "count": 844, "rate": 4.3, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 9, "count": 835, "rate": 4.1, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 10, "count": 797, "rate": 3.9, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 11, "count": 748, "rate": 3.6, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2008, "month": 12, "count": 791, "rate": 3.8, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 1, "count": 792, "rate": 3.8, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 2, "count": 847, "rate": 4.1, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 3, "count": 931, "rate": 4.5, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 4, "count": 964, "rate": 4.6, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 5, "count": 1005, "rate": 4.9, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 6, "count": 1267, "rate": 6.1, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 7, "count": 1269, "rate": 6.1, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 8, "count": 1239, "rate": 6, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 9, "count": 1257, "rate": 6, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 10, "count": 1280, "rate": 6, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 11, "count": 1168, "rate": 5.5, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Education and Health", "year": 2009, "month": 12, "count": 1183, "rate": 5.6, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2010, "month": 1, "count": 1175, "rate": 5.5, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Education and Health", "year": 2010, "month": 2, "count": 1200, "rate": 5.6, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 1, "count": 782, "rate": 7.5, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 2, "count": 779, "rate": 7.5, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 3, "count": 789, "rate": 7.4, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 4, "count": 658, "rate": 6.1, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 5, "count": 675, "rate": 6.2, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 6, "count": 833, "rate": 7.3, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 7, "count": 786, "rate": 6.8, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 8, "count": 675, "rate": 6, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 9, "count": 636, "rate": 5.9, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 10, "count": 691, "rate": 6.5, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 11, "count": 694, "rate": 6.5, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2000, "month": 12, "count": 639, "rate": 5.9, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 1, "count": 806, "rate": 7.7, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 2, "count": 821, "rate": 7.5, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 3, "count": 817, "rate": 7.4, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 4, "count": 744, "rate": 6.8, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 5, "count": 731, "rate": 6.7, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 6, "count": 821, "rate": 7, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 7, "count": 813, "rate": 6.8, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 8, "count": 767, "rate": 6.8, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 9, "count": 900, "rate": 8, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 10, "count": 903, "rate": 8.3, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 11, "count": 935, "rate": 8.5, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2001, "month": 12, "count": 938, "rate": 8.5, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 1, "count": 947, "rate": 8.6, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 2, "count": 973, "rate": 8.7, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 3, "count": 976, "rate": 8.5, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 4, "count": 953, "rate": 8.4, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 5, "count": 1022, "rate": 8.6, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 6, "count": 1034, "rate": 8.5, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 7, "count": 999, "rate": 8.2, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 8, "count": 884, "rate": 7.5, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 9, "count": 885, "rate": 7.9, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 10, "count": 956, "rate": 8.5, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 11, "count": 978, "rate": 8.9, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2002, "month": 12, "count": 922, "rate": 8.2, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 1, "count": 1049, "rate": 9.3, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 2, "count": 1145, "rate": 10, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 3, "count": 1035, "rate": 8.9, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 4, "count": 986, "rate": 8.5, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 5, "count": 955, "rate": 7.9, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 6, "count": 1048, "rate": 8.6, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 7, "count": 1020, "rate": 8.4, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 8, "count": 1050, "rate": 9, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 9, "count": 978, "rate": 8.8, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 10, "count": 933, "rate": 8.3, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 11, "count": 990, "rate": 9, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2003, "month": 12, "count": 885, "rate": 8.2, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 1, "count": 1097, "rate": 10, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 2, "count": 987, "rate": 8.9, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 3, "count": 1039, "rate": 9, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 4, "count": 925, "rate": 7.9, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 5, "count": 977, "rate": 8.1, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 6, "count": 1189, "rate": 9.6, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 7, "count": 965, "rate": 7.8, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 8, "count": 1010, "rate": 8.4, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 9, "count": 854, "rate": 7.5, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 10, "count": 853, "rate": 7.3, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 11, "count": 916, "rate": 7.9, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2004, "month": 12, "count": 850, "rate": 7.4, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 1, "count": 993, "rate": 8.7, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 2, "count": 1008, "rate": 8.8, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 3, "count": 967, "rate": 8.3, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 4, "count": 882, "rate": 7.7, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 5, "count": 944, "rate": 7.7, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 6, "count": 950, "rate": 7.6, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 7, "count": 929, "rate": 7.4, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 8, "count": 844, "rate": 6.8, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 9, "count": 842, "rate": 7.3, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 10, "count": 796, "rate": 6.8, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 11, "count": 966, "rate": 8.1, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2005, "month": 12, "count": 930, "rate": 7.9, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 1, "count": 910, "rate": 8.1, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 2, "count": 1040, "rate": 9.1, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 3, "count": 917, "rate": 8, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 4, "count": 882, "rate": 7.6, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 5, "count": 830, "rate": 7, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 6, "count": 942, "rate": 7.4, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 7, "count": 867, "rate": 6.8, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 8, "count": 855, "rate": 6.9, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 9, "count": 810, "rate": 6.9, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 10, "count": 795, "rate": 6.6, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 11, "count": 836, "rate": 7.1, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2006, "month": 12, "count": 701, "rate": 5.9, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 1, "count": 911, "rate": 7.8, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 2, "count": 879, "rate": 7.4, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 3, "count": 845, "rate": 7, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 4, "count": 822, "rate": 6.9, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 5, "count": 831, "rate": 6.8, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 6, "count": 917, "rate": 7.2, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 7, "count": 920, "rate": 7.3, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 8, "count": 877, "rate": 7.1, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 9, "count": 892, "rate": 7.4, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 10, "count": 911, "rate": 7.5, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 11, "count": 986, "rate": 8.1, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2007, "month": 12, "count": 961, "rate": 7.9, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 1, "count": 1176, "rate": 9.4, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 2, "count": 1056, "rate": 8.5, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 3, "count": 944, "rate": 7.6, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 4, "count": 874, "rate": 6.9, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 5, "count": 1074, "rate": 8.4, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 6, "count": 1154, "rate": 8.9, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 7, "count": 1172, "rate": 8.8, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 8, "count": 1122, "rate": 8.7, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 9, "count": 1029, "rate": 8.2, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 10, "count": 1126, "rate": 8.9, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 11, "count": 1283, "rate": 9.9, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2008, "month": 12, "count": 1210, "rate": 9.5, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 1, "count": 1487, "rate": 11.5, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 2, "count": 1477, "rate": 11.4, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 3, "count": 1484, "rate": 11.6, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 4, "count": 1322, "rate": 10.2, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 5, "count": 1599, "rate": 11.9, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 6, "count": 1688, "rate": 12.1, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 7, "count": 1600, "rate": 11.2, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 8, "count": 1636, "rate": 12, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 9, "count": 1469, "rate": 11.4, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 10, "count": 1604, "rate": 12.4, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 11, "count": 1524, "rate": 11.9, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2009, "month": 12, "count": 1624, "rate": 12.6, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2010, "month": 1, "count": 1804, "rate": 14.2, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Leisure and hospitality", "year": 2010, "month": 2, "count": 1597, "rate": 12.7, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 1, "count": 274, "rate": 4.9, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 2, "count": 232, "rate": 4.1, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 3, "count": 247, "rate": 4.3, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 4, "count": 240, "rate": 4.2, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 5, "count": 254, "rate": 4.5, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 6, "count": 225, "rate": 3.9, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 7, "count": 202, "rate": 3.7, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 8, "count": 187, "rate": 3.5, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 9, "count": 220, "rate": 4, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 10, "count": 161, "rate": 2.9, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 11, "count": 217, "rate": 3.8, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Other", "year": 2000, "month": 12, "count": 167, "rate": 2.9, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 1, "count": 197, "rate": 3.4, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 2, "count": 243, "rate": 4.2, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 3, "count": 200, "rate": 3.4, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 4, "count": 220, "rate": 3.8, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 5, "count": 172, "rate": 3.2, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 6, "count": 246, "rate": 4.6, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 7, "count": 228, "rate": 4.1, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 8, "count": 241, "rate": 4.5, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 9, "count": 225, "rate": 4, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 10, "count": 239, "rate": 4.1, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 11, "count": 256, "rate": 4.2, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Other", "year": 2001, "month": 12, "count": 277, "rate": 4.5, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 1, "count": 304, "rate": 5.1, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 2, "count": 339, "rate": 5.6, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 3, "count": 314, "rate": 5.5, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 4, "count": 268, "rate": 4.6, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 5, "count": 264, "rate": 4.6, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 6, "count": 335, "rate": 5.5, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 7, "count": 356, "rate": 5.8, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 8, "count": 353, "rate": 6, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 9, "count": 281, "rate": 4.8, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 10, "count": 272, "rate": 4.6, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 11, "count": 284, "rate": 4.9, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Other", "year": 2002, "month": 12, "count": 241, "rate": 4.2, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 1, "count": 304, "rate": 5.3, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 2, "count": 331, "rate": 5.7, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 3, "count": 370, "rate": 6.1, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 4, "count": 331, "rate": 5.5, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 5, "count": 339, "rate": 5.7, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 6, "count": 359, "rate": 5.9, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 7, "count": 405, "rate": 6.6, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 8, "count": 373, "rate": 6.1, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 9, "count": 338, "rate": 5.5, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 10, "count": 378, "rate": 6.1, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 11, "count": 357, "rate": 5.8, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Other", "year": 2003, "month": 12, "count": 278, "rate": 4.5, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 1, "count": 322, "rate": 5.3, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 2, "count": 366, "rate": 5.9, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 3, "count": 366, "rate": 5.9, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 4, "count": 347, "rate": 5.6, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 5, "count": 310, "rate": 5.1, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 6, "count": 326, "rate": 5.4, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 7, "count": 346, "rate": 5.6, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 8, "count": 341, "rate": 5.6, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 9, "count": 301, "rate": 4.9, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 10, "count": 300, "rate": 4.8, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 11, "count": 294, "rate": 4.8, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Other", "year": 2004, "month": 12, "count": 276, "rate": 4.3, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 1, "count": 290, "rate": 4.7, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 2, "count": 325, "rate": 5.3, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 3, "count": 308, "rate": 5, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 4, "count": 306, "rate": 4.9, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 5, "count": 314, "rate": 5, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 6, "count": 291, "rate": 4.6, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 7, "count": 274, "rate": 4.2, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 8, "count": 306, "rate": 4.8, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 9, "count": 307, "rate": 4.9, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 10, "count": 319, "rate": 5, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 11, "count": 300, "rate": 4.9, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Other", "year": 2005, "month": 12, "count": 269, "rate": 4.3, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 1, "count": 308, "rate": 4.9, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 2, "count": 281, "rate": 4.4, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 3, "count": 292, "rate": 4.6, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 4, "count": 266, "rate": 4.1, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 5, "count": 265, "rate": 4.2, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 6, "count": 265, "rate": 4.3, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 7, "count": 305, "rate": 4.7, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 8, "count": 341, "rate": 5.3, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 9, "count": 310, "rate": 5, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 10, "count": 268, "rate": 4.4, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 11, "count": 306, "rate": 5, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Other", "year": 2006, "month": 12, "count": 306, "rate": 5.2, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 1, "count": 275, "rate": 4.7, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 2, "count": 257, "rate": 4.3, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 3, "count": 222, "rate": 3.7, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 4, "count": 224, "rate": 3.6, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 5, "count": 242, "rate": 3.9, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 6, "count": 256, "rate": 4, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 7, "count": 243, "rate": 3.8, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 8, "count": 239, "rate": 3.8, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 9, "count": 257, "rate": 4.2, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 10, "count": 182, "rate": 3, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 11, "count": 255, "rate": 4.1, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Other", "year": 2007, "month": 12, "count": 235, "rate": 3.9, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 1, "count": 264, "rate": 4.4, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 2, "count": 313, "rate": 5.1, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 3, "count": 283, "rate": 4.6, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 4, "count": 251, "rate": 4, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 5, "count": 275, "rate": 4.4, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 6, "count": 322, "rate": 5, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 7, "count": 352, "rate": 5.2, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 8, "count": 412, "rate": 6.3, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 9, "count": 374, "rate": 5.8, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 10, "count": 334, "rate": 5.3, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 11, "count": 434, "rate": 7, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Other", "year": 2008, "month": 12, "count": 367, "rate": 6.1, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 1, "count": 431, "rate": 7.1, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 2, "count": 453, "rate": 7.3, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 3, "count": 377, "rate": 6, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 4, "count": 403, "rate": 6.4, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 5, "count": 476, "rate": 7.5, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 6, "count": 557, "rate": 8.4, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 7, "count": 490, "rate": 7.4, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 8, "count": 528, "rate": 8.2, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 9, "count": 462, "rate": 7.1, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 10, "count": 541, "rate": 8.5, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 11, "count": 491, "rate": 8, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Other", "year": 2009, "month": 12, "count": 513, "rate": 8.2, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Other", "year": 2010, "month": 1, "count": 609, "rate": 10, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Other", "year": 2010, "month": 2, "count": 603, "rate": 9.9, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 1, "count": 154, "rate": 10.3, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 2, "count": 173, "rate": 11.5, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 3, "count": 152, "rate": 10.4, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 4, "count": 135, "rate": 8.9, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 5, "count": 73, "rate": 5.1, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 6, "count": 109, "rate": 6.7, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 7, "count": 77, "rate": 5, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 8, "count": 110, "rate": 7, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 9, "count": 124, "rate": 8.2, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 10, "count": 113, "rate": 8, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 11, "count": 192, "rate": 13.3, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2000, "month": 12, "count": 196, "rate": 13.9, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 1, "count": 188, "rate": 13.8, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 2, "count": 193, "rate": 15.1, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 3, "count": 267, "rate": 19.2, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 4, "count": 140, "rate": 10.4, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 5, "count": 109, "rate": 7.7, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 6, "count": 130, "rate": 9.7, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 7, "count": 113, "rate": 7.6, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 8, "count": 141, "rate": 9.3, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 9, "count": 101, "rate": 7.2, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 10, "count": 118, "rate": 8.7, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 11, "count": 145, "rate": 11.6, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2001, "month": 12, "count": 192, "rate": 15.1, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 1, "count": 195, "rate": 14.8, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 2, "count": 187, "rate": 14.8, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 3, "count": 269, "rate": 19.6, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 4, "count": 151, "rate": 10.8, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 5, "count": 89, "rate": 6.8, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 6, "count": 89, "rate": 6.3, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 7, "count": 114, "rate": 7.3, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 8, "count": 125, "rate": 9, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 9, "count": 92, "rate": 6.3, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 10, "count": 97, "rate": 6.6, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 11, "count": 137, "rate": 11.1, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2002, "month": 12, "count": 120, "rate": 9.8, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 1, "count": 159, "rate": 13.2, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 2, "count": 172, "rate": 14.7, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 3, "count": 161, "rate": 12.9, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 4, "count": 154, "rate": 12, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 5, "count": 133, "rate": 10.2, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 6, "count": 94, "rate": 6.9, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 7, "count": 113, "rate": 8.2, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 8, "count": 173, "rate": 10.7, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 9, "count": 98, "rate": 6.2, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 10, "count": 136, "rate": 8.5, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 11, "count": 148, "rate": 10.3, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2003, "month": 12, "count": 137, "rate": 10.9, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 1, "count": 184, "rate": 15.1, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 2, "count": 168, "rate": 14.2, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 3, "count": 153, "rate": 12.7, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 4, "count": 107, "rate": 8.3, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 5, "count": 99, "rate": 7.4, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 6, "count": 106, "rate": 7.6, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 7, "count": 140, "rate": 10, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 8, "count": 103, "rate": 7, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 9, "count": 88, "rate": 6.4, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 10, "count": 102, "rate": 7.7, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 11, "count": 131, "rate": 10.5, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2004, "month": 12, "count": 165, "rate": 14, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 1, "count": 153, "rate": 13.2, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 2, "count": 107, "rate": 9.9, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 3, "count": 139, "rate": 11.8, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 4, "count": 84, "rate": 6.9, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 5, "count": 66, "rate": 5.3, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 6, "count": 76, "rate": 5.2, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 7, "count": 69, "rate": 4.7, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 8, "count": 100, "rate": 7.1, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 9, "count": 127, "rate": 9.5, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 10, "count": 85, "rate": 6.7, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 11, "count": 118, "rate": 9.6, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2005, "month": 12, "count": 127, "rate": 11.1, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 1, "count": 140, "rate": 11.5, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 2, "count": 139, "rate": 11.8, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 3, "count": 117, "rate": 9.8, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 4, "count": 81, "rate": 6.2, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 5, "count": 79, "rate": 6, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 6, "count": 35, "rate": 2.4, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 7, "count": 55, "rate": 3.6, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 8, "count": 76, "rate": 5.3, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 9, "count": 78, "rate": 5.9, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 10, "count": 77, "rate": 5.8, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 11, "count": 125, "rate": 9.6, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2006, "month": 12, "count": 139, "rate": 10.4, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 1, "count": 128, "rate": 10, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 2, "count": 127, "rate": 9.6, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 3, "count": 123, "rate": 9.7, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 4, "count": 67, "rate": 5.7, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 5, "count": 64, "rate": 5.1, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 6, "count": 59, "rate": 4.5, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 7, "count": 40, "rate": 3.1, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 8, "count": 54, "rate": 4.7, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 9, "count": 53, "rate": 4.3, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 10, "count": 47, "rate": 4, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 11, "count": 80, "rate": 6.6, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2007, "month": 12, "count": 96, "rate": 7.5, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 1, "count": 113, "rate": 9.5, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 2, "count": 135, "rate": 10.9, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 3, "count": 175, "rate": 13.2, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 4, "count": 108, "rate": 8.6, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 5, "count": 94, "rate": 7.4, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 6, "count": 86, "rate": 6.1, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 7, "count": 125, "rate": 8.5, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 8, "count": 111, "rate": 7.6, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 9, "count": 84, "rate": 5.8, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 10, "count": 97, "rate": 7.1, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 11, "count": 119, "rate": 9.5, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2008, "month": 12, "count": 229, "rate": 17, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 1, "count": 245, "rate": 18.7, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 2, "count": 251, "rate": 18.8, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 3, "count": 241, "rate": 19, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 4, "count": 176, "rate": 13.5, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 5, "count": 136, "rate": 10, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 6, "count": 182, "rate": 12.3, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 7, "count": 180, "rate": 12.1, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 8, "count": 195, "rate": 13.1, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 9, "count": 150, "rate": 11.1, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 10, "count": 166, "rate": 11.8, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 11, "count": 180, "rate": 12.6, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Agriculture", "year": 2009, "month": 12, "count": 292, "rate": 19.7, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2010, "month": 1, "count": 318, "rate": 21.3, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Agriculture", "year": 2010, "month": 2, "count": 285, "rate": 18.8, "date": "2010-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 1, "count": 239, "rate": 2.3, "date": "2000-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 2, "count": 262, "rate": 2.5, "date": "2000-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 3, "count": 213, "rate": 2, "date": "2000-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 4, "count": 218, "rate": 2, "date": "2000-04-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 5, "count": 206, "rate": 1.9, "date": "2000-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 6, "count": 188, "rate": 1.8, "date": "2000-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 7, "count": 222, "rate": 2.1, "date": "2000-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 8, "count": 186, "rate": 1.7, "date": "2000-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 9, "count": 213, "rate": 2, "date": "2000-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 10, "count": 226, "rate": 2.2, "date": "2000-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 11, "count": 273, "rate": 2.7, "date": "2000-11-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2000, "month": 12, "count": 178, "rate": 1.8, "date": "2000-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 1, "count": 194, "rate": 1.9, "date": "2001-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 2, "count": 209, "rate": 2, "date": "2001-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 3, "count": 181, "rate": 1.7, "date": "2001-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 4, "count": 216, "rate": 2.1, "date": "2001-04-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 5, "count": 206, "rate": 2, "date": "2001-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 6, "count": 187, "rate": 1.7, "date": "2001-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 7, "count": 191, "rate": 1.8, "date": "2001-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 8, "count": 243, "rate": 2.3, "date": "2001-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 9, "count": 256, "rate": 2.4, "date": "2001-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 10, "count": 247, "rate": 2.3, "date": "2001-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 11, "count": 234, "rate": 2.3, "date": "2001-11-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2001, "month": 12, "count": 249, "rate": 2.5, "date": "2001-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 1, "count": 263, "rate": 2.7, "date": "2002-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 2, "count": 250, "rate": 2.6, "date": "2002-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 3, "count": 217, "rate": 2.2, "date": "2002-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 4, "count": 255, "rate": 2.5, "date": "2002-04-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 5, "count": 264, "rate": 2.6, "date": "2002-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 6, "count": 246, "rate": 2.4, "date": "2002-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 7, "count": 249, "rate": 2.4, "date": "2002-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 8, "count": 271, "rate": 2.6, "date": "2002-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 9, "count": 266, "rate": 2.5, "date": "2002-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 10, "count": 275, "rate": 2.6, "date": "2002-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 11, "count": 297, "rate": 2.8, "date": "2002-11-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2002, "month": 12, "count": 327, "rate": 3.1, "date": "2002-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 1, "count": 324, "rate": 3, "date": "2003-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 2, "count": 304, "rate": 3, "date": "2003-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 3, "count": 279, "rate": 2.7, "date": "2003-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 4, "count": 248, "rate": 2.4, "date": "2003-04-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 5, "count": 271, "rate": 2.6, "date": "2003-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 6, "count": 295, "rate": 2.7, "date": "2003-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 7, "count": 270, "rate": 2.5, "date": "2003-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 8, "count": 302, "rate": 2.7, "date": "2003-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 9, "count": 287, "rate": 2.6, "date": "2003-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 10, "count": 338, "rate": 3.1, "date": "2003-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 11, "count": 308, "rate": 2.8, "date": "2003-11-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2003, "month": 12, "count": 299, "rate": 2.8, "date": "2003-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 1, "count": 302, "rate": 2.8, "date": "2004-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 2, "count": 260, "rate": 2.5, "date": "2004-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 3, "count": 260, "rate": 2.5, "date": "2004-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 4, "count": 242, "rate": 2.3, "date": "2004-04-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 5, "count": 287, "rate": 2.7, "date": "2004-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 6, "count": 306, "rate": 2.8, "date": "2004-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 7, "count": 291, "rate": 2.6, "date": "2004-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 8, "count": 324, "rate": 2.9, "date": "2004-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 9, "count": 362, "rate": 3.3, "date": "2004-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 10, "count": 301, "rate": 2.7, "date": "2004-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 11, "count": 353, "rate": 3.2, "date": "2004-11-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2004, "month": 12, "count": 341, "rate": 3.2, "date": "2004-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 1, "count": 346, "rate": 3.2, "date": "2005-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 2, "count": 363, "rate": 3.4, "date": "2005-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 3, "count": 312, "rate": 2.9, "date": "2005-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 4, "count": 273, "rate": 2.4, "date": "2005-04-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 5, "count": 299, "rate": 2.7, "date": "2005-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 6, "count": 268, "rate": 2.4, "date": "2005-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 7, "count": 282, "rate": 2.5, "date": "2005-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 8, "count": 249, "rate": 2.3, "date": "2005-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 9, "count": 282, "rate": 2.6, "date": "2005-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 10, "count": 255, "rate": 2.3, "date": "2005-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 11, "count": 319, "rate": 3, "date": "2005-11-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2005, "month": 12, "count": 327, "rate": 3.1, "date": "2005-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 1, "count": 341, "rate": 3.2, "date": "2006-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 2, "count": 332, "rate": 3.1, "date": "2006-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 3, "count": 300, "rate": 2.8, "date": "2006-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 4, "count": 334, "rate": 3.1, "date": "2006-04-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 5, "count": 251, "rate": 2.3, "date": "2006-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 6, "count": 245, "rate": 2.2, "date": "2006-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 7, "count": 291, "rate": 2.6, "date": "2006-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 8, "count": 306, "rate": 2.7, "date": "2006-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 9, "count": 299, "rate": 2.7, "date": "2006-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 10, "count": 275, "rate": 2.5, "date": "2006-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 11, "count": 257, "rate": 2.3, "date": "2006-11-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2006, "month": 12, "count": 287, "rate": 2.6, "date": "2006-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 1, "count": 376, "rate": 3.5, "date": "2007-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 2, "count": 300, "rate": 2.8, "date": "2007-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 3, "count": 311, "rate": 2.8, "date": "2007-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 4, "count": 240, "rate": 2.2, "date": "2007-04-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 5, "count": 276, "rate": 2.5, "date": "2007-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 6, "count": 258, "rate": 2.3, "date": "2007-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 7, "count": 324, "rate": 2.9, "date": "2007-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 8, "count": 315, "rate": 2.9, "date": "2007-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 9, "count": 304, "rate": 2.8, "date": "2007-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 10, "count": 338, "rate": 3.1, "date": "2007-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 11, "count": 336, "rate": 3.2, "date": "2007-11-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2007, "month": 12, "count": 326, "rate": 3.2, "date": "2007-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 1, "count": 338, "rate": 3.3, "date": "2008-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 2, "count": 340, "rate": 3.2, "date": "2008-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 3, "count": 346, "rate": 3.3, "date": "2008-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 4, "count": 338, "rate": 3.2, "date": "2008-04-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 5, "count": 366, "rate": 3.4, "date": "2008-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 6, "count": 364, "rate": 3.3, "date": "2008-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 7, "count": 345, "rate": 3.1, "date": "2008-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 8, "count": 378, "rate": 3.5, "date": "2008-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 9, "count": 414, "rate": 3.9, "date": "2008-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 10, "count": 396, "rate": 3.9, "date": "2008-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 11, "count": 411, "rate": 4.1, "date": "2008-11-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2008, "month": 12, "count": 559, "rate": 5.5, "date": "2008-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 1, "count": 659, "rate": 6.5, "date": "2009-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 2, "count": 586, "rate": 5.7, "date": "2009-02-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 3, "count": 625, "rate": 5.9, "date": "2009-03-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 4, "count": 488, "rate": 4.6, "date": "2009-04-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 5, "count": 530, "rate": 5, "date": "2009-05-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 6, "count": 472, "rate": 4.4, "date": "2009-06-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 7, "count": 552, "rate": 5.2, "date": "2009-07-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 8, "count": 569, "rate": 5.3, "date": "2009-08-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 9, "count": 636, "rate": 5.9, "date": "2009-09-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 10, "count": 610, "rate": 5.9, "date": "2009-10-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 11, "count": 592, "rate": 5.7, "date": "2009-11-01T07:00:00.000Z"}, {"series": "Self-employed", "year": 2009, "month": 12, "count": 609, "rate": 5.9, "date": "2009-12-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2010, "month": 1, "count": 730, "rate": 7.2, "date": "2010-01-01T08:00:00.000Z"}, {"series": "Self-employed", "year": 2010, "month": 2, "count": 680, "rate": 6.5, "date": "2010-02-01T08:00:00.000Z"}], "anchored": true, "attachedMetadata": ""}, {"kind": "table", "id": "table-544555", "displayId": "unemp-rate-ind", "names": ["date", "series", "rate"], "rows": [{"date": "2000-01-01", "series": "Government", "rate": 2.1}, {"date": "2000-02-01", "series": "Government", "rate": 2}, {"date": "2000-03-01", "series": "Government", "rate": 1.5}, {"date": "2000-04-01", "series": "Government", "rate": 1.3}, {"date": "2000-05-01", "series": "Government", "rate": 1.9}, {"date": "2000-06-01", "series": "Government", "rate": 3.1}, {"date": "2000-07-01", "series": "Government", "rate": 2.9}, {"date": "2000-08-01", "series": "Government", "rate": 3.1}, {"date": "2000-09-01", "series": "Government", "rate": 2.1}, {"date": "2000-10-01", "series": "Government", "rate": 2}, {"date": "2000-11-01", "series": "Government", "rate": 1.9}, {"date": "2000-12-01", "series": "Government", "rate": 1.8}, {"date": "2001-01-01", "series": "Government", "rate": 2.3}, {"date": "2001-02-01", "series": "Government", "rate": 1.5}, {"date": "2001-03-01", "series": "Government", "rate": 1.8}, {"date": "2001-04-01", "series": "Government", "rate": 1.9}, {"date": "2001-05-01", "series": "Government", "rate": 1.8}, {"date": "2001-06-01", "series": "Government", "rate": 2.7}, {"date": "2001-07-01", "series": "Government", "rate": 2.8}, {"date": "2001-08-01", "series": "Government", "rate": 2.8}, {"date": "2001-09-01", "series": "Government", "rate": 2.2}, {"date": "2001-10-01", "series": "Government", "rate": 2.2}, {"date": "2001-11-01", "series": "Government", "rate": 2.1}, {"date": "2001-12-01", "series": "Government", "rate": 2.1}, {"date": "2002-01-01", "series": "Government", "rate": 2.4}, {"date": "2002-02-01", "series": "Government", "rate": 2.5}, {"date": "2002-03-01", "series": "Government", "rate": 2.4}, {"date": "2002-04-01", "series": "Government", "rate": 2.2}, {"date": "2002-05-01", "series": "Government", "rate": 2.3}, {"date": "2002-06-01", "series": "Government", "rate": 2.8}, {"date": "2002-07-01", "series": "Government", "rate": 3.2}, {"date": "2002-08-01", "series": "Government", "rate": 3}, {"date": "2002-09-01", "series": "Government", "rate": 2.6}, {"date": "2002-10-01", "series": "Government", "rate": 2.5}, {"date": "2002-11-01", "series": "Government", "rate": 2.3}, {"date": "2002-12-01", "series": "Government", "rate": 2.2}, {"date": "2003-01-01", "series": "Government", "rate": 2.8}, {"date": "2003-02-01", "series": "Government", "rate": 2.4}, {"date": "2003-03-01", "series": "Government", "rate": 2.6}, {"date": "2003-04-01", "series": "Government", "rate": 2.2}, {"date": "2003-05-01", "series": "Government", "rate": 2.4}, {"date": "2003-06-01", "series": "Government", "rate": 3.5}, {"date": "2003-07-01", "series": "Government", "rate": 3.8}, {"date": "2003-08-01", "series": "Government", "rate": 3.7}, {"date": "2003-09-01", "series": "Government", "rate": 2.7}, {"date": "2003-10-01", "series": "Government", "rate": 2.4}, {"date": "2003-11-01", "series": "Government", "rate": 2.7}, {"date": "2003-12-01", "series": "Government", "rate": 2.5}, {"date": "2004-01-01", "series": "Government", "rate": 2.5}, {"date": "2004-02-01", "series": "Government", "rate": 2.4}, {"date": "2004-03-01", "series": "Government", "rate": 2.6}, {"date": "2004-04-01", "series": "Government", "rate": 2.1}, {"date": "2004-05-01", "series": "Government", "rate": 2.3}, {"date": "2004-06-01", "series": "Government", "rate": 2.8}, {"date": "2004-07-01", "series": "Government", "rate": 3.7}, {"date": "2004-08-01", "series": "Government", "rate": 3.3}, {"date": "2004-09-01", "series": "Government", "rate": 2.7}, {"date": "2004-10-01", "series": "Government", "rate": 2.7}, {"date": "2004-11-01", "series": "Government", "rate": 2.4}, {"date": "2004-12-01", "series": "Government", "rate": 2.4}, {"date": "2005-01-01", "series": "Government", "rate": 2.6}, {"date": "2005-02-01", "series": "Government", "rate": 2.3}, {"date": "2005-03-01", "series": "Government", "rate": 2.2}, {"date": "2005-04-01", "series": "Government", "rate": 2.3}, {"date": "2005-05-01", "series": "Government", "rate": 2.1}, {"date": "2005-06-01", "series": "Government", "rate": 3.2}, {"date": "2005-07-01", "series": "Government", "rate": 3.3}, {"date": "2005-08-01", "series": "Government", "rate": 3.2}, {"date": "2005-09-01", "series": "Government", "rate": 2.7}, {"date": "2005-10-01", "series": "Government", "rate": 2.4}, {"date": "2005-11-01", "series": "Government", "rate": 2.4}, {"date": "2005-12-01", "series": "Government", "rate": 1.9}, {"date": "2006-01-01", "series": "Government", "rate": 2.2}, {"date": "2006-02-01", "series": "Government", "rate": 2.3}, {"date": "2006-03-01", "series": "Government", "rate": 2.2}, {"date": "2006-04-01", "series": "Government", "rate": 2}, {"date": "2006-05-01", "series": "Government", "rate": 2.1}, {"date": "2006-06-01", "series": "Government", "rate": 2.8}, {"date": "2006-07-01", "series": "Government", "rate": 3.2}, {"date": "2006-08-01", "series": "Government", "rate": 2.9}, {"date": "2006-09-01", "series": "Government", "rate": 1.9}, {"date": "2006-10-01", "series": "Government", "rate": 2}, {"date": "2006-11-01", "series": "Government", "rate": 1.9}, {"date": "2006-12-01", "series": "Government", "rate": 1.9}, {"date": "2007-01-01", "series": "Government", "rate": 2.2}, {"date": "2007-02-01", "series": "Government", "rate": 1.9}, {"date": "2007-03-01", "series": "Government", "rate": 1.9}, {"date": "2007-04-01", "series": "Government", "rate": 1.9}, {"date": "2007-05-01", "series": "Government", "rate": 1.9}, {"date": "2007-06-01", "series": "Government", "rate": 2.7}, {"date": "2007-07-01", "series": "Government", "rate": 3.3}, {"date": "2007-08-01", "series": "Government", "rate": 3.2}, {"date": "2007-09-01", "series": "Government", "rate": 2.4}, {"date": "2007-10-01", "series": "Government", "rate": 2.3}, {"date": "2007-11-01", "series": "Government", "rate": 2.2}, {"date": "2007-12-01", "series": "Government", "rate": 2.1}, {"date": "2008-01-01", "series": "Government", "rate": 2.2}, {"date": "2008-02-01", "series": "Government", "rate": 1.7}, {"date": "2008-03-01", "series": "Government", "rate": 1.9}, {"date": "2008-04-01", "series": "Government", "rate": 1.7}, {"date": "2008-05-01", "series": "Government", "rate": 2.1}, {"date": "2008-06-01", "series": "Government", "rate": 3}, {"date": "2008-07-01", "series": "Government", "rate": 3.6}, {"date": "2008-08-01", "series": "Government", "rate": 3.3}, {"date": "2008-09-01", "series": "Government", "rate": 2.6}, {"date": "2008-10-01", "series": "Government", "rate": 2.5}, {"date": "2008-11-01", "series": "Government", "rate": 2.4}, {"date": "2008-12-01", "series": "Government", "rate": 2.3}, {"date": "2009-01-01", "series": "Government", "rate": 3}, {"date": "2009-02-01", "series": "Government", "rate": 2.6}, {"date": "2009-03-01", "series": "Government", "rate": 2.8}, {"date": "2009-04-01", "series": "Government", "rate": 2.6}, {"date": "2009-05-01", "series": "Government", "rate": 3.1}, {"date": "2009-06-01", "series": "Government", "rate": 4.4}, {"date": "2009-07-01", "series": "Government", "rate": 5.1}, {"date": "2009-08-01", "series": "Government", "rate": 5.1}, {"date": "2009-09-01", "series": "Government", "rate": 4.2}, {"date": "2009-10-01", "series": "Government", "rate": 3.5}, {"date": "2009-11-01", "series": "Government", "rate": 3.4}, {"date": "2009-12-01", "series": "Government", "rate": 3.6}, {"date": "2010-01-01", "series": "Government", "rate": 4.3}, {"date": "2010-02-01", "series": "Government", "rate": 4}, {"date": "2000-01-01", "series": "Mining and Extraction", "rate": 3.9}, {"date": "2000-02-01", "series": "Mining and Extraction", "rate": 5.5}, {"date": "2000-03-01", "series": "Mining and Extraction", "rate": 3.7}, {"date": "2000-04-01", "series": "Mining and Extraction", "rate": 4.1}, {"date": "2000-05-01", "series": "Mining and Extraction", "rate": 5.3}, {"date": "2000-06-01", "series": "Mining and Extraction", "rate": 2.6}, {"date": "2000-07-01", "series": "Mining and Extraction", "rate": 3.6}, {"date": "2000-08-01", "series": "Mining and Extraction", "rate": 5.1}, {"date": "2000-09-01", "series": "Mining and Extraction", "rate": 5.8}, {"date": "2000-10-01", "series": "Mining and Extraction", "rate": 7.8}, {"date": "2000-11-01", "series": "Mining and Extraction", "rate": 2}, {"date": "2000-12-01", "series": "Mining and Extraction", "rate": 3.8}, {"date": "2001-01-01", "series": "Mining and Extraction", "rate": 2.3}, {"date": "2001-02-01", "series": "Mining and Extraction", "rate": 5.3}, {"date": "2001-03-01", "series": "Mining and Extraction", "rate": 3}, {"date": "2001-04-01", "series": "Mining and Extraction", "rate": 4.7}, {"date": "2001-05-01", "series": "Mining and Extraction", "rate": 5.9}, {"date": "2001-06-01", "series": "Mining and Extraction", "rate": 4.7}, {"date": "2001-07-01", "series": "Mining and Extraction", "rate": 3.1}, {"date": "2001-08-01", "series": "Mining and Extraction", "rate": 3.3}, {"date": "2001-09-01", "series": "Mining and Extraction", "rate": 4.2}, {"date": "2001-10-01", "series": "Mining and Extraction", "rate": 5.4}, {"date": "2001-11-01", "series": "Mining and Extraction", "rate": 3.6}, {"date": "2001-12-01", "series": "Mining and Extraction", "rate": 5.3}, {"date": "2002-01-01", "series": "Mining and Extraction", "rate": 7}, {"date": "2002-02-01", "series": "Mining and Extraction", "rate": 7.5}, {"date": "2002-03-01", "series": "Mining and Extraction", "rate": 5.3}, {"date": "2002-04-01", "series": "Mining and Extraction", "rate": 6.1}, {"date": "2002-05-01", "series": "Mining and Extraction", "rate": 4.9}, {"date": "2002-06-01", "series": "Mining and Extraction", "rate": 7.1}, {"date": "2002-07-01", "series": "Mining and Extraction", "rate": 3.9}, {"date": "2002-08-01", "series": "Mining and Extraction", "rate": 6.3}, {"date": "2002-09-01", "series": "Mining and Extraction", "rate": 7.9}, {"date": "2002-10-01", "series": "Mining and Extraction", "rate": 6.4}, {"date": "2002-11-01", "series": "Mining and Extraction", "rate": 5.4}, {"date": "2002-12-01", "series": "Mining and Extraction", "rate": 7.8}, {"date": "2003-01-01", "series": "Mining and Extraction", "rate": 9}, {"date": "2003-02-01", "series": "Mining and Extraction", "rate": 7.1}, {"date": "2003-03-01", "series": "Mining and Extraction", "rate": 8.2}, {"date": "2003-04-01", "series": "Mining and Extraction", "rate": 7.7}, {"date": "2003-05-01", "series": "Mining and Extraction", "rate": 7.5}, {"date": "2003-06-01", "series": "Mining and Extraction", "rate": 6.8}, {"date": "2003-07-01", "series": "Mining and Extraction", "rate": 7.9}, {"date": "2003-08-01", "series": "Mining and Extraction", "rate": 3.8}, {"date": "2003-09-01", "series": "Mining and Extraction", "rate": 4.6}, {"date": "2003-10-01", "series": "Mining and Extraction", "rate": 5.6}, {"date": "2003-11-01", "series": "Mining and Extraction", "rate": 5.9}, {"date": "2003-12-01", "series": "Mining and Extraction", "rate": 5.6}, {"date": "2004-01-01", "series": "Mining and Extraction", "rate": 5.8}, {"date": "2004-02-01", "series": "Mining and Extraction", "rate": 5}, {"date": "2004-03-01", "series": "Mining and Extraction", "rate": 4.4}, {"date": "2004-04-01", "series": "Mining and Extraction", "rate": 6.4}, {"date": "2004-05-01", "series": "Mining and Extraction", "rate": 4.3}, {"date": "2004-06-01", "series": "Mining and Extraction", "rate": 5}, {"date": "2004-07-01", "series": "Mining and Extraction", "rate": 5.4}, {"date": "2004-08-01", "series": "Mining and Extraction", "rate": 1.9}, {"date": "2004-09-01", "series": "Mining and Extraction", "rate": 1.5}, {"date": "2004-10-01", "series": "Mining and Extraction", "rate": 2.6}, {"date": "2004-11-01", "series": "Mining and Extraction", "rate": 3.3}, {"date": "2004-12-01", "series": "Mining and Extraction", "rate": 2.5}, {"date": "2005-01-01", "series": "Mining and Extraction", "rate": 4.9}, {"date": "2005-02-01", "series": "Mining and Extraction", "rate": 4}, {"date": "2005-03-01", "series": "Mining and Extraction", "rate": 5.2}, {"date": "2005-04-01", "series": "Mining and Extraction", "rate": 2.9}, {"date": "2005-05-01", "series": "Mining and Extraction", "rate": 2.4}, {"date": "2005-06-01", "series": "Mining and Extraction", "rate": 4}, {"date": "2005-07-01", "series": "Mining and Extraction", "rate": 3.7}, {"date": "2005-08-01", "series": "Mining and Extraction", "rate": 2}, {"date": "2005-09-01", "series": "Mining and Extraction", "rate": 2}, {"date": "2005-10-01", "series": "Mining and Extraction", "rate": 0.3}, {"date": "2005-11-01", "series": "Mining and Extraction", "rate": 2.9}, {"date": "2005-12-01", "series": "Mining and Extraction", "rate": 3.5}, {"date": "2006-01-01", "series": "Mining and Extraction", "rate": 3.9}, {"date": "2006-02-01", "series": "Mining and Extraction", "rate": 3.8}, {"date": "2006-03-01", "series": "Mining and Extraction", "rate": 2.1}, {"date": "2006-04-01", "series": "Mining and Extraction", "rate": 2.5}, {"date": "2006-05-01", "series": "Mining and Extraction", "rate": 2.8}, {"date": "2006-06-01", "series": "Mining and Extraction", "rate": 4.3}, {"date": "2006-07-01", "series": "Mining and Extraction", "rate": 3.5}, {"date": "2006-08-01", "series": "Mining and Extraction", "rate": 4.3}, {"date": "2006-09-01", "series": "Mining and Extraction", "rate": 2.1}, {"date": "2006-10-01", "series": "Mining and Extraction", "rate": 2.2}, {"date": "2006-11-01", "series": "Mining and Extraction", "rate": 2.9}, {"date": "2006-12-01", "series": "Mining and Extraction", "rate": 3.4}, {"date": "2007-01-01", "series": "Mining and Extraction", "rate": 4.7}, {"date": "2007-02-01", "series": "Mining and Extraction", "rate": 4.5}, {"date": "2007-03-01", "series": "Mining and Extraction", "rate": 3.2}, {"date": "2007-04-01", "series": "Mining and Extraction", "rate": 2.3}, {"date": "2007-05-01", "series": "Mining and Extraction", "rate": 3}, {"date": "2007-06-01", "series": "Mining and Extraction", "rate": 4.3}, {"date": "2007-07-01", "series": "Mining and Extraction", "rate": 4.3}, {"date": "2007-08-01", "series": "Mining and Extraction", "rate": 4.6}, {"date": "2007-09-01", "series": "Mining and Extraction", "rate": 3.2}, {"date": "2007-10-01", "series": "Mining and Extraction", "rate": 1.3}, {"date": "2007-11-01", "series": "Mining and Extraction", "rate": 2.3}, {"date": "2007-12-01", "series": "Mining and Extraction", "rate": 3.4}, {"date": "2008-01-01", "series": "Mining and Extraction", "rate": 4}, {"date": "2008-02-01", "series": "Mining and Extraction", "rate": 2.2}, {"date": "2008-03-01", "series": "Mining and Extraction", "rate": 3.7}, {"date": "2008-04-01", "series": "Mining and Extraction", "rate": 3.6}, {"date": "2008-05-01", "series": "Mining and Extraction", "rate": 3.4}, {"date": "2008-06-01", "series": "Mining and Extraction", "rate": 3.3}, {"date": "2008-07-01", "series": "Mining and Extraction", "rate": 1.5}, {"date": "2008-08-01", "series": "Mining and Extraction", "rate": 1.9}, {"date": "2008-09-01", "series": "Mining and Extraction", "rate": 2.8}, {"date": "2008-10-01", "series": "Mining and Extraction", "rate": 1.7}, {"date": "2008-11-01", "series": "Mining and Extraction", "rate": 3.7}, {"date": "2008-12-01", "series": "Mining and Extraction", "rate": 5.2}, {"date": "2009-01-01", "series": "Mining and Extraction", "rate": 7}, {"date": "2009-02-01", "series": "Mining and Extraction", "rate": 7.6}, {"date": "2009-03-01", "series": "Mining and Extraction", "rate": 12.6}, {"date": "2009-04-01", "series": "Mining and Extraction", "rate": 16.1}, {"date": "2009-05-01", "series": "Mining and Extraction", "rate": 13.3}, {"date": "2009-06-01", "series": "Mining and Extraction", "rate": 13.6}, {"date": "2009-07-01", "series": "Mining and Extraction", "rate": 12.6}, {"date": "2009-08-01", "series": "Mining and Extraction", "rate": 11.8}, {"date": "2009-09-01", "series": "Mining and Extraction", "rate": 10.7}, {"date": "2009-10-01", "series": "Mining and Extraction", "rate": 10.8}, {"date": "2009-11-01", "series": "Mining and Extraction", "rate": 12}, {"date": "2009-12-01", "series": "Mining and Extraction", "rate": 11.8}, {"date": "2010-01-01", "series": "Mining and Extraction", "rate": 9.1}, {"date": "2010-02-01", "series": "Mining and Extraction", "rate": 10.7}, {"date": "2000-01-01", "series": "Construction", "rate": 9.7}, {"date": "2000-02-01", "series": "Construction", "rate": 10.6}, {"date": "2000-03-01", "series": "Construction", "rate": 8.7}, {"date": "2000-04-01", "series": "Construction", "rate": 5.8}, {"date": "2000-05-01", "series": "Construction", "rate": 5}, {"date": "2000-06-01", "series": "Construction", "rate": 4.6}, {"date": "2000-07-01", "series": "Construction", "rate": 4.4}, {"date": "2000-08-01", "series": "Construction", "rate": 5.1}, {"date": "2000-09-01", "series": "Construction", "rate": 4.6}, {"date": "2000-10-01", "series": "Construction", "rate": 4.9}, {"date": "2000-11-01", "series": "Construction", "rate": 5.7}, {"date": "2000-12-01", "series": "Construction", "rate": 6.8}, {"date": "2001-01-01", "series": "Construction", "rate": 9.8}, {"date": "2001-02-01", "series": "Construction", "rate": 9.9}, {"date": "2001-03-01", "series": "Construction", "rate": 8.4}, {"date": "2001-04-01", "series": "Construction", "rate": 7.1}, {"date": "2001-05-01", "series": "Construction", "rate": 5.6}, {"date": "2001-06-01", "series": "Construction", "rate": 5.1}, {"date": "2001-07-01", "series": "Construction", "rate": 4.9}, {"date": "2001-08-01", "series": "Construction", "rate": 5.8}, {"date": "2001-09-01", "series": "Construction", "rate": 5.5}, {"date": "2001-10-01", "series": "Construction", "rate": 6.1}, {"date": "2001-11-01", "series": "Construction", "rate": 7.6}, {"date": "2001-12-01", "series": "Construction", "rate": 9}, {"date": "2002-01-01", "series": "Construction", "rate": 13.6}, {"date": "2002-02-01", "series": "Construction", "rate": 12.2}, {"date": "2002-03-01", "series": "Construction", "rate": 11.8}, {"date": "2002-04-01", "series": "Construction", "rate": 10.1}, {"date": "2002-05-01", "series": "Construction", "rate": 7.4}, {"date": "2002-06-01", "series": "Construction", "rate": 6.9}, {"date": "2002-07-01", "series": "Construction", "rate": 6.9}, {"date": "2002-08-01", "series": "Construction", "rate": 7.4}, {"date": "2002-09-01", "series": "Construction", "rate": 7}, {"date": "2002-10-01", "series": "Construction", "rate": 7.7}, {"date": "2002-11-01", "series": "Construction", "rate": 8.5}, {"date": "2002-12-01", "series": "Construction", "rate": 10.9}, {"date": "2003-01-01", "series": "Construction", "rate": 14}, {"date": "2003-02-01", "series": "Construction", "rate": 14}, {"date": "2003-03-01", "series": "Construction", "rate": 11.8}, {"date": "2003-04-01", "series": "Construction", "rate": 9.3}, {"date": "2003-05-01", "series": "Construction", "rate": 8.4}, {"date": "2003-06-01", "series": "Construction", "rate": 7.9}, {"date": "2003-07-01", "series": "Construction", "rate": 7.5}, {"date": "2003-08-01", "series": "Construction", "rate": 7.1}, {"date": "2003-09-01", "series": "Construction", "rate": 7.6}, {"date": "2003-10-01", "series": "Construction", "rate": 7.4}, {"date": "2003-11-01", "series": "Construction", "rate": 7.8}, {"date": "2003-12-01", "series": "Construction", "rate": 9.3}, {"date": "2004-01-01", "series": "Construction", "rate": 11.3}, {"date": "2004-02-01", "series": "Construction", "rate": 11.6}, {"date": "2004-03-01", "series": "Construction", "rate": 11.3}, {"date": "2004-04-01", "series": "Construction", "rate": 9.5}, {"date": "2004-05-01", "series": "Construction", "rate": 7.4}, {"date": "2004-06-01", "series": "Construction", "rate": 7}, {"date": "2004-07-01", "series": "Construction", "rate": 6.4}, {"date": "2004-08-01", "series": "Construction", "rate": 6}, {"date": "2004-09-01", "series": "Construction", "rate": 6.8}, {"date": "2004-10-01", "series": "Construction", "rate": 6.9}, {"date": "2004-11-01", "series": "Construction", "rate": 7.4}, {"date": "2004-12-01", "series": "Construction", "rate": 9.5}, {"date": "2005-01-01", "series": "Construction", "rate": 11.8}, {"date": "2005-02-01", "series": "Construction", "rate": 12.3}, {"date": "2005-03-01", "series": "Construction", "rate": 10.3}, {"date": "2005-04-01", "series": "Construction", "rate": 7.4}, {"date": "2005-05-01", "series": "Construction", "rate": 6.1}, {"date": "2005-06-01", "series": "Construction", "rate": 5.7}, {"date": "2005-07-01", "series": "Construction", "rate": 5.2}, {"date": "2005-08-01", "series": "Construction", "rate": 5.7}, {"date": "2005-09-01", "series": "Construction", "rate": 5.7}, {"date": "2005-10-01", "series": "Construction", "rate": 5.3}, {"date": "2005-11-01", "series": "Construction", "rate": 5.7}, {"date": "2005-12-01", "series": "Construction", "rate": 8.2}, {"date": "2006-01-01", "series": "Construction", "rate": 9}, {"date": "2006-02-01", "series": "Construction", "rate": 8.6}, {"date": "2006-03-01", "series": "Construction", "rate": 8.5}, {"date": "2006-04-01", "series": "Construction", "rate": 6.9}, {"date": "2006-05-01", "series": "Construction", "rate": 6.6}, {"date": "2006-06-01", "series": "Construction", "rate": 5.6}, {"date": "2006-07-01", "series": "Construction", "rate": 6.1}, {"date": "2006-08-01", "series": "Construction", "rate": 5.9}, {"date": "2006-09-01", "series": "Construction", "rate": 5.6}, {"date": "2006-10-01", "series": "Construction", "rate": 4.5}, {"date": "2006-11-01", "series": "Construction", "rate": 6}, {"date": "2006-12-01", "series": "Construction", "rate": 6.9}, {"date": "2007-01-01", "series": "Construction", "rate": 8.9}, {"date": "2007-02-01", "series": "Construction", "rate": 10.5}, {"date": "2007-03-01", "series": "Construction", "rate": 9}, {"date": "2007-04-01", "series": "Construction", "rate": 8.6}, {"date": "2007-05-01", "series": "Construction", "rate": 6.9}, {"date": "2007-06-01", "series": "Construction", "rate": 5.9}, {"date": "2007-07-01", "series": "Construction", "rate": 5.9}, {"date": "2007-08-01", "series": "Construction", "rate": 5.3}, {"date": "2007-09-01", "series": "Construction", "rate": 5.8}, {"date": "2007-10-01", "series": "Construction", "rate": 6.1}, {"date": "2007-11-01", "series": "Construction", "rate": 6.2}, {"date": "2007-12-01", "series": "Construction", "rate": 9.4}, {"date": "2008-01-01", "series": "Construction", "rate": 11}, {"date": "2008-02-01", "series": "Construction", "rate": 11.4}, {"date": "2008-03-01", "series": "Construction", "rate": 12}, {"date": "2008-04-01", "series": "Construction", "rate": 11.1}, {"date": "2008-05-01", "series": "Construction", "rate": 8.6}, {"date": "2008-06-01", "series": "Construction", "rate": 8.2}, {"date": "2008-07-01", "series": "Construction", "rate": 8}, {"date": "2008-08-01", "series": "Construction", "rate": 8.2}, {"date": "2008-09-01", "series": "Construction", "rate": 9.9}, {"date": "2008-10-01", "series": "Construction", "rate": 10.8}, {"date": "2008-11-01", "series": "Construction", "rate": 12.7}, {"date": "2008-12-01", "series": "Construction", "rate": 15.3}, {"date": "2009-01-01", "series": "Construction", "rate": 18.2}, {"date": "2009-02-01", "series": "Construction", "rate": 21.4}, {"date": "2009-03-01", "series": "Construction", "rate": 21.1}, {"date": "2009-04-01", "series": "Construction", "rate": 18.7}, {"date": "2009-05-01", "series": "Construction", "rate": 19.2}, {"date": "2009-06-01", "series": "Construction", "rate": 17.4}, {"date": "2009-07-01", "series": "Construction", "rate": 18.2}, {"date": "2009-08-01", "series": "Construction", "rate": 16.5}, {"date": "2009-09-01", "series": "Construction", "rate": 17.1}, {"date": "2009-10-01", "series": "Construction", "rate": 18.7}, {"date": "2009-11-01", "series": "Construction", "rate": 19.4}, {"date": "2009-12-01", "series": "Construction", "rate": 22.7}, {"date": "2010-01-01", "series": "Construction", "rate": 24.7}, {"date": "2010-02-01", "series": "Construction", "rate": 27.1}, {"date": "2000-01-01", "series": "Manufacturing", "rate": 3.6}, {"date": "2000-02-01", "series": "Manufacturing", "rate": 3.4}, {"date": "2000-03-01", "series": "Manufacturing", "rate": 3.6}, {"date": "2000-04-01", "series": "Manufacturing", "rate": 3.7}, {"date": "2000-05-01", "series": "Manufacturing", "rate": 3.4}, {"date": "2000-06-01", "series": "Manufacturing", "rate": 3.1}, {"date": "2000-07-01", "series": "Manufacturing", "rate": 3.6}, {"date": "2000-08-01", "series": "Manufacturing", "rate": 3.4}, {"date": "2000-09-01", "series": "Manufacturing", "rate": 3.4}, {"date": "2000-10-01", "series": "Manufacturing", "rate": 3.6}, {"date": "2000-11-01", "series": "Manufacturing", "rate": 3.4}, {"date": "2000-12-01", "series": "Manufacturing", "rate": 3.3}, {"date": "2001-01-01", "series": "Manufacturing", "rate": 4.6}, {"date": "2001-02-01", "series": "Manufacturing", "rate": 4.6}, {"date": "2001-03-01", "series": "Manufacturing", "rate": 4.9}, {"date": "2001-04-01", "series": "Manufacturing", "rate": 4.4}, {"date": "2001-05-01", "series": "Manufacturing", "rate": 4.7}, {"date": "2001-06-01", "series": "Manufacturing", "rate": 5}, {"date": "2001-07-01", "series": "Manufacturing", "rate": 5.6}, {"date": "2001-08-01", "series": "Manufacturing", "rate": 5.5}, {"date": "2001-09-01", "series": "Manufacturing", "rate": 5.4}, {"date": "2001-10-01", "series": "Manufacturing", "rate": 5.8}, {"date": "2001-11-01", "series": "Manufacturing", "rate": 6}, {"date": "2001-12-01", "series": "Manufacturing", "rate": 6.3}, {"date": "2002-01-01", "series": "Manufacturing", "rate": 7.4}, {"date": "2002-02-01", "series": "Manufacturing", "rate": 7}, {"date": "2002-03-01", "series": "Manufacturing", "rate": 7.3}, {"date": "2002-04-01", "series": "Manufacturing", "rate": 7.2}, {"date": "2002-05-01", "series": "Manufacturing", "rate": 6.6}, {"date": "2002-06-01", "series": "Manufacturing", "rate": 6.6}, {"date": "2002-07-01", "series": "Manufacturing", "rate": 6.6}, {"date": "2002-08-01", "series": "Manufacturing", "rate": 6.2}, {"date": "2002-09-01", "series": "Manufacturing", "rate": 6.1}, {"date": "2002-10-01", "series": "Manufacturing", "rate": 5.9}, {"date": "2002-11-01", "series": "Manufacturing", "rate": 6.3}, {"date": "2002-12-01", "series": "Manufacturing", "rate": 6.6}, {"date": "2003-01-01", "series": "Manufacturing", "rate": 7.2}, {"date": "2003-02-01", "series": "Manufacturing", "rate": 6.7}, {"date": "2003-03-01", "series": "Manufacturing", "rate": 6.8}, {"date": "2003-04-01", "series": "Manufacturing", "rate": 6.7}, {"date": "2003-05-01", "series": "Manufacturing", "rate": 6.5}, {"date": "2003-06-01", "series": "Manufacturing", "rate": 7}, {"date": "2003-07-01", "series": "Manufacturing", "rate": 6.9}, {"date": "2003-08-01", "series": "Manufacturing", "rate": 6.7}, {"date": "2003-09-01", "series": "Manufacturing", "rate": 6.8}, {"date": "2003-10-01", "series": "Manufacturing", "rate": 6}, {"date": "2003-11-01", "series": "Manufacturing", "rate": 5.9}, {"date": "2003-12-01", "series": "Manufacturing", "rate": 5.9}, {"date": "2004-01-01", "series": "Manufacturing", "rate": 6.4}, {"date": "2004-02-01", "series": "Manufacturing", "rate": 6.3}, {"date": "2004-03-01", "series": "Manufacturing", "rate": 6.3}, {"date": "2004-04-01", "series": "Manufacturing", "rate": 5.8}, {"date": "2004-05-01", "series": "Manufacturing", "rate": 5.6}, {"date": "2004-06-01", "series": "Manufacturing", "rate": 5.6}, {"date": "2004-07-01", "series": "Manufacturing", "rate": 6}, {"date": "2004-08-01", "series": "Manufacturing", "rate": 4.9}, {"date": "2004-09-01", "series": "Manufacturing", "rate": 5}, {"date": "2004-10-01", "series": "Manufacturing", "rate": 5.3}, {"date": "2004-11-01", "series": "Manufacturing", "rate": 5.4}, {"date": "2004-12-01", "series": "Manufacturing", "rate": 5.1}, {"date": "2005-01-01", "series": "Manufacturing", "rate": 5.3}, {"date": "2005-02-01", "series": "Manufacturing", "rate": 5.3}, {"date": "2005-03-01", "series": "Manufacturing", "rate": 5.3}, {"date": "2005-04-01", "series": "Manufacturing", "rate": 4.8}, {"date": "2005-05-01", "series": "Manufacturing", "rate": 4.5}, {"date": "2005-06-01", "series": "Manufacturing", "rate": 4.4}, {"date": "2005-07-01", "series": "Manufacturing", "rate": 5.3}, {"date": "2005-08-01", "series": "Manufacturing", "rate": 4.7}, {"date": "2005-09-01", "series": "Manufacturing", "rate": 4.7}, {"date": "2005-10-01", "series": "Manufacturing", "rate": 4.8}, {"date": "2005-11-01", "series": "Manufacturing", "rate": 4.9}, {"date": "2005-12-01", "series": "Manufacturing", "rate": 4.5}, {"date": "2006-01-01", "series": "Manufacturing", "rate": 4.6}, {"date": "2006-02-01", "series": "Manufacturing", "rate": 4.9}, {"date": "2006-03-01", "series": "Manufacturing", "rate": 4.1}, {"date": "2006-04-01", "series": "Manufacturing", "rate": 4.5}, {"date": "2006-05-01", "series": "Manufacturing", "rate": 4.1}, {"date": "2006-06-01", "series": "Manufacturing", "rate": 3.8}, {"date": "2006-07-01", "series": "Manufacturing", "rate": 4.4}, {"date": "2006-08-01", "series": "Manufacturing", "rate": 4.1}, {"date": "2006-09-01", "series": "Manufacturing", "rate": 3.8}, {"date": "2006-10-01", "series": "Manufacturing", "rate": 3.7}, {"date": "2006-11-01", "series": "Manufacturing", "rate": 4.3}, {"date": "2006-12-01", "series": "Manufacturing", "rate": 4}, {"date": "2007-01-01", "series": "Manufacturing", "rate": 4.6}, {"date": "2007-02-01", "series": "Manufacturing", "rate": 4.7}, {"date": "2007-03-01", "series": "Manufacturing", "rate": 4.5}, {"date": "2007-04-01", "series": "Manufacturing", "rate": 4.6}, {"date": "2007-05-01", "series": "Manufacturing", "rate": 3.9}, {"date": "2007-06-01", "series": "Manufacturing", "rate": 4}, {"date": "2007-07-01", "series": "Manufacturing", "rate": 3.7}, {"date": "2007-08-01", "series": "Manufacturing", "rate": 3.6}, {"date": "2007-09-01", "series": "Manufacturing", "rate": 4.1}, {"date": "2007-10-01", "series": "Manufacturing", "rate": 4.3}, {"date": "2007-11-01", "series": "Manufacturing", "rate": 4.5}, {"date": "2007-12-01", "series": "Manufacturing", "rate": 4.6}, {"date": "2008-01-01", "series": "Manufacturing", "rate": 5.1}, {"date": "2008-02-01", "series": "Manufacturing", "rate": 5}, {"date": "2008-03-01", "series": "Manufacturing", "rate": 5}, {"date": "2008-04-01", "series": "Manufacturing", "rate": 4.8}, {"date": "2008-05-01", "series": "Manufacturing", "rate": 5.3}, {"date": "2008-06-01", "series": "Manufacturing", "rate": 5.2}, {"date": "2008-07-01", "series": "Manufacturing", "rate": 5.5}, {"date": "2008-08-01", "series": "Manufacturing", "rate": 5.7}, {"date": "2008-09-01", "series": "Manufacturing", "rate": 6}, {"date": "2008-10-01", "series": "Manufacturing", "rate": 6.2}, {"date": "2008-11-01", "series": "Manufacturing", "rate": 7}, {"date": "2008-12-01", "series": "Manufacturing", "rate": 8.3}, {"date": "2009-01-01", "series": "Manufacturing", "rate": 10.9}, {"date": "2009-02-01", "series": "Manufacturing", "rate": 11.5}, {"date": "2009-03-01", "series": "Manufacturing", "rate": 12.2}, {"date": "2009-04-01", "series": "Manufacturing", "rate": 12.4}, {"date": "2009-05-01", "series": "Manufacturing", "rate": 12.6}, {"date": "2009-06-01", "series": "Manufacturing", "rate": 12.6}, {"date": "2009-07-01", "series": "Manufacturing", "rate": 12.4}, {"date": "2009-08-01", "series": "Manufacturing", "rate": 11.8}, {"date": "2009-09-01", "series": "Manufacturing", "rate": 11.9}, {"date": "2009-10-01", "series": "Manufacturing", "rate": 12.2}, {"date": "2009-11-01", "series": "Manufacturing", "rate": 12.5}, {"date": "2009-12-01", "series": "Manufacturing", "rate": 11.9}, {"date": "2010-01-01", "series": "Manufacturing", "rate": 13}, {"date": "2010-02-01", "series": "Manufacturing", "rate": 12.1}, {"date": "2000-01-01", "series": "Wholesale and Retail Trade", "rate": 5}, {"date": "2000-02-01", "series": "Wholesale and Retail Trade", "rate": 5.2}, {"date": "2000-03-01", "series": "Wholesale and Retail Trade", "rate": 5.1}, {"date": "2000-04-01", "series": "Wholesale and Retail Trade", "rate": 4.1}, {"date": "2000-05-01", "series": "Wholesale and Retail Trade", "rate": 4.3}, {"date": "2000-06-01", "series": "Wholesale and Retail Trade", "rate": 4.4}, {"date": "2000-07-01", "series": "Wholesale and Retail Trade", "rate": 4.1}, {"date": "2000-08-01", "series": "Wholesale and Retail Trade", "rate": 4.3}, {"date": "2000-09-01", "series": "Wholesale and Retail Trade", "rate": 4.1}, {"date": "2000-10-01", "series": "Wholesale and Retail Trade", "rate": 3.7}, {"date": "2000-11-01", "series": "Wholesale and Retail Trade", "rate": 3.6}, {"date": "2000-12-01", "series": "Wholesale and Retail Trade", "rate": 3.7}, {"date": "2001-01-01", "series": "Wholesale and Retail Trade", "rate": 4.7}, {"date": "2001-02-01", "series": "Wholesale and Retail Trade", "rate": 5.2}, {"date": "2001-03-01", "series": "Wholesale and Retail Trade", "rate": 5.4}, {"date": "2001-04-01", "series": "Wholesale and Retail Trade", "rate": 4.3}, {"date": "2001-05-01", "series": "Wholesale and Retail Trade", "rate": 4.5}, {"date": "2001-06-01", "series": "Wholesale and Retail Trade", "rate": 4.9}, {"date": "2001-07-01", "series": "Wholesale and Retail Trade", "rate": 4.3}, {"date": "2001-08-01", "series": "Wholesale and Retail Trade", "rate": 4.8}, {"date": "2001-09-01", "series": "Wholesale and Retail Trade", "rate": 4.8}, {"date": "2001-10-01", "series": "Wholesale and Retail Trade", "rate": 4.8}, {"date": "2001-11-01", "series": "Wholesale and Retail Trade", "rate": 5.3}, {"date": "2001-12-01", "series": "Wholesale and Retail Trade", "rate": 5.4}, {"date": "2002-01-01", "series": "Wholesale and Retail Trade", "rate": 6.3}, {"date": "2002-02-01", "series": "Wholesale and Retail Trade", "rate": 6.6}, {"date": "2002-03-01", "series": "Wholesale and Retail Trade", "rate": 6.6}, {"date": "2002-04-01", "series": "Wholesale and Retail Trade", "rate": 6.4}, {"date": "2002-05-01", "series": "Wholesale and Retail Trade", "rate": 5.8}, {"date": "2002-06-01", "series": "Wholesale and Retail Trade", "rate": 6.2}, {"date": "2002-07-01", "series": "Wholesale and Retail Trade", "rate": 5.6}, {"date": "2002-08-01", "series": "Wholesale and Retail Trade", "rate": 5.8}, {"date": "2002-09-01", "series": "Wholesale and Retail Trade", "rate": 5.9}, {"date": "2002-10-01", "series": "Wholesale and Retail Trade", "rate": 6.1}, {"date": "2002-11-01", "series": "Wholesale and Retail Trade", "rate": 6.2}, {"date": "2002-12-01", "series": "Wholesale and Retail Trade", "rate": 5.7}, {"date": "2003-01-01", "series": "Wholesale and Retail Trade", "rate": 6.7}, {"date": "2003-02-01", "series": "Wholesale and Retail Trade", "rate": 6.1}, {"date": "2003-03-01", "series": "Wholesale and Retail Trade", "rate": 5.9}, {"date": "2003-04-01", "series": "Wholesale and Retail Trade", "rate": 6}, {"date": "2003-05-01", "series": "Wholesale and Retail Trade", "rate": 6.2}, {"date": "2003-06-01", "series": "Wholesale and Retail Trade", "rate": 6.9}, {"date": "2003-07-01", "series": "Wholesale and Retail Trade", "rate": 6.6}, {"date": "2003-08-01", "series": "Wholesale and Retail Trade", "rate": 5.6}, {"date": "2003-09-01", "series": "Wholesale and Retail Trade", "rate": 5.9}, {"date": "2003-10-01", "series": "Wholesale and Retail Trade", "rate": 5.7}, {"date": "2003-11-01", "series": "Wholesale and Retail Trade", "rate": 5.4}, {"date": "2003-12-01", "series": "Wholesale and Retail Trade", "rate": 5}, {"date": "2004-01-01", "series": "Wholesale and Retail Trade", "rate": 6.5}, {"date": "2004-02-01", "series": "Wholesale and Retail Trade", "rate": 6.5}, {"date": "2004-03-01", "series": "Wholesale and Retail Trade", "rate": 6.8}, {"date": "2004-04-01", "series": "Wholesale and Retail Trade", "rate": 6.1}, {"date": "2004-05-01", "series": "Wholesale and Retail Trade", "rate": 5.8}, {"date": "2004-06-01", "series": "Wholesale and Retail Trade", "rate": 5.8}, {"date": "2004-07-01", "series": "Wholesale and Retail Trade", "rate": 5.5}, {"date": "2004-08-01", "series": "Wholesale and Retail Trade", "rate": 5.1}, {"date": "2004-09-01", "series": "Wholesale and Retail Trade", "rate": 5.5}, {"date": "2004-10-01", "series": "Wholesale and Retail Trade", "rate": 5.4}, {"date": "2004-11-01", "series": "Wholesale and Retail Trade", "rate": 5}, {"date": "2004-12-01", "series": "Wholesale and Retail Trade", "rate": 5}, {"date": "2005-01-01", "series": "Wholesale and Retail Trade", "rate": 6.3}, {"date": "2005-02-01", "series": "Wholesale and Retail Trade", "rate": 6.2}, {"date": "2005-03-01", "series": "Wholesale and Retail Trade", "rate": 5.6}, {"date": "2005-04-01", "series": "Wholesale and Retail Trade", "rate": 5.4}, {"date": "2005-05-01", "series": "Wholesale and Retail Trade", "rate": 5.4}, {"date": "2005-06-01", "series": "Wholesale and Retail Trade", "rate": 5.7}, {"date": "2005-07-01", "series": "Wholesale and Retail Trade", "rate": 5.6}, {"date": "2005-08-01", "series": "Wholesale and Retail Trade", "rate": 5.3}, {"date": "2005-09-01", "series": "Wholesale and Retail Trade", "rate": 4.9}, {"date": "2005-10-01", "series": "Wholesale and Retail Trade", "rate": 4.9}, {"date": "2005-11-01", "series": "Wholesale and Retail Trade", "rate": 4.7}, {"date": "2005-12-01", "series": "Wholesale and Retail Trade", "rate": 4.5}, {"date": "2006-01-01", "series": "Wholesale and Retail Trade", "rate": 5.7}, {"date": "2006-02-01", "series": "Wholesale and Retail Trade", "rate": 5.4}, {"date": "2006-03-01", "series": "Wholesale and Retail Trade", "rate": 4.9}, {"date": "2006-04-01", "series": "Wholesale and Retail Trade", "rate": 4.6}, {"date": "2006-05-01", "series": "Wholesale and Retail Trade", "rate": 4.8}, {"date": "2006-06-01", "series": "Wholesale and Retail Trade", "rate": 5.1}, {"date": "2006-07-01", "series": "Wholesale and Retail Trade", "rate": 5.1}, {"date": "2006-08-01", "series": "Wholesale and Retail Trade", "rate": 4.7}, {"date": "2006-09-01", "series": "Wholesale and Retail Trade", "rate": 4.9}, {"date": "2006-10-01", "series": "Wholesale and Retail Trade", "rate": 4.7}, {"date": "2006-11-01", "series": "Wholesale and Retail Trade", "rate": 4.8}, {"date": "2006-12-01", "series": "Wholesale and Retail Trade", "rate": 4.5}, {"date": "2007-01-01", "series": "Wholesale and Retail Trade", "rate": 5.5}, {"date": "2007-02-01", "series": "Wholesale and Retail Trade", "rate": 5.1}, {"date": "2007-03-01", "series": "Wholesale and Retail Trade", "rate": 4.4}, {"date": "2007-04-01", "series": "Wholesale and Retail Trade", "rate": 4.2}, {"date": "2007-05-01", "series": "Wholesale and Retail Trade", "rate": 3.9}, {"date": "2007-06-01", "series": "Wholesale and Retail Trade", "rate": 4.6}, {"date": "2007-07-01", "series": "Wholesale and Retail Trade", "rate": 5.2}, {"date": "2007-08-01", "series": "Wholesale and Retail Trade", "rate": 5.1}, {"date": "2007-09-01", "series": "Wholesale and Retail Trade", "rate": 5.1}, {"date": "2007-10-01", "series": "Wholesale and Retail Trade", "rate": 4.4}, {"date": "2007-11-01", "series": "Wholesale and Retail Trade", "rate": 4.3}, {"date": "2007-12-01", "series": "Wholesale and Retail Trade", "rate": 4.8}, {"date": "2008-01-01", "series": "Wholesale and Retail Trade", "rate": 5.4}, {"date": "2008-02-01", "series": "Wholesale and Retail Trade", "rate": 4.9}, {"date": "2008-03-01", "series": "Wholesale and Retail Trade", "rate": 4.9}, {"date": "2008-04-01", "series": "Wholesale and Retail Trade", "rate": 4.5}, {"date": "2008-05-01", "series": "Wholesale and Retail Trade", "rate": 5.2}, {"date": "2008-06-01", "series": "Wholesale and Retail Trade", "rate": 5.7}, {"date": "2008-07-01", "series": "Wholesale and Retail Trade", "rate": 6.5}, {"date": "2008-08-01", "series": "Wholesale and Retail Trade", "rate": 6.6}, {"date": "2008-09-01", "series": "Wholesale and Retail Trade", "rate": 6.2}, {"date": "2008-10-01", "series": "Wholesale and Retail Trade", "rate": 6.3}, {"date": "2008-11-01", "series": "Wholesale and Retail Trade", "rate": 6.7}, {"date": "2008-12-01", "series": "Wholesale and Retail Trade", "rate": 7.2}, {"date": "2009-01-01", "series": "Wholesale and Retail Trade", "rate": 8.7}, {"date": "2009-02-01", "series": "Wholesale and Retail Trade", "rate": 8.9}, {"date": "2009-03-01", "series": "Wholesale and Retail Trade", "rate": 9}, {"date": "2009-04-01", "series": "Wholesale and Retail Trade", "rate": 9}, {"date": "2009-05-01", "series": "Wholesale and Retail Trade", "rate": 9}, {"date": "2009-06-01", "series": "Wholesale and Retail Trade", "rate": 9.1}, {"date": "2009-07-01", "series": "Wholesale and Retail Trade", "rate": 9}, {"date": "2009-08-01", "series": "Wholesale and Retail Trade", "rate": 8.8}, {"date": "2009-09-01", "series": "Wholesale and Retail Trade", "rate": 9}, {"date": "2009-10-01", "series": "Wholesale and Retail Trade", "rate": 9.6}, {"date": "2009-11-01", "series": "Wholesale and Retail Trade", "rate": 9.2}, {"date": "2009-12-01", "series": "Wholesale and Retail Trade", "rate": 9.1}, {"date": "2010-01-01", "series": "Wholesale and Retail Trade", "rate": 10.5}, {"date": "2010-02-01", "series": "Wholesale and Retail Trade", "rate": 10}, {"date": "2000-01-01", "series": "Transportation and Utilities", "rate": 4.3}, {"date": "2000-02-01", "series": "Transportation and Utilities", "rate": 4}, {"date": "2000-03-01", "series": "Transportation and Utilities", "rate": 3.5}, {"date": "2000-04-01", "series": "Transportation and Utilities", "rate": 3.4}, {"date": "2000-05-01", "series": "Transportation and Utilities", "rate": 3.4}, {"date": "2000-06-01", "series": "Transportation and Utilities", "rate": 3.2}, {"date": "2000-07-01", "series": "Transportation and Utilities", "rate": 3.9}, {"date": "2000-08-01", "series": "Transportation and Utilities", "rate": 3.4}, {"date": "2000-09-01", "series": "Transportation and Utilities", "rate": 4}, {"date": "2000-10-01", "series": "Transportation and Utilities", "rate": 2.8}, {"date": "2000-11-01", "series": "Transportation and Utilities", "rate": 2.3}, {"date": "2000-12-01", "series": "Transportation and Utilities", "rate": 3.1}, {"date": "2001-01-01", "series": "Transportation and Utilities", "rate": 3.6}, {"date": "2001-02-01", "series": "Transportation and Utilities", "rate": 3.4}, {"date": "2001-03-01", "series": "Transportation and Utilities", "rate": 3.5}, {"date": "2001-04-01", "series": "Transportation and Utilities", "rate": 4.2}, {"date": "2001-05-01", "series": "Transportation and Utilities", "rate": 3.1}, {"date": "2001-06-01", "series": "Transportation and Utilities", "rate": 4.3}, {"date": "2001-07-01", "series": "Transportation and Utilities", "rate": 4.2}, {"date": "2001-08-01", "series": "Transportation and Utilities", "rate": 3.9}, {"date": "2001-09-01", "series": "Transportation and Utilities", "rate": 3.9}, {"date": "2001-10-01", "series": "Transportation and Utilities", "rate": 5.8}, {"date": "2001-11-01", "series": "Transportation and Utilities", "rate": 5.4}, {"date": "2001-12-01", "series": "Transportation and Utilities", "rate": 5.6}, {"date": "2002-01-01", "series": "Transportation and Utilities", "rate": 6.6}, {"date": "2002-02-01", "series": "Transportation and Utilities", "rate": 5.7}, {"date": "2002-03-01", "series": "Transportation and Utilities", "rate": 5.6}, {"date": "2002-04-01", "series": "Transportation and Utilities", "rate": 5}, {"date": "2002-05-01", "series": "Transportation and Utilities", "rate": 4.5}, {"date": "2002-06-01", "series": "Transportation and Utilities", "rate": 4.9}, {"date": "2002-07-01", "series": "Transportation and Utilities", "rate": 4.9}, {"date": "2002-08-01", "series": "Transportation and Utilities", "rate": 3.9}, {"date": "2002-09-01", "series": "Transportation and Utilities", "rate": 4.2}, {"date": "2002-10-01", "series": "Transportation and Utilities", "rate": 4.7}, {"date": "2002-11-01", "series": "Transportation and Utilities", "rate": 4.2}, {"date": "2002-12-01", "series": "Transportation and Utilities", "rate": 4.6}, {"date": "2003-01-01", "series": "Transportation and Utilities", "rate": 6.3}, {"date": "2003-02-01", "series": "Transportation and Utilities", "rate": 5.8}, {"date": "2003-03-01", "series": "Transportation and Utilities", "rate": 5.9}, {"date": "2003-04-01", "series": "Transportation and Utilities", "rate": 5}, {"date": "2003-05-01", "series": "Transportation and Utilities", "rate": 4.9}, {"date": "2003-06-01", "series": "Transportation and Utilities", "rate": 5.5}, {"date": "2003-07-01", "series": "Transportation and Utilities", "rate": 5.4}, {"date": "2003-08-01", "series": "Transportation and Utilities", "rate": 4.8}, {"date": "2003-09-01", "series": "Transportation and Utilities", "rate": 4.7}, {"date": "2003-10-01", "series": "Transportation and Utilities", "rate": 4.8}, {"date": "2003-11-01", "series": "Transportation and Utilities", "rate": 5.1}, {"date": "2003-12-01", "series": "Transportation and Utilities", "rate": 5}, {"date": "2004-01-01", "series": "Transportation and Utilities", "rate": 4.6}, {"date": "2004-02-01", "series": "Transportation and Utilities", "rate": 5.5}, {"date": "2004-03-01", "series": "Transportation and Utilities", "rate": 5.4}, {"date": "2004-04-01", "series": "Transportation and Utilities", "rate": 4.5}, {"date": "2004-05-01", "series": "Transportation and Utilities", "rate": 4.4}, {"date": "2004-06-01", "series": "Transportation and Utilities", "rate": 4.3}, {"date": "2004-07-01", "series": "Transportation and Utilities", "rate": 4.3}, {"date": "2004-08-01", "series": "Transportation and Utilities", "rate": 4.4}, {"date": "2004-09-01", "series": "Transportation and Utilities", "rate": 3.9}, {"date": "2004-10-01", "series": "Transportation and Utilities", "rate": 4}, {"date": "2004-11-01", "series": "Transportation and Utilities", "rate": 4}, {"date": "2004-12-01", "series": "Transportation and Utilities", "rate": 3.8}, {"date": "2005-01-01", "series": "Transportation and Utilities", "rate": 5}, {"date": "2005-02-01", "series": "Transportation and Utilities", "rate": 4.4}, {"date": "2005-03-01", "series": "Transportation and Utilities", "rate": 4.8}, {"date": "2005-04-01", "series": "Transportation and Utilities", "rate": 4.7}, {"date": "2005-05-01", "series": "Transportation and Utilities", "rate": 4.1}, {"date": "2005-06-01", "series": "Transportation and Utilities", "rate": 4.5}, {"date": "2005-07-01", "series": "Transportation and Utilities", "rate": 3.9}, {"date": "2005-08-01", "series": "Transportation and Utilities", "rate": 3.3}, {"date": "2005-09-01", "series": "Transportation and Utilities", "rate": 3.7}, {"date": "2005-10-01", "series": "Transportation and Utilities", "rate": 4.4}, {"date": "2005-11-01", "series": "Transportation and Utilities", "rate": 3.5}, {"date": "2005-12-01", "series": "Transportation and Utilities", "rate": 3.6}, {"date": "2006-01-01", "series": "Transportation and Utilities", "rate": 5}, {"date": "2006-02-01", "series": "Transportation and Utilities", "rate": 4.6}, {"date": "2006-03-01", "series": "Transportation and Utilities", "rate": 4.7}, {"date": "2006-04-01", "series": "Transportation and Utilities", "rate": 4.8}, {"date": "2006-05-01", "series": "Transportation and Utilities", "rate": 4}, {"date": "2006-06-01", "series": "Transportation and Utilities", "rate": 3.9}, {"date": "2006-07-01", "series": "Transportation and Utilities", "rate": 4.2}, {"date": "2006-08-01", "series": "Transportation and Utilities", "rate": 3.7}, {"date": "2006-09-01", "series": "Transportation and Utilities", "rate": 3.1}, {"date": "2006-10-01", "series": "Transportation and Utilities", "rate": 3.6}, {"date": "2006-11-01", "series": "Transportation and Utilities", "rate": 3.1}, {"date": "2006-12-01", "series": "Transportation and Utilities", "rate": 3.2}, {"date": "2007-01-01", "series": "Transportation and Utilities", "rate": 4.2}, {"date": "2007-02-01", "series": "Transportation and Utilities", "rate": 4.2}, {"date": "2007-03-01", "series": "Transportation and Utilities", "rate": 4.3}, {"date": "2007-04-01", "series": "Transportation and Utilities", "rate": 3.3}, {"date": "2007-05-01", "series": "Transportation and Utilities", "rate": 3.8}, {"date": "2007-06-01", "series": "Transportation and Utilities", "rate": 4.1}, {"date": "2007-07-01", "series": "Transportation and Utilities", "rate": 5.1}, {"date": "2007-08-01", "series": "Transportation and Utilities", "rate": 3.4}, {"date": "2007-09-01", "series": "Transportation and Utilities", "rate": 3.7}, {"date": "2007-10-01", "series": "Transportation and Utilities", "rate": 3.6}, {"date": "2007-11-01", "series": "Transportation and Utilities", "rate": 3.9}, {"date": "2007-12-01", "series": "Transportation and Utilities", "rate": 3.4}, {"date": "2008-01-01", "series": "Transportation and Utilities", "rate": 4.4}, {"date": "2008-02-01", "series": "Transportation and Utilities", "rate": 4.6}, {"date": "2008-03-01", "series": "Transportation and Utilities", "rate": 4.3}, {"date": "2008-04-01", "series": "Transportation and Utilities", "rate": 4}, {"date": "2008-05-01", "series": "Transportation and Utilities", "rate": 4.3}, {"date": "2008-06-01", "series": "Transportation and Utilities", "rate": 5.1}, {"date": "2008-07-01", "series": "Transportation and Utilities", "rate": 5.7}, {"date": "2008-08-01", "series": "Transportation and Utilities", "rate": 5.2}, {"date": "2008-09-01", "series": "Transportation and Utilities", "rate": 5.8}, {"date": "2008-10-01", "series": "Transportation and Utilities", "rate": 5.7}, {"date": "2008-11-01", "series": "Transportation and Utilities", "rate": 5.8}, {"date": "2008-12-01", "series": "Transportation and Utilities", "rate": 6.7}, {"date": "2009-01-01", "series": "Transportation and Utilities", "rate": 8.4}, {"date": "2009-02-01", "series": "Transportation and Utilities", "rate": 9.1}, {"date": "2009-03-01", "series": "Transportation and Utilities", "rate": 9}, {"date": "2009-04-01", "series": "Transportation and Utilities", "rate": 9}, {"date": "2009-05-01", "series": "Transportation and Utilities", "rate": 8.5}, {"date": "2009-06-01", "series": "Transportation and Utilities", "rate": 8.4}, {"date": "2009-07-01", "series": "Transportation and Utilities", "rate": 8.8}, {"date": "2009-08-01", "series": "Transportation and Utilities", "rate": 9.8}, {"date": "2009-09-01", "series": "Transportation and Utilities", "rate": 9.5}, {"date": "2009-10-01", "series": "Transportation and Utilities", "rate": 8.6}, {"date": "2009-11-01", "series": "Transportation and Utilities", "rate": 8.5}, {"date": "2009-12-01", "series": "Transportation and Utilities", "rate": 9}, {"date": "2010-01-01", "series": "Transportation and Utilities", "rate": 11.3}, {"date": "2010-02-01", "series": "Transportation and Utilities", "rate": 10.5}, {"date": "2000-01-01", "series": "Information", "rate": 3.4}, {"date": "2000-02-01", "series": "Information", "rate": 2.9}, {"date": "2000-03-01", "series": "Information", "rate": 3.6}, {"date": "2000-04-01", "series": "Information", "rate": 2.4}, {"date": "2000-05-01", "series": "Information", "rate": 3.5}, {"date": "2000-06-01", "series": "Information", "rate": 2.6}, {"date": "2000-07-01", "series": "Information", "rate": 3.6}, {"date": "2000-08-01", "series": "Information", "rate": 3.7}, {"date": "2000-09-01", "series": "Information", "rate": 3.3}, {"date": "2000-10-01", "series": "Information", "rate": 2.4}, {"date": "2000-11-01", "series": "Information", "rate": 3}, {"date": "2000-12-01", "series": "Information", "rate": 4}, {"date": "2001-01-01", "series": "Information", "rate": 4.1}, {"date": "2001-02-01", "series": "Information", "rate": 2.9}, {"date": "2001-03-01", "series": "Information", "rate": 3.8}, {"date": "2001-04-01", "series": "Information", "rate": 3.7}, {"date": "2001-05-01", "series": "Information", "rate": 4.2}, {"date": "2001-06-01", "series": "Information", "rate": 4.1}, {"date": "2001-07-01", "series": "Information", "rate": 5.2}, {"date": "2001-08-01", "series": "Information", "rate": 5.4}, {"date": "2001-09-01", "series": "Information", "rate": 5.6}, {"date": "2001-10-01", "series": "Information", "rate": 6}, {"date": "2001-11-01", "series": "Information", "rate": 6.2}, {"date": "2001-12-01", "series": "Information", "rate": 7.4}, {"date": "2002-01-01", "series": "Information", "rate": 7.1}, {"date": "2002-02-01", "series": "Information", "rate": 7.6}, {"date": "2002-03-01", "series": "Information", "rate": 7.2}, {"date": "2002-04-01", "series": "Information", "rate": 6.9}, {"date": "2002-05-01", "series": "Information", "rate": 7.2}, {"date": "2002-06-01", "series": "Information", "rate": 6.9}, {"date": "2002-07-01", "series": "Information", "rate": 7.1}, {"date": "2002-08-01", "series": "Information", "rate": 7.1}, {"date": "2002-09-01", "series": "Information", "rate": 6.3}, {"date": "2002-10-01", "series": "Information", "rate": 6}, {"date": "2002-11-01", "series": "Information", "rate": 6.5}, {"date": "2002-12-01", "series": "Information", "rate": 7.2}, {"date": "2003-01-01", "series": "Information", "rate": 6.7}, {"date": "2003-02-01", "series": "Information", "rate": 8.6}, {"date": "2003-03-01", "series": "Information", "rate": 7.4}, {"date": "2003-04-01", "series": "Information", "rate": 7.3}, {"date": "2003-05-01", "series": "Information", "rate": 6.9}, {"date": "2003-06-01", "series": "Information", "rate": 6.4}, {"date": "2003-07-01", "series": "Information", "rate": 5.9}, {"date": "2003-08-01", "series": "Information", "rate": 6.1}, {"date": "2003-09-01", "series": "Information", "rate": 7}, {"date": "2003-10-01", "series": "Information", "rate": 5.4}, {"date": "2003-11-01", "series": "Information", "rate": 7.6}, {"date": "2003-12-01", "series": "Information", "rate": 6.5}, {"date": "2004-01-01", "series": "Information", "rate": 7}, {"date": "2004-02-01", "series": "Information", "rate": 5.8}, {"date": "2004-03-01", "series": "Information", "rate": 6.3}, {"date": "2004-04-01", "series": "Information", "rate": 5}, {"date": "2004-05-01", "series": "Information", "rate": 5.7}, {"date": "2004-06-01", "series": "Information", "rate": 5}, {"date": "2004-07-01", "series": "Information", "rate": 5.2}, {"date": "2004-08-01", "series": "Information", "rate": 5.7}, {"date": "2004-09-01", "series": "Information", "rate": 5.4}, {"date": "2004-10-01", "series": "Information", "rate": 5.6}, {"date": "2004-11-01", "series": "Information", "rate": 5.6}, {"date": "2004-12-01", "series": "Information", "rate": 5.7}, {"date": "2005-01-01", "series": "Information", "rate": 5.4}, {"date": "2005-02-01", "series": "Information", "rate": 6.5}, {"date": "2005-03-01", "series": "Information", "rate": 6}, {"date": "2005-04-01", "series": "Information", "rate": 5.9}, {"date": "2005-05-01", "series": "Information", "rate": 4.7}, {"date": "2005-06-01", "series": "Information", "rate": 5}, {"date": "2005-07-01", "series": "Information", "rate": 4.2}, {"date": "2005-08-01", "series": "Information", "rate": 4.6}, {"date": "2005-09-01", "series": "Information", "rate": 4.9}, {"date": "2005-10-01", "series": "Information", "rate": 4.8}, {"date": "2005-11-01", "series": "Information", "rate": 5.1}, {"date": "2005-12-01", "series": "Information", "rate": 3.7}, {"date": "2006-01-01", "series": "Information", "rate": 3.3}, {"date": "2006-02-01", "series": "Information", "rate": 3.7}, {"date": "2006-03-01", "series": "Information", "rate": 3.5}, {"date": "2006-04-01", "series": "Information", "rate": 4.2}, {"date": "2006-05-01", "series": "Information", "rate": 4.8}, {"date": "2006-06-01", "series": "Information", "rate": 3.4}, {"date": "2006-07-01", "series": "Information", "rate": 3}, {"date": "2006-08-01", "series": "Information", "rate": 3.9}, {"date": "2006-09-01", "series": "Information", "rate": 4.9}, {"date": "2006-10-01", "series": "Information", "rate": 3.4}, {"date": "2006-11-01", "series": "Information", "rate": 3.9}, {"date": "2006-12-01", "series": "Information", "rate": 2.9}, {"date": "2007-01-01", "series": "Information", "rate": 4}, {"date": "2007-02-01", "series": "Information", "rate": 4}, {"date": "2007-03-01", "series": "Information", "rate": 3.2}, {"date": "2007-04-01", "series": "Information", "rate": 2.4}, {"date": "2007-05-01", "series": "Information", "rate": 3.3}, {"date": "2007-06-01", "series": "Information", "rate": 3.4}, {"date": "2007-07-01", "series": "Information", "rate": 3.4}, {"date": "2007-08-01", "series": "Information", "rate": 4.1}, {"date": "2007-09-01", "series": "Information", "rate": 3.7}, {"date": "2007-10-01", "series": "Information", "rate": 3.7}, {"date": "2007-11-01", "series": "Information", "rate": 4}, {"date": "2007-12-01", "series": "Information", "rate": 3.7}, {"date": "2008-01-01", "series": "Information", "rate": 5.1}, {"date": "2008-02-01", "series": "Information", "rate": 5.8}, {"date": "2008-03-01", "series": "Information", "rate": 4.8}, {"date": "2008-04-01", "series": "Information", "rate": 4.4}, {"date": "2008-05-01", "series": "Information", "rate": 5}, {"date": "2008-06-01", "series": "Information", "rate": 4.7}, {"date": "2008-07-01", "series": "Information", "rate": 4.1}, {"date": "2008-08-01", "series": "Information", "rate": 4.2}, {"date": "2008-09-01", "series": "Information", "rate": 5}, {"date": "2008-10-01", "series": "Information", "rate": 5}, {"date": "2008-11-01", "series": "Information", "rate": 5.2}, {"date": "2008-12-01", "series": "Information", "rate": 6.9}, {"date": "2009-01-01", "series": "Information", "rate": 7.4}, {"date": "2009-02-01", "series": "Information", "rate": 7.1}, {"date": "2009-03-01", "series": "Information", "rate": 7.8}, {"date": "2009-04-01", "series": "Information", "rate": 10.1}, {"date": "2009-05-01", "series": "Information", "rate": 9.5}, {"date": "2009-06-01", "series": "Information", "rate": 11.1}, {"date": "2009-07-01", "series": "Information", "rate": 11.5}, {"date": "2009-08-01", "series": "Information", "rate": 10.7}, {"date": "2009-09-01", "series": "Information", "rate": 11.2}, {"date": "2009-10-01", "series": "Information", "rate": 8.2}, {"date": "2009-11-01", "series": "Information", "rate": 7.6}, {"date": "2009-12-01", "series": "Information", "rate": 8.5}, {"date": "2010-01-01", "series": "Information", "rate": 10}, {"date": "2010-02-01", "series": "Information", "rate": 10}, {"date": "2000-01-01", "series": "Finance", "rate": 2.7}, {"date": "2000-02-01", "series": "Finance", "rate": 2.8}, {"date": "2000-03-01", "series": "Finance", "rate": 2.6}, {"date": "2000-04-01", "series": "Finance", "rate": 2.3}, {"date": "2000-05-01", "series": "Finance", "rate": 2.2}, {"date": "2000-06-01", "series": "Finance", "rate": 2.5}, {"date": "2000-07-01", "series": "Finance", "rate": 2.2}, {"date": "2000-08-01", "series": "Finance", "rate": 2.5}, {"date": "2000-09-01", "series": "Finance", "rate": 2.2}, {"date": "2000-10-01", "series": "Finance", "rate": 2.6}, {"date": "2000-11-01", "series": "Finance", "rate": 2.1}, {"date": "2000-12-01", "series": "Finance", "rate": 2.3}, {"date": "2001-01-01", "series": "Finance", "rate": 2.6}, {"date": "2001-02-01", "series": "Finance", "rate": 2.6}, {"date": "2001-03-01", "series": "Finance", "rate": 2.4}, {"date": "2001-04-01", "series": "Finance", "rate": 2.6}, {"date": "2001-05-01", "series": "Finance", "rate": 2.2}, {"date": "2001-06-01", "series": "Finance", "rate": 2.8}, {"date": "2001-07-01", "series": "Finance", "rate": 3.3}, {"date": "2001-08-01", "series": "Finance", "rate": 2.9}, {"date": "2001-09-01", "series": "Finance", "rate": 3.1}, {"date": "2001-10-01", "series": "Finance", "rate": 3.3}, {"date": "2001-11-01", "series": "Finance", "rate": 3.6}, {"date": "2001-12-01", "series": "Finance", "rate": 3}, {"date": "2002-01-01", "series": "Finance", "rate": 3}, {"date": "2002-02-01", "series": "Finance", "rate": 3.5}, {"date": "2002-03-01", "series": "Finance", "rate": 3.2}, {"date": "2002-04-01", "series": "Finance", "rate": 3.3}, {"date": "2002-05-01", "series": "Finance", "rate": 3.8}, {"date": "2002-06-01", "series": "Finance", "rate": 4.1}, {"date": "2002-07-01", "series": "Finance", "rate": 3.8}, {"date": "2002-08-01", "series": "Finance", "rate": 3.8}, {"date": "2002-09-01", "series": "Finance", "rate": 3.3}, {"date": "2002-10-01", "series": "Finance", "rate": 3.5}, {"date": "2002-11-01", "series": "Finance", "rate": 3.7}, {"date": "2002-12-01", "series": "Finance", "rate": 3.6}, {"date": "2003-01-01", "series": "Finance", "rate": 3.6}, {"date": "2003-02-01", "series": "Finance", "rate": 3.4}, {"date": "2003-03-01", "series": "Finance", "rate": 4}, {"date": "2003-04-01", "series": "Finance", "rate": 3.6}, {"date": "2003-05-01", "series": "Finance", "rate": 3.6}, {"date": "2003-06-01", "series": "Finance", "rate": 4}, {"date": "2003-07-01", "series": "Finance", "rate": 3.1}, {"date": "2003-08-01", "series": "Finance", "rate": 3.7}, {"date": "2003-09-01", "series": "Finance", "rate": 3.3}, {"date": "2003-10-01", "series": "Finance", "rate": 3.3}, {"date": "2003-11-01", "series": "Finance", "rate": 3.3}, {"date": "2003-12-01", "series": "Finance", "rate": 3}, {"date": "2004-01-01", "series": "Finance", "rate": 4.3}, {"date": "2004-02-01", "series": "Finance", "rate": 3.8}, {"date": "2004-03-01", "series": "Finance", "rate": 3.7}, {"date": "2004-04-01", "series": "Finance", "rate": 3.4}, {"date": "2004-05-01", "series": "Finance", "rate": 3.3}, {"date": "2004-06-01", "series": "Finance", "rate": 3.6}, {"date": "2004-07-01", "series": "Finance", "rate": 3.3}, {"date": "2004-08-01", "series": "Finance", "rate": 3.4}, {"date": "2004-09-01", "series": "Finance", "rate": 4}, {"date": "2004-10-01", "series": "Finance", "rate": 3.8}, {"date": "2004-11-01", "series": "Finance", "rate": 3.1}, {"date": "2004-12-01", "series": "Finance", "rate": 3.1}, {"date": "2005-01-01", "series": "Finance", "rate": 2.7}, {"date": "2005-02-01", "series": "Finance", "rate": 3.2}, {"date": "2005-03-01", "series": "Finance", "rate": 2.7}, {"date": "2005-04-01", "series": "Finance", "rate": 2.7}, {"date": "2005-05-01", "series": "Finance", "rate": 3.1}, {"date": "2005-06-01", "series": "Finance", "rate": 3.3}, {"date": "2005-07-01", "series": "Finance", "rate": 3.3}, {"date": "2005-08-01", "series": "Finance", "rate": 3.2}, {"date": "2005-09-01", "series": "Finance", "rate": 2.7}, {"date": "2005-10-01", "series": "Finance", "rate": 2.7}, {"date": "2005-11-01", "series": "Finance", "rate": 2.8}, {"date": "2005-12-01", "series": "Finance", "rate": 2.1}, {"date": "2006-01-01", "series": "Finance", "rate": 2.4}, {"date": "2006-02-01", "series": "Finance", "rate": 2.8}, {"date": "2006-03-01", "series": "Finance", "rate": 3.1}, {"date": "2006-04-01", "series": "Finance", "rate": 3.1}, {"date": "2006-05-01", "series": "Finance", "rate": 3}, {"date": "2006-06-01", "series": "Finance", "rate": 3.1}, {"date": "2006-07-01", "series": "Finance", "rate": 3.4}, {"date": "2006-08-01", "series": "Finance", "rate": 2.7}, {"date": "2006-09-01", "series": "Finance", "rate": 2.4}, {"date": "2006-10-01", "series": "Finance", "rate": 2.1}, {"date": "2006-11-01", "series": "Finance", "rate": 2.3}, {"date": "2006-12-01", "series": "Finance", "rate": 2.3}, {"date": "2007-01-01", "series": "Finance", "rate": 2.4}, {"date": "2007-02-01", "series": "Finance", "rate": 3.1}, {"date": "2007-03-01", "series": "Finance", "rate": 2.6}, {"date": "2007-04-01", "series": "Finance", "rate": 2.4}, {"date": "2007-05-01", "series": "Finance", "rate": 2.9}, {"date": "2007-06-01", "series": "Finance", "rate": 3.1}, {"date": "2007-07-01", "series": "Finance", "rate": 3.1}, {"date": "2007-08-01", "series": "Finance", "rate": 3.7}, {"date": "2007-09-01", "series": "Finance", "rate": 3.3}, {"date": "2007-10-01", "series": "Finance", "rate": 3.2}, {"date": "2007-11-01", "series": "Finance", "rate": 2.7}, {"date": "2007-12-01", "series": "Finance", "rate": 3.2}, {"date": "2008-01-01", "series": "Finance", "rate": 3}, {"date": "2008-02-01", "series": "Finance", "rate": 3.4}, {"date": "2008-03-01", "series": "Finance", "rate": 3.4}, {"date": "2008-04-01", "series": "Finance", "rate": 3.4}, {"date": "2008-05-01", "series": "Finance", "rate": 3.7}, {"date": "2008-06-01", "series": "Finance", "rate": 3.4}, {"date": "2008-07-01", "series": "Finance", "rate": 3.6}, {"date": "2008-08-01", "series": "Finance", "rate": 4.2}, {"date": "2008-09-01", "series": "Finance", "rate": 4}, {"date": "2008-10-01", "series": "Finance", "rate": 4.5}, {"date": "2008-11-01", "series": "Finance", "rate": 5.2}, {"date": "2008-12-01", "series": "Finance", "rate": 5.6}, {"date": "2009-01-01", "series": "Finance", "rate": 6}, {"date": "2009-02-01", "series": "Finance", "rate": 6.7}, {"date": "2009-03-01", "series": "Finance", "rate": 6.8}, {"date": "2009-04-01", "series": "Finance", "rate": 6}, {"date": "2009-05-01", "series": "Finance", "rate": 5.7}, {"date": "2009-06-01", "series": "Finance", "rate": 5.5}, {"date": "2009-07-01", "series": "Finance", "rate": 6.1}, {"date": "2009-08-01", "series": "Finance", "rate": 6}, {"date": "2009-09-01", "series": "Finance", "rate": 7.1}, {"date": "2009-10-01", "series": "Finance", "rate": 7}, {"date": "2009-11-01", "series": "Finance", "rate": 6.7}, {"date": "2009-12-01", "series": "Finance", "rate": 7.2}, {"date": "2010-01-01", "series": "Finance", "rate": 6.6}, {"date": "2010-02-01", "series": "Finance", "rate": 7.5}, {"date": "2000-01-01", "series": "Business services", "rate": 5.7}, {"date": "2000-02-01", "series": "Business services", "rate": 5.2}, {"date": "2000-03-01", "series": "Business services", "rate": 5.4}, {"date": "2000-04-01", "series": "Business services", "rate": 4.5}, {"date": "2000-05-01", "series": "Business services", "rate": 4.7}, {"date": "2000-06-01", "series": "Business services", "rate": 4.4}, {"date": "2000-07-01", "series": "Business services", "rate": 5.1}, {"date": "2000-08-01", "series": "Business services", "rate": 4.8}, {"date": "2000-09-01", "series": "Business services", "rate": 4.6}, {"date": "2000-10-01", "series": "Business services", "rate": 4.1}, {"date": "2000-11-01", "series": "Business services", "rate": 4.4}, {"date": "2000-12-01", "series": "Business services", "rate": 4.5}, {"date": "2001-01-01", "series": "Business services", "rate": 5.8}, {"date": "2001-02-01", "series": "Business services", "rate": 5.9}, {"date": "2001-03-01", "series": "Business services", "rate": 5.3}, {"date": "2001-04-01", "series": "Business services", "rate": 5.3}, {"date": "2001-05-01", "series": "Business services", "rate": 5.3}, {"date": "2001-06-01", "series": "Business services", "rate": 5.4}, {"date": "2001-07-01", "series": "Business services", "rate": 5.7}, {"date": "2001-08-01", "series": "Business services", "rate": 6.2}, {"date": "2001-09-01", "series": "Business services", "rate": 6.4}, {"date": "2001-10-01", "series": "Business services", "rate": 7.2}, {"date": "2001-11-01", "series": "Business services", "rate": 7.6}, {"date": "2001-12-01", "series": "Business services", "rate": 7.4}, {"date": "2002-01-01", "series": "Business services", "rate": 8.9}, {"date": "2002-02-01", "series": "Business services", "rate": 7.7}, {"date": "2002-03-01", "series": "Business services", "rate": 7.5}, {"date": "2002-04-01", "series": "Business services", "rate": 7.3}, {"date": "2002-05-01", "series": "Business services", "rate": 7.7}, {"date": "2002-06-01", "series": "Business services", "rate": 8.2}, {"date": "2002-07-01", "series": "Business services", "rate": 8.2}, {"date": "2002-08-01", "series": "Business services", "rate": 7.2}, {"date": "2002-09-01", "series": "Business services", "rate": 7.8}, {"date": "2002-10-01", "series": "Business services", "rate": 7.5}, {"date": "2002-11-01", "series": "Business services", "rate": 8.2}, {"date": "2002-12-01", "series": "Business services", "rate": 8.3}, {"date": "2003-01-01", "series": "Business services", "rate": 8.9}, {"date": "2003-02-01", "series": "Business services", "rate": 8.9}, {"date": "2003-03-01", "series": "Business services", "rate": 9.1}, {"date": "2003-04-01", "series": "Business services", "rate": 8.3}, {"date": "2003-05-01", "series": "Business services", "rate": 8.4}, {"date": "2003-06-01", "series": "Business services", "rate": 8.5}, {"date": "2003-07-01", "series": "Business services", "rate": 8.2}, {"date": "2003-08-01", "series": "Business services", "rate": 7.2}, {"date": "2003-09-01", "series": "Business services", "rate": 8}, {"date": "2003-10-01", "series": "Business services", "rate": 8.1}, {"date": "2003-11-01", "series": "Business services", "rate": 7.7}, {"date": "2003-12-01", "series": "Business services", "rate": 7.6}, {"date": "2004-01-01", "series": "Business services", "rate": 8.7}, {"date": "2004-02-01", "series": "Business services", "rate": 7.7}, {"date": "2004-03-01", "series": "Business services", "rate": 7.9}, {"date": "2004-04-01", "series": "Business services", "rate": 6}, {"date": "2004-05-01", "series": "Business services", "rate": 6.5}, {"date": "2004-06-01", "series": "Business services", "rate": 6.5}, {"date": "2004-07-01", "series": "Business services", "rate": 6.2}, {"date": "2004-08-01", "series": "Business services", "rate": 6.7}, {"date": "2004-09-01", "series": "Business services", "rate": 5.9}, {"date": "2004-10-01", "series": "Business services", "rate": 6.2}, {"date": "2004-11-01", "series": "Business services", "rate": 6.8}, {"date": "2004-12-01", "series": "Business services", "rate": 6.9}, {"date": "2005-01-01", "series": "Business services", "rate": 7.6}, {"date": "2005-02-01", "series": "Business services", "rate": 7.2}, {"date": "2005-03-01", "series": "Business services", "rate": 6.5}, {"date": "2005-04-01", "series": "Business services", "rate": 5.7}, {"date": "2005-05-01", "series": "Business services", "rate": 5.9}, {"date": "2005-06-01", "series": "Business services", "rate": 5.8}, {"date": "2005-07-01", "series": "Business services", "rate": 6.3}, {"date": "2005-08-01", "series": "Business services", "rate": 5.7}, {"date": "2005-09-01", "series": "Business services", "rate": 6.7}, {"date": "2005-10-01", "series": "Business services", "rate": 5.8}, {"date": "2005-11-01", "series": "Business services", "rate": 5.5}, {"date": "2005-12-01", "series": "Business services", "rate": 6.1}, {"date": "2006-01-01", "series": "Business services", "rate": 6.5}, {"date": "2006-02-01", "series": "Business services", "rate": 6.5}, {"date": "2006-03-01", "series": "Business services", "rate": 6.3}, {"date": "2006-04-01", "series": "Business services", "rate": 4.9}, {"date": "2006-05-01", "series": "Business services", "rate": 5.3}, {"date": "2006-06-01", "series": "Business services", "rate": 5.7}, {"date": "2006-07-01", "series": "Business services", "rate": 5.5}, {"date": "2006-08-01", "series": "Business services", "rate": 5.1}, {"date": "2006-09-01", "series": "Business services", "rate": 5.6}, {"date": "2006-10-01", "series": "Business services", "rate": 5.6}, {"date": "2006-11-01", "series": "Business services", "rate": 4.9}, {"date": "2006-12-01", "series": "Business services", "rate": 5.9}, {"date": "2007-01-01", "series": "Business services", "rate": 6.5}, {"date": "2007-02-01", "series": "Business services", "rate": 6}, {"date": "2007-03-01", "series": "Business services", "rate": 5.7}, {"date": "2007-04-01", "series": "Business services", "rate": 5}, {"date": "2007-05-01", "series": "Business services", "rate": 5.4}, {"date": "2007-06-01", "series": "Business services", "rate": 5.2}, {"date": "2007-07-01", "series": "Business services", "rate": 5.2}, {"date": "2007-08-01", "series": "Business services", "rate": 4.9}, {"date": "2007-09-01", "series": "Business services", "rate": 4.7}, {"date": "2007-10-01", "series": "Business services", "rate": 4.8}, {"date": "2007-11-01", "series": "Business services", "rate": 4.8}, {"date": "2007-12-01", "series": "Business services", "rate": 5.7}, {"date": "2008-01-01", "series": "Business services", "rate": 6.4}, {"date": "2008-02-01", "series": "Business services", "rate": 6.2}, {"date": "2008-03-01", "series": "Business services", "rate": 6.2}, {"date": "2008-04-01", "series": "Business services", "rate": 5.3}, {"date": "2008-05-01", "series": "Business services", "rate": 5.9}, {"date": "2008-06-01", "series": "Business services", "rate": 6.2}, {"date": "2008-07-01", "series": "Business services", "rate": 6.1}, {"date": "2008-08-01", "series": "Business services", "rate": 6.9}, {"date": "2008-09-01", "series": "Business services", "rate": 6.9}, {"date": "2008-10-01", "series": "Business services", "rate": 7.5}, {"date": "2008-11-01", "series": "Business services", "rate": 7}, {"date": "2008-12-01", "series": "Business services", "rate": 8.1}, {"date": "2009-01-01", "series": "Business services", "rate": 10.4}, {"date": "2009-02-01", "series": "Business services", "rate": 10.8}, {"date": "2009-03-01", "series": "Business services", "rate": 11.4}, {"date": "2009-04-01", "series": "Business services", "rate": 10.4}, {"date": "2009-05-01", "series": "Business services", "rate": 10.9}, {"date": "2009-06-01", "series": "Business services", "rate": 11.3}, {"date": "2009-07-01", "series": "Business services", "rate": 10.9}, {"date": "2009-08-01", "series": "Business services", "rate": 11}, {"date": "2009-09-01", "series": "Business services", "rate": 11.3}, {"date": "2009-10-01", "series": "Business services", "rate": 10.3}, {"date": "2009-11-01", "series": "Business services", "rate": 10.6}, {"date": "2009-12-01", "series": "Business services", "rate": 10.3}, {"date": "2010-01-01", "series": "Business services", "rate": 11.1}, {"date": "2010-02-01", "series": "Business services", "rate": 12}, {"date": "2000-01-01", "series": "Education and Health", "rate": 2.3}, {"date": "2000-02-01", "series": "Education and Health", "rate": 2.2}, {"date": "2000-03-01", "series": "Education and Health", "rate": 2.5}, {"date": "2000-04-01", "series": "Education and Health", "rate": 2.1}, {"date": "2000-05-01", "series": "Education and Health", "rate": 2.7}, {"date": "2000-06-01", "series": "Education and Health", "rate": 2.9}, {"date": "2000-07-01", "series": "Education and Health", "rate": 3.1}, {"date": "2000-08-01", "series": "Education and Health", "rate": 2.9}, {"date": "2000-09-01", "series": "Education and Health", "rate": 2.6}, {"date": "2000-10-01", "series": "Education and Health", "rate": 2.1}, {"date": "2000-11-01", "series": "Education and Health", "rate": 2.2}, {"date": "2000-12-01", "series": "Education and Health", "rate": 1.8}, {"date": "2001-01-01", "series": "Education and Health", "rate": 2.6}, {"date": "2001-02-01", "series": "Education and Health", "rate": 2.6}, {"date": "2001-03-01", "series": "Education and Health", "rate": 2.8}, {"date": "2001-04-01", "series": "Education and Health", "rate": 2.1}, {"date": "2001-05-01", "series": "Education and Health", "rate": 2.4}, {"date": "2001-06-01", "series": "Education and Health", "rate": 3}, {"date": "2001-07-01", "series": "Education and Health", "rate": 3.1}, {"date": "2001-08-01", "series": "Education and Health", "rate": 3.7}, {"date": "2001-09-01", "series": "Education and Health", "rate": 2.8}, {"date": "2001-10-01", "series": "Education and Health", "rate": 2.9}, {"date": "2001-11-01", "series": "Education and Health", "rate": 3.1}, {"date": "2001-12-01", "series": "Education and Health", "rate": 2.9}, {"date": "2002-01-01", "series": "Education and Health", "rate": 3.5}, {"date": "2002-02-01", "series": "Education and Health", "rate": 3.5}, {"date": "2002-03-01", "series": "Education and Health", "rate": 3.2}, {"date": "2002-04-01", "series": "Education and Health", "rate": 2.9}, {"date": "2002-05-01", "series": "Education and Health", "rate": 3.2}, {"date": "2002-06-01", "series": "Education and Health", "rate": 3.9}, {"date": "2002-07-01", "series": "Education and Health", "rate": 4}, {"date": "2002-08-01", "series": "Education and Health", "rate": 3.9}, {"date": "2002-09-01", "series": "Education and Health", "rate": 3.2}, {"date": "2002-10-01", "series": "Education and Health", "rate": 3}, {"date": "2002-11-01", "series": "Education and Health", "rate": 2.8}, {"date": "2002-12-01", "series": "Education and Health", "rate": 3.2}, {"date": "2003-01-01", "series": "Education and Health", "rate": 3.2}, {"date": "2003-02-01", "series": "Education and Health", "rate": 3.2}, {"date": "2003-03-01", "series": "Education and Health", "rate": 2.9}, {"date": "2003-04-01", "series": "Education and Health", "rate": 3.4}, {"date": "2003-05-01", "series": "Education and Health", "rate": 3.5}, {"date": "2003-06-01", "series": "Education and Health", "rate": 4.4}, {"date": "2003-07-01", "series": "Education and Health", "rate": 4}, {"date": "2003-08-01", "series": "Education and Health", "rate": 4.3}, {"date": "2003-09-01", "series": "Education and Health", "rate": 3.7}, {"date": "2003-10-01", "series": "Education and Health", "rate": 3.6}, {"date": "2003-11-01", "series": "Education and Health", "rate": 3.8}, {"date": "2003-12-01", "series": "Education and Health", "rate": 3.5}, {"date": "2004-01-01", "series": "Education and Health", "rate": 3.7}, {"date": "2004-02-01", "series": "Education and Health", "rate": 3.4}, {"date": "2004-03-01", "series": "Education and Health", "rate": 3.2}, {"date": "2004-04-01", "series": "Education and Health", "rate": 3.3}, {"date": "2004-05-01", "series": "Education and Health", "rate": 3.2}, {"date": "2004-06-01", "series": "Education and Health", "rate": 4.2}, {"date": "2004-07-01", "series": "Education and Health", "rate": 4}, {"date": "2004-08-01", "series": "Education and Health", "rate": 3.7}, {"date": "2004-09-01", "series": "Education and Health", "rate": 3.3}, {"date": "2004-10-01", "series": "Education and Health", "rate": 2.9}, {"date": "2004-11-01", "series": "Education and Health", "rate": 3.2}, {"date": "2004-12-01", "series": "Education and Health", "rate": 3.1}, {"date": "2005-01-01", "series": "Education and Health", "rate": 3.4}, {"date": "2005-02-01", "series": "Education and Health", "rate": 3.4}, {"date": "2005-03-01", "series": "Education and Health", "rate": 3.4}, {"date": "2005-04-01", "series": "Education and Health", "rate": 3.3}, {"date": "2005-05-01", "series": "Education and Health", "rate": 3.6}, {"date": "2005-06-01", "series": "Education and Health", "rate": 3.6}, {"date": "2005-07-01", "series": "Education and Health", "rate": 3.5}, {"date": "2005-08-01", "series": "Education and Health", "rate": 3.5}, {"date": "2005-09-01", "series": "Education and Health", "rate": 3.5}, {"date": "2005-10-01", "series": "Education and Health", "rate": 3.4}, {"date": "2005-11-01", "series": "Education and Health", "rate": 3.6}, {"date": "2005-12-01", "series": "Education and Health", "rate": 2.8}, {"date": "2006-01-01", "series": "Education and Health", "rate": 3.2}, {"date": "2006-02-01", "series": "Education and Health", "rate": 2.8}, {"date": "2006-03-01", "series": "Education and Health", "rate": 3}, {"date": "2006-04-01", "series": "Education and Health", "rate": 3}, {"date": "2006-05-01", "series": "Education and Health", "rate": 2.9}, {"date": "2006-06-01", "series": "Education and Health", "rate": 3.3}, {"date": "2006-07-01", "series": "Education and Health", "rate": 3.5}, {"date": "2006-08-01", "series": "Education and Health", "rate": 3.2}, {"date": "2006-09-01", "series": "Education and Health", "rate": 3}, {"date": "2006-10-01", "series": "Education and Health", "rate": 2.8}, {"date": "2006-11-01", "series": "Education and Health", "rate": 2.8}, {"date": "2006-12-01", "series": "Education and Health", "rate": 2.6}, {"date": "2007-01-01", "series": "Education and Health", "rate": 2.9}, {"date": "2007-02-01", "series": "Education and Health", "rate": 2.5}, {"date": "2007-03-01", "series": "Education and Health", "rate": 2.5}, {"date": "2007-04-01", "series": "Education and Health", "rate": 2.9}, {"date": "2007-05-01", "series": "Education and Health", "rate": 3.3}, {"date": "2007-06-01", "series": "Education and Health", "rate": 3.4}, {"date": "2007-07-01", "series": "Education and Health", "rate": 3.5}, {"date": "2007-08-01", "series": "Education and Health", "rate": 3.4}, {"date": "2007-09-01", "series": "Education and Health", "rate": 3.2}, {"date": "2007-10-01", "series": "Education and Health", "rate": 2.7}, {"date": "2007-11-01", "series": "Education and Health", "rate": 2.7}, {"date": "2007-12-01", "series": "Education and Health", "rate": 2.6}, {"date": "2008-01-01", "series": "Education and Health", "rate": 2.9}, {"date": "2008-02-01", "series": "Education and Health", "rate": 2.9}, {"date": "2008-03-01", "series": "Education and Health", "rate": 3.1}, {"date": "2008-04-01", "series": "Education and Health", "rate": 2.8}, {"date": "2008-05-01", "series": "Education and Health", "rate": 3.2}, {"date": "2008-06-01", "series": "Education and Health", "rate": 3.4}, {"date": "2008-07-01", "series": "Education and Health", "rate": 3.9}, {"date": "2008-08-01", "series": "Education and Health", "rate": 4.3}, {"date": "2008-09-01", "series": "Education and Health", "rate": 4.1}, {"date": "2008-10-01", "series": "Education and Health", "rate": 3.9}, {"date": "2008-11-01", "series": "Education and Health", "rate": 3.6}, {"date": "2008-12-01", "series": "Education and Health", "rate": 3.8}, {"date": "2009-01-01", "series": "Education and Health", "rate": 3.8}, {"date": "2009-02-01", "series": "Education and Health", "rate": 4.1}, {"date": "2009-03-01", "series": "Education and Health", "rate": 4.5}, {"date": "2009-04-01", "series": "Education and Health", "rate": 4.6}, {"date": "2009-05-01", "series": "Education and Health", "rate": 4.9}, {"date": "2009-06-01", "series": "Education and Health", "rate": 6.1}, {"date": "2009-07-01", "series": "Education and Health", "rate": 6.1}, {"date": "2009-08-01", "series": "Education and Health", "rate": 6}, {"date": "2009-09-01", "series": "Education and Health", "rate": 6}, {"date": "2009-10-01", "series": "Education and Health", "rate": 6}, {"date": "2009-11-01", "series": "Education and Health", "rate": 5.5}, {"date": "2009-12-01", "series": "Education and Health", "rate": 5.6}, {"date": "2010-01-01", "series": "Education and Health", "rate": 5.5}, {"date": "2010-02-01", "series": "Education and Health", "rate": 5.6}, {"date": "2000-01-01", "series": "Leisure and hospitality", "rate": 7.5}, {"date": "2000-02-01", "series": "Leisure and hospitality", "rate": 7.5}, {"date": "2000-03-01", "series": "Leisure and hospitality", "rate": 7.4}, {"date": "2000-04-01", "series": "Leisure and hospitality", "rate": 6.1}, {"date": "2000-05-01", "series": "Leisure and hospitality", "rate": 6.2}, {"date": "2000-06-01", "series": "Leisure and hospitality", "rate": 7.3}, {"date": "2000-07-01", "series": "Leisure and hospitality", "rate": 6.8}, {"date": "2000-08-01", "series": "Leisure and hospitality", "rate": 6}, {"date": "2000-09-01", "series": "Leisure and hospitality", "rate": 5.9}, {"date": "2000-10-01", "series": "Leisure and hospitality", "rate": 6.5}, {"date": "2000-11-01", "series": "Leisure and hospitality", "rate": 6.5}, {"date": "2000-12-01", "series": "Leisure and hospitality", "rate": 5.9}, {"date": "2001-01-01", "series": "Leisure and hospitality", "rate": 7.7}, {"date": "2001-02-01", "series": "Leisure and hospitality", "rate": 7.5}, {"date": "2001-03-01", "series": "Leisure and hospitality", "rate": 7.4}, {"date": "2001-04-01", "series": "Leisure and hospitality", "rate": 6.8}, {"date": "2001-05-01", "series": "Leisure and hospitality", "rate": 6.7}, {"date": "2001-06-01", "series": "Leisure and hospitality", "rate": 7}, {"date": "2001-07-01", "series": "Leisure and hospitality", "rate": 6.8}, {"date": "2001-08-01", "series": "Leisure and hospitality", "rate": 6.8}, {"date": "2001-09-01", "series": "Leisure and hospitality", "rate": 8}, {"date": "2001-10-01", "series": "Leisure and hospitality", "rate": 8.3}, {"date": "2001-11-01", "series": "Leisure and hospitality", "rate": 8.5}, {"date": "2001-12-01", "series": "Leisure and hospitality", "rate": 8.5}, {"date": "2002-01-01", "series": "Leisure and hospitality", "rate": 8.6}, {"date": "2002-02-01", "series": "Leisure and hospitality", "rate": 8.7}, {"date": "2002-03-01", "series": "Leisure and hospitality", "rate": 8.5}, {"date": "2002-04-01", "series": "Leisure and hospitality", "rate": 8.4}, {"date": "2002-05-01", "series": "Leisure and hospitality", "rate": 8.6}, {"date": "2002-06-01", "series": "Leisure and hospitality", "rate": 8.5}, {"date": "2002-07-01", "series": "Leisure and hospitality", "rate": 8.2}, {"date": "2002-08-01", "series": "Leisure and hospitality", "rate": 7.5}, {"date": "2002-09-01", "series": "Leisure and hospitality", "rate": 7.9}, {"date": "2002-10-01", "series": "Leisure and hospitality", "rate": 8.5}, {"date": "2002-11-01", "series": "Leisure and hospitality", "rate": 8.9}, {"date": "2002-12-01", "series": "Leisure and hospitality", "rate": 8.2}, {"date": "2003-01-01", "series": "Leisure and hospitality", "rate": 9.3}, {"date": "2003-02-01", "series": "Leisure and hospitality", "rate": 10}, {"date": "2003-03-01", "series": "Leisure and hospitality", "rate": 8.9}, {"date": "2003-04-01", "series": "Leisure and hospitality", "rate": 8.5}, {"date": "2003-05-01", "series": "Leisure and hospitality", "rate": 7.9}, {"date": "2003-06-01", "series": "Leisure and hospitality", "rate": 8.6}, {"date": "2003-07-01", "series": "Leisure and hospitality", "rate": 8.4}, {"date": "2003-08-01", "series": "Leisure and hospitality", "rate": 9}, {"date": "2003-09-01", "series": "Leisure and hospitality", "rate": 8.8}, {"date": "2003-10-01", "series": "Leisure and hospitality", "rate": 8.3}, {"date": "2003-11-01", "series": "Leisure and hospitality", "rate": 9}, {"date": "2003-12-01", "series": "Leisure and hospitality", "rate": 8.2}, {"date": "2004-01-01", "series": "Leisure and hospitality", "rate": 10}, {"date": "2004-02-01", "series": "Leisure and hospitality", "rate": 8.9}, {"date": "2004-03-01", "series": "Leisure and hospitality", "rate": 9}, {"date": "2004-04-01", "series": "Leisure and hospitality", "rate": 7.9}, {"date": "2004-05-01", "series": "Leisure and hospitality", "rate": 8.1}, {"date": "2004-06-01", "series": "Leisure and hospitality", "rate": 9.6}, {"date": "2004-07-01", "series": "Leisure and hospitality", "rate": 7.8}, {"date": "2004-08-01", "series": "Leisure and hospitality", "rate": 8.4}, {"date": "2004-09-01", "series": "Leisure and hospitality", "rate": 7.5}, {"date": "2004-10-01", "series": "Leisure and hospitality", "rate": 7.3}, {"date": "2004-11-01", "series": "Leisure and hospitality", "rate": 7.9}, {"date": "2004-12-01", "series": "Leisure and hospitality", "rate": 7.4}, {"date": "2005-01-01", "series": "Leisure and hospitality", "rate": 8.7}, {"date": "2005-02-01", "series": "Leisure and hospitality", "rate": 8.8}, {"date": "2005-03-01", "series": "Leisure and hospitality", "rate": 8.3}, {"date": "2005-04-01", "series": "Leisure and hospitality", "rate": 7.7}, {"date": "2005-05-01", "series": "Leisure and hospitality", "rate": 7.7}, {"date": "2005-06-01", "series": "Leisure and hospitality", "rate": 7.6}, {"date": "2005-07-01", "series": "Leisure and hospitality", "rate": 7.4}, {"date": "2005-08-01", "series": "Leisure and hospitality", "rate": 6.8}, {"date": "2005-09-01", "series": "Leisure and hospitality", "rate": 7.3}, {"date": "2005-10-01", "series": "Leisure and hospitality", "rate": 6.8}, {"date": "2005-11-01", "series": "Leisure and hospitality", "rate": 8.1}, {"date": "2005-12-01", "series": "Leisure and hospitality", "rate": 7.9}, {"date": "2006-01-01", "series": "Leisure and hospitality", "rate": 8.1}, {"date": "2006-02-01", "series": "Leisure and hospitality", "rate": 9.1}, {"date": "2006-03-01", "series": "Leisure and hospitality", "rate": 8}, {"date": "2006-04-01", "series": "Leisure and hospitality", "rate": 7.6}, {"date": "2006-05-01", "series": "Leisure and hospitality", "rate": 7}, {"date": "2006-06-01", "series": "Leisure and hospitality", "rate": 7.4}, {"date": "2006-07-01", "series": "Leisure and hospitality", "rate": 6.8}, {"date": "2006-08-01", "series": "Leisure and hospitality", "rate": 6.9}, {"date": "2006-09-01", "series": "Leisure and hospitality", "rate": 6.9}, {"date": "2006-10-01", "series": "Leisure and hospitality", "rate": 6.6}, {"date": "2006-11-01", "series": "Leisure and hospitality", "rate": 7.1}, {"date": "2006-12-01", "series": "Leisure and hospitality", "rate": 5.9}, {"date": "2007-01-01", "series": "Leisure and hospitality", "rate": 7.8}, {"date": "2007-02-01", "series": "Leisure and hospitality", "rate": 7.4}, {"date": "2007-03-01", "series": "Leisure and hospitality", "rate": 7}, {"date": "2007-04-01", "series": "Leisure and hospitality", "rate": 6.9}, {"date": "2007-05-01", "series": "Leisure and hospitality", "rate": 6.8}, {"date": "2007-06-01", "series": "Leisure and hospitality", "rate": 7.2}, {"date": "2007-07-01", "series": "Leisure and hospitality", "rate": 7.3}, {"date": "2007-08-01", "series": "Leisure and hospitality", "rate": 7.1}, {"date": "2007-09-01", "series": "Leisure and hospitality", "rate": 7.4}, {"date": "2007-10-01", "series": "Leisure and hospitality", "rate": 7.5}, {"date": "2007-11-01", "series": "Leisure and hospitality", "rate": 8.1}, {"date": "2007-12-01", "series": "Leisure and hospitality", "rate": 7.9}, {"date": "2008-01-01", "series": "Leisure and hospitality", "rate": 9.4}, {"date": "2008-02-01", "series": "Leisure and hospitality", "rate": 8.5}, {"date": "2008-03-01", "series": "Leisure and hospitality", "rate": 7.6}, {"date": "2008-04-01", "series": "Leisure and hospitality", "rate": 6.9}, {"date": "2008-05-01", "series": "Leisure and hospitality", "rate": 8.4}, {"date": "2008-06-01", "series": "Leisure and hospitality", "rate": 8.9}, {"date": "2008-07-01", "series": "Leisure and hospitality", "rate": 8.8}, {"date": "2008-08-01", "series": "Leisure and hospitality", "rate": 8.7}, {"date": "2008-09-01", "series": "Leisure and hospitality", "rate": 8.2}, {"date": "2008-10-01", "series": "Leisure and hospitality", "rate": 8.9}, {"date": "2008-11-01", "series": "Leisure and hospitality", "rate": 9.9}, {"date": "2008-12-01", "series": "Leisure and hospitality", "rate": 9.5}, {"date": "2009-01-01", "series": "Leisure and hospitality", "rate": 11.5}, {"date": "2009-02-01", "series": "Leisure and hospitality", "rate": 11.4}, {"date": "2009-03-01", "series": "Leisure and hospitality", "rate": 11.6}, {"date": "2009-04-01", "series": "Leisure and hospitality", "rate": 10.2}, {"date": "2009-05-01", "series": "Leisure and hospitality", "rate": 11.9}, {"date": "2009-06-01", "series": "Leisure and hospitality", "rate": 12.1}, {"date": "2009-07-01", "series": "Leisure and hospitality", "rate": 11.2}, {"date": "2009-08-01", "series": "Leisure and hospitality", "rate": 12}, {"date": "2009-09-01", "series": "Leisure and hospitality", "rate": 11.4}, {"date": "2009-10-01", "series": "Leisure and hospitality", "rate": 12.4}, {"date": "2009-11-01", "series": "Leisure and hospitality", "rate": 11.9}, {"date": "2009-12-01", "series": "Leisure and hospitality", "rate": 12.6}, {"date": "2010-01-01", "series": "Leisure and hospitality", "rate": 14.2}, {"date": "2010-02-01", "series": "Leisure and hospitality", "rate": 12.7}, {"date": "2000-01-01", "series": "Other", "rate": 4.9}, {"date": "2000-02-01", "series": "Other", "rate": 4.1}, {"date": "2000-03-01", "series": "Other", "rate": 4.3}, {"date": "2000-04-01", "series": "Other", "rate": 4.2}, {"date": "2000-05-01", "series": "Other", "rate": 4.5}, {"date": "2000-06-01", "series": "Other", "rate": 3.9}, {"date": "2000-07-01", "series": "Other", "rate": 3.7}, {"date": "2000-08-01", "series": "Other", "rate": 3.5}, {"date": "2000-09-01", "series": "Other", "rate": 4}, {"date": "2000-10-01", "series": "Other", "rate": 2.9}, {"date": "2000-11-01", "series": "Other", "rate": 3.8}, {"date": "2000-12-01", "series": "Other", "rate": 2.9}, {"date": "2001-01-01", "series": "Other", "rate": 3.4}, {"date": "2001-02-01", "series": "Other", "rate": 4.2}, {"date": "2001-03-01", "series": "Other", "rate": 3.4}, {"date": "2001-04-01", "series": "Other", "rate": 3.8}, {"date": "2001-05-01", "series": "Other", "rate": 3.2}, {"date": "2001-06-01", "series": "Other", "rate": 4.6}, {"date": "2001-07-01", "series": "Other", "rate": 4.1}, {"date": "2001-08-01", "series": "Other", "rate": 4.5}, {"date": "2001-09-01", "series": "Other", "rate": 4}, {"date": "2001-10-01", "series": "Other", "rate": 4.1}, {"date": "2001-11-01", "series": "Other", "rate": 4.2}, {"date": "2001-12-01", "series": "Other", "rate": 4.5}, {"date": "2002-01-01", "series": "Other", "rate": 5.1}, {"date": "2002-02-01", "series": "Other", "rate": 5.6}, {"date": "2002-03-01", "series": "Other", "rate": 5.5}, {"date": "2002-04-01", "series": "Other", "rate": 4.6}, {"date": "2002-05-01", "series": "Other", "rate": 4.6}, {"date": "2002-06-01", "series": "Other", "rate": 5.5}, {"date": "2002-07-01", "series": "Other", "rate": 5.8}, {"date": "2002-08-01", "series": "Other", "rate": 6}, {"date": "2002-09-01", "series": "Other", "rate": 4.8}, {"date": "2002-10-01", "series": "Other", "rate": 4.6}, {"date": "2002-11-01", "series": "Other", "rate": 4.9}, {"date": "2002-12-01", "series": "Other", "rate": 4.2}, {"date": "2003-01-01", "series": "Other", "rate": 5.3}, {"date": "2003-02-01", "series": "Other", "rate": 5.7}, {"date": "2003-03-01", "series": "Other", "rate": 6.1}, {"date": "2003-04-01", "series": "Other", "rate": 5.5}, {"date": "2003-05-01", "series": "Other", "rate": 5.7}, {"date": "2003-06-01", "series": "Other", "rate": 5.9}, {"date": "2003-07-01", "series": "Other", "rate": 6.6}, {"date": "2003-08-01", "series": "Other", "rate": 6.1}, {"date": "2003-09-01", "series": "Other", "rate": 5.5}, {"date": "2003-10-01", "series": "Other", "rate": 6.1}, {"date": "2003-11-01", "series": "Other", "rate": 5.8}, {"date": "2003-12-01", "series": "Other", "rate": 4.5}, {"date": "2004-01-01", "series": "Other", "rate": 5.3}, {"date": "2004-02-01", "series": "Other", "rate": 5.9}, {"date": "2004-03-01", "series": "Other", "rate": 5.9}, {"date": "2004-04-01", "series": "Other", "rate": 5.6}, {"date": "2004-05-01", "series": "Other", "rate": 5.1}, {"date": "2004-06-01", "series": "Other", "rate": 5.4}, {"date": "2004-07-01", "series": "Other", "rate": 5.6}, {"date": "2004-08-01", "series": "Other", "rate": 5.6}, {"date": "2004-09-01", "series": "Other", "rate": 4.9}, {"date": "2004-10-01", "series": "Other", "rate": 4.8}, {"date": "2004-11-01", "series": "Other", "rate": 4.8}, {"date": "2004-12-01", "series": "Other", "rate": 4.3}, {"date": "2005-01-01", "series": "Other", "rate": 4.7}, {"date": "2005-02-01", "series": "Other", "rate": 5.3}, {"date": "2005-03-01", "series": "Other", "rate": 5}, {"date": "2005-04-01", "series": "Other", "rate": 4.9}, {"date": "2005-05-01", "series": "Other", "rate": 5}, {"date": "2005-06-01", "series": "Other", "rate": 4.6}, {"date": "2005-07-01", "series": "Other", "rate": 4.2}, {"date": "2005-08-01", "series": "Other", "rate": 4.8}, {"date": "2005-09-01", "series": "Other", "rate": 4.9}, {"date": "2005-10-01", "series": "Other", "rate": 5}, {"date": "2005-11-01", "series": "Other", "rate": 4.9}, {"date": "2005-12-01", "series": "Other", "rate": 4.3}, {"date": "2006-01-01", "series": "Other", "rate": 4.9}, {"date": "2006-02-01", "series": "Other", "rate": 4.4}, {"date": "2006-03-01", "series": "Other", "rate": 4.6}, {"date": "2006-04-01", "series": "Other", "rate": 4.1}, {"date": "2006-05-01", "series": "Other", "rate": 4.2}, {"date": "2006-06-01", "series": "Other", "rate": 4.3}, {"date": "2006-07-01", "series": "Other", "rate": 4.7}, {"date": "2006-08-01", "series": "Other", "rate": 5.3}, {"date": "2006-09-01", "series": "Other", "rate": 5}, {"date": "2006-10-01", "series": "Other", "rate": 4.4}, {"date": "2006-11-01", "series": "Other", "rate": 5}, {"date": "2006-12-01", "series": "Other", "rate": 5.2}, {"date": "2007-01-01", "series": "Other", "rate": 4.7}, {"date": "2007-02-01", "series": "Other", "rate": 4.3}, {"date": "2007-03-01", "series": "Other", "rate": 3.7}, {"date": "2007-04-01", "series": "Other", "rate": 3.6}, {"date": "2007-05-01", "series": "Other", "rate": 3.9}, {"date": "2007-06-01", "series": "Other", "rate": 4}, {"date": "2007-07-01", "series": "Other", "rate": 3.8}, {"date": "2007-08-01", "series": "Other", "rate": 3.8}, {"date": "2007-09-01", "series": "Other", "rate": 4.2}, {"date": "2007-10-01", "series": "Other", "rate": 3}, {"date": "2007-11-01", "series": "Other", "rate": 4.1}, {"date": "2007-12-01", "series": "Other", "rate": 3.9}, {"date": "2008-01-01", "series": "Other", "rate": 4.4}, {"date": "2008-02-01", "series": "Other", "rate": 5.1}, {"date": "2008-03-01", "series": "Other", "rate": 4.6}, {"date": "2008-04-01", "series": "Other", "rate": 4}, {"date": "2008-05-01", "series": "Other", "rate": 4.4}, {"date": "2008-06-01", "series": "Other", "rate": 5}, {"date": "2008-07-01", "series": "Other", "rate": 5.2}, {"date": "2008-08-01", "series": "Other", "rate": 6.3}, {"date": "2008-09-01", "series": "Other", "rate": 5.8}, {"date": "2008-10-01", "series": "Other", "rate": 5.3}, {"date": "2008-11-01", "series": "Other", "rate": 7}, {"date": "2008-12-01", "series": "Other", "rate": 6.1}, {"date": "2009-01-01", "series": "Other", "rate": 7.1}, {"date": "2009-02-01", "series": "Other", "rate": 7.3}, {"date": "2009-03-01", "series": "Other", "rate": 6}, {"date": "2009-04-01", "series": "Other", "rate": 6.4}, {"date": "2009-05-01", "series": "Other", "rate": 7.5}, {"date": "2009-06-01", "series": "Other", "rate": 8.4}, {"date": "2009-07-01", "series": "Other", "rate": 7.4}, {"date": "2009-08-01", "series": "Other", "rate": 8.2}, {"date": "2009-09-01", "series": "Other", "rate": 7.1}, {"date": "2009-10-01", "series": "Other", "rate": 8.5}, {"date": "2009-11-01", "series": "Other", "rate": 8}, {"date": "2009-12-01", "series": "Other", "rate": 8.2}, {"date": "2010-01-01", "series": "Other", "rate": 10}, {"date": "2010-02-01", "series": "Other", "rate": 9.9}, {"date": "2000-01-01", "series": "Agriculture", "rate": 10.3}, {"date": "2000-02-01", "series": "Agriculture", "rate": 11.5}, {"date": "2000-03-01", "series": "Agriculture", "rate": 10.4}, {"date": "2000-04-01", "series": "Agriculture", "rate": 8.9}, {"date": "2000-05-01", "series": "Agriculture", "rate": 5.1}, {"date": "2000-06-01", "series": "Agriculture", "rate": 6.7}, {"date": "2000-07-01", "series": "Agriculture", "rate": 5}, {"date": "2000-08-01", "series": "Agriculture", "rate": 7}, {"date": "2000-09-01", "series": "Agriculture", "rate": 8.2}, {"date": "2000-10-01", "series": "Agriculture", "rate": 8}, {"date": "2000-11-01", "series": "Agriculture", "rate": 13.3}, {"date": "2000-12-01", "series": "Agriculture", "rate": 13.9}, {"date": "2001-01-01", "series": "Agriculture", "rate": 13.8}, {"date": "2001-02-01", "series": "Agriculture", "rate": 15.1}, {"date": "2001-03-01", "series": "Agriculture", "rate": 19.2}, {"date": "2001-04-01", "series": "Agriculture", "rate": 10.4}, {"date": "2001-05-01", "series": "Agriculture", "rate": 7.7}, {"date": "2001-06-01", "series": "Agriculture", "rate": 9.7}, {"date": "2001-07-01", "series": "Agriculture", "rate": 7.6}, {"date": "2001-08-01", "series": "Agriculture", "rate": 9.3}, {"date": "2001-09-01", "series": "Agriculture", "rate": 7.2}, {"date": "2001-10-01", "series": "Agriculture", "rate": 8.7}, {"date": "2001-11-01", "series": "Agriculture", "rate": 11.6}, {"date": "2001-12-01", "series": "Agriculture", "rate": 15.1}, {"date": "2002-01-01", "series": "Agriculture", "rate": 14.8}, {"date": "2002-02-01", "series": "Agriculture", "rate": 14.8}, {"date": "2002-03-01", "series": "Agriculture", "rate": 19.6}, {"date": "2002-04-01", "series": "Agriculture", "rate": 10.8}, {"date": "2002-05-01", "series": "Agriculture", "rate": 6.8}, {"date": "2002-06-01", "series": "Agriculture", "rate": 6.3}, {"date": "2002-07-01", "series": "Agriculture", "rate": 7.3}, {"date": "2002-08-01", "series": "Agriculture", "rate": 9}, {"date": "2002-09-01", "series": "Agriculture", "rate": 6.3}, {"date": "2002-10-01", "series": "Agriculture", "rate": 6.6}, {"date": "2002-11-01", "series": "Agriculture", "rate": 11.1}, {"date": "2002-12-01", "series": "Agriculture", "rate": 9.8}, {"date": "2003-01-01", "series": "Agriculture", "rate": 13.2}, {"date": "2003-02-01", "series": "Agriculture", "rate": 14.7}, {"date": "2003-03-01", "series": "Agriculture", "rate": 12.9}, {"date": "2003-04-01", "series": "Agriculture", "rate": 12}, {"date": "2003-05-01", "series": "Agriculture", "rate": 10.2}, {"date": "2003-06-01", "series": "Agriculture", "rate": 6.9}, {"date": "2003-07-01", "series": "Agriculture", "rate": 8.2}, {"date": "2003-08-01", "series": "Agriculture", "rate": 10.7}, {"date": "2003-09-01", "series": "Agriculture", "rate": 6.2}, {"date": "2003-10-01", "series": "Agriculture", "rate": 8.5}, {"date": "2003-11-01", "series": "Agriculture", "rate": 10.3}, {"date": "2003-12-01", "series": "Agriculture", "rate": 10.9}, {"date": "2004-01-01", "series": "Agriculture", "rate": 15.1}, {"date": "2004-02-01", "series": "Agriculture", "rate": 14.2}, {"date": "2004-03-01", "series": "Agriculture", "rate": 12.7}, {"date": "2004-04-01", "series": "Agriculture", "rate": 8.3}, {"date": "2004-05-01", "series": "Agriculture", "rate": 7.4}, {"date": "2004-06-01", "series": "Agriculture", "rate": 7.6}, {"date": "2004-07-01", "series": "Agriculture", "rate": 10}, {"date": "2004-08-01", "series": "Agriculture", "rate": 7}, {"date": "2004-09-01", "series": "Agriculture", "rate": 6.4}, {"date": "2004-10-01", "series": "Agriculture", "rate": 7.7}, {"date": "2004-11-01", "series": "Agriculture", "rate": 10.5}, {"date": "2004-12-01", "series": "Agriculture", "rate": 14}, {"date": "2005-01-01", "series": "Agriculture", "rate": 13.2}, {"date": "2005-02-01", "series": "Agriculture", "rate": 9.9}, {"date": "2005-03-01", "series": "Agriculture", "rate": 11.8}, {"date": "2005-04-01", "series": "Agriculture", "rate": 6.9}, {"date": "2005-05-01", "series": "Agriculture", "rate": 5.3}, {"date": "2005-06-01", "series": "Agriculture", "rate": 5.2}, {"date": "2005-07-01", "series": "Agriculture", "rate": 4.7}, {"date": "2005-08-01", "series": "Agriculture", "rate": 7.1}, {"date": "2005-09-01", "series": "Agriculture", "rate": 9.5}, {"date": "2005-10-01", "series": "Agriculture", "rate": 6.7}, {"date": "2005-11-01", "series": "Agriculture", "rate": 9.6}, {"date": "2005-12-01", "series": "Agriculture", "rate": 11.1}, {"date": "2006-01-01", "series": "Agriculture", "rate": 11.5}, {"date": "2006-02-01", "series": "Agriculture", "rate": 11.8}, {"date": "2006-03-01", "series": "Agriculture", "rate": 9.8}, {"date": "2006-04-01", "series": "Agriculture", "rate": 6.2}, {"date": "2006-05-01", "series": "Agriculture", "rate": 6}, {"date": "2006-06-01", "series": "Agriculture", "rate": 2.4}, {"date": "2006-07-01", "series": "Agriculture", "rate": 3.6}, {"date": "2006-08-01", "series": "Agriculture", "rate": 5.3}, {"date": "2006-09-01", "series": "Agriculture", "rate": 5.9}, {"date": "2006-10-01", "series": "Agriculture", "rate": 5.8}, {"date": "2006-11-01", "series": "Agriculture", "rate": 9.6}, {"date": "2006-12-01", "series": "Agriculture", "rate": 10.4}, {"date": "2007-01-01", "series": "Agriculture", "rate": 10}, {"date": "2007-02-01", "series": "Agriculture", "rate": 9.6}, {"date": "2007-03-01", "series": "Agriculture", "rate": 9.7}, {"date": "2007-04-01", "series": "Agriculture", "rate": 5.7}, {"date": "2007-05-01", "series": "Agriculture", "rate": 5.1}, {"date": "2007-06-01", "series": "Agriculture", "rate": 4.5}, {"date": "2007-07-01", "series": "Agriculture", "rate": 3.1}, {"date": "2007-08-01", "series": "Agriculture", "rate": 4.7}, {"date": "2007-09-01", "series": "Agriculture", "rate": 4.3}, {"date": "2007-10-01", "series": "Agriculture", "rate": 4}, {"date": "2007-11-01", "series": "Agriculture", "rate": 6.6}, {"date": "2007-12-01", "series": "Agriculture", "rate": 7.5}, {"date": "2008-01-01", "series": "Agriculture", "rate": 9.5}, {"date": "2008-02-01", "series": "Agriculture", "rate": 10.9}, {"date": "2008-03-01", "series": "Agriculture", "rate": 13.2}, {"date": "2008-04-01", "series": "Agriculture", "rate": 8.6}, {"date": "2008-05-01", "series": "Agriculture", "rate": 7.4}, {"date": "2008-06-01", "series": "Agriculture", "rate": 6.1}, {"date": "2008-07-01", "series": "Agriculture", "rate": 8.5}, {"date": "2008-08-01", "series": "Agriculture", "rate": 7.6}, {"date": "2008-09-01", "series": "Agriculture", "rate": 5.8}, {"date": "2008-10-01", "series": "Agriculture", "rate": 7.1}, {"date": "2008-11-01", "series": "Agriculture", "rate": 9.5}, {"date": "2008-12-01", "series": "Agriculture", "rate": 17}, {"date": "2009-01-01", "series": "Agriculture", "rate": 18.7}, {"date": "2009-02-01", "series": "Agriculture", "rate": 18.8}, {"date": "2009-03-01", "series": "Agriculture", "rate": 19}, {"date": "2009-04-01", "series": "Agriculture", "rate": 13.5}, {"date": "2009-05-01", "series": "Agriculture", "rate": 10}, {"date": "2009-06-01", "series": "Agriculture", "rate": 12.3}, {"date": "2009-07-01", "series": "Agriculture", "rate": 12.1}, {"date": "2009-08-01", "series": "Agriculture", "rate": 13.1}, {"date": "2009-09-01", "series": "Agriculture", "rate": 11.1}, {"date": "2009-10-01", "series": "Agriculture", "rate": 11.8}, {"date": "2009-11-01", "series": "Agriculture", "rate": 12.6}, {"date": "2009-12-01", "series": "Agriculture", "rate": 19.7}, {"date": "2010-01-01", "series": "Agriculture", "rate": 21.3}, {"date": "2010-02-01", "series": "Agriculture", "rate": 18.8}, {"date": "2000-01-01", "series": "Self-employed", "rate": 2.3}, {"date": "2000-02-01", "series": "Self-employed", "rate": 2.5}, {"date": "2000-03-01", "series": "Self-employed", "rate": 2}, {"date": "2000-04-01", "series": "Self-employed", "rate": 2}, {"date": "2000-05-01", "series": "Self-employed", "rate": 1.9}, {"date": "2000-06-01", "series": "Self-employed", "rate": 1.8}, {"date": "2000-07-01", "series": "Self-employed", "rate": 2.1}, {"date": "2000-08-01", "series": "Self-employed", "rate": 1.7}, {"date": "2000-09-01", "series": "Self-employed", "rate": 2}, {"date": "2000-10-01", "series": "Self-employed", "rate": 2.2}, {"date": "2000-11-01", "series": "Self-employed", "rate": 2.7}, {"date": "2000-12-01", "series": "Self-employed", "rate": 1.8}, {"date": "2001-01-01", "series": "Self-employed", "rate": 1.9}, {"date": "2001-02-01", "series": "Self-employed", "rate": 2}, {"date": "2001-03-01", "series": "Self-employed", "rate": 1.7}, {"date": "2001-04-01", "series": "Self-employed", "rate": 2.1}, {"date": "2001-05-01", "series": "Self-employed", "rate": 2}, {"date": "2001-06-01", "series": "Self-employed", "rate": 1.7}, {"date": "2001-07-01", "series": "Self-employed", "rate": 1.8}, {"date": "2001-08-01", "series": "Self-employed", "rate": 2.3}, {"date": "2001-09-01", "series": "Self-employed", "rate": 2.4}, {"date": "2001-10-01", "series": "Self-employed", "rate": 2.3}, {"date": "2001-11-01", "series": "Self-employed", "rate": 2.3}, {"date": "2001-12-01", "series": "Self-employed", "rate": 2.5}, {"date": "2002-01-01", "series": "Self-employed", "rate": 2.7}, {"date": "2002-02-01", "series": "Self-employed", "rate": 2.6}, {"date": "2002-03-01", "series": "Self-employed", "rate": 2.2}, {"date": "2002-04-01", "series": "Self-employed", "rate": 2.5}, {"date": "2002-05-01", "series": "Self-employed", "rate": 2.6}, {"date": "2002-06-01", "series": "Self-employed", "rate": 2.4}, {"date": "2002-07-01", "series": "Self-employed", "rate": 2.4}, {"date": "2002-08-01", "series": "Self-employed", "rate": 2.6}, {"date": "2002-09-01", "series": "Self-employed", "rate": 2.5}, {"date": "2002-10-01", "series": "Self-employed", "rate": 2.6}, {"date": "2002-11-01", "series": "Self-employed", "rate": 2.8}, {"date": "2002-12-01", "series": "Self-employed", "rate": 3.1}, {"date": "2003-01-01", "series": "Self-employed", "rate": 3}, {"date": "2003-02-01", "series": "Self-employed", "rate": 3}, {"date": "2003-03-01", "series": "Self-employed", "rate": 2.7}, {"date": "2003-04-01", "series": "Self-employed", "rate": 2.4}, {"date": "2003-05-01", "series": "Self-employed", "rate": 2.6}, {"date": "2003-06-01", "series": "Self-employed", "rate": 2.7}, {"date": "2003-07-01", "series": "Self-employed", "rate": 2.5}, {"date": "2003-08-01", "series": "Self-employed", "rate": 2.7}, {"date": "2003-09-01", "series": "Self-employed", "rate": 2.6}, {"date": "2003-10-01", "series": "Self-employed", "rate": 3.1}, {"date": "2003-11-01", "series": "Self-employed", "rate": 2.8}, {"date": "2003-12-01", "series": "Self-employed", "rate": 2.8}, {"date": "2004-01-01", "series": "Self-employed", "rate": 2.8}, {"date": "2004-02-01", "series": "Self-employed", "rate": 2.5}, {"date": "2004-03-01", "series": "Self-employed", "rate": 2.5}, {"date": "2004-04-01", "series": "Self-employed", "rate": 2.3}, {"date": "2004-05-01", "series": "Self-employed", "rate": 2.7}, {"date": "2004-06-01", "series": "Self-employed", "rate": 2.8}, {"date": "2004-07-01", "series": "Self-employed", "rate": 2.6}, {"date": "2004-08-01", "series": "Self-employed", "rate": 2.9}, {"date": "2004-09-01", "series": "Self-employed", "rate": 3.3}, {"date": "2004-10-01", "series": "Self-employed", "rate": 2.7}, {"date": "2004-11-01", "series": "Self-employed", "rate": 3.2}, {"date": "2004-12-01", "series": "Self-employed", "rate": 3.2}, {"date": "2005-01-01", "series": "Self-employed", "rate": 3.2}, {"date": "2005-02-01", "series": "Self-employed", "rate": 3.4}, {"date": "2005-03-01", "series": "Self-employed", "rate": 2.9}, {"date": "2005-04-01", "series": "Self-employed", "rate": 2.4}, {"date": "2005-05-01", "series": "Self-employed", "rate": 2.7}, {"date": "2005-06-01", "series": "Self-employed", "rate": 2.4}, {"date": "2005-07-01", "series": "Self-employed", "rate": 2.5}, {"date": "2005-08-01", "series": "Self-employed", "rate": 2.3}, {"date": "2005-09-01", "series": "Self-employed", "rate": 2.6}, {"date": "2005-10-01", "series": "Self-employed", "rate": 2.3}, {"date": "2005-11-01", "series": "Self-employed", "rate": 3}, {"date": "2005-12-01", "series": "Self-employed", "rate": 3.1}, {"date": "2006-01-01", "series": "Self-employed", "rate": 3.2}, {"date": "2006-02-01", "series": "Self-employed", "rate": 3.1}, {"date": "2006-03-01", "series": "Self-employed", "rate": 2.8}, {"date": "2006-04-01", "series": "Self-employed", "rate": 3.1}, {"date": "2006-05-01", "series": "Self-employed", "rate": 2.3}, {"date": "2006-06-01", "series": "Self-employed", "rate": 2.2}, {"date": "2006-07-01", "series": "Self-employed", "rate": 2.6}, {"date": "2006-08-01", "series": "Self-employed", "rate": 2.7}, {"date": "2006-09-01", "series": "Self-employed", "rate": 2.7}, {"date": "2006-10-01", "series": "Self-employed", "rate": 2.5}, {"date": "2006-11-01", "series": "Self-employed", "rate": 2.3}, {"date": "2006-12-01", "series": "Self-employed", "rate": 2.6}, {"date": "2007-01-01", "series": "Self-employed", "rate": 3.5}, {"date": "2007-02-01", "series": "Self-employed", "rate": 2.8}, {"date": "2007-03-01", "series": "Self-employed", "rate": 2.8}, {"date": "2007-04-01", "series": "Self-employed", "rate": 2.2}, {"date": "2007-05-01", "series": "Self-employed", "rate": 2.5}, {"date": "2007-06-01", "series": "Self-employed", "rate": 2.3}, {"date": "2007-07-01", "series": "Self-employed", "rate": 2.9}, {"date": "2007-08-01", "series": "Self-employed", "rate": 2.9}, {"date": "2007-09-01", "series": "Self-employed", "rate": 2.8}, {"date": "2007-10-01", "series": "Self-employed", "rate": 3.1}, {"date": "2007-11-01", "series": "Self-employed", "rate": 3.2}, {"date": "2007-12-01", "series": "Self-employed", "rate": 3.2}, {"date": "2008-01-01", "series": "Self-employed", "rate": 3.3}, {"date": "2008-02-01", "series": "Self-employed", "rate": 3.2}, {"date": "2008-03-01", "series": "Self-employed", "rate": 3.3}, {"date": "2008-04-01", "series": "Self-employed", "rate": 3.2}, {"date": "2008-05-01", "series": "Self-employed", "rate": 3.4}, {"date": "2008-06-01", "series": "Self-employed", "rate": 3.3}, {"date": "2008-07-01", "series": "Self-employed", "rate": 3.1}, {"date": "2008-08-01", "series": "Self-employed", "rate": 3.5}, {"date": "2008-09-01", "series": "Self-employed", "rate": 3.9}, {"date": "2008-10-01", "series": "Self-employed", "rate": 3.9}, {"date": "2008-11-01", "series": "Self-employed", "rate": 4.1}, {"date": "2008-12-01", "series": "Self-employed", "rate": 5.5}, {"date": "2009-01-01", "series": "Self-employed", "rate": 6.5}, {"date": "2009-02-01", "series": "Self-employed", "rate": 5.7}, {"date": "2009-03-01", "series": "Self-employed", "rate": 5.9}, {"date": "2009-04-01", "series": "Self-employed", "rate": 4.6}, {"date": "2009-05-01", "series": "Self-employed", "rate": 5}, {"date": "2009-06-01", "series": "Self-employed", "rate": 4.4}, {"date": "2009-07-01", "series": "Self-employed", "rate": 5.2}, {"date": "2009-08-01", "series": "Self-employed", "rate": 5.3}, {"date": "2009-09-01", "series": "Self-employed", "rate": 5.9}, {"date": "2009-10-01", "series": "Self-employed", "rate": 5.9}, {"date": "2009-11-01", "series": "Self-employed", "rate": 5.7}, {"date": "2009-12-01", "series": "Self-employed", "rate": 5.9}, {"date": "2010-01-01", "series": "Self-employed", "rate": 7.2}, {"date": "2010-02-01", "series": "Self-employed", "rate": 6.5}], "metadata": {"date": {"type": "date", "semanticType": "YearMonth"}, "series": {"type": "string", "semanticType": "String"}, "rate": {"type": "number", "semanticType": "Percentage"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n", "source": ["unemployment-across-industries"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nCompare **unemployment trends** across all industries from 2000-2010"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to compare unemployment trends across all industries from 2000-2010 to understand how different sectors were affected over time.\",\n \"display_instruction\": \"Compare **unemployment rates** across **industries** over time\",\n \"recommendation\": \"A line chart with time on x-axis and unemployment rate on y-axis, with different colored lines for each industry series, will effectively show the trends and allow comparison of how unemployment evolved across different sectors during this period.\",\n \"output_fields\": [\"date\", \"series\", \"rate\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n```"}], "trigger": {"tableId": "unemployment-across-industries", "resultTableId": "table-544555", "chart": {"id": "chart-1760745546913", "chartType": "Auto", "encodingMap": {}, "tableRef": "unemployment-across-industries", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "Compare **unemployment trends** across all industries from 2000-2010", "displayContent": "Compare **unemployment rates** across **industries** over time"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Convert the **date** field from timestamp format to a standardized string format (`YYYY-MM-DD`) for cleaner visualization\n- Select and retain only three key fields: **date**, **series** (industry name), and **rate** (unemployment rate percentage)\n- Return a simplified dataset focused on tracking unemployment rates across different industries over time", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Convert the **date** field from timestamp format to a standardized string format (`YYYY-MM-DD`) for cleaner visualization\n- Select and retain only three key fields: **date**, **series** (industry name), and **rate** (unemployment rate percentage)\n- Return a simplified dataset focused on tracking unemployment rates across different industries over time\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-540763", "displayId": "unemployment-rate", "names": ["avg_rate", "month", "month_name", "series"], "rows": [{"avg_rate": 13.7636363636, "month": 1, "month_name": "Jan", "series": "Agriculture"}, {"avg_rate": 13.6454545455, "month": 2, "month_name": "Feb", "series": "Agriculture"}, {"avg_rate": 13.83, "month": 3, "month_name": "Mar", "series": "Agriculture"}, {"avg_rate": 9.13, "month": 4, "month_name": "Apr", "series": "Agriculture"}, {"avg_rate": 7.1, "month": 5, "month_name": "May", "series": "Agriculture"}, {"avg_rate": 6.77, "month": 6, "month_name": "Jun", "series": "Agriculture"}, {"avg_rate": 7.01, "month": 7, "month_name": "Jul", "series": "Agriculture"}, {"avg_rate": 8.08, "month": 8, "month_name": "Aug", "series": "Agriculture"}, {"avg_rate": 7.09, "month": 9, "month_name": "Sep", "series": "Agriculture"}, {"avg_rate": 7.49, "month": 10, "month_name": "Oct", "series": "Agriculture"}, {"avg_rate": 10.47, "month": 11, "month_name": "Nov", "series": "Agriculture"}, {"avg_rate": 12.94, "month": 12, "month_name": "Dec", "series": "Agriculture"}, {"avg_rate": 7.8636363636, "month": 1, "month_name": "Jan", "series": "Business services"}, {"avg_rate": 7.6454545455, "month": 2, "month_name": "Feb", "series": "Business services"}, {"avg_rate": 7.13, "month": 3, "month_name": "Mar", "series": "Business services"}, {"avg_rate": 6.27, "month": 4, "month_name": "Apr", "series": "Business services"}, {"avg_rate": 6.6, "month": 5, "month_name": "May", "series": "Business services"}, {"avg_rate": 6.72, "month": 6, "month_name": "Jun", "series": "Business services"}, {"avg_rate": 6.74, "month": 7, "month_name": "Jul", "series": "Business services"}, {"avg_rate": 6.57, "month": 8, "month_name": "Aug", "series": "Business services"}, {"avg_rate": 6.79, "month": 9, "month_name": "Sep", "series": "Business services"}, {"avg_rate": 6.71, "month": 10, "month_name": "Oct", "series": "Business services"}, {"avg_rate": 6.75, "month": 11, "month_name": "Nov", "series": "Business services"}, {"avg_rate": 7.08, "month": 12, "month_name": "Dec", "series": "Business services"}, {"avg_rate": 12.9090909091, "month": 1, "month_name": "Jan", "series": "Construction"}, {"avg_rate": 13.6, "month": 2, "month_name": "Feb", "series": "Construction"}, {"avg_rate": 11.29, "month": 3, "month_name": "Mar", "series": "Construction"}, {"avg_rate": 9.45, "month": 4, "month_name": "Apr", "series": "Construction"}, {"avg_rate": 8.12, "month": 5, "month_name": "May", "series": "Construction"}, {"avg_rate": 7.43, "month": 6, "month_name": "Jun", "series": "Construction"}, {"avg_rate": 7.35, "month": 7, "month_name": "Jul", "series": "Construction"}, {"avg_rate": 7.3, "month": 8, "month_name": "Aug", "series": "Construction"}, {"avg_rate": 7.56, "month": 9, "month_name": "Sep", "series": "Construction"}, {"avg_rate": 7.84, "month": 10, "month_name": "Oct", "series": "Construction"}, {"avg_rate": 8.7, "month": 11, "month_name": "Nov", "series": "Construction"}, {"avg_rate": 10.8, "month": 12, "month_name": "Dec", "series": "Construction"}, {"avg_rate": 3.3636363636, "month": 1, "month_name": "Jan", "series": "Education and Health"}, {"avg_rate": 3.2909090909, "month": 2, "month_name": "Feb", "series": "Education and Health"}, {"avg_rate": 3.11, "month": 3, "month_name": "Mar", "series": "Education and Health"}, {"avg_rate": 3.04, "month": 4, "month_name": "Apr", "series": "Education and Health"}, {"avg_rate": 3.29, "month": 5, "month_name": "May", "series": "Education and Health"}, {"avg_rate": 3.82, "month": 6, "month_name": "Jun", "series": "Education and Health"}, {"avg_rate": 3.87, "month": 7, "month_name": "Jul", "series": "Education and Health"}, {"avg_rate": 3.89, "month": 8, "month_name": "Aug", "series": "Education and Health"}, {"avg_rate": 3.54, "month": 9, "month_name": "Sep", "series": "Education and Health"}, {"avg_rate": 3.33, "month": 10, "month_name": "Oct", "series": "Education and Health"}, {"avg_rate": 3.33, "month": 11, "month_name": "Nov", "series": "Education and Health"}, {"avg_rate": 3.19, "month": 12, "month_name": "Dec", "series": "Education and Health"}, {"avg_rate": 3.5727272727, "month": 1, "month_name": "Jan", "series": "Finance"}, {"avg_rate": 3.8909090909, "month": 2, "month_name": "Feb", "series": "Finance"}, {"avg_rate": 3.45, "month": 3, "month_name": "Mar", "series": "Finance"}, {"avg_rate": 3.28, "month": 4, "month_name": "Apr", "series": "Finance"}, {"avg_rate": 3.35, "month": 5, "month_name": "May", "series": "Finance"}, {"avg_rate": 3.54, "month": 6, "month_name": "Jun", "series": "Finance"}, {"avg_rate": 3.52, "month": 7, "month_name": "Jul", "series": "Finance"}, {"avg_rate": 3.61, "month": 8, "month_name": "Aug", "series": "Finance"}, {"avg_rate": 3.54, "month": 9, "month_name": "Sep", "series": "Finance"}, {"avg_rate": 3.6, "month": 10, "month_name": "Oct", "series": "Finance"}, {"avg_rate": 3.55, "month": 11, "month_name": "Nov", "series": "Finance"}, {"avg_rate": 3.54, "month": 12, "month_name": "Dec", "series": "Finance"}, {"avg_rate": 2.6, "month": 1, "month_name": "Jan", "series": "Government"}, {"avg_rate": 2.3272727273, "month": 2, "month_name": "Feb", "series": "Government"}, {"avg_rate": 2.19, "month": 3, "month_name": "Mar", "series": "Government"}, {"avg_rate": 2.02, "month": 4, "month_name": "Apr", "series": "Government"}, {"avg_rate": 2.2, "month": 5, "month_name": "May", "series": "Government"}, {"avg_rate": 3.1, "month": 6, "month_name": "Jun", "series": "Government"}, {"avg_rate": 3.49, "month": 7, "month_name": "Jul", "series": "Government"}, {"avg_rate": 3.36, "month": 8, "month_name": "Aug", "series": "Government"}, {"avg_rate": 2.61, "month": 9, "month_name": "Sep", "series": "Government"}, {"avg_rate": 2.45, "month": 10, "month_name": "Oct", "series": "Government"}, {"avg_rate": 2.37, "month": 11, "month_name": "Nov", "series": "Government"}, {"avg_rate": 2.28, "month": 12, "month_name": "Dec", "series": "Government"}, {"avg_rate": 5.7727272727, "month": 1, "month_name": "Jan", "series": "Information"}, {"avg_rate": 5.9, "month": 2, "month_name": "Feb", "series": "Information"}, {"avg_rate": 5.36, "month": 3, "month_name": "Mar", "series": "Information"}, {"avg_rate": 5.23, "month": 4, "month_name": "Apr", "series": "Information"}, {"avg_rate": 5.48, "month": 5, "month_name": "May", "series": "Information"}, {"avg_rate": 5.26, "month": 6, "month_name": "Jun", "series": "Information"}, {"avg_rate": 5.32, "month": 7, "month_name": "Jul", "series": "Information"}, {"avg_rate": 5.55, "month": 8, "month_name": "Aug", "series": "Information"}, {"avg_rate": 5.73, "month": 9, "month_name": "Sep", "series": "Information"}, {"avg_rate": 5.05, "month": 10, "month_name": "Oct", "series": "Information"}, {"avg_rate": 5.47, "month": 11, "month_name": "Nov", "series": "Information"}, {"avg_rate": 5.65, "month": 12, "month_name": "Dec", "series": "Information"}, {"avg_rate": 9.3454545455, "month": 1, "month_name": "Jan", "series": "Leisure and hospitality"}, {"avg_rate": 9.1363636364, "month": 2, "month_name": "Feb", "series": "Leisure and hospitality"}, {"avg_rate": 8.37, "month": 3, "month_name": "Mar", "series": "Leisure and hospitality"}, {"avg_rate": 7.7, "month": 4, "month_name": "Apr", "series": "Leisure and hospitality"}, {"avg_rate": 7.93, "month": 5, "month_name": "May", "series": "Leisure and hospitality"}, {"avg_rate": 8.42, "month": 6, "month_name": "Jun", "series": "Leisure and hospitality"}, {"avg_rate": 7.95, "month": 7, "month_name": "Jul", "series": "Leisure and hospitality"}, {"avg_rate": 7.92, "month": 8, "month_name": "Aug", "series": "Leisure and hospitality"}, {"avg_rate": 7.93, "month": 9, "month_name": "Sep", "series": "Leisure and hospitality"}, {"avg_rate": 8.11, "month": 10, "month_name": "Oct", "series": "Leisure and hospitality"}, {"avg_rate": 8.59, "month": 11, "month_name": "Nov", "series": "Leisure and hospitality"}, {"avg_rate": 8.2, "month": 12, "month_name": "Dec", "series": "Leisure and hospitality"}, {"avg_rate": 6.6090909091, "month": 1, "month_name": "Jan", "series": "Manufacturing"}, {"avg_rate": 6.5, "month": 2, "month_name": "Feb", "series": "Manufacturing"}, {"avg_rate": 6, "month": 3, "month_name": "Mar", "series": "Manufacturing"}, {"avg_rate": 5.89, "month": 4, "month_name": "Apr", "series": "Manufacturing"}, {"avg_rate": 5.72, "month": 5, "month_name": "May", "series": "Manufacturing"}, {"avg_rate": 5.73, "month": 6, "month_name": "Jun", "series": "Manufacturing"}, {"avg_rate": 6, "month": 7, "month_name": "Jul", "series": "Manufacturing"}, {"avg_rate": 5.66, "month": 8, "month_name": "Aug", "series": "Manufacturing"}, {"avg_rate": 5.72, "month": 9, "month_name": "Sep", "series": "Manufacturing"}, {"avg_rate": 5.78, "month": 10, "month_name": "Oct", "series": "Manufacturing"}, {"avg_rate": 6.02, "month": 11, "month_name": "Nov", "series": "Manufacturing"}, {"avg_rate": 6.05, "month": 12, "month_name": "Dec", "series": "Manufacturing"}, {"avg_rate": 5.6, "month": 1, "month_name": "Jan", "series": "Mining and Extraction"}, {"avg_rate": 5.7454545455, "month": 2, "month_name": "Feb", "series": "Mining and Extraction"}, {"avg_rate": 5.14, "month": 3, "month_name": "Mar", "series": "Mining and Extraction"}, {"avg_rate": 5.64, "month": 4, "month_name": "Apr", "series": "Mining and Extraction"}, {"avg_rate": 5.28, "month": 5, "month_name": "May", "series": "Mining and Extraction"}, {"avg_rate": 5.57, "month": 6, "month_name": "Jun", "series": "Mining and Extraction"}, {"avg_rate": 4.95, "month": 7, "month_name": "Jul", "series": "Mining and Extraction"}, {"avg_rate": 4.5, "month": 8, "month_name": "Aug", "series": "Mining and Extraction"}, {"avg_rate": 4.48, "month": 9, "month_name": "Sep", "series": "Mining and Extraction"}, {"avg_rate": 4.41, "month": 10, "month_name": "Oct", "series": "Mining and Extraction"}, {"avg_rate": 4.4, "month": 11, "month_name": "Nov", "series": "Mining and Extraction"}, {"avg_rate": 5.23, "month": 12, "month_name": "Dec", "series": "Mining and Extraction"}, {"avg_rate": 5.4363636364, "month": 1, "month_name": "Jan", "series": "Other"}, {"avg_rate": 5.6181818182, "month": 2, "month_name": "Feb", "series": "Other"}, {"avg_rate": 4.91, "month": 3, "month_name": "Mar", "series": "Other"}, {"avg_rate": 4.67, "month": 4, "month_name": "Apr", "series": "Other"}, {"avg_rate": 4.81, "month": 5, "month_name": "May", "series": "Other"}, {"avg_rate": 5.16, "month": 6, "month_name": "Jun", "series": "Other"}, {"avg_rate": 5.11, "month": 7, "month_name": "Jul", "series": "Other"}, {"avg_rate": 5.41, "month": 8, "month_name": "Aug", "series": "Other"}, {"avg_rate": 5.02, "month": 9, "month_name": "Sep", "series": "Other"}, {"avg_rate": 4.87, "month": 10, "month_name": "Oct", "series": "Other"}, {"avg_rate": 5.25, "month": 11, "month_name": "Nov", "series": "Other"}, {"avg_rate": 4.81, "month": 12, "month_name": "Dec", "series": "Other"}, {"avg_rate": 3.6, "month": 1, "month_name": "Jan", "series": "Self-employed"}, {"avg_rate": 3.3909090909, "month": 2, "month_name": "Feb", "series": "Self-employed"}, {"avg_rate": 2.88, "month": 3, "month_name": "Mar", "series": "Self-employed"}, {"avg_rate": 2.68, "month": 4, "month_name": "Apr", "series": "Self-employed"}, {"avg_rate": 2.77, "month": 5, "month_name": "May", "series": "Self-employed"}, {"avg_rate": 2.6, "month": 6, "month_name": "Jun", "series": "Self-employed"}, {"avg_rate": 2.77, "month": 7, "month_name": "Jul", "series": "Self-employed"}, {"avg_rate": 2.89, "month": 8, "month_name": "Aug", "series": "Self-employed"}, {"avg_rate": 3.07, "month": 9, "month_name": "Sep", "series": "Self-employed"}, {"avg_rate": 3.06, "month": 10, "month_name": "Oct", "series": "Self-employed"}, {"avg_rate": 3.21, "month": 11, "month_name": "Nov", "series": "Self-employed"}, {"avg_rate": 3.37, "month": 12, "month_name": "Dec", "series": "Self-employed"}, {"avg_rate": 5.7909090909, "month": 1, "month_name": "Jan", "series": "Transportation and Utilities"}, {"avg_rate": 5.6181818182, "month": 2, "month_name": "Feb", "series": "Transportation and Utilities"}, {"avg_rate": 5.1, "month": 3, "month_name": "Mar", "series": "Transportation and Utilities"}, {"avg_rate": 4.79, "month": 4, "month_name": "Apr", "series": "Transportation and Utilities"}, {"avg_rate": 4.5, "month": 5, "month_name": "May", "series": "Transportation and Utilities"}, {"avg_rate": 4.82, "month": 6, "month_name": "Jun", "series": "Transportation and Utilities"}, {"avg_rate": 5.04, "month": 7, "month_name": "Jul", "series": "Transportation and Utilities"}, {"avg_rate": 4.58, "month": 8, "month_name": "Aug", "series": "Transportation and Utilities"}, {"avg_rate": 4.65, "month": 9, "month_name": "Sep", "series": "Transportation and Utilities"}, {"avg_rate": 4.8, "month": 10, "month_name": "Oct", "series": "Transportation and Utilities"}, {"avg_rate": 4.58, "month": 11, "month_name": "Nov", "series": "Transportation and Utilities"}, {"avg_rate": 4.8, "month": 12, "month_name": "Dec", "series": "Transportation and Utilities"}, {"avg_rate": 6.4818181818, "month": 1, "month_name": "Jan", "series": "Wholesale and Retail Trade"}, {"avg_rate": 6.3727272727, "month": 2, "month_name": "Feb", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.86, "month": 3, "month_name": "Mar", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.46, "month": 4, "month_name": "Apr", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.49, "month": 5, "month_name": "May", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.84, "month": 6, "month_name": "Jun", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.75, "month": 7, "month_name": "Jul", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.61, "month": 8, "month_name": "Aug", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.63, "month": 9, "month_name": "Sep", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.56, "month": 10, "month_name": "Oct", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.52, "month": 11, "month_name": "Nov", "series": "Wholesale and Retail Trade"}, {"avg_rate": 5.49, "month": 12, "month_name": "Dec", "series": "Wholesale and Retail Trade"}], "metadata": {"avg_rate": {"type": "number", "semanticType": "Percentage"}, "month": {"type": "number", "semanticType": "Month"}, "month_name": {"type": "string", "semanticType": "Month", "levels": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]}, "series": {"type": "string", "semanticType": "String"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series (industry)\n transformed_df = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Add month name for better readability\n month_names = {\n 1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun',\n 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'\n }\n transformed_df['month_name'] = transformed_df['month'].map(month_names)\n \n return transformed_df\n", "source": ["unemployment-across-industries"], "dialog": [{"content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nHow does **seasonal variation** in unemployment differ across **industries**?", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Analyze how seasonal variation in unemployment differs across industries by examining the cyclical patterns in unemployment rates throughout the year for different industry sectors.\",\n \"display_instruction\": \"Compare seasonal unemployment patterns across **industries**\",\n \"recommendation\": \"To visualize seasonal variation across industries, we should calculate average unemployment rates by month for each industry series. This will reveal the typical seasonal patterns and allow comparison of how different industries experience seasonal fluctuations in unemployment throughout the year.\",\n \"output_fields\": [\"series\", \"month\", \"avg_rate\", \"month_name\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"month\",\n \"y\": \"avg_rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series (industry)\n transformed_df = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Add month name for better readability\n month_names = {\n 1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun',\n 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'\n }\n transformed_df['month_name'] = transformed_df['month'].map(month_names)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "unemployment-across-industries", "resultTableId": "table-540763", "chart": {"id": "chart-1760745541760", "chartType": "Auto", "encodingMap": {}, "tableRef": "unemployment-across-industries", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "How does **seasonal variation** in unemployment differ across **industries**?", "displayContent": "Compare seasonal unemployment patterns across **industries**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Group the unemployment data by **series** (industry) and **month**\n- Calculate the **mean** of the **rate** field for each industry-month combination, creating a new field **avg_rate**\n- Map numeric **month** values (1-12) to their abbreviated names (**Jan**, **Feb**, **Mar**, etc.) and store in **month_name** field for improved readability\n- Return the aggregated dataset containing average unemployment rates per industry per month across all years in the data", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series (industry)\n transformed_df = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Add month name for better readability\n month_names = {\n 1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun',\n 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'\n }\n transformed_df['month_name'] = transformed_df['month'].map(month_names)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Group the unemployment data by **series** (industry) and **month**\n- Calculate the **mean** of the **rate** field for each industry-month combination, creating a new field **avg_rate**\n- Map numeric **month** values (1-12) to their abbreviated names (**Jan**, **Feb**, **Mar**, etc.) and store in **month_name** field for improved readability\n- Return the aggregated dataset containing average unemployment rates per industry per month across all years in the data\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-552276", "displayId": "unemp-by-sector", "names": ["series", "rate_2008", "rate_2009", "rate_increase"], "rows": [{"series": "Mining and Extraction", "rate_2008": 3.0833333333, "rate_2009": 11.6583333333, "rate_increase": 8.575}, {"series": "Construction", "rate_2008": 10.6, "rate_2009": 19.05, "rate_increase": 8.45}, {"series": "Manufacturing", "rate_2008": 5.7583333333, "rate_2009": 12.075, "rate_increase": 6.3166666667}, {"series": "Agriculture", "rate_2008": 9.2666666667, "rate_2009": 14.3916666667, "rate_increase": 5.125}, {"series": "Business services", "rate_2008": 6.5583333333, "rate_2009": 10.8, "rate_increase": 4.2416666667}, {"series": "Information", "rate_2008": 5.0166666667, "rate_2009": 9.225, "rate_increase": 4.2083333333}, {"series": "Transportation and Utilities", "rate_2008": 5.1333333333, "rate_2009": 8.8833333333, "rate_increase": 3.75}, {"series": "Wholesale and Retail Trade", "rate_2008": 5.8416666667, "rate_2009": 9.0333333333, "rate_increase": 3.1916666667}, {"series": "Leisure and hospitality", "rate_2008": 8.6416666667, "rate_2009": 11.6833333333, "rate_increase": 3.0416666667}, {"series": "Finance", "rate_2008": 3.95, "rate_2009": 6.4, "rate_increase": 2.45}, {"series": "Other", "rate_2008": 5.2666666667, "rate_2009": 7.5083333333, "rate_increase": 2.2416666667}, {"series": "Self-employed", "rate_2008": 3.6416666667, "rate_2009": 5.5, "rate_increase": 1.8583333333}, {"series": "Education and Health", "rate_2008": 3.4916666667, "rate_2009": 5.2666666667, "rate_increase": 1.775}, {"series": "Government", "rate_2008": 2.4416666667, "rate_2009": 3.6166666667, "rate_increase": 1.175}], "metadata": {"series": {"type": "string", "semanticType": "String"}, "rate_2008": {"type": "number", "semanticType": "Percentage"}, "rate_2009": {"type": "number", "semanticType": "Percentage"}, "rate_increase": {"type": "number", "semanticType": "Percentage"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter data for years 2008 and 2009\n df_2008_2009 = df_unemployment[df_unemployment['year'].isin([2008, 2009])].copy()\n \n # Calculate average rate for each industry in 2008 and 2009\n df_2008 = df_2008_2009[df_2008_2009['year'] == 2008].groupby('series')['rate'].mean().reset_index()\n df_2008.columns = ['series', 'rate_2008']\n \n df_2009 = df_2008_2009[df_2008_2009['year'] == 2009].groupby('series')['rate'].mean().reset_index()\n df_2009.columns = ['series', 'rate_2009']\n \n # Merge and calculate the increase\n transformed_df = df_2008.merge(df_2009, on='series')\n transformed_df['rate_increase'] = transformed_df['rate_2009'] - transformed_df['rate_2008']\n \n # Sort by rate increase in descending order\n transformed_df = transformed_df.sort_values('rate_increase', ascending=False).reset_index(drop=True)\n \n return transformed_df\n", "source": ["unemployment-across-industries"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nCompare **unemployment trends** across all industries from 2000-2010"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to compare unemployment trends across all industries from 2000-2010 to understand how different sectors were affected over time.\",\n \"display_instruction\": \"Compare **unemployment rates** across **industries** over time\",\n \"recommendation\": \"A line chart with time on x-axis and unemployment rate on y-axis, with different colored lines for each industry series, will effectively show the trends and allow comparison of how unemployment evolved across different sectors during this period.\",\n \"output_fields\": [\"date\", \"series\", \"rate\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date series rate\n0 2000-01-01 Government 2.1\n1 2000-02-01 Government 2.0\n2 2000-03-01 Government 1.5\n3 2000-04-01 Government 1.3\n4 2000-05-01 Government 1.9\n5 2000-06-01 Government 3.1\n6 2000-07-01 Government 2.9\n7 2000-08-01 Government 3.1\n8 2000-09-01 Government 2.1\n9 2000-10-01 Government 2.0\n......\n\nUpdate the code above based on the following instruction:\n\nWhich industries showed the **sharpest increases** in unemployment during **2008-2009**?"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to identify which industries experienced the sharpest increases in unemployment rates during the 2008-2009 financial crisis period by calculating the change in unemployment rate for each industry.\",\n \"display_instruction\": \"Identify industries with **sharpest unemployment rate increases** during **2008-2009**\",\n \"recommendation\": \"A bar chart showing the change in unemployment rate from 2008 to 2009 for each industry will clearly visualize which sectors were hit hardest during the financial crisis. The industries should be sorted by the magnitude of increase to make comparison easier.\",\n \"output_fields\": [\"series\", \"rate_2008\", \"rate_2009\", \"rate_increase\"],\n \"chart_type\": \"bar\",\n \"chart_encodings\": {\n \"x\": \"series\",\n \"y\": \"rate_increase\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter data for years 2008 and 2009\n df_2008_2009 = df_unemployment[df_unemployment['year'].isin([2008, 2009])].copy()\n \n # Calculate average rate for each industry in 2008 and 2009\n df_2008 = df_2008_2009[df_2008_2009['year'] == 2008].groupby('series')['rate'].mean().reset_index()\n df_2008.columns = ['series', 'rate_2008']\n \n df_2009 = df_2008_2009[df_2008_2009['year'] == 2009].groupby('series')['rate'].mean().reset_index()\n df_2009.columns = ['series', 'rate_2009']\n \n # Merge and calculate the increase\n transformed_df = df_2008.merge(df_2009, on='series')\n transformed_df['rate_increase'] = transformed_df['rate_2009'] - transformed_df['rate_2008']\n \n # Sort by rate increase in descending order\n transformed_df = transformed_df.sort_values('rate_increase', ascending=False).reset_index(drop=True)\n \n return transformed_df\n```"}], "trigger": {"tableId": "table-544555", "resultTableId": "table-552276", "chart": {"id": "chart-1760745556114", "chartType": "Auto", "encodingMap": {}, "tableRef": "unemployment-across-industries", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "Which industries showed the **sharpest increases** in unemployment during **2008-2009**?", "displayContent": "Identify industries with **sharpest unemployment rate increases** during **2008-2009**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Convert the **date** field to datetime format for proper date handling\n- Filter the dataset to include only records from **2008** and **2009**\n- Calculate the **average unemployment rate** for each **industry (series)** in **2008**\n- Calculate the **average unemployment rate** for each **industry (series)** in **2009**\n- Merge the two yearly averages and compute the **rate increase** from 2008 to 2009\n- Sort industries by **rate_increase** in descending order to identify which industries experienced the largest growth in unemployment", "concepts": [{"explanation": "The difference in average unemployment rate between 2009 and 2008 for each industry, calculated as \\( \\text{rate\\_increase} = \\text{rate\\_2009} - \\text{rate\\_2008} \\). This metric indicates how much unemployment worsened (positive values) or improved (negative values) during the financial crisis period.", "field": "rate_increase"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter data for years 2008 and 2009\n df_2008_2009 = df_unemployment[df_unemployment['year'].isin([2008, 2009])].copy()\n \n # Calculate average rate for each industry in 2008 and 2009\n df_2008 = df_2008_2009[df_2008_2009['year'] == 2008].groupby('series')['rate'].mean().reset_index()\n df_2008.columns = ['series', 'rate_2008']\n \n df_2009 = df_2008_2009[df_2008_2009['year'] == 2009].groupby('series')['rate'].mean().reset_index()\n df_2009.columns = ['series', 'rate_2009']\n \n # Merge and calculate the increase\n transformed_df = df_2008.merge(df_2009, on='series')\n transformed_df['rate_increase'] = transformed_df['rate_2009'] - transformed_df['rate_2008']\n \n # Sort by rate increase in descending order\n transformed_df = transformed_df.sort_values('rate_increase', ascending=False).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Convert the **date** field to datetime format for proper date handling\n- Filter the dataset to include only records from **2008** and **2009**\n- Calculate the **average unemployment rate** for each **industry (series)** in **2008**\n- Calculate the **average unemployment rate** for each **industry (series)** in **2009**\n- Merge the two yearly averages and compute the **rate increase** from 2008 to 2009\n- Sort industries by **rate_increase** in descending order to identify which industries experienced the largest growth in unemployment\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"rate_increase\",\n \"explanation\": \"The difference in average unemployment rate between 2009 and 2008 for each industry, calculated as \\\\( \\\\text{rate\\\\_increase} = \\\\text{rate\\\\_2009} - \\\\text{rate\\\\_2008} \\\\). This metric indicates how much unemployment worsened (positive values) or improved (negative values) during the financial crisis period.\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-570117", "displayId": "unemp-rate-ind1", "names": ["date", "series", "rate"], "rows": [{"date": "2008-01-01", "series": "Construction", "rate": 11}, {"date": "2008-02-01", "series": "Construction", "rate": 11.4}, {"date": "2008-03-01", "series": "Construction", "rate": 12}, {"date": "2008-04-01", "series": "Construction", "rate": 11.1}, {"date": "2008-05-01", "series": "Construction", "rate": 8.6}, {"date": "2008-06-01", "series": "Construction", "rate": 8.2}, {"date": "2008-07-01", "series": "Construction", "rate": 8}, {"date": "2008-08-01", "series": "Construction", "rate": 8.2}, {"date": "2008-09-01", "series": "Construction", "rate": 9.9}, {"date": "2008-10-01", "series": "Construction", "rate": 10.8}, {"date": "2008-11-01", "series": "Construction", "rate": 12.7}, {"date": "2008-12-01", "series": "Construction", "rate": 15.3}, {"date": "2009-01-01", "series": "Construction", "rate": 18.2}, {"date": "2009-02-01", "series": "Construction", "rate": 21.4}, {"date": "2009-03-01", "series": "Construction", "rate": 21.1}, {"date": "2009-04-01", "series": "Construction", "rate": 18.7}, {"date": "2009-05-01", "series": "Construction", "rate": 19.2}, {"date": "2009-06-01", "series": "Construction", "rate": 17.4}, {"date": "2009-07-01", "series": "Construction", "rate": 18.2}, {"date": "2009-08-01", "series": "Construction", "rate": 16.5}, {"date": "2009-09-01", "series": "Construction", "rate": 17.1}, {"date": "2009-10-01", "series": "Construction", "rate": 18.7}, {"date": "2009-11-01", "series": "Construction", "rate": 19.4}, {"date": "2009-12-01", "series": "Construction", "rate": 22.7}, {"date": "2010-01-01", "series": "Construction", "rate": 24.7}, {"date": "2010-02-01", "series": "Construction", "rate": 27.1}, {"date": "2008-01-01", "series": "Manufacturing", "rate": 5.1}, {"date": "2008-02-01", "series": "Manufacturing", "rate": 5}, {"date": "2008-03-01", "series": "Manufacturing", "rate": 5}, {"date": "2008-04-01", "series": "Manufacturing", "rate": 4.8}, {"date": "2008-05-01", "series": "Manufacturing", "rate": 5.3}, {"date": "2008-06-01", "series": "Manufacturing", "rate": 5.2}, {"date": "2008-07-01", "series": "Manufacturing", "rate": 5.5}, {"date": "2008-08-01", "series": "Manufacturing", "rate": 5.7}, {"date": "2008-09-01", "series": "Manufacturing", "rate": 6}, {"date": "2008-10-01", "series": "Manufacturing", "rate": 6.2}, {"date": "2008-11-01", "series": "Manufacturing", "rate": 7}, {"date": "2008-12-01", "series": "Manufacturing", "rate": 8.3}, {"date": "2009-01-01", "series": "Manufacturing", "rate": 10.9}, {"date": "2009-02-01", "series": "Manufacturing", "rate": 11.5}, {"date": "2009-03-01", "series": "Manufacturing", "rate": 12.2}, {"date": "2009-04-01", "series": "Manufacturing", "rate": 12.4}, {"date": "2009-05-01", "series": "Manufacturing", "rate": 12.6}, {"date": "2009-06-01", "series": "Manufacturing", "rate": 12.6}, {"date": "2009-07-01", "series": "Manufacturing", "rate": 12.4}, {"date": "2009-08-01", "series": "Manufacturing", "rate": 11.8}, {"date": "2009-09-01", "series": "Manufacturing", "rate": 11.9}, {"date": "2009-10-01", "series": "Manufacturing", "rate": 12.2}, {"date": "2009-11-01", "series": "Manufacturing", "rate": 12.5}, {"date": "2009-12-01", "series": "Manufacturing", "rate": 11.9}, {"date": "2010-01-01", "series": "Manufacturing", "rate": 13}, {"date": "2010-02-01", "series": "Manufacturing", "rate": 12.1}, {"date": "2008-01-01", "series": "Mining and Extraction", "rate": 4}, {"date": "2008-02-01", "series": "Mining and Extraction", "rate": 2.2}, {"date": "2008-03-01", "series": "Mining and Extraction", "rate": 3.7}, {"date": "2008-04-01", "series": "Mining and Extraction", "rate": 3.6}, {"date": "2008-05-01", "series": "Mining and Extraction", "rate": 3.4}, {"date": "2008-06-01", "series": "Mining and Extraction", "rate": 3.3}, {"date": "2008-07-01", "series": "Mining and Extraction", "rate": 1.5}, {"date": "2008-08-01", "series": "Mining and Extraction", "rate": 1.9}, {"date": "2008-09-01", "series": "Mining and Extraction", "rate": 2.8}, {"date": "2008-10-01", "series": "Mining and Extraction", "rate": 1.7}, {"date": "2008-11-01", "series": "Mining and Extraction", "rate": 3.7}, {"date": "2008-12-01", "series": "Mining and Extraction", "rate": 5.2}, {"date": "2009-01-01", "series": "Mining and Extraction", "rate": 7}, {"date": "2009-02-01", "series": "Mining and Extraction", "rate": 7.6}, {"date": "2009-03-01", "series": "Mining and Extraction", "rate": 12.6}, {"date": "2009-04-01", "series": "Mining and Extraction", "rate": 16.1}, {"date": "2009-05-01", "series": "Mining and Extraction", "rate": 13.3}, {"date": "2009-06-01", "series": "Mining and Extraction", "rate": 13.6}, {"date": "2009-07-01", "series": "Mining and Extraction", "rate": 12.6}, {"date": "2009-08-01", "series": "Mining and Extraction", "rate": 11.8}, {"date": "2009-09-01", "series": "Mining and Extraction", "rate": 10.7}, {"date": "2009-10-01", "series": "Mining and Extraction", "rate": 10.8}, {"date": "2009-11-01", "series": "Mining and Extraction", "rate": 12}, {"date": "2009-12-01", "series": "Mining and Extraction", "rate": 11.8}, {"date": "2010-01-01", "series": "Mining and Extraction", "rate": 9.1}, {"date": "2010-02-01", "series": "Mining and Extraction", "rate": 10.7}], "metadata": {"date": {"type": "date", "semanticType": "YearMonth"}, "series": {"type": "string", "semanticType": "String"}, "rate": {"type": "number", "semanticType": "Percentage"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter for years 2008-2010\n df_filtered = df_unemployment[df_unemployment['year'].isin([2008, 2009, 2010])].copy()\n \n # Filter for top 3 most affected industries\n top_3_industries = ['Mining and Extraction', 'Construction', 'Manufacturing']\n df_filtered = df_filtered[df_filtered['series'].isin(top_3_industries)].copy()\n \n # Convert date to string format for visualization\n df_filtered['date'] = df_filtered['date'].dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns\n transformed_df = df_filtered[['date', 'series', 'rate']].copy()\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values(['series', 'date']).reset_index(drop=True)\n \n return transformed_df\n", "source": ["unemployment-across-industries"], "dialog": [{"role": "system", "content": "You are a data scientist to help user to recommend data that will be used for visualization.\nThe user will provide you information about what visualization they would like to create, and your job is to recommend a transformed data that can be used to create the visualization and write a python function to transform the data.\nThe recommendation and transformation function should be based on the [CONTEXT] and [GOAL] provided by the user. \nThe [CONTEXT] shows what the current dataset is, and the [GOAL] describes what the user wants the data for.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should infer the appropriate data and create in the output section a python function based off the [CONTEXT] and [GOAL] in two steps:\n\n1. First, based on users' [GOAL]. Create a json object that represents the inferred user intent. The json object should have the following format:\n\n{\n \"mode\": \"\" // string, one of \"infer\", \"overview\", \"distribution\", \"summary\", \"forecast\"\n \"recap\": \"...\" // string, a short summary of the user's goal.\n \"display_instruction\": \"...\" // string, the even shorter verb phrase describing the users' goal.\n \"recommendation\": \"...\" // string, explain why this recommendation is made\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have (i.e., the goal of transformed data), it's a good idea to preseve intermediate fields here\n \"chart_type\": \"\" // string, one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\". \"chart_type\" should either be inferred from user instruction, or recommend if the user didn't specify any.\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of output fields, appropriate visual channels for different chart types are defined below.\n}\n\nConcretely:\n - recap what the user's goal is in a short summary in \"recap\".\n - If the user's [GOAL] is clear already, simply infer what the user mean. Set \"mode\" as \"infer\" and create \"output_fields\" and \"chart_encodings\" based off user description.\n - If the user's [GOAL] is not clear, make recommendations to the user:\n - choose one of \"distribution\", \"overview\", \"summary\", \"forecast\" in \"mode\":\n * if it is \"overview\" and the data is in wide format, reshape it into long format.\n * if it is \"distribution\", select a few fields that would be interesting to visualize together.\n * if it is \"summary\", calculate some aggregated statistics to show intresting facts of the data.\n * if it is \"forecast\", concretize the x,y fields that will be used for forecasting and decide if it is about regression or forecasting.\n - describe the recommendation reason in \"recommendation\"\n - based on the recommendation, determine what is an ideal output data. Note, the output data must be in tidy format.\n - then suggest recommendations of chart encoding that should be used to create the visualization.\n - \"display_instruction\" should be a short verb phrase describing the users' goal, it should be even shorter than \"recap\". \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate based on \"recap\" and the suggested visualization, but don't need to mention the visualization details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user instruction builds up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - \"chart_type\" must be one of \"point\", \"bar\", \"line\", \"area\", \"heatmap\", \"group_bar\"\n - \"chart_encodings\" should specify which fields should be used to create the visualization\n - decide which visual channels should be used to create the visualization appropriate for the chart type.\n - point: x, y, color, size, facet\n - histogram: x, color, facet\n - bar: x, y, color, facet\n - line: x, y, color, facet\n - area: x, y, color, facet\n - heatmap: x, y, color, facet\n - group_bar: x, y, color, facet\n - note that all fields used in \"chart_encodings\" should be included in \"output_fields\".\n - all fields you need for visualizations should be transformed into the output fields!\n - \"output_fields\" should include important intermediate fields that are not used in visualization but are used for data transformation.\n - typically only 2-3 fields should be used to create the visualization (x, y, color/size), facet use be added if it's a faceted visualization (totally 4 fields used).\n - Guidelines for choosing chart type and visualization fields:\n - Consider chart types as follows:\n - (point) Scatter Plots: x,y: Quantitative/Categorical, color: Categorical (optional), size: Quantitative (optional for creating bubble chart), \n - best for: Relationships, correlations, distributions, forecasting, regression analysis\n - scatter plots are good default way to visualize data when other chart types are not applicable.\n - use color to visualize points from different categories.\n - use size to visualize data points with an additional quantitative dimension of the data points.\n - (histogram) Histograms: x: Quantitative/Categorical, color: Categorical (optional for creating grouped histogram), \n - best for: Distribution of a quantitative field\n - use x values directly if x values are categorical, and transform the data into bins if the field values are quantitative.\n - when color is specified, the histogram will be grouped automatically (items with the same x values will be grouped).\n - (bar) Bar Charts: x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical/Quantitative (for stacked bar chart / showing additional quantitative dimension), \n - best for: Comparisons across categories\n - use (bar) for simple bar chart or stacked bar chart (when it makes sense to add up Y values for each category with the same X value), \n - when color is specified, the bar will be stacked automatically (items with the same x values will be stacked).\n - note that when there are multiple rows in the data with same x values, the bar will be stacked automatically.\n - 1. consider to use an aggregated field for y values if the value is not suitable for stacking.\n - 2. consider to introduce facets so that each group is visualized in a separate bar.\n - (group_bar) for grouped bar chart, x: Categorical (nominal/ordinal), y: Quantitative, color: Categorical\n - when color is specifed, bars from different groups will be grouped automatically.\n - only use facet if the cardinality of color field is small (less than 5).\n - (line) Line Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating multiple lines), \n - best for: Trends over time, continuous data, forecasting, regression analysis\n - note that when there are multiple rows in the data belong to the same group (same x and color values) but different y values, the line will not look correct.\n - consider to use an aggregated field for y values, or introduce facets so that each group is visualized in a separate line.\n - (area) Area Charts: x: Temporal (preferred) or ordinal, y: Quantitative, color: Categorical (optional for creating stacked areas), \n - best for: Trends over time, continuous data\n - (heatmap) Heatmaps: x,y: Categorical (you need to convert quantitative to nominal), color: Quantitative intensity, \n - best for: Pattern discovery in matrix data\n - facet channel is available for all chart types, it supports a categorical field with small cardinality to visualize the data in different facets.\n - if you really need additional legend fields:\n - you can use opacity for legend (support Quantitative and Categorical).\n - visualization fields require tidy data. \n - similar to VegaLite and ggplot2 so that each field is mapped to a visualization axis or legend. \n - consider data transformations if you want to visualize multiple fields together:\n - exapmle 1: suggest reshaping the data into long format in data transformation description (if these fields are all of the same type, e.g., they are all about sales, price, two columns about min/max-values, etc. don't mix different types of fields in reshaping) so we can visualize multiple fields as categories or in different facets.\n - exapmle 2: calculate some derived fields from these fields(e.g., correlation, difference, profit etc.) in data transformation description to visualize them in one visualization.\n - example 3: create a visualization only with a subset of the fields, you don't have to visualize all of them in one chart, you can later create a visualization with the rest of the fields. With the subset of charts, you can also consider reshaping or calculate some derived value.\n - again, it does not make sense to have five fields like [item, A, B, C, D, E] in visualization fields, you should consider data transformation to reduce the number of fields.\n - when reshaping data to long format, only fields of the same semantic type should be rehaped into the same column.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - put is_predicted field in 'opacity' channel to distinguish them.\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n 2. Then, write a python function based on the inferred goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \n\"transformed_df\" should contain all \"output_fields\" from the refined user intent in the json object.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable. \nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- you can use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n \n 3. The output must only contain a json object representing inferred user intent and a python code block representing the transformation code, do not add any extra text explanation.\n"}, {"role": "user", "content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nCompare **unemployment trends** across all industries from 2000-2010"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to compare unemployment trends across all industries from 2000-2010 to understand how different sectors were affected over time.\",\n \"display_instruction\": \"Compare **unemployment rates** across **industries** over time\",\n \"recommendation\": \"A line chart with time on x-axis and unemployment rate on y-axis, with different colored lines for each industry series, will effectively show the trends and allow comparison of how unemployment evolved across different sectors during this period.\",\n \"output_fields\": [\"date\", \"series\", \"rate\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date']).dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns for visualization\n transformed_df = df_unemployment[['date', 'series', 'rate']].copy()\n \n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n date series rate\n0 2000-01-01 Government 2.1\n1 2000-02-01 Government 2.0\n2 2000-03-01 Government 1.5\n3 2000-04-01 Government 1.3\n4 2000-05-01 Government 1.9\n5 2000-06-01 Government 3.1\n6 2000-07-01 Government 2.9\n7 2000-08-01 Government 3.1\n8 2000-09-01 Government 2.1\n9 2000-10-01 Government 2.0\n......\n\nUpdate the code above based on the following instruction:\n\nWhich industries showed the **sharpest increases** in unemployment during **2008-2009**?"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to identify which industries experienced the sharpest increases in unemployment rates during the 2008-2009 financial crisis period by calculating the change in unemployment rate for each industry.\",\n \"display_instruction\": \"Identify industries with **sharpest unemployment rate increases** during **2008-2009**\",\n \"recommendation\": \"A bar chart showing the change in unemployment rate from 2008 to 2009 for each industry will clearly visualize which sectors were hit hardest during the financial crisis. The industries should be sorted by the magnitude of increase to make comparison easier.\",\n \"output_fields\": [\"series\", \"rate_2008\", \"rate_2009\", \"rate_increase\"],\n \"chart_type\": \"bar\",\n \"chart_encodings\": {\n \"x\": \"series\",\n \"y\": \"rate_increase\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter data for years 2008 and 2009\n df_2008_2009 = df_unemployment[df_unemployment['year'].isin([2008, 2009])].copy()\n \n # Calculate average rate for each industry in 2008 and 2009\n df_2008 = df_2008_2009[df_2008_2009['year'] == 2008].groupby('series')['rate'].mean().reset_index()\n df_2008.columns = ['series', 'rate_2008']\n \n df_2009 = df_2008_2009[df_2008_2009['year'] == 2009].groupby('series')['rate'].mean().reset_index()\n df_2009.columns = ['series', 'rate_2009']\n \n # Merge and calculate the increase\n transformed_df = df_2008.merge(df_2009, on='series')\n transformed_df['rate_increase'] = transformed_df['rate_2009'] - transformed_df['rate_2008']\n \n # Sort by rate increase in descending order\n transformed_df = transformed_df.sort_values('rate_increase', ascending=False).reset_index(drop=True)\n \n return transformed_df\n```"}, {"role": "user", "content": "This is the result from the latest python code:\n\n series rate_2008 rate_2009 rate_increase\n0 Mining and Extraction 3.083333 11.658333 8.575000\n1 Construction 10.600000 19.050000 8.450000\n2 Manufacturing 5.758333 12.075000 6.316667\n3 Agriculture 9.266667 14.391667 5.125000\n4 Business services 6.558333 10.800000 4.241667\n5 Information 5.016667 9.225000 4.208333\n6 Transportation and Utilities 5.133333 8.883333 3.750000\n7 Wholesale and Retail Trade 5.841667 9.033333 3.191667\n8 Leisure and hospitality 8.641667 11.683333 3.041667\n9 Finance 3.950000 6.400000 2.450000\n......\n\nUpdate the code above based on the following instruction:\n\nFor the **top 3 most affected industries** (Mining and Extraction, Construction, Manufacturing), compare their **monthly unemployment rate trends** during the **2008-2010 period** to analyze how quickly each industry recovered after the 2009 peak"}, {"role": "assistant", "content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"User wants to analyze the monthly unemployment rate trends for the top 3 most affected industries (Mining and Extraction, Construction, Manufacturing) during 2008-2010 to understand their recovery patterns after the 2009 peak.\",\n \"display_instruction\": \"Compare **monthly unemployment trends** for **top 3 affected industries** during **2008-2010 recovery period**\",\n \"recommendation\": \"A line chart with time on x-axis and unemployment rate on y-axis, with different colored lines for the three most affected industries, will effectively show how each industry's unemployment rate evolved during and after the crisis, revealing their different recovery trajectories.\",\n \"output_fields\": [\"date\", \"series\", \"rate\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"date\",\n \"y\": \"rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter for years 2008-2010\n df_filtered = df_unemployment[df_unemployment['year'].isin([2008, 2009, 2010])].copy()\n \n # Filter for top 3 most affected industries\n top_3_industries = ['Mining and Extraction', 'Construction', 'Manufacturing']\n df_filtered = df_filtered[df_filtered['series'].isin(top_3_industries)].copy()\n \n # Convert date to string format for visualization\n df_filtered['date'] = df_filtered['date'].dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns\n transformed_df = df_filtered[['date', 'series', 'rate']].copy()\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values(['series', 'date']).reset_index(drop=True)\n \n return transformed_df\n```"}], "trigger": {"tableId": "table-552276", "resultTableId": "table-570117", "chart": {"id": "chart-1760745567484", "chartType": "Auto", "encodingMap": {}, "tableRef": "unemployment-across-industries", "saved": false, "source": "trigger", "unread": true}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "For the **top 3 most affected industries** (Mining and Extraction, Construction, Manufacturing), compare their **monthly unemployment rate trends** during the **2008-2010 period** to analyze how quickly each industry recovered after the 2009 peak", "displayContent": "Compare **monthly unemployment trends** for **top 3 affected industries** during **2008-2010 recovery period**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Convert the **date** field from string to datetime format, then back to a standardized string format (`YYYY-MM-DD`)\n- **Filter** the data to include only the years **2008**, **2009**, and **2010** (the period around the financial crisis)\n- **Select** the top 3 most affected industries: **Mining and Extraction**, **Construction**, and **Manufacturing**\n- **Extract** only the essential columns: **date**, **series** (industry name), and **rate** (unemployment rate)\n- **Sort** the data by **series** and **date** to ensure proper chronological ordering for time series visualization", "concepts": [], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df_unemployment):\n # Convert date string to datetime and then to string format for visualization\n df_unemployment['date'] = pd.to_datetime(df_unemployment['date'])\n \n # Filter for years 2008-2010\n df_filtered = df_unemployment[df_unemployment['year'].isin([2008, 2009, 2010])].copy()\n \n # Filter for top 3 most affected industries\n top_3_industries = ['Mining and Extraction', 'Construction', 'Manufacturing']\n df_filtered = df_filtered[df_filtered['series'].isin(top_3_industries)].copy()\n \n # Convert date to string format for visualization\n df_filtered['date'] = df_filtered['date'].dt.strftime('%Y-%m-%d')\n \n # Select only the necessary columns\n transformed_df = df_filtered[['date', 'series', 'rate']].copy()\n \n # Sort by date for proper line chart rendering\n transformed_df = transformed_df.sort_values(['series', 'date']).reset_index(drop=True)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Convert the **date** field from string to datetime format, then back to a standardized string format (`YYYY-MM-DD`)\n- **Filter** the data to include only the years **2008**, **2009**, and **2010** (the period around the financial crisis)\n- **Select** the top 3 most affected industries: **Mining and Extraction**, **Construction**, and **Manufacturing**\n- **Extract** only the essential columns: **date**, **series** (industry name), and **rate** (unemployment rate)\n- **Sort** the data by **series** and **date** to ensure proper chronological ordering for time series visualization\n\n[CONCEPTS EXPLANATION]\n\n```json\n[]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}, {"kind": "table", "id": "table-53", "displayId": "industry-rates", "names": ["avg_rate", "month", "series", "year"], "rows": [{"avg_rate": 10.3, "month": 1, "series": "Agriculture", "year": "2000"}, {"avg_rate": 11.5, "month": 2, "series": "Agriculture", "year": "2000"}, {"avg_rate": 10.4, "month": 3, "series": "Agriculture", "year": "2000"}, {"avg_rate": 8.9, "month": 4, "series": "Agriculture", "year": "2000"}, {"avg_rate": 5.1, "month": 5, "series": "Agriculture", "year": "2000"}, {"avg_rate": 6.7, "month": 6, "series": "Agriculture", "year": "2000"}, {"avg_rate": 5, "month": 7, "series": "Agriculture", "year": "2000"}, {"avg_rate": 7, "month": 8, "series": "Agriculture", "year": "2000"}, {"avg_rate": 8.2, "month": 9, "series": "Agriculture", "year": "2000"}, {"avg_rate": 8, "month": 10, "series": "Agriculture", "year": "2000"}, {"avg_rate": 13.3, "month": 11, "series": "Agriculture", "year": "2000"}, {"avg_rate": 13.9, "month": 12, "series": "Agriculture", "year": "2000"}, {"avg_rate": 13.8, "month": 1, "series": "Agriculture", "year": "2001"}, {"avg_rate": 15.1, "month": 2, "series": "Agriculture", "year": "2001"}, {"avg_rate": 19.2, "month": 3, "series": "Agriculture", "year": "2001"}, {"avg_rate": 10.4, "month": 4, "series": "Agriculture", "year": "2001"}, {"avg_rate": 7.7, "month": 5, "series": "Agriculture", "year": "2001"}, {"avg_rate": 9.7, "month": 6, "series": "Agriculture", "year": "2001"}, {"avg_rate": 7.6, "month": 7, "series": "Agriculture", "year": "2001"}, {"avg_rate": 9.3, "month": 8, "series": "Agriculture", "year": "2001"}, {"avg_rate": 7.2, "month": 9, "series": "Agriculture", "year": "2001"}, {"avg_rate": 8.7, "month": 10, "series": "Agriculture", "year": "2001"}, {"avg_rate": 11.6, "month": 11, "series": "Agriculture", "year": "2001"}, {"avg_rate": 15.1, "month": 12, "series": "Agriculture", "year": "2001"}, {"avg_rate": 14.8, "month": 1, "series": "Agriculture", "year": "2002"}, {"avg_rate": 14.8, "month": 2, "series": "Agriculture", "year": "2002"}, {"avg_rate": 19.6, "month": 3, "series": "Agriculture", "year": "2002"}, {"avg_rate": 10.8, "month": 4, "series": "Agriculture", "year": "2002"}, {"avg_rate": 6.8, "month": 5, "series": "Agriculture", "year": "2002"}, {"avg_rate": 6.3, "month": 6, "series": "Agriculture", "year": "2002"}, {"avg_rate": 7.3, "month": 7, "series": "Agriculture", "year": "2002"}, {"avg_rate": 9, "month": 8, "series": "Agriculture", "year": "2002"}, {"avg_rate": 6.3, "month": 9, "series": "Agriculture", "year": "2002"}, {"avg_rate": 6.6, "month": 10, "series": "Agriculture", "year": "2002"}, {"avg_rate": 11.1, "month": 11, "series": "Agriculture", "year": "2002"}, {"avg_rate": 9.8, "month": 12, "series": "Agriculture", "year": "2002"}, {"avg_rate": 13.2, "month": 1, "series": "Agriculture", "year": "2003"}, {"avg_rate": 14.7, "month": 2, "series": "Agriculture", "year": "2003"}, {"avg_rate": 12.9, "month": 3, "series": "Agriculture", "year": "2003"}, {"avg_rate": 12, "month": 4, "series": "Agriculture", "year": "2003"}, {"avg_rate": 10.2, "month": 5, "series": "Agriculture", "year": "2003"}, {"avg_rate": 6.9, "month": 6, "series": "Agriculture", "year": "2003"}, {"avg_rate": 8.2, "month": 7, "series": "Agriculture", "year": "2003"}, {"avg_rate": 10.7, "month": 8, "series": "Agriculture", "year": "2003"}, {"avg_rate": 6.2, "month": 9, "series": "Agriculture", "year": "2003"}, {"avg_rate": 8.5, "month": 10, "series": "Agriculture", "year": "2003"}, {"avg_rate": 10.3, "month": 11, "series": "Agriculture", "year": "2003"}, {"avg_rate": 10.9, "month": 12, "series": "Agriculture", "year": "2003"}, {"avg_rate": 15.1, "month": 1, "series": "Agriculture", "year": "2004"}, {"avg_rate": 14.2, "month": 2, "series": "Agriculture", "year": "2004"}, {"avg_rate": 12.7, "month": 3, "series": "Agriculture", "year": "2004"}, {"avg_rate": 8.3, "month": 4, "series": "Agriculture", "year": "2004"}, {"avg_rate": 7.4, "month": 5, "series": "Agriculture", "year": "2004"}, {"avg_rate": 7.6, "month": 6, "series": "Agriculture", "year": "2004"}, {"avg_rate": 10, "month": 7, "series": "Agriculture", "year": "2004"}, {"avg_rate": 7, "month": 8, "series": "Agriculture", "year": "2004"}, {"avg_rate": 6.4, "month": 9, "series": "Agriculture", "year": "2004"}, {"avg_rate": 7.7, "month": 10, "series": "Agriculture", "year": "2004"}, {"avg_rate": 10.5, "month": 11, "series": "Agriculture", "year": "2004"}, {"avg_rate": 14, "month": 12, "series": "Agriculture", "year": "2004"}, {"avg_rate": 13.2, "month": 1, "series": "Agriculture", "year": "2005"}, {"avg_rate": 9.9, "month": 2, "series": "Agriculture", "year": "2005"}, {"avg_rate": 11.8, "month": 3, "series": "Agriculture", "year": "2005"}, {"avg_rate": 6.9, "month": 4, "series": "Agriculture", "year": "2005"}, {"avg_rate": 5.3, "month": 5, "series": "Agriculture", "year": "2005"}, {"avg_rate": 5.2, "month": 6, "series": "Agriculture", "year": "2005"}, {"avg_rate": 4.7, "month": 7, "series": "Agriculture", "year": "2005"}, {"avg_rate": 7.1, "month": 8, "series": "Agriculture", "year": "2005"}, {"avg_rate": 9.5, "month": 9, "series": "Agriculture", "year": "2005"}, {"avg_rate": 6.7, "month": 10, "series": "Agriculture", "year": "2005"}, {"avg_rate": 9.6, "month": 11, "series": "Agriculture", "year": "2005"}, {"avg_rate": 11.1, "month": 12, "series": "Agriculture", "year": "2005"}, {"avg_rate": 11.5, "month": 1, "series": "Agriculture", "year": "2006"}, {"avg_rate": 11.8, "month": 2, "series": "Agriculture", "year": "2006"}, {"avg_rate": 9.8, "month": 3, "series": "Agriculture", "year": "2006"}, {"avg_rate": 6.2, "month": 4, "series": "Agriculture", "year": "2006"}, {"avg_rate": 6, "month": 5, "series": "Agriculture", "year": "2006"}, {"avg_rate": 2.4, "month": 6, "series": "Agriculture", "year": "2006"}, {"avg_rate": 3.6, "month": 7, "series": "Agriculture", "year": "2006"}, {"avg_rate": 5.3, "month": 8, "series": "Agriculture", "year": "2006"}, {"avg_rate": 5.9, "month": 9, "series": "Agriculture", "year": "2006"}, {"avg_rate": 5.8, "month": 10, "series": "Agriculture", "year": "2006"}, {"avg_rate": 9.6, "month": 11, "series": "Agriculture", "year": "2006"}, {"avg_rate": 10.4, "month": 12, "series": "Agriculture", "year": "2006"}, {"avg_rate": 10, "month": 1, "series": "Agriculture", "year": "2007"}, {"avg_rate": 9.6, "month": 2, "series": "Agriculture", "year": "2007"}, {"avg_rate": 9.7, "month": 3, "series": "Agriculture", "year": "2007"}, {"avg_rate": 5.7, "month": 4, "series": "Agriculture", "year": "2007"}, {"avg_rate": 5.1, "month": 5, "series": "Agriculture", "year": "2007"}, {"avg_rate": 4.5, "month": 6, "series": "Agriculture", "year": "2007"}, {"avg_rate": 3.1, "month": 7, "series": "Agriculture", "year": "2007"}, {"avg_rate": 4.7, "month": 8, "series": "Agriculture", "year": "2007"}, {"avg_rate": 4.3, "month": 9, "series": "Agriculture", "year": "2007"}, {"avg_rate": 4, "month": 10, "series": "Agriculture", "year": "2007"}, {"avg_rate": 6.6, "month": 11, "series": "Agriculture", "year": "2007"}, {"avg_rate": 7.5, "month": 12, "series": "Agriculture", "year": "2007"}, {"avg_rate": 9.5, "month": 1, "series": "Agriculture", "year": "2008"}, {"avg_rate": 10.9, "month": 2, "series": "Agriculture", "year": "2008"}, {"avg_rate": 13.2, "month": 3, "series": "Agriculture", "year": "2008"}, {"avg_rate": 8.6, "month": 4, "series": "Agriculture", "year": "2008"}, {"avg_rate": 7.4, "month": 5, "series": "Agriculture", "year": "2008"}, {"avg_rate": 6.1, "month": 6, "series": "Agriculture", "year": "2008"}, {"avg_rate": 8.5, "month": 7, "series": "Agriculture", "year": "2008"}, {"avg_rate": 7.6, "month": 8, "series": "Agriculture", "year": "2008"}, {"avg_rate": 5.8, "month": 9, "series": "Agriculture", "year": "2008"}, {"avg_rate": 7.1, "month": 10, "series": "Agriculture", "year": "2008"}, {"avg_rate": 9.5, "month": 11, "series": "Agriculture", "year": "2008"}, {"avg_rate": 17, "month": 12, "series": "Agriculture", "year": "2008"}, {"avg_rate": 18.7, "month": 1, "series": "Agriculture", "year": "2009"}, {"avg_rate": 18.8, "month": 2, "series": "Agriculture", "year": "2009"}, {"avg_rate": 19, "month": 3, "series": "Agriculture", "year": "2009"}, {"avg_rate": 13.5, "month": 4, "series": "Agriculture", "year": "2009"}, {"avg_rate": 10, "month": 5, "series": "Agriculture", "year": "2009"}, {"avg_rate": 12.3, "month": 6, "series": "Agriculture", "year": "2009"}, {"avg_rate": 12.1, "month": 7, "series": "Agriculture", "year": "2009"}, {"avg_rate": 13.1, "month": 8, "series": "Agriculture", "year": "2009"}, {"avg_rate": 11.1, "month": 9, "series": "Agriculture", "year": "2009"}, {"avg_rate": 11.8, "month": 10, "series": "Agriculture", "year": "2009"}, {"avg_rate": 12.6, "month": 11, "series": "Agriculture", "year": "2009"}, {"avg_rate": 19.7, "month": 12, "series": "Agriculture", "year": "2009"}, {"avg_rate": 21.3, "month": 1, "series": "Agriculture", "year": "2010"}, {"avg_rate": 18.8, "month": 2, "series": "Agriculture", "year": "2010"}, {"avg_rate": 9.7, "month": 1, "series": "Construction", "year": "2000"}, {"avg_rate": 10.6, "month": 2, "series": "Construction", "year": "2000"}, {"avg_rate": 8.7, "month": 3, "series": "Construction", "year": "2000"}, {"avg_rate": 5.8, "month": 4, "series": "Construction", "year": "2000"}, {"avg_rate": 5, "month": 5, "series": "Construction", "year": "2000"}, {"avg_rate": 4.6, "month": 6, "series": "Construction", "year": "2000"}, {"avg_rate": 4.4, "month": 7, "series": "Construction", "year": "2000"}, {"avg_rate": 5.1, "month": 8, "series": "Construction", "year": "2000"}, {"avg_rate": 4.6, "month": 9, "series": "Construction", "year": "2000"}, {"avg_rate": 4.9, "month": 10, "series": "Construction", "year": "2000"}, {"avg_rate": 5.7, "month": 11, "series": "Construction", "year": "2000"}, {"avg_rate": 6.8, "month": 12, "series": "Construction", "year": "2000"}, {"avg_rate": 9.8, "month": 1, "series": "Construction", "year": "2001"}, {"avg_rate": 9.9, "month": 2, "series": "Construction", "year": "2001"}, {"avg_rate": 8.4, "month": 3, "series": "Construction", "year": "2001"}, {"avg_rate": 7.1, "month": 4, "series": "Construction", "year": "2001"}, {"avg_rate": 5.6, "month": 5, "series": "Construction", "year": "2001"}, {"avg_rate": 5.1, "month": 6, "series": "Construction", "year": "2001"}, {"avg_rate": 4.9, "month": 7, "series": "Construction", "year": "2001"}, {"avg_rate": 5.8, "month": 8, "series": "Construction", "year": "2001"}, {"avg_rate": 5.5, "month": 9, "series": "Construction", "year": "2001"}, {"avg_rate": 6.1, "month": 10, "series": "Construction", "year": "2001"}, {"avg_rate": 7.6, "month": 11, "series": "Construction", "year": "2001"}, {"avg_rate": 9, "month": 12, "series": "Construction", "year": "2001"}, {"avg_rate": 13.6, "month": 1, "series": "Construction", "year": "2002"}, {"avg_rate": 12.2, "month": 2, "series": "Construction", "year": "2002"}, {"avg_rate": 11.8, "month": 3, "series": "Construction", "year": "2002"}, {"avg_rate": 10.1, "month": 4, "series": "Construction", "year": "2002"}, {"avg_rate": 7.4, "month": 5, "series": "Construction", "year": "2002"}, {"avg_rate": 6.9, "month": 6, "series": "Construction", "year": "2002"}, {"avg_rate": 6.9, "month": 7, "series": "Construction", "year": "2002"}, {"avg_rate": 7.4, "month": 8, "series": "Construction", "year": "2002"}, {"avg_rate": 7, "month": 9, "series": "Construction", "year": "2002"}, {"avg_rate": 7.7, "month": 10, "series": "Construction", "year": "2002"}, {"avg_rate": 8.5, "month": 11, "series": "Construction", "year": "2002"}, {"avg_rate": 10.9, "month": 12, "series": "Construction", "year": "2002"}, {"avg_rate": 14, "month": 1, "series": "Construction", "year": "2003"}, {"avg_rate": 14, "month": 2, "series": "Construction", "year": "2003"}, {"avg_rate": 11.8, "month": 3, "series": "Construction", "year": "2003"}, {"avg_rate": 9.3, "month": 4, "series": "Construction", "year": "2003"}, {"avg_rate": 8.4, "month": 5, "series": "Construction", "year": "2003"}, {"avg_rate": 7.9, "month": 6, "series": "Construction", "year": "2003"}, {"avg_rate": 7.5, "month": 7, "series": "Construction", "year": "2003"}, {"avg_rate": 7.1, "month": 8, "series": "Construction", "year": "2003"}, {"avg_rate": 7.6, "month": 9, "series": "Construction", "year": "2003"}, {"avg_rate": 7.4, "month": 10, "series": "Construction", "year": "2003"}, {"avg_rate": 7.8, "month": 11, "series": "Construction", "year": "2003"}, {"avg_rate": 9.3, "month": 12, "series": "Construction", "year": "2003"}, {"avg_rate": 11.3, "month": 1, "series": "Construction", "year": "2004"}, {"avg_rate": 11.6, "month": 2, "series": "Construction", "year": "2004"}, {"avg_rate": 11.3, "month": 3, "series": "Construction", "year": "2004"}, {"avg_rate": 9.5, "month": 4, "series": "Construction", "year": "2004"}, {"avg_rate": 7.4, "month": 5, "series": "Construction", "year": "2004"}, {"avg_rate": 7, "month": 6, "series": "Construction", "year": "2004"}, {"avg_rate": 6.4, "month": 7, "series": "Construction", "year": "2004"}, {"avg_rate": 6, "month": 8, "series": "Construction", "year": "2004"}, {"avg_rate": 6.8, "month": 9, "series": "Construction", "year": "2004"}, {"avg_rate": 6.9, "month": 10, "series": "Construction", "year": "2004"}, {"avg_rate": 7.4, "month": 11, "series": "Construction", "year": "2004"}, {"avg_rate": 9.5, "month": 12, "series": "Construction", "year": "2004"}, {"avg_rate": 11.8, "month": 1, "series": "Construction", "year": "2005"}, {"avg_rate": 12.3, "month": 2, "series": "Construction", "year": "2005"}, {"avg_rate": 10.3, "month": 3, "series": "Construction", "year": "2005"}, {"avg_rate": 7.4, "month": 4, "series": "Construction", "year": "2005"}, {"avg_rate": 6.1, "month": 5, "series": "Construction", "year": "2005"}, {"avg_rate": 5.7, "month": 6, "series": "Construction", "year": "2005"}, {"avg_rate": 5.2, "month": 7, "series": "Construction", "year": "2005"}, {"avg_rate": 5.7, "month": 8, "series": "Construction", "year": "2005"}, {"avg_rate": 5.7, "month": 9, "series": "Construction", "year": "2005"}, {"avg_rate": 5.3, "month": 10, "series": "Construction", "year": "2005"}, {"avg_rate": 5.7, "month": 11, "series": "Construction", "year": "2005"}, {"avg_rate": 8.2, "month": 12, "series": "Construction", "year": "2005"}, {"avg_rate": 9, "month": 1, "series": "Construction", "year": "2006"}, {"avg_rate": 8.6, "month": 2, "series": "Construction", "year": "2006"}, {"avg_rate": 8.5, "month": 3, "series": "Construction", "year": "2006"}, {"avg_rate": 6.9, "month": 4, "series": "Construction", "year": "2006"}, {"avg_rate": 6.6, "month": 5, "series": "Construction", "year": "2006"}, {"avg_rate": 5.6, "month": 6, "series": "Construction", "year": "2006"}, {"avg_rate": 6.1, "month": 7, "series": "Construction", "year": "2006"}, {"avg_rate": 5.9, "month": 8, "series": "Construction", "year": "2006"}, {"avg_rate": 5.6, "month": 9, "series": "Construction", "year": "2006"}, {"avg_rate": 4.5, "month": 10, "series": "Construction", "year": "2006"}, {"avg_rate": 6, "month": 11, "series": "Construction", "year": "2006"}, {"avg_rate": 6.9, "month": 12, "series": "Construction", "year": "2006"}, {"avg_rate": 8.9, "month": 1, "series": "Construction", "year": "2007"}, {"avg_rate": 10.5, "month": 2, "series": "Construction", "year": "2007"}, {"avg_rate": 9, "month": 3, "series": "Construction", "year": "2007"}, {"avg_rate": 8.6, "month": 4, "series": "Construction", "year": "2007"}, {"avg_rate": 6.9, "month": 5, "series": "Construction", "year": "2007"}, {"avg_rate": 5.9, "month": 6, "series": "Construction", "year": "2007"}, {"avg_rate": 5.9, "month": 7, "series": "Construction", "year": "2007"}, {"avg_rate": 5.3, "month": 8, "series": "Construction", "year": "2007"}, {"avg_rate": 5.8, "month": 9, "series": "Construction", "year": "2007"}, {"avg_rate": 6.1, "month": 10, "series": "Construction", "year": "2007"}, {"avg_rate": 6.2, "month": 11, "series": "Construction", "year": "2007"}, {"avg_rate": 9.4, "month": 12, "series": "Construction", "year": "2007"}, {"avg_rate": 11, "month": 1, "series": "Construction", "year": "2008"}, {"avg_rate": 11.4, "month": 2, "series": "Construction", "year": "2008"}, {"avg_rate": 12, "month": 3, "series": "Construction", "year": "2008"}, {"avg_rate": 11.1, "month": 4, "series": "Construction", "year": "2008"}, {"avg_rate": 8.6, "month": 5, "series": "Construction", "year": "2008"}, {"avg_rate": 8.2, "month": 6, "series": "Construction", "year": "2008"}, {"avg_rate": 8, "month": 7, "series": "Construction", "year": "2008"}, {"avg_rate": 8.2, "month": 8, "series": "Construction", "year": "2008"}, {"avg_rate": 9.9, "month": 9, "series": "Construction", "year": "2008"}, {"avg_rate": 10.8, "month": 10, "series": "Construction", "year": "2008"}, {"avg_rate": 12.7, "month": 11, "series": "Construction", "year": "2008"}, {"avg_rate": 15.3, "month": 12, "series": "Construction", "year": "2008"}, {"avg_rate": 18.2, "month": 1, "series": "Construction", "year": "2009"}, {"avg_rate": 21.4, "month": 2, "series": "Construction", "year": "2009"}, {"avg_rate": 21.1, "month": 3, "series": "Construction", "year": "2009"}, {"avg_rate": 18.7, "month": 4, "series": "Construction", "year": "2009"}, {"avg_rate": 19.2, "month": 5, "series": "Construction", "year": "2009"}, {"avg_rate": 17.4, "month": 6, "series": "Construction", "year": "2009"}, {"avg_rate": 18.2, "month": 7, "series": "Construction", "year": "2009"}, {"avg_rate": 16.5, "month": 8, "series": "Construction", "year": "2009"}, {"avg_rate": 17.1, "month": 9, "series": "Construction", "year": "2009"}, {"avg_rate": 18.7, "month": 10, "series": "Construction", "year": "2009"}, {"avg_rate": 19.4, "month": 11, "series": "Construction", "year": "2009"}, {"avg_rate": 22.7, "month": 12, "series": "Construction", "year": "2009"}, {"avg_rate": 24.7, "month": 1, "series": "Construction", "year": "2010"}, {"avg_rate": 27.1, "month": 2, "series": "Construction", "year": "2010"}, {"avg_rate": 3.9, "month": 1, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 5.5, "month": 2, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 3.7, "month": 3, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 4.1, "month": 4, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 5.3, "month": 5, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 2.6, "month": 6, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 3.6, "month": 7, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 5.1, "month": 8, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 5.8, "month": 9, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 7.8, "month": 10, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 2, "month": 11, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 3.8, "month": 12, "series": "Mining and Extraction", "year": "2000"}, {"avg_rate": 2.3, "month": 1, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 5.3, "month": 2, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 3, "month": 3, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 4.7, "month": 4, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 5.9, "month": 5, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 4.7, "month": 6, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 3.1, "month": 7, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 3.3, "month": 8, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 4.2, "month": 9, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 5.4, "month": 10, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 3.6, "month": 11, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 5.3, "month": 12, "series": "Mining and Extraction", "year": "2001"}, {"avg_rate": 7, "month": 1, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 7.5, "month": 2, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 5.3, "month": 3, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 6.1, "month": 4, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 4.9, "month": 5, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 7.1, "month": 6, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 3.9, "month": 7, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 6.3, "month": 8, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 7.9, "month": 9, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 6.4, "month": 10, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 5.4, "month": 11, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 7.8, "month": 12, "series": "Mining and Extraction", "year": "2002"}, {"avg_rate": 9, "month": 1, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 7.1, "month": 2, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 8.2, "month": 3, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 7.7, "month": 4, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 7.5, "month": 5, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 6.8, "month": 6, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 7.9, "month": 7, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 3.8, "month": 8, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 4.6, "month": 9, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 5.6, "month": 10, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 5.9, "month": 11, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 5.6, "month": 12, "series": "Mining and Extraction", "year": "2003"}, {"avg_rate": 5.8, "month": 1, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 5, "month": 2, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 4.4, "month": 3, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 6.4, "month": 4, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 4.3, "month": 5, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 5, "month": 6, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 5.4, "month": 7, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 1.9, "month": 8, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 1.5, "month": 9, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 2.6, "month": 10, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 3.3, "month": 11, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 2.5, "month": 12, "series": "Mining and Extraction", "year": "2004"}, {"avg_rate": 4.9, "month": 1, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 4, "month": 2, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 5.2, "month": 3, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 2.9, "month": 4, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 2.4, "month": 5, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 4, "month": 6, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 3.7, "month": 7, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 2, "month": 8, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 2, "month": 9, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 0.3, "month": 10, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 2.9, "month": 11, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 3.5, "month": 12, "series": "Mining and Extraction", "year": "2005"}, {"avg_rate": 3.9, "month": 1, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 3.8, "month": 2, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 2.1, "month": 3, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 2.5, "month": 4, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 2.8, "month": 5, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 4.3, "month": 6, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 3.5, "month": 7, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 4.3, "month": 8, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 2.1, "month": 9, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 2.2, "month": 10, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 2.9, "month": 11, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 3.4, "month": 12, "series": "Mining and Extraction", "year": "2006"}, {"avg_rate": 4.7, "month": 1, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 4.5, "month": 2, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 3.2, "month": 3, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 2.3, "month": 4, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 3, "month": 5, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 4.3, "month": 6, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 4.3, "month": 7, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 4.6, "month": 8, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 3.2, "month": 9, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 1.3, "month": 10, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 2.3, "month": 11, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 3.4, "month": 12, "series": "Mining and Extraction", "year": "2007"}, {"avg_rate": 4, "month": 1, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 2.2, "month": 2, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 3.7, "month": 3, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 3.6, "month": 4, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 3.4, "month": 5, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 3.3, "month": 6, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 1.5, "month": 7, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 1.9, "month": 8, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 2.8, "month": 9, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 1.7, "month": 10, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 3.7, "month": 11, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 5.2, "month": 12, "series": "Mining and Extraction", "year": "2008"}, {"avg_rate": 7, "month": 1, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 7.6, "month": 2, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 12.6, "month": 3, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 16.1, "month": 4, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 13.3, "month": 5, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 13.6, "month": 6, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 12.6, "month": 7, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 11.8, "month": 8, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 10.7, "month": 9, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 10.8, "month": 10, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 12, "month": 11, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 11.8, "month": 12, "series": "Mining and Extraction", "year": "2009"}, {"avg_rate": 9.1, "month": 1, "series": "Mining and Extraction", "year": "2010"}, {"avg_rate": 10.7, "month": 2, "series": "Mining and Extraction", "year": "2010"}], "metadata": {"avg_rate": {"type": "number", "semanticType": "Number"}, "month": {"type": "number", "semanticType": "Month"}, "series": {"type": "string", "semanticType": "String"}, "year": {"type": "number", "semanticType": "Year"}}, "derive": {"code": "\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series\n monthly_avg = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Calculate seasonal variation (standard deviation across months) for each series\n seasonal_variation = monthly_avg.groupby('series')['avg_rate'].std().reset_index()\n seasonal_variation.columns = ['series', 'seasonal_std']\n \n # Get top 3 most seasonal industries\n top_3_seasonal = seasonal_variation.nlargest(3, 'seasonal_std')['series'].tolist()\n \n # Filter original data for top 3 industries and aggregate by year, month, series\n transformed_df = df1[df1['series'].isin(top_3_seasonal)].groupby(\n ['series', 'year', 'month'], as_index=False\n ).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Convert year to string for color encoding\n transformed_df['year'] = transformed_df['year'].astype(str)\n \n return transformed_df\n", "source": ["unemployment-across-industries"], "dialog": [{"content": "You are a data scientist to help user to transform data that will be used for visualization.\nThe user will provide you information about what data would be needed, and your job is to create a python function based on the input data summary, transformation instruction and expected fields.\nThe users' instruction includes \"chart_type\" and \"chart_encodings\" that describe the visualization they want, and natural language instructions \"goal\" that describe what data is needed.\n\n**Important:**\n- NEVER make assumptions or judgments about a person's gender, biological sex, sexuality, religion, race, nationality, ethnicity, political stance, socioeconomic status, mental health, invisible disabilities, medical conditions, personality type, social impressions, emotional state, and cognitive state.\n- NEVER create formulas that could be used to discriminate based on age. Ageism of any form (explicit and implicit) is strictly prohibited.\n- If above issue occurs, generate columns with np.nan.\n\nConcretely, you should first refine users' goal and then create a python function in the output section based off the [CONTEXT] and [GOAL]:\n\n 1. First, refine users' [GOAL]. The main objective in this step is to check if \"chart_type\" and \"chart_encodings\" provided by the user are sufficient to achieve their \"goal\". Concretely:\n - based on the user's \"goal\" and \"chart_type\" and \"chart_encodings\", elaborate the goal into a \"detailed_instruction\".\n - \"display_instruction\" is a short verb phrase describing the users' goal. \n - it would be a short verbal description of user intent as a verb phrase (<12 words).\n - generate it based on detailed_instruction and the suggested chart_type and chart_encodings, but don't need to mention the chart details.\n - should capture key computation ideas: by reading the display, the user can understand the purpose and what's derived from the data.\n - if the user specification follows up the previous instruction, the 'display_instruction' should only describe how it builds up the previous instruction without repeating information from previous steps.\n - the phrase can be presented in different styles, e.g., question (what's xxx), instruction (show xxx), description, etc.\n - if you mention column names from the input or the output data, highlight the text in **bold**.\n * the column can either be a column in the input data, or a new column that will be computed in the output data.\n * the mention don't have to be exact match, it can be semantically matching, e.g., if you mentioned \"average score\" in the text while the column to be computed is \"Avg_Score\", you should still highlight \"**average score**\" in the text.\n - determine \"output_fields\", the desired fields that the output data should have to achieve the user's goal, it's a good idea to include intermediate fields here.\n - then decide \"chart_encodings\", which maps visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized, \n - the \"chart_encodings\" should be created to support the user's \"chart_type\".\n - first, determine whether the user has provided sufficient fields in \"chart_encodings\" that are needed to achieve their goal:\n - if the user's \"chart_encodings\" are sufficient, simply copy it.\n - if the user didn't provide sufficient fields in \"chart_encodings\", add missing fields in \"chart_encodings\" (ordered them based on whether the field will be used in x,y axes or legends);\n - \"chart_encodings\" should only include fields that will be visualized (do not include other intermediate fields from \"output_fields\") \n - when adding new fields to \"chart_encodings\", be efficient and add only a minimal number of fields that are needed to achive the user's goal. \n - generally, the total number of fields in \"chart_encodings\" should be no more than 3 for x,y,legend.\n - if the user's \"chart_encodings\" is sufficient but can be optimized, you can reorder encodings to visualize the data more effectively.\n - sometimes, user may provide instruction to update visualizations fields they provided. You should leverage the user's goal to resolve the conflict and decide the final \"chart_encodings\"\n - e.g., they may mention \"use B metric instead\" while A metric is in provided fields, in this case, you should update \"chart_encodings\" to update A metric with B metric.\n - guide on statistical analysis:\n - when the user asks for forecasting or regression analysis, you should consider the following:\n - the output should be a long format table where actual x, y pairs and predicted x, y pairs are included in the X, Y columns, they are differentiated with a third column \"is_predicted\" that is a boolean field.\n - i.e., if the user ask for forecasting based on two columns T and Y, the output should be three columns: T, Y, is_predicted, where\n - T, Y columns contain BOTH original values from the data and predicted values from the data.\n - is_predicted is a boolean field to indicate whether the x, y pairs are original values from the data or predicted / regression values from the data.\n - the recommended chart should be line chart (time series) or scatter plot (quantitative x, y)\n - if the user asks for forecasting, it's good to include predicted x, y pairs for both x in the original data and future x values (i.e., combine regression and forecasting results)\n - in this case, is_predicted should be of three values 'original', 'regression', 'forecasting'\n - when the user asks for clustering:\n - the output should be a long format table where actual x, y pairs with a third column \"cluster_id\" that indicates the cluster id of the data point.\n - the recommended chart should be scatter plot (quantitative x, y)\n \n Prepare the result in the following json format:\n\n```\n{\n \"detailed_instruction\": \"...\" // string, elaborate user instruction with details if the user\n \"display_instruction\": \"...\" // string, the short verb phrase describing the users' goal.\n \"output_fields\": [...] // string[], describe the desired output fields that the output data should have based on the user's goal, it's a good idea to preserve intermediate fields here (i.e., the goal of transformed data)\n \"chart_encodings\": {\n \"x\": \"\",\n \"y\": \"\",\n \"color\": \"\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\",\n ... // other visualization channels user used\n } // object: map visualization channels (x, y, color, size, opacity, facet, etc.) to a subset of \"output_fields\" that will be visualized.\n \"reason\": \"...\" // string, explain why this refinement is made\n}\n```\n\n 2. Then, write a python function based on the refined goal, the function input is a dataframe \"df\" (or multiple dataframes based on tables presented in the [CONTEXT] section) and the output is the transformed dataframe \"transformed_df\". \"transformed_df\" should contain all \"output_fields\" from the refined goal.\nThe python function must follow the template provided in [TEMPLATE], do not import any other libraries or modify function name. The function should be as simple as possible and easily readable.\nIf there is no data transformation needed based on \"output_fields\", the transformation function can simply \"return df\".\n\n[TEMPLATE]\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\nfrom sklearn import ... # import necessary libraries from sklearn if needed\n\ndef transform_data(df1, df2, ...): \n # complete the template here\n return transformed_df\n```\n\nnote: \n- if the user provided one table, then it should be `def transform_data(df1)`, if the user provided multiple tables, then it should be `def transform_data(df1, df2, ...)` and you should consider the join between tables to derive the output.\n- **VERY IMPORTANT** the number of arguments in the function must match the number of tables provided, and the order of arguments must match the order of tables provided.\n- try to use intuitive table names to refer to the input dataframes, for example, if the user provided two tables city and weather, you can use `transform_data(df_city, df_weather)` to refer to the two dataframes, as long as the number and order of the arguments match the number and order of the tables provided.\n- datetime objects handling:\n - if the output field is year, convert it to number, if it is year-month / year-month-day, convert it to string object (e.g., \"2020-01\" / \"2020-01-01\").\n - if the output is time only: convert hour to number if it's just the hour (e.g., 10), but convert hour:min or h:m:s to string object (e.g., \"10:30\", \"10:30:45\")\n - never return datetime object directly, convert it to either number (if it only contains year) or string so it's readable.\n\n 3. The output must only contain a json object representing the refined goal and a python code block representing the transformation code, do not add any extra text explanation.\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[GOAL]\n\nHow does **seasonal variation** in unemployment differ across **industries**?", "role": "user"}, {"content": "```json\n{\n \"mode\": \"infer\",\n \"recap\": \"Analyze how seasonal variation in unemployment differs across industries by examining the cyclical patterns in unemployment rates throughout the year for different industry sectors.\",\n \"display_instruction\": \"Compare seasonal unemployment patterns across **industries**\",\n \"recommendation\": \"To visualize seasonal variation across industries, we should calculate average unemployment rates by month for each industry series. This will reveal the typical seasonal patterns and allow comparison of how different industries experience seasonal fluctuations in unemployment throughout the year.\",\n \"output_fields\": [\"series\", \"month\", \"avg_rate\", \"month_name\"],\n \"chart_type\": \"line\",\n \"chart_encodings\": {\n \"x\": \"month\",\n \"y\": \"avg_rate\",\n \"color\": \"series\",\n \"size\": \"\",\n \"opacity\": \"\",\n \"facet\": \"\"\n }\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series (industry)\n transformed_df = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Add month name for better readability\n month_names = {\n 1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun',\n 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'\n }\n transformed_df['month_name'] = transformed_df['month'].map(month_names)\n \n return transformed_df\n```", "role": "assistant"}, {"content": "This is the result from the latest python code:\n\n avg_rate month month_name series\n0 13.763636 1 Jan Agriculture\n1 13.645455 2 Feb Agriculture\n2 13.830000 3 Mar Agriculture\n3 9.130000 4 Apr Agriculture\n4 7.100000 5 May Agriculture\n5 6.770000 6 Jun Agriculture\n6 7.010000 7 Jul Agriculture\n7 8.080000 8 Aug Agriculture\n8 7.090000 9 Sep Agriculture\n9 7.490000 10 Oct Agriculture\n......\n\nUpdate the code above based on the following instruction:\n\n{\n \"followup_instruction\": \"show the seasonal trends for top 3 industries that are most seaonal\",\n \"chart_type\": \"Custom Area\",\n \"chart_encodings\": {\n \"x\": \"month\",\n \"y\": \"avg_rate\",\n \"color\": \"year\",\n \"column\": \"series\"\n }\n}", "role": "user"}, {"content": "```json\n{\n \"detailed_instruction\": \"Identify the top 3 industries with the highest seasonal variation in unemployment rates, then show their seasonal trends over time with monthly unemployment rates for each year, faceted by industry.\",\n \"display_instruction\": \"Show seasonal trends for top 3 most seasonal **industries** over **years**\",\n \"output_fields\": [\"series\", \"year\", \"month\", \"avg_rate\"],\n \"chart_encodings\": {\n \"x\": \"month\",\n \"y\": \"avg_rate\",\n \"color\": \"year\",\n \"facet\": \"series\"\n },\n \"reason\": \"To identify the most seasonal industries, we need to calculate the seasonal variation (e.g., standard deviation or range of monthly rates) for each industry. Then select the top 3 industries with highest variation. The output should include year-month-series level data to show trends over time, with faceting by the top 3 most seasonal industries.\"\n}\n```\n\n```python\nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series\n monthly_avg = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Calculate seasonal variation (standard deviation across months) for each series\n seasonal_variation = monthly_avg.groupby('series')['avg_rate'].std().reset_index()\n seasonal_variation.columns = ['series', 'seasonal_std']\n \n # Get top 3 most seasonal industries\n top_3_seasonal = seasonal_variation.nlargest(3, 'seasonal_std')['series'].tolist()\n \n # Filter original data for top 3 industries and aggregate by year, month, series\n transformed_df = df1[df1['series'].isin(top_3_seasonal)].groupby(\n ['series', 'year', 'month'], as_index=False\n ).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Convert year to string for color encoding\n transformed_df['year'] = transformed_df['year'].astype(str)\n \n return transformed_df\n```", "role": "assistant"}], "trigger": {"tableId": "table-540763", "resultTableId": "table-53", "chart": {"id": "chart-1760745840104", "chartType": "Custom Area", "encodingMap": {"x": {"fieldID": "original--unemployment-across-industries--month"}, "y": {"fieldID": "concept-avg_rate-1760745549715"}, "x2": {}, "y2": {}, "color": {"fieldID": "original--unemployment-across-industries--year"}, "column": {"fieldID": "original--unemployment-across-industries--series"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-540763", "saved": false, "source": "trigger", "unread": false}, "interaction": [{"from": "user", "to": "datatransform-agent", "role": "instruction", "content": "show the seasonal trends for top 3 industries that are most seaonal", "displayContent": "Show seasonal trends for top 3 most seasonal **industries** over **years**"}]}, "explanation": {"agent": "CodeExplanationAgent", "code": "- Calculate the **average unemployment rate** (`avg_rate`) for each combination of **series** (industry) and **month** across all years\n- Compute the **seasonal variation** for each **series** by calculating the standard deviation of `avg_rate` across the 12 months\n- Identify the **top 3 industries** with the highest `seasonal_std` (most seasonal unemployment patterns)\n- Filter the original data to include only these **top 3 most seasonal industries**\n- Aggregate the filtered data by **series**, **year**, and **month**, computing the mean unemployment **rate** as `avg_rate`\n- Convert **year** to string format for categorical visualization purposes", "concepts": [{"explanation": "Standard deviation of average monthly unemployment rates across the 12 months for each industry. This metric quantifies the degree of seasonal variation in unemployment - higher values indicate stronger seasonal patterns (e.g., construction might have higher unemployment in winter months), while lower values indicate more stable year-round employment patterns. Mathematically: \\( \\text{seasonal\\_std} = \\sigma(\\text{avg\\_rate}_{\\text{month}=1..12}) \\)", "field": "seasonal_std"}], "dialog": [{"content": "You are a data scientist to help user explain code, \nso that a non-code can clearly understand what the code is doing, you are provided with a summary of the input data, and the transformation code.\n\nYour goal:\n1. You should generate a good itemized explanation of the code so that the reader can understand high-level steps of what the data transformation is doing.\n - Be very concise, and stay at a high-level. The reader doesn't understand code and does not want to learn exactly what the code is doing. They just want to learn what have been done from a logical level.\n - The explanation should be a markdown string that is a list of bullet points (with new lines), highlight constants, data fields, and important verbs.\n2. Generate a list of explanations for new fields (fields not from the input data) that introduce metrics/concepts that are not obvious from the code.\n - provide a declarative definition that explains the new field, use a mathematical notation if applicable.\n - only include new fields explanation of new metrics that are involved in computation (e.g., ROI, commerical_success_score)\n - *DO NOT* explain trivial new fields like \"Decade\" or \"Avg_Rating\", \"US_Sales\" that are self-explanatory.\n - Avoid explaining fields that are simple aggregate of fields in the original data (min_score, avg_value, count, etc.)\n - When a field involves mathematical computation, you can use LaTeX math notation in the explanation. Format mathematical expressions using:\n - Inline math: `\\( ... \\)` for formulas within text\n - Block math: `\\[ ... \\]` for standalone formulas\n - Examples: `\\( \\frac{\\text{Revenue}}{\\text{Cost}} \\)` for ratios, `\\[ \\text{Score} = \\text{Rating} \\times \\text{Worldwide\\_Gross} \\]` for formulas\n - note: when using underscores as part of the text, you need to escape them with a backslash, e.g., `\\_`\n - Note: don't use math notation for fields whose computation is trivial (use plain english), it will likely be confusing to the reader. \n Only use math notation for fields that can not be easilyexplained in plain english. Use it sparingly.\n3. If there are multiple fields that have the similar computation, you can explain them together in one explanation.\n - in \"field\", you can provide a list of fields in format of \"field1, field2, ...\"\n - in \"explanation\", you can provide a single explanation for the computation of the fields.\n - for example, if you have fields like \"Norm_Rating\", \"Norm_Gross\", \"Critical_Commercial_Score\", you can explain Norm_Rating, Norm_Gross together in one explanation and explain Critical_Commercial_Score in another explanation.\n4. If the code is about statistical analysis, you should explain the statistical analysis in the explanation as a concept named \"Statistical Analysis\" in the [CONCEPTS EXPLANATION] section.\n - explain how you model the data, which fields are used, how data processing is done, and what models are used.\n - suggest some other modeling approaches that can be used to analyze the data in the explanation as well.\n \nThe focus is to explain how new fields are computed, don't generate explanation for low-level actions like \"return\", \"load data\" etc. \n\nProvide the result in the following two sections:\n - first section is the code explanation that should be a markdown block explaining the code, in the [CODE EXPLANATION] section.\n - remember to highlight constants, data fields, and important verbs in the code explanation.\n - second section is the concepts explanation that should be a json block (start with ```json) in the [CONCEPTS EXPLANATION] section.\n\n[CODE EXPLANATION]\n\n...(explanation of the code)\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"...\",\n \"explanation\": \"...\"\n }\n]\n\n```\n", "role": "system"}, {"content": "[CONTEXT]\n\nHere are our datasets, here are their summaries and samples:\n\n# table1 (unemployment_across_industries)\n\n## fields\n\t*series -- type: object, values: Agriculture, Business services, Construction, ..., Other, Self-employed, Transportation and Utilities, Wholesale and Retail Trade\n\t*year -- type: int64, values: 2000, 2001, 2002, ..., 2007, 2008, 2009, 2010\n\t*month -- type: int64, values: 1, 2, 3, ..., 9, 10, 11, 12\n\t*count -- type: int64, values: 2, 8, 9, ..., 2071, 2154, 2194, 2440\n\t*rate -- type: float64, values: 0.3, 1.3, 1.5, ..., 21.4, 22.7, 24.7, 27.1\n\t*date -- type: object, values: 2000-01-01T08:00:00.000Z, 2000-02-01T08:00:00.000Z, 2000-03-01T08:00:00.000Z, ..., 2009-11-01T07:00:00.000Z, 2009-12-01T08:00:00.000Z, 2010-01-01T08:00:00.000Z, 2010-02-01T08:00:00.000Z\n\n## sample\n series year month count rate date\n0 Government 2000 1 430 2.1 2000-01-01T08:00:00.000Z\n1 Government 2000 2 409 2.0 2000-02-01T08:00:00.000Z\n2 Government 2000 3 311 1.5 2000-03-01T08:00:00.000Z\n3 Government 2000 4 269 1.3 2000-04-01T08:00:00.000Z\n4 Government 2000 5 370 1.9 2000-05-01T07:00:00.000Z\n......\n\n\n\n\n[CODE]\n\nhere is the transformation code: \nimport pandas as pd\nimport collections\nimport numpy as np\n\ndef transform_data(df1):\n # Calculate average unemployment rate by month and series\n monthly_avg = df1.groupby(['series', 'month'], as_index=False).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Calculate seasonal variation (standard deviation across months) for each series\n seasonal_variation = monthly_avg.groupby('series')['avg_rate'].std().reset_index()\n seasonal_variation.columns = ['series', 'seasonal_std']\n \n # Get top 3 most seasonal industries\n top_3_seasonal = seasonal_variation.nlargest(3, 'seasonal_std')['series'].tolist()\n \n # Filter original data for top 3 industries and aggregate by year, month, series\n transformed_df = df1[df1['series'].isin(top_3_seasonal)].groupby(\n ['series', 'year', 'month'], as_index=False\n ).agg({\n 'rate': 'mean'\n }).rename(columns={'rate': 'avg_rate'})\n \n # Convert year to string for color encoding\n transformed_df['year'] = transformed_df['year'].astype(str)\n \n return transformed_df\n\n\n[EXPLANATION]\n", "role": "user"}, {"content": "[CODE EXPLANATION]\n\n- Calculate the **average unemployment rate** (`avg_rate`) for each combination of **series** (industry) and **month** across all years\n- Compute the **seasonal variation** for each **series** by calculating the standard deviation of `avg_rate` across the 12 months\n- Identify the **top 3 industries** with the highest `seasonal_std` (most seasonal unemployment patterns)\n- Filter the original data to include only these **top 3 most seasonal industries**\n- Aggregate the filtered data by **series**, **year**, and **month**, computing the mean unemployment **rate** as `avg_rate`\n- Convert **year** to string format for categorical visualization purposes\n\n[CONCEPTS EXPLANATION]\n\n```json\n[\n {\n \"field\": \"seasonal_std\",\n \"explanation\": \"Standard deviation of average monthly unemployment rates across the 12 months for each industry. This metric quantifies the degree of seasonal variation in unemployment - higher values indicate stronger seasonal patterns (e.g., construction might have higher unemployment in winter months), while lower values indicate more stable year-round employment patterns. Mathematically: \\\\( \\\\text{seasonal\\\\_std} = \\\\sigma(\\\\text{avg\\\\_rate}_{\\\\text{month}=1..12}) \\\\)\"\n }\n]\n```", "role": "assistant"}], "status": "ok"}, "status": "completed"}, "anchored": false, "attachedMetadata": ""}], "charts": [{"id": "chart-1760745839180", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--unemployment-across-industries--month"}, "y": {"fieldID": "concept-avg_rate-1760745549715"}, "color": {"fieldID": "original--unemployment-across-industries--year"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"fieldID": "original--unemployment-across-industries--series"}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-53", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760745566172", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--unemployment-across-industries--date"}, "y": {"fieldID": "original--unemployment-across-industries--rate"}, "color": {"fieldID": "original--unemployment-across-industries--series"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-570117", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760745556213", "chartType": "Bar Chart", "encodingMap": {"x": {"fieldID": "original--unemployment-across-industries--series"}, "y": {"fieldID": "concept-rate_increase-1760745562128-0.39751734782017045"}, "color": {"channel": "color", "bin": false}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-552276", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760745546664", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--unemployment-across-industries--month"}, "y": {"fieldID": "concept-avg_rate-1760745549715"}, "color": {"fieldID": "original--unemployment-across-industries--series"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-540763", "saved": false, "source": "user", "unread": false}, {"id": "chart-1760745539559", "chartType": "Line Chart", "encodingMap": {"x": {"fieldID": "original--unemployment-across-industries--date"}, "y": {"fieldID": "original--unemployment-across-industries--rate"}, "color": {"fieldID": "original--unemployment-across-industries--series"}, "opacity": {"channel": "opacity", "bin": false}, "column": {"channel": "column", "bin": false}, "row": {"channel": "row", "bin": false}}, "tableRef": "table-544555", "saved": false, "source": "user", "unread": false}], "conceptShelfItems": [{"id": "concept-rate_2008-1760745562128-0.09504269144469069", "name": "rate_2008", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-rate_2009-1760745562128-0.28775545107582257", "name": "rate_2009", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-rate_increase-1760745562128-0.39751734782017045", "name": "rate_increase", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-avg_rate-1760745549715", "name": "avg_rate", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "concept-month_name-1760745549715", "name": "month_name", "type": "auto", "description": "", "source": "custom", "tableRef": "custom", "temporary": true}, {"id": "original--unemployment-across-industries--series", "name": "series", "type": "string", "source": "original", "description": "", "tableRef": "unemployment-across-industries"}, {"id": "original--unemployment-across-industries--year", "name": "year", "type": "integer", "source": "original", "description": "", "tableRef": "unemployment-across-industries"}, {"id": "original--unemployment-across-industries--month", "name": "month", "type": "integer", "source": "original", "description": "", "tableRef": "unemployment-across-industries"}, {"id": "original--unemployment-across-industries--count", "name": "count", "type": "integer", "source": "original", "description": "", "tableRef": "unemployment-across-industries"}, {"id": "original--unemployment-across-industries--rate", "name": "rate", "type": "number", "source": "original", "description": "", "tableRef": "unemployment-across-industries"}, {"id": "original--unemployment-across-industries--date", "name": "date", "type": "date", "source": "original", "description": "", "tableRef": "unemployment-across-industries"}], "messages": [{"timestamp": 1760831348951, "type": "success", "component": "data formulator", "value": "Successfully loaded Unemployment"}], "displayedMessageIdx": 0, "viewMode": "report", "chartSynthesisInProgress": [], "config": {"formulateTimeoutSeconds": 60, "maxRepairAttempts": 1, "defaultChartWidth": 300, "defaultChartHeight": 300}, "dataCleanBlocks": [], "cleanInProgress": false, "generatedReports": [{"id": "report-1760831469874-4137", "content": "# The 2008-2010 Recession Hit Construction Hardest\n\nDuring the 2008-2010 financial crisis, unemployment surged dramatically across key industries. Construction workers bore the brunt, with unemployment rates skyrocketing from 11% to a staggering 27% by early 2010—nearly tripling in just two years.\n\n[IMAGE(chart-1760745566172)]\n\nManufacturing and Mining sectors also suffered significant job losses, though less severe than Construction. Manufacturing unemployment doubled from 5% to 13%, while Mining spiked from under 4% to 16% before showing signs of recovery by 2010.\n\n**In summary**, the recession's impact was far from uniform: Construction faced catastrophic job losses, suggesting the housing market collapse disproportionately affected building trades. What factors enabled Mining's earlier recovery? How can vulnerable sectors build resilience against future economic shocks?", "style": "short note", "selectedChartIds": ["chart-1760745566172"], "createdAt": 1760831476855, "status": "completed", "title": "The 2008-2010 Recession Hit Construction Hardest", "anchorChartId": "chart-1760745566172"}, {"id": "report-1760831405296-2186", "content": "# Seasonal Employment Patterns Reveal Industry Vulnerabilities Across Economic Cycles\n\nThe unemployment landscape across U.S. industries from 2000-2010 reveals striking seasonal patterns and differential impacts during economic downturns. Analysis of 14 industry sectors demonstrates that certain industries face predictable cyclical challenges while others maintain relative stability throughout the year.\n\n[IMAGE(chart-1760745546664)]\n\n**Cross-industry seasonal dynamics** show distinct unemployment patterns throughout the calendar year. Key findings include:\n\n- **Agriculture** experiences the most dramatic seasonal swings, with unemployment rates peaking above 13% in winter months (January-March) and dropping to approximately 7% during summer harvest seasons\n- **Construction** exhibits similar seasonality, with rates near 13% in January declining to 7-8% during peak building months (May-September)\n- **Government and Finance** sectors demonstrate remarkable stability, maintaining unemployment rates between 2-4% year-round, suggesting these sectors are largely insulated from seasonal fluctuations\n\n[IMAGE(chart-1760745839180)]\n\n**Year-over-year trends for the most seasonal industries** reveal how economic conditions compound seasonal effects. The 2008-2009 recession created unprecedented spikes:\n\n- Construction unemployment surged from typical winter peaks of 10-13% to over 25% by early 2010\n- Agriculture showed dramatic year-to-year variation, with 2009-2010 winter unemployment reaching 19-21%, nearly double the levels seen in 2000\n- Mining and Extraction maintained lower overall rates (2-7%) but still exhibited seasonal patterns, with late-year increases across most periods\n\n**In summary**, industries reliant on weather-dependent operations face significant seasonal unemployment challenges, which are dramatically amplified during economic recessions. While sectors like Government and Finance maintain stable employment year-round, Agriculture and Construction workers experience predictable winter unemployment that can more than double during economic downturns. These patterns suggest the need for targeted workforce development and social safety net programs that account for both seasonal and cyclical employment disruptions. Further investigation should examine whether these patterns have evolved post-2010 and assess the effectiveness of countercyclical policies in stabilizing employment in vulnerable sectors.", "style": "executive summary", "selectedChartIds": ["chart-1760745546664", "chart-1760745839180"], "createdAt": 1760831421331, "status": "completed", "title": "Seasonal Employment Patterns Reveal Industry Vulnerabilities Across Economic Cycles", "anchorChartId": "chart-1760745546664"}, {"id": "report-1760831364867-9457", "content": "# Unemployment Surge Across Industries: The 2008-2009 Economic Crisis Impact\n\nThe decade from 2000 to 2010 witnessed significant volatility in unemployment rates across major industry sectors, with a dramatic escalation during the 2008-2009 financial crisis that fundamentally reshaped the American labor market.\n\n[IMAGE(chart-1760745539559)]\n\nThe longitudinal analysis reveals that while most industries maintained relatively stable unemployment rates between 2000 and 2007—typically fluctuating between 2% and 8%—the landscape changed dramatically beginning in late 2008. **Construction** emerged as the most severely impacted sector, with unemployment rates soaring to approximately **27% by early 2010**. Similarly, **Agriculture** experienced unprecedented spikes reaching above **22%**, demonstrating the crisis's far-reaching effects beyond traditional white-collar sectors. Even traditionally stable sectors like Government and Finance, which historically maintained rates below 3%, saw significant increases, reaching 5-7% during the peak crisis period.\n\n[IMAGE(chart-1760745556213)]\n\nExamining the year-over-year impact between 2008 and 2009 reveals the crisis's differential industry effects:\n\n- **Mining and Extraction** and **Construction** led all sectors with unemployment rate increases exceeding **8.5 percentage points**\n- **Manufacturing** and **Agriculture** followed with increases above **5 percentage points**\n- **Business services** and **Information** sectors experienced moderate increases of approximately **4 percentage points**\n- **Government** showed the smallest increase at just **1.2 percentage points**, demonstrating relative stability during economic turbulence\n\n**In summary**, the 2008-2009 financial crisis created an unprecedented unemployment shock across American industries, with resource extraction, construction, and manufacturing bearing the heaviest burden. The data reveals that sectors tied to physical production and cyclical economic activity experienced the most severe dislocations, while government employment remained comparatively insulated. Key follow-up questions include: What were the long-term recovery trajectories for these industries post-2010? Did the workers displaced from heavily impacted sectors successfully transition to more stable industries? How did policy interventions differentially affect recovery across these sectors?", "style": "executive summary", "selectedChartIds": ["chart-1760745556213", "chart-1760745539559"], "createdAt": 1760831379076, "status": "completed", "title": "Unemployment Surge Across Industries: The 2008-2009 Economic Crisis Impact", "anchorChartId": "chart-1760745556213"}], "currentReport": {"id": "report-1760750575650-2619", "content": "# Hollywood's Billion-Dollar Hitmakers\n\n*Avatar* stands alone—earning over $2.5B in profit, dwarfing all competition. Action and Adventure films dominate the most profitable titles, with franchises like *Jurassic Park*, *The Dark Knight*, and *Lord of the Rings* proving blockbuster formulas work.\n\n\"Chart\"\n\nSteven Spielberg leads all directors with $7.2B in total profit across his career, showcasing remarkable consistency with hits spanning decades—from *Jurassic Park* to *E.T.* His nearest competitors trail by billions, underlining his unmatched commercial impact.\n\n\"Chart\"\n\n**In summary**, mega-budget Action and Adventure films generate extraordinary returns when they succeed, and a handful of elite directors—led by Spielberg—have mastered the formula for sustained box office dominance.", "style": "short note", "selectedChartIds": ["chart-1760743347871", "chart-1760743768741"], "chartImages": {}, "createdAt": 1760750584189, "title": "Report - 10/17/2025"}, "activeChallenges": [], "_persist": {"version": -1, "rehydrated": true}, "draftNodes": [], "focusedId": {"type": "report", "reportId": "report-1760831469874-4137"}} \ No newline at end of file diff --git a/py-src/data_formulator/agent_routes.py b/py-src/data_formulator/agent_routes.py index a05882c6..6a675e39 100644 --- a/py-src/data_formulator/agent_routes.py +++ b/py-src/data_formulator/agent_routes.py @@ -7,7 +7,6 @@ import os import mimetypes import re -import traceback mimetypes.add_type('application/javascript', '.js') mimetypes.add_type('application/javascript', '.mjs') @@ -23,9 +22,9 @@ from data_formulator.agents.agent_data_rec import DataRecAgent from data_formulator.agents.agent_sort_data import SortDataAgent -from data_formulator.auth import get_identity_id -from data_formulator.code_signing import sign_result, verify_code, MAX_CODE_SIZE -from data_formulator.datalake.workspace import Workspace, WorkspaceWithTempData +from data_formulator.security.auth import get_identity_id +from data_formulator.security.code_signing import sign_result, verify_code, MAX_CODE_SIZE +from data_formulator.datalake.workspace import Workspace from data_formulator.workspace_factory import get_workspace from data_formulator.agents.agent_data_load import DataLoadAgent from data_formulator.agents.agent_data_clean_stream import DataCleanAgentStream @@ -34,135 +33,157 @@ from data_formulator.agents.agent_interactive_explore import InteractiveExploreAgent from data_formulator.agents.agent_report_gen import ReportGenAgent from data_formulator.agents.client_utils import Client +from data_formulator.model_registry import model_registry from data_formulator.agents.data_agent import DataAgent +from data_formulator.agents.agent_language import build_language_instruction +from data_formulator.security.sanitize import classify_llm_error # Get logger for this module (logging config done in app.py) logger = logging.getLogger(__name__) -def get_temp_tables(workspace, input_tables: list[dict]) -> list[dict]: - """ - Determine which input tables are temp tables (not persisted in the workspace datalake). - - Args: - workspace: The user's workspace instance - input_tables: List of table dicts with 'name' and 'rows' keys - - Returns: - List of table dicts that don't exist in the workspace (temp tables) +def get_language_instruction(*, mode: str = "full") -> str: + """Read the UI language from the Accept-Language header and build the prompt instruction. + + mode: "full" for text-heavy agents, "compact" for code-generation agents. """ - existing_tables = set(workspace.list_tables()) - return [table for table in input_tables if table.get('name') not in existing_tables] + lang = request.headers.get('Accept-Language', 'en').split(',')[0].split('-')[0].strip().lower() + return build_language_instruction(lang, mode=mode) + agent_bp = Blueprint('agent', __name__, url_prefix='/api/agent') + +@agent_bp.after_request +def _set_cors(response): + """Set CORS headers from server configuration. + + By default no ``Access-Control-Allow-Origin`` header is emitted + (same-origin only). To allow cross-origin requests set the + ``CORS_ORIGIN`` env-var (e.g. ``CORS_ORIGIN=https://my-embed-host``). + Use ``CORS_ORIGIN=*`` only for development / fully trusted networks. + """ + origin = os.environ.get('CORS_ORIGIN', '') + if origin: + response.headers['Access-Control-Allow-Origin'] = origin + response.headers['Access-Control-Allow-Methods'] = 'GET, POST, OPTIONS' + response.headers['Access-Control-Allow-Headers'] = 'Content-Type' + return response + @agent_bp.errorhandler(Exception) def handle_agent_error(e): """Catch-all error handler to ensure JSON responses instead of HTML error pages.""" - logger.error(f"Unhandled error in agent route: {e}") - logger.error(traceback.format_exc()) + logger.error("Unhandled error in agent route", exc_info=e) response = flask.jsonify({ "status": "error", - "error_message": sanitize_model_error(str(e)), + "error_message": "An unexpected error occurred", "results": [], "result": [] }) - response.headers.add('Access-Control-Allow-Origin', '*') return response, 500 def get_client(model_config): + # For global models, resolve real credentials from the server-side registry. + # The frontend only knows the model id; the api_key never leaves the server. + if model_config.get("is_global"): + real_config = model_registry.get_config(model_config["id"]) + if real_config: + model_config = real_config + for key in model_config: - model_config[key] = model_config[key].strip() + if isinstance(model_config[key], str): + model_config[key] = model_config[key].strip() + + # Validate user-provided api_base against the allowlist (SSRF protection). + # Global models are trusted (their api_base comes from server env vars). + if not model_config.get("is_global"): + from data_formulator.security.url_allowlist import validate_api_base + validate_api_base(model_config.get("api_base")) client = Client( model_config["endpoint"], model_config["model"], - model_config["api_key"] if "api_key" in model_config else None, - html.escape(model_config["api_base"]) if "api_base" in model_config else None, - model_config["api_version"] if "api_version" in model_config else None) + model_config.get("api_key") or None, + html.escape(model_config["api_base"]) if model_config.get("api_base") else None, + model_config.get("api_version") or None, + ) return client +@agent_bp.route('/list-global-models', methods=['GET', 'POST']) +def list_global_models(): + """Return all globally configured models instantly, without connectivity checks. + + The frontend calls this first to render the model list immediately (with a + 'checking' status), then calls /check-available-models to get real statuses. + """ + public_models = model_registry.list_public() + return jsonify(public_models) + + @agent_bp.route('/check-available-models', methods=['GET', 'POST']) def check_available_models(): - results = [] - - # Define configurations for different providers - providers = ['openai', 'azure', 'anthropic', 'gemini', 'ollama'] + """ + Return all globally configured models with their connectivity status. - for provider in providers: - # Skip if provider is not enabled - if not os.getenv(f"{provider.upper()}_ENABLED", "").lower() == "true": - continue - - api_key = os.getenv(f"{provider.upper()}_API_KEY", "") - api_base = os.getenv(f"{provider.upper()}_API_BASE", "") - api_version = os.getenv(f"{provider.upper()}_API_VERSION", "") - models = os.getenv(f"{provider.upper()}_MODELS", "") - - if not (api_key or api_base): - continue - - if not models: - continue - - # Build config for each model - for model in models.split(","): - model = model.strip() - if not model: - continue - - model_config = { - "id": f"{provider}-{model}-{api_key}-{api_base}-{api_version}", - "endpoint": provider, - "model": model, - "api_key": api_key, - "api_base": api_base, - "api_version": api_version - } - - # Retry with backoff — DefaultAzureCredential and other providers - # may need a moment to initialize on cold start. - max_retries = 3 - for attempt in range(max_retries): + Connectivity checks run in parallel (ThreadPoolExecutor) so the total + wall-clock time equals the slowest single model, not the sum of all. + Sensitive credentials (api_key) are never sent to the client. + """ + import time + from concurrent.futures import ThreadPoolExecutor, as_completed + + all_public = model_registry.list_public() + logger.info("=" * 60) + logger.info(f"[check-available-models] Checking {len(all_public)} global models") + for p in all_public: + logger.info(f" -> {p['id']} (endpoint={p['endpoint']}, model={p['model']}, api_base={p['api_base']})") + overall_start = time.time() + + def _check_one(public_info: dict) -> dict: + model_id = public_info["id"] + t0 = time.time() + full_config = model_registry.get_config(model_id) + status = "disconnected" + error = None + + try: + client = get_client(full_config) + logger.info(f" [{model_id}] Sending connectivity ping (max_tokens=3)...") + client.ping(timeout=10) + status = "connected" + logger.info(f" [{model_id}] Connected ({time.time() - t0:.1f}s)") + except Exception as e: + elapsed = time.time() - t0 + logger.warning(f" [{model_id}] Failed ({elapsed:.1f}s): {type(e).__name__}: {e}") + error = classify_llm_error(e) + + return {**public_info, "status": status, "error": error} + + results = [] + if all_public: + with ThreadPoolExecutor(max_workers=min(len(all_public), 8)) as executor: + futures = {executor.submit(_check_one, p): p["id"] for p in all_public} + for future in as_completed(futures): try: - client = get_client(model_config) - response = client.get_completion( - messages=[ - {"role": "system", "content": "You are a helpful assistant."}, - {"role": "user", "content": "Respond 'I can hear you.' if you can hear me."}, - ] - ) - - if "I can hear you." in response.choices[0].message.content: - results.append(model_config) - break # success or non-matching response — don't retry + results.append(future.result()) except Exception as e: - if attempt < max_retries - 1: - import time - wait = 2 ** attempt # 1s, 2s - logger.warning(f"Retrying {provider}/{model} in {wait}s (attempt {attempt+1}/{max_retries}): {e}") - time.sleep(wait) - else: - logger.error(f"Error testing {provider} model {model} after {max_retries} attempts: {e}") - - return json.dumps(results) - -def sanitize_model_error(error_message: str) -> str: - """Sanitize model API error messages before sending to client.""" - # HTML escape the message - message = html.escape(error_message) - - # Remove any potential API keys that might be in the error - message = re.sub(r'(api[-_]?key|api[-_]?token)[=:]\s*[^\s&]+', r'\1=', message, flags=re.IGNORECASE) - - # Keep only the essential error info - if len(message) > 500: # Truncate very long messages - message = message[:500] + "..." + model_id = futures[future] + logger.error(f" [{model_id}] Thread exception: {e}") + pub = next(p for p in all_public if p["id"] == model_id) + results.append({**pub, "status": "disconnected", "error": "Check thread exception"}) + + id_order = [p["id"] for p in all_public] + results.sort(key=lambda r: id_order.index(r["id"])) + + total_elapsed = time.time() - overall_start + connected = sum(1 for r in results if r["status"] == "connected") + logger.info(f"[check-available-models] Done: {connected}/{len(results)} connected, total {total_elapsed:.1f}s") + logger.info("=" * 60) - return message + return jsonify(results) @agent_bp.route('/test-model', methods=['GET', 'POST']) def test_model(): @@ -194,17 +215,16 @@ def test_model(): "message": "" } except Exception as e: - print(f"Error: {e}") - logger.info(f"Error: {e}") + logger.exception(f"Error testing model {content['model'].get('id', '')}") result = { "model": content['model'], "status": 'error', - "message": sanitize_model_error(str(e)), + "message": classify_llm_error(e), } else: result = {'status': 'error'} - return json.dumps(result) + return jsonify(result) @agent_bp.route('/process-data-on-load', methods=['GET', 'POST']) def process_data_on_load_request(): @@ -226,12 +246,11 @@ def process_data_on_load_request(): # Check if input table is in workspace, if not add as temp data input_tables = [{"name": input_data.get("name"), "rows": input_data.get("rows", [])}] - temp_data = get_temp_tables(workspace, input_tables) - with WorkspaceWithTempData(workspace, temp_data) as workspace: - agent = DataLoadAgent(client=client, workspace=workspace) - candidates = agent.run(content["input_data"]) - candidates = [c['content'] for c in candidates if c['status'] == 'ok'] + language_instruction = get_language_instruction(mode="compact") + agent = DataLoadAgent(client=client, workspace=workspace, language_instruction=language_instruction) + candidates = agent.run(content["input_data"]) + candidates = [c['content'] for c in candidates if c['status'] == 'ok'] response = flask.jsonify({ "status": "ok", "token": token, "result": candidates }) except Exception as e: @@ -240,7 +259,6 @@ def process_data_on_load_request(): else: response = flask.jsonify({ "token": -1, "status": "error", "result": [] }) - response.headers.add('Access-Control-Allow-Origin', '*') return response @@ -256,7 +274,8 @@ def generate(): logger.debug(f" model: {content['model']}") - agent = DataCleanAgentStream(client=client) + language_instruction = get_language_instruction() + agent = DataCleanAgentStream(client=client, language_instruction=language_instruction) try: for chunk in agent.stream(content.get('prompt', ''), content.get('artifacts', []), content.get('dialog', [])): @@ -275,23 +294,18 @@ def generate(): "status": "error", "result": 'unable to process data clean request' } - yield '\n' + json.dumps(error_data) + '\n' + yield '\n' + json.dumps(error_data, ensure_ascii=False) + '\n' else: error_data = { "token": -1, "status": "error", "result": "Invalid request format" } - yield '\n' + json.dumps(error_data) + '\n' + yield '\n' + json.dumps(error_data, ensure_ascii=False) + '\n' response = Response( stream_with_context(generate()), mimetype='application/json', - headers={ - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Methods': 'GET, POST, OPTIONS', - 'Access-Control-Allow-Headers': 'Content-Type' - } ) return response @@ -313,13 +327,11 @@ def sort_data_request(): candidates = candidates if candidates != None else [] response = flask.jsonify({ "status": "ok", "token": token, "result": candidates }) except Exception as e: - logger.error(f"Error in sort-data: {e}") - logger.error(traceback.format_exc()) - response = flask.jsonify({ "token": token, "status": "error", "result": [], "error_message": sanitize_model_error(str(e)) }) + logger.error("Error in sort-data", exc_info=e) + response = flask.jsonify({ "token": token, "status": "error", "result": [], "error_message": classify_llm_error(e) }) else: response = flask.jsonify({ "token": -1, "status": "error", "result": [] }) - response.headers.add('Access-Control-Allow-Origin', '*') return response @agent_bp.route('/derive-data', methods=['GET', 'POST']) @@ -361,38 +373,57 @@ def derive_data(): try: identity_id = get_identity_id() workspace = get_workspace(identity_id) - temp_data = get_temp_tables(workspace, input_tables) max_display_rows = current_app.config['CLI_ARGS']['max_display_rows'] - with WorkspaceWithTempData(workspace, temp_data) as workspace: - if mode == "recommendation": - # Use unified Python agent for recommendations - agent = DataRecAgent(client=client, workspace=workspace, agent_coding_rules=agent_coding_rules, max_display_rows=max_display_rows) - results = agent.run(input_tables, instruction, n=1, prev_messages=prev_messages) - else: - # Use unified Python agent that generates Python scripts with DuckDB + pandas - agent = DataTransformationAgent(client=client, workspace=workspace, agent_coding_rules=agent_coding_rules, max_display_rows=max_display_rows) - results = agent.run(input_tables, instruction, prev_messages, - current_visualization=current_visualization, expected_visualization=expected_visualization) + language_instruction = get_language_instruction(mode="compact") - repair_attempts = 0 - while results[0]['status'] == 'error' and repair_attempts < max_repair_attempts: - error_message = results[0]['content'] - logger.warning(f"[derive-data] Code generation failed (attempt {repair_attempts + 1}/{max_repair_attempts}), mode={mode}. Error: {error_message}") - new_instruction = f"We run into the following problem executing the code, please fix it:\n\n{error_message}\n\nPlease think step by step, reflect why the error happens and fix the code so that no more errors would occur." + model_info = { + "model": content['model'].get("model", ""), + "endpoint": content['model'].get("endpoint", ""), + "api_base": content['model'].get("api_base", ""), + } - prev_dialog = results[0]['dialog'] + if mode == "recommendation": + agent = DataRecAgent(client=client, workspace=workspace, agent_coding_rules=agent_coding_rules, language_instruction=language_instruction, max_display_rows=max_display_rows, model_info=model_info) + results = agent.run(input_tables, instruction, n=1, prev_messages=prev_messages) + else: + agent = DataTransformationAgent(client=client, workspace=workspace, agent_coding_rules=agent_coding_rules, language_instruction=language_instruction, max_display_rows=max_display_rows, model_info=model_info) + results = agent.run(input_tables, instruction, prev_messages, + current_visualization=current_visualization, expected_visualization=expected_visualization) + + repair_attempts = 0 + while ( + isinstance(results, list) + and len(results) > 0 + and results[0].get('status') in ('error', 'other error') + and repair_attempts < max_repair_attempts + ): + error_message = results[0].get('content', 'Unknown error') + logger.warning(f"[derive-data] Code generation failed (attempt {repair_attempts + 1}/{max_repair_attempts}), mode={mode}. Error: {error_message}") + new_instruction = f"We run into the following problem executing the code, please fix it:\n\n{error_message}\n\nPlease think step by step, reflect why the error happens and fix the code so that no more errors would occur." + + prev_dialog = results[0].get('dialog', []) + try: if mode == "transform": results = agent.followup(input_tables, prev_dialog, [], new_instruction, n=1) if mode == "recommendation": results = agent.followup(input_tables, prev_dialog, [], new_instruction, n=1) - - repair_attempts += 1 - logger.warning(f"[derive-data] Repair attempt {repair_attempts}/{max_repair_attempts} result: {results[0]['status']}") - - if repair_attempts > 0: - logger.warning(f"[derive-data] Finished repair loop after {repair_attempts} attempt(s). Final status: {results[0]['status']}") + except Exception as followup_exc: + logger.exception("derive_data followup failed") + results = [{ + "status": "error", + "content": classify_llm_error(followup_exc), + "code": "", + "dialog": [], + }] + break + + repair_attempts += 1 + logger.warning(f"[derive-data] Repair attempt {repair_attempts}/{max_repair_attempts} result: {results[0].get('status', 'unknown')}") + + if repair_attempts > 0: + logger.warning(f"[derive-data] Finished repair loop after {repair_attempts} attempt(s). Final status: {results[0].get('status', 'unknown')}") # Sign code in each result so the frontend can send it back # for re-execution during data refresh with proof of authenticity. @@ -401,13 +432,11 @@ def derive_data(): response = flask.jsonify({ "token": token, "status": "ok", "results": results }) except Exception as e: - logger.error(f"Error in derive-data: {e}") - logger.error(traceback.format_exc()) - response = flask.jsonify({ "token": token, "status": "error", "results": [], "error_message": sanitize_model_error(str(e)) }) + logger.error("Error in derive-data", exc_info=e) + response = flask.jsonify({ "token": token, "status": "error", "results": [], "error_message": classify_llm_error(e) }) else: response = flask.jsonify({ "token": "", "status": "error", "results": [] }) - response.headers.add('Access-Control-Allow-Origin', '*') return response @agent_bp.route('/data-agent-streaming', methods=['GET', 'POST']) @@ -458,60 +487,62 @@ def generate(): "token": token, "status": "error", "result": {"type": "error", "error_message": "Identity ID required"}, - }) + '\n' + }, ensure_ascii=False) + '\n' return workspace = get_workspace(identity_id) - temp_data = get_temp_tables(workspace, input_tables) if input_tables else None + + language_instruction = get_language_instruction(mode="full") + rec_language_instruction = get_language_instruction(mode="compact") try: - with WorkspaceWithTempData(workspace, temp_data) as ws: - agent = DataAgent( - client=client, - workspace=ws, - agent_exploration_rules=agent_exploration_rules, - agent_coding_rules=agent_coding_rules, - max_iterations=max_iterations, - max_repair_attempts=max_repair_attempts, - ) - - # Build trajectory for resume or fresh start - trajectory = None - if resume_trajectory and clarification_response: - # Append the user's clarification to the saved trajectory - trajectory = list(resume_trajectory) - trajectory.append({ - "role": "user", - "content": f"[USER CLARIFICATION]\n\n{clarification_response}", - }) - logger.debug(f"== resuming with clarification ===> {clarification_response}") - - for event in agent.run( - input_tables=input_tables, - user_question=user_question, - conversation_history=conversation_history, - trajectory=trajectory, - completed_step_count=completed_step_count, - ): - yield json.dumps({ - "token": token, - "status": "ok", - "result": event, - }) + '\n' - - # Stop streaming after terminal events - if event.get("type") in ("completion", "clarify"): - break + agent = DataAgent( + client=client, + workspace=workspace, + agent_exploration_rules=agent_exploration_rules, + agent_coding_rules=agent_coding_rules, + language_instruction=language_instruction, + rec_language_instruction=rec_language_instruction, + max_iterations=max_iterations, + max_repair_attempts=max_repair_attempts, + ) + + # Build trajectory for resume or fresh start + trajectory = None + if resume_trajectory and clarification_response: + # Append the user's clarification to the saved trajectory + trajectory = list(resume_trajectory) + trajectory.append({ + "role": "user", + "content": f"[USER CLARIFICATION]\n\n{clarification_response}", + }) + logger.debug(f"== resuming with clarification ===> {clarification_response}") + + for event in agent.run( + input_tables=input_tables, + user_question=user_question, + conversation_history=conversation_history, + trajectory=trajectory, + completed_step_count=completed_step_count, + ): + yield json.dumps({ + "token": token, + "status": "ok", + "result": event, + }, ensure_ascii=False) + '\n' + + # Stop streaming after terminal events + if event.get("type") in ("completion", "clarify"): + break except Exception as e: - logger.error(f"Error in data-agent-streaming: {e}") - logger.error(traceback.format_exc()) + logger.error("Error in data-agent-streaming", exc_info=e) yield json.dumps({ "token": token, "status": "error", "result": None, - "error_message": sanitize_model_error(str(e)), - }) + '\n' + "error_message": classify_llm_error(e), + }, ensure_ascii=False) + '\n' logger.setLevel(logging.WARNING) @@ -521,16 +552,11 @@ def generate(): "status": "error", "result": None, "error_message": "Invalid request format", - }) + '\n' + }, ensure_ascii=False) + '\n' response = Response( stream_with_context(generate()), mimetype='application/json', - headers={ - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Methods': 'GET, POST, OPTIONS', - 'Access-Control-Allow-Headers': 'Content-Type', - } ) return response @@ -568,28 +594,49 @@ def refine_data(): try: identity_id = get_identity_id() workspace = get_workspace(identity_id) - temp_data = get_temp_tables(workspace, input_tables) max_display_rows = current_app.config['CLI_ARGS']['max_display_rows'] - with WorkspaceWithTempData(workspace, temp_data) as workspace: - # Use unified Python agent for followup transformations - agent = DataTransformationAgent(client=client, workspace=workspace, agent_coding_rules=agent_coding_rules, max_display_rows=max_display_rows) - results = agent.followup(input_tables, dialog, latest_data_sample, new_instruction, n=1, - current_visualization=current_visualization, expected_visualization=expected_visualization) + language_instruction = get_language_instruction(mode="compact") - repair_attempts = 0 - while results[0]['status'] == 'error' and repair_attempts < max_repair_attempts: - error_message = results[0]['content'] - logger.info(f"[refine-data] Code generation failed (attempt {repair_attempts + 1}/{max_repair_attempts}). Error: {error_message}") - new_instruction = f"We run into the following problem executing the code, please fix it:\n\n{error_message}\n\nPlease think step by step, reflect why the error happens and fix the code so that no more errors would occur." - prev_dialog = results[0]['dialog'] + model_info = { + "model": content['model'].get("model", ""), + "endpoint": content['model'].get("endpoint", ""), + "api_base": content['model'].get("api_base", ""), + } - results = agent.followup(input_tables, prev_dialog, [], new_instruction, n=1) - repair_attempts += 1 - logger.info(f"[refine-data] Repair attempt {repair_attempts}/{max_repair_attempts} result: {results[0]['status']}") + agent = DataTransformationAgent(client=client, workspace=workspace, agent_coding_rules=agent_coding_rules, language_instruction=language_instruction, max_display_rows=max_display_rows, model_info=model_info) + results = agent.followup(input_tables, dialog, latest_data_sample, new_instruction, n=1, + current_visualization=current_visualization, expected_visualization=expected_visualization) + + repair_attempts = 0 + while ( + isinstance(results, list) + and len(results) > 0 + and results[0].get('status') in ('error', 'other error') + and repair_attempts < max_repair_attempts + ): + error_message = results[0].get('content', 'Unknown error') + logger.info(f"[refine-data] Code generation failed (attempt {repair_attempts + 1}/{max_repair_attempts}). Error: {error_message}") + new_instruction = f"We run into the following problem executing the code, please fix it:\n\n{error_message}\n\nPlease think step by step, reflect why the error happens and fix the code so that no more errors would occur." + prev_dialog = results[0].get('dialog', []) - if repair_attempts > 0: - logger.info(f"[refine-data] Finished repair loop after {repair_attempts} attempt(s). Final status: {results[0]['status']}") + try: + results = agent.followup(input_tables, prev_dialog, [], new_instruction, n=1) + except Exception as followup_exc: + logger.exception("refine_data followup failed") + results = [{ + "status": "error", + "content": classify_llm_error(followup_exc), + "code": "", + "dialog": [], + }] + break + + repair_attempts += 1 + logger.info(f"[refine-data] Repair attempt {repair_attempts}/{max_repair_attempts} result: {results[0].get('status', 'unknown')}") + + if repair_attempts > 0: + logger.info(f"[refine-data] Finished repair loop after {repair_attempts} attempt(s). Final status: {results[0].get('status', 'unknown')}") # Sign code in each result for secure refresh later. for r in results: @@ -597,13 +644,11 @@ def refine_data(): response = flask.jsonify({ "token": token, "status": "ok", "results": results}) except Exception as e: - logger.error(f"Error in refine-data: {e}") - logger.error(traceback.format_exc()) - response = flask.jsonify({ "token": token, "status": "error", "results": [], "error_message": sanitize_model_error(str(e)) }) + logger.error("Error in refine-data", exc_info=e) + response = flask.jsonify({ "token": token, "status": "error", "results": [], "error_message": classify_llm_error(e) }) else: response = flask.jsonify({ "token": "", "status": "error", "results": []}) - response.headers.add('Access-Control-Allow-Origin', '*') return response @agent_bp.route('/code-expl', methods=['GET', 'POST']) @@ -620,26 +665,24 @@ def request_code_expl(): # Get workspace and mount temp data identity_id = get_identity_id() workspace = get_workspace(identity_id) - temp_data = get_temp_tables(workspace, input_tables) - with WorkspaceWithTempData(workspace, temp_data) as workspace: - try: - code_expl_agent = CodeExplanationAgent(client=client, workspace=workspace) - candidates = code_expl_agent.run(input_tables, code) - - # Return the first candidate's content as JSON - if candidates and len(candidates) > 0: - result = candidates[0] - if result['status'] == 'ok': - return jsonify(result) - else: - return jsonify(result), 400 + language_instruction = get_language_instruction() + + try: + code_expl_agent = CodeExplanationAgent(client=client, workspace=workspace, language_instruction=language_instruction) + candidates = code_expl_agent.run(input_tables, code) + + if candidates and len(candidates) > 0: + result = candidates[0] + if result['status'] == 'ok': + return jsonify(result) else: - return jsonify({'error': 'No explanation generated'}), 400 - except Exception as e: - logger.error(f"Error in code-expl: {e}") - logger.error(traceback.format_exc()) - return jsonify({'error': sanitize_model_error(str(e))}), 400 + return jsonify(result), 400 + else: + return jsonify({'error': 'No explanation generated'}), 400 + except Exception as e: + logger.error("Error in code-expl", exc_info=e) + return jsonify({'error': classify_llm_error(e)}), 400 else: return jsonify({'error': 'Invalid request format'}), 400 @@ -658,25 +701,23 @@ def request_chart_insight(): # Get workspace identity_id = get_identity_id() workspace = get_workspace(identity_id) - temp_data = get_temp_tables(workspace, input_tables) - with WorkspaceWithTempData(workspace, temp_data) as workspace: - try: - agent = ChartInsightAgent(client=client, workspace=workspace) - candidates = agent.run(chart_image, chart_type, field_names, input_tables) - - if candidates and len(candidates) > 0: - result = candidates[0] - if result['status'] == 'ok': - return jsonify(result) - else: - return jsonify(result), 400 + try: + agent = ChartInsightAgent(client=client, workspace=workspace, + language_instruction=get_language_instruction()) + candidates = agent.run(chart_image, chart_type, field_names, input_tables) + + if candidates and len(candidates) > 0: + result = candidates[0] + if result['status'] == 'ok': + return jsonify(result) else: - return jsonify({'error': 'No insight generated'}), 400 - except Exception as e: - logger.error(f"Error in chart-insight: {e}") - logger.error(traceback.format_exc()) - return jsonify({'error': sanitize_model_error(str(e))}), 400 + return jsonify(result), 400 + else: + return jsonify({'error': 'No insight generated'}), 400 + except Exception as e: + logger.error("Error in chart-insight", exc_info=e) + return jsonify({'error': classify_llm_error(e)}), 400 else: return jsonify({'error': 'Invalid request format'}), 400 @@ -706,29 +747,28 @@ def generate(): all_tables = list(input_tables) if exploration_thread: all_tables.extend(exploration_thread) - temp_data = get_temp_tables(workspace, all_tables) if all_tables else None - with WorkspaceWithTempData(workspace, temp_data) as workspace: - agent = InteractiveExploreAgent(client=client, workspace=workspace, agent_exploration_rules=agent_exploration_rules) - try: - for chunk in agent.run(input_tables, start_question, exploration_thread, current_data_sample, current_chart, mode): - yield chunk - except Exception as e: - logger.error(e) - error_data = { - "content": "unable to process recommendation questions request" - } - yield 'error: ' + json.dumps(error_data) + '\n' + agent = InteractiveExploreAgent(client=client, workspace=workspace, + agent_exploration_rules=agent_exploration_rules, + language_instruction=get_language_instruction()) + try: + for chunk in agent.run(input_tables, start_question, exploration_thread, current_data_sample, current_chart, mode): + yield chunk + except Exception as e: + logger.exception("get-recommendation-questions failed") + error_data = { + "content": classify_llm_error(e) + } + yield 'error: ' + json.dumps(error_data, ensure_ascii=False) + '\n' else: error_data = { "content": "Invalid request format" } - yield 'error: ' + json.dumps(error_data) + '\n' + yield 'error: ' + json.dumps(error_data, ensure_ascii=False) + '\n' response = Response( stream_with_context(generate()), mimetype='application/json', - headers={ 'Access-Control-Allow-Origin': '*', } ) return response @@ -747,29 +787,34 @@ def generate(): style = content.get("style", "blog post") identity_id = get_identity_id() workspace = get_workspace(identity_id) - temp_data = get_temp_tables(workspace, input_tables) if input_tables else None + # Include both input tables and chart data tables as temp data + # so derived tables referenced by charts are also available + all_tables = list(input_tables) + for chart in charts: + chart_data = chart.get("chart_data") + if chart_data and chart_data.get("name") and chart_data.get("rows"): + all_tables.append(chart_data) - with WorkspaceWithTempData(workspace, temp_data) as workspace: - agent = ReportGenAgent(client=client, workspace=workspace) - try: - for chunk in agent.stream(input_tables, charts, style): - yield chunk - except Exception as e: - logger.error(e) - error_data = { - "content": "unable to process report generation request" - } - yield 'error: ' + json.dumps(error_data) + '\n' + agent = ReportGenAgent(client=client, workspace=workspace, + language_instruction=get_language_instruction()) + try: + for chunk in agent.stream(input_tables, charts, style): + yield chunk + except Exception as e: + logger.exception("generate-report-stream failed") + error_data = { + "content": classify_llm_error(e) + } + yield 'error: ' + json.dumps(error_data, ensure_ascii=False) + '\n' else: error_data = { "content": "Invalid request format" } - yield 'error: ' + json.dumps(error_data) + '\n' + yield 'error: ' + json.dumps(error_data, ensure_ascii=False) + '\n' response = Response( stream_with_context(generate()), mimetype='application/json', - headers={ 'Access-Control-Allow-Origin': '*', } ) return response @@ -884,7 +929,6 @@ def refresh_derived_data(): # Get workspace and mount temp data for tables not in workspace identity_id = get_identity_id() workspace = get_workspace(identity_id) - temp_data = get_temp_tables(workspace, input_tables) # Get settings from app config cli_args = current_app.config.get('CLI_ARGS', {}) @@ -892,56 +936,110 @@ def refresh_derived_data(): sandbox = create_sandbox(cli_args.get('sandbox', 'local')) - with WorkspaceWithTempData(workspace, temp_data) as workspace: - # Run the transformation code in the sandbox - result = sandbox.run_python_code( - code=code, - workspace=workspace, - output_variable=output_variable, - ) - - if result['status'] == 'ok': - result_df = result['content'] - row_count = len(result_df) - - response_data = { - "status": "ok", - "message": "Successfully refreshed derived data", + # Run the transformation code in the sandbox + result = sandbox.run_python_code( + code=code, + workspace=workspace, + output_variable=output_variable, + ) + + if result['status'] == 'ok': + result_df = result['content'] + row_count = len(result_df) + + response_data = { + "status": "ok", + "message": "Successfully refreshed derived data", + "row_count": row_count + } + + if virtual: + # Virtual table: update workspace and return limited rows for display + workspace.write_parquet(result_df, output_table_name) + response_data["virtual"] = { + "table_name": output_table_name, "row_count": row_count } - - if virtual: - # Virtual table: update workspace and return limited rows for display - workspace.write_parquet(result_df, output_table_name) - response_data["virtual"] = { - "table_name": output_table_name, - "row_count": row_count - } - # Limit rows for response payload since full data is in workspace - if row_count > max_display_rows: - display_df = result_df.head(max_display_rows) - else: - display_df = result_df - # Remove duplicate columns to avoid orient='records' error - display_df = display_df.loc[:, ~display_df.columns.duplicated()] - response_data["rows"] = json.loads(display_df.to_json(orient='records', date_format='iso')) + # Limit rows for response payload since full data is in workspace + if row_count > max_display_rows: + display_df = result_df.head(max_display_rows) else: - # Temp table: return full data since there's no workspace storage - # Remove duplicate columns to avoid orient='records' error - result_df = result_df.loc[:, ~result_df.columns.duplicated()] - response_data["rows"] = json.loads(result_df.to_json(orient='records', date_format='iso')) - - return jsonify(response_data) + display_df = result_df + # Remove duplicate columns to avoid orient='records' error + display_df = display_df.loc[:, ~display_df.columns.duplicated()] + response_data["rows"] = json.loads(display_df.to_json(orient='records', date_format='iso')) else: - return jsonify({ - "status": "error", - "message": result.get('content', 'Unknown error during transformation') - }), 400 - + # Temp table: return full data since there's no workspace storage + # Remove duplicate columns to avoid orient='records' error + result_df = result_df.loc[:, ~result_df.columns.duplicated()] + response_data["rows"] = json.loads(result_df.to_json(orient='records', date_format='iso')) + + return jsonify(response_data) + else: + return jsonify({ + "status": "error", + "message": result.get('content', 'Unknown error during transformation') + }), 400 + except Exception as e: - logger.error(f"Error refreshing derived data: {str(e)}") - logger.error(traceback.format_exc()) + logger.error("Error refreshing derived data", exc_info=e) return jsonify({ "status": "error", - "message": str(e) + "message": classify_llm_error(e) }), 400 + + +@agent_bp.route('/workspace-summary', methods=['POST']) +def workspace_summary(): + """Generate a short name/summary for the current workspace. + + Called after the first agent interaction to auto-name the workspace. + Expects: { model: , context: { tables: [...], userQuery: "..." } } + Returns: { status: "ok", summary: "3-5 word name" } + """ + if not request.is_json: + return jsonify(status="error", summary=""), 400 + + content = request.get_json() + + try: + client = get_client(content['model']) + + ctx = content.get('context', {}) + table_names = ctx.get('tables', []) + user_query = ctx.get('userQuery', '') + + prompt_parts = [] + if table_names: + prompt_parts.append(f"Data tables: {', '.join(table_names)}") + if user_query: + prompt_parts.append(f"User's first request: {user_query}") + + context_str = '. '.join(prompt_parts) if prompt_parts else 'A data analysis session' + + messages = [ + { + "role": "system", + "content": ( + "You are a helpful assistant. Generate a very short name (3-5 words) " + "for a data analysis workspace based on the context below. " + "Return ONLY the name, no quotes, no explanation." + ), + }, + { + "role": "user", + "content": context_str, + }, + ] + + response = client.get_completion(messages) + summary = response.choices[0].message.content.strip().strip('"\'') + # Truncate if too long + if len(summary) > 60: + summary = summary[:57] + "..." + + return jsonify(status="ok", summary=summary) + + except Exception as e: + logger.warning(f"Failed to generate workspace summary: {e}") + return jsonify(status="error", summary=""), 500 diff --git a/py-src/data_formulator/agents/agent_chart_insight.py b/py-src/data_formulator/agents/agent_chart_insight.py index b8bdf171..3e55775d 100644 --- a/py-src/data_formulator/agents/agent_chart_insight.py +++ b/py-src/data_formulator/agents/agent_chart_insight.py @@ -25,9 +25,10 @@ class ChartInsightAgent(object): - def __init__(self, client, workspace=None): + def __init__(self, client, workspace=None, language_instruction=""): self.client = client self.workspace = workspace + self.language_instruction = language_instruction def run(self, chart_image_base64, chart_type, field_names, input_tables=None, n=1): """ @@ -64,13 +65,17 @@ def run(self, chart_image_base64, chart_type, field_names, input_tables=None, n= "type": "image_url", "image_url": { "url": f"data:image/png;base64,{chart_image_base64}", - "detail": "low" + "detail": "high" } } ] + system_prompt = SYSTEM_PROMPT + if self.language_instruction: + system_prompt = system_prompt + "\n\n" + self.language_instruction + messages = [ - {"role": "system", "content": SYSTEM_PROMPT}, + {"role": "system", "content": system_prompt}, {"role": "user", "content": user_content} ] diff --git a/py-src/data_formulator/agents/agent_code_explanation.py b/py-src/data_formulator/agents/agent_code_explanation.py index 03916be9..87275f7b 100644 --- a/py-src/data_formulator/agents/agent_code_explanation.py +++ b/py-src/data_formulator/agents/agent_code_explanation.py @@ -140,9 +140,10 @@ def extract_decade(date_str): class CodeExplanationAgent(object): - def __init__(self, client, workspace): + def __init__(self, client, workspace, language_instruction=""): self.client = client self.workspace = workspace + self.language_instruction = language_instruction def run(self, input_tables, code, n=1): @@ -153,7 +154,11 @@ def run(self, input_tables, code, n=1): logger.debug(user_query) logger.info(f"[CodeExplanationAgent] run start") - messages = [{"role":"system", "content": SYSTEM_PROMPT}, + system_prompt = SYSTEM_PROMPT + if self.language_instruction: + system_prompt = system_prompt + "\n\n" + self.language_instruction + + messages = [{"role":"system", "content": system_prompt}, {"role":"user","content": user_query}] response = self.client.get_completion(messages = messages) diff --git a/py-src/data_formulator/agents/agent_data_clean_stream.py b/py-src/data_formulator/agents/agent_data_clean_stream.py index 473b3c0f..0f2539f4 100644 --- a/py-src/data_formulator/agents/agent_data_clean_stream.py +++ b/py-src/data_formulator/agents/agent_data_clean_stream.py @@ -139,8 +139,9 @@ def parse_table_sections(text): class DataCleanAgentStream(object): - def __init__(self, client): + def __init__(self, client, language_instruction=""): self.client = client + self.language_instruction = language_instruction def stream(self, prompt, artifacts=[], dialog=[]): """derive a new concept based on the raw input data @@ -186,9 +187,13 @@ def stream(self, prompt, artifacts=[], dialog=[]): logger.debug(user_prompt) logger.info(f"[DataCleanAgent] run start (streaming)") + prompt_text = SYSTEM_PROMPT + if self.language_instruction: + prompt_text = prompt_text + "\n\n" + self.language_instruction + system_message = { 'role': 'system', - 'content': [ {'type': 'text', 'text': SYSTEM_PROMPT}] + 'content': [ {'type': 'text', 'text': prompt_text}] } messages = [ @@ -232,4 +237,4 @@ def stream(self, prompt, artifacts=[], dialog=[]): logger.info(f"[DataCleanAgent] run done | status={result.get('status', '?')}") # add a newline to the beginning of the result to separate it from the previous result - yield '\n' + json.dumps(result) + '\n' \ No newline at end of file + yield '\n' + json.dumps(result, ensure_ascii=False) + '\n' \ No newline at end of file diff --git a/py-src/data_formulator/agents/agent_data_load.py b/py-src/data_formulator/agents/agent_data_load.py index c23361bb..7d94752f 100644 --- a/py-src/data_formulator/agents/agent_data_load.py +++ b/py-src/data_formulator/agents/agent_data_load.py @@ -4,6 +4,7 @@ import json from data_formulator.agents.agent_utils import extract_json_objects, generate_data_summary +from data_formulator.agents.agent_diagnostics import AgentDiagnostics from data_formulator.agents.semantic_types import ( generate_semantic_types_prompt, ) @@ -33,7 +34,7 @@ - Infer from data values and context: e.g., if a "rating" column has values 1-10, the domain is [1, 10]; if it's clearly a 5-star system, use [1, 5]. - For Percentage: [0, 100] if values are whole-number percentages, [0, 1] if fractional. - For Correlation: always [-1, 1]. - - Do NOT provide for open-ended measures like Revenue, Count, Quantity, Temperature, etc. + - Do NOT provide for open-ended measures like Amount, Count, Quantity, Temperature, etc. - Only provide when the scale bounds are clear from the data or domain knowledge. - "unit": a short unit string for physical/monetary quantities. - Temperature: "°C", "°F", "K" @@ -158,9 +159,22 @@ class DataLoadAgent(object): - def __init__(self, client, workspace): + def __init__(self, client, workspace, language_instruction="", model_info=None): self.client = client self.workspace = workspace + self.language_instruction = language_instruction + + self.system_prompt = SYSTEM_PROMPT + if language_instruction: + self.system_prompt = self.system_prompt + "\n\n" + language_instruction + + self._diag = AgentDiagnostics( + agent_name="DataLoadAgent", + model_info=model_info or {}, + base_system_prompt=SYSTEM_PROMPT, + language_instruction=language_instruction, + assembled_system_prompt=self.system_prompt, + ) def run(self, input_data, n=1): @@ -178,7 +192,7 @@ def run(self, input_data, n=1): logger.debug(user_query) logger.info(f"[DataLoadAgent] run start") - messages = [{"role":"system", "content": SYSTEM_PROMPT}, + messages = [{"role":"system", "content": self.system_prompt}, {"role":"user","content": user_query}] response = self.client.get_completion(messages = messages) @@ -204,6 +218,11 @@ def run(self, input_data, n=1): # individual dialog for the agent result['dialog'] = [*messages, {"role": choice.message.role, "content": choice.message.content}] result['agent'] = 'DataLoadAgent' + result['diagnostics'] = self._diag.for_json_only( + messages, + raw_content=choice.message.content, + finish_reason=getattr(choice, 'finish_reason', None), + ) candidates.append(result) diff --git a/py-src/data_formulator/agents/agent_data_rec.py b/py-src/data_formulator/agents/agent_data_rec.py index c8c05934..984231cd 100644 --- a/py-src/data_formulator/agents/agent_data_rec.py +++ b/py-src/data_formulator/agents/agent_data_rec.py @@ -4,7 +4,8 @@ import json import time -from data_formulator.agents.agent_utils import extract_json_objects, extract_code_from_gpt_response, generate_data_summary +from data_formulator.agents.agent_utils import extract_json_objects, extract_code_from_gpt_response, generate_data_summary, supplement_missing_block, ensure_output_variable_in_code +from data_formulator.agents.agent_diagnostics import AgentDiagnostics import traceback import pandas as pd @@ -36,7 +37,7 @@ - Only use DuckDB when the dataset is very large and you need efficient SQL aggregations, filtering, joins, or window functions. - You can combine both: DuckDB for initial loading/filtering on large files, then pandas for complex operations. -**Code structure:** standalone script (no function wrapper), imports at top, assign final result to a variable (specified in JSON).''' +**Code structure:** standalone script (no function wrapper), imports at top. **CRITICAL:** The final result DataFrame MUST be assigned to the exact variable name you specified in `"output_variable"` in the JSON spec — the system uses this name to extract the result. For example, if your output_variable is `sales_by_region`, the script must contain `sales_by_region = ...`.''' SHARED_SEMANTIC_TYPE_REFERENCE = '''**[SEMANTIC TYPE REFERENCE]** @@ -46,21 +47,21 @@ | Category | Types | |---|---| | Temporal | DateTime, Date, Time, Timestamp, Year, Quarter, Month, Week, Day, Hour, YearMonth, YearQuarter, YearWeek, Decade, Duration | -| Monetary measures | Amount, Price, Revenue, Cost | +| Monetary measures | Amount, Price | | Physical measures | Quantity, Temperature | | Proportion | Percentage | | Signed/diverging | Profit, PercentageChange, Sentiment, Correlation | | Generic measures | Count, Number | -| Discrete numeric | Rank, Score, Rating, Index | +| Discrete numeric | Rank, Score | | Identifier | ID | | Geographic | Latitude, Longitude, Country, State, City, Region, Address, ZipCode | -| Entity names | PersonName, Company, Product, Category, Name | -| Coded categorical | Status, Type, Boolean, Direction | -| Binned ranges | Range, AgeGroup | -| Fallback | String, Unknown | +| Entity names | Category, Name | +| Coded categorical | Status, Boolean, Direction | +| Binned ranges | Range | +| Fallback | Unknown | Key guidelines: -- Use **Revenue/Cost** for summed monetary totals, **Price** for per-unit prices, **Profit** for values that can be negative. +- Use **Amount** for summed monetary totals, **Price** for per-unit prices, **Profit** for values that can be negative. - Use **Temperature** (not Quantity) for temperature — it has special diverging behavior. - Use **Year** (not Number) for columns like "year" with values 2020, 2021.''' @@ -109,7 +110,11 @@ - Escape single quotes with '' (not \\') - No Unicode escapes (\\u0400); use character ranges directly: [а-яА-Я] - Cast date columns explicitly: `CAST(col AS DATE)`, `CAST(col AS TIMESTAMP)` -- For complex datetime operations, load data first then use pandas datetime functions''' +- For complex datetime operations, load data first then use pandas datetime functions +- Critical identifier quoting rule: + * If a table/column name contains non-ASCII characters (e.g., Chinese, Japanese, Korean, Cyrillic, etc.), spaces, or punctuation, + you MUST wrap it in double quotes, e.g. SELECT "金额" FROM "客户表". + * Never output placeholder identifiers like your_table_name, your_column, your_condition.''' # ============================================================================= @@ -136,7 +141,7 @@ "config": {{{{}}}} // optional styling }}}}, "field_metadata": {{{{ // semantic type for each encoding field - "": "Type" // from [SEMANTIC TYPE REFERENCE] + "": "Category" // from [SEMANTIC TYPE REFERENCE] }}}}, "output_variable": "" // descriptive snake_case name (e.g. "sales_by_region"), not "result_df" }}}} @@ -154,7 +159,7 @@ {SHARED_STATISTICAL_ANALYSIS} -**Step 2: Python script** — transform input data to produce a DataFrame with all "output_fields". Keep it simple and readable. +**Step 2: Python script** — transform input data to produce a DataFrame with all "output_fields". Keep it simple and readable. The script MUST assign the final result to the variable named in `"output_variable"` from Step 1. **Datetime handling:** - Year → number. Year-month / year-month-day → string ("2020-01" / "2020-01-01"). @@ -165,28 +170,57 @@ class DataRecAgent(object): - def __init__(self, client, workspace, system_prompt=None, agent_coding_rules="", max_display_rows=10000): + def __init__(self, client, workspace, system_prompt=None, agent_coding_rules="", language_instruction="", max_display_rows=10000, model_info=None): self.client = client self.workspace = workspace self.max_display_rows = max_display_rows + self._model_info = model_info or {} + self._agent_coding_rules = agent_coding_rules + self._language_instruction = language_instruction - # Incorporate agent coding rules into system prompt if provided if system_prompt is not None: + self._base_prompt = system_prompt self.system_prompt = system_prompt else: + self._base_prompt = SYSTEM_PROMPT base_prompt = SYSTEM_PROMPT if agent_coding_rules and agent_coding_rules.strip(): self.system_prompt = base_prompt + "\n\n[AGENT CODING RULES]\nPlease follow these rules when generating code. Note: if the user instruction conflicts with these rules, you should prioritize user instructions.\n\n" + agent_coding_rules.strip() else: self.system_prompt = base_prompt + if language_instruction: + # Insert early (after role definition, before technical sections) + # so the LLM's "last impression" remains chart/code rules, + # reducing recency-bias interference on chart-type selection. + marker = "**About the execution environment:**" + idx = self.system_prompt.find(marker) + if idx > 0: + self.system_prompt = ( + self.system_prompt[:idx] + + language_instruction + "\n\n" + + self.system_prompt[idx:] + ) + else: + self.system_prompt = self.system_prompt + "\n\n" + language_instruction + + self._diag = AgentDiagnostics( + agent_name="DataRecAgent", + model_info=self._model_info, + base_system_prompt=self._base_prompt, + agent_coding_rules=self._agent_coding_rules, + language_instruction=self._language_instruction, + assembled_system_prompt=self.system_prompt, + ) + def process_gpt_response(self, input_tables, messages, response, t_llm=None): """Process GPT response to handle Python code execution""" t_start = time.time() t_exec_total = 0.0 if isinstance(response, Exception): - result = {'status': 'other error', 'content': str(response.body)} + result = {'status': 'other error', 'content': str(response.body), + 'diagnostics': self._diag.for_error(messages, error=str(response.body))} return [result] candidates = [] @@ -195,33 +229,70 @@ def process_gpt_response(self, input_tables, messages, response, t_llm=None): logger.debug("\n=== Data recommendation result ===>\n") logger.debug(choice.message.content + "\n") + # --- Parse JSON spec and Python code --- json_blocks = extract_json_objects(choice.message.content + "\n") - # Find the first JSON dict (skip any arrays the model may have emitted) refined_goal = None for jb in json_blocks: if isinstance(jb, dict): refined_goal = jb break + code_blocks = extract_code_from_gpt_response(choice.message.content + "\n", "python") + + # If only one block was produced, request the missing one + refined_goal, code_blocks, _supplement_content, t_supplement = supplement_missing_block( + self.client, messages, choice.message.content, + refined_goal, code_blocks, prefix="[DataRecAgent]" + ) + + # Apply fallbacks for missing JSON + json_fallback_used = refined_goal is None if refined_goal is None: refined_goal = {'output_fields': [], 'chart': {'chart_type': "", 'encodings': {}, 'config': {}}, 'output_variable': 'result_df'} - output_variable = refined_goal.get('output_variable', 'result_df') - - code_blocks = extract_code_from_gpt_response(choice.message.content + "\n", "python") + logger.warning( + "[DataRecAgent] JSON spec parsing failed — using fallback defaults. " + f"Response snippet: {choice.message.content[:300]!r}" + ) + output_variable = refined_goal.get('output_variable', 'result_df') or 'result_df' + logger.info(f"[DataRecAgent] extracted output_variable={output_variable!r}") + + # Diagnostics tracking + import re as _re + _diag_code = code_blocks[-1] if code_blocks else None + _diag_output_var_in_code = bool( + _diag_code and output_variable + and _re.search(rf'(?:^|\n)\s*{_re.escape(output_variable)}\s*=(?!=)', _diag_code) + ) + _diag_sandbox_mode = None + _diag_exec = {"status": None} + _diag_code_patched = False if len(code_blocks) > 0: code = code_blocks[-1] + if output_variable and not _diag_output_var_in_code: + code, was_patched, detected_var = ensure_output_variable_in_code(code, output_variable) + _diag_code_patched = was_patched + if was_patched: + logger.info( + f"[DataRecAgent] output_variable {output_variable!r} not in code — " + f"patched: appended `{output_variable} = {detected_var}`" + ) + else: + logger.warning( + f"[DataRecAgent] output_variable {output_variable!r} not in code " + f"and auto-patch found no candidate variable." + ) + try: from data_formulator.sandbox import create_sandbox - # Get sandbox setting (with fallback for non-Flask contexts like MCP server) try: from flask import current_app sandbox_mode = current_app.config.get('CLI_ARGS', {}).get('sandbox', 'local') except (ImportError, RuntimeError): sandbox_mode = 'local' + _diag_sandbox_mode = sandbox_mode - # Execute the Python script in the appropriate sandbox t_exec_start = time.time() sandbox = create_sandbox(sandbox_mode) execution_result = sandbox.run_python_code( @@ -231,23 +302,23 @@ def process_gpt_response(self, input_tables, messages, response, t_llm=None): ) t_exec_total += time.time() - t_exec_start + _diag_exec = { + "status": execution_result['status'], + "error_message": execution_result.get('content') if execution_result['status'] != 'ok' else None, + "available_dataframes": execution_result.get('df_names', []), + } + if execution_result['status'] == 'ok': full_df = execution_result['content'] row_count = len(full_df) - # Generate unique table name for workspace storage output_table_name = self.workspace.get_fresh_name(f"d-{output_variable}") - - # Write full result to workspace as parquet self.workspace.write_parquet(full_df, output_table_name) - # Limit rows for response payload if row_count > self.max_display_rows: query_output = full_df.head(self.max_display_rows) else: query_output = full_df - - # Remove duplicate columns to avoid orient='records' error query_output = query_output.loc[:, ~query_output.columns.duplicated()] result = { @@ -262,7 +333,6 @@ def process_gpt_response(self, input_tables, messages, response, t_llm=None): }, } else: - # Execution error error_message = execution_result.get('content', execution_result.get('error_message', 'Unknown error')) result = { 'status': 'error', @@ -275,29 +345,62 @@ def process_gpt_response(self, input_tables, messages, response, t_llm=None): error_message = traceback.format_exc() logger.warning(error_message) result = {'status': 'other error', 'code': code, 'content': f"Unexpected error: {error_message}"} + _diag_exec = {"status": "exception", "error_message": str(e)} else: result = {'status': 'error', 'code': "", 'content': "No code block found in the response. The model is unable to generate code to complete the task."} - result['dialog'] = [*messages, {"role": choice.message.role, "content": choice.message.content}] + _effective_content = choice.message.content + if _supplement_content: + _effective_content += "\n\n" + _supplement_content + result['dialog'] = [*messages, {"role": choice.message.role, "content": _effective_content}] result['agent'] = 'DataRecAgent' result['refined_goal'] = refined_goal + + # --- Build diagnostics --- + usage = getattr(response, 'usage', None) + result['diagnostics'] = self._diag.for_response( + messages, + raw_content=choice.message.content, + finish_reason=getattr(choice, 'finish_reason', None), + json_spec=refined_goal, + json_fallback_used=json_fallback_used, + code_found=len(code_blocks) > 0, + code=_diag_code, + output_variable=output_variable, + output_variable_in_code=_diag_output_var_in_code, + code_patched=_diag_code_patched, + supplemented=_supplement_content is not None, + sandbox_mode=_diag_sandbox_mode, + exec_status=_diag_exec.get("status"), + exec_error=_diag_exec.get("error_message"), + exec_df_names=_diag_exec.get("available_dataframes"), + t_llm=t_llm or 0, + t_supplement=t_supplement, + t_exec=t_exec_total, + prompt_tokens=getattr(usage, 'prompt_tokens', None) if usage else None, + completion_tokens=getattr(usage, 'completion_tokens', None) if usage else None, + ) + candidates.append(result) + t_total = time.time() - t_start + t_llm_val = t_llm or 0.0 + logger.debug("=== Recommendation Candidates ===>") for candidate in candidates: for key, value in candidate.items(): - if key in ['dialog', 'content']: + if key in ['dialog', 'content', 'diagnostics']: logger.debug(f"##{key}:\n{str(value)[:1000]}...") else: logger.debug(f"## {key}:\n{value}") - t_total = time.time() - t_start - t_llm_val = t_llm or 0.0 - t_misc = t_total - t_exec_total - logger.info(f"[DataRecAgent] timing: llm={t_llm_val:.3f}s, exec={t_exec_total:.3f}s, misc={t_misc:.3f}s, total={t_total + t_llm_val:.3f}s") + usage = getattr(response, 'usage', None) + usage_str = "" + if usage: + usage_str = f" | tokens: in={getattr(usage, 'prompt_tokens', None)}, out={getattr(usage, 'completion_tokens', None)}" + logger.info(f"[DataRecAgent] timing: llm={t_llm_val:.3f}s, supplement={t_supplement:.3f}s, exec={t_exec_total:.3f}s, total={t_total + t_llm_val:.3f}s{usage_str}") return candidates - def run(self, input_tables, description, n=1, prev_messages: list[dict] = []): """ Args: diff --git a/py-src/data_formulator/agents/agent_data_transform.py b/py-src/data_formulator/agents/agent_data_transform.py index c8056a2d..f73c6f6d 100644 --- a/py-src/data_formulator/agents/agent_data_transform.py +++ b/py-src/data_formulator/agents/agent_data_transform.py @@ -4,7 +4,8 @@ import json import time -from data_formulator.agents.agent_utils import extract_json_objects, extract_code_from_gpt_response +from data_formulator.agents.agent_utils import extract_json_objects, extract_code_from_gpt_response, supplement_missing_block, ensure_output_variable_in_code +from data_formulator.agents.agent_diagnostics import AgentDiagnostics from data_formulator.agents.agent_data_rec import ( SHARED_ENVIRONMENT, SHARED_SEMANTIC_TYPE_REFERENCE, @@ -50,7 +51,7 @@ "config": {{{{}}}} // optional styling }}}}, "field_metadata": {{{{ // semantic type for each encoding field - "": "Type" // from [SEMANTIC TYPE REFERENCE] + "": "Category" // from [SEMANTIC TYPE REFERENCE] }}}}, "output_variable": "", // descriptive snake_case name (e.g. "sales_by_region"), not "result_df" "reason": "" // why this refinement is made @@ -63,7 +64,7 @@ {SHARED_STATISTICAL_ANALYSIS} -**Step 2: Python script** — transform input data to produce a DataFrame with all "output_fields". Keep it simple and readable. +**Step 2: Python script** — transform input data to produce a DataFrame with all "output_fields". Keep it simple and readable. The script MUST assign the final result to the variable named in `"output_variable"` from Step 1. **Datetime handling:** - Year → number. Year-month / year-month-day → string ("2020-01" / "2020-01-01"). @@ -74,21 +75,45 @@ class DataTransformationAgent(object): - def __init__(self, client, workspace, system_prompt=None, agent_coding_rules="", max_display_rows=10000): + def __init__(self, client, workspace, system_prompt=None, agent_coding_rules="", language_instruction="", max_display_rows=10000, model_info=None): self.client = client self.workspace = workspace self.max_display_rows = max_display_rows + self._model_info = model_info or {} + self._agent_coding_rules = agent_coding_rules + self._language_instruction = language_instruction - # Incorporate agent coding rules into system prompt if provided if system_prompt is not None: + self._base_prompt = system_prompt self.system_prompt = system_prompt else: + self._base_prompt = SYSTEM_PROMPT base_prompt = SYSTEM_PROMPT if agent_coding_rules and agent_coding_rules.strip(): self.system_prompt = base_prompt + "\n\n[AGENT CODING RULES]\nPlease follow these rules when generating code. Note: if the user instruction conflicts with these rules, you should prioritize user instructions.\n\n" + agent_coding_rules.strip() else: self.system_prompt = base_prompt + if language_instruction: + marker = "**About the execution environment:**" + idx = self.system_prompt.find(marker) + if idx > 0: + self.system_prompt = ( + self.system_prompt[:idx] + + language_instruction + "\n\n" + + self.system_prompt[idx:] + ) + else: + self.system_prompt = self.system_prompt + "\n\n" + language_instruction + + self._diag = AgentDiagnostics( + agent_name="DataTransformationAgent", + model_info=self._model_info, + base_system_prompt=self._base_prompt, + agent_coding_rules=self._agent_coding_rules, + language_instruction=self._language_instruction, + assembled_system_prompt=self.system_prompt, + ) def process_gpt_response(self, response, messages, t_llm=None): """Process GPT response to handle Python code execution""" @@ -96,7 +121,8 @@ def process_gpt_response(self, response, messages, t_llm=None): t_exec_total = 0.0 if isinstance(response, Exception): - result = {'status': 'other error', 'content': str(response.body)} + result = {'status': 'other error', 'content': str(response.body), + 'diagnostics': self._diag.for_error(messages, error=str(response.body))} return [result] candidates = [] @@ -104,33 +130,69 @@ def process_gpt_response(self, response, messages, t_llm=None): logger.debug("=== Python script result ===>") logger.debug(choice.message.content + "\n") + # --- Parse JSON spec and Python code --- json_blocks = extract_json_objects(choice.message.content + "\n") - # Find the first JSON dict (skip any arrays the model may have emitted) refined_goal = None for jb in json_blocks: if isinstance(jb, dict): refined_goal = jb break + code_blocks = extract_code_from_gpt_response(choice.message.content + "\n", "python") + + # If only one block was produced, request the missing one + refined_goal, code_blocks, _supplement_content, t_supplement = supplement_missing_block( + self.client, messages, choice.message.content, + refined_goal, code_blocks, prefix="[DataTransformAgent]" + ) + + # Apply fallbacks for missing JSON + json_fallback_used = refined_goal is None if refined_goal is None: refined_goal = {'chart': {'chart_type': '', 'encodings': {}, 'config': {}}, 'instruction': '', 'reason': '', 'output_variable': 'result_df'} - output_variable = refined_goal.get('output_variable', 'result_df') - - code_blocks = extract_code_from_gpt_response(choice.message.content + "\n", "python") + logger.warning( + "[DataTransformAgent] JSON spec parsing failed — using fallback defaults. " + f"Response snippet: {choice.message.content[:300]!r}" + ) + output_variable = refined_goal.get('output_variable', 'result_df') or 'result_df' + logger.info(f"[DataTransformAgent] extracted output_variable={output_variable!r}") + + import re as _re + _diag_code = code_blocks[-1] if code_blocks else None + _diag_output_var_in_code = bool( + _diag_code and output_variable + and _re.search(rf'(?:^|\n)\s*{_re.escape(output_variable)}\s*=(?!=)', _diag_code) + ) + _diag_sandbox_mode = None + _diag_exec = {"status": None} + _diag_code_patched = False if len(code_blocks) > 0: code = code_blocks[-1] + if output_variable and not _diag_output_var_in_code: + code, was_patched, detected_var = ensure_output_variable_in_code(code, output_variable) + _diag_code_patched = was_patched + if was_patched: + logger.info( + f"[DataTransformAgent] output_variable {output_variable!r} not in code — " + f"patched: appended `{output_variable} = {detected_var}`" + ) + else: + logger.warning( + f"[DataTransformAgent] output_variable {output_variable!r} not in code " + f"and auto-patch found no candidate variable." + ) + try: from data_formulator.sandbox import create_sandbox - # Get sandbox setting (with fallback for non-Flask contexts like MCP server) try: from flask import current_app sandbox_mode = current_app.config.get('CLI_ARGS', {}).get('sandbox', 'local') except (ImportError, RuntimeError): sandbox_mode = 'local' + _diag_sandbox_mode = sandbox_mode - # Execute the Python script in the appropriate sandbox t_exec_start = time.time() sandbox = create_sandbox(sandbox_mode) execution_result = sandbox.run_python_code( @@ -140,23 +202,23 @@ def process_gpt_response(self, response, messages, t_llm=None): ) t_exec_total += time.time() - t_exec_start + _diag_exec = { + "status": execution_result['status'], + "error_message": execution_result.get('content') if execution_result['status'] != 'ok' else None, + "available_dataframes": execution_result.get('df_names', []), + } + if execution_result['status'] == 'ok': full_df = execution_result['content'] row_count = len(full_df) - # Generate unique table name for workspace storage output_table_name = self.workspace.get_fresh_name(f"d-{output_variable}") - - # Write full result to workspace as parquet self.workspace.write_parquet(full_df, output_table_name) - # Limit rows for response payload if row_count > self.max_display_rows: query_output = full_df.head(self.max_display_rows) else: query_output = full_df - - # Remove duplicate columns to avoid orient='records' error query_output = query_output.loc[:, ~query_output.columns.duplicated()] result = { @@ -171,7 +233,6 @@ def process_gpt_response(self, response, messages, t_llm=None): }, } else: - # Execution error result = { 'status': 'error', 'code': code, @@ -183,27 +244,61 @@ def process_gpt_response(self, response, messages, t_llm=None): logger.warning(f"Error type: {type(e).__name__}, message: {str(e)}") error_message = f"An error occurred during code execution. Error type: {type(e).__name__}, message: {str(e)}" result = {'status': 'error', 'code': code, 'content': error_message} + _diag_exec = {"status": "exception", "error_message": str(e)} else: result = {'status': 'error', 'code': "", 'content': "No code block found in the response. The model is unable to generate code to complete the task."} - result['dialog'] = [*messages, {"role": choice.message.role, "content": choice.message.content}] + _effective_content = choice.message.content + if _supplement_content: + _effective_content += "\n\n" + _supplement_content + result['dialog'] = [*messages, {"role": choice.message.role, "content": _effective_content}] result['agent'] = 'DataTransformationAgent' result['refined_goal'] = refined_goal + + # --- Build diagnostics --- + usage = getattr(response, 'usage', None) + result['diagnostics'] = self._diag.for_response( + messages, + raw_content=choice.message.content, + finish_reason=getattr(choice, 'finish_reason', None), + json_spec=refined_goal, + json_fallback_used=json_fallback_used, + code_found=len(code_blocks) > 0, + code=_diag_code, + output_variable=output_variable, + output_variable_in_code=_diag_output_var_in_code, + code_patched=_diag_code_patched, + supplemented=_supplement_content is not None, + sandbox_mode=_diag_sandbox_mode, + exec_status=_diag_exec.get("status"), + exec_error=_diag_exec.get("error_message"), + exec_df_names=_diag_exec.get("available_dataframes"), + t_llm=t_llm or 0, + t_supplement=t_supplement, + t_exec=t_exec_total, + prompt_tokens=getattr(usage, 'prompt_tokens', None) if usage else None, + completion_tokens=getattr(usage, 'completion_tokens', None) if usage else None, + ) + candidates.append(result) + t_total = time.time() - t_start + t_llm_val = t_llm or 0.0 + logger.debug("=== Transform Candidates ===>") for candidate in candidates: for key, value in candidate.items(): - if key in ['dialog', 'content']: + if key in ['dialog', 'content', 'diagnostics']: logger.debug(f"##{key}:\n{str(value)[:1000]}...") else: logger.debug(f"## {key}:\n{value}") - t_total = time.time() - t_start - t_llm_val = t_llm or 0.0 - t_misc = t_total - t_exec_total - logger.info(f"[DataTransformAgent] timing: llm={t_llm_val:.3f}s, exec={t_exec_total:.3f}s, misc={t_misc:.3f}s, total={t_total + t_llm_val:.3f}s") + usage = getattr(response, 'usage', None) + usage_str = "" + if usage: + usage_str = f" | tokens: in={getattr(usage, 'prompt_tokens', None)}, out={getattr(usage, 'completion_tokens', None)}" + logger.info(f"[DataTransformAgent] timing: llm={t_llm_val:.3f}s, supplement={t_supplement:.3f}s, exec={t_exec_total:.3f}s, total={t_total + t_llm_val:.3f}s{usage_str}") return candidates @@ -227,9 +322,9 @@ def run(self, input_tables, description, prev_messages: list[dict] = [], n=1, # Build visualization context section vis_section = "" if current_visualization: - vis_section = f"\n\n[CURRENT VISUALIZATION] This is the current visualization the user has:\n\n{json.dumps(current_visualization.get('chart_spec', {}), indent=4)}" + vis_section = f"\n\n[CURRENT VISUALIZATION] This is the current visualization the user has:\n\n{json.dumps(current_visualization.get('chart_spec', {}), indent=4, ensure_ascii=False)}" elif expected_visualization: - vis_section = f"\n\n[EXPECTED VISUALIZATION] This is the visualization expected by the user:\n\n{json.dumps(expected_visualization.get('chart_spec', {}), indent=4)}" + vis_section = f"\n\n[EXPECTED VISUALIZATION] This is the visualization expected by the user:\n\n{json.dumps(expected_visualization.get('chart_spec', {}), indent=4, ensure_ascii=False)}" # Order: context → visualization → goal if len(prev_messages) > 0: @@ -244,11 +339,13 @@ def run(self, input_tables, description, prev_messages: list[dict] = [], n=1, # Build user message content: include chart image if available chart_image = current_visualization.get('chart_image') if current_visualization else None + has_image = bool(chart_image) + logger.info(f"[DataTransformAgent] run LLM call | messages={1 + len(filtered_prev_messages) + 1}, has_image={has_image}") try: if chart_image: user_content = [ {"type": "text", "text": user_query}, - {"type": "image_url", "image_url": {"url": chart_image, "detail": "high"}} + {"type": "image_url", "image_url": {"url": chart_image, "detail": "low"}} ] else: user_content = user_query @@ -304,9 +401,9 @@ def followup(self, input_tables, dialog, latest_data_sample, new_instruction: st # Build visualization context section vis_section = "" if current_visualization: - vis_section = f"\n\n[CURRENT VISUALIZATION] This is the current visualization the user has:\n\n{json.dumps(current_visualization.get('chart_spec', {}), indent=4)}" + vis_section = f"\n\n[CURRENT VISUALIZATION] This is the current visualization the user has:\n\n{json.dumps(current_visualization.get('chart_spec', {}), indent=4, ensure_ascii=False)}" elif expected_visualization: - vis_section = f"\n\n[EXPECTED VISUALIZATION] This is the visualization expected by the user:\n\n{json.dumps(expected_visualization.get('chart_spec', {}), indent=4)}" + vis_section = f"\n\n[EXPECTED VISUALIZATION] This is the visualization expected by the user:\n\n{json.dumps(expected_visualization.get('chart_spec', {}), indent=4, ensure_ascii=False)}" # Order: data sample → visualization → instruction followup_text = f"This is the result from the latest transformation:\n\n{sample_data_str}{vis_section}\n\nUpdate the Python script above based on the following instruction:\n\n{new_instruction}" @@ -315,11 +412,13 @@ def followup(self, input_tables, dialog, latest_data_sample, new_instruction: st # Build user message content: include chart image if available chart_image = current_visualization.get('chart_image') if current_visualization else None + has_image = bool(chart_image) + logger.info(f"[DataTransformAgent] followup LLM call | messages={len(updated_dialog) + 1}, has_image={has_image}") try: if chart_image: user_content = [ {"type": "text", "text": followup_text}, - {"type": "image_url", "image_url": {"url": chart_image, "detail": "high"}} + {"type": "image_url", "image_url": {"url": chart_image, "detail": "low"}} ] else: user_content = followup_text diff --git a/py-src/data_formulator/agents/agent_diagnostics.py b/py-src/data_formulator/agents/agent_diagnostics.py new file mode 100644 index 00000000..aef7b491 --- /dev/null +++ b/py-src/data_formulator/agents/agent_diagnostics.py @@ -0,0 +1,146 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +"""Unified diagnostics builder for all agent pipelines. + +Centralises the JSON structure returned as ``result['diagnostics']``, +ensuring a single schema definition for both back-end construction +and front-end consumption (DiagnosticsViewer in MessageSnackbar.tsx). +""" + +from __future__ import annotations + +import time +from typing import Any + + +class AgentDiagnostics: + """Captures prompt context once at agent init, then builds diagnostics per request.""" + + def __init__( + self, + agent_name: str, + model_info: dict, + base_system_prompt: str, + agent_coding_rules: str = "", + language_instruction: str = "", + assembled_system_prompt: str = "", + ): + self._agent_name = agent_name + self._model_info = model_info + self._prompt_ctx = { + "base_system_prompt": base_system_prompt, + "agent_coding_rules": agent_coding_rules, + "language_instruction": language_instruction, + "assembled_system_prompt": assembled_system_prompt, + } + + # -- helpers ---------------------------------------------------------- + + def _base(self, messages: list[dict]) -> dict[str, Any]: + return { + "agent": self._agent_name, + "timestamp": _now(), + "model": self._model_info, + "prompt_components": self._prompt_ctx, + "llm_request": { + "message_count": len(messages), + "messages": messages, + }, + } + + # -- 1. LLM connection failure / early exception ---------------------- + + def for_error(self, messages: list[dict], error: str = "") -> dict[str, Any]: + return {**self._base(messages), "error": error} + + # -- 2. Full diagnostics (code-execution agents) ---------------------- + + def for_response( + self, + messages: list[dict], + *, + raw_content: str, + finish_reason: str | None, + json_spec: dict | None, + json_fallback_used: bool, + code_found: bool, + code: str | None, + output_variable: str, + output_variable_in_code: bool, + code_patched: bool = False, + supplemented: bool, + sandbox_mode: str | None, + exec_status: str | None, + exec_error: str | None = None, + exec_df_names: list[str] | None = None, + t_llm: float = 0.0, + t_supplement: float = 0.0, + t_exec: float = 0.0, + prompt_tokens: int | None = None, + completion_tokens: int | None = None, + ) -> dict[str, Any]: + exec_dict: dict[str, Any] = { + "sandbox_mode": sandbox_mode, + "status": exec_status, + } + if exec_error is not None: + exec_dict["error_message"] = exec_error + if exec_df_names is not None: + exec_dict["available_dataframes"] = exec_df_names + + return { + **self._base(messages), + "llm_response": { + "raw_content": raw_content, + "finish_reason": finish_reason, + }, + "parsing": { + "json_spec_found": not json_fallback_used, + "json_spec": json_spec, + "json_fallback_used": json_fallback_used, + "code_found": code_found, + "code": code, + "output_variable": output_variable, + "output_variable_in_code": output_variable_in_code, + "code_patched": code_patched, + "supplemented": supplemented, + }, + "execution": exec_dict, + "performance": { + "llm_seconds": round(t_llm, 3), + "supplement_seconds": round(t_supplement, 3), + "exec_seconds": round(t_exec, 3), + "prompt_tokens": prompt_tokens, + "completion_tokens": completion_tokens, + }, + } + + # -- 3. JSON-only agents (DataLoadAgent — no code/execution) ---------- + + def for_json_only( + self, + messages: list[dict], + *, + raw_content: str = "", + finish_reason: str | None = None, + t_llm: float = 0.0, + prompt_tokens: int | None = None, + completion_tokens: int | None = None, + ) -> dict[str, Any]: + return { + **self._base(messages), + "llm_response": { + "raw_content": raw_content, + "finish_reason": finish_reason, + }, + "performance": { + "llm_seconds": round(t_llm, 3), + "prompt_tokens": prompt_tokens, + "completion_tokens": completion_tokens, + }, + } + + +def _now() -> str: + return time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime()) diff --git a/py-src/data_formulator/agents/agent_interactive_explore.py b/py-src/data_formulator/agents/agent_interactive_explore.py index 603bc18d..1e3b1ac2 100644 --- a/py-src/data_formulator/agents/agent_interactive_explore.py +++ b/py-src/data_formulator/agents/agent_interactive_explore.py @@ -114,10 +114,11 @@ class InteractiveExploreAgent(object): - def __init__(self, client, workspace, agent_exploration_rules=""): + def __init__(self, client, workspace, agent_exploration_rules="", language_instruction=""): self.client = client self.agent_exploration_rules = agent_exploration_rules self.workspace = workspace # when set (SQL/datalake mode), use parquet tables for summary + self.language_instruction = language_instruction def run(self, input_tables, start_question=None, exploration_thread=None, current_data_sample=None, current_chart=None, mode='interactive'): @@ -167,6 +168,9 @@ def run(self, input_tables, start_question=None, exploration_thread=None, else: system_prompt = base_system_prompt + if self.language_instruction: + system_prompt = system_prompt + "\n\n" + self.language_instruction + logger.debug(f"Interactive explore agent input: {context}") logger.info(f"[InteractiveExploreAgent] run start") @@ -176,7 +180,7 @@ def run(self, input_tables, start_question=None, exploration_thread=None, {"role": "system", "content": system_prompt}, {"role": "user", "content": [ {"type": "text", "text": context}, - {"type": "image_url", "image_url": {"url": current_chart, "detail": "high"}} + {"type": "image_url", "image_url": {"url": current_chart, "detail": "low"}} ]} ] else: diff --git a/py-src/data_formulator/agents/agent_language.py b/py-src/data_formulator/agents/agent_language.py new file mode 100644 index 00000000..358c64a0 --- /dev/null +++ b/py-src/data_formulator/agents/agent_language.py @@ -0,0 +1,150 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +""" +Language instruction builder for Agent prompts. + +Generates a prompt fragment that constrains LLM output language for +user-visible fields while keeping all internal / programmatic fields +stable in English. + +Two modes are provided: + +- **"full"** — detailed field-by-field rules for text-heavy agents + (ChartInsight, InteractiveExplore, ReportGen, CodeExplanation, + DataClean, DataAgent). +- **"compact"** — a short 3-sentence instruction for code-generation + agents (DataRec, DataTransformation, DataLoad) so that the extra + text does not distract the model from writing correct code. + +Usage: + from data_formulator.agents.agent_language import build_language_instruction + + instruction = build_language_instruction("zh") # full (default) + instruction = build_language_instruction("zh", mode="compact") # compact + instruction = build_language_instruction("en") # returns "" +""" + +# ── Language registry ─────────────────────────────────────── + +LANGUAGE_DISPLAY_NAMES: dict[str, str] = { + "en": "English", + "zh": "Simplified Chinese (简体中文)", + "ja": "Japanese (日本語)", + "ko": "Korean (한국어)", + "fr": "French (Français)", + "de": "German (Deutsch)", + "es": "Spanish (Español)", + "pt": "Portuguese (Português)", + "ru": "Russian (Русский)", + "ar": "Arabic (العربية)", + "hi": "Hindi (हिन्दी)", + "th": "Thai (ไทย)", + "vi": "Vietnamese (Tiếng Việt)", + "it": "Italian (Italiano)", + "nl": "Dutch (Nederlands)", + "pl": "Polish (Polski)", + "tr": "Turkish (Türkçe)", + "id": "Indonesian (Bahasa Indonesia)", + "ms": "Malay (Bahasa Melayu)", + "sv": "Swedish (Svenska)", +} + +# ── Per-language extra rules ──────────────────────────────── + +LANGUAGE_EXTRA_RULES: dict[str, str] = { + "zh": ( + "\n\nAdditional rules for Chinese:\n" + "- Use Simplified Chinese (简体中文), NOT Traditional Chinese (繁體中文).\n" + "- Keep technical terms natural: prefer widely-used Chinese equivalents " + "(e.g., 销售额, 利润率) over awkward literal translations." + ), + "ja": ( + "\n\nAdditional rules for Japanese:\n" + "- Use polite form (です/ます体) in all user-facing text." + ), +} + +DEFAULT_LANGUAGE = "en" + + +def build_language_instruction(language: str, *, mode: str = "full") -> str: + """Return a prompt instruction block for the given language code. + + Parameters + ---------- + language : str + BCP-47 primary subtag, e.g. ``"zh"``, ``"en"``, ``"ja"``. + mode : ``"full"`` | ``"compact"`` + ``"full"`` – detailed field-level rules (for text-heavy agents). + ``"compact"`` – minimal instruction (for code-generation agents). + + Returns ``""`` when *language* is ``"en"`` (or empty / unrecognised). + """ + lang = (language or DEFAULT_LANGUAGE).strip().lower() + + if lang == "en": + return "" + + display_name = LANGUAGE_DISPLAY_NAMES.get(lang, lang) + extra = LANGUAGE_EXTRA_RULES.get(lang, "") + + if mode == "compact": + return _build_compact(display_name, extra) + return _build_full(display_name, extra) + + +# ── Compact instruction (code-generation agents) ────────── + +def _build_compact(display_name: str, extra: str) -> str: + return ( + "[LANGUAGE INSTRUCTION]\n" + f"Write `display_instruction` and `suggested_table_name` in {display_name}. " + "All other JSON fields, Python code, variable names, column references, " + "and comments MUST stay in English. " + f"Keep original dataset column names exactly as-is — do NOT translate them." + f"{extra}" + ) + + +# ── Full instruction (text-heavy agents) ────────────────── + +def _build_full(display_name: str, extra: str) -> str: + return ( + "[LANGUAGE INSTRUCTION]\n" + "\n" + f"The user's interface language is **{display_name}**.\n" + "\n" + + f"**User-visible fields** — MUST be written in {display_name}:\n" + "\n" + f"Write these in {display_name}:\n" + '- `title` (chart title)\n' + '- `takeaways` (chart insight bullet points)\n' + '- `text`, `goal`, `tag` (exploration question cards)\n' + '- `display_instruction` (short description shown on data thread)\n' + '- `message` (clarification questions to the user)\n' + '- `summary` (final exploration summary)\n' + '- `explanation` (concept / code explanations)\n' + '- `data_summary` (dataset description)\n' + '- `suggested_table_name` (human-readable table name)\n' + '- Report markdown output (entire content)\n' + '- Any other free-text that the user will read\n' + "\n" + + "**Internal / programmatic fields** — MUST remain in English:\n" + '`output_variable`, `output_fields`, `chart_type`, `encodings`, ' + '`config`, `semantic_type`, `field_metadata`, `reason`, ' + '`detailed_instruction`, `thought`, `difficulty`, ' + "all JSON keys, all Python code (variables, column names, comments).\n" + "\n" + + "**Original dataset column names** — DO NOT translate or rename. " + "Keep them exactly as-is.\n" + "\n" + + "**New derived columns** — use English snake_case in code; " + f"describe them in {display_name} in user-visible text.\n" + + f"{extra}" + ) diff --git a/py-src/data_formulator/agents/agent_report_gen.py b/py-src/data_formulator/agents/agent_report_gen.py index bcee8be3..0059ad87 100644 --- a/py-src/data_formulator/agents/agent_report_gen.py +++ b/py-src/data_formulator/agents/agent_report_gen.py @@ -52,9 +52,10 @@ class ReportGenAgent(object): - def __init__(self, client, workspace): + def __init__(self, client, workspace, language_instruction=""): self.client = client self.workspace = workspace + self.language_instruction = language_instruction def get_data_summary(self, input_tables): return generate_data_summary(input_tables, self.workspace) @@ -109,9 +110,13 @@ def stream(self, input_tables, charts=[], style="blog post"): 'content': content + [{'type': 'text', 'text': 'Now based off the data and visualizations provided by the user, generate a report in markdown. The style of the report should be ' + style + '.'}] } + prompt_text = SYSTEM_PROMPT + if self.language_instruction: + prompt_text = prompt_text + "\n\n" + self.language_instruction + system_message = { 'role': 'system', - 'content': [ {'type': 'text', 'text': SYSTEM_PROMPT}] + 'content': [ {'type': 'text', 'text': prompt_text}] } messages = [ diff --git a/py-src/data_formulator/agents/agent_sort_data.py b/py-src/data_formulator/agents/agent_sort_data.py index 89bdc9df..f251cfb0 100644 --- a/py-src/data_formulator/agents/agent_sort_data.py +++ b/py-src/data_formulator/agents/agent_sort_data.py @@ -75,7 +75,7 @@ def run(self, name, values, n=1): 'value': values } - user_query = f"[INPUT]\n\n{json.dumps(input_obj)}\n\n[OUTPUT]" + user_query = f"[INPUT]\n\n{json.dumps(input_obj, ensure_ascii=False)}\n\n[OUTPUT]" logger.debug(user_query) logger.info(f"[SortDataAgent] run start") diff --git a/py-src/data_formulator/agents/agent_utils.py b/py-src/data_formulator/agents/agent_utils.py index e58f9d20..b2b3067b 100644 --- a/py-src/data_formulator/agents/agent_utils.py +++ b/py-src/data_formulator/agents/agent_utils.py @@ -3,9 +3,14 @@ import json import keyword +import logging +import time + import numpy as np import re +_logger = logging.getLogger(__name__) + def string_to_py_varname(var_str): var_name = re.sub(r'\W|^(?=\d)', '_', var_str) if keyword.iskeyword(var_name): @@ -106,6 +111,57 @@ def find_matching_bracket(text, start_index, bracket_type='curly'): return index return -1 +def _strip_json_comments(s: str) -> str: + """Remove single-line ``//`` comments from a JSON-like string. + + Correctly skips ``//`` that appears inside quoted strings. + """ + result: list[str] = [] + in_string = False + escape_next = False + i = 0 + while i < len(s): + ch = s[i] + if escape_next: + result.append(ch) + escape_next = False + i += 1 + continue + if ch == '\\' and in_string: + escape_next = True + result.append(ch) + i += 1 + continue + if ch == '"': + in_string = not in_string + result.append(ch) + i += 1 + continue + if not in_string and s[i:i + 2] == '//': + while i < len(s) and s[i] != '\n': + i += 1 + continue + result.append(ch) + i += 1 + return ''.join(result) + + +def _fix_json_trailing_commas(s: str) -> str: + """Remove trailing commas before ``}`` or ``]``.""" + return re.sub(r',\s*([}\]])', r'\1', s) + + +def _lenient_json_loads(json_str: str): + """Try ``json.loads`` first; on failure, strip comments / trailing commas + and retry. Returns the parsed object or raises ``ValueError``. + """ + try: + return json.loads(json_str) + except ValueError: + cleaned = _fix_json_trailing_commas(_strip_json_comments(json_str)) + return json.loads(cleaned) + + def extract_json_objects(text): """Extracts JSON objects and arrays from a text string. Returns a list of parsed JSON objects and arrays. @@ -137,7 +193,7 @@ def extract_json_objects(text): json_str = text[start_index:end_index + 1] try: - json_obj = json.loads(json_str) + json_obj = _lenient_json_loads(json_str) json_objects.append(json_obj) except ValueError: pass @@ -147,6 +203,69 @@ def extract_json_objects(text): return json_objects +def supplement_missing_block(client, messages, assistant_content, + parsed_json, code_blocks, prefix="[Agent]"): + """When model produces only JSON or only code, request the missing block. + + Smaller models often fail to produce both JSON + code in a single + response. Rather than retrying the full prompt (which tends to + reproduce the same partial output), we ask for *just* the missing + piece in a focused single-task follow-up — much higher success rate. + + Returns (parsed_json, code_blocks, supplement_content, elapsed_seconds). + supplement_content is None if no supplement was needed or it failed. + """ + has_json = parsed_json is not None + has_code = len(code_blocks) > 0 + + if has_json == has_code: + return parsed_json, code_blocks, None, 0.0 + + if has_json: + output_var = parsed_json.get('output_variable', 'result_df') or 'result_df' + _logger.info(f"{prefix} JSON found but no Python code — requesting supplement") + prompt = ( + "You produced the JSON spec but no Python code block. " + "Now write ONLY the ```python``` code block. " + f"The final DataFrame must be assigned to `{output_var}`." + ) + else: + _logger.info(f"{prefix} Python code found but no JSON spec — requesting supplement") + prompt = ( + "You produced the Python code but no JSON spec. " + "Now write ONLY the ```json``` spec block. " + "Make sure to include `output_variable` matching the " + "variable name used in your code." + ) + + try: + t0 = time.time() + supp_resp = client.get_completion(messages=[ + *messages, + {"role": "assistant", "content": assistant_content}, + {"role": "user", "content": prompt}, + ]) + elapsed = time.time() - t0 + supp_text = supp_resp.choices[0].message.content + + if has_json: + supp_codes = extract_code_from_gpt_response(supp_text + "\n", "python") + if supp_codes: + _logger.info(f"{prefix} Supplement succeeded — got Python code") + return parsed_json, supp_codes, supp_text, elapsed + _logger.warning(f"{prefix} Supplement did not produce Python code") + else: + for jb in extract_json_objects(supp_text + "\n"): + if isinstance(jb, dict): + _logger.info(f"{prefix} Supplement succeeded — got JSON spec") + return jb, code_blocks, supp_text, elapsed + _logger.warning(f"{prefix} Supplement did not produce JSON spec") + except Exception as e: + _logger.warning(f"{prefix} Supplement call failed: {e}") + + return parsed_json, code_blocks, None, 0.0 + + def get_field_summary(field_name, df, field_sample_size, max_val_chars=100): # Convert lists to strings to make them hashable def make_hashable(val): @@ -271,3 +390,47 @@ def assemble_table_summary(table, idx): return separator.join(table_summaries) +def ensure_output_variable_in_code(code: str, output_variable: str) -> tuple[str, bool, str]: + """Zero-cost regex patch: align code's actual output with the JSON-declared variable. + + This is a deterministic local fix (<1ms, 0 tokens) that runs *before* + sandbox execution, avoiding an expensive LLM repair round-trip. + It scans all top-level assignments (not just the last line, which may + be ``print(...)``), picks the last non-library one, and appends an + alias ``output_variable = ``. + + Returns + ------- + (patched_code, was_patched, detected_variable_name) + """ + if not output_variable or not code: + return code, False, "" + + # Check if output_variable appears as an assignment target (= but not ==, !=, <=, >=) + pattern = rf'(?:^|\n)\s*{re.escape(output_variable)}\s*=(?!=)' + if re.search(pattern, code): + return code, False, "" + + # output_variable not assigned — find the likely actual output variable. + all_assignments = re.findall(r'^([a-zA-Z_]\w*)\s*=(?!=)', code, re.MULTILINE) + if not all_assignments: + return code, False, "" + + LIBRARY_NAMES = frozenset({ + 'pd', 'np', 'duckdb', 'conn', 'cursor', 'engine', 'warnings', + 'math', 'json', 're', 'datetime', 'os', 'sys', 'random', 'time', + 'itertools', 'functools', 'operator', 'collections', 'statistics', + }) + + candidates = [v for v in all_assignments + if v not in LIBRARY_NAMES and not v.startswith('_')] + + if candidates: + best = candidates[-1] + else: + best = all_assignments[-1] + + patched_code = code.rstrip() + f"\n{output_variable} = {best}\n" + return patched_code, True, best + + diff --git a/py-src/data_formulator/agents/agent_utils_sql.py b/py-src/data_formulator/agents/agent_utils_sql.py index d9946951..1a81f96f 100644 --- a/py-src/data_formulator/agents/agent_utils_sql.py +++ b/py-src/data_formulator/agents/agent_utils_sql.py @@ -6,17 +6,12 @@ These functions are used across multiple agents for DuckDB operations and SQL data summaries. """ -import re +from data_formulator.datalake.table_names import sanitize_duckdb_sql_table_name def sanitize_table_name(table_name: str) -> str: - """Sanitize table name to be used in SQL queries""" - # Replace spaces with underscores - sanitized_name = table_name.replace(" ", "_") - sanitized_name = sanitized_name.replace("-", "_") - # Allow alphanumeric, underscore, dot, dash, and dollar sign - sanitized_name = re.sub(r'[^a-zA-Z0-9_\.$]', '', sanitized_name) - return sanitized_name + """Sanitize table name for DuckDB views; see :func:`sanitize_duckdb_sql_table_name`.""" + return sanitize_duckdb_sql_table_name(table_name) def create_duckdb_conn_with_parquet_views(workspace, input_tables: list[dict]): diff --git a/py-src/data_formulator/agents/client_utils.py b/py-src/data_formulator/agents/client_utils.py index 43cf0ee3..7f0555ab 100644 --- a/py-src/data_formulator/agents/client_utils.py +++ b/py-src/data_formulator/agents/client_utils.py @@ -48,6 +48,38 @@ def __init__(self, endpoint, model, api_key=None, api_base=None, api_version=No else: self.model = f"ollama/{model}" + def _strip_image_blocks(self, content): + """Remove image_url blocks from multimodal content arrays.""" + if isinstance(content, list): + sanitized = [] + for item in content: + if isinstance(item, dict): + if item.get("type") == "image_url": + continue + sanitized.append(item) + else: + sanitized.append(item) + return sanitized + return content + + def _strip_images_from_messages(self, messages): + """Create a copy of messages with image_url blocks removed.""" + sanitized_messages = [] + for msg in messages: + if isinstance(msg, dict): + new_msg = dict(msg) + if "content" in new_msg: + new_msg["content"] = self._strip_image_blocks(new_msg["content"]) + sanitized_messages.append(new_msg) + else: + sanitized_messages.append(msg) + return sanitized_messages + + def _is_image_deserialize_error(self, error_text: str) -> bool: + """Detect provider errors caused by image blocks on text-only models.""" + lowered = error_text.lower() + return ("image_url" in lowered and "expected `text`" in lowered) or "unknown variant `image_url`" in lowered + @classmethod def from_config(cls, model_config: dict[str, str]): """ @@ -72,6 +104,28 @@ def from_config(cls, model_config: dict[str, str]): model_config.get("api_version") ) + def ping(self, timeout: int = 10): + """Lightweight connectivity check: send a minimal completion with + max_tokens=3 and a short timeout. Raises on any failure.""" + messages = [{"role": "user", "content": "Reply only 'ok'."}] + + if self.endpoint == "openai": + client = openai.OpenAI( + base_url=self.params.get("api_base", None), + api_key=self.params.get("api_key", ""), + timeout=timeout, + ) + client.chat.completions.create( + model=self.model, messages=messages, max_tokens=3, + ) + else: + params = self.params.copy() + params["timeout"] = timeout + litellm.completion( + model=self.model, messages=messages, + max_tokens=3, drop_params=True, **params, + ) + def get_completion(self, messages, stream=False): """ Returns a LiteLLM client configured for the specified endpoint and model. @@ -93,8 +147,16 @@ def get_completion(self, messages, stream=False): if self.model.startswith("gpt-5") or self.model.startswith("o1") or self.model.startswith("o3"): completion_params["reasoning_effort"] = "low" - - return client.chat.completions.create(**completion_params, stream=stream) + + try: + return client.chat.completions.create(**completion_params, stream=stream) + except Exception as e: + error_text = str(e) + if self._is_image_deserialize_error(error_text): + sanitized_messages = self._strip_images_from_messages(messages) + completion_params["messages"] = sanitized_messages + return client.chat.completions.create(**completion_params, stream=stream) + raise else: params = self.params.copy() @@ -103,13 +165,26 @@ def get_completion(self, messages, stream=False): or self.model.startswith("claude-sonnet-4-5") or self.model.startswith("claude-opus-4")): params["reasoning_effort"] = "low" - return litellm.completion( - model=self.model, - messages=messages, - drop_params=True, - stream=stream, - **params - ) + try: + return litellm.completion( + model=self.model, + messages=messages, + drop_params=True, + stream=stream, + **params + ) + except Exception as e: + error_text = str(e) + if self._is_image_deserialize_error(error_text): + sanitized_messages = self._strip_images_from_messages(messages) + return litellm.completion( + model=self.model, + messages=sanitized_messages, + drop_params=True, + stream=stream, + **params + ) + raise def get_response(self, messages: list[dict], tools: list | None = None): diff --git a/py-src/data_formulator/agents/data_agent.py b/py-src/data_formulator/agents/data_agent.py index cc5f0eff..557e0bd2 100644 --- a/py-src/data_formulator/agents/data_agent.py +++ b/py-src/data_formulator/agents/data_agent.py @@ -24,7 +24,7 @@ from data_formulator.agents.agent_data_rec import DataRecAgent from data_formulator.agents.agent_utils import extract_json_objects, generate_data_summary from data_formulator.agents.client_utils import Client -from data_formulator.code_signing import sign_result +from data_formulator.security.code_signing import sign_result from data_formulator.workflows.create_vl_plots import ( assemble_vegailte_chart, coerce_field_type, @@ -59,7 +59,8 @@ {{ "action": "visualize", "thought": "", - "question": "" + "question": "", + "display_instruction": "" }} ``` @@ -78,7 +79,8 @@ {{ "action": "clarify", "thought": "", - "message": "" + "message": "", + "options": ["See supported providers. - Use openai provider for OpenAI-compatible APIs. + • {t('model.litellmNote').split('.')[0]}. {t('model.seeDocs')}. + {t('model.openaiProviderTip')} @@ -575,18 +599,18 @@ export const ModelSelectionButton: React.FC<{}> = ({ }) => { {!serverConfig.DISABLE_DISPLAY_KEYS && ( )} + setModelDialogOpen(false);}}>{t('model.useModel', { modelName: tempModelName })} + }}>{t('model.cancel')} ; diff --git a/src/views/MultiTablePreview.tsx b/src/views/MultiTablePreview.tsx index 7d1d9a55..c812d020 100644 --- a/src/views/MultiTablePreview.tsx +++ b/src/views/MultiTablePreview.tsx @@ -3,6 +3,7 @@ import * as React from 'react'; import { useState, useEffect } from 'react'; +import { useTranslation } from 'react-i18next'; import { Box, Chip, @@ -53,7 +54,7 @@ export const MultiTablePreview: React.FC = ({ error = null, table, tables, - emptyLabel = 'No tables to preview.', + emptyLabel, meta, onRemoveTable, activeIndex: controlledActiveIndex, @@ -63,10 +64,12 @@ export const MultiTablePreview: React.FC = ({ compact = true, hideRowCount = false, }) => { + const { t } = useTranslation(); const previewTables = tables ?? (table ? [table] : null); const [internalActiveIndex, setInternalActiveIndex] = useState(0); const activeIndex = controlledActiveIndex !== undefined ? controlledActiveIndex : internalActiveIndex; const setActiveIndex = onActiveIndexChange || setInternalActiveIndex; + const effectiveEmptyLabel = emptyLabel ?? t('preview.noTablesToPreview'); useEffect(() => { if (!previewTables || previewTables.length === 0) { @@ -109,7 +112,7 @@ export const MultiTablePreview: React.FC = ({ {!loading && !error && (!previewTables || previewTables.length === 0) && ( - {emptyLabel} + {effectiveEmptyLabel} )} @@ -127,7 +130,7 @@ export const MultiTablePreview: React.FC = ({ }} > - Preview + {t('preview.preview')} {previewTables.map((t, idx) => { const label = t.displayId || t.id; @@ -179,13 +182,13 @@ export const MultiTablePreview: React.FC = ({ ); })} {onRemoveTable && ( - + onRemoveTable(activeIndex)} sx={{ ml: 'auto', flexShrink: 0 }} - aria-label="Remove table" + aria-label={t('preview.removeTable')} > @@ -211,7 +214,10 @@ export const MultiTablePreview: React.FC = ({ {!hideRowCount && ( - {activeTable.rows.length} rows × {activeTable.names.length} columns + {t('preview.rowsColumns', { + rows: activeTable.rows.length, + columns: activeTable.names.length, + })} )} diff --git a/src/views/ReactTable.tsx b/src/views/ReactTable.tsx index a885811f..df110350 100644 --- a/src/views/ReactTable.tsx +++ b/src/views/ReactTable.tsx @@ -100,7 +100,9 @@ export const CustomReactTable: React.FC = ({ sx={{ backgroundColor }}> {column.format ? column.format(value) - : (typeof value === "boolean" ? `${value}` : value)} + : (value != null && typeof value === 'object' + ? String(value) + : (typeof value === "boolean" ? `${value}` : value))} ); })} diff --git a/src/views/RefreshDataDialog.tsx b/src/views/RefreshDataDialog.tsx index 063f7323..307e3d13 100644 --- a/src/views/RefreshDataDialog.tsx +++ b/src/views/RefreshDataDialog.tsx @@ -26,7 +26,8 @@ import UploadFileIcon from '@mui/icons-material/UploadFile'; import { useSelector } from 'react-redux'; import { DataFormulatorState } from '../app/dfSlice'; import { DictTable } from '../components/ComponentType'; -import { createTableFromText, loadTextDataWrapper, loadBinaryDataWrapper } from '../data/utils'; +import { createTableFromText, loadTextDataWrapper, loadBinaryDataWrapper, readFileText } from '../data/utils'; +import { useTranslation } from 'react-i18next'; interface TabPanelProps { children?: React.ReactNode; @@ -63,6 +64,7 @@ export const RefreshDataDialog: React.FC = ({ onRefreshComplete, }) => { const theme = useTheme(); + const { t } = useTranslation(); const [tabValue, setTabValue] = useState(0); const [pasteContent, setPasteContent] = useState(''); const [urlContent, setUrlContent] = useState(''); @@ -74,16 +76,13 @@ export const RefreshDataDialog: React.FC = ({ // Constants for content size limits const MAX_DISPLAY_LINES = 20; const LARGE_CONTENT_THRESHOLD = 50000; - const MAX_CONTENT_SIZE = 2 * 1024 * 1024; // 2MB - const [displayContent, setDisplayContent] = useState(''); const [isLargeContent, setIsLargeContent] = useState(false); const [showFullContent, setShowFullContent] = useState(false); - const [isOverSizeLimit, setIsOverSizeLimit] = useState(false); const validateColumns = (newRows: any[]): { valid: boolean; message: string } => { if (!newRows || newRows.length === 0) { - return { valid: false, message: 'No data found in the uploaded content.' }; + return { valid: false, message: t('refresh.errorNoData') }; } const newColumns = Object.keys(newRows[0]).sort(); @@ -92,7 +91,7 @@ export const RefreshDataDialog: React.FC = ({ if (newColumns.length !== existingColumns.length) { return { valid: false, - message: `Column count mismatch. Expected ${existingColumns.length} columns (${existingColumns.join(', ')}), but got ${newColumns.length} columns (${newColumns.join(', ')}).`, + message: t('refresh.errorColumnCountMismatch', { expected: existingColumns.length, expectedNames: existingColumns.join(', '), actual: newColumns.length, actualNames: newColumns.join(', ') }), }; } @@ -100,12 +99,12 @@ export const RefreshDataDialog: React.FC = ({ const extraColumns = newColumns.filter(col => !existingColumns.includes(col)); if (missingColumns.length > 0 || extraColumns.length > 0) { - let message = 'Column names do not match.'; + let message = t('refresh.errorColumnNamesMismatch'); if (missingColumns.length > 0) { - message += ` Missing: ${missingColumns.join(', ')}.`; + message += ` ${t('refresh.errorMissingColumns', { columns: missingColumns.join(', ') })}`; } if (extraColumns.length > 0) { - message += ` Unexpected: ${extraColumns.join(', ')}.`; + message += ` ${t('refresh.errorUnexpectedColumns', { columns: extraColumns.join(', ') })}`; } return { valid: false, message }; } @@ -133,7 +132,6 @@ export const RefreshDataDialog: React.FC = ({ setIsLoading(false); setIsLargeContent(false); setShowFullContent(false); - setIsOverSizeLimit(false); onClose(); }; @@ -147,9 +145,7 @@ export const RefreshDataDialog: React.FC = ({ const newContent = event.target.value; setPasteContent(newContent); - const contentSizeBytes = new Blob([newContent]).size; - const isOverLimit = contentSizeBytes > MAX_CONTENT_SIZE; - setIsOverSizeLimit(isOverLimit); + const isLarge = newContent.length > LARGE_CONTENT_THRESHOLD; setIsLargeContent(isLarge); @@ -157,12 +153,14 @@ export const RefreshDataDialog: React.FC = ({ if (isLarge && !showFullContent) { const lines = newContent.split('\n'); const previewLines = lines.slice(0, MAX_DISPLAY_LINES); - const preview = previewLines.join('\n') + (lines.length > MAX_DISPLAY_LINES ? '\n... (truncated for performance)' : ''); + const preview = + previewLines.join('\n') + + (lines.length > MAX_DISPLAY_LINES ? `\n${t('upload.pastePreviewTruncatedSuffix')}` : ''); setDisplayContent(preview); } else { setDisplayContent(newContent); } - }, [showFullContent]); + }, [showFullContent, t]); const toggleFullContent = useCallback(() => { setShowFullContent(!showFullContent); @@ -171,15 +169,17 @@ export const RefreshDataDialog: React.FC = ({ } else { const lines = pasteContent.split('\n'); const previewLines = lines.slice(0, MAX_DISPLAY_LINES); - const preview = previewLines.join('\n') + (lines.length > MAX_DISPLAY_LINES ? '\n... (truncated for performance)' : ''); + const preview = + previewLines.join('\n') + + (lines.length > MAX_DISPLAY_LINES ? `\n${t('upload.pastePreviewTruncatedSuffix')}` : ''); setDisplayContent(preview); } - }, [showFullContent, pasteContent]); + }, [showFullContent, pasteContent, t]); // Handle paste submit const handlePasteSubmit = () => { if (!pasteContent.trim()) { - setError('Please paste some data.'); + setError(t('refresh.errorPleaseAddData')); return; } @@ -191,7 +191,7 @@ export const RefreshDataDialog: React.FC = ({ if (Array.isArray(jsonContent)) { newRows = jsonContent; } else { - setError('JSON content must be an array of objects.'); + setError(t('refresh.errorJsonArray')); setIsLoading(false); return; } @@ -201,14 +201,14 @@ export const RefreshDataDialog: React.FC = ({ if (tempTable) { newRows = tempTable.rows; } else { - setError('Could not parse the pasted content as JSON or CSV/TSV.'); + setError(t('refresh.errorParsePaste')); setIsLoading(false); return; } } processAndValidateData(newRows); } catch (err) { - setError('Failed to parse the pasted content.'); + setError(t('refresh.errorParseContent')); } finally { setIsLoading(false); } @@ -217,13 +217,13 @@ export const RefreshDataDialog: React.FC = ({ // Handle URL submit const handleUrlSubmit = () => { if (!urlContent.trim()) { - setError('Please enter a URL.'); + setError(t('refresh.errorPleaseEnterUrl')); return; } const hasValidSuffix = urlContent.endsWith('.csv') || urlContent.endsWith('.tsv') || urlContent.endsWith('.json'); if (!hasValidSuffix) { - setError('URL must point to a .csv, .tsv, or .json file.'); + setError(t('refresh.errorUrlSuffix')); return; } @@ -237,7 +237,7 @@ export const RefreshDataDialog: React.FC = ({ if (Array.isArray(jsonContent)) { newRows = jsonContent; } else { - setError('JSON content must be an array of objects.'); + setError(t('refresh.errorJsonArray')); setIsLoading(false); return; } @@ -246,7 +246,7 @@ export const RefreshDataDialog: React.FC = ({ if (tempTable) { newRows = tempTable.rows; } else { - setError('Could not parse the URL content as JSON or CSV/TSV.'); + setError(t('refresh.errorParseUrl')); setIsLoading(false); return; } @@ -254,7 +254,7 @@ export const RefreshDataDialog: React.FC = ({ processAndValidateData(newRows); }) .catch(err => { - setError(`Failed to fetch data from URL: ${err.message}`); + setError(t('refresh.errorFetchUrl', { message: err.message })); }) .finally(() => { setIsLoading(false); @@ -276,21 +276,14 @@ export const RefreshDataDialog: React.FC = ({ file.name.endsWith('.tsv') || file.name.endsWith('.json')) { - const MAX_FILE_SIZE = 5 * 1024 * 1024; - if (file.size > MAX_FILE_SIZE) { - setError(`File is too large (${(file.size / (1024 * 1024)).toFixed(2)}MB). Maximum size is 5MB.`); - setIsLoading(false); - return; - } - - file.text().then((text) => { + readFileText(file).then((text) => { let newRows: any[] = []; try { const jsonContent = JSON.parse(text); if (Array.isArray(jsonContent)) { newRows = jsonContent; } else { - setError('JSON content must be an array of objects.'); + setError(t('refresh.errorJsonArray')); setIsLoading(false); return; } @@ -299,14 +292,14 @@ export const RefreshDataDialog: React.FC = ({ if (tempTable) { newRows = tempTable.rows; } else { - setError('Could not parse the file content.'); + setError(t('refresh.errorParseFile')); setIsLoading(false); return; } } processAndValidateData(newRows); }).catch(err => { - setError(`Failed to read file: ${err.message}`); + setError(t('refresh.errorReadFile', { message: err.message })); }).finally(() => { setIsLoading(false); }); @@ -324,17 +317,17 @@ export const RefreshDataDialog: React.FC = ({ if (tables.length > 0) { processAndValidateData(tables[0].rows); } else { - setError('Failed to parse Excel file.'); + setError(t('refresh.errorParseExcel')); } } catch (err) { - setError('Failed to parse Excel file.'); + setError(t('refresh.errorParseExcel')); } } setIsLoading(false); }; reader.readAsArrayBuffer(file); } else { - setError('Unsupported file format. Please use CSV, TSV, JSON, or Excel files.'); + setError(t('refresh.errorUnsupportedFormat')); setIsLoading(false); } @@ -356,7 +349,7 @@ export const RefreshDataDialog: React.FC = ({ > - Refresh Data for "{table.displayId || table.id}" + {t('refresh.titleForTable', { table: table.displayId || table.id })} = ({ lineHeight: 1.5 }} > - Upload new data to replace the current table content. Required columns: {table.names.join(', ')} + {t('refresh.description')} {table.names.join(', ')} {error && ( @@ -401,28 +394,14 @@ export const RefreshDataDialog: React.FC = ({ - - - + + + - {isOverSizeLimit && ( - - - Content exceeds {(MAX_CONTENT_SIZE / (1024 * 1024)).toFixed(0)}MB limit ({(new Blob([pasteContent]).size / (1024 * 1024)).toFixed(2)}MB) - - - )} - {isLargeContent && !isOverSizeLimit && ( + {isLargeContent && ( = ({ border: `1px solid ${borderColor.divider}` }}> - Large content ({Math.round(pasteContent.length / 1000)}KB) • {showFullContent ? 'Full view' : 'Preview'} + {t('upload.largeContentDetected', { size: Math.round(pasteContent.length / 1000) })}{' '} + •{' '} + {showFullContent ? t('upload.showingFullContent') : t('upload.showingPreview')} )} @@ -459,7 +440,7 @@ export const RefreshDataDialog: React.FC = ({ fullWidth value={displayContent} onChange={handlePasteContentChange} - placeholder="Paste your data here (CSV, TSV, or JSON format)" + placeholder={t('upload.placeholder.paste')} disabled={isLoading} sx={{ '& .MuiInputBase-root': { @@ -480,10 +461,10 @@ export const RefreshDataDialog: React.FC = ({ {serverConfig.DISABLE_FILE_UPLOAD ? ( - File upload is disabled in this environment. + {t('upload.fileUploadDisabled')} - Install Data Formulator locally to enable file upload.
+ {t('refresh.installLocallyForUpload')}
= ({ > - Drag & drop file here + {t('upload.dragDrop')} - or Browse + {t('upload.or')}{' '} + + {t('upload.browse')} + - Supported: CSV, TSV, JSON, Excel (xlsx, xls) + {t('upload.supportedFormats')}
@@ -537,12 +521,12 @@ export const RefreshDataDialog: React.FC = ({ setUrlContent(e.target.value.trim())} disabled={isLoading} error={urlContent !== '' && !hasValidUrlSuffix} - helperText={urlContent !== '' && !hasValidUrlSuffix ? 'URL should link to a .csv, .tsv, or .json file' : ''} + helperText={urlContent !== '' && !hasValidUrlSuffix ? t('refresh.urlSuffixHelper') : ''} size="small" sx={{ '& .MuiInputBase-input': { @@ -564,16 +548,16 @@ export const RefreshDataDialog: React.FC = ({ disabled={isLoading} sx={{ textTransform: 'none' }} > - Cancel + {t('app.cancel')} {tabValue === 0 && ( )} {tabValue === 2 && ( @@ -583,7 +567,7 @@ export const RefreshDataDialog: React.FC = ({ disabled={isLoading || !urlContent.trim() || !hasValidUrlSuffix} sx={{ textTransform: 'none' }} > - Refresh Data + {t('refresh.refreshData')} )} diff --git a/src/views/ReportView.tsx b/src/views/ReportView.tsx index f0d82125..4908e102 100644 --- a/src/views/ReportView.tsx +++ b/src/views/ReportView.tsx @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import React, { FC, useState, useRef, useEffect, memo, useMemo } from 'react'; -import { borderColor, shadow, transition, radius } from '../app/tokens'; +import React, { FC, useState, useRef, useEffect, useMemo } from 'react'; +import { borderColor, shadow, transition } from '../app/tokens'; import { Box, Button, @@ -12,15 +12,8 @@ import { Card, CardContent, CircularProgress, - Alert, Link, - Divider, Paper, - TableBody, - TableCell, - TableContainer, - TableHead, - TableRow, ToggleButton, ToggleButtonGroup, Tooltip, @@ -30,188 +23,24 @@ import { import Masonry from '@mui/lab/Masonry'; import ArrowForwardIcon from '@mui/icons-material/ArrowForward'; import ArrowBackIcon from '@mui/icons-material/ArrowBack'; -import CreateChartifact from '@mui/icons-material/Description'; import EditIcon from '@mui/icons-material/Edit'; -import HelpOutlineIcon from '@mui/icons-material/HelpOutline'; -import HistoryIcon from '@mui/icons-material/History'; import DeleteIcon from '@mui/icons-material/Delete'; -import ShareIcon from '@mui/icons-material/Share'; +import ContentCopyIcon from '@mui/icons-material/ContentCopy'; import CheckCircleIcon from '@mui/icons-material/CheckCircle'; import html2canvas from 'html2canvas'; import { useDispatch, useSelector } from 'react-redux'; import { DataFormulatorState, dfActions, dfSelectors, GeneratedReport } from '../app/dfSlice'; import { Message } from './MessageSnackbar'; import { getUrls, assembleVegaChart, getTriggers, prepVisTable, fetchWithIdentity } from '../app/utils'; -import { MuiMarkdown, getOverrides } from 'mui-markdown'; import embed from 'vega-embed'; -import { getDataTable } from './VisualizationView'; +import { getDataTable } from './ChartUtils'; import { DictTable } from '../components/ComponentType'; import { AppDispatch } from '../app/store'; -import { Collapse } from '@mui/material'; -import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; -import ExpandLessIcon from '@mui/icons-material/ExpandLess'; -import { convertToChartifact, openChartifactViewer } from './ChartifactDialog'; -import { StreamIcon } from '../icons'; - -// Typography constants -const FONT_FAMILY_SYSTEM = '-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"'; -const FONT_FAMILY_SERIF = 'Georgia, Cambria, "Times New Roman", Times, serif'; -const FONT_FAMILY_MONO = '"SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'; - -// Color constants -const COLOR_HEADING = 'rgb(37, 37, 37)'; -const COLOR_BODY = 'rgb(55, 53, 47)'; -const COLOR_MUTED = 'rgb(73, 73, 73)'; -const COLOR_BG_LIGHT = 'rgba(247, 246, 243, 1)'; - -// Social post style constants (Twitter/X style) -const COLOR_SOCIAL_TEXT = 'rgb(15, 20, 25)'; -const COLOR_SOCIAL_BORDER = 'rgb(207, 217, 222)'; -const COLOR_SOCIAL_ACCENT = 'rgb(29, 155, 240)'; - -// Executive summary style constants (professional/business look) -const COLOR_EXEC_TEXT = 'rgb(33, 37, 41)'; -const COLOR_EXEC_HEADING = 'rgb(20, 24, 28)'; -const COLOR_EXEC_BORDER = 'rgb(108, 117, 125)'; -const COLOR_EXEC_ACCENT = 'rgb(0, 123, 255)'; -const COLOR_EXEC_BG = 'rgb(248, 249, 250)'; - - -const HEADING_BASE = { - fontFamily: FONT_FAMILY_SYSTEM, - color: COLOR_HEADING, - fontWeight: 700, - letterSpacing: '-0.01em', -}; - -const BODY_TEXT_BASE = { - fontFamily: FONT_FAMILY_SYSTEM, - fontSize: '0.9375rem', - lineHeight: 1.75, - fontWeight: 400, - letterSpacing: '0.003em', - color: COLOR_BODY, -}; +import { TiptapReportEditor } from './TiptapReportEditor'; +import { getCachedChart } from '../app/chartCache'; -const TABLE_CELL_BASE = { - fontFamily: FONT_FAMILY_SYSTEM, - fontSize: '0.875rem', - py: 1.5, - px: 2, -}; - -// Notion-style markdown overrides with MUI components -const notionStyleMarkdownOverrides = { - ...getOverrides(), - h1: { component: Typography, props: { variant: 'h4', gutterBottom: true, - sx: { ...HEADING_BASE, fontSize: '1.75rem', lineHeight: 1.25, letterSpacing: '-0.02em', pb: 0.5, mb: 3, mt: 4 } } }, - h2: { component: Typography, props: { variant: 'h5', gutterBottom: true, - sx: { ...HEADING_BASE, fontSize: '1.5rem', lineHeight: 1.3, pb: 0.5, mb: 2.5, mt: 3.5 } } }, - h3: { component: Typography, props: { variant: 'h6', gutterBottom: true, - sx: { ...HEADING_BASE, fontWeight: 600, fontSize: '1.25rem', lineHeight: 1.4, letterSpacing: '-0.005em', mb: 2, mt: 3 } } }, - h4: { component: Typography, props: { variant: 'h6', gutterBottom: true, - sx: { ...HEADING_BASE, fontWeight: 600, fontSize: '1.125rem', lineHeight: 1.4, mb: 1.5, mt: 2.5 } } }, - h5: { component: Typography, props: { variant: 'subtitle1', gutterBottom: true, - sx: { ...HEADING_BASE, fontWeight: 600, fontSize: '1rem', lineHeight: 1.5, mb: 1.5, mt: 2 } } }, - h6: { component: Typography, props: { variant: 'subtitle2', gutterBottom: true, - sx: { ...HEADING_BASE, fontWeight: 600, fontSize: '0.9375rem', lineHeight: 1.5, mb: 1.5, mt: 2 } } }, - p: { component: Typography, props: { variant: 'body2', paragraph: true, - sx: { ...BODY_TEXT_BASE, mb: 1.75 } } }, - a: { component: Link, props: { underline: 'hover' as const, color: 'primary' as const, - sx: { fontSize: 'inherit', fontWeight: 500 } } }, - ul: { component: 'ul', props: { style: { - paddingLeft: '1.8em', marginTop: '0.75em', marginBottom: '1.5em', fontFamily: FONT_FAMILY_SYSTEM - } } }, - ol: { component: 'ol', props: { style: { - paddingLeft: '1.8em', marginTop: '0.75em', marginBottom: '1.5em', fontFamily: FONT_FAMILY_SYSTEM - } } }, - li: { component: Typography, props: { component: 'li', variant: 'body1', - sx: { ...BODY_TEXT_BASE, mb: 0.5 } } }, - blockquote: { component: Box, props: { sx: { - borderLeft: '3px solid', borderColor: borderColor.component, pl: 2.5, py: 1, my: 2.5, - fontFamily: FONT_FAMILY_SERIF, fontStyle: 'italic', color: COLOR_MUTED, fontSize: '1rem', lineHeight: 1.7 - } } }, - pre: { component: Paper, props: { elevation: 0, sx: { - backgroundColor: COLOR_BG_LIGHT, p: 2, borderRadius: '4px', overflow: 'auto', my: 2, - border: `1px solid ${borderColor.divider}`, - '& code': { - backgroundColor: 'transparent !important', padding: '0 !important', fontSize: '0.8125rem', - fontFamily: FONT_FAMILY_MONO, lineHeight: 1.7, color: COLOR_BODY - } - } } }, - table: { component: TableContainer, props: { component: Paper, elevation: 0, - sx: { my: 2, border: `1px solid ${borderColor.divider}` } } }, - thead: { component: TableHead, props: { sx: { backgroundColor: COLOR_BG_LIGHT } } }, - tbody: { component: TableBody }, - tr: { component: TableRow }, - th: { component: TableCell, props: { sx: { - ...TABLE_CELL_BASE, fontWeight: 600, borderBottom: `2px solid ${borderColor.divider}` - } } }, - td: { component: TableCell, props: { sx: { - ...TABLE_CELL_BASE, borderBottom: `1px solid ${borderColor.divider}`, lineHeight: 1.6 - } } }, - hr: { component: Divider, props: { sx: { my: 3 } } } -} as any; - -// Social post style markdown overrides (X/Twitter style) -const socialStyleMarkdownOverrides = { - ...notionStyleMarkdownOverrides, - h1: { component: Typography, props: { variant: 'h6', gutterBottom: true, - sx: { fontFamily: FONT_FAMILY_SYSTEM, fontWeight: 700, fontSize: '1.125rem', - lineHeight: 1.25, color: COLOR_SOCIAL_TEXT, mb: 1.5, mt: 1.5 } } }, - h2: { component: Typography, props: { variant: 'h6', gutterBottom: true, - sx: { fontFamily: FONT_FAMILY_SYSTEM, fontWeight: 700, fontSize: '1rem', - lineHeight: 1.25, color: COLOR_SOCIAL_TEXT, mb: 1.25, mt: 1.5 } } }, - h3: { component: Typography, props: { variant: 'subtitle1', gutterBottom: true, - sx: { fontFamily: FONT_FAMILY_SYSTEM, fontWeight: 600, fontSize: '0.9375rem', - lineHeight: 1.3, color: COLOR_SOCIAL_TEXT, mb: 1, mt: 1.25 } } }, - p: { component: Typography, props: { variant: 'body2', paragraph: true, - sx: { fontFamily: FONT_FAMILY_SYSTEM, fontSize: '0.875rem', lineHeight: 1.4, - fontWeight: 400, mb: 0.75, color: COLOR_SOCIAL_TEXT } } }, - li: { component: Typography, props: { component: 'li', variant: 'body2', - sx: { fontFamily: FONT_FAMILY_SYSTEM, fontSize: '0.875rem', lineHeight: 1.4, - fontWeight: 400, mb: 0.25, color: COLOR_SOCIAL_TEXT } } } -} as any; - -// Executive summary style markdown overrides (compact serif styling) -const executiveSummaryMarkdownOverrides = { - ...getOverrides(), - h1: { component: Typography, props: { variant: 'h5', gutterBottom: true, - sx: { fontFamily: FONT_FAMILY_SERIF, fontWeight: 700, fontSize: '1.25rem', lineHeight: 1.3, color: COLOR_EXEC_HEADING, mb: 2, mt: 2.5 } } }, - h2: { component: Typography, props: { variant: 'h6', gutterBottom: true, - sx: { fontFamily: FONT_FAMILY_SERIF, fontWeight: 600, fontSize: '1.125rem', lineHeight: 1.3, color: COLOR_EXEC_HEADING, mb: 1.5, mt: 2 } } }, - h3: { component: Typography, props: { variant: 'h6', gutterBottom: true, - sx: { fontFamily: FONT_FAMILY_SERIF, fontWeight: 600, fontSize: '1rem', lineHeight: 1.4, color: COLOR_EXEC_HEADING, mb: 1.25, mt: 1.5 } } }, - h4: { component: Typography, props: { variant: 'subtitle1', gutterBottom: true, - sx: { fontFamily: FONT_FAMILY_SERIF, fontWeight: 600, fontSize: '0.9375rem', lineHeight: 1.4, color: COLOR_EXEC_HEADING, mb: 1, mt: 1.5 } } }, - p: { component: Typography, props: { variant: 'body2', paragraph: true, - sx: { fontFamily: FONT_FAMILY_SERIF, fontSize: '0.875rem', lineHeight: 1.5, fontWeight: 400, color: COLOR_EXEC_TEXT, mb: 1.25, textAlign: 'justify' } } }, - a: { component: Link, props: { underline: 'hover' as const, color: 'primary' as const, - sx: { fontSize: 'inherit', fontWeight: 500, color: COLOR_EXEC_ACCENT, '&:hover': { color: 'rgb(0, 86, 179)' } } } }, - ul: { component: 'ul', props: { style: { paddingLeft: '1.5em', marginTop: '0.5em', marginBottom: '1em', fontFamily: FONT_FAMILY_SERIF } } }, - ol: { component: 'ol', props: { style: { paddingLeft: '1.5em', marginTop: '0.5em', marginBottom: '1em', fontFamily: FONT_FAMILY_SERIF } } }, - li: { component: Typography, props: { component: 'li', variant: 'body2', - sx: { fontFamily: FONT_FAMILY_SERIF, fontSize: '0.875rem', lineHeight: 1.5, fontWeight: 400, color: COLOR_EXEC_TEXT, mb: 0.25 } } }, - blockquote: { component: Box, props: { sx: { - borderLeft: '2px solid', borderLeftColor: COLOR_EXEC_ACCENT, pl: 2, py: 1, my: 1.5, - backgroundColor: COLOR_EXEC_BG, fontFamily: FONT_FAMILY_SERIF, fontStyle: 'italic', color: COLOR_EXEC_TEXT, fontSize: '0.875rem', lineHeight: 1.6 - } } }, - pre: { component: Paper, props: { elevation: 0, sx: { - backgroundColor: COLOR_EXEC_BG, p: 1.5, borderRadius: '4px', overflow: 'auto', my: 1.5, - '& code': { backgroundColor: 'transparent !important', padding: '0 !important', fontSize: '0.75rem', fontFamily: FONT_FAMILY_MONO, lineHeight: 1.5, color: COLOR_EXEC_TEXT } - } } }, - table: { component: TableContainer, props: { component: Paper, elevation: 0, sx: { my: 1.5, borderRadius: '4px' } } }, - thead: { component: TableHead, props: { sx: { backgroundColor: COLOR_EXEC_BG } } }, - tbody: { component: TableBody }, - tr: { component: TableRow }, - th: { component: TableCell, props: { sx: { - fontFamily: FONT_FAMILY_SERIF, fontSize: '0.8125rem', py: 1, px: 1.5, fontWeight: 600, borderBottom: '1px solid', borderColor: COLOR_EXEC_BORDER, color: COLOR_EXEC_HEADING - } } }, - td: { component: TableCell, props: { sx: { - fontFamily: FONT_FAMILY_SERIF, fontSize: '0.8125rem', py: 1, px: 1.5, borderBottom: '1px solid', borderColor: COLOR_EXEC_BORDER, lineHeight: 1.5, color: COLOR_EXEC_TEXT - } } }, - hr: { component: Divider, props: { sx: { my: 2, borderColor: COLOR_EXEC_BORDER } } } -} as any; +import { StreamIcon } from '../icons'; +import { useTranslation } from 'react-i18next'; export const ReportView: FC = () => { // Get all generated reports from Redux state @@ -219,8 +48,7 @@ export const ReportView: FC = () => { const charts = useSelector((state: DataFormulatorState) => state.charts); const tables = useSelector((state: DataFormulatorState) => state.tables); - const selectedModelId = useSelector((state: DataFormulatorState) => state.selectedModelId); - const models = useSelector((state: DataFormulatorState) => state.models); + const activeModel = useSelector(dfSelectors.getActiveModel); const conceptShelfItems = useSelector((state: DataFormulatorState) => state.conceptShelfItems); const config = useSelector((state: DataFormulatorState) => state.config); const allGeneratedReports = useSelector(dfSelectors.getAllGeneratedReports); @@ -228,12 +56,25 @@ export const ReportView: FC = () => { const focusedId = useSelector((state: DataFormulatorState) => state.focusedId); const focusedChartId = focusedId?.type === 'chart' ? focusedId.chartId : undefined; const theme = useTheme(); + const { t } = useTranslation(); + + const reportStyleDisplayLabel = (styleKey: string) => { + const map: Record = { + 'live report': 'report.styleLiveReport', + 'blog post': 'report.styleBlogPost', + 'social post': 'report.styleSocialPost', + 'executive summary': 'report.styleExecutiveSummary', + 'short note': 'report.styleShortNote', + }; + const labelKey = map[styleKey]; + return labelKey ? t(labelKey) : styleKey; + }; const [selectedChartIds, setSelectedChartIds] = useState>(new Set(focusedChartId ? [focusedChartId] : [])); const [previewImages, setPreviewImages] = useState>(new Map()); const [isLoadingPreviews, setIsLoadingPreviews] = useState(false); const [isGenerating, setIsGenerating] = useState(false); - const [error, setError] = useState(''); + const [style, setStyle] = useState('social post'); const [mode, setMode] = useState<'compose' | 'post'>(allGeneratedReports.length > 0 ? 'post' : 'compose'); @@ -243,7 +84,7 @@ export const ReportView: FC = () => { const [generatedStyle, setGeneratedStyle] = useState('social post'); const [cachedReportImages, setCachedReportImages] = useState>({}); const [shareButtonSuccess, setShareButtonSuccess] = useState(false); - const [hideTableOfContents, setHideTableOfContents] = useState(false); + const [copyButtonSuccess, setCopyButtonSuccess] = useState(false); const updateCachedReportImages = (chartId: string, blobUrl: string, width: number, height: number) => { setCachedReportImages(prev => ({ @@ -256,7 +97,7 @@ export const ReportView: FC = () => { const showMessage = (message: string, type: 'success' | 'error' | 'info' | 'warning' = 'success') => { const msg: Message = { type, - component: 'ReportView', + component: t('messages.report.component'), timestamp: Date.now(), value: message }; @@ -271,7 +112,7 @@ export const ReportView: FC = () => { // Find the report content element const reportElement = document.querySelector('[data-report-content]') as HTMLElement; if (!reportElement) { - showMessage('Could not find report content to capture', 'error'); + showMessage(t('report.couldNotFindContent'), 'error'); return; } @@ -292,7 +133,7 @@ export const ReportView: FC = () => { // Convert canvas to blob canvas.toBlob((blob: Blob | null) => { if (!blob) { - showMessage('Failed to generate image', 'error'); + showMessage(t('report.failedToGenerateImage'), 'error'); return; } @@ -303,37 +144,61 @@ export const ReportView: FC = () => { 'image/png': blob }) ]).then(() => { - showMessage('Report image copied to clipboard! You can now paste it anywhere to share.'); + showMessage(t('report.imageCopied')); setShareButtonSuccess(true); setTimeout(() => setShareButtonSuccess(false), 2000); }).catch(() => { - showMessage('Failed to copy to clipboard. Your browser may not support this feature.', 'error'); + showMessage(t('report.failedToCopyClipboard'), 'error'); }); } else { - showMessage('Clipboard API not supported in your browser. Please use a modern browser.', 'error'); + showMessage(t('report.clipboardNotSupported'), 'error'); } }, 'image/png', 0.95); } catch (error) { console.error('Error generating report image:', error); - showMessage('Failed to generate report image. Please try again.', 'error'); + showMessage(t('report.failedToGenerateReportImage'), 'error'); } }; - // Update like this: const processReport = (rawReport: string): string => { const markdownMatch = rawReport.match(/```markdown\n([\s\S]*?)(?:\n```)?$/); let processed = markdownMatch ? markdownMatch[1] : rawReport; - + + const makeImg = (chartId: string, url: string, width: number, height: number) => { + return `${t('report.chartAlt')}`; + }; + + const usedKeys = new Set(); Object.entries(cachedReportImages).forEach(([chartId, { url, width, height }]) => { - processed = processed.replace( - new RegExp(`\\[IMAGE\\(${chartId}\\)\\]`, 'g'), - `Chart` - ); + const escaped = chartId.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); + const regex = new RegExp(`\\[IMAGE\\(${escaped}\\)\\]`, 'g'); + if (regex.test(processed)) { + usedKeys.add(chartId); + processed = processed.replace(regex, makeImg(chartId, url, width, height)); + } }); - + + const unusedEntries = Object.entries(cachedReportImages) + .filter(([key]) => !usedKeys.has(key)); + let unusedIdx = 0; + processed = processed.replace(/\[IMAGE\([^\)]+\)\]/g, () => { + if (unusedIdx < unusedEntries.length) { + const [chartId, { url, width, height }] = unusedEntries[unusedIdx++]; + return makeImg(chartId, url, width, height); + } + return ''; + }); + + // Refresh stale tags that have data-chart-id with updated blob URLs + Object.entries(cachedReportImages).forEach(([chartId, { url, width, height }]) => { + const escaped = chartId.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); + const imgRegex = new RegExp(`]*?)data-chart-id="${escaped}"([^>]*?)>`, 'g'); + processed = processed.replace(imgRegex, makeImg(chartId, url, width, height)); + }); + return processed; }; @@ -344,20 +209,25 @@ export const ReportView: FC = () => { setGeneratedReport(report.content); setGeneratedStyle(report.style); - // load / assemble chart images for the report report.selectedChartIds.forEach((chartId) => { const chart = charts.find(c => c.id === chartId); - if (!chart) return null; + if (!chart) return; + if (chart.chartType === 'Table' || chart.chartType === '?') return; + + // Try SVG cache first (instant, high quality) + const cached = getCachedChart(chartId); + if (cached?.svg) { + const blob = new Blob([cached.svg], { type: 'image/svg+xml;charset=utf-8' }); + const blobUrl = URL.createObjectURL(blob); + updateCachedReportImages(chartId, blobUrl, config.defaultChartWidth, config.defaultChartHeight); + return; + } + // Fall back to full Vega render const chartTable = tables.find(t => t.id === chart.tableRef); - if (!chartTable) return null; - - if (chart.chartType === 'Table' || chart.chartType === '?') { - return null; - } + if (!chartTable) return; getChartImageFromVega(chart, chartTable).then(({ blobUrl, width, height }) => { if (blobUrl) { - // Use blob URL for local display and caching updateCachedReportImages(chart.id, blobUrl, width, height); } }); @@ -371,6 +241,25 @@ export const ReportView: FC = () => { } }, [currentReportId]); + // Derive focused report ID from Redux state + const focusedReportId = focusedId?.type === 'report' ? focusedId.reportId : undefined; + + // When focused report is cleared (e.g. user clicked compose button), switch to compose mode + useEffect(() => { + if (!focusedReportId && !isGenerating) { + setMode('compose'); + } + }, [focusedReportId]); + + // When a report is focused via the thread, load it automatically + // Re-runs when charts/tables load so images render on initial page load + useEffect(() => { + if (focusedReportId) { + loadReport(focusedReportId); + if (mode !== 'post') setMode('post'); + } + }, [focusedReportId, charts, tables]); + // Auto-refresh chart images when underlying table data changes // This enables real-time chart updates in reports when data is streaming const tableRowSignaturesRef = useRef>(new Map()); @@ -409,9 +298,7 @@ export const ReportView: FC = () => { } }); - // If data changed, regenerate chart images for the report if (hasChanges) { - reportChartIds.forEach(chartId => { const chart = charts.find(c => c.id === chartId); if (!chart) return; @@ -422,7 +309,7 @@ export const ReportView: FC = () => { if (chart.chartType === 'Table' || chart.chartType === '?') { return; } - + getChartImageFromVega(chart, chartTable).then(({ blobUrl, width, height }) => { if (blobUrl) { updateCachedReportImages(chart.id, blobUrl, width, height); @@ -483,7 +370,7 @@ export const ReportView: FC = () => { // eslint-disable-next-line react-hooks/exhaustive-deps }, []); // Only cleanup on unmount, not when images change - // Use existing thumbnails from ChartRenderService instead of re-rendering + // Use cached SVG (high-res) for chart previews, falling back to thumbnail PNG useEffect(() => { const newPreviewImages = new Map(); @@ -496,8 +383,17 @@ export const ReportView: FC = () => { for (const chart of sortedCharts) { if (chart.chartType === 'Table' || chart.chartType === '?' || chart.chartType === 'Auto') continue; - if (chart.thumbnail) { - // Use the pre-rendered thumbnail from ChartRenderService + const cached = getCachedChart(chart.id); + if (cached?.svg) { + // Use SVG blob URL for crisp rendering at any size + const blob = new Blob([cached.svg], { type: 'image/svg+xml;charset=utf-8' }); + newPreviewImages.set(chart.id, { + url: URL.createObjectURL(blob), + width: config.defaultChartWidth, + height: config.defaultChartHeight, + }); + } else if (chart.thumbnail) { + // Fallback to low-res thumbnail newPreviewImages.set(chart.id, { url: chart.thumbnail, width: config.defaultChartWidth, @@ -567,70 +463,32 @@ export const ReportView: FC = () => { document.body.appendChild(tempDiv); try { - // Embed the chart + // Use canvas renderer for reliable PNG generation + // (SVG → Image → Canvas pipeline can fail to render text and complex features) + const scale = 2; const result = await embed(`#${tempId}`, assembledChart, { actions: false, - renderer: 'svg' + renderer: 'canvas', + scaleFactor: scale, }); - // Export to SVG with high resolution - const svgString = await result.view.toSVG(4); - - // Parse SVG to get original dimensions - const parser = new DOMParser(); - const svgDoc = parser.parseFromString(svgString, 'image/svg+xml'); - const svgElement = svgDoc.querySelector('svg'); - - if (!svgElement) { - throw new Error('Could not parse SVG'); - } - - // Get original dimensions - const originalWidth = parseFloat(svgElement.getAttribute('width') || '0'); - const originalHeight = parseFloat(svgElement.getAttribute('height') || '0'); - - // Convert SVG to PNG using canvas - const { dataUrl, blobUrl } = await new Promise<{ dataUrl: string; blobUrl: string }>((resolve, reject) => { - const canvas = document.createElement('canvas'); - const ctx = canvas.getContext('2d'); - if (!ctx) { - reject(new Error('Could not get canvas context')); - return; - } - - const img = new Image(); - const svgBlob = new Blob([svgString], { type: 'image/svg+xml;charset=utf-8' }); - const svgUrl = URL.createObjectURL(svgBlob); - - img.onload = () => { - canvas.width = img.width; - canvas.height = img.height; - ctx.drawImage(img, 0, 0); - URL.revokeObjectURL(svgUrl); - - const dataUrl = canvas.toDataURL('image/png'); - - canvas.toBlob((blob) => { - if (blob) { - const blobUrl = URL.createObjectURL(blob); - resolve({ dataUrl, blobUrl }); - } else { - resolve({ dataUrl, blobUrl: '' }); - } - }, 'image/png'); - }; + // Get high-resolution canvas directly from Vega + const canvas = await result.view.toCanvas(scale); + const displayWidth = Math.round(canvas.width / scale); + const displayHeight = Math.round(canvas.height / scale); - img.onerror = (err) => { - URL.revokeObjectURL(svgUrl); - reject(err); - }; + const dataUrl = canvas.toDataURL('image/png'); - img.src = svgUrl; + // Create blob URL for display in the report + const blob = await new Promise((resolve) => { + canvas.toBlob(resolve, 'image/png'); }); + const blobUrl = blob ? URL.createObjectURL(blob) : ''; + result.view.finalize(); document.body.removeChild(tempDiv); - return { dataUrl, blobUrl, width: originalWidth, height: originalHeight }; + return { dataUrl, blobUrl, width: displayWidth, height: displayHeight }; } catch (error) { if (document.body.contains(tempDiv)) { document.body.removeChild(tempDiv); @@ -645,23 +503,41 @@ export const ReportView: FC = () => { const generateReport = async () => { if (selectedChartIds.size === 0) { - setError('Please select at least one chart'); + showMessage(t('report.pleaseSelectChart'), 'error'); return; } setIsGenerating(true); - setError(''); setGeneratedReport(''); setGeneratedStyle(style); // Create a new report ID const reportId = `report-${Date.now()}-${Math.floor(Math.random() * 10000)}`; + // Save an in-progress report to Redux immediately so it appears in the thread + const orderedChartIds = sortedCharts + .filter(c => selectedChartIds.has(c.id)) + .map(c => c.id); + const inProgressReport: GeneratedReport = { + id: reportId, + content: '', + style: style, + selectedChartIds: orderedChartIds, + createdAt: Date.now(), + status: 'generating', + }; + dispatch(dfActions.saveGeneratedReport(inProgressReport)); + dispatch(dfActions.setFocused({ type: 'report', reportId })); + setCurrentReportId(reportId); + if (mode === 'compose') { + setMode('post'); + } + try { - let model = models.find(m => m.id == selectedModelId); + let model = activeModel; if (!model) { - throw new Error('No model selected'); + throw new Error(t('report.noModelSelected')); } const maxRows = serverConfig.MAX_DISPLAY_ROWS; @@ -680,12 +556,20 @@ export const ReportView: FC = () => { const totalRows = t.virtual?.rowCount || t.rows.length; return totalRows > maxRows; }); + const truncationList = truncatedTables.map((tbl) => + t('report.truncationTableEntry', { + name: tbl.displayId || tbl.id, + totalRows: (tbl.virtual?.rowCount || tbl.rows.length).toLocaleString(), + }) + ).join(', '); const truncationNote = truncatedTables.length > 0 - ? `\n\nNote: Some tables were truncated to ${maxRows.toLocaleString()} rows for this report. ` + - `Tables affected: ${truncatedTables.map(t => `"${t.displayId || t.id}" (${(t.virtual?.rowCount || t.rows.length).toLocaleString()} total rows)`).join(', ')}.` + ? `\n\n${t('report.truncationNote', { maxRows: maxRows.toLocaleString(), list: truncationList })}` : ''; + let chartSeqIndex = 0; + const seqToActualId: Record = {}; + const capturedImages: Record = {}; const selectedCharts = await Promise.all( sortedCharts .filter(chart => selectedChartIds.has(chart.id)) @@ -698,21 +582,23 @@ export const ReportView: FC = () => { return null; } + const seqKey = `chart${++chartSeqIndex}`; + seqToActualId[seqKey] = chart.id; const { dataUrl, blobUrl, width, height } = await getChartImageFromVega(chart, chartTable); if (blobUrl) { - // Use blob URL for local display and caching + capturedImages[chart.id] = { blobUrl, width, height }; updateCachedReportImages(chart.id, blobUrl, width, height); } return { - chart_id: chart.id, + chart_id: seqKey, code: chartTable.derive?.code || '', chart_data: { name: chartTable.id, rows: chartTable.rows.length > maxRows ? chartTable.rows.slice(0, maxRows) : chartTable.rows }, - chart_url: dataUrl // use data_url to send to the agent + chart_url: dataUrl }; }) ); @@ -733,12 +619,12 @@ export const ReportView: FC = () => { }); if (!response.ok) { - throw new Error('Failed to generate report'); + throw new Error(t('report.failedToGenerateReport')); } const reader = response.body?.getReader(); if (!reader) { - throw new Error('No response body'); + throw new Error(t('report.noResponseBody')); } const decoder = new TextDecoder(); @@ -747,16 +633,33 @@ export const ReportView: FC = () => { while (true) { const { done, value } = await reader.read(); if (done) { - // Create the report object for saving to Redux + let finalContent = accumulatedReport; + for (const [seqKey, actualId] of Object.entries(seqToActualId)) { + finalContent = finalContent.replace( + new RegExp(`\\[IMAGE\\(${seqKey}\\)\\]`, 'g'), + `[IMAGE(${actualId})]` + ); + } + // Extract title from first markdown # heading + const finalTitleMatch = finalContent.match(/^#\s+(.+)$/m); + const finalTitle = finalTitleMatch ? finalTitleMatch[1].trim() : undefined; + const report: GeneratedReport = { id: reportId, - content: accumulatedReport, + content: finalContent, style: style, - selectedChartIds: Array.from(selectedChartIds), - createdAt: Date.now(), + selectedChartIds: orderedChartIds, + createdAt: inProgressReport.createdAt, + status: 'completed', + title: finalTitle, }; - // Save to Redux state + // Re-apply captured images so React 18 batches them + // with the final content update in a single render + for (const [chartId, { blobUrl, width, height }] of Object.entries(capturedImages)) { + updateCachedReportImages(chartId, blobUrl, width, height); + } dispatch(dfActions.saveGeneratedReport(report)); + setGeneratedReport(finalContent); break; }; @@ -764,22 +667,24 @@ export const ReportView: FC = () => { if (chunk.startsWith('error:')) { const errorData = JSON.parse(chunk.substring(6)); - throw new Error(errorData.content || 'Error generating report'); + throw new Error(errorData.content || t('report.errorGeneratingReport')); } accumulatedReport += chunk; - // Update local state + // Extract title from first markdown # heading + const titleMatch = accumulatedReport.match(/^#\s+(.+)$/m); + const extractedTitle = titleMatch ? titleMatch[1].trim() : undefined; + + // Update both local state and Redux for thread card preview setGeneratedReport(accumulatedReport); - setCurrentReportId(reportId); - - if (mode === 'compose') { - setMode('post'); - } + dispatch(dfActions.updateGeneratedReportContent({ id: reportId, content: accumulatedReport, title: extractedTitle })); } } catch (err) { - setError((err as Error).message || 'Failed to generate report'); + showMessage((err as Error).message || t('report.failedToGenerateReport'), 'error'); + // Mark the in-progress report as errored (if it was created) + dispatch(dfActions.updateGeneratedReportContent({ id: reportId, content: '', status: 'error' })); } finally { setIsGenerating(false); } @@ -806,8 +711,7 @@ export const ReportView: FC = () => { } }; - let displayedReport = isGenerating ? - `${generatedReport} ✏️` : generatedReport; + let displayedReport = generatedReport; displayedReport = processReport(displayedReport); return ( @@ -815,17 +719,6 @@ export const ReportView: FC = () => { {mode === 'compose' ? ( - - {/* Centered Top Bar */} @@ -848,8 +741,9 @@ export const ReportView: FC = () => { sx={{ display: 'flex', alignItems: 'center', - gap: 1, - p: 1, + gap: 1.25, + px: 2, + py: 1, borderRadius: 2, backgroundColor: 'rgba(255, 255, 255, 0.9)', backdropFilter: 'blur(12px)', @@ -863,14 +757,13 @@ export const ReportView: FC = () => { transition: transition.normal }, '.MuiTypography-root': { - fontSize: '1rem', + fontSize: '0.8125rem', } - }} > {/* Natural Flow */} - - Create a + + {t('report.createA')} { }} > {[ - { value: 'live report', label: 'live report' }, - { value: 'blog post', label: 'blog post' }, - { value: 'social post', label: 'social post' }, - { value: 'executive summary', label: 'executive summary' }, + { value: 'live report', labelKey: 'report.styleLiveReport' }, + { value: 'blog post', labelKey: 'report.styleBlogPost' }, + { value: 'social post', labelKey: 'report.styleSocialPost' }, + { value: 'executive summary', labelKey: 'report.styleExecutiveSummary' }, ].map((option) => ( - {option.value === 'live report' ? : <>} {option.label} + {option.value === 'live report' ? : <>} {t(option.labelKey)} ))} - - from + + {t('report.from')} { {selectedChartIds.size} - - {selectedChartIds.size <= 1 ? 'chart' : 'charts'} + + {selectedChartIds.size <= 1 ? t('report.chart') : t('report.charts')} {/* Generate Button */} @@ -940,37 +835,33 @@ export const ReportView: FC = () => { size="small" sx={{ textTransform: 'none', - ml: 2, - px: 2, - py: 0.75, - borderRadius: 1.5, + ml: 1.5, + pl: 1.75, + pr: 2.5, + py: 0.625, + borderRadius: '4px', fontWeight: 500, - fontSize: '1rem', + fontSize: '0.875rem', + lineHeight: 1.5, minWidth: 'auto' }} - startIcon={isGenerating ? : } + startIcon={isGenerating ? : } > - {isGenerating ? 'composing...' : 'compose'} + {isGenerating ? t('report.composing') : t('report.compose')} - {error && ( - setError('')}> - {error} - - )} - {sortedCharts.length === 0 ? ( - No charts available. Create some visualizations first. + {t('report.noChartsAvailable')} ) : isLoadingPreviews ? ( - loading chart previews... + {t('report.loadingChartPreviews')} ) : (() => { @@ -986,7 +877,7 @@ export const ReportView: FC = () => { if (availableCharts.length === 0) { return ( - No available charts to display. Charts may still be loading or unavailable. + {t('report.noAvailableCharts')} ); } @@ -1027,7 +918,7 @@ export const ReportView: FC = () => { @@ -1057,270 +948,175 @@ export const ReportView: FC = () => { ) : mode === 'post' ? ( - - - - - AI generated the post from the selected charts, and it could be inaccurate! - - - - {/* Table of Contents Sidebar */} - {allGeneratedReports.length > 0 && ( - - - {allGeneratedReports.map((report) => ( - - - - deleteReport(report.id, e)} - sx={{ - position: 'absolute', - right: 4, - top: '50%', - transform: 'translateY(-50%)', - width: 20, - height: 20, - '&:hover': { - transform: 'translateY(-50%) scale(1.2)', transition: 'all 0.2s ease-in-out' + backgroundColor: 'background.paper', + boxShadow: '0 1px 4px rgba(0,0,0,0.12)', + '&:hover': { backgroundColor: 'action.hover' }, + }} + > + + + + {currentReportId && ( + <> + + { + const reportEl = document.querySelector('[data-report-content]') as HTMLElement; + if (!reportEl) return; + try { + // Clone the report and sanitize for external paste targets + const clone = reportEl.cloneNode(true) as HTMLElement; + + // Inline all images as base64 data URLs so they survive + // clipboard paste into Word, Google Docs, etc. + const imgs = clone.querySelectorAll('img'); + await Promise.all(Array.from(imgs).map(async (img) => { + try { + const src = (reportEl.querySelector(`img[src="${CSS.escape(img.getAttribute('src') || '')}"]`) as HTMLImageElement) + || (reportEl.querySelector(`img[data-chart-id="${CSS.escape(img.getAttribute('data-chart-id') || '')}"]`) as HTMLImageElement); + if (!src || !src.complete || src.naturalWidth === 0) return; + const canvas = document.createElement('canvas'); + canvas.width = src.naturalWidth; + canvas.height = src.naturalHeight; + const ctx = canvas.getContext('2d'); + if (!ctx) return; + ctx.drawImage(src, 0, 0); + img.setAttribute('src', canvas.toDataURL('image/png')); + } catch { + // Cross-origin or tainted canvas — keep original src } - }} - > - - - - - ))} - - - )} - - {/* Main Content Area */} - - {/* Action Buttons */} - {currentReportId && ( - - - - - - - - - )} + }} + sx={{ + backgroundColor: 'background.paper', + boxShadow: '0 1px 4px rgba(0,0,0,0.12)', + '&:hover': { backgroundColor: 'action.hover' }, + }} + > + {copyButtonSuccess ? : } +
+
+ + deleteReport(currentReportId, e)} + sx={{ + backgroundColor: 'background.paper', + boxShadow: '0 1px 4px rgba(0,0,0,0.12)', + color: 'error.main', + '&:hover': { backgroundColor: 'error.50' }, + }} + > + + + + + )} + + {/* Continuous canvas — content flows cleanly */} + + + { + if (currentReportId) { + setGeneratedReport(html); + dispatch(dfActions.updateGeneratedReportContent({ id: currentReportId, content: html })); + } + }} + /> - - + {t('report.createdWithAI')}{' '} + - {displayedReport} - - {/* Attribution */} - - created with AI using{' '} - - https://github.com/microsoft/data-formulator - - - - + https://github.com/microsoft/data-formulator + + diff --git a/src/views/SelectableDataGrid.tsx b/src/views/SelectableDataGrid.tsx index 252e11dd..b6a35e4c 100644 --- a/src/views/SelectableDataGrid.tsx +++ b/src/views/SelectableDataGrid.tsx @@ -2,6 +2,7 @@ // Licensed under the MIT License. import * as React from 'react'; +import { useTranslation } from 'react-i18next'; import { shadow, transition } from '../app/tokens'; import { TableVirtuoso } from 'react-virtuoso'; import Table from '@mui/material/Table'; @@ -104,6 +105,7 @@ interface DraggableHeaderProps { const DraggableHeader: React.FC = ({ columnDef, orderBy, order, onSortClick, tableId }) => { + const { t } = useTranslation(); const theme = useTheme(); const conceptShelfItems = useSelector((state: DataFormulatorState) => state.conceptShelfItems); const tables = useSelector((state: DataFormulatorState) => state.tables); @@ -229,7 +231,7 @@ const DraggableHeader: React.FC = ({
{/* Separate sort handler button */} - Sort by {columnDef.label}}> + {t('dataGrid.sortBy', { label: columnDef.label })}}> { @@ -257,6 +259,7 @@ const DraggableHeader: React.FC = ({ export const SelectableDataGrid: React.FC = ({ tableId, rows, tableName, columnDefs, rowCount, virtual }) => { + const { t } = useTranslation(); const [orderBy, setOrderBy] = React.useState(undefined); const [order, setOrder] = React.useState<'asc' | 'desc'>('asc'); @@ -284,13 +287,22 @@ export const SelectableDataGrid: React.FC = ({ Scroller: React.forwardRef((props, ref) => ( )), - Table: (props: any) => , - TableHead: React.forwardRef((props, ref) => ( - + Table: ({ children, style, ...rest }: any) => ( +
+ + {columnDefs.map(col => ( + + ))} + + {children} +
+ ), + TableHead: React.forwardRef>((props, ref) => ( + )), TableRow: (props: any) => { const index = props['data-index']; - return + return }, TableBody: React.forwardRef((props, ref) => ( @@ -344,7 +356,8 @@ export const SelectableDataGrid: React.FC = ({ } : { table: tableId, size: 1000, - method: 'random' + method: 'head', + order_by_fields: ['#rowId'] } // Use the SAMPLE_TABLE endpoint with appropriate ordering @@ -358,7 +371,7 @@ export const SelectableDataGrid: React.FC = ({ .then(response => response.json()) .then(data => { if (data.status === 'success') { - setRowsToDisplay(data.rows); + setRowsToDisplay(data.rows || []); } // Set loading to false when done setIsLoading(false); @@ -399,7 +412,7 @@ export const SelectableDataGrid: React.FC = ({ borderTopRightRadius: '4px' }}> - Loading ... + {t('dataGrid.loading')} )} @@ -417,33 +430,63 @@ export const SelectableDataGrid: React.FC = ({ className='data-view-header-cell' key={columnDef.id} align={columnDef.align} - sx={{p: 0, minWidth: columnDef.minWidth, width: columnDef.width,}} + sx={{ + p: columnDef.id === '#rowId' ? '0 2px' : 0, + minWidth: columnDef.minWidth, + width: columnDef.width, + }} > - { - let newOrder: 'asc' | 'desc' = 'asc'; - let newOrderBy : string | undefined = columnDef.id; - if (orderBy === columnDef.id && order === 'asc') { - newOrder = 'desc'; - } else if (orderBy === columnDef.id && order === 'desc') { - newOrder = 'asc'; - newOrderBy = undefined; - } else { - newOrder = 'asc'; - } + {columnDef.id === '#rowId' ? ( + + + {columnDef.label} + + + ) : ( + { + let newOrder: 'asc' | 'desc' = 'asc'; + let newOrderBy : string | undefined = columnDef.id; + if (orderBy === columnDef.id && order === 'asc') { + newOrder = 'desc'; + } else if (orderBy === columnDef.id && order === 'desc') { + newOrder = 'asc'; + newOrderBy = undefined; + } else { + newOrder = 'asc'; + } - setOrder(newOrder); - setOrderBy(newOrderBy); - - if (virtual) { - fetchVirtualData(newOrderBy ? [newOrderBy] : [], newOrder); - } - }} - /> + setOrder(newOrder); + setOrderBy(newOrderBy); + + if (virtual) { + fetchVirtualData(newOrderBy ? [newOrderBy] : [], newOrder); + } + }} + /> + )} ); })} @@ -467,7 +510,11 @@ export const SelectableDataGrid: React.FC = ({ sx={{backgroundColor}} align={column.align || 'left'} > - {column.format ? column.format(data[column.id]) : data[column.id]} + {column.format + ? column.format(data[column.id]) + : (data[column.id] != null && typeof data[column.id] === 'object' + ? String(data[column.id]) + : data[column.id])} ) })} @@ -478,14 +525,14 @@ export const SelectableDataGrid: React.FC = ({ + sx={{ display: 'flex', flexDirection: 'row', position: 'absolute', bottom: 6, right: 25 }}> {virtual && } - {`${rowCount} rows`} + {t('dataGrid.rowCount', { count: rowCount })} {virtual && rowCount > 10000 && ( - + = ({ )} - + void }> = ({ relevantAgentActions, theme, onCancel }) => { - const runningAction = relevantAgentActions.find(a => a.status === 'running'); - const latestMessage = runningAction?.description || 'thinking...'; +const AgentWorkingOverlay: FC<{ message?: string; theme: Theme; onCancel?: () => void }> = ({ message, theme, onCancel }) => { + const { t } = useTranslation(); + const latestMessage = message || t('dataThread.thinking'); return ( - - ✏️ - + - Agent is working... + {t('chartRec.agentWorking')} {onCancel && ( @@ -110,9 +102,10 @@ export const SimpleChartRecBox: FC = function () { const config = useSelector((state: DataFormulatorState) => state.config); const agentRules = useSelector((state: DataFormulatorState) => state.agentRules); const activeModel = useSelector(dfSelectors.getActiveModel); - const agentActions = useSelector((state: DataFormulatorState) => state.agentActions); + const draftNodes = useSelector((state: DataFormulatorState) => state.draftNodes); const theme = useTheme(); + const { t } = useTranslation(); const dispatch = useDispatch(); const [chatPrompt, setChatPrompt] = useState(""); @@ -127,34 +120,18 @@ export const SimpleChartRecBox: FC = function () { // pendingClarification is now derived from Redux (stored on the agentAction itself) // so it persists when user clicks away and comes back. - // On mount, clean up any stale "running" agent actions left over from a page refresh. - // The streaming connection is lost on refresh, so these will never complete. - // Only mark actions whose lastUpdate predates the current page load as stale. - useEffect(() => { - const pageLoadTime = performance.timeOrigin; // ms timestamp of when the page was loaded - const staleRunning = agentActions.filter(a => a.status === 'running' && a.lastUpdate < pageLoadTime); - if (staleRunning.length === 0) return; - // The last stale action gets the visible message; others are silently marked warning - const lastStale = staleRunning[staleRunning.length - 1]; - for (const action of staleRunning) { - dispatch(dfActions.updateAgentWorkInProgress({ - actionId: action.actionId, - description: action === lastStale ? 'Interrupted by page refresh' : action.description, - status: 'warning', - hidden: false, - ...(action === lastStale ? { message: { content: 'Interrupted by page refresh', role: 'clarify' } } : {}), - })); - } - }, []); // eslint-disable-line react-hooks/exhaustive-deps + // Stale draft detection is handled by loadState in dfSlice (marks running/clarifying drafts as interrupted) const inputCardRef = useRef(null); const focusedTableId = useCallback(() => { if (!focusedId) return undefined; if (focusedId.type === 'table') return focusedId.tableId; - const chartId = focusedId.chartId; - const chart = charts.find(c => c.id === chartId); - return chart?.tableRef; + if (focusedId.type === 'chart') { + const chart = charts.find(c => c.id === focusedId.chartId); + return chart?.tableRef; + } + return undefined; }, [focusedId, charts])(); // Clear ideas when focused table changes — ideas are scoped per table @@ -198,43 +175,78 @@ export const SimpleChartRecBox: FC = function () { // Agent actions relevant to all tables in this thread, sorted by creation time // Agent actions relevant to the focused table's thread. // An action is relevant if: - // - its originTableId is in the ancestor chain, AND - // - it produced a table in the ancestor chain (resultTableId ∈ threadTableIds), - // OR is still running, OR the focused table is the originTableId itself. - const relevantAgentActions = React.useMemo(() => { - if (threadTableIds.size === 0) return []; - return agentActions - .filter(a => { - if (a.hidden) return false; - if (!threadTableIds.has(a.originTableId)) return false; - // Include if still running or waiting for clarification (live progress) - if (a.status === 'running' || a.status === 'warning') return true; - // Include if any message produced a table in the ancestor chain - if (a.messages?.some(m => m.resultTableId && threadTableIds.has(m.resultTableId))) return true; - // Include if the focused table IS the origin (user is at the starting table) - if (focusedTableId === a.originTableId) return true; - return false; - }) - .sort((a, b) => (a.messages?.[0]?.timestamp || a.lastUpdate) - (b.messages?.[0]?.timestamp || b.lastUpdate)); - }, [agentActions, threadTableIds, focusedTableId]); - - const hasRunningAgent = relevantAgentActions.some(a => a.status === 'running'); - - // Derive pending clarification from the current thread's relevant actions (stored in Redux) + const hasRunningAgent = draftNodes.some(d => d.derive?.status === 'running' && threadTableIds.has(d.derive.trigger.tableId)); + + // Derive pending clarification from DraftNodes const pendingClarification = React.useMemo(() => { - const action = relevantAgentActions.find(a => a.pendingClarification); - if (!action || !action.pendingClarification) return null; - return { ...action.pendingClarification, actionId: action.actionId }; - }, [relevantAgentActions]); + const clarifyingDraft = draftNodes.find(d => + d.derive?.status === 'clarifying' && d.derive?.pendingClarification && + threadTableIds.has(d.derive.trigger.tableId) + ); + if (clarifyingDraft?.derive?.pendingClarification) { + return { ...clarifyingDraft.derive.pendingClarification, actionId: clarifyingDraft.actionId || '', draftId: clarifyingDraft.id }; + } + return null; + }, [draftNodes, threadTableIds]); - // Extract the clarification question text from the last 'clarify' message + // Extract the clarification question text and options from DraftNode interaction log const clarificationQuestion = React.useMemo(() => { - if (!pendingClarification) return null; - const action = agentActions.find(a => a.actionId === pendingClarification.actionId); - if (!action?.messages) return null; - const clarifyMsgs = action.messages.filter(m => m.role === 'clarify'); - return clarifyMsgs.length > 0 ? clarifyMsgs[clarifyMsgs.length - 1].content : null; - }, [pendingClarification, agentActions]); + if (!pendingClarification?.draftId) return null; + const draft = draftNodes.find(d => d.id === pendingClarification.draftId); + const clarifyEntries = draft?.derive?.trigger?.interaction?.filter(e => e.role === 'clarify'); + return clarifyEntries && clarifyEntries.length > 0 ? clarifyEntries[clarifyEntries.length - 1].content : null; + }, [pendingClarification, draftNodes]); + + const clarificationOptions = React.useMemo(() => { + if (!pendingClarification?.draftId) return []; + const draft = draftNodes.find(d => d.id === pendingClarification.draftId); + const clarifyEntries = draft?.derive?.trigger?.interaction?.filter(e => e.role === 'clarify'); + const lastEntry = clarifyEntries && clarifyEntries.length > 0 ? clarifyEntries[clarifyEntries.length - 1] : null; + return lastEntry?.options || []; + }, [pendingClarification, draftNodes]); + + // Clarification auto-select countdown (60s) + const CLARIFY_TIMEOUT_MS = 60_000; + const [clarifyDeadline, setClarifyDeadline] = useState(null); + const [clarifyProgress, setClarifyProgress] = useState(1); // 1 → 0 + const clarifyTimerRef = useRef(null); + + // Start / reset deadline whenever a new clarification appears + useEffect(() => { + if (pendingClarification && clarificationOptions.length > 0 && !isChatFormulating) { + setClarifyDeadline(Date.now() + CLARIFY_TIMEOUT_MS); + setClarifyProgress(1); + } else { + setClarifyDeadline(null); + setClarifyProgress(1); + } + }, [pendingClarification?.draftId, clarificationOptions.length, isChatFormulating]); + + // Animate the countdown bar & auto-select on expiry + useEffect(() => { + if (clarifyDeadline == null) { + if (clarifyTimerRef.current) cancelAnimationFrame(clarifyTimerRef.current); + return; + } + const tick = () => { + const remaining = clarifyDeadline - Date.now(); + if (remaining <= 0) { + setClarifyProgress(0); + setClarifyDeadline(null); + // Auto-select first option + if (clarificationOptions.length > 0 && pendingClarification) { + const first = clarificationOptions[0]; + setChatPrompt(first); + exploreFromChat(first, pendingClarification); + } + return; + } + setClarifyProgress(remaining / CLARIFY_TIMEOUT_MS); + clarifyTimerRef.current = requestAnimationFrame(tick); + }; + clarifyTimerRef.current = requestAnimationFrame(tick); + return () => { if (clarifyTimerRef.current) cancelAnimationFrame(clarifyTimerRef.current); }; + }, [clarifyDeadline]); const getIdeasFromAgent = useCallback(async () => { if (!currentTable || isLoadingIdeas) return; @@ -248,11 +260,17 @@ export const SimpleChartRecBox: FC = function () { if (currentTable.derive && !currentTable.anchored) { const triggers = getTriggers(currentTable, tables); - explorationThread = triggers.map(trigger => ({ - name: trigger.resultTableId, - rows: tables.find(t2 => t2.id === trigger.resultTableId)?.rows, - description: `Derive from ${tables.find(t2 => t2.id === trigger.resultTableId)?.derive?.source} with instruction: ${trigger.instruction}`, - })); + explorationThread = triggers.map((trigger) => { + const tt = tables.find(t2 => t2.id === trigger.resultTableId); + return { + name: trigger.resultTableId, + rows: tt?.rows, + description: t('chartRec.explorationThreadDeriveDescription', { + source: String(tt?.derive?.source ?? ''), + instruction: trigger.interaction?.find((e: any) => e.role === 'instruction')?.content || '', + }), + }; + }); } const messageBody = JSON.stringify({ @@ -265,7 +283,7 @@ export const SimpleChartRecBox: FC = function () { attached_metadata: t.attachedMetadata })), exploration_thread: explorationThread, - agent_exploration_rules: agentRules.exploration + agent_exploration_rules: agentRules.exploration, }); const controller = new AbortController(); @@ -282,7 +300,7 @@ export const SimpleChartRecBox: FC = function () { if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); const reader = response.body?.getReader(); - if (!reader) throw new Error('No response body reader available'); + if (!reader) throw new Error(t('chartRec.noResponseReader')); const decoder = new TextDecoder(); let buffer = ''; @@ -321,7 +339,7 @@ export const SimpleChartRecBox: FC = function () { setThinkingBuffer(''); ideasAbortRef.current = null; } - }, [currentTable, isLoadingIdeas, selectedTableIds, tables, activeModel, agentRules, config, dispatch]); + }, [currentTable, isLoadingIdeas, selectedTableIds, tables, activeModel, agentRules, config, dispatch, t]); const exploreFromChat = useCallback((prompt: string, clarificationContext?: { trajectory: any[]; @@ -348,30 +366,39 @@ export const SimpleChartRecBox: FC = function () { setIsChatFormulating(true); - if (isResume) { - // Show user's clarification reply in the thread; clear pendingClarification in Redux - dispatch(dfActions.updateAgentWorkInProgress({ actionId, description: prompt, status: 'running', hidden: false, - message: { content: prompt, role: 'user' }, pendingClarification: null })); - } else { - // User instruction with source table context - dispatch(dfActions.updateAgentWorkInProgress({ actionId, originTableId: focusedTableId, description: prompt, status: 'running', hidden: false, - message: { content: prompt, role: 'user' } })); + // DraftNode handles status + // If resuming from clarification, reuse the old draft (append reply, clear clarification) + if (isResume && pendingClarification?.draftId) { + dispatch(dfActions.appendDraftInteraction({ draftId: pendingClarification.draftId, entry: { + from: 'user', to: 'data-agent', role: 'prompt', content: prompt, timestamp: Date.now() + }})); + dispatch(dfActions.updateDraftClarification({ draftId: pendingClarification.draftId, pendingClarification: null })); + dispatch(dfActions.updateDeriveStatus({ nodeId: pendingClarification.draftId, status: 'running' })); } - // Collect previous conversation messages for context (only for fresh starts) + // Collect previous conversation from trigger interaction chains let conversationHistory: { role: string; content: string }[] | undefined = undefined; if (!isResume) { const history: { role: string; content: string }[] = []; - for (const action of relevantAgentActions) { - if (action.messages) { - for (const m of action.messages) { - if (m.role === 'user') { - history.push({ role: 'user', content: m.content }); - } else if (m.role === 'thinking' || m.role === 'completion') { - history.push({ role: 'assistant', content: m.content }); + // Walk the ancestor chain from the focused table, collecting interaction entries + let walkTable = tables.find(t => t.id === focusedTableId); + const visited = new Set(); + while (walkTable?.derive?.trigger) { + if (visited.has(walkTable.id)) break; + visited.add(walkTable.id); + const interaction = walkTable.derive.trigger.interaction; + if (interaction && interaction.length > 0) { + for (const entry of interaction) { + if (entry.role === 'prompt') { + history.unshift({ role: 'user', content: entry.content }); + } else if (entry.role === 'summary') { + history.unshift({ role: 'assistant', content: entry.content }); + } else if (entry.plan) { + history.unshift({ role: 'assistant', content: entry.plan }); } } } + walkTable = tables.find(t => t.id === walkTable!.derive!.trigger.tableId); } if (history.length > 0) conversationHistory = history; } @@ -413,6 +440,44 @@ export const SimpleChartRecBox: FC = function () { let isCompleted = false; let lastCreatedTableId: string | null = isResume ? clarificationContext!.lastCreatedTableId : null; + // ── DraftNode tracking ── + // Local accumulator mirrors the DraftNode's interaction (avoids stale closure reads) + let currentDraftInteraction: InteractionEntry[] = []; + let currentDraftId: string | null = null; + const createNextDraft = (parentTableId: string, initialInteraction: InteractionEntry[]) => { + const draftId = `draft-${actionId}-${Date.now()}`; + dispatch(dfActions.createDraftNode({ + id: draftId, + displayId: draftId, + parentTableId, + source: selectedTableIds, + interaction: initialInteraction, + actionId, + })); + currentDraftId = draftId; + currentDraftInteraction = [...initialInteraction]; + return draftId; + }; + + // Create the initial draft (or reuse existing for clarification resume) + if (isResume && pendingClarification?.draftId) { + currentDraftId = pendingClarification.draftId; + // Seed local accumulator from the existing draft's interaction (fresh at this point) + const existingDraft = draftNodes.find(d => d.id === pendingClarification.draftId); + currentDraftInteraction = [...(existingDraft?.derive?.trigger?.interaction || [])]; + // The user reply was already appended above, add to local accumulator too + currentDraftInteraction.push({ from: 'user', to: 'data-agent', role: 'prompt', content: prompt, timestamp: Date.now() }); + } else { + const initialEntries: InteractionEntry[] = [ + { from: 'user', to: 'data-agent', role: 'prompt', content: prompt, timestamp: Date.now() } + ]; + createNextDraft(lastCreatedTableId || focusedTableId!, initialEntries); + } + + // Track the last agent thought and display_instruction (from "action" events) + let lastAgentThought: string | null = null; + let lastAgentDisplayInstruction: string | null = null; + const genTableId = () => { let tableSuffix = Number.parseInt((Date.now() - Math.floor(Math.random() * 10000)).toString().slice(-6)); let tId = `table-${tableSuffix}`; @@ -424,12 +489,15 @@ export const SimpleChartRecBox: FC = function () { }; const processStreamingResult = (result: any) => { - // Agent thinking / choosing next action + // Agent planning / choosing next action if (result.type === "action" && result.action === "visualize") { - const thinkingMsg = result.thought || "Thinking..."; - const currentObserveId = lastCreatedTableId || focusedTableId; - dispatch(dfActions.updateAgentWorkInProgress({ actionId, description: thinkingMsg, status: 'running', hidden: false, - message: { content: thinkingMsg, role: 'thinking', observeTableId: currentObserveId } })); + lastAgentThought = result.thought || null; + lastAgentDisplayInstruction = result.display_instruction || null; + // Plan is stored as a field on the upcoming instruction entry — not as a separate entry. + // Show the plan text on the running draft so the user sees live reasoning. + if (currentDraftId) { + dispatch(dfActions.updateDraftRunningPlan({ draftId: currentDraftId, plan: lastAgentThought || t('dataThread.thinking') })); + } } // Visualization result (same shape as old data_transformation) if (result.type === "result" && result.status === "success") { @@ -445,26 +513,40 @@ export const SimpleChartRecBox: FC = function () { const rows = transformedData.rows; const candidateTableId = transformedData.virtual?.table_name || genTableId(); - const displayInstruction = refinedGoal?.display_instruction || `Exploration step ${createdTables.length + 1}: ${question}`; + const displayInstruction = lastAgentDisplayInstruction || refinedGoal?.display_instruction || t('chartRec.explorationStep', { step: createdTables.length + 1, question }); // Chain from last created table, or focused table if first const triggerTableId = lastCreatedTableId || focusedTableId!; const candidateTable = createDictTable(candidateTableId, rows, undefined); candidateTable.derive = { - code: code || `# Exploration step ${createdTables.length + 1}`, + code: code || t('chartRec.explorationStepCodeComment', { step: createdTables.length + 1 }), codeSignature: result.content?.result?.code_signature, outputVariable: refinedGoal?.output_variable || 'result_df', source: selectedTableIds, dialog: dialog || [], trigger: { tableId: triggerTableId, - instruction: question, - displayInstruction, + resultTableId: candidateTableId, chart: undefined, - resultTableId: candidateTableId + // Use the full interaction log accumulated in the DraftNode, + // plus the instruction entry for this step + interaction: [ + // Use the local accumulator (avoids stale closure) + ...currentDraftInteraction, + // The instruction to the sub-agent (plan folded in) + { + from: 'data-agent' as const, to: 'datarec-agent' as const, role: 'instruction' as const, + plan: lastAgentThought || undefined, + content: question || displayInstruction, + displayContent: displayInstruction, + timestamp: Date.now(), + }, + ], } }; + lastAgentThought = null; // consumed + lastAgentDisplayInstruction = null; // consumed if (transformedData.virtual) { candidateTable.virtual = { tableId: transformedData.virtual.table_name, rowCount: transformedData.virtual.row_count }; } @@ -494,12 +576,8 @@ export const SimpleChartRecBox: FC = function () { } createdTables.push(candidateTable); - const observedTableId = lastCreatedTableId || focusedTableId; // table the agent was looking at before this step lastCreatedTableId = candidateTableId; - dispatch(dfActions.updateAgentWorkInProgress({ actionId, description: displayInstruction, status: 'running', hidden: false, - message: { content: displayInstruction, role: 'action', observeTableId: observedTableId, resultTableId: candidateTableId } })); - const names = candidateTable.names; const missingNames = names.filter(name => !conceptShelfItems.some(field => field.name === name) && @@ -534,6 +612,22 @@ export const SimpleChartRecBox: FC = function () { dispatch(fetchFieldSemanticType(candidateTable)); dispatch(fetchCodeExpl(candidateTable)); + // ── DraftNode: append instruction, remove draft, create next ── + if (currentDraftId) { + dispatch(dfActions.appendDraftInteraction({ draftId: currentDraftId, entry: { + from: 'data-agent', to: 'datarec-agent', role: 'instruction', + plan: lastAgentThought || undefined, + content: question || displayInstruction, + displayContent: displayInstruction, + timestamp: Date.now(), + }})); + // Remove the draft — the table was already inserted via insertDerivedTables + dispatch(dfActions.removeDraftNode(currentDraftId)); + currentDraftId = null; + } + // Create a new draft for the next potential step, chained from this table + createNextDraft(candidateTableId, []); + if (createdCharts.length > 0) { const lastChart = createdCharts[createdCharts.length - 1]; setTimeout(() => { @@ -543,21 +637,50 @@ export const SimpleChartRecBox: FC = function () { } // Agent asks for clarification — pause and let user respond if (result.type === "clarify") { - const clarifyMsg = result.message || "Could you clarify?"; - dispatch(dfActions.updateAgentWorkInProgress({ actionId, description: clarifyMsg, status: 'warning', hidden: false, - message: { content: clarifyMsg, role: 'clarify' }, - pendingClarification: { + const clarifyMsg = result.message || t('chartRec.couldYouClarify'); + const clarifyOptions: string[] = Array.isArray(result.options) ? result.options : []; + // Append clarify entry (with plan folded in) to draft + if (currentDraftId) { + const clarifyEntry: InteractionEntry = { + from: 'data-agent', to: 'user', role: 'clarify', + plan: result.thought || undefined, + content: clarifyMsg, + options: clarifyOptions.length > 0 ? clarifyOptions : undefined, + timestamp: Date.now(), + }; + dispatch(dfActions.appendDraftInteraction({ draftId: currentDraftId, entry: clarifyEntry })); + currentDraftInteraction.push(clarifyEntry); + dispatch(dfActions.updateDeriveStatus({ nodeId: currentDraftId, status: 'clarifying' })); + dispatch(dfActions.updateDraftClarification({ draftId: currentDraftId, pendingClarification: { trajectory: result.trajectory || [], completedStepCount: result.completed_step_count || 0, lastCreatedTableId, - } - })); + }})); + } setIsChatFormulating(false); agentAbortRef.current = null; clearTimeout(timeoutId); setChatPrompt(""); isCompleted = true; // prevent handleCompletion from firing } + + // ── Capture completion summary (with plan folded in) on the last created table's trigger ── + if (result.type === "completion") { + if (lastCreatedTableId) { + const summary = result.status === "max_iterations" + ? t('chartRec.maxIterationsReached') + : (result.content?.summary || result.content?.message || ""); + if (summary) { + const entry: InteractionEntry = { + from: 'data-agent', to: 'user', role: 'summary', + plan: result.content?.thought || undefined, + content: summary, + timestamp: Date.now(), + }; + dispatch(dfActions.appendTriggerInteraction({ tableId: lastCreatedTableId, entries: [entry] })); + } + } + } }; const handleCompletion = () => { @@ -567,16 +690,15 @@ export const SimpleChartRecBox: FC = function () { agentAbortRef.current = null; clearTimeout(timeoutId); + // Clean up any remaining draft (the last step created a new draft that was never filled) + if (currentDraftId) { + dispatch(dfActions.removeDraftNode(currentDraftId)); + currentDraftId = null; + } + const completionResult = allResults.find((r: any) => r.type === "completion"); if (completionResult) { - const summary = completionResult.content.summary || completionResult.content.message || ""; - const status: "completed" | "warning" = completionResult.status === "success" ? "completed" : "warning"; - dispatch(dfActions.updateAgentWorkInProgress({ actionId, description: summary, status, hidden: false, - message: { content: summary, role: 'completion' } })); setChatPrompt(""); - } else { - dispatch(dfActions.updateAgentWorkInProgress({ actionId, description: "The agent got lost in the data.", status: 'warning', hidden: false, - message: { content: "The agent got lost in the data.", role: 'clarify' } })); } }; @@ -589,7 +711,7 @@ export const SimpleChartRecBox: FC = function () { .then(async (response) => { if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); const reader = response.body?.getReader(); - if (!reader) throw new Error('No response body reader available'); + if (!reader) throw new Error(t('chartRec.noResponseReader')); const decoder = new TextDecoder(); let buffer = ''; @@ -614,8 +736,16 @@ export const SimpleChartRecBox: FC = function () { } else if (data.status === "error") { setIsChatFormulating(false); clearTimeout(timeoutId); - dispatch(dfActions.updateAgentWorkInProgress({ actionId, description: data.error_message || "Error during exploration", status: 'failed', hidden: false, - message: { content: data.error_message || "Error during exploration", role: 'error' } })); + // Mark draft as error + if (currentDraftId) { + dispatch(dfActions.appendDraftInteraction({ draftId: currentDraftId, entry: { + from: 'data-agent', to: 'user', role: 'error', + content: data.error_message || t('chartRec.errorDuringExploration'), + timestamp: Date.now(), + }})); + dispatch(dfActions.updateDeriveStatus({ nodeId: currentDraftId, status: 'error' })); + currentDraftId = null; + } return; } } @@ -634,29 +764,32 @@ export const SimpleChartRecBox: FC = function () { agentAbortRef.current = null; clearTimeout(timeoutId); const isCancelled = error.name === 'AbortError' && !isCompleted; - const errorMessage = isCancelled ? "Exploration cancelled" : error.name === 'AbortError' ? "Exploration timed out" : `Exploration failed: ${error.message}`; - dispatch(dfActions.updateAgentWorkInProgress({ actionId, description: errorMessage, status: isCancelled ? 'warning' : 'failed', hidden: false, - message: { content: errorMessage, role: isCancelled ? 'clarify' : 'error' } })); + const errorMessage = isCancelled ? t('chartRec.explorationCancelled') : error.name === 'AbortError' ? t('chartRec.explorationTimedOut') : t('chartRec.explorationFailed', { message: error.message }); + // Clean up draft on error/cancel + if (currentDraftId) { + if (isCancelled) { + dispatch(dfActions.removeDraftNode(currentDraftId)); + } else { + dispatch(dfActions.appendDraftInteraction({ draftId: currentDraftId, entry: { + from: 'data-agent', to: 'user', role: 'error', content: errorMessage, timestamp: Date.now(), + }})); + dispatch(dfActions.updateDeriveStatus({ nodeId: currentDraftId, status: 'error' })); + } + currentDraftId = null; + } }); - }, [focusedTableId, tables, activeModel, agentRules, config, conceptShelfItems, dispatch, relevantAgentActions]); + }, [focusedTableId, tables, draftNodes, activeModel, agentRules, config, conceptShelfItems, dispatch, t]); const cancelAgent = useCallback(() => { if (agentAbortRef.current) { agentAbortRef.current.abort(); agentAbortRef.current = null; } - // Also dismiss any pending clarification - if (pendingClarification) { - dispatch(dfActions.updateAgentWorkInProgress({ - actionId: pendingClarification.actionId, - description: "Conversation ended by user.", - status: 'completed', - hidden: false, - message: { content: "Conversation ended by user.", role: 'completion' }, - pendingClarification: null, - })); + // Also dismiss any pending clarification draft + if (pendingClarification?.draftId) { + dispatch(dfActions.removeDraftNode(pendingClarification.draftId)); } - }, [pendingClarification, dispatch]); + }, [pendingClarification, dispatch, t]); const gradientBorder = `linear-gradient(135deg, ${alpha(theme.palette.primary.main, 0.6)}, ${alpha(theme.palette.secondary.main, 0.55)})`; const workingBorder = `linear-gradient(135deg, ${alpha(theme.palette.primary.main, 0.3)}, ${alpha(theme.palette.secondary.main, 0.25)})`; @@ -672,7 +805,10 @@ export const SimpleChartRecBox: FC = function () { position: 'relative', overflow: isChatFormulating ? 'hidden' : 'visible', flexShrink: 0, - transition: 'box-shadow 0.2s ease, background-color 0.2s ease', + transition: 'box-shadow 0.25s ease, background-color 0.2s ease', + '&:focus-within': { + boxShadow: `0 0 0 3px ${alpha(theme.palette.primary.main, 0.10)}`, + }, ...(isChatFormulating ? { backgroundColor: alpha(theme.palette.action.disabledBackground, 0.06) } : {}), // Gradient border via pseudo-element (works with border-radius) '&::before': { @@ -695,17 +831,59 @@ export const SimpleChartRecBox: FC = function () { {/* Show clarification question above input when agent is asking */} {clarificationQuestion && pendingClarification && !isChatFormulating && ( - - - {clarificationQuestion} - + + + + {renderFieldHighlights(clarificationQuestion, alpha(theme.palette.warning.main, 0.12))} + + + {clarificationOptions.length > 0 && ( + + {clarificationOptions.map((option, idx) => ( + + {/* Countdown fill behind the first (default) option */} + {idx === 0 && clarifyDeadline != null && ( + + )} + { setClarifyDeadline(null); setChatPrompt(option); exploreFromChat(option, pendingClarification); }} sx={{ + position: 'relative', zIndex: 1, + px: '8px', py: '4px', + borderRadius: '6px', + border: `1px solid ${idx === 0 ? alpha(theme.palette.primary.main, 0.25) : alpha(theme.palette.text.primary, 0.12)}`, + backgroundColor: idx === 0 ? 'transparent' : 'white', + cursor: 'pointer', + fontSize: 11, + width: 'fit-content', + lineHeight: 1.4, + color: theme.palette.text.primary, + transition: 'all 0.1s linear', + '&:hover': { + backgroundColor: alpha(theme.palette.primary.main, 0.06), + borderColor: alpha(theme.palette.primary.main, 0.3), + }, + }}> + {renderFieldHighlights(option, alpha(theme.palette.primary.main, 0.08))} + + + ))} + + )} )} {/* Idea chips inline */} @@ -719,14 +897,14 @@ export const SimpleChartRecBox: FC = function () { }}> - Ideas - + {t('chartRec.ideas')} + getIdeasFromAgent()} sx={{ p: '2px', color: theme.palette.text.secondary, '&:hover': { color: theme.palette.primary.main } }}> - + setIdeas([])} sx={{ p: '2px', color: theme.palette.text.secondary, '&:hover': { color: theme.palette.error.main } }}> @@ -778,7 +956,7 @@ export const SimpleChartRecBox: FC = function () { onKeyDown={(event: any) => { if (event.key === 'Tab' && !event.shiftKey && chatPrompt.trim() === '' && !isChatFormulating) { event.preventDefault(); - setChatPrompt('help me suggest some exploration directions from this thread'); + setChatPrompt(t('chartRec.threadExplorePrompt')); } if (event.key === 'Enter' && !event.shiftKey) { event.preventDefault(); @@ -819,7 +997,7 @@ export const SimpleChartRecBox: FC = function () { input: { readOnly: isChatFormulating }, }} value={chatPrompt} - placeholder={pendingClarification ? "Reply to agent's question..." : "Ask agent to explore a new direction"} + placeholder={pendingClarification ? t('chartRec.replyPlaceholder') : t('chartRec.explorePlaceholder')} fullWidth multiline minRows={2} @@ -828,7 +1006,7 @@ export const SimpleChartRecBox: FC = function () { {/* Action buttons */} - + { e.stopPropagation(); setUploadDialogOpen(true); }} @@ -845,7 +1023,7 @@ export const SimpleChartRecBox: FC = function () { ) : ( <> - + {pendingClarification && !isChatFormulating && ( - + )} - + + + tables.some(t => t.id === c.tableRef)).length === 0} + onClick={() => { + dispatch(dfActions.setFocused(undefined)); + dispatch(dfActions.setViewMode('report')); + }} + > + + + + + d.derive?.status === 'running' && threadTableIds.has(d.derive.trigger.tableId)) + ?.derive?.runningPlan} theme={theme} onCancel={isLoadingIdeas && !isChatFormulating ? () => { ideasAbortRef.current?.abort(); ideasAbortRef.current = null; setIsLoadingIdeas(false); setIdeas([]); } : cancelAgent} /> @@ -920,6 +1114,7 @@ export const SimpleChartRecBox: FC = function () { open={uploadDialogOpen} onClose={() => setUploadDialogOpen(false)} initialTab="menu" + hideSampleDatasets /> ); diff --git a/src/views/TiptapReportEditor.tsx b/src/views/TiptapReportEditor.tsx new file mode 100644 index 00000000..ba614357 --- /dev/null +++ b/src/views/TiptapReportEditor.tsx @@ -0,0 +1,438 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import React, { FC, useEffect, useCallback, useRef, useState as useStateReact } from 'react'; +import { useEditor, EditorContent, NodeViewWrapper, NodeViewProps, ReactNodeViewRenderer } from '@tiptap/react'; +import StarterKit from '@tiptap/starter-kit'; +import Image from '@tiptap/extension-image'; +import { Markdown } from 'tiptap-markdown'; +import { Box, IconButton, Tooltip, Divider, useTheme, Typography } from '@mui/material'; +import { alpha } from '@mui/material/styles'; +import { WritingPencil, ShimmerText, WritingIndicator } from '../components/FunComponents'; +import FormatBoldIcon from '@mui/icons-material/FormatBold'; +import FormatItalicIcon from '@mui/icons-material/FormatItalic'; +import FormatListBulletedIcon from '@mui/icons-material/FormatListBulleted'; +import FormatListNumberedIcon from '@mui/icons-material/FormatListNumbered'; +import FormatQuoteIcon from '@mui/icons-material/FormatQuote'; +import TitleIcon from '@mui/icons-material/Title'; + +export interface TiptapReportEditorProps { + content: string; // HTML content (from processReport) + editable?: boolean; + reportId?: string; // triggers re-focus when switching reports + onUpdate?: (html: string) => void; +} + +/** Resizable image node view — drag bottom-right corner to resize */ +const ResizableImageView: FC = ({ node, updateAttributes, selected }) => { + const { src, alt, width, height } = node.attrs; + const containerRef = useRef(null); + const [isResizing, setIsResizing] = useStateReact(false); + + const handleMouseDown = useCallback((e: React.MouseEvent) => { + e.preventDefault(); + e.stopPropagation(); + const startX = e.clientX; + const startWidth = containerRef.current?.offsetWidth || width || 300; + const aspectRatio = (height && width) ? height / width : undefined; + + const onMouseMove = (moveEvent: MouseEvent) => { + const newWidth = Math.max(100, startWidth + (moveEvent.clientX - startX)); + const attrs: Record = { width: Math.round(newWidth) }; + if (aspectRatio) { + attrs.height = Math.round(newWidth * aspectRatio); + } + updateAttributes(attrs); + }; + + const onMouseUp = () => { + setIsResizing(false); + document.removeEventListener('mousemove', onMouseMove); + document.removeEventListener('mouseup', onMouseUp); + }; + + setIsResizing(true); + document.addEventListener('mousemove', onMouseMove); + document.addEventListener('mouseup', onMouseUp); + }, [width, height, updateAttributes]); + + return ( + + + {alt + + + + ); +}; + +/** Custom Image extension with resizable node view */ +const ResizableImage = Image.extend({ + addAttributes() { + return { + ...this.parent?.(), + width: { default: null, parseHTML: el => el.getAttribute('width') }, + height: { default: null, parseHTML: el => el.getAttribute('height') }, + 'data-chart-id': { + default: null, + parseHTML: el => el.getAttribute('data-chart-id'), + renderHTML: (attributes) => { + if (!attributes['data-chart-id']) return {}; + return { 'data-chart-id': attributes['data-chart-id'] }; + }, + }, + }; + }, + addNodeView() { + return ReactNodeViewRenderer(ResizableImageView); + }, +}); + +const ToolbarButton: FC<{ + onClick: () => void; + isActive?: boolean; + title: string; + children: React.ReactNode; +}> = ({ onClick, isActive, title, children }) => { + const theme = useTheme(); + return ( + + + {children} + + + ); +}; + +export const TiptapReportEditor: FC = ({ content, editable = true, reportId, onUpdate }) => { + const theme = useTheme(); + const isFocused = useRef(false); + + const editor = useEditor({ + extensions: [ + StarterKit.configure({ + heading: { levels: [1, 2, 3] }, + }), + ResizableImage.configure({ + inline: false, + }), + Markdown.configure({ + html: true, + transformPastedText: true, + }), + ], + content, + editable, + onUpdate: ({ editor }) => { + if (isFocused.current) { + onUpdate?.(editor.getHTML()); + } + }, + onFocus: () => { + isFocused.current = true; + }, + onBlur: () => { + isFocused.current = false; + }, + }); + + // Sync editable prop + useEffect(() => { + if (editor) { + editor.setEditable(editable); + } + }, [editor, editable]); + + // Auto-focus the editor when it becomes editable or when the viewed report changes + useEffect(() => { + if (editor && editable) { + // Small delay to let the DOM settle after content streaming finishes + const timer = setTimeout(() => { + editor.commands.focus('start'); + }, 100); + return () => clearTimeout(timer); + } + }, [editor, editable, reportId]); + + // Sync content when it changes externally (streaming or loading a different report) + // Always sync if the content contains new images (img tags) that aren't in the editor yet + useEffect(() => { + if (!editor) return; + if (!isFocused.current) { + editor.commands.setContent(content, { emitUpdate: false }); + } else { + // Even when focused, sync if new images arrived (user isn't typing image tags) + const currentHtml = editor.getHTML(); + const newImgCount = (content.match(/ currentImgCount) { + editor.commands.setContent(content, { emitUpdate: false }); + } + } + }, [editor, content]); + + const copyAsRichText = useCallback(async () => { + if (!editor) return; + const html = editor.getHTML(); + try { + await navigator.clipboard.write([ + new ClipboardItem({ + 'text/html': new Blob([html], { type: 'text/html' }), + 'text/plain': new Blob([editor.getText()], { type: 'text/plain' }), + }), + ]); + } catch (e) { + console.warn('Failed to copy as rich text:', e); + } + }, [editor]); + + if (!editor) return null; + + const iconSx = { fontSize: 16 }; + + return ( + + {/* Toolbar — always visible, disabled during generation */} + + editor.chain().focus().toggleBold().run()} + isActive={editor.isActive('bold')} + title="Bold (⌘B)" + > + + + editor.chain().focus().toggleItalic().run()} + isActive={editor.isActive('italic')} + title="Italic (⌘I)" + > + + + + editor.chain().focus().toggleHeading({ level: 1 }).run()} + isActive={editor.isActive('heading', { level: 1 })} + title="Heading 1" + > + + + editor.chain().focus().toggleHeading({ level: 2 }).run()} + isActive={editor.isActive('heading', { level: 2 })} + title="Heading 2" + > + + + + editor.chain().focus().toggleBulletList().run()} + isActive={editor.isActive('bulletList')} + title="Bullet List" + > + + + editor.chain().focus().toggleOrderedList().run()} + isActive={editor.isActive('orderedList')} + title="Numbered List" + > + + + editor.chain().focus().toggleBlockquote().run()} + isActive={editor.isActive('blockquote')} + title="Quote" + > + + + {!editable && ( + + + Generating… + + )} + + {/* Editor */} + + + {/* Shimmer overlay while generating */} + {!editable && ( + + + + )} + + + ); +}; diff --git a/src/views/UnifiedDataUploadDialog.tsx b/src/views/UnifiedDataUploadDialog.tsx index 4adc4a4c..668f64f8 100644 --- a/src/views/UnifiedDataUploadDialog.tsx +++ b/src/views/UnifiedDataUploadDialog.tsx @@ -38,9 +38,9 @@ import Backdrop from '@mui/material/Backdrop'; import { useDispatch, useSelector } from 'react-redux'; import { DataFormulatorState, dfActions, fetchFieldSemanticType } from '../app/dfSlice'; import { AppDispatch } from '../app/store'; -import { loadTable } from '../app/tableThunks'; +import { loadTable, loadPluginTable } from '../app/tableThunks'; import { DataSourceConfig, DictTable } from '../components/ComponentType'; -import { createTableFromFromObjectArray, createTableFromText, loadTextDataWrapper, loadBinaryDataWrapper } from '../data/utils'; +import { createTableFromFromObjectArray, createTableFromText, loadTextDataWrapper, loadBinaryDataWrapper, readFileText } from '../data/utils'; import { DataLoadingChat } from './DataLoadingChat'; import { DatasetSelectionView, DatasetMetadata } from './TableSelectionView'; import { getUrls, fetchWithIdentity } from '../app/utils'; @@ -56,8 +56,10 @@ import FolderOpenIcon from '@mui/icons-material/FolderOpen'; import CloudIcon from '@mui/icons-material/Cloud'; import OpenInNewIcon from '@mui/icons-material/OpenInNew'; import LanguageIcon from '@mui/icons-material/Language'; +import { useTranslation } from 'react-i18next'; +import { getEnabledPlugins, PluginHost } from '../plugins'; -export type UploadTabType = 'menu' | 'upload' | 'paste' | 'url' | 'database' | 'extract' | 'explore'; +export type UploadTabType = 'menu' | 'upload' | 'paste' | 'url' | 'database' | 'extract' | 'explore' | `plugin:${string}`; interface TabPanelProps { children?: React.ReactNode; @@ -110,13 +112,12 @@ const DataSourceCard: React.FC = ({ border: `1px solid ${borderColor.divider}`, borderRadius: radius.sm, opacity: disabled ? 0.5 : 1, - transition: transition.fast, display: 'flex', alignItems: 'center', gap: 1.5, '&:hover': disabled ? {} : { - borderColor: 'primary.main', - backgroundColor: alpha(theme.palette.primary.main, 0.04), + transform: 'translateY(-2px)', + backgroundColor: 'action.hover', } }} > @@ -178,63 +179,75 @@ const getUniqueTableName = (baseName: string, existingNames: Set): strin // Reusable Data Load Menu Component export interface DataLoadMenuProps { onSelectTab: (tab: UploadTabType) => void; - serverConfig?: { DISABLE_DATABASE?: boolean }; + serverConfig?: { WORKSPACE_BACKEND?: string }; variant?: 'dialog' | 'page'; // 'dialog' uses smaller cards, 'page' uses larger cards + hideSampleDatasets?: boolean; } export const DataLoadMenu: React.FC = ({ onSelectTab, - serverConfig = { DISABLE_DATABASE: false }, - variant = 'dialog' + serverConfig = { WORKSPACE_BACKEND: 'local' }, + variant = 'dialog', + hideSampleDatasets = false }) => { const theme = useTheme(); + const { t } = useTranslation(); // Data source configurations const regularDataSources = [ { value: 'explore' as UploadTabType, - title: 'Sample Datasets', - description: 'Explore and load curated example datasets', + title: t('upload.sampleDatasets'), + description: t('upload.sampleDatasetsDesc'), icon: , disabled: false }, { value: 'upload' as UploadTabType, - title: 'Upload File', - description: 'Upload local files (CSV, TSV, JSON, Excel)', + title: t('upload.uploadFile'), + description: t('upload.uploadFileDesc'), icon: , disabled: false }, { value: 'paste' as UploadTabType, - title: 'Paste Data', - description: 'Paste tabular data directly from clipboard', + title: t('upload.pasteData'), + description: t('upload.pasteDataDesc'), icon: , disabled: false }, { value: 'extract' as UploadTabType, - title: 'Extract Unstructured Data', - description: 'Extract tables from images or text using AI', + title: t('upload.extractData'), + description: t('upload.extractDataDesc'), icon: , disabled: false }, - ]; + ].filter(source => !(hideSampleDatasets && source.value === 'explore')); + + const enabledPlugins = getEnabledPlugins((serverConfig as any)?.PLUGINS); - const liveDataSources = [ + const liveDataSources: Array<{ value: UploadTabType; title: string; description: string; icon: React.ReactNode; disabled: boolean }> = [ { value: 'url' as UploadTabType, - title: 'Load from URL', - description: 'Load data from a URL with optional auto-refresh', + title: t('upload.loadFromUrl'), + description: t('upload.loadFromUrlDesc'), icon: , disabled: false }, { value: 'database' as UploadTabType, - title: 'Database', - description: 'Connect to databases or data services', + title: t('upload.database'), + description: t('upload.databaseDesc'), icon: , disabled: false }, + ...enabledPlugins.map(({ module, config }) => ({ + value: `plugin:${module.id}` as UploadTabType, + title: config.name, + description: t(`plugin.${module.id}.description`, { defaultValue: config.description || '' }), + icon: , + disabled: false, + })), ]; if (variant === 'page') { @@ -271,7 +284,7 @@ export const DataLoadMenu: React.FC = ({ '0%': { opacity: 1, color: 'primary.main' }, '50%': { opacity: 0.5, color: 'primary.light' }, '100%': { opacity: 1, color: 'primary.main' }, - }, }} /> Connect to live data sources + }, }} /> {t('upload.connectToLiveData')} = ({ letterSpacing: '0.02em' }} > - Load local data + {t('upload.loadLocalData')} {/* Background for Live Data Column */} @@ -375,7 +388,7 @@ export const DataLoadMenu: React.FC = ({ letterSpacing: '0.02em' }} > - Local data + {t('upload.localData')} = ({ '0%': { opacity: 1, color: 'primary.main' }, '50%': { opacity: 0.5, color: 'primary.light' }, '100%': { opacity: 1, color: 'primary.main' }, - }, }} /> Or connect to a data source (with optional auto-refresh) + }, }} /> {t('upload.orConnectToDataSource')} void; initialTab?: UploadTabType; + hideSampleDatasets?: boolean; } export const UnifiedDataUploadDialog: React.FC = ({ open, onClose, initialTab = 'menu', + hideSampleDatasets = false, }) => { const theme = useTheme(); + const { t } = useTranslation(); const dispatch = useDispatch(); const existingTables = useSelector((state: DataFormulatorState) => state.tables); const serverConfig = useSelector((state: DataFormulatorState) => state.serverConfig); @@ -461,22 +477,14 @@ export const UnifiedDataUploadDialog: React.FC = ( const fileInputRef = useRef(null); const urlInputRef = useRef(null); - // Store on server toggle (forced off when DISABLE_DATABASE) - const diskPersistenceDisabled = serverConfig.DISABLE_DATABASE; - const [storeOnServer, setStoreOnServer] = useState(!diskPersistenceDisabled); - - // When serverConfig loads and database is enabled, default to store on server - useEffect(() => { - if (!diskPersistenceDisabled) { - setStoreOnServer(true); - } - }, [diskPersistenceDisabled]); + // Storage is determined by backend config — no user toggle + const isEphemeral = serverConfig.WORKSPACE_BACKEND === 'ephemeral'; + const storeOnServer = !isEphemeral; // used to decide file upload behavior // Paste tab state const [pasteContent, setPasteContent] = useState(""); const [isLargeContent, setIsLargeContent] = useState(false); const [showFullContent, setShowFullContent] = useState(false); - const [isOverSizeLimit, setIsOverSizeLimit] = useState(false); // File preview state const [filePreviewTables, setFilePreviewTables] = useState(null); @@ -484,6 +492,7 @@ export const UnifiedDataUploadDialog: React.FC = ( const [filePreviewError, setFilePreviewError] = useState(null); const [filePreviewFiles, setFilePreviewFiles] = useState([]); const [filePreviewActiveIndex, setFilePreviewActiveIndex] = useState(0); + const [isDragOver, setIsDragOver] = useState(false); // URL tab state (separate from file upload) const [tableURL, setTableURL] = useState(""); @@ -500,6 +509,9 @@ export const UnifiedDataUploadDialog: React.FC = ( // Sample datasets state const [datasetPreviews, setDatasetPreviews] = useState([]); + // Loading state for table loading (file/URL/paste) + const [tableLoading, setTableLoading] = useState(false); + // Loading state for dataset loading const [datasetLoading, setDatasetLoading] = useState(false); const [datasetLoadingLabel, setDatasetLoadingLabel] = useState(''); @@ -507,7 +519,6 @@ export const UnifiedDataUploadDialog: React.FC = ( // Constants const MAX_DISPLAY_LINES = 20; const LARGE_CONTENT_THRESHOLD = 50000; - const MAX_CONTENT_SIZE = 2 * 1024 * 1024; // Update active tab when initialTab changes useEffect(() => { @@ -601,7 +612,6 @@ export const UnifiedDataUploadDialog: React.FC = ( // Reset state when closing setPasteContent(""); setIsLargeContent(false); - setIsOverSizeLimit(false); setShowFullContent(false); setFilePreviewTables(null); setFilePreviewLoading(false); @@ -619,85 +629,138 @@ export const UnifiedDataUploadDialog: React.FC = ( onClose(); }, [onClose]); - // File upload handler - const handleFileUpload = (event: React.ChangeEvent): void => { - const files = event.target.files; - - if (files && files.length > 0) { - const selectedFiles = Array.from(files); - setFilePreviewFiles(selectedFiles); - setFilePreviewError(null); - setFilePreviewTables(null); - setFilePreviewLoading(true); - - const MAX_FILE_SIZE = 5 * 1024 * 1024; - const previewTables: DictTable[] = []; - const errors: string[] = []; - - const processFiles = async () => { - for (const file of selectedFiles) { - const uniqueName = getUniqueTableName(file.name, existingNames); - const isTextFile = file.type === 'text/csv' || - file.type === 'text/tab-separated-values' || - file.type === 'application/json' || - file.name.endsWith('.csv') || - file.name.endsWith('.tsv') || - file.name.endsWith('.json'); - const isExcelFile = file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' || - file.type === 'application/vnd.ms-excel' || - file.name.endsWith('.xlsx') || - file.name.endsWith('.xls'); - - if (file.size > MAX_FILE_SIZE && isTextFile) { - errors.push(`File ${file.name} is too large (${(file.size / (1024 * 1024)).toFixed(2)}MB). Use Database for large files.`); - continue; + // Shared file processing logic (used by both file input and drag-and-drop) + const processUploadedFiles = useCallback((selectedFiles: File[]): void => { + setFilePreviewFiles(selectedFiles); + setFilePreviewError(null); + setFilePreviewTables(null); + setFilePreviewLoading(true); + + const previewTables: DictTable[] = []; + const errors: string[] = []; + + const processFiles = async () => { + for (const file of selectedFiles) { + const uniqueName = getUniqueTableName(file.name, existingNames); + const isTextFile = file.type === 'text/csv' || + file.type === 'text/tab-separated-values' || + file.type === 'application/json' || + file.name.endsWith('.csv') || + file.name.endsWith('.tsv') || + file.name.endsWith('.json'); + const isExcelFile = file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' || + file.type === 'application/vnd.ms-excel' || + file.name.endsWith('.xlsx') || + file.name.endsWith('.xls'); + + if (isTextFile) { + try { + const text = await readFileText(file); + const table = loadTextDataWrapper(uniqueName, text, file.type); + if (table) { + previewTables.push(table); + } else { + errors.push(t('upload.errors.failedToParse', { name: file.name })); + } + } catch { + errors.push(t('upload.errors.failedToRead', { name: file.name })); } + continue; + } - if (isTextFile) { + if (isExcelFile) { + const isLegacyXls = file.name.toLowerCase().endsWith('.xls') && !file.name.toLowerCase().endsWith('.xlsx'); + if (isLegacyXls) { try { - const text = await file.text(); - const table = loadTextDataWrapper(uniqueName, text, file.type); - if (table) { - previewTables.push(table); + const formData = new FormData(); + formData.append('file', file); + const resp = await fetchWithIdentity(getUrls().PARSE_FILE, { + method: 'POST', + body: formData, + }); + const result = await resp.json(); + if (result.status === 'success' && result.sheets?.length > 0) { + for (const sheet of result.sheets) { + const sheetTitle = result.sheets.length > 1 + ? `${uniqueName}-${sheet.sheet_name}` + : uniqueName; + const table = createTableFromFromObjectArray(sheetTitle, sheet.data, true); + previewTables.push(table); + } } else { - errors.push(`Failed to parse ${file.name}.`); + errors.push(t('upload.errors.failedToParseExcel', { name: file.name })); } } catch { - errors.push(`Failed to read ${file.name}.`); + errors.push(t('upload.errors.failedToParseExcel', { name: file.name })); } - continue; - } - - if (isExcelFile) { + } else { try { const arrayBuffer = await file.arrayBuffer(); const tables = await loadBinaryDataWrapper(uniqueName, arrayBuffer); if (tables.length > 0) { previewTables.push(...tables); } else { - errors.push(`Failed to parse Excel file ${file.name}.`); + errors.push(t('upload.errors.failedToParseExcel', { name: file.name })); } } catch { - errors.push(`Failed to parse Excel file ${file.name}.`); + errors.push(t('upload.errors.failedToParseExcel', { name: file.name })); } - continue; } - - errors.push(`Unsupported file format: ${file.name}.`); + continue; } - setFilePreviewTables(previewTables.length > 0 ? previewTables : null); - setFilePreviewError(errors.length > 0 ? errors.join(' ') : null); - setFilePreviewLoading(false); - }; + errors.push(t('upload.errors.unsupportedFormat', { name: file.name })); + } + + setFilePreviewTables(previewTables.length > 0 ? previewTables : null); + setFilePreviewError(errors.length > 0 ? errors.join(' ') : null); + setFilePreviewLoading(false); + }; - processFiles(); + processFiles(); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [existingNames, t]); + + // File input change handler + const handleFileInputChange = (event: React.ChangeEvent): void => { + const files = event.target.files; + if (files && files.length > 0) { + processUploadedFiles(Array.from(files)); } if (fileInputRef.current) { fileInputRef.current.value = ''; } }; + // Drag-and-drop handlers + const handleDragOver = useCallback((event: React.DragEvent): void => { + event.preventDefault(); + event.stopPropagation(); + }, []); + + const handleDragEnter = useCallback((event: React.DragEvent): void => { + event.preventDefault(); + event.stopPropagation(); + setIsDragOver(true); + }, []); + + const handleDragLeave = useCallback((event: React.DragEvent): void => { + event.preventDefault(); + event.stopPropagation(); + if (event.currentTarget.contains(event.relatedTarget as Node)) return; + setIsDragOver(false); + }, []); + + const handleFileDrop = useCallback((event: React.DragEvent): void => { + event.preventDefault(); + event.stopPropagation(); + setIsDragOver(false); + const files = event.dataTransfer.files; + if (files && files.length > 0) { + processUploadedFiles(Array.from(files)); + } + }, [processUploadedFiles]); + // Reset activeIndex when tables change useEffect(() => { if (filePreviewTables && filePreviewTables.length > 0) { @@ -709,7 +772,7 @@ export const UnifiedDataUploadDialog: React.FC = ( } }, [filePreviewTables, filePreviewActiveIndex]); - const handleFileLoadSingleTable = (): void => { + const handleFileLoadSingleTable = async (): Promise => { if (!filePreviewTables || filePreviewTables.length === 0) { return; } @@ -717,28 +780,60 @@ export const UnifiedDataUploadDialog: React.FC = ( if (table) { const sourceConfig: DataSourceConfig = { type: 'file', fileName: filePreviewFiles[0]?.name }; const tableWithSource = { ...table, source: sourceConfig }; - dispatch(loadTable({ - table: tableWithSource, - storeOnServer, - file: storeOnServer ? filePreviewFiles[filePreviewActiveIndex] || filePreviewFiles[0] : undefined, - })); + setTableLoading(true); + try { + await dispatch(loadTable({ + table: tableWithSource, + file: storeOnServer ? filePreviewFiles[filePreviewActiveIndex] || filePreviewFiles[0] : undefined, + })); + } finally { + setTableLoading(false); + } handleClose(); } }; - const handleFileLoadAllTables = (): void => { + const handleFileLoadAllTables = async (): Promise => { if (!filePreviewTables || filePreviewTables.length === 0) { return; } - for (let i = 0; i < filePreviewTables.length; i++) { - const table = filePreviewTables[i]; - const sourceConfig: DataSourceConfig = { type: 'file', fileName: filePreviewFiles[i]?.name || filePreviewFiles[0]?.name }; - const tableWithSource = { ...table, source: sourceConfig }; - dispatch(loadTable({ - table: tableWithSource, - storeOnServer, - file: storeOnServer ? filePreviewFiles[i] || filePreviewFiles[0] : undefined, - })); + + setTableLoading(true); + try { + // When storing on server, remove frontend-only orphans from the same + // source files (sheets that existed before but are absent in the new batch). + const seenSourceFiles = new Set(); + if (storeOnServer) { + const newTableIds = new Set(filePreviewTables.map(t => t.id)); + const sourceFileNames = new Set(); + for (let i = 0; i < filePreviewTables.length; i++) { + const fn = filePreviewFiles[i]?.name || filePreviewFiles[0]?.name; + if (fn) sourceFileNames.add(fn); + } + for (const t of existingTables) { + if (t.source?.type === 'file' && t.source.fileName && sourceFileNames.has(t.source.fileName) && !newTableIds.has(t.id)) { + dispatch(dfActions.removeTableLocally(t.id)); + } + } + } + + for (let i = 0; i < filePreviewTables.length; i++) { + const table = filePreviewTables[i]; + const fileName = filePreviewFiles[i]?.name || filePreviewFiles[0]?.name; + const sourceConfig: DataSourceConfig = { type: 'file', fileName }; + const tableWithSource = { ...table, source: sourceConfig }; + + const isFirstForFile = fileName ? !seenSourceFiles.has(fileName) : false; + if (fileName) seenSourceFiles.add(fileName); + + await dispatch(loadTable({ + table: tableWithSource, + file: storeOnServer ? filePreviewFiles[i] || filePreviewFiles[0] : undefined, + replaceSource: storeOnServer && isFirstForFile, + })); + } + } finally { + setTableLoading(false); } handleClose(); }; @@ -756,10 +851,6 @@ export const UnifiedDataUploadDialog: React.FC = ( const newContent = event.target.value; setPasteContent(newContent); - const contentSizeBytes = new Blob([newContent]).size; - const isOverLimit = contentSizeBytes > MAX_CONTENT_SIZE; - setIsOverSizeLimit(isOverLimit); - const isLarge = newContent.length > LARGE_CONTENT_THRESHOLD; setIsLargeContent(isLarge); @@ -773,7 +864,7 @@ export const UnifiedDataUploadDialog: React.FC = ( setShowFullContent(!showFullContent); }, [showFullContent]); - const handlePasteSubmit = (): void => { + const handlePasteSubmit = async (): Promise => { let table: undefined | DictTable = undefined; const defaultName = (() => { @@ -796,7 +887,12 @@ export const UnifiedDataUploadDialog: React.FC = ( if (table) { // Add source info for paste data const tableWithSource = { ...table, source: { type: 'paste' as const } }; - dispatch(loadTable({ table: tableWithSource, storeOnServer })); + setTableLoading(true); + try { + await dispatch(loadTable({ table: tableWithSource })); + } finally { + setTableLoading(false); + } handleClose(); } }; @@ -862,11 +958,11 @@ export const UnifiedDataUploadDialog: React.FC = ( if (table) { setUrlPreviewTables([table]); } else { - setUrlPreviewError('Unable to parse data from the provided URL. Please ensure the URL points to CSV, JSON, or JSONL data.'); + setUrlPreviewError(t('upload.errors.unableToParseUrl')); } }) .catch((err) => { - setUrlPreviewError(`Failed to fetch data: ${err.message}. Please ensure the URL points to CSV, JSON, or JSONL data.`); + setUrlPreviewError(t('upload.errors.failedToFetch', { message: err.message })); }) .finally(() => { setUrlPreviewLoading(false); @@ -875,7 +971,7 @@ export const UnifiedDataUploadDialog: React.FC = ( // URL tab load handlers - const handleURLLoadSingleTable = (): void => { + const handleURLLoadSingleTable = async (): Promise => { if (!urlPreviewTables || urlPreviewTables.length === 0) { return; } @@ -894,31 +990,41 @@ export const UnifiedDataUploadDialog: React.FC = ( sourceConfig = { type: 'url', url: tableURL }; } const tableWithSource = { ...table, source: sourceConfig }; - dispatch(loadTable({ table: tableWithSource, storeOnServer })); + setTableLoading(true); + try { + await dispatch(loadTable({ table: tableWithSource })); + } finally { + setTableLoading(false); + } handleClose(); } }; - const handleURLLoadAllTables = (): void => { + const handleURLLoadAllTables = async (): Promise => { if (!urlPreviewTables || urlPreviewTables.length === 0) { return; } - for (let i = 0; i < urlPreviewTables.length; i++) { - const table = urlPreviewTables[i]; - let sourceConfig: DataSourceConfig; - if (urlAutoRefresh) { - sourceConfig = { - type: 'stream', - url: tableURL, - autoRefresh: true, - refreshIntervalSeconds: urlRefreshInterval, - lastRefreshed: Date.now() - }; - } else { - sourceConfig = { type: 'url', url: tableURL }; + setTableLoading(true); + try { + for (let i = 0; i < urlPreviewTables.length; i++) { + const table = urlPreviewTables[i]; + let sourceConfig: DataSourceConfig; + if (urlAutoRefresh) { + sourceConfig = { + type: 'stream', + url: tableURL, + autoRefresh: true, + refreshIntervalSeconds: urlRefreshInterval, + lastRefreshed: Date.now() + }; + } else { + sourceConfig = { type: 'url', url: tableURL }; + } + const tableWithSource = { ...table, source: sourceConfig }; + await dispatch(loadTable({ table: tableWithSource })); } - const tableWithSource = { ...table, source: sourceConfig }; - dispatch(loadTable({ table: tableWithSource, storeOnServer })); + } finally { + setTableLoading(false); } handleClose(); }; @@ -941,18 +1047,25 @@ export const UnifiedDataUploadDialog: React.FC = ( const showUrlPreview = urlPreviewLoading || !!urlPreviewError || (urlPreviewTables && urlPreviewTables.length > 0); const hasPasteContent = (pasteContent || '').trim() !== ''; + const enabledPluginsForDialog = getEnabledPlugins(serverConfig?.PLUGINS as any); + // Get current tab title for header const getCurrentTabTitle = () => { - const tabTitles: Record = { - 'menu': 'Load Data', - 'explore': 'Sample Datasets', - 'upload': 'Upload File', - 'paste': 'Paste Data', - 'extract': 'Extract from Documents', - 'url': 'Load from URL', - 'database': 'Database', + if (activeTab.startsWith('plugin:')) { + const pluginId = activeTab.slice(7); + const found = enabledPluginsForDialog.find(p => p.module.id === pluginId); + return found?.config.name || pluginId; + } + const tabTitles: Record = { + 'menu': t('upload.title'), + 'explore': t('upload.sampleDatasets'), + 'upload': t('upload.uploadFile'), + 'paste': t('upload.pasteData'), + 'extract': t('upload.extractFromDocuments'), + 'url': t('upload.loadFromUrl'), + 'database': t('upload.database'), }; - return tabTitles[activeTab] || 'Add Data'; + return tabTitles[activeTab] || t('upload.addData'); }; return ( @@ -983,10 +1096,10 @@ export const UnifiedDataUploadDialog: React.FC = ( )} - {activeTab === 'menu' ? 'Load Data' : getCurrentTabTitle()} + {activeTab === 'menu' ? t('upload.title') : getCurrentTabTitle()} {activeTab === 'extract' && dataCleanBlocks.length > 0 && ( - + = ( )} {activeTab !== 'menu' && ( - - - Load data in - - { if (val) setStoreOnServer(val === 'disk'); }} - size="small" - sx={{ height: 26, '& .MuiToggleButton-root': { textTransform: 'none', fontSize: '0.7rem', px: 1, py: 0 } }} - > - - - - Browser - - - - - + + {isEphemeral + ? + : serverConfig.WORKSPACE_BACKEND === 'azure_blob' + ? + : } + + {isEphemeral + ? t('upload.browserLabel', 'Browser') : serverConfig.WORKSPACE_BACKEND === 'azure_blob' - ? 'Data stored in Azure Blob Storage (supports large tables)' - : 'Data stored in workspace on disk (supports large tables)'} placement="bottom"> - - {serverConfig.WORKSPACE_BACKEND === 'azure_blob' - ? <> Azure - : <> Disk} - - - - - {storeOnServer && !diskPersistenceDisabled && serverConfig.DATA_FORMULATOR_HOME - && serverConfig.WORKSPACE_BACKEND !== 'azure_blob' && ( - - { - fetchWithIdentity(getUrls().OPEN_WORKSPACE, { method: 'POST' }).catch(() => {}); - }} - sx={{ p: 0.5 }} - > - - - - )} - + ? t('upload.azureLabel', 'Azure') + : t('upload.diskLabel', 'Disk')} + + + )} = ( onSelectTab={(tab) => setActiveTab(tab)} serverConfig={serverConfig} variant="dialog" + hideSampleDatasets={hideSampleDatasets} /> @@ -1094,7 +1183,7 @@ export const UnifiedDataUploadDialog: React.FC = ( type="file" sx={{ display: 'none' }} inputRef={fileInputRef} - onChange={handleFileUpload} + onChange={handleFileInputChange} /> {/* File Upload Section - only show drop zone when file upload is enabled */} @@ -1102,39 +1191,44 @@ export const UnifiedDataUploadDialog: React.FC = ( fileInputRef.current?.click()} + onDrop={handleFileDrop} + onDragOver={handleDragOver} + onDragEnter={handleDragEnter} + onDragLeave={handleDragLeave} > - Drag & drop file here + {t('upload.dragDrop')} - or Browse + {t('upload.or')} {t('upload.browse')} {!showFilePreview && ( - Supported: CSV, TSV, JSON, Excel (xlsx, xls) + {t('upload.supportedFormats')} )} ) : ( - File upload is disabled in this environment. + {t('upload.fileUploadDisabled')} - Use "Load from URL" to load data from a remote source. + {t('upload.useLoadFromUrl')} )} @@ -1146,7 +1240,7 @@ export const UnifiedDataUploadDialog: React.FC = ( loading={filePreviewLoading} error={filePreviewError} tables={filePreviewTables} - emptyLabel="Select a file to preview." + emptyLabel={t('upload.selectFileToPreview')} onRemoveTable={handleRemoveFilePreviewTable} activeIndex={filePreviewActiveIndex} onActiveIndexChange={setFilePreviewActiveIndex} @@ -1159,19 +1253,21 @@ export const UnifiedDataUploadDialog: React.FC = ( {hasMultipleFileTables && ( )} @@ -1196,12 +1292,12 @@ export const UnifiedDataUploadDialog: React.FC = ( setTableURL((e.target.value || '').trim())} inputRef={urlInputRef} error={tableURL !== "" && !hasValidUrl} - helperText={tableURL !== "" && !hasValidUrl ? "Enter a valid URL starting with http://, https://, or /" : undefined} + helperText={tableURL !== "" && !hasValidUrl ? t('upload.helperText.urlInvalid') : undefined} size="small" sx={{ flex: 1, @@ -1220,11 +1316,11 @@ export const UnifiedDataUploadDialog: React.FC = ( disabled={!hasValidUrl || urlPreviewLoading} sx={{ textTransform: 'none', whiteSpace: 'nowrap' }} > - Preview + {t('upload.preview')} - The URL must point to data in CSV, JSON, or JSONL format + {t('upload.urlFormatHint')} @@ -1241,14 +1337,14 @@ export const UnifiedDataUploadDialog: React.FC = ( } label={ - Watch Mode + {t('upload.watchMode')} } /> {urlAutoRefresh ? ( - check data updates every + {t('upload.checkUpdatesEvery')} {[ { seconds: 5, label: '5s' }, @@ -1277,7 +1373,7 @@ export const UnifiedDataUploadDialog: React.FC = ( ))} ) : - automatically check and refresh data from the URL at regular intervals + {t('upload.watchHint')} } @@ -1287,7 +1383,7 @@ export const UnifiedDataUploadDialog: React.FC = ( {(!urlPreviewTables || urlPreviewTables.length === 0) && !urlPreviewLoading && ( - Try examples: + {t('upload.tryExamples')} = ( }} > - reset + {t('upload.resetLabel')} )} @@ -1374,7 +1470,7 @@ export const UnifiedDataUploadDialog: React.FC = ( loading={urlPreviewLoading} error={urlPreviewError} tables={urlPreviewTables} - emptyLabel="Enter a URL and click Preview to see data." + emptyLabel={t('upload.enterUrlToPreview')} onRemoveTable={handleRemoveUrlPreviewTable} activeIndex={urlPreviewActiveIndex} onActiveIndexChange={setUrlPreviewActiveIndex} @@ -1387,26 +1483,28 @@ export const UnifiedDataUploadDialog: React.FC = ( {urlAutoRefresh && ( - Watch mode: {urlRefreshInterval < 60 ? `${urlRefreshInterval}s` : `${Math.floor(urlRefreshInterval / 60)}m`} + {t('upload.watchModeStatus')} {urlRefreshInterval < 60 ? `${urlRefreshInterval}s` : `${Math.floor(urlRefreshInterval / 60)}m`} )} {hasMultipleUrlTables && ( )} @@ -1425,25 +1523,7 @@ export const UnifiedDataUploadDialog: React.FC = ( justifyContent: hasPasteContent ? 'flex-start' : 'center', alignItems: hasPasteContent ? 'stretch' : 'center', }}> - {isOverSizeLimit && ( - - - ⚠️ Content exceeds {(MAX_CONTENT_SIZE / (1024 * 1024)).toFixed(0)}MB size limit. - Current size: {(new Blob([pasteContent]).size / (1024 * 1024)).toFixed(2)}MB. - Please use the DATABASE tab for large datasets. - - - )} - - {isLargeContent && !isOverSizeLimit && ( + {isLargeContent && ( = ( borderRadius: 1 }}> - Large content detected ({Math.round(pasteContent.length / 1000)}KB). - {showFullContent ? 'Showing full content (may be slow)' : 'Showing preview for performance'} + {t('upload.largeContentDetected', { size: Math.round(pasteContent.length / 1000) })}{' '} + {showFullContent ? t('upload.showingFullContent') : t('upload.showingPreview')} )} @@ -1474,7 +1554,7 @@ export const UnifiedDataUploadDialog: React.FC = ( fullWidth value={pasteContent} onChange={handleContentChange} - placeholder="Paste your data here (CSV, TSV, or JSON format)" + placeholder={t('upload.placeholder.paste')} InputProps={{ readOnly: isLargeContent && !showFullContent, }} @@ -1506,7 +1586,7 @@ export const UnifiedDataUploadDialog: React.FC = ( border: `1px solid ${alpha(theme.palette.info.main, 0.2)}` }}> - Preview mode: Editing disabled. Click "Show Full" to enable editing. + {t('upload.previewMode')} )} @@ -1516,10 +1596,11 @@ export const UnifiedDataUploadDialog: React.FC = ( @@ -1527,12 +1608,27 @@ export const UnifiedDataUploadDialog: React.FC = ( {/* Database Tab */} - + + {/* Plugin Tabs */} + {enabledPluginsForDialog.map(({ module, config }) => ( + + { + dispatch(loadPluginTable({ tableName: info.tableName, pluginId: info.source })); + handleClose(); + }} + onClose={handleClose} + /> + + ))} + {/* Extract Data Tab */} - + {/* Explore Sample Datasets Tab */} @@ -1546,7 +1642,7 @@ export const UnifiedDataUploadDialog: React.FC = ( const isLiveDataset = dataset.live === true; setDatasetLoading(true); - setDatasetLoadingLabel(`Loading ${dataset.name}...`); + setDatasetLoadingLabel(t('upload.loadingDataset', { name: dataset.name })); try { const loadPromises = dataset.tables.map(async (table) => { @@ -1579,7 +1675,7 @@ export const UnifiedDataUploadDialog: React.FC = ( // Regular example data dictTable.source = { type: 'example', url: table.url }; } - await dispatch(loadTable({ table: dictTable, storeOnServer })); + await dispatch(loadTable({ table: dictTable })); } }); await Promise.all(loadPromises); @@ -1612,7 +1708,7 @@ export const UnifiedDataUploadDialog: React.FC = ( > - {datasetLoadingLabel || 'Loading data...'} + {datasetLoadingLabel || t('upload.loadingData')} diff --git a/src/views/VisualizationView.tsx b/src/views/VisualizationView.tsx index 6522259b..6ea109eb 100644 --- a/src/views/VisualizationView.tsx +++ b/src/views/VisualizationView.tsx @@ -28,22 +28,25 @@ import { Popover, Snackbar, Alert, - Collapse, Fade, Grow, + alpha, } from '@mui/material'; import _ from 'lodash'; -import { borderColor } from '../app/tokens'; +import { borderColor, transition } from '../app/tokens'; +import { WritingIndicator } from '../components/FunComponents'; import ButtonGroup from '@mui/material/ButtonGroup'; import '../scss/VisualizationView.scss'; +import '../scss/DataView.scss'; import { useDispatch, useSelector } from 'react-redux'; import { DataFormulatorState, dfActions, fetchChartInsight } from '../app/dfSlice'; import { assembleVegaChart, extractFieldsFromEncodingMap, getUrls, prepVisTable, fetchWithIdentity } from '../app/utils'; +import embed from 'vega-embed'; import { Chart, EncodingItem, EncodingMap, FieldItem, computeInsightKey } from '../components/ComponentType'; import { DictTable } from "../components/ComponentType"; @@ -53,11 +56,10 @@ import StarIcon from '@mui/icons-material/Star'; import TerminalIcon from '@mui/icons-material/Terminal'; import StarBorderIcon from '@mui/icons-material/StarBorder'; import QuestionAnswerIcon from '@mui/icons-material/QuestionAnswer'; -import CloseIcon from '@mui/icons-material/Close'; import ContentCopyIcon from '@mui/icons-material/ContentCopy'; import ZoomInIcon from '@mui/icons-material/ZoomIn'; import ZoomOutIcon from '@mui/icons-material/ZoomOut'; -import InfoIcon from '@mui/icons-material/Info'; +import AutoStoriesIcon from '@mui/icons-material/AutoStories'; import CasinoIcon from '@mui/icons-material/Casino'; import SaveAltIcon from '@mui/icons-material/SaveAlt'; import OpenInNewIcon from '@mui/icons-material/OpenInNew'; @@ -71,10 +73,15 @@ import 'prismjs/components/prism-markdown' // Language import 'prismjs/components/prism-typescript' // Language import 'prismjs/themes/prism.css'; //Example style, you can use another +import { useTranslation } from 'react-i18next'; + import { ChatDialog } from './ChatDialog'; import { EncodingShelfThread } from './EncodingShelfThread'; import { CustomReactTable } from './ReactTable'; import { InsightIcon } from '../icons'; +import TableChartOutlinedIcon from '@mui/icons-material/TableChartOutlined'; +import { FreeDataViewFC } from './DataView'; + import { dfSelectors } from '../app/dfSlice'; import { ChartRecBox } from './ChartRecBox'; @@ -89,27 +96,9 @@ export interface VisPanelState { viewMode: "gallery" | "carousel"; } -export let generateChartSkeleton = (icon: any, width: number = 160, height: number = 160, opacity: number = 0.5) => ( - - {icon == undefined ? - : - typeof icon == 'string' ? - - - : - - {React.cloneElement(icon, { - style: { - maxHeight: Math.min(height, 32), - maxWidth: Math.min(width, 32), - margin: "auto" - } - })} - } - -) +// Re-export shared utilities from ChartUtils (canonical location) +import { generateChartSkeleton, getDataTable, checkChartAvailability } from './ChartUtils'; +export { generateChartSkeleton, getDataTable, checkChartAvailability }; export let renderTableChart = ( chart: Chart, conceptShelfItems: FieldItem[], extTable: any[], @@ -138,33 +127,6 @@ export let renderTableChart = ( } -export let getDataTable = (chart: Chart, tables: DictTable[], charts: Chart[], - conceptShelfItems: FieldItem[], ignoreTableRef = false) => { - // given a chart, determine which table would be used to visualize the chart - - // return the table directly - if (chart.tableRef && !ignoreTableRef) { - return tables.find(t => t.id == chart.tableRef) as DictTable; - } - - let activeFields = conceptShelfItems.filter((field) => Array.from(Object.values(chart.encodingMap)).map((enc: EncodingItem) => enc.fieldID).includes(field.id)); - - let workingTableCandidates = tables.filter(t => { - return activeFields.every(f => t.names.includes(f.name)); - }); - - let confirmedTableCandidates = workingTableCandidates.filter(t => !charts.some(c => c.saved && c.tableRef == t.id)); - if(confirmedTableCandidates.length > 0) { - return confirmedTableCandidates[0]; - } else if (workingTableCandidates.length > 0) { - return workingTableCandidates[0]; - } else { - // sort base tables based on how many active fields are covered by existing tables - return tables.filter(t => t.derive == undefined).sort((a, b) => activeFields.filter(f => a.names.includes(f.name)).length - - activeFields.filter(f => b.names.includes(f.name)).length).reverse()[0]; - } -} - export let CodeBox : FC<{code: string, language: string, fontSize?: number}> = function CodeBox({ code, language, fontSize = 10 }) { useEffect(() => { Prism.highlightAll(); @@ -196,20 +158,13 @@ export let checkChartAvailabilityOnPreparedData = (chart: Chart, conceptShelfIte return visFieldsFinalNames.length > 0 && visTableRows.length > 0 && visFieldsFinalNames.every(name => Object.keys(visTableRows[0]).includes(name)); } -export let checkChartAvailability = (chart: Chart, conceptShelfItems: FieldItem[], visTableRows: any[]) => { - let visFieldIds = Object.keys(chart.encodingMap) - .filter(key => chart.encodingMap[key as keyof EncodingMap].fieldID != undefined) - .map(key => chart.encodingMap[key as keyof EncodingMap].fieldID); - let visFields = conceptShelfItems.filter(f => visFieldIds.includes(f.id)); - return visFields.length > 0 && visTableRows.length > 0 && visFields.every(f => Object.keys(visTableRows[0]).includes(f.name)); -} - export let SampleSizeEditor: FC<{ initialSize: number; totalSize: number; onSampleSizeChange: (newSize: number) => void; }> = function SampleSizeEditor({ initialSize, totalSize, onSampleSizeChange }) { + const { t } = useTranslation(); const [localSampleSize, setLocalSampleSize] = useState(initialSize); const [anchorEl, setAnchorEl] = useState(null); const open = Boolean(anchorEl); @@ -248,9 +203,9 @@ export let SampleSizeEditor: FC<{ horizontal: 'left', }} > - + - Adjust sample size: {localSampleSize} / {totalSize} rows + {t('chart.adjustSampleSize', { sampleSize: localSampleSize, totalSize })} 100 @@ -262,14 +217,14 @@ export let SampleSizeEditor: FC<{ value={localSampleSize} onChange={(_, value) => setLocalSampleSize(value as number)} valueLabelDisplay="auto" - aria-label="Sample size" + aria-label={t('chart.sampleSizeAria')} /> {maxSliderSize} @@ -278,14 +233,11 @@ export let SampleSizeEditor: FC<{ } /** - * Module-level caches that persist across component remounts. - * - displayRowsCache: avoids re-fetching server data when switching back to a chart - * - displaySvgCache: avoids re-running toSVG when chart+data haven't changed + * Module-level cache: avoids re-fetching server data when switching back to a chart. */ const displayRowsCache = new Map(); -const displaySvgCache = new Map(); -// Simple component that only handles Vega chart rendering — now uses headless toSVG() +/** Main chart uses vega-embed (interactive tooltips). Static toSVG() removes hover behavior. */ const VegaChartRenderer: FC<{ chart: Chart; conceptShelfItems: FieldItem[]; @@ -298,32 +250,27 @@ const VegaChartRenderer: FC<{ chartUnavailable: boolean; onSpecReady?: (spec: any | null) => void; }> = React.memo(({ chart, conceptShelfItems, visTableRows, tableMetadata, chartWidth, chartHeight, scaleFactor, maxStretchFactor, chartUnavailable, onSpecReady }) => { - - // Initialize from display SVG cache for instant display on chart switch - const svgCached = displaySvgCache.get(chart.id); - const [svgContent, setSvgContent] = useState(svgCached?.svg ?? null); - const [assembledSpec, setAssembledSpec] = useState(svgCached?.spec ?? null); + + const elementId = `focused-chart-element-${chart.id}`; useEffect(() => { - + if (chart.chartType === "Auto" || chart.chartType === "Table" || chartUnavailable) { - setSvgContent(null); - setAssembledSpec(null); + onSpecReady?.(null); return; } - // Skip rendering when we have no data yet (data is being fetched) if (visTableRows.length === 0) { return; } const spec = assembleVegaChart( - chart.chartType, - chart.encodingMap, - conceptShelfItems, - visTableRows, - tableMetadata, - chartWidth, + chart.chartType, + chart.encodingMap, + conceptShelfItems, + visTableRows, + tableMetadata, + chartWidth, chartHeight, true, chart.config, @@ -332,111 +279,42 @@ const VegaChartRenderer: FC<{ ); if (!spec || spec === "Table") { - setSvgContent(null); - setAssembledSpec(null); onSpecReady?.(null); return; } spec['background'] = 'white'; - - // Check display SVG cache — skip toSVG entirely if spec matches - const specKey = JSON.stringify(spec); - const cached = displaySvgCache.get(chart.id); - if (cached && cached.specKey === specKey) { - setSvgContent(cached.svg); - setAssembledSpec(cached.spec); - onSpecReady?.(cached.spec); - return; - } - - setAssembledSpec(spec); onSpecReady?.(spec); - // Headless render via Vega: compile VL → parse → View → toSVG() + const el = document.getElementById(elementId); + if (!el) return; + let cancelled = false; - (async () => { - try { - const { compile: vlCompile } = await import('vega-lite'); - const vega = await import('vega'); - const vgSpec = vlCompile(spec as any).spec; - const runtime = vega.parse(vgSpec); - const view = new vega.View(runtime, { renderer: 'none' }); - await view.runAsync(); - const svg = await view.toSVG(); - view.finalize(); - if (!cancelled) { - setSvgContent(svg); - // Cache the rendered SVG for instant reuse on revisit - displaySvgCache.set(chart.id, { specKey, svg, spec }); + const embedResult: { current?: Awaited> } = {}; + + el.innerHTML = ''; + embed(el, { ...spec }, { actions: true, renderer: 'canvas' }) + .then((result) => { + if (cancelled) { + result.finalize(); + return; } - } catch (err) { - console.warn('VegaChartRenderer: SVG render failed', err); + embedResult.current = result; + }) + .catch((err) => { if (!cancelled) { - setSvgContent(null); + console.warn('VegaChartRenderer: embed failed', err); } - } - })(); - - return () => { cancelled = true; }; - - }, [chart.id, chart.chartType, chart.encodingMap, chart.config, conceptShelfItems, visTableRows, tableMetadata, chartWidth, chartHeight, scaleFactor, maxStretchFactor, chartUnavailable]); - - const handleSavePng = useCallback(async () => { - if (!assembledSpec) return; - try { - const { compile: vlCompile } = await import('vega-lite'); - const vega = await import('vega'); - const vgSpec = vlCompile(assembledSpec as any).spec; - const runtime = vega.parse(vgSpec); - const view = new vega.View(runtime, { renderer: 'none' }); - await view.runAsync(); - const pngUrl = await view.toImageURL('png', 2); - view.finalize(); - - // Trigger download - const link = document.createElement('a'); - link.download = `${chart.chartType}-${chart.id}.png`; - link.href = pngUrl; - document.body.appendChild(link); - link.click(); - document.body.removeChild(link); - } catch (err) { - console.error('Save PNG failed:', err); - } - }, [assembledSpec, chart.chartType, chart.id]); - - const handleOpenInVegaEditor = useCallback(() => { - if (!assembledSpec) return; - // Use postMessage to pass spec to Vega Editor (same approach as vega-embed) - const editorUrl = 'https://vega.github.io/editor/'; - const editor = window.open(editorUrl); - if (!editor) return; - - const wait = 10_000; - const step = 250; - const { origin } = new URL(editorUrl); - let count = Math.floor(wait / step); + }); - function listen(evt: MessageEvent) { - if (evt.source === editor) { - count = 0; - window.removeEventListener('message', listen, false); - } - } - window.addEventListener('message', listen, false); + return () => { + cancelled = true; + embedResult.current?.finalize(); + embedResult.current = undefined; + el.innerHTML = ''; + }; - function send() { - if (count <= 0) return; - editor!.postMessage({ - spec: JSON.stringify(assembledSpec, null, 2), - mode: 'vega-lite', - }, origin); - setTimeout(send, step); - count -= 1; - } - setTimeout(send, step); - }, [assembledSpec]); + }, [chart.id, chart.chartType, chart.encodingMap, chart.config, conceptShelfItems, visTableRows, tableMetadata, chartWidth, chartHeight, scaleFactor, maxStretchFactor, chartUnavailable, onSpecReady, elementId]); if (chart.chartType === "Auto") { return @@ -459,23 +337,13 @@ const VegaChartRenderer: FC<{ return ( - {svgContent ? ( - - ) : ( - - {generateChartSkeleton(chartTemplate?.icon, 48, 48, 0.3)} - - )} - + ); }); @@ -483,12 +351,13 @@ const VegaChartRenderer: FC<{ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { + const { t } = useTranslation(); const config = useSelector((state: DataFormulatorState) => state.config); const serverConfig = useSelector((state: DataFormulatorState) => state.serverConfig); const componentRef = useRef(null); // Add ref for the container box that holds all exploration components - const explanationComponentsRef = useRef(null); + let tables = useSelector((state: DataFormulatorState) => state.tables); @@ -536,33 +405,18 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { const conceptShelfItems = useSelector((state: DataFormulatorState) => state.conceptShelfItems); - const [codeViewOpen, setCodeViewOpen] = useState(false); - const [conceptExplanationsOpen, setConceptExplanationsOpen] = useState(false); - const [insightViewOpen, setInsightViewOpen] = useState(false); - - const [chatDialogOpen, setChatDialogOpen] = useState(false); + const [bottomTab, setBottomTab] = useState('data'); const [localScaleFactor, setLocalScaleFactor] = useState(1); + const [chatDialogOpen, setChatDialogOpen] = useState(false); // Reset local UI state when focused chart changes useEffect(() => { - setCodeViewOpen(false); - setConceptExplanationsOpen(false); - setInsightViewOpen(false); - setChatDialogOpen(false); + setBottomTab('data'); setLocalScaleFactor(1); + setChatDialogOpen(false); }, [focusedChartId]); - // Combined useEffect to scroll to exploration components when any of them open - useEffect(() => { - if ((conceptExplanationsOpen || codeViewOpen || insightViewOpen) && explanationComponentsRef.current) { - setTimeout(() => { - explanationComponentsRef.current?.scrollIntoView({ - behavior: 'smooth', - block: 'start' - }); - }, 200); // Small delay to ensure the component is rendered - } - }, [conceptExplanationsOpen, codeViewOpen, insightViewOpen]); + let table = getDataTable(focusedChart, tables, charts, conceptShelfItems); @@ -584,7 +438,7 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { let setSystemMessage = (content: string, severity: "error" | "warning" | "info" | "success") => { dispatch(dfActions.addMessages({ "timestamp": Date.now(), - "component": "Chart Builder", + "component": t('chart.chartBuilder'), "type": severity, "value": content })); @@ -748,7 +602,7 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { return !(dataFieldsAllAvailable && table.rows.length > 0); }, [focusedChart.chartType, dataFieldsAllAvailable, table.rows.length]); - let resultTable = tables.find(t => t.id == trigger?.resultTableId); + let triggerTable = tables.find(t => t.derive?.trigger?.chart?.id == focusedChart?.id); // Chart insight const chartInsightInProgress = useSelector((state: DataFormulatorState) => state.chartInsightInProgress) || []; @@ -771,7 +625,7 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { }; let saveButton = ( - + { @@ -786,7 +640,7 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { ); let deleteButton = ( - + = function ChartEditorFC({}) { // Check if concepts are available const availableConcepts = extractConceptExplanations(table); const hasConcepts = availableConcepts.length > 0; + const hasDerived = !!(triggerTable?.derive || table.derive); - let derivedTableItems = (resultTable?.derive || table.derive) ? [ - - - - - {hasConcepts && ( - - )} - - , - { setChatDialogOpen(false) }} - code={transformCode} - dialog={resultTable?.derive?.dialog || table.derive?.dialog as any[]} /> - ] : []; - - let insightButton = !chartUnavailable && focusedChart.chartType !== "Table" ? ( - - - - ) : null; - let vegaEditorButton = ( - + = function ChartEditorFC({}) { ); + // Toggle buttons for bottom-panel content (icon + text label) + const toggleBtnSx = (active: boolean) => ({ + textTransform: 'none' as const, + fontSize: '0.7rem', + padding: '2px 8px', + borderRadius: '6px', + color: active ? 'primary.main' : 'text.secondary', + backgroundColor: active ? 'rgba(25, 118, 210, 0.08)' : 'transparent', + transition: 'all 0.15s ease', + minWidth: 'auto', + '&:hover': { + backgroundColor: 'rgba(25, 118, 210, 0.08)', + color: 'primary.main', + }, + }); + + let dataButton = ( + + ); + + let derivedTableItems = hasDerived ? [ + , + ...(hasConcepts ? [ + + ] : []), + ] : []; + + let logButton = hasDerived ? ( + + + setChatDialogOpen(true)}> + + + + + ) : null; + + let insightButton = (!chartUnavailable && focusedChart.chartType !== "Table") ? ( + + ) : null; + let chartActionButtons = [ - ...derivedTableItems, + dataButton, insightButton, + ...derivedTableItems, + , + logButton, saveButton, - vegaEditorButton, + // vegaEditorButton, deleteButton, ] let chartMessage = ""; if (focusedChart.chartType == "Table") { - chartMessage = "Tell me what you want to visualize!"; + chartMessage = t('chart.msgTable'); } else if (focusedChart.chartType == "Auto") { - chartMessage = "Say something to get chart recommendations!"; + chartMessage = t('chart.msgAuto'); } else if (encodingShelfEmpty) { - chartMessage = "Put data fields to chart builder or describe what you want!"; + chartMessage = t('chart.msgEncodingEmpty'); } else if (chartUnavailable) { - chartMessage = "Formulate data to create the visualization!"; + chartMessage = t('chart.msgUnavailable'); } else if (chartSynthesisInProgress.includes(focusedChart.id)) { - chartMessage = "Synthesis in progress..."; + chartMessage = t('chart.msgSynthesizing'); } else if (table.derive) { - chartMessage = "AI generated results can be inaccurate, inspect it!"; + chartMessage = t('chart.msgWarning'); } let chartActionItems = isDataStale ? [] : ( @@ -992,7 +775,7 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { {(table.virtual ? activeVisTableTotalRowCount > serverConfig.MAX_DISPLAY_ROWS : table.rows.length > serverConfig.MAX_DISPLAY_ROWS) && !(chartUnavailable || encodingShelfEmpty) ? ( - visualizing + {t('chart.visualizing')} = function ChartEditorFC({}) { }} /> - sample rows + {t('chart.sampleRows')} - + { fetchDisplayRows(activeVisTableRows.length); }}> @@ -1024,7 +807,7 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { let focusedElement = - + {insightFresh && focusedChart.insight?.title && ( = function ChartEditorFC({}) { {focusedChart.insight.title} )} - + = function ChartEditorFC({}) { ; focusedComponent = [ - - {focusedElement} - - - - - - - - - - { - setCodeViewOpen(false); - }} color='primary' aria-label="delete"> - - - - {/* {table.derive?.source} → {table.id} */} - } - > - + + + {focusedElement} + + + {chartActionButtons} + + , + + {(() => { + const panelBoxSx = { + margin: '8px auto 24px auto', padding: '8px', borderRadius: '8px', + border: `1px solid ${borderColor.divider}`, + transition: 'box-shadow 0.2s ease', + '&:hover': { boxShadow: '0 0 8px rgba(25, 118, 210, 0.25)' }, + }; + return + {bottomTab === 'data' && (() => { + const ROW_HEIGHT = 25; + const HEADER_HEIGHT = 32; + const FOOTER_HEIGHT = 32; + const MIN_TABLE_HEIGHT = 150; + const MAX_TABLE_HEIGHT = 400; + const MIN_TABLE_WIDTH = 300; + const MAX_TABLE_WIDTH = 900; + const rowCount = table.virtual?.rowCount || table.rows?.length || 0; + const contentHeight = HEADER_HEIGHT + rowCount * ROW_HEIGHT + FOOTER_HEIGHT; + const adaptiveHeight = Math.max(MIN_TABLE_HEIGHT, Math.min(MAX_TABLE_HEIGHT, contentHeight)); + + // Estimate total width from columns (generous: account for type icons, sort arrows, padding) + const ROW_ID_COL_WIDTH = 56; + const sampleSize = Math.min(29, table.rows.length); + const step = table.rows.length > sampleSize ? table.rows.length / sampleSize : 1; + const sampledRows = Array.from({ length: sampleSize }, (_, i) => table.rows[Math.floor(i * step)]); + const totalColWidth = table.names.reduce((sum, name) => { + const values = sampledRows.map(row => String(row[name] || '')); + const avgLen = values.length > 0 + ? values.reduce((s, v) => s + v.length, 0) / values.length + : 0; + const nameSegs = name.split(/[\s-]+/); + const maxNameSegLen = nameSegs.reduce((m, seg) => Math.max(m, seg.length), 0); + const contentLen = Math.max(maxNameSegLen, avgLen); + return sum + Math.max(80, Math.min(280, contentLen * 10)) + 60; + }, ROW_ID_COL_WIDTH); + const SCROLLBAR_WIDTH = 17; + const adaptiveWidth = Math.max(MIN_TABLE_WIDTH, Math.min(MAX_TABLE_WIDTH, totalColWidth + SCROLLBAR_WIDTH + 16)); + + return ( + + + + ); + })()} + {bottomTab === 'code' && hasDerived && ( + + - - - - - - - { - setInsightViewOpen(false); - }} color='primary' aria-label="close"> - - - - } - > + + )} + {bottomTab === 'concepts' && hasConcepts && ( + + + + )} + {bottomTab === 'insight' && ( + {insightLoading ? ( - - - Analyzing chart... + + ) : insightFresh && focusedChart.insight ? ( - - - {focusedChart.insight.title} - - {(focusedChart.insight.takeaways || []).map((t, i) => ( - - {t} - - ))} - ) : ( - + - No insight available. + {t('chart.noInsightAvailable')} - )} - - - - - - {chartActionButtons} - - + + )} + ; + })()} + , + , + hasDerived ? setChatDialogOpen(false)} + code={transformCode} + dialog={triggerTable?.derive?.dialog || table.derive?.dialog as any[]} /> : null, ] - const ENCODING_SHELF_WIDTH = 200; + const ENCODING_SHELF_WIDTH = 240; let content = [ - + {focusedComponent} , /* Floating encoding shelf panel */ @@ -1187,7 +1006,7 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { backgroundColor: 'rgba(255, 255, 255, 0.9)', borderRadius: '4px', }} alignItems="center"> - + { setLocalScaleFactor(s => Math.max(scaleMin, Math.round((s - 0.1) * 10) / 10)); @@ -1196,11 +1015,11 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { - { setLocalScaleFactor(newValue as number); }} /> - + = scaleMax} onClick={() => { setLocalScaleFactor(s => Math.min(scaleMax, Math.round((s + 0.1) * 10) / 10)); @@ -1209,7 +1028,7 @@ export const ChartEditorFC: FC<{}> = function ChartEditorFC({}) { - , [localScaleFactor]); + , [localScaleFactor, t]); return {synthesisRunning ? = function ChartEditorFC({}) { export const VisualizationViewFC: FC = function VisualizationView({ }) { + const { t } = useTranslation(); let allCharts = useSelector(dfSelectors.getAllCharts); let focusedId = useSelector((state: DataFormulatorState) => state.focusedId); let focusedChartId = focusedId?.type === 'chart' ? focusedId.chartId : undefined; let focusedTableId = React.useMemo(() => { if (!focusedId) return undefined; if (focusedId.type === 'table') return focusedId.tableId; - const chartId = focusedId.chartId; + const chartId = (focusedId as { type: 'chart'; chartId: string }).chartId; const chart = allCharts.find(c => c.id === chartId); return chart?.tableRef; }, [focusedId, allCharts]); @@ -1239,6 +1059,8 @@ export const VisualizationViewFC: FC = function VisualizationView const dispatch = useDispatch(); + let tables = useSelector((state: DataFormulatorState) => state.tables); + let focusedChart = allCharts.find(c => c.id == focusedChartId) as Chart; let synthesisRunning = focusedChartId ? chartSynthesisInProgress.includes(focusedChartId) : false; @@ -1278,14 +1100,63 @@ export const VisualizationViewFC: FC = function VisualizationView } return ( - - {focusedTableId ? : null} - - - or, start with a chart type - - - {chartSelectionBox} + + + + + + {focusedTableId ? : null} + + + {t('chart.orStartWithChartType')} + + + {chartSelectionBox} + + + {focusedId?.type === 'table' && focusedTableId && (() => { + const focusedTable = tables.find(t => t.id === focusedTableId); + if (!focusedTable) return null; + const ROW_HEIGHT = 25; + const HEADER_HEIGHT = 32; + const FOOTER_HEIGHT = 32; + const MIN_TABLE_HEIGHT = 150; + const MAX_TABLE_HEIGHT = 400; + const MIN_TABLE_WIDTH = 300; + const MAX_TABLE_WIDTH = 900; + const rowCount = focusedTable.virtual?.rowCount || focusedTable.rows?.length || 0; + const contentHeight = HEADER_HEIGHT + rowCount * ROW_HEIGHT + FOOTER_HEIGHT; + const adaptiveHeight = Math.max(MIN_TABLE_HEIGHT, Math.min(MAX_TABLE_HEIGHT, contentHeight)); + const ROW_ID_COL_WIDTH = 56; + const sampleSize = Math.min(29, focusedTable.rows.length); + const step = focusedTable.rows.length > sampleSize ? focusedTable.rows.length / sampleSize : 1; + const sampledRows = Array.from({ length: sampleSize }, (_, i) => focusedTable.rows[Math.floor(i * step)]); + const totalColWidth = focusedTable.names.reduce((sum, name) => { + const values = sampledRows.map(row => String(row[name] || '')); + const avgLen = values.length > 0 ? values.reduce((s, v) => s + v.length, 0) / values.length : 0; + const nameSegs = name.split(/[\s-]+/); + const maxNameSegLen = nameSegs.reduce((m, seg) => Math.max(m, seg.length), 0); + const contentLen = Math.max(maxNameSegLen, avgLen); + return sum + Math.max(80, Math.min(280, contentLen * 10)) + 60; + }, ROW_ID_COL_WIDTH); + const SCROLLBAR_WIDTH = 17; + const adaptiveWidth = Math.max(MIN_TABLE_WIDTH, Math.min(MAX_TABLE_WIDTH, totalColWidth + SCROLLBAR_WIDTH + 16)); + return ( + + + + ); + })()} + + ) } diff --git a/src/views/useFormulateData.ts b/src/views/useFormulateData.ts index 3d0e5980..05403d35 100644 --- a/src/views/useFormulateData.ts +++ b/src/views/useFormulateData.ts @@ -91,7 +91,7 @@ export function useFormulateData() { return triggers.map(trigger => ({ name: trigger.resultTableId, rows: tables.find(t2 => t2.id === trigger.resultTableId)?.rows, - description: `Derive from ${tables.find(t2 => t2.id === trigger.resultTableId)?.derive?.source} with instruction: ${trigger.instruction}`, + description: `Derive from ${tables.find(t2 => t2.id === trigger.resultTableId)?.derive?.source}`, })); } @@ -361,10 +361,16 @@ export function useFormulateData() { // Create trigger const trigger: Trigger = { tableId: currentTable.id, - instruction, - displayInstruction, - chart: triggerChart, resultTableId: candidateTableId, + chart: triggerChart, + interaction: [{ + from: 'user' as const, + to: 'datarec-agent' as const, + role: 'instruction' as const, + content: instruction, + displayContent: displayInstruction, + timestamp: Date.now(), + }], }; // Create candidate table with derive info @@ -435,7 +441,6 @@ export function useFormulateData() { // Delegate chart creation to the caller const focusedChartId = createChart({ candidateTable, refinedGoal, currentConcepts }); - // Auto-generate chart insight after rendering if (focusedChartId) { const chartIdForInsight = focusedChartId; setTimeout(() => { diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 00000000..4f30304f --- /dev/null +++ b/tests/README.md @@ -0,0 +1,32 @@ +# Tests + +The test tree is organized with a clear backend/frontend split: + +- `tests/backend` + - backend unit tests, integration tests, and contract tests + - driven by `pytest` + - regression tests directly related to `py-src/data_formulator/**` +- `tests/frontend` + - frontend unit tests powered by **Vitest** + **@testing-library/react** (jsdom) + - covers pure functions, Redux selectors, and React component rendering + - see `tests/frontend/README.md` for directory layout details + +## Suggested Commands + +Run backend tests (pytest): + +```bash +pytest tests/backend +``` + +Run frontend tests (Vitest): + +```bash +npm test +``` + +Run frontend tests in watch mode: + +```bash +npm run test:watch +``` diff --git a/tests/backend/README.md b/tests/backend/README.md new file mode 100644 index 00000000..e83be085 --- /dev/null +++ b/tests/backend/README.md @@ -0,0 +1,59 @@ +# Backend Tests + +This directory contains backend Python tests, organized by responsibility. +Try to keep future additions within the appropriate layer instead of mixing concerns. + +## Directory Layout + +```text +tests/backend/ + README.md + unit/ + README.md + test_unicode_table_name_sanitization.py + integration/ + README.md + contract/ + README.md + fixtures/ + README.md +``` + +## Directory Responsibilities + +- `tests/backend/unit` + - pure function tests + - name sanitization + - utility helpers + - no Flask app or external service dependency + +- `tests/backend/integration` + - Flask routes + - workspace / datalake behavior + - table import, refresh, and metadata read/write flows + - may use temp directories, temp files, and monkeypatching + +- `tests/backend/contract` + - API boundary contract tests + - focused on stable input/output fields and compatibility guarantees + - for example, a Chinese table name should not degrade into an empty placeholder + +- `tests/backend/fixtures` + - test data files + - sample JSON / CSV / parquet files + - shared fixture documentation + +## Recommended Expansion Order + +1. Use `unit` tests to lock down sanitization behavior first. +2. Add `contract` tests for route-level input/output guarantees next. +3. Add `integration` tests for full import flows last. + +## Current Scope + +This first round is focused on: + +- Chinese table names +- Chinese column names +- non-ASCII identifiers +- fallback behavior when sanitization would otherwise produce an empty name diff --git a/tests/backend/benchmarks/benchmark_sandbox.py b/tests/backend/benchmarks/benchmark_sandbox.py new file mode 100644 index 00000000..6bcd1a2a --- /dev/null +++ b/tests/backend/benchmarks/benchmark_sandbox.py @@ -0,0 +1,231 @@ +#!/usr/bin/env python3 +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +"""Benchmark sandbox execution speed across local and docker modes. + +Usage: + uv run python tests/backend/benchmarks/benchmark_sandbox.py +""" + +import statistics +import subprocess +import tempfile +import time + +from data_formulator.sandbox import LocalSandbox, DockerSandbox +from data_formulator.sandbox.not_a_sandbox import NotASandbox + + +class _MinimalWorkspace: + """Lightweight workspace stand-in for benchmarks.""" + def __init__(self, path: str): + self._path = path + +# --------------------------------------------------------------------------- +# Realistic Data Formulator code snippets (typical AI-generated transforms) +# --------------------------------------------------------------------------- + +# 1. Simple column rename + filter (small, fast) +CODE_SIMPLE = """\ +import pandas as pd +df = pd.DataFrame({ + "Name": ["Alice", "Bob", "Charlie", "Diana", "Eve"], + "Age": [25, 30, 35, 28, 22], + "Salary": [50000, 60000, 70000, 55000, 45000], + "Department": ["Eng", "Sales", "Eng", "Sales", "Eng"] +}) +result_df = df.rename(columns={"Name": "Employee"}).query("Age > 24") +""" + +# 2. Groupby + aggregation (medium complexity, typical chart prep) +CODE_GROUPBY = """\ +import pandas as pd +import numpy as np +np.random.seed(42) +n = 1000 +df = pd.DataFrame({ + "date": pd.date_range("2023-01-01", periods=n, freq="D"), + "category": np.random.choice(["A", "B", "C", "D"], n), + "value": np.random.normal(100, 25, n), + "quantity": np.random.randint(1, 50, n), +}) +result_df = ( + df.groupby([pd.Grouper(key="date", freq="M"), "category"]) + .agg(total_value=("value", "sum"), avg_quantity=("quantity", "mean")) + .reset_index() +) +""" + +# 3. Pivot + melt (reshape for visualization) +CODE_PIVOT = """\ +import pandas as pd +import numpy as np +np.random.seed(42) +df = pd.DataFrame({ + "year": [2020, 2020, 2021, 2021, 2022, 2022] * 3, + "region": (["North", "South"] * 3) * 3, + "metric": ["revenue"] * 6 + ["profit"] * 6 + ["cost"] * 6, + "value": np.random.randint(100, 1000, 18), +}) +pivot = df.pivot_table(index=["year", "region"], columns="metric", values="value", aggfunc="sum").reset_index() +result_df = pivot.melt(id_vars=["year", "region"], var_name="metric", value_name="amount") +""" + +# 4. Multi-table join + derived columns (common Data Formulator pattern) +CODE_JOIN = """\ +import pandas as pd +import numpy as np +np.random.seed(42) +orders = pd.DataFrame({ + "order_id": range(1, 501), + "customer_id": np.random.randint(1, 51, 500), + "product_id": np.random.randint(1, 21, 500), + "amount": np.random.uniform(10, 500, 500).round(2), + "date": pd.date_range("2023-01-01", periods=500, freq="6h"), +}) +customers = pd.DataFrame({ + "customer_id": range(1, 51), + "name": [f"Customer_{i}" for i in range(1, 51)], + "segment": np.random.choice(["Enterprise", "SMB", "Consumer"], 50), +}) +products = pd.DataFrame({ + "product_id": range(1, 21), + "product_name": [f"Product_{i}" for i in range(1, 21)], + "category": np.random.choice(["Electronics", "Clothing", "Food"], 20), +}) +merged = orders.merge(customers, on="customer_id").merge(products, on="product_id") +merged["month"] = merged["date"].dt.to_period("M").astype(str) +result_df = ( + merged.groupby(["month", "segment", "category"]) + .agg(total_sales=("amount", "sum"), order_count=("order_id", "count")) + .reset_index() + .sort_values("total_sales", ascending=False) +) +""" + +# 5. DuckDB SQL query (Python+SQL unified execution) +CODE_DUCKDB = """\ +import pandas as pd +import numpy as np +import duckdb +np.random.seed(42) +df = pd.DataFrame({ + "city": np.random.choice(["NYC", "LA", "Chicago", "Houston", "Phoenix"], 200), + "temperature": np.random.normal(70, 15, 200).round(1), + "humidity": np.random.uniform(20, 90, 200).round(1), + "date": pd.date_range("2023-01-01", periods=200, freq="D"), +}) +result_df = duckdb.sql(\"\"\" + SELECT city, + COUNT(*) as days, + ROUND(AVG(temperature), 1) as avg_temp, + ROUND(AVG(humidity), 1) as avg_humidity, + ROUND(MIN(temperature), 1) as min_temp, + ROUND(MAX(temperature), 1) as max_temp + FROM df + GROUP BY city + ORDER BY avg_temp DESC +\"\"\").df() +""" + +BENCHMARKS = [ + ("simple_rename_filter", CODE_SIMPLE), + ("groupby_aggregation", CODE_GROUPBY), + ("pivot_melt_reshape", CODE_PIVOT), + ("multi_table_join", CODE_JOIN), + ("duckdb_sql_query", CODE_DUCKDB), +] + + +def _docker_available() -> bool: + try: + proc = subprocess.run(["docker", "info"], capture_output=True, timeout=10) + return proc.returncode == 0 + except Exception: + return False + + +def bench(sandbox, workspace, name: str, code: str, warmup: int = 1, runs: int = 5) -> dict: + """Run a benchmark and return timing stats.""" + # Warmup + for _ in range(warmup): + r = sandbox.run_python_code(code, workspace, "result_df") + if r["status"] != "ok": + return {"name": name, "error": r.get("content", r.get("error_message", "unknown"))} + + times = [] + for _ in range(runs): + t0 = time.perf_counter() + r = sandbox.run_python_code(code, workspace, "result_df") + t1 = time.perf_counter() + if r["status"] != "ok": + return {"name": name, "error": r.get("content", r.get("error_message", "unknown"))} + times.append(t1 - t0) + + return { + "name": name, + "mean_ms": statistics.mean(times) * 1000, + "median_ms": statistics.median(times) * 1000, + "stdev_ms": statistics.stdev(times) * 1000 if len(times) > 1 else 0, + "min_ms": min(times) * 1000, + "max_ms": max(times) * 1000, + "runs": runs, + } + + +def print_results(mode: str, results: list[dict]): + print(f"\n{'=' * 72}") + print(f" {mode}") + print(f"{'=' * 72}") + print(f" {'Benchmark':<25} {'Mean':>9} {'Median':>9} {'StDev':>9} {'Min':>9} {'Max':>9}") + print(f" {'-' * 25} {'-' * 9} {'-' * 9} {'-' * 9} {'-' * 9} {'-' * 9}") + for r in results: + if "error" in r: + print(f" {r['name']:<25} ERROR: {r['error'][:40]}") + else: + print(f" {r['name']:<25} {r['mean_ms']:>8.1f}ms {r['median_ms']:>8.1f}ms " + f"{r['stdev_ms']:>8.1f}ms {r['min_ms']:>8.1f}ms {r['max_ms']:>8.1f}ms") + + +def main(): + print("Data Formulator Sandbox Benchmark") + print(f"Running each benchmark: 1 warmup + 5 timed runs\n") + + # Create a temporary workspace directory + tmpdir = tempfile.mkdtemp(prefix="df_bench_") + workspace = _MinimalWorkspace(tmpdir) + + # --- Baseline (main-process, no isolation) --- + sandbox = NotASandbox() + results_baseline = [bench(sandbox, workspace, name, code) for name, code in BENCHMARKS] + print_results("baseline (main-process, no isolation)", results_baseline) + + # --- Local (warm subprocess, audit hooks) --- + sandbox = LocalSandbox() + results_local = [bench(sandbox, workspace, name, code) for name, code in BENCHMARKS] + print_results("local (warm subprocess, audit hooks)", results_local) + + # --- Docker --- + if _docker_available(): + sandbox = DockerSandbox() + results_docker = [bench(sandbox, workspace, name, code, warmup=1, runs=3) for name, code in BENCHMARKS] + print_results("docker (container isolation)", results_docker) + else: + print("\n [Docker not available -- skipping docker benchmark]") + + # --- Summary --- + print(f"\n{'=' * 72}") + print(" Overhead vs baseline (warm subprocess)") + print(f"{'=' * 72}") + for rb, rl in zip(results_baseline, results_local): + if "error" in rb or "error" in rl: + status = "N/A (error)" + else: + overhead = rl["mean_ms"] - rb["mean_ms"] + status = f"+{overhead:.1f}ms overhead" + print(f" {rb['name']:<25} {status}") + + +if __name__ == "__main__": + main() diff --git a/tests/backend/benchmarks/benchmark_workspace.py b/tests/backend/benchmarks/benchmark_workspace.py new file mode 100644 index 00000000..ed271deb --- /dev/null +++ b/tests/backend/benchmarks/benchmark_workspace.py @@ -0,0 +1,529 @@ +#!/usr/bin/env python3 +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +""" +Benchmark workspace read performance: Local vs Azure Blob vs Azure+Cache. + +Runs all backends in one shot and prints a side-by-side comparison. +When real Azure credentials are unavailable, a *simulated* Azure backend +wraps the local workspace with configurable per-call latency so the +performance gap is still visible. + +Measured operations (typical derive-data request hot path): + 1. get_metadata() -- parsed from workspace.yaml / blob + 2. read_data_as_df() -- used by generate_data_summary per table + 3. local_dir() -- sandbox materialises all files locally + 4. WorkspaceWithTempData -- mount temp tables -> read -> cleanup + 5. run_parquet_sql() -- DuckDB query against a parquet table + 6. full_derive_data_reads -- (2) x N tables + (3) combined + +Usage: + python tests/backend/benchmarks/benchmark_workspace.py + python tests/backend/benchmarks/benchmark_workspace.py --rows 10000 --tables 3 + python tests/backend/benchmarks/benchmark_workspace.py --azure # use real Azure + python tests/backend/benchmarks/benchmark_workspace.py --latency 0.05 # 50ms/call +""" + +from __future__ import annotations + +import argparse +import io +import os +import statistics +import sys +import tempfile +import time +from contextlib import contextmanager +from pathlib import Path + +import numpy as np +import pandas as pd + +_project_root = Path(__file__).resolve().parent.parent.parent +sys.path.insert(0, str(_project_root / "py-src")) + +from data_formulator.datalake.workspace import Workspace, WorkspaceWithTempData +from data_formulator.datalake.parquet_utils import sanitize_table_name + + +# == Simulated-latency workspace ============================================ + +class SimulatedBlobWorkspace(Workspace): + """Local workspace + artificial latency to mimic Azure Blob round-trips.""" + + def __init__(self, identity_id, root_dir, latency_s=0.03, + *, use_blob_cache=False): + super().__init__(identity_id, root_dir=root_dir) + self._latency_s = latency_s + self._use_blob_cache = use_blob_cache + self._blob_cache: dict[str, bytes] = {} + self._metadata_cached = False + + def _sim_latency(self): + time.sleep(self._latency_s) + + # -- metadata ----------------------------------------------------------- + + def get_metadata(self): + if self._use_blob_cache and self._metadata_cached: + return super().get_metadata() + self._sim_latency() + result = super().get_metadata() + self._metadata_cached = True + return result + + def save_metadata(self, metadata): + self._sim_latency() + self._metadata_cached = False + return super().save_metadata(metadata) + + # -- read --------------------------------------------------------------- + + def read_data_as_df(self, table_name): + meta = self.get_table_metadata(table_name) + if meta is None: + raise FileNotFoundError(f"Table not found: {table_name}") + filename = meta.filename + + if self._use_blob_cache and filename in self._blob_cache: + buf = io.BytesIO(self._blob_cache[filename]) + return pd.read_parquet(buf) + + self._sim_latency() + df = super().read_data_as_df(table_name) + + if self._use_blob_cache: + path = self._path / filename + if path.exists(): + self._blob_cache[filename] = path.read_bytes() + return df + + # -- write -------------------------------------------------------------- + + def write_parquet(self, df, table_name, **kwargs): + self._sim_latency() + result = super().write_parquet(df, table_name, **kwargs) + safe = sanitize_table_name(table_name) + self._blob_cache.pop(f"{safe}.parquet", None) + return result + + # -- local_dir ---------------------------------------------------------- + + @contextmanager + def local_dir(self): + """Simulate downloading ALL workspace files from blob storage.""" + data_files = [f for f in self._path.glob("*") + if f.is_file() and f.name != "workspace.yaml"] + for _ in data_files: + self._sim_latency() + yield self._path + + # -- delete ------------------------------------------------------------- + + def delete_table(self, table_name): + self._sim_latency() + safe = sanitize_table_name(table_name) + self._blob_cache.pop(f"{safe}.parquet", None) + return super().delete_table(table_name) + + def invalidate_all_caches(self): + self._blob_cache.clear() + self._metadata_cached = False + + +# == Test helpers =========================================================== + +def generate_test_df(num_rows, seed=42): + rng = np.random.default_rng(seed) + categories = ["Electronics", "Clothing", "Food", "Books", "Sports", + "Home", "Garden", "Automotive", "Health", "Toys"] + regions = ["North", "South", "East", "West", "Central"] + return pd.DataFrame({ + "order_id": range(1, num_rows + 1), + "date": pd.date_range("2023-01-01", periods=num_rows, freq="h"), + "category": rng.choice(categories, num_rows), + "region": rng.choice(regions, num_rows), + "quantity": rng.integers(1, 100, num_rows), + "unit_price": rng.uniform(5.0, 500.0, num_rows).round(2), + "discount": rng.uniform(0.0, 0.3, num_rows).round(3), + "customer_name": [f"Customer_{i}" for i in rng.integers(1, 200, num_rows)], + "is_returned": rng.choice([True, False], num_rows, p=[0.05, 0.95]), + "notes": rng.choice( + ["", "Rush order", "Gift wrap", "Fragile", "Bulk discount applied"], + num_rows, p=[0.6, 0.1, 0.1, 0.1, 0.1]), + }) + + +@contextmanager +def timer(label, results): + start = time.perf_counter() + yield + results.setdefault(label, []).append(time.perf_counter() - start) + + +def fmt_ms(seconds): + return f"{seconds * 1000:8.1f} ms" + + +# == Benchmark runner ======================================================= + +def run_benchmark(workspace, num_rows, num_tables, iterations, label): + results: dict[str, list[float]] = {} + table_names: list[str] = [] + + print(f"\n{'=' * 60}") + print(f" Backend: {label}") + print(f" Tables : {num_tables} x {num_rows:,} rows") + print(f" Iters : {iterations}") + print(f"{'=' * 60}") + + dfs = [] + for i in range(num_tables): + df = generate_test_df(num_rows, seed=42 + i) + tname = f"bench_table_{i}" + with timer("setup_write_parquet", results): + workspace.write_parquet(df, tname) + table_names.append(sanitize_table_name(tname)) + dfs.append(df) + + setup_time = sum(results.get("setup_write_parquet", [])) + print(f" Setup (write {num_tables} tables): {fmt_ms(setup_time)}") + + for it in range(iterations): + if iterations > 1: + print(f" -- iteration {it + 1}/{iterations} ", end="", flush=True) + + for _ in range(5): + with timer("get_metadata", results): + workspace.get_metadata() + + for tname in table_names: + with timer("read_data_as_df", results): + df_read = workspace.read_data_as_df(tname) + assert len(df_read) == num_rows + + with timer("local_dir", results): + with workspace.local_dir() as wd: + list(Path(wd).glob("*.parquet")) + + temp_data = [ + {"name": f"temp_{i}", "rows": dfs[i].head(100).to_dict("records")} + for i in range(num_tables) + ] + with timer("workspace_with_temp_data", results): + with WorkspaceWithTempData(workspace, temp_data) as ws: + for i in range(num_tables): + ws.read_data_as_df(f"temp_{i}") + + with timer("full_derive_data_reads", results): + for tname in table_names: + workspace.read_data_as_df(tname) + with workspace.local_dir() as _: + pass + + for tname in table_names: + with timer("run_parquet_sql", results): + try: + workspace.run_parquet_sql( + tname, + "SELECT category, SUM(quantity) as total " + "FROM {parquet} GROUP BY category", + ) + except Exception: + pass + + if iterations > 1: + last = results["full_derive_data_reads"][-1] + print(f" full_derive={fmt_ms(last).strip()}") + + for tname in table_names: + try: + workspace.delete_table(tname) + except Exception: + pass + + return results + + +# == Report ================================================================= + +def print_report(all_results, latency_ms=None): + key_ops = [ + "get_metadata", "read_data_as_df", "local_dir", + "workspace_with_temp_data", "run_parquet_sql", + "full_derive_data_reads", + ] + all_ops = set() + for r in all_results.values(): + all_ops.update(r.keys()) + all_ops.discard("setup_write_parquet") + ops = [op for op in key_ops if op in all_ops] + backends = list(all_results.keys()) + + col_w = max(22, max(len(b) for b in backends) + 4) + + print(f"\n{'=' * (30 + col_w * len(backends) + 4)}") + print(" RESULTS COMPARISON") + if latency_ms is not None: + print(f" (simulated blob latency = {latency_ms:.0f} ms per call)") + print(f"{'=' * (30 + col_w * len(backends) + 4)}") + + header = f"{'Operation':<30}" + for b in backends: + header += f"{b:>{col_w}}" + print(header) + print("-" * (30 + col_w * len(backends))) + + local_medians: dict[str, float] = {} + for op in ops: + row = f"{op:<30}" + values: list = [] + for b in backends: + times = all_results[b].get(op, []) + if times: + med = statistics.median(times) + row += f"{fmt_ms(med):>{col_w}}" + values.append(med) + if b == backends[0]: + local_medians[op] = med + else: + row += f"{'N/A':>{col_w}}" + values.append(None) + base = local_medians.get(op) + if base and base > 0 and len(values) >= 2: + parts = [] + for v in values[1:]: + if v is not None: + parts.append(f"{v / base:.0f}x") + else: + parts.append("-") + row += f" ({', '.join(parts)})" + print(row) + + print(f"\n{'-' * (30 + col_w * len(backends))}") + print(" Key observations:") + print(" * read_data_as_df -- once per table (generate_data_summary)") + print(" * local_dir -- re-downloads ALL blobs (sandbox hot path)") + print(" * full_derive_data -- the two above combined (dominates latency)") + print(" * warm cache -- blob_data_cache avoids re-downloads for reads") + print(" * local_dir always bypasses the blob_data_cache") + print(" * CachedAzureBlobWorkspace keeps a local mirror => local_dir is free") + print() + + +# == Main =================================================================== + +def main(): + parser = argparse.ArgumentParser( + description="Benchmark workspace read performance across backends", + ) + parser.add_argument("--rows", type=int, default=2000) + parser.add_argument("--tables", type=int, default=2) + parser.add_argument("--iterations", type=int, default=3) + parser.add_argument("--latency", type=float, default=0.03, + help="Simulated per-call latency in seconds (default: 0.03)") + parser.add_argument("--azure", action="store_true", + help="Use real Azure Blob Storage instead of simulation") + args = parser.parse_args() + + all_results: dict[str, dict[str, list[float]]] = {} + + n_backends = 5 # local + 3 simulated azure + 1 cached + + # -- 1. Local filesystem ------------------------------------------------ + print(f"\n[1/{n_backends}] LOCAL filesystem") + with tempfile.TemporaryDirectory(prefix="df_bench_") as tmpdir: + ws_local = Workspace("bench_local", root_dir=tmpdir) + all_results["Local"] = run_benchmark( + ws_local, args.rows, args.tables, args.iterations, "Local FS", + ) + + if args.azure: + _run_real_azure(args, all_results) + else: + _run_simulated(args, all_results) + + print_report( + all_results, + latency_ms=None if args.azure else args.latency * 1000, + ) + + +def _run_simulated(args, all_results): + lat = args.latency + + # -- 2. Simulated Azure (cold) ------------------------------------------ + print(f"\n[2/5] SIMULATED Azure Blob (latency={lat * 1000:.0f}ms/call, cold)") + with tempfile.TemporaryDirectory(prefix="df_bench_sim_") as tmpdir: + ws_sim = SimulatedBlobWorkspace( + "bench_sim", root_dir=tmpdir, latency_s=lat, use_blob_cache=False, + ) + all_results["Sim Azure (cold)"] = run_benchmark( + ws_sim, args.rows, args.tables, args.iterations, + f"Simulated Azure (cold, {lat * 1000:.0f}ms)", + ) + + # -- 3. Simulated Azure + cache (cold start) ---------------------------- + print(f"\n[3/5] SIMULATED Azure + blob_data_cache (cold start)") + with tempfile.TemporaryDirectory(prefix="df_bench_cache_") as tmpdir: + ws_cache = SimulatedBlobWorkspace( + "bench_cache", root_dir=tmpdir, latency_s=lat, use_blob_cache=True, + ) + all_results["Sim Azure (cache)"] = run_benchmark( + ws_cache, args.rows, args.tables, args.iterations, + f"Simulated Azure (cache, {lat * 1000:.0f}ms)", + ) + + # -- 4. Simulated Azure warm cache (pre-populated) ---------------------- + print(f"\n[4/5] SIMULATED Azure warm cache (pre-populated)") + with tempfile.TemporaryDirectory(prefix="df_bench_warm_") as tmpdir: + ws_warm = SimulatedBlobWorkspace( + "bench_warm", root_dir=tmpdir, latency_s=lat, use_blob_cache=True, + ) + table_names = [] + for i in range(args.tables): + df = generate_test_df(args.rows, seed=42 + i) + tname = f"bench_table_{i}" + ws_warm.write_parquet(df, tname) + safe = sanitize_table_name(tname) + table_names.append(safe) + ws_warm.read_data_as_df(safe) # warm the cache + + warm_results: dict[str, list[float]] = {} + print(f"\n{'=' * 60}") + print(f" Backend: Warm cache (reads only)") + print(f"{'=' * 60}") + for _ in range(args.iterations): + for tname in table_names: + with timer("read_data_as_df", warm_results): + ws_warm.read_data_as_df(tname) + for _ in range(5): + with timer("get_metadata", warm_results): + ws_warm.get_metadata() + with timer("local_dir", warm_results): + with ws_warm.local_dir() as _: + pass + with timer("full_derive_data_reads", warm_results): + for tname in table_names: + ws_warm.read_data_as_df(tname) + with ws_warm.local_dir() as _: + pass + + all_results["Sim Azure (warm)"] = warm_results + + for tname in table_names: + try: + ws_warm.delete_table(tname) + except Exception: + pass + + # -- 5. CachedAzureBlobWorkspace simulation ------------------------------ + # The CachedAzureBlobWorkspace uses a LOCAL file mirror so reads + # are at filesystem speed. We simulate it here by wrapping the + # SimulatedBlobWorkspace with the same write-through-to-cache pattern. + print(f"\n[5/5] CachedAzureBlobWorkspace pattern (local mirror)") + with tempfile.TemporaryDirectory(prefix="df_bench_cached_") as tmpdir: + ws_cached = Workspace("bench_cached", root_dir=tmpdir) + all_results["Cached Azure"] = run_benchmark( + ws_cached, args.rows, args.tables, args.iterations, + "Cached Azure (local mirror)", + ) + + +def _run_real_azure(args, all_results): + try: + from azure.storage.blob import ContainerClient + from data_formulator.datalake.azure_blob_workspace import AzureBlobWorkspace + except ImportError as e: + print(f" [SKIP] Azure packages not installed: {e}") + return + + conn_str = os.getenv("AZURE_BLOB_CONNECTION_STRING") + account_url = os.getenv("AZURE_BLOB_ACCOUNT_URL") + container_name = os.getenv("AZURE_BLOB_CONTAINER", "data-formulator") + + if conn_str: + container = ContainerClient.from_connection_string(conn_str, container_name) + elif account_url: + from azure.identity import DefaultAzureCredential + container = ContainerClient(account_url, container_name, + credential=DefaultAzureCredential()) + else: + print(" [SKIP] Set AZURE_BLOB_CONNECTION_STRING or AZURE_BLOB_ACCOUNT_URL") + return + + # -- Azure cold --------------------------------------------------------- + print("\n[2/4] REAL Azure Blob (cold)") + ws_azure = AzureBlobWorkspace("bench_azure", container, + datalake_root="benchmark_test") + try: + all_results["Azure (cold)"] = run_benchmark( + ws_azure, args.rows, args.tables, args.iterations, + "Azure Blob (cold)", + ) + finally: + try: + ws_azure.cleanup() + except Exception: + pass + + # -- Azure warm cache --------------------------------------------------- + print("\n[3/4] REAL Azure Blob (warm cache)") + ws_warm = AzureBlobWorkspace("bench_warm", container, + datalake_root="benchmark_test") + try: + table_names = [] + for i in range(args.tables): + df = generate_test_df(args.rows, seed=42 + i) + tname = f"bench_table_{i}" + ws_warm.write_parquet(df, tname) + safe = sanitize_table_name(tname) + table_names.append(safe) + ws_warm.read_data_as_df(safe) + + warm_results: dict[str, list[float]] = {} + print(f"\n{'=' * 60}") + print(f" Backend: Azure (warm cache, reads only)") + print(f"{'=' * 60}") + for _ in range(args.iterations): + for tname in table_names: + with timer("read_data_as_df", warm_results): + ws_warm.read_data_as_df(tname) + for _ in range(5): + with timer("get_metadata", warm_results): + ws_warm.get_metadata() + with timer("local_dir", warm_results): + with ws_warm.local_dir() as _: + pass + with timer("full_derive_data_reads", warm_results): + for tname in table_names: + ws_warm.read_data_as_df(tname) + with ws_warm.local_dir() as _: + pass + + all_results["Azure (warm)"] = warm_results + finally: + try: + ws_warm.cleanup() + except Exception: + pass + + # -- Azure full benchmark ----------------------------------------------- + print("\n[4/4] REAL Azure Blob (full benchmark)") + ws_full = AzureBlobWorkspace("bench_full", container, + datalake_root="benchmark_test") + try: + all_results["Azure (full)"] = run_benchmark( + ws_full, args.rows, args.tables, args.iterations, + "Azure Blob (full)", + ) + finally: + try: + ws_full.cleanup() + except Exception: + pass + + +if __name__ == "__main__": + main() diff --git a/tests/backend/contract/README.md b/tests/backend/contract/README.md new file mode 100644 index 00000000..251f397c --- /dev/null +++ b/tests/backend/contract/README.md @@ -0,0 +1,16 @@ +# Backend Contract Tests + +This directory contains API contract tests. + +Contract tests focus on guarantees rather than implementation details: + +- what is accepted as input +- what is returned as output +- which fields must remain stable +- which compatibility guarantees must not regress + +For the current issue, the main guarantees to lock down are: + +- a Chinese table name must not be sanitized into an empty string +- Chinese column names must not disappear at the boundary layer +- the `table_name` returned to the frontend must remain traceable to the actual stored name diff --git a/tests/backend/contract/test_same_basename_upload.py b/tests/backend/contract/test_same_basename_upload.py new file mode 100644 index 00000000..5e7f88c7 --- /dev/null +++ b/tests/backend/contract/test_same_basename_upload.py @@ -0,0 +1,269 @@ +"""Contract / integration tests for uploading files with the same base name +but different extensions (e.g. data.csv + data.xlsx). + +Covers two known issues: + +1. **Orphan-cleanup ID mismatch** (frontend contract): + The frontend preview creates table IDs from the raw filename (e.g. "数据.csv"), + but after upload the workspace returns a sanitized name (e.g. "数据_csv"). + The orphan-cleanup in handleFileLoadAllTables compares these two sets, + and a mismatch causes it to wrongly delete the first table on re-upload. + +2. **Backend coexistence**: + Two files with the same basename but different extensions must produce + distinct workspace tables and not overwrite each other. +""" +from __future__ import annotations + +import io +import shutil +from unittest.mock import patch + +import pandas as pd +import pytest +from flask import Flask + +from data_formulator.datalake.workspace import Workspace +from data_formulator.datalake.parquet_utils import ( + sanitize_table_name as parquet_sanitize_table_name, +) +from data_formulator.tables_routes import tables_bp + +pytestmark = [pytest.mark.backend, pytest.mark.contract] + + +# ── helpers ────────────────────────────────────────────────────────── + +@pytest.fixture() +def tmp_workspace(tmp_path): + ws = Workspace("test-user", root_dir=tmp_path) + yield ws + shutil.rmtree(tmp_path, ignore_errors=True) + + +@pytest.fixture() +def client(tmp_workspace): + app = Flask(__name__) + app.config["TESTING"] = True + app.register_blueprint(tables_bp) + with patch("data_formulator.tables_routes._get_workspace", return_value=tmp_workspace): + with app.test_client() as c: + yield c + + +def _upload(client, file_bytes: bytes, filename: str, table_name: str, + replace_source: bool = False): + data = { + "file": (io.BytesIO(file_bytes), filename), + "table_name": table_name, + } + if replace_source: + data["replace_source"] = "true" + return client.post( + "/api/tables/create-table", + data=data, + content_type="multipart/form-data", + ) + + +CSV_CONTENT = "姓名,年龄\n张三,25\n李四,30\n" + + +def _make_excel_bytes(rows: list[dict]) -> bytes: + buf = io.BytesIO() + pd.DataFrame(rows).to_excel(buf, index=False, engine="openpyxl") + return buf.getvalue() + + +EXCEL_CONTENT = _make_excel_bytes([{"姓名": "王五", "年龄": 28}]) + + +# ═══════════════════════════════════════════════════════════════════════ +# 1. Contract: preview ID ≠ workspace ID — the root cause of orphan bug +# ═══════════════════════════════════════════════════════════════════════ + +class TestPreviewIdVsWorkspaceIdMismatch: + """Demonstrate that the frontend preview ID (raw filename) does NOT match + the sanitized workspace table name returned by the backend. + + This mismatch is harmless on first upload but causes the orphan-cleanup + to wrongly remove tables on re-upload. + """ + + @pytest.mark.parametrize("preview_id, expected_ws_name", [ + ("数据.csv", "数据_csv"), + ("数据.xlsx", "数据_xlsx"), + ("数据.xlsx-Sheet1", "数据_xlsx_sheet1"), + ("sales report.csv", "sales_report_csv"), + ]) + def test_preview_id_differs_from_workspace_name( + self, preview_id: str, expected_ws_name: str, + ) -> None: + """The frontend sends preview_id as table_name. + parquet_sanitize_table_name converts it to a different string. + Any comparison between the two will fail.""" + ws_name = parquet_sanitize_table_name(preview_id) + assert ws_name == expected_ws_name + assert ws_name != preview_id, ( + "If these are equal the orphan bug wouldn't trigger, " + "but currently they always differ." + ) + + def test_orphan_cleanup_would_wrongly_remove_on_reupload( + self, client, tmp_workspace, + ) -> None: + """Simulate the re-upload scenario that triggers the orphan bug. + + 1. First upload: 数据.csv → workspace table name "数据_csv" + 2. Re-upload: frontend orphan-cleanup checks + newTableIds = {"数据.csv"} (preview IDs) + existing table id = "数据_csv" (workspace name) + "数据_csv" NOT in {"数据.csv"} → WRONGLY marked as orphan + """ + csv_bytes = CSV_CONTENT.encode("utf-8") + + # -- first upload -- + resp = _upload(client, csv_bytes, "数据.csv", "数据.csv") + ws_name = resp.get_json()["table_name"] + assert ws_name == "数据_csv" + + # -- simulate the frontend orphan-cleanup check -- + # On re-upload, the preview still uses raw filename as ID + new_preview_ids = {"数据.csv"} + existing_ws_id = ws_name # "数据_csv" + + would_be_removed = existing_ws_id not in new_preview_ids + assert would_be_removed is True, ( + "BUG: the existing table would be wrongly removed because " + f"'{existing_ws_id}' is not in preview IDs {new_preview_ids}" + ) + + +# ═══════════════════════════════════════════════════════════════════════ +# 2. Backend: same basename, different extensions → both must coexist +# ═══════════════════════════════════════════════════════════════════════ + +class TestSameBasenameDifferentExtension: + """Upload 数据.csv and 数据.xlsx — both must exist as separate tables.""" + + def test_both_tables_exist_after_upload( + self, client, tmp_workspace, + ) -> None: + """Upload two CSV files with names that mimic CSV + Excel scenario. + Both must produce distinct workspace tables.""" + csv_bytes = CSV_CONTENT.encode("utf-8") + csv2_bytes = "姓名,年龄\n王五,28\n".encode("utf-8") + + resp1 = _upload(client, csv_bytes, "数据.csv", "数据.csv") + assert resp1.get_json()["status"] == "success" + name1 = resp1.get_json()["table_name"] + + # Simulate the Excel sheet upload: different table_name, different file + resp2 = _upload(client, csv2_bytes, "数据_sheet1.csv", "数据.xlsx-Sheet1") + assert resp2.get_json()["status"] == "success" + name2 = resp2.get_json()["table_name"] + + assert name1 != name2, ( + f"Table names must differ: got {name1} and {name2}" + ) + + tables = tmp_workspace.list_tables() + assert name1 in tables + assert name2 in tables + + def test_both_readable_after_upload( + self, client, tmp_workspace, + ) -> None: + csv_bytes = CSV_CONTENT.encode("utf-8") + csv2_bytes = "姓名,年龄\n王五,28\n".encode("utf-8") + + resp1 = _upload(client, csv_bytes, "数据.csv", "数据.csv") + name1 = resp1.get_json()["table_name"] + + resp2 = _upload(client, csv2_bytes, "数据_sheet1.csv", "数据.xlsx-Sheet1") + name2 = resp2.get_json()["table_name"] + + df1 = tmp_workspace.read_data_as_df(name1) + df2 = tmp_workspace.read_data_as_df(name2) + assert list(df1.columns) == ["姓名", "年龄"] + assert list(df2.columns) == ["姓名", "年龄"] + assert df1.iloc[0]["姓名"] == "张三" + assert df2.iloc[0]["姓名"] == "王五" + + def test_reupload_csv_does_not_destroy_other_table( + self, client, tmp_workspace, + ) -> None: + """Re-uploading one file should not affect another file's table.""" + csv_v1 = CSV_CONTENT.encode("utf-8") + csv_v2 = "姓名,年龄\n赵六,35\n".encode("utf-8") + other_csv = "姓名,年龄\n王五,28\n".encode("utf-8") + + _upload(client, csv_v1, "数据.csv", "数据.csv") + _upload(client, other_csv, "数据_sheet1.csv", "数据.xlsx-Sheet1") + + # Re-upload first CSV with new data + resp = _upload(client, csv_v2, "数据.csv", "数据.csv") + assert resp.get_json()["status"] == "success" + + tables = tmp_workspace.list_tables() + csv_name = resp.get_json()["table_name"] + assert csv_name in tables + assert "数据_xlsx_sheet1" in tables, ( + "Other table must survive the first file's re-upload" + ) + + def test_replace_source_only_affects_same_source_file( + self, client, tmp_workspace, + ) -> None: + """replace_source on one file should only remove tables from that + file, not tables from a different source file.""" + csv_bytes = CSV_CONTENT.encode("utf-8") + other_csv = "姓名,年龄\n王五,28\n".encode("utf-8") + + _upload(client, csv_bytes, "数据.csv", "数据.csv") + _upload(client, other_csv, "数据_sheet1.csv", "数据.xlsx-Sheet1") + + # Re-upload with replace_source=true — should only touch 数据.csv tables + _upload(client, csv_bytes, "数据.csv", "数据.csv", replace_source=True) + + tables = tmp_workspace.list_tables() + assert "数据_csv" in tables + assert "数据_xlsx_sheet1" in tables, ( + "replace_source for 数据.csv must not remove tables from other source files" + ) + + +# ═══════════════════════════════════════════════════════════════════════ +# 3. filePreviewFiles / filePreviewTables array mismatch (contract test) +# ═══════════════════════════════════════════════════════════════════════ + +class TestFileArrayMismatch: + """Document the array-index mismatch that happens when an Excel file + has multiple sheets while being co-uploaded with other files. + + filePreviewFiles: [csv_file, xlsx_file] — length 2 + filePreviewTables: [csv_table, sheet1, sheet2] — length 3 + + The fallback `filePreviewFiles[i] || filePreviewFiles[0]` at i=2 + sends the WRONG file (csv instead of xlsx) for sheet2. + """ + + def test_index_fallback_sends_wrong_file(self) -> None: + """Pure logic test: demonstrate the fallback picks the wrong file.""" + # Simulated arrays matching the frontend structure + files = ["数据.csv", "数据.xlsx"] # 2 files + tables = ["数据.csv", "数据.xlsx-Sheet1", "数据.xlsx-Sheet2"] # 3 tables + + for i, table_id in enumerate(tables): + # This mirrors: filePreviewFiles[i]?.name || filePreviewFiles[0]?.name + file_name = files[i] if i < len(files) else files[0] + + if i == 2: + assert file_name == "数据.csv", ( + "BUG: table '数据.xlsx-Sheet2' gets the CSV file " + "because filePreviewFiles[2] is out of bounds and " + "falls back to filePreviewFiles[0]" + ) + assert file_name != "数据.xlsx", ( + "The correct file should be 数据.xlsx but we got 数据.csv" + ) diff --git a/tests/backend/contract/test_table_name_contracts.py b/tests/backend/contract/test_table_name_contracts.py new file mode 100644 index 00000000..ad8eab09 --- /dev/null +++ b/tests/backend/contract/test_table_name_contracts.py @@ -0,0 +1,23 @@ +from __future__ import annotations + +import pytest + +from data_formulator.datalake.parquet_utils import sanitize_table_name as parquet_sanitize +from data_formulator.tables_routes import sanitize_table_name as route_sanitize + + +pytestmark = [pytest.mark.backend, pytest.mark.contract] + + +def test_route_sanitize_should_not_turn_pure_chinese_name_into_placeholder() -> None: + sanitized = route_sanitize("订单明细") + assert sanitized not in {"", "_unnamed", "unnamed", "table"} + assert "订单" in sanitized + + +def test_route_sanitize_should_keep_unicode_and_apply_safe_prefix_if_needed() -> None: + assert route_sanitize("2024销售订单") == "table_2024销售订单" + + +def test_route_sanitize_should_delegate_to_parquet_sanitizer_for_ascii_name() -> None: + assert route_sanitize("Sales_Report") == parquet_sanitize("Sales_Report") diff --git a/tests/backend/fixtures/README.md b/tests/backend/fixtures/README.md new file mode 100644 index 00000000..968bcf67 --- /dev/null +++ b/tests/backend/fixtures/README.md @@ -0,0 +1,17 @@ +# Backend Fixtures + +This directory is for backend test sample data. + +Suggested future additions: + +- `excel/` + - hand-crafted Excel samples for upload and parsing regression tests +- `json/` + - samples with Chinese table names + - samples with Chinese column names +- `csv/` + - CSV files with Chinese headers +- `expected/` + - expected output notes or golden files + +Current contents may include hand-crafted regression samples such as `excel/test_cn.xls`. diff --git a/tests/backend/fixtures/excel/test_cn.xls b/tests/backend/fixtures/excel/test_cn.xls new file mode 100644 index 00000000..331753b6 Binary files /dev/null and b/tests/backend/fixtures/excel/test_cn.xls differ diff --git a/tests/backend/integration/README.md b/tests/backend/integration/README.md new file mode 100644 index 00000000..f1d66552 --- /dev/null +++ b/tests/backend/integration/README.md @@ -0,0 +1,30 @@ +# Backend Integration Tests + +This directory contains backend integration tests. + +Good candidates for this layer: + +- Flask route tests +- table create / ingest / refresh flows +- real workspace and datalake interactions +- sandbox execution (local and Docker) + +Data loader tests (MySQL, MongoDB, PostgreSQL, BigQuery) live in +`tests/plugin/` — see that directory's README for setup instructions. + +## Running + +```bash +# All integration tests +pytest tests/backend/integration/ -v + +# Sandbox tests only +pytest tests/backend/integration/test_sandbox.py -v +``` + +# Start + run all loader tests in one shot +./tests/run_test_dbs.sh test + +# Tear down +./tests/run_test_dbs.sh stop +``` diff --git a/tests/backend/integration/test_auth_info_endpoint.py b/tests/backend/integration/test_auth_info_endpoint.py new file mode 100644 index 00000000..47dee8ef --- /dev/null +++ b/tests/backend/integration/test_auth_info_endpoint.py @@ -0,0 +1,90 @@ +"""Integration tests for the ``/api/auth/info`` endpoint. + +Background +---------- +The ``/api/auth/info`` endpoint delegates to the active provider's +``get_auth_info()`` method, letting the frontend discover how to +initiate the login flow without hard-coding provider details. +""" +from __future__ import annotations + +import flask +import pytest + +import data_formulator.security.auth as auth_module +from data_formulator.auth_providers.azure_easyauth import AzureEasyAuthProvider +from data_formulator.auth_providers.github_oauth import GitHubOAuthProvider +from data_formulator.auth_providers.oidc import OIDCProvider + +pytestmark = [pytest.mark.backend, pytest.mark.auth] + + +@pytest.fixture +def app(): + """Minimal Flask app with the /api/auth/info route registered.""" + _app = flask.Flask(__name__) + _app.config["TESTING"] = True + + @_app.route("/api/auth/info") + def auth_info(): + provider = auth_module.get_active_provider() + if provider: + return flask.jsonify(provider.get_auth_info()) + return flask.jsonify({"action": "none"}) + + return _app + + +@pytest.fixture +def client(app): + return app.test_client() + + +@pytest.fixture(autouse=True) +def _reset_auth(monkeypatch): + monkeypatch.setattr(auth_module, "_provider", None) + monkeypatch.setattr(auth_module, "_allow_anonymous", True) + + +# ------------------------------------------------------------------ +# Tests +# ------------------------------------------------------------------ + +class TestAuthInfoEndpoint: + + def test_anonymous_mode_returns_none_action(self, client): + resp = client.get("/api/auth/info") + assert resp.status_code == 200 + data = resp.get_json() + assert data["action"] == "none" + + def test_oidc_provider_returns_frontend_action(self, client, monkeypatch): + monkeypatch.setenv("OIDC_ISSUER_URL", "https://idp.example.com") + monkeypatch.setenv("OIDC_CLIENT_ID", "my-client") + provider = OIDCProvider() + monkeypatch.setattr(auth_module, "_provider", provider) + + resp = client.get("/api/auth/info") + data = resp.get_json() + assert data["action"] == "frontend" + assert data["oidc"]["authority"] == "https://idp.example.com" + assert data["oidc"]["clientId"] == "my-client" + + def test_github_provider_returns_redirect_action(self, client, monkeypatch): + monkeypatch.setenv("GITHUB_CLIENT_ID", "gh-id") + monkeypatch.setenv("GITHUB_CLIENT_SECRET", "gh-secret") + provider = GitHubOAuthProvider() + monkeypatch.setattr(auth_module, "_provider", provider) + + resp = client.get("/api/auth/info") + data = resp.get_json() + assert data["action"] == "redirect" + assert data["url"] == "/api/auth/github/login" + + def test_azure_provider_returns_transparent_action(self, client, monkeypatch): + provider = AzureEasyAuthProvider() + monkeypatch.setattr(auth_module, "_provider", provider) + + resp = client.get("/api/auth/info") + data = resp.get_json() + assert data["action"] == "transparent" diff --git a/tests/backend/integration/test_create_table_replace_source.py b/tests/backend/integration/test_create_table_replace_source.py new file mode 100644 index 00000000..30587f10 --- /dev/null +++ b/tests/backend/integration/test_create_table_replace_source.py @@ -0,0 +1,112 @@ +"""Integration tests for create-table with replace_source (P3+P4). + +P3: re-uploading the same file should overwrite, not append _1 / _2. +P4: "Load All" with replace_source=true should remove orphaned sheets. +""" +from __future__ import annotations + +import io +import shutil +from pathlib import Path +from unittest.mock import patch + +import pandas as pd +import pytest +from flask import Flask + +from data_formulator.datalake.workspace import Workspace +from data_formulator.tables_routes import tables_bp + +pytestmark = [pytest.mark.backend] + +FIXTURE_DIR = Path(__file__).resolve().parents[1] / "fixtures" / "excel" + + +@pytest.fixture() +def tmp_workspace(tmp_path): + ws = Workspace("test-user", root_dir=tmp_path) + yield ws + shutil.rmtree(tmp_path, ignore_errors=True) + + +@pytest.fixture() +def client(tmp_workspace): + app = Flask(__name__) + app.config["TESTING"] = True + app.register_blueprint(tables_bp) + with patch("data_formulator.tables_routes._get_workspace", return_value=tmp_workspace): + with app.test_client() as c: + yield c + + +def _upload(client, file_bytes: bytes, filename: str, table_name: str, + replace_source: bool = False): + data = { + "file": (io.BytesIO(file_bytes), filename), + "table_name": table_name, + } + if replace_source: + data["replace_source"] = "true" + return client.post( + "/api/tables/create-table", + data=data, + content_type="multipart/form-data", + ) + + +def _make_csv(rows: list[dict]) -> bytes: + return pd.DataFrame(rows).to_csv(index=False).encode() + + +# ── P3: overwrite semantics ────────────────────────────────────────── + +def test_overwrite_same_table_name(client, tmp_workspace) -> None: + """Uploading the same table_name twice should overwrite, not create _1.""" + csv_v1 = _make_csv([{"a": 1}]) + csv_v2 = _make_csv([{"a": 1}, {"a": 2}]) + + resp1 = _upload(client, csv_v1, "data.csv", "my_table") + assert resp1.get_json()["status"] == "success" + + resp2 = _upload(client, csv_v2, "data.csv", "my_table") + assert resp2.get_json()["status"] == "success" + assert resp2.get_json()["table_name"] == "my_table" + + tables = tmp_workspace.list_tables() + assert "my_table" in tables + assert "my_table_1" not in tables + + +# ── P3: replace_source cleans old tables ───────────────────────────── + +def test_replace_source_removes_old_tables(client, tmp_workspace) -> None: + """replace_source=true should remove all tables from the same source file.""" + csv = _make_csv([{"x": 1}]) + + _upload(client, csv, "report.csv", "report_sheet1") + _upload(client, csv, "report.csv", "report_sheet2") + assert "report_sheet1" in tmp_workspace.list_tables() + assert "report_sheet2" in tmp_workspace.list_tables() + + _upload(client, csv, "report.csv", "report_new", replace_source=True) + tables = tmp_workspace.list_tables() + assert "report_new" in tables + assert "report_sheet1" not in tables + assert "report_sheet2" not in tables + + +# ── P4: sheet count changes ────────────────────────────────────────── + +def test_fewer_sheets_after_replace_no_orphans(client, tmp_workspace) -> None: + """First upload 2 sheets, then replace_source with 1 → old sheet2 gone.""" + csv = _make_csv([{"v": 42}]) + + _upload(client, csv, "业绩.xlsx", "业绩_xlsx_sheet1") + _upload(client, csv, "业绩.xlsx", "业绩_xlsx_sheet2") + assert len(tmp_workspace.list_tables()) == 2 + + _upload(client, csv, "业绩.xlsx", "业绩_xlsx_sheet1", replace_source=True) + tables = tmp_workspace.list_tables() + assert "业绩_xlsx_sheet1" in tables + assert "业绩_xlsx_sheet2" not in tables + assert len(tables) == 1 diff --git a/tests/backend/integration/test_create_table_xls_upload.py b/tests/backend/integration/test_create_table_xls_upload.py new file mode 100644 index 00000000..3f4bfc48 --- /dev/null +++ b/tests/backend/integration/test_create_table_xls_upload.py @@ -0,0 +1,166 @@ +"""Integration test for the full .xls upload flow via /api/tables/create-table. + +Exercises the real chain: Flask request -> create_table route -> save_uploaded_file +-> workspace parquet storage, using the test_cn.xls fixture. +""" +from __future__ import annotations + +import shutil +import tempfile +from pathlib import Path +from unittest.mock import patch + +import pandas as pd +import pytest +from flask import Flask + +from data_formulator.datalake.workspace import Workspace +from data_formulator.tables_routes import tables_bp + +pytestmark = [pytest.mark.backend] + +FIXTURE_DIR = Path(__file__).resolve().parents[1] / "fixtures" / "excel" + + +@pytest.fixture() +def tmp_workspace(tmp_path): + ws = Workspace("test-user", root_dir=tmp_path) + yield ws + shutil.rmtree(tmp_path, ignore_errors=True) + + +@pytest.fixture() +def client(tmp_workspace): + app = Flask(__name__) + app.config["TESTING"] = True + app.register_blueprint(tables_bp) + + with patch("data_formulator.tables_routes._get_workspace", return_value=tmp_workspace): + with app.test_client() as c: + yield c + + +def test_upload_xls_creates_table_and_returns_columns(client, tmp_workspace): + """POST a real .xls file -> create-table should succeed and store it.""" + xls_path = FIXTURE_DIR / "test_cn.xls" + if not xls_path.exists(): + pytest.skip("test_cn.xls fixture not found") + + with open(xls_path, "rb") as f: + resp = client.post( + "/api/tables/create-table", + data={ + "file": (f, "test_cn.xls"), + "table_name": "测试中文表", + }, + content_type="multipart/form-data", + ) + + assert resp.status_code == 200, resp.get_json() + data = resp.get_json() + assert data["status"] == "success" + assert data["row_count"] > 0 + assert len(data["columns"]) > 0 + assert data["table_name"] + + df = tmp_workspace.read_data_as_df(data["table_name"]) + assert len(df) == data["row_count"] + + +def test_upload_xls_preserves_chinese_column_names(client, tmp_workspace): + """Chinese column headers in .xls should survive the full round-trip.""" + xls_path = FIXTURE_DIR / "test_cn.xls" + if not xls_path.exists(): + pytest.skip("test_cn.xls fixture not found") + + with open(xls_path, "rb") as f: + resp = client.post( + "/api/tables/create-table", + data={ + "file": (f, "test_cn.xls"), + "table_name": "列名保留测试", + }, + content_type="multipart/form-data", + ) + + data = resp.get_json() + assert data["status"] == "success" + + original_df = pd.read_excel(xls_path) + original_columns = set(original_df.columns) + returned_columns = set(data["columns"]) + assert original_columns == returned_columns, ( + f"Column mismatch: expected {original_columns}, got {returned_columns}" + ) + + +def test_upload_xls_table_name_sanitized_for_unicode(client, tmp_workspace): + """A pure-Chinese table_name should not become empty after sanitization.""" + xls_path = FIXTURE_DIR / "test_cn.xls" + if not xls_path.exists(): + pytest.skip("test_cn.xls fixture not found") + + with open(xls_path, "rb") as f: + resp = client.post( + "/api/tables/create-table", + data={ + "file": (f, "test_cn.xls"), + "table_name": "订单明细", + }, + content_type="multipart/form-data", + ) + + data = resp.get_json() + assert data["status"] == "success" + assert len(data["table_name"]) > 0 + assert "订单" in data["table_name"] or "table" not in data["table_name"] + + +def test_upload_xls_rejects_missing_table_name(client): + """Omitting table_name should return 400.""" + xls_path = FIXTURE_DIR / "test_cn.xls" + if not xls_path.exists(): + pytest.skip("test_cn.xls fixture not found") + + with open(xls_path, "rb") as f: + resp = client.post( + "/api/tables/create-table", + data={"file": (f, "test_cn.xls")}, + content_type="multipart/form-data", + ) + + assert resp.status_code == 400 + assert resp.get_json()["status"] == "error" + + +def test_list_tables_returns_sample_rows_for_xls(client, tmp_workspace): + """After uploading .xls, list-tables must return non-empty sample_rows and correct row_count.""" + xls_path = FIXTURE_DIR / "test_cn.xls" + if not xls_path.exists(): + pytest.skip("test_cn.xls fixture not found") + + with open(xls_path, "rb") as f: + create_resp = client.post( + "/api/tables/create-table", + data={ + "file": (f, "test_cn.xls"), + "table_name": "list_tables_test", + }, + content_type="multipart/form-data", + ) + create_data = create_resp.get_json() + assert create_data["status"] == "success" + + list_resp = client.get("/api/tables/list-tables") + assert list_resp.status_code == 200 + list_data = list_resp.get_json() + assert list_data["status"] == "success" + + table_entry = next( + (t for t in list_data["tables"] if t["name"] == create_data["table_name"]), + None, + ) + assert table_entry is not None, f"Table {create_data['table_name']} not found in list-tables" + assert table_entry["row_count"] > 0, "row_count should be > 0 for uploaded .xls" + assert len(table_entry["sample_rows"]) > 0, "sample_rows should not be empty for uploaded .xls" + assert len(table_entry["columns"]) > 0, "columns should not be empty for uploaded .xls" diff --git a/tests/backend/integration/test_credential_routes.py b/tests/backend/integration/test_credential_routes.py new file mode 100644 index 00000000..9e3b1f39 --- /dev/null +++ b/tests/backend/integration/test_credential_routes.py @@ -0,0 +1,165 @@ +"""Integration tests for the credential management API endpoints. + +Verifies: +- POST /api/credentials/store → stores credential in Vault +- GET /api/credentials/list → returns source_key list (no secrets) +- POST /api/credentials/delete → removes credential +- Vault not configured → /store and /delete return 503, /list returns empty +- User isolation (different X-Identity-Id headers) +""" +from __future__ import annotations + +import flask +import pytest +from cryptography.fernet import Fernet +from unittest.mock import patch + +pytestmark = [pytest.mark.backend, pytest.mark.vault] + + +@pytest.fixture +def vault(tmp_path): + from data_formulator.credential_vault.local_vault import LocalCredentialVault + + key = Fernet.generate_key().decode() + return LocalCredentialVault(tmp_path / "test_creds.db", key) + + +@pytest.fixture +def app_with_vault(vault): + """Flask app with credential routes and a real Vault.""" + _app = flask.Flask(__name__) + _app.config["TESTING"] = True + _app.secret_key = "test-secret" + + from data_formulator.credential_routes import credential_bp + _app.register_blueprint(credential_bp) + + with patch("data_formulator.credential_routes.get_credential_vault", return_value=vault), \ + patch("data_formulator.credential_routes.get_identity_id") as mock_id: + mock_id.return_value = "user:alice" + yield _app, mock_id + + +@pytest.fixture +def app_no_vault(): + """Flask app with credential routes but no Vault configured.""" + _app = flask.Flask(__name__) + _app.config["TESTING"] = True + _app.secret_key = "test-secret" + + from data_formulator.credential_routes import credential_bp + _app.register_blueprint(credential_bp) + + with patch("data_formulator.credential_routes.get_credential_vault", return_value=None), \ + patch("data_formulator.credential_routes.get_identity_id", return_value="user:alice"): + yield _app + + +class TestStoreEndpoint: + + def test_store_success(self, app_with_vault): + app, _ = app_with_vault + with app.test_client() as c: + resp = c.post("/api/credentials/store", json={ + "source_key": "superset", + "credentials": {"username": "alice", "password": "pw"}, + }) + assert resp.status_code == 200 + data = resp.get_json() + assert data["status"] == "stored" + assert data["source_key"] == "superset" + + def test_store_missing_fields(self, app_with_vault): + app, _ = app_with_vault + with app.test_client() as c: + resp = c.post("/api/credentials/store", json={"source_key": "superset"}) + assert resp.status_code == 400 + + def test_store_no_vault_returns_503(self, app_no_vault): + with app_no_vault.test_client() as c: + resp = c.post("/api/credentials/store", json={ + "source_key": "superset", + "credentials": {"username": "alice", "password": "pw"}, + }) + assert resp.status_code == 503 + + +class TestListEndpoint: + + def test_list_empty(self, app_with_vault): + app, _ = app_with_vault + with app.test_client() as c: + resp = c.get("/api/credentials/list") + assert resp.status_code == 200 + assert resp.get_json()["sources"] == [] + + def test_list_after_store(self, app_with_vault, vault): + app, _ = app_with_vault + vault.store("user:alice", "superset", {"pw": "x"}) + vault.store("user:alice", "metabase", {"pw": "y"}) + with app.test_client() as c: + resp = c.get("/api/credentials/list") + sources = resp.get_json()["sources"] + assert set(sources) == {"superset", "metabase"} + + def test_list_no_vault_returns_empty(self, app_no_vault): + with app_no_vault.test_client() as c: + resp = c.get("/api/credentials/list") + assert resp.status_code == 200 + assert resp.get_json()["sources"] == [] + + +class TestDeleteEndpoint: + + def test_delete_success(self, app_with_vault, vault): + app, _ = app_with_vault + vault.store("user:alice", "superset", {"pw": "x"}) + with app.test_client() as c: + resp = c.post("/api/credentials/delete", json={"source_key": "superset"}) + assert resp.status_code == 200 + assert resp.get_json()["status"] == "deleted" + assert vault.retrieve("user:alice", "superset") is None + + def test_delete_missing_key(self, app_with_vault): + app, _ = app_with_vault + with app.test_client() as c: + resp = c.post("/api/credentials/delete", json={}) + assert resp.status_code == 400 + + def test_delete_no_vault_returns_503(self, app_no_vault): + with app_no_vault.test_client() as c: + resp = c.post("/api/credentials/delete", json={"source_key": "superset"}) + assert resp.status_code == 503 + + +class TestUserIsolation: + + def test_different_users_see_own_credentials(self, app_with_vault, vault): + app, mock_id = app_with_vault + + vault.store("user:alice", "superset", {"pw": "alice"}) + vault.store("user:bob", "superset", {"pw": "bob"}) + + with app.test_client() as c: + mock_id.return_value = "user:alice" + resp = c.get("/api/credentials/list") + assert "superset" in resp.get_json()["sources"] + + with app.test_client() as c: + mock_id.return_value = "user:bob" + resp = c.get("/api/credentials/list") + assert "superset" in resp.get_json()["sources"] + + def test_delete_only_affects_own(self, app_with_vault, vault): + app, mock_id = app_with_vault + + vault.store("user:alice", "superset", {"pw": "alice"}) + vault.store("user:bob", "superset", {"pw": "bob"}) + + with app.test_client() as c: + mock_id.return_value = "user:alice" + c.post("/api/credentials/delete", json={"source_key": "superset"}) + + assert vault.retrieve("user:alice", "superset") is None + assert vault.retrieve("user:bob", "superset") == {"pw": "bob"} diff --git a/tests/backend/integration/test_csv_encoding_roundtrip.py b/tests/backend/integration/test_csv_encoding_roundtrip.py new file mode 100644 index 00000000..ecfddb6d --- /dev/null +++ b/tests/backend/integration/test_csv_encoding_roundtrip.py @@ -0,0 +1,151 @@ +"""Integration tests: uploading a non-UTF-8 CSV should not produce garbled data. + +These tests exercise the real user flow — upload a CSV file (possibly GBK), +have it saved to the workspace, and verify the data read back through +pd.read_csv / the API contains the correct Chinese characters. +""" +from __future__ import annotations + +import io +import shutil +from unittest.mock import patch + +import pandas as pd +import pytest +from flask import Flask + +from data_formulator.datalake.workspace import Workspace +from data_formulator.tables_routes import tables_bp + +pytestmark = [pytest.mark.backend] + +CHINESE_CSV_TEXT = "姓名,年龄,部门\n张三,25,技术部\n李四,30,市场部\n王五,28,财务部\n" + + +@pytest.fixture() +def tmp_workspace(tmp_path): + ws = Workspace("test-user", root_dir=tmp_path) + yield ws + shutil.rmtree(tmp_path, ignore_errors=True) + + +@pytest.fixture() +def client(tmp_workspace): + app = Flask(__name__) + app.config["TESTING"] = True + app.register_blueprint(tables_bp) + with patch("data_formulator.tables_routes._get_workspace", return_value=tmp_workspace): + with app.test_client() as c: + yield c + + +def _upload(client, file_bytes: bytes, filename: str, table_name: str): + return client.post( + "/api/tables/create-table", + data={ + "file": (io.BytesIO(file_bytes), filename), + "table_name": table_name, + }, + content_type="multipart/form-data", + ) + + +# ── Round-trip: save_uploaded_file → read_data_as_df ───────────────── + +class TestWorkspaceRoundTrip: + """Upload a GBK CSV to workspace, then read it back as a DataFrame.""" + + def test_gbk_csv_columns_are_chinese(self, tmp_workspace) -> None: + from data_formulator.datalake.file_manager import save_uploaded_file + + gbk_bytes = CHINESE_CSV_TEXT.encode("gbk") + save_uploaded_file(tmp_workspace, gbk_bytes, "销售数据.csv") + + df = tmp_workspace.read_data_as_df("销售数据") + assert list(df.columns) == ["姓名", "年龄", "部门"] + + def test_gbk_csv_cell_values_are_correct(self, tmp_workspace) -> None: + from data_formulator.datalake.file_manager import save_uploaded_file + + gbk_bytes = CHINESE_CSV_TEXT.encode("gbk") + save_uploaded_file(tmp_workspace, gbk_bytes, "销售数据.csv") + + df = tmp_workspace.read_data_as_df("销售数据") + assert df.iloc[0]["姓名"] == "张三" + assert df.iloc[1]["部门"] == "市场部" + assert df.iloc[2]["年龄"] == 28 + + def test_utf8_csv_still_works(self, tmp_workspace) -> None: + from data_formulator.datalake.file_manager import save_uploaded_file + + utf8_bytes = CHINESE_CSV_TEXT.encode("utf-8") + save_uploaded_file(tmp_workspace, utf8_bytes, "utf8数据.csv") + + df = tmp_workspace.read_data_as_df("utf8数据") + assert list(df.columns) == ["姓名", "年龄", "部门"] + assert df.iloc[0]["姓名"] == "张三" + + def test_utf8_bom_csv_columns_correct(self, tmp_workspace) -> None: + from data_formulator.datalake.file_manager import save_uploaded_file + + bom_bytes = b"\xef\xbb\xbf" + CHINESE_CSV_TEXT.encode("utf-8") + save_uploaded_file(tmp_workspace, bom_bytes, "bom数据.csv") + + df = tmp_workspace.read_data_as_df("bom数据") + assert df.columns[0] == "姓名", ( + f"BOM should be stripped; first column is {df.columns[0]!r}" + ) + + +# ── API: parse-file endpoint with GBK CSV ──────────────────────────── + +class TestParseFileEndpoint: + """POST a GBK-encoded CSV to /api/tables/parse-file and check the response.""" + + def test_gbk_csv_parse_returns_chinese_columns(self, client) -> None: + gbk_bytes = CHINESE_CSV_TEXT.encode("gbk") + resp = client.post( + "/api/tables/parse-file", + data={"file": (io.BytesIO(gbk_bytes), "report.csv")}, + content_type="multipart/form-data", + ) + assert resp.status_code == 200 + data = resp.get_json() + assert data["status"] == "success" + sheet = data["sheets"][0] + assert sheet["columns"] == ["姓名", "年龄", "部门"] + + def test_gbk_csv_parse_returns_correct_rows(self, client) -> None: + gbk_bytes = CHINESE_CSV_TEXT.encode("gbk") + resp = client.post( + "/api/tables/parse-file", + data={"file": (io.BytesIO(gbk_bytes), "report.csv")}, + content_type="multipart/form-data", + ) + rows = resp.get_json()["sheets"][0]["data"] + assert rows[0]["姓名"] == "张三" + assert rows[1]["部门"] == "市场部" + assert rows[2]["年龄"] == 28 + + +# ── API: create-table + get-table full round-trip ──────────────────── + +class TestCreateAndGetTable: + """Upload a GBK CSV via create-table, then fetch via get-table.""" + + def test_gbk_upload_then_get_returns_chinese(self, client, tmp_workspace) -> None: + gbk_bytes = CHINESE_CSV_TEXT.encode("gbk") + resp = _upload(client, gbk_bytes, "员工.csv", "员工") + assert resp.get_json()["status"] == "success" + + get_resp = client.get("/api/tables/get-table?table_name=员工") + assert get_resp.status_code == 200 + body = get_resp.get_json() + assert body["status"] == "success" + + columns = body["columns"] + assert "姓名" in columns + assert "部门" in columns + + rows = body["rows"] + assert any(row.get("姓名") == "张三" for row in rows) diff --git a/tests/backend/integration/test_derive_data_repair_loop.py b/tests/backend/integration/test_derive_data_repair_loop.py new file mode 100644 index 00000000..e771abe6 --- /dev/null +++ b/tests/backend/integration/test_derive_data_repair_loop.py @@ -0,0 +1,384 @@ +"""Integration tests for the derive-data and refine-data repair loop improvements. + +Covers: +- Repair loop triggers on both 'error' and 'other error' statuses +- Empty results list does not crash (IndexError guard) +- Followup exceptions are caught gracefully with safe generic messages +- get-recommendation-questions never leaks exception details to the client +""" +from __future__ import annotations + +import json +import shutil +from contextlib import contextmanager +from unittest.mock import MagicMock, patch + +import pytest +from flask import Flask + +from data_formulator.agent_routes import agent_bp + +pytestmark = [pytest.mark.backend] + +MODULE = "data_formulator.agent_routes" + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def _make_ok_result(code: str = "x = 1") -> dict: + return { + "status": "ok", + "code": code, + "content": {"rows": [], "virtual": {"table_name": "t", "row_count": 0}}, + "dialog": [{"role": "system", "content": "..."}], + "agent": "DataRecAgent", + "refined_goal": {}, + } + + +def _make_error_result(status: str = "error", content: str = "some error") -> dict: + return { + "status": status, + "code": "bad_code()", + "content": content, + "dialog": [{"role": "system", "content": "..."}], + "agent": "DataRecAgent", + "refined_goal": {}, + } + + +@contextmanager +def _mock_workspace(): + """Yield a (mock_workspace, tmp_workspace_cm) that stubs out workspace deps.""" + ws = MagicMock() + ws.list_tables.return_value = set() + + @contextmanager + def fake_temp_data(ws_inner, temp_data): + yield ws_inner + + yield ws, fake_temp_data + + +def _build_app(): + app = Flask(__name__) + app.config["TESTING"] = True + app.config["CLI_ARGS"] = {"max_display_rows": 100} + app.register_blueprint(agent_bp) + return app + + +def _derive_data_payload(**overrides) -> dict: + base = { + "token": "test-token", + "model": {"endpoint": "openai", "model": "gpt-4", "api_key": "k", "api_base": "http://x"}, + "input_tables": [{"name": "t1", "rows": [{"a": 1}]}], + "extra_prompt": "do something", + "max_repair_attempts": 1, + } + base.update(overrides) + return base + + +def _refine_data_payload(**overrides) -> dict: + base = { + "token": "test-token", + "model": {"endpoint": "openai", "model": "gpt-4", "api_key": "k", "api_base": "http://x"}, + "input_tables": [{"name": "t1", "rows": [{"a": 1}]}], + "dialog": [{"role": "system", "content": "..."}], + "new_instruction": "fix it", + "latest_data_sample": [{"a": 1}], + "max_repair_attempts": 1, + } + base.update(overrides) + return base + + +# --------------------------------------------------------------------------- +# derive-data: repair loop status matching +# --------------------------------------------------------------------------- + +class TestDeriveDataRepairLoop: + + def _post_derive(self, client, payload): + return client.post( + "/api/agent/derive-data", + data=json.dumps(payload), + content_type="application/json", + ) + + def test_repair_loop_triggers_on_other_error(self) -> None: + """'other error' status should enter the repair loop (not just 'error').""" + app = _build_app() + + mock_agent = MagicMock() + mock_agent.run.return_value = [_make_error_result(status="other error")] + mock_agent.followup.return_value = [_make_ok_result()] + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.DataRecAgent", return_value=mock_agent), + patch(f"{MODULE}.sign_result"), + ): + with app.test_client() as client: + resp = self._post_derive(client, _derive_data_payload()) + + data = resp.get_json() + assert data["status"] == "ok" + assert data["results"][0]["status"] == "ok" + mock_agent.followup.assert_called_once() + + def test_repair_loop_skips_when_status_is_ok(self) -> None: + """When initial result is 'ok', repair loop should not execute.""" + app = _build_app() + + mock_agent = MagicMock() + mock_agent.run.return_value = [_make_ok_result()] + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.DataRecAgent", return_value=mock_agent), + patch(f"{MODULE}.sign_result"), + ): + with app.test_client() as client: + resp = self._post_derive(client, _derive_data_payload()) + + data = resp.get_json() + assert data["results"][0]["status"] == "ok" + mock_agent.followup.assert_not_called() + + def test_empty_results_does_not_crash(self) -> None: + """If agent.run() returns an empty list, no IndexError should occur.""" + app = _build_app() + + mock_agent = MagicMock() + mock_agent.run.return_value = [] + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.DataRecAgent", return_value=mock_agent), + patch(f"{MODULE}.sign_result"), + ): + with app.test_client() as client: + resp = self._post_derive(client, _derive_data_payload()) + + data = resp.get_json() + assert data["status"] == "ok" + assert data["results"] == [] + + def test_followup_exception_is_caught(self) -> None: + """If agent.followup() raises, the error should be caught and a safe + classified message returned (no raw exception text).""" + app = _build_app() + + mock_agent = MagicMock() + mock_agent.run.return_value = [_make_error_result(status="error")] + mock_agent.followup.side_effect = RuntimeError("LLM connection timeout") + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.DataRecAgent", return_value=mock_agent), + patch(f"{MODULE}.sign_result"), + ): + with app.test_client() as client: + resp = self._post_derive(client, _derive_data_payload()) + + data = resp.get_json() + assert data["status"] == "ok" + result = data["results"][0] + assert result["status"] == "error" + # classify_llm_error maps "timeout" → safe timeout message + assert "timed out" in result["content"].lower() or "timeout" in result["content"].lower() + # Raw exception text must not leak + assert "LLM connection timeout" not in result["content"] + + +# --------------------------------------------------------------------------- +# refine-data: same repair loop tests +# --------------------------------------------------------------------------- + +class TestRefineDataRepairLoop: + + def _post_refine(self, client, payload): + return client.post( + "/api/agent/refine-data", + data=json.dumps(payload), + content_type="application/json", + ) + + def test_repair_loop_triggers_on_other_error(self) -> None: + app = _build_app() + + mock_agent = MagicMock() + mock_agent.followup.side_effect = [ + [_make_error_result(status="other error")], + [_make_ok_result()], + ] + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.DataTransformationAgent", return_value=mock_agent), + patch(f"{MODULE}.sign_result"), + ): + with app.test_client() as client: + resp = self._post_refine(client, _refine_data_payload()) + + data = resp.get_json() + assert data["results"][0]["status"] == "ok" + assert mock_agent.followup.call_count == 2 + + def test_empty_results_does_not_crash(self) -> None: + app = _build_app() + + mock_agent = MagicMock() + mock_agent.followup.return_value = [] + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.DataTransformationAgent", return_value=mock_agent), + patch(f"{MODULE}.sign_result"), + ): + with app.test_client() as client: + resp = self._post_refine(client, _refine_data_payload()) + + data = resp.get_json() + assert data["status"] == "ok" + assert data["results"] == [] + + def test_followup_exception_in_repair_is_caught(self) -> None: + """Followup exception returns a safe classified message, not raw exception text.""" + app = _build_app() + + mock_agent = MagicMock() + mock_agent.followup.side_effect = [ + [_make_error_result(status="error")], + RuntimeError("API key expired"), + ] + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.DataTransformationAgent", return_value=mock_agent), + patch(f"{MODULE}.sign_result"), + ): + with app.test_client() as client: + resp = self._post_refine(client, _refine_data_payload()) + + data = resp.get_json() + result = data["results"][0] + assert result["status"] == "error" + # Raw exception text must not appear + assert "API key expired" not in result["content"] + # Should be classified as a model request failure (generic fallback) + assert result["content"] in ( + "Model request failed", + "Authentication failed — please check your API key", + ) + + +# --------------------------------------------------------------------------- +# get-recommendation-questions: error message uses classify_llm_error +# --------------------------------------------------------------------------- + +class TestGetRecommendationQuestionsError: + + def test_error_message_is_classified_not_raw(self) -> None: + """Error response uses classify_llm_error — safe pre-defined message, + not the raw exception text.""" + app = _build_app() + + mock_agent = MagicMock() + mock_agent.run.side_effect = ValueError("column 'x' not found in table") + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.InteractiveExploreAgent", return_value=mock_agent), + ): + with app.test_client() as client: + resp = client.post( + "/api/agent/get-recommendation-questions", + data=json.dumps({ + "model": {"endpoint": "openai", "model": "gpt-4", + "api_key": "k", "api_base": "http://x"}, + "input_tables": [{"name": "t", "rows": []}], + }), + content_type="application/json", + ) + + lines = resp.data.decode("utf-8").strip().split("\n") + assert len(lines) >= 1 + error_line = [l for l in lines if l.startswith("error:")] + assert len(error_line) == 1 + + error_payload = json.loads(error_line[0].removeprefix("error: ")) + # Raw exception must not leak + assert "column 'x' not found" not in error_payload["content"] + # classify_llm_error returns a pre-defined safe message + assert error_payload["content"] == "Model request failed" + + def test_error_message_never_leaks_api_keys(self) -> None: + """Even when exception contains API keys, classify_llm_error returns + a safe pre-defined message without any raw exception text.""" + app = _build_app() + + mock_agent = MagicMock() + mock_agent.run.side_effect = RuntimeError("auth failed api_key=sk-secret123 for model") + + with _mock_workspace() as (ws, fake_ctx): + with ( + patch(f"{MODULE}.get_client", return_value=MagicMock()), + patch(f"{MODULE}.get_identity_id", return_value="test-user"), + patch(f"{MODULE}.get_workspace", return_value=ws), + patch(f"{MODULE}.get_language_instruction", return_value=""), + patch(f"{MODULE}.InteractiveExploreAgent", return_value=mock_agent), + ): + with app.test_client() as client: + resp = client.post( + "/api/agent/get-recommendation-questions", + data=json.dumps({ + "model": {"endpoint": "openai", "model": "gpt-4", + "api_key": "k", "api_base": "http://x"}, + "input_tables": [{"name": "t", "rows": []}], + }), + content_type="application/json", + ) + + lines = resp.data.decode("utf-8").strip().split("\n") + error_line = [l for l in lines if l.startswith("error:")] + error_payload = json.loads(error_line[0].removeprefix("error: ")) + assert "sk-secret123" not in error_payload["content"] + # "auth failed" matches the authentication pattern + assert "Authentication failed" in error_payload["content"] diff --git a/tests/backend/integration/test_excel_fixture_parsing.py b/tests/backend/integration/test_excel_fixture_parsing.py new file mode 100644 index 00000000..55627703 --- /dev/null +++ b/tests/backend/integration/test_excel_fixture_parsing.py @@ -0,0 +1,23 @@ +from __future__ import annotations + +from pathlib import Path + +import pandas as pd +import pytest + + +pytestmark = [pytest.mark.backend] + + +def test_manual_xls_fixture_can_be_parsed() -> None: + fixture_path = ( + Path(__file__).resolve().parents[1] + / "fixtures" + / "excel" + / "test_cn.xls" + ) + assert fixture_path.exists() + + df = pd.read_excel(fixture_path) + + assert not df.empty diff --git a/tests/backend/integration/test_parse_file_endpoint.py b/tests/backend/integration/test_parse_file_endpoint.py new file mode 100644 index 00000000..393db11e --- /dev/null +++ b/tests/backend/integration/test_parse_file_endpoint.py @@ -0,0 +1,78 @@ +"""Integration tests for the /api/tables/parse-file endpoint.""" +from __future__ import annotations + +import io +from pathlib import Path + +import pandas as pd +import pytest +from flask import Flask + +from data_formulator.tables_routes import tables_bp + +pytestmark = [pytest.mark.backend] + +FIXTURE_DIR = Path(__file__).resolve().parents[1] / "fixtures" / "excel" + + +@pytest.fixture() +def client(): + app = Flask(__name__) + app.config["TESTING"] = True + app.register_blueprint(tables_bp) + with app.test_client() as c: + yield c + + +def test_parse_xls_returns_sheet_data(client): + xls_path = FIXTURE_DIR / "test_cn.xls" + if not xls_path.exists(): + pytest.skip("test_cn.xls fixture not found") + + with open(xls_path, "rb") as f: + resp = client.post( + "/api/tables/parse-file", + data={"file": (f, "test_cn.xls")}, + content_type="multipart/form-data", + ) + + assert resp.status_code == 200 + data = resp.get_json() + assert data["status"] == "success" + assert len(data["sheets"]) >= 1 + + sheet = data["sheets"][0] + assert sheet["row_count"] > 0 + assert len(sheet["columns"]) > 0 + assert len(sheet["data"]) == sheet["row_count"] + + +def test_parse_file_rejects_missing_file(client): + resp = client.post("/api/tables/parse-file") + assert resp.status_code == 400 + assert resp.get_json()["status"] == "error" + + +def test_parse_file_rejects_unsupported_format(client): + fake = io.BytesIO(b"hello world") + resp = client.post( + "/api/tables/parse-file", + data={"file": (fake, "data.txt")}, + content_type="multipart/form-data", + ) + assert resp.status_code == 400 + + +def test_parse_csv_via_endpoint(client): + csv_content = "name,age\nAlice,30\nBob,25\n" + buf = io.BytesIO(csv_content.encode("utf-8")) + resp = client.post( + "/api/tables/parse-file", + data={"file": (buf, "people.csv")}, + content_type="multipart/form-data", + ) + assert resp.status_code == 200 + data = resp.get_json() + assert data["status"] == "success" + assert data["sheets"][0]["row_count"] == 2 + assert "name" in data["sheets"][0]["columns"] diff --git a/tests/backend/integration/test_plugin_app_config.py b/tests/backend/integration/test_plugin_app_config.py new file mode 100644 index 00000000..a0bad17a --- /dev/null +++ b/tests/backend/integration/test_plugin_app_config.py @@ -0,0 +1,184 @@ +"""Integration tests for plugin information in ``/api/app-config``. + +Verifies that enabled plugins appear under the ``PLUGINS`` key in the +``/api/app-config`` response, with their manifest + frontend config merged. +""" +from __future__ import annotations + +import types +from unittest.mock import patch + +import flask +import pytest + +import data_formulator.plugins as plugins_module +from data_formulator.plugins import ( + DISABLED_PLUGINS, + ENABLED_PLUGINS, + discover_and_register, +) +from data_formulator.plugins.base import DataSourcePlugin +import data_formulator.security.auth as auth_module + +pytestmark = [pytest.mark.backend, pytest.mark.plugin] + + +# ------------------------------------------------------------------ +# Stub plugin +# ------------------------------------------------------------------ + +class _DemoPlugin(DataSourcePlugin): + + @staticmethod + def manifest(): + return { + "id": "demo", + "name": "Demo Plugin", + "env_prefix": "PLG_DEMO", + "required_env": [], + "capabilities": ["datasets"], + "auth_modes": ["password"], + "icon": "demo-icon", + "description": "A demo plugin for testing", + } + + def create_blueprint(self): + return flask.Blueprint("plugin_demo", __name__, url_prefix="/api/plugins/demo/") + + def get_frontend_config(self): + return {"base_url": "http://demo.local", "login_url": "/api/plugins/demo/login"} + + +# ------------------------------------------------------------------ +# Fixtures +# ------------------------------------------------------------------ + +@pytest.fixture +def app(): + """Minimal Flask app with /api/app-config and plugin discovery.""" + _app = flask.Flask(__name__) + _app.config["TESTING"] = True + _app.config["CLI_ARGS"] = { + "sandbox": "local", + "disable_display_keys": False, + "disable_file_upload": False, + "project_front_page": False, + "max_display_rows": 10000, + "dev": False, + "workspace_backend": "ephemeral", + "available_languages": ["en"], + } + + @_app.route("/api/app-config") + def get_app_config(): + args = _app.config["CLI_ARGS"] + config = { + "SANDBOX": args["sandbox"], + "DISABLE_DISPLAY_KEYS": args["disable_display_keys"], + "DISABLE_FILE_UPLOAD": args["disable_file_upload"], + "PROJECT_FRONT_PAGE": args["project_front_page"], + "MAX_DISPLAY_ROWS": args["max_display_rows"], + "DEV_MODE": args.get("dev", False), + "WORKSPACE_BACKEND": args.get("workspace_backend", "local"), + "AVAILABLE_LANGUAGES": args.get("available_languages", ["en"]), + } + + from data_formulator.plugins import ENABLED_PLUGINS as ep + if ep: + plugins_info: dict[str, dict] = {} + for pid, plugin in ep.items(): + manifest = plugin.manifest() + frontend_cfg = plugin.get_frontend_config() + plugins_info[pid] = { + "id": manifest.get("id", pid), + "name": manifest.get("name", pid), + "icon": manifest.get("icon"), + "description": manifest.get("description"), + "capabilities": manifest.get("capabilities", []), + "auth_modes": manifest.get("auth_modes", []), + **frontend_cfg, + } + config["PLUGINS"] = plugins_info + + return flask.jsonify(config) + + return _app + + +@pytest.fixture +def client(app): + return app.test_client() + + +@pytest.fixture(autouse=True) +def _clean_plugin_state(): + ENABLED_PLUGINS.clear() + DISABLED_PLUGINS.clear() + yield + ENABLED_PLUGINS.clear() + DISABLED_PLUGINS.clear() + + +@pytest.fixture(autouse=True) +def _reset_auth(monkeypatch): + monkeypatch.setattr(auth_module, "_provider", None) + monkeypatch.setattr(auth_module, "_allow_anonymous", True) + + +# ------------------------------------------------------------------ +# Tests +# ------------------------------------------------------------------ + +class TestAppConfigPlugins: + + def test_no_plugins_key_when_none_enabled(self, client): + resp = client.get("/api/app-config") + data = resp.get_json() + assert resp.status_code == 200 + assert "PLUGINS" not in data + + def test_plugin_info_exposed_when_enabled(self, app, client): + plugin = _DemoPlugin() + ENABLED_PLUGINS["demo"] = plugin + + resp = client.get("/api/app-config") + data = resp.get_json() + + assert "PLUGINS" in data + demo = data["PLUGINS"]["demo"] + assert demo["id"] == "demo" + assert demo["name"] == "Demo Plugin" + assert demo["icon"] == "demo-icon" + assert demo["capabilities"] == ["datasets"] + assert demo["auth_modes"] == ["password"] + assert demo["base_url"] == "http://demo.local" + assert demo["login_url"] == "/api/plugins/demo/login" + + def test_multiple_plugins(self, app, client): + + class _SecondPlugin(DataSourcePlugin): + @staticmethod + def manifest(): + return { + "id": "second", + "name": "Second", + "env_prefix": "PLG_SECOND", + "required_env": [], + } + + def create_blueprint(self): + return flask.Blueprint("plugin_second", __name__, url_prefix="/api/plugins/second/") + + def get_frontend_config(self): + return {"mode": "read-only"} + + ENABLED_PLUGINS["demo"] = _DemoPlugin() + ENABLED_PLUGINS["second"] = _SecondPlugin() + + resp = client.get("/api/app-config") + data = resp.get_json() + + assert len(data["PLUGINS"]) == 2 + assert "demo" in data["PLUGINS"] + assert "second" in data["PLUGINS"] + assert data["PLUGINS"]["second"]["mode"] == "read-only" diff --git a/tests/backend/integration/test_plugin_auth_with_vault.py b/tests/backend/integration/test_plugin_auth_with_vault.py new file mode 100644 index 00000000..f3e0cf38 --- /dev/null +++ b/tests/backend/integration/test_plugin_auth_with_vault.py @@ -0,0 +1,170 @@ +"""Integration tests for plugin authentication + CredentialVault interplay. + +Verifies: +- Vault has valid credentials → plugin auto-login succeeds (mode=vault) +- Vault has stale credentials (password changed) → returns vault_stale +- User manually logs in with remember=true → credentials stored in Vault +- User manually logs in with remember=false → old Vault credentials deleted +- Vault not configured → status endpoint still works (skips Vault step) +""" +from __future__ import annotations + +from unittest.mock import MagicMock, patch + +import flask +import pytest +from cryptography.fernet import Fernet + +pytestmark = [pytest.mark.backend, pytest.mark.vault, pytest.mark.plugin] + + +@pytest.fixture +def vault(tmp_path): + from data_formulator.credential_vault.local_vault import LocalCredentialVault + + key = Fernet.generate_key().decode() + return LocalCredentialVault(tmp_path / "test_creds.db", key) + + +@pytest.fixture +def superset_app(vault): + """Flask app with Superset plugin auth routes and a mocked bridge.""" + _app = flask.Flask(__name__) + _app.config["TESTING"] = True + _app.secret_key = "test-secret" + + mock_bridge = MagicMock() + _app.extensions = {"plugin_superset_bridge": mock_bridge} + + from data_formulator.plugins.superset.routes.auth import auth_bp + _app.register_blueprint(auth_bp) + + yield _app, mock_bridge, vault + + +class TestVaultAutoLogin: + + def test_vault_credentials_valid_auto_login(self, superset_app): + """Vault has valid credentials → auth/status returns authenticated + mode=vault.""" + app, mock_bridge, vault = superset_app + + mock_bridge.login.return_value = { + "access_token": "tok_valid", + "refresh_token": "ref_valid", + } + mock_bridge.get_user_info.return_value = { + "id": 1, "username": "alice", "first_name": "Alice", "last_name": "W", + } + + vault.store("user:alice", "superset", {"username": "alice", "password": "correct_pw"}) + + with app.test_client() as c, \ + patch("data_formulator.credential_vault.get_credential_vault", return_value=vault), \ + patch("data_formulator.security.auth.get_identity_id", return_value="user:alice"): + resp = c.get("/api/plugins/superset/auth/status") + data = resp.get_json() + + assert data["authenticated"] is True + assert data.get("mode") == "vault" + + def test_vault_credentials_stale(self, superset_app): + """Vault credentials are stale (password changed) → vault_stale=true.""" + app, mock_bridge, vault = superset_app + + mock_bridge.login.side_effect = Exception("Invalid credentials") + + vault.store("user:alice", "superset", {"username": "alice", "password": "old_pw"}) + + with app.test_client() as c, \ + patch("data_formulator.credential_vault.get_credential_vault", return_value=vault), \ + patch("data_formulator.security.auth.get_identity_id", return_value="user:alice"): + resp = c.get("/api/plugins/superset/auth/status") + data = resp.get_json() + + assert data["authenticated"] is False + assert data["vault_stale"] is True + + +class TestLoginWithRemember: + + def test_remember_true_stores_in_vault(self, superset_app): + """Login with remember=true → credentials written to Vault.""" + app, mock_bridge, vault = superset_app + + mock_bridge.login.return_value = {"access_token": "tok", "refresh_token": "ref"} + mock_bridge.get_user_info.return_value = { + "id": 1, "username": "alice", "first_name": "Alice", "last_name": "W", + } + + with app.test_client() as c, \ + patch("data_formulator.credential_vault.get_credential_vault", return_value=vault), \ + patch("data_formulator.security.auth.get_identity_id", return_value="user:alice"): + resp = c.post("/api/plugins/superset/auth/login", json={ + "username": "alice", + "password": "new_pw", + "remember": True, + }) + assert resp.status_code == 200 + + stored = vault.retrieve("user:alice", "superset") + assert stored is not None + assert stored["username"] == "alice" + assert stored["password"] == "new_pw" + + def test_remember_false_deletes_vault_credential(self, superset_app): + """Login with remember=false → old Vault credential removed.""" + app, mock_bridge, vault = superset_app + + vault.store("user:alice", "superset", {"username": "alice", "password": "old"}) + + mock_bridge.login.return_value = {"access_token": "tok", "refresh_token": "ref"} + mock_bridge.get_user_info.return_value = { + "id": 1, "username": "alice", "first_name": "Alice", "last_name": "W", + } + + with app.test_client() as c, \ + patch("data_formulator.credential_vault.get_credential_vault", return_value=vault), \ + patch("data_formulator.security.auth.get_identity_id", return_value="user:alice"): + resp = c.post("/api/plugins/superset/auth/login", json={ + "username": "alice", + "password": "new_pw", + "remember": False, + }) + assert resp.status_code == 200 + + assert vault.retrieve("user:alice", "superset") is None + + +class TestVaultNotConfigured: + + def test_status_works_without_vault(self, superset_app): + """No Vault configured → status still works, no crash.""" + app, mock_bridge, _ = superset_app + + with app.test_client() as c, \ + patch("data_formulator.credential_vault.get_credential_vault", return_value=None), \ + patch("data_formulator.security.auth.get_identity_id", return_value="user:alice"): + resp = c.get("/api/plugins/superset/auth/status") + data = resp.get_json() + + assert data["authenticated"] is False + assert "vault_stale" not in data + + def test_login_remember_without_vault_still_succeeds(self, superset_app): + """Login with remember=true but no Vault → login works, no crash.""" + app, mock_bridge, _ = superset_app + + mock_bridge.login.return_value = {"access_token": "tok", "refresh_token": "ref"} + mock_bridge.get_user_info.return_value = { + "id": 1, "username": "alice", "first_name": "Alice", "last_name": "W", + } + + with app.test_client() as c, \ + patch("data_formulator.credential_vault.get_credential_vault", return_value=None), \ + patch("data_formulator.security.auth.get_identity_id", return_value="user:alice"): + resp = c.post("/api/plugins/superset/auth/login", json={ + "username": "alice", + "password": "pw", + "remember": True, + }) + assert resp.status_code == 200 diff --git a/tests/backend/integration/test_sandbox.py b/tests/backend/integration/test_sandbox.py new file mode 100644 index 00000000..b6c277b0 --- /dev/null +++ b/tests/backend/integration/test_sandbox.py @@ -0,0 +1,267 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +"""Tests for sandbox execution backends (local and Docker).""" + +import os +import shutil +import subprocess +import tempfile +from contextlib import contextmanager + +import pandas as pd +import pytest + +from data_formulator.sandbox import LocalSandbox, DockerSandbox, create_sandbox + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +class _MinimalWorkspace: + """Lightweight workspace stand-in for sandbox tests (no metadata/yaml).""" + def __init__(self, path: str): + self._path = path + + @contextmanager + def local_dir(self): + yield self._path + +SIMPLE_TRANSFORM = """\ +import pandas as pd +output_df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]}) +""" + +TRANSFORM_WITH_INPUT = """\ +import pandas as pd +df = pd.DataFrame({"x": [10, 20], "y": [30, 40]}) +output_df = df.assign(z=df["x"] + df["y"]) +""" + +SYNTAX_ERROR_CODE = """\ +import pandas as pd +output_df = pd.DataFrame({"a" [1, 2]}) +""" + +RUNTIME_ERROR_CODE = """\ +import pandas as pd +1 / 0 +""" + +NON_DF_OUTPUT = """\ +output_df = "I am not a DataFrame" +""" + +MULTI_TABLE_TRANSFORM = """\ +import pandas as pd, json +data = json.loads('[{"a":1},{"a":2}]') +df = pd.DataFrame.from_records(data) +output_df = df.assign(doubled=df["a"] * 2) +""" + + +@pytest.fixture +def workspace(tmp_path): + """Create a temporary workspace directory with a small CSV file.""" + csv_path = tmp_path / "sample.csv" + csv_path.write_text("name,value\nAlice,10\nBob,20\n") + return _MinimalWorkspace(str(tmp_path)) + + +def _docker_available() -> bool: + """Return True if Docker CLI is present and the daemon is reachable.""" + try: + proc = subprocess.run( + ["docker", "info"], + capture_output=True, + timeout=10, + ) + return proc.returncode == 0 + except Exception: + return False + + +skip_no_docker = pytest.mark.skipif( + not _docker_available(), + reason="Docker is not available", +) + + +# =================================================================== +# create_sandbox factory +# =================================================================== + +class TestCreateSandbox: + def test_local(self): + sb = create_sandbox("local") + assert isinstance(sb, LocalSandbox) + + def test_docker(self): + sb = create_sandbox("docker") + assert isinstance(sb, DockerSandbox) + + def test_default_is_local(self): + sb = create_sandbox() + assert isinstance(sb, LocalSandbox) + + +# =================================================================== +# LocalSandbox +# =================================================================== + +class TestLocalSandbox: + """Tests for LocalSandbox (warm subprocess with audit hooks).""" + + @pytest.fixture + def sandbox(self): + return LocalSandbox() + + def test_simple_transform(self, sandbox, workspace): + result = sandbox.run_python_code(SIMPLE_TRANSFORM, workspace, "output_df") + assert result["status"] == "ok" + df = result["content"] + assert isinstance(df, pd.DataFrame) + assert len(df) == 3 + + def test_derived_columns(self, sandbox, workspace): + result = sandbox.run_python_code(TRANSFORM_WITH_INPUT, workspace, "output_df") + assert result["status"] == "ok" + assert list(result["content"]["z"]) == [40, 60] + + def test_read_csv_from_workspace(self, sandbox, workspace): + code = """\ +import pandas as pd +output_df = pd.read_csv("sample.csv") +""" + result = sandbox.run_python_code(code, workspace, "output_df") + assert result["status"] == "ok" + assert len(result["content"]) == 2 + + def test_write_to_workdir_blocked(self, sandbox, workspace): + """Subprocess audit hook blocks all file writes, even in workdir. + (Detailed security tests in tests/backend/security/test_sandbox_security.py) + """ + code = """\ +import pandas as pd +df = pd.DataFrame({"x": [1]}) +df.to_csv("temp_output.csv", index=False) +output_df = pd.read_csv("temp_output.csv") +""" + result = sandbox.run_python_code(code, workspace, "output_df") + assert result["status"] == "error" + + def test_syntax_error(self, sandbox, workspace): + result = sandbox.run_python_code(SYNTAX_ERROR_CODE, workspace, "output_df") + assert result["status"] == "error" + + def test_runtime_error(self, sandbox, workspace): + result = sandbox.run_python_code(RUNTIME_ERROR_CODE, workspace, "output_df") + assert result["status"] == "error" + + def test_non_dataframe_output(self, sandbox, workspace): + result = sandbox.run_python_code(NON_DF_OUTPUT, workspace, "output_df") + assert result["status"] == "error" + assert "not a DataFrame" in result["content"] + + def test_duckdb_sql(self, sandbox, workspace): + """duckdb.sql() works in subprocess mode (unrestricted globals).""" + code = """\ +import pandas as pd +import duckdb +df = pd.DataFrame({"x": [1, 2, 3]}) +output_df = duckdb.sql("SELECT x, x*10 AS x10 FROM df").df() +""" + result = sandbox.run_python_code(code, workspace, "output_df") + assert result["status"] == "ok" + assert list(result["content"]["x10"]) == [10, 20, 30] + + +# =================================================================== +# DockerSandbox +# =================================================================== + +@skip_no_docker +class TestDockerSandbox: + """Tests for DockerSandbox — requires a running Docker daemon.""" + + @pytest.fixture + def sandbox(self): + return DockerSandbox(timeout=120) + + def test_simple_transform(self, sandbox, workspace): + result = sandbox.run_python_code(SIMPLE_TRANSFORM, workspace, "output_df") + assert result["status"] == "ok" + df = result["content"] + assert isinstance(df, pd.DataFrame) + assert list(df.columns) == ["a", "b"] + assert len(df) == 3 + + def test_derived_columns(self, sandbox, workspace): + result = sandbox.run_python_code(TRANSFORM_WITH_INPUT, workspace, "output_df") + assert result["status"] == "ok" + df = result["content"] + assert "z" in df.columns + assert list(df["z"]) == [40, 60] + + def test_read_csv_from_workspace(self, sandbox, workspace): + code = """\ +import pandas as pd +output_df = pd.read_csv("sample.csv") +""" + result = sandbox.run_python_code(code, workspace, "output_df") + assert result["status"] == "ok" + assert list(result["content"].columns) == ["name", "value"] + + def test_syntax_error(self, sandbox, workspace): + result = sandbox.run_python_code(SYNTAX_ERROR_CODE, workspace, "output_df") + assert result["status"] == "error" + + def test_runtime_error(self, sandbox, workspace): + result = sandbox.run_python_code(RUNTIME_ERROR_CODE, workspace, "output_df") + assert result["status"] == "error" + + def test_non_dataframe_output(self, sandbox, workspace): + result = sandbox.run_python_code(NON_DF_OUTPUT, workspace, "output_df") + assert result["status"] == "error" + assert "not a DataFrame" in result["content"] + + def test_json_usage(self, sandbox, workspace): + result = sandbox.run_python_code(MULTI_TABLE_TRANSFORM, workspace, "output_df") + assert result["status"] == "ok" + assert list(result["content"]["doubled"]) == [2, 4] + + def test_duckdb_sql(self, sandbox, workspace): + code = """\ +import pandas as pd +import duckdb +df = pd.DataFrame({"x": [1, 2, 3]}) +output_df = duckdb.sql("SELECT x, x*10 AS x10 FROM df").df() +""" + result = sandbox.run_python_code(code, workspace, "output_df") + assert result["status"] == "ok" + assert list(result["content"]["x10"]) == [10, 20, 30] + + +# =================================================================== +# DockerSandbox — missing Docker +# =================================================================== + +class TestDockerSandboxNoDocker: + """Verify graceful error when Docker is unavailable.""" + + def test_missing_docker_returns_error(self, workspace, monkeypatch): + """If 'docker' binary doesn't exist, run_python_code should return + an error dict, not raise.""" + import subprocess as sp + + original_run = sp.run + + def fake_run(*args, **kwargs): + raise FileNotFoundError("docker not found") + + monkeypatch.setattr(sp, "run", fake_run) + + sb = DockerSandbox() + result = sb.run_python_code(SIMPLE_TRANSFORM, workspace, "output_df") + assert result["status"] == "error" + assert "not installed" in result["content"].lower() or "docker" in result["content"].lower() diff --git a/tests/backend/security/test_auth.py b/tests/backend/security/test_auth.py new file mode 100644 index 00000000..0592887c --- /dev/null +++ b/tests/backend/security/test_auth.py @@ -0,0 +1,138 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +"""Tests for authentication and identity management (auth.py). + +Verifies that identity extraction, validation, and namespace isolation +work correctly — especially that client-provided headers cannot spoof +an authenticated user identity. +""" + +from unittest.mock import patch + +import flask +import pytest + +import data_formulator.security.auth as auth_module +from data_formulator.security.auth import get_identity_id, _validate_identity_value +from data_formulator.auth_providers.azure_easyauth import AzureEasyAuthProvider + +pytestmark = [pytest.mark.backend] + + +@pytest.fixture +def app(): + """Minimal Flask app for request-context tests.""" + app = flask.Flask(__name__) + app.config["TESTING"] = True + return app + + +@pytest.fixture +def azure_provider(monkeypatch): + """Activate the Azure EasyAuth provider for the duration of a test.""" + monkeypatch.setattr(auth_module, "_provider", AzureEasyAuthProvider()) + + +# =================================================================== +# _validate_identity_value +# =================================================================== + +class TestValidateIdentityValue: + + def test_valid_uuid(self): + val = _validate_identity_value("550e8400-e29b-41d4-a716-446655440000", "test") + assert val == "550e8400-e29b-41d4-a716-446655440000" + + def test_valid_email(self): + val = _validate_identity_value("alice@example.com", "test") + assert val == "alice@example.com" + + def test_strips_whitespace(self): + val = _validate_identity_value(" alice@example.com ", "test") + assert val == "alice@example.com" + + def test_empty_raises(self): + with pytest.raises(ValueError, match="Empty"): + _validate_identity_value("", "test") + + def test_whitespace_only_raises(self): + with pytest.raises(ValueError, match="Empty"): + _validate_identity_value(" ", "test") + + def test_too_long_raises(self): + with pytest.raises(ValueError, match="exceeds"): + _validate_identity_value("a" * 300, "test") + + def test_path_separator_rejected(self): + with pytest.raises(ValueError, match="disallowed"): + _validate_identity_value("../../etc/passwd", "test") + + def test_shell_metachar_rejected(self): + with pytest.raises(ValueError, match="disallowed"): + _validate_identity_value("user; rm -rf /", "test") + + def test_control_chars_rejected(self): + with pytest.raises(ValueError, match="disallowed"): + _validate_identity_value("user\x00name", "test") + + +# =================================================================== +# get_identity_id — namespace isolation +# =================================================================== + +class TestGetIdentityId: + + def test_azure_principal_returns_user_prefix(self, app, azure_provider): + with app.test_request_context( + headers={"X-MS-CLIENT-PRINCIPAL-ID": "azure-user-123"} + ): + identity = get_identity_id() + assert identity == "user:azure-user-123" + + def test_browser_identity_returns_browser_prefix(self, app): + with app.test_request_context( + headers={"X-Identity-Id": "550e8400-e29b-41d4-a716-446655440000"} + ): + identity = get_identity_id() + assert identity == "browser:550e8400-e29b-41d4-a716-446655440000" + + def test_client_cannot_spoof_user_prefix(self, app): + """Even if X-Identity-Id sends 'user:alice', the result is browser:alice.""" + with app.test_request_context( + headers={"X-Identity-Id": "user:alice@example.com"} + ): + identity = get_identity_id() + assert identity.startswith("browser:") + assert "alice@example.com" in identity + + def test_azure_header_takes_priority_over_browser(self, app, azure_provider): + """When both headers are present, Azure provider wins.""" + with app.test_request_context( + headers={ + "X-MS-CLIENT-PRINCIPAL-ID": "azure-user-456", + "X-Identity-Id": "browser-uuid-789", + } + ): + identity = get_identity_id() + assert identity == "user:azure-user-456" + + def test_missing_all_headers_raises(self, app): + with app.test_request_context(): + with pytest.raises(ValueError, match="X-Identity-Id"): + get_identity_id() + + def test_malformed_azure_header_rejected(self, app, azure_provider): + with app.test_request_context( + headers={"X-MS-CLIENT-PRINCIPAL-ID": "../../etc/passwd"} + ): + with pytest.raises(ValueError, match="disallowed"): + get_identity_id() + + def test_browser_identity_strips_prefix(self, app): + """If client sends 'browser:abc', the 'browser:' prefix is stripped and re-added.""" + with app.test_request_context( + headers={"X-Identity-Id": "browser:my-uuid-123"} + ): + identity = get_identity_id() + assert identity == "browser:my-uuid-123" diff --git a/tests/backend/security/test_auth_provider_chain.py b/tests/backend/security/test_auth_provider_chain.py new file mode 100644 index 00000000..a4f49a3f --- /dev/null +++ b/tests/backend/security/test_auth_provider_chain.py @@ -0,0 +1,300 @@ +"""Tests for the AuthProvider chain initialisation and runtime dispatch. + +Background +---------- +The refactored ``auth.py`` delegates identity extraction to a pluggable +AuthProvider selected via the ``AUTH_PROVIDER`` environment variable. +These tests verify the chain's initialisation logic, provider dispatch, +anonymous fallback behaviour, and the ``get_sso_token()`` helper. +""" +from __future__ import annotations + +import flask +import pytest + +import data_formulator.security.auth as auth_module +from data_formulator.security.auth import ( + get_auth_result, + get_identity_id, + get_sso_token, + init_auth, +) +from data_formulator.auth_providers.base import AuthProvider, AuthResult, AuthenticationError +from data_formulator.auth_providers import get_provider_class, list_available_providers +from data_formulator.security.auth import _validate_identity_value + +pytestmark = [pytest.mark.backend, pytest.mark.auth] + + +# ------------------------------------------------------------------ +# Fixtures +# ------------------------------------------------------------------ + +@pytest.fixture +def app(): + """Minimal Flask app for request-context tests.""" + _app = flask.Flask(__name__) + _app.config["TESTING"] = True + return _app + + +@pytest.fixture(autouse=True) +def _reset_auth_state(monkeypatch): + """Ensure each test starts with a clean auth module state.""" + monkeypatch.setattr(auth_module, "_provider", None) + monkeypatch.setattr(auth_module, "_allow_anonymous", True) + + +# ------------------------------------------------------------------ +# Provider discovery +# ------------------------------------------------------------------ + +class TestProviderDiscovery: + + def test_azure_easyauth_is_discovered(self): + assert "azure_easyauth" in list_available_providers() + + def test_get_provider_class_returns_class(self): + cls = get_provider_class("azure_easyauth") + assert cls is not None + assert issubclass(cls, AuthProvider) + + def test_unknown_provider_returns_none(self): + assert get_provider_class("nonexistent") is None + + +# ------------------------------------------------------------------ +# init_auth +# ------------------------------------------------------------------ + +class TestInitAuth: + + def test_no_env_var_stays_anonymous(self, app, monkeypatch): + monkeypatch.delenv("AUTH_PROVIDER", raising=False) + init_auth(app) + assert auth_module._provider is None + assert auth_module._allow_anonymous is True + + def test_explicit_anonymous_stays_anonymous(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "anonymous") + init_auth(app) + assert auth_module._provider is None + + def test_azure_easyauth_activates(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "azure_easyauth") + init_auth(app) + assert auth_module._provider is not None + assert auth_module._provider.name == "azure_easyauth" + + def test_unknown_provider_logs_error_stays_none(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "totally_bogus") + init_auth(app) + assert auth_module._provider is None + + def test_allow_anonymous_false(self, app, monkeypatch): + monkeypatch.setenv("ALLOW_ANONYMOUS", "false") + monkeypatch.delenv("AUTH_PROVIDER", raising=False) + init_auth(app) + assert auth_module._allow_anonymous is False + + +# ------------------------------------------------------------------ +# get_identity_id — provider dispatch +# ------------------------------------------------------------------ + +class TestProviderDispatch: + + def test_provider_authenticated_returns_user_prefix(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "azure_easyauth") + init_auth(app) + + with app.test_request_context( + headers={"X-MS-CLIENT-PRINCIPAL-ID": "azure-user-123"} + ): + identity = get_identity_id() + assert identity == "user:azure-user-123" + + def test_provider_miss_falls_back_to_anonymous(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "azure_easyauth") + init_auth(app) + + with app.test_request_context( + headers={"X-Identity-Id": "550e8400-e29b-41d4-a716-446655440000"} + ): + identity = get_identity_id() + assert identity == "browser:550e8400-e29b-41d4-a716-446655440000" + + def test_provider_miss_no_anonymous_raises(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "azure_easyauth") + monkeypatch.setenv("ALLOW_ANONYMOUS", "false") + init_auth(app) + + with app.test_request_context( + headers={"X-Identity-Id": "some-uuid"} + ): + with pytest.raises(ValueError, match="Authentication required"): + get_identity_id() + + +# ------------------------------------------------------------------ +# get_identity_id — anonymous-only mode (no AUTH_PROVIDER) +# ------------------------------------------------------------------ + +class TestAnonymousMode: + + def test_browser_identity_works(self, app): + with app.test_request_context( + headers={"X-Identity-Id": "my-browser-uuid"} + ): + assert get_identity_id() == "browser:my-browser-uuid" + + def test_prefixed_identity_stripped(self, app): + with app.test_request_context( + headers={"X-Identity-Id": "browser:my-uuid"} + ): + assert get_identity_id() == "browser:my-uuid" + + def test_missing_header_raises(self, app): + with app.test_request_context(): + with pytest.raises(ValueError, match="X-Identity-Id"): + get_identity_id() + + def test_spoofed_user_prefix_forced_to_browser(self, app): + with app.test_request_context( + headers={"X-Identity-Id": "user:alice@corp.com"} + ): + identity = get_identity_id() + assert identity.startswith("browser:") + assert "alice@corp.com" in identity + + +# ------------------------------------------------------------------ +# get_sso_token / get_auth_result +# ------------------------------------------------------------------ + +class TestSSOToken: + + def test_anonymous_mode_returns_none(self, app): + with app.test_request_context( + headers={"X-Identity-Id": "browser-uuid"} + ): + get_identity_id() + assert get_sso_token() is None + assert get_auth_result() is None + + def test_provider_without_token_returns_none(self, app, monkeypatch): + """Azure EasyAuth does not supply raw_token.""" + monkeypatch.setenv("AUTH_PROVIDER", "azure_easyauth") + init_auth(app) + + with app.test_request_context( + headers={"X-MS-CLIENT-PRINCIPAL-ID": "azure-user"} + ): + get_identity_id() + result = get_auth_result() + assert result is not None + assert result.user_id == "azure-user" + assert get_sso_token() is None + + +# ------------------------------------------------------------------ +# AuthenticationError propagation +# ------------------------------------------------------------------ + +class TestAuthenticationErrorPropagation: + + def test_authentication_error_becomes_value_error(self, app, monkeypatch): + """When a provider raises AuthenticationError it should surface as ValueError.""" + + class _FailingProvider(AuthProvider): + @property + def name(self): return "failing" + def authenticate(self, request): + raise AuthenticationError("token expired", provider="failing") + + monkeypatch.setattr(auth_module, "_provider", _FailingProvider()) + + with app.test_request_context( + headers={"Authorization": "Bearer bad-token"} + ): + with pytest.raises(ValueError, match="Authentication failed"): + get_identity_id() + + +# ------------------------------------------------------------------ +# Provider discovery — all Phase 1 providers +# ------------------------------------------------------------------ + +class TestAllPhase1ProvidersDiscovered: + + def test_oidc_discovered(self): + assert "oidc" in list_available_providers() + + def test_github_discovered(self): + assert "github" in list_available_providers() + + def test_azure_easyauth_discovered(self): + assert "azure_easyauth" in list_available_providers() + + +# ------------------------------------------------------------------ +# OIDC provider via init_auth (end-to-end without real IdP) +# ------------------------------------------------------------------ + +class TestOIDCViaInitAuth: + """Verify that AUTH_PROVIDER=oidc activates OIDCProvider. + + These tests don't verify JWT validation (see test_oidc_provider.py); + they only confirm init_auth wiring and the chain's behaviour when + the OIDC provider is active but the request has no Bearer token. + """ + + def test_oidc_activates_when_configured(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "oidc") + monkeypatch.setenv("OIDC_ISSUER_URL", "https://idp.example.com") + monkeypatch.setenv("OIDC_CLIENT_ID", "test-client") + init_auth(app) + assert auth_module._provider is not None + assert auth_module._provider.name == "oidc" + + def test_oidc_disabled_without_env_vars(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "oidc") + monkeypatch.delenv("OIDC_ISSUER_URL", raising=False) + monkeypatch.delenv("OIDC_CLIENT_ID", raising=False) + init_auth(app) + assert auth_module._provider is None + + def test_oidc_no_bearer_falls_back_to_anonymous(self, app, monkeypatch): + monkeypatch.setenv("AUTH_PROVIDER", "oidc") + monkeypatch.setenv("OIDC_ISSUER_URL", "https://idp.example.com") + monkeypatch.setenv("OIDC_CLIENT_ID", "test-client") + init_auth(app) + + with app.test_request_context( + headers={"X-Identity-Id": "browser-uuid-123"} + ): + identity = get_identity_id() + assert identity == "browser:browser-uuid-123" + + +# ------------------------------------------------------------------ +# Identity regex — OIDC sub claim characters +# ------------------------------------------------------------------ + +class TestIdentityRegexExpansion: + + @pytest.mark.parametrize("value", [ + "auth0|5f1234abc", + "github:12345", + "user+tag@example.com", + ]) + def test_oidc_style_sub_claims_accepted(self, value): + assert _validate_identity_value(value, "test") == value + + def test_path_separator_still_rejected(self): + with pytest.raises(ValueError, match="disallowed"): + _validate_identity_value("../../etc/passwd", "test") + + def test_space_still_rejected(self): + with pytest.raises(ValueError, match="disallowed"): + _validate_identity_value("user name", "test") diff --git a/tests/backend/security/test_code_signing.py b/tests/backend/security/test_code_signing.py new file mode 100644 index 00000000..29bc6011 --- /dev/null +++ b/tests/backend/security/test_code_signing.py @@ -0,0 +1,93 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +"""Tests for HMAC-based code signing (code_signing.py). + +Verifies that transformation code is signed before being returned to the +frontend, and that tampered or unsigned code is rejected before sandbox +execution. +""" + +import pytest + +from data_formulator.security.code_signing import sign_code, verify_code, sign_result + +pytestmark = [pytest.mark.backend] + + +# =================================================================== +# sign_code / verify_code round-trip +# =================================================================== + +class TestSignVerifyRoundTrip: + + def test_valid_signature_accepted(self): + code = "output_df = pd.DataFrame({'a': [1, 2, 3]})" + sig = sign_code(code) + assert verify_code(code, sig) + + def test_tampered_code_rejected(self): + code = "output_df = pd.DataFrame({'a': [1, 2, 3]})" + sig = sign_code(code) + tampered = code.replace("1, 2, 3", "1, 2, 3, 4") + assert not verify_code(tampered, sig) + + def test_tampered_signature_rejected(self): + code = "output_df = pd.DataFrame({'a': [1]})" + sig = sign_code(code) + bad_sig = sig[:-4] + "dead" + assert not verify_code(code, bad_sig) + + def test_empty_code_returns_empty_sig(self): + assert sign_code("") == "" + + def test_empty_code_verify_returns_false(self): + assert not verify_code("", "anything") + + def test_empty_signature_verify_returns_false(self): + assert not verify_code("some code", "") + + def test_whitespace_matters(self): + """Trailing whitespace changes the signature.""" + code = "output_df = pd.DataFrame()" + sig = sign_code(code) + assert not verify_code(code + " ", sig) + + def test_unicode_code(self): + """Non-ASCII code signs and verifies correctly.""" + code = 'output_df = pd.DataFrame({"名前": ["太郎"]})' + sig = sign_code(code) + assert verify_code(code, sig) + + def test_signature_is_hex_string(self): + sig = sign_code("x = 1") + assert isinstance(sig, str) + assert len(sig) == 64 # SHA-256 hex + int(sig, 16) # should not raise + + +# =================================================================== +# sign_result helper +# =================================================================== + +class TestSignResult: + + def test_adds_signature_when_code_present(self): + result = {"code": "output_df = pd.DataFrame()", "data": [1, 2, 3]} + sign_result(result) + assert "code_signature" in result + assert verify_code(result["code"], result["code_signature"]) + + def test_no_signature_when_code_empty(self): + result = {"code": "", "data": [1]} + sign_result(result) + assert result.get("code_signature") is None or result.get("code_signature") == "" + + def test_no_signature_when_code_missing(self): + result = {"data": [1]} + sign_result(result) + assert "code_signature" not in result or result.get("code_signature") is None + + def test_returns_result_for_chaining(self): + result = {"code": "x = 1"} + assert sign_result(result) is result diff --git a/tests/backend/security/test_global_model_security.py b/tests/backend/security/test_global_model_security.py new file mode 100644 index 00000000..e9330a32 --- /dev/null +++ b/tests/backend/security/test_global_model_security.py @@ -0,0 +1,186 @@ +"""Tests for global model security: credential resolution and error sanitization. + +These verify two critical security properties: +1. get_client() resolves real credentials from the registry for global models. +2. test_model error messages never leak API keys for global models. +""" +from __future__ import annotations + +import os +from unittest.mock import patch, MagicMock + +import pytest + +from data_formulator.model_registry import ModelRegistry + +pytestmark = [pytest.mark.backend] + + +SAMPLE_ENV = { + "OPENAI_ENABLED": "true", + "OPENAI_API_KEY": "sk-secret-key-12345", + "OPENAI_MODELS": "gpt-4o", +} + + +# --------------------------------------------------------------------------- +# get_client: global model credential resolution +# --------------------------------------------------------------------------- + +class TestGetClientGlobalResolution: + """get_client() must resolve real credentials from model_registry + when the model config has is_global=True.""" + + @patch.dict(os.environ, SAMPLE_ENV, clear=True) + def test_global_model_gets_real_api_key(self): + """A global model config (no api_key from frontend) should be + resolved to the full config with the real api_key.""" + registry = ModelRegistry() + + with patch("data_formulator.agent_routes.model_registry", registry): + from data_formulator.agent_routes import get_client + + client = get_client({ + "id": "global-openai-gpt-4o", + "endpoint": "openai", + "model": "gpt-4o", + "is_global": True, + }) + + assert client.params.get("api_key") == "sk-secret-key-12345" + + @patch.dict(os.environ, SAMPLE_ENV, clear=True) + def test_user_model_keeps_own_credentials(self): + """A non-global (user-added) model should use its own api_key, + not touch the registry.""" + registry = ModelRegistry() + + with patch("data_formulator.agent_routes.model_registry", registry): + from data_formulator.agent_routes import get_client + + client = get_client({ + "id": "user-custom-model", + "endpoint": "openai", + "model": "gpt-4o", + "api_key": "sk-user-own-key", + "api_base": "", + "api_version": "", + }) + + assert client.params.get("api_key") == "sk-user-own-key" + + @patch.dict(os.environ, SAMPLE_ENV, clear=True) + def test_global_model_without_registry_match_falls_through(self): + """If a global model id is not in the registry, get_client should + still work (using whatever config was passed).""" + registry = ModelRegistry() + + with patch("data_formulator.agent_routes.model_registry", registry): + from data_formulator.agent_routes import get_client + + client = get_client({ + "id": "global-nonexistent-model", + "endpoint": "openai", + "model": "nonexistent", + "api_key": "sk-fallback", + "api_base": "", + "api_version": "", + "is_global": True, + }) + + assert client.params.get("api_key") == "sk-fallback" + + +# --------------------------------------------------------------------------- +# Error sanitization (shared sanitize module) +# --------------------------------------------------------------------------- + +class TestSharedErrorSanitization: + """The shared sanitize_error_message function must strip sensitive data.""" + + def test_sanitize_redacts_api_key_patterns(self): + from data_formulator.security.sanitize import sanitize_error_message + + raw = "Connection failed: api_key=sk-secret-key-12345 is invalid" + sanitized = sanitize_error_message(raw) + + assert "sk-secret-key-12345" not in sanitized + assert "" in sanitized + + def test_sanitize_truncates_long_messages(self): + from data_formulator.security.sanitize import sanitize_error_message + + raw = "x" * 1000 + sanitized = sanitize_error_message(raw) + + assert len(sanitized) <= 503 # 500 + "..." + assert sanitized.endswith("...") + + def test_sanitize_escapes_html(self): + from data_formulator.security.sanitize import sanitize_error_message + + raw = '' + sanitized = sanitize_error_message(raw) + + assert "' + result = sanitize_error_message(msg) + assert "